diff --git a/.devcontainer/devcontainer-lock.json b/.devcontainer/devcontainer-lock.json new file mode 100644 index 00000000..02ecffcd --- /dev/null +++ b/.devcontainer/devcontainer-lock.json @@ -0,0 +1,9 @@ +{ + "features": { + "ghcr.io/devcontainers/features/github-cli": { + "version": "1.1.0", + "resolved": "ghcr.io/devcontainers/features/github-cli@sha256:d22f50b70ed75339b4eed1ba9ecde3a1791f90e88d37936517e3bace0bbad671", + "integrity": "sha256:d22f50b70ed75339b4eed1ba9ecde3a1791f90e88d37936517e3bace0bbad671" + } + } +} diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 0e4b1320..509a72a9 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,85 +1,86 @@ -// This file was automatically generated with PreTeXt 2.28.2. -// If you modify this file, PreTeXt will no longer automatically update it. -// -////////////////////////////////////////////////////////////// -// -// This file provides configuration options so that a PreTeXt -// project can be edited and built using GitHub's Codespaces. -// It is recommended to keep this in your repository even if you -// do not use this feature, as it will allow other to explore -// your project easily. -// This file will be automatically generated by PreTeXt with the -// latest updates unless you remove the first comment line above. -// -/////////////////////////////////////////////////////////////// -{ - "image": "pretextbook/pretext-full:1.4", // uses latest image from https://hub.docker.com/r/PreTeXtBook/pretext-full/tags - // If you don't need sagemath, you can use a smaller base image. Comment out the line above and uncomment the line below to use a smaller image. - // "image": "pretextbook/pretext:1.4", - "features": {"ghcr.io/devcontainers/features/github-cli": {}}, - - // The pretext-full image above includes pretext, prefigure, and enough parts of latex and sagemath for most cases. Here we install additional dependencies. - "postCreateCommand": { - // "install pandoc": "bash ./.devcontainer/installPandoc.sh", - "mark repo as safe": "git config --global --add safe.directory $(pwd)" - }, - - - // Port forwarding - // --------------- - // This is needed by the CodeChat Server. - "forwardPorts": [ - // The port used for a Thrift connection between the VSCode CodeChat - // extension and the CodeChat Server. - 27376, - // The port used for an HTTP connection from the CodeChat Client to - // the CodeChat Server. - 27377, - // The port used by a websocket connection between the CodeChat - // Server and the CodeChat Client. - 27378 - ], - // See the [docs](https://containers.dev/implementors/json_reference/#port-attributes). - "portsAttributes": { - "27376": { - "label": "VSCode extension <-> CodeChat Server", - "requireLocalPort": true - }, - "27377": { - "label": "CodeChat Client", - "requireLocalPort": true - }, - "27378": { - "label": "CodeChat Client<->Server websocket", - "requireLocalPort": true - // This port needs to be public; however, there's no way to specify port visibility here. See `server.py` in the CodeChat Server for details. - } - }, - - - // Configure tool-specific properties. - "customizations": { - "codespaces": { - "openFiles": ["README.md"] - }, - "vscode": { - "settings": { - "editor.quickSuggestions": { - "other": "off" - }, - "files.autoSave": "afterDelay", - "editor.snippetSuggestions": "bottom", - "xml.validation.enabled": true, - "redhat.telemetry.enabled": false, - "CodeChat.CodeChatServer.Command": "CodeChat_Server" - }, - "extensions": [ - "oscarlevin.pretext-tools", - "CodeChat.codechat", - "streetsidesoftware.code-spell-checker", - "alpinebuster.vscode-latex-table-editor", - "mathematic.vscode-pdf" - ] - } - } -} +// This file was automatically generated with PreTeXt 2.19.2. +// If you modify this file, PreTeXt will no longer automatically update it. +// +////////////////////////////////////////////////////////////// +// +// This file provides configuration options so that a PreTeXt +// project can be edited and built using GitHub's Codespaces. +// It is recommended to keep this in your repository even if you +// do not use this feature, as it will allow other to explore +// your project easily. +// This file will be automatically generated by PreTeXt with the +// latest updates unless you remove the first comment line above. +// +/////////////////////////////////////////////////////////////// +{ + "image": "oscarlevin/pretext:1.1", + "features": {}, + + // Comment or uncomment lines below if you don't or do need that feature. + "postCreateCommand": { + // "install sagemath": "bash ./.devcontainer/installSage.sh", + // "install pandoc": "bash ./.devcontainer/installPandoc.sh", + // "install latex": "bash ./.devcontainer/installLatex.sh", + // "install pretext": "bash ./.devcontainer/installPretext.sh", + "install additional LaTeX fonts": "tlmgr install bera cabin marginnote", + "mark repo as safe": "git config --global --add safe.directory $(pwd)" + }, + + + // Port forwarding + // --------------- + // This is needed by the CodeChat Server. + "forwardPorts": [ + // The port used for a Thrift connection between the VSCode CodeChat + // extension and the CodeChat Server. + 27376, + // The port used for an HTTP connection from the CodeChat Client to + // the CodeChat Server. + 27377, + // The port used by a websocket connection between the CodeChat + // Server and the CodeChat Client. + 27378 + ], + // See the [docs](https://containers.dev/implementors/json_reference/#port-attributes). + "portsAttributes": { + "27376": { + "label": "VSCode extension <-> CodeChat Server", + "requireLocalPort": true + }, + "27377": { + "label": "CodeChat Client", + "requireLocalPort": true + }, + "27378": { + "label": "CodeChat Client<->Server websocket", + "requireLocalPort": true + // This port needs to be public; however, there's no way to specify port visibility here. See `server.py` in the CodeChat Server for details. + } + }, + + + // Configure tool-specific properties. + "customizations": { + "codespaces": { + "openFiles": ["source/main.ptx"] + }, + "vscode": { + "settings": { + "editor.quickSuggestions": { + "other": "off" + }, + "editor.snippetSuggestions": "top", + "xml.validation.enabled": true, + "redhat.telemetry.enabled": false, + "CodeChat.CodeChatServer.Command": "CodeChat_Server", + "xml.java.home": "/usr/lib/jvm/default-java" + }, + "extensions": [ + "oscarlevin.pretext-tools", + "CodeChat.codechat", + "streetsidesoftware.code-spell-checker", + "alpinebuster.vscode-latex-table-editor" + ] + } + } +} diff --git a/.devcontainer/installPandoc.sh b/.devcontainer/installPandoc.sh index 51c3b531..18297433 100644 --- a/.devcontainer/installPandoc.sh +++ b/.devcontainer/installPandoc.sh @@ -1,17 +1,17 @@ -#!/usr/bin/env bash - -# This file was automatically generated with PreTeXt 2.28.2. -# If you modify this file, PreTeXt will no longer automatically update it. - -wget https://github.com/jgm/pandoc/releases/download/3.6.4/pandoc-3.6.4-1-amd64.deb -O pandoc.deb - -# wait for 60 second and then double check that no other script is using apt-get: -sleep 60 -while fuser /var/lib/dpkg/lock >/dev/null 2>&1; do - echo "Waiting for apt-get to be free..." - sleep 15 -done -# Install pandoc -sudo apt-get install -y --no-install-recommends ./pandoc.deb - -rm pandoc.deb +#!/usr/bin/env bash + +# This file was automatically generated with PreTeXt 2.28.2. +# If you modify this file, PreTeXt will no longer automatically update it. + +wget https://github.com/jgm/pandoc/releases/download/3.6.4/pandoc-3.6.4-1-amd64.deb -O pandoc.deb + +# wait for 60 second and then double check that no other script is using apt-get: +sleep 60 +while fuser /var/lib/dpkg/lock >/dev/null 2>&1; do + echo "Waiting for apt-get to be free..." + sleep 15 +done +# Install pandoc +sudo apt-get install -y --no-install-recommends ./pandoc.deb + +rm pandoc.deb diff --git a/.devcontainer/installSage.sh b/.devcontainer/installSage.sh index 26fc91bd..b573436d 100644 --- a/.devcontainer/installSage.sh +++ b/.devcontainer/installSage.sh @@ -1,21 +1,21 @@ -#!/usr/bin/env bash - -# This file was automatically generated with PreTeXt 2.28.2. -# If you modify this file, PreTeXt will no longer automatically update it. - -# Conda should already be installed in the codespace. We need to add the conda-forge channel - -conda config --add channels conda-forge -conda config --set channel_priority strict - -# We don't want conda to open the base environment always: -conda config --set auto_activate_base false - -# Now create a conda environment for sage (called sage): -conda create --yes -n sage sage python=3.12 - -conda init - -echo 'conda activate sage' >> ~/.bashrc - -source ~/.bashrc +#!/usr/bin/env bash + +# This file was automatically generated with PreTeXt 2.28.2. +# If you modify this file, PreTeXt will no longer automatically update it. + +# Conda should already be installed in the codespace. We need to add the conda-forge channel + +conda config --add channels conda-forge +conda config --set channel_priority strict + +# We don't want conda to open the base environment always: +conda config --set auto_activate_base false + +# Now create a conda environment for sage (called sage): +conda create --yes -n sage sage python=3.12 + +conda init + +echo 'conda activate sage' >> ~/.bashrc + +source ~/.bashrc diff --git a/.github/workflows/pretext-cli.yml b/.github/workflows/pretext-cli.yml index 8713a695..ba25462c 100644 --- a/.github/workflows/pretext-cli.yml +++ b/.github/workflows/pretext-cli.yml @@ -1,117 +1,117 @@ -# This file was automatically generated with PreTeXt 2.33.0. -# If you modify this file, PreTeXt will no longer automatically update it. -# -# This workflow file can be used to automatically build a project and create -# an artifact for deployment. It can also be used to deploy the project to -# GitHub Pages or Cloudflare Pages. -# -# The workflow is triggered on pull requests or can be run manually. You can uncomment -# the `push` event to have it run on pushes to the main branch as well. -name: PreTeXt-CLI Actions -on: - # Runs on pull requests - pull_request: - branches: ["*"] - ## Runs on pushes to main - #push: - # branches: ["main"] - # Runs on demand - workflow_dispatch: - -jobs: - build: - runs-on: ubuntu-latest - container: oscarlevin/pretext-full - - steps: - - name: Checkout source - uses: actions/checkout@v4 - - - name: install deps - run: pip install -r requirements.txt - - - name: set up node - uses: actions/setup-node@v4 - with: - node-version: '22' - - - name: install local ptx files - run: pretext --version - - - name: build deploy targets - run: | - version="$(pretext --version)" - major="$(echo $version | cut -d '.' -f 1)" - minor="$(echo $version | cut -d '.' -f 2)" - if [ "$major" -ge 2 -a "$minor" -ge 5 ]; then - echo "PreTeXt version is 2.5 or greater; using new build command" - pretext build --deploys - else - echo "PreTeXt version is less than 2.5, using old build command" - pretext build - fi - - name: stage deployment - run: pretext deploy --stage-only - - - name: Bundle output/stage as artifact - uses: actions/upload-artifact@v4 - with: - name: deploy - path: output/stage - - deploy-cloudflare: - runs-on: ubuntu-latest - needs: build - if: vars.CLOUDFLARE_PROJECT_NAME != '' - permissions: - contents: read - deployments: write - - steps: - - name: Download artifact - uses: actions/download-artifact@v4 - with: - name: deploy - path: deploy - - name: Create 404.html - run: echo "404 page not found" >> deploy/404.html - - name: Publish to Cloudflare - uses: cloudflare/pages-action@v1 - with: - apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} - accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} - projectName: ${{ vars.CLOUDFLARE_PROJECT_NAME }} - gitHubToken: ${{ secrets.GITHUB_TOKEN }} - branch: ${{ github.head_ref || github.ref_name }} - directory: deploy - - deploy-ghpages: - runs-on: ubuntu-latest - needs: build - if: vars.PTX_ENABLE_DEPLOY_GHPAGES == 'yes' && github.ref == format('refs/heads/{0}', github.event.repository.default_branch) - permissions: - contents: read - pages: write - id-token: write - concurrency: - group: "page" - cancel-in-progress: false - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - steps: - - name: Download website artifact - uses: actions/download-artifact@v4 - with: - name: deploy - path: deploy - - name: Setup GitHub Pages - id: check - uses: actions/configure-pages@v4 - - name: Upload artifact - uses: actions/upload-pages-artifact@v3 - with: - path: deploy - - name: Deploy to Github Pages - id: deployment - uses: actions/deploy-pages@v4 +# This file was automatically generated with PreTeXt 2.33.0. +# If you modify this file, PreTeXt will no longer automatically update it. +# +# This workflow file can be used to automatically build a project and create +# an artifact for deployment. It can also be used to deploy the project to +# GitHub Pages or Cloudflare Pages. +# +# The workflow is triggered on pull requests or can be run manually. You can uncomment +# the `push` event to have it run on pushes to the main branch as well. +name: PreTeXt-CLI Actions +on: + # Runs on pull requests + pull_request: + branches: ["*"] + ## Runs on pushes to main + #push: + # branches: ["main"] + # Runs on demand + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + container: oscarlevin/pretext-full + + steps: + - name: Checkout source + uses: actions/checkout@v4 + + - name: install deps + run: pip install -r requirements.txt + + - name: set up node + uses: actions/setup-node@v4 + with: + node-version: '22' + + - name: install local ptx files + run: pretext --version + + - name: build deploy targets + run: | + version="$(pretext --version)" + major="$(echo $version | cut -d '.' -f 1)" + minor="$(echo $version | cut -d '.' -f 2)" + if [ "$major" -ge 2 -a "$minor" -ge 5 ]; then + echo "PreTeXt version is 2.5 or greater; using new build command" + pretext build --deploys + else + echo "PreTeXt version is less than 2.5, using old build command" + pretext build + fi + - name: stage deployment + run: pretext deploy --stage-only + + - name: Bundle output/stage as artifact + uses: actions/upload-artifact@v4 + with: + name: deploy + path: output/stage + + deploy-cloudflare: + runs-on: ubuntu-latest + needs: build + if: vars.CLOUDFLARE_PROJECT_NAME != '' + permissions: + contents: read + deployments: write + + steps: + - name: Download artifact + uses: actions/download-artifact@v4 + with: + name: deploy + path: deploy + - name: Create 404.html + run: echo "404 page not found" >> deploy/404.html + - name: Publish to Cloudflare + uses: cloudflare/pages-action@v1 + with: + apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} + accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} + projectName: ${{ vars.CLOUDFLARE_PROJECT_NAME }} + gitHubToken: ${{ secrets.GITHUB_TOKEN }} + branch: ${{ github.head_ref || github.ref_name }} + directory: deploy + + deploy-ghpages: + runs-on: ubuntu-latest + needs: build + if: vars.PTX_ENABLE_DEPLOY_GHPAGES == 'yes' && github.ref == format('refs/heads/{0}', github.event.repository.default_branch) + permissions: + contents: read + pages: write + id-token: write + concurrency: + group: "page" + cancel-in-progress: false + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + steps: + - name: Download website artifact + uses: actions/download-artifact@v4 + with: + name: deploy + path: deploy + - name: Setup GitHub Pages + id: check + uses: actions/configure-pages@v4 + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + with: + path: deploy + - name: Deploy to Github Pages + id: deployment + uses: actions/deploy-pages@v4 diff --git a/.github/workflows/pretext-deploy.yml b/.github/workflows/pretext-deploy.yml index 39615ff2..66048f35 100644 --- a/.github/workflows/pretext-deploy.yml +++ b/.github/workflows/pretext-deploy.yml @@ -1,68 +1,68 @@ -# This file was automatically generated with PreTeXt 2.33.0. -# If you modify this file, PreTeXt will no longer automatically update it. -# - -name: Build and Deploy -on: - # Currently, this workflow only runs when manually selected (the `workflow_dispatch` event). - # If you would like it to run on other events, uncomment some of the lines below. - - # # Runs on pull requests - # pull_request: - # branches: ["*"] - - # # Runs on pushes to main - # push: - # branches: ["main"] - - # # Runs every day at 00:00 UTC - # schedule: - # - cron: '0 0 * * *' - - # Runs on demand - workflow_dispatch: - -permissions: - contents: write - -jobs: - build-and-deploy: - runs-on: ubuntu-latest - container: oscarlevin/pretext-full - - steps: - - name: Checkout source - uses: actions/checkout@v4 - - - name: set up node - uses: actions/setup-node@v4 - with: - node-version: '22' - - - name: add gh-cli - run: | - apt-get update - apt-get install gh jq -y - - - name: setup git config - run: | - git config --global --add safe.directory $(pwd) - git config user.name "${{ github.actor }} via GitHub Actions" - git config user.email "${{ github.actor }}@github_actions.no_reply" - - - name: install deps - run: pip install -r requirements.txt --break-system-packages - - - name: install local ptx files - run: pretext --version - - - name: build deploy targets - run: pretext build --deploys - - - name: run deploy - run: pretext deploy --no-push - - - name: push gh-pages branch - run: git push origin gh-pages --force - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} +# This file was automatically generated with PreTeXt 2.33.0. +# If you modify this file, PreTeXt will no longer automatically update it. +# + +name: Build and Deploy +on: + # Currently, this workflow only runs when manually selected (the `workflow_dispatch` event). + # If you would like it to run on other events, uncomment some of the lines below. + + # # Runs on pull requests + # pull_request: + # branches: ["*"] + + # # Runs on pushes to main + # push: + # branches: ["main"] + + # # Runs every day at 00:00 UTC + # schedule: + # - cron: '0 0 * * *' + + # Runs on demand + workflow_dispatch: + +permissions: + contents: write + +jobs: + build-and-deploy: + runs-on: ubuntu-latest + container: oscarlevin/pretext-full + + steps: + - name: Checkout source + uses: actions/checkout@v4 + + - name: set up node + uses: actions/setup-node@v4 + with: + node-version: '22' + + - name: add gh-cli + run: | + apt-get update + apt-get install gh jq -y + + - name: setup git config + run: | + git config --global --add safe.directory $(pwd) + git config user.name "${{ github.actor }} via GitHub Actions" + git config user.email "${{ github.actor }}@github_actions.no_reply" + + - name: install deps + run: pip install -r requirements.txt --break-system-packages + + - name: install local ptx files + run: pretext --version + + - name: build deploy targets + run: pretext build --deploys + + - name: run deploy + run: pretext deploy --no-push + + - name: push gh-pages branch + run: git push origin gh-pages --force + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.gitignore b/.gitignore index 4dc4b89f..7ca60f04 100644 --- a/.gitignore +++ b/.gitignore @@ -1,21 +1,21 @@ -**/.DS_Store -output/ -output/html/* -output/pdf/* -output/pg/* -output/images/* -output/*.txt -schemas.xml -generated-assets -*.tex -*.swp -cli.log -.error_schema.log -Makefile.paths -xml-id conventions.rtf -.devcontainer.json -codechat_config.yaml -settings.json -logs -.cache -latex/ +**/.DS_Store +output/ +output/html/* +output/pdf/* +output/pg/* +output/images/* +output/*.txt +schemas.xml +generated-assets +*.tex +*.swp +cli.log +.error_schema.log +Makefile.paths +xml-id conventions.rtf +.devcontainer.json +codechat_config.yaml +settings.json +logs +.cache +latex/ diff --git a/README.md b/README.md index 79ff34ab..edb8f89b 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,14 @@ -# Active Prelude to Calculus -Repository for the PreTeXt source for Active Prelude to Calculus. - -Active Prelude to Calculus is available from https://www.activecalculus.org/apc. - -# quickstart instructions -1. Clone this repository. -1. Install the [PreTeXt-CLI](https://pypi.org/project/pretextbook/) -1. Execute `pretext generate webwork` to prepare the WeBWorK problems. (This - step needs to be done any time you change a WeBWorK problem.) -1. Then execute `pretext build html`, `pretext view html`, `pretext build pdf`, `pretext - build latex`. We suggest building the LaTeX and then building the - PDF manually, as the CLI doesn't cycle through building the PDF - enough times to get it right yet. +# Active Prelude to Calculus +Repository for the PreTeXt source for Active Prelude to Calculus. + +Active Prelude to Calculus is available from https://www.activecalculus.org/apc. + +# quickstart instructions +1. Clone this repository. +1. Install the [PreTeXt-CLI](https://pypi.org/project/pretextbook/) +1. Execute `pretext generate webwork` to prepare the WeBWorK problems. (This + step needs to be done any time you change a WeBWorK problem.) +1. Then execute `pretext build html`, `pretext view html`, `pretext build pdf`, `pretext + build latex`. We suggest building the LaTeX and then building the + PDF manually, as the CLI doesn't cycle through building the PDF + enough times to get it right yet. diff --git a/assets/images/CC-BY-SA-license.svg b/assets/images/CC-BY-SA-license.svg index 668e2c81..a0229521 100644 --- a/assets/images/CC-BY-SA-license.svg +++ b/assets/images/CC-BY-SA-license.svg @@ -1,20 +1,20 @@ - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/aroc-act-trends-h.svg b/assets/images/aroc-act-trends-h.svg index 6a6de3fc..d0c3b4c7 100644 --- a/assets/images/aroc-act-trends-h.svg +++ b/assets/images/aroc-act-trends-h.svg @@ -1,153 +1,153 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/aroc-act-trends-q.eps b/assets/images/aroc-act-trends-q.eps index b35e0e45..eef891fb 100644 --- a/assets/images/aroc-act-trends-q.eps +++ b/assets/images/aroc-act-trends-q.eps @@ -1,2152 +1,2152 @@ -%!PS-Adobe-2.0 EPSF-3.0 -%%BoundingBox: 0 0 150 150 -%%Pages: 1 -%%PageOrder: Ascend - -%%BeginProlog -%%BeginProcSet: -/ReEncodeFont { exch findfont << >> copy dup 3 2 roll /Encoding exch put definefont } def -%%EndProcSet -%%BeginFont: CMMI12 -%!PS-AdobeFont-1.0: CMMI12 003.002 -%%Title: CMMI12 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMMI12. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments - -FontDirectory/CMMI12 known{/CMMI12 findfont dup/UniqueID known{dup -/UniqueID get 5087386 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /CMMI12 def -/FontBBox {-31 -250 1026 750 }readonly def -/UniqueID 5087386 def -/PaintType 0 def -/FontInfo 10 dict dup begin - /version (003.002) readonly def - /Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMMI12.) readonly def - /FullName (CMMI12) readonly def - /FamilyName (Computer Modern) readonly def - /Weight (Medium) readonly def - /ItalicAngle -14.04 def - /isFixedPitch false def - /UnderlinePosition -100 def - /UnderlineThickness 50 def - /ascent 750 def -end readonly def -/Encoding 256 array - 0 1 255 { 1 index exch /.notdef put} for -dup 0 /Gamma put -dup 1 /Delta put -dup 2 /Theta put -dup 3 /Lambda put -dup 4 /Xi put -dup 5 /Pi put -dup 6 /Sigma put -dup 7 /Upsilon put -dup 8 /Phi put -dup 9 /Psi put -dup 10 /Omega put -dup 11 /alpha put -dup 12 /beta put -dup 13 /gamma put -dup 14 /delta put -dup 15 /epsilon1 put -dup 16 /zeta put -dup 17 /eta put -dup 18 /theta put -dup 19 /iota put -dup 20 /kappa put -dup 21 /lambda put -dup 22 /mu put -dup 23 /nu put -dup 24 /xi put -dup 25 /pi put -dup 26 /rho put -dup 27 /sigma put -dup 28 /tau put -dup 29 /upsilon put -dup 30 /phi put -dup 31 /chi put -dup 32 /psi put -dup 33 /omega put -dup 34 /epsilon put -dup 35 /theta1 put -dup 36 /pi1 put -dup 37 /rho1 put -dup 38 /sigma1 put -dup 39 /phi1 put -dup 40 /arrowlefttophalf put -dup 41 /arrowleftbothalf put -dup 42 /arrowrighttophalf put -dup 43 /arrowrightbothalf put -dup 44 /arrowhookleft put -dup 45 /arrowhookright put -dup 46 /triangleright put -dup 47 /triangleleft put -dup 48 /zerooldstyle put -dup 49 /oneoldstyle put -dup 50 /twooldstyle put -dup 51 /threeoldstyle put -dup 52 /fouroldstyle put -dup 53 /fiveoldstyle put -dup 54 /sixoldstyle put -dup 55 /sevenoldstyle put -dup 56 /eightoldstyle put -dup 57 /nineoldstyle put -dup 58 /period put -dup 59 /comma put -dup 60 /less put -dup 61 /slash put -dup 62 /greater put -dup 63 /star put -dup 64 /partialdiff put -dup 65 /A put -dup 66 /B put -dup 67 /C put -dup 68 /D put -dup 69 /E put -dup 70 /F put -dup 71 /G put -dup 72 /H put -dup 73 /I put -dup 74 /J put -dup 75 /K put -dup 76 /L put -dup 77 /M put -dup 78 /N put -dup 79 /O put -dup 80 /P put -dup 81 /Q put -dup 82 /R put -dup 83 /S put -dup 84 /T put -dup 85 /U put -dup 86 /V put -dup 87 /W put -dup 88 /X put -dup 89 /Y put -dup 90 /Z put -dup 91 /flat put -dup 92 /natural put -dup 93 /sharp put -dup 94 /slurbelow put -dup 95 /slurabove put -dup 96 /lscript put -dup 97 /a put -dup 98 /b put -dup 99 /c put -dup 100 /d put -dup 101 /e put -dup 102 /f put -dup 103 /g put -dup 104 /h put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 108 /l put -dup 109 /m put -dup 110 /n put -dup 111 /o put -dup 112 /p put -dup 113 /q put -dup 114 /r put -dup 115 /s put -dup 116 /t put -dup 117 /u put -dup 118 /v put -dup 119 /w put -dup 120 /x put -dup 121 /y put -dup 122 /z put -dup 123 /dotlessi put -dup 124 /dotlessj put -dup 125 /weierstrass put -dup 126 /vector put -dup 127 /tie put -dup 128 /psi put -dup 160 /space put -dup 161 /Gamma put -dup 162 /Delta put -dup 163 /Theta put -dup 164 /Lambda put -dup 165 /Xi put -dup 166 /Pi put -dup 167 /Sigma put -dup 168 /Upsilon put -dup 169 /Phi put -dup 170 /Psi put -dup 173 /Omega put -dup 174 /alpha put -dup 175 /beta put -dup 176 /gamma put -dup 177 /delta put -dup 178 /epsilon1 put -dup 179 /zeta put -dup 180 /eta put -dup 181 /theta put -dup 182 /iota put -dup 183 /kappa put -dup 184 /lambda put -dup 185 /mu put -dup 186 /nu put -dup 187 /xi put -dup 188 /pi put -dup 189 /rho put -dup 190 /sigma put -dup 191 /tau put -dup 192 /upsilon put -dup 193 /phi put -dup 194 /chi put -dup 195 /psi put -dup 196 /tie put -readonly def -currentdict end -currentfile eexec -D9D66F633B846AB284BCF8B0411B772DE5CE3C05EF98F858322DCEA45E0874C545D25FE192539D9C -DA4BAA46D9C431465E6ABF4E4271F89EDED7F37BE4B31FB47934F62D1F46E8671F6290D6FFF601D4 -937BF71C22D60FB800A15796421E3AA772C500501D8B10C0093F6467C553250F7C27B2C3D8937726 -14A846374A85BC4EBEC0B0A89C4C161C3956ECE25274B962C854E535F418279FE26D8F83E38C5C89 -974E9A224B3CBEF90A9277AF10E0C7CAC8DC11C41DC18B814A7682E5F024867411453BC81C443407 -AF41AF8A831A85A700CFC65E2181BCBFBFE3573BF464E2BE882A715BE109B49A15C32F62CF5C1025 -7E5EA12C24F72137EB63297C28625AC32274038691582D6D75FE8F895A0813982793297E49CC9B54 -053BA2ABD429156A7FFCD7B19DAA44E2107720921B74185AE507AC33141819511A6AC20BC20FB541 -0B5AAEC5743673E9E39C1976D5E6EB4E4D8E2B31BEA302E5AF1B2FBCEC6D9E69987970648B927623 -2093695D55A806D87648B1749CB537E78BB08AA83A5001F7609CD1D17FFA1043EB3807AF0B596AF3 -8C91A9675E2A53196FEF45849C95F7DC182A5EC0EC4435A8A4B6E1CDBF9A5AF457564EA72BF85228 -EB6FD244F25135360DD3EBEDA99D94828F447D52D011A8FC8B8BC124A4B367EC860C5F7CDBE58563 -4A1ACD80E37B6F2D5F33AF5A2C0814652FA37D0C6A99767C561253AF8DA3A1279D421AE11C133004 -DB273FDDC2134ECA4CC50296220A4729E4E73003AA88CE151F57F8C5DFEE1A8B3A74D7CB142B4F7A -128A4B0FD028B71FCF59841D3E8CB0450A0AB47B927D944D94C5DA562310C79E2321106D6B90FBD0 -4F5EB787AC050578011A0B24AE534B93B4108D982736464ACF5B77071ACD59B8D987EA9FE832A655 -C175AA8204DFA034D9DEB3AF510C4E948AD8DF3E799B81C5C8250B86FF8F91BE906357FC5DE9A320 -9AF78555AAA0FE720FBF0300F4FFB1E6F49CE9E00B0870D1E0EAB2CE05378850D15E9591ED19E563 -27A083671AD4BD0FAFC5A3AFA4D3E3CB1E50111ECD344168DA214E380AB12211010DA632B2CE9261 -6B94EEF181FF68119A2A0FB6AD9D3BE9E91F24484D018879EF39B3A5EF9A040B26AC1F2F6EC60EAB -B4233CC0878BF25AD526D45BA051CB36353A5A56E9BA2D1132F595F3202195681878AE92CFFC0A80 -9F8EF0DBE782E10D065658FF573553AE7EBC443C640F3F5745DA56489EFE26BBE67475C3F0ED603B -9DDB8464D40B587BBAB8F1B3F73FF9371EB27335665FA61498231EE271987F283580C7B42BF98121 -2D1460D366B3B5D0B7A7F7CD24B3C145B291FAF0B1F20996860BB42E7AF96BEE82C2B2174E9ECE34 -28A5FF9A63D7858C44BBC680770CE70BC7DF2B68CD42F9342517976533B7DA625EBDB07E071D4C17 -C3C32714C079DBEFE2F6F4977B005FCB214BF1FCEB394488CF34938B112C31AD00A54D096EC3769F -157DF59B6EC70FC6BB644470C2DB9688A9891D06145B198DEC09C5DDBFF4E1F56D8B62D172F59271 -B009EC62DBD8D48017892149618394F80F3472ABA74AAEABBA441B569394080498B5E5B56EFDC414 -BBFEBD1D53FBD880E92ABBA771A5EFBFAB1CA24C3F36686B9D9B65DBBBA23089C7D35CEF18D9751F -EB7C1E65F3B672D5E7C2BF998F65D0F49573F285279159BBCCE027E66EEEF9E47CA90DF348D89F86 -48FCB6F55AB2ED74C4043AE90F3542759B3F15932F8A52E3318F1693B2367E13AC6412B41D06DFA7 -1A3A869DA8816B26CD2CC94DA976DEE2B7ED59B4E956A0836A5E7FF5E0FAA40A121482798BF50E17 -28D3387D50CD62E1017235A3B1416CBB94C04F3E3D5FA2BDA3819A47057B8FECB3C09E0A391B5EAD -C38DC1AB744F90453026AACEDFCC190A280F0179C8A3BC1273C608A671E4ABF8BB5DCFC473240048 -1002AE9451172F2F9809B75440B987AB11DBB3569022A02F0194D73FEACA133DBB96BE3DED9623D5 -A89D652880EB4A147BD25031EE1C212E3226D5F7C4497DD9E2F767C4414323972C2B268F192113EA -4A0CD2B82760DCB2ACADC8719511F63D471F2DAAD5399A0B5DE1A15C6579712A81B432DC083E2EFD -660FDE2F155C78676E3350A9A5724512F4169C5E697897F5013D010BF75CB1920328F21DA3408BD9 -0216A18A5017D5FA51083A7C49C3D226B8AEB886083D13EECFB4EF12DE38E5F6B5B7A06D7F2BFEE4 -4690C87A7EFA5725AC793B61EE754278919EF5C5033D539A9BE0732F3D33137B6BC6D170DDF29763 -101BA0078E4BDC1562D16CDC01E05129709AD0E9532C6E6F7E74E42BF133F53314AAF732E90DC3AC -5C1BF5FD615189E12EBCE636C9129641A4879BC987E734289732F73DFF066C8C13B3735E2F2DD818 -E542EC0649DE3E37B0B5111670C45EC14E1E1FF14E41F12A20A6FCB2FDCFA350467651D697AA7E55 -49E2D4B30175244EE941B1F66BCC160A03B963A64DB7D1A06ECA645866EC4627EF2F3563FB399DC9 -B56A99A024D8FB026B8CF36E49484B98C90DA4477FB706CE1F5B136705E52A539D21C933315542DC -E71BC85955427D9DFF0DD9CB767B6B67DE7C2B8A2E2CF3A639E4C354EBC169360311D44D6F57322F -0A402C293F9FF510AF29BAAE402A218B6314495017595DC15128022B8C698ECFBAEF7ECDEE7FF01D -E305261E0119786B842B781C94E2B0138A581CD051807508F585597EBCEF7871A914FDB08466B2E9 -79C83DE884845105596546434E0EA525BEDFFF3E68F245493745A06B577C9A50E0170274210A6F6D -4A44C1EB5512ECDEA42F107E8C08A98EEB9EED0582D607DE96328ACD3D81BD759CEFB2F6DFD2AD55 -FF46D5202CCD0B518DB0008DE95594E96F77FC36BCB1EBCD388BD2E3CB674F90A8C69B4F57FBFB6A -57F07443B05B43BAD9EDEC3A90C5270A9F9198C8674972734277A7A14F22433A74CCC8182FEA974F -E66DD3A3BBE8F2494895B01B5AEDEB4173D8C3BFD4AAC413A548E0D446E0EAD5BCE288586885C116 -080C0AFB697061D021C043D2822FCDB78CFA99DE2A90A8465822A6FE4C0D03494EC045EFA80793A2 -458FA78C3353B0D5D0600CE006E31CA3131F387EC4D84B0C7C46A308D08C302C85ABF45B2D483BC6 -3DF7B0EEA1A0AFC0F844D77274C95ED477114752D0C88AE6092423DFABB3B01934699F096AF8F067 -D870F73CE45036362AC4CADCF97F42C63DFFC69EAC751C08AB6D61D34D32BFCEE1155D012314FD51 -252D2470B4D4CB16D0ACE4DDB17030C3622F56F96EBEA0FB90D92D109B956A4DC00332A9433FFE10 -43300B01D87EAD0C51E6D65545C37AA6528C214BF68831BDC78A84746E879643D9D9EE6BA5C167DB -0A370308C5EB606619A17BEC856BFF181BEBDBA0CA0BEA05C4EC948E288A941755EFA2DCFAEE67F3 -3B311CE0532CAF26FDE29474DBBEE42A623BEA14E4A4858B0496EFAFC775D48065F58DC20F727DCB -866EE68E24918AA1906073B64B0FE458B08A1B7DFA4BC03DC88CB5394F1FD149478577396F0AD201 -C4568BEBAB40DE8B864484D8D117727EA283CAA7485AA58FC506CC9B1C774FC883A3440499E3D984 -36111DC1DEF8CA30DDDBB9DDB9C89534D691555C36B5450DDE24CE5B17DA11E3E4C37A11581E4FA3 -C0D89B5CC3784BFFC14B6E98C548A7C38C53CAB973AF3DE82C6D42A01A57C9FFA790111BF79FE7F5 -91D5E2FF9E2730B7920A30D7BF713E4EBDD272DBDAFC8A676F195BA9082CD779E002FFD0785FC8DE -FFCD12E4B8DF368091E6119E135076E43DD0CD75E6429CEEA972391BA73D93B89645B2480315A49F -49AFE2F324D251AEE654ADCCA32A66E9B1B9407B055BBC615E37BF1BC8C1ADD81ABBF983C73F733F -91770D50184FCA3A0F6165CFE79002352DCDC1296D67AD671A4F4C0A60C7E9C18F3CC374A4D065FE -56D0BBD2CEEE3F70AA9398896FE22CDC4BF7332726A0E676D66D511799D63BDBE0DA140EC4EBF57D -E032B620E5ED890A6760CB7D40A05037BE3A6C5347DDFFCAAE3A5C4BC116F39969936FB483040E42 -1345EADC494523ACBDB55CEA57C40279D4AF5C7C9F3B0660ED9E725C9FADCD5361784D5C14B93C3B -13FD055F269BC7DF6D67719A2BF30D19D1A690B4CBC06DEA51884A686564B3FF6B3F8E9C9FBEC5A9 -14F525B6AE34D448B0AB85FAFA4E7F301984A9645C786DF2A19C2E6A20DD0B60AA2974A624E7CD19 -17AB87B273D04516D727FD30EFD27C983342C9BCC1D9CE95E7576AF25A4BFF02DB4588B8604C306C -04AB66E85E114C28CC47395016955AFACE381AF44B1D004D5B6B64186CD7CB9D081F93A637BBCFE8 -E292FD8D5863BFC683C9E37F0FEF0ECD16CFE63E0A584BFA4116D3AB0ED62B7B82C1630B2B78F255 -27A79267580F58005BFBD37E5C0C31029945CF6F6F72DB17EABDBB51DC8726FCD5AB2D61341B2EF7 -716F0D0AAC546DEDD22AC62FEFB1ECA0EC524C6B3233FB4E1B4CCE49F584BE7BAF33C878F2280A85 -98502001DEDB4FBC9F7DCF40D055AC35AADA869F2808F0B401C294AE378AA9B2AF2768B75D9CAE1A -C52025F18E7DDAEEA2122CE9D233A2A9046EC5EBEAE20FA928BA4AC651AF426574FAEFE31D28C771 -7DEA91429C7BD7611CDA7F5F55A070AD6776AF18DED46E5101A7D1A47F0752896669148EACDBEAD1 -C8A44801B53DDC61261499F2FCC600F635D8CDDDAD94A24BC14A2F5B5AAA6260955256256AF4A9AB -CDF541453E4190AF27139D3C6A2BE9BE4870260574C26338FF348F503DA4DC15FAC4F6ADBCBCC29D -93B9100EE126A0A28C3F0CA30B7F09E13AE59E34DA373702C5817D222DA4AC23DA5EE272805A902C -DB7001A0CCB26220D956871465BE18A323DF93CD792BBE61F3FF8C4957FA49925DFBA1569FBC1BAB -D1C3BA13F88D1D98F7034DBDF956F52646DF43AC978E86A1C532085DF36A66FF556442F3F337A699 -DEAF26EAE1AC20FB2968E58DF82ACBB647350335E4D48032E1BB49F1EA2181FBE183AACDC06761B4 -8A9EEAE514A00B4656B4CDA4BA3AC27F30C39A4274C1DAC69A7BBDEC53C9C7D78D0FAD8530073440 -C85F0A4B0003AE793731EF2A3199CD73663B05BDF83FB2B8C175F0CB3D20C52C0C8A370F9DB92304 -8CBBEA7267C828A700C5856EECBF7FFE8A67C5027BEF1B1C7D42C717ABC02FBB73A3AFEC5F57D6BE -21C2CBADC84855BFA4BDB2F127307BF437F010AF0C938F9587B153249E6EEC2ECA63E9BEE972CF4D -98627E9DFD37B325E7A6612C667296C8E9256C62690BE9D25F7C68CD984B56197148A89E8E05B9FE -98F033E9DD9EF7245EF70E63289C7947BE5F2272154E207A9B4B1FDBE41B1D4D72BE13873462B012 -F4B9D5F4164B714965F36C4101C870EFCC4BACC1A6DF744C1F91B1B7A2BF63BDFB840F5B0C062ACD -11FE47D9A3AA36CDC00ACD6DD8475034F603E859B3113B1C8A311C80B5D9EE1D881424745B573DB4 -3656FD733864CDC8978006D58309E4B226288A0DCDB9AAC8396FC9DD024BC5F00160C382B127EB4C -9FA74B62BA990E2DFBA53D3CD57A27FB68F912E5B69CFF2113D70CDCAEF634BFEB9D7A65CD1A670E -3A2CEE5D9687558A1BDA4358BE0917A4C8614B97DF5810473714F6FB8BE998BA52916F790F353DB8 -7B96194C6271147A947C664D273CDE1893D4E1EAEE9F4199941970A46AB809D4776E9310C506EDE7 -7EF1E9804829E495B0F654EB15FC2563DF6CB1B9D36D837777547CA37ADB28768A8DA2433BFD20D7 -2F9F00743272277F2C9A9F1F33CFAD44A8F3D620A0DDA13C3286760361107A0A82E0D12A9C601FE9 -3971250D47583AD68AC90892AECC54BFAB740A2F51F07A1E2C5B5E3A895F3E3001F4DEEB99E0A646 -4B0EC3753F30013E9C92525D9F651898A585DB03BB7180D652CB68ABAB55BF18402A43888772F9C3 -6C9F7CF6E00F07B33590C777B1B056B6C31210A3FEABC46BF00E7A837E93EE3464776B9D78E75C60 -CE9E0725C31784836B9CD63BA44DB0867C80D70A15FC97CC6E4526E84AE9B30CDA84C1C7857466E5 -F315C8F6DCFA0289FA937AAFF5D3CC35709E9EC3C255B355D7BC6063BFE6364804342D4BA7D015BE -58633CB781FFDEE7BFC46AFD84255D141DA1EF280D5CE22017DBC7C1A128B3F9974AD5BC1E53E43C -3EC042C17DBED744236D8AC784B9102E2FC4E94DF8C78254A6D496790CD6684EBB54035048E1DB75 -93E552C7EE7B884012517917AD46CA470ECFBDDAFA7F1FF13C0CB00005628710DD4EA93C79DE721A -89BBF27DBF7A085799B00D6AA37D7B3590C79ACAA5DFD15953E7F8B5874EF9BF34A217184100A080 -0A5675D552ADEFD930E294A50CF7A3C6344EA0871ED23AF942EC699E21537D852ADBE736EB1070D2 -C9B622EBD2384430BCB114D1DA3CBE2C6FBC839D77F20ECC999A5302705AE31AEEB8B4E5CA4046A3 -C77F8B0248E3755013CFA7C76D7248920CC203834E9328B58D5FC7C46B11B5AEA991556D067C2B24 -37634D95EA274197D3B46CA1B8446D633B6F0AAE72A599548BB3D81A337113D3EC58B0B2DD107A61 -7CA6DEADEE7003AE6F28ED6DAA5C5D99D67DFD2594800A66D11D26490156A539E286191274C30C09 -8DB77A427695BAE705DF290F97887C5DD6FD964D76FE6132016D0D58580F2EAEB727FE1B8AEFEC95 -C4629CB17D8C63D1EDD2125527D00C9E7C64AA7053A047A69F82812FD3C8C2543F269EE9C553F5BF -8A53D461D9C308C198EBF2B97DD531664229D32C3EC61D69E4E79F539E9E589FC3F57C9E4624F869 -A482062A52C9F4B640090C360DF8DC8702DB966EFADCAE94C8A2DE022E88EB388239BC517368F8C2 -6C8D96A6E8649737F902495E3F29F357B9B58EA47A9400D028B8BFFE74BAFC43E888808381C5F3E3 -18DF9BDA26F6E14DE2858A1A9CFAAB8A82B7819F748E04C8606DA94D884A13C67E3FA06F9C2834E1 -A02F4BD043C87D57297D500E4757BCEB37239A755F36FF99A3F9B6E0CC9F8938041EB931519BF0D4 -2E7A93EE62E6A59C2BBF1B2D6CE1958DAB40F1EC78C99C501CFD69864DA50EBF933D30CEAEE7456C -D0A08C78CAFAD93CACE2671F7E3DDDDA98EA56CA35648109D4E6333188ECC817F317D8979DA9FAD9 -DD45DFE5D74BBADFAC4921723F736426D5ADCC5DE4FA6703E121BFCECFB415F1D444634A7223389A -38DF2AD64101476D170DB854A220CA8433AB5DC40A841BEA6CBC538C63E0442A7764014D853AF8AF -C34F2D17A1DB8740A45C857667A59F895094867D12D06EBF72942E8ED4D6EE9EF225B4DD82A2F16A -D0A8C2C246DBA7BB9245ECC4863D14885BC30950451113123C868B8AA5B36F7B926B5ECB0A333902 -BB241B3D281550655912AE14A634D79515F00799E91F6DB093ADA1692CCB5A32CF94FA0A4E1B311A -68BD03C0F85F2F63C3C0658A3756013288704B240E14F65AC1BDA3098894BE592794245AEF119ED5 -9523983DEB2D0E9D211F62E6D6C5AAE72F3AEEDC4E590BD531EEA93C05EDB1370F140DB3034A9996 -22ED4BA8F1AAEDB368656B6C6AF920DE068E06B985FD47461276723C9944CAC87B44475767009320 -C7934FEB9B4DB8E1003000A663155C9A3FC67182BE4EA30F5FC813A8F34F3F99DEE8134252A98B21 -54FCE28C1EC23FA5E4BA8C4E005708A18FCEDE9F154576F0B3400C7FBFF197011FFB739D285819F9 -C19796979B3A0A5E4E5CB116F78DCB3A7178718D886D1A9E52BF4D9C8CA2FA2725147413CE566DC7 -4DCD7328806238F8BF9A780CE75C05A7C2BD89420F8A0B0D602498C1C83F775A231B8BED4EDA6F8C -995ACF80138D4A438EED6FB2CA44F06D664052D45B2FEEF0EC584B27E01D663D4B2F8C48E04690B3 -50AB33F10875460000D37C300CAFB3F8391E44F1AB363074FAC3E03C41BF062E5668AB0A4214C64B -171A2CBA072DED6EFAD31309A34D99DBC065106DD8F0942DE6DFD6C0743D98F214C3E3FA09DDEE4D -1080AFF99C98E001EFE2B853747CA64A6130A87AEE3583592AAD47CFA01F0B5B22C638925ED65188 -6EC83777DCCB56A808404BB5B655DBAE33483AADA292B580F02FF2494C7F3F7459BABA95373E39D2 -ABEFEC3FB56440DF99E6DC49E4D01F9286E11085D68EBE8744F307F6AAD2DE8B745E243163427A2B -90A90F6726BCF115DA15331E3F30CD025624C7B916A97B4067C60213C0B3782EEE9F4594B4B78B07 -2C5E9A30D35E1FCFB5E043404E5407A01A2ABBB636096B0ABFCA115414EBB67749D494CA030E21A9 -1206D6B090E0D94EF2D1165765010B8D39695D096825D9687F2480C851690AAEAF4AEEF413C054EB -FA49AA548B618802B62D0DD5FE7529563FD02F7CAFD93CA182B2506393AE802093C5668BE1D5D2C9 -E74C3160B5C3055A31ACD75B2CE21E1014D136FB96E44D4E6BD79A7B5FC5F1741A55B6CDE4CB5B44 -AE1EC827FD9BC083F76C8787756104E782F9D4BDEDA005B4085690CCDA8AC75A0BEFB47D0806F4A4 -6126AA280A41F0FFCFEA04B96714C7B1D4F806FA6412DDDAA68B20551C36E556647C3A7FC303C655 -79322171A7783FD7364F56ED31B5B8132815F524DC97030DFE3E47EDE35D03F4CD2CD99AE55D0BB8 -17A93C71F7C5383ADD04552F1C54557D494907D3050FC9D5514FCF80EF7039C5B076F16A3A946D59 -1165E72F2A31E906D4A57167B44D64BFAE9C408E9CE5EC8937C7B3B0AF24089A1878AF0758B7CFC8 -A787EB7CBA64BF13D3939DED996660A6487579162F56C3440764954DF160077B16CBBAAB9DBD5857 -FC44A5775ED562140DD33B3CB2173152213DF78D65AFC94347685181CDCAF3B79D755652C2B2D3EC -39449252DA027E97E534AC05ADCC39795C41F68E5F98F983CFCB4DE3BADFED909B2B6178904806B4 -0AE9F9B3577531D1C9C5793EB1C455C9895D2C858540C6B7F8B40AEDAE79FE461309AF352C80739C -5AD7612EE5970C113133502E1F59F53F8A72373A3841C37E727ABFB1E7A2AEAEF482B0942CDA1BFD -D81F7A2FC15A7D0E7F2CEFD8BC432268ACDDF3698804556E4AFE9086E6AE0CF1B144A5A7D04CE576 -F26533B611371D7F846959F2A589E54EBC0EA0AEE1C117EA3E8957E07AB8A728AB388B06BD7D98CD -44C468F7AE354304DCD93BCAF479F5C27BAC920128ED987667E94ADAB5E55EAFAB2B52BB2D83991F -9D638CC461A25738A6C33F134191A1A804EA935EF441F89129175BF705D4F7089BDE3C0AE6C61921 -487B3EDB029FFE0CDD2307B68CEFCD58591F939ED509EBA0FD070294B5158F3BF432AB18379BDA34 -86DBAC2984198FAEA711008AA454E9612B23B6C8C5AA908E5424456603D522BCAEB3EC41E1C8BBEA -B1C8CE0BEF6AB7C7008171F62B03BF9258329DCC30472DB329313606157CE246CC8D5C9E7DA2AE08 -967CB303C5E516F18F0CE530E75762541536B444925C1E123CFB615157A3169F7F10172423BF5A54 -0015BDA30A03414679A145541655B65253CC546261FF4626722942C8AF01FDA6F92200EFF2716807 -4F3BAC5692AAC160F7A0DCBD5315C4B700E3BEF31520215C093F0F1DCFD5D18538F8D4FF1997C652 -4DD972AE1CD7E11F829CC621B383390C2E7D196A8D5A9CBFBD8D3145E20CF045D1F128CA47CC9A01 -91E29D4217A1FA558F1F93DC86171E43764CC7D9377A1C76AE027D5C3FEC7A38CEE040DA280902D3 -F183134E3A95E5EF148C71BD5994BB28EDAF191EAC23BD02BD9A5F613235E97A5EE8C5C7E6A93F03 -186A29C684B6E46026A31BF1830B1ED3BB12A0648270CEE09A4F5AB891AD72D80C4057C781DFD270 -EE443E1FE4E9D8E58D2AA0A9A702836EABF544A3B4F2E1841776EA821FDB36E71AECD6A1C355127B -461FCF72A531176DB59F10D9A1222F99EE4AA579CD5CF6A288016F5DA6838536F3FE0D902543095D -90094EB79BF1592CDDE05786DAFD98AF30C6CEBF27B1315C706A63D4E868BA374EBE33145C16F181 -2AB2F8668B549A74C8A58304BAFBEE3136533542EDB8976C7550F0905546D116DD0E11384C2B99E1 -195316EC9CD53EBADB73509FDE80B1BCBCAE46E8806E0CC8CCBF2B10FC54D05C9F604B4ABFC87B25 -DB5CA90B64096B18C33E8A53F45F163AB7AC47CD6E9521230D689ACA686B5792D72097C4E67F93DC -9B7AEE088DA36BD6ACEE7E68ECFCAFE7D585F677BD1ED27595948CB7CCE21BAA375393CA45234E8F -4633D61EC657C528EDD0FF520964F8B737D0DB9A58DB146588F7F02CB77DE7D417CFC65B45CCD62F -77CC833DB5228159A552C7D6B0F7E5E5521E26C7F9A47D8F600CA820DF8B4B25B8B8D823FFB49E7B -1E779D9680AFB496C7BD8D2FDB99717F9EF91A6AFFBDAF5E6C188315BF63C3BA9B8414709D1E60FD -25D29BEA68D6D5857CF024BC2E03249A4B294F36E3BE13225319F11AED07AC2BD2E5BA6E9CD7F77C -C707F6268514BB7D50257EB4E23BD6CB9700745AF46DDD87664364A8CE71574F2D60CDBE61A3AFAB -925EFFB23273B61E93385C29C2E8B76650C1432AC8D4FF35F5419CFB553C8F10F4230CDC749B5F3A -8F5B1EC8C9FE31626378EB495A9A53BE7E1C0683550BB3AE9ED557CF4DE95399C5EAFB4B99B0889C -890FE2CEF419A20800812D0DA7795E9F519061D19D1AFE2AC77CBBF05D1A738E62B64B4224DCA36C -48B7A9D1FF785225C9852111316ACE1DAA2C21E05D767DB0DE6A0593D19029814C8BCE19DEED87EA -E4F52004EA1FE7934C099EC71AE7048D796081176AB9B8ECF42FA5581FFD859BD818411DFC4649C7 -6F82D6C03563F9B9D2DE6F274D41E0A93784EB6ED0FEAB8DB20CFD35E2DEB93A1DD1AE514F9E8A48 -279536885042D248CF3FB0872135921DFDDC41198DFEE21982D675CC3BEFA0A3986893CB55393D0D -97ABBE2E2E9B911B8E219104B22197EA04E201FF9C5F9B644E91709CFACDA783050C75212109FBBC -0422B697902D9847D764AD31E851ABB49F9BED16F1377F97198664125C1BA4E06C4C43AAD8829047 -38E1127C3CDC74167B21358CBDC8563951CA7B5DE09526FEA0B1D2AA92F3C4EDFC252BBC38463B55 -E97E8C40D6FD34403357911A1FD0A46565148F3FC891B20EC84976FB26D13A93F1B3D7162D864F8E -1C4A4CED23724105D0B7EB83EB334386912AAD93BAA8AA9CF5CDDF83D5FF76E94C8A2C40C28B5F48 -47A49D8155347392B7D2CF2731E45E0ECA9A654AEEC5DC2A6B03E93D4DA22575D824294ED80804B8 -42B898708A5FA69C5F958A935D47F57039C31771879DC8AE993CF060F6B509F8CE28FAFA8A0FF700 -FD69D4EBC54038D5E1CDE731CD67C5C6F8E7F1CB1977C3768E60E3860D1254AA78436A71018CFDCC -1039C7CF7B77E8648BDD86FD770249BDAAEC08900B6E83133D88010B00225CFA5E3312037C2F9589 -EF6239B282F16C76600688457FC0D08CA35D90212CFE0D4913A69CE823C28EE8E409EF37D4E0A4C6 -1B8E4463A6D77C012F9FBD76F908211166035EF6CBA88D06178DECCA1A600C1E6FB0459CEABABF56 -2E6A15F42EC364FCD799155384F2C2C1672F3BC243B706870903BDEAAB89D658E9072C80DD853118 -832FD5D1751D3E2A392131FB96C14C67F52549B34241AA4F61EAC7DB1DC2CDA21DA3C643ED32F2C4 -FD07A503C2691AF03CF7562E5E5C8F67A69642021835AE98E1312C1FBE112C7E3D8021974657DF38 -763033DBD533678902AC7C30B003A58183660D747F63BDB769133F381267FA0CF317CF247AF52A62 -0E8B746F91549E6707A5194C7F55B12584C637A77DFAA309C71B35EE1BC03571A249B595764C872F -76CD7BE88B4997E3D47F4CD9B184E14CA9CA50F03A802E5FF0A36844D59BF8F4C44579707479C658 -63F566B5BCCCF8BF62B5238C3860103B7804A43376CACC661C95536760191C917ADDAEABEBF60DAB -34185C68A03BAB8B4E72DFFD94BF526ED7BD0137DA616AA0C13CC52490772D59C060015D52D587E6 -68D6B55BA9DDF0FF65CCE13F2F302577478B9783378B645375EA354E25F39358E1F29135FD185BD7 -57BC0A3E743D21E2D35763363225571EBC1B1A0D070903464DF70DEB1E6067A65F85F518873A5085 -861452EA506D206944D1A45BD810B8CD62DF8C56CFA79E0713A359850036EA86F9EE798FE69666AC -75496FD1957390AAA5C0196AE72D4CF451372A29A8027BE9B21CE4CC4D54D42EA9F5DF0C597C5BC5 -A755CB5C8A21E28763813202A3E2A4B5889CFF84DE851AF6F42B19E208F5212398B4EF29806E058A -2DC35FE0DEE90C8C3ECCD3A94CF9B933423ACB97080CC277F064A70C90EC87A280B23FCD7F93C724 -030E29974771C42B14D70C7C4D1F89CE7FDB1CCFB71806 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 - -cleartomark -{restore}if -%%EndFont CMMI12 -%%BeginFont: CMR12 -%!PS-AdobeFont-1.0: CMR12 003.002 -%%Title: CMR12 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMR12. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments - -FontDirectory/CMR12 known{/CMR12 findfont dup/UniqueID known{dup -/UniqueID get 5000794 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /CMR12 def -/FontBBox {-34 -251 988 750 }readonly def -/UniqueID 5000794 def -/PaintType 0 def -/FontInfo 9 dict dup begin - /version (003.002) readonly def - /Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR12.) readonly def - /FullName (CMR12) readonly def - /FamilyName (Computer Modern) readonly def - /Weight (Medium) readonly def - /ItalicAngle 0 def - /isFixedPitch false def - /UnderlinePosition -100 def - /UnderlineThickness 50 def -end readonly def -/Encoding 256 array - 0 1 255 { 1 index exch /.notdef put} for -dup 0 /Gamma put -dup 1 /Delta put -dup 2 /Theta put -dup 3 /Lambda put -dup 4 /Xi put -dup 5 /Pi put -dup 6 /Sigma put -dup 7 /Upsilon put -dup 8 /Phi put -dup 9 /Psi put -dup 10 /Omega put -dup 11 /ff put -dup 12 /fi put -dup 13 /fl put -dup 14 /ffi put -dup 15 /ffl put -dup 16 /dotlessi put -dup 17 /dotlessj put -dup 18 /grave put -dup 19 /acute put -dup 20 /caron put -dup 21 /breve put -dup 22 /macron put -dup 23 /ring put -dup 24 /cedilla put -dup 25 /germandbls put -dup 26 /ae put -dup 27 /oe put -dup 28 /oslash put -dup 29 /AE put -dup 30 /OE put -dup 31 /Oslash put -dup 32 /suppress put -dup 33 /exclam put -dup 34 /quotedblright put -dup 35 /numbersign put -dup 36 /dollar put -dup 37 /percent put -dup 38 /ampersand put -dup 39 /quoteright put -dup 40 /parenleft put -dup 41 /parenright put -dup 42 /asterisk put -dup 43 /plus put -dup 44 /comma put -dup 45 /hyphen put -dup 46 /period put -dup 47 /slash put -dup 48 /zero put -dup 49 /one put -dup 50 /two put -dup 51 /three put -dup 52 /four put -dup 53 /five put -dup 54 /six put -dup 55 /seven put -dup 56 /eight put -dup 57 /nine put -dup 58 /colon put -dup 59 /semicolon put -dup 60 /exclamdown put -dup 61 /equal put -dup 62 /questiondown put -dup 63 /question put -dup 64 /at put -dup 65 /A put -dup 66 /B put -dup 67 /C put -dup 68 /D put -dup 69 /E put -dup 70 /F put -dup 71 /G put -dup 72 /H put -dup 73 /I put -dup 74 /J put -dup 75 /K put -dup 76 /L put -dup 77 /M put -dup 78 /N put -dup 79 /O put -dup 80 /P put -dup 81 /Q put -dup 82 /R put -dup 83 /S put -dup 84 /T put -dup 85 /U put -dup 86 /V put -dup 87 /W put -dup 88 /X put -dup 89 /Y put -dup 90 /Z put -dup 91 /bracketleft put -dup 92 /quotedblleft put -dup 93 /bracketright put -dup 94 /circumflex put -dup 95 /dotaccent put -dup 96 /quoteleft put -dup 97 /a put -dup 98 /b put -dup 99 /c put -dup 100 /d put -dup 101 /e put -dup 102 /f put -dup 103 /g put -dup 104 /h put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 108 /l put -dup 109 /m put -dup 110 /n put -dup 111 /o put -dup 112 /p put -dup 113 /q put -dup 114 /r put -dup 115 /s put -dup 116 /t put -dup 117 /u put -dup 118 /v put -dup 119 /w put -dup 120 /x put -dup 121 /y put -dup 122 /z put -dup 123 /endash put -dup 124 /emdash put -dup 125 /hungarumlaut put -dup 126 /tilde put -dup 127 /dieresis put -dup 128 /suppress put -dup 160 /space put -dup 161 /Gamma put -dup 162 /Delta put -dup 163 /Theta put -dup 164 /Lambda put -dup 165 /Xi put -dup 166 /Pi put -dup 167 /Sigma put -dup 168 /Upsilon put -dup 169 /Phi put -dup 170 /Psi put -dup 171 /sfthyphen put -dup 172 /nbspace put -dup 173 /Omega put -dup 174 /ff put -dup 175 /fi put -dup 176 /fl put -dup 177 /ffi put -dup 178 /ffl put -dup 179 /dotlessi put -dup 180 /dotlessj put -dup 181 /grave put -dup 182 /acute put -dup 183 /caron put -dup 184 /breve put -dup 185 /macron put -dup 186 /ring put -dup 187 /cedilla put -dup 188 /germandbls put -dup 189 /ae put -dup 190 /oe put -dup 191 /oslash put -dup 192 /AE put -dup 193 /OE put -dup 194 /Oslash put -dup 195 /suppress put -dup 196 /dieresis put -readonly def -currentdict end -currentfile eexec -D9D66F633B846AB284BCF8B0411B772DE5CE3DD325E55798292D7BD972BD75FA0E079529AF9C82DF -72F64195C9C210DCE34528F540DA1FFD7BEBB9B40787BA9351BBFB7CFC5F9152D1E5BB0AD8D016C6 -CFA4EB41B3C51D091C2D5440E67CFD717C56816B03B901BF4A25A07175380E50A213F877C44778B3 -C5AADBCC86D6E551E6AF364B0BFCAAD22D8D558C5C81A7D425A1629DD5182206742D1D082A12F078 -0FD4F5F6D3129FCFFF1F4A912B0A7DEC8D33A57B5AE0328EF9D57ADDAC543273C01924195A181D03 -F5054A93B71E5065F8D92FE23794D2DB9C535A5E57376651F6823308463DC4E0339C78699AC82C76 -9542FD3B410E236AF8AF68CF124D9224FD6EE92A38075CAAF82447C7AF41EF96F3ADF62F76FB425B -EDE4C4124E7B1E0B8BF254D91912D3A99557F5427907A56514C5A3EB961B94112077FE9417B70DA0 -B2E1C1FA3E1D6F01D11F640CF848E45BE3E205258E64FE36AFBD4DF4E93F6B1A966C8E7FBE2CC8FF -43C1F67BF6C361678B5E90F4BA524FE8A4CAD6AB28183E6ECA6C9636E884845105595A2E40CDBE8D -4807A81AF4DB77B31873FEB221BCADD42C4669459704CB58A7966B77ED61AA76BF4E05B2265D4940 -25FEEB45907060243E63A418D3B75EA5B4CCEB47C9F70B67AED130771346015EA6EE1C0595A1DABC -630ABF643F5AA128F1BF37464F294398D9209F200532839CE6DB19ADBD2050B9D04289B484B58C76 -BACA8EE8C1047138B0814FDDE2B31392E886ACED278CC23F2747AF994C23FED4EEC7FD6E51AF5588 -8144B1B7AA952E0F759D61E50040EABE9ED9B44CE3AD9449E22F020ED7769691B8B48895E89CA46F -A02D901EB0C1B953DE426B56397967AF823A12138C269F179F64D539301A1BD70EE84C75E6636D6B -493CF86A711CB32F6C7D9E6C0502871F46A63803A1FDA4BE8B7594C9DC4312AD1364ACE7692061B4 -8E60FB04989375A429CD633A209ECAB364F24AFA719FC453C3190CE91C2470517836240BF053E0CF -0834D27F55C93F2B8A7253F59243D7D2BEB359C63C98DEFA90A89DF6C420A007BAA66DFE690EAEA5 -20BF0A94293AA212EB66CE7E200103B7D3A50FF835557FFC1AD378916DF5A142C5F3F7AC6B0D3776 -D67EC6904A7C649E16EB3FE53E0768BB921F7B855EB5039C3455931B55B0849199688012627C184A -245928E7FA04EC3AB4C2ACC2FFD2632E2AC44A11A13EC87400E04A8FFAAEAD6073C4AF55B90930ED -41E4D59FA33F2EF4745291B1233B9D8EC44A72154DC13A770A8E255DC9E3F2E4116F30F727B56A5E -A14473E68B4E90E37A420E9CE6269DCE4E1623A395EF55AB983380D31B2FB2821090B5DBEA5118A3 -B2C46477FC0BC7A81E890C88C0C396CC0CEC55E7A39A649CFCB8A2C641E7582AE35A82566F40800F -6B5FEFD747C83FDD2F86B2DA64DD35F85F686A889FE24D24AC8519CD2C45ED08E2A9B338EFECD678 -B22840B8B1D445679FEA9A72D3357A2598167627C0B4BC1DC7CC79C707DA791CC3B49A30E6E6F31A -934FD029E13DD67B5155DD5B95328A6FDCAEF3248D77A9AAC90A32E0088BB08BD179379F0A579F9B -3E647DE8D7865E1AEE6008FDE83AE3D63D109039623CEF2A58F2D7853AA72B0C30BF833134E453AD -3048A163E83617D55ADE3F34AAEB254595229A2AACA7FA87E77C025B3A46D726EA8FE8F87DD110EA -55D23A7D0ADA1FC101400501CE8D7AAF3D1673CE3C92B7B696CA100FE741B61BE5CD3B6865F48E84 -B12A189932CDBEB2A48F825A81FBF68EC4C1BC7B570AB0C60AEEE63B856CA2230FDCC859C6726511 -8AFAAC011B863B2675226A67E5A3B6C93F1E29A9CA07F8CDBE4EE8BAAD320351B5B2D8071998AA59 -4F83F1DC671029B6FCA67F717FCE3796CD9470164F4432C31F5A6918441A8D3690575F34EF4ABC1A -7FED623D7A97F3DA989F82ABB18D63F42CBB02EC54C9851965E5546558BCBF684A74E4166E12BC5A -AF104E64D52DA36A78E345EE9111C28FDA3984D6DE92D1A6796610AA8AC067F5A9C6BFBAB4BA9BBB -0381EBF7F15CD9FB0211E1BB82CD037224C0362C3983EE54D252180EDCA46C85AA2C37E966B432C2 -098996666D057130D3F2EE60B1AA8904CC7BCF64E17810C4CA8F714E5EC717F75C7D50956B2DC676 -C1A3118C9C56510BC97B5E834D452FC7298FF2C6C90FA81F7D7D70F05A98A92482EF7CA804597577 -BFEEA5C00D50E91F8B038C90B3472C4E29D68BE6407DE4058C9C7070415750163AE4B1501537E88F -3CEE95100B3BF7F95CDDE74D040CD28EA55772071665061ABE13E0FD1CEBDBAF162219E98FF4ED41 -4C59007386A405A43E84B9A310EF63E300F8249ED864849BA877D8A22967F54E96B2B71F63DB59F8 -24F62E3634B710410C251C825094AB00F3A30D94E244F7A6B4380B9A66B0AA575FEEDDE97BBF70D3 -4382464B5509BA9C4D927BF854819D1F44F807370DC7E17187D6344CDA087F067E7CCEDCD290F7A2 -E803B2B19C7FF3D1A65877AB8674F3DCC3178C8438E626490E8F21DAE3481D3CDB1F6D64FDD357DC -300016C3C6ADCE173541348F0F6EDA2E56406E759D301BD9DBDB9D7A14483D0DB56520E3B9D91DE8 -D9285E3F7B84769FFC375131C15F7D825CD9EA06ADFC1DBCF8EE9160506374C74B2D147FA0897B88 -CEB026BA4566EBDDEA09B33CAE5F8A59528D66BE64C5A24C4DE4B5B1BA49FF5ADB60A6B52BDEA026 -52266334409DF24F1BA044AF511DD7E59FC65A82498C82E18BE928FB010973E8662B2CCFB8C7C59C -67BC36E7318BA08BB5CC7545C9FA532C31B1156D2635F1ADA38197AA88D90DBD2811FC340289CC4A -DCE6C5A7DECA645F7B7A9290725C4C67289F901D7B94346E06CE95C9C49399E303F595CE03084051 -29C3796106DA12DE9D15B364A9841DDC54ACA8973006E66826962D46C5379763CCD808BC7D532EF8 -D0327A0B84596160FA12C9E462CE744DA3777745E01DB27E1677871290CD65045F996E97606A68D5 -E26389D39F28110FB9C76150ED96E25408346D24AE0C057507B10E39BDFF4B12120B529F1DF468BF -1344189FA2CE8AF379805AF044FE67A11BE67766A734D1409D1B9D3E50494F3D4DF60826A5518F79 -DDAB63DF523C604A656A411385EF7C59DBED446C38CE4D39314C0404D03A3901E8E93361B1D38F65 -D8E461F5BBDED078757B671E2B12C03B78513C1C92F54E8770FA2447A59B56FC777154E7F50EC1A6 -52E7F33A52781EB51C5B0479897961DECF517CD9962CCFF77B7CA1F81DA81E9AF4C1DD4CFEBF7472 -8B0AABD710F9F8747C64BA565A582C19B4943C956921CA1B1EAC0B883020C2EA90006DC597EB91E8 -2C7BD6AF70733E79DC30E30EAC1FD11DFDA52AF101D705AE9ECA3154C6433C62397E57E4DDBAF657 -CE73BDEF2483DF3F0843F32A6E9B39CB9FBC36B3B8F0CCEC356F1B114057E736DBCC4DA998851167 -FED692BA3F8755B4EFA3EE8DD6B1AC5C0631CD3C84389641A44BD5A6A41E2A4203A6D45841458A34 -6270A956A1E1048C4358F5539C475A81A2B800D8104AF1F86BAEC7ED2E1850BA951E8872AF4D728A -31D4470EAF98B2798DC49C9DCC3886E20B01144AF70F3635CB473A574CED6DC4D9A7413AC30DFB9E -48E52FAC4ABAC7B0ECFC2F4082DEFDFA1A41567182478E6095F2CD471405E173721E4200E406D8F6 -13FEB84CBD4AD0BDD8F8B0A4F01F30A4B93B26B8B57AEBF96322C15365B230EA665F443C8C8B096E -E98B3ACB2ACC89DE91F4FD561BBBA14C610ABFB2E8E868F2CB3CA7DD74DACFAC6CE522F233258165 -698510F548D1410F5AB8F99D32884C16CE5513159029A98E8B88356DC43FD64C280BAA4D5A0E4036 -B4568298FCA54934546ECD5D1591ABD1C4DABEB638535EC0C0E9A69FC6E42844FC39329722864DF4 -D35191B87063C3F2864AD471EEA10E9FCD32CA1C748DFB0551712402865B3546CB524CA87AD8DA13 -B420F328AAB486BC99E3900B978ACB4FE602B697C8FE5E7E2C00F06E53A12CC5A6C44CC62AAF2923 -A95DD7C5C381F501C52DD281443325F3C8C0A52E1815E78A55AC34FFAF46208D374C4200BE0EFAEF -B18C94C371B98A1892CD2CC5EA0ED6FCA24557A9353AAFF55A905F6D1E3FF4B0E4EBF73B3296A2C9 -BAC51DBA6486EC87E8D6A65A3BDF1F002323D07849769EFFC48EA242CB891D44FC8BFCB3BE074849 -AE93F2F773B4EDFEB2FE0C0964D71AB9DDBC2E3198E7F49CD60BFA9DEC9D336A67C73D4BB8649AB4 -E5A18483763AD4D4706418F41BA151E13B51A665A08DB5B199FC00B4751DEB142A8BC086D12F411A -7042C041A1758FD4920A26F610833F8CA5EA28266AC3E1D416EF1929FB20FDD02B697315F1919F86 -2C40E18278CD70A87A352593C86ADC0CF028B575E755C52C5CBEB6FA83826623E48F64FFE680BBBC -BA829E94BC443AA421A17EB6E519FFCB6C3E0D60D4D4DCA93A82E4AB87AFE4D90ECFF609B3E892B7 -A9E5583C48322DCEA45E5A101B5CB1B2F23B42B106B1FE61E803ABCE5CCFD84A3ADD55F28674612B -9F6AC00E136CF43EC910175F789A5FC7E1970683D98E4EAC62A4A9F90E86D80E42FD497579C1410E -728A71A87EEFCC3A77849839A30EDD6A5B7DB6621A6A4AE12ECDAAF8EAB5F870FEE8010D4CB6A6B4 -9C496F54071694C17D658A43588A71D4B9FB704976BF427627129B38FFB22C957C37D85608803A38 -94228E2BEFB05B3C84D16A07216667F04737C5F3710960A41188BA0956D697AFAE27BF34E048CE1F -264FFA6E8DD588D62D23A321CE6BDD9D3B617B0F2B1F71FC14F5DC3C526CC806B7ED33D1545B5CAB -8DA9376A6562E26BEF39EB306BC892EA5CB43DB093F26B109645008A6F9BAE796EA7CE4161B981ED -4F39CF384C9415BF4D5A0CA6B66D87BA24023539B15EB46DCD3D7F12E840DBFF947847F2EAA9ED40 -413111BA2D3E73F27143A7F2FB2008B3FB09E5E068B7AF093676F06C99187D673258F1E000288AC9 -921B253B136F975B10044729F339B1AFBCE4B9E2EE19981B632FACECCDDE16B0711A2D9E99670BF4 -6012E74296F17000B304EB4F23980E0ABBA23984C6D4E9DF23A80CC518EEF9AE9E072BDD5ED729D4 -DD860BCB276B3C85492FE6DB77F0BD628CA07A9B9BF21DBB2416F2302010AF9D6DC484BEA725BD45 -8B1B36D3FBEC9A0FBDD697A278384A8B63790D99886A5E02223676B39C9674CF3BF883314ED0C84C -9DD709712D7FDA9D684585DBF71432E9A964CE75A87E08C5FD525BECCCC91861620605F59C8FAD69 -483C5CE0F58D5D783D0801BAA8985A3223B20145E6C31A5DA673BCC5F803F698EDA6FD1145107E9B -C8604CE20F3287C290A1E9D6073620702C6124C5C683AC95B6FF9A16C3FDC250122B36D3B7D3CA8B -A897E3CB693B9974A78EEEB9684EE4B506D0D656E5193FE4B41B3C6AEA8730849F944121A1FAD7D0 -C0B39DCA129973932461019F0790DD0C82C91D3F58C3E6321ADDA75F03728E029E70B3CB91850408 -673A30066CF62C3843C3927429DA88C2B6E2DF5F8A77939B8B21B448456B86C96317ADC0E5B5A11C -522337F74D8A44A62F3AC4B6F8A4DDB94FC46CFCF4A5D4437C46A4D2C61C5F6CE24B15FE58ED8F3B -599A8C922D56C84EC8D034BF4BE92C45B515DD3796587C45C04EBEFB4E514313404B949EE91A9A4F -8DB6E6E2537B5D4971CD68895A2BF88E9FAE27266810A13C8D052556A3CEB72AE0672187DEA63E0D -AE0BAF7B06FCDF55128246206C19C3B99636D310B77BB4F974BB74BB33A45C439B71B2F7C52CA1E4 -897632FC36289B2A4DBFC1546C1D87DAE01DB1EB0D22679965856449562CAF69D91F3AA7FFE056ED -564632AF6D91DE7283C168AED0A04140B36810640181A72F35129DE103E8F926363890D7606A5D2C -6DCAF093695AB3DFD56BDD34418B01F11A4A806CDDC210F91C02E30EC5610C8286197EC400348C80 -B353B458E2DD9789874D81954D9A6EF50342D55610D08D2FDE84C2FDE538E5FA2B22935FDEB22552 -920C7F831B898678FA191B1655FC21EE33AE74E494F7353A467232D6CA50E177017E99C4D9802A6B -FA17EE9A6D0A0443F11914170D870F6173A4BF304E91B0E14FAB97BDF29C46CE45352D41EEED1A42 -52CB12DFBC33523E9B04E09093494DADBD24360C65BE9F6582287ED54E9F0F0A4240C1B3004BCBE2 -96C03340582908C44EBCCFE30FC7A812131C81AEB9F97827A5C8217FF4169196FB3049B035F45D1C -1EAF6E6521D3F567D780C7F40A64ED3F7136714AC6A90F044B7EEE580FDB0F5530B4A6B84174A5FB -D590A4203063CFB58E24DEFF51DDA3F3DB719BB148D00018F1D0B133CF7D85D51E62B048EDE3E2AC -E2631D1A13586196167BA1A5658A22C0BB7A627C55B3C6FC12080681B0274727A916DBAFAEE6A7FB -1D8157AEC270B4CD53E9178912130810826FB33600DB347EE10888B97BE1ABC14B35AF58F9CFB033 -CE1594729A3EE013691592775581690CCE4A79BF03A30B1CE08149D91C0BF89D0125D4C3FDCAE1FD -6240B831660E3FDA7DDB36C6707CD89F84F2F940A01398CCDA2A3296B879BA69356F305069379329 -95CE8A94840853882449174B5CBC2A26C35152B3E8A2320CC925D5C6A9CE6BE30BC57988CD58B742 -F79413BA15AA354CCB247B356A0A6310CC9C13816BDB472B2D32EC6BE5E4FB8FDE6528731612D027 -5C9670633CEAB3584CB1BFCCD8DA19B895FA76A815B077587AC1C535D2B3E14B8DCCAEC11D729E59 -8C972C0A7F07C0444E8532238EBB33808ED0EBF23BC8160062286673B64D248C6D37BA8208F3C252 -1DEF11FE55699F144A237596C10919E9A88AB96FE52810FC571A52D444AAF63DF72EC5F5A823889D -FF8BAB0ADE0647EBF4B075E78D9CADAC8645638F21FB9710ACDF91365011EBD9F6CD154D23AEA138 -1A997ECF57C172B4BFC013F867751675436FBA117CB72B69E3B1F647AA3AACAFC64477CE435A1DD7 -276A278CEA4EEB12CE2CF36B4185E84BB0D574E37D5D13780BE4B187B3C46E56396E6303D5FC5FAF -4A077AE1C0AE0ECEEF94BAFCB6B57DDE6C24D93A702733E8D9123B67DB112602C641B13BCE6CC30F -B5373FCB91938A536B67ABDED56701C3FCAC393758F06E046BDA92AB42FAC92DA1F877384A018B8F -A4CE155DA02D940C54872FEA9016F6ADC15CE52328E33159A80730EF28E1C3F25B2F7748EE83A30A -0B8669A5BFCC26B25B4265D6225EFACAF4D268837FE6992FF3BE510AABDAEB90266760E0F3C0C36A -66A8D9F3F89FD00E2939244FC4334FFF3F549D31CAB0BC6E9EC5A0FCB4F43EDA82E04E262727F584 -28A4FAFCD46E7B1A9A92DF9A094EB9F801D053D5FAE0AE5B588FB06670E33876C8B17ED2141C9C79 -08F68263AD77F2E8BD29C01EF2A5D3552D1CC8CAAB6E6B6A10B80F5E2D2C16FEA197E4F03A55FA5E -8098A6F4A3C52CB30DF2FB6F6519E91B610E01E48FAB546F78BA9003E17977040367C1E4EB638DBF -FE64F2E9FBE3343556A73ACD12FF8C1ACBDD4F4AF44382A24B95FCDFBCFA1EFC4E239C98B6731405 -CA5ACD64B49CC2E7B9DA4DBA9D6F65C109AA98176FA88030C5CC629B1DCC30BAA14619521076298F -ABD1831ED0AB9B262976B8AEF1299A8ECDB5ECE21019E3D687A6F6FE37BB3782E0F143762E3E7BC2 -B2CD2F30A055A5A957BE9A6106DF4440EC0934A5843BBE929C46C6CA14A38BC0187ACE6DA749639B -C748E32B34B95F81020B9559157B9DC148E520B6A497E7A06EB02D31D3A30A95CBC2556AE9875C5F -9BABD08DF31E54CA40ED00D23491FB3E4AF36E769B1F797EF2C0B2C822B01ED624E0091A1F7A9B69 -0B17BFF9F490D0371A4AD7D26104C56CCBA1E026ACCB72C19711D79476E06F821BBF2E1F5497606C -657DE5B30CB8EC2E6B5C93A31FFB0B297FEAEBBA2823E7F5123884FF18C918F7956F04972BEB2D65 -04E91E2E7877DE4BE964AB5C97C255B7E53504F2B08A8087CCBAB662928F5F4C2F16E8763505A9CB -2A4103D5F478A555F6A585C527ED6B5BF9F0750DC1742349D4DB9C5DEF381D0456CC203C348DD73C -1D387ED6A9EC81170F40C2ADF3DE81210D3C3148D6BA3854A60A3676CE5C906111BB58F03A57E074 -334100EA728D97AE525565D637A82F6AE21B6B1BAC1799D88F117A79DFEBA74634BB65BEC4164413 -56F36BBC7359B92469971A18879ABAD256889ACB1688A3D16FF251163AB7AC47CD6E952574D3E357 -0C8DB66373ECF77FA9966806F92CD07A2649CB4CA5933429C89362E631DAF0C89B6F586A7888B496 -4C83A4CEBF6BCD65DCDDFD47AA3529CA0D776E2A65C4A068C3323BDD562052E5F49F5E9934E9114F -01D403EDD517BC040B182C2E148564890A0C766CCB79DC1AF9B7DC576959286A0C2FD6BF3BA94932 -68067E16107A7F683C9996DA8B9B5B38E5481653145A3B75721F998D129D6B284A012457DEA4A97F -1421190C761A63AC861E5E7DC355BF0A83A1C4698C66A8C9CABAD8EC335A78C4B67FE8AD1D722E59 -AC047DFA470AF039E3CDCC6B0F942C25A6FF197731E3688DBEF84D3278CAFF386C2E10F0902C743B -3754A3A2F3E332E7AF598ADA081CCD14002E027EB0D2AF277DE7DE5A96B6F793342283BF32C2BD4B -1479676C9FCC9C894CFD8B5737198450F885151F0383F599435883A3DF1605A43A9C247F9DF8F8DA -CD85C8660BCFE778D690430A6F8ACE33BF365C71953B3977060915E803265E25326E2369D497800D -04A47D261D88FB05F85D20C2807B3CE00CC0FD3F40F961831D276F2F2B25860C4B0879901CF792A4 -9536586CD367FA092D1BD03742DCF28BEDEDA81A4D6FC7607378CA6632614F6DD25C0726A3E4CC17 -5E72662CF577F70AFCD5AFD66B716DB4819F394375CF995340F5EF6518AFFB8219B57BA723521A6A -CFA602D8A5F6CB94B6CC5282E20018AE22F369CE06C148E9DBC7950F086E183FB95F360F6DF4717A -6A51683EEB5C4EEF920BBC19129C68425230F8995A2BBF8251E535218209512E7AC2F201DB496F0E -13DD65F4526FAEBD2146A3D180CC8DF6598DFC47391FCFCC15B720097CCD86C965F7A8A3EDAE11ED -3B3666AEE2C598991778C0DA002CCC880438C84FB222CBFE89CEC2F92A2D53FA91B51E64ACEB1F6A -970E3E022FC2AFB75E3027627883D95E1A7440C2799558B2C119DE916B29DEB9F99ABC99FC63F578 -01F2EBAF16D9E7CF111A34044434B3FFB34085DC6B1C7015F6D1B296DAE50303C3DC97F232846D29 -24B66C273FD364A84F10A138A829FE8ABC2BBF2468D4DEED87BFFBBFE5517B5EB9E5FE41D4645E45 -F117E647C3012AB72CE0E02883D48FC3BE9F334CFA8D1B8F989103E4F6F8A2EDE656109BA7007CAB -282385460EEEE8F463EF4FBF3471AB358BE3D4AF4D206A0B4FB11139BE8FB9C8EAD60377D8481665 -6F17E6DBEBA847A5D59820D7F94DBC45E208909062558ADBC383499EAE664EA78A04F723BCF34E50 -0786A447326FD90A9E73BCADB3B220BA9D156F9DB4DF406F50A1575AACF0004FB7F05A8D30665E5C -6A6C8E2E4921965048609043B0E8DC830511BACBD252103CBC271E84A778EB87F265E56B7BB058D6 -6F6EC93849DC9C5EC82FC96739D9FECC027A4FB98511B07A4D8598EF0DB15C4398083A1801C41230 -203BAB0958F67DBF8711A600393E00C88FF5AE8E153AF554AF26B1A9E4D4782A026F9658F51C252D -96D4BBC0486EEA59AD06357090F83856407023FC2FF5579EA606FB1A4E713F23497CB13997EEE879 -1C0E09CA662221E1EB8A14C495935A9F3D8D729442A7D98CF9FD9B8D69032BA76077243CA927DEA2 -30A6D8DE1B21B06AD1D24B461747AE9010F0C08ABAF3D915294B6F2E272AAAC480AD837125694730 -2F462234F3714742E820DCCDCD93065451BEBA27A609A74EA3DFAE847AB4AA7C7F5FA5E74377B719 -ED6773B6C3FAFF7192023B4E5A50223B46 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 - -cleartomark -{restore}if -%%EndFont CMR12 -%%BeginFont: CMR8 -%!PS-AdobeFont-1.0: CMR8 003.002 -%%Title: CMR8 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMR8. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments - -FontDirectory/CMR8 known{/CMR8 findfont dup/UniqueID known{dup -/UniqueID get 5000791 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /CMR8 def -/FontBBox {-36 -250 1070 750 }readonly def -/UniqueID 5000791 def -/PaintType 0 def -/FontInfo 9 dict dup begin - /version (003.002) readonly def - /Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR8.) readonly def - /FullName (CMR8) readonly def - /FamilyName (Computer Modern) readonly def - /Weight (Medium) readonly def - /ItalicAngle 0 def - /isFixedPitch false def - /UnderlinePosition -100 def - /UnderlineThickness 50 def -end readonly def -/Encoding 256 array - 0 1 255 { 1 index exch /.notdef put} for -dup 0 /Gamma put -dup 1 /Delta put -dup 2 /Theta put -dup 3 /Lambda put -dup 4 /Xi put -dup 5 /Pi put -dup 6 /Sigma put -dup 7 /Upsilon put -dup 8 /Phi put -dup 9 /Psi put -dup 10 /Omega put -dup 11 /ff put -dup 12 /fi put -dup 13 /fl put -dup 14 /ffi put -dup 15 /ffl put -dup 16 /dotlessi put -dup 17 /dotlessj put -dup 18 /grave put -dup 19 /acute put -dup 20 /caron put -dup 21 /breve put -dup 22 /macron put -dup 23 /ring put -dup 24 /cedilla put -dup 25 /germandbls put -dup 26 /ae put -dup 27 /oe put -dup 28 /oslash put -dup 29 /AE put -dup 30 /OE put -dup 31 /Oslash put -dup 32 /suppress put -dup 33 /exclam put -dup 34 /quotedblright put -dup 35 /numbersign put -dup 36 /dollar put -dup 37 /percent put -dup 38 /ampersand put -dup 39 /quoteright put -dup 40 /parenleft put -dup 41 /parenright put -dup 42 /asterisk put -dup 43 /plus put -dup 44 /comma put -dup 45 /hyphen put -dup 46 /period put -dup 47 /slash put -dup 48 /zero put -dup 49 /one put -dup 50 /two put -dup 51 /three put -dup 52 /four put -dup 53 /five put -dup 54 /six put -dup 55 /seven put -dup 56 /eight put -dup 57 /nine put -dup 58 /colon put -dup 59 /semicolon put -dup 60 /exclamdown put -dup 61 /equal put -dup 62 /questiondown put -dup 63 /question put -dup 64 /at put -dup 65 /A put -dup 66 /B put -dup 67 /C put -dup 68 /D put -dup 69 /E put -dup 70 /F put -dup 71 /G put -dup 72 /H put -dup 73 /I put -dup 74 /J put -dup 75 /K put -dup 76 /L put -dup 77 /M put -dup 78 /N put -dup 79 /O put -dup 80 /P put -dup 81 /Q put -dup 82 /R put -dup 83 /S put -dup 84 /T put -dup 85 /U put -dup 86 /V put -dup 87 /W put -dup 88 /X put -dup 89 /Y put -dup 90 /Z put -dup 91 /bracketleft put -dup 92 /quotedblleft put -dup 93 /bracketright put -dup 94 /circumflex put -dup 95 /dotaccent put -dup 96 /quoteleft put -dup 97 /a put -dup 98 /b put -dup 99 /c put -dup 100 /d put -dup 101 /e put -dup 102 /f put -dup 103 /g put -dup 104 /h put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 108 /l put -dup 109 /m put -dup 110 /n put -dup 111 /o put -dup 112 /p put -dup 113 /q put -dup 114 /r put -dup 115 /s put -dup 116 /t put -dup 117 /u put -dup 118 /v put -dup 119 /w put -dup 120 /x put -dup 121 /y put -dup 122 /z put -dup 123 /endash put -dup 124 /emdash put -dup 125 /hungarumlaut put -dup 126 /tilde put -dup 127 /dieresis put -dup 128 /suppress put -dup 160 /space put -dup 161 /Gamma put -dup 162 /Delta put -dup 163 /Theta put -dup 164 /Lambda put -dup 165 /Xi put -dup 166 /Pi put -dup 167 /Sigma put -dup 168 /Upsilon put -dup 169 /Phi put -dup 170 /Psi put -dup 171 /sfthyphen put -dup 172 /nbspace put -dup 173 /Omega put -dup 174 /ff put -dup 175 /fi put -dup 176 /fl put -dup 177 /ffi put -dup 178 /ffl put -dup 179 /dotlessi put -dup 180 /dotlessj put -dup 181 /grave put -dup 182 /acute put -dup 183 /caron put -dup 184 /breve put -dup 185 /macron put -dup 186 /ring put -dup 187 /cedilla put -dup 188 /germandbls put -dup 189 /ae put -dup 190 /oe put -dup 191 /oslash put -dup 192 /AE put -dup 193 /OE put -dup 194 /Oslash put -dup 195 /suppress put -dup 196 /dieresis put -readonly def -currentdict end -currentfile eexec -D9D66F633B846AB284BCF8B0411B772DE5CE3DD325E55798292D7BD972BD75FA0E079529AF9C82DF -72F64195C9C210DCE34528F540DA1FFD7BEBB9B40787BA9351BBFB7CFC5F9152D1E5BB0AD8D016C6 -CFA4EB41B3C51D091C2D5440E67CFD717C56816B03B901BF4A25A07175380E50A213F877C44778B3 -C5AADBCC86D6E551E6AF364B0BFCAAD22D8D558C5C81A7D425A1629DD5182206742D1D082A12F078 -0FD4F5F6D3129FCFFF1F4A912B0A7DEC8D33A57B5AE0328EF9D57ADDAC543273C01924195A181D03 -F5054A93B71E5065F8D92FE23794D2DB9928A7C95D3A6E9B8E92F84CA0AA44461D2F4FA0F8B81C6F -5B7BE98C9712BE166610465CF689DFAF27C875C029C0116DE61C21DA0092D029E7DBEDFDDEE3D67E -6936623AB53FA2AF18BEDDD7AC19A19CADB6ED6CA7A26E6044BE414FFF59C0B98D5819A6B881F9AB -7AD0D03BDD5CD309C67811D5CF0B93F6FDC9AE64F74ED4E81F2E18D880BD842ADAFD0BDF06300201 -C6946087FC0B999447BC370200BFB8CA420B668B32EBC2426DB1546A7164CF55B332FE9D239B65F5 -32B69EF9F4F93828A44C8F5C526126F8B7A369114CA68D4F9849A7D21122CF1A85BF2F6047142AC8 -4178B421F09819F155DBBAF5821B6A214F31C7775C1AF2CFD61A960F8D50D2EFB201795F52C84CA4 -D077D86E1A69C87B1354B22A1BE5E7DEFBFCDF460FC41657ADB04025A0FE112623C66027B86F93B7 -DB9B94CB079804A49533A5A4B35022C6D6389E95C3D3DE8AF855F6E8874735680A9EC423D487695B -1571757E350157240A283FD75849C500B910578367B5C392C49941657605E3736A31B5B2E913382D -EC8592DE6B2D95F9FEA9FE1304C34554C3514FE2981ECEBC3BFBA6ECCF62128EE4632CE21AAEEE4E -303151B1508733EE09E17BCAEBCB86A12B1EE67D28C1B9DD748CB5C8B20D8339482EA90D28DEA8B0 -7D8691C942CCCA7DE8EB76DBB07932939CCB52388F6CC9888F5EBFF2A23FC64045CA79A58526CE2A -DC6A5F8CB64662A16AED292F04F6F8C287BD3F591EC920CFD9A2B1BE576E0E2102225B89F107D048 -1A4AE12832F2E1EBCCE81952220FB7150144147C10C992EE68F8B5E2048434D9770C8484F7FC0AD6 -F092AF6D6D51F585D9BE90FB7C39D6279CB291F94D0DB5766A0A7DC30FDDD4E082CC5412A5AA1144 -32A2E1B01665C7A4958D93F45FDB13759C292EB7EA231AF9672DF9DFD47E2151B56E443AA9BF90EC -A82DF314E2C9F4657B32EBEFE8DE740C7368C5E7328AAE90D67CD530C3CA76D015E9616990BC1F5A -08FB1D83CC88F796997000B0D80D7EFEE1CBB25C89579613459A119B9D52CE23136268636E1B632E -1A65B051598AC60EB6FA54F85940A8728AED01FCCD992A1AB06CD875FAE65716ABC4ADBC417099C0 -7DBDF9E773926D1C3F000041DE55B6BE58140E82C101BF4F7E47D5CE20C35F3ECF34C7299CFF5CC2 -200EEA093F26CA0D558FB65089D4D92AD1E18E82EE012520E0C20CDD186FB4C82E6121A5E16B054B -A59D6BC25F4D7EE0683CE95781EAB0E2962325091A26A8E2994970BB6C8AF4144EF310E664CD44C6 -020138CDCDF4C6F47BE2A9A616A8FCF68BCC199187DBC39DAD1BEB9EAC5C9F2C826EF23C2ED70374 -F8D9A7C6A7386FD5522D9959B4BF49D54B6FE5F5E6836885CF1F28FF2743CA6F8CE48EF1B3E5B8ED -C5E70AC360ADBAE7E77675650C8ED27615D621974896C9DE191597216191D4000183F40F7ED9A0A4 -C64E08306B8C200BD6D761D529CC79E492E5F3795452DA24D16FA5D17CF16A7A51B24F614D3834F6 -F8C5F53949ED0409F1ADEC4C3107EAF3352E617043628207D8451439694C7DFD623E4BAEC5E81A3C -DF6950AF3015885EAB4EA046F10467E40F07EA465B9F3C56AE56011EECEBC9EF4DB855BFC9662BEA -42A5438B4B5D7136B5DDA0B04813A7951803BAB410432255329049669EF26D3AA252C22CE5AB89CC -6EC7CC4C20E009AF271A02A95B145B8B241AFF60C625EE42F6BA738EFF38C844193577F7B83BB5EE -4BC2BA387CD66D2F056174B2FF7A0C4501930BCD37E625E89C014FB56B84D081C8A0E6F110870B0C -07E5DBC86F47E3505ABAB0FF9BFD44DE691D16772C0614E3A90372737580211532B43F3265D13E7D -132FBF9BEEEFE78B34DAFA344288F1782EB6F4B8A25CA30E1204E299A5A61A24F9D05ECDABACC7C7 -5C02B9F08BEEE40E793FA7A56BD403B3087081DCF79E48E310B445F56DEA15F53A1D96E71E76DD10 -C0B9F8A1D670B4D16E2480B8C2AA53D144E9D3736DA7F8A24FC4A7565E49B5B8EFAAE5595CABB621 -BE4DCBF7747554091C36825873E93D59709C06B8E00096508C9A1C230FF449842258728998E78EFE -23BA9A142C3947D19DF95E8F73746978893CA61ABA76AA3AACA86CFFF88145C9FCAC6AD987730BB9 -FD68C6091892A8C0AAD57627C041C86F0E36423D5D22642A0AE5759B66A5C8CED11459B2CE770E5E -BB91086FBD6638AF202EC56728E6F029850700AE9821536517C8C9839DF512668DCDFCB8B95E4ECE -49154982C7771196E4EACF47FB8D6EEF22E3D3493D0F4199385A4EF6348F66ECA63849D6811388BC -73231B34BC066210CBA276FF94D496CE6FD592D4A4B2039A9E12C9FA019189675DAB1488E68957C6 -5D148736809A1C93525531EDFD61804C3F8216CE17B5E434651CCE19ED6609FA22C00F4378FCE09F -0996625AAB4FCFF91DAAC3B6085610A15A2146462B9435A006ED1D0861CA6C9FDE60854678DC004D -06886CA09EAEC471A86E0E63E7588C5E3897B7E2907AC9E167543900F62C6B5A546D8130B498D603 -A1F5DBAD502A09FD1AF6261E04044B4AA6D860CF03D81A1E9E243851322C2BC3C1F559C2CAB64107 -E067F91F08C2BBF29C99FFEF56EAEE7A84C9A87A079711679092AE5CFCD3E1E4DCDB01A47A5E304C -21BE266B32B27E4D3349ED8E8CC12A1E56F4AD1DFA791A377A8B117D6E27E65C0F3EAD62F36463E0 -D10CFF504C6285A29B8A550349FDBE6330C5B3AFA3BE150E626ECABB338C4F92322F17A8196DBC79 -C9EEFB2F5D27F92A435E4E8ADC77CA5B55B8B9DE8AB3FAB909B812D7C643D39EFA5BDB3B15F0C7EA -F45ED17126978DB5B903CCBA57E655E12DDE87A9525A0D02627D1CC78F23C13A20A46C52BFA0ABDB -0236295C06B7B498062F5E0756DA83607E36E3FC7053D230A22CB0BB4694DE84D2E6E1F7492E0F27 -BECFF591A58473D483170321C410ACEB27DD697B6519499425F8734F4E812BA9BBE38B5DE6CB3094 -8DF56D33E5F1334F4FD49180DADBC06E77A7E1E682123D73A981FBF94EA9C4D1B0ADCA472BC60BFD -30A8E064B5A3BD435088E8ED336E3A0A5F2970ACCF03344FAD0192C732F67C8634C6A65EB9FBC671 -23389A38DF2AD64101476D170DB854A2209E190AA02B077D403992740C65E52316BE5F6C12B8B482 -BDD1DEC7C5DA9F5F9F9994DDECBD86DF40C627AB9B98AD3A562B8850C6B7FA20EF94D26D00A71DD1 -E5A3B260FB1F8430C2D208443D09F92C478F3393187212A3E98A5D13D752E579946D4350AC66BC49 -BF8CBDBC38DFDA5F272145E8221F2995633F6734681DC865A8A34DD1E8E7D5C6EECD65DE13491286 -C535678D18D51ACEB40291AB2F4A9A9FA2778F821171CD2FCEEA1141CB400B5522B33AF6FE8A6B28 -3F26BE5948431DDA3E74A634672C12D3E83993D6D9527E524AD5E91EF6BC631D7516969EB245B260 -2FCCDF6120D633B9B01E0B89B3A1D6ED3B62A133547DA125F7773B34D679D8428B77470F68D0FE02 -38BD86187683C406E6341E11BE4B6A5439CFDF76820DB1AC1452754273537134865205E35869D96C -F9EA95850E0A35D67B99BD68B311C7A5D18EF07E48B36EA16DD8B9929930326DC5A43BCDA30FDFFC -DD32996D341F11872030A661AA8ACCF3F7AAAD3B311B85437BBF55D7F6DEAD328167504E850C2B7D -D76CEAEF83F5EB7DB8B60CF4B1871FEEF1C4338E0CCE98CCA232347F77D0E3776342F17E9C5E47FB -436833114E7269F30A1F54ACF9BD8C2E602290C23E766E02BA2F206E155F2A881185CA0D5ED133F2 -871A6D20F4A2ACD4123CC042202E64C17B465627588DC569D88B0A99ECB34F4383C5EDCD395ED52D -74AB457BE98DDF7B513D0318FB7F3940340809B3365D938586516F762E65DBF6D52BB59B3381325D -456F08ABC702735D6A5E712AE82C6EBCBC143E169560ECF0EB4D01D1DBF2EC29445FB73E8FFB4282 -F46B9C0CF3CE86721DFC759A98C19077372FDE74CFB4A459A76E4BA34F4F8C494C79ADC99E9FCF4A -A48A182EC17DF6B71C47E7E2FB008234BA6A14B9A9E6B6099A1ADA4FEA2027ACA4690D613ED08ECA -7888C95F96605F2E5CF9048182ED19E3FC4B5450275C664A276DA4929326D7E951303C794342B7EC -93B8DC34FF1274D26E1FDC9CFE0888E519F23BE514A5B0FBA6648E81C4C64BEA773F2E58E760DC5F -CF25A520C73F752D5A8AC2EA30869CAA95735DEA0E346E384F060F7E2A948052597924037D5C1429 -BF8D636696CE14DC9CB2B16E5E304605ADF8C428ADEB41433DA0D305CEBFE8E86AA908D45517746F -40CC638326E037598777474519F7B41900CCFD234E21F403D3750016362DB711FBBC34F9DE41643B -C558A6CC025B8E790C89D07D9AB53FAC43E23BC3730D7524A146DACD950EDDC27714F6D8EDB8FE6B -B76906075EF4F73DE6DBFC5351F0EB028E0EBDF214F70EE65F13C5E02E24E2D0A0FEDE9B48F2AFCC -F214FA14208863AB8481215FFDA3E0A892491CDA7B40E1C2F726A585F7D73EC4408C1CC7BF3B693B -1B4E31E08D1C862E47B9287BF7CC8F7C0B029EBCD2E0CC62ADD7445AF53245794CD8B442E0B76B34 -3FC998CB02B2A5A4FCB6715BE2C2C81ED73B3021E2F025A32687CE285648248F65360D322E021D88 -B383891362854D7C688193A328141E1B7AD514A9BB2CB9F7AFC207FADB9D71A4F21D2C7EDCF5BF99 -6E6BB492D4C4BEEC18950F543B81F4D3A02F86C4670EE4B285BBB96C9FCF65ED69B49F09725BCAE5 -9BD16185C7032B89C7F56354F2DA61BB9283AC71411BB64E373E960410C0A401CAAF28475412FF97 -0BE5BCD12E61D6036961680E3BBA6D93232301BA52A8A5237B36B9E94603EC03894BB27C7AB10EB1 -D5BB2CE8AF7552C09C578CEC4F2CBBAD648275D4646A3586D756F93511F6713232CF877D765674DF -55CC9EE31045C1B52819EC73F21E3D0B5C0731F703E7FC568C5CBD5A6F613885A0ECCDD86C26CA08 -4C06CE30B19B0B4F1DF2515728DB42CD07260B77E89D05621565AF433D0479F2628B55A1BBF3B8EC -DAEB6DBB69F77D02001BA416605A985FA0B994BA580DA07FC833D42CF5D644D75F7EA01F6A8DC82B -9C62CE7EBFB488E3EABD74E40E6F683B58CFC2BEB2ECF1B83BC61957B78718569CE394D79407F600 -AE0EE60D817F9D58A232AA5E92AE164A62ECDA4435B9B663CACEBFED6E8E9FC5D41D32459E775F43 -6AD97A286F6E920A31838DEADECD89B3720C0BF0D14FB719C1AD11AE480C874A496400B2DDFFD9C4 -EF067873070458DDB14CF882E5800B155572762EFE906AA878210B88CA8FFEEE45F3BE4D6B004E76 -4616FF7FF6C3399C940B286D2520BCE94CB668A5A95A16D23EB9975087338D5E11EC82DBF7D653DC -F40493EEBE0C20B03151CF509C2843BD1BBCB3B9CED581899BF8DCB23A9A6F05A9CC85C5BB982E6B -071904F587B885B78EB4A3A68E5FAE02ED0CF492DA98F74412B2AD7CEFDA13E0D31B2C3283A54E12 -CF593C9A1D1C99CDB6B1C46BE5E3804A1472D4EF25C557B70A8F098C7C614EA6C8A31B706E84FDC4 -D198D8591B1063401D6DBA629B78A82149E056CB30E30EAE48DCE53CE0BC8E2D0505143B75C0D680 -BABA4243EE1C7DC8C2A86A9C2839615111E57C54516F77C97CE00368E5F983D2EAAB9E107146563A -660129D92A8884C44DB57CDA48EDC76D3F8B66A5FA945853E63E079824FEC3A095B7D6B06FCBE80B -01C0B3FD32950EA66DB96306ED7FB5D1F3A54BDEF0239968CE1AE69798CA6B9655FF728C1090EE0A -AFAB68C2F172E3B0D14B5B8412D5FD84306346342971540856B6E1209CC306E9A493179122CA4A79 -047F5C93CA60B10762D3B625A852A62AFFEB5FAA9A219D689702762597BC7281A43D1C2FE0B5FE8A -D94BFF998DDF7A092696D7C251A0A7FB1050E1E748B364A95003F0A75161AFD9CA196286481717B5 -A835FDEBEEB69BED360A883274477B2AA58D17ABBB4709D854FD9B4EC7AC5D6487023AD65BFDD40F -064E3D93F3561D1D3123CAB26E79BB15329CC1305E12ED2F0D9CE2EDE8811DE03A199E407B0049FF -DBA1E730837155CE1A3501DD4FD69DC103463715770254EE7B233BFAAF27AD311562DAE7718AD54E -BC8E0D1C7BF468908CB1256F2A1A7739E238E51D9A370FE5CC112437AE09918D9F416082543830B9 -C5D7E5AB2C62BA7D138106795928F7AD163683B09DD0CFC551AA1A06D546192A97EC91DC0774990D -8A7BED8559A491A9532B88298AE923B887A630EACC71A0F2E618FE41B72725BB2E35623B08C8A4E1 -7C06E156667C4B3F261CE2E692E351C838CB13A5EC9011B07906A701EE646ED9A753790CEE36AC47 -1E6B138AFC7203D994A0D7F39093CAFBF4956F5A33808DD61D88AAC92EDD5692EB94A0B63D666FBD -DD01C4483F51C5CBCC5AD9DBE81FF88318609465207A1FDC6B9D27C9774D4311D3C12DD81073C1BF -8DCB4A4B2D7AC91C8B17B1A96DAEE39C414505B3E726CB14067680EBF48DFD46C3D7E7FBCF227EC5 -A99CC62A6E76267E077B0E2168EA13C3468405678DFD641DBDACA7538CB4E9964A4BFE1DB5E94AB5 -201670245707B3E06BF29AF27161541275A867E2E7F2365DCC02DD5DE97AF36E23DA213967176D39 -26756400692950448322BE8B7593DA048F227EED0C8775553F9CC2292A4C32792DC7176059789358 -16DEA1ED2BA09A0B94946E91D048DB600FCFC72D501FC39D503B605C74C38B960FBBA663C32CF416 -39227C7C77FF06B99117867CCFDBD3EC1B11DC8E16838DD140AC1A108CA02AD8CFE0DE5635057B11 -6A07AD57CA9009C79814EA50E4A274462485D584B48F265831869106D6216CF2ECB24CCC522CD304 -9F112DDE35EC93CD440B9A8CC755427ED1E44515AF9021E68124B25A79139A08EDB098F29BA49B7E -48C0135BD28CA93F9F0E46F745BB51BA3BF312660B610069A6F87E686D691FE242611E7770DD6D9B -CA64A4DD5510BBFF40C9D25F0ACF7E32B7A5369EB5406E883F18CF33D3F61C16EDAA0111C20A98B7 -A0B460E5842E2D14B13E22EA5646CB8A22C02996325874FB5B75D22A8E0030714D1DBB06E9196499 -A3E97493550766EC272AF1F2A444B60B733C56BE16F6B6C9643F87E06BA715BD0491767216C9F2AF -7DD40D99F183E693C06BCEB46D19EF62B57E87EDD9F0F3AE1332EFD4F0ECCAB5EF011128D4C936F9 -B1A5EC86093346B0F36284696BA8566DBC38A01733D1E0F8FAF1D00D75D91126E52BAAFACB0B115D -A285F9327BB55030A9E54C951C0E44FD822EFC378A9101863803EC0285DC9FBCDFEBBA3A83251B62 -F69FDD7A288950C665FFBBE5345905B1518EC4CF42C0827C1FE316B2E6466915DAAAB3613491BAE1 -17F789B87D8AC090227D4D0C7FB85E6AF4F104DF9124C8BC339228B21EF858DC7CA37109C76B54A4 -7756575A14F6B2C51CFD5A197480C12060C14662C1BB860FA33ED251E974BDD797A0EECBC12D53D7 -D433B0D67B322976FEBFC640F00A1B7344D8BC98C8078ACAD584BB9511131DB26F940D969048B94C -D5AE6D71E83C1FECD28AF6B75062193ACD58CA0473A86196FF4FD889DDDA5C46AED383AC44F5991D -BA10E0D1DF905EDF36EC99279BF35811D3E177B8DB3E66C328E3774A65EB9D4782B03DC7D623831A -924C631955A56AD83B17114EC5A48805F795DD3CD508B40546DBB35E6EFC742FFBA113F9A6257EAB -B18E275EB0CF680A7A0E5135ED52210EB2073CEB06E43E82878404BE7530ED3C037A517E7F4D92C7 -AB7A396836E213BCD4A2FC290A375C33FE57FEB506E667F514AD83472954AD3D5577CEFE93AABE6B -C41EC2F1248768933A1BBB737617ABE725CA314B87390654D85541B303E4EA04962547A9A4B9646E -8EB39F2E33A68F22A0B56AA52229BD511B98158FE300FD5719B659E5B8A689FF7104DEEFC547DF13 -6F67951EC6044F45C942E7C42F91E9C831917B228490F78A523B69E3EA069D345103CB03226F45F1 -7297F94CBB55FCA7617F5A2C9F1F136BA551EFEA6F0377AAAD9FEC698A54419B7627C6A591AAF6BE -BA128125C9B2477AB7471781853466D6FAB80BF04AFC7327A60414AF07E3BDB58D2B00ED03C6BB8A -A8DEF345519B255B1D9FDDACCAD376725BFF2763DCC37BBC4C89ECDA3A07157E0613C9B7364E6597 -359604AA4371B15955F92739BDEE2639DF941B6149FF9947EB1707C89BE13A47102186CDF6A332CA -3B1FF48E5AA16B0AE899D8480AD0E429760DB81F141C48808B4B849A687903AF43FE7180661EF16B -B16544595C7AE9BFCD7613DDFB56DA2249C6DBD45D17D48B22FD619F8AAEF9C34244B0DABF12507F -E64A14F3E38A9F907C93BB632D0CDD0CB3BDC0B3A663581AB6D39C9E08785821A6638E2116BA7DBA -1969DC5F283F9C3D1E26BE5DB8A5BE44E0024617F8258589761269DE4E8998504211E155C1B8F6F0 -F901537ABE3F1756EAEEE1B9229A62EF76D44288D07837BDA52CC84552FD695D351CEE317D040AC6 -9CC5EBF31AE4BADFF86F3A90D288596E67963AF1AE572D6EDB93D2F363099489CD45C2FDAE11962C -99B555FC361119B81C6191E2BC7D946247EA6562C59C5C28F8D9F6102F8DF6673F50CE92D99B4FB9 -44A1259E9237F19FF33BF8B6465B703F207B58EC5F8A1CF540D2789E12B343C9685B8519BD24B691 -FB11A2049168FC153E5941561360B041F3507B7AC38E43E34354F3A08BC532CE3BA758C84BB0B5C5 -E96CEAA8955D556A67A7BCAD4A7590F7C5669704F57E93586954FDE2264EC41FF06B8DA3A3B48227 -A5EB1749F2C0DF078CFD832A6FB6BDE67E8922639BD02BF782F71C09333218E23A5905404857F5A6 -433B61A3E4769323AADE88BE52B462F53EAF8494FCF8201EAE77E32C1861DC8E21C769EE96176E19 -5A85E1802DBB09B7CD86669ABF604172CBE3B6B7DF4C3694C261267276DCED915678CECE3FBF2952 -A8B2D9220AC26AFEA6612F9E7D1C4BB26060AB160B2C847A9C247EFDB2EDE343073D90CE302ACA3F -94A308E120AE61F5C67505A70A774EC9EC13C97A73B68D7C0E1A9BBAC625FB2795D2F5A110E1CA28 -6EA25CE4A8ADAFFED4DEEEB596FB4E14F73D671C3164767656D20C10D2AF24657B6481825AADD521 -D75E73A4C17A211812F1A30D7D5C6E27B84A32CC3DB9A509B2F02F7B64058F9D9128D7 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 - -cleartomark -{restore}if -%%EndFont CMR8 -%%BeginFont: CMSY10 -%!PS-AdobeFont-1.0: CMSY10 003.002 -%%Title: CMSY10 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMSY10. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments - -FontDirectory/CMSY10 known{/CMSY10 findfont dup/UniqueID known{dup -/UniqueID get 5096651 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /CMSY10 def -/FontBBox {-29 -960 1116 775 }readonly def -/UniqueID 5096651 def -/PaintType 0 def -/FontInfo 9 dict dup begin - /version (003.002) readonly def - /Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMSY10.) readonly def - /FullName (CMSY10) readonly def - /FamilyName (Computer Modern) readonly def - /Weight (Medium) readonly def - /ItalicAngle -14.04 def - /isFixedPitch false def - /UnderlinePosition -100 def - /UnderlineThickness 50 def -end readonly def -/Encoding 256 array - 0 1 255 { 1 index exch /.notdef put} for -dup 0 /minus put -dup 1 /periodcentered put -dup 2 /multiply put -dup 3 /asteriskmath put -dup 4 /divide put -dup 5 /diamondmath put -dup 6 /plusminus put -dup 7 /minusplus put -dup 8 /circleplus put -dup 9 /circleminus put -dup 10 /circlemultiply put -dup 11 /circledivide put -dup 12 /circledot put -dup 13 /circlecopyrt put -dup 14 /openbullet put -dup 15 /bullet put -dup 16 /equivasymptotic put -dup 17 /equivalence put -dup 18 /reflexsubset put -dup 19 /reflexsuperset put -dup 20 /lessequal put -dup 21 /greaterequal put -dup 22 /precedesequal put -dup 23 /followsequal put -dup 24 /similar put -dup 25 /approxequal put -dup 26 /propersubset put -dup 27 /propersuperset put -dup 28 /lessmuch put -dup 29 /greatermuch put -dup 30 /precedes put -dup 31 /follows put -dup 32 /arrowleft put -dup 33 /arrowright put -dup 34 /arrowup put -dup 35 /arrowdown put -dup 36 /arrowboth put -dup 37 /arrownortheast put -dup 38 /arrowsoutheast put -dup 39 /similarequal put -dup 40 /arrowdblleft put -dup 41 /arrowdblright put -dup 42 /arrowdblup put -dup 43 /arrowdbldown put -dup 44 /arrowdblboth put -dup 45 /arrownorthwest put -dup 46 /arrowsouthwest put -dup 47 /proportional put -dup 48 /prime put -dup 49 /infinity put -dup 50 /element put -dup 51 /owner put -dup 52 /triangle put -dup 53 /triangleinv put -dup 54 /negationslash put -dup 55 /mapsto put -dup 56 /universal put -dup 57 /existential put -dup 58 /logicalnot put -dup 59 /emptyset put -dup 60 /Rfractur put -dup 61 /Ifractur put -dup 62 /latticetop put -dup 63 /perpendicular put -dup 64 /aleph put -dup 65 /A put -dup 66 /B put -dup 67 /C put -dup 68 /D put -dup 69 /E put -dup 70 /F put -dup 71 /G put -dup 72 /H put -dup 73 /I put -dup 74 /J put -dup 75 /K put -dup 76 /L put -dup 77 /M put -dup 78 /N put -dup 79 /O put -dup 80 /P put -dup 81 /Q put -dup 82 /R put -dup 83 /S put -dup 84 /T put -dup 85 /U put -dup 86 /V put -dup 87 /W put -dup 88 /X put -dup 89 /Y put -dup 90 /Z put -dup 91 /union put -dup 92 /intersection put -dup 93 /unionmulti put -dup 94 /logicaland put -dup 95 /logicalor put -dup 96 /turnstileleft put -dup 97 /turnstileright put -dup 98 /floorleft put -dup 99 /floorright put -dup 100 /ceilingleft put -dup 101 /ceilingright put -dup 102 /braceleft put -dup 103 /braceright put -dup 104 /angbracketleft put -dup 105 /angbracketright put -dup 106 /bar put -dup 107 /bardbl put -dup 108 /arrowbothv put -dup 109 /arrowdblbothv put -dup 110 /backslash put -dup 111 /wreathproduct put -dup 112 /radical put -dup 113 /coproduct put -dup 114 /nabla put -dup 115 /integral put -dup 116 /unionsq put -dup 117 /intersectionsq put -dup 118 /subsetsqequal put -dup 119 /supersetsqequal put -dup 120 /section put -dup 121 /dagger put -dup 122 /daggerdbl put -dup 123 /paragraph put -dup 124 /club put -dup 125 /diamond put -dup 126 /heart put -dup 127 /spade put -dup 128 /arrowleft put -dup 160 /space put -dup 161 /minus put -dup 162 /periodcentered put -dup 163 /multiply put -dup 164 /asteriskmath put -dup 165 /divide put -dup 166 /diamondmath put -dup 167 /plusminus put -dup 168 /minusplus put -dup 169 /circleplus put -dup 170 /circleminus put -dup 173 /circlemultiply put -dup 174 /circledivide put -dup 175 /circledot put -dup 176 /circlecopyrt put -dup 177 /openbullet put -dup 178 /bullet put -dup 179 /equivasymptotic put -dup 180 /equivalence put -dup 181 /reflexsubset put -dup 182 /reflexsuperset put -dup 183 /lessequal put -dup 184 /greaterequal put -dup 185 /precedesequal put -dup 186 /followsequal put -dup 187 /similar put -dup 188 /approxequal put -dup 189 /propersubset put -dup 190 /propersuperset put -dup 191 /lessmuch put -dup 192 /greatermuch put -dup 193 /precedes put -dup 194 /follows put -dup 195 /arrowleft put -dup 196 /spade put -readonly def -currentdict end -currentfile eexec -D9D66F633B846AB284BCF8B0411B772DE5CD06DFE1BE899059C588357426D7A07B684C079A47D271 -426064AD18CB9750D8A986D1D67C1B2AEEF8CE785CC19C81DE96489F740045C5E342F02DA1C9F9F3 -C167651E646F1A67CF379789E311EF91511D0F605B045B279357D6FC8537C233E7AEE6A4FDBE73E7 -5A39EB206D20A6F61021961B748D419EBEEB028B592124E174CA595C108E12725B9875544955CFFD -028B698EF742BC8C19F979E35B8E99CADDDDC89CC6C59733F2A24BC3AF36AD861319147A4A219ECB -92D0D9F6228B51A97C29547000FCC8A581BE543D73F1FED43D08C53693138003C01E1D216B185179 -E1856E2A05AA6C66AABB68B7E440902191AA9D8E4C5FBBDA55F1BB6BC679EABA06BE9795DB920A63 -43CE934B04D75DF2E0C30B8FD2E475FE0D66D4AA65821864C7DD6AC9939A04094EEA832EAD33DB7A -11EE8D595FB0E543D0E80D31D584B97879B3C7B4A85CC6358A41342D70AD0B97C14123421FE8A7D1 -31FB0D03900B392FDA0ABAFC25E946D2251F150EC595E857D17AE424DB76B431366086F377B2A0EE -FD3909E3FA35E51886FC318989C1EF20B6F5990F1D39C22127F0A47BC8461F3AFDF87D9BDA4B6C1D -1CFD7513F1E3C3D393BEF764AA830936164EDC2C76977D765F095166FE1D9B0498CAB4AD68621FDC -2819CE863510B07FC37ACE71A641448CCE3453022A0ED0C1AFE7DB2BEC6006B11F4E993C658453BD -190269DC5F091BD05055983A4F869B7CF38AFF99F9CF1196AFB3C00B6407E57328CFC3AD4DE530C8 -A30A9817F3AF2438B69B24996DA4104A4F2CCEC2348B1328EB84438D0DC63B767E37C9913E2AE4DD -D669BDEC427E6941CACECB52727BB7341D3A13653F92CED2DA9FA9B19F4AE93B067750ABB71F7107 -581A0015A08DB715E35A8E90B5D1F2DFBBBC6B3B443D67206C9F6450F124290E7A922BB43EAA3B5F -8101EAF9D5706E919EFBF5F20FE384A811A7237C2EF5A09851F8525A0602A0B893B297E904E1C0F8 -624913D532C89A18B403E10608D797036362C89987172B317DDE23F6EDA786BD47038866EDCDB5D8 -8371321552F64A292040226FE53BEA879343AB2C35EC288CFAD8E3C60B35C17EBB85FD14C940E82B -01315DD8E689E39A85742D923303DAA4A5F317F9739CD39573AEB82F0427E898439B389E89A799DD -D5D1C3D9710985772FDDF908A085F1EDA297F11262B7033FF288C863EA05D83EAFF991AB05123869 -0FD2CC1D62B6E981855ACFDE11F70ABDD526549570D1F79892D220D1970C230FF879D7D614D83100 -F926E326FA58AA1737ECAE914B7BC4E8886C82C6EEC4CE887D5ABA35F7705234CA9E210484CBDE9E -2AA55976770849B995914F234F8C41BDB2B5EEB94FABA4172280DAA22EDD049E3D7C4AAAC75CB07A -A37040A68EAF76A999AA0FCDF5FDE2D1069704C23306854AFB3F427990ED447F427D176548605757 -E516EB657137608B19079BB60BAF2E15677FC54867FA8C3555ED7FDCC69C2CA167BA71FC238573DF -E2507D4D2F30B41D0A23EE8327107DE96BAA270DC06969E2FFF802A3CE59FE411B190E3E49BF1434 -41B89E52AB02A231DF42694BC676046D7B32AA0A32A15635CEB06D7C80BEE2E20498AB450E01FD9C -E71DA883019D1DC48D62B2D955B4FC9A05E9FDEA23545DC4C6F8822776F9342A59570875D1E900EC -E764F4F238FD24BE7265841BEFFB1EF20BCCEA6628605AFEE122EF3F526E328F21D71A77B03AB841 -D681287A8C8B361103641481E76E7E355B6B58F2BD9C5B6914E96355BD593DEF81841ABDDF6B981D -11607A819B4000F681F325BA0FF535194BC5D5F6FED8A75001C410933870DE94A42FBE0E45E16517 -D1DE74D09F4FCA42F33748040E864AB707BD6228BA17D5E0207A37FB9970367521B35AAE1DFEB776 -1FBA93EABC7106625F4E9D620D69DF1B8007693CAAD00A14A9C591E015E60F35FAB1320B108389EE -1238E3D6650CF8A2B1C6FE3BA686CF40DD7B571EAEA169FF87425DA01143B2729DF9BECD5FBA0490 -99FFBC2DE6DBEB861E3F7675037C544DCD0B386651F8DFD1C51F77E67BEFB8E10C70F7B79CEC5642 -80420CB0C2FE830B6029B7D3F72A20AC1D06C00F08A4FE55AD091769685C475198381375DC1FA044 -557E4B8BA3C5D68AA798FC1D5F949E30C66321DE4A2DCEAB7CF978DE239F12F3F02E5A7B7AEEB979 -E6E0D7E7CBC5A64C0F83793572C766DBE35265E0ECD7555340C3056A22F8C3AB991B21AD1E40756D -1D595BB8AB0D5EF411E3A588894A0301FCB3571BC3A74CBF16FB4B2FB13328C8765843870BCA4496 -F97D1EDA1562CAD92498CA1BBEE5C91E16C31DA13F54E9D3D2F33548D84EC7AC98FD84076F35D951 -034F4E7E06913CB0F8450B9E3DB89677C7C09F9349ACD01A1E505C421C253963FD765EE21FD08F85 -1B6C6072689D3A803334F733ECE932D84E886D089595590E5890A4C6E6BEFE4752BEECF730974187 -3F15104142E5CC4A4655AD3765400C6A46E0F308DA358E0333B02A4131829707F8AC5E70BE999E9C -6F4599EA9DB005082632E1D85FF7860AFEB9A3BC352E10DE9A0999538AD69BBEF18D3D2E3812C3FF -BDA5C099CDC61F67A6851E84CAFFBF891A9794ED8AF9CAB270E3C78C951C5420C025FEA34B0D59B4 -308722D610669E210020A559FD6C6CBF2CEE53D58E46226CA2D01A4A3D39812BA23324385A0B2B06 -57BCFF9E53F848BFB6F6BB17E379FC7081D43A38FF40C6C42934A356EB7A351198DC63473DD34BCB -5D2B911B53130B4E630040459AB8EA37E67A5BBEAC5927FCF4D7F63F36F7181075D7BC6FEE9DCBA1 -28E35A567C7D5BA75E5A4D20A6296A6879A24B62EDB6985279868FA0E2CC9898A9AFECB756245766 -1EB7C487E43FB7C03A55219E414AFCF164DFFA3E323BCE029A86C02B1E71D16411E4DD224FFBC280 -26265A79651C56A5F5107B8C48527D8C8848E1F47C624C7C003DE41A5C53E2D8AD802B251D66E13F -A8AB0A31CE8BC14A2A0652E99865A99CA3B12ED35138209FD48CC20D5EF2973FD7B0D37E5C0BEFDB -75A4F09D3B61CC725F292220579B50FA5D05F66F66E09B63BDC126457C6631548E7F75681F8E0B19 -D5DF252E2BBA45E487AB3F091EE607CA278C5966CFF9CA4E3CD813CE831E9FAD3116D8ABBB6A7B92 -0CA3DCF9343BA475886E94BA90A0BBC5BC9974675744C9162DC2C912D8E19BB2F3BDA3F17C76852E -3CEF0BCD9BFBB3BC79922D5219C1CDCFA2EE824B4AEF8BE6F05FFEF8BDAA51F5A52FC13A4A15867C -01C26240871C37B2FF5253449A02FED980B565D62C6C0D0BC149A356014BBA509727CE1DF62AF4F2 -8535F5CB1167CC8508089769D07F5171AF79F72721862A0B6CBC59DC79615D5EFE89B7FEC51FEFFE -1DB869D1D0A329D2967E705A714336F0E75D840B37A12E9203B51049F024520E6637AF4BAB4DCF50 -B3682D7BF71F654BC5661922556E45CC7EEFCA196B3569B169DB4E01B5A152F1539A19B3C2B68079 -5BBB04826BDA3C857158029FAC2E0BDE94EC5CDE45E3DCF6C082DBF36D3DD37B135A6F0736E3252F -DCE218EB5DB8773E2DAFFD1DAD53671EB3D83A275D011BF5D501A22D407AE09257CD21297B617E04 -43FBDAA297D37F66AC436DB78B410E79A002233A0D7DA619CCA9DA4714325A51CB0BBE9EB6CEA352 -BB1A0A2FF83610B2A17E19480E9285E1570CFCB8EC7E1D691A72611D336DE5C6626A1D1D2DF363A1 -D781DBE61235F1D1805CC2A8C670005F84FD468167F8640B12929CF347538B94EB37DA39904D4763 -D93E757AE2B4C775D98E23BA983E35992A292A04976544EC462CA656E5EC37EE8EE46BF1C3B0B4C9 -12DF05AE1535CC654000B06BCDC95D9C6B5F36F8FD8A0EB31A02C2B863DEBF8FEDBC57D5F93D2604 -321FA66070D14FED60441E09999B90A5FB715347583A35314381554031BCE4E6E73AD3FCBB61ED0D -4C015863119C1D945E981AF3F38C81EB3A350A70A63EB06119965C90D7EBA669359FCBDFA87C4DB9 -20F8F3D99C73A0DF7E10D3C410696D679CBFAE831E3E99FEF6C038F669C58E1EB6F60FF587F5EC56 -1629EF429734CB886AF914AC3E6BC04F21D73F184CA12D7E033B301C181D15101A986BB95132DABE -E082A617520CF95EC9069499A02F073D7DBE41726B51FC05A9348953495B4CDE8D0A8F8C04D07ABE -B3BA00763A80F2E3B5804947E690DB3A7B3BC6C48A67F5D45F5C658FECFF28790B709385D24D02FC -3B0C9F9AB04E168BAC78F0837D9BD402C1ABFA84148FD815240108CD511E50FB8E64F20058EE54E4 -ED45181AD9BB777DEE3303C4991EF8EC56B6C278CE63F6C2FF92308A25B9AFDB4585A808AB3F03D8 -A15A20FFE399DEE429C959F8B3DFDF81433C41CEAC874479A2C51F9FAEAAD5B7B23230B99523FB25 -6896A85A8C48C057A70DE745F753B4183AAA6F84B4ACAB090F33CC2C31186D1D8A0218A74E1987D8 -6B9C3602BA294CD29FEECE4187523CF511FD075692B1C080A5A22281BAAA4EA701D7573D083E2F6E -DEA3D49FEAFF2CBF989703E83828E6C7E324558AFB73E3388F0B0E6A97EDED5A9553DD33DBBBBAF2 -174A562AE2B8A4B6E7D13E90FF9B7D650231CBF9EE48DBDB00AEE2E0FEBF8D6778F19CBCB8766A0A -CC9BCE2659771BFA97CE7BA811A3A6C8CBEE899839E525DA2ECDF66CD99FCED902AA102D92CD9A27 -9453BA74EF8C0CF32C11A412A05CFA2C187833F885F359DCEA34EE24E90F7F107A23D9EE269C15A6 -47916F56C32543AD5F81D90C84B8305E5BFEF1F3B356CEEB5BAC54AA00DC9C6F03B4AFCF7AA4D319 -64377525A661FBB743D3996447AFBF76C8FA874BCBB374B02C538AC626004EC8E1E9030D60C4A097 -CDAFC143732FB7431008CF28ABEC4529F4689720D4EF580676CA855FFEDDC66B7C1DF07DB89EE98C -0DB6FAA5551ADE4D674B51E4E3FA4B24A3DB5196E01C6CA1DF5D669A3C0FC57DC1F576C2BA14D5DE -284614AF3276E3A1159CBF8D40426A60E8C5DD426F1307222DAA8AA78BEE55C27E26013120FB5471 -CB33CA4FB642B1C386018EE3D4424CA411F49CD569CDACB51AB9BB5E66E1E13ED5F8BE0E912BC13C -7B23E10C042C33DA19656264D7473B4E0C3DABE14F9F94450D1113C88EEC18CFEE640A6D9A40DA9C -CED6EC5E2E9F1B357DA635C3A2C5A23874E496B868FD0260D30F1780878A900B90637A1237C63D83 -335A3FD4A664321C048BF2273F9C4AE3161E1F06E6EA5F3F15CFED43C622E0D7E245EDFB866398DF -F2EC994674767B7F3DD853CA356A3607C7BF8F9C6889EB9942ABE469EF88368742FB5C41D06125D2 -042EEA414B344AC718FEAEB308302F5607C06852A30CF778D236EC90CA10934C629FD59890176264 -DBF9C1AEB33A6028B9EF09B06BCB182DA58ECCAA4E2E1FBB13868C98CEB61223E9658EBF003AC674 -93587A156EFBE73EC88CCDD55C9C10CDFC52F7A7B274D631DBB5D629F41AC8760741953A6B90C6E9 -E4D2C79702C59EECDC65D8948317D67808CFBD81953AD32837A42EBBE48F77D6B387E272855E54AC -D32D3377E19724B3BB370A71C633C3A41A0523FC219EFD5310EB3CB5FC93F0F9E6BFB11517E2B901 -016CE8DD44BFA8590EDEA88F5229FFDB83E401034C826F038D58C19E54704A4E2E36B7738FC6F80D -F4D82A5285853C49F9689363392536C3BA25C00B7885E7DC3951E9B5D22414C9E9A264954CCCFAF8 -BCE70CFFD4F726263EBEBB70D52A58B3D6BD029F555A630D687C7E7103C8B8F2B33EA41732D6FB7F -A999CCA0185A13C8BD80A2762AB9919C3E9FC07556BA8C7149B4CC5B58DBE84297E3E8D2B34591D9 -FCAC659C0FE115F34ABA807DD94410AF8F532418382EF8F7980E1598A97A61926B809FD771B2795C -69E6B1F15FF0EED329FB793FA3FAF0580ED07F51B0E1BC1401EA5026897990CF09F9750268AF812E -89DA551EC14B457836CD38E5C07179A3EE0ABD3A85C693ACA829A5E492FD4F1BF12725544FBC81FA -A2004784DB367184315C68BEE9FBB1D68F91C9D0901BAD3BDA4FFFC203C232276A495EF1B2B82F36 -FE36716733F0E993B19407744C067324BDD2D5641977B1A118DBB844104397F963CA2E01B7155CB8 -4BB642FC315C028FE4502335F761A9DDBEF7ADE1ABE87D31AF848A5285BD8328ED3E8A2A608590DA -11968AA8C0D8010329A9E172AAC2C7D0061B14EDAD1142FEBD3DDC0ED20023CF06BB146B3F58A6A1 -97DDA1CB2533B236FAF2825E8DFE70B79A0938D79664C1D26B4412FD10C76729CB22392E8976960A -BED0A03D5FDDC7C5C2C6221BA1FA08020B88FD9AA0CE8B5FD26D58A679339A2AE6730746B8413B6E -05361755FBF11FBFA4974CC1AF36136803DB8282A7F5429327B875D0FD222835C7AB82049CBDA6AD -1731F6D06AD2A20027765CF62F7E4BE9521465A7C3E968DBCF95F2C62EB3829CE6DFE845EE20E8EA -89CA6C46BA14E5A920D8E28A4008C210F747622AE31F5F9036C70FA52BFFF08A4BAB3D5EA2EF6E86 -56F89058F4A67933AF30E9A16467D563B2782268E2568868F677650A74F415289CBAC0DECDF82848 -5066AC07C011623DE9643DDE39840B1A739B33ED3EC705C13DFB191472987059E5017002D278168B -5280FA2E26C6D51CA663B384F5CFF4A6232F5F68E185231EEA239904319E180F91DA98A63B38E16E -138D2DCBCFEFA5F3E5AC6FE764A3A9F3EB622117662AFD26A124933CB1E04AAB53923AF5D9DD9725 -36C4904A1602040545A9AD4904D867C1D0AB907D733EDC19EC0933913B0EE96E8578527FD3D1204A -25982635CCA01A9B101A843F6C373AC4C8E39E39BB13AE6A0EA170B59987488481D38806D429E902 -801F9CE25EEDEB6012CC9EBA0736820F82C640CD8C7D852D9EFFE6F769D7FDE1DD628861FF628BC0 -BA8EF12726F83D7FCE6ED8785DBCE502DD0571A76D88B7FAC1E2DB24DB97394937A1EA17031078EE -07D00B554B9C892C68B624D3900266E8850287243BE44F11F86E95DC00E89C5C47F573C0A7F1CD0C -CD26498334C7D37A3AF4457CA805446A743445978D8C3D25FBA2350A878E23DE65D49E9E5F819484 -DC1B85ED2BDFF923216C101FD8F411C1443AD7BCF5E90FDD6BD29899C86EB3ECC82832FE75A59EB3 -FA696F2696A450E2504A473123A8D24956ABEF5ADAF5B3BB57FFA5364214AC0E9E245CCF431DFB8A -7A5104BD97D5E5104CA9A05774D0FCA9EC0458BD7289794FF19FD00E2D05086336902514F5CF8141 -307C037E5D2E30B62D1C8A5A7682BC941A5445D8A17F5670554AD4AE24EB95524CEBF2599D5D00AE -DEE2B5537F869A46BF093296C77F86ED5658C3DD3AB9C25850624A53F6573A51C7AD9F43EB8320DF -A31F7F58E0FDFA9FF640DB5B55FB5C4E014A8C50E062F13D573C845231F98CDE7414BD440AD4CE9E -00FB39BC93C3D1C8F5FEC652FC28AD9EF814CD964DEFC5813828B0A38AB0E0BE6E3CD60259B8A50F -95CB02EB685DDE048D73DB0460985EB16DA749DE3EE1625182EDC552F104E547D22E62501D9D4EAB -C09531E6457B7AB148FFBAC7927318F8BE99EAE5AC9E6AE81081E236187C2D384A92494DE6BD1FDC -C5A79413609F865C6067EB60B83B1E0D49D2CABF88F252377787534037AEA74A842CF21A5514F3A8 -9A00EEA33793D63040EC2E1231C04026B8DFE67E0E0B460E3BC6E60F71AB1C05F295F617829255BB -BAD68D6D7E5AEE12DAD835A693A661AD9923BB65C781B9085640D3A5317C312DD3C6159C15D8DAA3 -A592C9F4B4AB648B160E4B3BD2E3DD475573570F5EE110AE5BCA3C499513061F202DB76ECBB5316F -21F041954B9EFF754A628ECC2B68077CD6072C630CB99421BA3D0D1DA24CC09B8D42E8ECB52EBAA0 -E16DE13F0F2E235292A0063ED390D9A8E685160134E931F924D150C3B1E315CCC86F2AC29D02D0D9 -8DEB83DFC7531128E0AB55B5F7D161A44DE0154738DE065666440E46D94CC4AC21C42F362D222A5C -EB4FE9FAC0892ABAA08F3A3AB76A22CF73E343BADA5C89355A821C67A626C0FA6F8742178B956254 -3607FA648F9FC0971734B99E476E36E9127419F27469DD3BA6A1D82680155B4603D1DD68CCFB5D5B -1A90CE7C6B780BBFFE12723ACF7CED4649DCD6D61DC52FB893305D4CB1D956B4A8393D2ACDF74247 -F0695C9778D5E104CC29E7E8BDEB1305DDAB231758BD41DE987F4A3D2A8FE210CD806CB42F46951A -51F24526F4E43FE18A7E1B43265201F114F258CB9DF6438D064CD2541FFE07B847C56E66C501758A -FDC9C644CC5BF98C6D0D4ADD4F4245DCD8BEBCD596F363F8469DBDAAF511789619F04BE31FE959F1 -9649D7808F42AAAE56E6CE93C9F3B3D1CD7C1A67E0FC85ECADB448869D34331BFA9C9A0840B7FED1 -DC2B0A40072B52449B01AB2CAA5765C2A969B61BAA43F084DEFF1E8EFA194F6EBE8C1C475F8895C6 -DDD99CCA8F4DA57DFD02A3036407671F3DA719E819A2D2678167EA17CE5ECA50FE1EA359A5756746 -DBE661C9F8F4678B762FE87B2DC98AE853E7CF9C2AA1A34F3D560248C5870653D645735877995245 -83F058E7D5DC9D80E7BC03A0FA66702A5AE4CC9EC25ED4433B437B07FB4D3701683D0CB07D90E29B -8B7A0FABF72D0852ECE8F58BFDC35CA72B36CBB334D21ED27684831DB43F34D54F85F19A2B32C728 -74AA6D9ABF878A6EFD56BB4EF0E10D2F008129872A03334919DFE9F9692D2A75B870A43E19890D10 -E13DA69D3F1BD10FDC0A89EE30ED890A8D278D132C8AF80B14208623EAC8354973E5A7C2AF274EFF -B139976B0C91FA38948F3C1F7E3954D3826F2B19C3799784C139DCB19C2C1ED25C62DE80C876F0DD -FD3378A061F8293AB0927797F4453DFACD6D06C0C59E7C923BDFEA427A7C874543DF1E42039296F0 -EA569BC8CA6B73A2516E4D495D4894162962428B915A6DF5EE0758D1D24AEB9792A9AED3489EA635 -14087F4618F87141712D5D6FBC48F5F4A242BE1FDDDD4C1E69EB85F9B05151B2FB0997E30E900FC9 -A4FB9E59FA2C00491CC7D5DBA867AFA941642067E8F402751561491FE8399D11B2FF6E278281B302 -CFF6FF986830295D6E37D0F102F9549A5D4C498473D357B9D2A0CB04DC0098629617F186BFF2C1C7 -1975752B9D470B0E4B14DABF3FB5BB81CDF4F0CD451A1EAD5624F9C948A6DE2CEB0C4C6D567385C7 -52F8B8BC2E0941C6F6479D4540248CCD3570FEDDA378EE484BA82A31D00AB1BDB104C5E667D8C9 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 - -cleartomark -{restore}if -%%EndFont CMSY10 -%%EndProlog -%%Page: 1 1 -gsave -newpath -0.0e+00 0.0e+00 moveto -1.5e+02 0.0e+00 lineto -1.5e+02 1.5e+02 lineto -0.0e+00 1.5e+02 lineto -closepath -clip -gsave -clip -newpath -gsave -newpath -5.0e+00 5.0e+00 moveto -5.0e+00 1.45e+02 lineto -1.666667e+01 5.0e+00 moveto -1.666667e+01 1.45e+02 lineto -2.833333e+01 5.0e+00 moveto -2.833333e+01 1.45e+02 lineto -4.0e+01 5.0e+00 moveto -4.0e+01 1.45e+02 lineto -5.166667e+01 5.0e+00 moveto -5.166667e+01 1.45e+02 lineto -6.333333e+01 5.0e+00 moveto -6.333333e+01 1.45e+02 lineto -7.5e+01 5.0e+00 moveto -7.5e+01 1.45e+02 lineto -8.666667e+01 5.0e+00 moveto -8.666667e+01 1.45e+02 lineto -9.833333e+01 5.0e+00 moveto -9.833333e+01 1.45e+02 lineto -1.1e+02 5.0e+00 moveto -1.1e+02 1.45e+02 lineto -1.216667e+02 5.0e+00 moveto -1.216667e+02 1.45e+02 lineto -1.333333e+02 5.0e+00 moveto -1.333333e+02 1.45e+02 lineto -1.45e+02 5.0e+00 moveto -1.45e+02 1.45e+02 lineto -5.0e+00 5.0e+00 moveto -1.45e+02 5.0e+00 lineto -5.0e+00 1.666667e+01 moveto -1.45e+02 1.666667e+01 lineto -5.0e+00 2.833333e+01 moveto -1.45e+02 2.833333e+01 lineto -5.0e+00 4.0e+01 moveto -1.45e+02 4.0e+01 lineto -5.0e+00 5.166667e+01 moveto -1.45e+02 5.166667e+01 lineto -5.0e+00 6.333333e+01 moveto -1.45e+02 6.333333e+01 lineto -5.0e+00 7.5e+01 moveto -1.45e+02 7.5e+01 lineto -5.0e+00 8.666667e+01 moveto -1.45e+02 8.666667e+01 lineto -5.0e+00 9.833333e+01 moveto -1.45e+02 9.833333e+01 lineto -5.0e+00 1.1e+02 moveto -1.45e+02 1.1e+02 lineto -5.0e+00 1.216667e+02 moveto -1.45e+02 1.216667e+02 lineto -5.0e+00 1.333333e+02 moveto -1.45e+02 1.333333e+02 lineto -5.0e+00 1.45e+02 moveto -1.45e+02 1.45e+02 lineto -gsave -5.0e-01 setlinewidth -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -grestore -newpath -5.0e+00 2.833333e+01 moveto -1.45e+02 2.833333e+01 lineto -2.833333e+01 5.0e+00 moveto -2.833333e+01 1.45e+02 lineto -gsave -1 setlinewidth -gsave -0 0 0 setrgbcolor -stroke -grestore -grestore -gsave -2.833333e+01 2.633333e+01 moveto -2.833333e+01 3.033333e+01 lineto -gsave -0 0 0 setrgbcolor -stroke -grestore -grestore -gsave -5.166667e+01 2.633333e+01 moveto -5.166667e+01 3.033333e+01 lineto -gsave -0 0 0 setrgbcolor -stroke -grestore -grestore -gsave -7.5e+01 2.633333e+01 moveto -7.5e+01 3.033333e+01 lineto -gsave -0 0 0 setrgbcolor -stroke -grestore -grestore -gsave -9.833333e+01 2.633333e+01 moveto -9.833333e+01 3.033333e+01 lineto -gsave -0 0 0 setrgbcolor -stroke -grestore -grestore -gsave -1.216667e+02 2.633333e+01 moveto -1.216667e+02 3.033333e+01 lineto -gsave -0 0 0 setrgbcolor -stroke -grestore -grestore -gsave -2.633333e+01 2.833333e+01 moveto -3.033333e+01 2.833333e+01 lineto -gsave -0 0 0 setrgbcolor -stroke -grestore -grestore -gsave -2.633333e+01 5.166667e+01 moveto -3.033333e+01 5.166667e+01 lineto -gsave -0 0 0 setrgbcolor -stroke -grestore -grestore -gsave -2.633333e+01 7.5e+01 moveto -3.033333e+01 7.5e+01 lineto -gsave -0 0 0 setrgbcolor -stroke -grestore -grestore -gsave -2.633333e+01 9.833333e+01 moveto -3.033333e+01 9.833333e+01 lineto -gsave -0 0 0 setrgbcolor -stroke -grestore -grestore -gsave -2.633333e+01 1.216667e+02 moveto -3.033333e+01 1.216667e+02 lineto -gsave -0 0 0 setrgbcolor -stroke -grestore -grestore -gsave -newpath -0 0 0 setrgbcolor - -% Comment: canvas init - -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -1.0e+01 setmiterlimit -gsave -/CMR12 findfont -12.0 scalefont -setfont -7.20735e+01 1.562889e+01 moveto -gsave -[ 1.0 0.0 0.0 1.0 15.6602377316 -710.61768394 ] concat -(\062) show -grestore -grestore -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -grestore -gsave -newpath -0 0 0 setrgbcolor - -% Comment: canvas init - -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -1.0e+01 setmiterlimit -gsave -/CMR12 findfont -12.0 scalefont -setfont -1.187402e+02 1.562889e+01 moveto -gsave -[ 1.0 0.0 0.0 1.0 62.3269043982 -710.61768394 ] concat -(\064) show -grestore -grestore -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -grestore -gsave -newpath -0 0 0 setrgbcolor - -% Comment: canvas init - -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -1.0e+01 setmiterlimit -gsave -/CMR12 findfont -12.0 scalefont -setfont -1.848034e+01 7.114778e+01 moveto -gsave -[ 1.0 0.0 0.0 1.0 -37.9329240608 -655.098796308 ] concat -(\062) show -grestore -grestore -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -grestore -gsave -newpath -0 0 0 setrgbcolor - -% Comment: canvas init - -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -1.0e+01 setmiterlimit -gsave -/CMR12 findfont -12.0 scalefont -setfont -1.848034e+01 1.178144e+02 moveto -gsave -[ 1.0 0.0 0.0 1.0 -37.9329240608 -608.432129641 ] concat -(\064) show -grestore -grestore -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -grestore -gsave -newpath -0 0 0 setrgbcolor - -% Comment: canvas init - -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -1.0e+01 setmiterlimit -gsave -/CMMI12 findfont -12.0 scalefont -setfont -1.333333e+02 3.416667e+01 moveto -gsave -[ 0.9 0.0 0.0 0.9 82.5613929049 -619.455251142 ] concat -(\170) show -grestore -grestore -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -grestore -gsave -newpath -0 0 0 setrgbcolor - -% Comment: canvas init - -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -1.0e+01 setmiterlimit -gsave -/CMMI12 findfont -12.0 scalefont -setfont -3.416667e+01 1.354255e+02 moveto -gsave -[ 0.9 0.0 0.0 0.9 -16.6052737618 -518.196438035 ] concat -(\171) show -grestore -grestore -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -grestore -gsave -newpath -0 0 0 setrgbcolor - -% Comment: canvas init - -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -1.0e+01 setmiterlimit -gsave -/CMMI12 findfont -12.0 scalefont -setfont -5.166667e+01 1.243566e+02 moveto -gsave -[ 0.9 0.0 0.0 0.9 0.894726238195 -529.265338315 ] concat -(\161) show -grestore -/CMR12 findfont -12.0 scalefont -setfont -5.672391e+01 1.243566e+02 moveto -gsave -[ 0.9 0.0 0.0 0.9 0.894726238195 -529.265338315 ] concat -(\050) show -grestore -/CMMI12 findfont -12.0 scalefont -setfont -6.0821e+01 1.243566e+02 moveto -gsave -[ 0.9 0.0 0.0 0.9 0.894726238195 -529.265338315 ] concat -(\170) show -grestore -/CMR12 findfont -12.0 scalefont -setfont -6.680788e+01 1.243566e+02 moveto -gsave -[ 0.9 0.0 0.0 0.9 0.894726238195 -529.265338315 ] concat -(\051) show -grestore -7.389372e+01 1.243566e+02 moveto -gsave -[ 0.9 0.0 0.0 0.9 0.894726238195 -529.265338315 ] concat -(\075) show -grestore -8.507665e+01 1.243566e+02 moveto -gsave -[ 0.9 0.0 0.0 0.9 0.894726238195 -529.265338315 ] concat -(\064) show -grestore -/CMSY10 findfont -12.0 scalefont -setfont -9.273534e+01 1.243566e+02 moveto -gsave -[ 0.9 0.0 0.0 0.9 0.894726238195 -529.265338315 ] concat -(\000) show -grestore -/CMR12 findfont -12.0 scalefont -setfont -1.03495e+02 1.243566e+02 moveto -gsave -[ 0.9 0.0 0.0 0.9 0.894726238195 -529.265338315 ] concat -(\050) show -grestore -/CMMI12 findfont -12.0 scalefont -setfont -1.075921e+02 1.243566e+02 moveto -gsave -[ 0.9 0.0 0.0 0.9 0.894726238195 -529.265338315 ] concat -(\170) show -grestore -/CMSY10 findfont -12.0 scalefont -setfont -1.1597e+02 1.243566e+02 moveto -gsave -[ 0.9 0.0 0.0 0.9 0.894726238195 -529.265338315 ] concat -(\000) show -grestore -/CMR12 findfont -12.0 scalefont -setfont -1.267296e+02 1.243566e+02 moveto -gsave -[ 0.9 0.0 0.0 0.9 0.894726238195 -529.265338315 ] concat -(\062\051) show -grestore -/CMR8 findfont -8.0 scalefont -setfont -1.360944e+02 1.282612e+02 moveto -gsave -[ 0.9 0.0 0.0 0.9 0.894726238195 -529.265338315 ] concat -(\062) show -grestore -grestore -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -grestore -newpath -5.0e+00 5.0e+00 moveto -1.45e+02 5.0e+00 lineto -1.45e+02 1.45e+02 lineto -5.0e+00 1.45e+02 lineto -closepath -clip -newpath -5.0e+00 -8.833333e+01 moveto -5.0e+00 -8.833333e+01 lineto -6.4e+00 -8.001733e+01 lineto -7.8e+00 -7.186933e+01 lineto -9.2e+00 -6.388933e+01 lineto -1.06e+01 -5.607733e+01 lineto -1.2e+01 -4.843333e+01 lineto -1.34e+01 -4.095733e+01 lineto -1.48e+01 -3.364933e+01 lineto -1.62e+01 -2.650933e+01 lineto -1.76e+01 -1.953733e+01 lineto -1.9e+01 -1.273333e+01 lineto -2.04e+01 -6.097333e+00 lineto -2.18e+01 3.706667e-01 lineto -2.32e+01 6.670667e+00 lineto -2.46e+01 1.280267e+01 lineto -2.6e+01 1.876667e+01 lineto -2.74e+01 2.456267e+01 lineto -2.88e+01 3.019067e+01 lineto -3.02e+01 3.565067e+01 lineto -3.16e+01 4.094267e+01 lineto -3.3e+01 4.606667e+01 lineto -3.44e+01 5.102267e+01 lineto -3.58e+01 5.581067e+01 lineto -3.72e+01 6.043067e+01 lineto -3.86e+01 6.488267e+01 lineto -4.0e+01 6.916667e+01 lineto -4.14e+01 7.328267e+01 lineto -4.28e+01 7.723067e+01 lineto -4.42e+01 8.101067e+01 lineto -4.56e+01 8.462267e+01 lineto -4.7e+01 8.806667e+01 lineto -4.84e+01 9.134267e+01 lineto -4.98e+01 9.445067e+01 lineto -5.12e+01 9.739067e+01 lineto -5.26e+01 1.001627e+02 lineto -5.4e+01 1.027667e+02 lineto -5.54e+01 1.052027e+02 lineto -5.68e+01 1.074707e+02 lineto -5.82e+01 1.095707e+02 lineto -5.96e+01 1.115027e+02 lineto -6.1e+01 1.132667e+02 lineto -6.24e+01 1.148627e+02 lineto -6.38e+01 1.162907e+02 lineto -6.52e+01 1.175507e+02 lineto -6.66e+01 1.186427e+02 lineto -6.8e+01 1.195667e+02 lineto -6.94e+01 1.203227e+02 lineto -7.08e+01 1.209107e+02 lineto -7.22e+01 1.213307e+02 lineto -7.36e+01 1.215827e+02 lineto -7.5e+01 1.216667e+02 lineto -7.64e+01 1.215827e+02 lineto -7.78e+01 1.213307e+02 lineto -7.92e+01 1.209107e+02 lineto -8.06e+01 1.203227e+02 lineto -8.2e+01 1.195667e+02 lineto -8.34e+01 1.186427e+02 lineto -8.48e+01 1.175507e+02 lineto -8.62e+01 1.162907e+02 lineto -8.76e+01 1.148627e+02 lineto -8.9e+01 1.132667e+02 lineto -9.04e+01 1.115027e+02 lineto -9.18e+01 1.095707e+02 lineto -9.32e+01 1.074707e+02 lineto -9.46e+01 1.052027e+02 lineto -9.6e+01 1.027667e+02 lineto -9.74e+01 1.001627e+02 lineto -9.88e+01 9.739067e+01 lineto -1.002e+02 9.445067e+01 lineto -1.016e+02 9.134267e+01 lineto -1.03e+02 8.806667e+01 lineto -1.044e+02 8.462267e+01 lineto -1.058e+02 8.101067e+01 lineto -1.072e+02 7.723067e+01 lineto -1.086e+02 7.328267e+01 lineto -1.1e+02 6.916667e+01 lineto -1.114e+02 6.488267e+01 lineto -1.128e+02 6.043067e+01 lineto -1.142e+02 5.581067e+01 lineto -1.156e+02 5.102267e+01 lineto -1.17e+02 4.606667e+01 lineto -1.184e+02 4.094267e+01 lineto -1.198e+02 3.565067e+01 lineto -1.212e+02 3.019067e+01 lineto -1.226e+02 2.456267e+01 lineto -1.24e+02 1.876667e+01 lineto -1.254e+02 1.280267e+01 lineto -1.268e+02 6.670667e+00 lineto -1.282e+02 3.706667e-01 lineto -1.296e+02 -6.097333e+00 lineto -1.31e+02 -1.273333e+01 lineto -1.324e+02 -1.953733e+01 lineto -1.338e+02 -2.650933e+01 lineto -1.352e+02 -3.364933e+01 lineto -1.366e+02 -4.095733e+01 lineto -1.38e+02 -4.843333e+01 lineto -1.394e+02 -5.607733e+01 lineto -1.408e+02 -6.388933e+01 lineto -1.422e+02 -7.186933e+01 lineto -1.436e+02 -8.001733e+01 lineto -1.45e+02 -8.833333e+01 lineto -gsave -1.5e+00 setlinewidth -gsave -0 0 1 setrgbcolor -stroke -grestore -grestore -grestore -grestore -grestore showpage - -% --------------------------------------------------------- - -%%Trailer -%%EOF +%!PS-Adobe-2.0 EPSF-3.0 +%%BoundingBox: 0 0 150 150 +%%Pages: 1 +%%PageOrder: Ascend + +%%BeginProlog +%%BeginProcSet: +/ReEncodeFont { exch findfont << >> copy dup 3 2 roll /Encoding exch put definefont } def +%%EndProcSet +%%BeginFont: CMMI12 +%!PS-AdobeFont-1.0: CMMI12 003.002 +%%Title: CMMI12 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMMI12. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments + +FontDirectory/CMMI12 known{/CMMI12 findfont dup/UniqueID known{dup +/UniqueID get 5087386 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /CMMI12 def +/FontBBox {-31 -250 1026 750 }readonly def +/UniqueID 5087386 def +/PaintType 0 def +/FontInfo 10 dict dup begin + /version (003.002) readonly def + /Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMMI12.) readonly def + /FullName (CMMI12) readonly def + /FamilyName (Computer Modern) readonly def + /Weight (Medium) readonly def + /ItalicAngle -14.04 def + /isFixedPitch false def + /UnderlinePosition -100 def + /UnderlineThickness 50 def + /ascent 750 def +end readonly def +/Encoding 256 array + 0 1 255 { 1 index exch /.notdef put} for +dup 0 /Gamma put +dup 1 /Delta put +dup 2 /Theta put +dup 3 /Lambda put +dup 4 /Xi put +dup 5 /Pi put +dup 6 /Sigma put +dup 7 /Upsilon put +dup 8 /Phi put +dup 9 /Psi put +dup 10 /Omega put +dup 11 /alpha put +dup 12 /beta put +dup 13 /gamma put +dup 14 /delta put +dup 15 /epsilon1 put +dup 16 /zeta put +dup 17 /eta put +dup 18 /theta put +dup 19 /iota put +dup 20 /kappa put +dup 21 /lambda put +dup 22 /mu put +dup 23 /nu put +dup 24 /xi put +dup 25 /pi put +dup 26 /rho put +dup 27 /sigma put +dup 28 /tau put +dup 29 /upsilon put +dup 30 /phi put +dup 31 /chi put +dup 32 /psi put +dup 33 /omega put +dup 34 /epsilon put +dup 35 /theta1 put +dup 36 /pi1 put +dup 37 /rho1 put +dup 38 /sigma1 put +dup 39 /phi1 put +dup 40 /arrowlefttophalf put +dup 41 /arrowleftbothalf put +dup 42 /arrowrighttophalf put +dup 43 /arrowrightbothalf put +dup 44 /arrowhookleft put +dup 45 /arrowhookright put +dup 46 /triangleright put +dup 47 /triangleleft put +dup 48 /zerooldstyle put +dup 49 /oneoldstyle put +dup 50 /twooldstyle put +dup 51 /threeoldstyle put +dup 52 /fouroldstyle put +dup 53 /fiveoldstyle put +dup 54 /sixoldstyle put +dup 55 /sevenoldstyle put +dup 56 /eightoldstyle put +dup 57 /nineoldstyle put +dup 58 /period put +dup 59 /comma put +dup 60 /less put +dup 61 /slash put +dup 62 /greater put +dup 63 /star put +dup 64 /partialdiff put +dup 65 /A put +dup 66 /B put +dup 67 /C put +dup 68 /D put +dup 69 /E put +dup 70 /F put +dup 71 /G put +dup 72 /H put +dup 73 /I put +dup 74 /J put +dup 75 /K put +dup 76 /L put +dup 77 /M put +dup 78 /N put +dup 79 /O put +dup 80 /P put +dup 81 /Q put +dup 82 /R put +dup 83 /S put +dup 84 /T put +dup 85 /U put +dup 86 /V put +dup 87 /W put +dup 88 /X put +dup 89 /Y put +dup 90 /Z put +dup 91 /flat put +dup 92 /natural put +dup 93 /sharp put +dup 94 /slurbelow put +dup 95 /slurabove put +dup 96 /lscript put +dup 97 /a put +dup 98 /b put +dup 99 /c put +dup 100 /d put +dup 101 /e put +dup 102 /f put +dup 103 /g put +dup 104 /h put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 108 /l put +dup 109 /m put +dup 110 /n put +dup 111 /o put +dup 112 /p put +dup 113 /q put +dup 114 /r put +dup 115 /s put +dup 116 /t put +dup 117 /u put +dup 118 /v put +dup 119 /w put +dup 120 /x put +dup 121 /y put +dup 122 /z put +dup 123 /dotlessi put +dup 124 /dotlessj put +dup 125 /weierstrass put +dup 126 /vector put +dup 127 /tie put +dup 128 /psi put +dup 160 /space put +dup 161 /Gamma put +dup 162 /Delta put +dup 163 /Theta put +dup 164 /Lambda put +dup 165 /Xi put +dup 166 /Pi put +dup 167 /Sigma put +dup 168 /Upsilon put +dup 169 /Phi put +dup 170 /Psi put +dup 173 /Omega put +dup 174 /alpha put +dup 175 /beta put +dup 176 /gamma put +dup 177 /delta put +dup 178 /epsilon1 put +dup 179 /zeta put +dup 180 /eta put +dup 181 /theta put +dup 182 /iota put +dup 183 /kappa put +dup 184 /lambda put +dup 185 /mu put +dup 186 /nu put +dup 187 /xi put +dup 188 /pi put +dup 189 /rho put +dup 190 /sigma put +dup 191 /tau put +dup 192 /upsilon put +dup 193 /phi put +dup 194 /chi put +dup 195 /psi put +dup 196 /tie put +readonly def +currentdict end +currentfile eexec +D9D66F633B846AB284BCF8B0411B772DE5CE3C05EF98F858322DCEA45E0874C545D25FE192539D9C +DA4BAA46D9C431465E6ABF4E4271F89EDED7F37BE4B31FB47934F62D1F46E8671F6290D6FFF601D4 +937BF71C22D60FB800A15796421E3AA772C500501D8B10C0093F6467C553250F7C27B2C3D8937726 +14A846374A85BC4EBEC0B0A89C4C161C3956ECE25274B962C854E535F418279FE26D8F83E38C5C89 +974E9A224B3CBEF90A9277AF10E0C7CAC8DC11C41DC18B814A7682E5F024867411453BC81C443407 +AF41AF8A831A85A700CFC65E2181BCBFBFE3573BF464E2BE882A715BE109B49A15C32F62CF5C1025 +7E5EA12C24F72137EB63297C28625AC32274038691582D6D75FE8F895A0813982793297E49CC9B54 +053BA2ABD429156A7FFCD7B19DAA44E2107720921B74185AE507AC33141819511A6AC20BC20FB541 +0B5AAEC5743673E9E39C1976D5E6EB4E4D8E2B31BEA302E5AF1B2FBCEC6D9E69987970648B927623 +2093695D55A806D87648B1749CB537E78BB08AA83A5001F7609CD1D17FFA1043EB3807AF0B596AF3 +8C91A9675E2A53196FEF45849C95F7DC182A5EC0EC4435A8A4B6E1CDBF9A5AF457564EA72BF85228 +EB6FD244F25135360DD3EBEDA99D94828F447D52D011A8FC8B8BC124A4B367EC860C5F7CDBE58563 +4A1ACD80E37B6F2D5F33AF5A2C0814652FA37D0C6A99767C561253AF8DA3A1279D421AE11C133004 +DB273FDDC2134ECA4CC50296220A4729E4E73003AA88CE151F57F8C5DFEE1A8B3A74D7CB142B4F7A +128A4B0FD028B71FCF59841D3E8CB0450A0AB47B927D944D94C5DA562310C79E2321106D6B90FBD0 +4F5EB787AC050578011A0B24AE534B93B4108D982736464ACF5B77071ACD59B8D987EA9FE832A655 +C175AA8204DFA034D9DEB3AF510C4E948AD8DF3E799B81C5C8250B86FF8F91BE906357FC5DE9A320 +9AF78555AAA0FE720FBF0300F4FFB1E6F49CE9E00B0870D1E0EAB2CE05378850D15E9591ED19E563 +27A083671AD4BD0FAFC5A3AFA4D3E3CB1E50111ECD344168DA214E380AB12211010DA632B2CE9261 +6B94EEF181FF68119A2A0FB6AD9D3BE9E91F24484D018879EF39B3A5EF9A040B26AC1F2F6EC60EAB +B4233CC0878BF25AD526D45BA051CB36353A5A56E9BA2D1132F595F3202195681878AE92CFFC0A80 +9F8EF0DBE782E10D065658FF573553AE7EBC443C640F3F5745DA56489EFE26BBE67475C3F0ED603B +9DDB8464D40B587BBAB8F1B3F73FF9371EB27335665FA61498231EE271987F283580C7B42BF98121 +2D1460D366B3B5D0B7A7F7CD24B3C145B291FAF0B1F20996860BB42E7AF96BEE82C2B2174E9ECE34 +28A5FF9A63D7858C44BBC680770CE70BC7DF2B68CD42F9342517976533B7DA625EBDB07E071D4C17 +C3C32714C079DBEFE2F6F4977B005FCB214BF1FCEB394488CF34938B112C31AD00A54D096EC3769F +157DF59B6EC70FC6BB644470C2DB9688A9891D06145B198DEC09C5DDBFF4E1F56D8B62D172F59271 +B009EC62DBD8D48017892149618394F80F3472ABA74AAEABBA441B569394080498B5E5B56EFDC414 +BBFEBD1D53FBD880E92ABBA771A5EFBFAB1CA24C3F36686B9D9B65DBBBA23089C7D35CEF18D9751F +EB7C1E65F3B672D5E7C2BF998F65D0F49573F285279159BBCCE027E66EEEF9E47CA90DF348D89F86 +48FCB6F55AB2ED74C4043AE90F3542759B3F15932F8A52E3318F1693B2367E13AC6412B41D06DFA7 +1A3A869DA8816B26CD2CC94DA976DEE2B7ED59B4E956A0836A5E7FF5E0FAA40A121482798BF50E17 +28D3387D50CD62E1017235A3B1416CBB94C04F3E3D5FA2BDA3819A47057B8FECB3C09E0A391B5EAD +C38DC1AB744F90453026AACEDFCC190A280F0179C8A3BC1273C608A671E4ABF8BB5DCFC473240048 +1002AE9451172F2F9809B75440B987AB11DBB3569022A02F0194D73FEACA133DBB96BE3DED9623D5 +A89D652880EB4A147BD25031EE1C212E3226D5F7C4497DD9E2F767C4414323972C2B268F192113EA +4A0CD2B82760DCB2ACADC8719511F63D471F2DAAD5399A0B5DE1A15C6579712A81B432DC083E2EFD +660FDE2F155C78676E3350A9A5724512F4169C5E697897F5013D010BF75CB1920328F21DA3408BD9 +0216A18A5017D5FA51083A7C49C3D226B8AEB886083D13EECFB4EF12DE38E5F6B5B7A06D7F2BFEE4 +4690C87A7EFA5725AC793B61EE754278919EF5C5033D539A9BE0732F3D33137B6BC6D170DDF29763 +101BA0078E4BDC1562D16CDC01E05129709AD0E9532C6E6F7E74E42BF133F53314AAF732E90DC3AC +5C1BF5FD615189E12EBCE636C9129641A4879BC987E734289732F73DFF066C8C13B3735E2F2DD818 +E542EC0649DE3E37B0B5111670C45EC14E1E1FF14E41F12A20A6FCB2FDCFA350467651D697AA7E55 +49E2D4B30175244EE941B1F66BCC160A03B963A64DB7D1A06ECA645866EC4627EF2F3563FB399DC9 +B56A99A024D8FB026B8CF36E49484B98C90DA4477FB706CE1F5B136705E52A539D21C933315542DC +E71BC85955427D9DFF0DD9CB767B6B67DE7C2B8A2E2CF3A639E4C354EBC169360311D44D6F57322F +0A402C293F9FF510AF29BAAE402A218B6314495017595DC15128022B8C698ECFBAEF7ECDEE7FF01D +E305261E0119786B842B781C94E2B0138A581CD051807508F585597EBCEF7871A914FDB08466B2E9 +79C83DE884845105596546434E0EA525BEDFFF3E68F245493745A06B577C9A50E0170274210A6F6D +4A44C1EB5512ECDEA42F107E8C08A98EEB9EED0582D607DE96328ACD3D81BD759CEFB2F6DFD2AD55 +FF46D5202CCD0B518DB0008DE95594E96F77FC36BCB1EBCD388BD2E3CB674F90A8C69B4F57FBFB6A +57F07443B05B43BAD9EDEC3A90C5270A9F9198C8674972734277A7A14F22433A74CCC8182FEA974F +E66DD3A3BBE8F2494895B01B5AEDEB4173D8C3BFD4AAC413A548E0D446E0EAD5BCE288586885C116 +080C0AFB697061D021C043D2822FCDB78CFA99DE2A90A8465822A6FE4C0D03494EC045EFA80793A2 +458FA78C3353B0D5D0600CE006E31CA3131F387EC4D84B0C7C46A308D08C302C85ABF45B2D483BC6 +3DF7B0EEA1A0AFC0F844D77274C95ED477114752D0C88AE6092423DFABB3B01934699F096AF8F067 +D870F73CE45036362AC4CADCF97F42C63DFFC69EAC751C08AB6D61D34D32BFCEE1155D012314FD51 +252D2470B4D4CB16D0ACE4DDB17030C3622F56F96EBEA0FB90D92D109B956A4DC00332A9433FFE10 +43300B01D87EAD0C51E6D65545C37AA6528C214BF68831BDC78A84746E879643D9D9EE6BA5C167DB +0A370308C5EB606619A17BEC856BFF181BEBDBA0CA0BEA05C4EC948E288A941755EFA2DCFAEE67F3 +3B311CE0532CAF26FDE29474DBBEE42A623BEA14E4A4858B0496EFAFC775D48065F58DC20F727DCB +866EE68E24918AA1906073B64B0FE458B08A1B7DFA4BC03DC88CB5394F1FD149478577396F0AD201 +C4568BEBAB40DE8B864484D8D117727EA283CAA7485AA58FC506CC9B1C774FC883A3440499E3D984 +36111DC1DEF8CA30DDDBB9DDB9C89534D691555C36B5450DDE24CE5B17DA11E3E4C37A11581E4FA3 +C0D89B5CC3784BFFC14B6E98C548A7C38C53CAB973AF3DE82C6D42A01A57C9FFA790111BF79FE7F5 +91D5E2FF9E2730B7920A30D7BF713E4EBDD272DBDAFC8A676F195BA9082CD779E002FFD0785FC8DE +FFCD12E4B8DF368091E6119E135076E43DD0CD75E6429CEEA972391BA73D93B89645B2480315A49F +49AFE2F324D251AEE654ADCCA32A66E9B1B9407B055BBC615E37BF1BC8C1ADD81ABBF983C73F733F +91770D50184FCA3A0F6165CFE79002352DCDC1296D67AD671A4F4C0A60C7E9C18F3CC374A4D065FE +56D0BBD2CEEE3F70AA9398896FE22CDC4BF7332726A0E676D66D511799D63BDBE0DA140EC4EBF57D +E032B620E5ED890A6760CB7D40A05037BE3A6C5347DDFFCAAE3A5C4BC116F39969936FB483040E42 +1345EADC494523ACBDB55CEA57C40279D4AF5C7C9F3B0660ED9E725C9FADCD5361784D5C14B93C3B +13FD055F269BC7DF6D67719A2BF30D19D1A690B4CBC06DEA51884A686564B3FF6B3F8E9C9FBEC5A9 +14F525B6AE34D448B0AB85FAFA4E7F301984A9645C786DF2A19C2E6A20DD0B60AA2974A624E7CD19 +17AB87B273D04516D727FD30EFD27C983342C9BCC1D9CE95E7576AF25A4BFF02DB4588B8604C306C +04AB66E85E114C28CC47395016955AFACE381AF44B1D004D5B6B64186CD7CB9D081F93A637BBCFE8 +E292FD8D5863BFC683C9E37F0FEF0ECD16CFE63E0A584BFA4116D3AB0ED62B7B82C1630B2B78F255 +27A79267580F58005BFBD37E5C0C31029945CF6F6F72DB17EABDBB51DC8726FCD5AB2D61341B2EF7 +716F0D0AAC546DEDD22AC62FEFB1ECA0EC524C6B3233FB4E1B4CCE49F584BE7BAF33C878F2280A85 +98502001DEDB4FBC9F7DCF40D055AC35AADA869F2808F0B401C294AE378AA9B2AF2768B75D9CAE1A +C52025F18E7DDAEEA2122CE9D233A2A9046EC5EBEAE20FA928BA4AC651AF426574FAEFE31D28C771 +7DEA91429C7BD7611CDA7F5F55A070AD6776AF18DED46E5101A7D1A47F0752896669148EACDBEAD1 +C8A44801B53DDC61261499F2FCC600F635D8CDDDAD94A24BC14A2F5B5AAA6260955256256AF4A9AB +CDF541453E4190AF27139D3C6A2BE9BE4870260574C26338FF348F503DA4DC15FAC4F6ADBCBCC29D +93B9100EE126A0A28C3F0CA30B7F09E13AE59E34DA373702C5817D222DA4AC23DA5EE272805A902C +DB7001A0CCB26220D956871465BE18A323DF93CD792BBE61F3FF8C4957FA49925DFBA1569FBC1BAB +D1C3BA13F88D1D98F7034DBDF956F52646DF43AC978E86A1C532085DF36A66FF556442F3F337A699 +DEAF26EAE1AC20FB2968E58DF82ACBB647350335E4D48032E1BB49F1EA2181FBE183AACDC06761B4 +8A9EEAE514A00B4656B4CDA4BA3AC27F30C39A4274C1DAC69A7BBDEC53C9C7D78D0FAD8530073440 +C85F0A4B0003AE793731EF2A3199CD73663B05BDF83FB2B8C175F0CB3D20C52C0C8A370F9DB92304 +8CBBEA7267C828A700C5856EECBF7FFE8A67C5027BEF1B1C7D42C717ABC02FBB73A3AFEC5F57D6BE +21C2CBADC84855BFA4BDB2F127307BF437F010AF0C938F9587B153249E6EEC2ECA63E9BEE972CF4D +98627E9DFD37B325E7A6612C667296C8E9256C62690BE9D25F7C68CD984B56197148A89E8E05B9FE +98F033E9DD9EF7245EF70E63289C7947BE5F2272154E207A9B4B1FDBE41B1D4D72BE13873462B012 +F4B9D5F4164B714965F36C4101C870EFCC4BACC1A6DF744C1F91B1B7A2BF63BDFB840F5B0C062ACD +11FE47D9A3AA36CDC00ACD6DD8475034F603E859B3113B1C8A311C80B5D9EE1D881424745B573DB4 +3656FD733864CDC8978006D58309E4B226288A0DCDB9AAC8396FC9DD024BC5F00160C382B127EB4C +9FA74B62BA990E2DFBA53D3CD57A27FB68F912E5B69CFF2113D70CDCAEF634BFEB9D7A65CD1A670E +3A2CEE5D9687558A1BDA4358BE0917A4C8614B97DF5810473714F6FB8BE998BA52916F790F353DB8 +7B96194C6271147A947C664D273CDE1893D4E1EAEE9F4199941970A46AB809D4776E9310C506EDE7 +7EF1E9804829E495B0F654EB15FC2563DF6CB1B9D36D837777547CA37ADB28768A8DA2433BFD20D7 +2F9F00743272277F2C9A9F1F33CFAD44A8F3D620A0DDA13C3286760361107A0A82E0D12A9C601FE9 +3971250D47583AD68AC90892AECC54BFAB740A2F51F07A1E2C5B5E3A895F3E3001F4DEEB99E0A646 +4B0EC3753F30013E9C92525D9F651898A585DB03BB7180D652CB68ABAB55BF18402A43888772F9C3 +6C9F7CF6E00F07B33590C777B1B056B6C31210A3FEABC46BF00E7A837E93EE3464776B9D78E75C60 +CE9E0725C31784836B9CD63BA44DB0867C80D70A15FC97CC6E4526E84AE9B30CDA84C1C7857466E5 +F315C8F6DCFA0289FA937AAFF5D3CC35709E9EC3C255B355D7BC6063BFE6364804342D4BA7D015BE +58633CB781FFDEE7BFC46AFD84255D141DA1EF280D5CE22017DBC7C1A128B3F9974AD5BC1E53E43C +3EC042C17DBED744236D8AC784B9102E2FC4E94DF8C78254A6D496790CD6684EBB54035048E1DB75 +93E552C7EE7B884012517917AD46CA470ECFBDDAFA7F1FF13C0CB00005628710DD4EA93C79DE721A +89BBF27DBF7A085799B00D6AA37D7B3590C79ACAA5DFD15953E7F8B5874EF9BF34A217184100A080 +0A5675D552ADEFD930E294A50CF7A3C6344EA0871ED23AF942EC699E21537D852ADBE736EB1070D2 +C9B622EBD2384430BCB114D1DA3CBE2C6FBC839D77F20ECC999A5302705AE31AEEB8B4E5CA4046A3 +C77F8B0248E3755013CFA7C76D7248920CC203834E9328B58D5FC7C46B11B5AEA991556D067C2B24 +37634D95EA274197D3B46CA1B8446D633B6F0AAE72A599548BB3D81A337113D3EC58B0B2DD107A61 +7CA6DEADEE7003AE6F28ED6DAA5C5D99D67DFD2594800A66D11D26490156A539E286191274C30C09 +8DB77A427695BAE705DF290F97887C5DD6FD964D76FE6132016D0D58580F2EAEB727FE1B8AEFEC95 +C4629CB17D8C63D1EDD2125527D00C9E7C64AA7053A047A69F82812FD3C8C2543F269EE9C553F5BF +8A53D461D9C308C198EBF2B97DD531664229D32C3EC61D69E4E79F539E9E589FC3F57C9E4624F869 +A482062A52C9F4B640090C360DF8DC8702DB966EFADCAE94C8A2DE022E88EB388239BC517368F8C2 +6C8D96A6E8649737F902495E3F29F357B9B58EA47A9400D028B8BFFE74BAFC43E888808381C5F3E3 +18DF9BDA26F6E14DE2858A1A9CFAAB8A82B7819F748E04C8606DA94D884A13C67E3FA06F9C2834E1 +A02F4BD043C87D57297D500E4757BCEB37239A755F36FF99A3F9B6E0CC9F8938041EB931519BF0D4 +2E7A93EE62E6A59C2BBF1B2D6CE1958DAB40F1EC78C99C501CFD69864DA50EBF933D30CEAEE7456C +D0A08C78CAFAD93CACE2671F7E3DDDDA98EA56CA35648109D4E6333188ECC817F317D8979DA9FAD9 +DD45DFE5D74BBADFAC4921723F736426D5ADCC5DE4FA6703E121BFCECFB415F1D444634A7223389A +38DF2AD64101476D170DB854A220CA8433AB5DC40A841BEA6CBC538C63E0442A7764014D853AF8AF +C34F2D17A1DB8740A45C857667A59F895094867D12D06EBF72942E8ED4D6EE9EF225B4DD82A2F16A +D0A8C2C246DBA7BB9245ECC4863D14885BC30950451113123C868B8AA5B36F7B926B5ECB0A333902 +BB241B3D281550655912AE14A634D79515F00799E91F6DB093ADA1692CCB5A32CF94FA0A4E1B311A +68BD03C0F85F2F63C3C0658A3756013288704B240E14F65AC1BDA3098894BE592794245AEF119ED5 +9523983DEB2D0E9D211F62E6D6C5AAE72F3AEEDC4E590BD531EEA93C05EDB1370F140DB3034A9996 +22ED4BA8F1AAEDB368656B6C6AF920DE068E06B985FD47461276723C9944CAC87B44475767009320 +C7934FEB9B4DB8E1003000A663155C9A3FC67182BE4EA30F5FC813A8F34F3F99DEE8134252A98B21 +54FCE28C1EC23FA5E4BA8C4E005708A18FCEDE9F154576F0B3400C7FBFF197011FFB739D285819F9 +C19796979B3A0A5E4E5CB116F78DCB3A7178718D886D1A9E52BF4D9C8CA2FA2725147413CE566DC7 +4DCD7328806238F8BF9A780CE75C05A7C2BD89420F8A0B0D602498C1C83F775A231B8BED4EDA6F8C +995ACF80138D4A438EED6FB2CA44F06D664052D45B2FEEF0EC584B27E01D663D4B2F8C48E04690B3 +50AB33F10875460000D37C300CAFB3F8391E44F1AB363074FAC3E03C41BF062E5668AB0A4214C64B +171A2CBA072DED6EFAD31309A34D99DBC065106DD8F0942DE6DFD6C0743D98F214C3E3FA09DDEE4D +1080AFF99C98E001EFE2B853747CA64A6130A87AEE3583592AAD47CFA01F0B5B22C638925ED65188 +6EC83777DCCB56A808404BB5B655DBAE33483AADA292B580F02FF2494C7F3F7459BABA95373E39D2 +ABEFEC3FB56440DF99E6DC49E4D01F9286E11085D68EBE8744F307F6AAD2DE8B745E243163427A2B +90A90F6726BCF115DA15331E3F30CD025624C7B916A97B4067C60213C0B3782EEE9F4594B4B78B07 +2C5E9A30D35E1FCFB5E043404E5407A01A2ABBB636096B0ABFCA115414EBB67749D494CA030E21A9 +1206D6B090E0D94EF2D1165765010B8D39695D096825D9687F2480C851690AAEAF4AEEF413C054EB +FA49AA548B618802B62D0DD5FE7529563FD02F7CAFD93CA182B2506393AE802093C5668BE1D5D2C9 +E74C3160B5C3055A31ACD75B2CE21E1014D136FB96E44D4E6BD79A7B5FC5F1741A55B6CDE4CB5B44 +AE1EC827FD9BC083F76C8787756104E782F9D4BDEDA005B4085690CCDA8AC75A0BEFB47D0806F4A4 +6126AA280A41F0FFCFEA04B96714C7B1D4F806FA6412DDDAA68B20551C36E556647C3A7FC303C655 +79322171A7783FD7364F56ED31B5B8132815F524DC97030DFE3E47EDE35D03F4CD2CD99AE55D0BB8 +17A93C71F7C5383ADD04552F1C54557D494907D3050FC9D5514FCF80EF7039C5B076F16A3A946D59 +1165E72F2A31E906D4A57167B44D64BFAE9C408E9CE5EC8937C7B3B0AF24089A1878AF0758B7CFC8 +A787EB7CBA64BF13D3939DED996660A6487579162F56C3440764954DF160077B16CBBAAB9DBD5857 +FC44A5775ED562140DD33B3CB2173152213DF78D65AFC94347685181CDCAF3B79D755652C2B2D3EC +39449252DA027E97E534AC05ADCC39795C41F68E5F98F983CFCB4DE3BADFED909B2B6178904806B4 +0AE9F9B3577531D1C9C5793EB1C455C9895D2C858540C6B7F8B40AEDAE79FE461309AF352C80739C +5AD7612EE5970C113133502E1F59F53F8A72373A3841C37E727ABFB1E7A2AEAEF482B0942CDA1BFD +D81F7A2FC15A7D0E7F2CEFD8BC432268ACDDF3698804556E4AFE9086E6AE0CF1B144A5A7D04CE576 +F26533B611371D7F846959F2A589E54EBC0EA0AEE1C117EA3E8957E07AB8A728AB388B06BD7D98CD +44C468F7AE354304DCD93BCAF479F5C27BAC920128ED987667E94ADAB5E55EAFAB2B52BB2D83991F +9D638CC461A25738A6C33F134191A1A804EA935EF441F89129175BF705D4F7089BDE3C0AE6C61921 +487B3EDB029FFE0CDD2307B68CEFCD58591F939ED509EBA0FD070294B5158F3BF432AB18379BDA34 +86DBAC2984198FAEA711008AA454E9612B23B6C8C5AA908E5424456603D522BCAEB3EC41E1C8BBEA +B1C8CE0BEF6AB7C7008171F62B03BF9258329DCC30472DB329313606157CE246CC8D5C9E7DA2AE08 +967CB303C5E516F18F0CE530E75762541536B444925C1E123CFB615157A3169F7F10172423BF5A54 +0015BDA30A03414679A145541655B65253CC546261FF4626722942C8AF01FDA6F92200EFF2716807 +4F3BAC5692AAC160F7A0DCBD5315C4B700E3BEF31520215C093F0F1DCFD5D18538F8D4FF1997C652 +4DD972AE1CD7E11F829CC621B383390C2E7D196A8D5A9CBFBD8D3145E20CF045D1F128CA47CC9A01 +91E29D4217A1FA558F1F93DC86171E43764CC7D9377A1C76AE027D5C3FEC7A38CEE040DA280902D3 +F183134E3A95E5EF148C71BD5994BB28EDAF191EAC23BD02BD9A5F613235E97A5EE8C5C7E6A93F03 +186A29C684B6E46026A31BF1830B1ED3BB12A0648270CEE09A4F5AB891AD72D80C4057C781DFD270 +EE443E1FE4E9D8E58D2AA0A9A702836EABF544A3B4F2E1841776EA821FDB36E71AECD6A1C355127B +461FCF72A531176DB59F10D9A1222F99EE4AA579CD5CF6A288016F5DA6838536F3FE0D902543095D +90094EB79BF1592CDDE05786DAFD98AF30C6CEBF27B1315C706A63D4E868BA374EBE33145C16F181 +2AB2F8668B549A74C8A58304BAFBEE3136533542EDB8976C7550F0905546D116DD0E11384C2B99E1 +195316EC9CD53EBADB73509FDE80B1BCBCAE46E8806E0CC8CCBF2B10FC54D05C9F604B4ABFC87B25 +DB5CA90B64096B18C33E8A53F45F163AB7AC47CD6E9521230D689ACA686B5792D72097C4E67F93DC +9B7AEE088DA36BD6ACEE7E68ECFCAFE7D585F677BD1ED27595948CB7CCE21BAA375393CA45234E8F +4633D61EC657C528EDD0FF520964F8B737D0DB9A58DB146588F7F02CB77DE7D417CFC65B45CCD62F +77CC833DB5228159A552C7D6B0F7E5E5521E26C7F9A47D8F600CA820DF8B4B25B8B8D823FFB49E7B +1E779D9680AFB496C7BD8D2FDB99717F9EF91A6AFFBDAF5E6C188315BF63C3BA9B8414709D1E60FD +25D29BEA68D6D5857CF024BC2E03249A4B294F36E3BE13225319F11AED07AC2BD2E5BA6E9CD7F77C +C707F6268514BB7D50257EB4E23BD6CB9700745AF46DDD87664364A8CE71574F2D60CDBE61A3AFAB +925EFFB23273B61E93385C29C2E8B76650C1432AC8D4FF35F5419CFB553C8F10F4230CDC749B5F3A +8F5B1EC8C9FE31626378EB495A9A53BE7E1C0683550BB3AE9ED557CF4DE95399C5EAFB4B99B0889C +890FE2CEF419A20800812D0DA7795E9F519061D19D1AFE2AC77CBBF05D1A738E62B64B4224DCA36C +48B7A9D1FF785225C9852111316ACE1DAA2C21E05D767DB0DE6A0593D19029814C8BCE19DEED87EA +E4F52004EA1FE7934C099EC71AE7048D796081176AB9B8ECF42FA5581FFD859BD818411DFC4649C7 +6F82D6C03563F9B9D2DE6F274D41E0A93784EB6ED0FEAB8DB20CFD35E2DEB93A1DD1AE514F9E8A48 +279536885042D248CF3FB0872135921DFDDC41198DFEE21982D675CC3BEFA0A3986893CB55393D0D +97ABBE2E2E9B911B8E219104B22197EA04E201FF9C5F9B644E91709CFACDA783050C75212109FBBC +0422B697902D9847D764AD31E851ABB49F9BED16F1377F97198664125C1BA4E06C4C43AAD8829047 +38E1127C3CDC74167B21358CBDC8563951CA7B5DE09526FEA0B1D2AA92F3C4EDFC252BBC38463B55 +E97E8C40D6FD34403357911A1FD0A46565148F3FC891B20EC84976FB26D13A93F1B3D7162D864F8E +1C4A4CED23724105D0B7EB83EB334386912AAD93BAA8AA9CF5CDDF83D5FF76E94C8A2C40C28B5F48 +47A49D8155347392B7D2CF2731E45E0ECA9A654AEEC5DC2A6B03E93D4DA22575D824294ED80804B8 +42B898708A5FA69C5F958A935D47F57039C31771879DC8AE993CF060F6B509F8CE28FAFA8A0FF700 +FD69D4EBC54038D5E1CDE731CD67C5C6F8E7F1CB1977C3768E60E3860D1254AA78436A71018CFDCC +1039C7CF7B77E8648BDD86FD770249BDAAEC08900B6E83133D88010B00225CFA5E3312037C2F9589 +EF6239B282F16C76600688457FC0D08CA35D90212CFE0D4913A69CE823C28EE8E409EF37D4E0A4C6 +1B8E4463A6D77C012F9FBD76F908211166035EF6CBA88D06178DECCA1A600C1E6FB0459CEABABF56 +2E6A15F42EC364FCD799155384F2C2C1672F3BC243B706870903BDEAAB89D658E9072C80DD853118 +832FD5D1751D3E2A392131FB96C14C67F52549B34241AA4F61EAC7DB1DC2CDA21DA3C643ED32F2C4 +FD07A503C2691AF03CF7562E5E5C8F67A69642021835AE98E1312C1FBE112C7E3D8021974657DF38 +763033DBD533678902AC7C30B003A58183660D747F63BDB769133F381267FA0CF317CF247AF52A62 +0E8B746F91549E6707A5194C7F55B12584C637A77DFAA309C71B35EE1BC03571A249B595764C872F +76CD7BE88B4997E3D47F4CD9B184E14CA9CA50F03A802E5FF0A36844D59BF8F4C44579707479C658 +63F566B5BCCCF8BF62B5238C3860103B7804A43376CACC661C95536760191C917ADDAEABEBF60DAB +34185C68A03BAB8B4E72DFFD94BF526ED7BD0137DA616AA0C13CC52490772D59C060015D52D587E6 +68D6B55BA9DDF0FF65CCE13F2F302577478B9783378B645375EA354E25F39358E1F29135FD185BD7 +57BC0A3E743D21E2D35763363225571EBC1B1A0D070903464DF70DEB1E6067A65F85F518873A5085 +861452EA506D206944D1A45BD810B8CD62DF8C56CFA79E0713A359850036EA86F9EE798FE69666AC +75496FD1957390AAA5C0196AE72D4CF451372A29A8027BE9B21CE4CC4D54D42EA9F5DF0C597C5BC5 +A755CB5C8A21E28763813202A3E2A4B5889CFF84DE851AF6F42B19E208F5212398B4EF29806E058A +2DC35FE0DEE90C8C3ECCD3A94CF9B933423ACB97080CC277F064A70C90EC87A280B23FCD7F93C724 +030E29974771C42B14D70C7C4D1F89CE7FDB1CCFB71806 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 + +cleartomark +{restore}if +%%EndFont CMMI12 +%%BeginFont: CMR12 +%!PS-AdobeFont-1.0: CMR12 003.002 +%%Title: CMR12 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMR12. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments + +FontDirectory/CMR12 known{/CMR12 findfont dup/UniqueID known{dup +/UniqueID get 5000794 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /CMR12 def +/FontBBox {-34 -251 988 750 }readonly def +/UniqueID 5000794 def +/PaintType 0 def +/FontInfo 9 dict dup begin + /version (003.002) readonly def + /Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR12.) readonly def + /FullName (CMR12) readonly def + /FamilyName (Computer Modern) readonly def + /Weight (Medium) readonly def + /ItalicAngle 0 def + /isFixedPitch false def + /UnderlinePosition -100 def + /UnderlineThickness 50 def +end readonly def +/Encoding 256 array + 0 1 255 { 1 index exch /.notdef put} for +dup 0 /Gamma put +dup 1 /Delta put +dup 2 /Theta put +dup 3 /Lambda put +dup 4 /Xi put +dup 5 /Pi put +dup 6 /Sigma put +dup 7 /Upsilon put +dup 8 /Phi put +dup 9 /Psi put +dup 10 /Omega put +dup 11 /ff put +dup 12 /fi put +dup 13 /fl put +dup 14 /ffi put +dup 15 /ffl put +dup 16 /dotlessi put +dup 17 /dotlessj put +dup 18 /grave put +dup 19 /acute put +dup 20 /caron put +dup 21 /breve put +dup 22 /macron put +dup 23 /ring put +dup 24 /cedilla put +dup 25 /germandbls put +dup 26 /ae put +dup 27 /oe put +dup 28 /oslash put +dup 29 /AE put +dup 30 /OE put +dup 31 /Oslash put +dup 32 /suppress put +dup 33 /exclam put +dup 34 /quotedblright put +dup 35 /numbersign put +dup 36 /dollar put +dup 37 /percent put +dup 38 /ampersand put +dup 39 /quoteright put +dup 40 /parenleft put +dup 41 /parenright put +dup 42 /asterisk put +dup 43 /plus put +dup 44 /comma put +dup 45 /hyphen put +dup 46 /period put +dup 47 /slash put +dup 48 /zero put +dup 49 /one put +dup 50 /two put +dup 51 /three put +dup 52 /four put +dup 53 /five put +dup 54 /six put +dup 55 /seven put +dup 56 /eight put +dup 57 /nine put +dup 58 /colon put +dup 59 /semicolon put +dup 60 /exclamdown put +dup 61 /equal put +dup 62 /questiondown put +dup 63 /question put +dup 64 /at put +dup 65 /A put +dup 66 /B put +dup 67 /C put +dup 68 /D put +dup 69 /E put +dup 70 /F put +dup 71 /G put +dup 72 /H put +dup 73 /I put +dup 74 /J put +dup 75 /K put +dup 76 /L put +dup 77 /M put +dup 78 /N put +dup 79 /O put +dup 80 /P put +dup 81 /Q put +dup 82 /R put +dup 83 /S put +dup 84 /T put +dup 85 /U put +dup 86 /V put +dup 87 /W put +dup 88 /X put +dup 89 /Y put +dup 90 /Z put +dup 91 /bracketleft put +dup 92 /quotedblleft put +dup 93 /bracketright put +dup 94 /circumflex put +dup 95 /dotaccent put +dup 96 /quoteleft put +dup 97 /a put +dup 98 /b put +dup 99 /c put +dup 100 /d put +dup 101 /e put +dup 102 /f put +dup 103 /g put +dup 104 /h put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 108 /l put +dup 109 /m put +dup 110 /n put +dup 111 /o put +dup 112 /p put +dup 113 /q put +dup 114 /r put +dup 115 /s put +dup 116 /t put +dup 117 /u put +dup 118 /v put +dup 119 /w put +dup 120 /x put +dup 121 /y put +dup 122 /z put +dup 123 /endash put +dup 124 /emdash put +dup 125 /hungarumlaut put +dup 126 /tilde put +dup 127 /dieresis put +dup 128 /suppress put +dup 160 /space put +dup 161 /Gamma put +dup 162 /Delta put +dup 163 /Theta put +dup 164 /Lambda put +dup 165 /Xi put +dup 166 /Pi put +dup 167 /Sigma put +dup 168 /Upsilon put +dup 169 /Phi put +dup 170 /Psi put +dup 171 /sfthyphen put +dup 172 /nbspace put +dup 173 /Omega put +dup 174 /ff put +dup 175 /fi put +dup 176 /fl put +dup 177 /ffi put +dup 178 /ffl put +dup 179 /dotlessi put +dup 180 /dotlessj put +dup 181 /grave put +dup 182 /acute put +dup 183 /caron put +dup 184 /breve put +dup 185 /macron put +dup 186 /ring put +dup 187 /cedilla put +dup 188 /germandbls put +dup 189 /ae put +dup 190 /oe put +dup 191 /oslash put +dup 192 /AE put +dup 193 /OE put +dup 194 /Oslash put +dup 195 /suppress put +dup 196 /dieresis put +readonly def +currentdict end +currentfile eexec +D9D66F633B846AB284BCF8B0411B772DE5CE3DD325E55798292D7BD972BD75FA0E079529AF9C82DF +72F64195C9C210DCE34528F540DA1FFD7BEBB9B40787BA9351BBFB7CFC5F9152D1E5BB0AD8D016C6 +CFA4EB41B3C51D091C2D5440E67CFD717C56816B03B901BF4A25A07175380E50A213F877C44778B3 +C5AADBCC86D6E551E6AF364B0BFCAAD22D8D558C5C81A7D425A1629DD5182206742D1D082A12F078 +0FD4F5F6D3129FCFFF1F4A912B0A7DEC8D33A57B5AE0328EF9D57ADDAC543273C01924195A181D03 +F5054A93B71E5065F8D92FE23794D2DB9C535A5E57376651F6823308463DC4E0339C78699AC82C76 +9542FD3B410E236AF8AF68CF124D9224FD6EE92A38075CAAF82447C7AF41EF96F3ADF62F76FB425B +EDE4C4124E7B1E0B8BF254D91912D3A99557F5427907A56514C5A3EB961B94112077FE9417B70DA0 +B2E1C1FA3E1D6F01D11F640CF848E45BE3E205258E64FE36AFBD4DF4E93F6B1A966C8E7FBE2CC8FF +43C1F67BF6C361678B5E90F4BA524FE8A4CAD6AB28183E6ECA6C9636E884845105595A2E40CDBE8D +4807A81AF4DB77B31873FEB221BCADD42C4669459704CB58A7966B77ED61AA76BF4E05B2265D4940 +25FEEB45907060243E63A418D3B75EA5B4CCEB47C9F70B67AED130771346015EA6EE1C0595A1DABC +630ABF643F5AA128F1BF37464F294398D9209F200532839CE6DB19ADBD2050B9D04289B484B58C76 +BACA8EE8C1047138B0814FDDE2B31392E886ACED278CC23F2747AF994C23FED4EEC7FD6E51AF5588 +8144B1B7AA952E0F759D61E50040EABE9ED9B44CE3AD9449E22F020ED7769691B8B48895E89CA46F +A02D901EB0C1B953DE426B56397967AF823A12138C269F179F64D539301A1BD70EE84C75E6636D6B +493CF86A711CB32F6C7D9E6C0502871F46A63803A1FDA4BE8B7594C9DC4312AD1364ACE7692061B4 +8E60FB04989375A429CD633A209ECAB364F24AFA719FC453C3190CE91C2470517836240BF053E0CF +0834D27F55C93F2B8A7253F59243D7D2BEB359C63C98DEFA90A89DF6C420A007BAA66DFE690EAEA5 +20BF0A94293AA212EB66CE7E200103B7D3A50FF835557FFC1AD378916DF5A142C5F3F7AC6B0D3776 +D67EC6904A7C649E16EB3FE53E0768BB921F7B855EB5039C3455931B55B0849199688012627C184A +245928E7FA04EC3AB4C2ACC2FFD2632E2AC44A11A13EC87400E04A8FFAAEAD6073C4AF55B90930ED +41E4D59FA33F2EF4745291B1233B9D8EC44A72154DC13A770A8E255DC9E3F2E4116F30F727B56A5E +A14473E68B4E90E37A420E9CE6269DCE4E1623A395EF55AB983380D31B2FB2821090B5DBEA5118A3 +B2C46477FC0BC7A81E890C88C0C396CC0CEC55E7A39A649CFCB8A2C641E7582AE35A82566F40800F +6B5FEFD747C83FDD2F86B2DA64DD35F85F686A889FE24D24AC8519CD2C45ED08E2A9B338EFECD678 +B22840B8B1D445679FEA9A72D3357A2598167627C0B4BC1DC7CC79C707DA791CC3B49A30E6E6F31A +934FD029E13DD67B5155DD5B95328A6FDCAEF3248D77A9AAC90A32E0088BB08BD179379F0A579F9B +3E647DE8D7865E1AEE6008FDE83AE3D63D109039623CEF2A58F2D7853AA72B0C30BF833134E453AD +3048A163E83617D55ADE3F34AAEB254595229A2AACA7FA87E77C025B3A46D726EA8FE8F87DD110EA +55D23A7D0ADA1FC101400501CE8D7AAF3D1673CE3C92B7B696CA100FE741B61BE5CD3B6865F48E84 +B12A189932CDBEB2A48F825A81FBF68EC4C1BC7B570AB0C60AEEE63B856CA2230FDCC859C6726511 +8AFAAC011B863B2675226A67E5A3B6C93F1E29A9CA07F8CDBE4EE8BAAD320351B5B2D8071998AA59 +4F83F1DC671029B6FCA67F717FCE3796CD9470164F4432C31F5A6918441A8D3690575F34EF4ABC1A +7FED623D7A97F3DA989F82ABB18D63F42CBB02EC54C9851965E5546558BCBF684A74E4166E12BC5A +AF104E64D52DA36A78E345EE9111C28FDA3984D6DE92D1A6796610AA8AC067F5A9C6BFBAB4BA9BBB +0381EBF7F15CD9FB0211E1BB82CD037224C0362C3983EE54D252180EDCA46C85AA2C37E966B432C2 +098996666D057130D3F2EE60B1AA8904CC7BCF64E17810C4CA8F714E5EC717F75C7D50956B2DC676 +C1A3118C9C56510BC97B5E834D452FC7298FF2C6C90FA81F7D7D70F05A98A92482EF7CA804597577 +BFEEA5C00D50E91F8B038C90B3472C4E29D68BE6407DE4058C9C7070415750163AE4B1501537E88F +3CEE95100B3BF7F95CDDE74D040CD28EA55772071665061ABE13E0FD1CEBDBAF162219E98FF4ED41 +4C59007386A405A43E84B9A310EF63E300F8249ED864849BA877D8A22967F54E96B2B71F63DB59F8 +24F62E3634B710410C251C825094AB00F3A30D94E244F7A6B4380B9A66B0AA575FEEDDE97BBF70D3 +4382464B5509BA9C4D927BF854819D1F44F807370DC7E17187D6344CDA087F067E7CCEDCD290F7A2 +E803B2B19C7FF3D1A65877AB8674F3DCC3178C8438E626490E8F21DAE3481D3CDB1F6D64FDD357DC +300016C3C6ADCE173541348F0F6EDA2E56406E759D301BD9DBDB9D7A14483D0DB56520E3B9D91DE8 +D9285E3F7B84769FFC375131C15F7D825CD9EA06ADFC1DBCF8EE9160506374C74B2D147FA0897B88 +CEB026BA4566EBDDEA09B33CAE5F8A59528D66BE64C5A24C4DE4B5B1BA49FF5ADB60A6B52BDEA026 +52266334409DF24F1BA044AF511DD7E59FC65A82498C82E18BE928FB010973E8662B2CCFB8C7C59C +67BC36E7318BA08BB5CC7545C9FA532C31B1156D2635F1ADA38197AA88D90DBD2811FC340289CC4A +DCE6C5A7DECA645F7B7A9290725C4C67289F901D7B94346E06CE95C9C49399E303F595CE03084051 +29C3796106DA12DE9D15B364A9841DDC54ACA8973006E66826962D46C5379763CCD808BC7D532EF8 +D0327A0B84596160FA12C9E462CE744DA3777745E01DB27E1677871290CD65045F996E97606A68D5 +E26389D39F28110FB9C76150ED96E25408346D24AE0C057507B10E39BDFF4B12120B529F1DF468BF +1344189FA2CE8AF379805AF044FE67A11BE67766A734D1409D1B9D3E50494F3D4DF60826A5518F79 +DDAB63DF523C604A656A411385EF7C59DBED446C38CE4D39314C0404D03A3901E8E93361B1D38F65 +D8E461F5BBDED078757B671E2B12C03B78513C1C92F54E8770FA2447A59B56FC777154E7F50EC1A6 +52E7F33A52781EB51C5B0479897961DECF517CD9962CCFF77B7CA1F81DA81E9AF4C1DD4CFEBF7472 +8B0AABD710F9F8747C64BA565A582C19B4943C956921CA1B1EAC0B883020C2EA90006DC597EB91E8 +2C7BD6AF70733E79DC30E30EAC1FD11DFDA52AF101D705AE9ECA3154C6433C62397E57E4DDBAF657 +CE73BDEF2483DF3F0843F32A6E9B39CB9FBC36B3B8F0CCEC356F1B114057E736DBCC4DA998851167 +FED692BA3F8755B4EFA3EE8DD6B1AC5C0631CD3C84389641A44BD5A6A41E2A4203A6D45841458A34 +6270A956A1E1048C4358F5539C475A81A2B800D8104AF1F86BAEC7ED2E1850BA951E8872AF4D728A +31D4470EAF98B2798DC49C9DCC3886E20B01144AF70F3635CB473A574CED6DC4D9A7413AC30DFB9E +48E52FAC4ABAC7B0ECFC2F4082DEFDFA1A41567182478E6095F2CD471405E173721E4200E406D8F6 +13FEB84CBD4AD0BDD8F8B0A4F01F30A4B93B26B8B57AEBF96322C15365B230EA665F443C8C8B096E +E98B3ACB2ACC89DE91F4FD561BBBA14C610ABFB2E8E868F2CB3CA7DD74DACFAC6CE522F233258165 +698510F548D1410F5AB8F99D32884C16CE5513159029A98E8B88356DC43FD64C280BAA4D5A0E4036 +B4568298FCA54934546ECD5D1591ABD1C4DABEB638535EC0C0E9A69FC6E42844FC39329722864DF4 +D35191B87063C3F2864AD471EEA10E9FCD32CA1C748DFB0551712402865B3546CB524CA87AD8DA13 +B420F328AAB486BC99E3900B978ACB4FE602B697C8FE5E7E2C00F06E53A12CC5A6C44CC62AAF2923 +A95DD7C5C381F501C52DD281443325F3C8C0A52E1815E78A55AC34FFAF46208D374C4200BE0EFAEF +B18C94C371B98A1892CD2CC5EA0ED6FCA24557A9353AAFF55A905F6D1E3FF4B0E4EBF73B3296A2C9 +BAC51DBA6486EC87E8D6A65A3BDF1F002323D07849769EFFC48EA242CB891D44FC8BFCB3BE074849 +AE93F2F773B4EDFEB2FE0C0964D71AB9DDBC2E3198E7F49CD60BFA9DEC9D336A67C73D4BB8649AB4 +E5A18483763AD4D4706418F41BA151E13B51A665A08DB5B199FC00B4751DEB142A8BC086D12F411A +7042C041A1758FD4920A26F610833F8CA5EA28266AC3E1D416EF1929FB20FDD02B697315F1919F86 +2C40E18278CD70A87A352593C86ADC0CF028B575E755C52C5CBEB6FA83826623E48F64FFE680BBBC +BA829E94BC443AA421A17EB6E519FFCB6C3E0D60D4D4DCA93A82E4AB87AFE4D90ECFF609B3E892B7 +A9E5583C48322DCEA45E5A101B5CB1B2F23B42B106B1FE61E803ABCE5CCFD84A3ADD55F28674612B +9F6AC00E136CF43EC910175F789A5FC7E1970683D98E4EAC62A4A9F90E86D80E42FD497579C1410E +728A71A87EEFCC3A77849839A30EDD6A5B7DB6621A6A4AE12ECDAAF8EAB5F870FEE8010D4CB6A6B4 +9C496F54071694C17D658A43588A71D4B9FB704976BF427627129B38FFB22C957C37D85608803A38 +94228E2BEFB05B3C84D16A07216667F04737C5F3710960A41188BA0956D697AFAE27BF34E048CE1F +264FFA6E8DD588D62D23A321CE6BDD9D3B617B0F2B1F71FC14F5DC3C526CC806B7ED33D1545B5CAB +8DA9376A6562E26BEF39EB306BC892EA5CB43DB093F26B109645008A6F9BAE796EA7CE4161B981ED +4F39CF384C9415BF4D5A0CA6B66D87BA24023539B15EB46DCD3D7F12E840DBFF947847F2EAA9ED40 +413111BA2D3E73F27143A7F2FB2008B3FB09E5E068B7AF093676F06C99187D673258F1E000288AC9 +921B253B136F975B10044729F339B1AFBCE4B9E2EE19981B632FACECCDDE16B0711A2D9E99670BF4 +6012E74296F17000B304EB4F23980E0ABBA23984C6D4E9DF23A80CC518EEF9AE9E072BDD5ED729D4 +DD860BCB276B3C85492FE6DB77F0BD628CA07A9B9BF21DBB2416F2302010AF9D6DC484BEA725BD45 +8B1B36D3FBEC9A0FBDD697A278384A8B63790D99886A5E02223676B39C9674CF3BF883314ED0C84C +9DD709712D7FDA9D684585DBF71432E9A964CE75A87E08C5FD525BECCCC91861620605F59C8FAD69 +483C5CE0F58D5D783D0801BAA8985A3223B20145E6C31A5DA673BCC5F803F698EDA6FD1145107E9B +C8604CE20F3287C290A1E9D6073620702C6124C5C683AC95B6FF9A16C3FDC250122B36D3B7D3CA8B +A897E3CB693B9974A78EEEB9684EE4B506D0D656E5193FE4B41B3C6AEA8730849F944121A1FAD7D0 +C0B39DCA129973932461019F0790DD0C82C91D3F58C3E6321ADDA75F03728E029E70B3CB91850408 +673A30066CF62C3843C3927429DA88C2B6E2DF5F8A77939B8B21B448456B86C96317ADC0E5B5A11C +522337F74D8A44A62F3AC4B6F8A4DDB94FC46CFCF4A5D4437C46A4D2C61C5F6CE24B15FE58ED8F3B +599A8C922D56C84EC8D034BF4BE92C45B515DD3796587C45C04EBEFB4E514313404B949EE91A9A4F +8DB6E6E2537B5D4971CD68895A2BF88E9FAE27266810A13C8D052556A3CEB72AE0672187DEA63E0D +AE0BAF7B06FCDF55128246206C19C3B99636D310B77BB4F974BB74BB33A45C439B71B2F7C52CA1E4 +897632FC36289B2A4DBFC1546C1D87DAE01DB1EB0D22679965856449562CAF69D91F3AA7FFE056ED +564632AF6D91DE7283C168AED0A04140B36810640181A72F35129DE103E8F926363890D7606A5D2C +6DCAF093695AB3DFD56BDD34418B01F11A4A806CDDC210F91C02E30EC5610C8286197EC400348C80 +B353B458E2DD9789874D81954D9A6EF50342D55610D08D2FDE84C2FDE538E5FA2B22935FDEB22552 +920C7F831B898678FA191B1655FC21EE33AE74E494F7353A467232D6CA50E177017E99C4D9802A6B +FA17EE9A6D0A0443F11914170D870F6173A4BF304E91B0E14FAB97BDF29C46CE45352D41EEED1A42 +52CB12DFBC33523E9B04E09093494DADBD24360C65BE9F6582287ED54E9F0F0A4240C1B3004BCBE2 +96C03340582908C44EBCCFE30FC7A812131C81AEB9F97827A5C8217FF4169196FB3049B035F45D1C +1EAF6E6521D3F567D780C7F40A64ED3F7136714AC6A90F044B7EEE580FDB0F5530B4A6B84174A5FB +D590A4203063CFB58E24DEFF51DDA3F3DB719BB148D00018F1D0B133CF7D85D51E62B048EDE3E2AC +E2631D1A13586196167BA1A5658A22C0BB7A627C55B3C6FC12080681B0274727A916DBAFAEE6A7FB +1D8157AEC270B4CD53E9178912130810826FB33600DB347EE10888B97BE1ABC14B35AF58F9CFB033 +CE1594729A3EE013691592775581690CCE4A79BF03A30B1CE08149D91C0BF89D0125D4C3FDCAE1FD +6240B831660E3FDA7DDB36C6707CD89F84F2F940A01398CCDA2A3296B879BA69356F305069379329 +95CE8A94840853882449174B5CBC2A26C35152B3E8A2320CC925D5C6A9CE6BE30BC57988CD58B742 +F79413BA15AA354CCB247B356A0A6310CC9C13816BDB472B2D32EC6BE5E4FB8FDE6528731612D027 +5C9670633CEAB3584CB1BFCCD8DA19B895FA76A815B077587AC1C535D2B3E14B8DCCAEC11D729E59 +8C972C0A7F07C0444E8532238EBB33808ED0EBF23BC8160062286673B64D248C6D37BA8208F3C252 +1DEF11FE55699F144A237596C10919E9A88AB96FE52810FC571A52D444AAF63DF72EC5F5A823889D +FF8BAB0ADE0647EBF4B075E78D9CADAC8645638F21FB9710ACDF91365011EBD9F6CD154D23AEA138 +1A997ECF57C172B4BFC013F867751675436FBA117CB72B69E3B1F647AA3AACAFC64477CE435A1DD7 +276A278CEA4EEB12CE2CF36B4185E84BB0D574E37D5D13780BE4B187B3C46E56396E6303D5FC5FAF +4A077AE1C0AE0ECEEF94BAFCB6B57DDE6C24D93A702733E8D9123B67DB112602C641B13BCE6CC30F +B5373FCB91938A536B67ABDED56701C3FCAC393758F06E046BDA92AB42FAC92DA1F877384A018B8F +A4CE155DA02D940C54872FEA9016F6ADC15CE52328E33159A80730EF28E1C3F25B2F7748EE83A30A +0B8669A5BFCC26B25B4265D6225EFACAF4D268837FE6992FF3BE510AABDAEB90266760E0F3C0C36A +66A8D9F3F89FD00E2939244FC4334FFF3F549D31CAB0BC6E9EC5A0FCB4F43EDA82E04E262727F584 +28A4FAFCD46E7B1A9A92DF9A094EB9F801D053D5FAE0AE5B588FB06670E33876C8B17ED2141C9C79 +08F68263AD77F2E8BD29C01EF2A5D3552D1CC8CAAB6E6B6A10B80F5E2D2C16FEA197E4F03A55FA5E +8098A6F4A3C52CB30DF2FB6F6519E91B610E01E48FAB546F78BA9003E17977040367C1E4EB638DBF +FE64F2E9FBE3343556A73ACD12FF8C1ACBDD4F4AF44382A24B95FCDFBCFA1EFC4E239C98B6731405 +CA5ACD64B49CC2E7B9DA4DBA9D6F65C109AA98176FA88030C5CC629B1DCC30BAA14619521076298F +ABD1831ED0AB9B262976B8AEF1299A8ECDB5ECE21019E3D687A6F6FE37BB3782E0F143762E3E7BC2 +B2CD2F30A055A5A957BE9A6106DF4440EC0934A5843BBE929C46C6CA14A38BC0187ACE6DA749639B +C748E32B34B95F81020B9559157B9DC148E520B6A497E7A06EB02D31D3A30A95CBC2556AE9875C5F +9BABD08DF31E54CA40ED00D23491FB3E4AF36E769B1F797EF2C0B2C822B01ED624E0091A1F7A9B69 +0B17BFF9F490D0371A4AD7D26104C56CCBA1E026ACCB72C19711D79476E06F821BBF2E1F5497606C +657DE5B30CB8EC2E6B5C93A31FFB0B297FEAEBBA2823E7F5123884FF18C918F7956F04972BEB2D65 +04E91E2E7877DE4BE964AB5C97C255B7E53504F2B08A8087CCBAB662928F5F4C2F16E8763505A9CB +2A4103D5F478A555F6A585C527ED6B5BF9F0750DC1742349D4DB9C5DEF381D0456CC203C348DD73C +1D387ED6A9EC81170F40C2ADF3DE81210D3C3148D6BA3854A60A3676CE5C906111BB58F03A57E074 +334100EA728D97AE525565D637A82F6AE21B6B1BAC1799D88F117A79DFEBA74634BB65BEC4164413 +56F36BBC7359B92469971A18879ABAD256889ACB1688A3D16FF251163AB7AC47CD6E952574D3E357 +0C8DB66373ECF77FA9966806F92CD07A2649CB4CA5933429C89362E631DAF0C89B6F586A7888B496 +4C83A4CEBF6BCD65DCDDFD47AA3529CA0D776E2A65C4A068C3323BDD562052E5F49F5E9934E9114F +01D403EDD517BC040B182C2E148564890A0C766CCB79DC1AF9B7DC576959286A0C2FD6BF3BA94932 +68067E16107A7F683C9996DA8B9B5B38E5481653145A3B75721F998D129D6B284A012457DEA4A97F +1421190C761A63AC861E5E7DC355BF0A83A1C4698C66A8C9CABAD8EC335A78C4B67FE8AD1D722E59 +AC047DFA470AF039E3CDCC6B0F942C25A6FF197731E3688DBEF84D3278CAFF386C2E10F0902C743B +3754A3A2F3E332E7AF598ADA081CCD14002E027EB0D2AF277DE7DE5A96B6F793342283BF32C2BD4B +1479676C9FCC9C894CFD8B5737198450F885151F0383F599435883A3DF1605A43A9C247F9DF8F8DA +CD85C8660BCFE778D690430A6F8ACE33BF365C71953B3977060915E803265E25326E2369D497800D +04A47D261D88FB05F85D20C2807B3CE00CC0FD3F40F961831D276F2F2B25860C4B0879901CF792A4 +9536586CD367FA092D1BD03742DCF28BEDEDA81A4D6FC7607378CA6632614F6DD25C0726A3E4CC17 +5E72662CF577F70AFCD5AFD66B716DB4819F394375CF995340F5EF6518AFFB8219B57BA723521A6A +CFA602D8A5F6CB94B6CC5282E20018AE22F369CE06C148E9DBC7950F086E183FB95F360F6DF4717A +6A51683EEB5C4EEF920BBC19129C68425230F8995A2BBF8251E535218209512E7AC2F201DB496F0E +13DD65F4526FAEBD2146A3D180CC8DF6598DFC47391FCFCC15B720097CCD86C965F7A8A3EDAE11ED +3B3666AEE2C598991778C0DA002CCC880438C84FB222CBFE89CEC2F92A2D53FA91B51E64ACEB1F6A +970E3E022FC2AFB75E3027627883D95E1A7440C2799558B2C119DE916B29DEB9F99ABC99FC63F578 +01F2EBAF16D9E7CF111A34044434B3FFB34085DC6B1C7015F6D1B296DAE50303C3DC97F232846D29 +24B66C273FD364A84F10A138A829FE8ABC2BBF2468D4DEED87BFFBBFE5517B5EB9E5FE41D4645E45 +F117E647C3012AB72CE0E02883D48FC3BE9F334CFA8D1B8F989103E4F6F8A2EDE656109BA7007CAB +282385460EEEE8F463EF4FBF3471AB358BE3D4AF4D206A0B4FB11139BE8FB9C8EAD60377D8481665 +6F17E6DBEBA847A5D59820D7F94DBC45E208909062558ADBC383499EAE664EA78A04F723BCF34E50 +0786A447326FD90A9E73BCADB3B220BA9D156F9DB4DF406F50A1575AACF0004FB7F05A8D30665E5C +6A6C8E2E4921965048609043B0E8DC830511BACBD252103CBC271E84A778EB87F265E56B7BB058D6 +6F6EC93849DC9C5EC82FC96739D9FECC027A4FB98511B07A4D8598EF0DB15C4398083A1801C41230 +203BAB0958F67DBF8711A600393E00C88FF5AE8E153AF554AF26B1A9E4D4782A026F9658F51C252D +96D4BBC0486EEA59AD06357090F83856407023FC2FF5579EA606FB1A4E713F23497CB13997EEE879 +1C0E09CA662221E1EB8A14C495935A9F3D8D729442A7D98CF9FD9B8D69032BA76077243CA927DEA2 +30A6D8DE1B21B06AD1D24B461747AE9010F0C08ABAF3D915294B6F2E272AAAC480AD837125694730 +2F462234F3714742E820DCCDCD93065451BEBA27A609A74EA3DFAE847AB4AA7C7F5FA5E74377B719 +ED6773B6C3FAFF7192023B4E5A50223B46 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 + +cleartomark +{restore}if +%%EndFont CMR12 +%%BeginFont: CMR8 +%!PS-AdobeFont-1.0: CMR8 003.002 +%%Title: CMR8 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMR8. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments + +FontDirectory/CMR8 known{/CMR8 findfont dup/UniqueID known{dup +/UniqueID get 5000791 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /CMR8 def +/FontBBox {-36 -250 1070 750 }readonly def +/UniqueID 5000791 def +/PaintType 0 def +/FontInfo 9 dict dup begin + /version (003.002) readonly def + /Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR8.) readonly def + /FullName (CMR8) readonly def + /FamilyName (Computer Modern) readonly def + /Weight (Medium) readonly def + /ItalicAngle 0 def + /isFixedPitch false def + /UnderlinePosition -100 def + /UnderlineThickness 50 def +end readonly def +/Encoding 256 array + 0 1 255 { 1 index exch /.notdef put} for +dup 0 /Gamma put +dup 1 /Delta put +dup 2 /Theta put +dup 3 /Lambda put +dup 4 /Xi put +dup 5 /Pi put +dup 6 /Sigma put +dup 7 /Upsilon put +dup 8 /Phi put +dup 9 /Psi put +dup 10 /Omega put +dup 11 /ff put +dup 12 /fi put +dup 13 /fl put +dup 14 /ffi put +dup 15 /ffl put +dup 16 /dotlessi put +dup 17 /dotlessj put +dup 18 /grave put +dup 19 /acute put +dup 20 /caron put +dup 21 /breve put +dup 22 /macron put +dup 23 /ring put +dup 24 /cedilla put +dup 25 /germandbls put +dup 26 /ae put +dup 27 /oe put +dup 28 /oslash put +dup 29 /AE put +dup 30 /OE put +dup 31 /Oslash put +dup 32 /suppress put +dup 33 /exclam put +dup 34 /quotedblright put +dup 35 /numbersign put +dup 36 /dollar put +dup 37 /percent put +dup 38 /ampersand put +dup 39 /quoteright put +dup 40 /parenleft put +dup 41 /parenright put +dup 42 /asterisk put +dup 43 /plus put +dup 44 /comma put +dup 45 /hyphen put +dup 46 /period put +dup 47 /slash put +dup 48 /zero put +dup 49 /one put +dup 50 /two put +dup 51 /three put +dup 52 /four put +dup 53 /five put +dup 54 /six put +dup 55 /seven put +dup 56 /eight put +dup 57 /nine put +dup 58 /colon put +dup 59 /semicolon put +dup 60 /exclamdown put +dup 61 /equal put +dup 62 /questiondown put +dup 63 /question put +dup 64 /at put +dup 65 /A put +dup 66 /B put +dup 67 /C put +dup 68 /D put +dup 69 /E put +dup 70 /F put +dup 71 /G put +dup 72 /H put +dup 73 /I put +dup 74 /J put +dup 75 /K put +dup 76 /L put +dup 77 /M put +dup 78 /N put +dup 79 /O put +dup 80 /P put +dup 81 /Q put +dup 82 /R put +dup 83 /S put +dup 84 /T put +dup 85 /U put +dup 86 /V put +dup 87 /W put +dup 88 /X put +dup 89 /Y put +dup 90 /Z put +dup 91 /bracketleft put +dup 92 /quotedblleft put +dup 93 /bracketright put +dup 94 /circumflex put +dup 95 /dotaccent put +dup 96 /quoteleft put +dup 97 /a put +dup 98 /b put +dup 99 /c put +dup 100 /d put +dup 101 /e put +dup 102 /f put +dup 103 /g put +dup 104 /h put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 108 /l put +dup 109 /m put +dup 110 /n put +dup 111 /o put +dup 112 /p put +dup 113 /q put +dup 114 /r put +dup 115 /s put +dup 116 /t put +dup 117 /u put +dup 118 /v put +dup 119 /w put +dup 120 /x put +dup 121 /y put +dup 122 /z put +dup 123 /endash put +dup 124 /emdash put +dup 125 /hungarumlaut put +dup 126 /tilde put +dup 127 /dieresis put +dup 128 /suppress put +dup 160 /space put +dup 161 /Gamma put +dup 162 /Delta put +dup 163 /Theta put +dup 164 /Lambda put +dup 165 /Xi put +dup 166 /Pi put +dup 167 /Sigma put +dup 168 /Upsilon put +dup 169 /Phi put +dup 170 /Psi put +dup 171 /sfthyphen put +dup 172 /nbspace put +dup 173 /Omega put +dup 174 /ff put +dup 175 /fi put +dup 176 /fl put +dup 177 /ffi put +dup 178 /ffl put +dup 179 /dotlessi put +dup 180 /dotlessj put +dup 181 /grave put +dup 182 /acute put +dup 183 /caron put +dup 184 /breve put +dup 185 /macron put +dup 186 /ring put +dup 187 /cedilla put +dup 188 /germandbls put +dup 189 /ae put +dup 190 /oe put +dup 191 /oslash put +dup 192 /AE put +dup 193 /OE put +dup 194 /Oslash put +dup 195 /suppress put +dup 196 /dieresis put +readonly def +currentdict end +currentfile eexec +D9D66F633B846AB284BCF8B0411B772DE5CE3DD325E55798292D7BD972BD75FA0E079529AF9C82DF +72F64195C9C210DCE34528F540DA1FFD7BEBB9B40787BA9351BBFB7CFC5F9152D1E5BB0AD8D016C6 +CFA4EB41B3C51D091C2D5440E67CFD717C56816B03B901BF4A25A07175380E50A213F877C44778B3 +C5AADBCC86D6E551E6AF364B0BFCAAD22D8D558C5C81A7D425A1629DD5182206742D1D082A12F078 +0FD4F5F6D3129FCFFF1F4A912B0A7DEC8D33A57B5AE0328EF9D57ADDAC543273C01924195A181D03 +F5054A93B71E5065F8D92FE23794D2DB9928A7C95D3A6E9B8E92F84CA0AA44461D2F4FA0F8B81C6F +5B7BE98C9712BE166610465CF689DFAF27C875C029C0116DE61C21DA0092D029E7DBEDFDDEE3D67E +6936623AB53FA2AF18BEDDD7AC19A19CADB6ED6CA7A26E6044BE414FFF59C0B98D5819A6B881F9AB +7AD0D03BDD5CD309C67811D5CF0B93F6FDC9AE64F74ED4E81F2E18D880BD842ADAFD0BDF06300201 +C6946087FC0B999447BC370200BFB8CA420B668B32EBC2426DB1546A7164CF55B332FE9D239B65F5 +32B69EF9F4F93828A44C8F5C526126F8B7A369114CA68D4F9849A7D21122CF1A85BF2F6047142AC8 +4178B421F09819F155DBBAF5821B6A214F31C7775C1AF2CFD61A960F8D50D2EFB201795F52C84CA4 +D077D86E1A69C87B1354B22A1BE5E7DEFBFCDF460FC41657ADB04025A0FE112623C66027B86F93B7 +DB9B94CB079804A49533A5A4B35022C6D6389E95C3D3DE8AF855F6E8874735680A9EC423D487695B +1571757E350157240A283FD75849C500B910578367B5C392C49941657605E3736A31B5B2E913382D +EC8592DE6B2D95F9FEA9FE1304C34554C3514FE2981ECEBC3BFBA6ECCF62128EE4632CE21AAEEE4E +303151B1508733EE09E17BCAEBCB86A12B1EE67D28C1B9DD748CB5C8B20D8339482EA90D28DEA8B0 +7D8691C942CCCA7DE8EB76DBB07932939CCB52388F6CC9888F5EBFF2A23FC64045CA79A58526CE2A +DC6A5F8CB64662A16AED292F04F6F8C287BD3F591EC920CFD9A2B1BE576E0E2102225B89F107D048 +1A4AE12832F2E1EBCCE81952220FB7150144147C10C992EE68F8B5E2048434D9770C8484F7FC0AD6 +F092AF6D6D51F585D9BE90FB7C39D6279CB291F94D0DB5766A0A7DC30FDDD4E082CC5412A5AA1144 +32A2E1B01665C7A4958D93F45FDB13759C292EB7EA231AF9672DF9DFD47E2151B56E443AA9BF90EC +A82DF314E2C9F4657B32EBEFE8DE740C7368C5E7328AAE90D67CD530C3CA76D015E9616990BC1F5A +08FB1D83CC88F796997000B0D80D7EFEE1CBB25C89579613459A119B9D52CE23136268636E1B632E +1A65B051598AC60EB6FA54F85940A8728AED01FCCD992A1AB06CD875FAE65716ABC4ADBC417099C0 +7DBDF9E773926D1C3F000041DE55B6BE58140E82C101BF4F7E47D5CE20C35F3ECF34C7299CFF5CC2 +200EEA093F26CA0D558FB65089D4D92AD1E18E82EE012520E0C20CDD186FB4C82E6121A5E16B054B +A59D6BC25F4D7EE0683CE95781EAB0E2962325091A26A8E2994970BB6C8AF4144EF310E664CD44C6 +020138CDCDF4C6F47BE2A9A616A8FCF68BCC199187DBC39DAD1BEB9EAC5C9F2C826EF23C2ED70374 +F8D9A7C6A7386FD5522D9959B4BF49D54B6FE5F5E6836885CF1F28FF2743CA6F8CE48EF1B3E5B8ED +C5E70AC360ADBAE7E77675650C8ED27615D621974896C9DE191597216191D4000183F40F7ED9A0A4 +C64E08306B8C200BD6D761D529CC79E492E5F3795452DA24D16FA5D17CF16A7A51B24F614D3834F6 +F8C5F53949ED0409F1ADEC4C3107EAF3352E617043628207D8451439694C7DFD623E4BAEC5E81A3C +DF6950AF3015885EAB4EA046F10467E40F07EA465B9F3C56AE56011EECEBC9EF4DB855BFC9662BEA +42A5438B4B5D7136B5DDA0B04813A7951803BAB410432255329049669EF26D3AA252C22CE5AB89CC +6EC7CC4C20E009AF271A02A95B145B8B241AFF60C625EE42F6BA738EFF38C844193577F7B83BB5EE +4BC2BA387CD66D2F056174B2FF7A0C4501930BCD37E625E89C014FB56B84D081C8A0E6F110870B0C +07E5DBC86F47E3505ABAB0FF9BFD44DE691D16772C0614E3A90372737580211532B43F3265D13E7D +132FBF9BEEEFE78B34DAFA344288F1782EB6F4B8A25CA30E1204E299A5A61A24F9D05ECDABACC7C7 +5C02B9F08BEEE40E793FA7A56BD403B3087081DCF79E48E310B445F56DEA15F53A1D96E71E76DD10 +C0B9F8A1D670B4D16E2480B8C2AA53D144E9D3736DA7F8A24FC4A7565E49B5B8EFAAE5595CABB621 +BE4DCBF7747554091C36825873E93D59709C06B8E00096508C9A1C230FF449842258728998E78EFE +23BA9A142C3947D19DF95E8F73746978893CA61ABA76AA3AACA86CFFF88145C9FCAC6AD987730BB9 +FD68C6091892A8C0AAD57627C041C86F0E36423D5D22642A0AE5759B66A5C8CED11459B2CE770E5E +BB91086FBD6638AF202EC56728E6F029850700AE9821536517C8C9839DF512668DCDFCB8B95E4ECE +49154982C7771196E4EACF47FB8D6EEF22E3D3493D0F4199385A4EF6348F66ECA63849D6811388BC +73231B34BC066210CBA276FF94D496CE6FD592D4A4B2039A9E12C9FA019189675DAB1488E68957C6 +5D148736809A1C93525531EDFD61804C3F8216CE17B5E434651CCE19ED6609FA22C00F4378FCE09F +0996625AAB4FCFF91DAAC3B6085610A15A2146462B9435A006ED1D0861CA6C9FDE60854678DC004D +06886CA09EAEC471A86E0E63E7588C5E3897B7E2907AC9E167543900F62C6B5A546D8130B498D603 +A1F5DBAD502A09FD1AF6261E04044B4AA6D860CF03D81A1E9E243851322C2BC3C1F559C2CAB64107 +E067F91F08C2BBF29C99FFEF56EAEE7A84C9A87A079711679092AE5CFCD3E1E4DCDB01A47A5E304C +21BE266B32B27E4D3349ED8E8CC12A1E56F4AD1DFA791A377A8B117D6E27E65C0F3EAD62F36463E0 +D10CFF504C6285A29B8A550349FDBE6330C5B3AFA3BE150E626ECABB338C4F92322F17A8196DBC79 +C9EEFB2F5D27F92A435E4E8ADC77CA5B55B8B9DE8AB3FAB909B812D7C643D39EFA5BDB3B15F0C7EA +F45ED17126978DB5B903CCBA57E655E12DDE87A9525A0D02627D1CC78F23C13A20A46C52BFA0ABDB +0236295C06B7B498062F5E0756DA83607E36E3FC7053D230A22CB0BB4694DE84D2E6E1F7492E0F27 +BECFF591A58473D483170321C410ACEB27DD697B6519499425F8734F4E812BA9BBE38B5DE6CB3094 +8DF56D33E5F1334F4FD49180DADBC06E77A7E1E682123D73A981FBF94EA9C4D1B0ADCA472BC60BFD +30A8E064B5A3BD435088E8ED336E3A0A5F2970ACCF03344FAD0192C732F67C8634C6A65EB9FBC671 +23389A38DF2AD64101476D170DB854A2209E190AA02B077D403992740C65E52316BE5F6C12B8B482 +BDD1DEC7C5DA9F5F9F9994DDECBD86DF40C627AB9B98AD3A562B8850C6B7FA20EF94D26D00A71DD1 +E5A3B260FB1F8430C2D208443D09F92C478F3393187212A3E98A5D13D752E579946D4350AC66BC49 +BF8CBDBC38DFDA5F272145E8221F2995633F6734681DC865A8A34DD1E8E7D5C6EECD65DE13491286 +C535678D18D51ACEB40291AB2F4A9A9FA2778F821171CD2FCEEA1141CB400B5522B33AF6FE8A6B28 +3F26BE5948431DDA3E74A634672C12D3E83993D6D9527E524AD5E91EF6BC631D7516969EB245B260 +2FCCDF6120D633B9B01E0B89B3A1D6ED3B62A133547DA125F7773B34D679D8428B77470F68D0FE02 +38BD86187683C406E6341E11BE4B6A5439CFDF76820DB1AC1452754273537134865205E35869D96C +F9EA95850E0A35D67B99BD68B311C7A5D18EF07E48B36EA16DD8B9929930326DC5A43BCDA30FDFFC +DD32996D341F11872030A661AA8ACCF3F7AAAD3B311B85437BBF55D7F6DEAD328167504E850C2B7D +D76CEAEF83F5EB7DB8B60CF4B1871FEEF1C4338E0CCE98CCA232347F77D0E3776342F17E9C5E47FB +436833114E7269F30A1F54ACF9BD8C2E602290C23E766E02BA2F206E155F2A881185CA0D5ED133F2 +871A6D20F4A2ACD4123CC042202E64C17B465627588DC569D88B0A99ECB34F4383C5EDCD395ED52D +74AB457BE98DDF7B513D0318FB7F3940340809B3365D938586516F762E65DBF6D52BB59B3381325D +456F08ABC702735D6A5E712AE82C6EBCBC143E169560ECF0EB4D01D1DBF2EC29445FB73E8FFB4282 +F46B9C0CF3CE86721DFC759A98C19077372FDE74CFB4A459A76E4BA34F4F8C494C79ADC99E9FCF4A +A48A182EC17DF6B71C47E7E2FB008234BA6A14B9A9E6B6099A1ADA4FEA2027ACA4690D613ED08ECA +7888C95F96605F2E5CF9048182ED19E3FC4B5450275C664A276DA4929326D7E951303C794342B7EC +93B8DC34FF1274D26E1FDC9CFE0888E519F23BE514A5B0FBA6648E81C4C64BEA773F2E58E760DC5F +CF25A520C73F752D5A8AC2EA30869CAA95735DEA0E346E384F060F7E2A948052597924037D5C1429 +BF8D636696CE14DC9CB2B16E5E304605ADF8C428ADEB41433DA0D305CEBFE8E86AA908D45517746F +40CC638326E037598777474519F7B41900CCFD234E21F403D3750016362DB711FBBC34F9DE41643B +C558A6CC025B8E790C89D07D9AB53FAC43E23BC3730D7524A146DACD950EDDC27714F6D8EDB8FE6B +B76906075EF4F73DE6DBFC5351F0EB028E0EBDF214F70EE65F13C5E02E24E2D0A0FEDE9B48F2AFCC +F214FA14208863AB8481215FFDA3E0A892491CDA7B40E1C2F726A585F7D73EC4408C1CC7BF3B693B +1B4E31E08D1C862E47B9287BF7CC8F7C0B029EBCD2E0CC62ADD7445AF53245794CD8B442E0B76B34 +3FC998CB02B2A5A4FCB6715BE2C2C81ED73B3021E2F025A32687CE285648248F65360D322E021D88 +B383891362854D7C688193A328141E1B7AD514A9BB2CB9F7AFC207FADB9D71A4F21D2C7EDCF5BF99 +6E6BB492D4C4BEEC18950F543B81F4D3A02F86C4670EE4B285BBB96C9FCF65ED69B49F09725BCAE5 +9BD16185C7032B89C7F56354F2DA61BB9283AC71411BB64E373E960410C0A401CAAF28475412FF97 +0BE5BCD12E61D6036961680E3BBA6D93232301BA52A8A5237B36B9E94603EC03894BB27C7AB10EB1 +D5BB2CE8AF7552C09C578CEC4F2CBBAD648275D4646A3586D756F93511F6713232CF877D765674DF +55CC9EE31045C1B52819EC73F21E3D0B5C0731F703E7FC568C5CBD5A6F613885A0ECCDD86C26CA08 +4C06CE30B19B0B4F1DF2515728DB42CD07260B77E89D05621565AF433D0479F2628B55A1BBF3B8EC +DAEB6DBB69F77D02001BA416605A985FA0B994BA580DA07FC833D42CF5D644D75F7EA01F6A8DC82B +9C62CE7EBFB488E3EABD74E40E6F683B58CFC2BEB2ECF1B83BC61957B78718569CE394D79407F600 +AE0EE60D817F9D58A232AA5E92AE164A62ECDA4435B9B663CACEBFED6E8E9FC5D41D32459E775F43 +6AD97A286F6E920A31838DEADECD89B3720C0BF0D14FB719C1AD11AE480C874A496400B2DDFFD9C4 +EF067873070458DDB14CF882E5800B155572762EFE906AA878210B88CA8FFEEE45F3BE4D6B004E76 +4616FF7FF6C3399C940B286D2520BCE94CB668A5A95A16D23EB9975087338D5E11EC82DBF7D653DC +F40493EEBE0C20B03151CF509C2843BD1BBCB3B9CED581899BF8DCB23A9A6F05A9CC85C5BB982E6B +071904F587B885B78EB4A3A68E5FAE02ED0CF492DA98F74412B2AD7CEFDA13E0D31B2C3283A54E12 +CF593C9A1D1C99CDB6B1C46BE5E3804A1472D4EF25C557B70A8F098C7C614EA6C8A31B706E84FDC4 +D198D8591B1063401D6DBA629B78A82149E056CB30E30EAE48DCE53CE0BC8E2D0505143B75C0D680 +BABA4243EE1C7DC8C2A86A9C2839615111E57C54516F77C97CE00368E5F983D2EAAB9E107146563A +660129D92A8884C44DB57CDA48EDC76D3F8B66A5FA945853E63E079824FEC3A095B7D6B06FCBE80B +01C0B3FD32950EA66DB96306ED7FB5D1F3A54BDEF0239968CE1AE69798CA6B9655FF728C1090EE0A +AFAB68C2F172E3B0D14B5B8412D5FD84306346342971540856B6E1209CC306E9A493179122CA4A79 +047F5C93CA60B10762D3B625A852A62AFFEB5FAA9A219D689702762597BC7281A43D1C2FE0B5FE8A +D94BFF998DDF7A092696D7C251A0A7FB1050E1E748B364A95003F0A75161AFD9CA196286481717B5 +A835FDEBEEB69BED360A883274477B2AA58D17ABBB4709D854FD9B4EC7AC5D6487023AD65BFDD40F +064E3D93F3561D1D3123CAB26E79BB15329CC1305E12ED2F0D9CE2EDE8811DE03A199E407B0049FF +DBA1E730837155CE1A3501DD4FD69DC103463715770254EE7B233BFAAF27AD311562DAE7718AD54E +BC8E0D1C7BF468908CB1256F2A1A7739E238E51D9A370FE5CC112437AE09918D9F416082543830B9 +C5D7E5AB2C62BA7D138106795928F7AD163683B09DD0CFC551AA1A06D546192A97EC91DC0774990D +8A7BED8559A491A9532B88298AE923B887A630EACC71A0F2E618FE41B72725BB2E35623B08C8A4E1 +7C06E156667C4B3F261CE2E692E351C838CB13A5EC9011B07906A701EE646ED9A753790CEE36AC47 +1E6B138AFC7203D994A0D7F39093CAFBF4956F5A33808DD61D88AAC92EDD5692EB94A0B63D666FBD +DD01C4483F51C5CBCC5AD9DBE81FF88318609465207A1FDC6B9D27C9774D4311D3C12DD81073C1BF +8DCB4A4B2D7AC91C8B17B1A96DAEE39C414505B3E726CB14067680EBF48DFD46C3D7E7FBCF227EC5 +A99CC62A6E76267E077B0E2168EA13C3468405678DFD641DBDACA7538CB4E9964A4BFE1DB5E94AB5 +201670245707B3E06BF29AF27161541275A867E2E7F2365DCC02DD5DE97AF36E23DA213967176D39 +26756400692950448322BE8B7593DA048F227EED0C8775553F9CC2292A4C32792DC7176059789358 +16DEA1ED2BA09A0B94946E91D048DB600FCFC72D501FC39D503B605C74C38B960FBBA663C32CF416 +39227C7C77FF06B99117867CCFDBD3EC1B11DC8E16838DD140AC1A108CA02AD8CFE0DE5635057B11 +6A07AD57CA9009C79814EA50E4A274462485D584B48F265831869106D6216CF2ECB24CCC522CD304 +9F112DDE35EC93CD440B9A8CC755427ED1E44515AF9021E68124B25A79139A08EDB098F29BA49B7E +48C0135BD28CA93F9F0E46F745BB51BA3BF312660B610069A6F87E686D691FE242611E7770DD6D9B +CA64A4DD5510BBFF40C9D25F0ACF7E32B7A5369EB5406E883F18CF33D3F61C16EDAA0111C20A98B7 +A0B460E5842E2D14B13E22EA5646CB8A22C02996325874FB5B75D22A8E0030714D1DBB06E9196499 +A3E97493550766EC272AF1F2A444B60B733C56BE16F6B6C9643F87E06BA715BD0491767216C9F2AF +7DD40D99F183E693C06BCEB46D19EF62B57E87EDD9F0F3AE1332EFD4F0ECCAB5EF011128D4C936F9 +B1A5EC86093346B0F36284696BA8566DBC38A01733D1E0F8FAF1D00D75D91126E52BAAFACB0B115D +A285F9327BB55030A9E54C951C0E44FD822EFC378A9101863803EC0285DC9FBCDFEBBA3A83251B62 +F69FDD7A288950C665FFBBE5345905B1518EC4CF42C0827C1FE316B2E6466915DAAAB3613491BAE1 +17F789B87D8AC090227D4D0C7FB85E6AF4F104DF9124C8BC339228B21EF858DC7CA37109C76B54A4 +7756575A14F6B2C51CFD5A197480C12060C14662C1BB860FA33ED251E974BDD797A0EECBC12D53D7 +D433B0D67B322976FEBFC640F00A1B7344D8BC98C8078ACAD584BB9511131DB26F940D969048B94C +D5AE6D71E83C1FECD28AF6B75062193ACD58CA0473A86196FF4FD889DDDA5C46AED383AC44F5991D +BA10E0D1DF905EDF36EC99279BF35811D3E177B8DB3E66C328E3774A65EB9D4782B03DC7D623831A +924C631955A56AD83B17114EC5A48805F795DD3CD508B40546DBB35E6EFC742FFBA113F9A6257EAB +B18E275EB0CF680A7A0E5135ED52210EB2073CEB06E43E82878404BE7530ED3C037A517E7F4D92C7 +AB7A396836E213BCD4A2FC290A375C33FE57FEB506E667F514AD83472954AD3D5577CEFE93AABE6B +C41EC2F1248768933A1BBB737617ABE725CA314B87390654D85541B303E4EA04962547A9A4B9646E +8EB39F2E33A68F22A0B56AA52229BD511B98158FE300FD5719B659E5B8A689FF7104DEEFC547DF13 +6F67951EC6044F45C942E7C42F91E9C831917B228490F78A523B69E3EA069D345103CB03226F45F1 +7297F94CBB55FCA7617F5A2C9F1F136BA551EFEA6F0377AAAD9FEC698A54419B7627C6A591AAF6BE +BA128125C9B2477AB7471781853466D6FAB80BF04AFC7327A60414AF07E3BDB58D2B00ED03C6BB8A +A8DEF345519B255B1D9FDDACCAD376725BFF2763DCC37BBC4C89ECDA3A07157E0613C9B7364E6597 +359604AA4371B15955F92739BDEE2639DF941B6149FF9947EB1707C89BE13A47102186CDF6A332CA +3B1FF48E5AA16B0AE899D8480AD0E429760DB81F141C48808B4B849A687903AF43FE7180661EF16B +B16544595C7AE9BFCD7613DDFB56DA2249C6DBD45D17D48B22FD619F8AAEF9C34244B0DABF12507F +E64A14F3E38A9F907C93BB632D0CDD0CB3BDC0B3A663581AB6D39C9E08785821A6638E2116BA7DBA +1969DC5F283F9C3D1E26BE5DB8A5BE44E0024617F8258589761269DE4E8998504211E155C1B8F6F0 +F901537ABE3F1756EAEEE1B9229A62EF76D44288D07837BDA52CC84552FD695D351CEE317D040AC6 +9CC5EBF31AE4BADFF86F3A90D288596E67963AF1AE572D6EDB93D2F363099489CD45C2FDAE11962C +99B555FC361119B81C6191E2BC7D946247EA6562C59C5C28F8D9F6102F8DF6673F50CE92D99B4FB9 +44A1259E9237F19FF33BF8B6465B703F207B58EC5F8A1CF540D2789E12B343C9685B8519BD24B691 +FB11A2049168FC153E5941561360B041F3507B7AC38E43E34354F3A08BC532CE3BA758C84BB0B5C5 +E96CEAA8955D556A67A7BCAD4A7590F7C5669704F57E93586954FDE2264EC41FF06B8DA3A3B48227 +A5EB1749F2C0DF078CFD832A6FB6BDE67E8922639BD02BF782F71C09333218E23A5905404857F5A6 +433B61A3E4769323AADE88BE52B462F53EAF8494FCF8201EAE77E32C1861DC8E21C769EE96176E19 +5A85E1802DBB09B7CD86669ABF604172CBE3B6B7DF4C3694C261267276DCED915678CECE3FBF2952 +A8B2D9220AC26AFEA6612F9E7D1C4BB26060AB160B2C847A9C247EFDB2EDE343073D90CE302ACA3F +94A308E120AE61F5C67505A70A774EC9EC13C97A73B68D7C0E1A9BBAC625FB2795D2F5A110E1CA28 +6EA25CE4A8ADAFFED4DEEEB596FB4E14F73D671C3164767656D20C10D2AF24657B6481825AADD521 +D75E73A4C17A211812F1A30D7D5C6E27B84A32CC3DB9A509B2F02F7B64058F9D9128D7 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 + +cleartomark +{restore}if +%%EndFont CMR8 +%%BeginFont: CMSY10 +%!PS-AdobeFont-1.0: CMSY10 003.002 +%%Title: CMSY10 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMSY10. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments + +FontDirectory/CMSY10 known{/CMSY10 findfont dup/UniqueID known{dup +/UniqueID get 5096651 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /CMSY10 def +/FontBBox {-29 -960 1116 775 }readonly def +/UniqueID 5096651 def +/PaintType 0 def +/FontInfo 9 dict dup begin + /version (003.002) readonly def + /Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMSY10.) readonly def + /FullName (CMSY10) readonly def + /FamilyName (Computer Modern) readonly def + /Weight (Medium) readonly def + /ItalicAngle -14.04 def + /isFixedPitch false def + /UnderlinePosition -100 def + /UnderlineThickness 50 def +end readonly def +/Encoding 256 array + 0 1 255 { 1 index exch /.notdef put} for +dup 0 /minus put +dup 1 /periodcentered put +dup 2 /multiply put +dup 3 /asteriskmath put +dup 4 /divide put +dup 5 /diamondmath put +dup 6 /plusminus put +dup 7 /minusplus put +dup 8 /circleplus put +dup 9 /circleminus put +dup 10 /circlemultiply put +dup 11 /circledivide put +dup 12 /circledot put +dup 13 /circlecopyrt put +dup 14 /openbullet put +dup 15 /bullet put +dup 16 /equivasymptotic put +dup 17 /equivalence put +dup 18 /reflexsubset put +dup 19 /reflexsuperset put +dup 20 /lessequal put +dup 21 /greaterequal put +dup 22 /precedesequal put +dup 23 /followsequal put +dup 24 /similar put +dup 25 /approxequal put +dup 26 /propersubset put +dup 27 /propersuperset put +dup 28 /lessmuch put +dup 29 /greatermuch put +dup 30 /precedes put +dup 31 /follows put +dup 32 /arrowleft put +dup 33 /arrowright put +dup 34 /arrowup put +dup 35 /arrowdown put +dup 36 /arrowboth put +dup 37 /arrownortheast put +dup 38 /arrowsoutheast put +dup 39 /similarequal put +dup 40 /arrowdblleft put +dup 41 /arrowdblright put +dup 42 /arrowdblup put +dup 43 /arrowdbldown put +dup 44 /arrowdblboth put +dup 45 /arrownorthwest put +dup 46 /arrowsouthwest put +dup 47 /proportional put +dup 48 /prime put +dup 49 /infinity put +dup 50 /element put +dup 51 /owner put +dup 52 /triangle put +dup 53 /triangleinv put +dup 54 /negationslash put +dup 55 /mapsto put +dup 56 /universal put +dup 57 /existential put +dup 58 /logicalnot put +dup 59 /emptyset put +dup 60 /Rfractur put +dup 61 /Ifractur put +dup 62 /latticetop put +dup 63 /perpendicular put +dup 64 /aleph put +dup 65 /A put +dup 66 /B put +dup 67 /C put +dup 68 /D put +dup 69 /E put +dup 70 /F put +dup 71 /G put +dup 72 /H put +dup 73 /I put +dup 74 /J put +dup 75 /K put +dup 76 /L put +dup 77 /M put +dup 78 /N put +dup 79 /O put +dup 80 /P put +dup 81 /Q put +dup 82 /R put +dup 83 /S put +dup 84 /T put +dup 85 /U put +dup 86 /V put +dup 87 /W put +dup 88 /X put +dup 89 /Y put +dup 90 /Z put +dup 91 /union put +dup 92 /intersection put +dup 93 /unionmulti put +dup 94 /logicaland put +dup 95 /logicalor put +dup 96 /turnstileleft put +dup 97 /turnstileright put +dup 98 /floorleft put +dup 99 /floorright put +dup 100 /ceilingleft put +dup 101 /ceilingright put +dup 102 /braceleft put +dup 103 /braceright put +dup 104 /angbracketleft put +dup 105 /angbracketright put +dup 106 /bar put +dup 107 /bardbl put +dup 108 /arrowbothv put +dup 109 /arrowdblbothv put +dup 110 /backslash put +dup 111 /wreathproduct put +dup 112 /radical put +dup 113 /coproduct put +dup 114 /nabla put +dup 115 /integral put +dup 116 /unionsq put +dup 117 /intersectionsq put +dup 118 /subsetsqequal put +dup 119 /supersetsqequal put +dup 120 /section put +dup 121 /dagger put +dup 122 /daggerdbl put +dup 123 /paragraph put +dup 124 /club put +dup 125 /diamond put +dup 126 /heart put +dup 127 /spade put +dup 128 /arrowleft put +dup 160 /space put +dup 161 /minus put +dup 162 /periodcentered put +dup 163 /multiply put +dup 164 /asteriskmath put +dup 165 /divide put +dup 166 /diamondmath put +dup 167 /plusminus put +dup 168 /minusplus put +dup 169 /circleplus put +dup 170 /circleminus put +dup 173 /circlemultiply put +dup 174 /circledivide put +dup 175 /circledot put +dup 176 /circlecopyrt put +dup 177 /openbullet put +dup 178 /bullet put +dup 179 /equivasymptotic put +dup 180 /equivalence put +dup 181 /reflexsubset put +dup 182 /reflexsuperset put +dup 183 /lessequal put +dup 184 /greaterequal put +dup 185 /precedesequal put +dup 186 /followsequal put +dup 187 /similar put +dup 188 /approxequal put +dup 189 /propersubset put +dup 190 /propersuperset put +dup 191 /lessmuch put +dup 192 /greatermuch put +dup 193 /precedes put +dup 194 /follows put +dup 195 /arrowleft put +dup 196 /spade put +readonly def +currentdict end +currentfile eexec +D9D66F633B846AB284BCF8B0411B772DE5CD06DFE1BE899059C588357426D7A07B684C079A47D271 +426064AD18CB9750D8A986D1D67C1B2AEEF8CE785CC19C81DE96489F740045C5E342F02DA1C9F9F3 +C167651E646F1A67CF379789E311EF91511D0F605B045B279357D6FC8537C233E7AEE6A4FDBE73E7 +5A39EB206D20A6F61021961B748D419EBEEB028B592124E174CA595C108E12725B9875544955CFFD +028B698EF742BC8C19F979E35B8E99CADDDDC89CC6C59733F2A24BC3AF36AD861319147A4A219ECB +92D0D9F6228B51A97C29547000FCC8A581BE543D73F1FED43D08C53693138003C01E1D216B185179 +E1856E2A05AA6C66AABB68B7E440902191AA9D8E4C5FBBDA55F1BB6BC679EABA06BE9795DB920A63 +43CE934B04D75DF2E0C30B8FD2E475FE0D66D4AA65821864C7DD6AC9939A04094EEA832EAD33DB7A +11EE8D595FB0E543D0E80D31D584B97879B3C7B4A85CC6358A41342D70AD0B97C14123421FE8A7D1 +31FB0D03900B392FDA0ABAFC25E946D2251F150EC595E857D17AE424DB76B431366086F377B2A0EE +FD3909E3FA35E51886FC318989C1EF20B6F5990F1D39C22127F0A47BC8461F3AFDF87D9BDA4B6C1D +1CFD7513F1E3C3D393BEF764AA830936164EDC2C76977D765F095166FE1D9B0498CAB4AD68621FDC +2819CE863510B07FC37ACE71A641448CCE3453022A0ED0C1AFE7DB2BEC6006B11F4E993C658453BD +190269DC5F091BD05055983A4F869B7CF38AFF99F9CF1196AFB3C00B6407E57328CFC3AD4DE530C8 +A30A9817F3AF2438B69B24996DA4104A4F2CCEC2348B1328EB84438D0DC63B767E37C9913E2AE4DD +D669BDEC427E6941CACECB52727BB7341D3A13653F92CED2DA9FA9B19F4AE93B067750ABB71F7107 +581A0015A08DB715E35A8E90B5D1F2DFBBBC6B3B443D67206C9F6450F124290E7A922BB43EAA3B5F +8101EAF9D5706E919EFBF5F20FE384A811A7237C2EF5A09851F8525A0602A0B893B297E904E1C0F8 +624913D532C89A18B403E10608D797036362C89987172B317DDE23F6EDA786BD47038866EDCDB5D8 +8371321552F64A292040226FE53BEA879343AB2C35EC288CFAD8E3C60B35C17EBB85FD14C940E82B +01315DD8E689E39A85742D923303DAA4A5F317F9739CD39573AEB82F0427E898439B389E89A799DD +D5D1C3D9710985772FDDF908A085F1EDA297F11262B7033FF288C863EA05D83EAFF991AB05123869 +0FD2CC1D62B6E981855ACFDE11F70ABDD526549570D1F79892D220D1970C230FF879D7D614D83100 +F926E326FA58AA1737ECAE914B7BC4E8886C82C6EEC4CE887D5ABA35F7705234CA9E210484CBDE9E +2AA55976770849B995914F234F8C41BDB2B5EEB94FABA4172280DAA22EDD049E3D7C4AAAC75CB07A +A37040A68EAF76A999AA0FCDF5FDE2D1069704C23306854AFB3F427990ED447F427D176548605757 +E516EB657137608B19079BB60BAF2E15677FC54867FA8C3555ED7FDCC69C2CA167BA71FC238573DF +E2507D4D2F30B41D0A23EE8327107DE96BAA270DC06969E2FFF802A3CE59FE411B190E3E49BF1434 +41B89E52AB02A231DF42694BC676046D7B32AA0A32A15635CEB06D7C80BEE2E20498AB450E01FD9C +E71DA883019D1DC48D62B2D955B4FC9A05E9FDEA23545DC4C6F8822776F9342A59570875D1E900EC +E764F4F238FD24BE7265841BEFFB1EF20BCCEA6628605AFEE122EF3F526E328F21D71A77B03AB841 +D681287A8C8B361103641481E76E7E355B6B58F2BD9C5B6914E96355BD593DEF81841ABDDF6B981D +11607A819B4000F681F325BA0FF535194BC5D5F6FED8A75001C410933870DE94A42FBE0E45E16517 +D1DE74D09F4FCA42F33748040E864AB707BD6228BA17D5E0207A37FB9970367521B35AAE1DFEB776 +1FBA93EABC7106625F4E9D620D69DF1B8007693CAAD00A14A9C591E015E60F35FAB1320B108389EE +1238E3D6650CF8A2B1C6FE3BA686CF40DD7B571EAEA169FF87425DA01143B2729DF9BECD5FBA0490 +99FFBC2DE6DBEB861E3F7675037C544DCD0B386651F8DFD1C51F77E67BEFB8E10C70F7B79CEC5642 +80420CB0C2FE830B6029B7D3F72A20AC1D06C00F08A4FE55AD091769685C475198381375DC1FA044 +557E4B8BA3C5D68AA798FC1D5F949E30C66321DE4A2DCEAB7CF978DE239F12F3F02E5A7B7AEEB979 +E6E0D7E7CBC5A64C0F83793572C766DBE35265E0ECD7555340C3056A22F8C3AB991B21AD1E40756D +1D595BB8AB0D5EF411E3A588894A0301FCB3571BC3A74CBF16FB4B2FB13328C8765843870BCA4496 +F97D1EDA1562CAD92498CA1BBEE5C91E16C31DA13F54E9D3D2F33548D84EC7AC98FD84076F35D951 +034F4E7E06913CB0F8450B9E3DB89677C7C09F9349ACD01A1E505C421C253963FD765EE21FD08F85 +1B6C6072689D3A803334F733ECE932D84E886D089595590E5890A4C6E6BEFE4752BEECF730974187 +3F15104142E5CC4A4655AD3765400C6A46E0F308DA358E0333B02A4131829707F8AC5E70BE999E9C +6F4599EA9DB005082632E1D85FF7860AFEB9A3BC352E10DE9A0999538AD69BBEF18D3D2E3812C3FF +BDA5C099CDC61F67A6851E84CAFFBF891A9794ED8AF9CAB270E3C78C951C5420C025FEA34B0D59B4 +308722D610669E210020A559FD6C6CBF2CEE53D58E46226CA2D01A4A3D39812BA23324385A0B2B06 +57BCFF9E53F848BFB6F6BB17E379FC7081D43A38FF40C6C42934A356EB7A351198DC63473DD34BCB +5D2B911B53130B4E630040459AB8EA37E67A5BBEAC5927FCF4D7F63F36F7181075D7BC6FEE9DCBA1 +28E35A567C7D5BA75E5A4D20A6296A6879A24B62EDB6985279868FA0E2CC9898A9AFECB756245766 +1EB7C487E43FB7C03A55219E414AFCF164DFFA3E323BCE029A86C02B1E71D16411E4DD224FFBC280 +26265A79651C56A5F5107B8C48527D8C8848E1F47C624C7C003DE41A5C53E2D8AD802B251D66E13F +A8AB0A31CE8BC14A2A0652E99865A99CA3B12ED35138209FD48CC20D5EF2973FD7B0D37E5C0BEFDB +75A4F09D3B61CC725F292220579B50FA5D05F66F66E09B63BDC126457C6631548E7F75681F8E0B19 +D5DF252E2BBA45E487AB3F091EE607CA278C5966CFF9CA4E3CD813CE831E9FAD3116D8ABBB6A7B92 +0CA3DCF9343BA475886E94BA90A0BBC5BC9974675744C9162DC2C912D8E19BB2F3BDA3F17C76852E +3CEF0BCD9BFBB3BC79922D5219C1CDCFA2EE824B4AEF8BE6F05FFEF8BDAA51F5A52FC13A4A15867C +01C26240871C37B2FF5253449A02FED980B565D62C6C0D0BC149A356014BBA509727CE1DF62AF4F2 +8535F5CB1167CC8508089769D07F5171AF79F72721862A0B6CBC59DC79615D5EFE89B7FEC51FEFFE +1DB869D1D0A329D2967E705A714336F0E75D840B37A12E9203B51049F024520E6637AF4BAB4DCF50 +B3682D7BF71F654BC5661922556E45CC7EEFCA196B3569B169DB4E01B5A152F1539A19B3C2B68079 +5BBB04826BDA3C857158029FAC2E0BDE94EC5CDE45E3DCF6C082DBF36D3DD37B135A6F0736E3252F +DCE218EB5DB8773E2DAFFD1DAD53671EB3D83A275D011BF5D501A22D407AE09257CD21297B617E04 +43FBDAA297D37F66AC436DB78B410E79A002233A0D7DA619CCA9DA4714325A51CB0BBE9EB6CEA352 +BB1A0A2FF83610B2A17E19480E9285E1570CFCB8EC7E1D691A72611D336DE5C6626A1D1D2DF363A1 +D781DBE61235F1D1805CC2A8C670005F84FD468167F8640B12929CF347538B94EB37DA39904D4763 +D93E757AE2B4C775D98E23BA983E35992A292A04976544EC462CA656E5EC37EE8EE46BF1C3B0B4C9 +12DF05AE1535CC654000B06BCDC95D9C6B5F36F8FD8A0EB31A02C2B863DEBF8FEDBC57D5F93D2604 +321FA66070D14FED60441E09999B90A5FB715347583A35314381554031BCE4E6E73AD3FCBB61ED0D +4C015863119C1D945E981AF3F38C81EB3A350A70A63EB06119965C90D7EBA669359FCBDFA87C4DB9 +20F8F3D99C73A0DF7E10D3C410696D679CBFAE831E3E99FEF6C038F669C58E1EB6F60FF587F5EC56 +1629EF429734CB886AF914AC3E6BC04F21D73F184CA12D7E033B301C181D15101A986BB95132DABE +E082A617520CF95EC9069499A02F073D7DBE41726B51FC05A9348953495B4CDE8D0A8F8C04D07ABE +B3BA00763A80F2E3B5804947E690DB3A7B3BC6C48A67F5D45F5C658FECFF28790B709385D24D02FC +3B0C9F9AB04E168BAC78F0837D9BD402C1ABFA84148FD815240108CD511E50FB8E64F20058EE54E4 +ED45181AD9BB777DEE3303C4991EF8EC56B6C278CE63F6C2FF92308A25B9AFDB4585A808AB3F03D8 +A15A20FFE399DEE429C959F8B3DFDF81433C41CEAC874479A2C51F9FAEAAD5B7B23230B99523FB25 +6896A85A8C48C057A70DE745F753B4183AAA6F84B4ACAB090F33CC2C31186D1D8A0218A74E1987D8 +6B9C3602BA294CD29FEECE4187523CF511FD075692B1C080A5A22281BAAA4EA701D7573D083E2F6E +DEA3D49FEAFF2CBF989703E83828E6C7E324558AFB73E3388F0B0E6A97EDED5A9553DD33DBBBBAF2 +174A562AE2B8A4B6E7D13E90FF9B7D650231CBF9EE48DBDB00AEE2E0FEBF8D6778F19CBCB8766A0A +CC9BCE2659771BFA97CE7BA811A3A6C8CBEE899839E525DA2ECDF66CD99FCED902AA102D92CD9A27 +9453BA74EF8C0CF32C11A412A05CFA2C187833F885F359DCEA34EE24E90F7F107A23D9EE269C15A6 +47916F56C32543AD5F81D90C84B8305E5BFEF1F3B356CEEB5BAC54AA00DC9C6F03B4AFCF7AA4D319 +64377525A661FBB743D3996447AFBF76C8FA874BCBB374B02C538AC626004EC8E1E9030D60C4A097 +CDAFC143732FB7431008CF28ABEC4529F4689720D4EF580676CA855FFEDDC66B7C1DF07DB89EE98C +0DB6FAA5551ADE4D674B51E4E3FA4B24A3DB5196E01C6CA1DF5D669A3C0FC57DC1F576C2BA14D5DE +284614AF3276E3A1159CBF8D40426A60E8C5DD426F1307222DAA8AA78BEE55C27E26013120FB5471 +CB33CA4FB642B1C386018EE3D4424CA411F49CD569CDACB51AB9BB5E66E1E13ED5F8BE0E912BC13C +7B23E10C042C33DA19656264D7473B4E0C3DABE14F9F94450D1113C88EEC18CFEE640A6D9A40DA9C +CED6EC5E2E9F1B357DA635C3A2C5A23874E496B868FD0260D30F1780878A900B90637A1237C63D83 +335A3FD4A664321C048BF2273F9C4AE3161E1F06E6EA5F3F15CFED43C622E0D7E245EDFB866398DF +F2EC994674767B7F3DD853CA356A3607C7BF8F9C6889EB9942ABE469EF88368742FB5C41D06125D2 +042EEA414B344AC718FEAEB308302F5607C06852A30CF778D236EC90CA10934C629FD59890176264 +DBF9C1AEB33A6028B9EF09B06BCB182DA58ECCAA4E2E1FBB13868C98CEB61223E9658EBF003AC674 +93587A156EFBE73EC88CCDD55C9C10CDFC52F7A7B274D631DBB5D629F41AC8760741953A6B90C6E9 +E4D2C79702C59EECDC65D8948317D67808CFBD81953AD32837A42EBBE48F77D6B387E272855E54AC +D32D3377E19724B3BB370A71C633C3A41A0523FC219EFD5310EB3CB5FC93F0F9E6BFB11517E2B901 +016CE8DD44BFA8590EDEA88F5229FFDB83E401034C826F038D58C19E54704A4E2E36B7738FC6F80D +F4D82A5285853C49F9689363392536C3BA25C00B7885E7DC3951E9B5D22414C9E9A264954CCCFAF8 +BCE70CFFD4F726263EBEBB70D52A58B3D6BD029F555A630D687C7E7103C8B8F2B33EA41732D6FB7F +A999CCA0185A13C8BD80A2762AB9919C3E9FC07556BA8C7149B4CC5B58DBE84297E3E8D2B34591D9 +FCAC659C0FE115F34ABA807DD94410AF8F532418382EF8F7980E1598A97A61926B809FD771B2795C +69E6B1F15FF0EED329FB793FA3FAF0580ED07F51B0E1BC1401EA5026897990CF09F9750268AF812E +89DA551EC14B457836CD38E5C07179A3EE0ABD3A85C693ACA829A5E492FD4F1BF12725544FBC81FA +A2004784DB367184315C68BEE9FBB1D68F91C9D0901BAD3BDA4FFFC203C232276A495EF1B2B82F36 +FE36716733F0E993B19407744C067324BDD2D5641977B1A118DBB844104397F963CA2E01B7155CB8 +4BB642FC315C028FE4502335F761A9DDBEF7ADE1ABE87D31AF848A5285BD8328ED3E8A2A608590DA +11968AA8C0D8010329A9E172AAC2C7D0061B14EDAD1142FEBD3DDC0ED20023CF06BB146B3F58A6A1 +97DDA1CB2533B236FAF2825E8DFE70B79A0938D79664C1D26B4412FD10C76729CB22392E8976960A +BED0A03D5FDDC7C5C2C6221BA1FA08020B88FD9AA0CE8B5FD26D58A679339A2AE6730746B8413B6E +05361755FBF11FBFA4974CC1AF36136803DB8282A7F5429327B875D0FD222835C7AB82049CBDA6AD +1731F6D06AD2A20027765CF62F7E4BE9521465A7C3E968DBCF95F2C62EB3829CE6DFE845EE20E8EA +89CA6C46BA14E5A920D8E28A4008C210F747622AE31F5F9036C70FA52BFFF08A4BAB3D5EA2EF6E86 +56F89058F4A67933AF30E9A16467D563B2782268E2568868F677650A74F415289CBAC0DECDF82848 +5066AC07C011623DE9643DDE39840B1A739B33ED3EC705C13DFB191472987059E5017002D278168B +5280FA2E26C6D51CA663B384F5CFF4A6232F5F68E185231EEA239904319E180F91DA98A63B38E16E +138D2DCBCFEFA5F3E5AC6FE764A3A9F3EB622117662AFD26A124933CB1E04AAB53923AF5D9DD9725 +36C4904A1602040545A9AD4904D867C1D0AB907D733EDC19EC0933913B0EE96E8578527FD3D1204A +25982635CCA01A9B101A843F6C373AC4C8E39E39BB13AE6A0EA170B59987488481D38806D429E902 +801F9CE25EEDEB6012CC9EBA0736820F82C640CD8C7D852D9EFFE6F769D7FDE1DD628861FF628BC0 +BA8EF12726F83D7FCE6ED8785DBCE502DD0571A76D88B7FAC1E2DB24DB97394937A1EA17031078EE +07D00B554B9C892C68B624D3900266E8850287243BE44F11F86E95DC00E89C5C47F573C0A7F1CD0C +CD26498334C7D37A3AF4457CA805446A743445978D8C3D25FBA2350A878E23DE65D49E9E5F819484 +DC1B85ED2BDFF923216C101FD8F411C1443AD7BCF5E90FDD6BD29899C86EB3ECC82832FE75A59EB3 +FA696F2696A450E2504A473123A8D24956ABEF5ADAF5B3BB57FFA5364214AC0E9E245CCF431DFB8A +7A5104BD97D5E5104CA9A05774D0FCA9EC0458BD7289794FF19FD00E2D05086336902514F5CF8141 +307C037E5D2E30B62D1C8A5A7682BC941A5445D8A17F5670554AD4AE24EB95524CEBF2599D5D00AE +DEE2B5537F869A46BF093296C77F86ED5658C3DD3AB9C25850624A53F6573A51C7AD9F43EB8320DF +A31F7F58E0FDFA9FF640DB5B55FB5C4E014A8C50E062F13D573C845231F98CDE7414BD440AD4CE9E +00FB39BC93C3D1C8F5FEC652FC28AD9EF814CD964DEFC5813828B0A38AB0E0BE6E3CD60259B8A50F +95CB02EB685DDE048D73DB0460985EB16DA749DE3EE1625182EDC552F104E547D22E62501D9D4EAB +C09531E6457B7AB148FFBAC7927318F8BE99EAE5AC9E6AE81081E236187C2D384A92494DE6BD1FDC +C5A79413609F865C6067EB60B83B1E0D49D2CABF88F252377787534037AEA74A842CF21A5514F3A8 +9A00EEA33793D63040EC2E1231C04026B8DFE67E0E0B460E3BC6E60F71AB1C05F295F617829255BB +BAD68D6D7E5AEE12DAD835A693A661AD9923BB65C781B9085640D3A5317C312DD3C6159C15D8DAA3 +A592C9F4B4AB648B160E4B3BD2E3DD475573570F5EE110AE5BCA3C499513061F202DB76ECBB5316F +21F041954B9EFF754A628ECC2B68077CD6072C630CB99421BA3D0D1DA24CC09B8D42E8ECB52EBAA0 +E16DE13F0F2E235292A0063ED390D9A8E685160134E931F924D150C3B1E315CCC86F2AC29D02D0D9 +8DEB83DFC7531128E0AB55B5F7D161A44DE0154738DE065666440E46D94CC4AC21C42F362D222A5C +EB4FE9FAC0892ABAA08F3A3AB76A22CF73E343BADA5C89355A821C67A626C0FA6F8742178B956254 +3607FA648F9FC0971734B99E476E36E9127419F27469DD3BA6A1D82680155B4603D1DD68CCFB5D5B +1A90CE7C6B780BBFFE12723ACF7CED4649DCD6D61DC52FB893305D4CB1D956B4A8393D2ACDF74247 +F0695C9778D5E104CC29E7E8BDEB1305DDAB231758BD41DE987F4A3D2A8FE210CD806CB42F46951A +51F24526F4E43FE18A7E1B43265201F114F258CB9DF6438D064CD2541FFE07B847C56E66C501758A +FDC9C644CC5BF98C6D0D4ADD4F4245DCD8BEBCD596F363F8469DBDAAF511789619F04BE31FE959F1 +9649D7808F42AAAE56E6CE93C9F3B3D1CD7C1A67E0FC85ECADB448869D34331BFA9C9A0840B7FED1 +DC2B0A40072B52449B01AB2CAA5765C2A969B61BAA43F084DEFF1E8EFA194F6EBE8C1C475F8895C6 +DDD99CCA8F4DA57DFD02A3036407671F3DA719E819A2D2678167EA17CE5ECA50FE1EA359A5756746 +DBE661C9F8F4678B762FE87B2DC98AE853E7CF9C2AA1A34F3D560248C5870653D645735877995245 +83F058E7D5DC9D80E7BC03A0FA66702A5AE4CC9EC25ED4433B437B07FB4D3701683D0CB07D90E29B +8B7A0FABF72D0852ECE8F58BFDC35CA72B36CBB334D21ED27684831DB43F34D54F85F19A2B32C728 +74AA6D9ABF878A6EFD56BB4EF0E10D2F008129872A03334919DFE9F9692D2A75B870A43E19890D10 +E13DA69D3F1BD10FDC0A89EE30ED890A8D278D132C8AF80B14208623EAC8354973E5A7C2AF274EFF +B139976B0C91FA38948F3C1F7E3954D3826F2B19C3799784C139DCB19C2C1ED25C62DE80C876F0DD +FD3378A061F8293AB0927797F4453DFACD6D06C0C59E7C923BDFEA427A7C874543DF1E42039296F0 +EA569BC8CA6B73A2516E4D495D4894162962428B915A6DF5EE0758D1D24AEB9792A9AED3489EA635 +14087F4618F87141712D5D6FBC48F5F4A242BE1FDDDD4C1E69EB85F9B05151B2FB0997E30E900FC9 +A4FB9E59FA2C00491CC7D5DBA867AFA941642067E8F402751561491FE8399D11B2FF6E278281B302 +CFF6FF986830295D6E37D0F102F9549A5D4C498473D357B9D2A0CB04DC0098629617F186BFF2C1C7 +1975752B9D470B0E4B14DABF3FB5BB81CDF4F0CD451A1EAD5624F9C948A6DE2CEB0C4C6D567385C7 +52F8B8BC2E0941C6F6479D4540248CCD3570FEDDA378EE484BA82A31D00AB1BDB104C5E667D8C9 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 + +cleartomark +{restore}if +%%EndFont CMSY10 +%%EndProlog +%%Page: 1 1 +gsave +newpath +0.0e+00 0.0e+00 moveto +1.5e+02 0.0e+00 lineto +1.5e+02 1.5e+02 lineto +0.0e+00 1.5e+02 lineto +closepath +clip +gsave +clip +newpath +gsave +newpath +5.0e+00 5.0e+00 moveto +5.0e+00 1.45e+02 lineto +1.666667e+01 5.0e+00 moveto +1.666667e+01 1.45e+02 lineto +2.833333e+01 5.0e+00 moveto +2.833333e+01 1.45e+02 lineto +4.0e+01 5.0e+00 moveto +4.0e+01 1.45e+02 lineto +5.166667e+01 5.0e+00 moveto +5.166667e+01 1.45e+02 lineto +6.333333e+01 5.0e+00 moveto +6.333333e+01 1.45e+02 lineto +7.5e+01 5.0e+00 moveto +7.5e+01 1.45e+02 lineto +8.666667e+01 5.0e+00 moveto +8.666667e+01 1.45e+02 lineto +9.833333e+01 5.0e+00 moveto +9.833333e+01 1.45e+02 lineto +1.1e+02 5.0e+00 moveto +1.1e+02 1.45e+02 lineto +1.216667e+02 5.0e+00 moveto +1.216667e+02 1.45e+02 lineto +1.333333e+02 5.0e+00 moveto +1.333333e+02 1.45e+02 lineto +1.45e+02 5.0e+00 moveto +1.45e+02 1.45e+02 lineto +5.0e+00 5.0e+00 moveto +1.45e+02 5.0e+00 lineto +5.0e+00 1.666667e+01 moveto +1.45e+02 1.666667e+01 lineto +5.0e+00 2.833333e+01 moveto +1.45e+02 2.833333e+01 lineto +5.0e+00 4.0e+01 moveto +1.45e+02 4.0e+01 lineto +5.0e+00 5.166667e+01 moveto +1.45e+02 5.166667e+01 lineto +5.0e+00 6.333333e+01 moveto +1.45e+02 6.333333e+01 lineto +5.0e+00 7.5e+01 moveto +1.45e+02 7.5e+01 lineto +5.0e+00 8.666667e+01 moveto +1.45e+02 8.666667e+01 lineto +5.0e+00 9.833333e+01 moveto +1.45e+02 9.833333e+01 lineto +5.0e+00 1.1e+02 moveto +1.45e+02 1.1e+02 lineto +5.0e+00 1.216667e+02 moveto +1.45e+02 1.216667e+02 lineto +5.0e+00 1.333333e+02 moveto +1.45e+02 1.333333e+02 lineto +5.0e+00 1.45e+02 moveto +1.45e+02 1.45e+02 lineto +gsave +5.0e-01 setlinewidth +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +grestore +newpath +5.0e+00 2.833333e+01 moveto +1.45e+02 2.833333e+01 lineto +2.833333e+01 5.0e+00 moveto +2.833333e+01 1.45e+02 lineto +gsave +1 setlinewidth +gsave +0 0 0 setrgbcolor +stroke +grestore +grestore +gsave +2.833333e+01 2.633333e+01 moveto +2.833333e+01 3.033333e+01 lineto +gsave +0 0 0 setrgbcolor +stroke +grestore +grestore +gsave +5.166667e+01 2.633333e+01 moveto +5.166667e+01 3.033333e+01 lineto +gsave +0 0 0 setrgbcolor +stroke +grestore +grestore +gsave +7.5e+01 2.633333e+01 moveto +7.5e+01 3.033333e+01 lineto +gsave +0 0 0 setrgbcolor +stroke +grestore +grestore +gsave +9.833333e+01 2.633333e+01 moveto +9.833333e+01 3.033333e+01 lineto +gsave +0 0 0 setrgbcolor +stroke +grestore +grestore +gsave +1.216667e+02 2.633333e+01 moveto +1.216667e+02 3.033333e+01 lineto +gsave +0 0 0 setrgbcolor +stroke +grestore +grestore +gsave +2.633333e+01 2.833333e+01 moveto +3.033333e+01 2.833333e+01 lineto +gsave +0 0 0 setrgbcolor +stroke +grestore +grestore +gsave +2.633333e+01 5.166667e+01 moveto +3.033333e+01 5.166667e+01 lineto +gsave +0 0 0 setrgbcolor +stroke +grestore +grestore +gsave +2.633333e+01 7.5e+01 moveto +3.033333e+01 7.5e+01 lineto +gsave +0 0 0 setrgbcolor +stroke +grestore +grestore +gsave +2.633333e+01 9.833333e+01 moveto +3.033333e+01 9.833333e+01 lineto +gsave +0 0 0 setrgbcolor +stroke +grestore +grestore +gsave +2.633333e+01 1.216667e+02 moveto +3.033333e+01 1.216667e+02 lineto +gsave +0 0 0 setrgbcolor +stroke +grestore +grestore +gsave +newpath +0 0 0 setrgbcolor + +% Comment: canvas init + +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +1.0e+01 setmiterlimit +gsave +/CMR12 findfont +12.0 scalefont +setfont +7.20735e+01 1.562889e+01 moveto +gsave +[ 1.0 0.0 0.0 1.0 15.6602377316 -710.61768394 ] concat +(\062) show +grestore +grestore +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +grestore +gsave +newpath +0 0 0 setrgbcolor + +% Comment: canvas init + +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +1.0e+01 setmiterlimit +gsave +/CMR12 findfont +12.0 scalefont +setfont +1.187402e+02 1.562889e+01 moveto +gsave +[ 1.0 0.0 0.0 1.0 62.3269043982 -710.61768394 ] concat +(\064) show +grestore +grestore +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +grestore +gsave +newpath +0 0 0 setrgbcolor + +% Comment: canvas init + +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +1.0e+01 setmiterlimit +gsave +/CMR12 findfont +12.0 scalefont +setfont +1.848034e+01 7.114778e+01 moveto +gsave +[ 1.0 0.0 0.0 1.0 -37.9329240608 -655.098796308 ] concat +(\062) show +grestore +grestore +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +grestore +gsave +newpath +0 0 0 setrgbcolor + +% Comment: canvas init + +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +1.0e+01 setmiterlimit +gsave +/CMR12 findfont +12.0 scalefont +setfont +1.848034e+01 1.178144e+02 moveto +gsave +[ 1.0 0.0 0.0 1.0 -37.9329240608 -608.432129641 ] concat +(\064) show +grestore +grestore +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +grestore +gsave +newpath +0 0 0 setrgbcolor + +% Comment: canvas init + +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +1.0e+01 setmiterlimit +gsave +/CMMI12 findfont +12.0 scalefont +setfont +1.333333e+02 3.416667e+01 moveto +gsave +[ 0.9 0.0 0.0 0.9 82.5613929049 -619.455251142 ] concat +(\170) show +grestore +grestore +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +grestore +gsave +newpath +0 0 0 setrgbcolor + +% Comment: canvas init + +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +1.0e+01 setmiterlimit +gsave +/CMMI12 findfont +12.0 scalefont +setfont +3.416667e+01 1.354255e+02 moveto +gsave +[ 0.9 0.0 0.0 0.9 -16.6052737618 -518.196438035 ] concat +(\171) show +grestore +grestore +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +grestore +gsave +newpath +0 0 0 setrgbcolor + +% Comment: canvas init + +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +1.0e+01 setmiterlimit +gsave +/CMMI12 findfont +12.0 scalefont +setfont +5.166667e+01 1.243566e+02 moveto +gsave +[ 0.9 0.0 0.0 0.9 0.894726238195 -529.265338315 ] concat +(\161) show +grestore +/CMR12 findfont +12.0 scalefont +setfont +5.672391e+01 1.243566e+02 moveto +gsave +[ 0.9 0.0 0.0 0.9 0.894726238195 -529.265338315 ] concat +(\050) show +grestore +/CMMI12 findfont +12.0 scalefont +setfont +6.0821e+01 1.243566e+02 moveto +gsave +[ 0.9 0.0 0.0 0.9 0.894726238195 -529.265338315 ] concat +(\170) show +grestore +/CMR12 findfont +12.0 scalefont +setfont +6.680788e+01 1.243566e+02 moveto +gsave +[ 0.9 0.0 0.0 0.9 0.894726238195 -529.265338315 ] concat +(\051) show +grestore +7.389372e+01 1.243566e+02 moveto +gsave +[ 0.9 0.0 0.0 0.9 0.894726238195 -529.265338315 ] concat +(\075) show +grestore +8.507665e+01 1.243566e+02 moveto +gsave +[ 0.9 0.0 0.0 0.9 0.894726238195 -529.265338315 ] concat +(\064) show +grestore +/CMSY10 findfont +12.0 scalefont +setfont +9.273534e+01 1.243566e+02 moveto +gsave +[ 0.9 0.0 0.0 0.9 0.894726238195 -529.265338315 ] concat +(\000) show +grestore +/CMR12 findfont +12.0 scalefont +setfont +1.03495e+02 1.243566e+02 moveto +gsave +[ 0.9 0.0 0.0 0.9 0.894726238195 -529.265338315 ] concat +(\050) show +grestore +/CMMI12 findfont +12.0 scalefont +setfont +1.075921e+02 1.243566e+02 moveto +gsave +[ 0.9 0.0 0.0 0.9 0.894726238195 -529.265338315 ] concat +(\170) show +grestore +/CMSY10 findfont +12.0 scalefont +setfont +1.1597e+02 1.243566e+02 moveto +gsave +[ 0.9 0.0 0.0 0.9 0.894726238195 -529.265338315 ] concat +(\000) show +grestore +/CMR12 findfont +12.0 scalefont +setfont +1.267296e+02 1.243566e+02 moveto +gsave +[ 0.9 0.0 0.0 0.9 0.894726238195 -529.265338315 ] concat +(\062\051) show +grestore +/CMR8 findfont +8.0 scalefont +setfont +1.360944e+02 1.282612e+02 moveto +gsave +[ 0.9 0.0 0.0 0.9 0.894726238195 -529.265338315 ] concat +(\062) show +grestore +grestore +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +grestore +newpath +5.0e+00 5.0e+00 moveto +1.45e+02 5.0e+00 lineto +1.45e+02 1.45e+02 lineto +5.0e+00 1.45e+02 lineto +closepath +clip +newpath +5.0e+00 -8.833333e+01 moveto +5.0e+00 -8.833333e+01 lineto +6.4e+00 -8.001733e+01 lineto +7.8e+00 -7.186933e+01 lineto +9.2e+00 -6.388933e+01 lineto +1.06e+01 -5.607733e+01 lineto +1.2e+01 -4.843333e+01 lineto +1.34e+01 -4.095733e+01 lineto +1.48e+01 -3.364933e+01 lineto +1.62e+01 -2.650933e+01 lineto +1.76e+01 -1.953733e+01 lineto +1.9e+01 -1.273333e+01 lineto +2.04e+01 -6.097333e+00 lineto +2.18e+01 3.706667e-01 lineto +2.32e+01 6.670667e+00 lineto +2.46e+01 1.280267e+01 lineto +2.6e+01 1.876667e+01 lineto +2.74e+01 2.456267e+01 lineto +2.88e+01 3.019067e+01 lineto +3.02e+01 3.565067e+01 lineto +3.16e+01 4.094267e+01 lineto +3.3e+01 4.606667e+01 lineto +3.44e+01 5.102267e+01 lineto +3.58e+01 5.581067e+01 lineto +3.72e+01 6.043067e+01 lineto +3.86e+01 6.488267e+01 lineto +4.0e+01 6.916667e+01 lineto +4.14e+01 7.328267e+01 lineto +4.28e+01 7.723067e+01 lineto +4.42e+01 8.101067e+01 lineto +4.56e+01 8.462267e+01 lineto +4.7e+01 8.806667e+01 lineto +4.84e+01 9.134267e+01 lineto +4.98e+01 9.445067e+01 lineto +5.12e+01 9.739067e+01 lineto +5.26e+01 1.001627e+02 lineto +5.4e+01 1.027667e+02 lineto +5.54e+01 1.052027e+02 lineto +5.68e+01 1.074707e+02 lineto +5.82e+01 1.095707e+02 lineto +5.96e+01 1.115027e+02 lineto +6.1e+01 1.132667e+02 lineto +6.24e+01 1.148627e+02 lineto +6.38e+01 1.162907e+02 lineto +6.52e+01 1.175507e+02 lineto +6.66e+01 1.186427e+02 lineto +6.8e+01 1.195667e+02 lineto +6.94e+01 1.203227e+02 lineto +7.08e+01 1.209107e+02 lineto +7.22e+01 1.213307e+02 lineto +7.36e+01 1.215827e+02 lineto +7.5e+01 1.216667e+02 lineto +7.64e+01 1.215827e+02 lineto +7.78e+01 1.213307e+02 lineto +7.92e+01 1.209107e+02 lineto +8.06e+01 1.203227e+02 lineto +8.2e+01 1.195667e+02 lineto +8.34e+01 1.186427e+02 lineto +8.48e+01 1.175507e+02 lineto +8.62e+01 1.162907e+02 lineto +8.76e+01 1.148627e+02 lineto +8.9e+01 1.132667e+02 lineto +9.04e+01 1.115027e+02 lineto +9.18e+01 1.095707e+02 lineto +9.32e+01 1.074707e+02 lineto +9.46e+01 1.052027e+02 lineto +9.6e+01 1.027667e+02 lineto +9.74e+01 1.001627e+02 lineto +9.88e+01 9.739067e+01 lineto +1.002e+02 9.445067e+01 lineto +1.016e+02 9.134267e+01 lineto +1.03e+02 8.806667e+01 lineto +1.044e+02 8.462267e+01 lineto +1.058e+02 8.101067e+01 lineto +1.072e+02 7.723067e+01 lineto +1.086e+02 7.328267e+01 lineto +1.1e+02 6.916667e+01 lineto +1.114e+02 6.488267e+01 lineto +1.128e+02 6.043067e+01 lineto +1.142e+02 5.581067e+01 lineto +1.156e+02 5.102267e+01 lineto +1.17e+02 4.606667e+01 lineto +1.184e+02 4.094267e+01 lineto +1.198e+02 3.565067e+01 lineto +1.212e+02 3.019067e+01 lineto +1.226e+02 2.456267e+01 lineto +1.24e+02 1.876667e+01 lineto +1.254e+02 1.280267e+01 lineto +1.268e+02 6.670667e+00 lineto +1.282e+02 3.706667e-01 lineto +1.296e+02 -6.097333e+00 lineto +1.31e+02 -1.273333e+01 lineto +1.324e+02 -1.953733e+01 lineto +1.338e+02 -2.650933e+01 lineto +1.352e+02 -3.364933e+01 lineto +1.366e+02 -4.095733e+01 lineto +1.38e+02 -4.843333e+01 lineto +1.394e+02 -5.607733e+01 lineto +1.408e+02 -6.388933e+01 lineto +1.422e+02 -7.186933e+01 lineto +1.436e+02 -8.001733e+01 lineto +1.45e+02 -8.833333e+01 lineto +gsave +1.5e+00 setlinewidth +gsave +0 0 1 setrgbcolor +stroke +grestore +grestore +grestore +grestore +grestore showpage + +% --------------------------------------------------------- + +%%Trailer +%%EOF diff --git a/assets/images/aroc-act-trends-q.svg b/assets/images/aroc-act-trends-q.svg index 1679d0bb..db42e560 100644 --- a/assets/images/aroc-act-trends-q.svg +++ b/assets/images/aroc-act-trends-q.svg @@ -1,133 +1,133 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/aroc-ez-position-graph.svg b/assets/images/aroc-ez-position-graph.svg index 5e2a3b28..dc862c56 100755 --- a/assets/images/aroc-ez-position-graph.svg +++ b/assets/images/aroc-ez-position-graph.svg @@ -1,95 +1,95 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/aroc-f-x-defn.svg b/assets/images/aroc-f-x-defn.svg index bfc814b9..bf3e3fc7 100644 --- a/assets/images/aroc-f-x-defn.svg +++ b/assets/images/aroc-f-x-defn.svg @@ -1,222 +1,222 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/aroc-s-t-blank-axes.svg b/assets/images/aroc-s-t-blank-axes.svg index eb7d45df..f2b8b309 100644 --- a/assets/images/aroc-s-t-blank-axes.svg +++ b/assets/images/aroc-s-t-blank-axes.svg @@ -1,38 +1,38 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/aroc-s-t-ex-1.svg b/assets/images/aroc-s-t-ex-1.svg index 82d2417d..6cc6d283 100644 --- a/assets/images/aroc-s-t-ex-1.svg +++ b/assets/images/aroc-s-t-ex-1.svg @@ -1,267 +1,267 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/combining-act-f.svg b/assets/images/combining-act-f.svg index 929a8547..913b10e7 100644 --- a/assets/images/combining-act-f.svg +++ b/assets/images/combining-act-f.svg @@ -1,90 +1,90 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/combining-piecewise-abs-val.svg b/assets/images/combining-piecewise-abs-val.svg index 0dfda279..bb353530 100644 --- a/assets/images/combining-piecewise-abs-val.svg +++ b/assets/images/combining-piecewise-abs-val.svg @@ -1,132 +1,132 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/composite-Dolbears-Law-celcius-blank.svg b/assets/images/composite-Dolbears-Law-celcius-blank.svg index 964771f5..d3cce2fb 100644 --- a/assets/images/composite-Dolbears-Law-celcius-blank.svg +++ b/assets/images/composite-Dolbears-Law-celcius-blank.svg @@ -1,116 +1,116 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/composite-act-graphs.svg b/assets/images/composite-act-graphs.svg index beac4eba..7b07d0f5 100644 --- a/assets/images/composite-act-graphs.svg +++ b/assets/images/composite-act-graphs.svg @@ -1,123 +1,123 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/composite-aroc-a-b.svg b/assets/images/composite-aroc-a-b.svg index a1e6c484..4677c2fa 100644 --- a/assets/images/composite-aroc-a-b.svg +++ b/assets/images/composite-aroc-a-b.svg @@ -1,116 +1,116 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/composite-aroc-a-h.svg b/assets/images/composite-aroc-a-h.svg index 89b66d67..8c99eaff 100644 --- a/assets/images/composite-aroc-a-h.svg +++ b/assets/images/composite-aroc-a-h.svg @@ -1,141 +1,141 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/composite-ez-f.svg b/assets/images/composite-ez-f.svg index ae856a07..f644536e 100644 --- a/assets/images/composite-ez-f.svg +++ b/assets/images/composite-ez-f.svg @@ -1,106 +1,106 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/composite-ez-g.svg b/assets/images/composite-ez-g.svg index fafc3160..0f67de79 100644 --- a/assets/images/composite-ez-g.svg +++ b/assets/images/composite-ez-g.svg @@ -1,89 +1,89 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/e-2-e-3.svg b/assets/images/e-2-e-3.svg index dfc8a17b..218a3872 100644 --- a/assets/images/e-2-e-3.svg +++ b/assets/images/e-2-e-3.svg @@ -1,127 +1,127 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/e-b-k.svg b/assets/images/e-b-k.svg index 11f66610..a071e9fc 100644 --- a/assets/images/e-b-k.svg +++ b/assets/images/e-b-k.svg @@ -1,158 +1,158 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/e-base-compression.svg b/assets/images/e-base-compression.svg index 776ae559..b54a28e5 100644 --- a/assets/images/e-base-compression.svg +++ b/assets/images/e-base-compression.svg @@ -1,121 +1,121 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/exp-log-blank-axes.svg b/assets/images/exp-log-blank-axes.svg index 28c8b879..f65c1f63 100644 --- a/assets/images/exp-log-blank-axes.svg +++ b/assets/images/exp-log-blank-axes.svg @@ -1,97 +1,97 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/finding-angles-ex-1.svg b/assets/images/finding-angles-ex-1.svg index 8c6120fa..dd30017c 100644 --- a/assets/images/finding-angles-ex-1.svg +++ b/assets/images/finding-angles-ex-1.svg @@ -1,35 +1,35 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/functions-Dolbears-Law.svg b/assets/images/functions-Dolbears-Law.svg index dc2905d3..9ed25a17 100644 --- a/assets/images/functions-Dolbears-Law.svg +++ b/assets/images/functions-Dolbears-Law.svg @@ -1,246 +1,246 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/functions-act-is-it-1.svg b/assets/images/functions-act-is-it-1.svg index 878e0dc2..df3818f1 100644 --- a/assets/images/functions-act-is-it-1.svg +++ b/assets/images/functions-act-is-it-1.svg @@ -1,140 +1,140 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/functions-act-is-it-2.svg b/assets/images/functions-act-is-it-2.svg index fafc3160..0f67de79 100644 --- a/assets/images/functions-act-is-it-2.svg +++ b/assets/images/functions-act-is-it-2.svg @@ -1,89 +1,89 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/functions-ez-velocity.svg b/assets/images/functions-ez-velocity.svg index d8643319..898a1adb 100644 --- a/assets/images/functions-ez-velocity.svg +++ b/assets/images/functions-ez-velocity.svg @@ -1,156 +1,156 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/functions-quadratic-example-data.svg b/assets/images/functions-quadratic-example-data.svg index 9a709aa3..c8424010 100644 --- a/assets/images/functions-quadratic-example-data.svg +++ b/assets/images/functions-quadratic-example-data.svg @@ -1,164 +1,164 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/functions-quadratic-model-data.svg b/assets/images/functions-quadratic-model-data.svg index ccfbdc78..d5e7da4c 100644 --- a/assets/images/functions-quadratic-model-data.svg +++ b/assets/images/functions-quadratic-model-data.svg @@ -1,162 +1,162 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/functions-y-x-blank-axes-centered-2.svg b/assets/images/functions-y-x-blank-axes-centered-2.svg index f400ae24..66e201e7 100644 --- a/assets/images/functions-y-x-blank-axes-centered-2.svg +++ b/assets/images/functions-y-x-blank-axes-centered-2.svg @@ -1,44 +1,44 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/functions-y-x-blank-axes-centered-low.svg b/assets/images/functions-y-x-blank-axes-centered-low.svg index 76bc64fd..15595a8f 100644 --- a/assets/images/functions-y-x-blank-axes-centered-low.svg +++ b/assets/images/functions-y-x-blank-axes-centered-low.svg @@ -1,44 +1,44 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/functions-y-x-blank-axes-centered.svg b/assets/images/functions-y-x-blank-axes-centered.svg index f9a10608..3b80c7d3 100644 --- a/assets/images/functions-y-x-blank-axes-centered.svg +++ b/assets/images/functions-y-x-blank-axes-centered.svg @@ -1,44 +1,44 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/functions-y-x-blank-axes.svg b/assets/images/functions-y-x-blank-axes.svg index a02b113b..104322ff 100644 --- a/assets/images/functions-y-x-blank-axes.svg +++ b/assets/images/functions-y-x-blank-axes.svg @@ -1,44 +1,44 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/growth-PA-blank-axes.svg b/assets/images/growth-PA-blank-axes.svg index 9b59030b..c4a5c5e2 100644 --- a/assets/images/growth-PA-blank-axes.svg +++ b/assets/images/growth-PA-blank-axes.svg @@ -1,41 +1,41 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/growth-act-a-b-t.svg b/assets/images/growth-act-a-b-t.svg index 4c06be96..c798f318 100644 --- a/assets/images/growth-act-a-b-t.svg +++ b/assets/images/growth-act-a-b-t.svg @@ -1,49 +1,49 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/growth-decr-CCU.svg b/assets/images/growth-decr-CCU.svg index 4d6670d8..330b8011 100644 --- a/assets/images/growth-decr-CCU.svg +++ b/assets/images/growth-decr-CCU.svg @@ -1,38 +1,38 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/growth-ez-find-a-b.svg b/assets/images/growth-ez-find-a-b.svg index 48aca622..655b9e67 100644 --- a/assets/images/growth-ez-find-a-b.svg +++ b/assets/images/growth-ez-find-a-b.svg @@ -1,200 +1,200 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/growth-find-a-b.svg b/assets/images/growth-find-a-b.svg index 1332cf52..f747bc66 100644 --- a/assets/images/growth-find-a-b.svg +++ b/assets/images/growth-find-a-b.svg @@ -1,198 +1,198 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/growth-incr-CCU.svg b/assets/images/growth-incr-CCU.svg index 14a0893e..39410dfd 100644 --- a/assets/images/growth-incr-CCU.svg +++ b/assets/images/growth-incr-CCU.svg @@ -1,38 +1,38 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/infty-VA-0-HA-0.svg b/assets/images/infty-VA-0-HA-0.svg index 49c85cac..7c219c08 100644 --- a/assets/images/infty-VA-0-HA-0.svg +++ b/assets/images/infty-VA-0-HA-0.svg @@ -1,118 +1,118 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/infty-VA-1-HA-2.svg b/assets/images/infty-VA-1-HA-2.svg index f02f7689..c87dcfa0 100644 --- a/assets/images/infty-VA-1-HA-2.svg +++ b/assets/images/infty-VA-1-HA-2.svg @@ -1,135 +1,135 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/infty-exp-reflection.svg b/assets/images/infty-exp-reflection.svg index 20eb2fd5..5e3456c6 100644 --- a/assets/images/infty-exp-reflection.svg +++ b/assets/images/infty-exp-reflection.svg @@ -1,126 +1,126 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/infty-log-graph.svg b/assets/images/infty-log-graph.svg index 917bdf01..e400342d 100644 --- a/assets/images/infty-log-graph.svg +++ b/assets/images/infty-log-graph.svg @@ -1,158 +1,158 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/inv-trig-cosarcsin.svg b/assets/images/inv-trig-cosarcsin.svg index 17fba73c..3522f18e 100644 --- a/assets/images/inv-trig-cosarcsin.svg +++ b/assets/images/inv-trig-cosarcsin.svg @@ -1,37 +1,37 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/inv-trig-cosarctan.svg b/assets/images/inv-trig-cosarctan.svg index 00593f20..cdeb2f9f 100644 --- a/assets/images/inv-trig-cosarctan.svg +++ b/assets/images/inv-trig-cosarctan.svg @@ -1,37 +1,37 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/inverse-act-does-it-1.svg b/assets/images/inverse-act-does-it-1.svg index ffd1700b..aa0ad2d3 100644 --- a/assets/images/inverse-act-does-it-1.svg +++ b/assets/images/inverse-act-does-it-1.svg @@ -1,112 +1,112 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/inverse-act-does-it-2.svg b/assets/images/inverse-act-does-it-2.svg index 605050e5..a54f5aba 100644 --- a/assets/images/inverse-act-does-it-2.svg +++ b/assets/images/inverse-act-does-it-2.svg @@ -1,130 +1,130 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/inverse-cubic.svg b/assets/images/inverse-cubic.svg index 876dbf44..0393cac4 100644 --- a/assets/images/inverse-cubic.svg +++ b/assets/images/inverse-cubic.svg @@ -1,89 +1,89 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/inverse-does-it-1.svg b/assets/images/inverse-does-it-1.svg index 2dc79888..5f3dc0e6 100644 --- a/assets/images/inverse-does-it-1.svg +++ b/assets/images/inverse-does-it-1.svg @@ -1,69 +1,69 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/inverse-does-it-2.svg b/assets/images/inverse-does-it-2.svg index 555bbb9c..274fdb71 100644 --- a/assets/images/inverse-does-it-2.svg +++ b/assets/images/inverse-does-it-2.svg @@ -1,78 +1,78 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/inverse-ez-p-q.svg b/assets/images/inverse-ez-p-q.svg index aae8c964..8a054746 100644 --- a/assets/images/inverse-ez-p-q.svg +++ b/assets/images/inverse-ez-p-q.svg @@ -1,119 +1,119 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/inverse-plot-reflection.svg b/assets/images/inverse-plot-reflection.svg index f09a48c7..5b4d9536 100755 --- a/assets/images/inverse-plot-reflection.svg +++ b/assets/images/inverse-plot-reflection.svg @@ -1,222 +1,222 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/inverse-quadratic.svg b/assets/images/inverse-quadratic.svg index 06d828b9..f44c92e1 100644 --- a/assets/images/inverse-quadratic.svg +++ b/assets/images/inverse-quadratic.svg @@ -1,89 +1,89 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/inverse-tan-graph.svg b/assets/images/inverse-tan-graph.svg index d6b3eb97..6eb1b0fc 100644 --- a/assets/images/inverse-tan-graph.svg +++ b/assets/images/inverse-tan-graph.svg @@ -1,140 +1,140 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/inverse-trig-PA-cosine.svg b/assets/images/inverse-trig-PA-cosine.svg index 169d1a10..0f033f30 100644 --- a/assets/images/inverse-trig-PA-cosine.svg +++ b/assets/images/inverse-trig-PA-cosine.svg @@ -1,204 +1,204 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/inverse-trig-arccos-graph.svg b/assets/images/inverse-trig-arccos-graph.svg index 1ebb8309..56e0976c 100644 --- a/assets/images/inverse-trig-arccos-graph.svg +++ b/assets/images/inverse-trig-arccos-graph.svg @@ -1,298 +1,298 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/inverse-trig-arcsin-graph.svg b/assets/images/inverse-trig-arcsin-graph.svg index 1af51c56..054c1bb7 100644 --- a/assets/images/inverse-trig-arcsin-graph.svg +++ b/assets/images/inverse-trig-arcsin-graph.svg @@ -1,280 +1,280 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/inverse-trig-arctan-graph.svg b/assets/images/inverse-trig-arctan-graph.svg index ce0f36fe..b26fb4ac 100644 --- a/assets/images/inverse-trig-arctan-graph.svg +++ b/assets/images/inverse-trig-arctan-graph.svg @@ -1,267 +1,267 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/inverse-trig-blank-axes-arcsin.svg b/assets/images/inverse-trig-blank-axes-arcsin.svg index e59307ca..6aeded34 100644 --- a/assets/images/inverse-trig-blank-axes-arcsin.svg +++ b/assets/images/inverse-trig-blank-axes-arcsin.svg @@ -1,63 +1,63 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/linear-Dolbears-Law-slope.svg b/assets/images/linear-Dolbears-Law-slope.svg index f881d77d..f4ffd4bd 100644 --- a/assets/images/linear-Dolbears-Law-slope.svg +++ b/assets/images/linear-Dolbears-Law-slope.svg @@ -1,297 +1,297 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/linear-PA-ex-3.svg b/assets/images/linear-PA-ex-3.svg index 8a4976ed..3deaa957 100644 --- a/assets/images/linear-PA-ex-3.svg +++ b/assets/images/linear-PA-ex-3.svg @@ -1,110 +1,110 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/linear-ez-walkers.svg b/assets/images/linear-ez-walkers.svg index be81458d..bf37c150 100644 --- a/assets/images/linear-ez-walkers.svg +++ b/assets/images/linear-ez-walkers.svg @@ -1,204 +1,204 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/linear-point-slope.svg b/assets/images/linear-point-slope.svg index e0525513..53ae6d81 100644 --- a/assets/images/linear-point-slope.svg +++ b/assets/images/linear-point-slope.svg @@ -1,168 +1,168 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/linear-slope-intercept.svg b/assets/images/linear-slope-intercept.svg index c3fa0416..73e2f598 100644 --- a/assets/images/linear-slope-intercept.svg +++ b/assets/images/linear-slope-intercept.svg @@ -1,147 +1,147 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/log-graph-1.svg b/assets/images/log-graph-1.svg index 816678f3..538f91f6 100644 --- a/assets/images/log-graph-1.svg +++ b/assets/images/log-graph-1.svg @@ -1,294 +1,294 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/log-graph-2.svg b/assets/images/log-graph-2.svg index fe58faf3..78215374 100644 --- a/assets/images/log-graph-2.svg +++ b/assets/images/log-graph-2.svg @@ -1,158 +1,158 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/modeling-F-t-blank-axes.svg b/assets/images/modeling-F-t-blank-axes.svg index 13feca7a..b9baba72 100644 --- a/assets/images/modeling-F-t-blank-axes.svg +++ b/assets/images/modeling-F-t-blank-axes.svg @@ -1,38 +1,38 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/modeling-coffee-original.svg b/assets/images/modeling-coffee-original.svg index 83a9368c..74c77b2e 100644 --- a/assets/images/modeling-coffee-original.svg +++ b/assets/images/modeling-coffee-original.svg @@ -1,225 +1,225 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/modeling-coffee-shifted.svg b/assets/images/modeling-coffee-shifted.svg index 9afc1c0b..f4071459 100644 --- a/assets/images/modeling-coffee-shifted.svg +++ b/assets/images/modeling-coffee-shifted.svg @@ -1,228 +1,228 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/modeling-exp-coffee.svg b/assets/images/modeling-exp-coffee.svg index 05daecf8..0ea88a64 100644 --- a/assets/images/modeling-exp-coffee.svg +++ b/assets/images/modeling-exp-coffee.svg @@ -1,204 +1,204 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/modeling-exp-ez-p.svg b/assets/images/modeling-exp-ez-p.svg index 9acd665a..b7825f6a 100644 --- a/assets/images/modeling-exp-ez-p.svg +++ b/assets/images/modeling-exp-ez-p.svg @@ -1,43 +1,43 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/modeling-exp-ez-q.svg b/assets/images/modeling-exp-ez-q.svg index bb8d02bf..f824370d 100644 --- a/assets/images/modeling-exp-ez-q.svg +++ b/assets/images/modeling-exp-ez-q.svg @@ -1,37 +1,37 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/modeling-exp-ez-r.svg b/assets/images/modeling-exp-ez-r.svg index 1f0ab33c..07e84cae 100644 --- a/assets/images/modeling-exp-ez-r.svg +++ b/assets/images/modeling-exp-ez-r.svg @@ -1,43 +1,43 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/modeling-exp-ez-s.svg b/assets/images/modeling-exp-ez-s.svg index 7396d359..8c35d237 100644 --- a/assets/images/modeling-exp-ez-s.svg +++ b/assets/images/modeling-exp-ez-s.svg @@ -1,43 +1,43 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/modeling-exp-reflection.svg b/assets/images/modeling-exp-reflection.svg index 2135e0d6..936e5f54 100644 --- a/assets/images/modeling-exp-reflection.svg +++ b/assets/images/modeling-exp-reflection.svg @@ -1,90 +1,90 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/modeling-vert-transl-0.svg b/assets/images/modeling-vert-transl-0.svg index e912c259..4e34ce69 100644 --- a/assets/images/modeling-vert-transl-0.svg +++ b/assets/images/modeling-vert-transl-0.svg @@ -1,116 +1,116 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/modeling-vert-transl-c.svg b/assets/images/modeling-vert-transl-c.svg index 89f54696..931c8744 100644 --- a/assets/images/modeling-vert-transl-c.svg +++ b/assets/images/modeling-vert-transl-c.svg @@ -1,144 +1,144 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/other-cot-definition-graph.svg b/assets/images/other-cot-definition-graph.svg index fcded2e7..f09d8d5b 100644 --- a/assets/images/other-cot-definition-graph.svg +++ b/assets/images/other-cot-definition-graph.svg @@ -1,288 +1,288 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/other-csc-activity-graph.svg b/assets/images/other-csc-activity-graph.svg index fa42abb7..ea8dd51c 100644 --- a/assets/images/other-csc-activity-graph.svg +++ b/assets/images/other-csc-activity-graph.svg @@ -1,291 +1,291 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/other-right-triangle-3-4-5.svg b/assets/images/other-right-triangle-3-4-5.svg index 80e13aaf..d46472e1 100644 --- a/assets/images/other-right-triangle-3-4-5.svg +++ b/assets/images/other-right-triangle-3-4-5.svg @@ -1,98 +1,98 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/other-sec-definition-graph.svg b/assets/images/other-sec-definition-graph.svg index 18ddbf8b..cb73c04b 100644 --- a/assets/images/other-sec-definition-graph.svg +++ b/assets/images/other-sec-definition-graph.svg @@ -1,375 +1,375 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/poly-degree-7-far.svg b/assets/images/poly-degree-7-far.svg index 879ecac1..fd763dfe 100644 --- a/assets/images/poly-degree-7-far.svg +++ b/assets/images/poly-degree-7-far.svg @@ -1,123 +1,123 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/poly-degree-7-near.svg b/assets/images/poly-degree-7-near.svg index 5c7f236a..84198edc 100644 --- a/assets/images/poly-degree-7-near.svg +++ b/assets/images/poly-degree-7-near.svg @@ -1,117 +1,117 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/poly-degree-9.svg b/assets/images/poly-degree-9.svg index db1bf213..1f34d3a6 100644 --- a/assets/images/poly-degree-9.svg +++ b/assets/images/poly-degree-9.svg @@ -1,117 +1,117 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/poly-ez-g.svg b/assets/images/poly-ez-g.svg index d2a9fd52..0b488610 100644 --- a/assets/images/poly-ez-g.svg +++ b/assets/images/poly-ez-g.svg @@ -1,142 +1,142 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/poly-sign-chart-2.svg b/assets/images/poly-sign-chart-2.svg index 44511cdc..526a1360 100644 --- a/assets/images/poly-sign-chart-2.svg +++ b/assets/images/poly-sign-chart-2.svg @@ -1,142 +1,142 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/polynomial-1-1-1-1.svg b/assets/images/polynomial-1-1-1-1.svg index bca61d45..c216f22a 100644 --- a/assets/images/polynomial-1-1-1-1.svg +++ b/assets/images/polynomial-1-1-1-1.svg @@ -1,160 +1,160 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/polynomial-2-1-1.svg b/assets/images/polynomial-2-1-1.svg index a5fe0683..f4d405b7 100644 --- a/assets/images/polynomial-2-1-1.svg +++ b/assets/images/polynomial-2-1-1.svg @@ -1,149 +1,149 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/polynomial-2-2.svg b/assets/images/polynomial-2-2.svg index 35138745..3c108125 100644 --- a/assets/images/polynomial-2-2.svg +++ b/assets/images/polynomial-2-2.svg @@ -1,132 +1,132 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/polynomial-3-1-1.eps b/assets/images/polynomial-3-1-1.eps index 4e9abf32..2ce04084 100644 --- a/assets/images/polynomial-3-1-1.eps +++ b/assets/images/polynomial-3-1-1.eps @@ -1,208 +1,208 @@ -%!PS-Adobe-2.0 EPSF-3.0 -%%BoundingBox: 0 0 150 150 -%%Pages: 1 -%%PageOrder: Ascend - -%%BeginProlog -%%BeginProcSet: -/ReEncodeFont { exch findfont << >> copy dup 3 2 roll /Encoding exch put definefont } def -%%EndProcSet -%%EndProlog -%%Page: 1 1 -gsave -newpath -0.0e+00 0.0e+00 moveto -1.5e+02 0.0e+00 lineto -1.5e+02 1.5e+02 lineto -0.0e+00 1.5e+02 lineto -closepath -clip -gsave -clip -newpath -gsave -newpath -5.0e+00 7.5e+01 moveto -1.45e+02 7.5e+01 lineto --1.0e+02 5.0e+00 moveto --1.0e+02 1.45e+02 lineto -gsave -1 setlinewidth -gsave -0 0 0 setrgbcolor -stroke -grestore -grestore -newpath -5.0e+00 5.0e+00 moveto -1.45e+02 5.0e+00 lineto -1.45e+02 1.45e+02 lineto -5.0e+00 1.45e+02 lineto -closepath -gsave -1 setlinewidth -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -grestore -newpath -5.0e+00 5.0e+00 moveto -1.45e+02 5.0e+00 lineto -1.45e+02 1.45e+02 lineto -5.0e+00 1.45e+02 lineto -closepath -clip -newpath -5.0e+00 5.988e+01 moveto -5.0e+00 5.988e+01 lineto -6.4e+00 5.958176e+01 lineto -7.8e+00 5.929234e+01 lineto -9.2e+00 5.901253e+01 lineto -1.06e+01 5.874312e+01 lineto -1.2e+01 5.848493e+01 lineto -1.34e+01 5.823878e+01 lineto -1.48e+01 5.800551e+01 lineto -1.62e+01 5.778601e+01 lineto -1.76e+01 5.758114e+01 lineto -1.9e+01 5.739181e+01 lineto -2.04e+01 5.721893e+01 lineto -2.18e+01 5.706343e+01 lineto -2.32e+01 5.692627e+01 lineto -2.46e+01 5.680842e+01 lineto -2.6e+01 5.671085e+01 lineto -2.74e+01 5.663457e+01 lineto -2.88e+01 5.65806e+01 lineto -3.02e+01 5.654998e+01 lineto -3.16e+01 5.654376e+01 lineto -3.3e+01 5.656301e+01 lineto -3.44e+01 5.660882e+01 lineto -3.58e+01 5.668229e+01 lineto -3.72e+01 5.678455e+01 lineto -3.86e+01 5.691673e+01 lineto -4.0e+01 5.708e+01 lineto -4.14e+01 5.727553e+01 lineto -4.28e+01 5.75045e+01 lineto -4.42e+01 5.776813e+01 lineto -4.56e+01 5.806765e+01 lineto -4.7e+01 5.840429e+01 lineto -4.84e+01 5.877931e+01 lineto -4.98e+01 5.919401e+01 lineto -5.12e+01 5.964965e+01 lineto -5.26e+01 6.014757e+01 lineto -5.4e+01 6.068909e+01 lineto -5.54e+01 6.127555e+01 lineto -5.68e+01 6.190832e+01 lineto -5.82e+01 6.258878e+01 lineto -5.96e+01 6.331832e+01 lineto -6.1e+01 6.409837e+01 lineto -6.24e+01 6.493035e+01 lineto -6.38e+01 6.581571e+01 lineto -6.52e+01 6.675592e+01 lineto -6.66e+01 6.775247e+01 lineto -6.8e+01 6.880685e+01 lineto -6.94e+01 6.992058e+01 lineto -7.08e+01 7.10952e+01 lineto -7.22e+01 7.233226e+01 lineto -7.36e+01 7.363333e+01 lineto -7.5e+01 7.5e+01 lineto -7.64e+01 7.643387e+01 lineto -7.78e+01 7.793656e+01 lineto -7.92e+01 7.950972e+01 lineto -8.06e+01 8.115499e+01 lineto -8.2e+01 8.287405e+01 lineto -8.34e+01 8.466859e+01 lineto -8.48e+01 8.654032e+01 lineto -8.62e+01 8.849096e+01 lineto -8.76e+01 9.052226e+01 lineto -8.9e+01 9.263597e+01 lineto -9.04e+01 9.483387e+01 lineto -9.18e+01 9.711775e+01 lineto -9.32e+01 9.948943e+01 lineto -9.46e+01 1.019507e+02 lineto -9.6e+01 1.045035e+02 lineto -9.74e+01 1.071496e+02 lineto -9.88e+01 1.098909e+02 lineto -1.002e+02 1.127293e+02 lineto -1.016e+02 1.156667e+02 lineto -1.03e+02 1.187051e+02 lineto -1.044e+02 1.218464e+02 lineto -1.058e+02 1.250925e+02 lineto -1.072e+02 1.284455e+02 lineto -1.086e+02 1.319073e+02 lineto -1.1e+02 1.3548e+02 lineto -1.114e+02 1.391656e+02 lineto -1.128e+02 1.429661e+02 lineto -1.142e+02 1.468837e+02 lineto -1.156e+02 1.509203e+02 lineto -1.17e+02 1.550782e+02 lineto -1.184e+02 1.593594e+02 lineto -1.198e+02 1.637661e+02 lineto -1.212e+02 1.683003e+02 lineto -1.226e+02 1.729644e+02 lineto -1.24e+02 1.777604e+02 lineto -1.254e+02 1.826907e+02 lineto -1.268e+02 1.877573e+02 lineto -1.282e+02 1.929626e+02 lineto -1.296e+02 1.983088e+02 lineto -1.31e+02 2.037982e+02 lineto -1.324e+02 2.094331e+02 lineto -1.338e+02 2.152157e+02 lineto -1.352e+02 2.211485e+02 lineto -1.366e+02 2.272337e+02 lineto -1.38e+02 2.334737e+02 lineto -1.394e+02 2.39871e+02 lineto -1.408e+02 2.464278e+02 lineto -1.422e+02 2.531466e+02 lineto -1.436e+02 2.600299e+02 lineto -1.45e+02 2.6708e+02 lineto -gsave -1.5e+00 setlinewidth -gsave -0 0 5.0e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.7e+01 7.5e+01 moveto -7.7e+01 7.610457e+01 7.610457e+01 7.7e+01 7.5e+01 7.7e+01 curveto -7.5e+01 7.7e+01 lineto -7.389543e+01 7.7e+01 7.3e+01 7.610457e+01 7.3e+01 7.5e+01 curveto -7.3e+01 7.5e+01 lineto -7.3e+01 7.389543e+01 7.389543e+01 7.3e+01 7.5e+01 7.3e+01 curveto -7.5e+01 7.3e+01 lineto -7.610457e+01 7.3e+01 7.7e+01 7.389543e+01 7.7e+01 7.5e+01 curveto -closepath -gsave -1 0 1 setrgbcolor -fill -grestore -grestore -gsave -newpath -7.7e+01 7.5e+01 moveto -7.7e+01 7.610457e+01 7.610457e+01 7.7e+01 7.5e+01 7.7e+01 curveto -7.5e+01 7.7e+01 lineto -7.389543e+01 7.7e+01 7.3e+01 7.610457e+01 7.3e+01 7.5e+01 curveto -7.3e+01 7.5e+01 lineto -7.3e+01 7.389543e+01 7.389543e+01 7.3e+01 7.5e+01 7.3e+01 curveto -7.5e+01 7.3e+01 lineto -7.610457e+01 7.3e+01 7.7e+01 7.389543e+01 7.7e+01 7.5e+01 curveto -closepath -gsave -1 setlinewidth -gsave -0 0 0 setrgbcolor -stroke -grestore -grestore -grestore -grestore -grestore -grestore showpage - -% --------------------------------------------------------- - -%%Trailer -%%EOF +%!PS-Adobe-2.0 EPSF-3.0 +%%BoundingBox: 0 0 150 150 +%%Pages: 1 +%%PageOrder: Ascend + +%%BeginProlog +%%BeginProcSet: +/ReEncodeFont { exch findfont << >> copy dup 3 2 roll /Encoding exch put definefont } def +%%EndProcSet +%%EndProlog +%%Page: 1 1 +gsave +newpath +0.0e+00 0.0e+00 moveto +1.5e+02 0.0e+00 lineto +1.5e+02 1.5e+02 lineto +0.0e+00 1.5e+02 lineto +closepath +clip +gsave +clip +newpath +gsave +newpath +5.0e+00 7.5e+01 moveto +1.45e+02 7.5e+01 lineto +-1.0e+02 5.0e+00 moveto +-1.0e+02 1.45e+02 lineto +gsave +1 setlinewidth +gsave +0 0 0 setrgbcolor +stroke +grestore +grestore +newpath +5.0e+00 5.0e+00 moveto +1.45e+02 5.0e+00 lineto +1.45e+02 1.45e+02 lineto +5.0e+00 1.45e+02 lineto +closepath +gsave +1 setlinewidth +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +grestore +newpath +5.0e+00 5.0e+00 moveto +1.45e+02 5.0e+00 lineto +1.45e+02 1.45e+02 lineto +5.0e+00 1.45e+02 lineto +closepath +clip +newpath +5.0e+00 5.988e+01 moveto +5.0e+00 5.988e+01 lineto +6.4e+00 5.958176e+01 lineto +7.8e+00 5.929234e+01 lineto +9.2e+00 5.901253e+01 lineto +1.06e+01 5.874312e+01 lineto +1.2e+01 5.848493e+01 lineto +1.34e+01 5.823878e+01 lineto +1.48e+01 5.800551e+01 lineto +1.62e+01 5.778601e+01 lineto +1.76e+01 5.758114e+01 lineto +1.9e+01 5.739181e+01 lineto +2.04e+01 5.721893e+01 lineto +2.18e+01 5.706343e+01 lineto +2.32e+01 5.692627e+01 lineto +2.46e+01 5.680842e+01 lineto +2.6e+01 5.671085e+01 lineto +2.74e+01 5.663457e+01 lineto +2.88e+01 5.65806e+01 lineto +3.02e+01 5.654998e+01 lineto +3.16e+01 5.654376e+01 lineto +3.3e+01 5.656301e+01 lineto +3.44e+01 5.660882e+01 lineto +3.58e+01 5.668229e+01 lineto +3.72e+01 5.678455e+01 lineto +3.86e+01 5.691673e+01 lineto +4.0e+01 5.708e+01 lineto +4.14e+01 5.727553e+01 lineto +4.28e+01 5.75045e+01 lineto +4.42e+01 5.776813e+01 lineto +4.56e+01 5.806765e+01 lineto +4.7e+01 5.840429e+01 lineto +4.84e+01 5.877931e+01 lineto +4.98e+01 5.919401e+01 lineto +5.12e+01 5.964965e+01 lineto +5.26e+01 6.014757e+01 lineto +5.4e+01 6.068909e+01 lineto +5.54e+01 6.127555e+01 lineto +5.68e+01 6.190832e+01 lineto +5.82e+01 6.258878e+01 lineto +5.96e+01 6.331832e+01 lineto +6.1e+01 6.409837e+01 lineto +6.24e+01 6.493035e+01 lineto +6.38e+01 6.581571e+01 lineto +6.52e+01 6.675592e+01 lineto +6.66e+01 6.775247e+01 lineto +6.8e+01 6.880685e+01 lineto +6.94e+01 6.992058e+01 lineto +7.08e+01 7.10952e+01 lineto +7.22e+01 7.233226e+01 lineto +7.36e+01 7.363333e+01 lineto +7.5e+01 7.5e+01 lineto +7.64e+01 7.643387e+01 lineto +7.78e+01 7.793656e+01 lineto +7.92e+01 7.950972e+01 lineto +8.06e+01 8.115499e+01 lineto +8.2e+01 8.287405e+01 lineto +8.34e+01 8.466859e+01 lineto +8.48e+01 8.654032e+01 lineto +8.62e+01 8.849096e+01 lineto +8.76e+01 9.052226e+01 lineto +8.9e+01 9.263597e+01 lineto +9.04e+01 9.483387e+01 lineto +9.18e+01 9.711775e+01 lineto +9.32e+01 9.948943e+01 lineto +9.46e+01 1.019507e+02 lineto +9.6e+01 1.045035e+02 lineto +9.74e+01 1.071496e+02 lineto +9.88e+01 1.098909e+02 lineto +1.002e+02 1.127293e+02 lineto +1.016e+02 1.156667e+02 lineto +1.03e+02 1.187051e+02 lineto +1.044e+02 1.218464e+02 lineto +1.058e+02 1.250925e+02 lineto +1.072e+02 1.284455e+02 lineto +1.086e+02 1.319073e+02 lineto +1.1e+02 1.3548e+02 lineto +1.114e+02 1.391656e+02 lineto +1.128e+02 1.429661e+02 lineto +1.142e+02 1.468837e+02 lineto +1.156e+02 1.509203e+02 lineto +1.17e+02 1.550782e+02 lineto +1.184e+02 1.593594e+02 lineto +1.198e+02 1.637661e+02 lineto +1.212e+02 1.683003e+02 lineto +1.226e+02 1.729644e+02 lineto +1.24e+02 1.777604e+02 lineto +1.254e+02 1.826907e+02 lineto +1.268e+02 1.877573e+02 lineto +1.282e+02 1.929626e+02 lineto +1.296e+02 1.983088e+02 lineto +1.31e+02 2.037982e+02 lineto +1.324e+02 2.094331e+02 lineto +1.338e+02 2.152157e+02 lineto +1.352e+02 2.211485e+02 lineto +1.366e+02 2.272337e+02 lineto +1.38e+02 2.334737e+02 lineto +1.394e+02 2.39871e+02 lineto +1.408e+02 2.464278e+02 lineto +1.422e+02 2.531466e+02 lineto +1.436e+02 2.600299e+02 lineto +1.45e+02 2.6708e+02 lineto +gsave +1.5e+00 setlinewidth +gsave +0 0 5.0e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.7e+01 7.5e+01 moveto +7.7e+01 7.610457e+01 7.610457e+01 7.7e+01 7.5e+01 7.7e+01 curveto +7.5e+01 7.7e+01 lineto +7.389543e+01 7.7e+01 7.3e+01 7.610457e+01 7.3e+01 7.5e+01 curveto +7.3e+01 7.5e+01 lineto +7.3e+01 7.389543e+01 7.389543e+01 7.3e+01 7.5e+01 7.3e+01 curveto +7.5e+01 7.3e+01 lineto +7.610457e+01 7.3e+01 7.7e+01 7.389543e+01 7.7e+01 7.5e+01 curveto +closepath +gsave +1 0 1 setrgbcolor +fill +grestore +grestore +gsave +newpath +7.7e+01 7.5e+01 moveto +7.7e+01 7.610457e+01 7.610457e+01 7.7e+01 7.5e+01 7.7e+01 curveto +7.5e+01 7.7e+01 lineto +7.389543e+01 7.7e+01 7.3e+01 7.610457e+01 7.3e+01 7.5e+01 curveto +7.3e+01 7.5e+01 lineto +7.3e+01 7.389543e+01 7.389543e+01 7.3e+01 7.5e+01 7.3e+01 curveto +7.5e+01 7.3e+01 lineto +7.610457e+01 7.3e+01 7.7e+01 7.389543e+01 7.7e+01 7.5e+01 curveto +closepath +gsave +1 setlinewidth +gsave +0 0 0 setrgbcolor +stroke +grestore +grestore +grestore +grestore +grestore +grestore showpage + +% --------------------------------------------------------- + +%%Trailer +%%EOF diff --git a/assets/images/polynomial-3-1-1.svg b/assets/images/polynomial-3-1-1.svg index ef86930c..6a2cf8a2 100644 --- a/assets/images/polynomial-3-1-1.svg +++ b/assets/images/polynomial-3-1-1.svg @@ -1,17 +1,17 @@ - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + diff --git a/assets/images/polynomial-3-1-3.eps b/assets/images/polynomial-3-1-3.eps index bd6a72aa..d7a68203 100644 --- a/assets/images/polynomial-3-1-3.eps +++ b/assets/images/polynomial-3-1-3.eps @@ -1,208 +1,208 @@ -%!PS-Adobe-2.0 EPSF-3.0 -%%BoundingBox: 0 0 150 150 -%%Pages: 1 -%%PageOrder: Ascend - -%%BeginProlog -%%BeginProcSet: -/ReEncodeFont { exch findfont << >> copy dup 3 2 roll /Encoding exch put definefont } def -%%EndProcSet -%%EndProlog -%%Page: 1 1 -gsave -newpath -0.0e+00 0.0e+00 moveto -1.5e+02 0.0e+00 lineto -1.5e+02 1.5e+02 lineto -0.0e+00 1.5e+02 lineto -closepath -clip -gsave -clip -newpath -gsave -newpath -5.0e+00 7.5e+01 moveto -1.45e+02 7.5e+01 lineto -7.5e+01 5.0e+00 moveto -7.5e+01 1.45e+02 lineto -gsave -1 setlinewidth -gsave -0 0 0 setrgbcolor -stroke -grestore -grestore -newpath -5.0e+00 5.0e+00 moveto -1.45e+02 5.0e+00 lineto -1.45e+02 1.45e+02 lineto -5.0e+00 1.45e+02 lineto -closepath -gsave -1 setlinewidth -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -grestore -newpath -5.0e+00 5.0e+00 moveto -1.45e+02 5.0e+00 lineto -1.45e+02 1.45e+02 lineto -5.0e+00 1.45e+02 lineto -closepath -clip -newpath -5.0e+00 9.068e+01 moveto -5.0e+00 9.068e+01 lineto -6.4e+00 8.967356e+01 lineto -7.8e+00 8.871412e+01 lineto -9.2e+00 8.78003e+01 lineto -1.06e+01 8.693075e+01 lineto -1.2e+01 8.610413e+01 lineto -1.34e+01 8.531912e+01 lineto -1.48e+01 8.457442e+01 lineto -1.62e+01 8.386875e+01 lineto -1.76e+01 8.320083e+01 lineto -1.9e+01 8.256941e+01 lineto -2.04e+01 8.197326e+01 lineto -2.18e+01 8.141116e+01 lineto -2.32e+01 8.088191e+01 lineto -2.46e+01 8.038433e+01 lineto -2.6e+01 7.991725e+01 lineto -2.74e+01 7.947952e+01 lineto -2.88e+01 7.907002e+01 lineto -3.02e+01 7.868763e+01 lineto -3.16e+01 7.833125e+01 lineto -3.3e+01 7.799981e+01 lineto -3.44e+01 7.769223e+01 lineto -3.58e+01 7.740748e+01 lineto -3.72e+01 7.714453e+01 lineto -3.86e+01 7.690237e+01 lineto -4.0e+01 7.668e+01 lineto -4.14e+01 7.647645e+01 lineto -4.28e+01 7.629075e+01 lineto -4.42e+01 7.612198e+01 lineto -4.56e+01 7.596919e+01 lineto -4.7e+01 7.583149e+01 lineto -4.84e+01 7.570798e+01 lineto -4.98e+01 7.559779e+01 lineto -5.12e+01 7.550007e+01 lineto -5.26e+01 7.541398e+01 lineto -5.4e+01 7.533869e+01 lineto -5.54e+01 7.52734e+01 lineto -5.68e+01 7.521732e+01 lineto -5.82e+01 7.516969e+01 lineto -5.96e+01 7.512975e+01 lineto -6.1e+01 7.509677e+01 lineto -6.24e+01 7.507002e+01 lineto -6.38e+01 7.504881e+01 lineto -6.52e+01 7.503245e+01 lineto -6.66e+01 7.502028e+01 lineto -6.8e+01 7.501165e+01 lineto -6.94e+01 7.500592e+01 lineto -7.08e+01 7.500248e+01 lineto -7.22e+01 7.500073e+01 lineto -7.36e+01 7.500009e+01 lineto -7.5e+01 7.5e+01 lineto -7.64e+01 7.499991e+01 lineto -7.78e+01 7.499929e+01 lineto -7.92e+01 7.499764e+01 lineto -8.06e+01 7.499445e+01 lineto -8.2e+01 7.498925e+01 lineto -8.34e+01 7.498158e+01 lineto -8.48e+01 7.497099e+01 lineto -8.62e+01 7.495706e+01 lineto -8.76e+01 7.493938e+01 lineto -8.9e+01 7.491757e+01 lineto -9.04e+01 7.489124e+01 lineto -9.18e+01 7.486003e+01 lineto -9.32e+01 7.482362e+01 lineto -9.46e+01 7.478167e+01 lineto -9.6e+01 7.473389e+01 lineto -9.74e+01 7.467997e+01 lineto -9.88e+01 7.461966e+01 lineto -1.002e+02 7.45527e+01 lineto -1.016e+02 7.447885e+01 lineto -1.03e+02 7.439789e+01 lineto -1.044e+02 7.430962e+01 lineto -1.058e+02 7.421385e+01 lineto -1.072e+02 7.411043e+01 lineto -1.086e+02 7.399919e+01 lineto -1.1e+02 7.388e+01 lineto -1.114e+02 7.375275e+01 lineto -1.128e+02 7.361734e+01 lineto -1.142e+02 7.347369e+01 lineto -1.156e+02 7.332172e+01 lineto -1.17e+02 7.316141e+01 lineto -1.184e+02 7.299271e+01 lineto -1.198e+02 7.281561e+01 lineto -1.212e+02 7.263011e+01 lineto -1.226e+02 7.243625e+01 lineto -1.24e+02 7.223405e+01 lineto -1.254e+02 7.202357e+01 lineto -1.268e+02 7.180489e+01 lineto -1.282e+02 7.157809e+01 lineto -1.296e+02 7.134329e+01 lineto -1.31e+02 7.110061e+01 lineto -1.324e+02 7.085018e+01 lineto -1.338e+02 7.059218e+01 lineto -1.352e+02 7.032677e+01 lineto -1.366e+02 7.005415e+01 lineto -1.38e+02 6.977453e+01 lineto -1.394e+02 6.948813e+01 lineto -1.408e+02 6.919521e+01 lineto -1.422e+02 6.889603e+01 lineto -1.436e+02 6.859086e+01 lineto -1.45e+02 6.828e+01 lineto -gsave -1.5e+00 setlinewidth -gsave -0 0 5.0e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.7e+01 7.5e+01 moveto -7.7e+01 7.610457e+01 7.610457e+01 7.7e+01 7.5e+01 7.7e+01 curveto -7.5e+01 7.7e+01 lineto -7.389543e+01 7.7e+01 7.3e+01 7.610457e+01 7.3e+01 7.5e+01 curveto -7.3e+01 7.5e+01 lineto -7.3e+01 7.389543e+01 7.389543e+01 7.3e+01 7.5e+01 7.3e+01 curveto -7.5e+01 7.3e+01 lineto -7.610457e+01 7.3e+01 7.7e+01 7.389543e+01 7.7e+01 7.5e+01 curveto -closepath -gsave -1 0 0 setrgbcolor -fill -grestore -grestore -gsave -newpath -7.7e+01 7.5e+01 moveto -7.7e+01 7.610457e+01 7.610457e+01 7.7e+01 7.5e+01 7.7e+01 curveto -7.5e+01 7.7e+01 lineto -7.389543e+01 7.7e+01 7.3e+01 7.610457e+01 7.3e+01 7.5e+01 curveto -7.3e+01 7.5e+01 lineto -7.3e+01 7.389543e+01 7.389543e+01 7.3e+01 7.5e+01 7.3e+01 curveto -7.5e+01 7.3e+01 lineto -7.610457e+01 7.3e+01 7.7e+01 7.389543e+01 7.7e+01 7.5e+01 curveto -closepath -gsave -1 setlinewidth -gsave -0 0 0 setrgbcolor -stroke -grestore -grestore -grestore -grestore -grestore -grestore showpage - -% --------------------------------------------------------- - -%%Trailer -%%EOF +%!PS-Adobe-2.0 EPSF-3.0 +%%BoundingBox: 0 0 150 150 +%%Pages: 1 +%%PageOrder: Ascend + +%%BeginProlog +%%BeginProcSet: +/ReEncodeFont { exch findfont << >> copy dup 3 2 roll /Encoding exch put definefont } def +%%EndProcSet +%%EndProlog +%%Page: 1 1 +gsave +newpath +0.0e+00 0.0e+00 moveto +1.5e+02 0.0e+00 lineto +1.5e+02 1.5e+02 lineto +0.0e+00 1.5e+02 lineto +closepath +clip +gsave +clip +newpath +gsave +newpath +5.0e+00 7.5e+01 moveto +1.45e+02 7.5e+01 lineto +7.5e+01 5.0e+00 moveto +7.5e+01 1.45e+02 lineto +gsave +1 setlinewidth +gsave +0 0 0 setrgbcolor +stroke +grestore +grestore +newpath +5.0e+00 5.0e+00 moveto +1.45e+02 5.0e+00 lineto +1.45e+02 1.45e+02 lineto +5.0e+00 1.45e+02 lineto +closepath +gsave +1 setlinewidth +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +grestore +newpath +5.0e+00 5.0e+00 moveto +1.45e+02 5.0e+00 lineto +1.45e+02 1.45e+02 lineto +5.0e+00 1.45e+02 lineto +closepath +clip +newpath +5.0e+00 9.068e+01 moveto +5.0e+00 9.068e+01 lineto +6.4e+00 8.967356e+01 lineto +7.8e+00 8.871412e+01 lineto +9.2e+00 8.78003e+01 lineto +1.06e+01 8.693075e+01 lineto +1.2e+01 8.610413e+01 lineto +1.34e+01 8.531912e+01 lineto +1.48e+01 8.457442e+01 lineto +1.62e+01 8.386875e+01 lineto +1.76e+01 8.320083e+01 lineto +1.9e+01 8.256941e+01 lineto +2.04e+01 8.197326e+01 lineto +2.18e+01 8.141116e+01 lineto +2.32e+01 8.088191e+01 lineto +2.46e+01 8.038433e+01 lineto +2.6e+01 7.991725e+01 lineto +2.74e+01 7.947952e+01 lineto +2.88e+01 7.907002e+01 lineto +3.02e+01 7.868763e+01 lineto +3.16e+01 7.833125e+01 lineto +3.3e+01 7.799981e+01 lineto +3.44e+01 7.769223e+01 lineto +3.58e+01 7.740748e+01 lineto +3.72e+01 7.714453e+01 lineto +3.86e+01 7.690237e+01 lineto +4.0e+01 7.668e+01 lineto +4.14e+01 7.647645e+01 lineto +4.28e+01 7.629075e+01 lineto +4.42e+01 7.612198e+01 lineto +4.56e+01 7.596919e+01 lineto +4.7e+01 7.583149e+01 lineto +4.84e+01 7.570798e+01 lineto +4.98e+01 7.559779e+01 lineto +5.12e+01 7.550007e+01 lineto +5.26e+01 7.541398e+01 lineto +5.4e+01 7.533869e+01 lineto +5.54e+01 7.52734e+01 lineto +5.68e+01 7.521732e+01 lineto +5.82e+01 7.516969e+01 lineto +5.96e+01 7.512975e+01 lineto +6.1e+01 7.509677e+01 lineto +6.24e+01 7.507002e+01 lineto +6.38e+01 7.504881e+01 lineto +6.52e+01 7.503245e+01 lineto +6.66e+01 7.502028e+01 lineto +6.8e+01 7.501165e+01 lineto +6.94e+01 7.500592e+01 lineto +7.08e+01 7.500248e+01 lineto +7.22e+01 7.500073e+01 lineto +7.36e+01 7.500009e+01 lineto +7.5e+01 7.5e+01 lineto +7.64e+01 7.499991e+01 lineto +7.78e+01 7.499929e+01 lineto +7.92e+01 7.499764e+01 lineto +8.06e+01 7.499445e+01 lineto +8.2e+01 7.498925e+01 lineto +8.34e+01 7.498158e+01 lineto +8.48e+01 7.497099e+01 lineto +8.62e+01 7.495706e+01 lineto +8.76e+01 7.493938e+01 lineto +8.9e+01 7.491757e+01 lineto +9.04e+01 7.489124e+01 lineto +9.18e+01 7.486003e+01 lineto +9.32e+01 7.482362e+01 lineto +9.46e+01 7.478167e+01 lineto +9.6e+01 7.473389e+01 lineto +9.74e+01 7.467997e+01 lineto +9.88e+01 7.461966e+01 lineto +1.002e+02 7.45527e+01 lineto +1.016e+02 7.447885e+01 lineto +1.03e+02 7.439789e+01 lineto +1.044e+02 7.430962e+01 lineto +1.058e+02 7.421385e+01 lineto +1.072e+02 7.411043e+01 lineto +1.086e+02 7.399919e+01 lineto +1.1e+02 7.388e+01 lineto +1.114e+02 7.375275e+01 lineto +1.128e+02 7.361734e+01 lineto +1.142e+02 7.347369e+01 lineto +1.156e+02 7.332172e+01 lineto +1.17e+02 7.316141e+01 lineto +1.184e+02 7.299271e+01 lineto +1.198e+02 7.281561e+01 lineto +1.212e+02 7.263011e+01 lineto +1.226e+02 7.243625e+01 lineto +1.24e+02 7.223405e+01 lineto +1.254e+02 7.202357e+01 lineto +1.268e+02 7.180489e+01 lineto +1.282e+02 7.157809e+01 lineto +1.296e+02 7.134329e+01 lineto +1.31e+02 7.110061e+01 lineto +1.324e+02 7.085018e+01 lineto +1.338e+02 7.059218e+01 lineto +1.352e+02 7.032677e+01 lineto +1.366e+02 7.005415e+01 lineto +1.38e+02 6.977453e+01 lineto +1.394e+02 6.948813e+01 lineto +1.408e+02 6.919521e+01 lineto +1.422e+02 6.889603e+01 lineto +1.436e+02 6.859086e+01 lineto +1.45e+02 6.828e+01 lineto +gsave +1.5e+00 setlinewidth +gsave +0 0 5.0e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.7e+01 7.5e+01 moveto +7.7e+01 7.610457e+01 7.610457e+01 7.7e+01 7.5e+01 7.7e+01 curveto +7.5e+01 7.7e+01 lineto +7.389543e+01 7.7e+01 7.3e+01 7.610457e+01 7.3e+01 7.5e+01 curveto +7.3e+01 7.5e+01 lineto +7.3e+01 7.389543e+01 7.389543e+01 7.3e+01 7.5e+01 7.3e+01 curveto +7.5e+01 7.3e+01 lineto +7.610457e+01 7.3e+01 7.7e+01 7.389543e+01 7.7e+01 7.5e+01 curveto +closepath +gsave +1 0 0 setrgbcolor +fill +grestore +grestore +gsave +newpath +7.7e+01 7.5e+01 moveto +7.7e+01 7.610457e+01 7.610457e+01 7.7e+01 7.5e+01 7.7e+01 curveto +7.5e+01 7.7e+01 lineto +7.389543e+01 7.7e+01 7.3e+01 7.610457e+01 7.3e+01 7.5e+01 curveto +7.3e+01 7.5e+01 lineto +7.3e+01 7.389543e+01 7.389543e+01 7.3e+01 7.5e+01 7.3e+01 curveto +7.5e+01 7.3e+01 lineto +7.610457e+01 7.3e+01 7.7e+01 7.389543e+01 7.7e+01 7.5e+01 curveto +closepath +gsave +1 setlinewidth +gsave +0 0 0 setrgbcolor +stroke +grestore +grestore +grestore +grestore +grestore +grestore showpage + +% --------------------------------------------------------- + +%%Trailer +%%EOF diff --git a/assets/images/polynomial-3-1-3.svg b/assets/images/polynomial-3-1-3.svg index 0deea709..fdc7ac1d 100644 --- a/assets/images/polynomial-3-1-3.svg +++ b/assets/images/polynomial-3-1-3.svg @@ -1,17 +1,17 @@ - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + diff --git a/assets/images/polynomial-3-1.svg b/assets/images/polynomial-3-1.svg index 360931a7..9067415c 100644 --- a/assets/images/polynomial-3-1.svg +++ b/assets/images/polynomial-3-1.svg @@ -1,131 +1,131 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/polynomial-applications-bezier-letter.eps b/assets/images/polynomial-applications-bezier-letter.eps index 1284724e..76abc505 100755 --- a/assets/images/polynomial-applications-bezier-letter.eps +++ b/assets/images/polynomial-applications-bezier-letter.eps @@ -1,121 +1,121 @@ -%!PS-Adobe-2.0 -%%BoundingBox: 0 0 150 190 - -/letter (S) def -/seascape false def - - -/Symbol findfont 11 scalefont setfont -/Palatino-Roman findfont 11 20 mul scalefont setfont - -seascape { - 0 792 translate - -90 rotate 36 396 -} { - 300 308 -} ifelse - -20 20 translate - -/s 2 def -0 0 moveto -letter false charpath -/box { - newpath - gsave - moveto - s neg dup rmoveto - s 2 mul 0 rlineto - 0 s 2 mul rlineto - s -2 mul 0 rlineto - closepath - gsave 0.6 0.2 1.0 setrgbcolor fill - grestore - stroke - grestore -} def - -%0 0 moveto -%10 10 box - -/first true def - -%newpath -%100 100 moveto -%100 200 200 200 300 50 curveto -%300 300 lineto -%closepath - -%% moveto procedure - { - first { - /first false def - 2 copy - /y0 exch def - /x0 exch def - } if moveto -} - -%% lineto procedure - { - gsave - currentpoint - 4 2 roll 2 copy - lineto - 0.6 0.2 0.8 setrgbcolor stroke - grestore - 2 copy 6 2 roll - box box - moveto -} - -%% curveto procedure - { -% gsave -% currentpoint -% 8 2 roll 6 copy -% curveto 0.8 0.2 1.0 setrgbcolor stroke -% grestore -% 8 copy 2 copy 18 2 roll -% gsave -% newpath -% 0.6 setgray -% moveto lineto stroke -% moveto lineto stroke -% grestore -% box box box box -% moveto -% - currentpoint 8 2 roll 2 copy - 10 2 roll 8 copy - newpath - gsave - 0.6 setgray - moveto lineto stroke - moveto lineto stroke - grestore - gsave - newpath - 8 copy 8 -2 roll moveto - curveto 0.8 0.2 1.0 setrgbcolor stroke - grestore - box box box box - moveto -} - -%% closepath procedure - { - gsave - currentpoint - x0 y0 2 copy - lineto - 0.6 0.2 0.8 setrgbcolor stroke -% 0.8 0.2 0.6 setrgbcolor stroke - grestore - box box - /first true def -} - -pathforall - +%!PS-Adobe-2.0 +%%BoundingBox: 0 0 150 190 + +/letter (S) def +/seascape false def + + +/Symbol findfont 11 scalefont setfont +/Palatino-Roman findfont 11 20 mul scalefont setfont + +seascape { + 0 792 translate + -90 rotate 36 396 +} { + 300 308 +} ifelse + +20 20 translate + +/s 2 def +0 0 moveto +letter false charpath +/box { + newpath + gsave + moveto + s neg dup rmoveto + s 2 mul 0 rlineto + 0 s 2 mul rlineto + s -2 mul 0 rlineto + closepath + gsave 0.6 0.2 1.0 setrgbcolor fill + grestore + stroke + grestore +} def + +%0 0 moveto +%10 10 box + +/first true def + +%newpath +%100 100 moveto +%100 200 200 200 300 50 curveto +%300 300 lineto +%closepath + +%% moveto procedure + { + first { + /first false def + 2 copy + /y0 exch def + /x0 exch def + } if moveto +} + +%% lineto procedure + { + gsave + currentpoint + 4 2 roll 2 copy + lineto + 0.6 0.2 0.8 setrgbcolor stroke + grestore + 2 copy 6 2 roll + box box + moveto +} + +%% curveto procedure + { +% gsave +% currentpoint +% 8 2 roll 6 copy +% curveto 0.8 0.2 1.0 setrgbcolor stroke +% grestore +% 8 copy 2 copy 18 2 roll +% gsave +% newpath +% 0.6 setgray +% moveto lineto stroke +% moveto lineto stroke +% grestore +% box box box box +% moveto +% + currentpoint 8 2 roll 2 copy + 10 2 roll 8 copy + newpath + gsave + 0.6 setgray + moveto lineto stroke + moveto lineto stroke + grestore + gsave + newpath + 8 copy 8 -2 roll moveto + curveto 0.8 0.2 1.0 setrgbcolor stroke + grestore + box box box box + moveto +} + +%% closepath procedure + { + gsave + currentpoint + x0 y0 2 copy + lineto + 0.6 0.2 0.8 setrgbcolor stroke +% 0.8 0.2 0.6 setrgbcolor stroke + grestore + box box + /first true def +} + +pathforall + showpage \ No newline at end of file diff --git a/assets/images/polynomial-applications-bezier-letter.svg b/assets/images/polynomial-applications-bezier-letter.svg index 5acf3985..198591fd 100644 --- a/assets/images/polynomial-applications-bezier-letter.svg +++ b/assets/images/polynomial-applications-bezier-letter.svg @@ -1,146 +1,146 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/polynomial-applications-bezier.svg b/assets/images/polynomial-applications-bezier.svg index 1e383d71..746bec01 100644 --- a/assets/images/polynomial-applications-bezier.svg +++ b/assets/images/polynomial-applications-bezier.svg @@ -1,13 +1,13 @@ - - - - - - - - - - - - - + + + + + + + + + + + + + diff --git a/assets/images/polynomial-applications-box.eps b/assets/images/polynomial-applications-box.eps index 83f1e708..4f8ffb90 100644 --- a/assets/images/polynomial-applications-box.eps +++ b/assets/images/polynomial-applications-box.eps @@ -1,640 +1,640 @@ -%!PS-Adobe-2.0 EPSF-3.0 -%%BoundingBox: 0 0 130 148 -%%Pages: 1 -%%PageOrder: Ascend - -%%BeginProlog -%%BeginProcSet: -/ReEncodeFont { exch findfont << >> copy dup 3 2 roll /Encoding exch put definefont } def -%%EndProcSet -%%BeginFont: CMMI12 -%!PS-AdobeFont-1.0: CMMI12 003.002 -%%Title: CMMI12 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMMI12. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments - -FontDirectory/CMMI12 known{/CMMI12 findfont dup/UniqueID known{dup -/UniqueID get 5087386 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /CMMI12 def -/FontBBox {-31 -250 1026 750 }readonly def -/UniqueID 5087386 def -/PaintType 0 def -/FontInfo 10 dict dup begin - /version (003.002) readonly def - /Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMMI12.) readonly def - /FullName (CMMI12) readonly def - /FamilyName (Computer Modern) readonly def - /Weight (Medium) readonly def - /ItalicAngle -14.04 def - /isFixedPitch false def - /UnderlinePosition -100 def - /UnderlineThickness 50 def - /ascent 750 def -end readonly def -/Encoding 256 array - 0 1 255 { 1 index exch /.notdef put} for -dup 0 /Gamma put -dup 1 /Delta put -dup 2 /Theta put -dup 3 /Lambda put -dup 4 /Xi put -dup 5 /Pi put -dup 6 /Sigma put -dup 7 /Upsilon put -dup 8 /Phi put -dup 9 /Psi put -dup 10 /Omega put -dup 11 /alpha put -dup 12 /beta put -dup 13 /gamma put -dup 14 /delta put -dup 15 /epsilon1 put -dup 16 /zeta put -dup 17 /eta put -dup 18 /theta put -dup 19 /iota put -dup 20 /kappa put -dup 21 /lambda put -dup 22 /mu put -dup 23 /nu put -dup 24 /xi put -dup 25 /pi put -dup 26 /rho put -dup 27 /sigma put -dup 28 /tau put -dup 29 /upsilon put -dup 30 /phi put -dup 31 /chi put -dup 32 /psi put -dup 33 /omega put -dup 34 /epsilon put -dup 35 /theta1 put -dup 36 /pi1 put -dup 37 /rho1 put -dup 38 /sigma1 put -dup 39 /phi1 put -dup 40 /arrowlefttophalf put -dup 41 /arrowleftbothalf put -dup 42 /arrowrighttophalf put -dup 43 /arrowrightbothalf put -dup 44 /arrowhookleft put -dup 45 /arrowhookright put -dup 46 /triangleright put -dup 47 /triangleleft put -dup 48 /zerooldstyle put -dup 49 /oneoldstyle put -dup 50 /twooldstyle put -dup 51 /threeoldstyle put -dup 52 /fouroldstyle put -dup 53 /fiveoldstyle put -dup 54 /sixoldstyle put -dup 55 /sevenoldstyle put -dup 56 /eightoldstyle put -dup 57 /nineoldstyle put -dup 58 /period put -dup 59 /comma put -dup 60 /less put -dup 61 /slash put -dup 62 /greater put -dup 63 /star put -dup 64 /partialdiff put -dup 65 /A put -dup 66 /B put -dup 67 /C put -dup 68 /D put -dup 69 /E put -dup 70 /F put -dup 71 /G put -dup 72 /H put -dup 73 /I put -dup 74 /J put -dup 75 /K put -dup 76 /L put -dup 77 /M put -dup 78 /N put -dup 79 /O put -dup 80 /P put -dup 81 /Q put -dup 82 /R put -dup 83 /S put -dup 84 /T put -dup 85 /U put -dup 86 /V put -dup 87 /W put -dup 88 /X put -dup 89 /Y put -dup 90 /Z put -dup 91 /flat put -dup 92 /natural put -dup 93 /sharp put -dup 94 /slurbelow put -dup 95 /slurabove put -dup 96 /lscript put -dup 97 /a put -dup 98 /b put -dup 99 /c put -dup 100 /d put -dup 101 /e put -dup 102 /f put -dup 103 /g put -dup 104 /h put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 108 /l put -dup 109 /m put -dup 110 /n put -dup 111 /o put -dup 112 /p put -dup 113 /q put -dup 114 /r put -dup 115 /s put -dup 116 /t put -dup 117 /u put -dup 118 /v put -dup 119 /w put -dup 120 /x put -dup 121 /y put -dup 122 /z put -dup 123 /dotlessi put -dup 124 /dotlessj put -dup 125 /weierstrass put -dup 126 /vector put -dup 127 /tie put -dup 128 /psi put -dup 160 /space put -dup 161 /Gamma put -dup 162 /Delta put -dup 163 /Theta put -dup 164 /Lambda put -dup 165 /Xi put -dup 166 /Pi put -dup 167 /Sigma put -dup 168 /Upsilon put -dup 169 /Phi put -dup 170 /Psi put -dup 173 /Omega put -dup 174 /alpha put -dup 175 /beta put -dup 176 /gamma put -dup 177 /delta put -dup 178 /epsilon1 put -dup 179 /zeta put -dup 180 /eta put -dup 181 /theta put -dup 182 /iota put -dup 183 /kappa put -dup 184 /lambda put -dup 185 /mu put -dup 186 /nu put -dup 187 /xi put -dup 188 /pi put -dup 189 /rho put -dup 190 /sigma put -dup 191 /tau put -dup 192 /upsilon put -dup 193 /phi put -dup 194 /chi put -dup 195 /psi put -dup 196 /tie put -readonly def -currentdict end -currentfile eexec -D9D66F633B846AB284BCF8B0411B772DE5CE3C05EF98F858322DCEA45E0874C545D25FE192539D9C -DA4BAA46D9C431465E6ABF4E4271F89EDED7F37BE4B31FB47934F62D1F46E8671F6290D6FFF601D4 -937BF71C22D60FB800A15796421E3AA772C500501D8B10C0093F6467C553250F7C27B2C3D8937726 -14A846374A85BC4EBEC0B0A89C4C161C3956ECE25274B962C854E535F418279FE26D8F83E38C5C89 -974E9A224B3CBEF90A9277AF10E0C7CAC8DC11C41DC18B814A7682E5F024867411453BC81C443407 -AF41AF8A831A85A700CFC65E2181BCBFBFE3573BF464E2BE882A715BE109B49A15C32F62CF5C1025 -7E5EA12C24F72137EB63297C28625AC32274038691582D6D75FE8F895A0813982793297E49CC9B54 -053BA2ABD429156A7FFCD7B19DAA44E2107720921B74185AE507AC33141819511A6AC20BC20FB541 -0B5AAEC5743673E9E39C1976D5E6EB4E4D8E2B31BEA302E5AF1B2FBCEC6D9E69987970648B927623 -2093695D55A806D87648B1749CB537E78BB08AA83A5001F7609CD1D17FFA1043EB3807AF0B596AF3 -8C91A9675E2A53196FEF45849C95F7DC182A5EC0EC4435A8A4B6E1CDBF9A5AF457564EA72BF85228 -EB6FD244F25135360DD3EBEDA99D94828F447D52D011A8FC8B8BC124A4B367EC860C5F7CDBE58563 -4A1ACD80E37B6F2D5F33AF5A2C0814652FA37D0C6A99767C561253AF8DA3A1279D421AE11C133004 -DB273FDDC2134ECA4CC50296220A4729E4E73003AA88CE151F57F8C5DFEE1A8B3A74D7CB142B4F7A -128A4B0FD028B71FCF59841D3E8CB0450A0AB47B927D944D94C5DA562310C79E2321106D6B90FBD0 -4F5EB787AC050578011A0B24AE534B93B4108D982736464ACF5B77071ACD59B8D987EA9FE832A655 -C175AA8204DFA034D9DEB3AF510C4E948AD8DF3E799B81C5C8250B86FF8F91BE906357FC5DE9A320 -9AF78555AAA0FE720FBF0300F4FFB1E6F49CE9E00B0870D1E0EAB2CE05378850D15E9591ED19E563 -27A083671AD4BD0FAFC5A3AFA4D3E3CB1E50111ECD344168DA214E380AB12211010DA632B2CE9261 -6B94EEF181FF68119A2A0FB6AD9D3BE9E91F24484D018879EF39B3A5EF9A040B26AC1F2F6EC60EAB -B4233CC0878BF25AD526D45BA051CB36353A5A56E9BA2D1132F595F3202195681878AE92CFFC0A80 -9F8EF0DBE782E10D065658FF573553AE7EBC443C640F3F5745DA56489EFE26BBE67475C3F0ED603B -9DDB8464D40B587BBAB8F1B3F73FF9371EB27335665FA61498231EE271987F283580C7B42BF98121 -2D1460D366B3B5D0B7A7F7CD24B3C145B291FAF0B1F20996860BB42E7AF96BEE82C2B2174E9ECE34 -28A5FF9A63D7858C44BBC680770CE70BC7DF2B68CD42F9342517976533B7DA625EBDB07E071D4C17 -C3C32714C079DBEFE2F6F4977B005FCB214BF1FCEB394488CF34938B112C31AD00A54D096EC3769F -157DF59B6EC70FC6BB644470C2DB9688A9891D06145B198DEC09C5DDBFF4E1F56D8B62D172F59271 -B009EC62DBD8D48017892149618394F80F3472ABA74AAEABBA441B569394080498B5E5B56EFDC414 -BBFEBD1D53FBD880E92ABBA771A5EFBFAB1CA24C3F36686B9D9B65DBBBA23089C7D35CEF18D9751F -EB7C1E65F3B672D5E7C2BF998F65D0F49573F285279159BBCCE027E66EEEF9E47CA90DF348D89F86 -48FCB6F55AB2ED74C4043AE90F3542759B3F15932F8A52E3318F1693B2367E13AC6412B41D06DFA7 -1A3A869DA8816B26CD2CC94DA976DEE2B7ED59B4E956A0836A5E7FF5E0FAA40A121482798BF50E17 -28D3387D50CD62E1017235A3B1416CBB94C04F3E3D5FA2BDA3819A47057B8FECB3C09E0A391B5EAD -C38DC1AB744F90453026AACEDFCC190A280F0179C8A3BC1273C608A671E4ABF8BB5DCFC473240048 -1002AE9451172F2F9809B75440B987AB11DBB3569022A02F0194D73FEACA133DBB96BE3DED9623D5 -A89D652880EB4A147BD25031EE1C212E3226D5F7C4497DD9E2F767C4414323972C2B268F192113EA -4A0CD2B82760DCB2ACADC8719511F63D471F2DAAD5399A0B5DE1A15C6579712A81B432DC083E2EFD -660FDE2F155C78676E3350A9A5724512F4169C5E697897F5013D010BF75CB1920328F21DA3408BD9 -0216A18A5017D5FA51083A7C49C3D226B8AEB886083D13EECFB4EF12DE38E5F6B5B7A06D7F2BFEE4 -4690C87A7EFA5725AC793B61EE754278919EF5C5033D539A9BE0732F3D33137B6BC6D170DDF29763 -101BA0078E4BDC1562D16CDC01E05129709AD0E9532C6E6F7E74E42BF133F53314AAF732E90DC3AC -5C1BF5FD615189E12EBCE636C9129641A4879BC987E734289732F73DFF066C8C13B3735E2F2DD818 -E542EC0649DE3E37B0B5111670C45EC14E1E1FF14E41F12A20A6FCB2FDCFA350467651D697AA7E55 -49E2D4B30175244EE941B1F66BCC160A03B963A64DB7D1A06ECA645866EC4627EF2F3563FB399DC9 -B56A99A024D8FB026B8CF36E49484B98C90DA4477FB706CE1F5B136705E52A539D21C933315542DC -E71BC85955427D9DFF0DD9CB767B6B67DE7C2B8A2E2CF3A639E4C354EBC169360311D44D6F57322F -0A402C293F9FF510AF29BAAE402A218B6314495017595DC15128022B8C698ECFBAEF7ECDEE7FF01D -E305261E0119786B842B781C94E2B0138A581CD051807508F585597EBCEF7871A914FDB08466B2E9 -79C83DE884845105596546434E0EA525BEDFFF3E68F245493745A06B577C9A50E0170274210A6F6D -4A44C1EB5512ECDEA42F107E8C08A98EEB9EED0582D607DE96328ACD3D81BD759CEFB2F6DFD2AD55 -FF46D5202CCD0B518DB0008DE95594E96F77FC36BCB1EBCD388BD2E3CB674F90A8C69B4F57FBFB6A -57F07443B05B43BAD9EDEC3A90C5270A9F9198C8674972734277A7A14F22433A74CCC8182FEA974F -E66DD3A3BBE8F2494895B01B5AEDEB4173D8C3BFD4AAC413A548E0D446E0EAD5BCE288586885C116 -080C0AFB697061D021C043D2822FCDB78CFA99DE2A90A8465822A6FE4C0D03494EC045EFA80793A2 -458FA78C3353B0D5D0600CE006E31CA3131F387EC4D84B0C7C46A308D08C302C85ABF45B2D483BC6 -3DF7B0EEA1A0AFC0F844D77274C95ED477114752D0C88AE6092423DFABB3B01934699F096AF8F067 -D870F73CE45036362AC4CADCF97F42C63DFFC69EAC751C08AB6D61D34D32BFCEE1155D012314FD51 -252D2470B4D4CB16D0ACE4DDB17030C3622F56F96EBEA0FB90D92D109B956A4DC00332A9433FFE10 -43300B01D87EAD0C51E6D65545C37AA6528C214BF68831BDC78A84746E879643D9D9EE6BA5C167DB -0A370308C5EB606619A17BEC856BFF181BEBDBA0CA0BEA05C4EC948E288A941755EFA2DCFAEE67F3 -3B311CE0532CAF26FDE29474DBBEE42A623BEA14E4A4858B0496EFAFC775D48065F58DC20F727DCB -866EE68E24918AA1906073B64B0FE458B08A1B7DFA4BC03DC88CB5394F1FD149478577396F0AD201 -C4568BEBAB40DE8B864484D8D117727EA283CAA7485AA58FC506CC9B1C774FC883A3440499E3D984 -36111DC1DEF8CA30DDDBB9DDB9C89534D691555C36B5450DDE24CE5B17DA11E3E4C37A11581E4FA3 -C0D89B5CC3784BFFC14B6E98C548A7C38C53CAB973AF3DE82C6D42A01A57C9FFA790111BF79FE7F5 -91D5E2FF9E2730B7920A30D7BF713E4EBDD272DBDAFC8A676F195BA9082CD779E002FFD0785FC8DE -FFCD12E4B8DF368091E6119E135076E43DD0CD75E6429CEEA972391BA73D93B89645B2480315A49F -49AFE2F324D251AEE654ADCCA32A66E9B1B9407B055BBC615E37BF1BC8C1ADD81ABBF983C73F733F -91770D50184FCA3A0F6165CFE79002352DCDC1296D67AD671A4F4C0A60C7E9C18F3CC374A4D065FE -56D0BBD2CEEE3F70AA9398896FE22CDC4BF7332726A0E676D66D511799D63BDBE0DA140EC4EBF57D -E032B620E5ED890A6760CB7D40A05037BE3A6C5347DDFFCAAE3A5C4BC116F39969936FB483040E42 -1345EADC494523ACBDB55CEA57C40279D4AF5C7C9F3B0660ED9E725C9FADCD5361784D5C14B93C3B -13FD055F269BC7DF6D67719A2BF30D19D1A690B4CBC06DEA51884A686564B3FF6B3F8E9C9FBEC5A9 -14F525B6AE34D448B0AB85FAFA4E7F301984A9645C786DF2A19C2E6A20DD0B60AA2974A624E7CD19 -17AB87B273D04516D727FD30EFD27C983342C9BCC1D9CE95E7576AF25A4BFF02DB4588B8604C306C -04AB66E85E114C28CC47395016955AFACE381AF44B1D004D5B6B64186CD7CB9D081F93A637BBCFE8 -E292FD8D5863BFC683C9E37F0FEF0ECD16CFE63E0A584BFA4116D3AB0ED62B7B82C1630B2B78F255 -27A79267580F58005BFBD37E5C0C31029945CF6F6F72DB17EABDBB51DC8726FCD5AB2D61341B2EF7 -716F0D0AAC546DEDD22AC62FEFB1ECA0EC524C6B3233FB4E1B4CCE49F584BE7BAF33C878F2280A85 -98502001DEDB4FBC9F7DCF40D055AC35AADA869F2808F0B401C294AE378AA9B2AF2768B75D9CAE1A -C52025F18E7DDAEEA2122CE9D233A2A9046EC5EBEAE20FA928BA4AC651AF426574FAEFE31D28C771 -7DEA91429C7BD7611CDA7F5F55A070AD6776AF18DED46E5101A7D1A47F0752896669148EACDBEAD1 -C8A44801B53DDC61261499F2FCC600F635D8CDDDAD94A24BC14A2F5B5AAA6260955256256AF4A9AB -CDF541453E4190AF27139D3C6A2BE9BE4870260574C26338FF348F503DA4DC15FAC4F6ADBCBCC29D -93B9100EE126A0A28C3F0CA30B7F09E13AE59E34DA373702C5817D222DA4AC23DA5EE272805A902C -DB7001A0CCB26220D956871465BE18A323DF93CD792BBE61F3FF8C4957FA49925DFBA1569FBC1BAB -D1C3BA13F88D1D98F7034DBDF956F52646DF43AC978E86A1C532085DF36A66FF556442F3F337A699 -DEAF26EAE1AC20FB2968E58DF82ACBB647350335E4D48032E1BB49F1EA2181FBE183AACDC06761B4 -8A9EEAE514A00B4656B4CDA4BA3AC27F30C39A4274C1DAC69A7BBDEC53C9C7D78D0FAD8530073440 -C85F0A4B0003AE793731EF2A3199CD73663B05BDF83FB2B8C175F0CB3D20C52C0C8A370F9DB92304 -8CBBEA7267C828A700C5856EECBF7FFE8A67C5027BEF1B1C7D42C717ABC02FBB73A3AFEC5F57D6BE -21C2CBADC84855BFA4BDB2F127307BF437F010AF0C938F9587B153249E6EEC2ECA63E9BEE972CF4D -98627E9DFD37B325E7A6612C667296C8E9256C62690BE9D25F7C68CD984B56197148A89E8E05B9FE -98F033E9DD9EF7245EF70E63289C7947BE5F2272154E207A9B4B1FDBE41B1D4D72BE13873462B012 -F4B9D5F4164B714965F36C4101C870EFCC4BACC1A6DF744C1F91B1B7A2BF63BDFB840F5B0C062ACD -11FE47D9A3AA36CDC00ACD6DD8475034F603E859B3113B1C8A311C80B5D9EE1D881424745B573DB4 -3656FD733864CDC8978006D58309E4B226288A0DCDB9AAC8396FC9DD024BC5F00160C382B127EB4C -9FA74B62BA990E2DFBA53D3CD57A27FB68F912E5B69CFF2113D70CDCAEF634BFEB9D7A65CD1A670E -3A2CEE5D9687558A1BDA4358BE0917A4C8614B97DF5810473714F6FB8BE998BA52916F790F353DB8 -7B96194C6271147A947C664D273CDE1893D4E1EAEE9F4199941970A46AB809D4776E9310C506EDE7 -7EF1E9804829E495B0F654EB15FC2563DF6CB1B9D36D837777547CA37ADB28768A8DA2433BFD20D7 -2F9F00743272277F2C9A9F1F33CFAD44A8F3D620A0DDA13C3286760361107A0A82E0D12A9C601FE9 -3971250D47583AD68AC90892AECC54BFAB740A2F51F07A1E2C5B5E3A895F3E3001F4DEEB99E0A646 -4B0EC3753F30013E9C92525D9F651898A585DB03BB7180D652CB68ABAB55BF18402A43888772F9C3 -6C9F7CF6E00F07B33590C777B1B056B6C31210A3FEABC46BF00E7A837E93EE3464776B9D78E75C60 -CE9E0725C31784836B9CD63BA44DB0867C80D70A15FC97CC6E4526E84AE9B30CDA84C1C7857466E5 -F315C8F6DCFA0289FA937AAFF5D3CC35709E9EC3C255B355D7BC6063BFE6364804342D4BA7D015BE -58633CB781FFDEE7BFC46AFD84255D141DA1EF280D5CE22017DBC7C1A128B3F9974AD5BC1E53E43C -3EC042C17DBED744236D8AC784B9102E2FC4E94DF8C78254A6D496790CD6684EBB54035048E1DB75 -93E552C7EE7B884012517917AD46CA470ECFBDDAFA7F1FF13C0CB00005628710DD4EA93C79DE721A -89BBF27DBF7A085799B00D6AA37D7B3590C79ACAA5DFD15953E7F8B5874EF9BF34A217184100A080 -0A5675D552ADEFD930E294A50CF7A3C6344EA0871ED23AF942EC699E21537D852ADBE736EB1070D2 -C9B622EBD2384430BCB114D1DA3CBE2C6FBC839D77F20ECC999A5302705AE31AEEB8B4E5CA4046A3 -C77F8B0248E3755013CFA7C76D7248920CC203834E9328B58D5FC7C46B11B5AEA991556D067C2B24 -37634D95EA274197D3B46CA1B8446D633B6F0AAE72A599548BB3D81A337113D3EC58B0B2DD107A61 -7CA6DEADEE7003AE6F28ED6DAA5C5D99D67DFD2594800A66D11D26490156A539E286191274C30C09 -8DB77A427695BAE705DF290F97887C5DD6FD964D76FE6132016D0D58580F2EAEB727FE1B8AEFEC95 -C4629CB17D8C63D1EDD2125527D00C9E7C64AA7053A047A69F82812FD3C8C2543F269EE9C553F5BF -8A53D461D9C308C198EBF2B97DD531664229D32C3EC61D69E4E79F539E9E589FC3F57C9E4624F869 -A482062A52C9F4B640090C360DF8DC8702DB966EFADCAE94C8A2DE022E88EB388239BC517368F8C2 -6C8D96A6E8649737F902495E3F29F357B9B58EA47A9400D028B8BFFE74BAFC43E888808381C5F3E3 -18DF9BDA26F6E14DE2858A1A9CFAAB8A82B7819F748E04C8606DA94D884A13C67E3FA06F9C2834E1 -A02F4BD043C87D57297D500E4757BCEB37239A755F36FF99A3F9B6E0CC9F8938041EB931519BF0D4 -2E7A93EE62E6A59C2BBF1B2D6CE1958DAB40F1EC78C99C501CFD69864DA50EBF933D30CEAEE7456C -D0A08C78CAFAD93CACE2671F7E3DDDDA98EA56CA35648109D4E6333188ECC817F317D8979DA9FAD9 -DD45DFE5D74BBADFAC4921723F736426D5ADCC5DE4FA6703E121BFCECFB415F1D444634A7223389A -38DF2AD64101476D170DB854A220CA8433AB5DC40A841BEA6CBC538C63E0442A7764014D853AF8AF -C34F2D17A1DB8740A45C857667A59F895094867D12D06EBF72942E8ED4D6EE9EF225B4DD82A2F16A -D0A8C2C246DBA7BB9245ECC4863D14885BC30950451113123C868B8AA5B36F7B926B5ECB0A333902 -BB241B3D281550655912AE14A634D79515F00799E91F6DB093ADA1692CCB5A32CF94FA0A4E1B311A -68BD03C0F85F2F63C3C0658A3756013288704B240E14F65AC1BDA3098894BE592794245AEF119ED5 -9523983DEB2D0E9D211F62E6D6C5AAE72F3AEEDC4E590BD531EEA93C05EDB1370F140DB3034A9996 -22ED4BA8F1AAEDB368656B6C6AF920DE068E06B985FD47461276723C9944CAC87B44475767009320 -C7934FEB9B4DB8E1003000A663155C9A3FC67182BE4EA30F5FC813A8F34F3F99DEE8134252A98B21 -54FCE28C1EC23FA5E4BA8C4E005708A18FCEDE9F154576F0B3400C7FBFF197011FFB739D285819F9 -C19796979B3A0A5E4E5CB116F78DCB3A7178718D886D1A9E52BF4D9C8CA2FA2725147413CE566DC7 -4DCD7328806238F8BF9A780CE75C05A7C2BD89420F8A0B0D602498C1C83F775A231B8BED4EDA6F8C -995ACF80138D4A438EED6FB2CA44F06D664052D45B2FEEF0EC584B27E01D663D4B2F8C48E04690B3 -50AB33F10875460000D37C300CAFB3F8391E44F1AB363074FAC3E03C41BF062E5668AB0A4214C64B -171A2CBA072DED6EFAD31309A34D99DBC065106DD8F0942DE6DFD6C0743D98F214C3E3FA09DDEE4D -1080AFF99C98E001EFE2B853747CA64A6130A87AEE3583592AAD47CFA01F0B5B22C638925ED65188 -6EC83777DCCB56A808404BB5B655DBAE33483AADA292B580F02FF2494C7F3F7459BABA95373E39D2 -ABEFEC3FB56440DF99E6DC49E4D01F9286E11085D68EBE8744F307F6AAD2DE8B745E243163427A2B -90A90F6726BCF115DA15331E3F30CD025624C7B916A97B4067C60213C0B3782EEE9F4594B4B78B07 -2C5E9A30D35E1FCFB5E043404E5407A01A2ABBB636096B0ABFCA115414EBB67749D494CA030E21A9 -1206D6B090E0D94EF2D1165765010B8D39695D096825D9687F2480C851690AAEAF4AEEF413C054EB -FA49AA548B618802B62D0DD5FE7529563FD02F7CAFD93CA182B2506393AE802093C5668BE1D5D2C9 -E74C3160B5C3055A31ACD75B2CE21E1014D136FB96E44D4E6BD79A7B5FC5F1741A55B6CDE4CB5B44 -AE1EC827FD9BC083F76C8787756104E782F9D4BDEDA005B4085690CCDA8AC75A0BEFB47D0806F4A4 -6126AA280A41F0FFCFEA04B96714C7B1D4F806FA6412DDDAA68B20551C36E556647C3A7FC303C655 -79322171A7783FD7364F56ED31B5B8132815F524DC97030DFE3E47EDE35D03F4CD2CD99AE55D0BB8 -17A93C71F7C5383ADD04552F1C54557D494907D3050FC9D5514FCF80EF7039C5B076F16A3A946D59 -1165E72F2A31E906D4A57167B44D64BFAE9C408E9CE5EC8937C7B3B0AF24089A1878AF0758B7CFC8 -A787EB7CBA64BF13D3939DED996660A6487579162F56C3440764954DF160077B16CBBAAB9DBD5857 -FC44A5775ED562140DD33B3CB2173152213DF78D65AFC94347685181CDCAF3B79D755652C2B2D3EC -39449252DA027E97E534AC05ADCC39795C41F68E5F98F983CFCB4DE3BADFED909B2B6178904806B4 -0AE9F9B3577531D1C9C5793EB1C455C9895D2C858540C6B7F8B40AEDAE79FE461309AF352C80739C -5AD7612EE5970C113133502E1F59F53F8A72373A3841C37E727ABFB1E7A2AEAEF482B0942CDA1BFD -D81F7A2FC15A7D0E7F2CEFD8BC432268ACDDF3698804556E4AFE9086E6AE0CF1B144A5A7D04CE576 -F26533B611371D7F846959F2A589E54EBC0EA0AEE1C117EA3E8957E07AB8A728AB388B06BD7D98CD -44C468F7AE354304DCD93BCAF479F5C27BAC920128ED987667E94ADAB5E55EAFAB2B52BB2D83991F -9D638CC461A25738A6C33F134191A1A804EA935EF441F89129175BF705D4F7089BDE3C0AE6C61921 -487B3EDB029FFE0CDD2307B68CEFCD58591F939ED509EBA0FD070294B5158F3BF432AB18379BDA34 -86DBAC2984198FAEA711008AA454E9612B23B6C8C5AA908E5424456603D522BCAEB3EC41E1C8BBEA -B1C8CE0BEF6AB7C7008171F62B03BF9258329DCC30472DB329313606157CE246CC8D5C9E7DA2AE08 -967CB303C5E516F18F0CE530E75762541536B444925C1E123CFB615157A3169F7F10172423BF5A54 -0015BDA30A03414679A145541655B65253CC546261FF4626722942C8AF01FDA6F92200EFF2716807 -4F3BAC5692AAC160F7A0DCBD5315C4B700E3BEF31520215C093F0F1DCFD5D18538F8D4FF1997C652 -4DD972AE1CD7E11F829CC621B383390C2E7D196A8D5A9CBFBD8D3145E20CF045D1F128CA47CC9A01 -91E29D4217A1FA558F1F93DC86171E43764CC7D9377A1C76AE027D5C3FEC7A38CEE040DA280902D3 -F183134E3A95E5EF148C71BD5994BB28EDAF191EAC23BD02BD9A5F613235E97A5EE8C5C7E6A93F03 -186A29C684B6E46026A31BF1830B1ED3BB12A0648270CEE09A4F5AB891AD72D80C4057C781DFD270 -EE443E1FE4E9D8E58D2AA0A9A702836EABF544A3B4F2E1841776EA821FDB36E71AECD6A1C355127B -461FCF72A531176DB59F10D9A1222F99EE4AA579CD5CF6A288016F5DA6838536F3FE0D902543095D -90094EB79BF1592CDDE05786DAFD98AF30C6CEBF27B1315C706A63D4E868BA374EBE33145C16F181 -2AB2F8668B549A74C8A58304BAFBEE3136533542EDB8976C7550F0905546D116DD0E11384C2B99E1 -195316EC9CD53EBADB73509FDE80B1BCBCAE46E8806E0CC8CCBF2B10FC54D05C9F604B4ABFC87B25 -DB5CA90B64096B18C33E8A53F45F163AB7AC47CD6E9521230D689ACA686B5792D72097C4E67F93DC -9B7AEE088DA36BD6ACEE7E68ECFCAFE7D585F677BD1ED27595948CB7CCE21BAA375393CA45234E8F -4633D61EC657C528EDD0FF520964F8B737D0DB9A58DB146588F7F02CB77DE7D417CFC65B45CCD62F -77CC833DB5228159A552C7D6B0F7E5E5521E26C7F9A47D8F600CA820DF8B4B25B8B8D823FFB49E7B -1E779D9680AFB496C7BD8D2FDB99717F9EF91A6AFFBDAF5E6C188315BF63C3BA9B8414709D1E60FD -25D29BEA68D6D5857CF024BC2E03249A4B294F36E3BE13225319F11AED07AC2BD2E5BA6E9CD7F77C -C707F6268514BB7D50257EB4E23BD6CB9700745AF46DDD87664364A8CE71574F2D60CDBE61A3AFAB -925EFFB23273B61E93385C29C2E8B76650C1432AC8D4FF35F5419CFB553C8F10F4230CDC749B5F3A -8F5B1EC8C9FE31626378EB495A9A53BE7E1C0683550BB3AE9ED557CF4DE95399C5EAFB4B99B0889C -890FE2CEF419A20800812D0DA7795E9F519061D19D1AFE2AC77CBBF05D1A738E62B64B4224DCA36C -48B7A9D1FF785225C9852111316ACE1DAA2C21E05D767DB0DE6A0593D19029814C8BCE19DEED87EA -E4F52004EA1FE7934C099EC71AE7048D796081176AB9B8ECF42FA5581FFD859BD818411DFC4649C7 -6F82D6C03563F9B9D2DE6F274D41E0A93784EB6ED0FEAB8DB20CFD35E2DEB93A1DD1AE514F9E8A48 -279536885042D248CF3FB0872135921DFDDC41198DFEE21982D675CC3BEFA0A3986893CB55393D0D -97ABBE2E2E9B911B8E219104B22197EA04E201FF9C5F9B644E91709CFACDA783050C75212109FBBC -0422B697902D9847D764AD31E851ABB49F9BED16F1377F97198664125C1BA4E06C4C43AAD8829047 -38E1127C3CDC74167B21358CBDC8563951CA7B5DE09526FEA0B1D2AA92F3C4EDFC252BBC38463B55 -E97E8C40D6FD34403357911A1FD0A46565148F3FC891B20EC84976FB26D13A93F1B3D7162D864F8E -1C4A4CED23724105D0B7EB83EB334386912AAD93BAA8AA9CF5CDDF83D5FF76E94C8A2C40C28B5F48 -47A49D8155347392B7D2CF2731E45E0ECA9A654AEEC5DC2A6B03E93D4DA22575D824294ED80804B8 -42B898708A5FA69C5F958A935D47F57039C31771879DC8AE993CF060F6B509F8CE28FAFA8A0FF700 -FD69D4EBC54038D5E1CDE731CD67C5C6F8E7F1CB1977C3768E60E3860D1254AA78436A71018CFDCC -1039C7CF620E280A3A101C9E6496AB07A882C4C018AA79327D9B55EC53C7EB34503E3CBD90035527 -B81D7D698800154E452874488A41BF917B990D90972921EC0E8D6572AEC8360D67F0EA9B9575AD61 -9461982115285C3EE3265F1750C76B4601C48D06C932A3E857EF68C9D2B4E5531342AA76FA4A923D -D1740A100FE9B4580F4CE1AA6856FB1556FCF8C6306690FD36B5886BC06704744B09D0F9CBD0D2E1 -36B7DCB486F19933F2CF36BA0A4FDFEC77DD2DA63456373C7CB7809A9A072D8BD3A155D0E90F984B -7BA4C7217094E2930A71196175ADFA3BF390F8D903C797C29B7FA821D31ADA0EB141F276776ED034 -C264D1E1C18D5E090AA163B65B51442C61CE963BA47F4EFE6D838898643315B866F83D71650D9924 -5235C2A2E97DF2BF14409DAD942051D2562422AB60E080650B9EB71E1586D9C8E5B674BFBE8F4B23 -DF68880E08C7B9C09D3EB54991580D300A89BA6B40F5DF531F5BC2B4C6AF7DB94A6AD624244C8CFE -A52FE3115BCB22771A210AF9C166C3FB3F27D07BF67ED6D4C7FF5F7046FD77579D3BA8BDE02C31F7 -9BAFF2AEAADE15D56E779201CCC9E6F5DEB0A90B205709ADA4A2D66E1DD455FB23D79C30D9A2BB07 -957A931C3BBBD5533BA86C0F40B1346CBF923571F0A25305892E674D51B2A721DA792EA916EAED56 -C846705702E8E18DBEBE5BDCFD771E071C82FDCED813196EFFA71335C6CE9C1FBA3EDA1E2BE4AB0F -223E031F7CA5E09503F4A283A942F5C7E10445F37CAF5A17AF84430A69CA619C53A4AB4E5BA35069 -DCEE88333B2C0BAD3DA6C15EE2B56E57C475814A4F94A8CDF93790DB3B3B9E25EC3608A5A073A717 -AA171B020537672DAADD0E9F21509D229D37CC5ABBDDC0318872119BE4E7277B0175B7C3260443DA -A836709707BDA9BBC4C451279788CD2D6838B53C41868537311D1BA4BC908E13E4C138307BE60B3B -DA1EDEEA87D291F442C7804FE53EFE88E6EE93D3C460D8E284511A34823E5A4520F6D258 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 - -cleartomark -{restore}if -%%EndFont CMMI12 -%%EndProlog -%%Page: 1 1 -gsave -newpath -0.0e+00 0.0e+00 moveto -1.3e+02 0.0e+00 lineto -1.3e+02 1.48e+02 lineto -0.0e+00 1.48e+02 lineto -closepath -clip -1 setlinecap -1 setlinejoin -gsave -newpath -newpath -2.45e+01 3.84e+01 moveto -1.235e+02 3.84e+01 lineto -1.82e+01 3.3e+01 moveto -1.172e+02 3.3e+01 lineto -1.19e+01 2.76e+01 moveto -1.109e+02 2.76e+01 lineto -5.6e+00 2.22e+01 moveto -1.046e+02 2.22e+01 lineto --7.0e-01 1.68e+01 moveto -9.83e+01 1.68e+01 lineto -2.45e+01 3.84e+01 moveto --7.0e-01 1.68e+01 lineto -4.43e+01 3.84e+01 moveto -1.91e+01 1.68e+01 lineto -6.41e+01 3.84e+01 moveto -3.89e+01 1.68e+01 lineto -8.39e+01 3.84e+01 moveto -5.87e+01 1.68e+01 lineto -1.037e+02 3.84e+01 moveto -7.85e+01 1.68e+01 lineto -1.235e+02 3.84e+01 moveto -9.83e+01 1.68e+01 lineto -1 setlinewidth -newpath -3.485e+01 3.03e+01 moveto -1.595e+01 1.41e+01 lineto -4.79e+01 3.3e+01 moveto -1.2215e+02 3.3e+01 lineto -3.8e+01 4.65e+01 moveto -3.8e+01 1.545e+02 lineto -newpath -1.0e-01 setlinewidth -newpath -1.91e+01 1.248e+02 moveto -1.91e+01 1.68e+01 lineto -9.83e+01 1.68e+01 lineto -9.83e+01 1.248e+02 lineto -1.91e+01 1.248e+02 lineto -closepath -gsave -7.946392e-01 7.946392e-01 9.93299e-01 setrgbcolor -fill -grestore -newpath -1.91e+01 1.248e+02 moveto -1.91e+01 1.68e+01 lineto -9.83e+01 1.68e+01 lineto -9.83e+01 1.248e+02 lineto -1.91e+01 1.248e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.83e+01 1.248e+02 moveto -9.83e+01 1.68e+01 lineto -1.172e+02 3.3e+01 lineto -1.172e+02 1.41e+02 lineto -9.83e+01 1.248e+02 lineto -closepath -gsave -6.331216e-01 6.331216e-01 7.914019e-01 setrgbcolor -fill -grestore -newpath -9.83e+01 1.248e+02 moveto -9.83e+01 1.68e+01 lineto -1.172e+02 3.3e+01 lineto -1.172e+02 1.41e+02 lineto -9.83e+01 1.248e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.172e+02 1.41e+02 moveto -3.8e+01 1.41e+02 lineto -1.91e+01 1.248e+02 lineto -9.83e+01 1.248e+02 lineto -1.172e+02 1.41e+02 lineto -closepath -gsave -6.524785e-01 6.524785e-01 8.155981e-01 setrgbcolor -fill -grestore -newpath -1.172e+02 1.41e+02 moveto -3.8e+01 1.41e+02 lineto -1.91e+01 1.248e+02 lineto -9.83e+01 1.248e+02 lineto -1.172e+02 1.41e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -gsave -newpath -0 0 0 setrgbcolor - -% Comment: canvas init - -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -1.0e+01 setmiterlimit -gsave -/CMMI12 findfont -12.0 scalefont -setfont -5.39809e+01 3.928028e+00 moveto -gsave -[ 0.9 0.0 0.0 0.9 3.20895743744 -649.693889902 ] concat -(\154) show -grestore -grestore -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -grestore -gsave -newpath -0 0 0 setrgbcolor - -% Comment: canvas init - -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -1.0e+01 setmiterlimit -gsave -/CMMI12 findfont -12.0 scalefont -setfont -1.127e+02 1.756736e+01 moveto -gsave -[ 0.9 0.0 0.0 0.9 61.9280595715 -636.054553435 ] concat -(\167) show -grestore -grestore -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -grestore -gsave -newpath -0 0 0 setrgbcolor - -% Comment: canvas init - -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -1.0e+01 setmiterlimit -gsave -/CMMI12 findfont -12.0 scalefont -setfont -7.185301e+00 7.111401e+01 moveto -gsave -[ 0.9 0.0 0.0 0.9 -43.5866398223 -582.507903855 ] concat -(\150) show -grestore -grestore -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -grestore -grestore -grestore showpage - -% --------------------------------------------------------- - -%%Trailer -%%EOF +%!PS-Adobe-2.0 EPSF-3.0 +%%BoundingBox: 0 0 130 148 +%%Pages: 1 +%%PageOrder: Ascend + +%%BeginProlog +%%BeginProcSet: +/ReEncodeFont { exch findfont << >> copy dup 3 2 roll /Encoding exch put definefont } def +%%EndProcSet +%%BeginFont: CMMI12 +%!PS-AdobeFont-1.0: CMMI12 003.002 +%%Title: CMMI12 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMMI12. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments + +FontDirectory/CMMI12 known{/CMMI12 findfont dup/UniqueID known{dup +/UniqueID get 5087386 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /CMMI12 def +/FontBBox {-31 -250 1026 750 }readonly def +/UniqueID 5087386 def +/PaintType 0 def +/FontInfo 10 dict dup begin + /version (003.002) readonly def + /Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMMI12.) readonly def + /FullName (CMMI12) readonly def + /FamilyName (Computer Modern) readonly def + /Weight (Medium) readonly def + /ItalicAngle -14.04 def + /isFixedPitch false def + /UnderlinePosition -100 def + /UnderlineThickness 50 def + /ascent 750 def +end readonly def +/Encoding 256 array + 0 1 255 { 1 index exch /.notdef put} for +dup 0 /Gamma put +dup 1 /Delta put +dup 2 /Theta put +dup 3 /Lambda put +dup 4 /Xi put +dup 5 /Pi put +dup 6 /Sigma put +dup 7 /Upsilon put +dup 8 /Phi put +dup 9 /Psi put +dup 10 /Omega put +dup 11 /alpha put +dup 12 /beta put +dup 13 /gamma put +dup 14 /delta put +dup 15 /epsilon1 put +dup 16 /zeta put +dup 17 /eta put +dup 18 /theta put +dup 19 /iota put +dup 20 /kappa put +dup 21 /lambda put +dup 22 /mu put +dup 23 /nu put +dup 24 /xi put +dup 25 /pi put +dup 26 /rho put +dup 27 /sigma put +dup 28 /tau put +dup 29 /upsilon put +dup 30 /phi put +dup 31 /chi put +dup 32 /psi put +dup 33 /omega put +dup 34 /epsilon put +dup 35 /theta1 put +dup 36 /pi1 put +dup 37 /rho1 put +dup 38 /sigma1 put +dup 39 /phi1 put +dup 40 /arrowlefttophalf put +dup 41 /arrowleftbothalf put +dup 42 /arrowrighttophalf put +dup 43 /arrowrightbothalf put +dup 44 /arrowhookleft put +dup 45 /arrowhookright put +dup 46 /triangleright put +dup 47 /triangleleft put +dup 48 /zerooldstyle put +dup 49 /oneoldstyle put +dup 50 /twooldstyle put +dup 51 /threeoldstyle put +dup 52 /fouroldstyle put +dup 53 /fiveoldstyle put +dup 54 /sixoldstyle put +dup 55 /sevenoldstyle put +dup 56 /eightoldstyle put +dup 57 /nineoldstyle put +dup 58 /period put +dup 59 /comma put +dup 60 /less put +dup 61 /slash put +dup 62 /greater put +dup 63 /star put +dup 64 /partialdiff put +dup 65 /A put +dup 66 /B put +dup 67 /C put +dup 68 /D put +dup 69 /E put +dup 70 /F put +dup 71 /G put +dup 72 /H put +dup 73 /I put +dup 74 /J put +dup 75 /K put +dup 76 /L put +dup 77 /M put +dup 78 /N put +dup 79 /O put +dup 80 /P put +dup 81 /Q put +dup 82 /R put +dup 83 /S put +dup 84 /T put +dup 85 /U put +dup 86 /V put +dup 87 /W put +dup 88 /X put +dup 89 /Y put +dup 90 /Z put +dup 91 /flat put +dup 92 /natural put +dup 93 /sharp put +dup 94 /slurbelow put +dup 95 /slurabove put +dup 96 /lscript put +dup 97 /a put +dup 98 /b put +dup 99 /c put +dup 100 /d put +dup 101 /e put +dup 102 /f put +dup 103 /g put +dup 104 /h put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 108 /l put +dup 109 /m put +dup 110 /n put +dup 111 /o put +dup 112 /p put +dup 113 /q put +dup 114 /r put +dup 115 /s put +dup 116 /t put +dup 117 /u put +dup 118 /v put +dup 119 /w put +dup 120 /x put +dup 121 /y put +dup 122 /z put +dup 123 /dotlessi put +dup 124 /dotlessj put +dup 125 /weierstrass put +dup 126 /vector put +dup 127 /tie put +dup 128 /psi put +dup 160 /space put +dup 161 /Gamma put +dup 162 /Delta put +dup 163 /Theta put +dup 164 /Lambda put +dup 165 /Xi put +dup 166 /Pi put +dup 167 /Sigma put +dup 168 /Upsilon put +dup 169 /Phi put +dup 170 /Psi put +dup 173 /Omega put +dup 174 /alpha put +dup 175 /beta put +dup 176 /gamma put +dup 177 /delta put +dup 178 /epsilon1 put +dup 179 /zeta put +dup 180 /eta put +dup 181 /theta put +dup 182 /iota put +dup 183 /kappa put +dup 184 /lambda put +dup 185 /mu put +dup 186 /nu put +dup 187 /xi put +dup 188 /pi put +dup 189 /rho put +dup 190 /sigma put +dup 191 /tau put +dup 192 /upsilon put +dup 193 /phi put +dup 194 /chi put +dup 195 /psi put +dup 196 /tie put +readonly def +currentdict end +currentfile eexec +D9D66F633B846AB284BCF8B0411B772DE5CE3C05EF98F858322DCEA45E0874C545D25FE192539D9C +DA4BAA46D9C431465E6ABF4E4271F89EDED7F37BE4B31FB47934F62D1F46E8671F6290D6FFF601D4 +937BF71C22D60FB800A15796421E3AA772C500501D8B10C0093F6467C553250F7C27B2C3D8937726 +14A846374A85BC4EBEC0B0A89C4C161C3956ECE25274B962C854E535F418279FE26D8F83E38C5C89 +974E9A224B3CBEF90A9277AF10E0C7CAC8DC11C41DC18B814A7682E5F024867411453BC81C443407 +AF41AF8A831A85A700CFC65E2181BCBFBFE3573BF464E2BE882A715BE109B49A15C32F62CF5C1025 +7E5EA12C24F72137EB63297C28625AC32274038691582D6D75FE8F895A0813982793297E49CC9B54 +053BA2ABD429156A7FFCD7B19DAA44E2107720921B74185AE507AC33141819511A6AC20BC20FB541 +0B5AAEC5743673E9E39C1976D5E6EB4E4D8E2B31BEA302E5AF1B2FBCEC6D9E69987970648B927623 +2093695D55A806D87648B1749CB537E78BB08AA83A5001F7609CD1D17FFA1043EB3807AF0B596AF3 +8C91A9675E2A53196FEF45849C95F7DC182A5EC0EC4435A8A4B6E1CDBF9A5AF457564EA72BF85228 +EB6FD244F25135360DD3EBEDA99D94828F447D52D011A8FC8B8BC124A4B367EC860C5F7CDBE58563 +4A1ACD80E37B6F2D5F33AF5A2C0814652FA37D0C6A99767C561253AF8DA3A1279D421AE11C133004 +DB273FDDC2134ECA4CC50296220A4729E4E73003AA88CE151F57F8C5DFEE1A8B3A74D7CB142B4F7A +128A4B0FD028B71FCF59841D3E8CB0450A0AB47B927D944D94C5DA562310C79E2321106D6B90FBD0 +4F5EB787AC050578011A0B24AE534B93B4108D982736464ACF5B77071ACD59B8D987EA9FE832A655 +C175AA8204DFA034D9DEB3AF510C4E948AD8DF3E799B81C5C8250B86FF8F91BE906357FC5DE9A320 +9AF78555AAA0FE720FBF0300F4FFB1E6F49CE9E00B0870D1E0EAB2CE05378850D15E9591ED19E563 +27A083671AD4BD0FAFC5A3AFA4D3E3CB1E50111ECD344168DA214E380AB12211010DA632B2CE9261 +6B94EEF181FF68119A2A0FB6AD9D3BE9E91F24484D018879EF39B3A5EF9A040B26AC1F2F6EC60EAB +B4233CC0878BF25AD526D45BA051CB36353A5A56E9BA2D1132F595F3202195681878AE92CFFC0A80 +9F8EF0DBE782E10D065658FF573553AE7EBC443C640F3F5745DA56489EFE26BBE67475C3F0ED603B +9DDB8464D40B587BBAB8F1B3F73FF9371EB27335665FA61498231EE271987F283580C7B42BF98121 +2D1460D366B3B5D0B7A7F7CD24B3C145B291FAF0B1F20996860BB42E7AF96BEE82C2B2174E9ECE34 +28A5FF9A63D7858C44BBC680770CE70BC7DF2B68CD42F9342517976533B7DA625EBDB07E071D4C17 +C3C32714C079DBEFE2F6F4977B005FCB214BF1FCEB394488CF34938B112C31AD00A54D096EC3769F +157DF59B6EC70FC6BB644470C2DB9688A9891D06145B198DEC09C5DDBFF4E1F56D8B62D172F59271 +B009EC62DBD8D48017892149618394F80F3472ABA74AAEABBA441B569394080498B5E5B56EFDC414 +BBFEBD1D53FBD880E92ABBA771A5EFBFAB1CA24C3F36686B9D9B65DBBBA23089C7D35CEF18D9751F +EB7C1E65F3B672D5E7C2BF998F65D0F49573F285279159BBCCE027E66EEEF9E47CA90DF348D89F86 +48FCB6F55AB2ED74C4043AE90F3542759B3F15932F8A52E3318F1693B2367E13AC6412B41D06DFA7 +1A3A869DA8816B26CD2CC94DA976DEE2B7ED59B4E956A0836A5E7FF5E0FAA40A121482798BF50E17 +28D3387D50CD62E1017235A3B1416CBB94C04F3E3D5FA2BDA3819A47057B8FECB3C09E0A391B5EAD +C38DC1AB744F90453026AACEDFCC190A280F0179C8A3BC1273C608A671E4ABF8BB5DCFC473240048 +1002AE9451172F2F9809B75440B987AB11DBB3569022A02F0194D73FEACA133DBB96BE3DED9623D5 +A89D652880EB4A147BD25031EE1C212E3226D5F7C4497DD9E2F767C4414323972C2B268F192113EA +4A0CD2B82760DCB2ACADC8719511F63D471F2DAAD5399A0B5DE1A15C6579712A81B432DC083E2EFD +660FDE2F155C78676E3350A9A5724512F4169C5E697897F5013D010BF75CB1920328F21DA3408BD9 +0216A18A5017D5FA51083A7C49C3D226B8AEB886083D13EECFB4EF12DE38E5F6B5B7A06D7F2BFEE4 +4690C87A7EFA5725AC793B61EE754278919EF5C5033D539A9BE0732F3D33137B6BC6D170DDF29763 +101BA0078E4BDC1562D16CDC01E05129709AD0E9532C6E6F7E74E42BF133F53314AAF732E90DC3AC +5C1BF5FD615189E12EBCE636C9129641A4879BC987E734289732F73DFF066C8C13B3735E2F2DD818 +E542EC0649DE3E37B0B5111670C45EC14E1E1FF14E41F12A20A6FCB2FDCFA350467651D697AA7E55 +49E2D4B30175244EE941B1F66BCC160A03B963A64DB7D1A06ECA645866EC4627EF2F3563FB399DC9 +B56A99A024D8FB026B8CF36E49484B98C90DA4477FB706CE1F5B136705E52A539D21C933315542DC +E71BC85955427D9DFF0DD9CB767B6B67DE7C2B8A2E2CF3A639E4C354EBC169360311D44D6F57322F +0A402C293F9FF510AF29BAAE402A218B6314495017595DC15128022B8C698ECFBAEF7ECDEE7FF01D +E305261E0119786B842B781C94E2B0138A581CD051807508F585597EBCEF7871A914FDB08466B2E9 +79C83DE884845105596546434E0EA525BEDFFF3E68F245493745A06B577C9A50E0170274210A6F6D +4A44C1EB5512ECDEA42F107E8C08A98EEB9EED0582D607DE96328ACD3D81BD759CEFB2F6DFD2AD55 +FF46D5202CCD0B518DB0008DE95594E96F77FC36BCB1EBCD388BD2E3CB674F90A8C69B4F57FBFB6A +57F07443B05B43BAD9EDEC3A90C5270A9F9198C8674972734277A7A14F22433A74CCC8182FEA974F +E66DD3A3BBE8F2494895B01B5AEDEB4173D8C3BFD4AAC413A548E0D446E0EAD5BCE288586885C116 +080C0AFB697061D021C043D2822FCDB78CFA99DE2A90A8465822A6FE4C0D03494EC045EFA80793A2 +458FA78C3353B0D5D0600CE006E31CA3131F387EC4D84B0C7C46A308D08C302C85ABF45B2D483BC6 +3DF7B0EEA1A0AFC0F844D77274C95ED477114752D0C88AE6092423DFABB3B01934699F096AF8F067 +D870F73CE45036362AC4CADCF97F42C63DFFC69EAC751C08AB6D61D34D32BFCEE1155D012314FD51 +252D2470B4D4CB16D0ACE4DDB17030C3622F56F96EBEA0FB90D92D109B956A4DC00332A9433FFE10 +43300B01D87EAD0C51E6D65545C37AA6528C214BF68831BDC78A84746E879643D9D9EE6BA5C167DB +0A370308C5EB606619A17BEC856BFF181BEBDBA0CA0BEA05C4EC948E288A941755EFA2DCFAEE67F3 +3B311CE0532CAF26FDE29474DBBEE42A623BEA14E4A4858B0496EFAFC775D48065F58DC20F727DCB +866EE68E24918AA1906073B64B0FE458B08A1B7DFA4BC03DC88CB5394F1FD149478577396F0AD201 +C4568BEBAB40DE8B864484D8D117727EA283CAA7485AA58FC506CC9B1C774FC883A3440499E3D984 +36111DC1DEF8CA30DDDBB9DDB9C89534D691555C36B5450DDE24CE5B17DA11E3E4C37A11581E4FA3 +C0D89B5CC3784BFFC14B6E98C548A7C38C53CAB973AF3DE82C6D42A01A57C9FFA790111BF79FE7F5 +91D5E2FF9E2730B7920A30D7BF713E4EBDD272DBDAFC8A676F195BA9082CD779E002FFD0785FC8DE +FFCD12E4B8DF368091E6119E135076E43DD0CD75E6429CEEA972391BA73D93B89645B2480315A49F +49AFE2F324D251AEE654ADCCA32A66E9B1B9407B055BBC615E37BF1BC8C1ADD81ABBF983C73F733F +91770D50184FCA3A0F6165CFE79002352DCDC1296D67AD671A4F4C0A60C7E9C18F3CC374A4D065FE +56D0BBD2CEEE3F70AA9398896FE22CDC4BF7332726A0E676D66D511799D63BDBE0DA140EC4EBF57D +E032B620E5ED890A6760CB7D40A05037BE3A6C5347DDFFCAAE3A5C4BC116F39969936FB483040E42 +1345EADC494523ACBDB55CEA57C40279D4AF5C7C9F3B0660ED9E725C9FADCD5361784D5C14B93C3B +13FD055F269BC7DF6D67719A2BF30D19D1A690B4CBC06DEA51884A686564B3FF6B3F8E9C9FBEC5A9 +14F525B6AE34D448B0AB85FAFA4E7F301984A9645C786DF2A19C2E6A20DD0B60AA2974A624E7CD19 +17AB87B273D04516D727FD30EFD27C983342C9BCC1D9CE95E7576AF25A4BFF02DB4588B8604C306C +04AB66E85E114C28CC47395016955AFACE381AF44B1D004D5B6B64186CD7CB9D081F93A637BBCFE8 +E292FD8D5863BFC683C9E37F0FEF0ECD16CFE63E0A584BFA4116D3AB0ED62B7B82C1630B2B78F255 +27A79267580F58005BFBD37E5C0C31029945CF6F6F72DB17EABDBB51DC8726FCD5AB2D61341B2EF7 +716F0D0AAC546DEDD22AC62FEFB1ECA0EC524C6B3233FB4E1B4CCE49F584BE7BAF33C878F2280A85 +98502001DEDB4FBC9F7DCF40D055AC35AADA869F2808F0B401C294AE378AA9B2AF2768B75D9CAE1A +C52025F18E7DDAEEA2122CE9D233A2A9046EC5EBEAE20FA928BA4AC651AF426574FAEFE31D28C771 +7DEA91429C7BD7611CDA7F5F55A070AD6776AF18DED46E5101A7D1A47F0752896669148EACDBEAD1 +C8A44801B53DDC61261499F2FCC600F635D8CDDDAD94A24BC14A2F5B5AAA6260955256256AF4A9AB +CDF541453E4190AF27139D3C6A2BE9BE4870260574C26338FF348F503DA4DC15FAC4F6ADBCBCC29D +93B9100EE126A0A28C3F0CA30B7F09E13AE59E34DA373702C5817D222DA4AC23DA5EE272805A902C +DB7001A0CCB26220D956871465BE18A323DF93CD792BBE61F3FF8C4957FA49925DFBA1569FBC1BAB +D1C3BA13F88D1D98F7034DBDF956F52646DF43AC978E86A1C532085DF36A66FF556442F3F337A699 +DEAF26EAE1AC20FB2968E58DF82ACBB647350335E4D48032E1BB49F1EA2181FBE183AACDC06761B4 +8A9EEAE514A00B4656B4CDA4BA3AC27F30C39A4274C1DAC69A7BBDEC53C9C7D78D0FAD8530073440 +C85F0A4B0003AE793731EF2A3199CD73663B05BDF83FB2B8C175F0CB3D20C52C0C8A370F9DB92304 +8CBBEA7267C828A700C5856EECBF7FFE8A67C5027BEF1B1C7D42C717ABC02FBB73A3AFEC5F57D6BE +21C2CBADC84855BFA4BDB2F127307BF437F010AF0C938F9587B153249E6EEC2ECA63E9BEE972CF4D +98627E9DFD37B325E7A6612C667296C8E9256C62690BE9D25F7C68CD984B56197148A89E8E05B9FE +98F033E9DD9EF7245EF70E63289C7947BE5F2272154E207A9B4B1FDBE41B1D4D72BE13873462B012 +F4B9D5F4164B714965F36C4101C870EFCC4BACC1A6DF744C1F91B1B7A2BF63BDFB840F5B0C062ACD +11FE47D9A3AA36CDC00ACD6DD8475034F603E859B3113B1C8A311C80B5D9EE1D881424745B573DB4 +3656FD733864CDC8978006D58309E4B226288A0DCDB9AAC8396FC9DD024BC5F00160C382B127EB4C +9FA74B62BA990E2DFBA53D3CD57A27FB68F912E5B69CFF2113D70CDCAEF634BFEB9D7A65CD1A670E +3A2CEE5D9687558A1BDA4358BE0917A4C8614B97DF5810473714F6FB8BE998BA52916F790F353DB8 +7B96194C6271147A947C664D273CDE1893D4E1EAEE9F4199941970A46AB809D4776E9310C506EDE7 +7EF1E9804829E495B0F654EB15FC2563DF6CB1B9D36D837777547CA37ADB28768A8DA2433BFD20D7 +2F9F00743272277F2C9A9F1F33CFAD44A8F3D620A0DDA13C3286760361107A0A82E0D12A9C601FE9 +3971250D47583AD68AC90892AECC54BFAB740A2F51F07A1E2C5B5E3A895F3E3001F4DEEB99E0A646 +4B0EC3753F30013E9C92525D9F651898A585DB03BB7180D652CB68ABAB55BF18402A43888772F9C3 +6C9F7CF6E00F07B33590C777B1B056B6C31210A3FEABC46BF00E7A837E93EE3464776B9D78E75C60 +CE9E0725C31784836B9CD63BA44DB0867C80D70A15FC97CC6E4526E84AE9B30CDA84C1C7857466E5 +F315C8F6DCFA0289FA937AAFF5D3CC35709E9EC3C255B355D7BC6063BFE6364804342D4BA7D015BE +58633CB781FFDEE7BFC46AFD84255D141DA1EF280D5CE22017DBC7C1A128B3F9974AD5BC1E53E43C +3EC042C17DBED744236D8AC784B9102E2FC4E94DF8C78254A6D496790CD6684EBB54035048E1DB75 +93E552C7EE7B884012517917AD46CA470ECFBDDAFA7F1FF13C0CB00005628710DD4EA93C79DE721A +89BBF27DBF7A085799B00D6AA37D7B3590C79ACAA5DFD15953E7F8B5874EF9BF34A217184100A080 +0A5675D552ADEFD930E294A50CF7A3C6344EA0871ED23AF942EC699E21537D852ADBE736EB1070D2 +C9B622EBD2384430BCB114D1DA3CBE2C6FBC839D77F20ECC999A5302705AE31AEEB8B4E5CA4046A3 +C77F8B0248E3755013CFA7C76D7248920CC203834E9328B58D5FC7C46B11B5AEA991556D067C2B24 +37634D95EA274197D3B46CA1B8446D633B6F0AAE72A599548BB3D81A337113D3EC58B0B2DD107A61 +7CA6DEADEE7003AE6F28ED6DAA5C5D99D67DFD2594800A66D11D26490156A539E286191274C30C09 +8DB77A427695BAE705DF290F97887C5DD6FD964D76FE6132016D0D58580F2EAEB727FE1B8AEFEC95 +C4629CB17D8C63D1EDD2125527D00C9E7C64AA7053A047A69F82812FD3C8C2543F269EE9C553F5BF +8A53D461D9C308C198EBF2B97DD531664229D32C3EC61D69E4E79F539E9E589FC3F57C9E4624F869 +A482062A52C9F4B640090C360DF8DC8702DB966EFADCAE94C8A2DE022E88EB388239BC517368F8C2 +6C8D96A6E8649737F902495E3F29F357B9B58EA47A9400D028B8BFFE74BAFC43E888808381C5F3E3 +18DF9BDA26F6E14DE2858A1A9CFAAB8A82B7819F748E04C8606DA94D884A13C67E3FA06F9C2834E1 +A02F4BD043C87D57297D500E4757BCEB37239A755F36FF99A3F9B6E0CC9F8938041EB931519BF0D4 +2E7A93EE62E6A59C2BBF1B2D6CE1958DAB40F1EC78C99C501CFD69864DA50EBF933D30CEAEE7456C +D0A08C78CAFAD93CACE2671F7E3DDDDA98EA56CA35648109D4E6333188ECC817F317D8979DA9FAD9 +DD45DFE5D74BBADFAC4921723F736426D5ADCC5DE4FA6703E121BFCECFB415F1D444634A7223389A +38DF2AD64101476D170DB854A220CA8433AB5DC40A841BEA6CBC538C63E0442A7764014D853AF8AF +C34F2D17A1DB8740A45C857667A59F895094867D12D06EBF72942E8ED4D6EE9EF225B4DD82A2F16A +D0A8C2C246DBA7BB9245ECC4863D14885BC30950451113123C868B8AA5B36F7B926B5ECB0A333902 +BB241B3D281550655912AE14A634D79515F00799E91F6DB093ADA1692CCB5A32CF94FA0A4E1B311A +68BD03C0F85F2F63C3C0658A3756013288704B240E14F65AC1BDA3098894BE592794245AEF119ED5 +9523983DEB2D0E9D211F62E6D6C5AAE72F3AEEDC4E590BD531EEA93C05EDB1370F140DB3034A9996 +22ED4BA8F1AAEDB368656B6C6AF920DE068E06B985FD47461276723C9944CAC87B44475767009320 +C7934FEB9B4DB8E1003000A663155C9A3FC67182BE4EA30F5FC813A8F34F3F99DEE8134252A98B21 +54FCE28C1EC23FA5E4BA8C4E005708A18FCEDE9F154576F0B3400C7FBFF197011FFB739D285819F9 +C19796979B3A0A5E4E5CB116F78DCB3A7178718D886D1A9E52BF4D9C8CA2FA2725147413CE566DC7 +4DCD7328806238F8BF9A780CE75C05A7C2BD89420F8A0B0D602498C1C83F775A231B8BED4EDA6F8C +995ACF80138D4A438EED6FB2CA44F06D664052D45B2FEEF0EC584B27E01D663D4B2F8C48E04690B3 +50AB33F10875460000D37C300CAFB3F8391E44F1AB363074FAC3E03C41BF062E5668AB0A4214C64B +171A2CBA072DED6EFAD31309A34D99DBC065106DD8F0942DE6DFD6C0743D98F214C3E3FA09DDEE4D +1080AFF99C98E001EFE2B853747CA64A6130A87AEE3583592AAD47CFA01F0B5B22C638925ED65188 +6EC83777DCCB56A808404BB5B655DBAE33483AADA292B580F02FF2494C7F3F7459BABA95373E39D2 +ABEFEC3FB56440DF99E6DC49E4D01F9286E11085D68EBE8744F307F6AAD2DE8B745E243163427A2B +90A90F6726BCF115DA15331E3F30CD025624C7B916A97B4067C60213C0B3782EEE9F4594B4B78B07 +2C5E9A30D35E1FCFB5E043404E5407A01A2ABBB636096B0ABFCA115414EBB67749D494CA030E21A9 +1206D6B090E0D94EF2D1165765010B8D39695D096825D9687F2480C851690AAEAF4AEEF413C054EB +FA49AA548B618802B62D0DD5FE7529563FD02F7CAFD93CA182B2506393AE802093C5668BE1D5D2C9 +E74C3160B5C3055A31ACD75B2CE21E1014D136FB96E44D4E6BD79A7B5FC5F1741A55B6CDE4CB5B44 +AE1EC827FD9BC083F76C8787756104E782F9D4BDEDA005B4085690CCDA8AC75A0BEFB47D0806F4A4 +6126AA280A41F0FFCFEA04B96714C7B1D4F806FA6412DDDAA68B20551C36E556647C3A7FC303C655 +79322171A7783FD7364F56ED31B5B8132815F524DC97030DFE3E47EDE35D03F4CD2CD99AE55D0BB8 +17A93C71F7C5383ADD04552F1C54557D494907D3050FC9D5514FCF80EF7039C5B076F16A3A946D59 +1165E72F2A31E906D4A57167B44D64BFAE9C408E9CE5EC8937C7B3B0AF24089A1878AF0758B7CFC8 +A787EB7CBA64BF13D3939DED996660A6487579162F56C3440764954DF160077B16CBBAAB9DBD5857 +FC44A5775ED562140DD33B3CB2173152213DF78D65AFC94347685181CDCAF3B79D755652C2B2D3EC +39449252DA027E97E534AC05ADCC39795C41F68E5F98F983CFCB4DE3BADFED909B2B6178904806B4 +0AE9F9B3577531D1C9C5793EB1C455C9895D2C858540C6B7F8B40AEDAE79FE461309AF352C80739C +5AD7612EE5970C113133502E1F59F53F8A72373A3841C37E727ABFB1E7A2AEAEF482B0942CDA1BFD +D81F7A2FC15A7D0E7F2CEFD8BC432268ACDDF3698804556E4AFE9086E6AE0CF1B144A5A7D04CE576 +F26533B611371D7F846959F2A589E54EBC0EA0AEE1C117EA3E8957E07AB8A728AB388B06BD7D98CD +44C468F7AE354304DCD93BCAF479F5C27BAC920128ED987667E94ADAB5E55EAFAB2B52BB2D83991F +9D638CC461A25738A6C33F134191A1A804EA935EF441F89129175BF705D4F7089BDE3C0AE6C61921 +487B3EDB029FFE0CDD2307B68CEFCD58591F939ED509EBA0FD070294B5158F3BF432AB18379BDA34 +86DBAC2984198FAEA711008AA454E9612B23B6C8C5AA908E5424456603D522BCAEB3EC41E1C8BBEA +B1C8CE0BEF6AB7C7008171F62B03BF9258329DCC30472DB329313606157CE246CC8D5C9E7DA2AE08 +967CB303C5E516F18F0CE530E75762541536B444925C1E123CFB615157A3169F7F10172423BF5A54 +0015BDA30A03414679A145541655B65253CC546261FF4626722942C8AF01FDA6F92200EFF2716807 +4F3BAC5692AAC160F7A0DCBD5315C4B700E3BEF31520215C093F0F1DCFD5D18538F8D4FF1997C652 +4DD972AE1CD7E11F829CC621B383390C2E7D196A8D5A9CBFBD8D3145E20CF045D1F128CA47CC9A01 +91E29D4217A1FA558F1F93DC86171E43764CC7D9377A1C76AE027D5C3FEC7A38CEE040DA280902D3 +F183134E3A95E5EF148C71BD5994BB28EDAF191EAC23BD02BD9A5F613235E97A5EE8C5C7E6A93F03 +186A29C684B6E46026A31BF1830B1ED3BB12A0648270CEE09A4F5AB891AD72D80C4057C781DFD270 +EE443E1FE4E9D8E58D2AA0A9A702836EABF544A3B4F2E1841776EA821FDB36E71AECD6A1C355127B +461FCF72A531176DB59F10D9A1222F99EE4AA579CD5CF6A288016F5DA6838536F3FE0D902543095D +90094EB79BF1592CDDE05786DAFD98AF30C6CEBF27B1315C706A63D4E868BA374EBE33145C16F181 +2AB2F8668B549A74C8A58304BAFBEE3136533542EDB8976C7550F0905546D116DD0E11384C2B99E1 +195316EC9CD53EBADB73509FDE80B1BCBCAE46E8806E0CC8CCBF2B10FC54D05C9F604B4ABFC87B25 +DB5CA90B64096B18C33E8A53F45F163AB7AC47CD6E9521230D689ACA686B5792D72097C4E67F93DC +9B7AEE088DA36BD6ACEE7E68ECFCAFE7D585F677BD1ED27595948CB7CCE21BAA375393CA45234E8F +4633D61EC657C528EDD0FF520964F8B737D0DB9A58DB146588F7F02CB77DE7D417CFC65B45CCD62F +77CC833DB5228159A552C7D6B0F7E5E5521E26C7F9A47D8F600CA820DF8B4B25B8B8D823FFB49E7B +1E779D9680AFB496C7BD8D2FDB99717F9EF91A6AFFBDAF5E6C188315BF63C3BA9B8414709D1E60FD +25D29BEA68D6D5857CF024BC2E03249A4B294F36E3BE13225319F11AED07AC2BD2E5BA6E9CD7F77C +C707F6268514BB7D50257EB4E23BD6CB9700745AF46DDD87664364A8CE71574F2D60CDBE61A3AFAB +925EFFB23273B61E93385C29C2E8B76650C1432AC8D4FF35F5419CFB553C8F10F4230CDC749B5F3A +8F5B1EC8C9FE31626378EB495A9A53BE7E1C0683550BB3AE9ED557CF4DE95399C5EAFB4B99B0889C +890FE2CEF419A20800812D0DA7795E9F519061D19D1AFE2AC77CBBF05D1A738E62B64B4224DCA36C +48B7A9D1FF785225C9852111316ACE1DAA2C21E05D767DB0DE6A0593D19029814C8BCE19DEED87EA +E4F52004EA1FE7934C099EC71AE7048D796081176AB9B8ECF42FA5581FFD859BD818411DFC4649C7 +6F82D6C03563F9B9D2DE6F274D41E0A93784EB6ED0FEAB8DB20CFD35E2DEB93A1DD1AE514F9E8A48 +279536885042D248CF3FB0872135921DFDDC41198DFEE21982D675CC3BEFA0A3986893CB55393D0D +97ABBE2E2E9B911B8E219104B22197EA04E201FF9C5F9B644E91709CFACDA783050C75212109FBBC +0422B697902D9847D764AD31E851ABB49F9BED16F1377F97198664125C1BA4E06C4C43AAD8829047 +38E1127C3CDC74167B21358CBDC8563951CA7B5DE09526FEA0B1D2AA92F3C4EDFC252BBC38463B55 +E97E8C40D6FD34403357911A1FD0A46565148F3FC891B20EC84976FB26D13A93F1B3D7162D864F8E +1C4A4CED23724105D0B7EB83EB334386912AAD93BAA8AA9CF5CDDF83D5FF76E94C8A2C40C28B5F48 +47A49D8155347392B7D2CF2731E45E0ECA9A654AEEC5DC2A6B03E93D4DA22575D824294ED80804B8 +42B898708A5FA69C5F958A935D47F57039C31771879DC8AE993CF060F6B509F8CE28FAFA8A0FF700 +FD69D4EBC54038D5E1CDE731CD67C5C6F8E7F1CB1977C3768E60E3860D1254AA78436A71018CFDCC +1039C7CF620E280A3A101C9E6496AB07A882C4C018AA79327D9B55EC53C7EB34503E3CBD90035527 +B81D7D698800154E452874488A41BF917B990D90972921EC0E8D6572AEC8360D67F0EA9B9575AD61 +9461982115285C3EE3265F1750C76B4601C48D06C932A3E857EF68C9D2B4E5531342AA76FA4A923D +D1740A100FE9B4580F4CE1AA6856FB1556FCF8C6306690FD36B5886BC06704744B09D0F9CBD0D2E1 +36B7DCB486F19933F2CF36BA0A4FDFEC77DD2DA63456373C7CB7809A9A072D8BD3A155D0E90F984B +7BA4C7217094E2930A71196175ADFA3BF390F8D903C797C29B7FA821D31ADA0EB141F276776ED034 +C264D1E1C18D5E090AA163B65B51442C61CE963BA47F4EFE6D838898643315B866F83D71650D9924 +5235C2A2E97DF2BF14409DAD942051D2562422AB60E080650B9EB71E1586D9C8E5B674BFBE8F4B23 +DF68880E08C7B9C09D3EB54991580D300A89BA6B40F5DF531F5BC2B4C6AF7DB94A6AD624244C8CFE +A52FE3115BCB22771A210AF9C166C3FB3F27D07BF67ED6D4C7FF5F7046FD77579D3BA8BDE02C31F7 +9BAFF2AEAADE15D56E779201CCC9E6F5DEB0A90B205709ADA4A2D66E1DD455FB23D79C30D9A2BB07 +957A931C3BBBD5533BA86C0F40B1346CBF923571F0A25305892E674D51B2A721DA792EA916EAED56 +C846705702E8E18DBEBE5BDCFD771E071C82FDCED813196EFFA71335C6CE9C1FBA3EDA1E2BE4AB0F +223E031F7CA5E09503F4A283A942F5C7E10445F37CAF5A17AF84430A69CA619C53A4AB4E5BA35069 +DCEE88333B2C0BAD3DA6C15EE2B56E57C475814A4F94A8CDF93790DB3B3B9E25EC3608A5A073A717 +AA171B020537672DAADD0E9F21509D229D37CC5ABBDDC0318872119BE4E7277B0175B7C3260443DA +A836709707BDA9BBC4C451279788CD2D6838B53C41868537311D1BA4BC908E13E4C138307BE60B3B +DA1EDEEA87D291F442C7804FE53EFE88E6EE93D3C460D8E284511A34823E5A4520F6D258 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 + +cleartomark +{restore}if +%%EndFont CMMI12 +%%EndProlog +%%Page: 1 1 +gsave +newpath +0.0e+00 0.0e+00 moveto +1.3e+02 0.0e+00 lineto +1.3e+02 1.48e+02 lineto +0.0e+00 1.48e+02 lineto +closepath +clip +1 setlinecap +1 setlinejoin +gsave +newpath +newpath +2.45e+01 3.84e+01 moveto +1.235e+02 3.84e+01 lineto +1.82e+01 3.3e+01 moveto +1.172e+02 3.3e+01 lineto +1.19e+01 2.76e+01 moveto +1.109e+02 2.76e+01 lineto +5.6e+00 2.22e+01 moveto +1.046e+02 2.22e+01 lineto +-7.0e-01 1.68e+01 moveto +9.83e+01 1.68e+01 lineto +2.45e+01 3.84e+01 moveto +-7.0e-01 1.68e+01 lineto +4.43e+01 3.84e+01 moveto +1.91e+01 1.68e+01 lineto +6.41e+01 3.84e+01 moveto +3.89e+01 1.68e+01 lineto +8.39e+01 3.84e+01 moveto +5.87e+01 1.68e+01 lineto +1.037e+02 3.84e+01 moveto +7.85e+01 1.68e+01 lineto +1.235e+02 3.84e+01 moveto +9.83e+01 1.68e+01 lineto +1 setlinewidth +newpath +3.485e+01 3.03e+01 moveto +1.595e+01 1.41e+01 lineto +4.79e+01 3.3e+01 moveto +1.2215e+02 3.3e+01 lineto +3.8e+01 4.65e+01 moveto +3.8e+01 1.545e+02 lineto +newpath +1.0e-01 setlinewidth +newpath +1.91e+01 1.248e+02 moveto +1.91e+01 1.68e+01 lineto +9.83e+01 1.68e+01 lineto +9.83e+01 1.248e+02 lineto +1.91e+01 1.248e+02 lineto +closepath +gsave +7.946392e-01 7.946392e-01 9.93299e-01 setrgbcolor +fill +grestore +newpath +1.91e+01 1.248e+02 moveto +1.91e+01 1.68e+01 lineto +9.83e+01 1.68e+01 lineto +9.83e+01 1.248e+02 lineto +1.91e+01 1.248e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.83e+01 1.248e+02 moveto +9.83e+01 1.68e+01 lineto +1.172e+02 3.3e+01 lineto +1.172e+02 1.41e+02 lineto +9.83e+01 1.248e+02 lineto +closepath +gsave +6.331216e-01 6.331216e-01 7.914019e-01 setrgbcolor +fill +grestore +newpath +9.83e+01 1.248e+02 moveto +9.83e+01 1.68e+01 lineto +1.172e+02 3.3e+01 lineto +1.172e+02 1.41e+02 lineto +9.83e+01 1.248e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.172e+02 1.41e+02 moveto +3.8e+01 1.41e+02 lineto +1.91e+01 1.248e+02 lineto +9.83e+01 1.248e+02 lineto +1.172e+02 1.41e+02 lineto +closepath +gsave +6.524785e-01 6.524785e-01 8.155981e-01 setrgbcolor +fill +grestore +newpath +1.172e+02 1.41e+02 moveto +3.8e+01 1.41e+02 lineto +1.91e+01 1.248e+02 lineto +9.83e+01 1.248e+02 lineto +1.172e+02 1.41e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +gsave +newpath +0 0 0 setrgbcolor + +% Comment: canvas init + +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +1.0e+01 setmiterlimit +gsave +/CMMI12 findfont +12.0 scalefont +setfont +5.39809e+01 3.928028e+00 moveto +gsave +[ 0.9 0.0 0.0 0.9 3.20895743744 -649.693889902 ] concat +(\154) show +grestore +grestore +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +grestore +gsave +newpath +0 0 0 setrgbcolor + +% Comment: canvas init + +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +1.0e+01 setmiterlimit +gsave +/CMMI12 findfont +12.0 scalefont +setfont +1.127e+02 1.756736e+01 moveto +gsave +[ 0.9 0.0 0.0 0.9 61.9280595715 -636.054553435 ] concat +(\167) show +grestore +grestore +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +grestore +gsave +newpath +0 0 0 setrgbcolor + +% Comment: canvas init + +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +1.0e+01 setmiterlimit +gsave +/CMMI12 findfont +12.0 scalefont +setfont +7.185301e+00 7.111401e+01 moveto +gsave +[ 0.9 0.0 0.0 0.9 -43.5866398223 -582.507903855 ] concat +(\150) show +grestore +grestore +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +grestore +grestore +grestore showpage + +% --------------------------------------------------------- + +%%Trailer +%%EOF diff --git a/assets/images/polynomial-applications-box.svg b/assets/images/polynomial-applications-box.svg index b58adc83..81712d07 100644 --- a/assets/images/polynomial-applications-box.svg +++ b/assets/images/polynomial-applications-box.svg @@ -1,35 +1,35 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/polynomial-applications-cylinder.eps b/assets/images/polynomial-applications-cylinder.eps index cdc2234e..9cc41486 100644 --- a/assets/images/polynomial-applications-cylinder.eps +++ b/assets/images/polynomial-applications-cylinder.eps @@ -1,13915 +1,13915 @@ -%!PS-Adobe-2.0 EPSF-3.0 -%%BoundingBox: 0 0 130 120 -%%Pages: 1 -%%PageOrder: Ascend - -%%BeginProlog -%%BeginProcSet: -/ReEncodeFont { exch findfont << >> copy dup 3 2 roll /Encoding exch put definefont } def -%%EndProcSet -%%BeginFont: CMMI12 -%!PS-AdobeFont-1.0: CMMI12 003.002 -%%Title: CMMI12 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMMI12. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments - -FontDirectory/CMMI12 known{/CMMI12 findfont dup/UniqueID known{dup -/UniqueID get 5087386 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /CMMI12 def -/FontBBox {-31 -250 1026 750 }readonly def -/UniqueID 5087386 def -/PaintType 0 def -/FontInfo 10 dict dup begin - /version (003.002) readonly def - /Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMMI12.) readonly def - /FullName (CMMI12) readonly def - /FamilyName (Computer Modern) readonly def - /Weight (Medium) readonly def - /ItalicAngle -14.04 def - /isFixedPitch false def - /UnderlinePosition -100 def - /UnderlineThickness 50 def - /ascent 750 def -end readonly def -/Encoding 256 array - 0 1 255 { 1 index exch /.notdef put} for -dup 0 /Gamma put -dup 1 /Delta put -dup 2 /Theta put -dup 3 /Lambda put -dup 4 /Xi put -dup 5 /Pi put -dup 6 /Sigma put -dup 7 /Upsilon put -dup 8 /Phi put -dup 9 /Psi put -dup 10 /Omega put -dup 11 /alpha put -dup 12 /beta put -dup 13 /gamma put -dup 14 /delta put -dup 15 /epsilon1 put -dup 16 /zeta put -dup 17 /eta put -dup 18 /theta put -dup 19 /iota put -dup 20 /kappa put -dup 21 /lambda put -dup 22 /mu put -dup 23 /nu put -dup 24 /xi put -dup 25 /pi put -dup 26 /rho put -dup 27 /sigma put -dup 28 /tau put -dup 29 /upsilon put -dup 30 /phi put -dup 31 /chi put -dup 32 /psi put -dup 33 /omega put -dup 34 /epsilon put -dup 35 /theta1 put -dup 36 /pi1 put -dup 37 /rho1 put -dup 38 /sigma1 put -dup 39 /phi1 put -dup 40 /arrowlefttophalf put -dup 41 /arrowleftbothalf put -dup 42 /arrowrighttophalf put -dup 43 /arrowrightbothalf put -dup 44 /arrowhookleft put -dup 45 /arrowhookright put -dup 46 /triangleright put -dup 47 /triangleleft put -dup 48 /zerooldstyle put -dup 49 /oneoldstyle put -dup 50 /twooldstyle put -dup 51 /threeoldstyle put -dup 52 /fouroldstyle put -dup 53 /fiveoldstyle put -dup 54 /sixoldstyle put -dup 55 /sevenoldstyle put -dup 56 /eightoldstyle put -dup 57 /nineoldstyle put -dup 58 /period put -dup 59 /comma put -dup 60 /less put -dup 61 /slash put -dup 62 /greater put -dup 63 /star put -dup 64 /partialdiff put -dup 65 /A put -dup 66 /B put -dup 67 /C put -dup 68 /D put -dup 69 /E put -dup 70 /F put -dup 71 /G put -dup 72 /H put -dup 73 /I put -dup 74 /J put -dup 75 /K put -dup 76 /L put -dup 77 /M put -dup 78 /N put -dup 79 /O put -dup 80 /P put -dup 81 /Q put -dup 82 /R put -dup 83 /S put -dup 84 /T put -dup 85 /U put -dup 86 /V put -dup 87 /W put -dup 88 /X put -dup 89 /Y put -dup 90 /Z put -dup 91 /flat put -dup 92 /natural put -dup 93 /sharp put -dup 94 /slurbelow put -dup 95 /slurabove put -dup 96 /lscript put -dup 97 /a put -dup 98 /b put -dup 99 /c put -dup 100 /d put -dup 101 /e put -dup 102 /f put -dup 103 /g put -dup 104 /h put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 108 /l put -dup 109 /m put -dup 110 /n put -dup 111 /o put -dup 112 /p put -dup 113 /q put -dup 114 /r put -dup 115 /s put -dup 116 /t put -dup 117 /u put -dup 118 /v put -dup 119 /w put -dup 120 /x put -dup 121 /y put -dup 122 /z put -dup 123 /dotlessi put -dup 124 /dotlessj put -dup 125 /weierstrass put -dup 126 /vector put -dup 127 /tie put -dup 128 /psi put -dup 160 /space put -dup 161 /Gamma put -dup 162 /Delta put -dup 163 /Theta put -dup 164 /Lambda put -dup 165 /Xi put -dup 166 /Pi put -dup 167 /Sigma put -dup 168 /Upsilon put -dup 169 /Phi put -dup 170 /Psi put -dup 173 /Omega put -dup 174 /alpha put -dup 175 /beta put -dup 176 /gamma put -dup 177 /delta put -dup 178 /epsilon1 put -dup 179 /zeta put -dup 180 /eta put -dup 181 /theta put -dup 182 /iota put -dup 183 /kappa put -dup 184 /lambda put -dup 185 /mu put -dup 186 /nu put -dup 187 /xi put -dup 188 /pi put -dup 189 /rho put -dup 190 /sigma put -dup 191 /tau put -dup 192 /upsilon put -dup 193 /phi put -dup 194 /chi put -dup 195 /psi put -dup 196 /tie put -readonly def -currentdict end -currentfile eexec -D9D66F633B846AB284BCF8B0411B772DE5CE3C05EF98F858322DCEA45E0874C545D25FE192539D9C -DA4BAA46D9C431465E6ABF4E4271F89EDED7F37BE4B31FB47934F62D1F46E8671F6290D6FFF601D4 -937BF71C22D60FB800A15796421E3AA772C500501D8B10C0093F6467C553250F7C27B2C3D8937726 -14A846374A85BC4EBEC0B0A89C4C161C3956ECE25274B962C854E535F418279FE26D8F83E38C5C89 -974E9A224B3CBEF90A9277AF10E0C7CAC8DC11C41DC18B814A7682E5F024867411453BC81C443407 -AF41AF8A831A85A700CFC65E2181BCBFBFE3573BF464E2BE882A715BE109B49A15C32F62CF5C1025 -7E5EA12C24F72137EB63297C28625AC32274038691582D6D75FE8F895A0813982793297E49CC9B54 -053BA2ABD429156A7FFCD7B19DAA44E2107720921B74185AE507AC33141819511A6AC20BC20FB541 -0B5AAEC5743673E9E39C1976D5E6EB4E4D8E2B31BEA302E5AF1B2FBCEC6D9E69987970648B927623 -2093695D55A806D87648B1749CB537E78BB08AA83A5001F7609CD1D17FFA1043EB3807AF0B596AF3 -8C91A9675E2A53196FEF45849C95F7DC182A5EC0EC4435A8A4B6E1CDBF9A5AF457564EA72BF85228 -EB6FD244F25135360DD3EBEDA99D94828F447D52D011A8FC8B8BC124A4B367EC860C5F7CDBE58563 -4A1ACD80E37B6F2D5F33AF5A2C0814652FA37D0C6A99767C561253AF8DA3A1279D421AE11C133004 -DB273FDDC2134ECA4CC50296220A4729E4E73003AA88CE151F57F8C5DFEE1A8B3A74D7CB142B4F7A -128A4B0FD028B71FCF59841D3E8CB0450A0AB47B927D944D94C5DA562310C79E2321106D6B90FBD0 -4F5EB787AC050578011A0B24AE534B93B4108D982736464ACF5B77071ACD59B8D987EA9FE832A655 -C175AA8204DFA034D9DEB3AF510C4E948AD8DF3E799B81C5C8250B86FF8F91BE906357FC5DE9A320 -9AF78555AAA0FE720FBF0300F4FFB1E6F49CE9E00B0870D1E0EAB2CE05378850D15E9591ED19E563 -27A083671AD4BD0FAFC5A3AFA4D3E3CB1E50111ECD344168DA214E380AB12211010DA632B2CE9261 -6B94EEF181FF68119A2A0FB6AD9D3BE9E91F24484D018879EF39B3A5EF9A040B26AC1F2F6EC60EAB -B4233CC0878BF25AD526D45BA051CB36353A5A56E9BA2D1132F595F3202195681878AE92CFFC0A80 -9F8EF0DBE782E10D065658FF573553AE7EBC443C640F3F5745DA56489EFE26BBE67475C3F0ED603B -9DDB8464D40B587BBAB8F1B3F73FF9371EB27335665FA61498231EE271987F283580C7B42BF98121 -2D1460D366B3B5D0B7A7F7CD24B3C145B291FAF0B1F20996860BB42E7AF96BEE82C2B2174E9ECE34 -28A5FF9A63D7858C44BBC680770CE70BC7DF2B68CD42F9342517976533B7DA625EBDB07E071D4C17 -C3C32714C079DBEFE2F6F4977B005FCB214BF1FCEB394488CF34938B112C31AD00A54D096EC3769F -157DF59B6EC70FC6BB644470C2DB9688A9891D06145B198DEC09C5DDBFF4E1F56D8B62D172F59271 -B009EC62DBD8D48017892149618394F80F3472ABA74AAEABBA441B569394080498B5E5B56EFDC414 -BBFEBD1D53FBD880E92ABBA771A5EFBFAB1CA24C3F36686B9D9B65DBBBA23089C7D35CEF18D9751F -EB7C1E65F3B672D5E7C2BF998F65D0F49573F285279159BBCCE027E66EEEF9E47CA90DF348D89F86 -48FCB6F55AB2ED74C4043AE90F3542759B3F15932F8A52E3318F1693B2367E13AC6412B41D06DFA7 -1A3A869DA8816B26CD2CC94DA976DEE2B7ED59B4E956A0836A5E7FF5E0FAA40A121482798BF50E17 -28D3387D50CD62E1017235A3B1416CBB94C04F3E3D5FA2BDA3819A47057B8FECB3C09E0A391B5EAD -C38DC1AB744F90453026AACEDFCC190A280F0179C8A3BC1273C608A671E4ABF8BB5DCFC473240048 -1002AE9451172F2F9809B75440B987AB11DBB3569022A02F0194D73FEACA133DBB96BE3DED9623D5 -A89D652880EB4A147BD25031EE1C212E3226D5F7C4497DD9E2F767C4414323972C2B268F192113EA -4A0CD2B82760DCB2ACADC8719511F63D471F2DAAD5399A0B5DE1A15C6579712A81B432DC083E2EFD -660FDE2F155C78676E3350A9A5724512F4169C5E697897F5013D010BF75CB1920328F21DA3408BD9 -0216A18A5017D5FA51083A7C49C3D226B8AEB886083D13EECFB4EF12DE38E5F6B5B7A06D7F2BFEE4 -4690C87A7EFA5725AC793B61EE754278919EF5C5033D539A9BE0732F3D33137B6BC6D170DDF29763 -101BA0078E4BDC1562D16CDC01E05129709AD0E9532C6E6F7E74E42BF133F53314AAF732E90DC3AC -5C1BF5FD615189E12EBCE636C9129641A4879BC987E734289732F73DFF066C8C13B3735E2F2DD818 -E542EC0649DE3E37B0B5111670C45EC14E1E1FF14E41F12A20A6FCB2FDCFA350467651D697AA7E55 -49E2D4B30175244EE941B1F66BCC160A03B963A64DB7D1A06ECA645866EC4627EF2F3563FB399DC9 -B56A99A024D8FB026B8CF36E49484B98C90DA4477FB706CE1F5B136705E52A539D21C933315542DC -E71BC85955427D9DFF0DD9CB767B6B67DE7C2B8A2E2CF3A639E4C354EBC169360311D44D6F57322F -0A402C293F9FF510AF29BAAE402A218B6314495017595DC15128022B8C698ECFBAEF7ECDEE7FF01D -E305261E0119786B842B781C94E2B0138A581CD051807508F585597EBCEF7871A914FDB08466B2E9 -79C83DE884845105596546434E0EA525BEDFFF3E68F245493745A06B577C9A50E0170274210A6F6D -4A44C1EB5512ECDEA42F107E8C08A98EEB9EED0582D607DE96328ACD3D81BD759CEFB2F6DFD2AD55 -FF46D5202CCD0B518DB0008DE95594E96F77FC36BCB1EBCD388BD2E3CB674F90A8C69B4F57FBFB6A -57F07443B05B43BAD9EDEC3A90C5270A9F9198C8674972734277A7A14F22433A74CCC8182FEA974F -E66DD3A3BBE8F2494895B01B5AEDEB4173D8C3BFD4AAC413A548E0D446E0EAD5BCE288586885C116 -080C0AFB697061D021C043D2822FCDB78CFA99DE2A90A8465822A6FE4C0D03494EC045EFA80793A2 -458FA78C3353B0D5D0600CE006E31CA3131F387EC4D84B0C7C46A308D08C302C85ABF45B2D483BC6 -3DF7B0EEA1A0AFC0F844D77274C95ED477114752D0C88AE6092423DFABB3B01934699F096AF8F067 -D870F73CE45036362AC4CADCF97F42C63DFFC69EAC751C08AB6D61D34D32BFCEE1155D012314FD51 -252D2470B4D4CB16D0ACE4DDB17030C3622F56F96EBEA0FB90D92D109B956A4DC00332A9433FFE10 -43300B01D87EAD0C51E6D65545C37AA6528C214BF68831BDC78A84746E879643D9D9EE6BA5C167DB -0A370308C5EB606619A17BEC856BFF181BEBDBA0CA0BEA05C4EC948E288A941755EFA2DCFAEE67F3 -3B311CE0532CAF26FDE29474DBBEE42A623BEA14E4A4858B0496EFAFC775D48065F58DC20F727DCB -866EE68E24918AA1906073B64B0FE458B08A1B7DFA4BC03DC88CB5394F1FD149478577396F0AD201 -C4568BEBAB40DE8B864484D8D117727EA283CAA7485AA58FC506CC9B1C774FC883A3440499E3D984 -36111DC1DEF8CA30DDDBB9DDB9C89534D691555C36B5450DDE24CE5B17DA11E3E4C37A11581E4FA3 -C0D89B5CC3784BFFC14B6E98C548A7C38C53CAB973AF3DE82C6D42A01A57C9FFA790111BF79FE7F5 -91D5E2FF9E2730B7920A30D7BF713E4EBDD272DBDAFC8A676F195BA9082CD779E002FFD0785FC8DE -FFCD12E4B8DF368091E6119E135076E43DD0CD75E6429CEEA972391BA73D93B89645B2480315A49F -49AFE2F324D251AEE654ADCCA32A66E9B1B9407B055BBC615E37BF1BC8C1ADD81ABBF983C73F733F -91770D50184FCA3A0F6165CFE79002352DCDC1296D67AD671A4F4C0A60C7E9C18F3CC374A4D065FE -56D0BBD2CEEE3F70AA9398896FE22CDC4BF7332726A0E676D66D511799D63BDBE0DA140EC4EBF57D -E032B620E5ED890A6760CB7D40A05037BE3A6C5347DDFFCAAE3A5C4BC116F39969936FB483040E42 -1345EADC494523ACBDB55CEA57C40279D4AF5C7C9F3B0660ED9E725C9FADCD5361784D5C14B93C3B -13FD055F269BC7DF6D67719A2BF30D19D1A690B4CBC06DEA51884A686564B3FF6B3F8E9C9FBEC5A9 -14F525B6AE34D448B0AB85FAFA4E7F301984A9645C786DF2A19C2E6A20DD0B60AA2974A624E7CD19 -17AB87B273D04516D727FD30EFD27C983342C9BCC1D9CE95E7576AF25A4BFF02DB4588B8604C306C -04AB66E85E114C28CC47395016955AFACE381AF44B1D004D5B6B64186CD7CB9D081F93A637BBCFE8 -E292FD8D5863BFC683C9E37F0FEF0ECD16CFE63E0A584BFA4116D3AB0ED62B7B82C1630B2B78F255 -27A79267580F58005BFBD37E5C0C31029945CF6F6F72DB17EABDBB51DC8726FCD5AB2D61341B2EF7 -716F0D0AAC546DEDD22AC62FEFB1ECA0EC524C6B3233FB4E1B4CCE49F584BE7BAF33C878F2280A85 -98502001DEDB4FBC9F7DCF40D055AC35AADA869F2808F0B401C294AE378AA9B2AF2768B75D9CAE1A -C52025F18E7DDAEEA2122CE9D233A2A9046EC5EBEAE20FA928BA4AC651AF426574FAEFE31D28C771 -7DEA91429C7BD7611CDA7F5F55A070AD6776AF18DED46E5101A7D1A47F0752896669148EACDBEAD1 -C8A44801B53DDC61261499F2FCC600F635D8CDDDAD94A24BC14A2F5B5AAA6260955256256AF4A9AB -CDF541453E4190AF27139D3C6A2BE9BE4870260574C26338FF348F503DA4DC15FAC4F6ADBCBCC29D -93B9100EE126A0A28C3F0CA30B7F09E13AE59E34DA373702C5817D222DA4AC23DA5EE272805A902C -DB7001A0CCB26220D956871465BE18A323DF93CD792BBE61F3FF8C4957FA49925DFBA1569FBC1BAB -D1C3BA13F88D1D98F7034DBDF956F52646DF43AC978E86A1C532085DF36A66FF556442F3F337A699 -DEAF26EAE1AC20FB2968E58DF82ACBB647350335E4D48032E1BB49F1EA2181FBE183AACDC06761B4 -8A9EEAE514A00B4656B4CDA4BA3AC27F30C39A4274C1DAC69A7BBDEC53C9C7D78D0FAD8530073440 -C85F0A4B0003AE793731EF2A3199CD73663B05BDF83FB2B8C175F0CB3D20C52C0C8A370F9DB92304 -8CBBEA7267C828A700C5856EECBF7FFE8A67C5027BEF1B1C7D42C717ABC02FBB73A3AFEC5F57D6BE -21C2CBADC84855BFA4BDB2F127307BF437F010AF0C938F9587B153249E6EEC2ECA63E9BEE972CF4D -98627E9DFD37B325E7A6612C667296C8E9256C62690BE9D25F7C68CD984B56197148A89E8E05B9FE -98F033E9DD9EF7245EF70E63289C7947BE5F2272154E207A9B4B1FDBE41B1D4D72BE13873462B012 -F4B9D5F4164B714965F36C4101C870EFCC4BACC1A6DF744C1F91B1B7A2BF63BDFB840F5B0C062ACD -11FE47D9A3AA36CDC00ACD6DD8475034F603E859B3113B1C8A311C80B5D9EE1D881424745B573DB4 -3656FD733864CDC8978006D58309E4B226288A0DCDB9AAC8396FC9DD024BC5F00160C382B127EB4C -9FA74B62BA990E2DFBA53D3CD57A27FB68F912E5B69CFF2113D70CDCAEF634BFEB9D7A65CD1A670E -3A2CEE5D9687558A1BDA4358BE0917A4C8614B97DF5810473714F6FB8BE998BA52916F790F353DB8 -7B96194C6271147A947C664D273CDE1893D4E1EAEE9F4199941970A46AB809D4776E9310C506EDE7 -7EF1E9804829E495B0F654EB15FC2563DF6CB1B9D36D837777547CA37ADB28768A8DA2433BFD20D7 -2F9F00743272277F2C9A9F1F33CFAD44A8F3D620A0DDA13C3286760361107A0A82E0D12A9C601FE9 -3971250D47583AD68AC90892AECC54BFAB740A2F51F07A1E2C5B5E3A895F3E3001F4DEEB99E0A646 -4B0EC3753F30013E9C92525D9F651898A585DB03BB7180D652CB68ABAB55BF18402A43888772F9C3 -6C9F7CF6E00F07B33590C777B1B056B6C31210A3FEABC46BF00E7A837E93EE3464776B9D78E75C60 -CE9E0725C31784836B9CD63BA44DB0867C80D70A15FC97CC6E4526E84AE9B30CDA84C1C7857466E5 -F315C8F6DCFA0289FA937AAFF5D3CC35709E9EC3C255B355D7BC6063BFE6364804342D4BA7D015BE -58633CB781FFDEE7BFC46AFD84255D141DA1EF280D5CE22017DBC7C1A128B3F9974AD5BC1E53E43C -3EC042C17DBED744236D8AC784B9102E2FC4E94DF8C78254A6D496790CD6684EBB54035048E1DB75 -93E552C7EE7B884012517917AD46CA470ECFBDDAFA7F1FF13C0CB00005628710DD4EA93C79DE721A -89BBF27DBF7A085799B00D6AA37D7B3590C79ACAA5DFD15953E7F8B5874EF9BF34A217184100A080 -0A5675D552ADEFD930E294A50CF7A3C6344EA0871ED23AF942EC699E21537D852ADBE736EB1070D2 -C9B622EBD2384430BCB114D1DA3CBE2C6FBC839D77F20ECC999A5302705AE31AEEB8B4E5CA4046A3 -C77F8B0248E3755013CFA7C76D7248920CC203834E9328B58D5FC7C46B11B5AEA991556D067C2B24 -37634D95EA274197D3B46CA1B8446D633B6F0AAE72A599548BB3D81A337113D3EC58B0B2DD107A61 -7CA6DEADEE7003AE6F28ED6DAA5C5D99D67DFD2594800A66D11D26490156A539E286191274C30C09 -8DB77A427695BAE705DF290F97887C5DD6FD964D76FE6132016D0D58580F2EAEB727FE1B8AEFEC95 -C4629CB17D8C63D1EDD2125527D00C9E7C64AA7053A047A69F82812FD3C8C2543F269EE9C553F5BF -8A53D461D9C308C198EBF2B97DD531664229D32C3EC61D69E4E79F539E9E589FC3F57C9E4624F869 -A482062A52C9F4B640090C360DF8DC8702DB966EFADCAE94C8A2DE022E88EB388239BC517368F8C2 -6C8D96A6E8649737F902495E3F29F357B9B58EA47A9400D028B8BFFE74BAFC43E888808381C5F3E3 -18DF9BDA26F6E14DE2858A1A9CFAAB8A82B7819F748E04C8606DA94D884A13C67E3FA06F9C2834E1 -A02F4BD043C87D57297D500E4757BCEB37239A755F36FF99A3F9B6E0CC9F8938041EB931519BF0D4 -2E7A93EE62E6A59C2BBF1B2D6CE1958DAB40F1EC78C99C501CFD69864DA50EBF933D30CEAEE7456C -D0A08C78CAFAD93CACE2671F7E3DDDDA98EA56CA35648109D4E6333188ECC817F317D8979DA9FAD9 -DD45DFE5D74BBADFAC4921723F736426D5ADCC5DE4FA6703E121BFCECFB415F1D444634A7223389A -38DF2AD64101476D170DB854A220CA8433AB5DC40A841BEA6CBC538C63E0442A7764014D853AF8AF -C34F2D17A1DB8740A45C857667A59F895094867D12D06EBF72942E8ED4D6EE9EF225B4DD82A2F16A -D0A8C2C246DBA7BB9245ECC4863D14885BC30950451113123C868B8AA5B36F7B926B5ECB0A333902 -BB241B3D281550655912AE14A634D79515F00799E91F6DB093ADA1692CCB5A32CF94FA0A4E1B311A -68BD03C0F85F2F63C3C0658A3756013288704B240E14F65AC1BDA3098894BE592794245AEF119ED5 -9523983DEB2D0E9D211F62E6D6C5AAE72F3AEEDC4E590BD531EEA93C05EDB1370F140DB3034A9996 -22ED4BA8F1AAEDB368656B6C6AF920DE068E06B985FD47461276723C9944CAC87B44475767009320 -C7934FEB9B4DB8E1003000A663155C9A3FC67182BE4EA30F5FC813A8F34F3F99DEE8134252A98B21 -54FCE28C1EC23FA5E4BA8C4E005708A18FCEDE9F154576F0B3400C7FBFF197011FFB739D285819F9 -C19796979B3A0A5E4E5CB116F78DCB3A7178718D886D1A9E52BF4D9C8CA2FA2725147413CE566DC7 -4DCD7328806238F8BF9A780CE75C05A7C2BD89420F8A0B0D602498C1C83F775A231B8BED4EDA6F8C -995ACF80138D4A438EED6FB2CA44F06D664052D45B2FEEF0EC584B27E01D663D4B2F8C48E04690B3 -50AB33F10875460000D37C300CAFB3F8391E44F1AB363074FAC3E03C41BF062E5668AB0A4214C64B -171A2CBA072DED6EFAD31309A34D99DBC065106DD8F0942DE6DFD6C0743D98F214C3E3FA09DDEE4D -1080AFF99C98E001EFE2B853747CA64A6130A87AEE3583592AAD47CFA01F0B5B22C638925ED65188 -6EC83777DCCB56A808404BB5B655DBAE33483AADA292B580F02FF2494C7F3F7459BABA95373E39D2 -ABEFEC3FB56440DF99E6DC49E4D01F9286E11085D68EBE8744F307F6AAD2DE8B745E243163427A2B -90A90F6726BCF115DA15331E3F30CD025624C7B916A97B4067C60213C0B3782EEE9F4594B4B78B07 -2C5E9A30D35E1FCFB5E043404E5407A01A2ABBB636096B0ABFCA115414EBB67749D494CA030E21A9 -1206D6B090E0D94EF2D1165765010B8D39695D096825D9687F2480C851690AAEAF4AEEF413C054EB -FA49AA548B618802B62D0DD5FE7529563FD02F7CAFD93CA182B2506393AE802093C5668BE1D5D2C9 -E74C3160B5C3055A31ACD75B2CE21E1014D136FB96E44D4E6BD79A7B5FC5F1741A55B6CDE4CB5B44 -AE1EC827FD9BC083F76C8787756104E782F9D4BDEDA005B4085690CCDA8AC75A0BEFB47D0806F4A4 -6126AA280A41F0FFCFEA04B96714C7B1D4F806FA6412DDDAA68B20551C36E556647C3A7FC303C655 -79322171A7783FD7364F56ED31B5B8132815F524DC97030DFE3E47EDE35D03F4CD2CD99AE55D0BB8 -17A93C71F7C5383ADD04552F1C54557D494907D3050FC9D5514FCF80EF7039C5B076F16A3A946D59 -1165E72F2A31E906D4A57167B44D64BFAE9C408E9CE5EC8937C7B3B0AF24089A1878AF0758B7CFC8 -A787EB7CBA64BF13D3939DED996660A6487579162F56C3440764954DF160077B16CBBAAB9DBD5857 -FC44A5775ED562140DD33B3CB2173152213DF78D65AFC94347685181CDCAF3B79D755652C2B2D3EC -39449252DA027E97E534AC05ADCC39795C41F68E5F98F983CFCB4DE3BADFED909B2B6178904806B4 -0AE9F9B3577531D1C9C5793EB1C455C9895D2C858540C6B7F8B40AEDAE79FE461309AF352C80739C -5AD7612EE5970C113133502E1F59F53F8A72373A3841C37E727ABFB1E7A2AEAEF482B0942CDA1BFD -D81F7A2FC15A7D0E7F2CEFD8BC432268ACDDF3698804556E4AFE9086E6AE0CF1B144A5A7D04CE576 -F26533B611371D7F846959F2A589E54EBC0EA0AEE1C117EA3E8957E07AB8A728AB388B06BD7D98CD -44C468F7AE354304DCD93BCAF479F5C27BAC920128ED987667E94ADAB5E55EAFAB2B52BB2D83991F -9D638CC461A25738A6C33F134191A1A804EA935EF441F89129175BF705D4F7089BDE3C0AE6C61921 -487B3EDB029FFE0CDD2307B68CEFCD58591F939ED509EBA0FD070294B5158F3BF432AB18379BDA34 -86DBAC2984198FAEA711008AA454E9612B23B6C8C5AA908E5424456603D522BCAEB3EC41E1C8BBEA -B1C8CE0BEF6AB7C7008171F62B03BF9258329DCC30472DB329313606157CE246CC8D5C9E7DA2AE08 -967CB303C5E516F18F0CE530E75762541536B444925C1E123CFB615157A3169F7F10172423BF5A54 -0015BDA30A03414679A145541655B65253CC546261FF4626722942C8AF01FDA6F92200EFF2716807 -4F3BAC5692AAC160F7A0DCBD5315C4B700E3BEF31520215C093F0F1DCFD5D18538F8D4FF1997C652 -4DD972AE1CD7E11F829CC621B383390C2E7D196A8D5A9CBFBD8D3145E20CF045D1F128CA47CC9A01 -91E29D4217A1FA558F1F93DC86171E43764CC7D9377A1C76AE027D5C3FEC7A38CEE040DA280902D3 -F183134E3A95E5EF148C71BD5994BB28EDAF191EAC23BD02BD9A5F613235E97A5EE8C5C7E6A93F03 -186A29C684B6E46026A31BF1830B1ED3BB12A0648270CEE09A4F5AB891AD72D80C4057C781DFD270 -EE443E1FE4E9D8E58D2AA0A9A702836EABF544A3B4F2E1841776EA821FDB36E71AECD6A1C355127B -461FCF72A531176DB59F10D9A1222F99EE4AA579CD5CF6A288016F5DA6838536F3FE0D902543095D -90094EB79BF1592CDDE05786DAFD98AF30C6CEBF27B1315C706A63D4E868BA374EBE33145C16F181 -2AB2F8668B549A74C8A58304BAFBEE3136533542EDB8976C7550F0905546D116DD0E11384C2B99E1 -195316EC9CD53EBADB73509FDE80B1BCBCAE46E8806E0CC8CCBF2B10FC54D05C9F604B4ABFC87B25 -DB5CA90B64096B18C33E8A53F45F163AB7AC47CD6E9521230D689ACA686B5792D72097C4E67F93DC -9B7AEE088DA36BD6ACEE7E68ECFCAFE7D585F677BD1ED27595948CB7CCE21BAA375393CA45234E8F -4633D61EC657C528EDD0FF520964F8B737D0DB9A58DB146588F7F02CB77DE7D417CFC65B45CCD62F -77CC833DB5228159A552C7D6B0F7E5E5521E26C7F9A47D8F600CA820DF8B4B25B8B8D823FFB49E7B -1E779D9680AFB496C7BD8D2FDB99717F9EF91A6AFFBDAF5E6C188315BF63C3BA9B8414709D1E60FD -25D29BEA68D6D5857CF024BC2E03249A4B294F36E3BE13225319F11AED07AC2BD2E5BA6E9CD7F77C -C707F6268514BB7D50257EB4E23BD6CB9700745AF46DDD87664364A8CE71574F2D60CDBE61A3AFAB -925EFFB23273B61E93385C29C2E8B76650C1432AC8D4FF35F5419CFB553C8F10F4230CDC749B5F3A -8F5B1EC8C9FE31626378EB495A9A53BE7E1C0683550BB3AE9ED557CF4DE95399C5EAFB4B99B0889C -890FE2CEF419A20800812D0DA7795E9F519061D19D1AFE2AC77CBBF05D1A738E62B64B4224DCA36C -48B7A9D1FF785225C9852111316ACE1DAA2C21E05D767DB0DE6A0593D19029814C8BCE19DEED87EA -E4F52004EA1FE7934C099EC71AE7048D796081176AB9B8ECF42FA5581FFD859BD818411DFC4649C7 -6F82D6C03563F9B9D2DE6F274D41E0A93784EB6ED0FEAB8DB20CFD35E2DEB93A1DD1AE514F9E8A48 -279536885042D248CF3FB0872135921DFDDC41198DFEE21982D675CC3BEFA0A3986893CB55393D0D -97ABBE2E2E9B911B8E219104B22197EA04E201FF9C5F9B644E91709CFACDA783050C75212109FBBC -0422B697902D9847D764AD31E851ABB49F9BED16F1377F97198664125C1BA4E06C4C43AAD8829047 -38E1127C3CDC74167B21358CBDC8563951CA7B5DE09526FEA0B1D2AA92F3C4EDFC252BBC38463B55 -E97E8C40D6FD34403357911A1FD0A46565148F3FC891B20EC84976FB26D13A93F1B3D7162D864F8E -1C4A4CED23724105D0B7EB83EB334386912AAD93BAA8AA9CF5CDDF83D5FF76E94C8A2C40C28B5F48 -47A49D8155347392B7D2CF2731E45E0ECA9A654AEEC5DC2A6B03E93D4DA22575D824294ED80804B8 -42B898708A5FA69C5F958A935D47F57039C31771879DC8AE993CF060F6B509F8CE28FAFA8A0FF707 -A281B479039C86CEC58531A3A762A86A6AAE6A7A5C25FEACBDF7B8F5C0596D7DCAE8C56F04B251DB -E707D7EBD1A1609ABED63B4BD8D5BDB57EB4362DE4B6A0FA74A73D8932C4684B66CF763ECB2379B2 -F6B2C093DF794190E7094F1DEEB8072859C0CF53B4EA46676A43369393654B24117C6580A435E468 -28EB5636D407F1A81B192FB88B239FC4EB453585643317DB9579456146270F3A90CAD680D924937F -D23A74F818EF4BE2EEC5C34A37D3C8B0EB499821F1CBA186C241B071B64D483755CA5BD77AB00B20 -F04A433CFC50844DE31699054FB58B677487CFA2A699CE2EAE797A7B7A59B8F426B1451A3930F284 -F535108E7801A6FCCE142DD11689D2097AF17DB2F84B111583C884776B542AD709DF944963303F63 -A0E77220CED0428FCF162C48EDB989D257A53B17A497CB8E9D14166A8130020D3C5896643C5A12AA -9E61A7A885082A1A0B51DF16C3A5FF94279CC27F5EC70E29C4DACB6ABCB16FC8951BACB9AC502D54 -B4CD6CE25E1E4C5B1BAA6979F7A9D1BCBD397EF5FF9DFC434C34121467998B8D5610E365AE895E73 -5E1E374A6EA0F0BB5492753BE8F2531A8A8BCC8F32F78CEABFE10E7D841B35349D613E44A5643893 -C6E4BBD1A8565C8896BA5DCA0573CCF64B287D4A70D900A8F4B30F73223D2903F78519AD9AEBBDBC -92F61DCC9B6B2874E003005FB65D9D789E45AF3E8D134C6EB3068A3FCC16105273D0323C9AA2D636 -42AAA1D45C9ACCA9C42DF4E5CDA7C0208803C1B82CCA7AD7D871E7193DA4363679A8AC7FE79DDBA5 -9FA3FB1D -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 - -cleartomark -{restore}if -%%EndFont CMMI12 -%%EndProlog -%%Page: 1 1 -gsave -newpath -0.0e+00 0.0e+00 moveto -1.3e+02 0.0e+00 lineto -1.3e+02 1.2e+02 lineto -0.0e+00 1.2e+02 lineto -closepath -clip -1 setlinecap -1 setlinejoin -gsave -newpath -newpath -7.04e+00 3.656e+01 moveto -1.4504e+02 3.656e+01 lineto -3.36e+00 3.104e+01 moveto -1.4136e+02 3.104e+01 lineto --3.2e-01 2.552e+01 moveto -1.3768e+02 2.552e+01 lineto --4.0e+00 2.0e+01 moveto -1.34e+02 2.0e+01 lineto --7.68e+00 1.448e+01 moveto -1.3032e+02 1.448e+01 lineto --1.136e+01 8.96e+00 moveto -1.2664e+02 8.96e+00 lineto --1.504e+01 3.44e+00 moveto -1.2296e+02 3.44e+00 lineto -7.04e+00 3.656e+01 moveto --1.504e+01 3.44e+00 lineto -3.004e+01 3.656e+01 moveto -7.96e+00 3.44e+00 lineto -5.304e+01 3.656e+01 moveto -3.096e+01 3.44e+00 lineto -7.604e+01 3.656e+01 moveto -5.396e+01 3.44e+00 lineto -9.904e+01 3.656e+01 moveto -7.696e+01 3.44e+00 lineto -1.2204e+02 3.656e+01 moveto -9.996e+01 3.44e+00 lineto -1.4504e+02 3.656e+01 moveto -1.2296e+02 3.44e+00 lineto -1.0e-01 setlinewidth -newpath -1.11585e+02 2.950104e+01 moveto -1.11585e+02 2.172704e+01 lineto -1.114472e+02 2.257724e+01 lineto -1.114472e+02 3.035124e+01 lineto -1.11585e+02 2.950104e+01 lineto -closepath -gsave -4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor -fill -grestore -newpath -1.11585e+02 2.950104e+01 moveto -1.11585e+02 2.172704e+01 lineto -1.114472e+02 2.257724e+01 lineto -1.114472e+02 3.035124e+01 lineto -1.11585e+02 2.950104e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.11585e+02 3.727504e+01 moveto -1.11585e+02 2.950104e+01 lineto -1.114472e+02 3.035124e+01 lineto -1.114472e+02 3.812524e+01 lineto -1.11585e+02 3.727504e+01 lineto -closepath -gsave -4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor -fill -grestore -newpath -1.11585e+02 3.727504e+01 moveto -1.11585e+02 2.950104e+01 lineto -1.114472e+02 3.035124e+01 lineto -1.114472e+02 3.812524e+01 lineto -1.11585e+02 3.727504e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.11585e+02 4.504904e+01 moveto -1.11585e+02 3.727504e+01 lineto -1.114472e+02 3.812524e+01 lineto -1.114472e+02 4.589924e+01 lineto -1.11585e+02 4.504904e+01 lineto -closepath -gsave -4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor -fill -grestore -newpath -1.11585e+02 4.504904e+01 moveto -1.11585e+02 3.727504e+01 lineto -1.114472e+02 3.812524e+01 lineto -1.114472e+02 4.589924e+01 lineto -1.11585e+02 4.504904e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.11585e+02 5.282304e+01 moveto -1.11585e+02 4.504904e+01 lineto -1.114472e+02 4.589924e+01 lineto -1.114472e+02 5.367324e+01 lineto -1.11585e+02 5.282304e+01 lineto -closepath -gsave -4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor -fill -grestore -newpath -1.11585e+02 5.282304e+01 moveto -1.11585e+02 4.504904e+01 lineto -1.114472e+02 4.589924e+01 lineto -1.114472e+02 5.367324e+01 lineto -1.11585e+02 5.282304e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.11585e+02 6.059704e+01 moveto -1.11585e+02 5.282304e+01 lineto -1.114472e+02 5.367324e+01 lineto -1.114472e+02 6.144724e+01 lineto -1.11585e+02 6.059704e+01 lineto -closepath -gsave -4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor -fill -grestore -newpath -1.11585e+02 6.059704e+01 moveto -1.11585e+02 5.282304e+01 lineto -1.114472e+02 5.367324e+01 lineto -1.114472e+02 6.144724e+01 lineto -1.11585e+02 6.059704e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.11585e+02 6.837104e+01 moveto -1.11585e+02 6.059704e+01 lineto -1.114472e+02 6.144724e+01 lineto -1.114472e+02 6.922124e+01 lineto -1.11585e+02 6.837104e+01 lineto -closepath -gsave -4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor -fill -grestore -newpath -1.11585e+02 6.837104e+01 moveto -1.11585e+02 6.059704e+01 lineto -1.114472e+02 6.144724e+01 lineto -1.114472e+02 6.922124e+01 lineto -1.11585e+02 6.837104e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.11585e+02 7.614504e+01 moveto -1.11585e+02 6.837104e+01 lineto -1.114472e+02 6.922124e+01 lineto -1.114472e+02 7.699524e+01 lineto -1.11585e+02 7.614504e+01 lineto -closepath -gsave -4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor -fill -grestore -newpath -1.11585e+02 7.614504e+01 moveto -1.11585e+02 6.837104e+01 lineto -1.114472e+02 6.922124e+01 lineto -1.114472e+02 7.699524e+01 lineto -1.11585e+02 7.614504e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.11585e+02 8.391904e+01 moveto -1.11585e+02 7.614504e+01 lineto -1.114472e+02 7.699524e+01 lineto -1.114472e+02 8.476924e+01 lineto -1.11585e+02 8.391904e+01 lineto -closepath -gsave -4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor -fill -grestore -newpath -1.11585e+02 8.391904e+01 moveto -1.11585e+02 7.614504e+01 lineto -1.114472e+02 7.699524e+01 lineto -1.114472e+02 8.476924e+01 lineto -1.11585e+02 8.391904e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.11585e+02 9.169304e+01 moveto -1.11585e+02 8.391904e+01 lineto -1.114472e+02 8.476924e+01 lineto -1.114472e+02 9.254324e+01 lineto -1.11585e+02 9.169304e+01 lineto -closepath -gsave -4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor -fill -grestore -newpath -1.11585e+02 9.169304e+01 moveto -1.11585e+02 8.391904e+01 lineto -1.114472e+02 8.476924e+01 lineto -1.114472e+02 9.254324e+01 lineto -1.11585e+02 9.169304e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.11585e+02 9.946704e+01 moveto -1.11585e+02 9.169304e+01 lineto -1.114472e+02 9.254324e+01 lineto -1.114472e+02 1.003172e+02 lineto -1.11585e+02 9.946704e+01 lineto -closepath -gsave -4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor -fill -grestore -newpath -1.11585e+02 9.946704e+01 moveto -1.11585e+02 9.169304e+01 lineto -1.114472e+02 9.254324e+01 lineto -1.114472e+02 1.003172e+02 lineto -1.11585e+02 9.946704e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.114472e+02 3.035124e+01 moveto -1.114472e+02 2.257724e+01 lineto -1.11023e+02 2.341155e+01 lineto -1.11023e+02 3.118555e+01 lineto -1.114472e+02 3.035124e+01 lineto -closepath -gsave -4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor -fill -grestore -newpath -1.114472e+02 3.035124e+01 moveto -1.114472e+02 2.257724e+01 lineto -1.11023e+02 2.341155e+01 lineto -1.11023e+02 3.118555e+01 lineto -1.114472e+02 3.035124e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.114472e+02 3.812524e+01 moveto -1.114472e+02 3.035124e+01 lineto -1.11023e+02 3.118555e+01 lineto -1.11023e+02 3.895955e+01 lineto -1.114472e+02 3.812524e+01 lineto -closepath -gsave -4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor -fill -grestore -newpath -1.114472e+02 3.812524e+01 moveto -1.114472e+02 3.035124e+01 lineto -1.11023e+02 3.118555e+01 lineto -1.11023e+02 3.895955e+01 lineto -1.114472e+02 3.812524e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.114472e+02 4.589924e+01 moveto -1.114472e+02 3.812524e+01 lineto -1.11023e+02 3.895955e+01 lineto -1.11023e+02 4.673355e+01 lineto -1.114472e+02 4.589924e+01 lineto -closepath -gsave -4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor -fill -grestore -newpath -1.114472e+02 4.589924e+01 moveto -1.114472e+02 3.812524e+01 lineto -1.11023e+02 3.895955e+01 lineto -1.11023e+02 4.673355e+01 lineto -1.114472e+02 4.589924e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.114472e+02 5.367324e+01 moveto -1.114472e+02 4.589924e+01 lineto -1.11023e+02 4.673355e+01 lineto -1.11023e+02 5.450755e+01 lineto -1.114472e+02 5.367324e+01 lineto -closepath -gsave -4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor -fill -grestore -newpath -1.114472e+02 5.367324e+01 moveto -1.114472e+02 4.589924e+01 lineto -1.11023e+02 4.673355e+01 lineto -1.11023e+02 5.450755e+01 lineto -1.114472e+02 5.367324e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.114472e+02 6.144724e+01 moveto -1.114472e+02 5.367324e+01 lineto -1.11023e+02 5.450755e+01 lineto -1.11023e+02 6.228155e+01 lineto -1.114472e+02 6.144724e+01 lineto -closepath -gsave -4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor -fill -grestore -newpath -1.114472e+02 6.144724e+01 moveto -1.114472e+02 5.367324e+01 lineto -1.11023e+02 5.450755e+01 lineto -1.11023e+02 6.228155e+01 lineto -1.114472e+02 6.144724e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.114472e+02 6.922124e+01 moveto -1.114472e+02 6.144724e+01 lineto -1.11023e+02 6.228155e+01 lineto -1.11023e+02 7.005555e+01 lineto -1.114472e+02 6.922124e+01 lineto -closepath -gsave -4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor -fill -grestore -newpath -1.114472e+02 6.922124e+01 moveto -1.114472e+02 6.144724e+01 lineto -1.11023e+02 6.228155e+01 lineto -1.11023e+02 7.005555e+01 lineto -1.114472e+02 6.922124e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.114472e+02 7.699524e+01 moveto -1.114472e+02 6.922124e+01 lineto -1.11023e+02 7.005555e+01 lineto -1.11023e+02 7.782955e+01 lineto -1.114472e+02 7.699524e+01 lineto -closepath -gsave -4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor -fill -grestore -newpath -1.114472e+02 7.699524e+01 moveto -1.114472e+02 6.922124e+01 lineto -1.11023e+02 7.005555e+01 lineto -1.11023e+02 7.782955e+01 lineto -1.114472e+02 7.699524e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.114472e+02 8.476924e+01 moveto -1.114472e+02 7.699524e+01 lineto -1.11023e+02 7.782955e+01 lineto -1.11023e+02 8.560355e+01 lineto -1.114472e+02 8.476924e+01 lineto -closepath -gsave -4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor -fill -grestore -newpath -1.114472e+02 8.476924e+01 moveto -1.114472e+02 7.699524e+01 lineto -1.11023e+02 7.782955e+01 lineto -1.11023e+02 8.560355e+01 lineto -1.114472e+02 8.476924e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.114472e+02 9.254324e+01 moveto -1.114472e+02 8.476924e+01 lineto -1.11023e+02 8.560355e+01 lineto -1.11023e+02 9.337755e+01 lineto -1.114472e+02 9.254324e+01 lineto -closepath -gsave -4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor -fill -grestore -newpath -1.114472e+02 9.254324e+01 moveto -1.114472e+02 8.476924e+01 lineto -1.11023e+02 8.560355e+01 lineto -1.11023e+02 9.337755e+01 lineto -1.114472e+02 9.254324e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.114472e+02 1.003172e+02 moveto -1.114472e+02 9.254324e+01 lineto -1.11023e+02 9.337755e+01 lineto -1.11023e+02 1.011515e+02 lineto -1.114472e+02 1.003172e+02 lineto -closepath -gsave -4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor -fill -grestore -newpath -1.114472e+02 1.003172e+02 moveto -1.114472e+02 9.254324e+01 lineto -1.11023e+02 9.337755e+01 lineto -1.11023e+02 1.011515e+02 lineto -1.114472e+02 1.003172e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.11023e+02 3.118555e+01 moveto -1.11023e+02 2.341155e+01 lineto -1.10315e+02 2.422483e+01 lineto -1.10315e+02 3.199883e+01 lineto -1.11023e+02 3.118555e+01 lineto -closepath -gsave -4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor -fill -grestore -newpath -1.11023e+02 3.118555e+01 moveto -1.11023e+02 2.341155e+01 lineto -1.10315e+02 2.422483e+01 lineto -1.10315e+02 3.199883e+01 lineto -1.11023e+02 3.118555e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.11023e+02 3.895955e+01 moveto -1.11023e+02 3.118555e+01 lineto -1.10315e+02 3.199883e+01 lineto -1.10315e+02 3.977283e+01 lineto -1.11023e+02 3.895955e+01 lineto -closepath -gsave -4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor -fill -grestore -newpath -1.11023e+02 3.895955e+01 moveto -1.11023e+02 3.118555e+01 lineto -1.10315e+02 3.199883e+01 lineto -1.10315e+02 3.977283e+01 lineto -1.11023e+02 3.895955e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.11023e+02 4.673355e+01 moveto -1.11023e+02 3.895955e+01 lineto -1.10315e+02 3.977283e+01 lineto -1.10315e+02 4.754683e+01 lineto -1.11023e+02 4.673355e+01 lineto -closepath -gsave -4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor -fill -grestore -newpath -1.11023e+02 4.673355e+01 moveto -1.11023e+02 3.895955e+01 lineto -1.10315e+02 3.977283e+01 lineto -1.10315e+02 4.754683e+01 lineto -1.11023e+02 4.673355e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.11023e+02 5.450755e+01 moveto -1.11023e+02 4.673355e+01 lineto -1.10315e+02 4.754683e+01 lineto -1.10315e+02 5.532083e+01 lineto -1.11023e+02 5.450755e+01 lineto -closepath -gsave -4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor -fill -grestore -newpath -1.11023e+02 5.450755e+01 moveto -1.11023e+02 4.673355e+01 lineto -1.10315e+02 4.754683e+01 lineto -1.10315e+02 5.532083e+01 lineto -1.11023e+02 5.450755e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.11023e+02 6.228155e+01 moveto -1.11023e+02 5.450755e+01 lineto -1.10315e+02 5.532083e+01 lineto -1.10315e+02 6.309483e+01 lineto -1.11023e+02 6.228155e+01 lineto -closepath -gsave -4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor -fill -grestore -newpath -1.11023e+02 6.228155e+01 moveto -1.11023e+02 5.450755e+01 lineto -1.10315e+02 5.532083e+01 lineto -1.10315e+02 6.309483e+01 lineto -1.11023e+02 6.228155e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.11023e+02 7.005555e+01 moveto -1.11023e+02 6.228155e+01 lineto -1.10315e+02 6.309483e+01 lineto -1.10315e+02 7.086883e+01 lineto -1.11023e+02 7.005555e+01 lineto -closepath -gsave -4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor -fill -grestore -newpath -1.11023e+02 7.005555e+01 moveto -1.11023e+02 6.228155e+01 lineto -1.10315e+02 6.309483e+01 lineto -1.10315e+02 7.086883e+01 lineto -1.11023e+02 7.005555e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.11023e+02 7.782955e+01 moveto -1.11023e+02 7.005555e+01 lineto -1.10315e+02 7.086883e+01 lineto -1.10315e+02 7.864283e+01 lineto -1.11023e+02 7.782955e+01 lineto -closepath -gsave -4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor -fill -grestore -newpath -1.11023e+02 7.782955e+01 moveto -1.11023e+02 7.005555e+01 lineto -1.10315e+02 7.086883e+01 lineto -1.10315e+02 7.864283e+01 lineto -1.11023e+02 7.782955e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.11023e+02 8.560355e+01 moveto -1.11023e+02 7.782955e+01 lineto -1.10315e+02 7.864283e+01 lineto -1.10315e+02 8.641683e+01 lineto -1.11023e+02 8.560355e+01 lineto -closepath -gsave -4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor -fill -grestore -newpath -1.11023e+02 8.560355e+01 moveto -1.11023e+02 7.782955e+01 lineto -1.10315e+02 7.864283e+01 lineto -1.10315e+02 8.641683e+01 lineto -1.11023e+02 8.560355e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.11023e+02 9.337755e+01 moveto -1.11023e+02 8.560355e+01 lineto -1.10315e+02 8.641683e+01 lineto -1.10315e+02 9.419083e+01 lineto -1.11023e+02 9.337755e+01 lineto -closepath -gsave -4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor -fill -grestore -newpath -1.11023e+02 9.337755e+01 moveto -1.11023e+02 8.560355e+01 lineto -1.10315e+02 8.641683e+01 lineto -1.10315e+02 9.419083e+01 lineto -1.11023e+02 9.337755e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.11023e+02 1.011515e+02 moveto -1.11023e+02 9.337755e+01 lineto -1.10315e+02 9.419083e+01 lineto -1.10315e+02 1.019648e+02 lineto -1.11023e+02 1.011515e+02 lineto -closepath -gsave -4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor -fill -grestore -newpath -1.11023e+02 1.011515e+02 moveto -1.11023e+02 9.337755e+01 lineto -1.10315e+02 9.419083e+01 lineto -1.10315e+02 1.019648e+02 lineto -1.11023e+02 1.011515e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.10315e+02 3.199883e+01 moveto -1.10315e+02 2.422483e+01 lineto -1.093277e+02 2.501206e+01 lineto -1.093277e+02 3.278606e+01 lineto -1.10315e+02 3.199883e+01 lineto -closepath -gsave -4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor -fill -grestore -newpath -1.10315e+02 3.199883e+01 moveto -1.10315e+02 2.422483e+01 lineto -1.093277e+02 2.501206e+01 lineto -1.093277e+02 3.278606e+01 lineto -1.10315e+02 3.199883e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.10315e+02 3.977283e+01 moveto -1.10315e+02 3.199883e+01 lineto -1.093277e+02 3.278606e+01 lineto -1.093277e+02 4.056006e+01 lineto -1.10315e+02 3.977283e+01 lineto -closepath -gsave -4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor -fill -grestore -newpath -1.10315e+02 3.977283e+01 moveto -1.10315e+02 3.199883e+01 lineto -1.093277e+02 3.278606e+01 lineto -1.093277e+02 4.056006e+01 lineto -1.10315e+02 3.977283e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.10315e+02 4.754683e+01 moveto -1.10315e+02 3.977283e+01 lineto -1.093277e+02 4.056006e+01 lineto -1.093277e+02 4.833406e+01 lineto -1.10315e+02 4.754683e+01 lineto -closepath -gsave -4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor -fill -grestore -newpath -1.10315e+02 4.754683e+01 moveto -1.10315e+02 3.977283e+01 lineto -1.093277e+02 4.056006e+01 lineto -1.093277e+02 4.833406e+01 lineto -1.10315e+02 4.754683e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.10315e+02 5.532083e+01 moveto -1.10315e+02 4.754683e+01 lineto -1.093277e+02 4.833406e+01 lineto -1.093277e+02 5.610806e+01 lineto -1.10315e+02 5.532083e+01 lineto -closepath -gsave -4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor -fill -grestore -newpath -1.10315e+02 5.532083e+01 moveto -1.10315e+02 4.754683e+01 lineto -1.093277e+02 4.833406e+01 lineto -1.093277e+02 5.610806e+01 lineto -1.10315e+02 5.532083e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.10315e+02 6.309483e+01 moveto -1.10315e+02 5.532083e+01 lineto -1.093277e+02 5.610806e+01 lineto -1.093277e+02 6.388206e+01 lineto -1.10315e+02 6.309483e+01 lineto -closepath -gsave -4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor -fill -grestore -newpath -1.10315e+02 6.309483e+01 moveto -1.10315e+02 5.532083e+01 lineto -1.093277e+02 5.610806e+01 lineto -1.093277e+02 6.388206e+01 lineto -1.10315e+02 6.309483e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.10315e+02 7.086883e+01 moveto -1.10315e+02 6.309483e+01 lineto -1.093277e+02 6.388206e+01 lineto -1.093277e+02 7.165606e+01 lineto -1.10315e+02 7.086883e+01 lineto -closepath -gsave -4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor -fill -grestore -newpath -1.10315e+02 7.086883e+01 moveto -1.10315e+02 6.309483e+01 lineto -1.093277e+02 6.388206e+01 lineto -1.093277e+02 7.165606e+01 lineto -1.10315e+02 7.086883e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.10315e+02 7.864283e+01 moveto -1.10315e+02 7.086883e+01 lineto -1.093277e+02 7.165606e+01 lineto -1.093277e+02 7.943006e+01 lineto -1.10315e+02 7.864283e+01 lineto -closepath -gsave -4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor -fill -grestore -newpath -1.10315e+02 7.864283e+01 moveto -1.10315e+02 7.086883e+01 lineto -1.093277e+02 7.165606e+01 lineto -1.093277e+02 7.943006e+01 lineto -1.10315e+02 7.864283e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.10315e+02 8.641683e+01 moveto -1.10315e+02 7.864283e+01 lineto -1.093277e+02 7.943006e+01 lineto -1.093277e+02 8.720406e+01 lineto -1.10315e+02 8.641683e+01 lineto -closepath -gsave -4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor -fill -grestore -newpath -1.10315e+02 8.641683e+01 moveto -1.10315e+02 7.864283e+01 lineto -1.093277e+02 7.943006e+01 lineto -1.093277e+02 8.720406e+01 lineto -1.10315e+02 8.641683e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.10315e+02 9.419083e+01 moveto -1.10315e+02 8.641683e+01 lineto -1.093277e+02 8.720406e+01 lineto -1.093277e+02 9.497806e+01 lineto -1.10315e+02 9.419083e+01 lineto -closepath -gsave -4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor -fill -grestore -newpath -1.10315e+02 9.419083e+01 moveto -1.10315e+02 8.641683e+01 lineto -1.093277e+02 8.720406e+01 lineto -1.093277e+02 9.497806e+01 lineto -1.10315e+02 9.419083e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.10315e+02 1.019648e+02 moveto -1.10315e+02 9.419083e+01 lineto -1.093277e+02 9.497806e+01 lineto -1.093277e+02 1.027521e+02 lineto -1.10315e+02 1.019648e+02 lineto -closepath -gsave -4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor -fill -grestore -newpath -1.10315e+02 1.019648e+02 moveto -1.10315e+02 9.419083e+01 lineto -1.093277e+02 9.497806e+01 lineto -1.093277e+02 1.027521e+02 lineto -1.10315e+02 1.019648e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.093277e+02 3.278606e+01 moveto -1.093277e+02 2.501206e+01 lineto -1.08067e+02 2.576838e+01 lineto -1.08067e+02 3.354238e+01 lineto -1.093277e+02 3.278606e+01 lineto -closepath -gsave -4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor -fill -grestore -newpath -1.093277e+02 3.278606e+01 moveto -1.093277e+02 2.501206e+01 lineto -1.08067e+02 2.576838e+01 lineto -1.08067e+02 3.354238e+01 lineto -1.093277e+02 3.278606e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.093277e+02 4.056006e+01 moveto -1.093277e+02 3.278606e+01 lineto -1.08067e+02 3.354238e+01 lineto -1.08067e+02 4.131638e+01 lineto -1.093277e+02 4.056006e+01 lineto -closepath -gsave -4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor -fill -grestore -newpath -1.093277e+02 4.056006e+01 moveto -1.093277e+02 3.278606e+01 lineto -1.08067e+02 3.354238e+01 lineto -1.08067e+02 4.131638e+01 lineto -1.093277e+02 4.056006e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.093277e+02 4.833406e+01 moveto -1.093277e+02 4.056006e+01 lineto -1.08067e+02 4.131638e+01 lineto -1.08067e+02 4.909038e+01 lineto -1.093277e+02 4.833406e+01 lineto -closepath -gsave -4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor -fill -grestore -newpath -1.093277e+02 4.833406e+01 moveto -1.093277e+02 4.056006e+01 lineto -1.08067e+02 4.131638e+01 lineto -1.08067e+02 4.909038e+01 lineto -1.093277e+02 4.833406e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.093277e+02 5.610806e+01 moveto -1.093277e+02 4.833406e+01 lineto -1.08067e+02 4.909038e+01 lineto -1.08067e+02 5.686438e+01 lineto -1.093277e+02 5.610806e+01 lineto -closepath -gsave -4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor -fill -grestore -newpath -1.093277e+02 5.610806e+01 moveto -1.093277e+02 4.833406e+01 lineto -1.08067e+02 4.909038e+01 lineto -1.08067e+02 5.686438e+01 lineto -1.093277e+02 5.610806e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.093277e+02 6.388206e+01 moveto -1.093277e+02 5.610806e+01 lineto -1.08067e+02 5.686438e+01 lineto -1.08067e+02 6.463838e+01 lineto -1.093277e+02 6.388206e+01 lineto -closepath -gsave -4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor -fill -grestore -newpath -1.093277e+02 6.388206e+01 moveto -1.093277e+02 5.610806e+01 lineto -1.08067e+02 5.686438e+01 lineto -1.08067e+02 6.463838e+01 lineto -1.093277e+02 6.388206e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.093277e+02 7.165606e+01 moveto -1.093277e+02 6.388206e+01 lineto -1.08067e+02 6.463838e+01 lineto -1.08067e+02 7.241238e+01 lineto -1.093277e+02 7.165606e+01 lineto -closepath -gsave -4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor -fill -grestore -newpath -1.093277e+02 7.165606e+01 moveto -1.093277e+02 6.388206e+01 lineto -1.08067e+02 6.463838e+01 lineto -1.08067e+02 7.241238e+01 lineto -1.093277e+02 7.165606e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.093277e+02 7.943006e+01 moveto -1.093277e+02 7.165606e+01 lineto -1.08067e+02 7.241238e+01 lineto -1.08067e+02 8.018638e+01 lineto -1.093277e+02 7.943006e+01 lineto -closepath -gsave -4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor -fill -grestore -newpath -1.093277e+02 7.943006e+01 moveto -1.093277e+02 7.165606e+01 lineto -1.08067e+02 7.241238e+01 lineto -1.08067e+02 8.018638e+01 lineto -1.093277e+02 7.943006e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.093277e+02 8.720406e+01 moveto -1.093277e+02 7.943006e+01 lineto -1.08067e+02 8.018638e+01 lineto -1.08067e+02 8.796038e+01 lineto -1.093277e+02 8.720406e+01 lineto -closepath -gsave -4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor -fill -grestore -newpath -1.093277e+02 8.720406e+01 moveto -1.093277e+02 7.943006e+01 lineto -1.08067e+02 8.018638e+01 lineto -1.08067e+02 8.796038e+01 lineto -1.093277e+02 8.720406e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.093277e+02 9.497806e+01 moveto -1.093277e+02 8.720406e+01 lineto -1.08067e+02 8.796038e+01 lineto -1.08067e+02 9.573438e+01 lineto -1.093277e+02 9.497806e+01 lineto -closepath -gsave -4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor -fill -grestore -newpath -1.093277e+02 9.497806e+01 moveto -1.093277e+02 8.720406e+01 lineto -1.08067e+02 8.796038e+01 lineto -1.08067e+02 9.573438e+01 lineto -1.093277e+02 9.497806e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.093277e+02 1.027521e+02 moveto -1.093277e+02 9.497806e+01 lineto -1.08067e+02 9.573438e+01 lineto -1.08067e+02 1.035084e+02 lineto -1.093277e+02 1.027521e+02 lineto -closepath -gsave -4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor -fill -grestore -newpath -1.093277e+02 1.027521e+02 moveto -1.093277e+02 9.497806e+01 lineto -1.08067e+02 9.573438e+01 lineto -1.08067e+02 1.035084e+02 lineto -1.093277e+02 1.027521e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.08067e+02 3.354238e+01 moveto -1.08067e+02 2.576838e+01 lineto -1.065409e+02 2.648915e+01 lineto -1.065409e+02 3.426315e+01 lineto -1.08067e+02 3.354238e+01 lineto -closepath -gsave -4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor -fill -grestore -newpath -1.08067e+02 3.354238e+01 moveto -1.08067e+02 2.576838e+01 lineto -1.065409e+02 2.648915e+01 lineto -1.065409e+02 3.426315e+01 lineto -1.08067e+02 3.354238e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.08067e+02 4.131638e+01 moveto -1.08067e+02 3.354238e+01 lineto -1.065409e+02 3.426315e+01 lineto -1.065409e+02 4.203715e+01 lineto -1.08067e+02 4.131638e+01 lineto -closepath -gsave -4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor -fill -grestore -newpath -1.08067e+02 4.131638e+01 moveto -1.08067e+02 3.354238e+01 lineto -1.065409e+02 3.426315e+01 lineto -1.065409e+02 4.203715e+01 lineto -1.08067e+02 4.131638e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.08067e+02 4.909038e+01 moveto -1.08067e+02 4.131638e+01 lineto -1.065409e+02 4.203715e+01 lineto -1.065409e+02 4.981115e+01 lineto -1.08067e+02 4.909038e+01 lineto -closepath -gsave -4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor -fill -grestore -newpath -1.08067e+02 4.909038e+01 moveto -1.08067e+02 4.131638e+01 lineto -1.065409e+02 4.203715e+01 lineto -1.065409e+02 4.981115e+01 lineto -1.08067e+02 4.909038e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.08067e+02 5.686438e+01 moveto -1.08067e+02 4.909038e+01 lineto -1.065409e+02 4.981115e+01 lineto -1.065409e+02 5.758515e+01 lineto -1.08067e+02 5.686438e+01 lineto -closepath -gsave -4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor -fill -grestore -newpath -1.08067e+02 5.686438e+01 moveto -1.08067e+02 4.909038e+01 lineto -1.065409e+02 4.981115e+01 lineto -1.065409e+02 5.758515e+01 lineto -1.08067e+02 5.686438e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.08067e+02 6.463838e+01 moveto -1.08067e+02 5.686438e+01 lineto -1.065409e+02 5.758515e+01 lineto -1.065409e+02 6.535915e+01 lineto -1.08067e+02 6.463838e+01 lineto -closepath -gsave -4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor -fill -grestore -newpath -1.08067e+02 6.463838e+01 moveto -1.08067e+02 5.686438e+01 lineto -1.065409e+02 5.758515e+01 lineto -1.065409e+02 6.535915e+01 lineto -1.08067e+02 6.463838e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.08067e+02 7.241238e+01 moveto -1.08067e+02 6.463838e+01 lineto -1.065409e+02 6.535915e+01 lineto -1.065409e+02 7.313315e+01 lineto -1.08067e+02 7.241238e+01 lineto -closepath -gsave -4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor -fill -grestore -newpath -1.08067e+02 7.241238e+01 moveto -1.08067e+02 6.463838e+01 lineto -1.065409e+02 6.535915e+01 lineto -1.065409e+02 7.313315e+01 lineto -1.08067e+02 7.241238e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.08067e+02 8.018638e+01 moveto -1.08067e+02 7.241238e+01 lineto -1.065409e+02 7.313315e+01 lineto -1.065409e+02 8.090715e+01 lineto -1.08067e+02 8.018638e+01 lineto -closepath -gsave -4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor -fill -grestore -newpath -1.08067e+02 8.018638e+01 moveto -1.08067e+02 7.241238e+01 lineto -1.065409e+02 7.313315e+01 lineto -1.065409e+02 8.090715e+01 lineto -1.08067e+02 8.018638e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.08067e+02 8.796038e+01 moveto -1.08067e+02 8.018638e+01 lineto -1.065409e+02 8.090715e+01 lineto -1.065409e+02 8.868115e+01 lineto -1.08067e+02 8.796038e+01 lineto -closepath -gsave -4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor -fill -grestore -newpath -1.08067e+02 8.796038e+01 moveto -1.08067e+02 8.018638e+01 lineto -1.065409e+02 8.090715e+01 lineto -1.065409e+02 8.868115e+01 lineto -1.08067e+02 8.796038e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.08067e+02 9.573438e+01 moveto -1.08067e+02 8.796038e+01 lineto -1.065409e+02 8.868115e+01 lineto -1.065409e+02 9.645515e+01 lineto -1.08067e+02 9.573438e+01 lineto -closepath -gsave -4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor -fill -grestore -newpath -1.08067e+02 9.573438e+01 moveto -1.08067e+02 8.796038e+01 lineto -1.065409e+02 8.868115e+01 lineto -1.065409e+02 9.645515e+01 lineto -1.08067e+02 9.573438e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.08067e+02 1.035084e+02 moveto -1.08067e+02 9.573438e+01 lineto -1.065409e+02 9.645515e+01 lineto -1.065409e+02 1.042291e+02 lineto -1.08067e+02 1.035084e+02 lineto -closepath -gsave -4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor -fill -grestore -newpath -1.08067e+02 1.035084e+02 moveto -1.08067e+02 9.573438e+01 lineto -1.065409e+02 9.645515e+01 lineto -1.065409e+02 1.042291e+02 lineto -1.08067e+02 1.035084e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.065409e+02 3.426315e+01 moveto -1.065409e+02 2.648915e+01 lineto -1.047586e+02 2.716991e+01 lineto -1.047586e+02 3.494391e+01 lineto -1.065409e+02 3.426315e+01 lineto -closepath -gsave -5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor -fill -grestore -newpath -1.065409e+02 3.426315e+01 moveto -1.065409e+02 2.648915e+01 lineto -1.047586e+02 2.716991e+01 lineto -1.047586e+02 3.494391e+01 lineto -1.065409e+02 3.426315e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.065409e+02 4.203715e+01 moveto -1.065409e+02 3.426315e+01 lineto -1.047586e+02 3.494391e+01 lineto -1.047586e+02 4.271791e+01 lineto -1.065409e+02 4.203715e+01 lineto -closepath -gsave -5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor -fill -grestore -newpath -1.065409e+02 4.203715e+01 moveto -1.065409e+02 3.426315e+01 lineto -1.047586e+02 3.494391e+01 lineto -1.047586e+02 4.271791e+01 lineto -1.065409e+02 4.203715e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.065409e+02 4.981115e+01 moveto -1.065409e+02 4.203715e+01 lineto -1.047586e+02 4.271791e+01 lineto -1.047586e+02 5.049191e+01 lineto -1.065409e+02 4.981115e+01 lineto -closepath -gsave -5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor -fill -grestore -newpath -1.065409e+02 4.981115e+01 moveto -1.065409e+02 4.203715e+01 lineto -1.047586e+02 4.271791e+01 lineto -1.047586e+02 5.049191e+01 lineto -1.065409e+02 4.981115e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.065409e+02 5.758515e+01 moveto -1.065409e+02 4.981115e+01 lineto -1.047586e+02 5.049191e+01 lineto -1.047586e+02 5.826591e+01 lineto -1.065409e+02 5.758515e+01 lineto -closepath -gsave -5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor -fill -grestore -newpath -1.065409e+02 5.758515e+01 moveto -1.065409e+02 4.981115e+01 lineto -1.047586e+02 5.049191e+01 lineto -1.047586e+02 5.826591e+01 lineto -1.065409e+02 5.758515e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.065409e+02 6.535915e+01 moveto -1.065409e+02 5.758515e+01 lineto -1.047586e+02 5.826591e+01 lineto -1.047586e+02 6.603991e+01 lineto -1.065409e+02 6.535915e+01 lineto -closepath -gsave -5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor -fill -grestore -newpath -1.065409e+02 6.535915e+01 moveto -1.065409e+02 5.758515e+01 lineto -1.047586e+02 5.826591e+01 lineto -1.047586e+02 6.603991e+01 lineto -1.065409e+02 6.535915e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.065409e+02 7.313315e+01 moveto -1.065409e+02 6.535915e+01 lineto -1.047586e+02 6.603991e+01 lineto -1.047586e+02 7.381391e+01 lineto -1.065409e+02 7.313315e+01 lineto -closepath -gsave -5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor -fill -grestore -newpath -1.065409e+02 7.313315e+01 moveto -1.065409e+02 6.535915e+01 lineto -1.047586e+02 6.603991e+01 lineto -1.047586e+02 7.381391e+01 lineto -1.065409e+02 7.313315e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.065409e+02 8.090715e+01 moveto -1.065409e+02 7.313315e+01 lineto -1.047586e+02 7.381391e+01 lineto -1.047586e+02 8.158791e+01 lineto -1.065409e+02 8.090715e+01 lineto -closepath -gsave -5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor -fill -grestore -newpath -1.065409e+02 8.090715e+01 moveto -1.065409e+02 7.313315e+01 lineto -1.047586e+02 7.381391e+01 lineto -1.047586e+02 8.158791e+01 lineto -1.065409e+02 8.090715e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.065409e+02 8.868115e+01 moveto -1.065409e+02 8.090715e+01 lineto -1.047586e+02 8.158791e+01 lineto -1.047586e+02 8.936191e+01 lineto -1.065409e+02 8.868115e+01 lineto -closepath -gsave -5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor -fill -grestore -newpath -1.065409e+02 8.868115e+01 moveto -1.065409e+02 8.090715e+01 lineto -1.047586e+02 8.158791e+01 lineto -1.047586e+02 8.936191e+01 lineto -1.065409e+02 8.868115e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.065409e+02 9.645515e+01 moveto -1.065409e+02 8.868115e+01 lineto -1.047586e+02 8.936191e+01 lineto -1.047586e+02 9.713591e+01 lineto -1.065409e+02 9.645515e+01 lineto -closepath -gsave -5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor -fill -grestore -newpath -1.065409e+02 9.645515e+01 moveto -1.065409e+02 8.868115e+01 lineto -1.047586e+02 8.936191e+01 lineto -1.047586e+02 9.713591e+01 lineto -1.065409e+02 9.645515e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.065409e+02 1.042291e+02 moveto -1.065409e+02 9.645515e+01 lineto -1.047586e+02 9.713591e+01 lineto -1.047586e+02 1.049099e+02 lineto -1.065409e+02 1.042291e+02 lineto -closepath -gsave -5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor -fill -grestore -newpath -1.065409e+02 1.042291e+02 moveto -1.065409e+02 9.645515e+01 lineto -1.047586e+02 9.713591e+01 lineto -1.047586e+02 1.049099e+02 lineto -1.065409e+02 1.042291e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.047586e+02 3.494391e+01 moveto -1.047586e+02 2.716991e+01 lineto -1.027312e+02 2.780646e+01 lineto -1.027312e+02 3.558046e+01 lineto -1.047586e+02 3.494391e+01 lineto -closepath -gsave -5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor -fill -grestore -newpath -1.047586e+02 3.494391e+01 moveto -1.047586e+02 2.716991e+01 lineto -1.027312e+02 2.780646e+01 lineto -1.027312e+02 3.558046e+01 lineto -1.047586e+02 3.494391e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.047586e+02 4.271791e+01 moveto -1.047586e+02 3.494391e+01 lineto -1.027312e+02 3.558046e+01 lineto -1.027312e+02 4.335446e+01 lineto -1.047586e+02 4.271791e+01 lineto -closepath -gsave -5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor -fill -grestore -newpath -1.047586e+02 4.271791e+01 moveto -1.047586e+02 3.494391e+01 lineto -1.027312e+02 3.558046e+01 lineto -1.027312e+02 4.335446e+01 lineto -1.047586e+02 4.271791e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.047586e+02 5.049191e+01 moveto -1.047586e+02 4.271791e+01 lineto -1.027312e+02 4.335446e+01 lineto -1.027312e+02 5.112846e+01 lineto -1.047586e+02 5.049191e+01 lineto -closepath -gsave -5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor -fill -grestore -newpath -1.047586e+02 5.049191e+01 moveto -1.047586e+02 4.271791e+01 lineto -1.027312e+02 4.335446e+01 lineto -1.027312e+02 5.112846e+01 lineto -1.047586e+02 5.049191e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.047586e+02 5.826591e+01 moveto -1.047586e+02 5.049191e+01 lineto -1.027312e+02 5.112846e+01 lineto -1.027312e+02 5.890246e+01 lineto -1.047586e+02 5.826591e+01 lineto -closepath -gsave -5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor -fill -grestore -newpath -1.047586e+02 5.826591e+01 moveto -1.047586e+02 5.049191e+01 lineto -1.027312e+02 5.112846e+01 lineto -1.027312e+02 5.890246e+01 lineto -1.047586e+02 5.826591e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.047586e+02 6.603991e+01 moveto -1.047586e+02 5.826591e+01 lineto -1.027312e+02 5.890246e+01 lineto -1.027312e+02 6.667646e+01 lineto -1.047586e+02 6.603991e+01 lineto -closepath -gsave -5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor -fill -grestore -newpath -1.047586e+02 6.603991e+01 moveto -1.047586e+02 5.826591e+01 lineto -1.027312e+02 5.890246e+01 lineto -1.027312e+02 6.667646e+01 lineto -1.047586e+02 6.603991e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.047586e+02 7.381391e+01 moveto -1.047586e+02 6.603991e+01 lineto -1.027312e+02 6.667646e+01 lineto -1.027312e+02 7.445046e+01 lineto -1.047586e+02 7.381391e+01 lineto -closepath -gsave -5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor -fill -grestore -newpath -1.047586e+02 7.381391e+01 moveto -1.047586e+02 6.603991e+01 lineto -1.027312e+02 6.667646e+01 lineto -1.027312e+02 7.445046e+01 lineto -1.047586e+02 7.381391e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.047586e+02 8.158791e+01 moveto -1.047586e+02 7.381391e+01 lineto -1.027312e+02 7.445046e+01 lineto -1.027312e+02 8.222446e+01 lineto -1.047586e+02 8.158791e+01 lineto -closepath -gsave -5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor -fill -grestore -newpath -1.047586e+02 8.158791e+01 moveto -1.047586e+02 7.381391e+01 lineto -1.027312e+02 7.445046e+01 lineto -1.027312e+02 8.222446e+01 lineto -1.047586e+02 8.158791e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.047586e+02 8.936191e+01 moveto -1.047586e+02 8.158791e+01 lineto -1.027312e+02 8.222446e+01 lineto -1.027312e+02 8.999846e+01 lineto -1.047586e+02 8.936191e+01 lineto -closepath -gsave -5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor -fill -grestore -newpath -1.047586e+02 8.936191e+01 moveto -1.047586e+02 8.158791e+01 lineto -1.027312e+02 8.222446e+01 lineto -1.027312e+02 8.999846e+01 lineto -1.047586e+02 8.936191e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.047586e+02 9.713591e+01 moveto -1.047586e+02 8.936191e+01 lineto -1.027312e+02 8.999846e+01 lineto -1.027312e+02 9.777246e+01 lineto -1.047586e+02 9.713591e+01 lineto -closepath -gsave -5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor -fill -grestore -newpath -1.047586e+02 9.713591e+01 moveto -1.047586e+02 8.936191e+01 lineto -1.027312e+02 8.999846e+01 lineto -1.027312e+02 9.777246e+01 lineto -1.047586e+02 9.713591e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.047586e+02 1.049099e+02 moveto -1.047586e+02 9.713591e+01 lineto -1.027312e+02 9.777246e+01 lineto -1.027312e+02 1.055465e+02 lineto -1.047586e+02 1.049099e+02 lineto -closepath -gsave -5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor -fill -grestore -newpath -1.047586e+02 1.049099e+02 moveto -1.047586e+02 9.713591e+01 lineto -1.027312e+02 9.777246e+01 lineto -1.027312e+02 1.055465e+02 lineto -1.047586e+02 1.049099e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.027312e+02 3.558046e+01 moveto -1.027312e+02 2.780646e+01 lineto -1.004712e+02 2.839488e+01 lineto -1.004712e+02 3.616888e+01 lineto -1.027312e+02 3.558046e+01 lineto -closepath -gsave -5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor -fill -grestore -newpath -1.027312e+02 3.558046e+01 moveto -1.027312e+02 2.780646e+01 lineto -1.004712e+02 2.839488e+01 lineto -1.004712e+02 3.616888e+01 lineto -1.027312e+02 3.558046e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.027312e+02 4.335446e+01 moveto -1.027312e+02 3.558046e+01 lineto -1.004712e+02 3.616888e+01 lineto -1.004712e+02 4.394288e+01 lineto -1.027312e+02 4.335446e+01 lineto -closepath -gsave -5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor -fill -grestore -newpath -1.027312e+02 4.335446e+01 moveto -1.027312e+02 3.558046e+01 lineto -1.004712e+02 3.616888e+01 lineto -1.004712e+02 4.394288e+01 lineto -1.027312e+02 4.335446e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.027312e+02 5.112846e+01 moveto -1.027312e+02 4.335446e+01 lineto -1.004712e+02 4.394288e+01 lineto -1.004712e+02 5.171688e+01 lineto -1.027312e+02 5.112846e+01 lineto -closepath -gsave -5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor -fill -grestore -newpath -1.027312e+02 5.112846e+01 moveto -1.027312e+02 4.335446e+01 lineto -1.004712e+02 4.394288e+01 lineto -1.004712e+02 5.171688e+01 lineto -1.027312e+02 5.112846e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.027312e+02 5.890246e+01 moveto -1.027312e+02 5.112846e+01 lineto -1.004712e+02 5.171688e+01 lineto -1.004712e+02 5.949088e+01 lineto -1.027312e+02 5.890246e+01 lineto -closepath -gsave -5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor -fill -grestore -newpath -1.027312e+02 5.890246e+01 moveto -1.027312e+02 5.112846e+01 lineto -1.004712e+02 5.171688e+01 lineto -1.004712e+02 5.949088e+01 lineto -1.027312e+02 5.890246e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.027312e+02 6.667646e+01 moveto -1.027312e+02 5.890246e+01 lineto -1.004712e+02 5.949088e+01 lineto -1.004712e+02 6.726488e+01 lineto -1.027312e+02 6.667646e+01 lineto -closepath -gsave -5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor -fill -grestore -newpath -1.027312e+02 6.667646e+01 moveto -1.027312e+02 5.890246e+01 lineto -1.004712e+02 5.949088e+01 lineto -1.004712e+02 6.726488e+01 lineto -1.027312e+02 6.667646e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.027312e+02 7.445046e+01 moveto -1.027312e+02 6.667646e+01 lineto -1.004712e+02 6.726488e+01 lineto -1.004712e+02 7.503888e+01 lineto -1.027312e+02 7.445046e+01 lineto -closepath -gsave -5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor -fill -grestore -newpath -1.027312e+02 7.445046e+01 moveto -1.027312e+02 6.667646e+01 lineto -1.004712e+02 6.726488e+01 lineto -1.004712e+02 7.503888e+01 lineto -1.027312e+02 7.445046e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.027312e+02 8.222446e+01 moveto -1.027312e+02 7.445046e+01 lineto -1.004712e+02 7.503888e+01 lineto -1.004712e+02 8.281288e+01 lineto -1.027312e+02 8.222446e+01 lineto -closepath -gsave -5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor -fill -grestore -newpath -1.027312e+02 8.222446e+01 moveto -1.027312e+02 7.445046e+01 lineto -1.004712e+02 7.503888e+01 lineto -1.004712e+02 8.281288e+01 lineto -1.027312e+02 8.222446e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.027312e+02 8.999846e+01 moveto -1.027312e+02 8.222446e+01 lineto -1.004712e+02 8.281288e+01 lineto -1.004712e+02 9.058688e+01 lineto -1.027312e+02 8.999846e+01 lineto -closepath -gsave -5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor -fill -grestore -newpath -1.027312e+02 8.999846e+01 moveto -1.027312e+02 8.222446e+01 lineto -1.004712e+02 8.281288e+01 lineto -1.004712e+02 9.058688e+01 lineto -1.027312e+02 8.999846e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.027312e+02 9.777246e+01 moveto -1.027312e+02 8.999846e+01 lineto -1.004712e+02 9.058688e+01 lineto -1.004712e+02 9.836088e+01 lineto -1.027312e+02 9.777246e+01 lineto -closepath -gsave -5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor -fill -grestore -newpath -1.027312e+02 9.777246e+01 moveto -1.027312e+02 8.999846e+01 lineto -1.004712e+02 9.058688e+01 lineto -1.004712e+02 9.836088e+01 lineto -1.027312e+02 9.777246e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.027312e+02 1.055465e+02 moveto -1.027312e+02 9.777246e+01 lineto -1.004712e+02 9.836088e+01 lineto -1.004712e+02 1.061349e+02 lineto -1.027312e+02 1.055465e+02 lineto -closepath -gsave -5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor -fill -grestore -newpath -1.027312e+02 1.055465e+02 moveto -1.027312e+02 9.777246e+01 lineto -1.004712e+02 9.836088e+01 lineto -1.004712e+02 1.061349e+02 lineto -1.027312e+02 1.055465e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.004712e+02 3.616888e+01 moveto -1.004712e+02 2.839488e+01 lineto -9.799249e+01 2.893155e+01 lineto -9.799249e+01 3.670555e+01 lineto -1.004712e+02 3.616888e+01 lineto -closepath -gsave -5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor -fill -grestore -newpath -1.004712e+02 3.616888e+01 moveto -1.004712e+02 2.839488e+01 lineto -9.799249e+01 2.893155e+01 lineto -9.799249e+01 3.670555e+01 lineto -1.004712e+02 3.616888e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.004712e+02 4.394288e+01 moveto -1.004712e+02 3.616888e+01 lineto -9.799249e+01 3.670555e+01 lineto -9.799249e+01 4.447955e+01 lineto -1.004712e+02 4.394288e+01 lineto -closepath -gsave -5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor -fill -grestore -newpath -1.004712e+02 4.394288e+01 moveto -1.004712e+02 3.616888e+01 lineto -9.799249e+01 3.670555e+01 lineto -9.799249e+01 4.447955e+01 lineto -1.004712e+02 4.394288e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.004712e+02 5.171688e+01 moveto -1.004712e+02 4.394288e+01 lineto -9.799249e+01 4.447955e+01 lineto -9.799249e+01 5.225355e+01 lineto -1.004712e+02 5.171688e+01 lineto -closepath -gsave -5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor -fill -grestore -newpath -1.004712e+02 5.171688e+01 moveto -1.004712e+02 4.394288e+01 lineto -9.799249e+01 4.447955e+01 lineto -9.799249e+01 5.225355e+01 lineto -1.004712e+02 5.171688e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.004712e+02 5.949088e+01 moveto -1.004712e+02 5.171688e+01 lineto -9.799249e+01 5.225355e+01 lineto -9.799249e+01 6.002755e+01 lineto -1.004712e+02 5.949088e+01 lineto -closepath -gsave -5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor -fill -grestore -newpath -1.004712e+02 5.949088e+01 moveto -1.004712e+02 5.171688e+01 lineto -9.799249e+01 5.225355e+01 lineto -9.799249e+01 6.002755e+01 lineto -1.004712e+02 5.949088e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.004712e+02 6.726488e+01 moveto -1.004712e+02 5.949088e+01 lineto -9.799249e+01 6.002755e+01 lineto -9.799249e+01 6.780155e+01 lineto -1.004712e+02 6.726488e+01 lineto -closepath -gsave -5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor -fill -grestore -newpath -1.004712e+02 6.726488e+01 moveto -1.004712e+02 5.949088e+01 lineto -9.799249e+01 6.002755e+01 lineto -9.799249e+01 6.780155e+01 lineto -1.004712e+02 6.726488e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.004712e+02 7.503888e+01 moveto -1.004712e+02 6.726488e+01 lineto -9.799249e+01 6.780155e+01 lineto -9.799249e+01 7.557555e+01 lineto -1.004712e+02 7.503888e+01 lineto -closepath -gsave -5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor -fill -grestore -newpath -1.004712e+02 7.503888e+01 moveto -1.004712e+02 6.726488e+01 lineto -9.799249e+01 6.780155e+01 lineto -9.799249e+01 7.557555e+01 lineto -1.004712e+02 7.503888e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.004712e+02 8.281288e+01 moveto -1.004712e+02 7.503888e+01 lineto -9.799249e+01 7.557555e+01 lineto -9.799249e+01 8.334955e+01 lineto -1.004712e+02 8.281288e+01 lineto -closepath -gsave -5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor -fill -grestore -newpath -1.004712e+02 8.281288e+01 moveto -1.004712e+02 7.503888e+01 lineto -9.799249e+01 7.557555e+01 lineto -9.799249e+01 8.334955e+01 lineto -1.004712e+02 8.281288e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.004712e+02 9.058688e+01 moveto -1.004712e+02 8.281288e+01 lineto -9.799249e+01 8.334955e+01 lineto -9.799249e+01 9.112355e+01 lineto -1.004712e+02 9.058688e+01 lineto -closepath -gsave -5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor -fill -grestore -newpath -1.004712e+02 9.058688e+01 moveto -1.004712e+02 8.281288e+01 lineto -9.799249e+01 8.334955e+01 lineto -9.799249e+01 9.112355e+01 lineto -1.004712e+02 9.058688e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.004712e+02 9.836088e+01 moveto -1.004712e+02 9.058688e+01 lineto -9.799249e+01 9.112355e+01 lineto -9.799249e+01 9.889755e+01 lineto -1.004712e+02 9.836088e+01 lineto -closepath -gsave -5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor -fill -grestore -newpath -1.004712e+02 9.836088e+01 moveto -1.004712e+02 9.058688e+01 lineto -9.799249e+01 9.112355e+01 lineto -9.799249e+01 9.889755e+01 lineto -1.004712e+02 9.836088e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.004712e+02 1.061349e+02 moveto -1.004712e+02 9.836088e+01 lineto -9.799249e+01 9.889755e+01 lineto -9.799249e+01 1.066715e+02 lineto -1.004712e+02 1.061349e+02 lineto -closepath -gsave -5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor -fill -grestore -newpath -1.004712e+02 1.061349e+02 moveto -1.004712e+02 9.836088e+01 lineto -9.799249e+01 9.889755e+01 lineto -9.799249e+01 1.066715e+02 lineto -1.004712e+02 1.061349e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.799249e+01 3.670555e+01 moveto -9.799249e+01 2.893155e+01 lineto -9.531037e+01 2.941315e+01 lineto -9.531037e+01 3.718715e+01 lineto -9.799249e+01 3.670555e+01 lineto -closepath -gsave -5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor -fill -grestore -newpath -9.799249e+01 3.670555e+01 moveto -9.799249e+01 2.893155e+01 lineto -9.531037e+01 2.941315e+01 lineto -9.531037e+01 3.718715e+01 lineto -9.799249e+01 3.670555e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.799249e+01 4.447955e+01 moveto -9.799249e+01 3.670555e+01 lineto -9.531037e+01 3.718715e+01 lineto -9.531037e+01 4.496115e+01 lineto -9.799249e+01 4.447955e+01 lineto -closepath -gsave -5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor -fill -grestore -newpath -9.799249e+01 4.447955e+01 moveto -9.799249e+01 3.670555e+01 lineto -9.531037e+01 3.718715e+01 lineto -9.531037e+01 4.496115e+01 lineto -9.799249e+01 4.447955e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.799249e+01 5.225355e+01 moveto -9.799249e+01 4.447955e+01 lineto -9.531037e+01 4.496115e+01 lineto -9.531037e+01 5.273515e+01 lineto -9.799249e+01 5.225355e+01 lineto -closepath -gsave -5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor -fill -grestore -newpath -9.799249e+01 5.225355e+01 moveto -9.799249e+01 4.447955e+01 lineto -9.531037e+01 4.496115e+01 lineto -9.531037e+01 5.273515e+01 lineto -9.799249e+01 5.225355e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.799249e+01 6.002755e+01 moveto -9.799249e+01 5.225355e+01 lineto -9.531037e+01 5.273515e+01 lineto -9.531037e+01 6.050915e+01 lineto -9.799249e+01 6.002755e+01 lineto -closepath -gsave -5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor -fill -grestore -newpath -9.799249e+01 6.002755e+01 moveto -9.799249e+01 5.225355e+01 lineto -9.531037e+01 5.273515e+01 lineto -9.531037e+01 6.050915e+01 lineto -9.799249e+01 6.002755e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.799249e+01 6.780155e+01 moveto -9.799249e+01 6.002755e+01 lineto -9.531037e+01 6.050915e+01 lineto -9.531037e+01 6.828315e+01 lineto -9.799249e+01 6.780155e+01 lineto -closepath -gsave -5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor -fill -grestore -newpath -9.799249e+01 6.780155e+01 moveto -9.799249e+01 6.002755e+01 lineto -9.531037e+01 6.050915e+01 lineto -9.531037e+01 6.828315e+01 lineto -9.799249e+01 6.780155e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.799249e+01 7.557555e+01 moveto -9.799249e+01 6.780155e+01 lineto -9.531037e+01 6.828315e+01 lineto -9.531037e+01 7.605715e+01 lineto -9.799249e+01 7.557555e+01 lineto -closepath -gsave -5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor -fill -grestore -newpath -9.799249e+01 7.557555e+01 moveto -9.799249e+01 6.780155e+01 lineto -9.531037e+01 6.828315e+01 lineto -9.531037e+01 7.605715e+01 lineto -9.799249e+01 7.557555e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.799249e+01 8.334955e+01 moveto -9.799249e+01 7.557555e+01 lineto -9.531037e+01 7.605715e+01 lineto -9.531037e+01 8.383115e+01 lineto -9.799249e+01 8.334955e+01 lineto -closepath -gsave -5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor -fill -grestore -newpath -9.799249e+01 8.334955e+01 moveto -9.799249e+01 7.557555e+01 lineto -9.531037e+01 7.605715e+01 lineto -9.531037e+01 8.383115e+01 lineto -9.799249e+01 8.334955e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.799249e+01 9.112355e+01 moveto -9.799249e+01 8.334955e+01 lineto -9.531037e+01 8.383115e+01 lineto -9.531037e+01 9.160515e+01 lineto -9.799249e+01 9.112355e+01 lineto -closepath -gsave -5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor -fill -grestore -newpath -9.799249e+01 9.112355e+01 moveto -9.799249e+01 8.334955e+01 lineto -9.531037e+01 8.383115e+01 lineto -9.531037e+01 9.160515e+01 lineto -9.799249e+01 9.112355e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.799249e+01 9.889755e+01 moveto -9.799249e+01 9.112355e+01 lineto -9.531037e+01 9.160515e+01 lineto -9.531037e+01 9.937915e+01 lineto -9.799249e+01 9.889755e+01 lineto -closepath -gsave -5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor -fill -grestore -newpath -9.799249e+01 9.889755e+01 moveto -9.799249e+01 9.112355e+01 lineto -9.531037e+01 9.160515e+01 lineto -9.531037e+01 9.937915e+01 lineto -9.799249e+01 9.889755e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.799249e+01 1.066715e+02 moveto -9.799249e+01 9.889755e+01 lineto -9.531037e+01 9.937915e+01 lineto -9.531037e+01 1.071531e+02 lineto -9.799249e+01 1.066715e+02 lineto -closepath -gsave -5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor -fill -grestore -newpath -9.799249e+01 1.066715e+02 moveto -9.799249e+01 9.889755e+01 lineto -9.531037e+01 9.937915e+01 lineto -9.531037e+01 1.071531e+02 lineto -9.799249e+01 1.066715e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.531037e+01 3.718715e+01 moveto -9.531037e+01 2.941315e+01 lineto -9.244137e+01 2.983671e+01 lineto -9.244137e+01 3.761071e+01 lineto -9.531037e+01 3.718715e+01 lineto -closepath -gsave -6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor -fill -grestore -newpath -9.531037e+01 3.718715e+01 moveto -9.531037e+01 2.941315e+01 lineto -9.244137e+01 2.983671e+01 lineto -9.244137e+01 3.761071e+01 lineto -9.531037e+01 3.718715e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.531037e+01 4.496115e+01 moveto -9.531037e+01 3.718715e+01 lineto -9.244137e+01 3.761071e+01 lineto -9.244137e+01 4.538471e+01 lineto -9.531037e+01 4.496115e+01 lineto -closepath -gsave -6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor -fill -grestore -newpath -9.531037e+01 4.496115e+01 moveto -9.531037e+01 3.718715e+01 lineto -9.244137e+01 3.761071e+01 lineto -9.244137e+01 4.538471e+01 lineto -9.531037e+01 4.496115e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.531037e+01 5.273515e+01 moveto -9.531037e+01 4.496115e+01 lineto -9.244137e+01 4.538471e+01 lineto -9.244137e+01 5.315871e+01 lineto -9.531037e+01 5.273515e+01 lineto -closepath -gsave -6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor -fill -grestore -newpath -9.531037e+01 5.273515e+01 moveto -9.531037e+01 4.496115e+01 lineto -9.244137e+01 4.538471e+01 lineto -9.244137e+01 5.315871e+01 lineto -9.531037e+01 5.273515e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.531037e+01 6.050915e+01 moveto -9.531037e+01 5.273515e+01 lineto -9.244137e+01 5.315871e+01 lineto -9.244137e+01 6.093271e+01 lineto -9.531037e+01 6.050915e+01 lineto -closepath -gsave -6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor -fill -grestore -newpath -9.531037e+01 6.050915e+01 moveto -9.531037e+01 5.273515e+01 lineto -9.244137e+01 5.315871e+01 lineto -9.244137e+01 6.093271e+01 lineto -9.531037e+01 6.050915e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.531037e+01 6.828315e+01 moveto -9.531037e+01 6.050915e+01 lineto -9.244137e+01 6.093271e+01 lineto -9.244137e+01 6.870671e+01 lineto -9.531037e+01 6.828315e+01 lineto -closepath -gsave -6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor -fill -grestore -newpath -9.531037e+01 6.828315e+01 moveto -9.531037e+01 6.050915e+01 lineto -9.244137e+01 6.093271e+01 lineto -9.244137e+01 6.870671e+01 lineto -9.531037e+01 6.828315e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.531037e+01 7.605715e+01 moveto -9.531037e+01 6.828315e+01 lineto -9.244137e+01 6.870671e+01 lineto -9.244137e+01 7.648071e+01 lineto -9.531037e+01 7.605715e+01 lineto -closepath -gsave -6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor -fill -grestore -newpath -9.531037e+01 7.605715e+01 moveto -9.531037e+01 6.828315e+01 lineto -9.244137e+01 6.870671e+01 lineto -9.244137e+01 7.648071e+01 lineto -9.531037e+01 7.605715e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.531037e+01 8.383115e+01 moveto -9.531037e+01 7.605715e+01 lineto -9.244137e+01 7.648071e+01 lineto -9.244137e+01 8.425471e+01 lineto -9.531037e+01 8.383115e+01 lineto -closepath -gsave -6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor -fill -grestore -newpath -9.531037e+01 8.383115e+01 moveto -9.531037e+01 7.605715e+01 lineto -9.244137e+01 7.648071e+01 lineto -9.244137e+01 8.425471e+01 lineto -9.531037e+01 8.383115e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.531037e+01 9.160515e+01 moveto -9.531037e+01 8.383115e+01 lineto -9.244137e+01 8.425471e+01 lineto -9.244137e+01 9.202871e+01 lineto -9.531037e+01 9.160515e+01 lineto -closepath -gsave -6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor -fill -grestore -newpath -9.531037e+01 9.160515e+01 moveto -9.531037e+01 8.383115e+01 lineto -9.244137e+01 8.425471e+01 lineto -9.244137e+01 9.202871e+01 lineto -9.531037e+01 9.160515e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.531037e+01 9.937915e+01 moveto -9.531037e+01 9.160515e+01 lineto -9.244137e+01 9.202871e+01 lineto -9.244137e+01 9.980271e+01 lineto -9.531037e+01 9.937915e+01 lineto -closepath -gsave -6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor -fill -grestore -newpath -9.531037e+01 9.937915e+01 moveto -9.531037e+01 9.160515e+01 lineto -9.244137e+01 9.202871e+01 lineto -9.244137e+01 9.980271e+01 lineto -9.531037e+01 9.937915e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.531037e+01 1.071531e+02 moveto -9.531037e+01 9.937915e+01 lineto -9.244137e+01 9.980271e+01 lineto -9.244137e+01 1.075767e+02 lineto -9.531037e+01 1.071531e+02 lineto -closepath -gsave -6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor -fill -grestore -newpath -9.531037e+01 1.071531e+02 moveto -9.531037e+01 9.937915e+01 lineto -9.244137e+01 9.980271e+01 lineto -9.244137e+01 1.075767e+02 lineto -9.531037e+01 1.071531e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.244137e+01 3.761071e+01 moveto -9.244137e+01 2.983671e+01 lineto -8.940319e+01 3.019963e+01 lineto -8.940319e+01 3.797363e+01 lineto -9.244137e+01 3.761071e+01 lineto -closepath -gsave -6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor -fill -grestore -newpath -9.244137e+01 3.761071e+01 moveto -9.244137e+01 2.983671e+01 lineto -8.940319e+01 3.019963e+01 lineto -8.940319e+01 3.797363e+01 lineto -9.244137e+01 3.761071e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.244137e+01 4.538471e+01 moveto -9.244137e+01 3.761071e+01 lineto -8.940319e+01 3.797363e+01 lineto -8.940319e+01 4.574763e+01 lineto -9.244137e+01 4.538471e+01 lineto -closepath -gsave -6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor -fill -grestore -newpath -9.244137e+01 4.538471e+01 moveto -9.244137e+01 3.761071e+01 lineto -8.940319e+01 3.797363e+01 lineto -8.940319e+01 4.574763e+01 lineto -9.244137e+01 4.538471e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.244137e+01 5.315871e+01 moveto -9.244137e+01 4.538471e+01 lineto -8.940319e+01 4.574763e+01 lineto -8.940319e+01 5.352163e+01 lineto -9.244137e+01 5.315871e+01 lineto -closepath -gsave -6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor -fill -grestore -newpath -9.244137e+01 5.315871e+01 moveto -9.244137e+01 4.538471e+01 lineto -8.940319e+01 4.574763e+01 lineto -8.940319e+01 5.352163e+01 lineto -9.244137e+01 5.315871e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.244137e+01 6.093271e+01 moveto -9.244137e+01 5.315871e+01 lineto -8.940319e+01 5.352163e+01 lineto -8.940319e+01 6.129563e+01 lineto -9.244137e+01 6.093271e+01 lineto -closepath -gsave -6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor -fill -grestore -newpath -9.244137e+01 6.093271e+01 moveto -9.244137e+01 5.315871e+01 lineto -8.940319e+01 5.352163e+01 lineto -8.940319e+01 6.129563e+01 lineto -9.244137e+01 6.093271e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.244137e+01 6.870671e+01 moveto -9.244137e+01 6.093271e+01 lineto -8.940319e+01 6.129563e+01 lineto -8.940319e+01 6.906963e+01 lineto -9.244137e+01 6.870671e+01 lineto -closepath -gsave -6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor -fill -grestore -newpath -9.244137e+01 6.870671e+01 moveto -9.244137e+01 6.093271e+01 lineto -8.940319e+01 6.129563e+01 lineto -8.940319e+01 6.906963e+01 lineto -9.244137e+01 6.870671e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.244137e+01 7.648071e+01 moveto -9.244137e+01 6.870671e+01 lineto -8.940319e+01 6.906963e+01 lineto -8.940319e+01 7.684363e+01 lineto -9.244137e+01 7.648071e+01 lineto -closepath -gsave -6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor -fill -grestore -newpath -9.244137e+01 7.648071e+01 moveto -9.244137e+01 6.870671e+01 lineto -8.940319e+01 6.906963e+01 lineto -8.940319e+01 7.684363e+01 lineto -9.244137e+01 7.648071e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.244137e+01 8.425471e+01 moveto -9.244137e+01 7.648071e+01 lineto -8.940319e+01 7.684363e+01 lineto -8.940319e+01 8.461763e+01 lineto -9.244137e+01 8.425471e+01 lineto -closepath -gsave -6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor -fill -grestore -newpath -9.244137e+01 8.425471e+01 moveto -9.244137e+01 7.648071e+01 lineto -8.940319e+01 7.684363e+01 lineto -8.940319e+01 8.461763e+01 lineto -9.244137e+01 8.425471e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.244137e+01 9.202871e+01 moveto -9.244137e+01 8.425471e+01 lineto -8.940319e+01 8.461763e+01 lineto -8.940319e+01 9.239163e+01 lineto -9.244137e+01 9.202871e+01 lineto -closepath -gsave -6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor -fill -grestore -newpath -9.244137e+01 9.202871e+01 moveto -9.244137e+01 8.425471e+01 lineto -8.940319e+01 8.461763e+01 lineto -8.940319e+01 9.239163e+01 lineto -9.244137e+01 9.202871e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.244137e+01 9.980271e+01 moveto -9.244137e+01 9.202871e+01 lineto -8.940319e+01 9.239163e+01 lineto -8.940319e+01 1.001656e+02 lineto -9.244137e+01 9.980271e+01 lineto -closepath -gsave -6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor -fill -grestore -newpath -9.244137e+01 9.980271e+01 moveto -9.244137e+01 9.202871e+01 lineto -8.940319e+01 9.239163e+01 lineto -8.940319e+01 1.001656e+02 lineto -9.244137e+01 9.980271e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.244137e+01 1.075767e+02 moveto -9.244137e+01 9.980271e+01 lineto -8.940319e+01 1.001656e+02 lineto -8.940319e+01 1.079396e+02 lineto -9.244137e+01 1.075767e+02 lineto -closepath -gsave -6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor -fill -grestore -newpath -9.244137e+01 1.075767e+02 moveto -9.244137e+01 9.980271e+01 lineto -8.940319e+01 1.001656e+02 lineto -8.940319e+01 1.079396e+02 lineto -9.244137e+01 1.075767e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.940319e+01 3.797363e+01 moveto -8.940319e+01 3.019963e+01 lineto -8.621456e+01 3.049966e+01 lineto -8.621456e+01 3.827366e+01 lineto -8.940319e+01 3.797363e+01 lineto -closepath -gsave -6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor -fill -grestore -newpath -8.940319e+01 3.797363e+01 moveto -8.940319e+01 3.019963e+01 lineto -8.621456e+01 3.049966e+01 lineto -8.621456e+01 3.827366e+01 lineto -8.940319e+01 3.797363e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.940319e+01 4.574763e+01 moveto -8.940319e+01 3.797363e+01 lineto -8.621456e+01 3.827366e+01 lineto -8.621456e+01 4.604766e+01 lineto -8.940319e+01 4.574763e+01 lineto -closepath -gsave -6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor -fill -grestore -newpath -8.940319e+01 4.574763e+01 moveto -8.940319e+01 3.797363e+01 lineto -8.621456e+01 3.827366e+01 lineto -8.621456e+01 4.604766e+01 lineto -8.940319e+01 4.574763e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.940319e+01 5.352163e+01 moveto -8.940319e+01 4.574763e+01 lineto -8.621456e+01 4.604766e+01 lineto -8.621456e+01 5.382166e+01 lineto -8.940319e+01 5.352163e+01 lineto -closepath -gsave -6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor -fill -grestore -newpath -8.940319e+01 5.352163e+01 moveto -8.940319e+01 4.574763e+01 lineto -8.621456e+01 4.604766e+01 lineto -8.621456e+01 5.382166e+01 lineto -8.940319e+01 5.352163e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.940319e+01 6.129563e+01 moveto -8.940319e+01 5.352163e+01 lineto -8.621456e+01 5.382166e+01 lineto -8.621456e+01 6.159566e+01 lineto -8.940319e+01 6.129563e+01 lineto -closepath -gsave -6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor -fill -grestore -newpath -8.940319e+01 6.129563e+01 moveto -8.940319e+01 5.352163e+01 lineto -8.621456e+01 5.382166e+01 lineto -8.621456e+01 6.159566e+01 lineto -8.940319e+01 6.129563e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.940319e+01 6.906963e+01 moveto -8.940319e+01 6.129563e+01 lineto -8.621456e+01 6.159566e+01 lineto -8.621456e+01 6.936966e+01 lineto -8.940319e+01 6.906963e+01 lineto -closepath -gsave -6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor -fill -grestore -newpath -8.940319e+01 6.906963e+01 moveto -8.940319e+01 6.129563e+01 lineto -8.621456e+01 6.159566e+01 lineto -8.621456e+01 6.936966e+01 lineto -8.940319e+01 6.906963e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.940319e+01 7.684363e+01 moveto -8.940319e+01 6.906963e+01 lineto -8.621456e+01 6.936966e+01 lineto -8.621456e+01 7.714366e+01 lineto -8.940319e+01 7.684363e+01 lineto -closepath -gsave -6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor -fill -grestore -newpath -8.940319e+01 7.684363e+01 moveto -8.940319e+01 6.906963e+01 lineto -8.621456e+01 6.936966e+01 lineto -8.621456e+01 7.714366e+01 lineto -8.940319e+01 7.684363e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.940319e+01 8.461763e+01 moveto -8.940319e+01 7.684363e+01 lineto -8.621456e+01 7.714366e+01 lineto -8.621456e+01 8.491766e+01 lineto -8.940319e+01 8.461763e+01 lineto -closepath -gsave -6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor -fill -grestore -newpath -8.940319e+01 8.461763e+01 moveto -8.940319e+01 7.684363e+01 lineto -8.621456e+01 7.714366e+01 lineto -8.621456e+01 8.491766e+01 lineto -8.940319e+01 8.461763e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.940319e+01 9.239163e+01 moveto -8.940319e+01 8.461763e+01 lineto -8.621456e+01 8.491766e+01 lineto -8.621456e+01 9.269166e+01 lineto -8.940319e+01 9.239163e+01 lineto -closepath -gsave -6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor -fill -grestore -newpath -8.940319e+01 9.239163e+01 moveto -8.940319e+01 8.461763e+01 lineto -8.621456e+01 8.491766e+01 lineto -8.621456e+01 9.269166e+01 lineto -8.940319e+01 9.239163e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.940319e+01 1.001656e+02 moveto -8.940319e+01 9.239163e+01 lineto -8.621456e+01 9.269166e+01 lineto -8.621456e+01 1.004657e+02 lineto -8.940319e+01 1.001656e+02 lineto -closepath -gsave -6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor -fill -grestore -newpath -8.940319e+01 1.001656e+02 moveto -8.940319e+01 9.239163e+01 lineto -8.621456e+01 9.269166e+01 lineto -8.621456e+01 1.004657e+02 lineto -8.940319e+01 1.001656e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.940319e+01 1.079396e+02 moveto -8.940319e+01 1.001656e+02 lineto -8.621456e+01 1.004657e+02 lineto -8.621456e+01 1.082397e+02 lineto -8.940319e+01 1.079396e+02 lineto -closepath -gsave -6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor -fill -grestore -newpath -8.940319e+01 1.079396e+02 moveto -8.940319e+01 1.001656e+02 lineto -8.621456e+01 1.004657e+02 lineto -8.621456e+01 1.082397e+02 lineto -8.940319e+01 1.079396e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.621456e+01 3.827366e+01 moveto -8.621456e+01 3.049966e+01 lineto -8.289513e+01 3.073496e+01 lineto -8.289513e+01 3.850896e+01 lineto -8.621456e+01 3.827366e+01 lineto -closepath -gsave -6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor -fill -grestore -newpath -8.621456e+01 3.827366e+01 moveto -8.621456e+01 3.049966e+01 lineto -8.289513e+01 3.073496e+01 lineto -8.289513e+01 3.850896e+01 lineto -8.621456e+01 3.827366e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.621456e+01 4.604766e+01 moveto -8.621456e+01 3.827366e+01 lineto -8.289513e+01 3.850896e+01 lineto -8.289513e+01 4.628296e+01 lineto -8.621456e+01 4.604766e+01 lineto -closepath -gsave -6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor -fill -grestore -newpath -8.621456e+01 4.604766e+01 moveto -8.621456e+01 3.827366e+01 lineto -8.289513e+01 3.850896e+01 lineto -8.289513e+01 4.628296e+01 lineto -8.621456e+01 4.604766e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.621456e+01 5.382166e+01 moveto -8.621456e+01 4.604766e+01 lineto -8.289513e+01 4.628296e+01 lineto -8.289513e+01 5.405696e+01 lineto -8.621456e+01 5.382166e+01 lineto -closepath -gsave -6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor -fill -grestore -newpath -8.621456e+01 5.382166e+01 moveto -8.621456e+01 4.604766e+01 lineto -8.289513e+01 4.628296e+01 lineto -8.289513e+01 5.405696e+01 lineto -8.621456e+01 5.382166e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.621456e+01 6.159566e+01 moveto -8.621456e+01 5.382166e+01 lineto -8.289513e+01 5.405696e+01 lineto -8.289513e+01 6.183096e+01 lineto -8.621456e+01 6.159566e+01 lineto -closepath -gsave -6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor -fill -grestore -newpath -8.621456e+01 6.159566e+01 moveto -8.621456e+01 5.382166e+01 lineto -8.289513e+01 5.405696e+01 lineto -8.289513e+01 6.183096e+01 lineto -8.621456e+01 6.159566e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.621456e+01 6.936966e+01 moveto -8.621456e+01 6.159566e+01 lineto -8.289513e+01 6.183096e+01 lineto -8.289513e+01 6.960496e+01 lineto -8.621456e+01 6.936966e+01 lineto -closepath -gsave -6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor -fill -grestore -newpath -8.621456e+01 6.936966e+01 moveto -8.621456e+01 6.159566e+01 lineto -8.289513e+01 6.183096e+01 lineto -8.289513e+01 6.960496e+01 lineto -8.621456e+01 6.936966e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.621456e+01 7.714366e+01 moveto -8.621456e+01 6.936966e+01 lineto -8.289513e+01 6.960496e+01 lineto -8.289513e+01 7.737896e+01 lineto -8.621456e+01 7.714366e+01 lineto -closepath -gsave -6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor -fill -grestore -newpath -8.621456e+01 7.714366e+01 moveto -8.621456e+01 6.936966e+01 lineto -8.289513e+01 6.960496e+01 lineto -8.289513e+01 7.737896e+01 lineto -8.621456e+01 7.714366e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.621456e+01 8.491766e+01 moveto -8.621456e+01 7.714366e+01 lineto -8.289513e+01 7.737896e+01 lineto -8.289513e+01 8.515296e+01 lineto -8.621456e+01 8.491766e+01 lineto -closepath -gsave -6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor -fill -grestore -newpath -8.621456e+01 8.491766e+01 moveto -8.621456e+01 7.714366e+01 lineto -8.289513e+01 7.737896e+01 lineto -8.289513e+01 8.515296e+01 lineto -8.621456e+01 8.491766e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.621456e+01 9.269166e+01 moveto -8.621456e+01 8.491766e+01 lineto -8.289513e+01 8.515296e+01 lineto -8.289513e+01 9.292696e+01 lineto -8.621456e+01 9.269166e+01 lineto -closepath -gsave -6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor -fill -grestore -newpath -8.621456e+01 9.269166e+01 moveto -8.621456e+01 8.491766e+01 lineto -8.289513e+01 8.515296e+01 lineto -8.289513e+01 9.292696e+01 lineto -8.621456e+01 9.269166e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.621456e+01 1.004657e+02 moveto -8.621456e+01 9.269166e+01 lineto -8.289513e+01 9.292696e+01 lineto -8.289513e+01 1.00701e+02 lineto -8.621456e+01 1.004657e+02 lineto -closepath -gsave -6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor -fill -grestore -newpath -8.621456e+01 1.004657e+02 moveto -8.621456e+01 9.269166e+01 lineto -8.289513e+01 9.292696e+01 lineto -8.289513e+01 1.00701e+02 lineto -8.621456e+01 1.004657e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.621456e+01 1.082397e+02 moveto -8.621456e+01 1.004657e+02 lineto -8.289513e+01 1.00701e+02 lineto -8.289513e+01 1.08475e+02 lineto -8.621456e+01 1.082397e+02 lineto -closepath -gsave -6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor -fill -grestore -newpath -8.621456e+01 1.082397e+02 moveto -8.621456e+01 1.004657e+02 lineto -8.289513e+01 1.00701e+02 lineto -8.289513e+01 1.08475e+02 lineto -8.621456e+01 1.082397e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.289513e+01 3.850896e+01 moveto -8.289513e+01 3.073496e+01 lineto -7.946537e+01 3.090408e+01 lineto -7.946537e+01 3.867808e+01 lineto -8.289513e+01 3.850896e+01 lineto -closepath -gsave -6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor -fill -grestore -newpath -8.289513e+01 3.850896e+01 moveto -8.289513e+01 3.073496e+01 lineto -7.946537e+01 3.090408e+01 lineto -7.946537e+01 3.867808e+01 lineto -8.289513e+01 3.850896e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.289513e+01 4.628296e+01 moveto -8.289513e+01 3.850896e+01 lineto -7.946537e+01 3.867808e+01 lineto -7.946537e+01 4.645208e+01 lineto -8.289513e+01 4.628296e+01 lineto -closepath -gsave -6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor -fill -grestore -newpath -8.289513e+01 4.628296e+01 moveto -8.289513e+01 3.850896e+01 lineto -7.946537e+01 3.867808e+01 lineto -7.946537e+01 4.645208e+01 lineto -8.289513e+01 4.628296e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.289513e+01 5.405696e+01 moveto -8.289513e+01 4.628296e+01 lineto -7.946537e+01 4.645208e+01 lineto -7.946537e+01 5.422608e+01 lineto -8.289513e+01 5.405696e+01 lineto -closepath -gsave -6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor -fill -grestore -newpath -8.289513e+01 5.405696e+01 moveto -8.289513e+01 4.628296e+01 lineto -7.946537e+01 4.645208e+01 lineto -7.946537e+01 5.422608e+01 lineto -8.289513e+01 5.405696e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.289513e+01 6.183096e+01 moveto -8.289513e+01 5.405696e+01 lineto -7.946537e+01 5.422608e+01 lineto -7.946537e+01 6.200008e+01 lineto -8.289513e+01 6.183096e+01 lineto -closepath -gsave -6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor -fill -grestore -newpath -8.289513e+01 6.183096e+01 moveto -8.289513e+01 5.405696e+01 lineto -7.946537e+01 5.422608e+01 lineto -7.946537e+01 6.200008e+01 lineto -8.289513e+01 6.183096e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.289513e+01 6.960496e+01 moveto -8.289513e+01 6.183096e+01 lineto -7.946537e+01 6.200008e+01 lineto -7.946537e+01 6.977408e+01 lineto -8.289513e+01 6.960496e+01 lineto -closepath -gsave -6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor -fill -grestore -newpath -8.289513e+01 6.960496e+01 moveto -8.289513e+01 6.183096e+01 lineto -7.946537e+01 6.200008e+01 lineto -7.946537e+01 6.977408e+01 lineto -8.289513e+01 6.960496e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.289513e+01 7.737896e+01 moveto -8.289513e+01 6.960496e+01 lineto -7.946537e+01 6.977408e+01 lineto -7.946537e+01 7.754808e+01 lineto -8.289513e+01 7.737896e+01 lineto -closepath -gsave -6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor -fill -grestore -newpath -8.289513e+01 7.737896e+01 moveto -8.289513e+01 6.960496e+01 lineto -7.946537e+01 6.977408e+01 lineto -7.946537e+01 7.754808e+01 lineto -8.289513e+01 7.737896e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.289513e+01 8.515296e+01 moveto -8.289513e+01 7.737896e+01 lineto -7.946537e+01 7.754808e+01 lineto -7.946537e+01 8.532208e+01 lineto -8.289513e+01 8.515296e+01 lineto -closepath -gsave -6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor -fill -grestore -newpath -8.289513e+01 8.515296e+01 moveto -8.289513e+01 7.737896e+01 lineto -7.946537e+01 7.754808e+01 lineto -7.946537e+01 8.532208e+01 lineto -8.289513e+01 8.515296e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.289513e+01 9.292696e+01 moveto -8.289513e+01 8.515296e+01 lineto -7.946537e+01 8.532208e+01 lineto -7.946537e+01 9.309608e+01 lineto -8.289513e+01 9.292696e+01 lineto -closepath -gsave -6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor -fill -grestore -newpath -8.289513e+01 9.292696e+01 moveto -8.289513e+01 8.515296e+01 lineto -7.946537e+01 8.532208e+01 lineto -7.946537e+01 9.309608e+01 lineto -8.289513e+01 9.292696e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.289513e+01 1.00701e+02 moveto -8.289513e+01 9.292696e+01 lineto -7.946537e+01 9.309608e+01 lineto -7.946537e+01 1.008701e+02 lineto -8.289513e+01 1.00701e+02 lineto -closepath -gsave -6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor -fill -grestore -newpath -8.289513e+01 1.00701e+02 moveto -8.289513e+01 9.292696e+01 lineto -7.946537e+01 9.309608e+01 lineto -7.946537e+01 1.008701e+02 lineto -8.289513e+01 1.00701e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.289513e+01 1.08475e+02 moveto -8.289513e+01 1.00701e+02 lineto -7.946537e+01 1.008701e+02 lineto -7.946537e+01 1.086441e+02 lineto -8.289513e+01 1.08475e+02 lineto -closepath -gsave -6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor -fill -grestore -newpath -8.289513e+01 1.08475e+02 moveto -8.289513e+01 1.00701e+02 lineto -7.946537e+01 1.008701e+02 lineto -7.946537e+01 1.086441e+02 lineto -8.289513e+01 1.08475e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.946537e+01 3.867808e+01 moveto -7.946537e+01 3.090408e+01 lineto -7.594643e+01 3.100597e+01 lineto -7.594643e+01 3.877997e+01 lineto -7.946537e+01 3.867808e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -7.946537e+01 3.867808e+01 moveto -7.946537e+01 3.090408e+01 lineto -7.594643e+01 3.100597e+01 lineto -7.594643e+01 3.877997e+01 lineto -7.946537e+01 3.867808e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.946537e+01 4.645208e+01 moveto -7.946537e+01 3.867808e+01 lineto -7.594643e+01 3.877997e+01 lineto -7.594643e+01 4.655397e+01 lineto -7.946537e+01 4.645208e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -7.946537e+01 4.645208e+01 moveto -7.946537e+01 3.867808e+01 lineto -7.594643e+01 3.877997e+01 lineto -7.594643e+01 4.655397e+01 lineto -7.946537e+01 4.645208e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.946537e+01 5.422608e+01 moveto -7.946537e+01 4.645208e+01 lineto -7.594643e+01 4.655397e+01 lineto -7.594643e+01 5.432797e+01 lineto -7.946537e+01 5.422608e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -7.946537e+01 5.422608e+01 moveto -7.946537e+01 4.645208e+01 lineto -7.594643e+01 4.655397e+01 lineto -7.594643e+01 5.432797e+01 lineto -7.946537e+01 5.422608e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.946537e+01 6.200008e+01 moveto -7.946537e+01 5.422608e+01 lineto -7.594643e+01 5.432797e+01 lineto -7.594643e+01 6.210197e+01 lineto -7.946537e+01 6.200008e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -7.946537e+01 6.200008e+01 moveto -7.946537e+01 5.422608e+01 lineto -7.594643e+01 5.432797e+01 lineto -7.594643e+01 6.210197e+01 lineto -7.946537e+01 6.200008e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.946537e+01 6.977408e+01 moveto -7.946537e+01 6.200008e+01 lineto -7.594643e+01 6.210197e+01 lineto -7.594643e+01 6.987597e+01 lineto -7.946537e+01 6.977408e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -7.946537e+01 6.977408e+01 moveto -7.946537e+01 6.200008e+01 lineto -7.594643e+01 6.210197e+01 lineto -7.594643e+01 6.987597e+01 lineto -7.946537e+01 6.977408e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.946537e+01 7.754808e+01 moveto -7.946537e+01 6.977408e+01 lineto -7.594643e+01 6.987597e+01 lineto -7.594643e+01 7.764997e+01 lineto -7.946537e+01 7.754808e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -7.946537e+01 7.754808e+01 moveto -7.946537e+01 6.977408e+01 lineto -7.594643e+01 6.987597e+01 lineto -7.594643e+01 7.764997e+01 lineto -7.946537e+01 7.754808e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.946537e+01 8.532208e+01 moveto -7.946537e+01 7.754808e+01 lineto -7.594643e+01 7.764997e+01 lineto -7.594643e+01 8.542397e+01 lineto -7.946537e+01 8.532208e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -7.946537e+01 8.532208e+01 moveto -7.946537e+01 7.754808e+01 lineto -7.594643e+01 7.764997e+01 lineto -7.594643e+01 8.542397e+01 lineto -7.946537e+01 8.532208e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.946537e+01 9.309608e+01 moveto -7.946537e+01 8.532208e+01 lineto -7.594643e+01 8.542397e+01 lineto -7.594643e+01 9.319797e+01 lineto -7.946537e+01 9.309608e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -7.946537e+01 9.309608e+01 moveto -7.946537e+01 8.532208e+01 lineto -7.594643e+01 8.542397e+01 lineto -7.594643e+01 9.319797e+01 lineto -7.946537e+01 9.309608e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.946537e+01 1.008701e+02 moveto -7.946537e+01 9.309608e+01 lineto -7.594643e+01 9.319797e+01 lineto -7.594643e+01 1.00972e+02 lineto -7.946537e+01 1.008701e+02 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -7.946537e+01 1.008701e+02 moveto -7.946537e+01 9.309608e+01 lineto -7.594643e+01 9.319797e+01 lineto -7.594643e+01 1.00972e+02 lineto -7.946537e+01 1.008701e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.946537e+01 1.086441e+02 moveto -7.946537e+01 1.008701e+02 lineto -7.594643e+01 1.00972e+02 lineto -7.594643e+01 1.08746e+02 lineto -7.946537e+01 1.086441e+02 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -7.946537e+01 1.086441e+02 moveto -7.946537e+01 1.008701e+02 lineto -7.594643e+01 1.00972e+02 lineto -7.594643e+01 1.08746e+02 lineto -7.946537e+01 1.086441e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.594643e+01 3.877997e+01 moveto -7.594643e+01 3.100597e+01 lineto -7.236e+01 3.104e+01 lineto -7.236e+01 3.8814e+01 lineto -7.594643e+01 3.877997e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -7.594643e+01 3.877997e+01 moveto -7.594643e+01 3.100597e+01 lineto -7.236e+01 3.104e+01 lineto -7.236e+01 3.8814e+01 lineto -7.594643e+01 3.877997e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.594643e+01 4.655397e+01 moveto -7.594643e+01 3.877997e+01 lineto -7.236e+01 3.8814e+01 lineto -7.236e+01 4.6588e+01 lineto -7.594643e+01 4.655397e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -7.594643e+01 4.655397e+01 moveto -7.594643e+01 3.877997e+01 lineto -7.236e+01 3.8814e+01 lineto -7.236e+01 4.6588e+01 lineto -7.594643e+01 4.655397e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.594643e+01 5.432797e+01 moveto -7.594643e+01 4.655397e+01 lineto -7.236e+01 4.6588e+01 lineto -7.236e+01 5.4362e+01 lineto -7.594643e+01 5.432797e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -7.594643e+01 5.432797e+01 moveto -7.594643e+01 4.655397e+01 lineto -7.236e+01 4.6588e+01 lineto -7.236e+01 5.4362e+01 lineto -7.594643e+01 5.432797e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.594643e+01 6.210197e+01 moveto -7.594643e+01 5.432797e+01 lineto -7.236e+01 5.4362e+01 lineto -7.236e+01 6.2136e+01 lineto -7.594643e+01 6.210197e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -7.594643e+01 6.210197e+01 moveto -7.594643e+01 5.432797e+01 lineto -7.236e+01 5.4362e+01 lineto -7.236e+01 6.2136e+01 lineto -7.594643e+01 6.210197e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.594643e+01 6.987597e+01 moveto -7.594643e+01 6.210197e+01 lineto -7.236e+01 6.2136e+01 lineto -7.236e+01 6.991e+01 lineto -7.594643e+01 6.987597e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -7.594643e+01 6.987597e+01 moveto -7.594643e+01 6.210197e+01 lineto -7.236e+01 6.2136e+01 lineto -7.236e+01 6.991e+01 lineto -7.594643e+01 6.987597e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.594643e+01 7.764997e+01 moveto -7.594643e+01 6.987597e+01 lineto -7.236e+01 6.991e+01 lineto -7.236e+01 7.7684e+01 lineto -7.594643e+01 7.764997e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -7.594643e+01 7.764997e+01 moveto -7.594643e+01 6.987597e+01 lineto -7.236e+01 6.991e+01 lineto -7.236e+01 7.7684e+01 lineto -7.594643e+01 7.764997e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.594643e+01 8.542397e+01 moveto -7.594643e+01 7.764997e+01 lineto -7.236e+01 7.7684e+01 lineto -7.236e+01 8.5458e+01 lineto -7.594643e+01 8.542397e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -7.594643e+01 8.542397e+01 moveto -7.594643e+01 7.764997e+01 lineto -7.236e+01 7.7684e+01 lineto -7.236e+01 8.5458e+01 lineto -7.594643e+01 8.542397e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.594643e+01 9.319797e+01 moveto -7.594643e+01 8.542397e+01 lineto -7.236e+01 8.5458e+01 lineto -7.236e+01 9.3232e+01 lineto -7.594643e+01 9.319797e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -7.594643e+01 9.319797e+01 moveto -7.594643e+01 8.542397e+01 lineto -7.236e+01 8.5458e+01 lineto -7.236e+01 9.3232e+01 lineto -7.594643e+01 9.319797e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.594643e+01 1.00972e+02 moveto -7.594643e+01 9.319797e+01 lineto -7.236e+01 9.3232e+01 lineto -7.236e+01 1.01006e+02 lineto -7.594643e+01 1.00972e+02 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -7.594643e+01 1.00972e+02 moveto -7.594643e+01 9.319797e+01 lineto -7.236e+01 9.3232e+01 lineto -7.236e+01 1.01006e+02 lineto -7.594643e+01 1.00972e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.594643e+01 1.08746e+02 moveto -7.594643e+01 1.00972e+02 lineto -7.236e+01 1.01006e+02 lineto -7.236e+01 1.0878e+02 lineto -7.594643e+01 1.08746e+02 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -7.594643e+01 1.08746e+02 moveto -7.594643e+01 1.00972e+02 lineto -7.236e+01 1.01006e+02 lineto -7.236e+01 1.0878e+02 lineto -7.594643e+01 1.08746e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.236e+01 3.8814e+01 moveto -7.236e+01 3.104e+01 lineto -6.872819e+01 3.100597e+01 lineto -6.872819e+01 3.877997e+01 lineto -7.236e+01 3.8814e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -7.236e+01 3.8814e+01 moveto -7.236e+01 3.104e+01 lineto -6.872819e+01 3.100597e+01 lineto -6.872819e+01 3.877997e+01 lineto -7.236e+01 3.8814e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.236e+01 4.6588e+01 moveto -7.236e+01 3.8814e+01 lineto -6.872819e+01 3.877997e+01 lineto -6.872819e+01 4.655397e+01 lineto -7.236e+01 4.6588e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -7.236e+01 4.6588e+01 moveto -7.236e+01 3.8814e+01 lineto -6.872819e+01 3.877997e+01 lineto -6.872819e+01 4.655397e+01 lineto -7.236e+01 4.6588e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.236e+01 5.4362e+01 moveto -7.236e+01 4.6588e+01 lineto -6.872819e+01 4.655397e+01 lineto -6.872819e+01 5.432797e+01 lineto -7.236e+01 5.4362e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -7.236e+01 5.4362e+01 moveto -7.236e+01 4.6588e+01 lineto -6.872819e+01 4.655397e+01 lineto -6.872819e+01 5.432797e+01 lineto -7.236e+01 5.4362e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.236e+01 6.2136e+01 moveto -7.236e+01 5.4362e+01 lineto -6.872819e+01 5.432797e+01 lineto -6.872819e+01 6.210197e+01 lineto -7.236e+01 6.2136e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -7.236e+01 6.2136e+01 moveto -7.236e+01 5.4362e+01 lineto -6.872819e+01 5.432797e+01 lineto -6.872819e+01 6.210197e+01 lineto -7.236e+01 6.2136e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.236e+01 6.991e+01 moveto -7.236e+01 6.2136e+01 lineto -6.872819e+01 6.210197e+01 lineto -6.872819e+01 6.987597e+01 lineto -7.236e+01 6.991e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -7.236e+01 6.991e+01 moveto -7.236e+01 6.2136e+01 lineto -6.872819e+01 6.210197e+01 lineto -6.872819e+01 6.987597e+01 lineto -7.236e+01 6.991e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.236e+01 7.7684e+01 moveto -7.236e+01 6.991e+01 lineto -6.872819e+01 6.987597e+01 lineto -6.872819e+01 7.764997e+01 lineto -7.236e+01 7.7684e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -7.236e+01 7.7684e+01 moveto -7.236e+01 6.991e+01 lineto -6.872819e+01 6.987597e+01 lineto -6.872819e+01 7.764997e+01 lineto -7.236e+01 7.7684e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.236e+01 8.5458e+01 moveto -7.236e+01 7.7684e+01 lineto -6.872819e+01 7.764997e+01 lineto -6.872819e+01 8.542397e+01 lineto -7.236e+01 8.5458e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -7.236e+01 8.5458e+01 moveto -7.236e+01 7.7684e+01 lineto -6.872819e+01 7.764997e+01 lineto -6.872819e+01 8.542397e+01 lineto -7.236e+01 8.5458e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.236e+01 9.3232e+01 moveto -7.236e+01 8.5458e+01 lineto -6.872819e+01 8.542397e+01 lineto -6.872819e+01 9.319797e+01 lineto -7.236e+01 9.3232e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -7.236e+01 9.3232e+01 moveto -7.236e+01 8.5458e+01 lineto -6.872819e+01 8.542397e+01 lineto -6.872819e+01 9.319797e+01 lineto -7.236e+01 9.3232e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.236e+01 1.01006e+02 moveto -7.236e+01 9.3232e+01 lineto -6.872819e+01 9.319797e+01 lineto -6.872819e+01 1.00972e+02 lineto -7.236e+01 1.01006e+02 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -7.236e+01 1.01006e+02 moveto -7.236e+01 9.3232e+01 lineto -6.872819e+01 9.319797e+01 lineto -6.872819e+01 1.00972e+02 lineto -7.236e+01 1.01006e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.236e+01 1.0878e+02 moveto -7.236e+01 1.01006e+02 lineto -6.872819e+01 1.00972e+02 lineto -6.872819e+01 1.08746e+02 lineto -7.236e+01 1.0878e+02 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -7.236e+01 1.0878e+02 moveto -7.236e+01 1.01006e+02 lineto -6.872819e+01 1.00972e+02 lineto -6.872819e+01 1.08746e+02 lineto -7.236e+01 1.0878e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.872819e+01 3.877997e+01 moveto -6.872819e+01 3.100597e+01 lineto -6.50734e+01 3.090408e+01 lineto -6.50734e+01 3.867808e+01 lineto -6.872819e+01 3.877997e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -6.872819e+01 3.877997e+01 moveto -6.872819e+01 3.100597e+01 lineto -6.50734e+01 3.090408e+01 lineto -6.50734e+01 3.867808e+01 lineto -6.872819e+01 3.877997e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.872819e+01 4.655397e+01 moveto -6.872819e+01 3.877997e+01 lineto -6.50734e+01 3.867808e+01 lineto -6.50734e+01 4.645208e+01 lineto -6.872819e+01 4.655397e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -6.872819e+01 4.655397e+01 moveto -6.872819e+01 3.877997e+01 lineto -6.50734e+01 3.867808e+01 lineto -6.50734e+01 4.645208e+01 lineto -6.872819e+01 4.655397e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.872819e+01 5.432797e+01 moveto -6.872819e+01 4.655397e+01 lineto -6.50734e+01 4.645208e+01 lineto -6.50734e+01 5.422608e+01 lineto -6.872819e+01 5.432797e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -6.872819e+01 5.432797e+01 moveto -6.872819e+01 4.655397e+01 lineto -6.50734e+01 4.645208e+01 lineto -6.50734e+01 5.422608e+01 lineto -6.872819e+01 5.432797e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.872819e+01 6.210197e+01 moveto -6.872819e+01 5.432797e+01 lineto -6.50734e+01 5.422608e+01 lineto -6.50734e+01 6.200008e+01 lineto -6.872819e+01 6.210197e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -6.872819e+01 6.210197e+01 moveto -6.872819e+01 5.432797e+01 lineto -6.50734e+01 5.422608e+01 lineto -6.50734e+01 6.200008e+01 lineto -6.872819e+01 6.210197e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.872819e+01 6.987597e+01 moveto -6.872819e+01 6.210197e+01 lineto -6.50734e+01 6.200008e+01 lineto -6.50734e+01 6.977408e+01 lineto -6.872819e+01 6.987597e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -6.872819e+01 6.987597e+01 moveto -6.872819e+01 6.210197e+01 lineto -6.50734e+01 6.200008e+01 lineto -6.50734e+01 6.977408e+01 lineto -6.872819e+01 6.987597e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.872819e+01 7.764997e+01 moveto -6.872819e+01 6.987597e+01 lineto -6.50734e+01 6.977408e+01 lineto -6.50734e+01 7.754808e+01 lineto -6.872819e+01 7.764997e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -6.872819e+01 7.764997e+01 moveto -6.872819e+01 6.987597e+01 lineto -6.50734e+01 6.977408e+01 lineto -6.50734e+01 7.754808e+01 lineto -6.872819e+01 7.764997e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.872819e+01 8.542397e+01 moveto -6.872819e+01 7.764997e+01 lineto -6.50734e+01 7.754808e+01 lineto -6.50734e+01 8.532208e+01 lineto -6.872819e+01 8.542397e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -6.872819e+01 8.542397e+01 moveto -6.872819e+01 7.764997e+01 lineto -6.50734e+01 7.754808e+01 lineto -6.50734e+01 8.532208e+01 lineto -6.872819e+01 8.542397e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.872819e+01 9.319797e+01 moveto -6.872819e+01 8.542397e+01 lineto -6.50734e+01 8.532208e+01 lineto -6.50734e+01 9.309608e+01 lineto -6.872819e+01 9.319797e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -6.872819e+01 9.319797e+01 moveto -6.872819e+01 8.542397e+01 lineto -6.50734e+01 8.532208e+01 lineto -6.50734e+01 9.309608e+01 lineto -6.872819e+01 9.319797e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.872819e+01 1.00972e+02 moveto -6.872819e+01 9.319797e+01 lineto -6.50734e+01 9.309608e+01 lineto -6.50734e+01 1.008701e+02 lineto -6.872819e+01 1.00972e+02 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -6.872819e+01 1.00972e+02 moveto -6.872819e+01 9.319797e+01 lineto -6.50734e+01 9.309608e+01 lineto -6.50734e+01 1.008701e+02 lineto -6.872819e+01 1.00972e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.872819e+01 1.08746e+02 moveto -6.872819e+01 1.00972e+02 lineto -6.50734e+01 1.008701e+02 lineto -6.50734e+01 1.086441e+02 lineto -6.872819e+01 1.08746e+02 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -6.872819e+01 1.08746e+02 moveto -6.872819e+01 1.00972e+02 lineto -6.50734e+01 1.008701e+02 lineto -6.50734e+01 1.086441e+02 lineto -6.872819e+01 1.08746e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.50734e+01 3.867808e+01 moveto -6.50734e+01 3.090408e+01 lineto -6.141816e+01 3.073496e+01 lineto -6.141816e+01 3.850896e+01 lineto -6.50734e+01 3.867808e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -6.50734e+01 3.867808e+01 moveto -6.50734e+01 3.090408e+01 lineto -6.141816e+01 3.073496e+01 lineto -6.141816e+01 3.850896e+01 lineto -6.50734e+01 3.867808e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.50734e+01 4.645208e+01 moveto -6.50734e+01 3.867808e+01 lineto -6.141816e+01 3.850896e+01 lineto -6.141816e+01 4.628296e+01 lineto -6.50734e+01 4.645208e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -6.50734e+01 4.645208e+01 moveto -6.50734e+01 3.867808e+01 lineto -6.141816e+01 3.850896e+01 lineto -6.141816e+01 4.628296e+01 lineto -6.50734e+01 4.645208e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.50734e+01 5.422608e+01 moveto -6.50734e+01 4.645208e+01 lineto -6.141816e+01 4.628296e+01 lineto -6.141816e+01 5.405696e+01 lineto -6.50734e+01 5.422608e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -6.50734e+01 5.422608e+01 moveto -6.50734e+01 4.645208e+01 lineto -6.141816e+01 4.628296e+01 lineto -6.141816e+01 5.405696e+01 lineto -6.50734e+01 5.422608e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.50734e+01 6.200008e+01 moveto -6.50734e+01 5.422608e+01 lineto -6.141816e+01 5.405696e+01 lineto -6.141816e+01 6.183096e+01 lineto -6.50734e+01 6.200008e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -6.50734e+01 6.200008e+01 moveto -6.50734e+01 5.422608e+01 lineto -6.141816e+01 5.405696e+01 lineto -6.141816e+01 6.183096e+01 lineto -6.50734e+01 6.200008e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.50734e+01 6.977408e+01 moveto -6.50734e+01 6.200008e+01 lineto -6.141816e+01 6.183096e+01 lineto -6.141816e+01 6.960496e+01 lineto -6.50734e+01 6.977408e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -6.50734e+01 6.977408e+01 moveto -6.50734e+01 6.200008e+01 lineto -6.141816e+01 6.183096e+01 lineto -6.141816e+01 6.960496e+01 lineto -6.50734e+01 6.977408e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.50734e+01 7.754808e+01 moveto -6.50734e+01 6.977408e+01 lineto -6.141816e+01 6.960496e+01 lineto -6.141816e+01 7.737896e+01 lineto -6.50734e+01 7.754808e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -6.50734e+01 7.754808e+01 moveto -6.50734e+01 6.977408e+01 lineto -6.141816e+01 6.960496e+01 lineto -6.141816e+01 7.737896e+01 lineto -6.50734e+01 7.754808e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.50734e+01 8.532208e+01 moveto -6.50734e+01 7.754808e+01 lineto -6.141816e+01 7.737896e+01 lineto -6.141816e+01 8.515296e+01 lineto -6.50734e+01 8.532208e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -6.50734e+01 8.532208e+01 moveto -6.50734e+01 7.754808e+01 lineto -6.141816e+01 7.737896e+01 lineto -6.141816e+01 8.515296e+01 lineto -6.50734e+01 8.532208e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.50734e+01 9.309608e+01 moveto -6.50734e+01 8.532208e+01 lineto -6.141816e+01 8.515296e+01 lineto -6.141816e+01 9.292696e+01 lineto -6.50734e+01 9.309608e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -6.50734e+01 9.309608e+01 moveto -6.50734e+01 8.532208e+01 lineto -6.141816e+01 8.515296e+01 lineto -6.141816e+01 9.292696e+01 lineto -6.50734e+01 9.309608e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.50734e+01 1.008701e+02 moveto -6.50734e+01 9.309608e+01 lineto -6.141816e+01 9.292696e+01 lineto -6.141816e+01 1.00701e+02 lineto -6.50734e+01 1.008701e+02 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -6.50734e+01 1.008701e+02 moveto -6.50734e+01 9.309608e+01 lineto -6.141816e+01 9.292696e+01 lineto -6.141816e+01 1.00701e+02 lineto -6.50734e+01 1.008701e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.50734e+01 1.086441e+02 moveto -6.50734e+01 1.008701e+02 lineto -6.141816e+01 1.00701e+02 lineto -6.141816e+01 1.08475e+02 lineto -6.50734e+01 1.086441e+02 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -6.50734e+01 1.086441e+02 moveto -6.50734e+01 1.008701e+02 lineto -6.141816e+01 1.00701e+02 lineto -6.141816e+01 1.08475e+02 lineto -6.50734e+01 1.086441e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.141816e+01 3.850896e+01 moveto -6.141816e+01 3.073496e+01 lineto -5.778499e+01 3.049966e+01 lineto -5.778499e+01 3.827366e+01 lineto -6.141816e+01 3.850896e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -6.141816e+01 3.850896e+01 moveto -6.141816e+01 3.073496e+01 lineto -5.778499e+01 3.049966e+01 lineto -5.778499e+01 3.827366e+01 lineto -6.141816e+01 3.850896e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.141816e+01 4.628296e+01 moveto -6.141816e+01 3.850896e+01 lineto -5.778499e+01 3.827366e+01 lineto -5.778499e+01 4.604766e+01 lineto -6.141816e+01 4.628296e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -6.141816e+01 4.628296e+01 moveto -6.141816e+01 3.850896e+01 lineto -5.778499e+01 3.827366e+01 lineto -5.778499e+01 4.604766e+01 lineto -6.141816e+01 4.628296e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.141816e+01 5.405696e+01 moveto -6.141816e+01 4.628296e+01 lineto -5.778499e+01 4.604766e+01 lineto -5.778499e+01 5.382166e+01 lineto -6.141816e+01 5.405696e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -6.141816e+01 5.405696e+01 moveto -6.141816e+01 4.628296e+01 lineto -5.778499e+01 4.604766e+01 lineto -5.778499e+01 5.382166e+01 lineto -6.141816e+01 5.405696e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.141816e+01 6.183096e+01 moveto -6.141816e+01 5.405696e+01 lineto -5.778499e+01 5.382166e+01 lineto -5.778499e+01 6.159566e+01 lineto -6.141816e+01 6.183096e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -6.141816e+01 6.183096e+01 moveto -6.141816e+01 5.405696e+01 lineto -5.778499e+01 5.382166e+01 lineto -5.778499e+01 6.159566e+01 lineto -6.141816e+01 6.183096e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.141816e+01 6.960496e+01 moveto -6.141816e+01 6.183096e+01 lineto -5.778499e+01 6.159566e+01 lineto -5.778499e+01 6.936966e+01 lineto -6.141816e+01 6.960496e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -6.141816e+01 6.960496e+01 moveto -6.141816e+01 6.183096e+01 lineto -5.778499e+01 6.159566e+01 lineto -5.778499e+01 6.936966e+01 lineto -6.141816e+01 6.960496e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.141816e+01 7.737896e+01 moveto -6.141816e+01 6.960496e+01 lineto -5.778499e+01 6.936966e+01 lineto -5.778499e+01 7.714366e+01 lineto -6.141816e+01 7.737896e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -6.141816e+01 7.737896e+01 moveto -6.141816e+01 6.960496e+01 lineto -5.778499e+01 6.936966e+01 lineto -5.778499e+01 7.714366e+01 lineto -6.141816e+01 7.737896e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.141816e+01 8.515296e+01 moveto -6.141816e+01 7.737896e+01 lineto -5.778499e+01 7.714366e+01 lineto -5.778499e+01 8.491766e+01 lineto -6.141816e+01 8.515296e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -6.141816e+01 8.515296e+01 moveto -6.141816e+01 7.737896e+01 lineto -5.778499e+01 7.714366e+01 lineto -5.778499e+01 8.491766e+01 lineto -6.141816e+01 8.515296e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.141816e+01 9.292696e+01 moveto -6.141816e+01 8.515296e+01 lineto -5.778499e+01 8.491766e+01 lineto -5.778499e+01 9.269166e+01 lineto -6.141816e+01 9.292696e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -6.141816e+01 9.292696e+01 moveto -6.141816e+01 8.515296e+01 lineto -5.778499e+01 8.491766e+01 lineto -5.778499e+01 9.269166e+01 lineto -6.141816e+01 9.292696e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.141816e+01 1.00701e+02 moveto -6.141816e+01 9.292696e+01 lineto -5.778499e+01 9.269166e+01 lineto -5.778499e+01 1.004657e+02 lineto -6.141816e+01 1.00701e+02 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -6.141816e+01 1.00701e+02 moveto -6.141816e+01 9.292696e+01 lineto -5.778499e+01 9.269166e+01 lineto -5.778499e+01 1.004657e+02 lineto -6.141816e+01 1.00701e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.141816e+01 1.08475e+02 moveto -6.141816e+01 1.00701e+02 lineto -5.778499e+01 1.004657e+02 lineto -5.778499e+01 1.082397e+02 lineto -6.141816e+01 1.08475e+02 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -6.141816e+01 1.08475e+02 moveto -6.141816e+01 1.00701e+02 lineto -5.778499e+01 1.004657e+02 lineto -5.778499e+01 1.082397e+02 lineto -6.141816e+01 1.08475e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.778499e+01 3.827366e+01 moveto -5.778499e+01 3.049966e+01 lineto -5.419632e+01 3.019963e+01 lineto -5.419632e+01 3.797363e+01 lineto -5.778499e+01 3.827366e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -5.778499e+01 3.827366e+01 moveto -5.778499e+01 3.049966e+01 lineto -5.419632e+01 3.019963e+01 lineto -5.419632e+01 3.797363e+01 lineto -5.778499e+01 3.827366e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.778499e+01 4.604766e+01 moveto -5.778499e+01 3.827366e+01 lineto -5.419632e+01 3.797363e+01 lineto -5.419632e+01 4.574763e+01 lineto -5.778499e+01 4.604766e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -5.778499e+01 4.604766e+01 moveto -5.778499e+01 3.827366e+01 lineto -5.419632e+01 3.797363e+01 lineto -5.419632e+01 4.574763e+01 lineto -5.778499e+01 4.604766e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.778499e+01 5.382166e+01 moveto -5.778499e+01 4.604766e+01 lineto -5.419632e+01 4.574763e+01 lineto -5.419632e+01 5.352163e+01 lineto -5.778499e+01 5.382166e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -5.778499e+01 5.382166e+01 moveto -5.778499e+01 4.604766e+01 lineto -5.419632e+01 4.574763e+01 lineto -5.419632e+01 5.352163e+01 lineto -5.778499e+01 5.382166e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.778499e+01 6.159566e+01 moveto -5.778499e+01 5.382166e+01 lineto -5.419632e+01 5.352163e+01 lineto -5.419632e+01 6.129563e+01 lineto -5.778499e+01 6.159566e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -5.778499e+01 6.159566e+01 moveto -5.778499e+01 5.382166e+01 lineto -5.419632e+01 5.352163e+01 lineto -5.419632e+01 6.129563e+01 lineto -5.778499e+01 6.159566e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.778499e+01 6.936966e+01 moveto -5.778499e+01 6.159566e+01 lineto -5.419632e+01 6.129563e+01 lineto -5.419632e+01 6.906963e+01 lineto -5.778499e+01 6.936966e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -5.778499e+01 6.936966e+01 moveto -5.778499e+01 6.159566e+01 lineto -5.419632e+01 6.129563e+01 lineto -5.419632e+01 6.906963e+01 lineto -5.778499e+01 6.936966e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.778499e+01 7.714366e+01 moveto -5.778499e+01 6.936966e+01 lineto -5.419632e+01 6.906963e+01 lineto -5.419632e+01 7.684363e+01 lineto -5.778499e+01 7.714366e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -5.778499e+01 7.714366e+01 moveto -5.778499e+01 6.936966e+01 lineto -5.419632e+01 6.906963e+01 lineto -5.419632e+01 7.684363e+01 lineto -5.778499e+01 7.714366e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.778499e+01 8.491766e+01 moveto -5.778499e+01 7.714366e+01 lineto -5.419632e+01 7.684363e+01 lineto -5.419632e+01 8.461763e+01 lineto -5.778499e+01 8.491766e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -5.778499e+01 8.491766e+01 moveto -5.778499e+01 7.714366e+01 lineto -5.419632e+01 7.684363e+01 lineto -5.419632e+01 8.461763e+01 lineto -5.778499e+01 8.491766e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.778499e+01 9.269166e+01 moveto -5.778499e+01 8.491766e+01 lineto -5.419632e+01 8.461763e+01 lineto -5.419632e+01 9.239163e+01 lineto -5.778499e+01 9.269166e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -5.778499e+01 9.269166e+01 moveto -5.778499e+01 8.491766e+01 lineto -5.419632e+01 8.461763e+01 lineto -5.419632e+01 9.239163e+01 lineto -5.778499e+01 9.269166e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.778499e+01 1.004657e+02 moveto -5.778499e+01 9.269166e+01 lineto -5.419632e+01 9.239163e+01 lineto -5.419632e+01 1.001656e+02 lineto -5.778499e+01 1.004657e+02 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -5.778499e+01 1.004657e+02 moveto -5.778499e+01 9.269166e+01 lineto -5.419632e+01 9.239163e+01 lineto -5.419632e+01 1.001656e+02 lineto -5.778499e+01 1.004657e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.778499e+01 1.082397e+02 moveto -5.778499e+01 1.004657e+02 lineto -5.419632e+01 1.001656e+02 lineto -5.419632e+01 1.079396e+02 lineto -5.778499e+01 1.082397e+02 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -5.778499e+01 1.082397e+02 moveto -5.778499e+01 1.004657e+02 lineto -5.419632e+01 1.001656e+02 lineto -5.419632e+01 1.079396e+02 lineto -5.778499e+01 1.082397e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.419632e+01 3.797363e+01 moveto -5.419632e+01 3.019963e+01 lineto -5.067425e+01 2.983671e+01 lineto -5.067425e+01 3.761071e+01 lineto -5.419632e+01 3.797363e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -5.419632e+01 3.797363e+01 moveto -5.419632e+01 3.019963e+01 lineto -5.067425e+01 2.983671e+01 lineto -5.067425e+01 3.761071e+01 lineto -5.419632e+01 3.797363e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.419632e+01 4.574763e+01 moveto -5.419632e+01 3.797363e+01 lineto -5.067425e+01 3.761071e+01 lineto -5.067425e+01 4.538471e+01 lineto -5.419632e+01 4.574763e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -5.419632e+01 4.574763e+01 moveto -5.419632e+01 3.797363e+01 lineto -5.067425e+01 3.761071e+01 lineto -5.067425e+01 4.538471e+01 lineto -5.419632e+01 4.574763e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.419632e+01 5.352163e+01 moveto -5.419632e+01 4.574763e+01 lineto -5.067425e+01 4.538471e+01 lineto -5.067425e+01 5.315871e+01 lineto -5.419632e+01 5.352163e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -5.419632e+01 5.352163e+01 moveto -5.419632e+01 4.574763e+01 lineto -5.067425e+01 4.538471e+01 lineto -5.067425e+01 5.315871e+01 lineto -5.419632e+01 5.352163e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.419632e+01 6.129563e+01 moveto -5.419632e+01 5.352163e+01 lineto -5.067425e+01 5.315871e+01 lineto -5.067425e+01 6.093271e+01 lineto -5.419632e+01 6.129563e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -5.419632e+01 6.129563e+01 moveto -5.419632e+01 5.352163e+01 lineto -5.067425e+01 5.315871e+01 lineto -5.067425e+01 6.093271e+01 lineto -5.419632e+01 6.129563e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.419632e+01 6.906963e+01 moveto -5.419632e+01 6.129563e+01 lineto -5.067425e+01 6.093271e+01 lineto -5.067425e+01 6.870671e+01 lineto -5.419632e+01 6.906963e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -5.419632e+01 6.906963e+01 moveto -5.419632e+01 6.129563e+01 lineto -5.067425e+01 6.093271e+01 lineto -5.067425e+01 6.870671e+01 lineto -5.419632e+01 6.906963e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.419632e+01 7.684363e+01 moveto -5.419632e+01 6.906963e+01 lineto -5.067425e+01 6.870671e+01 lineto -5.067425e+01 7.648071e+01 lineto -5.419632e+01 7.684363e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -5.419632e+01 7.684363e+01 moveto -5.419632e+01 6.906963e+01 lineto -5.067425e+01 6.870671e+01 lineto -5.067425e+01 7.648071e+01 lineto -5.419632e+01 7.684363e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.419632e+01 8.461763e+01 moveto -5.419632e+01 7.684363e+01 lineto -5.067425e+01 7.648071e+01 lineto -5.067425e+01 8.425471e+01 lineto -5.419632e+01 8.461763e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -5.419632e+01 8.461763e+01 moveto -5.419632e+01 7.684363e+01 lineto -5.067425e+01 7.648071e+01 lineto -5.067425e+01 8.425471e+01 lineto -5.419632e+01 8.461763e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.419632e+01 9.239163e+01 moveto -5.419632e+01 8.461763e+01 lineto -5.067425e+01 8.425471e+01 lineto -5.067425e+01 9.202871e+01 lineto -5.419632e+01 9.239163e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -5.419632e+01 9.239163e+01 moveto -5.419632e+01 8.461763e+01 lineto -5.067425e+01 8.425471e+01 lineto -5.067425e+01 9.202871e+01 lineto -5.419632e+01 9.239163e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.419632e+01 1.001656e+02 moveto -5.419632e+01 9.239163e+01 lineto -5.067425e+01 9.202871e+01 lineto -5.067425e+01 9.980271e+01 lineto -5.419632e+01 1.001656e+02 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -5.419632e+01 1.001656e+02 moveto -5.419632e+01 9.239163e+01 lineto -5.067425e+01 9.202871e+01 lineto -5.067425e+01 9.980271e+01 lineto -5.419632e+01 1.001656e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.419632e+01 1.079396e+02 moveto -5.419632e+01 1.001656e+02 lineto -5.067425e+01 9.980271e+01 lineto -5.067425e+01 1.075767e+02 lineto -5.419632e+01 1.079396e+02 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -5.419632e+01 1.079396e+02 moveto -5.419632e+01 1.001656e+02 lineto -5.067425e+01 9.980271e+01 lineto -5.067425e+01 1.075767e+02 lineto -5.419632e+01 1.079396e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.067425e+01 3.761071e+01 moveto -5.067425e+01 2.983671e+01 lineto -4.72405e+01 2.941315e+01 lineto -4.72405e+01 3.718715e+01 lineto -5.067425e+01 3.761071e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -5.067425e+01 3.761071e+01 moveto -5.067425e+01 2.983671e+01 lineto -4.72405e+01 2.941315e+01 lineto -4.72405e+01 3.718715e+01 lineto -5.067425e+01 3.761071e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.067425e+01 4.538471e+01 moveto -5.067425e+01 3.761071e+01 lineto -4.72405e+01 3.718715e+01 lineto -4.72405e+01 4.496115e+01 lineto -5.067425e+01 4.538471e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -5.067425e+01 4.538471e+01 moveto -5.067425e+01 3.761071e+01 lineto -4.72405e+01 3.718715e+01 lineto -4.72405e+01 4.496115e+01 lineto -5.067425e+01 4.538471e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.067425e+01 5.315871e+01 moveto -5.067425e+01 4.538471e+01 lineto -4.72405e+01 4.496115e+01 lineto -4.72405e+01 5.273515e+01 lineto -5.067425e+01 5.315871e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -5.067425e+01 5.315871e+01 moveto -5.067425e+01 4.538471e+01 lineto -4.72405e+01 4.496115e+01 lineto -4.72405e+01 5.273515e+01 lineto -5.067425e+01 5.315871e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.067425e+01 6.093271e+01 moveto -5.067425e+01 5.315871e+01 lineto -4.72405e+01 5.273515e+01 lineto -4.72405e+01 6.050915e+01 lineto -5.067425e+01 6.093271e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -5.067425e+01 6.093271e+01 moveto -5.067425e+01 5.315871e+01 lineto -4.72405e+01 5.273515e+01 lineto -4.72405e+01 6.050915e+01 lineto -5.067425e+01 6.093271e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.067425e+01 6.870671e+01 moveto -5.067425e+01 6.093271e+01 lineto -4.72405e+01 6.050915e+01 lineto -4.72405e+01 6.828315e+01 lineto -5.067425e+01 6.870671e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -5.067425e+01 6.870671e+01 moveto -5.067425e+01 6.093271e+01 lineto -4.72405e+01 6.050915e+01 lineto -4.72405e+01 6.828315e+01 lineto -5.067425e+01 6.870671e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.067425e+01 7.648071e+01 moveto -5.067425e+01 6.870671e+01 lineto -4.72405e+01 6.828315e+01 lineto -4.72405e+01 7.605715e+01 lineto -5.067425e+01 7.648071e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -5.067425e+01 7.648071e+01 moveto -5.067425e+01 6.870671e+01 lineto -4.72405e+01 6.828315e+01 lineto -4.72405e+01 7.605715e+01 lineto -5.067425e+01 7.648071e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.067425e+01 8.425471e+01 moveto -5.067425e+01 7.648071e+01 lineto -4.72405e+01 7.605715e+01 lineto -4.72405e+01 8.383115e+01 lineto -5.067425e+01 8.425471e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -5.067425e+01 8.425471e+01 moveto -5.067425e+01 7.648071e+01 lineto -4.72405e+01 7.605715e+01 lineto -4.72405e+01 8.383115e+01 lineto -5.067425e+01 8.425471e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.067425e+01 9.202871e+01 moveto -5.067425e+01 8.425471e+01 lineto -4.72405e+01 8.383115e+01 lineto -4.72405e+01 9.160515e+01 lineto -5.067425e+01 9.202871e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -5.067425e+01 9.202871e+01 moveto -5.067425e+01 8.425471e+01 lineto -4.72405e+01 8.383115e+01 lineto -4.72405e+01 9.160515e+01 lineto -5.067425e+01 9.202871e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.067425e+01 9.980271e+01 moveto -5.067425e+01 9.202871e+01 lineto -4.72405e+01 9.160515e+01 lineto -4.72405e+01 9.937915e+01 lineto -5.067425e+01 9.980271e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -5.067425e+01 9.980271e+01 moveto -5.067425e+01 9.202871e+01 lineto -4.72405e+01 9.160515e+01 lineto -4.72405e+01 9.937915e+01 lineto -5.067425e+01 9.980271e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.067425e+01 1.075767e+02 moveto -5.067425e+01 9.980271e+01 lineto -4.72405e+01 9.937915e+01 lineto -4.72405e+01 1.071531e+02 lineto -5.067425e+01 1.075767e+02 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -5.067425e+01 1.075767e+02 moveto -5.067425e+01 9.980271e+01 lineto -4.72405e+01 9.937915e+01 lineto -4.72405e+01 1.071531e+02 lineto -5.067425e+01 1.075767e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.72405e+01 3.718715e+01 moveto -4.72405e+01 2.941315e+01 lineto -4.391624e+01 2.893155e+01 lineto -4.391624e+01 3.670555e+01 lineto -4.72405e+01 3.718715e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -4.72405e+01 3.718715e+01 moveto -4.72405e+01 2.941315e+01 lineto -4.391624e+01 2.893155e+01 lineto -4.391624e+01 3.670555e+01 lineto -4.72405e+01 3.718715e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.72405e+01 4.496115e+01 moveto -4.72405e+01 3.718715e+01 lineto -4.391624e+01 3.670555e+01 lineto -4.391624e+01 4.447955e+01 lineto -4.72405e+01 4.496115e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -4.72405e+01 4.496115e+01 moveto -4.72405e+01 3.718715e+01 lineto -4.391624e+01 3.670555e+01 lineto -4.391624e+01 4.447955e+01 lineto -4.72405e+01 4.496115e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.72405e+01 5.273515e+01 moveto -4.72405e+01 4.496115e+01 lineto -4.391624e+01 4.447955e+01 lineto -4.391624e+01 5.225355e+01 lineto -4.72405e+01 5.273515e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -4.72405e+01 5.273515e+01 moveto -4.72405e+01 4.496115e+01 lineto -4.391624e+01 4.447955e+01 lineto -4.391624e+01 5.225355e+01 lineto -4.72405e+01 5.273515e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.72405e+01 6.050915e+01 moveto -4.72405e+01 5.273515e+01 lineto -4.391624e+01 5.225355e+01 lineto -4.391624e+01 6.002755e+01 lineto -4.72405e+01 6.050915e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -4.72405e+01 6.050915e+01 moveto -4.72405e+01 5.273515e+01 lineto -4.391624e+01 5.225355e+01 lineto -4.391624e+01 6.002755e+01 lineto -4.72405e+01 6.050915e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.72405e+01 6.828315e+01 moveto -4.72405e+01 6.050915e+01 lineto -4.391624e+01 6.002755e+01 lineto -4.391624e+01 6.780155e+01 lineto -4.72405e+01 6.828315e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -4.72405e+01 6.828315e+01 moveto -4.72405e+01 6.050915e+01 lineto -4.391624e+01 6.002755e+01 lineto -4.391624e+01 6.780155e+01 lineto -4.72405e+01 6.828315e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.72405e+01 7.605715e+01 moveto -4.72405e+01 6.828315e+01 lineto -4.391624e+01 6.780155e+01 lineto -4.391624e+01 7.557555e+01 lineto -4.72405e+01 7.605715e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -4.72405e+01 7.605715e+01 moveto -4.72405e+01 6.828315e+01 lineto -4.391624e+01 6.780155e+01 lineto -4.391624e+01 7.557555e+01 lineto -4.72405e+01 7.605715e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.72405e+01 8.383115e+01 moveto -4.72405e+01 7.605715e+01 lineto -4.391624e+01 7.557555e+01 lineto -4.391624e+01 8.334955e+01 lineto -4.72405e+01 8.383115e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -4.72405e+01 8.383115e+01 moveto -4.72405e+01 7.605715e+01 lineto -4.391624e+01 7.557555e+01 lineto -4.391624e+01 8.334955e+01 lineto -4.72405e+01 8.383115e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.72405e+01 9.160515e+01 moveto -4.72405e+01 8.383115e+01 lineto -4.391624e+01 8.334955e+01 lineto -4.391624e+01 9.112355e+01 lineto -4.72405e+01 9.160515e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -4.72405e+01 9.160515e+01 moveto -4.72405e+01 8.383115e+01 lineto -4.391624e+01 8.334955e+01 lineto -4.391624e+01 9.112355e+01 lineto -4.72405e+01 9.160515e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.72405e+01 9.937915e+01 moveto -4.72405e+01 9.160515e+01 lineto -4.391624e+01 9.112355e+01 lineto -4.391624e+01 9.889755e+01 lineto -4.72405e+01 9.937915e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -4.72405e+01 9.937915e+01 moveto -4.72405e+01 9.160515e+01 lineto -4.391624e+01 9.112355e+01 lineto -4.391624e+01 9.889755e+01 lineto -4.72405e+01 9.937915e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.72405e+01 1.071531e+02 moveto -4.72405e+01 9.937915e+01 lineto -4.391624e+01 9.889755e+01 lineto -4.391624e+01 1.066715e+02 lineto -4.72405e+01 1.071531e+02 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -4.72405e+01 1.071531e+02 moveto -4.72405e+01 9.937915e+01 lineto -4.391624e+01 9.889755e+01 lineto -4.391624e+01 1.066715e+02 lineto -4.72405e+01 1.071531e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.391624e+01 3.670555e+01 moveto -4.391624e+01 2.893155e+01 lineto -4.072198e+01 2.839488e+01 lineto -4.072198e+01 3.616888e+01 lineto -4.391624e+01 3.670555e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -4.391624e+01 3.670555e+01 moveto -4.391624e+01 2.893155e+01 lineto -4.072198e+01 2.839488e+01 lineto -4.072198e+01 3.616888e+01 lineto -4.391624e+01 3.670555e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.391624e+01 4.447955e+01 moveto -4.391624e+01 3.670555e+01 lineto -4.072198e+01 3.616888e+01 lineto -4.072198e+01 4.394288e+01 lineto -4.391624e+01 4.447955e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -4.391624e+01 4.447955e+01 moveto -4.391624e+01 3.670555e+01 lineto -4.072198e+01 3.616888e+01 lineto -4.072198e+01 4.394288e+01 lineto -4.391624e+01 4.447955e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.391624e+01 5.225355e+01 moveto -4.391624e+01 4.447955e+01 lineto -4.072198e+01 4.394288e+01 lineto -4.072198e+01 5.171688e+01 lineto -4.391624e+01 5.225355e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -4.391624e+01 5.225355e+01 moveto -4.391624e+01 4.447955e+01 lineto -4.072198e+01 4.394288e+01 lineto -4.072198e+01 5.171688e+01 lineto -4.391624e+01 5.225355e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.391624e+01 6.002755e+01 moveto -4.391624e+01 5.225355e+01 lineto -4.072198e+01 5.171688e+01 lineto -4.072198e+01 5.949088e+01 lineto -4.391624e+01 6.002755e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -4.391624e+01 6.002755e+01 moveto -4.391624e+01 5.225355e+01 lineto -4.072198e+01 5.171688e+01 lineto -4.072198e+01 5.949088e+01 lineto -4.391624e+01 6.002755e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.391624e+01 6.780155e+01 moveto -4.391624e+01 6.002755e+01 lineto -4.072198e+01 5.949088e+01 lineto -4.072198e+01 6.726488e+01 lineto -4.391624e+01 6.780155e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -4.391624e+01 6.780155e+01 moveto -4.391624e+01 6.002755e+01 lineto -4.072198e+01 5.949088e+01 lineto -4.072198e+01 6.726488e+01 lineto -4.391624e+01 6.780155e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.391624e+01 7.557555e+01 moveto -4.391624e+01 6.780155e+01 lineto -4.072198e+01 6.726488e+01 lineto -4.072198e+01 7.503888e+01 lineto -4.391624e+01 7.557555e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -4.391624e+01 7.557555e+01 moveto -4.391624e+01 6.780155e+01 lineto -4.072198e+01 6.726488e+01 lineto -4.072198e+01 7.503888e+01 lineto -4.391624e+01 7.557555e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.391624e+01 8.334955e+01 moveto -4.391624e+01 7.557555e+01 lineto -4.072198e+01 7.503888e+01 lineto -4.072198e+01 8.281288e+01 lineto -4.391624e+01 8.334955e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -4.391624e+01 8.334955e+01 moveto -4.391624e+01 7.557555e+01 lineto -4.072198e+01 7.503888e+01 lineto -4.072198e+01 8.281288e+01 lineto -4.391624e+01 8.334955e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.391624e+01 9.112355e+01 moveto -4.391624e+01 8.334955e+01 lineto -4.072198e+01 8.281288e+01 lineto -4.072198e+01 9.058688e+01 lineto -4.391624e+01 9.112355e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -4.391624e+01 9.112355e+01 moveto -4.391624e+01 8.334955e+01 lineto -4.072198e+01 8.281288e+01 lineto -4.072198e+01 9.058688e+01 lineto -4.391624e+01 9.112355e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.391624e+01 9.889755e+01 moveto -4.391624e+01 9.112355e+01 lineto -4.072198e+01 9.058688e+01 lineto -4.072198e+01 9.836088e+01 lineto -4.391624e+01 9.889755e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -4.391624e+01 9.889755e+01 moveto -4.391624e+01 9.112355e+01 lineto -4.072198e+01 9.058688e+01 lineto -4.072198e+01 9.836088e+01 lineto -4.391624e+01 9.889755e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.391624e+01 1.066715e+02 moveto -4.391624e+01 9.889755e+01 lineto -4.072198e+01 9.836088e+01 lineto -4.072198e+01 1.061349e+02 lineto -4.391624e+01 1.066715e+02 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -4.391624e+01 1.066715e+02 moveto -4.391624e+01 9.889755e+01 lineto -4.072198e+01 9.836088e+01 lineto -4.072198e+01 1.061349e+02 lineto -4.391624e+01 1.066715e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.072198e+01 3.616888e+01 moveto -4.072198e+01 2.839488e+01 lineto -3.767739e+01 2.780646e+01 lineto -3.767739e+01 3.558046e+01 lineto -4.072198e+01 3.616888e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -4.072198e+01 3.616888e+01 moveto -4.072198e+01 2.839488e+01 lineto -3.767739e+01 2.780646e+01 lineto -3.767739e+01 3.558046e+01 lineto -4.072198e+01 3.616888e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.072198e+01 4.394288e+01 moveto -4.072198e+01 3.616888e+01 lineto -3.767739e+01 3.558046e+01 lineto -3.767739e+01 4.335446e+01 lineto -4.072198e+01 4.394288e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -4.072198e+01 4.394288e+01 moveto -4.072198e+01 3.616888e+01 lineto -3.767739e+01 3.558046e+01 lineto -3.767739e+01 4.335446e+01 lineto -4.072198e+01 4.394288e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.072198e+01 5.171688e+01 moveto -4.072198e+01 4.394288e+01 lineto -3.767739e+01 4.335446e+01 lineto -3.767739e+01 5.112846e+01 lineto -4.072198e+01 5.171688e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -4.072198e+01 5.171688e+01 moveto -4.072198e+01 4.394288e+01 lineto -3.767739e+01 4.335446e+01 lineto -3.767739e+01 5.112846e+01 lineto -4.072198e+01 5.171688e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.072198e+01 5.949088e+01 moveto -4.072198e+01 5.171688e+01 lineto -3.767739e+01 5.112846e+01 lineto -3.767739e+01 5.890246e+01 lineto -4.072198e+01 5.949088e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -4.072198e+01 5.949088e+01 moveto -4.072198e+01 5.171688e+01 lineto -3.767739e+01 5.112846e+01 lineto -3.767739e+01 5.890246e+01 lineto -4.072198e+01 5.949088e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.072198e+01 6.726488e+01 moveto -4.072198e+01 5.949088e+01 lineto -3.767739e+01 5.890246e+01 lineto -3.767739e+01 6.667646e+01 lineto -4.072198e+01 6.726488e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -4.072198e+01 6.726488e+01 moveto -4.072198e+01 5.949088e+01 lineto -3.767739e+01 5.890246e+01 lineto -3.767739e+01 6.667646e+01 lineto -4.072198e+01 6.726488e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.072198e+01 7.503888e+01 moveto -4.072198e+01 6.726488e+01 lineto -3.767739e+01 6.667646e+01 lineto -3.767739e+01 7.445046e+01 lineto -4.072198e+01 7.503888e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -4.072198e+01 7.503888e+01 moveto -4.072198e+01 6.726488e+01 lineto -3.767739e+01 6.667646e+01 lineto -3.767739e+01 7.445046e+01 lineto -4.072198e+01 7.503888e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.072198e+01 8.281288e+01 moveto -4.072198e+01 7.503888e+01 lineto -3.767739e+01 7.445046e+01 lineto -3.767739e+01 8.222446e+01 lineto -4.072198e+01 8.281288e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -4.072198e+01 8.281288e+01 moveto -4.072198e+01 7.503888e+01 lineto -3.767739e+01 7.445046e+01 lineto -3.767739e+01 8.222446e+01 lineto -4.072198e+01 8.281288e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.072198e+01 9.058688e+01 moveto -4.072198e+01 8.281288e+01 lineto -3.767739e+01 8.222446e+01 lineto -3.767739e+01 8.999846e+01 lineto -4.072198e+01 9.058688e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -4.072198e+01 9.058688e+01 moveto -4.072198e+01 8.281288e+01 lineto -3.767739e+01 8.222446e+01 lineto -3.767739e+01 8.999846e+01 lineto -4.072198e+01 9.058688e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.072198e+01 9.836088e+01 moveto -4.072198e+01 9.058688e+01 lineto -3.767739e+01 8.999846e+01 lineto -3.767739e+01 9.777246e+01 lineto -4.072198e+01 9.836088e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -4.072198e+01 9.836088e+01 moveto -4.072198e+01 9.058688e+01 lineto -3.767739e+01 8.999846e+01 lineto -3.767739e+01 9.777246e+01 lineto -4.072198e+01 9.836088e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.072198e+01 1.061349e+02 moveto -4.072198e+01 9.836088e+01 lineto -3.767739e+01 9.777246e+01 lineto -3.767739e+01 1.055465e+02 lineto -4.072198e+01 1.061349e+02 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -4.072198e+01 1.061349e+02 moveto -4.072198e+01 9.836088e+01 lineto -3.767739e+01 9.777246e+01 lineto -3.767739e+01 1.055465e+02 lineto -4.072198e+01 1.061349e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.767739e+01 3.558046e+01 moveto -3.767739e+01 2.780646e+01 lineto -3.480126e+01 2.716991e+01 lineto -3.480126e+01 3.494391e+01 lineto -3.767739e+01 3.558046e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -3.767739e+01 3.558046e+01 moveto -3.767739e+01 2.780646e+01 lineto -3.480126e+01 2.716991e+01 lineto -3.480126e+01 3.494391e+01 lineto -3.767739e+01 3.558046e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.767739e+01 4.335446e+01 moveto -3.767739e+01 3.558046e+01 lineto -3.480126e+01 3.494391e+01 lineto -3.480126e+01 4.271791e+01 lineto -3.767739e+01 4.335446e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -3.767739e+01 4.335446e+01 moveto -3.767739e+01 3.558046e+01 lineto -3.480126e+01 3.494391e+01 lineto -3.480126e+01 4.271791e+01 lineto -3.767739e+01 4.335446e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.767739e+01 5.112846e+01 moveto -3.767739e+01 4.335446e+01 lineto -3.480126e+01 4.271791e+01 lineto -3.480126e+01 5.049191e+01 lineto -3.767739e+01 5.112846e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -3.767739e+01 5.112846e+01 moveto -3.767739e+01 4.335446e+01 lineto -3.480126e+01 4.271791e+01 lineto -3.480126e+01 5.049191e+01 lineto -3.767739e+01 5.112846e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.767739e+01 5.890246e+01 moveto -3.767739e+01 5.112846e+01 lineto -3.480126e+01 5.049191e+01 lineto -3.480126e+01 5.826591e+01 lineto -3.767739e+01 5.890246e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -3.767739e+01 5.890246e+01 moveto -3.767739e+01 5.112846e+01 lineto -3.480126e+01 5.049191e+01 lineto -3.480126e+01 5.826591e+01 lineto -3.767739e+01 5.890246e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.767739e+01 6.667646e+01 moveto -3.767739e+01 5.890246e+01 lineto -3.480126e+01 5.826591e+01 lineto -3.480126e+01 6.603991e+01 lineto -3.767739e+01 6.667646e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -3.767739e+01 6.667646e+01 moveto -3.767739e+01 5.890246e+01 lineto -3.480126e+01 5.826591e+01 lineto -3.480126e+01 6.603991e+01 lineto -3.767739e+01 6.667646e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.767739e+01 7.445046e+01 moveto -3.767739e+01 6.667646e+01 lineto -3.480126e+01 6.603991e+01 lineto -3.480126e+01 7.381391e+01 lineto -3.767739e+01 7.445046e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -3.767739e+01 7.445046e+01 moveto -3.767739e+01 6.667646e+01 lineto -3.480126e+01 6.603991e+01 lineto -3.480126e+01 7.381391e+01 lineto -3.767739e+01 7.445046e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.767739e+01 8.222446e+01 moveto -3.767739e+01 7.445046e+01 lineto -3.480126e+01 7.381391e+01 lineto -3.480126e+01 8.158791e+01 lineto -3.767739e+01 8.222446e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -3.767739e+01 8.222446e+01 moveto -3.767739e+01 7.445046e+01 lineto -3.480126e+01 7.381391e+01 lineto -3.480126e+01 8.158791e+01 lineto -3.767739e+01 8.222446e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.767739e+01 8.999846e+01 moveto -3.767739e+01 8.222446e+01 lineto -3.480126e+01 8.158791e+01 lineto -3.480126e+01 8.936191e+01 lineto -3.767739e+01 8.999846e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -3.767739e+01 8.999846e+01 moveto -3.767739e+01 8.222446e+01 lineto -3.480126e+01 8.158791e+01 lineto -3.480126e+01 8.936191e+01 lineto -3.767739e+01 8.999846e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.767739e+01 9.777246e+01 moveto -3.767739e+01 8.999846e+01 lineto -3.480126e+01 8.936191e+01 lineto -3.480126e+01 9.713591e+01 lineto -3.767739e+01 9.777246e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -3.767739e+01 9.777246e+01 moveto -3.767739e+01 8.999846e+01 lineto -3.480126e+01 8.936191e+01 lineto -3.480126e+01 9.713591e+01 lineto -3.767739e+01 9.777246e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.767739e+01 1.055465e+02 moveto -3.767739e+01 9.777246e+01 lineto -3.480126e+01 9.713591e+01 lineto -3.480126e+01 1.049099e+02 lineto -3.767739e+01 1.055465e+02 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -3.767739e+01 1.055465e+02 moveto -3.767739e+01 9.777246e+01 lineto -3.480126e+01 9.713591e+01 lineto -3.480126e+01 1.049099e+02 lineto -3.767739e+01 1.055465e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.480126e+01 3.494391e+01 moveto -3.480126e+01 2.716991e+01 lineto -3.211132e+01 2.648915e+01 lineto -3.211132e+01 3.426315e+01 lineto -3.480126e+01 3.494391e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -3.480126e+01 3.494391e+01 moveto -3.480126e+01 2.716991e+01 lineto -3.211132e+01 2.648915e+01 lineto -3.211132e+01 3.426315e+01 lineto -3.480126e+01 3.494391e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.480126e+01 4.271791e+01 moveto -3.480126e+01 3.494391e+01 lineto -3.211132e+01 3.426315e+01 lineto -3.211132e+01 4.203715e+01 lineto -3.480126e+01 4.271791e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -3.480126e+01 4.271791e+01 moveto -3.480126e+01 3.494391e+01 lineto -3.211132e+01 3.426315e+01 lineto -3.211132e+01 4.203715e+01 lineto -3.480126e+01 4.271791e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.480126e+01 5.049191e+01 moveto -3.480126e+01 4.271791e+01 lineto -3.211132e+01 4.203715e+01 lineto -3.211132e+01 4.981115e+01 lineto -3.480126e+01 5.049191e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -3.480126e+01 5.049191e+01 moveto -3.480126e+01 4.271791e+01 lineto -3.211132e+01 4.203715e+01 lineto -3.211132e+01 4.981115e+01 lineto -3.480126e+01 5.049191e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.480126e+01 5.826591e+01 moveto -3.480126e+01 5.049191e+01 lineto -3.211132e+01 4.981115e+01 lineto -3.211132e+01 5.758515e+01 lineto -3.480126e+01 5.826591e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -3.480126e+01 5.826591e+01 moveto -3.480126e+01 5.049191e+01 lineto -3.211132e+01 4.981115e+01 lineto -3.211132e+01 5.758515e+01 lineto -3.480126e+01 5.826591e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.480126e+01 6.603991e+01 moveto -3.480126e+01 5.826591e+01 lineto -3.211132e+01 5.758515e+01 lineto -3.211132e+01 6.535915e+01 lineto -3.480126e+01 6.603991e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -3.480126e+01 6.603991e+01 moveto -3.480126e+01 5.826591e+01 lineto -3.211132e+01 5.758515e+01 lineto -3.211132e+01 6.535915e+01 lineto -3.480126e+01 6.603991e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.480126e+01 7.381391e+01 moveto -3.480126e+01 6.603991e+01 lineto -3.211132e+01 6.535915e+01 lineto -3.211132e+01 7.313315e+01 lineto -3.480126e+01 7.381391e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -3.480126e+01 7.381391e+01 moveto -3.480126e+01 6.603991e+01 lineto -3.211132e+01 6.535915e+01 lineto -3.211132e+01 7.313315e+01 lineto -3.480126e+01 7.381391e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.480126e+01 8.158791e+01 moveto -3.480126e+01 7.381391e+01 lineto -3.211132e+01 7.313315e+01 lineto -3.211132e+01 8.090715e+01 lineto -3.480126e+01 8.158791e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -3.480126e+01 8.158791e+01 moveto -3.480126e+01 7.381391e+01 lineto -3.211132e+01 7.313315e+01 lineto -3.211132e+01 8.090715e+01 lineto -3.480126e+01 8.158791e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.480126e+01 8.936191e+01 moveto -3.480126e+01 8.158791e+01 lineto -3.211132e+01 8.090715e+01 lineto -3.211132e+01 8.868115e+01 lineto -3.480126e+01 8.936191e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -3.480126e+01 8.936191e+01 moveto -3.480126e+01 8.158791e+01 lineto -3.211132e+01 8.090715e+01 lineto -3.211132e+01 8.868115e+01 lineto -3.480126e+01 8.936191e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.480126e+01 9.713591e+01 moveto -3.480126e+01 8.936191e+01 lineto -3.211132e+01 8.868115e+01 lineto -3.211132e+01 9.645515e+01 lineto -3.480126e+01 9.713591e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -3.480126e+01 9.713591e+01 moveto -3.480126e+01 8.936191e+01 lineto -3.211132e+01 8.868115e+01 lineto -3.211132e+01 9.645515e+01 lineto -3.480126e+01 9.713591e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.480126e+01 1.049099e+02 moveto -3.480126e+01 9.713591e+01 lineto -3.211132e+01 9.645515e+01 lineto -3.211132e+01 1.042291e+02 lineto -3.480126e+01 1.049099e+02 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -3.480126e+01 1.049099e+02 moveto -3.480126e+01 9.713591e+01 lineto -3.211132e+01 9.645515e+01 lineto -3.211132e+01 1.042291e+02 lineto -3.480126e+01 1.049099e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.211132e+01 3.426315e+01 moveto -3.211132e+01 2.648915e+01 lineto -2.962414e+01 2.576838e+01 lineto -2.962414e+01 3.354238e+01 lineto -3.211132e+01 3.426315e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -3.211132e+01 3.426315e+01 moveto -3.211132e+01 2.648915e+01 lineto -2.962414e+01 2.576838e+01 lineto -2.962414e+01 3.354238e+01 lineto -3.211132e+01 3.426315e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.211132e+01 4.203715e+01 moveto -3.211132e+01 3.426315e+01 lineto -2.962414e+01 3.354238e+01 lineto -2.962414e+01 4.131638e+01 lineto -3.211132e+01 4.203715e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -3.211132e+01 4.203715e+01 moveto -3.211132e+01 3.426315e+01 lineto -2.962414e+01 3.354238e+01 lineto -2.962414e+01 4.131638e+01 lineto -3.211132e+01 4.203715e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.211132e+01 4.981115e+01 moveto -3.211132e+01 4.203715e+01 lineto -2.962414e+01 4.131638e+01 lineto -2.962414e+01 4.909038e+01 lineto -3.211132e+01 4.981115e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -3.211132e+01 4.981115e+01 moveto -3.211132e+01 4.203715e+01 lineto -2.962414e+01 4.131638e+01 lineto -2.962414e+01 4.909038e+01 lineto -3.211132e+01 4.981115e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.211132e+01 5.758515e+01 moveto -3.211132e+01 4.981115e+01 lineto -2.962414e+01 4.909038e+01 lineto -2.962414e+01 5.686438e+01 lineto -3.211132e+01 5.758515e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -3.211132e+01 5.758515e+01 moveto -3.211132e+01 4.981115e+01 lineto -2.962414e+01 4.909038e+01 lineto -2.962414e+01 5.686438e+01 lineto -3.211132e+01 5.758515e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.211132e+01 6.535915e+01 moveto -3.211132e+01 5.758515e+01 lineto -2.962414e+01 5.686438e+01 lineto -2.962414e+01 6.463838e+01 lineto -3.211132e+01 6.535915e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -3.211132e+01 6.535915e+01 moveto -3.211132e+01 5.758515e+01 lineto -2.962414e+01 5.686438e+01 lineto -2.962414e+01 6.463838e+01 lineto -3.211132e+01 6.535915e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.211132e+01 7.313315e+01 moveto -3.211132e+01 6.535915e+01 lineto -2.962414e+01 6.463838e+01 lineto -2.962414e+01 7.241238e+01 lineto -3.211132e+01 7.313315e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -3.211132e+01 7.313315e+01 moveto -3.211132e+01 6.535915e+01 lineto -2.962414e+01 6.463838e+01 lineto -2.962414e+01 7.241238e+01 lineto -3.211132e+01 7.313315e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.211132e+01 8.090715e+01 moveto -3.211132e+01 7.313315e+01 lineto -2.962414e+01 7.241238e+01 lineto -2.962414e+01 8.018638e+01 lineto -3.211132e+01 8.090715e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -3.211132e+01 8.090715e+01 moveto -3.211132e+01 7.313315e+01 lineto -2.962414e+01 7.241238e+01 lineto -2.962414e+01 8.018638e+01 lineto -3.211132e+01 8.090715e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.211132e+01 8.868115e+01 moveto -3.211132e+01 8.090715e+01 lineto -2.962414e+01 8.018638e+01 lineto -2.962414e+01 8.796038e+01 lineto -3.211132e+01 8.868115e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -3.211132e+01 8.868115e+01 moveto -3.211132e+01 8.090715e+01 lineto -2.962414e+01 8.018638e+01 lineto -2.962414e+01 8.796038e+01 lineto -3.211132e+01 8.868115e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.211132e+01 9.645515e+01 moveto -3.211132e+01 8.868115e+01 lineto -2.962414e+01 8.796038e+01 lineto -2.962414e+01 9.573438e+01 lineto -3.211132e+01 9.645515e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -3.211132e+01 9.645515e+01 moveto -3.211132e+01 8.868115e+01 lineto -2.962414e+01 8.796038e+01 lineto -2.962414e+01 9.573438e+01 lineto -3.211132e+01 9.645515e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.211132e+01 1.042291e+02 moveto -3.211132e+01 9.645515e+01 lineto -2.962414e+01 9.573438e+01 lineto -2.962414e+01 1.035084e+02 lineto -3.211132e+01 1.042291e+02 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -3.211132e+01 1.042291e+02 moveto -3.211132e+01 9.645515e+01 lineto -2.962414e+01 9.573438e+01 lineto -2.962414e+01 1.035084e+02 lineto -3.211132e+01 1.042291e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.962414e+01 3.354238e+01 moveto -2.962414e+01 2.576838e+01 lineto -2.735507e+01 2.501206e+01 lineto -2.735507e+01 3.278606e+01 lineto -2.962414e+01 3.354238e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -2.962414e+01 3.354238e+01 moveto -2.962414e+01 2.576838e+01 lineto -2.735507e+01 2.501206e+01 lineto -2.735507e+01 3.278606e+01 lineto -2.962414e+01 3.354238e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.962414e+01 4.131638e+01 moveto -2.962414e+01 3.354238e+01 lineto -2.735507e+01 3.278606e+01 lineto -2.735507e+01 4.056006e+01 lineto -2.962414e+01 4.131638e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -2.962414e+01 4.131638e+01 moveto -2.962414e+01 3.354238e+01 lineto -2.735507e+01 3.278606e+01 lineto -2.735507e+01 4.056006e+01 lineto -2.962414e+01 4.131638e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.962414e+01 4.909038e+01 moveto -2.962414e+01 4.131638e+01 lineto -2.735507e+01 4.056006e+01 lineto -2.735507e+01 4.833406e+01 lineto -2.962414e+01 4.909038e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -2.962414e+01 4.909038e+01 moveto -2.962414e+01 4.131638e+01 lineto -2.735507e+01 4.056006e+01 lineto -2.735507e+01 4.833406e+01 lineto -2.962414e+01 4.909038e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.962414e+01 5.686438e+01 moveto -2.962414e+01 4.909038e+01 lineto -2.735507e+01 4.833406e+01 lineto -2.735507e+01 5.610806e+01 lineto -2.962414e+01 5.686438e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -2.962414e+01 5.686438e+01 moveto -2.962414e+01 4.909038e+01 lineto -2.735507e+01 4.833406e+01 lineto -2.735507e+01 5.610806e+01 lineto -2.962414e+01 5.686438e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.962414e+01 6.463838e+01 moveto -2.962414e+01 5.686438e+01 lineto -2.735507e+01 5.610806e+01 lineto -2.735507e+01 6.388206e+01 lineto -2.962414e+01 6.463838e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -2.962414e+01 6.463838e+01 moveto -2.962414e+01 5.686438e+01 lineto -2.735507e+01 5.610806e+01 lineto -2.735507e+01 6.388206e+01 lineto -2.962414e+01 6.463838e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.962414e+01 7.241238e+01 moveto -2.962414e+01 6.463838e+01 lineto -2.735507e+01 6.388206e+01 lineto -2.735507e+01 7.165606e+01 lineto -2.962414e+01 7.241238e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -2.962414e+01 7.241238e+01 moveto -2.962414e+01 6.463838e+01 lineto -2.735507e+01 6.388206e+01 lineto -2.735507e+01 7.165606e+01 lineto -2.962414e+01 7.241238e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.962414e+01 8.018638e+01 moveto -2.962414e+01 7.241238e+01 lineto -2.735507e+01 7.165606e+01 lineto -2.735507e+01 7.943006e+01 lineto -2.962414e+01 8.018638e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -2.962414e+01 8.018638e+01 moveto -2.962414e+01 7.241238e+01 lineto -2.735507e+01 7.165606e+01 lineto -2.735507e+01 7.943006e+01 lineto -2.962414e+01 8.018638e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.962414e+01 8.796038e+01 moveto -2.962414e+01 8.018638e+01 lineto -2.735507e+01 7.943006e+01 lineto -2.735507e+01 8.720406e+01 lineto -2.962414e+01 8.796038e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -2.962414e+01 8.796038e+01 moveto -2.962414e+01 8.018638e+01 lineto -2.735507e+01 7.943006e+01 lineto -2.735507e+01 8.720406e+01 lineto -2.962414e+01 8.796038e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.962414e+01 9.573438e+01 moveto -2.962414e+01 8.796038e+01 lineto -2.735507e+01 8.720406e+01 lineto -2.735507e+01 9.497806e+01 lineto -2.962414e+01 9.573438e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -2.962414e+01 9.573438e+01 moveto -2.962414e+01 8.796038e+01 lineto -2.735507e+01 8.720406e+01 lineto -2.735507e+01 9.497806e+01 lineto -2.962414e+01 9.573438e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.962414e+01 1.035084e+02 moveto -2.962414e+01 9.573438e+01 lineto -2.735507e+01 9.497806e+01 lineto -2.735507e+01 1.027521e+02 lineto -2.962414e+01 1.035084e+02 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -2.962414e+01 1.035084e+02 moveto -2.962414e+01 9.573438e+01 lineto -2.735507e+01 9.497806e+01 lineto -2.735507e+01 1.027521e+02 lineto -2.962414e+01 1.035084e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.735507e+01 3.278606e+01 moveto -2.735507e+01 2.501206e+01 lineto -2.531809e+01 2.422483e+01 lineto -2.531809e+01 3.199883e+01 lineto -2.735507e+01 3.278606e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -2.735507e+01 3.278606e+01 moveto -2.735507e+01 2.501206e+01 lineto -2.531809e+01 2.422483e+01 lineto -2.531809e+01 3.199883e+01 lineto -2.735507e+01 3.278606e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.735507e+01 4.056006e+01 moveto -2.735507e+01 3.278606e+01 lineto -2.531809e+01 3.199883e+01 lineto -2.531809e+01 3.977283e+01 lineto -2.735507e+01 4.056006e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -2.735507e+01 4.056006e+01 moveto -2.735507e+01 3.278606e+01 lineto -2.531809e+01 3.199883e+01 lineto -2.531809e+01 3.977283e+01 lineto -2.735507e+01 4.056006e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.735507e+01 4.833406e+01 moveto -2.735507e+01 4.056006e+01 lineto -2.531809e+01 3.977283e+01 lineto -2.531809e+01 4.754683e+01 lineto -2.735507e+01 4.833406e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -2.735507e+01 4.833406e+01 moveto -2.735507e+01 4.056006e+01 lineto -2.531809e+01 3.977283e+01 lineto -2.531809e+01 4.754683e+01 lineto -2.735507e+01 4.833406e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.735507e+01 5.610806e+01 moveto -2.735507e+01 4.833406e+01 lineto -2.531809e+01 4.754683e+01 lineto -2.531809e+01 5.532083e+01 lineto -2.735507e+01 5.610806e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -2.735507e+01 5.610806e+01 moveto -2.735507e+01 4.833406e+01 lineto -2.531809e+01 4.754683e+01 lineto -2.531809e+01 5.532083e+01 lineto -2.735507e+01 5.610806e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.735507e+01 6.388206e+01 moveto -2.735507e+01 5.610806e+01 lineto -2.531809e+01 5.532083e+01 lineto -2.531809e+01 6.309483e+01 lineto -2.735507e+01 6.388206e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -2.735507e+01 6.388206e+01 moveto -2.735507e+01 5.610806e+01 lineto -2.531809e+01 5.532083e+01 lineto -2.531809e+01 6.309483e+01 lineto -2.735507e+01 6.388206e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.735507e+01 7.165606e+01 moveto -2.735507e+01 6.388206e+01 lineto -2.531809e+01 6.309483e+01 lineto -2.531809e+01 7.086883e+01 lineto -2.735507e+01 7.165606e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -2.735507e+01 7.165606e+01 moveto -2.735507e+01 6.388206e+01 lineto -2.531809e+01 6.309483e+01 lineto -2.531809e+01 7.086883e+01 lineto -2.735507e+01 7.165606e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.735507e+01 7.943006e+01 moveto -2.735507e+01 7.165606e+01 lineto -2.531809e+01 7.086883e+01 lineto -2.531809e+01 7.864283e+01 lineto -2.735507e+01 7.943006e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -2.735507e+01 7.943006e+01 moveto -2.735507e+01 7.165606e+01 lineto -2.531809e+01 7.086883e+01 lineto -2.531809e+01 7.864283e+01 lineto -2.735507e+01 7.943006e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.735507e+01 8.720406e+01 moveto -2.735507e+01 7.943006e+01 lineto -2.531809e+01 7.864283e+01 lineto -2.531809e+01 8.641683e+01 lineto -2.735507e+01 8.720406e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -2.735507e+01 8.720406e+01 moveto -2.735507e+01 7.943006e+01 lineto -2.531809e+01 7.864283e+01 lineto -2.531809e+01 8.641683e+01 lineto -2.735507e+01 8.720406e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.735507e+01 9.497806e+01 moveto -2.735507e+01 8.720406e+01 lineto -2.531809e+01 8.641683e+01 lineto -2.531809e+01 9.419083e+01 lineto -2.735507e+01 9.497806e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -2.735507e+01 9.497806e+01 moveto -2.735507e+01 8.720406e+01 lineto -2.531809e+01 8.641683e+01 lineto -2.531809e+01 9.419083e+01 lineto -2.735507e+01 9.497806e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.735507e+01 1.027521e+02 moveto -2.735507e+01 9.497806e+01 lineto -2.531809e+01 9.419083e+01 lineto -2.531809e+01 1.019648e+02 lineto -2.735507e+01 1.027521e+02 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -2.735507e+01 1.027521e+02 moveto -2.735507e+01 9.497806e+01 lineto -2.531809e+01 9.419083e+01 lineto -2.531809e+01 1.019648e+02 lineto -2.735507e+01 1.027521e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.531809e+01 3.199883e+01 moveto -2.531809e+01 2.422483e+01 lineto -2.352577e+01 2.341155e+01 lineto -2.352577e+01 3.118555e+01 lineto -2.531809e+01 3.199883e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -2.531809e+01 3.199883e+01 moveto -2.531809e+01 2.422483e+01 lineto -2.352577e+01 2.341155e+01 lineto -2.352577e+01 3.118555e+01 lineto -2.531809e+01 3.199883e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.531809e+01 3.977283e+01 moveto -2.531809e+01 3.199883e+01 lineto -2.352577e+01 3.118555e+01 lineto -2.352577e+01 3.895955e+01 lineto -2.531809e+01 3.977283e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -2.531809e+01 3.977283e+01 moveto -2.531809e+01 3.199883e+01 lineto -2.352577e+01 3.118555e+01 lineto -2.352577e+01 3.895955e+01 lineto -2.531809e+01 3.977283e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.531809e+01 4.754683e+01 moveto -2.531809e+01 3.977283e+01 lineto -2.352577e+01 3.895955e+01 lineto -2.352577e+01 4.673355e+01 lineto -2.531809e+01 4.754683e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -2.531809e+01 4.754683e+01 moveto -2.531809e+01 3.977283e+01 lineto -2.352577e+01 3.895955e+01 lineto -2.352577e+01 4.673355e+01 lineto -2.531809e+01 4.754683e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.531809e+01 5.532083e+01 moveto -2.531809e+01 4.754683e+01 lineto -2.352577e+01 4.673355e+01 lineto -2.352577e+01 5.450755e+01 lineto -2.531809e+01 5.532083e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -2.531809e+01 5.532083e+01 moveto -2.531809e+01 4.754683e+01 lineto -2.352577e+01 4.673355e+01 lineto -2.352577e+01 5.450755e+01 lineto -2.531809e+01 5.532083e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.531809e+01 6.309483e+01 moveto -2.531809e+01 5.532083e+01 lineto -2.352577e+01 5.450755e+01 lineto -2.352577e+01 6.228155e+01 lineto -2.531809e+01 6.309483e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -2.531809e+01 6.309483e+01 moveto -2.531809e+01 5.532083e+01 lineto -2.352577e+01 5.450755e+01 lineto -2.352577e+01 6.228155e+01 lineto -2.531809e+01 6.309483e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.531809e+01 7.086883e+01 moveto -2.531809e+01 6.309483e+01 lineto -2.352577e+01 6.228155e+01 lineto -2.352577e+01 7.005555e+01 lineto -2.531809e+01 7.086883e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -2.531809e+01 7.086883e+01 moveto -2.531809e+01 6.309483e+01 lineto -2.352577e+01 6.228155e+01 lineto -2.352577e+01 7.005555e+01 lineto -2.531809e+01 7.086883e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.531809e+01 7.864283e+01 moveto -2.531809e+01 7.086883e+01 lineto -2.352577e+01 7.005555e+01 lineto -2.352577e+01 7.782955e+01 lineto -2.531809e+01 7.864283e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -2.531809e+01 7.864283e+01 moveto -2.531809e+01 7.086883e+01 lineto -2.352577e+01 7.005555e+01 lineto -2.352577e+01 7.782955e+01 lineto -2.531809e+01 7.864283e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.531809e+01 8.641683e+01 moveto -2.531809e+01 7.864283e+01 lineto -2.352577e+01 7.782955e+01 lineto -2.352577e+01 8.560355e+01 lineto -2.531809e+01 8.641683e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -2.531809e+01 8.641683e+01 moveto -2.531809e+01 7.864283e+01 lineto -2.352577e+01 7.782955e+01 lineto -2.352577e+01 8.560355e+01 lineto -2.531809e+01 8.641683e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.531809e+01 9.419083e+01 moveto -2.531809e+01 8.641683e+01 lineto -2.352577e+01 8.560355e+01 lineto -2.352577e+01 9.337755e+01 lineto -2.531809e+01 9.419083e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -2.531809e+01 9.419083e+01 moveto -2.531809e+01 8.641683e+01 lineto -2.352577e+01 8.560355e+01 lineto -2.352577e+01 9.337755e+01 lineto -2.531809e+01 9.419083e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.531809e+01 1.019648e+02 moveto -2.531809e+01 9.419083e+01 lineto -2.352577e+01 9.337755e+01 lineto -2.352577e+01 1.011515e+02 lineto -2.531809e+01 1.019648e+02 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -2.531809e+01 1.019648e+02 moveto -2.531809e+01 9.419083e+01 lineto -2.352577e+01 9.337755e+01 lineto -2.352577e+01 1.011515e+02 lineto -2.531809e+01 1.019648e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.352577e+01 3.118555e+01 moveto -2.352577e+01 2.341155e+01 lineto -2.198914e+01 2.257724e+01 lineto -2.198914e+01 3.035124e+01 lineto -2.352577e+01 3.118555e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -2.352577e+01 3.118555e+01 moveto -2.352577e+01 2.341155e+01 lineto -2.198914e+01 2.257724e+01 lineto -2.198914e+01 3.035124e+01 lineto -2.352577e+01 3.118555e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.352577e+01 3.895955e+01 moveto -2.352577e+01 3.118555e+01 lineto -2.198914e+01 3.035124e+01 lineto -2.198914e+01 3.812524e+01 lineto -2.352577e+01 3.895955e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -2.352577e+01 3.895955e+01 moveto -2.352577e+01 3.118555e+01 lineto -2.198914e+01 3.035124e+01 lineto -2.198914e+01 3.812524e+01 lineto -2.352577e+01 3.895955e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.352577e+01 4.673355e+01 moveto -2.352577e+01 3.895955e+01 lineto -2.198914e+01 3.812524e+01 lineto -2.198914e+01 4.589924e+01 lineto -2.352577e+01 4.673355e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -2.352577e+01 4.673355e+01 moveto -2.352577e+01 3.895955e+01 lineto -2.198914e+01 3.812524e+01 lineto -2.198914e+01 4.589924e+01 lineto -2.352577e+01 4.673355e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.352577e+01 5.450755e+01 moveto -2.352577e+01 4.673355e+01 lineto -2.198914e+01 4.589924e+01 lineto -2.198914e+01 5.367324e+01 lineto -2.352577e+01 5.450755e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -2.352577e+01 5.450755e+01 moveto -2.352577e+01 4.673355e+01 lineto -2.198914e+01 4.589924e+01 lineto -2.198914e+01 5.367324e+01 lineto -2.352577e+01 5.450755e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.352577e+01 6.228155e+01 moveto -2.352577e+01 5.450755e+01 lineto -2.198914e+01 5.367324e+01 lineto -2.198914e+01 6.144724e+01 lineto -2.352577e+01 6.228155e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -2.352577e+01 6.228155e+01 moveto -2.352577e+01 5.450755e+01 lineto -2.198914e+01 5.367324e+01 lineto -2.198914e+01 6.144724e+01 lineto -2.352577e+01 6.228155e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.352577e+01 7.005555e+01 moveto -2.352577e+01 6.228155e+01 lineto -2.198914e+01 6.144724e+01 lineto -2.198914e+01 6.922124e+01 lineto -2.352577e+01 7.005555e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -2.352577e+01 7.005555e+01 moveto -2.352577e+01 6.228155e+01 lineto -2.198914e+01 6.144724e+01 lineto -2.198914e+01 6.922124e+01 lineto -2.352577e+01 7.005555e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.352577e+01 7.782955e+01 moveto -2.352577e+01 7.005555e+01 lineto -2.198914e+01 6.922124e+01 lineto -2.198914e+01 7.699524e+01 lineto -2.352577e+01 7.782955e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -2.352577e+01 7.782955e+01 moveto -2.352577e+01 7.005555e+01 lineto -2.198914e+01 6.922124e+01 lineto -2.198914e+01 7.699524e+01 lineto -2.352577e+01 7.782955e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.352577e+01 8.560355e+01 moveto -2.352577e+01 7.782955e+01 lineto -2.198914e+01 7.699524e+01 lineto -2.198914e+01 8.476924e+01 lineto -2.352577e+01 8.560355e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -2.352577e+01 8.560355e+01 moveto -2.352577e+01 7.782955e+01 lineto -2.198914e+01 7.699524e+01 lineto -2.198914e+01 8.476924e+01 lineto -2.352577e+01 8.560355e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.352577e+01 9.337755e+01 moveto -2.352577e+01 8.560355e+01 lineto -2.198914e+01 8.476924e+01 lineto -2.198914e+01 9.254324e+01 lineto -2.352577e+01 9.337755e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -2.352577e+01 9.337755e+01 moveto -2.352577e+01 8.560355e+01 lineto -2.198914e+01 8.476924e+01 lineto -2.198914e+01 9.254324e+01 lineto -2.352577e+01 9.337755e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.352577e+01 1.011515e+02 moveto -2.352577e+01 9.337755e+01 lineto -2.198914e+01 9.254324e+01 lineto -2.198914e+01 1.003172e+02 lineto -2.352577e+01 1.011515e+02 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -2.352577e+01 1.011515e+02 moveto -2.352577e+01 9.337755e+01 lineto -2.198914e+01 9.254324e+01 lineto -2.198914e+01 1.003172e+02 lineto -2.352577e+01 1.011515e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.198914e+01 3.035124e+01 moveto -2.198914e+01 2.257724e+01 lineto -2.071769e+01 2.172704e+01 lineto -2.071769e+01 2.950104e+01 lineto -2.198914e+01 3.035124e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -2.198914e+01 3.035124e+01 moveto -2.198914e+01 2.257724e+01 lineto -2.071769e+01 2.172704e+01 lineto -2.071769e+01 2.950104e+01 lineto -2.198914e+01 3.035124e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.198914e+01 3.812524e+01 moveto -2.198914e+01 3.035124e+01 lineto -2.071769e+01 2.950104e+01 lineto -2.071769e+01 3.727504e+01 lineto -2.198914e+01 3.812524e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -2.198914e+01 3.812524e+01 moveto -2.198914e+01 3.035124e+01 lineto -2.071769e+01 2.950104e+01 lineto -2.071769e+01 3.727504e+01 lineto -2.198914e+01 3.812524e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.198914e+01 4.589924e+01 moveto -2.198914e+01 3.812524e+01 lineto -2.071769e+01 3.727504e+01 lineto -2.071769e+01 4.504904e+01 lineto -2.198914e+01 4.589924e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -2.198914e+01 4.589924e+01 moveto -2.198914e+01 3.812524e+01 lineto -2.071769e+01 3.727504e+01 lineto -2.071769e+01 4.504904e+01 lineto -2.198914e+01 4.589924e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.198914e+01 5.367324e+01 moveto -2.198914e+01 4.589924e+01 lineto -2.071769e+01 4.504904e+01 lineto -2.071769e+01 5.282304e+01 lineto -2.198914e+01 5.367324e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -2.198914e+01 5.367324e+01 moveto -2.198914e+01 4.589924e+01 lineto -2.071769e+01 4.504904e+01 lineto -2.071769e+01 5.282304e+01 lineto -2.198914e+01 5.367324e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.198914e+01 6.144724e+01 moveto -2.198914e+01 5.367324e+01 lineto -2.071769e+01 5.282304e+01 lineto -2.071769e+01 6.059704e+01 lineto -2.198914e+01 6.144724e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -2.198914e+01 6.144724e+01 moveto -2.198914e+01 5.367324e+01 lineto -2.071769e+01 5.282304e+01 lineto -2.071769e+01 6.059704e+01 lineto -2.198914e+01 6.144724e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.198914e+01 6.922124e+01 moveto -2.198914e+01 6.144724e+01 lineto -2.071769e+01 6.059704e+01 lineto -2.071769e+01 6.837104e+01 lineto -2.198914e+01 6.922124e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -2.198914e+01 6.922124e+01 moveto -2.198914e+01 6.144724e+01 lineto -2.071769e+01 6.059704e+01 lineto -2.071769e+01 6.837104e+01 lineto -2.198914e+01 6.922124e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.198914e+01 7.699524e+01 moveto -2.198914e+01 6.922124e+01 lineto -2.071769e+01 6.837104e+01 lineto -2.071769e+01 7.614504e+01 lineto -2.198914e+01 7.699524e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -2.198914e+01 7.699524e+01 moveto -2.198914e+01 6.922124e+01 lineto -2.071769e+01 6.837104e+01 lineto -2.071769e+01 7.614504e+01 lineto -2.198914e+01 7.699524e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.198914e+01 8.476924e+01 moveto -2.198914e+01 7.699524e+01 lineto -2.071769e+01 7.614504e+01 lineto -2.071769e+01 8.391904e+01 lineto -2.198914e+01 8.476924e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -2.198914e+01 8.476924e+01 moveto -2.198914e+01 7.699524e+01 lineto -2.071769e+01 7.614504e+01 lineto -2.071769e+01 8.391904e+01 lineto -2.198914e+01 8.476924e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.198914e+01 9.254324e+01 moveto -2.198914e+01 8.476924e+01 lineto -2.071769e+01 8.391904e+01 lineto -2.071769e+01 9.169304e+01 lineto -2.198914e+01 9.254324e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -2.198914e+01 9.254324e+01 moveto -2.198914e+01 8.476924e+01 lineto -2.071769e+01 8.391904e+01 lineto -2.071769e+01 9.169304e+01 lineto -2.198914e+01 9.254324e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.198914e+01 1.003172e+02 moveto -2.198914e+01 9.254324e+01 lineto -2.071769e+01 9.169304e+01 lineto -2.071769e+01 9.946704e+01 lineto -2.198914e+01 1.003172e+02 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -2.198914e+01 1.003172e+02 moveto -2.198914e+01 9.254324e+01 lineto -2.071769e+01 9.169304e+01 lineto -2.071769e+01 9.946704e+01 lineto -2.198914e+01 1.003172e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.071769e+01 2.950104e+01 moveto -2.071769e+01 2.172704e+01 lineto -1.971926e+01 2.086619e+01 lineto -1.971926e+01 2.864019e+01 lineto -2.071769e+01 2.950104e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -2.071769e+01 2.950104e+01 moveto -2.071769e+01 2.172704e+01 lineto -1.971926e+01 2.086619e+01 lineto -1.971926e+01 2.864019e+01 lineto -2.071769e+01 2.950104e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.071769e+01 3.727504e+01 moveto -2.071769e+01 2.950104e+01 lineto -1.971926e+01 2.864019e+01 lineto -1.971926e+01 3.641419e+01 lineto -2.071769e+01 3.727504e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -2.071769e+01 3.727504e+01 moveto -2.071769e+01 2.950104e+01 lineto -1.971926e+01 2.864019e+01 lineto -1.971926e+01 3.641419e+01 lineto -2.071769e+01 3.727504e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.071769e+01 4.504904e+01 moveto -2.071769e+01 3.727504e+01 lineto -1.971926e+01 3.641419e+01 lineto -1.971926e+01 4.418819e+01 lineto -2.071769e+01 4.504904e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -2.071769e+01 4.504904e+01 moveto -2.071769e+01 3.727504e+01 lineto -1.971926e+01 3.641419e+01 lineto -1.971926e+01 4.418819e+01 lineto -2.071769e+01 4.504904e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.071769e+01 5.282304e+01 moveto -2.071769e+01 4.504904e+01 lineto -1.971926e+01 4.418819e+01 lineto -1.971926e+01 5.196219e+01 lineto -2.071769e+01 5.282304e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -2.071769e+01 5.282304e+01 moveto -2.071769e+01 4.504904e+01 lineto -1.971926e+01 4.418819e+01 lineto -1.971926e+01 5.196219e+01 lineto -2.071769e+01 5.282304e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.071769e+01 6.059704e+01 moveto -2.071769e+01 5.282304e+01 lineto -1.971926e+01 5.196219e+01 lineto -1.971926e+01 5.973619e+01 lineto -2.071769e+01 6.059704e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -2.071769e+01 6.059704e+01 moveto -2.071769e+01 5.282304e+01 lineto -1.971926e+01 5.196219e+01 lineto -1.971926e+01 5.973619e+01 lineto -2.071769e+01 6.059704e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.071769e+01 6.837104e+01 moveto -2.071769e+01 6.059704e+01 lineto -1.971926e+01 5.973619e+01 lineto -1.971926e+01 6.751019e+01 lineto -2.071769e+01 6.837104e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -2.071769e+01 6.837104e+01 moveto -2.071769e+01 6.059704e+01 lineto -1.971926e+01 5.973619e+01 lineto -1.971926e+01 6.751019e+01 lineto -2.071769e+01 6.837104e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.071769e+01 7.614504e+01 moveto -2.071769e+01 6.837104e+01 lineto -1.971926e+01 6.751019e+01 lineto -1.971926e+01 7.528419e+01 lineto -2.071769e+01 7.614504e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -2.071769e+01 7.614504e+01 moveto -2.071769e+01 6.837104e+01 lineto -1.971926e+01 6.751019e+01 lineto -1.971926e+01 7.528419e+01 lineto -2.071769e+01 7.614504e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.071769e+01 8.391904e+01 moveto -2.071769e+01 7.614504e+01 lineto -1.971926e+01 7.528419e+01 lineto -1.971926e+01 8.305819e+01 lineto -2.071769e+01 8.391904e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -2.071769e+01 8.391904e+01 moveto -2.071769e+01 7.614504e+01 lineto -1.971926e+01 7.528419e+01 lineto -1.971926e+01 8.305819e+01 lineto -2.071769e+01 8.391904e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.071769e+01 9.169304e+01 moveto -2.071769e+01 8.391904e+01 lineto -1.971926e+01 8.305819e+01 lineto -1.971926e+01 9.083219e+01 lineto -2.071769e+01 9.169304e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -2.071769e+01 9.169304e+01 moveto -2.071769e+01 8.391904e+01 lineto -1.971926e+01 8.305819e+01 lineto -1.971926e+01 9.083219e+01 lineto -2.071769e+01 9.169304e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.071769e+01 9.946704e+01 moveto -2.071769e+01 9.169304e+01 lineto -1.971926e+01 9.083219e+01 lineto -1.971926e+01 9.860619e+01 lineto -2.071769e+01 9.946704e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -2.071769e+01 9.946704e+01 moveto -2.071769e+01 9.169304e+01 lineto -1.971926e+01 9.083219e+01 lineto -1.971926e+01 9.860619e+01 lineto -2.071769e+01 9.946704e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.971926e+01 2.864019e+01 moveto -1.971926e+01 2.086619e+01 lineto -1.9e+01 2.0e+01 lineto -1.9e+01 2.7774e+01 lineto -1.971926e+01 2.864019e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -1.971926e+01 2.864019e+01 moveto -1.971926e+01 2.086619e+01 lineto -1.9e+01 2.0e+01 lineto -1.9e+01 2.7774e+01 lineto -1.971926e+01 2.864019e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.971926e+01 3.641419e+01 moveto -1.971926e+01 2.864019e+01 lineto -1.9e+01 2.7774e+01 lineto -1.9e+01 3.5548e+01 lineto -1.971926e+01 3.641419e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -1.971926e+01 3.641419e+01 moveto -1.971926e+01 2.864019e+01 lineto -1.9e+01 2.7774e+01 lineto -1.9e+01 3.5548e+01 lineto -1.971926e+01 3.641419e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.971926e+01 4.418819e+01 moveto -1.971926e+01 3.641419e+01 lineto -1.9e+01 3.5548e+01 lineto -1.9e+01 4.3322e+01 lineto -1.971926e+01 4.418819e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -1.971926e+01 4.418819e+01 moveto -1.971926e+01 3.641419e+01 lineto -1.9e+01 3.5548e+01 lineto -1.9e+01 4.3322e+01 lineto -1.971926e+01 4.418819e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.971926e+01 5.196219e+01 moveto -1.971926e+01 4.418819e+01 lineto -1.9e+01 4.3322e+01 lineto -1.9e+01 5.1096e+01 lineto -1.971926e+01 5.196219e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -1.971926e+01 5.196219e+01 moveto -1.971926e+01 4.418819e+01 lineto -1.9e+01 4.3322e+01 lineto -1.9e+01 5.1096e+01 lineto -1.971926e+01 5.196219e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.971926e+01 5.973619e+01 moveto -1.971926e+01 5.196219e+01 lineto -1.9e+01 5.1096e+01 lineto -1.9e+01 5.887e+01 lineto -1.971926e+01 5.973619e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -1.971926e+01 5.973619e+01 moveto -1.971926e+01 5.196219e+01 lineto -1.9e+01 5.1096e+01 lineto -1.9e+01 5.887e+01 lineto -1.971926e+01 5.973619e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.971926e+01 6.751019e+01 moveto -1.971926e+01 5.973619e+01 lineto -1.9e+01 5.887e+01 lineto -1.9e+01 6.6644e+01 lineto -1.971926e+01 6.751019e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -1.971926e+01 6.751019e+01 moveto -1.971926e+01 5.973619e+01 lineto -1.9e+01 5.887e+01 lineto -1.9e+01 6.6644e+01 lineto -1.971926e+01 6.751019e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.971926e+01 7.528419e+01 moveto -1.971926e+01 6.751019e+01 lineto -1.9e+01 6.6644e+01 lineto -1.9e+01 7.4418e+01 lineto -1.971926e+01 7.528419e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -1.971926e+01 7.528419e+01 moveto -1.971926e+01 6.751019e+01 lineto -1.9e+01 6.6644e+01 lineto -1.9e+01 7.4418e+01 lineto -1.971926e+01 7.528419e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.971926e+01 8.305819e+01 moveto -1.971926e+01 7.528419e+01 lineto -1.9e+01 7.4418e+01 lineto -1.9e+01 8.2192e+01 lineto -1.971926e+01 8.305819e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -1.971926e+01 8.305819e+01 moveto -1.971926e+01 7.528419e+01 lineto -1.9e+01 7.4418e+01 lineto -1.9e+01 8.2192e+01 lineto -1.971926e+01 8.305819e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.971926e+01 9.083219e+01 moveto -1.971926e+01 8.305819e+01 lineto -1.9e+01 8.2192e+01 lineto -1.9e+01 8.9966e+01 lineto -1.971926e+01 9.083219e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -1.971926e+01 9.083219e+01 moveto -1.971926e+01 8.305819e+01 lineto -1.9e+01 8.2192e+01 lineto -1.9e+01 8.9966e+01 lineto -1.971926e+01 9.083219e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.971926e+01 9.860619e+01 moveto -1.971926e+01 9.083219e+01 lineto -1.9e+01 8.9966e+01 lineto -1.9e+01 9.774e+01 lineto -1.971926e+01 9.860619e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -1.971926e+01 9.860619e+01 moveto -1.971926e+01 9.083219e+01 lineto -1.9e+01 8.9966e+01 lineto -1.9e+01 9.774e+01 lineto -1.971926e+01 9.860619e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.9e+01 2.7774e+01 moveto -1.9e+01 2.0e+01 lineto -1.856434e+01 1.913381e+01 lineto -1.856434e+01 2.690781e+01 lineto -1.9e+01 2.7774e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -1.9e+01 2.7774e+01 moveto -1.9e+01 2.0e+01 lineto -1.856434e+01 1.913381e+01 lineto -1.856434e+01 2.690781e+01 lineto -1.9e+01 2.7774e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.9e+01 3.5548e+01 moveto -1.9e+01 2.7774e+01 lineto -1.856434e+01 2.690781e+01 lineto -1.856434e+01 3.468181e+01 lineto -1.9e+01 3.5548e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -1.9e+01 3.5548e+01 moveto -1.9e+01 2.7774e+01 lineto -1.856434e+01 2.690781e+01 lineto -1.856434e+01 3.468181e+01 lineto -1.9e+01 3.5548e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.9e+01 4.3322e+01 moveto -1.9e+01 3.5548e+01 lineto -1.856434e+01 3.468181e+01 lineto -1.856434e+01 4.245581e+01 lineto -1.9e+01 4.3322e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -1.9e+01 4.3322e+01 moveto -1.9e+01 3.5548e+01 lineto -1.856434e+01 3.468181e+01 lineto -1.856434e+01 4.245581e+01 lineto -1.9e+01 4.3322e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.9e+01 5.1096e+01 moveto -1.9e+01 4.3322e+01 lineto -1.856434e+01 4.245581e+01 lineto -1.856434e+01 5.022981e+01 lineto -1.9e+01 5.1096e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -1.9e+01 5.1096e+01 moveto -1.9e+01 4.3322e+01 lineto -1.856434e+01 4.245581e+01 lineto -1.856434e+01 5.022981e+01 lineto -1.9e+01 5.1096e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.9e+01 5.887e+01 moveto -1.9e+01 5.1096e+01 lineto -1.856434e+01 5.022981e+01 lineto -1.856434e+01 5.800381e+01 lineto -1.9e+01 5.887e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -1.9e+01 5.887e+01 moveto -1.9e+01 5.1096e+01 lineto -1.856434e+01 5.022981e+01 lineto -1.856434e+01 5.800381e+01 lineto -1.9e+01 5.887e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.9e+01 6.6644e+01 moveto -1.9e+01 5.887e+01 lineto -1.856434e+01 5.800381e+01 lineto -1.856434e+01 6.577781e+01 lineto -1.9e+01 6.6644e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -1.9e+01 6.6644e+01 moveto -1.9e+01 5.887e+01 lineto -1.856434e+01 5.800381e+01 lineto -1.856434e+01 6.577781e+01 lineto -1.9e+01 6.6644e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.9e+01 7.4418e+01 moveto -1.9e+01 6.6644e+01 lineto -1.856434e+01 6.577781e+01 lineto -1.856434e+01 7.355181e+01 lineto -1.9e+01 7.4418e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -1.9e+01 7.4418e+01 moveto -1.9e+01 6.6644e+01 lineto -1.856434e+01 6.577781e+01 lineto -1.856434e+01 7.355181e+01 lineto -1.9e+01 7.4418e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.9e+01 8.2192e+01 moveto -1.9e+01 7.4418e+01 lineto -1.856434e+01 7.355181e+01 lineto -1.856434e+01 8.132581e+01 lineto -1.9e+01 8.2192e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -1.9e+01 8.2192e+01 moveto -1.9e+01 7.4418e+01 lineto -1.856434e+01 7.355181e+01 lineto -1.856434e+01 8.132581e+01 lineto -1.9e+01 8.2192e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.9e+01 8.9966e+01 moveto -1.9e+01 8.2192e+01 lineto -1.856434e+01 8.132581e+01 lineto -1.856434e+01 8.909981e+01 lineto -1.9e+01 8.9966e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -1.9e+01 8.9966e+01 moveto -1.9e+01 8.2192e+01 lineto -1.856434e+01 8.132581e+01 lineto -1.856434e+01 8.909981e+01 lineto -1.9e+01 8.9966e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.9e+01 9.774e+01 moveto -1.9e+01 8.9966e+01 lineto -1.856434e+01 8.909981e+01 lineto -1.856434e+01 9.687381e+01 lineto -1.9e+01 9.774e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -1.9e+01 9.774e+01 moveto -1.9e+01 8.9966e+01 lineto -1.856434e+01 8.909981e+01 lineto -1.856434e+01 9.687381e+01 lineto -1.9e+01 9.774e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.856434e+01 2.690781e+01 moveto -1.856434e+01 1.913381e+01 lineto -1.841498e+01 1.827296e+01 lineto -1.841498e+01 2.604696e+01 lineto -1.856434e+01 2.690781e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -1.856434e+01 2.690781e+01 moveto -1.856434e+01 1.913381e+01 lineto -1.841498e+01 1.827296e+01 lineto -1.841498e+01 2.604696e+01 lineto -1.856434e+01 2.690781e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.856434e+01 3.468181e+01 moveto -1.856434e+01 2.690781e+01 lineto -1.841498e+01 2.604696e+01 lineto -1.841498e+01 3.382096e+01 lineto -1.856434e+01 3.468181e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -1.856434e+01 3.468181e+01 moveto -1.856434e+01 2.690781e+01 lineto -1.841498e+01 2.604696e+01 lineto -1.841498e+01 3.382096e+01 lineto -1.856434e+01 3.468181e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.856434e+01 4.245581e+01 moveto -1.856434e+01 3.468181e+01 lineto -1.841498e+01 3.382096e+01 lineto -1.841498e+01 4.159496e+01 lineto -1.856434e+01 4.245581e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -1.856434e+01 4.245581e+01 moveto -1.856434e+01 3.468181e+01 lineto -1.841498e+01 3.382096e+01 lineto -1.841498e+01 4.159496e+01 lineto -1.856434e+01 4.245581e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.856434e+01 5.022981e+01 moveto -1.856434e+01 4.245581e+01 lineto -1.841498e+01 4.159496e+01 lineto -1.841498e+01 4.936896e+01 lineto -1.856434e+01 5.022981e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -1.856434e+01 5.022981e+01 moveto -1.856434e+01 4.245581e+01 lineto -1.841498e+01 4.159496e+01 lineto -1.841498e+01 4.936896e+01 lineto -1.856434e+01 5.022981e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.856434e+01 5.800381e+01 moveto -1.856434e+01 5.022981e+01 lineto -1.841498e+01 4.936896e+01 lineto -1.841498e+01 5.714296e+01 lineto -1.856434e+01 5.800381e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -1.856434e+01 5.800381e+01 moveto -1.856434e+01 5.022981e+01 lineto -1.841498e+01 4.936896e+01 lineto -1.841498e+01 5.714296e+01 lineto -1.856434e+01 5.800381e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.856434e+01 6.577781e+01 moveto -1.856434e+01 5.800381e+01 lineto -1.841498e+01 5.714296e+01 lineto -1.841498e+01 6.491696e+01 lineto -1.856434e+01 6.577781e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -1.856434e+01 6.577781e+01 moveto -1.856434e+01 5.800381e+01 lineto -1.841498e+01 5.714296e+01 lineto -1.841498e+01 6.491696e+01 lineto -1.856434e+01 6.577781e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.856434e+01 7.355181e+01 moveto -1.856434e+01 6.577781e+01 lineto -1.841498e+01 6.491696e+01 lineto -1.841498e+01 7.269096e+01 lineto -1.856434e+01 7.355181e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -1.856434e+01 7.355181e+01 moveto -1.856434e+01 6.577781e+01 lineto -1.841498e+01 6.491696e+01 lineto -1.841498e+01 7.269096e+01 lineto -1.856434e+01 7.355181e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.856434e+01 8.132581e+01 moveto -1.856434e+01 7.355181e+01 lineto -1.841498e+01 7.269096e+01 lineto -1.841498e+01 8.046496e+01 lineto -1.856434e+01 8.132581e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -1.856434e+01 8.132581e+01 moveto -1.856434e+01 7.355181e+01 lineto -1.841498e+01 7.269096e+01 lineto -1.841498e+01 8.046496e+01 lineto -1.856434e+01 8.132581e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.856434e+01 8.909981e+01 moveto -1.856434e+01 8.132581e+01 lineto -1.841498e+01 8.046496e+01 lineto -1.841498e+01 8.823896e+01 lineto -1.856434e+01 8.909981e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -1.856434e+01 8.909981e+01 moveto -1.856434e+01 8.132581e+01 lineto -1.841498e+01 8.046496e+01 lineto -1.841498e+01 8.823896e+01 lineto -1.856434e+01 8.909981e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.856434e+01 9.687381e+01 moveto -1.856434e+01 8.909981e+01 lineto -1.841498e+01 8.823896e+01 lineto -1.841498e+01 9.601296e+01 lineto -1.856434e+01 9.687381e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -1.856434e+01 9.687381e+01 moveto -1.856434e+01 8.909981e+01 lineto -1.841498e+01 8.823896e+01 lineto -1.841498e+01 9.601296e+01 lineto -1.856434e+01 9.687381e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -1 setlinewidth -newpath -1.0e-01 setlinewidth -newpath -5.764e+01 1.6734e+01 moveto -5.764e+01 8.96e+00 lineto -6.127181e+01 8.994033e+00 lineto -6.127181e+01 1.676803e+01 lineto -5.764e+01 1.6734e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -5.764e+01 2.4508e+01 moveto -5.764e+01 1.6734e+01 lineto -6.127181e+01 1.676803e+01 lineto -6.127181e+01 2.454203e+01 lineto -5.764e+01 2.4508e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -5.764e+01 3.2282e+01 moveto -5.764e+01 2.4508e+01 lineto -6.127181e+01 2.454203e+01 lineto -6.127181e+01 3.231603e+01 lineto -5.764e+01 3.2282e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -5.764e+01 4.0056e+01 moveto -5.764e+01 3.2282e+01 lineto -6.127181e+01 3.231603e+01 lineto -6.127181e+01 4.009003e+01 lineto -5.764e+01 4.0056e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -5.764e+01 4.783e+01 moveto -5.764e+01 4.0056e+01 lineto -6.127181e+01 4.009003e+01 lineto -6.127181e+01 4.786403e+01 lineto -5.764e+01 4.783e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -5.764e+01 5.5604e+01 moveto -5.764e+01 4.783e+01 lineto -6.127181e+01 4.786403e+01 lineto -6.127181e+01 5.563803e+01 lineto -5.764e+01 5.5604e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -5.764e+01 6.3378e+01 moveto -5.764e+01 5.5604e+01 lineto -6.127181e+01 5.563803e+01 lineto -6.127181e+01 6.341203e+01 lineto -5.764e+01 6.3378e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -5.764e+01 7.1152e+01 moveto -5.764e+01 6.3378e+01 lineto -6.127181e+01 6.341203e+01 lineto -6.127181e+01 7.118603e+01 lineto -5.764e+01 7.1152e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -5.764e+01 7.8926e+01 moveto -5.764e+01 7.1152e+01 lineto -6.127181e+01 7.118603e+01 lineto -6.127181e+01 7.896003e+01 lineto -5.764e+01 7.8926e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -5.764e+01 8.67e+01 moveto -5.764e+01 7.8926e+01 lineto -6.127181e+01 7.896003e+01 lineto -6.127181e+01 8.673403e+01 lineto -5.764e+01 8.67e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -6.127181e+01 1.676803e+01 moveto -6.127181e+01 8.994033e+00 lineto -6.49266e+01 9.095921e+00 lineto -6.49266e+01 1.686992e+01 lineto -6.127181e+01 1.676803e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -6.127181e+01 2.454203e+01 moveto -6.127181e+01 1.676803e+01 lineto -6.49266e+01 1.686992e+01 lineto -6.49266e+01 2.464392e+01 lineto -6.127181e+01 2.454203e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -6.127181e+01 3.231603e+01 moveto -6.127181e+01 2.454203e+01 lineto -6.49266e+01 2.464392e+01 lineto -6.49266e+01 3.241792e+01 lineto -6.127181e+01 3.231603e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -6.127181e+01 4.009003e+01 moveto -6.127181e+01 3.231603e+01 lineto -6.49266e+01 3.241792e+01 lineto -6.49266e+01 4.019192e+01 lineto -6.127181e+01 4.009003e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -6.127181e+01 4.786403e+01 moveto -6.127181e+01 4.009003e+01 lineto -6.49266e+01 4.019192e+01 lineto -6.49266e+01 4.796592e+01 lineto -6.127181e+01 4.786403e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -6.127181e+01 5.563803e+01 moveto -6.127181e+01 4.786403e+01 lineto -6.49266e+01 4.796592e+01 lineto -6.49266e+01 5.573992e+01 lineto -6.127181e+01 5.563803e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -6.127181e+01 6.341203e+01 moveto -6.127181e+01 5.563803e+01 lineto -6.49266e+01 5.573992e+01 lineto -6.49266e+01 6.351392e+01 lineto -6.127181e+01 6.341203e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -6.127181e+01 7.118603e+01 moveto -6.127181e+01 6.341203e+01 lineto -6.49266e+01 6.351392e+01 lineto -6.49266e+01 7.128792e+01 lineto -6.127181e+01 7.118603e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -6.127181e+01 7.896003e+01 moveto -6.127181e+01 7.118603e+01 lineto -6.49266e+01 7.128792e+01 lineto -6.49266e+01 7.906192e+01 lineto -6.127181e+01 7.896003e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -6.127181e+01 8.673403e+01 moveto -6.127181e+01 7.896003e+01 lineto -6.49266e+01 7.906192e+01 lineto -6.49266e+01 8.683592e+01 lineto -6.127181e+01 8.673403e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -6.49266e+01 1.686992e+01 moveto -6.49266e+01 9.095921e+00 lineto -6.858184e+01 9.265036e+00 lineto -6.858184e+01 1.703904e+01 lineto -6.49266e+01 1.686992e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -6.49266e+01 2.464392e+01 moveto -6.49266e+01 1.686992e+01 lineto -6.858184e+01 1.703904e+01 lineto -6.858184e+01 2.481304e+01 lineto -6.49266e+01 2.464392e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -6.49266e+01 3.241792e+01 moveto -6.49266e+01 2.464392e+01 lineto -6.858184e+01 2.481304e+01 lineto -6.858184e+01 3.258704e+01 lineto -6.49266e+01 3.241792e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -6.49266e+01 4.019192e+01 moveto -6.49266e+01 3.241792e+01 lineto -6.858184e+01 3.258704e+01 lineto -6.858184e+01 4.036104e+01 lineto -6.49266e+01 4.019192e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -6.49266e+01 4.796592e+01 moveto -6.49266e+01 4.019192e+01 lineto -6.858184e+01 4.036104e+01 lineto -6.858184e+01 4.813504e+01 lineto -6.49266e+01 4.796592e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -6.49266e+01 5.573992e+01 moveto -6.49266e+01 4.796592e+01 lineto -6.858184e+01 4.813504e+01 lineto -6.858184e+01 5.590904e+01 lineto -6.49266e+01 5.573992e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -6.49266e+01 6.351392e+01 moveto -6.49266e+01 5.573992e+01 lineto -6.858184e+01 5.590904e+01 lineto -6.858184e+01 6.368304e+01 lineto -6.49266e+01 6.351392e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -6.49266e+01 7.128792e+01 moveto -6.49266e+01 6.351392e+01 lineto -6.858184e+01 6.368304e+01 lineto -6.858184e+01 7.145704e+01 lineto -6.49266e+01 7.128792e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -6.49266e+01 7.906192e+01 moveto -6.49266e+01 7.128792e+01 lineto -6.858184e+01 7.145704e+01 lineto -6.858184e+01 7.923104e+01 lineto -6.49266e+01 7.906192e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -6.49266e+01 8.683592e+01 moveto -6.49266e+01 7.906192e+01 lineto -6.858184e+01 7.923104e+01 lineto -6.858184e+01 8.700504e+01 lineto -6.49266e+01 8.683592e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -6.858184e+01 1.703904e+01 moveto -6.858184e+01 9.265036e+00 lineto -7.221501e+01 9.500336e+00 lineto -7.221501e+01 1.727434e+01 lineto -6.858184e+01 1.703904e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -6.858184e+01 2.481304e+01 moveto -6.858184e+01 1.703904e+01 lineto -7.221501e+01 1.727434e+01 lineto -7.221501e+01 2.504834e+01 lineto -6.858184e+01 2.481304e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -6.858184e+01 3.258704e+01 moveto -6.858184e+01 2.481304e+01 lineto -7.221501e+01 2.504834e+01 lineto -7.221501e+01 3.282234e+01 lineto -6.858184e+01 3.258704e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -6.858184e+01 4.036104e+01 moveto -6.858184e+01 3.258704e+01 lineto -7.221501e+01 3.282234e+01 lineto -7.221501e+01 4.059634e+01 lineto -6.858184e+01 4.036104e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -6.858184e+01 4.813504e+01 moveto -6.858184e+01 4.036104e+01 lineto -7.221501e+01 4.059634e+01 lineto -7.221501e+01 4.837034e+01 lineto -6.858184e+01 4.813504e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -6.858184e+01 5.590904e+01 moveto -6.858184e+01 4.813504e+01 lineto -7.221501e+01 4.837034e+01 lineto -7.221501e+01 5.614434e+01 lineto -6.858184e+01 5.590904e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -6.858184e+01 6.368304e+01 moveto -6.858184e+01 5.590904e+01 lineto -7.221501e+01 5.614434e+01 lineto -7.221501e+01 6.391834e+01 lineto -6.858184e+01 6.368304e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -6.858184e+01 7.145704e+01 moveto -6.858184e+01 6.368304e+01 lineto -7.221501e+01 6.391834e+01 lineto -7.221501e+01 7.169234e+01 lineto -6.858184e+01 7.145704e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -6.858184e+01 7.923104e+01 moveto -6.858184e+01 7.145704e+01 lineto -7.221501e+01 7.169234e+01 lineto -7.221501e+01 7.946634e+01 lineto -6.858184e+01 7.923104e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -6.858184e+01 8.700504e+01 moveto -6.858184e+01 7.923104e+01 lineto -7.221501e+01 7.946634e+01 lineto -7.221501e+01 8.724034e+01 lineto -6.858184e+01 8.700504e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -7.221501e+01 1.727434e+01 moveto -7.221501e+01 9.500336e+00 lineto -7.580368e+01 9.80037e+00 lineto -7.580368e+01 1.757437e+01 lineto -7.221501e+01 1.727434e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -7.221501e+01 2.504834e+01 moveto -7.221501e+01 1.727434e+01 lineto -7.580368e+01 1.757437e+01 lineto -7.580368e+01 2.534837e+01 lineto -7.221501e+01 2.504834e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -7.221501e+01 3.282234e+01 moveto -7.221501e+01 2.504834e+01 lineto -7.580368e+01 2.534837e+01 lineto -7.580368e+01 3.312237e+01 lineto -7.221501e+01 3.282234e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -7.221501e+01 4.059634e+01 moveto -7.221501e+01 3.282234e+01 lineto -7.580368e+01 3.312237e+01 lineto -7.580368e+01 4.089637e+01 lineto -7.221501e+01 4.059634e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -7.221501e+01 4.837034e+01 moveto -7.221501e+01 4.059634e+01 lineto -7.580368e+01 4.089637e+01 lineto -7.580368e+01 4.867037e+01 lineto -7.221501e+01 4.837034e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -7.221501e+01 5.614434e+01 moveto -7.221501e+01 4.837034e+01 lineto -7.580368e+01 4.867037e+01 lineto -7.580368e+01 5.644437e+01 lineto -7.221501e+01 5.614434e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -7.221501e+01 6.391834e+01 moveto -7.221501e+01 5.614434e+01 lineto -7.580368e+01 5.644437e+01 lineto -7.580368e+01 6.421837e+01 lineto -7.221501e+01 6.391834e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -7.221501e+01 7.169234e+01 moveto -7.221501e+01 6.391834e+01 lineto -7.580368e+01 6.421837e+01 lineto -7.580368e+01 7.199237e+01 lineto -7.221501e+01 7.169234e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -7.221501e+01 7.946634e+01 moveto -7.221501e+01 7.169234e+01 lineto -7.580368e+01 7.199237e+01 lineto -7.580368e+01 7.976637e+01 lineto -7.221501e+01 7.946634e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -7.221501e+01 8.724034e+01 moveto -7.221501e+01 7.946634e+01 lineto -7.580368e+01 7.976637e+01 lineto -7.580368e+01 8.754037e+01 lineto -7.221501e+01 8.724034e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -7.580368e+01 1.757437e+01 moveto -7.580368e+01 9.80037e+00 lineto -7.932575e+01 1.016329e+01 lineto -7.932575e+01 1.793729e+01 lineto -7.580368e+01 1.757437e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -7.580368e+01 2.534837e+01 moveto -7.580368e+01 1.757437e+01 lineto -7.932575e+01 1.793729e+01 lineto -7.932575e+01 2.571129e+01 lineto -7.580368e+01 2.534837e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -7.580368e+01 3.312237e+01 moveto -7.580368e+01 2.534837e+01 lineto -7.932575e+01 2.571129e+01 lineto -7.932575e+01 3.348529e+01 lineto -7.580368e+01 3.312237e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -7.580368e+01 4.089637e+01 moveto -7.580368e+01 3.312237e+01 lineto -7.932575e+01 3.348529e+01 lineto -7.932575e+01 4.125929e+01 lineto -7.580368e+01 4.089637e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -7.580368e+01 4.867037e+01 moveto -7.580368e+01 4.089637e+01 lineto -7.932575e+01 4.125929e+01 lineto -7.932575e+01 4.903329e+01 lineto -7.580368e+01 4.867037e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -7.580368e+01 5.644437e+01 moveto -7.580368e+01 4.867037e+01 lineto -7.932575e+01 4.903329e+01 lineto -7.932575e+01 5.680729e+01 lineto -7.580368e+01 5.644437e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -7.580368e+01 6.421837e+01 moveto -7.580368e+01 5.644437e+01 lineto -7.932575e+01 5.680729e+01 lineto -7.932575e+01 6.458129e+01 lineto -7.580368e+01 6.421837e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -7.580368e+01 7.199237e+01 moveto -7.580368e+01 6.421837e+01 lineto -7.932575e+01 6.458129e+01 lineto -7.932575e+01 7.235529e+01 lineto -7.580368e+01 7.199237e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -7.580368e+01 7.976637e+01 moveto -7.580368e+01 7.199237e+01 lineto -7.932575e+01 7.235529e+01 lineto -7.932575e+01 8.012929e+01 lineto -7.580368e+01 7.976637e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -7.580368e+01 8.754037e+01 moveto -7.580368e+01 7.976637e+01 lineto -7.932575e+01 8.012929e+01 lineto -7.932575e+01 8.790329e+01 lineto -7.580368e+01 8.754037e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -7.932575e+01 1.793729e+01 moveto -7.932575e+01 1.016329e+01 lineto -8.27595e+01 1.058685e+01 lineto -8.27595e+01 1.836085e+01 lineto -7.932575e+01 1.793729e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -7.932575e+01 2.571129e+01 moveto -7.932575e+01 1.793729e+01 lineto -8.27595e+01 1.836085e+01 lineto -8.27595e+01 2.613485e+01 lineto -7.932575e+01 2.571129e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -7.932575e+01 3.348529e+01 moveto -7.932575e+01 2.571129e+01 lineto -8.27595e+01 2.613485e+01 lineto -8.27595e+01 3.390885e+01 lineto -7.932575e+01 3.348529e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -7.932575e+01 4.125929e+01 moveto -7.932575e+01 3.348529e+01 lineto -8.27595e+01 3.390885e+01 lineto -8.27595e+01 4.168285e+01 lineto -7.932575e+01 4.125929e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -7.932575e+01 4.903329e+01 moveto -7.932575e+01 4.125929e+01 lineto -8.27595e+01 4.168285e+01 lineto -8.27595e+01 4.945685e+01 lineto -7.932575e+01 4.903329e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -7.932575e+01 5.680729e+01 moveto -7.932575e+01 4.903329e+01 lineto -8.27595e+01 4.945685e+01 lineto -8.27595e+01 5.723085e+01 lineto -7.932575e+01 5.680729e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -7.932575e+01 6.458129e+01 moveto -7.932575e+01 5.680729e+01 lineto -8.27595e+01 5.723085e+01 lineto -8.27595e+01 6.500485e+01 lineto -7.932575e+01 6.458129e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -7.932575e+01 7.235529e+01 moveto -7.932575e+01 6.458129e+01 lineto -8.27595e+01 6.500485e+01 lineto -8.27595e+01 7.277885e+01 lineto -7.932575e+01 7.235529e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -7.932575e+01 8.012929e+01 moveto -7.932575e+01 7.235529e+01 lineto -8.27595e+01 7.277885e+01 lineto -8.27595e+01 8.055285e+01 lineto -7.932575e+01 8.012929e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -7.932575e+01 8.790329e+01 moveto -7.932575e+01 8.012929e+01 lineto -8.27595e+01 8.055285e+01 lineto -8.27595e+01 8.832685e+01 lineto -7.932575e+01 8.790329e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -8.27595e+01 1.836085e+01 moveto -8.27595e+01 1.058685e+01 lineto -8.608376e+01 1.106845e+01 lineto -8.608376e+01 1.884245e+01 lineto -8.27595e+01 1.836085e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -8.27595e+01 2.613485e+01 moveto -8.27595e+01 1.836085e+01 lineto -8.608376e+01 1.884245e+01 lineto -8.608376e+01 2.661645e+01 lineto -8.27595e+01 2.613485e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -8.27595e+01 3.390885e+01 moveto -8.27595e+01 2.613485e+01 lineto -8.608376e+01 2.661645e+01 lineto -8.608376e+01 3.439045e+01 lineto -8.27595e+01 3.390885e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -8.27595e+01 4.168285e+01 moveto -8.27595e+01 3.390885e+01 lineto -8.608376e+01 3.439045e+01 lineto -8.608376e+01 4.216445e+01 lineto -8.27595e+01 4.168285e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -8.27595e+01 4.945685e+01 moveto -8.27595e+01 4.168285e+01 lineto -8.608376e+01 4.216445e+01 lineto -8.608376e+01 4.993845e+01 lineto -8.27595e+01 4.945685e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -8.27595e+01 5.723085e+01 moveto -8.27595e+01 4.945685e+01 lineto -8.608376e+01 4.993845e+01 lineto -8.608376e+01 5.771245e+01 lineto -8.27595e+01 5.723085e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -8.27595e+01 6.500485e+01 moveto -8.27595e+01 5.723085e+01 lineto -8.608376e+01 5.771245e+01 lineto -8.608376e+01 6.548645e+01 lineto -8.27595e+01 6.500485e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -8.27595e+01 7.277885e+01 moveto -8.27595e+01 6.500485e+01 lineto -8.608376e+01 6.548645e+01 lineto -8.608376e+01 7.326045e+01 lineto -8.27595e+01 7.277885e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -8.27595e+01 8.055285e+01 moveto -8.27595e+01 7.277885e+01 lineto -8.608376e+01 7.326045e+01 lineto -8.608376e+01 8.103445e+01 lineto -8.27595e+01 8.055285e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -8.27595e+01 8.832685e+01 moveto -8.27595e+01 8.055285e+01 lineto -8.608376e+01 8.103445e+01 lineto -8.608376e+01 8.880845e+01 lineto -8.27595e+01 8.832685e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -8.608376e+01 1.884245e+01 moveto -8.608376e+01 1.106845e+01 lineto -8.927802e+01 1.160512e+01 lineto -8.927802e+01 1.937912e+01 lineto -8.608376e+01 1.884245e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -8.608376e+01 2.661645e+01 moveto -8.608376e+01 1.884245e+01 lineto -8.927802e+01 1.937912e+01 lineto -8.927802e+01 2.715312e+01 lineto -8.608376e+01 2.661645e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -8.608376e+01 3.439045e+01 moveto -8.608376e+01 2.661645e+01 lineto -8.927802e+01 2.715312e+01 lineto -8.927802e+01 3.492712e+01 lineto -8.608376e+01 3.439045e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -8.608376e+01 4.216445e+01 moveto -8.608376e+01 3.439045e+01 lineto -8.927802e+01 3.492712e+01 lineto -8.927802e+01 4.270112e+01 lineto -8.608376e+01 4.216445e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -8.608376e+01 4.993845e+01 moveto -8.608376e+01 4.216445e+01 lineto -8.927802e+01 4.270112e+01 lineto -8.927802e+01 5.047512e+01 lineto -8.608376e+01 4.993845e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -8.608376e+01 5.771245e+01 moveto -8.608376e+01 4.993845e+01 lineto -8.927802e+01 5.047512e+01 lineto -8.927802e+01 5.824912e+01 lineto -8.608376e+01 5.771245e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -8.608376e+01 6.548645e+01 moveto -8.608376e+01 5.771245e+01 lineto -8.927802e+01 5.824912e+01 lineto -8.927802e+01 6.602312e+01 lineto -8.608376e+01 6.548645e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -8.608376e+01 7.326045e+01 moveto -8.608376e+01 6.548645e+01 lineto -8.927802e+01 6.602312e+01 lineto -8.927802e+01 7.379712e+01 lineto -8.608376e+01 7.326045e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -8.608376e+01 8.103445e+01 moveto -8.608376e+01 7.326045e+01 lineto -8.927802e+01 7.379712e+01 lineto -8.927802e+01 8.157112e+01 lineto -8.608376e+01 8.103445e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -8.608376e+01 8.880845e+01 moveto -8.608376e+01 8.103445e+01 lineto -8.927802e+01 8.157112e+01 lineto -8.927802e+01 8.934512e+01 lineto -8.608376e+01 8.880845e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -8.927802e+01 1.937912e+01 moveto -8.927802e+01 1.160512e+01 lineto -9.232261e+01 1.219354e+01 lineto -9.232261e+01 1.996754e+01 lineto -8.927802e+01 1.937912e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -8.927802e+01 2.715312e+01 moveto -8.927802e+01 1.937912e+01 lineto -9.232261e+01 1.996754e+01 lineto -9.232261e+01 2.774154e+01 lineto -8.927802e+01 2.715312e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -8.927802e+01 3.492712e+01 moveto -8.927802e+01 2.715312e+01 lineto -9.232261e+01 2.774154e+01 lineto -9.232261e+01 3.551554e+01 lineto -8.927802e+01 3.492712e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -8.927802e+01 4.270112e+01 moveto -8.927802e+01 3.492712e+01 lineto -9.232261e+01 3.551554e+01 lineto -9.232261e+01 4.328954e+01 lineto -8.927802e+01 4.270112e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -8.927802e+01 5.047512e+01 moveto -8.927802e+01 4.270112e+01 lineto -9.232261e+01 4.328954e+01 lineto -9.232261e+01 5.106354e+01 lineto -8.927802e+01 5.047512e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -8.927802e+01 5.824912e+01 moveto -8.927802e+01 5.047512e+01 lineto -9.232261e+01 5.106354e+01 lineto -9.232261e+01 5.883754e+01 lineto -8.927802e+01 5.824912e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -8.927802e+01 6.602312e+01 moveto -8.927802e+01 5.824912e+01 lineto -9.232261e+01 5.883754e+01 lineto -9.232261e+01 6.661154e+01 lineto -8.927802e+01 6.602312e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -8.927802e+01 7.379712e+01 moveto -8.927802e+01 6.602312e+01 lineto -9.232261e+01 6.661154e+01 lineto -9.232261e+01 7.438554e+01 lineto -8.927802e+01 7.379712e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -8.927802e+01 8.157112e+01 moveto -8.927802e+01 7.379712e+01 lineto -9.232261e+01 7.438554e+01 lineto -9.232261e+01 8.215954e+01 lineto -8.927802e+01 8.157112e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -8.927802e+01 8.934512e+01 moveto -8.927802e+01 8.157112e+01 lineto -9.232261e+01 8.215954e+01 lineto -9.232261e+01 8.993354e+01 lineto -8.927802e+01 8.934512e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -9.232261e+01 1.996754e+01 moveto -9.232261e+01 1.219354e+01 lineto -9.519874e+01 1.283009e+01 lineto -9.519874e+01 2.060409e+01 lineto -9.232261e+01 1.996754e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -9.232261e+01 2.774154e+01 moveto -9.232261e+01 1.996754e+01 lineto -9.519874e+01 2.060409e+01 lineto -9.519874e+01 2.837809e+01 lineto -9.232261e+01 2.774154e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -9.232261e+01 3.551554e+01 moveto -9.232261e+01 2.774154e+01 lineto -9.519874e+01 2.837809e+01 lineto -9.519874e+01 3.615209e+01 lineto -9.232261e+01 3.551554e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -9.232261e+01 4.328954e+01 moveto -9.232261e+01 3.551554e+01 lineto -9.519874e+01 3.615209e+01 lineto -9.519874e+01 4.392609e+01 lineto -9.232261e+01 4.328954e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -9.232261e+01 5.106354e+01 moveto -9.232261e+01 4.328954e+01 lineto -9.519874e+01 4.392609e+01 lineto -9.519874e+01 5.170009e+01 lineto -9.232261e+01 5.106354e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -9.232261e+01 5.883754e+01 moveto -9.232261e+01 5.106354e+01 lineto -9.519874e+01 5.170009e+01 lineto -9.519874e+01 5.947409e+01 lineto -9.232261e+01 5.883754e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -9.232261e+01 6.661154e+01 moveto -9.232261e+01 5.883754e+01 lineto -9.519874e+01 5.947409e+01 lineto -9.519874e+01 6.724809e+01 lineto -9.232261e+01 6.661154e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -9.232261e+01 7.438554e+01 moveto -9.232261e+01 6.661154e+01 lineto -9.519874e+01 6.724809e+01 lineto -9.519874e+01 7.502209e+01 lineto -9.232261e+01 7.438554e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -9.232261e+01 8.215954e+01 moveto -9.232261e+01 7.438554e+01 lineto -9.519874e+01 7.502209e+01 lineto -9.519874e+01 8.279609e+01 lineto -9.232261e+01 8.215954e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -9.232261e+01 8.993354e+01 moveto -9.232261e+01 8.215954e+01 lineto -9.519874e+01 8.279609e+01 lineto -9.519874e+01 9.057009e+01 lineto -9.232261e+01 8.993354e+01 lineto -closepath -gsave -7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor -fill -grestore -newpath -9.519874e+01 2.060409e+01 moveto -9.519874e+01 1.283009e+01 lineto -9.788868e+01 1.351085e+01 lineto -9.788868e+01 2.128485e+01 lineto -9.519874e+01 2.060409e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -9.519874e+01 2.837809e+01 moveto -9.519874e+01 2.060409e+01 lineto -9.788868e+01 2.128485e+01 lineto -9.788868e+01 2.905885e+01 lineto -9.519874e+01 2.837809e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -9.519874e+01 3.615209e+01 moveto -9.519874e+01 2.837809e+01 lineto -9.788868e+01 2.905885e+01 lineto -9.788868e+01 3.683285e+01 lineto -9.519874e+01 3.615209e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -9.519874e+01 4.392609e+01 moveto -9.519874e+01 3.615209e+01 lineto -9.788868e+01 3.683285e+01 lineto -9.788868e+01 4.460685e+01 lineto -9.519874e+01 4.392609e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -9.519874e+01 5.170009e+01 moveto -9.519874e+01 4.392609e+01 lineto -9.788868e+01 4.460685e+01 lineto -9.788868e+01 5.238085e+01 lineto -9.519874e+01 5.170009e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -9.519874e+01 5.947409e+01 moveto -9.519874e+01 5.170009e+01 lineto -9.788868e+01 5.238085e+01 lineto -9.788868e+01 6.015485e+01 lineto -9.519874e+01 5.947409e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -9.519874e+01 6.724809e+01 moveto -9.519874e+01 5.947409e+01 lineto -9.788868e+01 6.015485e+01 lineto -9.788868e+01 6.792885e+01 lineto -9.519874e+01 6.724809e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -9.519874e+01 7.502209e+01 moveto -9.519874e+01 6.724809e+01 lineto -9.788868e+01 6.792885e+01 lineto -9.788868e+01 7.570285e+01 lineto -9.519874e+01 7.502209e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -9.519874e+01 8.279609e+01 moveto -9.519874e+01 7.502209e+01 lineto -9.788868e+01 7.570285e+01 lineto -9.788868e+01 8.347685e+01 lineto -9.519874e+01 8.279609e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -9.519874e+01 9.057009e+01 moveto -9.519874e+01 8.279609e+01 lineto -9.788868e+01 8.347685e+01 lineto -9.788868e+01 9.125085e+01 lineto -9.519874e+01 9.057009e+01 lineto -closepath -gsave -7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor -fill -grestore -newpath -9.788868e+01 2.128485e+01 moveto -9.788868e+01 1.351085e+01 lineto -1.003759e+02 1.423162e+01 lineto -1.003759e+02 2.200562e+01 lineto -9.788868e+01 2.128485e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -9.788868e+01 2.905885e+01 moveto -9.788868e+01 2.128485e+01 lineto -1.003759e+02 2.200562e+01 lineto -1.003759e+02 2.977962e+01 lineto -9.788868e+01 2.905885e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -9.788868e+01 3.683285e+01 moveto -9.788868e+01 2.905885e+01 lineto -1.003759e+02 2.977962e+01 lineto -1.003759e+02 3.755362e+01 lineto -9.788868e+01 3.683285e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -9.788868e+01 4.460685e+01 moveto -9.788868e+01 3.683285e+01 lineto -1.003759e+02 3.755362e+01 lineto -1.003759e+02 4.532762e+01 lineto -9.788868e+01 4.460685e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -9.788868e+01 5.238085e+01 moveto -9.788868e+01 4.460685e+01 lineto -1.003759e+02 4.532762e+01 lineto -1.003759e+02 5.310162e+01 lineto -9.788868e+01 5.238085e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -9.788868e+01 6.015485e+01 moveto -9.788868e+01 5.238085e+01 lineto -1.003759e+02 5.310162e+01 lineto -1.003759e+02 6.087562e+01 lineto -9.788868e+01 6.015485e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -9.788868e+01 6.792885e+01 moveto -9.788868e+01 6.015485e+01 lineto -1.003759e+02 6.087562e+01 lineto -1.003759e+02 6.864962e+01 lineto -9.788868e+01 6.792885e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -9.788868e+01 7.570285e+01 moveto -9.788868e+01 6.792885e+01 lineto -1.003759e+02 6.864962e+01 lineto -1.003759e+02 7.642362e+01 lineto -9.788868e+01 7.570285e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -9.788868e+01 8.347685e+01 moveto -9.788868e+01 7.570285e+01 lineto -1.003759e+02 7.642362e+01 lineto -1.003759e+02 8.419762e+01 lineto -9.788868e+01 8.347685e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -9.788868e+01 9.125085e+01 moveto -9.788868e+01 8.347685e+01 lineto -1.003759e+02 8.419762e+01 lineto -1.003759e+02 9.197162e+01 lineto -9.788868e+01 9.125085e+01 lineto -closepath -gsave -7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor -fill -grestore -newpath -1.003759e+02 2.200562e+01 moveto -1.003759e+02 1.423162e+01 lineto -1.026449e+02 1.498794e+01 lineto -1.026449e+02 2.276194e+01 lineto -1.003759e+02 2.200562e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -1.003759e+02 2.977962e+01 moveto -1.003759e+02 2.200562e+01 lineto -1.026449e+02 2.276194e+01 lineto -1.026449e+02 3.053594e+01 lineto -1.003759e+02 2.977962e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -1.003759e+02 3.755362e+01 moveto -1.003759e+02 2.977962e+01 lineto -1.026449e+02 3.053594e+01 lineto -1.026449e+02 3.830994e+01 lineto -1.003759e+02 3.755362e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -1.003759e+02 4.532762e+01 moveto -1.003759e+02 3.755362e+01 lineto -1.026449e+02 3.830994e+01 lineto -1.026449e+02 4.608394e+01 lineto -1.003759e+02 4.532762e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -1.003759e+02 5.310162e+01 moveto -1.003759e+02 4.532762e+01 lineto -1.026449e+02 4.608394e+01 lineto -1.026449e+02 5.385794e+01 lineto -1.003759e+02 5.310162e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -1.003759e+02 6.087562e+01 moveto -1.003759e+02 5.310162e+01 lineto -1.026449e+02 5.385794e+01 lineto -1.026449e+02 6.163194e+01 lineto -1.003759e+02 6.087562e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -1.003759e+02 6.864962e+01 moveto -1.003759e+02 6.087562e+01 lineto -1.026449e+02 6.163194e+01 lineto -1.026449e+02 6.940594e+01 lineto -1.003759e+02 6.864962e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -1.003759e+02 7.642362e+01 moveto -1.003759e+02 6.864962e+01 lineto -1.026449e+02 6.940594e+01 lineto -1.026449e+02 7.717994e+01 lineto -1.003759e+02 7.642362e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -1.003759e+02 8.419762e+01 moveto -1.003759e+02 7.642362e+01 lineto -1.026449e+02 7.717994e+01 lineto -1.026449e+02 8.495394e+01 lineto -1.003759e+02 8.419762e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -1.003759e+02 9.197162e+01 moveto -1.003759e+02 8.419762e+01 lineto -1.026449e+02 8.495394e+01 lineto -1.026449e+02 9.272794e+01 lineto -1.003759e+02 9.197162e+01 lineto -closepath -gsave -7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor -fill -grestore -newpath -1.026449e+02 2.276194e+01 moveto -1.026449e+02 1.498794e+01 lineto -1.046819e+02 1.577517e+01 lineto -1.046819e+02 2.354917e+01 lineto -1.026449e+02 2.276194e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -1.026449e+02 3.053594e+01 moveto -1.026449e+02 2.276194e+01 lineto -1.046819e+02 2.354917e+01 lineto -1.046819e+02 3.132317e+01 lineto -1.026449e+02 3.053594e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -1.026449e+02 3.830994e+01 moveto -1.026449e+02 3.053594e+01 lineto -1.046819e+02 3.132317e+01 lineto -1.046819e+02 3.909717e+01 lineto -1.026449e+02 3.830994e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -1.026449e+02 4.608394e+01 moveto -1.026449e+02 3.830994e+01 lineto -1.046819e+02 3.909717e+01 lineto -1.046819e+02 4.687117e+01 lineto -1.026449e+02 4.608394e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -1.026449e+02 5.385794e+01 moveto -1.026449e+02 4.608394e+01 lineto -1.046819e+02 4.687117e+01 lineto -1.046819e+02 5.464517e+01 lineto -1.026449e+02 5.385794e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -1.026449e+02 6.163194e+01 moveto -1.026449e+02 5.385794e+01 lineto -1.046819e+02 5.464517e+01 lineto -1.046819e+02 6.241917e+01 lineto -1.026449e+02 6.163194e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -1.026449e+02 6.940594e+01 moveto -1.026449e+02 6.163194e+01 lineto -1.046819e+02 6.241917e+01 lineto -1.046819e+02 7.019317e+01 lineto -1.026449e+02 6.940594e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -1.026449e+02 7.717994e+01 moveto -1.026449e+02 6.940594e+01 lineto -1.046819e+02 7.019317e+01 lineto -1.046819e+02 7.796717e+01 lineto -1.026449e+02 7.717994e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -1.026449e+02 8.495394e+01 moveto -1.026449e+02 7.717994e+01 lineto -1.046819e+02 7.796717e+01 lineto -1.046819e+02 8.574117e+01 lineto -1.026449e+02 8.495394e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -1.026449e+02 9.272794e+01 moveto -1.026449e+02 8.495394e+01 lineto -1.046819e+02 8.574117e+01 lineto -1.046819e+02 9.351517e+01 lineto -1.026449e+02 9.272794e+01 lineto -closepath -gsave -7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor -fill -grestore -newpath -1.046819e+02 2.354917e+01 moveto -1.046819e+02 1.577517e+01 lineto -1.064742e+02 1.658845e+01 lineto -1.064742e+02 2.436245e+01 lineto -1.046819e+02 2.354917e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -1.046819e+02 3.132317e+01 moveto -1.046819e+02 2.354917e+01 lineto -1.064742e+02 2.436245e+01 lineto -1.064742e+02 3.213645e+01 lineto -1.046819e+02 3.132317e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -1.046819e+02 3.909717e+01 moveto -1.046819e+02 3.132317e+01 lineto -1.064742e+02 3.213645e+01 lineto -1.064742e+02 3.991045e+01 lineto -1.046819e+02 3.909717e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -1.046819e+02 4.687117e+01 moveto -1.046819e+02 3.909717e+01 lineto -1.064742e+02 3.991045e+01 lineto -1.064742e+02 4.768445e+01 lineto -1.046819e+02 4.687117e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -1.046819e+02 5.464517e+01 moveto -1.046819e+02 4.687117e+01 lineto -1.064742e+02 4.768445e+01 lineto -1.064742e+02 5.545845e+01 lineto -1.046819e+02 5.464517e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -1.046819e+02 6.241917e+01 moveto -1.046819e+02 5.464517e+01 lineto -1.064742e+02 5.545845e+01 lineto -1.064742e+02 6.323245e+01 lineto -1.046819e+02 6.241917e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -1.046819e+02 7.019317e+01 moveto -1.046819e+02 6.241917e+01 lineto -1.064742e+02 6.323245e+01 lineto -1.064742e+02 7.100645e+01 lineto -1.046819e+02 7.019317e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -1.046819e+02 7.796717e+01 moveto -1.046819e+02 7.019317e+01 lineto -1.064742e+02 7.100645e+01 lineto -1.064742e+02 7.878045e+01 lineto -1.046819e+02 7.796717e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -1.046819e+02 8.574117e+01 moveto -1.046819e+02 7.796717e+01 lineto -1.064742e+02 7.878045e+01 lineto -1.064742e+02 8.655445e+01 lineto -1.046819e+02 8.574117e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -1.046819e+02 9.351517e+01 moveto -1.046819e+02 8.574117e+01 lineto -1.064742e+02 8.655445e+01 lineto -1.064742e+02 9.432845e+01 lineto -1.046819e+02 9.351517e+01 lineto -closepath -gsave -7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor -fill -grestore -newpath -1.064742e+02 2.436245e+01 moveto -1.064742e+02 1.658845e+01 lineto -1.080109e+02 1.742276e+01 lineto -1.080109e+02 2.519676e+01 lineto -1.064742e+02 2.436245e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -1.064742e+02 3.213645e+01 moveto -1.064742e+02 2.436245e+01 lineto -1.080109e+02 2.519676e+01 lineto -1.080109e+02 3.297076e+01 lineto -1.064742e+02 3.213645e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -1.064742e+02 3.991045e+01 moveto -1.064742e+02 3.213645e+01 lineto -1.080109e+02 3.297076e+01 lineto -1.080109e+02 4.074476e+01 lineto -1.064742e+02 3.991045e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -1.064742e+02 4.768445e+01 moveto -1.064742e+02 3.991045e+01 lineto -1.080109e+02 4.074476e+01 lineto -1.080109e+02 4.851876e+01 lineto -1.064742e+02 4.768445e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -1.064742e+02 5.545845e+01 moveto -1.064742e+02 4.768445e+01 lineto -1.080109e+02 4.851876e+01 lineto -1.080109e+02 5.629276e+01 lineto -1.064742e+02 5.545845e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -1.064742e+02 6.323245e+01 moveto -1.064742e+02 5.545845e+01 lineto -1.080109e+02 5.629276e+01 lineto -1.080109e+02 6.406676e+01 lineto -1.064742e+02 6.323245e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -1.064742e+02 7.100645e+01 moveto -1.064742e+02 6.323245e+01 lineto -1.080109e+02 6.406676e+01 lineto -1.080109e+02 7.184076e+01 lineto -1.064742e+02 7.100645e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -1.064742e+02 7.878045e+01 moveto -1.064742e+02 7.100645e+01 lineto -1.080109e+02 7.184076e+01 lineto -1.080109e+02 7.961476e+01 lineto -1.064742e+02 7.878045e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -1.064742e+02 8.655445e+01 moveto -1.064742e+02 7.878045e+01 lineto -1.080109e+02 7.961476e+01 lineto -1.080109e+02 8.738876e+01 lineto -1.064742e+02 8.655445e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -1.064742e+02 9.432845e+01 moveto -1.064742e+02 8.655445e+01 lineto -1.080109e+02 8.738876e+01 lineto -1.080109e+02 9.516276e+01 lineto -1.064742e+02 9.432845e+01 lineto -closepath -gsave -7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor -fill -grestore -newpath -1.080109e+02 2.519676e+01 moveto -1.080109e+02 1.742276e+01 lineto -1.092823e+02 1.827296e+01 lineto -1.092823e+02 2.604696e+01 lineto -1.080109e+02 2.519676e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -1.080109e+02 3.297076e+01 moveto -1.080109e+02 2.519676e+01 lineto -1.092823e+02 2.604696e+01 lineto -1.092823e+02 3.382096e+01 lineto -1.080109e+02 3.297076e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -1.080109e+02 4.074476e+01 moveto -1.080109e+02 3.297076e+01 lineto -1.092823e+02 3.382096e+01 lineto -1.092823e+02 4.159496e+01 lineto -1.080109e+02 4.074476e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -1.080109e+02 4.851876e+01 moveto -1.080109e+02 4.074476e+01 lineto -1.092823e+02 4.159496e+01 lineto -1.092823e+02 4.936896e+01 lineto -1.080109e+02 4.851876e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -1.080109e+02 5.629276e+01 moveto -1.080109e+02 4.851876e+01 lineto -1.092823e+02 4.936896e+01 lineto -1.092823e+02 5.714296e+01 lineto -1.080109e+02 5.629276e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -1.080109e+02 6.406676e+01 moveto -1.080109e+02 5.629276e+01 lineto -1.092823e+02 5.714296e+01 lineto -1.092823e+02 6.491696e+01 lineto -1.080109e+02 6.406676e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -1.080109e+02 7.184076e+01 moveto -1.080109e+02 6.406676e+01 lineto -1.092823e+02 6.491696e+01 lineto -1.092823e+02 7.269096e+01 lineto -1.080109e+02 7.184076e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -1.080109e+02 7.961476e+01 moveto -1.080109e+02 7.184076e+01 lineto -1.092823e+02 7.269096e+01 lineto -1.092823e+02 8.046496e+01 lineto -1.080109e+02 7.961476e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -1.080109e+02 8.738876e+01 moveto -1.080109e+02 7.961476e+01 lineto -1.092823e+02 8.046496e+01 lineto -1.092823e+02 8.823896e+01 lineto -1.080109e+02 8.738876e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -1.080109e+02 9.516276e+01 moveto -1.080109e+02 8.738876e+01 lineto -1.092823e+02 8.823896e+01 lineto -1.092823e+02 9.601296e+01 lineto -1.080109e+02 9.516276e+01 lineto -closepath -gsave -7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor -fill -grestore -newpath -1.092823e+02 2.604696e+01 moveto -1.092823e+02 1.827296e+01 lineto -1.102807e+02 1.913381e+01 lineto -1.102807e+02 2.690781e+01 lineto -1.092823e+02 2.604696e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -1.092823e+02 3.382096e+01 moveto -1.092823e+02 2.604696e+01 lineto -1.102807e+02 2.690781e+01 lineto -1.102807e+02 3.468181e+01 lineto -1.092823e+02 3.382096e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -1.092823e+02 4.159496e+01 moveto -1.092823e+02 3.382096e+01 lineto -1.102807e+02 3.468181e+01 lineto -1.102807e+02 4.245581e+01 lineto -1.092823e+02 4.159496e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -1.092823e+02 4.936896e+01 moveto -1.092823e+02 4.159496e+01 lineto -1.102807e+02 4.245581e+01 lineto -1.102807e+02 5.022981e+01 lineto -1.092823e+02 4.936896e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -1.092823e+02 5.714296e+01 moveto -1.092823e+02 4.936896e+01 lineto -1.102807e+02 5.022981e+01 lineto -1.102807e+02 5.800381e+01 lineto -1.092823e+02 5.714296e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -1.092823e+02 6.491696e+01 moveto -1.092823e+02 5.714296e+01 lineto -1.102807e+02 5.800381e+01 lineto -1.102807e+02 6.577781e+01 lineto -1.092823e+02 6.491696e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -1.092823e+02 7.269096e+01 moveto -1.092823e+02 6.491696e+01 lineto -1.102807e+02 6.577781e+01 lineto -1.102807e+02 7.355181e+01 lineto -1.092823e+02 7.269096e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -1.092823e+02 8.046496e+01 moveto -1.092823e+02 7.269096e+01 lineto -1.102807e+02 7.355181e+01 lineto -1.102807e+02 8.132581e+01 lineto -1.092823e+02 8.046496e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -1.092823e+02 8.823896e+01 moveto -1.092823e+02 8.046496e+01 lineto -1.102807e+02 8.132581e+01 lineto -1.102807e+02 8.909981e+01 lineto -1.092823e+02 8.823896e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -1.092823e+02 9.601296e+01 moveto -1.092823e+02 8.823896e+01 lineto -1.102807e+02 8.909981e+01 lineto -1.102807e+02 9.687381e+01 lineto -1.092823e+02 9.601296e+01 lineto -closepath -gsave -7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor -fill -grestore -newpath -1.102807e+02 2.690781e+01 moveto -1.102807e+02 1.913381e+01 lineto -1.11e+02 2.0e+01 lineto -1.11e+02 2.7774e+01 lineto -1.102807e+02 2.690781e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -1.102807e+02 3.468181e+01 moveto -1.102807e+02 2.690781e+01 lineto -1.11e+02 2.7774e+01 lineto -1.11e+02 3.5548e+01 lineto -1.102807e+02 3.468181e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -1.102807e+02 4.245581e+01 moveto -1.102807e+02 3.468181e+01 lineto -1.11e+02 3.5548e+01 lineto -1.11e+02 4.3322e+01 lineto -1.102807e+02 4.245581e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -1.102807e+02 5.022981e+01 moveto -1.102807e+02 4.245581e+01 lineto -1.11e+02 4.3322e+01 lineto -1.11e+02 5.1096e+01 lineto -1.102807e+02 5.022981e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -1.102807e+02 5.800381e+01 moveto -1.102807e+02 5.022981e+01 lineto -1.11e+02 5.1096e+01 lineto -1.11e+02 5.887e+01 lineto -1.102807e+02 5.800381e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -1.102807e+02 6.577781e+01 moveto -1.102807e+02 5.800381e+01 lineto -1.11e+02 5.887e+01 lineto -1.11e+02 6.6644e+01 lineto -1.102807e+02 6.577781e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -1.102807e+02 7.355181e+01 moveto -1.102807e+02 6.577781e+01 lineto -1.11e+02 6.6644e+01 lineto -1.11e+02 7.4418e+01 lineto -1.102807e+02 7.355181e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -1.102807e+02 8.132581e+01 moveto -1.102807e+02 7.355181e+01 lineto -1.11e+02 7.4418e+01 lineto -1.11e+02 8.2192e+01 lineto -1.102807e+02 8.132581e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -1.102807e+02 8.909981e+01 moveto -1.102807e+02 8.132581e+01 lineto -1.11e+02 8.2192e+01 lineto -1.11e+02 8.9966e+01 lineto -1.102807e+02 8.909981e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -1.102807e+02 9.687381e+01 moveto -1.102807e+02 8.909981e+01 lineto -1.11e+02 8.9966e+01 lineto -1.11e+02 9.774e+01 lineto -1.102807e+02 9.687381e+01 lineto -closepath -gsave -7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor -fill -grestore -newpath -1.11e+02 2.7774e+01 moveto -1.11e+02 2.0e+01 lineto -1.114357e+02 2.086619e+01 lineto -1.114357e+02 2.864019e+01 lineto -1.11e+02 2.7774e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -1.11e+02 3.5548e+01 moveto -1.11e+02 2.7774e+01 lineto -1.114357e+02 2.864019e+01 lineto -1.114357e+02 3.641419e+01 lineto -1.11e+02 3.5548e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -1.11e+02 4.3322e+01 moveto -1.11e+02 3.5548e+01 lineto -1.114357e+02 3.641419e+01 lineto -1.114357e+02 4.418819e+01 lineto -1.11e+02 4.3322e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -1.11e+02 5.1096e+01 moveto -1.11e+02 4.3322e+01 lineto -1.114357e+02 4.418819e+01 lineto -1.114357e+02 5.196219e+01 lineto -1.11e+02 5.1096e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -1.11e+02 5.887e+01 moveto -1.11e+02 5.1096e+01 lineto -1.114357e+02 5.196219e+01 lineto -1.114357e+02 5.973619e+01 lineto -1.11e+02 5.887e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -1.11e+02 6.6644e+01 moveto -1.11e+02 5.887e+01 lineto -1.114357e+02 5.973619e+01 lineto -1.114357e+02 6.751019e+01 lineto -1.11e+02 6.6644e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -1.11e+02 7.4418e+01 moveto -1.11e+02 6.6644e+01 lineto -1.114357e+02 6.751019e+01 lineto -1.114357e+02 7.528419e+01 lineto -1.11e+02 7.4418e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -1.11e+02 8.2192e+01 moveto -1.11e+02 7.4418e+01 lineto -1.114357e+02 7.528419e+01 lineto -1.114357e+02 8.305819e+01 lineto -1.11e+02 8.2192e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -1.11e+02 8.9966e+01 moveto -1.11e+02 8.2192e+01 lineto -1.114357e+02 8.305819e+01 lineto -1.114357e+02 9.083219e+01 lineto -1.11e+02 8.9966e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -1.11e+02 9.774e+01 moveto -1.11e+02 8.9966e+01 lineto -1.114357e+02 9.083219e+01 lineto -1.114357e+02 9.860619e+01 lineto -1.11e+02 9.774e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -1.114357e+02 2.864019e+01 moveto -1.114357e+02 2.086619e+01 lineto -1.11585e+02 2.172704e+01 lineto -1.11585e+02 2.950104e+01 lineto -1.114357e+02 2.864019e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -1.114357e+02 3.641419e+01 moveto -1.114357e+02 2.864019e+01 lineto -1.11585e+02 2.950104e+01 lineto -1.11585e+02 3.727504e+01 lineto -1.114357e+02 3.641419e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -1.114357e+02 4.418819e+01 moveto -1.114357e+02 3.641419e+01 lineto -1.11585e+02 3.727504e+01 lineto -1.11585e+02 4.504904e+01 lineto -1.114357e+02 4.418819e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -1.114357e+02 5.196219e+01 moveto -1.114357e+02 4.418819e+01 lineto -1.11585e+02 4.504904e+01 lineto -1.11585e+02 5.282304e+01 lineto -1.114357e+02 5.196219e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -1.114357e+02 5.973619e+01 moveto -1.114357e+02 5.196219e+01 lineto -1.11585e+02 5.282304e+01 lineto -1.11585e+02 6.059704e+01 lineto -1.114357e+02 5.973619e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -1.114357e+02 6.751019e+01 moveto -1.114357e+02 5.973619e+01 lineto -1.11585e+02 6.059704e+01 lineto -1.11585e+02 6.837104e+01 lineto -1.114357e+02 6.751019e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -1.114357e+02 7.528419e+01 moveto -1.114357e+02 6.751019e+01 lineto -1.11585e+02 6.837104e+01 lineto -1.11585e+02 7.614504e+01 lineto -1.114357e+02 7.528419e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -1.114357e+02 8.305819e+01 moveto -1.114357e+02 7.528419e+01 lineto -1.11585e+02 7.614504e+01 lineto -1.11585e+02 8.391904e+01 lineto -1.114357e+02 8.305819e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -1.114357e+02 9.083219e+01 moveto -1.114357e+02 8.305819e+01 lineto -1.11585e+02 8.391904e+01 lineto -1.11585e+02 9.169304e+01 lineto -1.114357e+02 9.083219e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -1.114357e+02 9.860619e+01 moveto -1.114357e+02 9.083219e+01 lineto -1.11585e+02 9.169304e+01 lineto -1.11585e+02 9.946704e+01 lineto -1.114357e+02 9.860619e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -1.841498e+01 2.604696e+01 moveto -1.841498e+01 1.827296e+01 lineto -1.855283e+01 1.742276e+01 lineto -1.855283e+01 2.519676e+01 lineto -1.841498e+01 2.604696e+01 lineto -closepath -gsave -4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor -fill -grestore -newpath -1.841498e+01 3.382096e+01 moveto -1.841498e+01 2.604696e+01 lineto -1.855283e+01 2.519676e+01 lineto -1.855283e+01 3.297076e+01 lineto -1.841498e+01 3.382096e+01 lineto -closepath -gsave -4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor -fill -grestore -newpath -1.841498e+01 4.159496e+01 moveto -1.841498e+01 3.382096e+01 lineto -1.855283e+01 3.297076e+01 lineto -1.855283e+01 4.074476e+01 lineto -1.841498e+01 4.159496e+01 lineto -closepath -gsave -4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor -fill -grestore -newpath -1.841498e+01 4.936896e+01 moveto -1.841498e+01 4.159496e+01 lineto -1.855283e+01 4.074476e+01 lineto -1.855283e+01 4.851876e+01 lineto -1.841498e+01 4.936896e+01 lineto -closepath -gsave -4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor -fill -grestore -newpath -1.841498e+01 5.714296e+01 moveto -1.841498e+01 4.936896e+01 lineto -1.855283e+01 4.851876e+01 lineto -1.855283e+01 5.629276e+01 lineto -1.841498e+01 5.714296e+01 lineto -closepath -gsave -4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor -fill -grestore -newpath -1.841498e+01 6.491696e+01 moveto -1.841498e+01 5.714296e+01 lineto -1.855283e+01 5.629276e+01 lineto -1.855283e+01 6.406676e+01 lineto -1.841498e+01 6.491696e+01 lineto -closepath -gsave -4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor -fill -grestore -newpath -1.841498e+01 7.269096e+01 moveto -1.841498e+01 6.491696e+01 lineto -1.855283e+01 6.406676e+01 lineto -1.855283e+01 7.184076e+01 lineto -1.841498e+01 7.269096e+01 lineto -closepath -gsave -4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor -fill -grestore -newpath -1.841498e+01 8.046496e+01 moveto -1.841498e+01 7.269096e+01 lineto -1.855283e+01 7.184076e+01 lineto -1.855283e+01 7.961476e+01 lineto -1.841498e+01 8.046496e+01 lineto -closepath -gsave -4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor -fill -grestore -newpath -1.841498e+01 8.823896e+01 moveto -1.841498e+01 8.046496e+01 lineto -1.855283e+01 7.961476e+01 lineto -1.855283e+01 8.738876e+01 lineto -1.841498e+01 8.823896e+01 lineto -closepath -gsave -4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor -fill -grestore -newpath -1.841498e+01 9.601296e+01 moveto -1.841498e+01 8.823896e+01 lineto -1.855283e+01 8.738876e+01 lineto -1.855283e+01 9.516276e+01 lineto -1.841498e+01 9.601296e+01 lineto -closepath -gsave -4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor -fill -grestore -newpath -1.855283e+01 2.519676e+01 moveto -1.855283e+01 1.742276e+01 lineto -1.897704e+01 1.658845e+01 lineto -1.897704e+01 2.436245e+01 lineto -1.855283e+01 2.519676e+01 lineto -closepath -gsave -4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor -fill -grestore -newpath -1.855283e+01 3.297076e+01 moveto -1.855283e+01 2.519676e+01 lineto -1.897704e+01 2.436245e+01 lineto -1.897704e+01 3.213645e+01 lineto -1.855283e+01 3.297076e+01 lineto -closepath -gsave -4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor -fill -grestore -newpath -1.855283e+01 4.074476e+01 moveto -1.855283e+01 3.297076e+01 lineto -1.897704e+01 3.213645e+01 lineto -1.897704e+01 3.991045e+01 lineto -1.855283e+01 4.074476e+01 lineto -closepath -gsave -4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor -fill -grestore -newpath -1.855283e+01 4.851876e+01 moveto -1.855283e+01 4.074476e+01 lineto -1.897704e+01 3.991045e+01 lineto -1.897704e+01 4.768445e+01 lineto -1.855283e+01 4.851876e+01 lineto -closepath -gsave -4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor -fill -grestore -newpath -1.855283e+01 5.629276e+01 moveto -1.855283e+01 4.851876e+01 lineto -1.897704e+01 4.768445e+01 lineto -1.897704e+01 5.545845e+01 lineto -1.855283e+01 5.629276e+01 lineto -closepath -gsave -4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor -fill -grestore -newpath -1.855283e+01 6.406676e+01 moveto -1.855283e+01 5.629276e+01 lineto -1.897704e+01 5.545845e+01 lineto -1.897704e+01 6.323245e+01 lineto -1.855283e+01 6.406676e+01 lineto -closepath -gsave -4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor -fill -grestore -newpath -1.855283e+01 7.184076e+01 moveto -1.855283e+01 6.406676e+01 lineto -1.897704e+01 6.323245e+01 lineto -1.897704e+01 7.100645e+01 lineto -1.855283e+01 7.184076e+01 lineto -closepath -gsave -4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor -fill -grestore -newpath -1.855283e+01 7.961476e+01 moveto -1.855283e+01 7.184076e+01 lineto -1.897704e+01 7.100645e+01 lineto -1.897704e+01 7.878045e+01 lineto -1.855283e+01 7.961476e+01 lineto -closepath -gsave -4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor -fill -grestore -newpath -1.855283e+01 8.738876e+01 moveto -1.855283e+01 7.961476e+01 lineto -1.897704e+01 7.878045e+01 lineto -1.897704e+01 8.655445e+01 lineto -1.855283e+01 8.738876e+01 lineto -closepath -gsave -4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor -fill -grestore -newpath -1.855283e+01 9.516276e+01 moveto -1.855283e+01 8.738876e+01 lineto -1.897704e+01 8.655445e+01 lineto -1.897704e+01 9.432845e+01 lineto -1.855283e+01 9.516276e+01 lineto -closepath -gsave -4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor -fill -grestore -newpath -1.897704e+01 2.436245e+01 moveto -1.897704e+01 1.658845e+01 lineto -1.968499e+01 1.577517e+01 lineto -1.968499e+01 2.354917e+01 lineto -1.897704e+01 2.436245e+01 lineto -closepath -gsave -4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor -fill -grestore -newpath -1.897704e+01 3.213645e+01 moveto -1.897704e+01 2.436245e+01 lineto -1.968499e+01 2.354917e+01 lineto -1.968499e+01 3.132317e+01 lineto -1.897704e+01 3.213645e+01 lineto -closepath -gsave -4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor -fill -grestore -newpath -1.897704e+01 3.991045e+01 moveto -1.897704e+01 3.213645e+01 lineto -1.968499e+01 3.132317e+01 lineto -1.968499e+01 3.909717e+01 lineto -1.897704e+01 3.991045e+01 lineto -closepath -gsave -4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor -fill -grestore -newpath -1.897704e+01 4.768445e+01 moveto -1.897704e+01 3.991045e+01 lineto -1.968499e+01 3.909717e+01 lineto -1.968499e+01 4.687117e+01 lineto -1.897704e+01 4.768445e+01 lineto -closepath -gsave -4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor -fill -grestore -newpath -1.897704e+01 5.545845e+01 moveto -1.897704e+01 4.768445e+01 lineto -1.968499e+01 4.687117e+01 lineto -1.968499e+01 5.464517e+01 lineto -1.897704e+01 5.545845e+01 lineto -closepath -gsave -4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor -fill -grestore -newpath -1.897704e+01 6.323245e+01 moveto -1.897704e+01 5.545845e+01 lineto -1.968499e+01 5.464517e+01 lineto -1.968499e+01 6.241917e+01 lineto -1.897704e+01 6.323245e+01 lineto -closepath -gsave -4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor -fill -grestore -newpath -1.897704e+01 7.100645e+01 moveto -1.897704e+01 6.323245e+01 lineto -1.968499e+01 6.241917e+01 lineto -1.968499e+01 7.019317e+01 lineto -1.897704e+01 7.100645e+01 lineto -closepath -gsave -4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor -fill -grestore -newpath -1.897704e+01 7.878045e+01 moveto -1.897704e+01 7.100645e+01 lineto -1.968499e+01 7.019317e+01 lineto -1.968499e+01 7.796717e+01 lineto -1.897704e+01 7.878045e+01 lineto -closepath -gsave -4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor -fill -grestore -newpath -1.897704e+01 8.655445e+01 moveto -1.897704e+01 7.878045e+01 lineto -1.968499e+01 7.796717e+01 lineto -1.968499e+01 8.574117e+01 lineto -1.897704e+01 8.655445e+01 lineto -closepath -gsave -4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor -fill -grestore -newpath -1.897704e+01 9.432845e+01 moveto -1.897704e+01 8.655445e+01 lineto -1.968499e+01 8.574117e+01 lineto -1.968499e+01 9.351517e+01 lineto -1.897704e+01 9.432845e+01 lineto -closepath -gsave -4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor -fill -grestore -newpath -1.968499e+01 2.354917e+01 moveto -1.968499e+01 1.577517e+01 lineto -2.067233e+01 1.498794e+01 lineto -2.067233e+01 2.276194e+01 lineto -1.968499e+01 2.354917e+01 lineto -closepath -gsave -4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor -fill -grestore -newpath -1.968499e+01 3.132317e+01 moveto -1.968499e+01 2.354917e+01 lineto -2.067233e+01 2.276194e+01 lineto -2.067233e+01 3.053594e+01 lineto -1.968499e+01 3.132317e+01 lineto -closepath -gsave -4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor -fill -grestore -newpath -1.968499e+01 3.909717e+01 moveto -1.968499e+01 3.132317e+01 lineto -2.067233e+01 3.053594e+01 lineto -2.067233e+01 3.830994e+01 lineto -1.968499e+01 3.909717e+01 lineto -closepath -gsave -4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor -fill -grestore -newpath -1.968499e+01 4.687117e+01 moveto -1.968499e+01 3.909717e+01 lineto -2.067233e+01 3.830994e+01 lineto -2.067233e+01 4.608394e+01 lineto -1.968499e+01 4.687117e+01 lineto -closepath -gsave -4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor -fill -grestore -newpath -1.968499e+01 5.464517e+01 moveto -1.968499e+01 4.687117e+01 lineto -2.067233e+01 4.608394e+01 lineto -2.067233e+01 5.385794e+01 lineto -1.968499e+01 5.464517e+01 lineto -closepath -gsave -4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor -fill -grestore -newpath -1.968499e+01 6.241917e+01 moveto -1.968499e+01 5.464517e+01 lineto -2.067233e+01 5.385794e+01 lineto -2.067233e+01 6.163194e+01 lineto -1.968499e+01 6.241917e+01 lineto -closepath -gsave -4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor -fill -grestore -newpath -1.968499e+01 7.019317e+01 moveto -1.968499e+01 6.241917e+01 lineto -2.067233e+01 6.163194e+01 lineto -2.067233e+01 6.940594e+01 lineto -1.968499e+01 7.019317e+01 lineto -closepath -gsave -4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor -fill -grestore -newpath -1.968499e+01 7.796717e+01 moveto -1.968499e+01 7.019317e+01 lineto -2.067233e+01 6.940594e+01 lineto -2.067233e+01 7.717994e+01 lineto -1.968499e+01 7.796717e+01 lineto -closepath -gsave -4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor -fill -grestore -newpath -1.968499e+01 8.574117e+01 moveto -1.968499e+01 7.796717e+01 lineto -2.067233e+01 7.717994e+01 lineto -2.067233e+01 8.495394e+01 lineto -1.968499e+01 8.574117e+01 lineto -closepath -gsave -4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor -fill -grestore -newpath -1.968499e+01 9.351517e+01 moveto -1.968499e+01 8.574117e+01 lineto -2.067233e+01 8.495394e+01 lineto -2.067233e+01 9.272794e+01 lineto -1.968499e+01 9.351517e+01 lineto -closepath -gsave -4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor -fill -grestore -newpath -2.067233e+01 2.276194e+01 moveto -2.067233e+01 1.498794e+01 lineto -2.193296e+01 1.423162e+01 lineto -2.193296e+01 2.200562e+01 lineto -2.067233e+01 2.276194e+01 lineto -closepath -gsave -4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor -fill -grestore -newpath -2.067233e+01 3.053594e+01 moveto -2.067233e+01 2.276194e+01 lineto -2.193296e+01 2.200562e+01 lineto -2.193296e+01 2.977962e+01 lineto -2.067233e+01 3.053594e+01 lineto -closepath -gsave -4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor -fill -grestore -newpath -2.067233e+01 3.830994e+01 moveto -2.067233e+01 3.053594e+01 lineto -2.193296e+01 2.977962e+01 lineto -2.193296e+01 3.755362e+01 lineto -2.067233e+01 3.830994e+01 lineto -closepath -gsave -4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor -fill -grestore -newpath -2.067233e+01 4.608394e+01 moveto -2.067233e+01 3.830994e+01 lineto -2.193296e+01 3.755362e+01 lineto -2.193296e+01 4.532762e+01 lineto -2.067233e+01 4.608394e+01 lineto -closepath -gsave -4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor -fill -grestore -newpath -2.067233e+01 5.385794e+01 moveto -2.067233e+01 4.608394e+01 lineto -2.193296e+01 4.532762e+01 lineto -2.193296e+01 5.310162e+01 lineto -2.067233e+01 5.385794e+01 lineto -closepath -gsave -4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor -fill -grestore -newpath -2.067233e+01 6.163194e+01 moveto -2.067233e+01 5.385794e+01 lineto -2.193296e+01 5.310162e+01 lineto -2.193296e+01 6.087562e+01 lineto -2.067233e+01 6.163194e+01 lineto -closepath -gsave -4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor -fill -grestore -newpath -2.067233e+01 6.940594e+01 moveto -2.067233e+01 6.163194e+01 lineto -2.193296e+01 6.087562e+01 lineto -2.193296e+01 6.864962e+01 lineto -2.067233e+01 6.940594e+01 lineto -closepath -gsave -4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor -fill -grestore -newpath -2.067233e+01 7.717994e+01 moveto -2.067233e+01 6.940594e+01 lineto -2.193296e+01 6.864962e+01 lineto -2.193296e+01 7.642362e+01 lineto -2.067233e+01 7.717994e+01 lineto -closepath -gsave -4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor -fill -grestore -newpath -2.067233e+01 8.495394e+01 moveto -2.067233e+01 7.717994e+01 lineto -2.193296e+01 7.642362e+01 lineto -2.193296e+01 8.419762e+01 lineto -2.067233e+01 8.495394e+01 lineto -closepath -gsave -4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor -fill -grestore -newpath -2.067233e+01 9.272794e+01 moveto -2.067233e+01 8.495394e+01 lineto -2.193296e+01 8.419762e+01 lineto -2.193296e+01 9.197162e+01 lineto -2.067233e+01 9.272794e+01 lineto -closepath -gsave -4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor -fill -grestore -newpath -2.193296e+01 2.200562e+01 moveto -2.193296e+01 1.423162e+01 lineto -2.345912e+01 1.351085e+01 lineto -2.345912e+01 2.128485e+01 lineto -2.193296e+01 2.200562e+01 lineto -closepath -gsave -4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor -fill -grestore -newpath -2.193296e+01 2.977962e+01 moveto -2.193296e+01 2.200562e+01 lineto -2.345912e+01 2.128485e+01 lineto -2.345912e+01 2.905885e+01 lineto -2.193296e+01 2.977962e+01 lineto -closepath -gsave -4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor -fill -grestore -newpath -2.193296e+01 3.755362e+01 moveto -2.193296e+01 2.977962e+01 lineto -2.345912e+01 2.905885e+01 lineto -2.345912e+01 3.683285e+01 lineto -2.193296e+01 3.755362e+01 lineto -closepath -gsave -4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor -fill -grestore -newpath -2.193296e+01 4.532762e+01 moveto -2.193296e+01 3.755362e+01 lineto -2.345912e+01 3.683285e+01 lineto -2.345912e+01 4.460685e+01 lineto -2.193296e+01 4.532762e+01 lineto -closepath -gsave -4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor -fill -grestore -newpath -2.193296e+01 5.310162e+01 moveto -2.193296e+01 4.532762e+01 lineto -2.345912e+01 4.460685e+01 lineto -2.345912e+01 5.238085e+01 lineto -2.193296e+01 5.310162e+01 lineto -closepath -gsave -4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor -fill -grestore -newpath -2.193296e+01 6.087562e+01 moveto -2.193296e+01 5.310162e+01 lineto -2.345912e+01 5.238085e+01 lineto -2.345912e+01 6.015485e+01 lineto -2.193296e+01 6.087562e+01 lineto -closepath -gsave -4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor -fill -grestore -newpath -2.193296e+01 6.864962e+01 moveto -2.193296e+01 6.087562e+01 lineto -2.345912e+01 6.015485e+01 lineto -2.345912e+01 6.792885e+01 lineto -2.193296e+01 6.864962e+01 lineto -closepath -gsave -4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor -fill -grestore -newpath -2.193296e+01 7.642362e+01 moveto -2.193296e+01 6.864962e+01 lineto -2.345912e+01 6.792885e+01 lineto -2.345912e+01 7.570285e+01 lineto -2.193296e+01 7.642362e+01 lineto -closepath -gsave -4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor -fill -grestore -newpath -2.193296e+01 8.419762e+01 moveto -2.193296e+01 7.642362e+01 lineto -2.345912e+01 7.570285e+01 lineto -2.345912e+01 8.347685e+01 lineto -2.193296e+01 8.419762e+01 lineto -closepath -gsave -4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor -fill -grestore -newpath -2.193296e+01 9.197162e+01 moveto -2.193296e+01 8.419762e+01 lineto -2.345912e+01 8.347685e+01 lineto -2.345912e+01 9.125085e+01 lineto -2.193296e+01 9.197162e+01 lineto -closepath -gsave -4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor -fill -grestore -newpath -2.345912e+01 2.128485e+01 moveto -2.345912e+01 1.351085e+01 lineto -2.524139e+01 1.283009e+01 lineto -2.524139e+01 2.060409e+01 lineto -2.345912e+01 2.128485e+01 lineto -closepath -gsave -5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor -fill -grestore -newpath -2.345912e+01 2.905885e+01 moveto -2.345912e+01 2.128485e+01 lineto -2.524139e+01 2.060409e+01 lineto -2.524139e+01 2.837809e+01 lineto -2.345912e+01 2.905885e+01 lineto -closepath -gsave -5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor -fill -grestore -newpath -2.345912e+01 3.683285e+01 moveto -2.345912e+01 2.905885e+01 lineto -2.524139e+01 2.837809e+01 lineto -2.524139e+01 3.615209e+01 lineto -2.345912e+01 3.683285e+01 lineto -closepath -gsave -5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor -fill -grestore -newpath -2.345912e+01 4.460685e+01 moveto -2.345912e+01 3.683285e+01 lineto -2.524139e+01 3.615209e+01 lineto -2.524139e+01 4.392609e+01 lineto -2.345912e+01 4.460685e+01 lineto -closepath -gsave -5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor -fill -grestore -newpath -2.345912e+01 5.238085e+01 moveto -2.345912e+01 4.460685e+01 lineto -2.524139e+01 4.392609e+01 lineto -2.524139e+01 5.170009e+01 lineto -2.345912e+01 5.238085e+01 lineto -closepath -gsave -5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor -fill -grestore -newpath -2.345912e+01 6.015485e+01 moveto -2.345912e+01 5.238085e+01 lineto -2.524139e+01 5.170009e+01 lineto -2.524139e+01 5.947409e+01 lineto -2.345912e+01 6.015485e+01 lineto -closepath -gsave -5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor -fill -grestore -newpath -2.345912e+01 6.792885e+01 moveto -2.345912e+01 6.015485e+01 lineto -2.524139e+01 5.947409e+01 lineto -2.524139e+01 6.724809e+01 lineto -2.345912e+01 6.792885e+01 lineto -closepath -gsave -5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor -fill -grestore -newpath -2.345912e+01 7.570285e+01 moveto -2.345912e+01 6.792885e+01 lineto -2.524139e+01 6.724809e+01 lineto -2.524139e+01 7.502209e+01 lineto -2.345912e+01 7.570285e+01 lineto -closepath -gsave -5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor -fill -grestore -newpath -2.345912e+01 8.347685e+01 moveto -2.345912e+01 7.570285e+01 lineto -2.524139e+01 7.502209e+01 lineto -2.524139e+01 8.279609e+01 lineto -2.345912e+01 8.347685e+01 lineto -closepath -gsave -5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor -fill -grestore -newpath -2.345912e+01 9.125085e+01 moveto -2.345912e+01 8.347685e+01 lineto -2.524139e+01 8.279609e+01 lineto -2.524139e+01 9.057009e+01 lineto -2.345912e+01 9.125085e+01 lineto -closepath -gsave -5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor -fill -grestore -newpath -2.524139e+01 2.060409e+01 moveto -2.524139e+01 1.283009e+01 lineto -2.726878e+01 1.219354e+01 lineto -2.726878e+01 1.996754e+01 lineto -2.524139e+01 2.060409e+01 lineto -closepath -gsave -5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor -fill -grestore -newpath -2.524139e+01 2.837809e+01 moveto -2.524139e+01 2.060409e+01 lineto -2.726878e+01 1.996754e+01 lineto -2.726878e+01 2.774154e+01 lineto -2.524139e+01 2.837809e+01 lineto -closepath -gsave -5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor -fill -grestore -newpath -2.524139e+01 3.615209e+01 moveto -2.524139e+01 2.837809e+01 lineto -2.726878e+01 2.774154e+01 lineto -2.726878e+01 3.551554e+01 lineto -2.524139e+01 3.615209e+01 lineto -closepath -gsave -5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor -fill -grestore -newpath -2.524139e+01 4.392609e+01 moveto -2.524139e+01 3.615209e+01 lineto -2.726878e+01 3.551554e+01 lineto -2.726878e+01 4.328954e+01 lineto -2.524139e+01 4.392609e+01 lineto -closepath -gsave -5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor -fill -grestore -newpath -2.524139e+01 5.170009e+01 moveto -2.524139e+01 4.392609e+01 lineto -2.726878e+01 4.328954e+01 lineto -2.726878e+01 5.106354e+01 lineto -2.524139e+01 5.170009e+01 lineto -closepath -gsave -5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor -fill -grestore -newpath -2.524139e+01 5.947409e+01 moveto -2.524139e+01 5.170009e+01 lineto -2.726878e+01 5.106354e+01 lineto -2.726878e+01 5.883754e+01 lineto -2.524139e+01 5.947409e+01 lineto -closepath -gsave -5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor -fill -grestore -newpath -2.524139e+01 6.724809e+01 moveto -2.524139e+01 5.947409e+01 lineto -2.726878e+01 5.883754e+01 lineto -2.726878e+01 6.661154e+01 lineto -2.524139e+01 6.724809e+01 lineto -closepath -gsave -5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor -fill -grestore -newpath -2.524139e+01 7.502209e+01 moveto -2.524139e+01 6.724809e+01 lineto -2.726878e+01 6.661154e+01 lineto -2.726878e+01 7.438554e+01 lineto -2.524139e+01 7.502209e+01 lineto -closepath -gsave -5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor -fill -grestore -newpath -2.524139e+01 8.279609e+01 moveto -2.524139e+01 7.502209e+01 lineto -2.726878e+01 7.438554e+01 lineto -2.726878e+01 8.215954e+01 lineto -2.524139e+01 8.279609e+01 lineto -closepath -gsave -5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor -fill -grestore -newpath -2.524139e+01 9.057009e+01 moveto -2.524139e+01 8.279609e+01 lineto -2.726878e+01 8.215954e+01 lineto -2.726878e+01 8.993354e+01 lineto -2.524139e+01 9.057009e+01 lineto -closepath -gsave -5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor -fill -grestore -newpath -2.726878e+01 1.996754e+01 moveto -2.726878e+01 1.219354e+01 lineto -2.95288e+01 1.160512e+01 lineto -2.95288e+01 1.937912e+01 lineto -2.726878e+01 1.996754e+01 lineto -closepath -gsave -5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor -fill -grestore -newpath -2.726878e+01 2.774154e+01 moveto -2.726878e+01 1.996754e+01 lineto -2.95288e+01 1.937912e+01 lineto -2.95288e+01 2.715312e+01 lineto -2.726878e+01 2.774154e+01 lineto -closepath -gsave -5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor -fill -grestore -newpath -2.726878e+01 3.551554e+01 moveto -2.726878e+01 2.774154e+01 lineto -2.95288e+01 2.715312e+01 lineto -2.95288e+01 3.492712e+01 lineto -2.726878e+01 3.551554e+01 lineto -closepath -gsave -5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor -fill -grestore -newpath -2.726878e+01 4.328954e+01 moveto -2.726878e+01 3.551554e+01 lineto -2.95288e+01 3.492712e+01 lineto -2.95288e+01 4.270112e+01 lineto -2.726878e+01 4.328954e+01 lineto -closepath -gsave -5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor -fill -grestore -newpath -2.726878e+01 5.106354e+01 moveto -2.726878e+01 4.328954e+01 lineto -2.95288e+01 4.270112e+01 lineto -2.95288e+01 5.047512e+01 lineto -2.726878e+01 5.106354e+01 lineto -closepath -gsave -5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor -fill -grestore -newpath -2.726878e+01 5.883754e+01 moveto -2.726878e+01 5.106354e+01 lineto -2.95288e+01 5.047512e+01 lineto -2.95288e+01 5.824912e+01 lineto -2.726878e+01 5.883754e+01 lineto -closepath -gsave -5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor -fill -grestore -newpath -2.726878e+01 6.661154e+01 moveto -2.726878e+01 5.883754e+01 lineto -2.95288e+01 5.824912e+01 lineto -2.95288e+01 6.602312e+01 lineto -2.726878e+01 6.661154e+01 lineto -closepath -gsave -5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor -fill -grestore -newpath -2.726878e+01 7.438554e+01 moveto -2.726878e+01 6.661154e+01 lineto -2.95288e+01 6.602312e+01 lineto -2.95288e+01 7.379712e+01 lineto -2.726878e+01 7.438554e+01 lineto -closepath -gsave -5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor -fill -grestore -newpath -2.726878e+01 8.215954e+01 moveto -2.726878e+01 7.438554e+01 lineto -2.95288e+01 7.379712e+01 lineto -2.95288e+01 8.157112e+01 lineto -2.726878e+01 8.215954e+01 lineto -closepath -gsave -5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor -fill -grestore -newpath -2.726878e+01 8.993354e+01 moveto -2.726878e+01 8.215954e+01 lineto -2.95288e+01 8.157112e+01 lineto -2.95288e+01 8.934512e+01 lineto -2.726878e+01 8.993354e+01 lineto -closepath -gsave -5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor -fill -grestore -newpath -2.95288e+01 1.937912e+01 moveto -2.95288e+01 1.160512e+01 lineto -3.200751e+01 1.106845e+01 lineto -3.200751e+01 1.884245e+01 lineto -2.95288e+01 1.937912e+01 lineto -closepath -gsave -5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor -fill -grestore -newpath -2.95288e+01 2.715312e+01 moveto -2.95288e+01 1.937912e+01 lineto -3.200751e+01 1.884245e+01 lineto -3.200751e+01 2.661645e+01 lineto -2.95288e+01 2.715312e+01 lineto -closepath -gsave -5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor -fill -grestore -newpath -2.95288e+01 3.492712e+01 moveto -2.95288e+01 2.715312e+01 lineto -3.200751e+01 2.661645e+01 lineto -3.200751e+01 3.439045e+01 lineto -2.95288e+01 3.492712e+01 lineto -closepath -gsave -5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor -fill -grestore -newpath -2.95288e+01 4.270112e+01 moveto -2.95288e+01 3.492712e+01 lineto -3.200751e+01 3.439045e+01 lineto -3.200751e+01 4.216445e+01 lineto -2.95288e+01 4.270112e+01 lineto -closepath -gsave -5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor -fill -grestore -newpath -2.95288e+01 5.047512e+01 moveto -2.95288e+01 4.270112e+01 lineto -3.200751e+01 4.216445e+01 lineto -3.200751e+01 4.993845e+01 lineto -2.95288e+01 5.047512e+01 lineto -closepath -gsave -5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor -fill -grestore -newpath -2.95288e+01 5.824912e+01 moveto -2.95288e+01 5.047512e+01 lineto -3.200751e+01 4.993845e+01 lineto -3.200751e+01 5.771245e+01 lineto -2.95288e+01 5.824912e+01 lineto -closepath -gsave -5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor -fill -grestore -newpath -2.95288e+01 6.602312e+01 moveto -2.95288e+01 5.824912e+01 lineto -3.200751e+01 5.771245e+01 lineto -3.200751e+01 6.548645e+01 lineto -2.95288e+01 6.602312e+01 lineto -closepath -gsave -5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor -fill -grestore -newpath -2.95288e+01 7.379712e+01 moveto -2.95288e+01 6.602312e+01 lineto -3.200751e+01 6.548645e+01 lineto -3.200751e+01 7.326045e+01 lineto -2.95288e+01 7.379712e+01 lineto -closepath -gsave -5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor -fill -grestore -newpath -2.95288e+01 8.157112e+01 moveto -2.95288e+01 7.379712e+01 lineto -3.200751e+01 7.326045e+01 lineto -3.200751e+01 8.103445e+01 lineto -2.95288e+01 8.157112e+01 lineto -closepath -gsave -5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor -fill -grestore -newpath -2.95288e+01 8.934512e+01 moveto -2.95288e+01 8.157112e+01 lineto -3.200751e+01 8.103445e+01 lineto -3.200751e+01 8.880845e+01 lineto -2.95288e+01 8.934512e+01 lineto -closepath -gsave -5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor -fill -grestore -newpath -3.200751e+01 1.884245e+01 moveto -3.200751e+01 1.106845e+01 lineto -3.468963e+01 1.058685e+01 lineto -3.468963e+01 1.836085e+01 lineto -3.200751e+01 1.884245e+01 lineto -closepath -gsave -5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor -fill -grestore -newpath -3.200751e+01 2.661645e+01 moveto -3.200751e+01 1.884245e+01 lineto -3.468963e+01 1.836085e+01 lineto -3.468963e+01 2.613485e+01 lineto -3.200751e+01 2.661645e+01 lineto -closepath -gsave -5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor -fill -grestore -newpath -3.200751e+01 3.439045e+01 moveto -3.200751e+01 2.661645e+01 lineto -3.468963e+01 2.613485e+01 lineto -3.468963e+01 3.390885e+01 lineto -3.200751e+01 3.439045e+01 lineto -closepath -gsave -5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor -fill -grestore -newpath -3.200751e+01 4.216445e+01 moveto -3.200751e+01 3.439045e+01 lineto -3.468963e+01 3.390885e+01 lineto -3.468963e+01 4.168285e+01 lineto -3.200751e+01 4.216445e+01 lineto -closepath -gsave -5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor -fill -grestore -newpath -3.200751e+01 4.993845e+01 moveto -3.200751e+01 4.216445e+01 lineto -3.468963e+01 4.168285e+01 lineto -3.468963e+01 4.945685e+01 lineto -3.200751e+01 4.993845e+01 lineto -closepath -gsave -5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor -fill -grestore -newpath -3.200751e+01 5.771245e+01 moveto -3.200751e+01 4.993845e+01 lineto -3.468963e+01 4.945685e+01 lineto -3.468963e+01 5.723085e+01 lineto -3.200751e+01 5.771245e+01 lineto -closepath -gsave -5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor -fill -grestore -newpath -3.200751e+01 6.548645e+01 moveto -3.200751e+01 5.771245e+01 lineto -3.468963e+01 5.723085e+01 lineto -3.468963e+01 6.500485e+01 lineto -3.200751e+01 6.548645e+01 lineto -closepath -gsave -5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor -fill -grestore -newpath -3.200751e+01 7.326045e+01 moveto -3.200751e+01 6.548645e+01 lineto -3.468963e+01 6.500485e+01 lineto -3.468963e+01 7.277885e+01 lineto -3.200751e+01 7.326045e+01 lineto -closepath -gsave -5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor -fill -grestore -newpath -3.200751e+01 8.103445e+01 moveto -3.200751e+01 7.326045e+01 lineto -3.468963e+01 7.277885e+01 lineto -3.468963e+01 8.055285e+01 lineto -3.200751e+01 8.103445e+01 lineto -closepath -gsave -5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor -fill -grestore -newpath -3.200751e+01 8.880845e+01 moveto -3.200751e+01 8.103445e+01 lineto -3.468963e+01 8.055285e+01 lineto -3.468963e+01 8.832685e+01 lineto -3.200751e+01 8.880845e+01 lineto -closepath -gsave -5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor -fill -grestore -newpath -3.468963e+01 1.836085e+01 moveto -3.468963e+01 1.058685e+01 lineto -3.755863e+01 1.016329e+01 lineto -3.755863e+01 1.793729e+01 lineto -3.468963e+01 1.836085e+01 lineto -closepath -gsave -6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor -fill -grestore -newpath -3.468963e+01 2.613485e+01 moveto -3.468963e+01 1.836085e+01 lineto -3.755863e+01 1.793729e+01 lineto -3.755863e+01 2.571129e+01 lineto -3.468963e+01 2.613485e+01 lineto -closepath -gsave -6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor -fill -grestore -newpath -3.468963e+01 3.390885e+01 moveto -3.468963e+01 2.613485e+01 lineto -3.755863e+01 2.571129e+01 lineto -3.755863e+01 3.348529e+01 lineto -3.468963e+01 3.390885e+01 lineto -closepath -gsave -6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor -fill -grestore -newpath -3.468963e+01 4.168285e+01 moveto -3.468963e+01 3.390885e+01 lineto -3.755863e+01 3.348529e+01 lineto -3.755863e+01 4.125929e+01 lineto -3.468963e+01 4.168285e+01 lineto -closepath -gsave -6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor -fill -grestore -newpath -3.468963e+01 4.945685e+01 moveto -3.468963e+01 4.168285e+01 lineto -3.755863e+01 4.125929e+01 lineto -3.755863e+01 4.903329e+01 lineto -3.468963e+01 4.945685e+01 lineto -closepath -gsave -6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor -fill -grestore -newpath -3.468963e+01 5.723085e+01 moveto -3.468963e+01 4.945685e+01 lineto -3.755863e+01 4.903329e+01 lineto -3.755863e+01 5.680729e+01 lineto -3.468963e+01 5.723085e+01 lineto -closepath -gsave -6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor -fill -grestore -newpath -3.468963e+01 6.500485e+01 moveto -3.468963e+01 5.723085e+01 lineto -3.755863e+01 5.680729e+01 lineto -3.755863e+01 6.458129e+01 lineto -3.468963e+01 6.500485e+01 lineto -closepath -gsave -6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor -fill -grestore -newpath -3.468963e+01 7.277885e+01 moveto -3.468963e+01 6.500485e+01 lineto -3.755863e+01 6.458129e+01 lineto -3.755863e+01 7.235529e+01 lineto -3.468963e+01 7.277885e+01 lineto -closepath -gsave -6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor -fill -grestore -newpath -3.468963e+01 8.055285e+01 moveto -3.468963e+01 7.277885e+01 lineto -3.755863e+01 7.235529e+01 lineto -3.755863e+01 8.012929e+01 lineto -3.468963e+01 8.055285e+01 lineto -closepath -gsave -6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor -fill -grestore -newpath -3.468963e+01 8.832685e+01 moveto -3.468963e+01 8.055285e+01 lineto -3.755863e+01 8.012929e+01 lineto -3.755863e+01 8.790329e+01 lineto -3.468963e+01 8.832685e+01 lineto -closepath -gsave -6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor -fill -grestore -newpath -3.755863e+01 1.793729e+01 moveto -3.755863e+01 1.016329e+01 lineto -4.059681e+01 9.80037e+00 lineto -4.059681e+01 1.757437e+01 lineto -3.755863e+01 1.793729e+01 lineto -closepath -gsave -6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor -fill -grestore -newpath -3.755863e+01 2.571129e+01 moveto -3.755863e+01 1.793729e+01 lineto -4.059681e+01 1.757437e+01 lineto -4.059681e+01 2.534837e+01 lineto -3.755863e+01 2.571129e+01 lineto -closepath -gsave -6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor -fill -grestore -newpath -3.755863e+01 3.348529e+01 moveto -3.755863e+01 2.571129e+01 lineto -4.059681e+01 2.534837e+01 lineto -4.059681e+01 3.312237e+01 lineto -3.755863e+01 3.348529e+01 lineto -closepath -gsave -6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor -fill -grestore -newpath -3.755863e+01 4.125929e+01 moveto -3.755863e+01 3.348529e+01 lineto -4.059681e+01 3.312237e+01 lineto -4.059681e+01 4.089637e+01 lineto -3.755863e+01 4.125929e+01 lineto -closepath -gsave -6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor -fill -grestore -newpath -3.755863e+01 4.903329e+01 moveto -3.755863e+01 4.125929e+01 lineto -4.059681e+01 4.089637e+01 lineto -4.059681e+01 4.867037e+01 lineto -3.755863e+01 4.903329e+01 lineto -closepath -gsave -6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor -fill -grestore -newpath -3.755863e+01 5.680729e+01 moveto -3.755863e+01 4.903329e+01 lineto -4.059681e+01 4.867037e+01 lineto -4.059681e+01 5.644437e+01 lineto -3.755863e+01 5.680729e+01 lineto -closepath -gsave -6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor -fill -grestore -newpath -3.755863e+01 6.458129e+01 moveto -3.755863e+01 5.680729e+01 lineto -4.059681e+01 5.644437e+01 lineto -4.059681e+01 6.421837e+01 lineto -3.755863e+01 6.458129e+01 lineto -closepath -gsave -6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor -fill -grestore -newpath -3.755863e+01 7.235529e+01 moveto -3.755863e+01 6.458129e+01 lineto -4.059681e+01 6.421837e+01 lineto -4.059681e+01 7.199237e+01 lineto -3.755863e+01 7.235529e+01 lineto -closepath -gsave -6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor -fill -grestore -newpath -3.755863e+01 8.012929e+01 moveto -3.755863e+01 7.235529e+01 lineto -4.059681e+01 7.199237e+01 lineto -4.059681e+01 7.976637e+01 lineto -3.755863e+01 8.012929e+01 lineto -closepath -gsave -6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor -fill -grestore -newpath -3.755863e+01 8.790329e+01 moveto -3.755863e+01 8.012929e+01 lineto -4.059681e+01 7.976637e+01 lineto -4.059681e+01 8.754037e+01 lineto -3.755863e+01 8.790329e+01 lineto -closepath -gsave -6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor -fill -grestore -newpath -4.059681e+01 1.757437e+01 moveto -4.059681e+01 9.80037e+00 lineto -4.378544e+01 9.500336e+00 lineto -4.378544e+01 1.727434e+01 lineto -4.059681e+01 1.757437e+01 lineto -closepath -gsave -6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor -fill -grestore -newpath -4.059681e+01 2.534837e+01 moveto -4.059681e+01 1.757437e+01 lineto -4.378544e+01 1.727434e+01 lineto -4.378544e+01 2.504834e+01 lineto -4.059681e+01 2.534837e+01 lineto -closepath -gsave -6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor -fill -grestore -newpath -4.059681e+01 3.312237e+01 moveto -4.059681e+01 2.534837e+01 lineto -4.378544e+01 2.504834e+01 lineto -4.378544e+01 3.282234e+01 lineto -4.059681e+01 3.312237e+01 lineto -closepath -gsave -6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor -fill -grestore -newpath -4.059681e+01 4.089637e+01 moveto -4.059681e+01 3.312237e+01 lineto -4.378544e+01 3.282234e+01 lineto -4.378544e+01 4.059634e+01 lineto -4.059681e+01 4.089637e+01 lineto -closepath -gsave -6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor -fill -grestore -newpath -4.059681e+01 4.867037e+01 moveto -4.059681e+01 4.089637e+01 lineto -4.378544e+01 4.059634e+01 lineto -4.378544e+01 4.837034e+01 lineto -4.059681e+01 4.867037e+01 lineto -closepath -gsave -6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor -fill -grestore -newpath -4.059681e+01 5.644437e+01 moveto -4.059681e+01 4.867037e+01 lineto -4.378544e+01 4.837034e+01 lineto -4.378544e+01 5.614434e+01 lineto -4.059681e+01 5.644437e+01 lineto -closepath -gsave -6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor -fill -grestore -newpath -4.059681e+01 6.421837e+01 moveto -4.059681e+01 5.644437e+01 lineto -4.378544e+01 5.614434e+01 lineto -4.378544e+01 6.391834e+01 lineto -4.059681e+01 6.421837e+01 lineto -closepath -gsave -6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor -fill -grestore -newpath -4.059681e+01 7.199237e+01 moveto -4.059681e+01 6.421837e+01 lineto -4.378544e+01 6.391834e+01 lineto -4.378544e+01 7.169234e+01 lineto -4.059681e+01 7.199237e+01 lineto -closepath -gsave -6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor -fill -grestore -newpath -4.059681e+01 7.976637e+01 moveto -4.059681e+01 7.199237e+01 lineto -4.378544e+01 7.169234e+01 lineto -4.378544e+01 7.946634e+01 lineto -4.059681e+01 7.976637e+01 lineto -closepath -gsave -6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor -fill -grestore -newpath -4.059681e+01 8.754037e+01 moveto -4.059681e+01 7.976637e+01 lineto -4.378544e+01 7.946634e+01 lineto -4.378544e+01 8.724034e+01 lineto -4.059681e+01 8.754037e+01 lineto -closepath -gsave -6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor -fill -grestore -newpath -4.378544e+01 1.727434e+01 moveto -4.378544e+01 9.500336e+00 lineto -4.710487e+01 9.265036e+00 lineto -4.710487e+01 1.703904e+01 lineto -4.378544e+01 1.727434e+01 lineto -closepath -gsave -6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor -fill -grestore -newpath -4.378544e+01 2.504834e+01 moveto -4.378544e+01 1.727434e+01 lineto -4.710487e+01 1.703904e+01 lineto -4.710487e+01 2.481304e+01 lineto -4.378544e+01 2.504834e+01 lineto -closepath -gsave -6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor -fill -grestore -newpath -4.378544e+01 3.282234e+01 moveto -4.378544e+01 2.504834e+01 lineto -4.710487e+01 2.481304e+01 lineto -4.710487e+01 3.258704e+01 lineto -4.378544e+01 3.282234e+01 lineto -closepath -gsave -6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor -fill -grestore -newpath -4.378544e+01 4.059634e+01 moveto -4.378544e+01 3.282234e+01 lineto -4.710487e+01 3.258704e+01 lineto -4.710487e+01 4.036104e+01 lineto -4.378544e+01 4.059634e+01 lineto -closepath -gsave -6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor -fill -grestore -newpath -4.378544e+01 4.837034e+01 moveto -4.378544e+01 4.059634e+01 lineto -4.710487e+01 4.036104e+01 lineto -4.710487e+01 4.813504e+01 lineto -4.378544e+01 4.837034e+01 lineto -closepath -gsave -6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor -fill -grestore -newpath -4.378544e+01 5.614434e+01 moveto -4.378544e+01 4.837034e+01 lineto -4.710487e+01 4.813504e+01 lineto -4.710487e+01 5.590904e+01 lineto -4.378544e+01 5.614434e+01 lineto -closepath -gsave -6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor -fill -grestore -newpath -4.378544e+01 6.391834e+01 moveto -4.378544e+01 5.614434e+01 lineto -4.710487e+01 5.590904e+01 lineto -4.710487e+01 6.368304e+01 lineto -4.378544e+01 6.391834e+01 lineto -closepath -gsave -6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor -fill -grestore -newpath -4.378544e+01 7.169234e+01 moveto -4.378544e+01 6.391834e+01 lineto -4.710487e+01 6.368304e+01 lineto -4.710487e+01 7.145704e+01 lineto -4.378544e+01 7.169234e+01 lineto -closepath -gsave -6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor -fill -grestore -newpath -4.378544e+01 7.946634e+01 moveto -4.378544e+01 7.169234e+01 lineto -4.710487e+01 7.145704e+01 lineto -4.710487e+01 7.923104e+01 lineto -4.378544e+01 7.946634e+01 lineto -closepath -gsave -6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor -fill -grestore -newpath -4.378544e+01 8.724034e+01 moveto -4.378544e+01 7.946634e+01 lineto -4.710487e+01 7.923104e+01 lineto -4.710487e+01 8.700504e+01 lineto -4.378544e+01 8.724034e+01 lineto -closepath -gsave -6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor -fill -grestore -newpath -4.710487e+01 1.703904e+01 moveto -4.710487e+01 9.265036e+00 lineto -5.053463e+01 9.095921e+00 lineto -5.053463e+01 1.686992e+01 lineto -4.710487e+01 1.703904e+01 lineto -closepath -gsave -6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor -fill -grestore -newpath -4.710487e+01 2.481304e+01 moveto -4.710487e+01 1.703904e+01 lineto -5.053463e+01 1.686992e+01 lineto -5.053463e+01 2.464392e+01 lineto -4.710487e+01 2.481304e+01 lineto -closepath -gsave -6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor -fill -grestore -newpath -4.710487e+01 3.258704e+01 moveto -4.710487e+01 2.481304e+01 lineto -5.053463e+01 2.464392e+01 lineto -5.053463e+01 3.241792e+01 lineto -4.710487e+01 3.258704e+01 lineto -closepath -gsave -6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor -fill -grestore -newpath -4.710487e+01 4.036104e+01 moveto -4.710487e+01 3.258704e+01 lineto -5.053463e+01 3.241792e+01 lineto -5.053463e+01 4.019192e+01 lineto -4.710487e+01 4.036104e+01 lineto -closepath -gsave -6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor -fill -grestore -newpath -4.710487e+01 4.813504e+01 moveto -4.710487e+01 4.036104e+01 lineto -5.053463e+01 4.019192e+01 lineto -5.053463e+01 4.796592e+01 lineto -4.710487e+01 4.813504e+01 lineto -closepath -gsave -6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor -fill -grestore -newpath -4.710487e+01 5.590904e+01 moveto -4.710487e+01 4.813504e+01 lineto -5.053463e+01 4.796592e+01 lineto -5.053463e+01 5.573992e+01 lineto -4.710487e+01 5.590904e+01 lineto -closepath -gsave -6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor -fill -grestore -newpath -4.710487e+01 6.368304e+01 moveto -4.710487e+01 5.590904e+01 lineto -5.053463e+01 5.573992e+01 lineto -5.053463e+01 6.351392e+01 lineto -4.710487e+01 6.368304e+01 lineto -closepath -gsave -6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor -fill -grestore -newpath -4.710487e+01 7.145704e+01 moveto -4.710487e+01 6.368304e+01 lineto -5.053463e+01 6.351392e+01 lineto -5.053463e+01 7.128792e+01 lineto -4.710487e+01 7.145704e+01 lineto -closepath -gsave -6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor -fill -grestore -newpath -4.710487e+01 7.923104e+01 moveto -4.710487e+01 7.145704e+01 lineto -5.053463e+01 7.128792e+01 lineto -5.053463e+01 7.906192e+01 lineto -4.710487e+01 7.923104e+01 lineto -closepath -gsave -6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor -fill -grestore -newpath -4.710487e+01 8.700504e+01 moveto -4.710487e+01 7.923104e+01 lineto -5.053463e+01 7.906192e+01 lineto -5.053463e+01 8.683592e+01 lineto -4.710487e+01 8.700504e+01 lineto -closepath -gsave -6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor -fill -grestore -newpath -5.053463e+01 1.686992e+01 moveto -5.053463e+01 9.095921e+00 lineto -5.405357e+01 8.994033e+00 lineto -5.405357e+01 1.676803e+01 lineto -5.053463e+01 1.686992e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -5.053463e+01 2.464392e+01 moveto -5.053463e+01 1.686992e+01 lineto -5.405357e+01 1.676803e+01 lineto -5.405357e+01 2.454203e+01 lineto -5.053463e+01 2.464392e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -5.053463e+01 3.241792e+01 moveto -5.053463e+01 2.464392e+01 lineto -5.405357e+01 2.454203e+01 lineto -5.405357e+01 3.231603e+01 lineto -5.053463e+01 3.241792e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -5.053463e+01 4.019192e+01 moveto -5.053463e+01 3.241792e+01 lineto -5.405357e+01 3.231603e+01 lineto -5.405357e+01 4.009003e+01 lineto -5.053463e+01 4.019192e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -5.053463e+01 4.796592e+01 moveto -5.053463e+01 4.019192e+01 lineto -5.405357e+01 4.009003e+01 lineto -5.405357e+01 4.786403e+01 lineto -5.053463e+01 4.796592e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -5.053463e+01 5.573992e+01 moveto -5.053463e+01 4.796592e+01 lineto -5.405357e+01 4.786403e+01 lineto -5.405357e+01 5.563803e+01 lineto -5.053463e+01 5.573992e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -5.053463e+01 6.351392e+01 moveto -5.053463e+01 5.573992e+01 lineto -5.405357e+01 5.563803e+01 lineto -5.405357e+01 6.341203e+01 lineto -5.053463e+01 6.351392e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -5.053463e+01 7.128792e+01 moveto -5.053463e+01 6.351392e+01 lineto -5.405357e+01 6.341203e+01 lineto -5.405357e+01 7.118603e+01 lineto -5.053463e+01 7.128792e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -5.053463e+01 7.906192e+01 moveto -5.053463e+01 7.128792e+01 lineto -5.405357e+01 7.118603e+01 lineto -5.405357e+01 7.896003e+01 lineto -5.053463e+01 7.906192e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -5.053463e+01 8.683592e+01 moveto -5.053463e+01 7.906192e+01 lineto -5.405357e+01 7.896003e+01 lineto -5.405357e+01 8.673403e+01 lineto -5.053463e+01 8.683592e+01 lineto -closepath -gsave -6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor -fill -grestore -newpath -5.405357e+01 1.676803e+01 moveto -5.405357e+01 8.994033e+00 lineto -5.764e+01 8.96e+00 lineto -5.764e+01 1.6734e+01 lineto -5.405357e+01 1.676803e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -5.405357e+01 2.454203e+01 moveto -5.405357e+01 1.676803e+01 lineto -5.764e+01 1.6734e+01 lineto -5.764e+01 2.4508e+01 lineto -5.405357e+01 2.454203e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -5.405357e+01 3.231603e+01 moveto -5.405357e+01 2.454203e+01 lineto -5.764e+01 2.4508e+01 lineto -5.764e+01 3.2282e+01 lineto -5.405357e+01 3.231603e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -5.405357e+01 4.009003e+01 moveto -5.405357e+01 3.231603e+01 lineto -5.764e+01 3.2282e+01 lineto -5.764e+01 4.0056e+01 lineto -5.405357e+01 4.009003e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -5.405357e+01 4.786403e+01 moveto -5.405357e+01 4.009003e+01 lineto -5.764e+01 4.0056e+01 lineto -5.764e+01 4.783e+01 lineto -5.405357e+01 4.786403e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -5.405357e+01 5.563803e+01 moveto -5.405357e+01 4.786403e+01 lineto -5.764e+01 4.783e+01 lineto -5.764e+01 5.5604e+01 lineto -5.405357e+01 5.563803e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -5.405357e+01 6.341203e+01 moveto -5.405357e+01 5.563803e+01 lineto -5.764e+01 5.5604e+01 lineto -5.764e+01 6.3378e+01 lineto -5.405357e+01 6.341203e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -5.405357e+01 7.118603e+01 moveto -5.405357e+01 6.341203e+01 lineto -5.764e+01 6.3378e+01 lineto -5.764e+01 7.1152e+01 lineto -5.405357e+01 7.118603e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -5.405357e+01 7.896003e+01 moveto -5.405357e+01 7.118603e+01 lineto -5.764e+01 7.1152e+01 lineto -5.764e+01 7.8926e+01 lineto -5.405357e+01 7.896003e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -5.405357e+01 8.673403e+01 moveto -5.405357e+01 7.896003e+01 lineto -5.764e+01 7.8926e+01 lineto -5.764e+01 8.67e+01 lineto -5.405357e+01 8.673403e+01 lineto -closepath -gsave -7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor -fill -grestore -newpath -5.764e+01 8.67e+01 moveto -6.054289e+01 8.672178e+01 lineto -6.346336e+01 8.678705e+01 lineto -6.638991e+01 8.689555e+01 lineto -6.931096e+01 8.704684e+01 lineto -7.221501e+01 8.724034e+01 lineto -7.509057e+01 8.747527e+01 lineto -7.792632e+01 8.775071e+01 lineto -8.071105e+01 8.806557e+01 lineto -8.343378e+01 8.841862e+01 lineto -8.608376e+01 8.880845e+01 lineto -8.865053e+01 8.923353e+01 lineto -9.112396e+01 8.969219e+01 lineto -9.349429e+01 9.01826e+01 lineto -9.575217e+01 9.070284e+01 lineto -9.788868e+01 9.125085e+01 lineto -9.98954e+01 9.182447e+01 lineto -1.017644e+02 9.242144e+01 lineto -1.034883e+02 9.30394e+01 lineto -1.050603e+02 9.36759e+01 lineto -1.064742e+02 9.432845e+01 lineto -1.077245e+02 9.499446e+01 lineto -1.088061e+02 9.567131e+01 lineto -1.097148e+02 9.635632e+01 lineto -1.104471e+02 9.704679e+01 lineto -1.11e+02 9.774e+01 lineto -1.113714e+02 9.843321e+01 lineto -1.115597e+02 9.912368e+01 lineto -1.115643e+02 9.980869e+01 lineto -1.113852e+02 1.004855e+02 lineto -1.11023e+02 1.011515e+02 lineto -1.104791e+02 1.018041e+02 lineto -1.097558e+02 1.024406e+02 lineto -1.088558e+02 1.030586e+02 lineto -1.077828e+02 1.036555e+02 lineto -1.065409e+02 1.042291e+02 lineto -1.05135e+02 1.047772e+02 lineto -1.035708e+02 1.052974e+02 lineto -1.018544e+02 1.057878e+02 lineto -9.999248e+01 1.062465e+02 lineto -9.799249e+01 1.066715e+02 lineto -9.586229e+01 1.070614e+02 lineto -9.361029e+01 1.074144e+02 lineto -9.124537e+01 1.077293e+02 lineto -8.877688e+01 1.080047e+02 lineto -8.621456e+01 1.082397e+02 lineto -8.356851e+01 1.084332e+02 lineto -8.084917e+01 1.085845e+02 lineto -7.806729e+01 1.086929e+02 lineto -7.523384e+01 1.087582e+02 lineto -7.236e+01 1.0878e+02 lineto -6.945711e+01 1.087582e+02 lineto -6.653664e+01 1.086929e+02 lineto -6.361009e+01 1.085845e+02 lineto -6.068904e+01 1.084332e+02 lineto -5.778499e+01 1.082397e+02 lineto -5.490943e+01 1.080047e+02 lineto -5.207368e+01 1.077293e+02 lineto -4.928895e+01 1.074144e+02 lineto -4.656622e+01 1.070614e+02 lineto -4.391624e+01 1.066715e+02 lineto -4.134947e+01 1.062465e+02 lineto -3.887604e+01 1.057878e+02 lineto -3.650571e+01 1.052974e+02 lineto -3.424783e+01 1.047772e+02 lineto -3.211132e+01 1.042291e+02 lineto -3.01046e+01 1.036555e+02 lineto -2.82356e+01 1.030586e+02 lineto -2.651169e+01 1.024406e+02 lineto -2.493968e+01 1.018041e+02 lineto -2.352577e+01 1.011515e+02 lineto -2.227553e+01 1.004855e+02 lineto -2.119391e+01 9.980869e+01 lineto -2.028518e+01 9.912368e+01 lineto -1.955291e+01 9.843321e+01 lineto -1.9e+01 9.774e+01 lineto -1.862863e+01 9.704679e+01 lineto -1.844027e+01 9.635632e+01 lineto -1.843566e+01 9.567131e+01 lineto -1.861482e+01 9.499446e+01 lineto -1.897704e+01 9.432845e+01 lineto -1.952088e+01 9.36759e+01 lineto -2.024422e+01 9.30394e+01 lineto -2.114419e+01 9.242144e+01 lineto -2.221723e+01 9.182447e+01 lineto -2.345912e+01 9.125085e+01 lineto -2.486495e+01 9.070284e+01 lineto -2.642918e+01 9.01826e+01 lineto -2.814562e+01 8.969219e+01 lineto -3.000752e+01 8.923353e+01 lineto -3.200751e+01 8.880845e+01 lineto -3.413771e+01 8.841862e+01 lineto -3.638971e+01 8.806557e+01 lineto -3.875463e+01 8.775071e+01 lineto -4.122312e+01 8.747527e+01 lineto -4.378544e+01 8.724034e+01 lineto -4.643149e+01 8.704684e+01 lineto -4.915083e+01 8.689555e+01 lineto -5.193271e+01 8.678705e+01 lineto -5.476616e+01 8.672178e+01 lineto -5.764e+01 8.67e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 1 setrgbcolor -fill -grestore -gsave -6.0e-01 6.0e-01 6.0e-01 setrgbcolor -stroke -grestore -newpath -1.842235e+01 1.845074e+01 moveto -1.846202e+01 1.776745e+01 lineto -1.868536e+01 1.709297e+01 lineto -1.909148e+01 1.642996e+01 lineto -1.967878e+01 1.578104e+01 lineto -2.044495e+01 1.514878e+01 lineto -2.138695e+01 1.453565e+01 lineto -2.250107e+01 1.39441e+01 lineto -2.378292e+01 1.337644e+01 lineto -2.522743e+01 1.283492e+01 lineto -2.68289e+01 1.232169e+01 lineto -2.858102e+01 1.183875e+01 lineto -3.047687e+01 1.138802e+01 lineto -3.250896e+01 1.097128e+01 lineto -3.466929e+01 1.059017e+01 lineto -3.694931e+01 1.02462e+01 lineto -3.934004e+01 9.940723e+00 lineto -4.183203e+01 9.674945e+00 lineto -4.441546e+01 9.449915e+00 lineto -4.708013e+01 9.266521e+00 lineto -4.981552e+01 9.125487e+00 lineto -5.261083e+01 9.02737e+00 lineto -5.545504e+01 8.972557e+00 lineto -5.833692e+01 8.961264e+00 lineto -6.124509e+01 8.993536e+00 lineto -6.416808e+01 9.069246e+00 lineto -6.709436e+01 9.188094e+00 lineto -7.001237e+01 9.349612e+00 lineto -7.29106e+01 9.553162e+00 lineto -7.577761e+01 9.797941e+00 lineto -7.860209e+01 1.008298e+01 lineto -8.137288e+01 1.040716e+01 lineto -8.407906e+01 1.07692e+01 lineto -8.670994e+01 1.116767e+01 lineto -8.925514e+01 1.160099e+01 lineto -9.170462e+01 1.206747e+01 lineto -9.404871e+01 1.256525e+01 lineto -9.627816e+01 1.309237e+01 lineto -9.838416e+01 1.364675e+01 lineto -1.003584e+02 1.42262e+01 lineto -1.021931e+02 1.482844e+01 lineto -1.03881e+02 1.545109e+01 lineto -1.054155e+02 1.60917e+01 lineto -1.067905e+02 1.674772e+01 lineto -1.080006e+02 1.741659e+01 lineto -1.090409e+02 1.809565e+01 lineto -1.099074e+02 1.878222e+01 lineto -1.105967e+02 1.94736e+01 lineto -1.111061e+02 2.016706e+01 lineto -1.114335e+02 2.085986e+01 lineto -1.115777e+02 2.154926e+01 lineto -gsave -6.0e-01 6.0e-01 6.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 9.774e+01 moveto -1.11e+02 9.774e+01 lineto -gsave stroke grestore -gsave -newpath -0 0 0 setrgbcolor - -% Comment: canvas init - -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -1.0e+01 setmiterlimit -gsave -/CMMI12 findfont -12.0 scalefont -setfont -8.292611e+01 1.0044e+02 moveto -gsave -[ 0.9 0.0 0.0 0.9 32.1541712779 -553.181917808 ] concat -(\162) show -grestore -grestore -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -grestore -gsave -newpath -0 0 0 setrgbcolor - -% Comment: canvas init - -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -1.0e+01 setmiterlimit -gsave -/CMMI12 findfont -12.0 scalefont -setfont -1.146e+02 5.513401e+01 moveto -gsave -[ 0.9 0.0 0.0 0.9 63.8280595715 -598.487903855 ] concat -(\150) show -grestore -grestore -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -grestore -grestore -grestore showpage - -% --------------------------------------------------------- - -%%Trailer -%%EOF +%!PS-Adobe-2.0 EPSF-3.0 +%%BoundingBox: 0 0 130 120 +%%Pages: 1 +%%PageOrder: Ascend + +%%BeginProlog +%%BeginProcSet: +/ReEncodeFont { exch findfont << >> copy dup 3 2 roll /Encoding exch put definefont } def +%%EndProcSet +%%BeginFont: CMMI12 +%!PS-AdobeFont-1.0: CMMI12 003.002 +%%Title: CMMI12 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMMI12. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments + +FontDirectory/CMMI12 known{/CMMI12 findfont dup/UniqueID known{dup +/UniqueID get 5087386 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /CMMI12 def +/FontBBox {-31 -250 1026 750 }readonly def +/UniqueID 5087386 def +/PaintType 0 def +/FontInfo 10 dict dup begin + /version (003.002) readonly def + /Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMMI12.) readonly def + /FullName (CMMI12) readonly def + /FamilyName (Computer Modern) readonly def + /Weight (Medium) readonly def + /ItalicAngle -14.04 def + /isFixedPitch false def + /UnderlinePosition -100 def + /UnderlineThickness 50 def + /ascent 750 def +end readonly def +/Encoding 256 array + 0 1 255 { 1 index exch /.notdef put} for +dup 0 /Gamma put +dup 1 /Delta put +dup 2 /Theta put +dup 3 /Lambda put +dup 4 /Xi put +dup 5 /Pi put +dup 6 /Sigma put +dup 7 /Upsilon put +dup 8 /Phi put +dup 9 /Psi put +dup 10 /Omega put +dup 11 /alpha put +dup 12 /beta put +dup 13 /gamma put +dup 14 /delta put +dup 15 /epsilon1 put +dup 16 /zeta put +dup 17 /eta put +dup 18 /theta put +dup 19 /iota put +dup 20 /kappa put +dup 21 /lambda put +dup 22 /mu put +dup 23 /nu put +dup 24 /xi put +dup 25 /pi put +dup 26 /rho put +dup 27 /sigma put +dup 28 /tau put +dup 29 /upsilon put +dup 30 /phi put +dup 31 /chi put +dup 32 /psi put +dup 33 /omega put +dup 34 /epsilon put +dup 35 /theta1 put +dup 36 /pi1 put +dup 37 /rho1 put +dup 38 /sigma1 put +dup 39 /phi1 put +dup 40 /arrowlefttophalf put +dup 41 /arrowleftbothalf put +dup 42 /arrowrighttophalf put +dup 43 /arrowrightbothalf put +dup 44 /arrowhookleft put +dup 45 /arrowhookright put +dup 46 /triangleright put +dup 47 /triangleleft put +dup 48 /zerooldstyle put +dup 49 /oneoldstyle put +dup 50 /twooldstyle put +dup 51 /threeoldstyle put +dup 52 /fouroldstyle put +dup 53 /fiveoldstyle put +dup 54 /sixoldstyle put +dup 55 /sevenoldstyle put +dup 56 /eightoldstyle put +dup 57 /nineoldstyle put +dup 58 /period put +dup 59 /comma put +dup 60 /less put +dup 61 /slash put +dup 62 /greater put +dup 63 /star put +dup 64 /partialdiff put +dup 65 /A put +dup 66 /B put +dup 67 /C put +dup 68 /D put +dup 69 /E put +dup 70 /F put +dup 71 /G put +dup 72 /H put +dup 73 /I put +dup 74 /J put +dup 75 /K put +dup 76 /L put +dup 77 /M put +dup 78 /N put +dup 79 /O put +dup 80 /P put +dup 81 /Q put +dup 82 /R put +dup 83 /S put +dup 84 /T put +dup 85 /U put +dup 86 /V put +dup 87 /W put +dup 88 /X put +dup 89 /Y put +dup 90 /Z put +dup 91 /flat put +dup 92 /natural put +dup 93 /sharp put +dup 94 /slurbelow put +dup 95 /slurabove put +dup 96 /lscript put +dup 97 /a put +dup 98 /b put +dup 99 /c put +dup 100 /d put +dup 101 /e put +dup 102 /f put +dup 103 /g put +dup 104 /h put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 108 /l put +dup 109 /m put +dup 110 /n put +dup 111 /o put +dup 112 /p put +dup 113 /q put +dup 114 /r put +dup 115 /s put +dup 116 /t put +dup 117 /u put +dup 118 /v put +dup 119 /w put +dup 120 /x put +dup 121 /y put +dup 122 /z put +dup 123 /dotlessi put +dup 124 /dotlessj put +dup 125 /weierstrass put +dup 126 /vector put +dup 127 /tie put +dup 128 /psi put +dup 160 /space put +dup 161 /Gamma put +dup 162 /Delta put +dup 163 /Theta put +dup 164 /Lambda put +dup 165 /Xi put +dup 166 /Pi put +dup 167 /Sigma put +dup 168 /Upsilon put +dup 169 /Phi put +dup 170 /Psi put +dup 173 /Omega put +dup 174 /alpha put +dup 175 /beta put +dup 176 /gamma put +dup 177 /delta put +dup 178 /epsilon1 put +dup 179 /zeta put +dup 180 /eta put +dup 181 /theta put +dup 182 /iota put +dup 183 /kappa put +dup 184 /lambda put +dup 185 /mu put +dup 186 /nu put +dup 187 /xi put +dup 188 /pi put +dup 189 /rho put +dup 190 /sigma put +dup 191 /tau put +dup 192 /upsilon put +dup 193 /phi put +dup 194 /chi put +dup 195 /psi put +dup 196 /tie put +readonly def +currentdict end +currentfile eexec +D9D66F633B846AB284BCF8B0411B772DE5CE3C05EF98F858322DCEA45E0874C545D25FE192539D9C +DA4BAA46D9C431465E6ABF4E4271F89EDED7F37BE4B31FB47934F62D1F46E8671F6290D6FFF601D4 +937BF71C22D60FB800A15796421E3AA772C500501D8B10C0093F6467C553250F7C27B2C3D8937726 +14A846374A85BC4EBEC0B0A89C4C161C3956ECE25274B962C854E535F418279FE26D8F83E38C5C89 +974E9A224B3CBEF90A9277AF10E0C7CAC8DC11C41DC18B814A7682E5F024867411453BC81C443407 +AF41AF8A831A85A700CFC65E2181BCBFBFE3573BF464E2BE882A715BE109B49A15C32F62CF5C1025 +7E5EA12C24F72137EB63297C28625AC32274038691582D6D75FE8F895A0813982793297E49CC9B54 +053BA2ABD429156A7FFCD7B19DAA44E2107720921B74185AE507AC33141819511A6AC20BC20FB541 +0B5AAEC5743673E9E39C1976D5E6EB4E4D8E2B31BEA302E5AF1B2FBCEC6D9E69987970648B927623 +2093695D55A806D87648B1749CB537E78BB08AA83A5001F7609CD1D17FFA1043EB3807AF0B596AF3 +8C91A9675E2A53196FEF45849C95F7DC182A5EC0EC4435A8A4B6E1CDBF9A5AF457564EA72BF85228 +EB6FD244F25135360DD3EBEDA99D94828F447D52D011A8FC8B8BC124A4B367EC860C5F7CDBE58563 +4A1ACD80E37B6F2D5F33AF5A2C0814652FA37D0C6A99767C561253AF8DA3A1279D421AE11C133004 +DB273FDDC2134ECA4CC50296220A4729E4E73003AA88CE151F57F8C5DFEE1A8B3A74D7CB142B4F7A +128A4B0FD028B71FCF59841D3E8CB0450A0AB47B927D944D94C5DA562310C79E2321106D6B90FBD0 +4F5EB787AC050578011A0B24AE534B93B4108D982736464ACF5B77071ACD59B8D987EA9FE832A655 +C175AA8204DFA034D9DEB3AF510C4E948AD8DF3E799B81C5C8250B86FF8F91BE906357FC5DE9A320 +9AF78555AAA0FE720FBF0300F4FFB1E6F49CE9E00B0870D1E0EAB2CE05378850D15E9591ED19E563 +27A083671AD4BD0FAFC5A3AFA4D3E3CB1E50111ECD344168DA214E380AB12211010DA632B2CE9261 +6B94EEF181FF68119A2A0FB6AD9D3BE9E91F24484D018879EF39B3A5EF9A040B26AC1F2F6EC60EAB +B4233CC0878BF25AD526D45BA051CB36353A5A56E9BA2D1132F595F3202195681878AE92CFFC0A80 +9F8EF0DBE782E10D065658FF573553AE7EBC443C640F3F5745DA56489EFE26BBE67475C3F0ED603B +9DDB8464D40B587BBAB8F1B3F73FF9371EB27335665FA61498231EE271987F283580C7B42BF98121 +2D1460D366B3B5D0B7A7F7CD24B3C145B291FAF0B1F20996860BB42E7AF96BEE82C2B2174E9ECE34 +28A5FF9A63D7858C44BBC680770CE70BC7DF2B68CD42F9342517976533B7DA625EBDB07E071D4C17 +C3C32714C079DBEFE2F6F4977B005FCB214BF1FCEB394488CF34938B112C31AD00A54D096EC3769F +157DF59B6EC70FC6BB644470C2DB9688A9891D06145B198DEC09C5DDBFF4E1F56D8B62D172F59271 +B009EC62DBD8D48017892149618394F80F3472ABA74AAEABBA441B569394080498B5E5B56EFDC414 +BBFEBD1D53FBD880E92ABBA771A5EFBFAB1CA24C3F36686B9D9B65DBBBA23089C7D35CEF18D9751F +EB7C1E65F3B672D5E7C2BF998F65D0F49573F285279159BBCCE027E66EEEF9E47CA90DF348D89F86 +48FCB6F55AB2ED74C4043AE90F3542759B3F15932F8A52E3318F1693B2367E13AC6412B41D06DFA7 +1A3A869DA8816B26CD2CC94DA976DEE2B7ED59B4E956A0836A5E7FF5E0FAA40A121482798BF50E17 +28D3387D50CD62E1017235A3B1416CBB94C04F3E3D5FA2BDA3819A47057B8FECB3C09E0A391B5EAD +C38DC1AB744F90453026AACEDFCC190A280F0179C8A3BC1273C608A671E4ABF8BB5DCFC473240048 +1002AE9451172F2F9809B75440B987AB11DBB3569022A02F0194D73FEACA133DBB96BE3DED9623D5 +A89D652880EB4A147BD25031EE1C212E3226D5F7C4497DD9E2F767C4414323972C2B268F192113EA +4A0CD2B82760DCB2ACADC8719511F63D471F2DAAD5399A0B5DE1A15C6579712A81B432DC083E2EFD +660FDE2F155C78676E3350A9A5724512F4169C5E697897F5013D010BF75CB1920328F21DA3408BD9 +0216A18A5017D5FA51083A7C49C3D226B8AEB886083D13EECFB4EF12DE38E5F6B5B7A06D7F2BFEE4 +4690C87A7EFA5725AC793B61EE754278919EF5C5033D539A9BE0732F3D33137B6BC6D170DDF29763 +101BA0078E4BDC1562D16CDC01E05129709AD0E9532C6E6F7E74E42BF133F53314AAF732E90DC3AC +5C1BF5FD615189E12EBCE636C9129641A4879BC987E734289732F73DFF066C8C13B3735E2F2DD818 +E542EC0649DE3E37B0B5111670C45EC14E1E1FF14E41F12A20A6FCB2FDCFA350467651D697AA7E55 +49E2D4B30175244EE941B1F66BCC160A03B963A64DB7D1A06ECA645866EC4627EF2F3563FB399DC9 +B56A99A024D8FB026B8CF36E49484B98C90DA4477FB706CE1F5B136705E52A539D21C933315542DC +E71BC85955427D9DFF0DD9CB767B6B67DE7C2B8A2E2CF3A639E4C354EBC169360311D44D6F57322F +0A402C293F9FF510AF29BAAE402A218B6314495017595DC15128022B8C698ECFBAEF7ECDEE7FF01D +E305261E0119786B842B781C94E2B0138A581CD051807508F585597EBCEF7871A914FDB08466B2E9 +79C83DE884845105596546434E0EA525BEDFFF3E68F245493745A06B577C9A50E0170274210A6F6D +4A44C1EB5512ECDEA42F107E8C08A98EEB9EED0582D607DE96328ACD3D81BD759CEFB2F6DFD2AD55 +FF46D5202CCD0B518DB0008DE95594E96F77FC36BCB1EBCD388BD2E3CB674F90A8C69B4F57FBFB6A +57F07443B05B43BAD9EDEC3A90C5270A9F9198C8674972734277A7A14F22433A74CCC8182FEA974F +E66DD3A3BBE8F2494895B01B5AEDEB4173D8C3BFD4AAC413A548E0D446E0EAD5BCE288586885C116 +080C0AFB697061D021C043D2822FCDB78CFA99DE2A90A8465822A6FE4C0D03494EC045EFA80793A2 +458FA78C3353B0D5D0600CE006E31CA3131F387EC4D84B0C7C46A308D08C302C85ABF45B2D483BC6 +3DF7B0EEA1A0AFC0F844D77274C95ED477114752D0C88AE6092423DFABB3B01934699F096AF8F067 +D870F73CE45036362AC4CADCF97F42C63DFFC69EAC751C08AB6D61D34D32BFCEE1155D012314FD51 +252D2470B4D4CB16D0ACE4DDB17030C3622F56F96EBEA0FB90D92D109B956A4DC00332A9433FFE10 +43300B01D87EAD0C51E6D65545C37AA6528C214BF68831BDC78A84746E879643D9D9EE6BA5C167DB +0A370308C5EB606619A17BEC856BFF181BEBDBA0CA0BEA05C4EC948E288A941755EFA2DCFAEE67F3 +3B311CE0532CAF26FDE29474DBBEE42A623BEA14E4A4858B0496EFAFC775D48065F58DC20F727DCB +866EE68E24918AA1906073B64B0FE458B08A1B7DFA4BC03DC88CB5394F1FD149478577396F0AD201 +C4568BEBAB40DE8B864484D8D117727EA283CAA7485AA58FC506CC9B1C774FC883A3440499E3D984 +36111DC1DEF8CA30DDDBB9DDB9C89534D691555C36B5450DDE24CE5B17DA11E3E4C37A11581E4FA3 +C0D89B5CC3784BFFC14B6E98C548A7C38C53CAB973AF3DE82C6D42A01A57C9FFA790111BF79FE7F5 +91D5E2FF9E2730B7920A30D7BF713E4EBDD272DBDAFC8A676F195BA9082CD779E002FFD0785FC8DE +FFCD12E4B8DF368091E6119E135076E43DD0CD75E6429CEEA972391BA73D93B89645B2480315A49F +49AFE2F324D251AEE654ADCCA32A66E9B1B9407B055BBC615E37BF1BC8C1ADD81ABBF983C73F733F +91770D50184FCA3A0F6165CFE79002352DCDC1296D67AD671A4F4C0A60C7E9C18F3CC374A4D065FE +56D0BBD2CEEE3F70AA9398896FE22CDC4BF7332726A0E676D66D511799D63BDBE0DA140EC4EBF57D +E032B620E5ED890A6760CB7D40A05037BE3A6C5347DDFFCAAE3A5C4BC116F39969936FB483040E42 +1345EADC494523ACBDB55CEA57C40279D4AF5C7C9F3B0660ED9E725C9FADCD5361784D5C14B93C3B +13FD055F269BC7DF6D67719A2BF30D19D1A690B4CBC06DEA51884A686564B3FF6B3F8E9C9FBEC5A9 +14F525B6AE34D448B0AB85FAFA4E7F301984A9645C786DF2A19C2E6A20DD0B60AA2974A624E7CD19 +17AB87B273D04516D727FD30EFD27C983342C9BCC1D9CE95E7576AF25A4BFF02DB4588B8604C306C +04AB66E85E114C28CC47395016955AFACE381AF44B1D004D5B6B64186CD7CB9D081F93A637BBCFE8 +E292FD8D5863BFC683C9E37F0FEF0ECD16CFE63E0A584BFA4116D3AB0ED62B7B82C1630B2B78F255 +27A79267580F58005BFBD37E5C0C31029945CF6F6F72DB17EABDBB51DC8726FCD5AB2D61341B2EF7 +716F0D0AAC546DEDD22AC62FEFB1ECA0EC524C6B3233FB4E1B4CCE49F584BE7BAF33C878F2280A85 +98502001DEDB4FBC9F7DCF40D055AC35AADA869F2808F0B401C294AE378AA9B2AF2768B75D9CAE1A +C52025F18E7DDAEEA2122CE9D233A2A9046EC5EBEAE20FA928BA4AC651AF426574FAEFE31D28C771 +7DEA91429C7BD7611CDA7F5F55A070AD6776AF18DED46E5101A7D1A47F0752896669148EACDBEAD1 +C8A44801B53DDC61261499F2FCC600F635D8CDDDAD94A24BC14A2F5B5AAA6260955256256AF4A9AB +CDF541453E4190AF27139D3C6A2BE9BE4870260574C26338FF348F503DA4DC15FAC4F6ADBCBCC29D +93B9100EE126A0A28C3F0CA30B7F09E13AE59E34DA373702C5817D222DA4AC23DA5EE272805A902C +DB7001A0CCB26220D956871465BE18A323DF93CD792BBE61F3FF8C4957FA49925DFBA1569FBC1BAB +D1C3BA13F88D1D98F7034DBDF956F52646DF43AC978E86A1C532085DF36A66FF556442F3F337A699 +DEAF26EAE1AC20FB2968E58DF82ACBB647350335E4D48032E1BB49F1EA2181FBE183AACDC06761B4 +8A9EEAE514A00B4656B4CDA4BA3AC27F30C39A4274C1DAC69A7BBDEC53C9C7D78D0FAD8530073440 +C85F0A4B0003AE793731EF2A3199CD73663B05BDF83FB2B8C175F0CB3D20C52C0C8A370F9DB92304 +8CBBEA7267C828A700C5856EECBF7FFE8A67C5027BEF1B1C7D42C717ABC02FBB73A3AFEC5F57D6BE +21C2CBADC84855BFA4BDB2F127307BF437F010AF0C938F9587B153249E6EEC2ECA63E9BEE972CF4D +98627E9DFD37B325E7A6612C667296C8E9256C62690BE9D25F7C68CD984B56197148A89E8E05B9FE +98F033E9DD9EF7245EF70E63289C7947BE5F2272154E207A9B4B1FDBE41B1D4D72BE13873462B012 +F4B9D5F4164B714965F36C4101C870EFCC4BACC1A6DF744C1F91B1B7A2BF63BDFB840F5B0C062ACD +11FE47D9A3AA36CDC00ACD6DD8475034F603E859B3113B1C8A311C80B5D9EE1D881424745B573DB4 +3656FD733864CDC8978006D58309E4B226288A0DCDB9AAC8396FC9DD024BC5F00160C382B127EB4C +9FA74B62BA990E2DFBA53D3CD57A27FB68F912E5B69CFF2113D70CDCAEF634BFEB9D7A65CD1A670E +3A2CEE5D9687558A1BDA4358BE0917A4C8614B97DF5810473714F6FB8BE998BA52916F790F353DB8 +7B96194C6271147A947C664D273CDE1893D4E1EAEE9F4199941970A46AB809D4776E9310C506EDE7 +7EF1E9804829E495B0F654EB15FC2563DF6CB1B9D36D837777547CA37ADB28768A8DA2433BFD20D7 +2F9F00743272277F2C9A9F1F33CFAD44A8F3D620A0DDA13C3286760361107A0A82E0D12A9C601FE9 +3971250D47583AD68AC90892AECC54BFAB740A2F51F07A1E2C5B5E3A895F3E3001F4DEEB99E0A646 +4B0EC3753F30013E9C92525D9F651898A585DB03BB7180D652CB68ABAB55BF18402A43888772F9C3 +6C9F7CF6E00F07B33590C777B1B056B6C31210A3FEABC46BF00E7A837E93EE3464776B9D78E75C60 +CE9E0725C31784836B9CD63BA44DB0867C80D70A15FC97CC6E4526E84AE9B30CDA84C1C7857466E5 +F315C8F6DCFA0289FA937AAFF5D3CC35709E9EC3C255B355D7BC6063BFE6364804342D4BA7D015BE +58633CB781FFDEE7BFC46AFD84255D141DA1EF280D5CE22017DBC7C1A128B3F9974AD5BC1E53E43C +3EC042C17DBED744236D8AC784B9102E2FC4E94DF8C78254A6D496790CD6684EBB54035048E1DB75 +93E552C7EE7B884012517917AD46CA470ECFBDDAFA7F1FF13C0CB00005628710DD4EA93C79DE721A +89BBF27DBF7A085799B00D6AA37D7B3590C79ACAA5DFD15953E7F8B5874EF9BF34A217184100A080 +0A5675D552ADEFD930E294A50CF7A3C6344EA0871ED23AF942EC699E21537D852ADBE736EB1070D2 +C9B622EBD2384430BCB114D1DA3CBE2C6FBC839D77F20ECC999A5302705AE31AEEB8B4E5CA4046A3 +C77F8B0248E3755013CFA7C76D7248920CC203834E9328B58D5FC7C46B11B5AEA991556D067C2B24 +37634D95EA274197D3B46CA1B8446D633B6F0AAE72A599548BB3D81A337113D3EC58B0B2DD107A61 +7CA6DEADEE7003AE6F28ED6DAA5C5D99D67DFD2594800A66D11D26490156A539E286191274C30C09 +8DB77A427695BAE705DF290F97887C5DD6FD964D76FE6132016D0D58580F2EAEB727FE1B8AEFEC95 +C4629CB17D8C63D1EDD2125527D00C9E7C64AA7053A047A69F82812FD3C8C2543F269EE9C553F5BF +8A53D461D9C308C198EBF2B97DD531664229D32C3EC61D69E4E79F539E9E589FC3F57C9E4624F869 +A482062A52C9F4B640090C360DF8DC8702DB966EFADCAE94C8A2DE022E88EB388239BC517368F8C2 +6C8D96A6E8649737F902495E3F29F357B9B58EA47A9400D028B8BFFE74BAFC43E888808381C5F3E3 +18DF9BDA26F6E14DE2858A1A9CFAAB8A82B7819F748E04C8606DA94D884A13C67E3FA06F9C2834E1 +A02F4BD043C87D57297D500E4757BCEB37239A755F36FF99A3F9B6E0CC9F8938041EB931519BF0D4 +2E7A93EE62E6A59C2BBF1B2D6CE1958DAB40F1EC78C99C501CFD69864DA50EBF933D30CEAEE7456C +D0A08C78CAFAD93CACE2671F7E3DDDDA98EA56CA35648109D4E6333188ECC817F317D8979DA9FAD9 +DD45DFE5D74BBADFAC4921723F736426D5ADCC5DE4FA6703E121BFCECFB415F1D444634A7223389A +38DF2AD64101476D170DB854A220CA8433AB5DC40A841BEA6CBC538C63E0442A7764014D853AF8AF +C34F2D17A1DB8740A45C857667A59F895094867D12D06EBF72942E8ED4D6EE9EF225B4DD82A2F16A +D0A8C2C246DBA7BB9245ECC4863D14885BC30950451113123C868B8AA5B36F7B926B5ECB0A333902 +BB241B3D281550655912AE14A634D79515F00799E91F6DB093ADA1692CCB5A32CF94FA0A4E1B311A +68BD03C0F85F2F63C3C0658A3756013288704B240E14F65AC1BDA3098894BE592794245AEF119ED5 +9523983DEB2D0E9D211F62E6D6C5AAE72F3AEEDC4E590BD531EEA93C05EDB1370F140DB3034A9996 +22ED4BA8F1AAEDB368656B6C6AF920DE068E06B985FD47461276723C9944CAC87B44475767009320 +C7934FEB9B4DB8E1003000A663155C9A3FC67182BE4EA30F5FC813A8F34F3F99DEE8134252A98B21 +54FCE28C1EC23FA5E4BA8C4E005708A18FCEDE9F154576F0B3400C7FBFF197011FFB739D285819F9 +C19796979B3A0A5E4E5CB116F78DCB3A7178718D886D1A9E52BF4D9C8CA2FA2725147413CE566DC7 +4DCD7328806238F8BF9A780CE75C05A7C2BD89420F8A0B0D602498C1C83F775A231B8BED4EDA6F8C +995ACF80138D4A438EED6FB2CA44F06D664052D45B2FEEF0EC584B27E01D663D4B2F8C48E04690B3 +50AB33F10875460000D37C300CAFB3F8391E44F1AB363074FAC3E03C41BF062E5668AB0A4214C64B +171A2CBA072DED6EFAD31309A34D99DBC065106DD8F0942DE6DFD6C0743D98F214C3E3FA09DDEE4D +1080AFF99C98E001EFE2B853747CA64A6130A87AEE3583592AAD47CFA01F0B5B22C638925ED65188 +6EC83777DCCB56A808404BB5B655DBAE33483AADA292B580F02FF2494C7F3F7459BABA95373E39D2 +ABEFEC3FB56440DF99E6DC49E4D01F9286E11085D68EBE8744F307F6AAD2DE8B745E243163427A2B +90A90F6726BCF115DA15331E3F30CD025624C7B916A97B4067C60213C0B3782EEE9F4594B4B78B07 +2C5E9A30D35E1FCFB5E043404E5407A01A2ABBB636096B0ABFCA115414EBB67749D494CA030E21A9 +1206D6B090E0D94EF2D1165765010B8D39695D096825D9687F2480C851690AAEAF4AEEF413C054EB +FA49AA548B618802B62D0DD5FE7529563FD02F7CAFD93CA182B2506393AE802093C5668BE1D5D2C9 +E74C3160B5C3055A31ACD75B2CE21E1014D136FB96E44D4E6BD79A7B5FC5F1741A55B6CDE4CB5B44 +AE1EC827FD9BC083F76C8787756104E782F9D4BDEDA005B4085690CCDA8AC75A0BEFB47D0806F4A4 +6126AA280A41F0FFCFEA04B96714C7B1D4F806FA6412DDDAA68B20551C36E556647C3A7FC303C655 +79322171A7783FD7364F56ED31B5B8132815F524DC97030DFE3E47EDE35D03F4CD2CD99AE55D0BB8 +17A93C71F7C5383ADD04552F1C54557D494907D3050FC9D5514FCF80EF7039C5B076F16A3A946D59 +1165E72F2A31E906D4A57167B44D64BFAE9C408E9CE5EC8937C7B3B0AF24089A1878AF0758B7CFC8 +A787EB7CBA64BF13D3939DED996660A6487579162F56C3440764954DF160077B16CBBAAB9DBD5857 +FC44A5775ED562140DD33B3CB2173152213DF78D65AFC94347685181CDCAF3B79D755652C2B2D3EC +39449252DA027E97E534AC05ADCC39795C41F68E5F98F983CFCB4DE3BADFED909B2B6178904806B4 +0AE9F9B3577531D1C9C5793EB1C455C9895D2C858540C6B7F8B40AEDAE79FE461309AF352C80739C +5AD7612EE5970C113133502E1F59F53F8A72373A3841C37E727ABFB1E7A2AEAEF482B0942CDA1BFD +D81F7A2FC15A7D0E7F2CEFD8BC432268ACDDF3698804556E4AFE9086E6AE0CF1B144A5A7D04CE576 +F26533B611371D7F846959F2A589E54EBC0EA0AEE1C117EA3E8957E07AB8A728AB388B06BD7D98CD +44C468F7AE354304DCD93BCAF479F5C27BAC920128ED987667E94ADAB5E55EAFAB2B52BB2D83991F +9D638CC461A25738A6C33F134191A1A804EA935EF441F89129175BF705D4F7089BDE3C0AE6C61921 +487B3EDB029FFE0CDD2307B68CEFCD58591F939ED509EBA0FD070294B5158F3BF432AB18379BDA34 +86DBAC2984198FAEA711008AA454E9612B23B6C8C5AA908E5424456603D522BCAEB3EC41E1C8BBEA +B1C8CE0BEF6AB7C7008171F62B03BF9258329DCC30472DB329313606157CE246CC8D5C9E7DA2AE08 +967CB303C5E516F18F0CE530E75762541536B444925C1E123CFB615157A3169F7F10172423BF5A54 +0015BDA30A03414679A145541655B65253CC546261FF4626722942C8AF01FDA6F92200EFF2716807 +4F3BAC5692AAC160F7A0DCBD5315C4B700E3BEF31520215C093F0F1DCFD5D18538F8D4FF1997C652 +4DD972AE1CD7E11F829CC621B383390C2E7D196A8D5A9CBFBD8D3145E20CF045D1F128CA47CC9A01 +91E29D4217A1FA558F1F93DC86171E43764CC7D9377A1C76AE027D5C3FEC7A38CEE040DA280902D3 +F183134E3A95E5EF148C71BD5994BB28EDAF191EAC23BD02BD9A5F613235E97A5EE8C5C7E6A93F03 +186A29C684B6E46026A31BF1830B1ED3BB12A0648270CEE09A4F5AB891AD72D80C4057C781DFD270 +EE443E1FE4E9D8E58D2AA0A9A702836EABF544A3B4F2E1841776EA821FDB36E71AECD6A1C355127B +461FCF72A531176DB59F10D9A1222F99EE4AA579CD5CF6A288016F5DA6838536F3FE0D902543095D +90094EB79BF1592CDDE05786DAFD98AF30C6CEBF27B1315C706A63D4E868BA374EBE33145C16F181 +2AB2F8668B549A74C8A58304BAFBEE3136533542EDB8976C7550F0905546D116DD0E11384C2B99E1 +195316EC9CD53EBADB73509FDE80B1BCBCAE46E8806E0CC8CCBF2B10FC54D05C9F604B4ABFC87B25 +DB5CA90B64096B18C33E8A53F45F163AB7AC47CD6E9521230D689ACA686B5792D72097C4E67F93DC +9B7AEE088DA36BD6ACEE7E68ECFCAFE7D585F677BD1ED27595948CB7CCE21BAA375393CA45234E8F +4633D61EC657C528EDD0FF520964F8B737D0DB9A58DB146588F7F02CB77DE7D417CFC65B45CCD62F +77CC833DB5228159A552C7D6B0F7E5E5521E26C7F9A47D8F600CA820DF8B4B25B8B8D823FFB49E7B +1E779D9680AFB496C7BD8D2FDB99717F9EF91A6AFFBDAF5E6C188315BF63C3BA9B8414709D1E60FD +25D29BEA68D6D5857CF024BC2E03249A4B294F36E3BE13225319F11AED07AC2BD2E5BA6E9CD7F77C +C707F6268514BB7D50257EB4E23BD6CB9700745AF46DDD87664364A8CE71574F2D60CDBE61A3AFAB +925EFFB23273B61E93385C29C2E8B76650C1432AC8D4FF35F5419CFB553C8F10F4230CDC749B5F3A +8F5B1EC8C9FE31626378EB495A9A53BE7E1C0683550BB3AE9ED557CF4DE95399C5EAFB4B99B0889C +890FE2CEF419A20800812D0DA7795E9F519061D19D1AFE2AC77CBBF05D1A738E62B64B4224DCA36C +48B7A9D1FF785225C9852111316ACE1DAA2C21E05D767DB0DE6A0593D19029814C8BCE19DEED87EA +E4F52004EA1FE7934C099EC71AE7048D796081176AB9B8ECF42FA5581FFD859BD818411DFC4649C7 +6F82D6C03563F9B9D2DE6F274D41E0A93784EB6ED0FEAB8DB20CFD35E2DEB93A1DD1AE514F9E8A48 +279536885042D248CF3FB0872135921DFDDC41198DFEE21982D675CC3BEFA0A3986893CB55393D0D +97ABBE2E2E9B911B8E219104B22197EA04E201FF9C5F9B644E91709CFACDA783050C75212109FBBC +0422B697902D9847D764AD31E851ABB49F9BED16F1377F97198664125C1BA4E06C4C43AAD8829047 +38E1127C3CDC74167B21358CBDC8563951CA7B5DE09526FEA0B1D2AA92F3C4EDFC252BBC38463B55 +E97E8C40D6FD34403357911A1FD0A46565148F3FC891B20EC84976FB26D13A93F1B3D7162D864F8E +1C4A4CED23724105D0B7EB83EB334386912AAD93BAA8AA9CF5CDDF83D5FF76E94C8A2C40C28B5F48 +47A49D8155347392B7D2CF2731E45E0ECA9A654AEEC5DC2A6B03E93D4DA22575D824294ED80804B8 +42B898708A5FA69C5F958A935D47F57039C31771879DC8AE993CF060F6B509F8CE28FAFA8A0FF707 +A281B479039C86CEC58531A3A762A86A6AAE6A7A5C25FEACBDF7B8F5C0596D7DCAE8C56F04B251DB +E707D7EBD1A1609ABED63B4BD8D5BDB57EB4362DE4B6A0FA74A73D8932C4684B66CF763ECB2379B2 +F6B2C093DF794190E7094F1DEEB8072859C0CF53B4EA46676A43369393654B24117C6580A435E468 +28EB5636D407F1A81B192FB88B239FC4EB453585643317DB9579456146270F3A90CAD680D924937F +D23A74F818EF4BE2EEC5C34A37D3C8B0EB499821F1CBA186C241B071B64D483755CA5BD77AB00B20 +F04A433CFC50844DE31699054FB58B677487CFA2A699CE2EAE797A7B7A59B8F426B1451A3930F284 +F535108E7801A6FCCE142DD11689D2097AF17DB2F84B111583C884776B542AD709DF944963303F63 +A0E77220CED0428FCF162C48EDB989D257A53B17A497CB8E9D14166A8130020D3C5896643C5A12AA +9E61A7A885082A1A0B51DF16C3A5FF94279CC27F5EC70E29C4DACB6ABCB16FC8951BACB9AC502D54 +B4CD6CE25E1E4C5B1BAA6979F7A9D1BCBD397EF5FF9DFC434C34121467998B8D5610E365AE895E73 +5E1E374A6EA0F0BB5492753BE8F2531A8A8BCC8F32F78CEABFE10E7D841B35349D613E44A5643893 +C6E4BBD1A8565C8896BA5DCA0573CCF64B287D4A70D900A8F4B30F73223D2903F78519AD9AEBBDBC +92F61DCC9B6B2874E003005FB65D9D789E45AF3E8D134C6EB3068A3FCC16105273D0323C9AA2D636 +42AAA1D45C9ACCA9C42DF4E5CDA7C0208803C1B82CCA7AD7D871E7193DA4363679A8AC7FE79DDBA5 +9FA3FB1D +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 + +cleartomark +{restore}if +%%EndFont CMMI12 +%%EndProlog +%%Page: 1 1 +gsave +newpath +0.0e+00 0.0e+00 moveto +1.3e+02 0.0e+00 lineto +1.3e+02 1.2e+02 lineto +0.0e+00 1.2e+02 lineto +closepath +clip +1 setlinecap +1 setlinejoin +gsave +newpath +newpath +7.04e+00 3.656e+01 moveto +1.4504e+02 3.656e+01 lineto +3.36e+00 3.104e+01 moveto +1.4136e+02 3.104e+01 lineto +-3.2e-01 2.552e+01 moveto +1.3768e+02 2.552e+01 lineto +-4.0e+00 2.0e+01 moveto +1.34e+02 2.0e+01 lineto +-7.68e+00 1.448e+01 moveto +1.3032e+02 1.448e+01 lineto +-1.136e+01 8.96e+00 moveto +1.2664e+02 8.96e+00 lineto +-1.504e+01 3.44e+00 moveto +1.2296e+02 3.44e+00 lineto +7.04e+00 3.656e+01 moveto +-1.504e+01 3.44e+00 lineto +3.004e+01 3.656e+01 moveto +7.96e+00 3.44e+00 lineto +5.304e+01 3.656e+01 moveto +3.096e+01 3.44e+00 lineto +7.604e+01 3.656e+01 moveto +5.396e+01 3.44e+00 lineto +9.904e+01 3.656e+01 moveto +7.696e+01 3.44e+00 lineto +1.2204e+02 3.656e+01 moveto +9.996e+01 3.44e+00 lineto +1.4504e+02 3.656e+01 moveto +1.2296e+02 3.44e+00 lineto +1.0e-01 setlinewidth +newpath +1.11585e+02 2.950104e+01 moveto +1.11585e+02 2.172704e+01 lineto +1.114472e+02 2.257724e+01 lineto +1.114472e+02 3.035124e+01 lineto +1.11585e+02 2.950104e+01 lineto +closepath +gsave +4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor +fill +grestore +newpath +1.11585e+02 2.950104e+01 moveto +1.11585e+02 2.172704e+01 lineto +1.114472e+02 2.257724e+01 lineto +1.114472e+02 3.035124e+01 lineto +1.11585e+02 2.950104e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.11585e+02 3.727504e+01 moveto +1.11585e+02 2.950104e+01 lineto +1.114472e+02 3.035124e+01 lineto +1.114472e+02 3.812524e+01 lineto +1.11585e+02 3.727504e+01 lineto +closepath +gsave +4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor +fill +grestore +newpath +1.11585e+02 3.727504e+01 moveto +1.11585e+02 2.950104e+01 lineto +1.114472e+02 3.035124e+01 lineto +1.114472e+02 3.812524e+01 lineto +1.11585e+02 3.727504e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.11585e+02 4.504904e+01 moveto +1.11585e+02 3.727504e+01 lineto +1.114472e+02 3.812524e+01 lineto +1.114472e+02 4.589924e+01 lineto +1.11585e+02 4.504904e+01 lineto +closepath +gsave +4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor +fill +grestore +newpath +1.11585e+02 4.504904e+01 moveto +1.11585e+02 3.727504e+01 lineto +1.114472e+02 3.812524e+01 lineto +1.114472e+02 4.589924e+01 lineto +1.11585e+02 4.504904e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.11585e+02 5.282304e+01 moveto +1.11585e+02 4.504904e+01 lineto +1.114472e+02 4.589924e+01 lineto +1.114472e+02 5.367324e+01 lineto +1.11585e+02 5.282304e+01 lineto +closepath +gsave +4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor +fill +grestore +newpath +1.11585e+02 5.282304e+01 moveto +1.11585e+02 4.504904e+01 lineto +1.114472e+02 4.589924e+01 lineto +1.114472e+02 5.367324e+01 lineto +1.11585e+02 5.282304e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.11585e+02 6.059704e+01 moveto +1.11585e+02 5.282304e+01 lineto +1.114472e+02 5.367324e+01 lineto +1.114472e+02 6.144724e+01 lineto +1.11585e+02 6.059704e+01 lineto +closepath +gsave +4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor +fill +grestore +newpath +1.11585e+02 6.059704e+01 moveto +1.11585e+02 5.282304e+01 lineto +1.114472e+02 5.367324e+01 lineto +1.114472e+02 6.144724e+01 lineto +1.11585e+02 6.059704e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.11585e+02 6.837104e+01 moveto +1.11585e+02 6.059704e+01 lineto +1.114472e+02 6.144724e+01 lineto +1.114472e+02 6.922124e+01 lineto +1.11585e+02 6.837104e+01 lineto +closepath +gsave +4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor +fill +grestore +newpath +1.11585e+02 6.837104e+01 moveto +1.11585e+02 6.059704e+01 lineto +1.114472e+02 6.144724e+01 lineto +1.114472e+02 6.922124e+01 lineto +1.11585e+02 6.837104e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.11585e+02 7.614504e+01 moveto +1.11585e+02 6.837104e+01 lineto +1.114472e+02 6.922124e+01 lineto +1.114472e+02 7.699524e+01 lineto +1.11585e+02 7.614504e+01 lineto +closepath +gsave +4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor +fill +grestore +newpath +1.11585e+02 7.614504e+01 moveto +1.11585e+02 6.837104e+01 lineto +1.114472e+02 6.922124e+01 lineto +1.114472e+02 7.699524e+01 lineto +1.11585e+02 7.614504e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.11585e+02 8.391904e+01 moveto +1.11585e+02 7.614504e+01 lineto +1.114472e+02 7.699524e+01 lineto +1.114472e+02 8.476924e+01 lineto +1.11585e+02 8.391904e+01 lineto +closepath +gsave +4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor +fill +grestore +newpath +1.11585e+02 8.391904e+01 moveto +1.11585e+02 7.614504e+01 lineto +1.114472e+02 7.699524e+01 lineto +1.114472e+02 8.476924e+01 lineto +1.11585e+02 8.391904e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.11585e+02 9.169304e+01 moveto +1.11585e+02 8.391904e+01 lineto +1.114472e+02 8.476924e+01 lineto +1.114472e+02 9.254324e+01 lineto +1.11585e+02 9.169304e+01 lineto +closepath +gsave +4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor +fill +grestore +newpath +1.11585e+02 9.169304e+01 moveto +1.11585e+02 8.391904e+01 lineto +1.114472e+02 8.476924e+01 lineto +1.114472e+02 9.254324e+01 lineto +1.11585e+02 9.169304e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.11585e+02 9.946704e+01 moveto +1.11585e+02 9.169304e+01 lineto +1.114472e+02 9.254324e+01 lineto +1.114472e+02 1.003172e+02 lineto +1.11585e+02 9.946704e+01 lineto +closepath +gsave +4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor +fill +grestore +newpath +1.11585e+02 9.946704e+01 moveto +1.11585e+02 9.169304e+01 lineto +1.114472e+02 9.254324e+01 lineto +1.114472e+02 1.003172e+02 lineto +1.11585e+02 9.946704e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.114472e+02 3.035124e+01 moveto +1.114472e+02 2.257724e+01 lineto +1.11023e+02 2.341155e+01 lineto +1.11023e+02 3.118555e+01 lineto +1.114472e+02 3.035124e+01 lineto +closepath +gsave +4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor +fill +grestore +newpath +1.114472e+02 3.035124e+01 moveto +1.114472e+02 2.257724e+01 lineto +1.11023e+02 2.341155e+01 lineto +1.11023e+02 3.118555e+01 lineto +1.114472e+02 3.035124e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.114472e+02 3.812524e+01 moveto +1.114472e+02 3.035124e+01 lineto +1.11023e+02 3.118555e+01 lineto +1.11023e+02 3.895955e+01 lineto +1.114472e+02 3.812524e+01 lineto +closepath +gsave +4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor +fill +grestore +newpath +1.114472e+02 3.812524e+01 moveto +1.114472e+02 3.035124e+01 lineto +1.11023e+02 3.118555e+01 lineto +1.11023e+02 3.895955e+01 lineto +1.114472e+02 3.812524e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.114472e+02 4.589924e+01 moveto +1.114472e+02 3.812524e+01 lineto +1.11023e+02 3.895955e+01 lineto +1.11023e+02 4.673355e+01 lineto +1.114472e+02 4.589924e+01 lineto +closepath +gsave +4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor +fill +grestore +newpath +1.114472e+02 4.589924e+01 moveto +1.114472e+02 3.812524e+01 lineto +1.11023e+02 3.895955e+01 lineto +1.11023e+02 4.673355e+01 lineto +1.114472e+02 4.589924e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.114472e+02 5.367324e+01 moveto +1.114472e+02 4.589924e+01 lineto +1.11023e+02 4.673355e+01 lineto +1.11023e+02 5.450755e+01 lineto +1.114472e+02 5.367324e+01 lineto +closepath +gsave +4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor +fill +grestore +newpath +1.114472e+02 5.367324e+01 moveto +1.114472e+02 4.589924e+01 lineto +1.11023e+02 4.673355e+01 lineto +1.11023e+02 5.450755e+01 lineto +1.114472e+02 5.367324e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.114472e+02 6.144724e+01 moveto +1.114472e+02 5.367324e+01 lineto +1.11023e+02 5.450755e+01 lineto +1.11023e+02 6.228155e+01 lineto +1.114472e+02 6.144724e+01 lineto +closepath +gsave +4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor +fill +grestore +newpath +1.114472e+02 6.144724e+01 moveto +1.114472e+02 5.367324e+01 lineto +1.11023e+02 5.450755e+01 lineto +1.11023e+02 6.228155e+01 lineto +1.114472e+02 6.144724e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.114472e+02 6.922124e+01 moveto +1.114472e+02 6.144724e+01 lineto +1.11023e+02 6.228155e+01 lineto +1.11023e+02 7.005555e+01 lineto +1.114472e+02 6.922124e+01 lineto +closepath +gsave +4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor +fill +grestore +newpath +1.114472e+02 6.922124e+01 moveto +1.114472e+02 6.144724e+01 lineto +1.11023e+02 6.228155e+01 lineto +1.11023e+02 7.005555e+01 lineto +1.114472e+02 6.922124e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.114472e+02 7.699524e+01 moveto +1.114472e+02 6.922124e+01 lineto +1.11023e+02 7.005555e+01 lineto +1.11023e+02 7.782955e+01 lineto +1.114472e+02 7.699524e+01 lineto +closepath +gsave +4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor +fill +grestore +newpath +1.114472e+02 7.699524e+01 moveto +1.114472e+02 6.922124e+01 lineto +1.11023e+02 7.005555e+01 lineto +1.11023e+02 7.782955e+01 lineto +1.114472e+02 7.699524e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.114472e+02 8.476924e+01 moveto +1.114472e+02 7.699524e+01 lineto +1.11023e+02 7.782955e+01 lineto +1.11023e+02 8.560355e+01 lineto +1.114472e+02 8.476924e+01 lineto +closepath +gsave +4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor +fill +grestore +newpath +1.114472e+02 8.476924e+01 moveto +1.114472e+02 7.699524e+01 lineto +1.11023e+02 7.782955e+01 lineto +1.11023e+02 8.560355e+01 lineto +1.114472e+02 8.476924e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.114472e+02 9.254324e+01 moveto +1.114472e+02 8.476924e+01 lineto +1.11023e+02 8.560355e+01 lineto +1.11023e+02 9.337755e+01 lineto +1.114472e+02 9.254324e+01 lineto +closepath +gsave +4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor +fill +grestore +newpath +1.114472e+02 9.254324e+01 moveto +1.114472e+02 8.476924e+01 lineto +1.11023e+02 8.560355e+01 lineto +1.11023e+02 9.337755e+01 lineto +1.114472e+02 9.254324e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.114472e+02 1.003172e+02 moveto +1.114472e+02 9.254324e+01 lineto +1.11023e+02 9.337755e+01 lineto +1.11023e+02 1.011515e+02 lineto +1.114472e+02 1.003172e+02 lineto +closepath +gsave +4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor +fill +grestore +newpath +1.114472e+02 1.003172e+02 moveto +1.114472e+02 9.254324e+01 lineto +1.11023e+02 9.337755e+01 lineto +1.11023e+02 1.011515e+02 lineto +1.114472e+02 1.003172e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.11023e+02 3.118555e+01 moveto +1.11023e+02 2.341155e+01 lineto +1.10315e+02 2.422483e+01 lineto +1.10315e+02 3.199883e+01 lineto +1.11023e+02 3.118555e+01 lineto +closepath +gsave +4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor +fill +grestore +newpath +1.11023e+02 3.118555e+01 moveto +1.11023e+02 2.341155e+01 lineto +1.10315e+02 2.422483e+01 lineto +1.10315e+02 3.199883e+01 lineto +1.11023e+02 3.118555e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.11023e+02 3.895955e+01 moveto +1.11023e+02 3.118555e+01 lineto +1.10315e+02 3.199883e+01 lineto +1.10315e+02 3.977283e+01 lineto +1.11023e+02 3.895955e+01 lineto +closepath +gsave +4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor +fill +grestore +newpath +1.11023e+02 3.895955e+01 moveto +1.11023e+02 3.118555e+01 lineto +1.10315e+02 3.199883e+01 lineto +1.10315e+02 3.977283e+01 lineto +1.11023e+02 3.895955e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.11023e+02 4.673355e+01 moveto +1.11023e+02 3.895955e+01 lineto +1.10315e+02 3.977283e+01 lineto +1.10315e+02 4.754683e+01 lineto +1.11023e+02 4.673355e+01 lineto +closepath +gsave +4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor +fill +grestore +newpath +1.11023e+02 4.673355e+01 moveto +1.11023e+02 3.895955e+01 lineto +1.10315e+02 3.977283e+01 lineto +1.10315e+02 4.754683e+01 lineto +1.11023e+02 4.673355e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.11023e+02 5.450755e+01 moveto +1.11023e+02 4.673355e+01 lineto +1.10315e+02 4.754683e+01 lineto +1.10315e+02 5.532083e+01 lineto +1.11023e+02 5.450755e+01 lineto +closepath +gsave +4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor +fill +grestore +newpath +1.11023e+02 5.450755e+01 moveto +1.11023e+02 4.673355e+01 lineto +1.10315e+02 4.754683e+01 lineto +1.10315e+02 5.532083e+01 lineto +1.11023e+02 5.450755e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.11023e+02 6.228155e+01 moveto +1.11023e+02 5.450755e+01 lineto +1.10315e+02 5.532083e+01 lineto +1.10315e+02 6.309483e+01 lineto +1.11023e+02 6.228155e+01 lineto +closepath +gsave +4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor +fill +grestore +newpath +1.11023e+02 6.228155e+01 moveto +1.11023e+02 5.450755e+01 lineto +1.10315e+02 5.532083e+01 lineto +1.10315e+02 6.309483e+01 lineto +1.11023e+02 6.228155e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.11023e+02 7.005555e+01 moveto +1.11023e+02 6.228155e+01 lineto +1.10315e+02 6.309483e+01 lineto +1.10315e+02 7.086883e+01 lineto +1.11023e+02 7.005555e+01 lineto +closepath +gsave +4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor +fill +grestore +newpath +1.11023e+02 7.005555e+01 moveto +1.11023e+02 6.228155e+01 lineto +1.10315e+02 6.309483e+01 lineto +1.10315e+02 7.086883e+01 lineto +1.11023e+02 7.005555e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.11023e+02 7.782955e+01 moveto +1.11023e+02 7.005555e+01 lineto +1.10315e+02 7.086883e+01 lineto +1.10315e+02 7.864283e+01 lineto +1.11023e+02 7.782955e+01 lineto +closepath +gsave +4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor +fill +grestore +newpath +1.11023e+02 7.782955e+01 moveto +1.11023e+02 7.005555e+01 lineto +1.10315e+02 7.086883e+01 lineto +1.10315e+02 7.864283e+01 lineto +1.11023e+02 7.782955e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.11023e+02 8.560355e+01 moveto +1.11023e+02 7.782955e+01 lineto +1.10315e+02 7.864283e+01 lineto +1.10315e+02 8.641683e+01 lineto +1.11023e+02 8.560355e+01 lineto +closepath +gsave +4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor +fill +grestore +newpath +1.11023e+02 8.560355e+01 moveto +1.11023e+02 7.782955e+01 lineto +1.10315e+02 7.864283e+01 lineto +1.10315e+02 8.641683e+01 lineto +1.11023e+02 8.560355e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.11023e+02 9.337755e+01 moveto +1.11023e+02 8.560355e+01 lineto +1.10315e+02 8.641683e+01 lineto +1.10315e+02 9.419083e+01 lineto +1.11023e+02 9.337755e+01 lineto +closepath +gsave +4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor +fill +grestore +newpath +1.11023e+02 9.337755e+01 moveto +1.11023e+02 8.560355e+01 lineto +1.10315e+02 8.641683e+01 lineto +1.10315e+02 9.419083e+01 lineto +1.11023e+02 9.337755e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.11023e+02 1.011515e+02 moveto +1.11023e+02 9.337755e+01 lineto +1.10315e+02 9.419083e+01 lineto +1.10315e+02 1.019648e+02 lineto +1.11023e+02 1.011515e+02 lineto +closepath +gsave +4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor +fill +grestore +newpath +1.11023e+02 1.011515e+02 moveto +1.11023e+02 9.337755e+01 lineto +1.10315e+02 9.419083e+01 lineto +1.10315e+02 1.019648e+02 lineto +1.11023e+02 1.011515e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.10315e+02 3.199883e+01 moveto +1.10315e+02 2.422483e+01 lineto +1.093277e+02 2.501206e+01 lineto +1.093277e+02 3.278606e+01 lineto +1.10315e+02 3.199883e+01 lineto +closepath +gsave +4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor +fill +grestore +newpath +1.10315e+02 3.199883e+01 moveto +1.10315e+02 2.422483e+01 lineto +1.093277e+02 2.501206e+01 lineto +1.093277e+02 3.278606e+01 lineto +1.10315e+02 3.199883e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.10315e+02 3.977283e+01 moveto +1.10315e+02 3.199883e+01 lineto +1.093277e+02 3.278606e+01 lineto +1.093277e+02 4.056006e+01 lineto +1.10315e+02 3.977283e+01 lineto +closepath +gsave +4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor +fill +grestore +newpath +1.10315e+02 3.977283e+01 moveto +1.10315e+02 3.199883e+01 lineto +1.093277e+02 3.278606e+01 lineto +1.093277e+02 4.056006e+01 lineto +1.10315e+02 3.977283e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.10315e+02 4.754683e+01 moveto +1.10315e+02 3.977283e+01 lineto +1.093277e+02 4.056006e+01 lineto +1.093277e+02 4.833406e+01 lineto +1.10315e+02 4.754683e+01 lineto +closepath +gsave +4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor +fill +grestore +newpath +1.10315e+02 4.754683e+01 moveto +1.10315e+02 3.977283e+01 lineto +1.093277e+02 4.056006e+01 lineto +1.093277e+02 4.833406e+01 lineto +1.10315e+02 4.754683e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.10315e+02 5.532083e+01 moveto +1.10315e+02 4.754683e+01 lineto +1.093277e+02 4.833406e+01 lineto +1.093277e+02 5.610806e+01 lineto +1.10315e+02 5.532083e+01 lineto +closepath +gsave +4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor +fill +grestore +newpath +1.10315e+02 5.532083e+01 moveto +1.10315e+02 4.754683e+01 lineto +1.093277e+02 4.833406e+01 lineto +1.093277e+02 5.610806e+01 lineto +1.10315e+02 5.532083e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.10315e+02 6.309483e+01 moveto +1.10315e+02 5.532083e+01 lineto +1.093277e+02 5.610806e+01 lineto +1.093277e+02 6.388206e+01 lineto +1.10315e+02 6.309483e+01 lineto +closepath +gsave +4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor +fill +grestore +newpath +1.10315e+02 6.309483e+01 moveto +1.10315e+02 5.532083e+01 lineto +1.093277e+02 5.610806e+01 lineto +1.093277e+02 6.388206e+01 lineto +1.10315e+02 6.309483e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.10315e+02 7.086883e+01 moveto +1.10315e+02 6.309483e+01 lineto +1.093277e+02 6.388206e+01 lineto +1.093277e+02 7.165606e+01 lineto +1.10315e+02 7.086883e+01 lineto +closepath +gsave +4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor +fill +grestore +newpath +1.10315e+02 7.086883e+01 moveto +1.10315e+02 6.309483e+01 lineto +1.093277e+02 6.388206e+01 lineto +1.093277e+02 7.165606e+01 lineto +1.10315e+02 7.086883e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.10315e+02 7.864283e+01 moveto +1.10315e+02 7.086883e+01 lineto +1.093277e+02 7.165606e+01 lineto +1.093277e+02 7.943006e+01 lineto +1.10315e+02 7.864283e+01 lineto +closepath +gsave +4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor +fill +grestore +newpath +1.10315e+02 7.864283e+01 moveto +1.10315e+02 7.086883e+01 lineto +1.093277e+02 7.165606e+01 lineto +1.093277e+02 7.943006e+01 lineto +1.10315e+02 7.864283e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.10315e+02 8.641683e+01 moveto +1.10315e+02 7.864283e+01 lineto +1.093277e+02 7.943006e+01 lineto +1.093277e+02 8.720406e+01 lineto +1.10315e+02 8.641683e+01 lineto +closepath +gsave +4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor +fill +grestore +newpath +1.10315e+02 8.641683e+01 moveto +1.10315e+02 7.864283e+01 lineto +1.093277e+02 7.943006e+01 lineto +1.093277e+02 8.720406e+01 lineto +1.10315e+02 8.641683e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.10315e+02 9.419083e+01 moveto +1.10315e+02 8.641683e+01 lineto +1.093277e+02 8.720406e+01 lineto +1.093277e+02 9.497806e+01 lineto +1.10315e+02 9.419083e+01 lineto +closepath +gsave +4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor +fill +grestore +newpath +1.10315e+02 9.419083e+01 moveto +1.10315e+02 8.641683e+01 lineto +1.093277e+02 8.720406e+01 lineto +1.093277e+02 9.497806e+01 lineto +1.10315e+02 9.419083e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.10315e+02 1.019648e+02 moveto +1.10315e+02 9.419083e+01 lineto +1.093277e+02 9.497806e+01 lineto +1.093277e+02 1.027521e+02 lineto +1.10315e+02 1.019648e+02 lineto +closepath +gsave +4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor +fill +grestore +newpath +1.10315e+02 1.019648e+02 moveto +1.10315e+02 9.419083e+01 lineto +1.093277e+02 9.497806e+01 lineto +1.093277e+02 1.027521e+02 lineto +1.10315e+02 1.019648e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.093277e+02 3.278606e+01 moveto +1.093277e+02 2.501206e+01 lineto +1.08067e+02 2.576838e+01 lineto +1.08067e+02 3.354238e+01 lineto +1.093277e+02 3.278606e+01 lineto +closepath +gsave +4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor +fill +grestore +newpath +1.093277e+02 3.278606e+01 moveto +1.093277e+02 2.501206e+01 lineto +1.08067e+02 2.576838e+01 lineto +1.08067e+02 3.354238e+01 lineto +1.093277e+02 3.278606e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.093277e+02 4.056006e+01 moveto +1.093277e+02 3.278606e+01 lineto +1.08067e+02 3.354238e+01 lineto +1.08067e+02 4.131638e+01 lineto +1.093277e+02 4.056006e+01 lineto +closepath +gsave +4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor +fill +grestore +newpath +1.093277e+02 4.056006e+01 moveto +1.093277e+02 3.278606e+01 lineto +1.08067e+02 3.354238e+01 lineto +1.08067e+02 4.131638e+01 lineto +1.093277e+02 4.056006e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.093277e+02 4.833406e+01 moveto +1.093277e+02 4.056006e+01 lineto +1.08067e+02 4.131638e+01 lineto +1.08067e+02 4.909038e+01 lineto +1.093277e+02 4.833406e+01 lineto +closepath +gsave +4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor +fill +grestore +newpath +1.093277e+02 4.833406e+01 moveto +1.093277e+02 4.056006e+01 lineto +1.08067e+02 4.131638e+01 lineto +1.08067e+02 4.909038e+01 lineto +1.093277e+02 4.833406e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.093277e+02 5.610806e+01 moveto +1.093277e+02 4.833406e+01 lineto +1.08067e+02 4.909038e+01 lineto +1.08067e+02 5.686438e+01 lineto +1.093277e+02 5.610806e+01 lineto +closepath +gsave +4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor +fill +grestore +newpath +1.093277e+02 5.610806e+01 moveto +1.093277e+02 4.833406e+01 lineto +1.08067e+02 4.909038e+01 lineto +1.08067e+02 5.686438e+01 lineto +1.093277e+02 5.610806e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.093277e+02 6.388206e+01 moveto +1.093277e+02 5.610806e+01 lineto +1.08067e+02 5.686438e+01 lineto +1.08067e+02 6.463838e+01 lineto +1.093277e+02 6.388206e+01 lineto +closepath +gsave +4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor +fill +grestore +newpath +1.093277e+02 6.388206e+01 moveto +1.093277e+02 5.610806e+01 lineto +1.08067e+02 5.686438e+01 lineto +1.08067e+02 6.463838e+01 lineto +1.093277e+02 6.388206e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.093277e+02 7.165606e+01 moveto +1.093277e+02 6.388206e+01 lineto +1.08067e+02 6.463838e+01 lineto +1.08067e+02 7.241238e+01 lineto +1.093277e+02 7.165606e+01 lineto +closepath +gsave +4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor +fill +grestore +newpath +1.093277e+02 7.165606e+01 moveto +1.093277e+02 6.388206e+01 lineto +1.08067e+02 6.463838e+01 lineto +1.08067e+02 7.241238e+01 lineto +1.093277e+02 7.165606e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.093277e+02 7.943006e+01 moveto +1.093277e+02 7.165606e+01 lineto +1.08067e+02 7.241238e+01 lineto +1.08067e+02 8.018638e+01 lineto +1.093277e+02 7.943006e+01 lineto +closepath +gsave +4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor +fill +grestore +newpath +1.093277e+02 7.943006e+01 moveto +1.093277e+02 7.165606e+01 lineto +1.08067e+02 7.241238e+01 lineto +1.08067e+02 8.018638e+01 lineto +1.093277e+02 7.943006e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.093277e+02 8.720406e+01 moveto +1.093277e+02 7.943006e+01 lineto +1.08067e+02 8.018638e+01 lineto +1.08067e+02 8.796038e+01 lineto +1.093277e+02 8.720406e+01 lineto +closepath +gsave +4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor +fill +grestore +newpath +1.093277e+02 8.720406e+01 moveto +1.093277e+02 7.943006e+01 lineto +1.08067e+02 8.018638e+01 lineto +1.08067e+02 8.796038e+01 lineto +1.093277e+02 8.720406e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.093277e+02 9.497806e+01 moveto +1.093277e+02 8.720406e+01 lineto +1.08067e+02 8.796038e+01 lineto +1.08067e+02 9.573438e+01 lineto +1.093277e+02 9.497806e+01 lineto +closepath +gsave +4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor +fill +grestore +newpath +1.093277e+02 9.497806e+01 moveto +1.093277e+02 8.720406e+01 lineto +1.08067e+02 8.796038e+01 lineto +1.08067e+02 9.573438e+01 lineto +1.093277e+02 9.497806e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.093277e+02 1.027521e+02 moveto +1.093277e+02 9.497806e+01 lineto +1.08067e+02 9.573438e+01 lineto +1.08067e+02 1.035084e+02 lineto +1.093277e+02 1.027521e+02 lineto +closepath +gsave +4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor +fill +grestore +newpath +1.093277e+02 1.027521e+02 moveto +1.093277e+02 9.497806e+01 lineto +1.08067e+02 9.573438e+01 lineto +1.08067e+02 1.035084e+02 lineto +1.093277e+02 1.027521e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.08067e+02 3.354238e+01 moveto +1.08067e+02 2.576838e+01 lineto +1.065409e+02 2.648915e+01 lineto +1.065409e+02 3.426315e+01 lineto +1.08067e+02 3.354238e+01 lineto +closepath +gsave +4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor +fill +grestore +newpath +1.08067e+02 3.354238e+01 moveto +1.08067e+02 2.576838e+01 lineto +1.065409e+02 2.648915e+01 lineto +1.065409e+02 3.426315e+01 lineto +1.08067e+02 3.354238e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.08067e+02 4.131638e+01 moveto +1.08067e+02 3.354238e+01 lineto +1.065409e+02 3.426315e+01 lineto +1.065409e+02 4.203715e+01 lineto +1.08067e+02 4.131638e+01 lineto +closepath +gsave +4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor +fill +grestore +newpath +1.08067e+02 4.131638e+01 moveto +1.08067e+02 3.354238e+01 lineto +1.065409e+02 3.426315e+01 lineto +1.065409e+02 4.203715e+01 lineto +1.08067e+02 4.131638e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.08067e+02 4.909038e+01 moveto +1.08067e+02 4.131638e+01 lineto +1.065409e+02 4.203715e+01 lineto +1.065409e+02 4.981115e+01 lineto +1.08067e+02 4.909038e+01 lineto +closepath +gsave +4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor +fill +grestore +newpath +1.08067e+02 4.909038e+01 moveto +1.08067e+02 4.131638e+01 lineto +1.065409e+02 4.203715e+01 lineto +1.065409e+02 4.981115e+01 lineto +1.08067e+02 4.909038e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.08067e+02 5.686438e+01 moveto +1.08067e+02 4.909038e+01 lineto +1.065409e+02 4.981115e+01 lineto +1.065409e+02 5.758515e+01 lineto +1.08067e+02 5.686438e+01 lineto +closepath +gsave +4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor +fill +grestore +newpath +1.08067e+02 5.686438e+01 moveto +1.08067e+02 4.909038e+01 lineto +1.065409e+02 4.981115e+01 lineto +1.065409e+02 5.758515e+01 lineto +1.08067e+02 5.686438e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.08067e+02 6.463838e+01 moveto +1.08067e+02 5.686438e+01 lineto +1.065409e+02 5.758515e+01 lineto +1.065409e+02 6.535915e+01 lineto +1.08067e+02 6.463838e+01 lineto +closepath +gsave +4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor +fill +grestore +newpath +1.08067e+02 6.463838e+01 moveto +1.08067e+02 5.686438e+01 lineto +1.065409e+02 5.758515e+01 lineto +1.065409e+02 6.535915e+01 lineto +1.08067e+02 6.463838e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.08067e+02 7.241238e+01 moveto +1.08067e+02 6.463838e+01 lineto +1.065409e+02 6.535915e+01 lineto +1.065409e+02 7.313315e+01 lineto +1.08067e+02 7.241238e+01 lineto +closepath +gsave +4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor +fill +grestore +newpath +1.08067e+02 7.241238e+01 moveto +1.08067e+02 6.463838e+01 lineto +1.065409e+02 6.535915e+01 lineto +1.065409e+02 7.313315e+01 lineto +1.08067e+02 7.241238e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.08067e+02 8.018638e+01 moveto +1.08067e+02 7.241238e+01 lineto +1.065409e+02 7.313315e+01 lineto +1.065409e+02 8.090715e+01 lineto +1.08067e+02 8.018638e+01 lineto +closepath +gsave +4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor +fill +grestore +newpath +1.08067e+02 8.018638e+01 moveto +1.08067e+02 7.241238e+01 lineto +1.065409e+02 7.313315e+01 lineto +1.065409e+02 8.090715e+01 lineto +1.08067e+02 8.018638e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.08067e+02 8.796038e+01 moveto +1.08067e+02 8.018638e+01 lineto +1.065409e+02 8.090715e+01 lineto +1.065409e+02 8.868115e+01 lineto +1.08067e+02 8.796038e+01 lineto +closepath +gsave +4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor +fill +grestore +newpath +1.08067e+02 8.796038e+01 moveto +1.08067e+02 8.018638e+01 lineto +1.065409e+02 8.090715e+01 lineto +1.065409e+02 8.868115e+01 lineto +1.08067e+02 8.796038e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.08067e+02 9.573438e+01 moveto +1.08067e+02 8.796038e+01 lineto +1.065409e+02 8.868115e+01 lineto +1.065409e+02 9.645515e+01 lineto +1.08067e+02 9.573438e+01 lineto +closepath +gsave +4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor +fill +grestore +newpath +1.08067e+02 9.573438e+01 moveto +1.08067e+02 8.796038e+01 lineto +1.065409e+02 8.868115e+01 lineto +1.065409e+02 9.645515e+01 lineto +1.08067e+02 9.573438e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.08067e+02 1.035084e+02 moveto +1.08067e+02 9.573438e+01 lineto +1.065409e+02 9.645515e+01 lineto +1.065409e+02 1.042291e+02 lineto +1.08067e+02 1.035084e+02 lineto +closepath +gsave +4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor +fill +grestore +newpath +1.08067e+02 1.035084e+02 moveto +1.08067e+02 9.573438e+01 lineto +1.065409e+02 9.645515e+01 lineto +1.065409e+02 1.042291e+02 lineto +1.08067e+02 1.035084e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.065409e+02 3.426315e+01 moveto +1.065409e+02 2.648915e+01 lineto +1.047586e+02 2.716991e+01 lineto +1.047586e+02 3.494391e+01 lineto +1.065409e+02 3.426315e+01 lineto +closepath +gsave +5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor +fill +grestore +newpath +1.065409e+02 3.426315e+01 moveto +1.065409e+02 2.648915e+01 lineto +1.047586e+02 2.716991e+01 lineto +1.047586e+02 3.494391e+01 lineto +1.065409e+02 3.426315e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.065409e+02 4.203715e+01 moveto +1.065409e+02 3.426315e+01 lineto +1.047586e+02 3.494391e+01 lineto +1.047586e+02 4.271791e+01 lineto +1.065409e+02 4.203715e+01 lineto +closepath +gsave +5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor +fill +grestore +newpath +1.065409e+02 4.203715e+01 moveto +1.065409e+02 3.426315e+01 lineto +1.047586e+02 3.494391e+01 lineto +1.047586e+02 4.271791e+01 lineto +1.065409e+02 4.203715e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.065409e+02 4.981115e+01 moveto +1.065409e+02 4.203715e+01 lineto +1.047586e+02 4.271791e+01 lineto +1.047586e+02 5.049191e+01 lineto +1.065409e+02 4.981115e+01 lineto +closepath +gsave +5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor +fill +grestore +newpath +1.065409e+02 4.981115e+01 moveto +1.065409e+02 4.203715e+01 lineto +1.047586e+02 4.271791e+01 lineto +1.047586e+02 5.049191e+01 lineto +1.065409e+02 4.981115e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.065409e+02 5.758515e+01 moveto +1.065409e+02 4.981115e+01 lineto +1.047586e+02 5.049191e+01 lineto +1.047586e+02 5.826591e+01 lineto +1.065409e+02 5.758515e+01 lineto +closepath +gsave +5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor +fill +grestore +newpath +1.065409e+02 5.758515e+01 moveto +1.065409e+02 4.981115e+01 lineto +1.047586e+02 5.049191e+01 lineto +1.047586e+02 5.826591e+01 lineto +1.065409e+02 5.758515e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.065409e+02 6.535915e+01 moveto +1.065409e+02 5.758515e+01 lineto +1.047586e+02 5.826591e+01 lineto +1.047586e+02 6.603991e+01 lineto +1.065409e+02 6.535915e+01 lineto +closepath +gsave +5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor +fill +grestore +newpath +1.065409e+02 6.535915e+01 moveto +1.065409e+02 5.758515e+01 lineto +1.047586e+02 5.826591e+01 lineto +1.047586e+02 6.603991e+01 lineto +1.065409e+02 6.535915e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.065409e+02 7.313315e+01 moveto +1.065409e+02 6.535915e+01 lineto +1.047586e+02 6.603991e+01 lineto +1.047586e+02 7.381391e+01 lineto +1.065409e+02 7.313315e+01 lineto +closepath +gsave +5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor +fill +grestore +newpath +1.065409e+02 7.313315e+01 moveto +1.065409e+02 6.535915e+01 lineto +1.047586e+02 6.603991e+01 lineto +1.047586e+02 7.381391e+01 lineto +1.065409e+02 7.313315e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.065409e+02 8.090715e+01 moveto +1.065409e+02 7.313315e+01 lineto +1.047586e+02 7.381391e+01 lineto +1.047586e+02 8.158791e+01 lineto +1.065409e+02 8.090715e+01 lineto +closepath +gsave +5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor +fill +grestore +newpath +1.065409e+02 8.090715e+01 moveto +1.065409e+02 7.313315e+01 lineto +1.047586e+02 7.381391e+01 lineto +1.047586e+02 8.158791e+01 lineto +1.065409e+02 8.090715e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.065409e+02 8.868115e+01 moveto +1.065409e+02 8.090715e+01 lineto +1.047586e+02 8.158791e+01 lineto +1.047586e+02 8.936191e+01 lineto +1.065409e+02 8.868115e+01 lineto +closepath +gsave +5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor +fill +grestore +newpath +1.065409e+02 8.868115e+01 moveto +1.065409e+02 8.090715e+01 lineto +1.047586e+02 8.158791e+01 lineto +1.047586e+02 8.936191e+01 lineto +1.065409e+02 8.868115e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.065409e+02 9.645515e+01 moveto +1.065409e+02 8.868115e+01 lineto +1.047586e+02 8.936191e+01 lineto +1.047586e+02 9.713591e+01 lineto +1.065409e+02 9.645515e+01 lineto +closepath +gsave +5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor +fill +grestore +newpath +1.065409e+02 9.645515e+01 moveto +1.065409e+02 8.868115e+01 lineto +1.047586e+02 8.936191e+01 lineto +1.047586e+02 9.713591e+01 lineto +1.065409e+02 9.645515e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.065409e+02 1.042291e+02 moveto +1.065409e+02 9.645515e+01 lineto +1.047586e+02 9.713591e+01 lineto +1.047586e+02 1.049099e+02 lineto +1.065409e+02 1.042291e+02 lineto +closepath +gsave +5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor +fill +grestore +newpath +1.065409e+02 1.042291e+02 moveto +1.065409e+02 9.645515e+01 lineto +1.047586e+02 9.713591e+01 lineto +1.047586e+02 1.049099e+02 lineto +1.065409e+02 1.042291e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.047586e+02 3.494391e+01 moveto +1.047586e+02 2.716991e+01 lineto +1.027312e+02 2.780646e+01 lineto +1.027312e+02 3.558046e+01 lineto +1.047586e+02 3.494391e+01 lineto +closepath +gsave +5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor +fill +grestore +newpath +1.047586e+02 3.494391e+01 moveto +1.047586e+02 2.716991e+01 lineto +1.027312e+02 2.780646e+01 lineto +1.027312e+02 3.558046e+01 lineto +1.047586e+02 3.494391e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.047586e+02 4.271791e+01 moveto +1.047586e+02 3.494391e+01 lineto +1.027312e+02 3.558046e+01 lineto +1.027312e+02 4.335446e+01 lineto +1.047586e+02 4.271791e+01 lineto +closepath +gsave +5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor +fill +grestore +newpath +1.047586e+02 4.271791e+01 moveto +1.047586e+02 3.494391e+01 lineto +1.027312e+02 3.558046e+01 lineto +1.027312e+02 4.335446e+01 lineto +1.047586e+02 4.271791e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.047586e+02 5.049191e+01 moveto +1.047586e+02 4.271791e+01 lineto +1.027312e+02 4.335446e+01 lineto +1.027312e+02 5.112846e+01 lineto +1.047586e+02 5.049191e+01 lineto +closepath +gsave +5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor +fill +grestore +newpath +1.047586e+02 5.049191e+01 moveto +1.047586e+02 4.271791e+01 lineto +1.027312e+02 4.335446e+01 lineto +1.027312e+02 5.112846e+01 lineto +1.047586e+02 5.049191e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.047586e+02 5.826591e+01 moveto +1.047586e+02 5.049191e+01 lineto +1.027312e+02 5.112846e+01 lineto +1.027312e+02 5.890246e+01 lineto +1.047586e+02 5.826591e+01 lineto +closepath +gsave +5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor +fill +grestore +newpath +1.047586e+02 5.826591e+01 moveto +1.047586e+02 5.049191e+01 lineto +1.027312e+02 5.112846e+01 lineto +1.027312e+02 5.890246e+01 lineto +1.047586e+02 5.826591e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.047586e+02 6.603991e+01 moveto +1.047586e+02 5.826591e+01 lineto +1.027312e+02 5.890246e+01 lineto +1.027312e+02 6.667646e+01 lineto +1.047586e+02 6.603991e+01 lineto +closepath +gsave +5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor +fill +grestore +newpath +1.047586e+02 6.603991e+01 moveto +1.047586e+02 5.826591e+01 lineto +1.027312e+02 5.890246e+01 lineto +1.027312e+02 6.667646e+01 lineto +1.047586e+02 6.603991e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.047586e+02 7.381391e+01 moveto +1.047586e+02 6.603991e+01 lineto +1.027312e+02 6.667646e+01 lineto +1.027312e+02 7.445046e+01 lineto +1.047586e+02 7.381391e+01 lineto +closepath +gsave +5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor +fill +grestore +newpath +1.047586e+02 7.381391e+01 moveto +1.047586e+02 6.603991e+01 lineto +1.027312e+02 6.667646e+01 lineto +1.027312e+02 7.445046e+01 lineto +1.047586e+02 7.381391e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.047586e+02 8.158791e+01 moveto +1.047586e+02 7.381391e+01 lineto +1.027312e+02 7.445046e+01 lineto +1.027312e+02 8.222446e+01 lineto +1.047586e+02 8.158791e+01 lineto +closepath +gsave +5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor +fill +grestore +newpath +1.047586e+02 8.158791e+01 moveto +1.047586e+02 7.381391e+01 lineto +1.027312e+02 7.445046e+01 lineto +1.027312e+02 8.222446e+01 lineto +1.047586e+02 8.158791e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.047586e+02 8.936191e+01 moveto +1.047586e+02 8.158791e+01 lineto +1.027312e+02 8.222446e+01 lineto +1.027312e+02 8.999846e+01 lineto +1.047586e+02 8.936191e+01 lineto +closepath +gsave +5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor +fill +grestore +newpath +1.047586e+02 8.936191e+01 moveto +1.047586e+02 8.158791e+01 lineto +1.027312e+02 8.222446e+01 lineto +1.027312e+02 8.999846e+01 lineto +1.047586e+02 8.936191e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.047586e+02 9.713591e+01 moveto +1.047586e+02 8.936191e+01 lineto +1.027312e+02 8.999846e+01 lineto +1.027312e+02 9.777246e+01 lineto +1.047586e+02 9.713591e+01 lineto +closepath +gsave +5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor +fill +grestore +newpath +1.047586e+02 9.713591e+01 moveto +1.047586e+02 8.936191e+01 lineto +1.027312e+02 8.999846e+01 lineto +1.027312e+02 9.777246e+01 lineto +1.047586e+02 9.713591e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.047586e+02 1.049099e+02 moveto +1.047586e+02 9.713591e+01 lineto +1.027312e+02 9.777246e+01 lineto +1.027312e+02 1.055465e+02 lineto +1.047586e+02 1.049099e+02 lineto +closepath +gsave +5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor +fill +grestore +newpath +1.047586e+02 1.049099e+02 moveto +1.047586e+02 9.713591e+01 lineto +1.027312e+02 9.777246e+01 lineto +1.027312e+02 1.055465e+02 lineto +1.047586e+02 1.049099e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.027312e+02 3.558046e+01 moveto +1.027312e+02 2.780646e+01 lineto +1.004712e+02 2.839488e+01 lineto +1.004712e+02 3.616888e+01 lineto +1.027312e+02 3.558046e+01 lineto +closepath +gsave +5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor +fill +grestore +newpath +1.027312e+02 3.558046e+01 moveto +1.027312e+02 2.780646e+01 lineto +1.004712e+02 2.839488e+01 lineto +1.004712e+02 3.616888e+01 lineto +1.027312e+02 3.558046e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.027312e+02 4.335446e+01 moveto +1.027312e+02 3.558046e+01 lineto +1.004712e+02 3.616888e+01 lineto +1.004712e+02 4.394288e+01 lineto +1.027312e+02 4.335446e+01 lineto +closepath +gsave +5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor +fill +grestore +newpath +1.027312e+02 4.335446e+01 moveto +1.027312e+02 3.558046e+01 lineto +1.004712e+02 3.616888e+01 lineto +1.004712e+02 4.394288e+01 lineto +1.027312e+02 4.335446e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.027312e+02 5.112846e+01 moveto +1.027312e+02 4.335446e+01 lineto +1.004712e+02 4.394288e+01 lineto +1.004712e+02 5.171688e+01 lineto +1.027312e+02 5.112846e+01 lineto +closepath +gsave +5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor +fill +grestore +newpath +1.027312e+02 5.112846e+01 moveto +1.027312e+02 4.335446e+01 lineto +1.004712e+02 4.394288e+01 lineto +1.004712e+02 5.171688e+01 lineto +1.027312e+02 5.112846e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.027312e+02 5.890246e+01 moveto +1.027312e+02 5.112846e+01 lineto +1.004712e+02 5.171688e+01 lineto +1.004712e+02 5.949088e+01 lineto +1.027312e+02 5.890246e+01 lineto +closepath +gsave +5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor +fill +grestore +newpath +1.027312e+02 5.890246e+01 moveto +1.027312e+02 5.112846e+01 lineto +1.004712e+02 5.171688e+01 lineto +1.004712e+02 5.949088e+01 lineto +1.027312e+02 5.890246e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.027312e+02 6.667646e+01 moveto +1.027312e+02 5.890246e+01 lineto +1.004712e+02 5.949088e+01 lineto +1.004712e+02 6.726488e+01 lineto +1.027312e+02 6.667646e+01 lineto +closepath +gsave +5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor +fill +grestore +newpath +1.027312e+02 6.667646e+01 moveto +1.027312e+02 5.890246e+01 lineto +1.004712e+02 5.949088e+01 lineto +1.004712e+02 6.726488e+01 lineto +1.027312e+02 6.667646e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.027312e+02 7.445046e+01 moveto +1.027312e+02 6.667646e+01 lineto +1.004712e+02 6.726488e+01 lineto +1.004712e+02 7.503888e+01 lineto +1.027312e+02 7.445046e+01 lineto +closepath +gsave +5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor +fill +grestore +newpath +1.027312e+02 7.445046e+01 moveto +1.027312e+02 6.667646e+01 lineto +1.004712e+02 6.726488e+01 lineto +1.004712e+02 7.503888e+01 lineto +1.027312e+02 7.445046e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.027312e+02 8.222446e+01 moveto +1.027312e+02 7.445046e+01 lineto +1.004712e+02 7.503888e+01 lineto +1.004712e+02 8.281288e+01 lineto +1.027312e+02 8.222446e+01 lineto +closepath +gsave +5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor +fill +grestore +newpath +1.027312e+02 8.222446e+01 moveto +1.027312e+02 7.445046e+01 lineto +1.004712e+02 7.503888e+01 lineto +1.004712e+02 8.281288e+01 lineto +1.027312e+02 8.222446e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.027312e+02 8.999846e+01 moveto +1.027312e+02 8.222446e+01 lineto +1.004712e+02 8.281288e+01 lineto +1.004712e+02 9.058688e+01 lineto +1.027312e+02 8.999846e+01 lineto +closepath +gsave +5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor +fill +grestore +newpath +1.027312e+02 8.999846e+01 moveto +1.027312e+02 8.222446e+01 lineto +1.004712e+02 8.281288e+01 lineto +1.004712e+02 9.058688e+01 lineto +1.027312e+02 8.999846e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.027312e+02 9.777246e+01 moveto +1.027312e+02 8.999846e+01 lineto +1.004712e+02 9.058688e+01 lineto +1.004712e+02 9.836088e+01 lineto +1.027312e+02 9.777246e+01 lineto +closepath +gsave +5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor +fill +grestore +newpath +1.027312e+02 9.777246e+01 moveto +1.027312e+02 8.999846e+01 lineto +1.004712e+02 9.058688e+01 lineto +1.004712e+02 9.836088e+01 lineto +1.027312e+02 9.777246e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.027312e+02 1.055465e+02 moveto +1.027312e+02 9.777246e+01 lineto +1.004712e+02 9.836088e+01 lineto +1.004712e+02 1.061349e+02 lineto +1.027312e+02 1.055465e+02 lineto +closepath +gsave +5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor +fill +grestore +newpath +1.027312e+02 1.055465e+02 moveto +1.027312e+02 9.777246e+01 lineto +1.004712e+02 9.836088e+01 lineto +1.004712e+02 1.061349e+02 lineto +1.027312e+02 1.055465e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.004712e+02 3.616888e+01 moveto +1.004712e+02 2.839488e+01 lineto +9.799249e+01 2.893155e+01 lineto +9.799249e+01 3.670555e+01 lineto +1.004712e+02 3.616888e+01 lineto +closepath +gsave +5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor +fill +grestore +newpath +1.004712e+02 3.616888e+01 moveto +1.004712e+02 2.839488e+01 lineto +9.799249e+01 2.893155e+01 lineto +9.799249e+01 3.670555e+01 lineto +1.004712e+02 3.616888e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.004712e+02 4.394288e+01 moveto +1.004712e+02 3.616888e+01 lineto +9.799249e+01 3.670555e+01 lineto +9.799249e+01 4.447955e+01 lineto +1.004712e+02 4.394288e+01 lineto +closepath +gsave +5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor +fill +grestore +newpath +1.004712e+02 4.394288e+01 moveto +1.004712e+02 3.616888e+01 lineto +9.799249e+01 3.670555e+01 lineto +9.799249e+01 4.447955e+01 lineto +1.004712e+02 4.394288e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.004712e+02 5.171688e+01 moveto +1.004712e+02 4.394288e+01 lineto +9.799249e+01 4.447955e+01 lineto +9.799249e+01 5.225355e+01 lineto +1.004712e+02 5.171688e+01 lineto +closepath +gsave +5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor +fill +grestore +newpath +1.004712e+02 5.171688e+01 moveto +1.004712e+02 4.394288e+01 lineto +9.799249e+01 4.447955e+01 lineto +9.799249e+01 5.225355e+01 lineto +1.004712e+02 5.171688e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.004712e+02 5.949088e+01 moveto +1.004712e+02 5.171688e+01 lineto +9.799249e+01 5.225355e+01 lineto +9.799249e+01 6.002755e+01 lineto +1.004712e+02 5.949088e+01 lineto +closepath +gsave +5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor +fill +grestore +newpath +1.004712e+02 5.949088e+01 moveto +1.004712e+02 5.171688e+01 lineto +9.799249e+01 5.225355e+01 lineto +9.799249e+01 6.002755e+01 lineto +1.004712e+02 5.949088e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.004712e+02 6.726488e+01 moveto +1.004712e+02 5.949088e+01 lineto +9.799249e+01 6.002755e+01 lineto +9.799249e+01 6.780155e+01 lineto +1.004712e+02 6.726488e+01 lineto +closepath +gsave +5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor +fill +grestore +newpath +1.004712e+02 6.726488e+01 moveto +1.004712e+02 5.949088e+01 lineto +9.799249e+01 6.002755e+01 lineto +9.799249e+01 6.780155e+01 lineto +1.004712e+02 6.726488e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.004712e+02 7.503888e+01 moveto +1.004712e+02 6.726488e+01 lineto +9.799249e+01 6.780155e+01 lineto +9.799249e+01 7.557555e+01 lineto +1.004712e+02 7.503888e+01 lineto +closepath +gsave +5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor +fill +grestore +newpath +1.004712e+02 7.503888e+01 moveto +1.004712e+02 6.726488e+01 lineto +9.799249e+01 6.780155e+01 lineto +9.799249e+01 7.557555e+01 lineto +1.004712e+02 7.503888e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.004712e+02 8.281288e+01 moveto +1.004712e+02 7.503888e+01 lineto +9.799249e+01 7.557555e+01 lineto +9.799249e+01 8.334955e+01 lineto +1.004712e+02 8.281288e+01 lineto +closepath +gsave +5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor +fill +grestore +newpath +1.004712e+02 8.281288e+01 moveto +1.004712e+02 7.503888e+01 lineto +9.799249e+01 7.557555e+01 lineto +9.799249e+01 8.334955e+01 lineto +1.004712e+02 8.281288e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.004712e+02 9.058688e+01 moveto +1.004712e+02 8.281288e+01 lineto +9.799249e+01 8.334955e+01 lineto +9.799249e+01 9.112355e+01 lineto +1.004712e+02 9.058688e+01 lineto +closepath +gsave +5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor +fill +grestore +newpath +1.004712e+02 9.058688e+01 moveto +1.004712e+02 8.281288e+01 lineto +9.799249e+01 8.334955e+01 lineto +9.799249e+01 9.112355e+01 lineto +1.004712e+02 9.058688e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.004712e+02 9.836088e+01 moveto +1.004712e+02 9.058688e+01 lineto +9.799249e+01 9.112355e+01 lineto +9.799249e+01 9.889755e+01 lineto +1.004712e+02 9.836088e+01 lineto +closepath +gsave +5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor +fill +grestore +newpath +1.004712e+02 9.836088e+01 moveto +1.004712e+02 9.058688e+01 lineto +9.799249e+01 9.112355e+01 lineto +9.799249e+01 9.889755e+01 lineto +1.004712e+02 9.836088e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.004712e+02 1.061349e+02 moveto +1.004712e+02 9.836088e+01 lineto +9.799249e+01 9.889755e+01 lineto +9.799249e+01 1.066715e+02 lineto +1.004712e+02 1.061349e+02 lineto +closepath +gsave +5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor +fill +grestore +newpath +1.004712e+02 1.061349e+02 moveto +1.004712e+02 9.836088e+01 lineto +9.799249e+01 9.889755e+01 lineto +9.799249e+01 1.066715e+02 lineto +1.004712e+02 1.061349e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.799249e+01 3.670555e+01 moveto +9.799249e+01 2.893155e+01 lineto +9.531037e+01 2.941315e+01 lineto +9.531037e+01 3.718715e+01 lineto +9.799249e+01 3.670555e+01 lineto +closepath +gsave +5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor +fill +grestore +newpath +9.799249e+01 3.670555e+01 moveto +9.799249e+01 2.893155e+01 lineto +9.531037e+01 2.941315e+01 lineto +9.531037e+01 3.718715e+01 lineto +9.799249e+01 3.670555e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.799249e+01 4.447955e+01 moveto +9.799249e+01 3.670555e+01 lineto +9.531037e+01 3.718715e+01 lineto +9.531037e+01 4.496115e+01 lineto +9.799249e+01 4.447955e+01 lineto +closepath +gsave +5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor +fill +grestore +newpath +9.799249e+01 4.447955e+01 moveto +9.799249e+01 3.670555e+01 lineto +9.531037e+01 3.718715e+01 lineto +9.531037e+01 4.496115e+01 lineto +9.799249e+01 4.447955e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.799249e+01 5.225355e+01 moveto +9.799249e+01 4.447955e+01 lineto +9.531037e+01 4.496115e+01 lineto +9.531037e+01 5.273515e+01 lineto +9.799249e+01 5.225355e+01 lineto +closepath +gsave +5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor +fill +grestore +newpath +9.799249e+01 5.225355e+01 moveto +9.799249e+01 4.447955e+01 lineto +9.531037e+01 4.496115e+01 lineto +9.531037e+01 5.273515e+01 lineto +9.799249e+01 5.225355e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.799249e+01 6.002755e+01 moveto +9.799249e+01 5.225355e+01 lineto +9.531037e+01 5.273515e+01 lineto +9.531037e+01 6.050915e+01 lineto +9.799249e+01 6.002755e+01 lineto +closepath +gsave +5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor +fill +grestore +newpath +9.799249e+01 6.002755e+01 moveto +9.799249e+01 5.225355e+01 lineto +9.531037e+01 5.273515e+01 lineto +9.531037e+01 6.050915e+01 lineto +9.799249e+01 6.002755e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.799249e+01 6.780155e+01 moveto +9.799249e+01 6.002755e+01 lineto +9.531037e+01 6.050915e+01 lineto +9.531037e+01 6.828315e+01 lineto +9.799249e+01 6.780155e+01 lineto +closepath +gsave +5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor +fill +grestore +newpath +9.799249e+01 6.780155e+01 moveto +9.799249e+01 6.002755e+01 lineto +9.531037e+01 6.050915e+01 lineto +9.531037e+01 6.828315e+01 lineto +9.799249e+01 6.780155e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.799249e+01 7.557555e+01 moveto +9.799249e+01 6.780155e+01 lineto +9.531037e+01 6.828315e+01 lineto +9.531037e+01 7.605715e+01 lineto +9.799249e+01 7.557555e+01 lineto +closepath +gsave +5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor +fill +grestore +newpath +9.799249e+01 7.557555e+01 moveto +9.799249e+01 6.780155e+01 lineto +9.531037e+01 6.828315e+01 lineto +9.531037e+01 7.605715e+01 lineto +9.799249e+01 7.557555e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.799249e+01 8.334955e+01 moveto +9.799249e+01 7.557555e+01 lineto +9.531037e+01 7.605715e+01 lineto +9.531037e+01 8.383115e+01 lineto +9.799249e+01 8.334955e+01 lineto +closepath +gsave +5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor +fill +grestore +newpath +9.799249e+01 8.334955e+01 moveto +9.799249e+01 7.557555e+01 lineto +9.531037e+01 7.605715e+01 lineto +9.531037e+01 8.383115e+01 lineto +9.799249e+01 8.334955e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.799249e+01 9.112355e+01 moveto +9.799249e+01 8.334955e+01 lineto +9.531037e+01 8.383115e+01 lineto +9.531037e+01 9.160515e+01 lineto +9.799249e+01 9.112355e+01 lineto +closepath +gsave +5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor +fill +grestore +newpath +9.799249e+01 9.112355e+01 moveto +9.799249e+01 8.334955e+01 lineto +9.531037e+01 8.383115e+01 lineto +9.531037e+01 9.160515e+01 lineto +9.799249e+01 9.112355e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.799249e+01 9.889755e+01 moveto +9.799249e+01 9.112355e+01 lineto +9.531037e+01 9.160515e+01 lineto +9.531037e+01 9.937915e+01 lineto +9.799249e+01 9.889755e+01 lineto +closepath +gsave +5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor +fill +grestore +newpath +9.799249e+01 9.889755e+01 moveto +9.799249e+01 9.112355e+01 lineto +9.531037e+01 9.160515e+01 lineto +9.531037e+01 9.937915e+01 lineto +9.799249e+01 9.889755e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.799249e+01 1.066715e+02 moveto +9.799249e+01 9.889755e+01 lineto +9.531037e+01 9.937915e+01 lineto +9.531037e+01 1.071531e+02 lineto +9.799249e+01 1.066715e+02 lineto +closepath +gsave +5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor +fill +grestore +newpath +9.799249e+01 1.066715e+02 moveto +9.799249e+01 9.889755e+01 lineto +9.531037e+01 9.937915e+01 lineto +9.531037e+01 1.071531e+02 lineto +9.799249e+01 1.066715e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.531037e+01 3.718715e+01 moveto +9.531037e+01 2.941315e+01 lineto +9.244137e+01 2.983671e+01 lineto +9.244137e+01 3.761071e+01 lineto +9.531037e+01 3.718715e+01 lineto +closepath +gsave +6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor +fill +grestore +newpath +9.531037e+01 3.718715e+01 moveto +9.531037e+01 2.941315e+01 lineto +9.244137e+01 2.983671e+01 lineto +9.244137e+01 3.761071e+01 lineto +9.531037e+01 3.718715e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.531037e+01 4.496115e+01 moveto +9.531037e+01 3.718715e+01 lineto +9.244137e+01 3.761071e+01 lineto +9.244137e+01 4.538471e+01 lineto +9.531037e+01 4.496115e+01 lineto +closepath +gsave +6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor +fill +grestore +newpath +9.531037e+01 4.496115e+01 moveto +9.531037e+01 3.718715e+01 lineto +9.244137e+01 3.761071e+01 lineto +9.244137e+01 4.538471e+01 lineto +9.531037e+01 4.496115e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.531037e+01 5.273515e+01 moveto +9.531037e+01 4.496115e+01 lineto +9.244137e+01 4.538471e+01 lineto +9.244137e+01 5.315871e+01 lineto +9.531037e+01 5.273515e+01 lineto +closepath +gsave +6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor +fill +grestore +newpath +9.531037e+01 5.273515e+01 moveto +9.531037e+01 4.496115e+01 lineto +9.244137e+01 4.538471e+01 lineto +9.244137e+01 5.315871e+01 lineto +9.531037e+01 5.273515e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.531037e+01 6.050915e+01 moveto +9.531037e+01 5.273515e+01 lineto +9.244137e+01 5.315871e+01 lineto +9.244137e+01 6.093271e+01 lineto +9.531037e+01 6.050915e+01 lineto +closepath +gsave +6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor +fill +grestore +newpath +9.531037e+01 6.050915e+01 moveto +9.531037e+01 5.273515e+01 lineto +9.244137e+01 5.315871e+01 lineto +9.244137e+01 6.093271e+01 lineto +9.531037e+01 6.050915e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.531037e+01 6.828315e+01 moveto +9.531037e+01 6.050915e+01 lineto +9.244137e+01 6.093271e+01 lineto +9.244137e+01 6.870671e+01 lineto +9.531037e+01 6.828315e+01 lineto +closepath +gsave +6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor +fill +grestore +newpath +9.531037e+01 6.828315e+01 moveto +9.531037e+01 6.050915e+01 lineto +9.244137e+01 6.093271e+01 lineto +9.244137e+01 6.870671e+01 lineto +9.531037e+01 6.828315e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.531037e+01 7.605715e+01 moveto +9.531037e+01 6.828315e+01 lineto +9.244137e+01 6.870671e+01 lineto +9.244137e+01 7.648071e+01 lineto +9.531037e+01 7.605715e+01 lineto +closepath +gsave +6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor +fill +grestore +newpath +9.531037e+01 7.605715e+01 moveto +9.531037e+01 6.828315e+01 lineto +9.244137e+01 6.870671e+01 lineto +9.244137e+01 7.648071e+01 lineto +9.531037e+01 7.605715e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.531037e+01 8.383115e+01 moveto +9.531037e+01 7.605715e+01 lineto +9.244137e+01 7.648071e+01 lineto +9.244137e+01 8.425471e+01 lineto +9.531037e+01 8.383115e+01 lineto +closepath +gsave +6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor +fill +grestore +newpath +9.531037e+01 8.383115e+01 moveto +9.531037e+01 7.605715e+01 lineto +9.244137e+01 7.648071e+01 lineto +9.244137e+01 8.425471e+01 lineto +9.531037e+01 8.383115e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.531037e+01 9.160515e+01 moveto +9.531037e+01 8.383115e+01 lineto +9.244137e+01 8.425471e+01 lineto +9.244137e+01 9.202871e+01 lineto +9.531037e+01 9.160515e+01 lineto +closepath +gsave +6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor +fill +grestore +newpath +9.531037e+01 9.160515e+01 moveto +9.531037e+01 8.383115e+01 lineto +9.244137e+01 8.425471e+01 lineto +9.244137e+01 9.202871e+01 lineto +9.531037e+01 9.160515e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.531037e+01 9.937915e+01 moveto +9.531037e+01 9.160515e+01 lineto +9.244137e+01 9.202871e+01 lineto +9.244137e+01 9.980271e+01 lineto +9.531037e+01 9.937915e+01 lineto +closepath +gsave +6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor +fill +grestore +newpath +9.531037e+01 9.937915e+01 moveto +9.531037e+01 9.160515e+01 lineto +9.244137e+01 9.202871e+01 lineto +9.244137e+01 9.980271e+01 lineto +9.531037e+01 9.937915e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.531037e+01 1.071531e+02 moveto +9.531037e+01 9.937915e+01 lineto +9.244137e+01 9.980271e+01 lineto +9.244137e+01 1.075767e+02 lineto +9.531037e+01 1.071531e+02 lineto +closepath +gsave +6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor +fill +grestore +newpath +9.531037e+01 1.071531e+02 moveto +9.531037e+01 9.937915e+01 lineto +9.244137e+01 9.980271e+01 lineto +9.244137e+01 1.075767e+02 lineto +9.531037e+01 1.071531e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.244137e+01 3.761071e+01 moveto +9.244137e+01 2.983671e+01 lineto +8.940319e+01 3.019963e+01 lineto +8.940319e+01 3.797363e+01 lineto +9.244137e+01 3.761071e+01 lineto +closepath +gsave +6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor +fill +grestore +newpath +9.244137e+01 3.761071e+01 moveto +9.244137e+01 2.983671e+01 lineto +8.940319e+01 3.019963e+01 lineto +8.940319e+01 3.797363e+01 lineto +9.244137e+01 3.761071e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.244137e+01 4.538471e+01 moveto +9.244137e+01 3.761071e+01 lineto +8.940319e+01 3.797363e+01 lineto +8.940319e+01 4.574763e+01 lineto +9.244137e+01 4.538471e+01 lineto +closepath +gsave +6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor +fill +grestore +newpath +9.244137e+01 4.538471e+01 moveto +9.244137e+01 3.761071e+01 lineto +8.940319e+01 3.797363e+01 lineto +8.940319e+01 4.574763e+01 lineto +9.244137e+01 4.538471e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.244137e+01 5.315871e+01 moveto +9.244137e+01 4.538471e+01 lineto +8.940319e+01 4.574763e+01 lineto +8.940319e+01 5.352163e+01 lineto +9.244137e+01 5.315871e+01 lineto +closepath +gsave +6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor +fill +grestore +newpath +9.244137e+01 5.315871e+01 moveto +9.244137e+01 4.538471e+01 lineto +8.940319e+01 4.574763e+01 lineto +8.940319e+01 5.352163e+01 lineto +9.244137e+01 5.315871e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.244137e+01 6.093271e+01 moveto +9.244137e+01 5.315871e+01 lineto +8.940319e+01 5.352163e+01 lineto +8.940319e+01 6.129563e+01 lineto +9.244137e+01 6.093271e+01 lineto +closepath +gsave +6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor +fill +grestore +newpath +9.244137e+01 6.093271e+01 moveto +9.244137e+01 5.315871e+01 lineto +8.940319e+01 5.352163e+01 lineto +8.940319e+01 6.129563e+01 lineto +9.244137e+01 6.093271e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.244137e+01 6.870671e+01 moveto +9.244137e+01 6.093271e+01 lineto +8.940319e+01 6.129563e+01 lineto +8.940319e+01 6.906963e+01 lineto +9.244137e+01 6.870671e+01 lineto +closepath +gsave +6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor +fill +grestore +newpath +9.244137e+01 6.870671e+01 moveto +9.244137e+01 6.093271e+01 lineto +8.940319e+01 6.129563e+01 lineto +8.940319e+01 6.906963e+01 lineto +9.244137e+01 6.870671e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.244137e+01 7.648071e+01 moveto +9.244137e+01 6.870671e+01 lineto +8.940319e+01 6.906963e+01 lineto +8.940319e+01 7.684363e+01 lineto +9.244137e+01 7.648071e+01 lineto +closepath +gsave +6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor +fill +grestore +newpath +9.244137e+01 7.648071e+01 moveto +9.244137e+01 6.870671e+01 lineto +8.940319e+01 6.906963e+01 lineto +8.940319e+01 7.684363e+01 lineto +9.244137e+01 7.648071e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.244137e+01 8.425471e+01 moveto +9.244137e+01 7.648071e+01 lineto +8.940319e+01 7.684363e+01 lineto +8.940319e+01 8.461763e+01 lineto +9.244137e+01 8.425471e+01 lineto +closepath +gsave +6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor +fill +grestore +newpath +9.244137e+01 8.425471e+01 moveto +9.244137e+01 7.648071e+01 lineto +8.940319e+01 7.684363e+01 lineto +8.940319e+01 8.461763e+01 lineto +9.244137e+01 8.425471e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.244137e+01 9.202871e+01 moveto +9.244137e+01 8.425471e+01 lineto +8.940319e+01 8.461763e+01 lineto +8.940319e+01 9.239163e+01 lineto +9.244137e+01 9.202871e+01 lineto +closepath +gsave +6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor +fill +grestore +newpath +9.244137e+01 9.202871e+01 moveto +9.244137e+01 8.425471e+01 lineto +8.940319e+01 8.461763e+01 lineto +8.940319e+01 9.239163e+01 lineto +9.244137e+01 9.202871e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.244137e+01 9.980271e+01 moveto +9.244137e+01 9.202871e+01 lineto +8.940319e+01 9.239163e+01 lineto +8.940319e+01 1.001656e+02 lineto +9.244137e+01 9.980271e+01 lineto +closepath +gsave +6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor +fill +grestore +newpath +9.244137e+01 9.980271e+01 moveto +9.244137e+01 9.202871e+01 lineto +8.940319e+01 9.239163e+01 lineto +8.940319e+01 1.001656e+02 lineto +9.244137e+01 9.980271e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.244137e+01 1.075767e+02 moveto +9.244137e+01 9.980271e+01 lineto +8.940319e+01 1.001656e+02 lineto +8.940319e+01 1.079396e+02 lineto +9.244137e+01 1.075767e+02 lineto +closepath +gsave +6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor +fill +grestore +newpath +9.244137e+01 1.075767e+02 moveto +9.244137e+01 9.980271e+01 lineto +8.940319e+01 1.001656e+02 lineto +8.940319e+01 1.079396e+02 lineto +9.244137e+01 1.075767e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.940319e+01 3.797363e+01 moveto +8.940319e+01 3.019963e+01 lineto +8.621456e+01 3.049966e+01 lineto +8.621456e+01 3.827366e+01 lineto +8.940319e+01 3.797363e+01 lineto +closepath +gsave +6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor +fill +grestore +newpath +8.940319e+01 3.797363e+01 moveto +8.940319e+01 3.019963e+01 lineto +8.621456e+01 3.049966e+01 lineto +8.621456e+01 3.827366e+01 lineto +8.940319e+01 3.797363e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.940319e+01 4.574763e+01 moveto +8.940319e+01 3.797363e+01 lineto +8.621456e+01 3.827366e+01 lineto +8.621456e+01 4.604766e+01 lineto +8.940319e+01 4.574763e+01 lineto +closepath +gsave +6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor +fill +grestore +newpath +8.940319e+01 4.574763e+01 moveto +8.940319e+01 3.797363e+01 lineto +8.621456e+01 3.827366e+01 lineto +8.621456e+01 4.604766e+01 lineto +8.940319e+01 4.574763e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.940319e+01 5.352163e+01 moveto +8.940319e+01 4.574763e+01 lineto +8.621456e+01 4.604766e+01 lineto +8.621456e+01 5.382166e+01 lineto +8.940319e+01 5.352163e+01 lineto +closepath +gsave +6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor +fill +grestore +newpath +8.940319e+01 5.352163e+01 moveto +8.940319e+01 4.574763e+01 lineto +8.621456e+01 4.604766e+01 lineto +8.621456e+01 5.382166e+01 lineto +8.940319e+01 5.352163e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.940319e+01 6.129563e+01 moveto +8.940319e+01 5.352163e+01 lineto +8.621456e+01 5.382166e+01 lineto +8.621456e+01 6.159566e+01 lineto +8.940319e+01 6.129563e+01 lineto +closepath +gsave +6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor +fill +grestore +newpath +8.940319e+01 6.129563e+01 moveto +8.940319e+01 5.352163e+01 lineto +8.621456e+01 5.382166e+01 lineto +8.621456e+01 6.159566e+01 lineto +8.940319e+01 6.129563e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.940319e+01 6.906963e+01 moveto +8.940319e+01 6.129563e+01 lineto +8.621456e+01 6.159566e+01 lineto +8.621456e+01 6.936966e+01 lineto +8.940319e+01 6.906963e+01 lineto +closepath +gsave +6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor +fill +grestore +newpath +8.940319e+01 6.906963e+01 moveto +8.940319e+01 6.129563e+01 lineto +8.621456e+01 6.159566e+01 lineto +8.621456e+01 6.936966e+01 lineto +8.940319e+01 6.906963e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.940319e+01 7.684363e+01 moveto +8.940319e+01 6.906963e+01 lineto +8.621456e+01 6.936966e+01 lineto +8.621456e+01 7.714366e+01 lineto +8.940319e+01 7.684363e+01 lineto +closepath +gsave +6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor +fill +grestore +newpath +8.940319e+01 7.684363e+01 moveto +8.940319e+01 6.906963e+01 lineto +8.621456e+01 6.936966e+01 lineto +8.621456e+01 7.714366e+01 lineto +8.940319e+01 7.684363e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.940319e+01 8.461763e+01 moveto +8.940319e+01 7.684363e+01 lineto +8.621456e+01 7.714366e+01 lineto +8.621456e+01 8.491766e+01 lineto +8.940319e+01 8.461763e+01 lineto +closepath +gsave +6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor +fill +grestore +newpath +8.940319e+01 8.461763e+01 moveto +8.940319e+01 7.684363e+01 lineto +8.621456e+01 7.714366e+01 lineto +8.621456e+01 8.491766e+01 lineto +8.940319e+01 8.461763e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.940319e+01 9.239163e+01 moveto +8.940319e+01 8.461763e+01 lineto +8.621456e+01 8.491766e+01 lineto +8.621456e+01 9.269166e+01 lineto +8.940319e+01 9.239163e+01 lineto +closepath +gsave +6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor +fill +grestore +newpath +8.940319e+01 9.239163e+01 moveto +8.940319e+01 8.461763e+01 lineto +8.621456e+01 8.491766e+01 lineto +8.621456e+01 9.269166e+01 lineto +8.940319e+01 9.239163e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.940319e+01 1.001656e+02 moveto +8.940319e+01 9.239163e+01 lineto +8.621456e+01 9.269166e+01 lineto +8.621456e+01 1.004657e+02 lineto +8.940319e+01 1.001656e+02 lineto +closepath +gsave +6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor +fill +grestore +newpath +8.940319e+01 1.001656e+02 moveto +8.940319e+01 9.239163e+01 lineto +8.621456e+01 9.269166e+01 lineto +8.621456e+01 1.004657e+02 lineto +8.940319e+01 1.001656e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.940319e+01 1.079396e+02 moveto +8.940319e+01 1.001656e+02 lineto +8.621456e+01 1.004657e+02 lineto +8.621456e+01 1.082397e+02 lineto +8.940319e+01 1.079396e+02 lineto +closepath +gsave +6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor +fill +grestore +newpath +8.940319e+01 1.079396e+02 moveto +8.940319e+01 1.001656e+02 lineto +8.621456e+01 1.004657e+02 lineto +8.621456e+01 1.082397e+02 lineto +8.940319e+01 1.079396e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.621456e+01 3.827366e+01 moveto +8.621456e+01 3.049966e+01 lineto +8.289513e+01 3.073496e+01 lineto +8.289513e+01 3.850896e+01 lineto +8.621456e+01 3.827366e+01 lineto +closepath +gsave +6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor +fill +grestore +newpath +8.621456e+01 3.827366e+01 moveto +8.621456e+01 3.049966e+01 lineto +8.289513e+01 3.073496e+01 lineto +8.289513e+01 3.850896e+01 lineto +8.621456e+01 3.827366e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.621456e+01 4.604766e+01 moveto +8.621456e+01 3.827366e+01 lineto +8.289513e+01 3.850896e+01 lineto +8.289513e+01 4.628296e+01 lineto +8.621456e+01 4.604766e+01 lineto +closepath +gsave +6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor +fill +grestore +newpath +8.621456e+01 4.604766e+01 moveto +8.621456e+01 3.827366e+01 lineto +8.289513e+01 3.850896e+01 lineto +8.289513e+01 4.628296e+01 lineto +8.621456e+01 4.604766e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.621456e+01 5.382166e+01 moveto +8.621456e+01 4.604766e+01 lineto +8.289513e+01 4.628296e+01 lineto +8.289513e+01 5.405696e+01 lineto +8.621456e+01 5.382166e+01 lineto +closepath +gsave +6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor +fill +grestore +newpath +8.621456e+01 5.382166e+01 moveto +8.621456e+01 4.604766e+01 lineto +8.289513e+01 4.628296e+01 lineto +8.289513e+01 5.405696e+01 lineto +8.621456e+01 5.382166e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.621456e+01 6.159566e+01 moveto +8.621456e+01 5.382166e+01 lineto +8.289513e+01 5.405696e+01 lineto +8.289513e+01 6.183096e+01 lineto +8.621456e+01 6.159566e+01 lineto +closepath +gsave +6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor +fill +grestore +newpath +8.621456e+01 6.159566e+01 moveto +8.621456e+01 5.382166e+01 lineto +8.289513e+01 5.405696e+01 lineto +8.289513e+01 6.183096e+01 lineto +8.621456e+01 6.159566e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.621456e+01 6.936966e+01 moveto +8.621456e+01 6.159566e+01 lineto +8.289513e+01 6.183096e+01 lineto +8.289513e+01 6.960496e+01 lineto +8.621456e+01 6.936966e+01 lineto +closepath +gsave +6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor +fill +grestore +newpath +8.621456e+01 6.936966e+01 moveto +8.621456e+01 6.159566e+01 lineto +8.289513e+01 6.183096e+01 lineto +8.289513e+01 6.960496e+01 lineto +8.621456e+01 6.936966e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.621456e+01 7.714366e+01 moveto +8.621456e+01 6.936966e+01 lineto +8.289513e+01 6.960496e+01 lineto +8.289513e+01 7.737896e+01 lineto +8.621456e+01 7.714366e+01 lineto +closepath +gsave +6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor +fill +grestore +newpath +8.621456e+01 7.714366e+01 moveto +8.621456e+01 6.936966e+01 lineto +8.289513e+01 6.960496e+01 lineto +8.289513e+01 7.737896e+01 lineto +8.621456e+01 7.714366e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.621456e+01 8.491766e+01 moveto +8.621456e+01 7.714366e+01 lineto +8.289513e+01 7.737896e+01 lineto +8.289513e+01 8.515296e+01 lineto +8.621456e+01 8.491766e+01 lineto +closepath +gsave +6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor +fill +grestore +newpath +8.621456e+01 8.491766e+01 moveto +8.621456e+01 7.714366e+01 lineto +8.289513e+01 7.737896e+01 lineto +8.289513e+01 8.515296e+01 lineto +8.621456e+01 8.491766e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.621456e+01 9.269166e+01 moveto +8.621456e+01 8.491766e+01 lineto +8.289513e+01 8.515296e+01 lineto +8.289513e+01 9.292696e+01 lineto +8.621456e+01 9.269166e+01 lineto +closepath +gsave +6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor +fill +grestore +newpath +8.621456e+01 9.269166e+01 moveto +8.621456e+01 8.491766e+01 lineto +8.289513e+01 8.515296e+01 lineto +8.289513e+01 9.292696e+01 lineto +8.621456e+01 9.269166e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.621456e+01 1.004657e+02 moveto +8.621456e+01 9.269166e+01 lineto +8.289513e+01 9.292696e+01 lineto +8.289513e+01 1.00701e+02 lineto +8.621456e+01 1.004657e+02 lineto +closepath +gsave +6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor +fill +grestore +newpath +8.621456e+01 1.004657e+02 moveto +8.621456e+01 9.269166e+01 lineto +8.289513e+01 9.292696e+01 lineto +8.289513e+01 1.00701e+02 lineto +8.621456e+01 1.004657e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.621456e+01 1.082397e+02 moveto +8.621456e+01 1.004657e+02 lineto +8.289513e+01 1.00701e+02 lineto +8.289513e+01 1.08475e+02 lineto +8.621456e+01 1.082397e+02 lineto +closepath +gsave +6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor +fill +grestore +newpath +8.621456e+01 1.082397e+02 moveto +8.621456e+01 1.004657e+02 lineto +8.289513e+01 1.00701e+02 lineto +8.289513e+01 1.08475e+02 lineto +8.621456e+01 1.082397e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.289513e+01 3.850896e+01 moveto +8.289513e+01 3.073496e+01 lineto +7.946537e+01 3.090408e+01 lineto +7.946537e+01 3.867808e+01 lineto +8.289513e+01 3.850896e+01 lineto +closepath +gsave +6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor +fill +grestore +newpath +8.289513e+01 3.850896e+01 moveto +8.289513e+01 3.073496e+01 lineto +7.946537e+01 3.090408e+01 lineto +7.946537e+01 3.867808e+01 lineto +8.289513e+01 3.850896e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.289513e+01 4.628296e+01 moveto +8.289513e+01 3.850896e+01 lineto +7.946537e+01 3.867808e+01 lineto +7.946537e+01 4.645208e+01 lineto +8.289513e+01 4.628296e+01 lineto +closepath +gsave +6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor +fill +grestore +newpath +8.289513e+01 4.628296e+01 moveto +8.289513e+01 3.850896e+01 lineto +7.946537e+01 3.867808e+01 lineto +7.946537e+01 4.645208e+01 lineto +8.289513e+01 4.628296e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.289513e+01 5.405696e+01 moveto +8.289513e+01 4.628296e+01 lineto +7.946537e+01 4.645208e+01 lineto +7.946537e+01 5.422608e+01 lineto +8.289513e+01 5.405696e+01 lineto +closepath +gsave +6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor +fill +grestore +newpath +8.289513e+01 5.405696e+01 moveto +8.289513e+01 4.628296e+01 lineto +7.946537e+01 4.645208e+01 lineto +7.946537e+01 5.422608e+01 lineto +8.289513e+01 5.405696e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.289513e+01 6.183096e+01 moveto +8.289513e+01 5.405696e+01 lineto +7.946537e+01 5.422608e+01 lineto +7.946537e+01 6.200008e+01 lineto +8.289513e+01 6.183096e+01 lineto +closepath +gsave +6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor +fill +grestore +newpath +8.289513e+01 6.183096e+01 moveto +8.289513e+01 5.405696e+01 lineto +7.946537e+01 5.422608e+01 lineto +7.946537e+01 6.200008e+01 lineto +8.289513e+01 6.183096e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.289513e+01 6.960496e+01 moveto +8.289513e+01 6.183096e+01 lineto +7.946537e+01 6.200008e+01 lineto +7.946537e+01 6.977408e+01 lineto +8.289513e+01 6.960496e+01 lineto +closepath +gsave +6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor +fill +grestore +newpath +8.289513e+01 6.960496e+01 moveto +8.289513e+01 6.183096e+01 lineto +7.946537e+01 6.200008e+01 lineto +7.946537e+01 6.977408e+01 lineto +8.289513e+01 6.960496e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.289513e+01 7.737896e+01 moveto +8.289513e+01 6.960496e+01 lineto +7.946537e+01 6.977408e+01 lineto +7.946537e+01 7.754808e+01 lineto +8.289513e+01 7.737896e+01 lineto +closepath +gsave +6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor +fill +grestore +newpath +8.289513e+01 7.737896e+01 moveto +8.289513e+01 6.960496e+01 lineto +7.946537e+01 6.977408e+01 lineto +7.946537e+01 7.754808e+01 lineto +8.289513e+01 7.737896e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.289513e+01 8.515296e+01 moveto +8.289513e+01 7.737896e+01 lineto +7.946537e+01 7.754808e+01 lineto +7.946537e+01 8.532208e+01 lineto +8.289513e+01 8.515296e+01 lineto +closepath +gsave +6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor +fill +grestore +newpath +8.289513e+01 8.515296e+01 moveto +8.289513e+01 7.737896e+01 lineto +7.946537e+01 7.754808e+01 lineto +7.946537e+01 8.532208e+01 lineto +8.289513e+01 8.515296e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.289513e+01 9.292696e+01 moveto +8.289513e+01 8.515296e+01 lineto +7.946537e+01 8.532208e+01 lineto +7.946537e+01 9.309608e+01 lineto +8.289513e+01 9.292696e+01 lineto +closepath +gsave +6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor +fill +grestore +newpath +8.289513e+01 9.292696e+01 moveto +8.289513e+01 8.515296e+01 lineto +7.946537e+01 8.532208e+01 lineto +7.946537e+01 9.309608e+01 lineto +8.289513e+01 9.292696e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.289513e+01 1.00701e+02 moveto +8.289513e+01 9.292696e+01 lineto +7.946537e+01 9.309608e+01 lineto +7.946537e+01 1.008701e+02 lineto +8.289513e+01 1.00701e+02 lineto +closepath +gsave +6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor +fill +grestore +newpath +8.289513e+01 1.00701e+02 moveto +8.289513e+01 9.292696e+01 lineto +7.946537e+01 9.309608e+01 lineto +7.946537e+01 1.008701e+02 lineto +8.289513e+01 1.00701e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.289513e+01 1.08475e+02 moveto +8.289513e+01 1.00701e+02 lineto +7.946537e+01 1.008701e+02 lineto +7.946537e+01 1.086441e+02 lineto +8.289513e+01 1.08475e+02 lineto +closepath +gsave +6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor +fill +grestore +newpath +8.289513e+01 1.08475e+02 moveto +8.289513e+01 1.00701e+02 lineto +7.946537e+01 1.008701e+02 lineto +7.946537e+01 1.086441e+02 lineto +8.289513e+01 1.08475e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.946537e+01 3.867808e+01 moveto +7.946537e+01 3.090408e+01 lineto +7.594643e+01 3.100597e+01 lineto +7.594643e+01 3.877997e+01 lineto +7.946537e+01 3.867808e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +7.946537e+01 3.867808e+01 moveto +7.946537e+01 3.090408e+01 lineto +7.594643e+01 3.100597e+01 lineto +7.594643e+01 3.877997e+01 lineto +7.946537e+01 3.867808e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.946537e+01 4.645208e+01 moveto +7.946537e+01 3.867808e+01 lineto +7.594643e+01 3.877997e+01 lineto +7.594643e+01 4.655397e+01 lineto +7.946537e+01 4.645208e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +7.946537e+01 4.645208e+01 moveto +7.946537e+01 3.867808e+01 lineto +7.594643e+01 3.877997e+01 lineto +7.594643e+01 4.655397e+01 lineto +7.946537e+01 4.645208e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.946537e+01 5.422608e+01 moveto +7.946537e+01 4.645208e+01 lineto +7.594643e+01 4.655397e+01 lineto +7.594643e+01 5.432797e+01 lineto +7.946537e+01 5.422608e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +7.946537e+01 5.422608e+01 moveto +7.946537e+01 4.645208e+01 lineto +7.594643e+01 4.655397e+01 lineto +7.594643e+01 5.432797e+01 lineto +7.946537e+01 5.422608e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.946537e+01 6.200008e+01 moveto +7.946537e+01 5.422608e+01 lineto +7.594643e+01 5.432797e+01 lineto +7.594643e+01 6.210197e+01 lineto +7.946537e+01 6.200008e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +7.946537e+01 6.200008e+01 moveto +7.946537e+01 5.422608e+01 lineto +7.594643e+01 5.432797e+01 lineto +7.594643e+01 6.210197e+01 lineto +7.946537e+01 6.200008e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.946537e+01 6.977408e+01 moveto +7.946537e+01 6.200008e+01 lineto +7.594643e+01 6.210197e+01 lineto +7.594643e+01 6.987597e+01 lineto +7.946537e+01 6.977408e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +7.946537e+01 6.977408e+01 moveto +7.946537e+01 6.200008e+01 lineto +7.594643e+01 6.210197e+01 lineto +7.594643e+01 6.987597e+01 lineto +7.946537e+01 6.977408e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.946537e+01 7.754808e+01 moveto +7.946537e+01 6.977408e+01 lineto +7.594643e+01 6.987597e+01 lineto +7.594643e+01 7.764997e+01 lineto +7.946537e+01 7.754808e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +7.946537e+01 7.754808e+01 moveto +7.946537e+01 6.977408e+01 lineto +7.594643e+01 6.987597e+01 lineto +7.594643e+01 7.764997e+01 lineto +7.946537e+01 7.754808e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.946537e+01 8.532208e+01 moveto +7.946537e+01 7.754808e+01 lineto +7.594643e+01 7.764997e+01 lineto +7.594643e+01 8.542397e+01 lineto +7.946537e+01 8.532208e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +7.946537e+01 8.532208e+01 moveto +7.946537e+01 7.754808e+01 lineto +7.594643e+01 7.764997e+01 lineto +7.594643e+01 8.542397e+01 lineto +7.946537e+01 8.532208e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.946537e+01 9.309608e+01 moveto +7.946537e+01 8.532208e+01 lineto +7.594643e+01 8.542397e+01 lineto +7.594643e+01 9.319797e+01 lineto +7.946537e+01 9.309608e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +7.946537e+01 9.309608e+01 moveto +7.946537e+01 8.532208e+01 lineto +7.594643e+01 8.542397e+01 lineto +7.594643e+01 9.319797e+01 lineto +7.946537e+01 9.309608e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.946537e+01 1.008701e+02 moveto +7.946537e+01 9.309608e+01 lineto +7.594643e+01 9.319797e+01 lineto +7.594643e+01 1.00972e+02 lineto +7.946537e+01 1.008701e+02 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +7.946537e+01 1.008701e+02 moveto +7.946537e+01 9.309608e+01 lineto +7.594643e+01 9.319797e+01 lineto +7.594643e+01 1.00972e+02 lineto +7.946537e+01 1.008701e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.946537e+01 1.086441e+02 moveto +7.946537e+01 1.008701e+02 lineto +7.594643e+01 1.00972e+02 lineto +7.594643e+01 1.08746e+02 lineto +7.946537e+01 1.086441e+02 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +7.946537e+01 1.086441e+02 moveto +7.946537e+01 1.008701e+02 lineto +7.594643e+01 1.00972e+02 lineto +7.594643e+01 1.08746e+02 lineto +7.946537e+01 1.086441e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.594643e+01 3.877997e+01 moveto +7.594643e+01 3.100597e+01 lineto +7.236e+01 3.104e+01 lineto +7.236e+01 3.8814e+01 lineto +7.594643e+01 3.877997e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +7.594643e+01 3.877997e+01 moveto +7.594643e+01 3.100597e+01 lineto +7.236e+01 3.104e+01 lineto +7.236e+01 3.8814e+01 lineto +7.594643e+01 3.877997e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.594643e+01 4.655397e+01 moveto +7.594643e+01 3.877997e+01 lineto +7.236e+01 3.8814e+01 lineto +7.236e+01 4.6588e+01 lineto +7.594643e+01 4.655397e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +7.594643e+01 4.655397e+01 moveto +7.594643e+01 3.877997e+01 lineto +7.236e+01 3.8814e+01 lineto +7.236e+01 4.6588e+01 lineto +7.594643e+01 4.655397e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.594643e+01 5.432797e+01 moveto +7.594643e+01 4.655397e+01 lineto +7.236e+01 4.6588e+01 lineto +7.236e+01 5.4362e+01 lineto +7.594643e+01 5.432797e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +7.594643e+01 5.432797e+01 moveto +7.594643e+01 4.655397e+01 lineto +7.236e+01 4.6588e+01 lineto +7.236e+01 5.4362e+01 lineto +7.594643e+01 5.432797e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.594643e+01 6.210197e+01 moveto +7.594643e+01 5.432797e+01 lineto +7.236e+01 5.4362e+01 lineto +7.236e+01 6.2136e+01 lineto +7.594643e+01 6.210197e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +7.594643e+01 6.210197e+01 moveto +7.594643e+01 5.432797e+01 lineto +7.236e+01 5.4362e+01 lineto +7.236e+01 6.2136e+01 lineto +7.594643e+01 6.210197e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.594643e+01 6.987597e+01 moveto +7.594643e+01 6.210197e+01 lineto +7.236e+01 6.2136e+01 lineto +7.236e+01 6.991e+01 lineto +7.594643e+01 6.987597e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +7.594643e+01 6.987597e+01 moveto +7.594643e+01 6.210197e+01 lineto +7.236e+01 6.2136e+01 lineto +7.236e+01 6.991e+01 lineto +7.594643e+01 6.987597e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.594643e+01 7.764997e+01 moveto +7.594643e+01 6.987597e+01 lineto +7.236e+01 6.991e+01 lineto +7.236e+01 7.7684e+01 lineto +7.594643e+01 7.764997e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +7.594643e+01 7.764997e+01 moveto +7.594643e+01 6.987597e+01 lineto +7.236e+01 6.991e+01 lineto +7.236e+01 7.7684e+01 lineto +7.594643e+01 7.764997e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.594643e+01 8.542397e+01 moveto +7.594643e+01 7.764997e+01 lineto +7.236e+01 7.7684e+01 lineto +7.236e+01 8.5458e+01 lineto +7.594643e+01 8.542397e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +7.594643e+01 8.542397e+01 moveto +7.594643e+01 7.764997e+01 lineto +7.236e+01 7.7684e+01 lineto +7.236e+01 8.5458e+01 lineto +7.594643e+01 8.542397e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.594643e+01 9.319797e+01 moveto +7.594643e+01 8.542397e+01 lineto +7.236e+01 8.5458e+01 lineto +7.236e+01 9.3232e+01 lineto +7.594643e+01 9.319797e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +7.594643e+01 9.319797e+01 moveto +7.594643e+01 8.542397e+01 lineto +7.236e+01 8.5458e+01 lineto +7.236e+01 9.3232e+01 lineto +7.594643e+01 9.319797e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.594643e+01 1.00972e+02 moveto +7.594643e+01 9.319797e+01 lineto +7.236e+01 9.3232e+01 lineto +7.236e+01 1.01006e+02 lineto +7.594643e+01 1.00972e+02 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +7.594643e+01 1.00972e+02 moveto +7.594643e+01 9.319797e+01 lineto +7.236e+01 9.3232e+01 lineto +7.236e+01 1.01006e+02 lineto +7.594643e+01 1.00972e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.594643e+01 1.08746e+02 moveto +7.594643e+01 1.00972e+02 lineto +7.236e+01 1.01006e+02 lineto +7.236e+01 1.0878e+02 lineto +7.594643e+01 1.08746e+02 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +7.594643e+01 1.08746e+02 moveto +7.594643e+01 1.00972e+02 lineto +7.236e+01 1.01006e+02 lineto +7.236e+01 1.0878e+02 lineto +7.594643e+01 1.08746e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.236e+01 3.8814e+01 moveto +7.236e+01 3.104e+01 lineto +6.872819e+01 3.100597e+01 lineto +6.872819e+01 3.877997e+01 lineto +7.236e+01 3.8814e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +7.236e+01 3.8814e+01 moveto +7.236e+01 3.104e+01 lineto +6.872819e+01 3.100597e+01 lineto +6.872819e+01 3.877997e+01 lineto +7.236e+01 3.8814e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.236e+01 4.6588e+01 moveto +7.236e+01 3.8814e+01 lineto +6.872819e+01 3.877997e+01 lineto +6.872819e+01 4.655397e+01 lineto +7.236e+01 4.6588e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +7.236e+01 4.6588e+01 moveto +7.236e+01 3.8814e+01 lineto +6.872819e+01 3.877997e+01 lineto +6.872819e+01 4.655397e+01 lineto +7.236e+01 4.6588e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.236e+01 5.4362e+01 moveto +7.236e+01 4.6588e+01 lineto +6.872819e+01 4.655397e+01 lineto +6.872819e+01 5.432797e+01 lineto +7.236e+01 5.4362e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +7.236e+01 5.4362e+01 moveto +7.236e+01 4.6588e+01 lineto +6.872819e+01 4.655397e+01 lineto +6.872819e+01 5.432797e+01 lineto +7.236e+01 5.4362e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.236e+01 6.2136e+01 moveto +7.236e+01 5.4362e+01 lineto +6.872819e+01 5.432797e+01 lineto +6.872819e+01 6.210197e+01 lineto +7.236e+01 6.2136e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +7.236e+01 6.2136e+01 moveto +7.236e+01 5.4362e+01 lineto +6.872819e+01 5.432797e+01 lineto +6.872819e+01 6.210197e+01 lineto +7.236e+01 6.2136e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.236e+01 6.991e+01 moveto +7.236e+01 6.2136e+01 lineto +6.872819e+01 6.210197e+01 lineto +6.872819e+01 6.987597e+01 lineto +7.236e+01 6.991e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +7.236e+01 6.991e+01 moveto +7.236e+01 6.2136e+01 lineto +6.872819e+01 6.210197e+01 lineto +6.872819e+01 6.987597e+01 lineto +7.236e+01 6.991e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.236e+01 7.7684e+01 moveto +7.236e+01 6.991e+01 lineto +6.872819e+01 6.987597e+01 lineto +6.872819e+01 7.764997e+01 lineto +7.236e+01 7.7684e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +7.236e+01 7.7684e+01 moveto +7.236e+01 6.991e+01 lineto +6.872819e+01 6.987597e+01 lineto +6.872819e+01 7.764997e+01 lineto +7.236e+01 7.7684e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.236e+01 8.5458e+01 moveto +7.236e+01 7.7684e+01 lineto +6.872819e+01 7.764997e+01 lineto +6.872819e+01 8.542397e+01 lineto +7.236e+01 8.5458e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +7.236e+01 8.5458e+01 moveto +7.236e+01 7.7684e+01 lineto +6.872819e+01 7.764997e+01 lineto +6.872819e+01 8.542397e+01 lineto +7.236e+01 8.5458e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.236e+01 9.3232e+01 moveto +7.236e+01 8.5458e+01 lineto +6.872819e+01 8.542397e+01 lineto +6.872819e+01 9.319797e+01 lineto +7.236e+01 9.3232e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +7.236e+01 9.3232e+01 moveto +7.236e+01 8.5458e+01 lineto +6.872819e+01 8.542397e+01 lineto +6.872819e+01 9.319797e+01 lineto +7.236e+01 9.3232e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.236e+01 1.01006e+02 moveto +7.236e+01 9.3232e+01 lineto +6.872819e+01 9.319797e+01 lineto +6.872819e+01 1.00972e+02 lineto +7.236e+01 1.01006e+02 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +7.236e+01 1.01006e+02 moveto +7.236e+01 9.3232e+01 lineto +6.872819e+01 9.319797e+01 lineto +6.872819e+01 1.00972e+02 lineto +7.236e+01 1.01006e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.236e+01 1.0878e+02 moveto +7.236e+01 1.01006e+02 lineto +6.872819e+01 1.00972e+02 lineto +6.872819e+01 1.08746e+02 lineto +7.236e+01 1.0878e+02 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +7.236e+01 1.0878e+02 moveto +7.236e+01 1.01006e+02 lineto +6.872819e+01 1.00972e+02 lineto +6.872819e+01 1.08746e+02 lineto +7.236e+01 1.0878e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.872819e+01 3.877997e+01 moveto +6.872819e+01 3.100597e+01 lineto +6.50734e+01 3.090408e+01 lineto +6.50734e+01 3.867808e+01 lineto +6.872819e+01 3.877997e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +6.872819e+01 3.877997e+01 moveto +6.872819e+01 3.100597e+01 lineto +6.50734e+01 3.090408e+01 lineto +6.50734e+01 3.867808e+01 lineto +6.872819e+01 3.877997e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.872819e+01 4.655397e+01 moveto +6.872819e+01 3.877997e+01 lineto +6.50734e+01 3.867808e+01 lineto +6.50734e+01 4.645208e+01 lineto +6.872819e+01 4.655397e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +6.872819e+01 4.655397e+01 moveto +6.872819e+01 3.877997e+01 lineto +6.50734e+01 3.867808e+01 lineto +6.50734e+01 4.645208e+01 lineto +6.872819e+01 4.655397e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.872819e+01 5.432797e+01 moveto +6.872819e+01 4.655397e+01 lineto +6.50734e+01 4.645208e+01 lineto +6.50734e+01 5.422608e+01 lineto +6.872819e+01 5.432797e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +6.872819e+01 5.432797e+01 moveto +6.872819e+01 4.655397e+01 lineto +6.50734e+01 4.645208e+01 lineto +6.50734e+01 5.422608e+01 lineto +6.872819e+01 5.432797e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.872819e+01 6.210197e+01 moveto +6.872819e+01 5.432797e+01 lineto +6.50734e+01 5.422608e+01 lineto +6.50734e+01 6.200008e+01 lineto +6.872819e+01 6.210197e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +6.872819e+01 6.210197e+01 moveto +6.872819e+01 5.432797e+01 lineto +6.50734e+01 5.422608e+01 lineto +6.50734e+01 6.200008e+01 lineto +6.872819e+01 6.210197e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.872819e+01 6.987597e+01 moveto +6.872819e+01 6.210197e+01 lineto +6.50734e+01 6.200008e+01 lineto +6.50734e+01 6.977408e+01 lineto +6.872819e+01 6.987597e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +6.872819e+01 6.987597e+01 moveto +6.872819e+01 6.210197e+01 lineto +6.50734e+01 6.200008e+01 lineto +6.50734e+01 6.977408e+01 lineto +6.872819e+01 6.987597e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.872819e+01 7.764997e+01 moveto +6.872819e+01 6.987597e+01 lineto +6.50734e+01 6.977408e+01 lineto +6.50734e+01 7.754808e+01 lineto +6.872819e+01 7.764997e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +6.872819e+01 7.764997e+01 moveto +6.872819e+01 6.987597e+01 lineto +6.50734e+01 6.977408e+01 lineto +6.50734e+01 7.754808e+01 lineto +6.872819e+01 7.764997e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.872819e+01 8.542397e+01 moveto +6.872819e+01 7.764997e+01 lineto +6.50734e+01 7.754808e+01 lineto +6.50734e+01 8.532208e+01 lineto +6.872819e+01 8.542397e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +6.872819e+01 8.542397e+01 moveto +6.872819e+01 7.764997e+01 lineto +6.50734e+01 7.754808e+01 lineto +6.50734e+01 8.532208e+01 lineto +6.872819e+01 8.542397e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.872819e+01 9.319797e+01 moveto +6.872819e+01 8.542397e+01 lineto +6.50734e+01 8.532208e+01 lineto +6.50734e+01 9.309608e+01 lineto +6.872819e+01 9.319797e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +6.872819e+01 9.319797e+01 moveto +6.872819e+01 8.542397e+01 lineto +6.50734e+01 8.532208e+01 lineto +6.50734e+01 9.309608e+01 lineto +6.872819e+01 9.319797e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.872819e+01 1.00972e+02 moveto +6.872819e+01 9.319797e+01 lineto +6.50734e+01 9.309608e+01 lineto +6.50734e+01 1.008701e+02 lineto +6.872819e+01 1.00972e+02 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +6.872819e+01 1.00972e+02 moveto +6.872819e+01 9.319797e+01 lineto +6.50734e+01 9.309608e+01 lineto +6.50734e+01 1.008701e+02 lineto +6.872819e+01 1.00972e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.872819e+01 1.08746e+02 moveto +6.872819e+01 1.00972e+02 lineto +6.50734e+01 1.008701e+02 lineto +6.50734e+01 1.086441e+02 lineto +6.872819e+01 1.08746e+02 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +6.872819e+01 1.08746e+02 moveto +6.872819e+01 1.00972e+02 lineto +6.50734e+01 1.008701e+02 lineto +6.50734e+01 1.086441e+02 lineto +6.872819e+01 1.08746e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.50734e+01 3.867808e+01 moveto +6.50734e+01 3.090408e+01 lineto +6.141816e+01 3.073496e+01 lineto +6.141816e+01 3.850896e+01 lineto +6.50734e+01 3.867808e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +6.50734e+01 3.867808e+01 moveto +6.50734e+01 3.090408e+01 lineto +6.141816e+01 3.073496e+01 lineto +6.141816e+01 3.850896e+01 lineto +6.50734e+01 3.867808e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.50734e+01 4.645208e+01 moveto +6.50734e+01 3.867808e+01 lineto +6.141816e+01 3.850896e+01 lineto +6.141816e+01 4.628296e+01 lineto +6.50734e+01 4.645208e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +6.50734e+01 4.645208e+01 moveto +6.50734e+01 3.867808e+01 lineto +6.141816e+01 3.850896e+01 lineto +6.141816e+01 4.628296e+01 lineto +6.50734e+01 4.645208e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.50734e+01 5.422608e+01 moveto +6.50734e+01 4.645208e+01 lineto +6.141816e+01 4.628296e+01 lineto +6.141816e+01 5.405696e+01 lineto +6.50734e+01 5.422608e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +6.50734e+01 5.422608e+01 moveto +6.50734e+01 4.645208e+01 lineto +6.141816e+01 4.628296e+01 lineto +6.141816e+01 5.405696e+01 lineto +6.50734e+01 5.422608e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.50734e+01 6.200008e+01 moveto +6.50734e+01 5.422608e+01 lineto +6.141816e+01 5.405696e+01 lineto +6.141816e+01 6.183096e+01 lineto +6.50734e+01 6.200008e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +6.50734e+01 6.200008e+01 moveto +6.50734e+01 5.422608e+01 lineto +6.141816e+01 5.405696e+01 lineto +6.141816e+01 6.183096e+01 lineto +6.50734e+01 6.200008e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.50734e+01 6.977408e+01 moveto +6.50734e+01 6.200008e+01 lineto +6.141816e+01 6.183096e+01 lineto +6.141816e+01 6.960496e+01 lineto +6.50734e+01 6.977408e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +6.50734e+01 6.977408e+01 moveto +6.50734e+01 6.200008e+01 lineto +6.141816e+01 6.183096e+01 lineto +6.141816e+01 6.960496e+01 lineto +6.50734e+01 6.977408e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.50734e+01 7.754808e+01 moveto +6.50734e+01 6.977408e+01 lineto +6.141816e+01 6.960496e+01 lineto +6.141816e+01 7.737896e+01 lineto +6.50734e+01 7.754808e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +6.50734e+01 7.754808e+01 moveto +6.50734e+01 6.977408e+01 lineto +6.141816e+01 6.960496e+01 lineto +6.141816e+01 7.737896e+01 lineto +6.50734e+01 7.754808e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.50734e+01 8.532208e+01 moveto +6.50734e+01 7.754808e+01 lineto +6.141816e+01 7.737896e+01 lineto +6.141816e+01 8.515296e+01 lineto +6.50734e+01 8.532208e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +6.50734e+01 8.532208e+01 moveto +6.50734e+01 7.754808e+01 lineto +6.141816e+01 7.737896e+01 lineto +6.141816e+01 8.515296e+01 lineto +6.50734e+01 8.532208e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.50734e+01 9.309608e+01 moveto +6.50734e+01 8.532208e+01 lineto +6.141816e+01 8.515296e+01 lineto +6.141816e+01 9.292696e+01 lineto +6.50734e+01 9.309608e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +6.50734e+01 9.309608e+01 moveto +6.50734e+01 8.532208e+01 lineto +6.141816e+01 8.515296e+01 lineto +6.141816e+01 9.292696e+01 lineto +6.50734e+01 9.309608e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.50734e+01 1.008701e+02 moveto +6.50734e+01 9.309608e+01 lineto +6.141816e+01 9.292696e+01 lineto +6.141816e+01 1.00701e+02 lineto +6.50734e+01 1.008701e+02 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +6.50734e+01 1.008701e+02 moveto +6.50734e+01 9.309608e+01 lineto +6.141816e+01 9.292696e+01 lineto +6.141816e+01 1.00701e+02 lineto +6.50734e+01 1.008701e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.50734e+01 1.086441e+02 moveto +6.50734e+01 1.008701e+02 lineto +6.141816e+01 1.00701e+02 lineto +6.141816e+01 1.08475e+02 lineto +6.50734e+01 1.086441e+02 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +6.50734e+01 1.086441e+02 moveto +6.50734e+01 1.008701e+02 lineto +6.141816e+01 1.00701e+02 lineto +6.141816e+01 1.08475e+02 lineto +6.50734e+01 1.086441e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.141816e+01 3.850896e+01 moveto +6.141816e+01 3.073496e+01 lineto +5.778499e+01 3.049966e+01 lineto +5.778499e+01 3.827366e+01 lineto +6.141816e+01 3.850896e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +6.141816e+01 3.850896e+01 moveto +6.141816e+01 3.073496e+01 lineto +5.778499e+01 3.049966e+01 lineto +5.778499e+01 3.827366e+01 lineto +6.141816e+01 3.850896e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.141816e+01 4.628296e+01 moveto +6.141816e+01 3.850896e+01 lineto +5.778499e+01 3.827366e+01 lineto +5.778499e+01 4.604766e+01 lineto +6.141816e+01 4.628296e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +6.141816e+01 4.628296e+01 moveto +6.141816e+01 3.850896e+01 lineto +5.778499e+01 3.827366e+01 lineto +5.778499e+01 4.604766e+01 lineto +6.141816e+01 4.628296e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.141816e+01 5.405696e+01 moveto +6.141816e+01 4.628296e+01 lineto +5.778499e+01 4.604766e+01 lineto +5.778499e+01 5.382166e+01 lineto +6.141816e+01 5.405696e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +6.141816e+01 5.405696e+01 moveto +6.141816e+01 4.628296e+01 lineto +5.778499e+01 4.604766e+01 lineto +5.778499e+01 5.382166e+01 lineto +6.141816e+01 5.405696e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.141816e+01 6.183096e+01 moveto +6.141816e+01 5.405696e+01 lineto +5.778499e+01 5.382166e+01 lineto +5.778499e+01 6.159566e+01 lineto +6.141816e+01 6.183096e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +6.141816e+01 6.183096e+01 moveto +6.141816e+01 5.405696e+01 lineto +5.778499e+01 5.382166e+01 lineto +5.778499e+01 6.159566e+01 lineto +6.141816e+01 6.183096e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.141816e+01 6.960496e+01 moveto +6.141816e+01 6.183096e+01 lineto +5.778499e+01 6.159566e+01 lineto +5.778499e+01 6.936966e+01 lineto +6.141816e+01 6.960496e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +6.141816e+01 6.960496e+01 moveto +6.141816e+01 6.183096e+01 lineto +5.778499e+01 6.159566e+01 lineto +5.778499e+01 6.936966e+01 lineto +6.141816e+01 6.960496e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.141816e+01 7.737896e+01 moveto +6.141816e+01 6.960496e+01 lineto +5.778499e+01 6.936966e+01 lineto +5.778499e+01 7.714366e+01 lineto +6.141816e+01 7.737896e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +6.141816e+01 7.737896e+01 moveto +6.141816e+01 6.960496e+01 lineto +5.778499e+01 6.936966e+01 lineto +5.778499e+01 7.714366e+01 lineto +6.141816e+01 7.737896e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.141816e+01 8.515296e+01 moveto +6.141816e+01 7.737896e+01 lineto +5.778499e+01 7.714366e+01 lineto +5.778499e+01 8.491766e+01 lineto +6.141816e+01 8.515296e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +6.141816e+01 8.515296e+01 moveto +6.141816e+01 7.737896e+01 lineto +5.778499e+01 7.714366e+01 lineto +5.778499e+01 8.491766e+01 lineto +6.141816e+01 8.515296e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.141816e+01 9.292696e+01 moveto +6.141816e+01 8.515296e+01 lineto +5.778499e+01 8.491766e+01 lineto +5.778499e+01 9.269166e+01 lineto +6.141816e+01 9.292696e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +6.141816e+01 9.292696e+01 moveto +6.141816e+01 8.515296e+01 lineto +5.778499e+01 8.491766e+01 lineto +5.778499e+01 9.269166e+01 lineto +6.141816e+01 9.292696e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.141816e+01 1.00701e+02 moveto +6.141816e+01 9.292696e+01 lineto +5.778499e+01 9.269166e+01 lineto +5.778499e+01 1.004657e+02 lineto +6.141816e+01 1.00701e+02 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +6.141816e+01 1.00701e+02 moveto +6.141816e+01 9.292696e+01 lineto +5.778499e+01 9.269166e+01 lineto +5.778499e+01 1.004657e+02 lineto +6.141816e+01 1.00701e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.141816e+01 1.08475e+02 moveto +6.141816e+01 1.00701e+02 lineto +5.778499e+01 1.004657e+02 lineto +5.778499e+01 1.082397e+02 lineto +6.141816e+01 1.08475e+02 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +6.141816e+01 1.08475e+02 moveto +6.141816e+01 1.00701e+02 lineto +5.778499e+01 1.004657e+02 lineto +5.778499e+01 1.082397e+02 lineto +6.141816e+01 1.08475e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.778499e+01 3.827366e+01 moveto +5.778499e+01 3.049966e+01 lineto +5.419632e+01 3.019963e+01 lineto +5.419632e+01 3.797363e+01 lineto +5.778499e+01 3.827366e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +5.778499e+01 3.827366e+01 moveto +5.778499e+01 3.049966e+01 lineto +5.419632e+01 3.019963e+01 lineto +5.419632e+01 3.797363e+01 lineto +5.778499e+01 3.827366e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.778499e+01 4.604766e+01 moveto +5.778499e+01 3.827366e+01 lineto +5.419632e+01 3.797363e+01 lineto +5.419632e+01 4.574763e+01 lineto +5.778499e+01 4.604766e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +5.778499e+01 4.604766e+01 moveto +5.778499e+01 3.827366e+01 lineto +5.419632e+01 3.797363e+01 lineto +5.419632e+01 4.574763e+01 lineto +5.778499e+01 4.604766e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.778499e+01 5.382166e+01 moveto +5.778499e+01 4.604766e+01 lineto +5.419632e+01 4.574763e+01 lineto +5.419632e+01 5.352163e+01 lineto +5.778499e+01 5.382166e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +5.778499e+01 5.382166e+01 moveto +5.778499e+01 4.604766e+01 lineto +5.419632e+01 4.574763e+01 lineto +5.419632e+01 5.352163e+01 lineto +5.778499e+01 5.382166e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.778499e+01 6.159566e+01 moveto +5.778499e+01 5.382166e+01 lineto +5.419632e+01 5.352163e+01 lineto +5.419632e+01 6.129563e+01 lineto +5.778499e+01 6.159566e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +5.778499e+01 6.159566e+01 moveto +5.778499e+01 5.382166e+01 lineto +5.419632e+01 5.352163e+01 lineto +5.419632e+01 6.129563e+01 lineto +5.778499e+01 6.159566e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.778499e+01 6.936966e+01 moveto +5.778499e+01 6.159566e+01 lineto +5.419632e+01 6.129563e+01 lineto +5.419632e+01 6.906963e+01 lineto +5.778499e+01 6.936966e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +5.778499e+01 6.936966e+01 moveto +5.778499e+01 6.159566e+01 lineto +5.419632e+01 6.129563e+01 lineto +5.419632e+01 6.906963e+01 lineto +5.778499e+01 6.936966e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.778499e+01 7.714366e+01 moveto +5.778499e+01 6.936966e+01 lineto +5.419632e+01 6.906963e+01 lineto +5.419632e+01 7.684363e+01 lineto +5.778499e+01 7.714366e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +5.778499e+01 7.714366e+01 moveto +5.778499e+01 6.936966e+01 lineto +5.419632e+01 6.906963e+01 lineto +5.419632e+01 7.684363e+01 lineto +5.778499e+01 7.714366e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.778499e+01 8.491766e+01 moveto +5.778499e+01 7.714366e+01 lineto +5.419632e+01 7.684363e+01 lineto +5.419632e+01 8.461763e+01 lineto +5.778499e+01 8.491766e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +5.778499e+01 8.491766e+01 moveto +5.778499e+01 7.714366e+01 lineto +5.419632e+01 7.684363e+01 lineto +5.419632e+01 8.461763e+01 lineto +5.778499e+01 8.491766e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.778499e+01 9.269166e+01 moveto +5.778499e+01 8.491766e+01 lineto +5.419632e+01 8.461763e+01 lineto +5.419632e+01 9.239163e+01 lineto +5.778499e+01 9.269166e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +5.778499e+01 9.269166e+01 moveto +5.778499e+01 8.491766e+01 lineto +5.419632e+01 8.461763e+01 lineto +5.419632e+01 9.239163e+01 lineto +5.778499e+01 9.269166e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.778499e+01 1.004657e+02 moveto +5.778499e+01 9.269166e+01 lineto +5.419632e+01 9.239163e+01 lineto +5.419632e+01 1.001656e+02 lineto +5.778499e+01 1.004657e+02 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +5.778499e+01 1.004657e+02 moveto +5.778499e+01 9.269166e+01 lineto +5.419632e+01 9.239163e+01 lineto +5.419632e+01 1.001656e+02 lineto +5.778499e+01 1.004657e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.778499e+01 1.082397e+02 moveto +5.778499e+01 1.004657e+02 lineto +5.419632e+01 1.001656e+02 lineto +5.419632e+01 1.079396e+02 lineto +5.778499e+01 1.082397e+02 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +5.778499e+01 1.082397e+02 moveto +5.778499e+01 1.004657e+02 lineto +5.419632e+01 1.001656e+02 lineto +5.419632e+01 1.079396e+02 lineto +5.778499e+01 1.082397e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.419632e+01 3.797363e+01 moveto +5.419632e+01 3.019963e+01 lineto +5.067425e+01 2.983671e+01 lineto +5.067425e+01 3.761071e+01 lineto +5.419632e+01 3.797363e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +5.419632e+01 3.797363e+01 moveto +5.419632e+01 3.019963e+01 lineto +5.067425e+01 2.983671e+01 lineto +5.067425e+01 3.761071e+01 lineto +5.419632e+01 3.797363e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.419632e+01 4.574763e+01 moveto +5.419632e+01 3.797363e+01 lineto +5.067425e+01 3.761071e+01 lineto +5.067425e+01 4.538471e+01 lineto +5.419632e+01 4.574763e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +5.419632e+01 4.574763e+01 moveto +5.419632e+01 3.797363e+01 lineto +5.067425e+01 3.761071e+01 lineto +5.067425e+01 4.538471e+01 lineto +5.419632e+01 4.574763e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.419632e+01 5.352163e+01 moveto +5.419632e+01 4.574763e+01 lineto +5.067425e+01 4.538471e+01 lineto +5.067425e+01 5.315871e+01 lineto +5.419632e+01 5.352163e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +5.419632e+01 5.352163e+01 moveto +5.419632e+01 4.574763e+01 lineto +5.067425e+01 4.538471e+01 lineto +5.067425e+01 5.315871e+01 lineto +5.419632e+01 5.352163e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.419632e+01 6.129563e+01 moveto +5.419632e+01 5.352163e+01 lineto +5.067425e+01 5.315871e+01 lineto +5.067425e+01 6.093271e+01 lineto +5.419632e+01 6.129563e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +5.419632e+01 6.129563e+01 moveto +5.419632e+01 5.352163e+01 lineto +5.067425e+01 5.315871e+01 lineto +5.067425e+01 6.093271e+01 lineto +5.419632e+01 6.129563e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.419632e+01 6.906963e+01 moveto +5.419632e+01 6.129563e+01 lineto +5.067425e+01 6.093271e+01 lineto +5.067425e+01 6.870671e+01 lineto +5.419632e+01 6.906963e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +5.419632e+01 6.906963e+01 moveto +5.419632e+01 6.129563e+01 lineto +5.067425e+01 6.093271e+01 lineto +5.067425e+01 6.870671e+01 lineto +5.419632e+01 6.906963e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.419632e+01 7.684363e+01 moveto +5.419632e+01 6.906963e+01 lineto +5.067425e+01 6.870671e+01 lineto +5.067425e+01 7.648071e+01 lineto +5.419632e+01 7.684363e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +5.419632e+01 7.684363e+01 moveto +5.419632e+01 6.906963e+01 lineto +5.067425e+01 6.870671e+01 lineto +5.067425e+01 7.648071e+01 lineto +5.419632e+01 7.684363e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.419632e+01 8.461763e+01 moveto +5.419632e+01 7.684363e+01 lineto +5.067425e+01 7.648071e+01 lineto +5.067425e+01 8.425471e+01 lineto +5.419632e+01 8.461763e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +5.419632e+01 8.461763e+01 moveto +5.419632e+01 7.684363e+01 lineto +5.067425e+01 7.648071e+01 lineto +5.067425e+01 8.425471e+01 lineto +5.419632e+01 8.461763e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.419632e+01 9.239163e+01 moveto +5.419632e+01 8.461763e+01 lineto +5.067425e+01 8.425471e+01 lineto +5.067425e+01 9.202871e+01 lineto +5.419632e+01 9.239163e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +5.419632e+01 9.239163e+01 moveto +5.419632e+01 8.461763e+01 lineto +5.067425e+01 8.425471e+01 lineto +5.067425e+01 9.202871e+01 lineto +5.419632e+01 9.239163e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.419632e+01 1.001656e+02 moveto +5.419632e+01 9.239163e+01 lineto +5.067425e+01 9.202871e+01 lineto +5.067425e+01 9.980271e+01 lineto +5.419632e+01 1.001656e+02 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +5.419632e+01 1.001656e+02 moveto +5.419632e+01 9.239163e+01 lineto +5.067425e+01 9.202871e+01 lineto +5.067425e+01 9.980271e+01 lineto +5.419632e+01 1.001656e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.419632e+01 1.079396e+02 moveto +5.419632e+01 1.001656e+02 lineto +5.067425e+01 9.980271e+01 lineto +5.067425e+01 1.075767e+02 lineto +5.419632e+01 1.079396e+02 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +5.419632e+01 1.079396e+02 moveto +5.419632e+01 1.001656e+02 lineto +5.067425e+01 9.980271e+01 lineto +5.067425e+01 1.075767e+02 lineto +5.419632e+01 1.079396e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.067425e+01 3.761071e+01 moveto +5.067425e+01 2.983671e+01 lineto +4.72405e+01 2.941315e+01 lineto +4.72405e+01 3.718715e+01 lineto +5.067425e+01 3.761071e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +5.067425e+01 3.761071e+01 moveto +5.067425e+01 2.983671e+01 lineto +4.72405e+01 2.941315e+01 lineto +4.72405e+01 3.718715e+01 lineto +5.067425e+01 3.761071e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.067425e+01 4.538471e+01 moveto +5.067425e+01 3.761071e+01 lineto +4.72405e+01 3.718715e+01 lineto +4.72405e+01 4.496115e+01 lineto +5.067425e+01 4.538471e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +5.067425e+01 4.538471e+01 moveto +5.067425e+01 3.761071e+01 lineto +4.72405e+01 3.718715e+01 lineto +4.72405e+01 4.496115e+01 lineto +5.067425e+01 4.538471e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.067425e+01 5.315871e+01 moveto +5.067425e+01 4.538471e+01 lineto +4.72405e+01 4.496115e+01 lineto +4.72405e+01 5.273515e+01 lineto +5.067425e+01 5.315871e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +5.067425e+01 5.315871e+01 moveto +5.067425e+01 4.538471e+01 lineto +4.72405e+01 4.496115e+01 lineto +4.72405e+01 5.273515e+01 lineto +5.067425e+01 5.315871e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.067425e+01 6.093271e+01 moveto +5.067425e+01 5.315871e+01 lineto +4.72405e+01 5.273515e+01 lineto +4.72405e+01 6.050915e+01 lineto +5.067425e+01 6.093271e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +5.067425e+01 6.093271e+01 moveto +5.067425e+01 5.315871e+01 lineto +4.72405e+01 5.273515e+01 lineto +4.72405e+01 6.050915e+01 lineto +5.067425e+01 6.093271e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.067425e+01 6.870671e+01 moveto +5.067425e+01 6.093271e+01 lineto +4.72405e+01 6.050915e+01 lineto +4.72405e+01 6.828315e+01 lineto +5.067425e+01 6.870671e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +5.067425e+01 6.870671e+01 moveto +5.067425e+01 6.093271e+01 lineto +4.72405e+01 6.050915e+01 lineto +4.72405e+01 6.828315e+01 lineto +5.067425e+01 6.870671e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.067425e+01 7.648071e+01 moveto +5.067425e+01 6.870671e+01 lineto +4.72405e+01 6.828315e+01 lineto +4.72405e+01 7.605715e+01 lineto +5.067425e+01 7.648071e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +5.067425e+01 7.648071e+01 moveto +5.067425e+01 6.870671e+01 lineto +4.72405e+01 6.828315e+01 lineto +4.72405e+01 7.605715e+01 lineto +5.067425e+01 7.648071e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.067425e+01 8.425471e+01 moveto +5.067425e+01 7.648071e+01 lineto +4.72405e+01 7.605715e+01 lineto +4.72405e+01 8.383115e+01 lineto +5.067425e+01 8.425471e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +5.067425e+01 8.425471e+01 moveto +5.067425e+01 7.648071e+01 lineto +4.72405e+01 7.605715e+01 lineto +4.72405e+01 8.383115e+01 lineto +5.067425e+01 8.425471e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.067425e+01 9.202871e+01 moveto +5.067425e+01 8.425471e+01 lineto +4.72405e+01 8.383115e+01 lineto +4.72405e+01 9.160515e+01 lineto +5.067425e+01 9.202871e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +5.067425e+01 9.202871e+01 moveto +5.067425e+01 8.425471e+01 lineto +4.72405e+01 8.383115e+01 lineto +4.72405e+01 9.160515e+01 lineto +5.067425e+01 9.202871e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.067425e+01 9.980271e+01 moveto +5.067425e+01 9.202871e+01 lineto +4.72405e+01 9.160515e+01 lineto +4.72405e+01 9.937915e+01 lineto +5.067425e+01 9.980271e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +5.067425e+01 9.980271e+01 moveto +5.067425e+01 9.202871e+01 lineto +4.72405e+01 9.160515e+01 lineto +4.72405e+01 9.937915e+01 lineto +5.067425e+01 9.980271e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.067425e+01 1.075767e+02 moveto +5.067425e+01 9.980271e+01 lineto +4.72405e+01 9.937915e+01 lineto +4.72405e+01 1.071531e+02 lineto +5.067425e+01 1.075767e+02 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +5.067425e+01 1.075767e+02 moveto +5.067425e+01 9.980271e+01 lineto +4.72405e+01 9.937915e+01 lineto +4.72405e+01 1.071531e+02 lineto +5.067425e+01 1.075767e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.72405e+01 3.718715e+01 moveto +4.72405e+01 2.941315e+01 lineto +4.391624e+01 2.893155e+01 lineto +4.391624e+01 3.670555e+01 lineto +4.72405e+01 3.718715e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +4.72405e+01 3.718715e+01 moveto +4.72405e+01 2.941315e+01 lineto +4.391624e+01 2.893155e+01 lineto +4.391624e+01 3.670555e+01 lineto +4.72405e+01 3.718715e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.72405e+01 4.496115e+01 moveto +4.72405e+01 3.718715e+01 lineto +4.391624e+01 3.670555e+01 lineto +4.391624e+01 4.447955e+01 lineto +4.72405e+01 4.496115e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +4.72405e+01 4.496115e+01 moveto +4.72405e+01 3.718715e+01 lineto +4.391624e+01 3.670555e+01 lineto +4.391624e+01 4.447955e+01 lineto +4.72405e+01 4.496115e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.72405e+01 5.273515e+01 moveto +4.72405e+01 4.496115e+01 lineto +4.391624e+01 4.447955e+01 lineto +4.391624e+01 5.225355e+01 lineto +4.72405e+01 5.273515e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +4.72405e+01 5.273515e+01 moveto +4.72405e+01 4.496115e+01 lineto +4.391624e+01 4.447955e+01 lineto +4.391624e+01 5.225355e+01 lineto +4.72405e+01 5.273515e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.72405e+01 6.050915e+01 moveto +4.72405e+01 5.273515e+01 lineto +4.391624e+01 5.225355e+01 lineto +4.391624e+01 6.002755e+01 lineto +4.72405e+01 6.050915e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +4.72405e+01 6.050915e+01 moveto +4.72405e+01 5.273515e+01 lineto +4.391624e+01 5.225355e+01 lineto +4.391624e+01 6.002755e+01 lineto +4.72405e+01 6.050915e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.72405e+01 6.828315e+01 moveto +4.72405e+01 6.050915e+01 lineto +4.391624e+01 6.002755e+01 lineto +4.391624e+01 6.780155e+01 lineto +4.72405e+01 6.828315e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +4.72405e+01 6.828315e+01 moveto +4.72405e+01 6.050915e+01 lineto +4.391624e+01 6.002755e+01 lineto +4.391624e+01 6.780155e+01 lineto +4.72405e+01 6.828315e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.72405e+01 7.605715e+01 moveto +4.72405e+01 6.828315e+01 lineto +4.391624e+01 6.780155e+01 lineto +4.391624e+01 7.557555e+01 lineto +4.72405e+01 7.605715e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +4.72405e+01 7.605715e+01 moveto +4.72405e+01 6.828315e+01 lineto +4.391624e+01 6.780155e+01 lineto +4.391624e+01 7.557555e+01 lineto +4.72405e+01 7.605715e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.72405e+01 8.383115e+01 moveto +4.72405e+01 7.605715e+01 lineto +4.391624e+01 7.557555e+01 lineto +4.391624e+01 8.334955e+01 lineto +4.72405e+01 8.383115e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +4.72405e+01 8.383115e+01 moveto +4.72405e+01 7.605715e+01 lineto +4.391624e+01 7.557555e+01 lineto +4.391624e+01 8.334955e+01 lineto +4.72405e+01 8.383115e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.72405e+01 9.160515e+01 moveto +4.72405e+01 8.383115e+01 lineto +4.391624e+01 8.334955e+01 lineto +4.391624e+01 9.112355e+01 lineto +4.72405e+01 9.160515e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +4.72405e+01 9.160515e+01 moveto +4.72405e+01 8.383115e+01 lineto +4.391624e+01 8.334955e+01 lineto +4.391624e+01 9.112355e+01 lineto +4.72405e+01 9.160515e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.72405e+01 9.937915e+01 moveto +4.72405e+01 9.160515e+01 lineto +4.391624e+01 9.112355e+01 lineto +4.391624e+01 9.889755e+01 lineto +4.72405e+01 9.937915e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +4.72405e+01 9.937915e+01 moveto +4.72405e+01 9.160515e+01 lineto +4.391624e+01 9.112355e+01 lineto +4.391624e+01 9.889755e+01 lineto +4.72405e+01 9.937915e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.72405e+01 1.071531e+02 moveto +4.72405e+01 9.937915e+01 lineto +4.391624e+01 9.889755e+01 lineto +4.391624e+01 1.066715e+02 lineto +4.72405e+01 1.071531e+02 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +4.72405e+01 1.071531e+02 moveto +4.72405e+01 9.937915e+01 lineto +4.391624e+01 9.889755e+01 lineto +4.391624e+01 1.066715e+02 lineto +4.72405e+01 1.071531e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.391624e+01 3.670555e+01 moveto +4.391624e+01 2.893155e+01 lineto +4.072198e+01 2.839488e+01 lineto +4.072198e+01 3.616888e+01 lineto +4.391624e+01 3.670555e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +4.391624e+01 3.670555e+01 moveto +4.391624e+01 2.893155e+01 lineto +4.072198e+01 2.839488e+01 lineto +4.072198e+01 3.616888e+01 lineto +4.391624e+01 3.670555e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.391624e+01 4.447955e+01 moveto +4.391624e+01 3.670555e+01 lineto +4.072198e+01 3.616888e+01 lineto +4.072198e+01 4.394288e+01 lineto +4.391624e+01 4.447955e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +4.391624e+01 4.447955e+01 moveto +4.391624e+01 3.670555e+01 lineto +4.072198e+01 3.616888e+01 lineto +4.072198e+01 4.394288e+01 lineto +4.391624e+01 4.447955e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.391624e+01 5.225355e+01 moveto +4.391624e+01 4.447955e+01 lineto +4.072198e+01 4.394288e+01 lineto +4.072198e+01 5.171688e+01 lineto +4.391624e+01 5.225355e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +4.391624e+01 5.225355e+01 moveto +4.391624e+01 4.447955e+01 lineto +4.072198e+01 4.394288e+01 lineto +4.072198e+01 5.171688e+01 lineto +4.391624e+01 5.225355e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.391624e+01 6.002755e+01 moveto +4.391624e+01 5.225355e+01 lineto +4.072198e+01 5.171688e+01 lineto +4.072198e+01 5.949088e+01 lineto +4.391624e+01 6.002755e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +4.391624e+01 6.002755e+01 moveto +4.391624e+01 5.225355e+01 lineto +4.072198e+01 5.171688e+01 lineto +4.072198e+01 5.949088e+01 lineto +4.391624e+01 6.002755e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.391624e+01 6.780155e+01 moveto +4.391624e+01 6.002755e+01 lineto +4.072198e+01 5.949088e+01 lineto +4.072198e+01 6.726488e+01 lineto +4.391624e+01 6.780155e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +4.391624e+01 6.780155e+01 moveto +4.391624e+01 6.002755e+01 lineto +4.072198e+01 5.949088e+01 lineto +4.072198e+01 6.726488e+01 lineto +4.391624e+01 6.780155e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.391624e+01 7.557555e+01 moveto +4.391624e+01 6.780155e+01 lineto +4.072198e+01 6.726488e+01 lineto +4.072198e+01 7.503888e+01 lineto +4.391624e+01 7.557555e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +4.391624e+01 7.557555e+01 moveto +4.391624e+01 6.780155e+01 lineto +4.072198e+01 6.726488e+01 lineto +4.072198e+01 7.503888e+01 lineto +4.391624e+01 7.557555e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.391624e+01 8.334955e+01 moveto +4.391624e+01 7.557555e+01 lineto +4.072198e+01 7.503888e+01 lineto +4.072198e+01 8.281288e+01 lineto +4.391624e+01 8.334955e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +4.391624e+01 8.334955e+01 moveto +4.391624e+01 7.557555e+01 lineto +4.072198e+01 7.503888e+01 lineto +4.072198e+01 8.281288e+01 lineto +4.391624e+01 8.334955e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.391624e+01 9.112355e+01 moveto +4.391624e+01 8.334955e+01 lineto +4.072198e+01 8.281288e+01 lineto +4.072198e+01 9.058688e+01 lineto +4.391624e+01 9.112355e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +4.391624e+01 9.112355e+01 moveto +4.391624e+01 8.334955e+01 lineto +4.072198e+01 8.281288e+01 lineto +4.072198e+01 9.058688e+01 lineto +4.391624e+01 9.112355e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.391624e+01 9.889755e+01 moveto +4.391624e+01 9.112355e+01 lineto +4.072198e+01 9.058688e+01 lineto +4.072198e+01 9.836088e+01 lineto +4.391624e+01 9.889755e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +4.391624e+01 9.889755e+01 moveto +4.391624e+01 9.112355e+01 lineto +4.072198e+01 9.058688e+01 lineto +4.072198e+01 9.836088e+01 lineto +4.391624e+01 9.889755e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.391624e+01 1.066715e+02 moveto +4.391624e+01 9.889755e+01 lineto +4.072198e+01 9.836088e+01 lineto +4.072198e+01 1.061349e+02 lineto +4.391624e+01 1.066715e+02 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +4.391624e+01 1.066715e+02 moveto +4.391624e+01 9.889755e+01 lineto +4.072198e+01 9.836088e+01 lineto +4.072198e+01 1.061349e+02 lineto +4.391624e+01 1.066715e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.072198e+01 3.616888e+01 moveto +4.072198e+01 2.839488e+01 lineto +3.767739e+01 2.780646e+01 lineto +3.767739e+01 3.558046e+01 lineto +4.072198e+01 3.616888e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +4.072198e+01 3.616888e+01 moveto +4.072198e+01 2.839488e+01 lineto +3.767739e+01 2.780646e+01 lineto +3.767739e+01 3.558046e+01 lineto +4.072198e+01 3.616888e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.072198e+01 4.394288e+01 moveto +4.072198e+01 3.616888e+01 lineto +3.767739e+01 3.558046e+01 lineto +3.767739e+01 4.335446e+01 lineto +4.072198e+01 4.394288e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +4.072198e+01 4.394288e+01 moveto +4.072198e+01 3.616888e+01 lineto +3.767739e+01 3.558046e+01 lineto +3.767739e+01 4.335446e+01 lineto +4.072198e+01 4.394288e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.072198e+01 5.171688e+01 moveto +4.072198e+01 4.394288e+01 lineto +3.767739e+01 4.335446e+01 lineto +3.767739e+01 5.112846e+01 lineto +4.072198e+01 5.171688e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +4.072198e+01 5.171688e+01 moveto +4.072198e+01 4.394288e+01 lineto +3.767739e+01 4.335446e+01 lineto +3.767739e+01 5.112846e+01 lineto +4.072198e+01 5.171688e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.072198e+01 5.949088e+01 moveto +4.072198e+01 5.171688e+01 lineto +3.767739e+01 5.112846e+01 lineto +3.767739e+01 5.890246e+01 lineto +4.072198e+01 5.949088e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +4.072198e+01 5.949088e+01 moveto +4.072198e+01 5.171688e+01 lineto +3.767739e+01 5.112846e+01 lineto +3.767739e+01 5.890246e+01 lineto +4.072198e+01 5.949088e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.072198e+01 6.726488e+01 moveto +4.072198e+01 5.949088e+01 lineto +3.767739e+01 5.890246e+01 lineto +3.767739e+01 6.667646e+01 lineto +4.072198e+01 6.726488e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +4.072198e+01 6.726488e+01 moveto +4.072198e+01 5.949088e+01 lineto +3.767739e+01 5.890246e+01 lineto +3.767739e+01 6.667646e+01 lineto +4.072198e+01 6.726488e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.072198e+01 7.503888e+01 moveto +4.072198e+01 6.726488e+01 lineto +3.767739e+01 6.667646e+01 lineto +3.767739e+01 7.445046e+01 lineto +4.072198e+01 7.503888e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +4.072198e+01 7.503888e+01 moveto +4.072198e+01 6.726488e+01 lineto +3.767739e+01 6.667646e+01 lineto +3.767739e+01 7.445046e+01 lineto +4.072198e+01 7.503888e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.072198e+01 8.281288e+01 moveto +4.072198e+01 7.503888e+01 lineto +3.767739e+01 7.445046e+01 lineto +3.767739e+01 8.222446e+01 lineto +4.072198e+01 8.281288e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +4.072198e+01 8.281288e+01 moveto +4.072198e+01 7.503888e+01 lineto +3.767739e+01 7.445046e+01 lineto +3.767739e+01 8.222446e+01 lineto +4.072198e+01 8.281288e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.072198e+01 9.058688e+01 moveto +4.072198e+01 8.281288e+01 lineto +3.767739e+01 8.222446e+01 lineto +3.767739e+01 8.999846e+01 lineto +4.072198e+01 9.058688e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +4.072198e+01 9.058688e+01 moveto +4.072198e+01 8.281288e+01 lineto +3.767739e+01 8.222446e+01 lineto +3.767739e+01 8.999846e+01 lineto +4.072198e+01 9.058688e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.072198e+01 9.836088e+01 moveto +4.072198e+01 9.058688e+01 lineto +3.767739e+01 8.999846e+01 lineto +3.767739e+01 9.777246e+01 lineto +4.072198e+01 9.836088e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +4.072198e+01 9.836088e+01 moveto +4.072198e+01 9.058688e+01 lineto +3.767739e+01 8.999846e+01 lineto +3.767739e+01 9.777246e+01 lineto +4.072198e+01 9.836088e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.072198e+01 1.061349e+02 moveto +4.072198e+01 9.836088e+01 lineto +3.767739e+01 9.777246e+01 lineto +3.767739e+01 1.055465e+02 lineto +4.072198e+01 1.061349e+02 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +4.072198e+01 1.061349e+02 moveto +4.072198e+01 9.836088e+01 lineto +3.767739e+01 9.777246e+01 lineto +3.767739e+01 1.055465e+02 lineto +4.072198e+01 1.061349e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.767739e+01 3.558046e+01 moveto +3.767739e+01 2.780646e+01 lineto +3.480126e+01 2.716991e+01 lineto +3.480126e+01 3.494391e+01 lineto +3.767739e+01 3.558046e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +3.767739e+01 3.558046e+01 moveto +3.767739e+01 2.780646e+01 lineto +3.480126e+01 2.716991e+01 lineto +3.480126e+01 3.494391e+01 lineto +3.767739e+01 3.558046e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.767739e+01 4.335446e+01 moveto +3.767739e+01 3.558046e+01 lineto +3.480126e+01 3.494391e+01 lineto +3.480126e+01 4.271791e+01 lineto +3.767739e+01 4.335446e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +3.767739e+01 4.335446e+01 moveto +3.767739e+01 3.558046e+01 lineto +3.480126e+01 3.494391e+01 lineto +3.480126e+01 4.271791e+01 lineto +3.767739e+01 4.335446e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.767739e+01 5.112846e+01 moveto +3.767739e+01 4.335446e+01 lineto +3.480126e+01 4.271791e+01 lineto +3.480126e+01 5.049191e+01 lineto +3.767739e+01 5.112846e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +3.767739e+01 5.112846e+01 moveto +3.767739e+01 4.335446e+01 lineto +3.480126e+01 4.271791e+01 lineto +3.480126e+01 5.049191e+01 lineto +3.767739e+01 5.112846e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.767739e+01 5.890246e+01 moveto +3.767739e+01 5.112846e+01 lineto +3.480126e+01 5.049191e+01 lineto +3.480126e+01 5.826591e+01 lineto +3.767739e+01 5.890246e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +3.767739e+01 5.890246e+01 moveto +3.767739e+01 5.112846e+01 lineto +3.480126e+01 5.049191e+01 lineto +3.480126e+01 5.826591e+01 lineto +3.767739e+01 5.890246e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.767739e+01 6.667646e+01 moveto +3.767739e+01 5.890246e+01 lineto +3.480126e+01 5.826591e+01 lineto +3.480126e+01 6.603991e+01 lineto +3.767739e+01 6.667646e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +3.767739e+01 6.667646e+01 moveto +3.767739e+01 5.890246e+01 lineto +3.480126e+01 5.826591e+01 lineto +3.480126e+01 6.603991e+01 lineto +3.767739e+01 6.667646e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.767739e+01 7.445046e+01 moveto +3.767739e+01 6.667646e+01 lineto +3.480126e+01 6.603991e+01 lineto +3.480126e+01 7.381391e+01 lineto +3.767739e+01 7.445046e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +3.767739e+01 7.445046e+01 moveto +3.767739e+01 6.667646e+01 lineto +3.480126e+01 6.603991e+01 lineto +3.480126e+01 7.381391e+01 lineto +3.767739e+01 7.445046e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.767739e+01 8.222446e+01 moveto +3.767739e+01 7.445046e+01 lineto +3.480126e+01 7.381391e+01 lineto +3.480126e+01 8.158791e+01 lineto +3.767739e+01 8.222446e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +3.767739e+01 8.222446e+01 moveto +3.767739e+01 7.445046e+01 lineto +3.480126e+01 7.381391e+01 lineto +3.480126e+01 8.158791e+01 lineto +3.767739e+01 8.222446e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.767739e+01 8.999846e+01 moveto +3.767739e+01 8.222446e+01 lineto +3.480126e+01 8.158791e+01 lineto +3.480126e+01 8.936191e+01 lineto +3.767739e+01 8.999846e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +3.767739e+01 8.999846e+01 moveto +3.767739e+01 8.222446e+01 lineto +3.480126e+01 8.158791e+01 lineto +3.480126e+01 8.936191e+01 lineto +3.767739e+01 8.999846e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.767739e+01 9.777246e+01 moveto +3.767739e+01 8.999846e+01 lineto +3.480126e+01 8.936191e+01 lineto +3.480126e+01 9.713591e+01 lineto +3.767739e+01 9.777246e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +3.767739e+01 9.777246e+01 moveto +3.767739e+01 8.999846e+01 lineto +3.480126e+01 8.936191e+01 lineto +3.480126e+01 9.713591e+01 lineto +3.767739e+01 9.777246e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.767739e+01 1.055465e+02 moveto +3.767739e+01 9.777246e+01 lineto +3.480126e+01 9.713591e+01 lineto +3.480126e+01 1.049099e+02 lineto +3.767739e+01 1.055465e+02 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +3.767739e+01 1.055465e+02 moveto +3.767739e+01 9.777246e+01 lineto +3.480126e+01 9.713591e+01 lineto +3.480126e+01 1.049099e+02 lineto +3.767739e+01 1.055465e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.480126e+01 3.494391e+01 moveto +3.480126e+01 2.716991e+01 lineto +3.211132e+01 2.648915e+01 lineto +3.211132e+01 3.426315e+01 lineto +3.480126e+01 3.494391e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +3.480126e+01 3.494391e+01 moveto +3.480126e+01 2.716991e+01 lineto +3.211132e+01 2.648915e+01 lineto +3.211132e+01 3.426315e+01 lineto +3.480126e+01 3.494391e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.480126e+01 4.271791e+01 moveto +3.480126e+01 3.494391e+01 lineto +3.211132e+01 3.426315e+01 lineto +3.211132e+01 4.203715e+01 lineto +3.480126e+01 4.271791e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +3.480126e+01 4.271791e+01 moveto +3.480126e+01 3.494391e+01 lineto +3.211132e+01 3.426315e+01 lineto +3.211132e+01 4.203715e+01 lineto +3.480126e+01 4.271791e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.480126e+01 5.049191e+01 moveto +3.480126e+01 4.271791e+01 lineto +3.211132e+01 4.203715e+01 lineto +3.211132e+01 4.981115e+01 lineto +3.480126e+01 5.049191e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +3.480126e+01 5.049191e+01 moveto +3.480126e+01 4.271791e+01 lineto +3.211132e+01 4.203715e+01 lineto +3.211132e+01 4.981115e+01 lineto +3.480126e+01 5.049191e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.480126e+01 5.826591e+01 moveto +3.480126e+01 5.049191e+01 lineto +3.211132e+01 4.981115e+01 lineto +3.211132e+01 5.758515e+01 lineto +3.480126e+01 5.826591e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +3.480126e+01 5.826591e+01 moveto +3.480126e+01 5.049191e+01 lineto +3.211132e+01 4.981115e+01 lineto +3.211132e+01 5.758515e+01 lineto +3.480126e+01 5.826591e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.480126e+01 6.603991e+01 moveto +3.480126e+01 5.826591e+01 lineto +3.211132e+01 5.758515e+01 lineto +3.211132e+01 6.535915e+01 lineto +3.480126e+01 6.603991e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +3.480126e+01 6.603991e+01 moveto +3.480126e+01 5.826591e+01 lineto +3.211132e+01 5.758515e+01 lineto +3.211132e+01 6.535915e+01 lineto +3.480126e+01 6.603991e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.480126e+01 7.381391e+01 moveto +3.480126e+01 6.603991e+01 lineto +3.211132e+01 6.535915e+01 lineto +3.211132e+01 7.313315e+01 lineto +3.480126e+01 7.381391e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +3.480126e+01 7.381391e+01 moveto +3.480126e+01 6.603991e+01 lineto +3.211132e+01 6.535915e+01 lineto +3.211132e+01 7.313315e+01 lineto +3.480126e+01 7.381391e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.480126e+01 8.158791e+01 moveto +3.480126e+01 7.381391e+01 lineto +3.211132e+01 7.313315e+01 lineto +3.211132e+01 8.090715e+01 lineto +3.480126e+01 8.158791e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +3.480126e+01 8.158791e+01 moveto +3.480126e+01 7.381391e+01 lineto +3.211132e+01 7.313315e+01 lineto +3.211132e+01 8.090715e+01 lineto +3.480126e+01 8.158791e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.480126e+01 8.936191e+01 moveto +3.480126e+01 8.158791e+01 lineto +3.211132e+01 8.090715e+01 lineto +3.211132e+01 8.868115e+01 lineto +3.480126e+01 8.936191e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +3.480126e+01 8.936191e+01 moveto +3.480126e+01 8.158791e+01 lineto +3.211132e+01 8.090715e+01 lineto +3.211132e+01 8.868115e+01 lineto +3.480126e+01 8.936191e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.480126e+01 9.713591e+01 moveto +3.480126e+01 8.936191e+01 lineto +3.211132e+01 8.868115e+01 lineto +3.211132e+01 9.645515e+01 lineto +3.480126e+01 9.713591e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +3.480126e+01 9.713591e+01 moveto +3.480126e+01 8.936191e+01 lineto +3.211132e+01 8.868115e+01 lineto +3.211132e+01 9.645515e+01 lineto +3.480126e+01 9.713591e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.480126e+01 1.049099e+02 moveto +3.480126e+01 9.713591e+01 lineto +3.211132e+01 9.645515e+01 lineto +3.211132e+01 1.042291e+02 lineto +3.480126e+01 1.049099e+02 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +3.480126e+01 1.049099e+02 moveto +3.480126e+01 9.713591e+01 lineto +3.211132e+01 9.645515e+01 lineto +3.211132e+01 1.042291e+02 lineto +3.480126e+01 1.049099e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.211132e+01 3.426315e+01 moveto +3.211132e+01 2.648915e+01 lineto +2.962414e+01 2.576838e+01 lineto +2.962414e+01 3.354238e+01 lineto +3.211132e+01 3.426315e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +3.211132e+01 3.426315e+01 moveto +3.211132e+01 2.648915e+01 lineto +2.962414e+01 2.576838e+01 lineto +2.962414e+01 3.354238e+01 lineto +3.211132e+01 3.426315e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.211132e+01 4.203715e+01 moveto +3.211132e+01 3.426315e+01 lineto +2.962414e+01 3.354238e+01 lineto +2.962414e+01 4.131638e+01 lineto +3.211132e+01 4.203715e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +3.211132e+01 4.203715e+01 moveto +3.211132e+01 3.426315e+01 lineto +2.962414e+01 3.354238e+01 lineto +2.962414e+01 4.131638e+01 lineto +3.211132e+01 4.203715e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.211132e+01 4.981115e+01 moveto +3.211132e+01 4.203715e+01 lineto +2.962414e+01 4.131638e+01 lineto +2.962414e+01 4.909038e+01 lineto +3.211132e+01 4.981115e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +3.211132e+01 4.981115e+01 moveto +3.211132e+01 4.203715e+01 lineto +2.962414e+01 4.131638e+01 lineto +2.962414e+01 4.909038e+01 lineto +3.211132e+01 4.981115e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.211132e+01 5.758515e+01 moveto +3.211132e+01 4.981115e+01 lineto +2.962414e+01 4.909038e+01 lineto +2.962414e+01 5.686438e+01 lineto +3.211132e+01 5.758515e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +3.211132e+01 5.758515e+01 moveto +3.211132e+01 4.981115e+01 lineto +2.962414e+01 4.909038e+01 lineto +2.962414e+01 5.686438e+01 lineto +3.211132e+01 5.758515e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.211132e+01 6.535915e+01 moveto +3.211132e+01 5.758515e+01 lineto +2.962414e+01 5.686438e+01 lineto +2.962414e+01 6.463838e+01 lineto +3.211132e+01 6.535915e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +3.211132e+01 6.535915e+01 moveto +3.211132e+01 5.758515e+01 lineto +2.962414e+01 5.686438e+01 lineto +2.962414e+01 6.463838e+01 lineto +3.211132e+01 6.535915e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.211132e+01 7.313315e+01 moveto +3.211132e+01 6.535915e+01 lineto +2.962414e+01 6.463838e+01 lineto +2.962414e+01 7.241238e+01 lineto +3.211132e+01 7.313315e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +3.211132e+01 7.313315e+01 moveto +3.211132e+01 6.535915e+01 lineto +2.962414e+01 6.463838e+01 lineto +2.962414e+01 7.241238e+01 lineto +3.211132e+01 7.313315e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.211132e+01 8.090715e+01 moveto +3.211132e+01 7.313315e+01 lineto +2.962414e+01 7.241238e+01 lineto +2.962414e+01 8.018638e+01 lineto +3.211132e+01 8.090715e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +3.211132e+01 8.090715e+01 moveto +3.211132e+01 7.313315e+01 lineto +2.962414e+01 7.241238e+01 lineto +2.962414e+01 8.018638e+01 lineto +3.211132e+01 8.090715e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.211132e+01 8.868115e+01 moveto +3.211132e+01 8.090715e+01 lineto +2.962414e+01 8.018638e+01 lineto +2.962414e+01 8.796038e+01 lineto +3.211132e+01 8.868115e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +3.211132e+01 8.868115e+01 moveto +3.211132e+01 8.090715e+01 lineto +2.962414e+01 8.018638e+01 lineto +2.962414e+01 8.796038e+01 lineto +3.211132e+01 8.868115e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.211132e+01 9.645515e+01 moveto +3.211132e+01 8.868115e+01 lineto +2.962414e+01 8.796038e+01 lineto +2.962414e+01 9.573438e+01 lineto +3.211132e+01 9.645515e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +3.211132e+01 9.645515e+01 moveto +3.211132e+01 8.868115e+01 lineto +2.962414e+01 8.796038e+01 lineto +2.962414e+01 9.573438e+01 lineto +3.211132e+01 9.645515e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.211132e+01 1.042291e+02 moveto +3.211132e+01 9.645515e+01 lineto +2.962414e+01 9.573438e+01 lineto +2.962414e+01 1.035084e+02 lineto +3.211132e+01 1.042291e+02 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +3.211132e+01 1.042291e+02 moveto +3.211132e+01 9.645515e+01 lineto +2.962414e+01 9.573438e+01 lineto +2.962414e+01 1.035084e+02 lineto +3.211132e+01 1.042291e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.962414e+01 3.354238e+01 moveto +2.962414e+01 2.576838e+01 lineto +2.735507e+01 2.501206e+01 lineto +2.735507e+01 3.278606e+01 lineto +2.962414e+01 3.354238e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +2.962414e+01 3.354238e+01 moveto +2.962414e+01 2.576838e+01 lineto +2.735507e+01 2.501206e+01 lineto +2.735507e+01 3.278606e+01 lineto +2.962414e+01 3.354238e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.962414e+01 4.131638e+01 moveto +2.962414e+01 3.354238e+01 lineto +2.735507e+01 3.278606e+01 lineto +2.735507e+01 4.056006e+01 lineto +2.962414e+01 4.131638e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +2.962414e+01 4.131638e+01 moveto +2.962414e+01 3.354238e+01 lineto +2.735507e+01 3.278606e+01 lineto +2.735507e+01 4.056006e+01 lineto +2.962414e+01 4.131638e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.962414e+01 4.909038e+01 moveto +2.962414e+01 4.131638e+01 lineto +2.735507e+01 4.056006e+01 lineto +2.735507e+01 4.833406e+01 lineto +2.962414e+01 4.909038e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +2.962414e+01 4.909038e+01 moveto +2.962414e+01 4.131638e+01 lineto +2.735507e+01 4.056006e+01 lineto +2.735507e+01 4.833406e+01 lineto +2.962414e+01 4.909038e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.962414e+01 5.686438e+01 moveto +2.962414e+01 4.909038e+01 lineto +2.735507e+01 4.833406e+01 lineto +2.735507e+01 5.610806e+01 lineto +2.962414e+01 5.686438e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +2.962414e+01 5.686438e+01 moveto +2.962414e+01 4.909038e+01 lineto +2.735507e+01 4.833406e+01 lineto +2.735507e+01 5.610806e+01 lineto +2.962414e+01 5.686438e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.962414e+01 6.463838e+01 moveto +2.962414e+01 5.686438e+01 lineto +2.735507e+01 5.610806e+01 lineto +2.735507e+01 6.388206e+01 lineto +2.962414e+01 6.463838e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +2.962414e+01 6.463838e+01 moveto +2.962414e+01 5.686438e+01 lineto +2.735507e+01 5.610806e+01 lineto +2.735507e+01 6.388206e+01 lineto +2.962414e+01 6.463838e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.962414e+01 7.241238e+01 moveto +2.962414e+01 6.463838e+01 lineto +2.735507e+01 6.388206e+01 lineto +2.735507e+01 7.165606e+01 lineto +2.962414e+01 7.241238e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +2.962414e+01 7.241238e+01 moveto +2.962414e+01 6.463838e+01 lineto +2.735507e+01 6.388206e+01 lineto +2.735507e+01 7.165606e+01 lineto +2.962414e+01 7.241238e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.962414e+01 8.018638e+01 moveto +2.962414e+01 7.241238e+01 lineto +2.735507e+01 7.165606e+01 lineto +2.735507e+01 7.943006e+01 lineto +2.962414e+01 8.018638e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +2.962414e+01 8.018638e+01 moveto +2.962414e+01 7.241238e+01 lineto +2.735507e+01 7.165606e+01 lineto +2.735507e+01 7.943006e+01 lineto +2.962414e+01 8.018638e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.962414e+01 8.796038e+01 moveto +2.962414e+01 8.018638e+01 lineto +2.735507e+01 7.943006e+01 lineto +2.735507e+01 8.720406e+01 lineto +2.962414e+01 8.796038e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +2.962414e+01 8.796038e+01 moveto +2.962414e+01 8.018638e+01 lineto +2.735507e+01 7.943006e+01 lineto +2.735507e+01 8.720406e+01 lineto +2.962414e+01 8.796038e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.962414e+01 9.573438e+01 moveto +2.962414e+01 8.796038e+01 lineto +2.735507e+01 8.720406e+01 lineto +2.735507e+01 9.497806e+01 lineto +2.962414e+01 9.573438e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +2.962414e+01 9.573438e+01 moveto +2.962414e+01 8.796038e+01 lineto +2.735507e+01 8.720406e+01 lineto +2.735507e+01 9.497806e+01 lineto +2.962414e+01 9.573438e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.962414e+01 1.035084e+02 moveto +2.962414e+01 9.573438e+01 lineto +2.735507e+01 9.497806e+01 lineto +2.735507e+01 1.027521e+02 lineto +2.962414e+01 1.035084e+02 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +2.962414e+01 1.035084e+02 moveto +2.962414e+01 9.573438e+01 lineto +2.735507e+01 9.497806e+01 lineto +2.735507e+01 1.027521e+02 lineto +2.962414e+01 1.035084e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.735507e+01 3.278606e+01 moveto +2.735507e+01 2.501206e+01 lineto +2.531809e+01 2.422483e+01 lineto +2.531809e+01 3.199883e+01 lineto +2.735507e+01 3.278606e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +2.735507e+01 3.278606e+01 moveto +2.735507e+01 2.501206e+01 lineto +2.531809e+01 2.422483e+01 lineto +2.531809e+01 3.199883e+01 lineto +2.735507e+01 3.278606e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.735507e+01 4.056006e+01 moveto +2.735507e+01 3.278606e+01 lineto +2.531809e+01 3.199883e+01 lineto +2.531809e+01 3.977283e+01 lineto +2.735507e+01 4.056006e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +2.735507e+01 4.056006e+01 moveto +2.735507e+01 3.278606e+01 lineto +2.531809e+01 3.199883e+01 lineto +2.531809e+01 3.977283e+01 lineto +2.735507e+01 4.056006e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.735507e+01 4.833406e+01 moveto +2.735507e+01 4.056006e+01 lineto +2.531809e+01 3.977283e+01 lineto +2.531809e+01 4.754683e+01 lineto +2.735507e+01 4.833406e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +2.735507e+01 4.833406e+01 moveto +2.735507e+01 4.056006e+01 lineto +2.531809e+01 3.977283e+01 lineto +2.531809e+01 4.754683e+01 lineto +2.735507e+01 4.833406e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.735507e+01 5.610806e+01 moveto +2.735507e+01 4.833406e+01 lineto +2.531809e+01 4.754683e+01 lineto +2.531809e+01 5.532083e+01 lineto +2.735507e+01 5.610806e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +2.735507e+01 5.610806e+01 moveto +2.735507e+01 4.833406e+01 lineto +2.531809e+01 4.754683e+01 lineto +2.531809e+01 5.532083e+01 lineto +2.735507e+01 5.610806e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.735507e+01 6.388206e+01 moveto +2.735507e+01 5.610806e+01 lineto +2.531809e+01 5.532083e+01 lineto +2.531809e+01 6.309483e+01 lineto +2.735507e+01 6.388206e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +2.735507e+01 6.388206e+01 moveto +2.735507e+01 5.610806e+01 lineto +2.531809e+01 5.532083e+01 lineto +2.531809e+01 6.309483e+01 lineto +2.735507e+01 6.388206e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.735507e+01 7.165606e+01 moveto +2.735507e+01 6.388206e+01 lineto +2.531809e+01 6.309483e+01 lineto +2.531809e+01 7.086883e+01 lineto +2.735507e+01 7.165606e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +2.735507e+01 7.165606e+01 moveto +2.735507e+01 6.388206e+01 lineto +2.531809e+01 6.309483e+01 lineto +2.531809e+01 7.086883e+01 lineto +2.735507e+01 7.165606e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.735507e+01 7.943006e+01 moveto +2.735507e+01 7.165606e+01 lineto +2.531809e+01 7.086883e+01 lineto +2.531809e+01 7.864283e+01 lineto +2.735507e+01 7.943006e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +2.735507e+01 7.943006e+01 moveto +2.735507e+01 7.165606e+01 lineto +2.531809e+01 7.086883e+01 lineto +2.531809e+01 7.864283e+01 lineto +2.735507e+01 7.943006e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.735507e+01 8.720406e+01 moveto +2.735507e+01 7.943006e+01 lineto +2.531809e+01 7.864283e+01 lineto +2.531809e+01 8.641683e+01 lineto +2.735507e+01 8.720406e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +2.735507e+01 8.720406e+01 moveto +2.735507e+01 7.943006e+01 lineto +2.531809e+01 7.864283e+01 lineto +2.531809e+01 8.641683e+01 lineto +2.735507e+01 8.720406e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.735507e+01 9.497806e+01 moveto +2.735507e+01 8.720406e+01 lineto +2.531809e+01 8.641683e+01 lineto +2.531809e+01 9.419083e+01 lineto +2.735507e+01 9.497806e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +2.735507e+01 9.497806e+01 moveto +2.735507e+01 8.720406e+01 lineto +2.531809e+01 8.641683e+01 lineto +2.531809e+01 9.419083e+01 lineto +2.735507e+01 9.497806e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.735507e+01 1.027521e+02 moveto +2.735507e+01 9.497806e+01 lineto +2.531809e+01 9.419083e+01 lineto +2.531809e+01 1.019648e+02 lineto +2.735507e+01 1.027521e+02 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +2.735507e+01 1.027521e+02 moveto +2.735507e+01 9.497806e+01 lineto +2.531809e+01 9.419083e+01 lineto +2.531809e+01 1.019648e+02 lineto +2.735507e+01 1.027521e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.531809e+01 3.199883e+01 moveto +2.531809e+01 2.422483e+01 lineto +2.352577e+01 2.341155e+01 lineto +2.352577e+01 3.118555e+01 lineto +2.531809e+01 3.199883e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +2.531809e+01 3.199883e+01 moveto +2.531809e+01 2.422483e+01 lineto +2.352577e+01 2.341155e+01 lineto +2.352577e+01 3.118555e+01 lineto +2.531809e+01 3.199883e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.531809e+01 3.977283e+01 moveto +2.531809e+01 3.199883e+01 lineto +2.352577e+01 3.118555e+01 lineto +2.352577e+01 3.895955e+01 lineto +2.531809e+01 3.977283e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +2.531809e+01 3.977283e+01 moveto +2.531809e+01 3.199883e+01 lineto +2.352577e+01 3.118555e+01 lineto +2.352577e+01 3.895955e+01 lineto +2.531809e+01 3.977283e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.531809e+01 4.754683e+01 moveto +2.531809e+01 3.977283e+01 lineto +2.352577e+01 3.895955e+01 lineto +2.352577e+01 4.673355e+01 lineto +2.531809e+01 4.754683e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +2.531809e+01 4.754683e+01 moveto +2.531809e+01 3.977283e+01 lineto +2.352577e+01 3.895955e+01 lineto +2.352577e+01 4.673355e+01 lineto +2.531809e+01 4.754683e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.531809e+01 5.532083e+01 moveto +2.531809e+01 4.754683e+01 lineto +2.352577e+01 4.673355e+01 lineto +2.352577e+01 5.450755e+01 lineto +2.531809e+01 5.532083e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +2.531809e+01 5.532083e+01 moveto +2.531809e+01 4.754683e+01 lineto +2.352577e+01 4.673355e+01 lineto +2.352577e+01 5.450755e+01 lineto +2.531809e+01 5.532083e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.531809e+01 6.309483e+01 moveto +2.531809e+01 5.532083e+01 lineto +2.352577e+01 5.450755e+01 lineto +2.352577e+01 6.228155e+01 lineto +2.531809e+01 6.309483e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +2.531809e+01 6.309483e+01 moveto +2.531809e+01 5.532083e+01 lineto +2.352577e+01 5.450755e+01 lineto +2.352577e+01 6.228155e+01 lineto +2.531809e+01 6.309483e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.531809e+01 7.086883e+01 moveto +2.531809e+01 6.309483e+01 lineto +2.352577e+01 6.228155e+01 lineto +2.352577e+01 7.005555e+01 lineto +2.531809e+01 7.086883e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +2.531809e+01 7.086883e+01 moveto +2.531809e+01 6.309483e+01 lineto +2.352577e+01 6.228155e+01 lineto +2.352577e+01 7.005555e+01 lineto +2.531809e+01 7.086883e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.531809e+01 7.864283e+01 moveto +2.531809e+01 7.086883e+01 lineto +2.352577e+01 7.005555e+01 lineto +2.352577e+01 7.782955e+01 lineto +2.531809e+01 7.864283e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +2.531809e+01 7.864283e+01 moveto +2.531809e+01 7.086883e+01 lineto +2.352577e+01 7.005555e+01 lineto +2.352577e+01 7.782955e+01 lineto +2.531809e+01 7.864283e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.531809e+01 8.641683e+01 moveto +2.531809e+01 7.864283e+01 lineto +2.352577e+01 7.782955e+01 lineto +2.352577e+01 8.560355e+01 lineto +2.531809e+01 8.641683e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +2.531809e+01 8.641683e+01 moveto +2.531809e+01 7.864283e+01 lineto +2.352577e+01 7.782955e+01 lineto +2.352577e+01 8.560355e+01 lineto +2.531809e+01 8.641683e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.531809e+01 9.419083e+01 moveto +2.531809e+01 8.641683e+01 lineto +2.352577e+01 8.560355e+01 lineto +2.352577e+01 9.337755e+01 lineto +2.531809e+01 9.419083e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +2.531809e+01 9.419083e+01 moveto +2.531809e+01 8.641683e+01 lineto +2.352577e+01 8.560355e+01 lineto +2.352577e+01 9.337755e+01 lineto +2.531809e+01 9.419083e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.531809e+01 1.019648e+02 moveto +2.531809e+01 9.419083e+01 lineto +2.352577e+01 9.337755e+01 lineto +2.352577e+01 1.011515e+02 lineto +2.531809e+01 1.019648e+02 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +2.531809e+01 1.019648e+02 moveto +2.531809e+01 9.419083e+01 lineto +2.352577e+01 9.337755e+01 lineto +2.352577e+01 1.011515e+02 lineto +2.531809e+01 1.019648e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.352577e+01 3.118555e+01 moveto +2.352577e+01 2.341155e+01 lineto +2.198914e+01 2.257724e+01 lineto +2.198914e+01 3.035124e+01 lineto +2.352577e+01 3.118555e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +2.352577e+01 3.118555e+01 moveto +2.352577e+01 2.341155e+01 lineto +2.198914e+01 2.257724e+01 lineto +2.198914e+01 3.035124e+01 lineto +2.352577e+01 3.118555e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.352577e+01 3.895955e+01 moveto +2.352577e+01 3.118555e+01 lineto +2.198914e+01 3.035124e+01 lineto +2.198914e+01 3.812524e+01 lineto +2.352577e+01 3.895955e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +2.352577e+01 3.895955e+01 moveto +2.352577e+01 3.118555e+01 lineto +2.198914e+01 3.035124e+01 lineto +2.198914e+01 3.812524e+01 lineto +2.352577e+01 3.895955e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.352577e+01 4.673355e+01 moveto +2.352577e+01 3.895955e+01 lineto +2.198914e+01 3.812524e+01 lineto +2.198914e+01 4.589924e+01 lineto +2.352577e+01 4.673355e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +2.352577e+01 4.673355e+01 moveto +2.352577e+01 3.895955e+01 lineto +2.198914e+01 3.812524e+01 lineto +2.198914e+01 4.589924e+01 lineto +2.352577e+01 4.673355e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.352577e+01 5.450755e+01 moveto +2.352577e+01 4.673355e+01 lineto +2.198914e+01 4.589924e+01 lineto +2.198914e+01 5.367324e+01 lineto +2.352577e+01 5.450755e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +2.352577e+01 5.450755e+01 moveto +2.352577e+01 4.673355e+01 lineto +2.198914e+01 4.589924e+01 lineto +2.198914e+01 5.367324e+01 lineto +2.352577e+01 5.450755e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.352577e+01 6.228155e+01 moveto +2.352577e+01 5.450755e+01 lineto +2.198914e+01 5.367324e+01 lineto +2.198914e+01 6.144724e+01 lineto +2.352577e+01 6.228155e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +2.352577e+01 6.228155e+01 moveto +2.352577e+01 5.450755e+01 lineto +2.198914e+01 5.367324e+01 lineto +2.198914e+01 6.144724e+01 lineto +2.352577e+01 6.228155e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.352577e+01 7.005555e+01 moveto +2.352577e+01 6.228155e+01 lineto +2.198914e+01 6.144724e+01 lineto +2.198914e+01 6.922124e+01 lineto +2.352577e+01 7.005555e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +2.352577e+01 7.005555e+01 moveto +2.352577e+01 6.228155e+01 lineto +2.198914e+01 6.144724e+01 lineto +2.198914e+01 6.922124e+01 lineto +2.352577e+01 7.005555e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.352577e+01 7.782955e+01 moveto +2.352577e+01 7.005555e+01 lineto +2.198914e+01 6.922124e+01 lineto +2.198914e+01 7.699524e+01 lineto +2.352577e+01 7.782955e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +2.352577e+01 7.782955e+01 moveto +2.352577e+01 7.005555e+01 lineto +2.198914e+01 6.922124e+01 lineto +2.198914e+01 7.699524e+01 lineto +2.352577e+01 7.782955e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.352577e+01 8.560355e+01 moveto +2.352577e+01 7.782955e+01 lineto +2.198914e+01 7.699524e+01 lineto +2.198914e+01 8.476924e+01 lineto +2.352577e+01 8.560355e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +2.352577e+01 8.560355e+01 moveto +2.352577e+01 7.782955e+01 lineto +2.198914e+01 7.699524e+01 lineto +2.198914e+01 8.476924e+01 lineto +2.352577e+01 8.560355e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.352577e+01 9.337755e+01 moveto +2.352577e+01 8.560355e+01 lineto +2.198914e+01 8.476924e+01 lineto +2.198914e+01 9.254324e+01 lineto +2.352577e+01 9.337755e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +2.352577e+01 9.337755e+01 moveto +2.352577e+01 8.560355e+01 lineto +2.198914e+01 8.476924e+01 lineto +2.198914e+01 9.254324e+01 lineto +2.352577e+01 9.337755e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.352577e+01 1.011515e+02 moveto +2.352577e+01 9.337755e+01 lineto +2.198914e+01 9.254324e+01 lineto +2.198914e+01 1.003172e+02 lineto +2.352577e+01 1.011515e+02 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +2.352577e+01 1.011515e+02 moveto +2.352577e+01 9.337755e+01 lineto +2.198914e+01 9.254324e+01 lineto +2.198914e+01 1.003172e+02 lineto +2.352577e+01 1.011515e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.198914e+01 3.035124e+01 moveto +2.198914e+01 2.257724e+01 lineto +2.071769e+01 2.172704e+01 lineto +2.071769e+01 2.950104e+01 lineto +2.198914e+01 3.035124e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +2.198914e+01 3.035124e+01 moveto +2.198914e+01 2.257724e+01 lineto +2.071769e+01 2.172704e+01 lineto +2.071769e+01 2.950104e+01 lineto +2.198914e+01 3.035124e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.198914e+01 3.812524e+01 moveto +2.198914e+01 3.035124e+01 lineto +2.071769e+01 2.950104e+01 lineto +2.071769e+01 3.727504e+01 lineto +2.198914e+01 3.812524e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +2.198914e+01 3.812524e+01 moveto +2.198914e+01 3.035124e+01 lineto +2.071769e+01 2.950104e+01 lineto +2.071769e+01 3.727504e+01 lineto +2.198914e+01 3.812524e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.198914e+01 4.589924e+01 moveto +2.198914e+01 3.812524e+01 lineto +2.071769e+01 3.727504e+01 lineto +2.071769e+01 4.504904e+01 lineto +2.198914e+01 4.589924e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +2.198914e+01 4.589924e+01 moveto +2.198914e+01 3.812524e+01 lineto +2.071769e+01 3.727504e+01 lineto +2.071769e+01 4.504904e+01 lineto +2.198914e+01 4.589924e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.198914e+01 5.367324e+01 moveto +2.198914e+01 4.589924e+01 lineto +2.071769e+01 4.504904e+01 lineto +2.071769e+01 5.282304e+01 lineto +2.198914e+01 5.367324e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +2.198914e+01 5.367324e+01 moveto +2.198914e+01 4.589924e+01 lineto +2.071769e+01 4.504904e+01 lineto +2.071769e+01 5.282304e+01 lineto +2.198914e+01 5.367324e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.198914e+01 6.144724e+01 moveto +2.198914e+01 5.367324e+01 lineto +2.071769e+01 5.282304e+01 lineto +2.071769e+01 6.059704e+01 lineto +2.198914e+01 6.144724e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +2.198914e+01 6.144724e+01 moveto +2.198914e+01 5.367324e+01 lineto +2.071769e+01 5.282304e+01 lineto +2.071769e+01 6.059704e+01 lineto +2.198914e+01 6.144724e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.198914e+01 6.922124e+01 moveto +2.198914e+01 6.144724e+01 lineto +2.071769e+01 6.059704e+01 lineto +2.071769e+01 6.837104e+01 lineto +2.198914e+01 6.922124e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +2.198914e+01 6.922124e+01 moveto +2.198914e+01 6.144724e+01 lineto +2.071769e+01 6.059704e+01 lineto +2.071769e+01 6.837104e+01 lineto +2.198914e+01 6.922124e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.198914e+01 7.699524e+01 moveto +2.198914e+01 6.922124e+01 lineto +2.071769e+01 6.837104e+01 lineto +2.071769e+01 7.614504e+01 lineto +2.198914e+01 7.699524e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +2.198914e+01 7.699524e+01 moveto +2.198914e+01 6.922124e+01 lineto +2.071769e+01 6.837104e+01 lineto +2.071769e+01 7.614504e+01 lineto +2.198914e+01 7.699524e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.198914e+01 8.476924e+01 moveto +2.198914e+01 7.699524e+01 lineto +2.071769e+01 7.614504e+01 lineto +2.071769e+01 8.391904e+01 lineto +2.198914e+01 8.476924e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +2.198914e+01 8.476924e+01 moveto +2.198914e+01 7.699524e+01 lineto +2.071769e+01 7.614504e+01 lineto +2.071769e+01 8.391904e+01 lineto +2.198914e+01 8.476924e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.198914e+01 9.254324e+01 moveto +2.198914e+01 8.476924e+01 lineto +2.071769e+01 8.391904e+01 lineto +2.071769e+01 9.169304e+01 lineto +2.198914e+01 9.254324e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +2.198914e+01 9.254324e+01 moveto +2.198914e+01 8.476924e+01 lineto +2.071769e+01 8.391904e+01 lineto +2.071769e+01 9.169304e+01 lineto +2.198914e+01 9.254324e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.198914e+01 1.003172e+02 moveto +2.198914e+01 9.254324e+01 lineto +2.071769e+01 9.169304e+01 lineto +2.071769e+01 9.946704e+01 lineto +2.198914e+01 1.003172e+02 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +2.198914e+01 1.003172e+02 moveto +2.198914e+01 9.254324e+01 lineto +2.071769e+01 9.169304e+01 lineto +2.071769e+01 9.946704e+01 lineto +2.198914e+01 1.003172e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.071769e+01 2.950104e+01 moveto +2.071769e+01 2.172704e+01 lineto +1.971926e+01 2.086619e+01 lineto +1.971926e+01 2.864019e+01 lineto +2.071769e+01 2.950104e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +2.071769e+01 2.950104e+01 moveto +2.071769e+01 2.172704e+01 lineto +1.971926e+01 2.086619e+01 lineto +1.971926e+01 2.864019e+01 lineto +2.071769e+01 2.950104e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.071769e+01 3.727504e+01 moveto +2.071769e+01 2.950104e+01 lineto +1.971926e+01 2.864019e+01 lineto +1.971926e+01 3.641419e+01 lineto +2.071769e+01 3.727504e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +2.071769e+01 3.727504e+01 moveto +2.071769e+01 2.950104e+01 lineto +1.971926e+01 2.864019e+01 lineto +1.971926e+01 3.641419e+01 lineto +2.071769e+01 3.727504e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.071769e+01 4.504904e+01 moveto +2.071769e+01 3.727504e+01 lineto +1.971926e+01 3.641419e+01 lineto +1.971926e+01 4.418819e+01 lineto +2.071769e+01 4.504904e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +2.071769e+01 4.504904e+01 moveto +2.071769e+01 3.727504e+01 lineto +1.971926e+01 3.641419e+01 lineto +1.971926e+01 4.418819e+01 lineto +2.071769e+01 4.504904e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.071769e+01 5.282304e+01 moveto +2.071769e+01 4.504904e+01 lineto +1.971926e+01 4.418819e+01 lineto +1.971926e+01 5.196219e+01 lineto +2.071769e+01 5.282304e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +2.071769e+01 5.282304e+01 moveto +2.071769e+01 4.504904e+01 lineto +1.971926e+01 4.418819e+01 lineto +1.971926e+01 5.196219e+01 lineto +2.071769e+01 5.282304e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.071769e+01 6.059704e+01 moveto +2.071769e+01 5.282304e+01 lineto +1.971926e+01 5.196219e+01 lineto +1.971926e+01 5.973619e+01 lineto +2.071769e+01 6.059704e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +2.071769e+01 6.059704e+01 moveto +2.071769e+01 5.282304e+01 lineto +1.971926e+01 5.196219e+01 lineto +1.971926e+01 5.973619e+01 lineto +2.071769e+01 6.059704e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.071769e+01 6.837104e+01 moveto +2.071769e+01 6.059704e+01 lineto +1.971926e+01 5.973619e+01 lineto +1.971926e+01 6.751019e+01 lineto +2.071769e+01 6.837104e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +2.071769e+01 6.837104e+01 moveto +2.071769e+01 6.059704e+01 lineto +1.971926e+01 5.973619e+01 lineto +1.971926e+01 6.751019e+01 lineto +2.071769e+01 6.837104e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.071769e+01 7.614504e+01 moveto +2.071769e+01 6.837104e+01 lineto +1.971926e+01 6.751019e+01 lineto +1.971926e+01 7.528419e+01 lineto +2.071769e+01 7.614504e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +2.071769e+01 7.614504e+01 moveto +2.071769e+01 6.837104e+01 lineto +1.971926e+01 6.751019e+01 lineto +1.971926e+01 7.528419e+01 lineto +2.071769e+01 7.614504e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.071769e+01 8.391904e+01 moveto +2.071769e+01 7.614504e+01 lineto +1.971926e+01 7.528419e+01 lineto +1.971926e+01 8.305819e+01 lineto +2.071769e+01 8.391904e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +2.071769e+01 8.391904e+01 moveto +2.071769e+01 7.614504e+01 lineto +1.971926e+01 7.528419e+01 lineto +1.971926e+01 8.305819e+01 lineto +2.071769e+01 8.391904e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.071769e+01 9.169304e+01 moveto +2.071769e+01 8.391904e+01 lineto +1.971926e+01 8.305819e+01 lineto +1.971926e+01 9.083219e+01 lineto +2.071769e+01 9.169304e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +2.071769e+01 9.169304e+01 moveto +2.071769e+01 8.391904e+01 lineto +1.971926e+01 8.305819e+01 lineto +1.971926e+01 9.083219e+01 lineto +2.071769e+01 9.169304e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.071769e+01 9.946704e+01 moveto +2.071769e+01 9.169304e+01 lineto +1.971926e+01 9.083219e+01 lineto +1.971926e+01 9.860619e+01 lineto +2.071769e+01 9.946704e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +2.071769e+01 9.946704e+01 moveto +2.071769e+01 9.169304e+01 lineto +1.971926e+01 9.083219e+01 lineto +1.971926e+01 9.860619e+01 lineto +2.071769e+01 9.946704e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.971926e+01 2.864019e+01 moveto +1.971926e+01 2.086619e+01 lineto +1.9e+01 2.0e+01 lineto +1.9e+01 2.7774e+01 lineto +1.971926e+01 2.864019e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +1.971926e+01 2.864019e+01 moveto +1.971926e+01 2.086619e+01 lineto +1.9e+01 2.0e+01 lineto +1.9e+01 2.7774e+01 lineto +1.971926e+01 2.864019e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.971926e+01 3.641419e+01 moveto +1.971926e+01 2.864019e+01 lineto +1.9e+01 2.7774e+01 lineto +1.9e+01 3.5548e+01 lineto +1.971926e+01 3.641419e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +1.971926e+01 3.641419e+01 moveto +1.971926e+01 2.864019e+01 lineto +1.9e+01 2.7774e+01 lineto +1.9e+01 3.5548e+01 lineto +1.971926e+01 3.641419e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.971926e+01 4.418819e+01 moveto +1.971926e+01 3.641419e+01 lineto +1.9e+01 3.5548e+01 lineto +1.9e+01 4.3322e+01 lineto +1.971926e+01 4.418819e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +1.971926e+01 4.418819e+01 moveto +1.971926e+01 3.641419e+01 lineto +1.9e+01 3.5548e+01 lineto +1.9e+01 4.3322e+01 lineto +1.971926e+01 4.418819e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.971926e+01 5.196219e+01 moveto +1.971926e+01 4.418819e+01 lineto +1.9e+01 4.3322e+01 lineto +1.9e+01 5.1096e+01 lineto +1.971926e+01 5.196219e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +1.971926e+01 5.196219e+01 moveto +1.971926e+01 4.418819e+01 lineto +1.9e+01 4.3322e+01 lineto +1.9e+01 5.1096e+01 lineto +1.971926e+01 5.196219e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.971926e+01 5.973619e+01 moveto +1.971926e+01 5.196219e+01 lineto +1.9e+01 5.1096e+01 lineto +1.9e+01 5.887e+01 lineto +1.971926e+01 5.973619e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +1.971926e+01 5.973619e+01 moveto +1.971926e+01 5.196219e+01 lineto +1.9e+01 5.1096e+01 lineto +1.9e+01 5.887e+01 lineto +1.971926e+01 5.973619e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.971926e+01 6.751019e+01 moveto +1.971926e+01 5.973619e+01 lineto +1.9e+01 5.887e+01 lineto +1.9e+01 6.6644e+01 lineto +1.971926e+01 6.751019e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +1.971926e+01 6.751019e+01 moveto +1.971926e+01 5.973619e+01 lineto +1.9e+01 5.887e+01 lineto +1.9e+01 6.6644e+01 lineto +1.971926e+01 6.751019e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.971926e+01 7.528419e+01 moveto +1.971926e+01 6.751019e+01 lineto +1.9e+01 6.6644e+01 lineto +1.9e+01 7.4418e+01 lineto +1.971926e+01 7.528419e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +1.971926e+01 7.528419e+01 moveto +1.971926e+01 6.751019e+01 lineto +1.9e+01 6.6644e+01 lineto +1.9e+01 7.4418e+01 lineto +1.971926e+01 7.528419e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.971926e+01 8.305819e+01 moveto +1.971926e+01 7.528419e+01 lineto +1.9e+01 7.4418e+01 lineto +1.9e+01 8.2192e+01 lineto +1.971926e+01 8.305819e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +1.971926e+01 8.305819e+01 moveto +1.971926e+01 7.528419e+01 lineto +1.9e+01 7.4418e+01 lineto +1.9e+01 8.2192e+01 lineto +1.971926e+01 8.305819e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.971926e+01 9.083219e+01 moveto +1.971926e+01 8.305819e+01 lineto +1.9e+01 8.2192e+01 lineto +1.9e+01 8.9966e+01 lineto +1.971926e+01 9.083219e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +1.971926e+01 9.083219e+01 moveto +1.971926e+01 8.305819e+01 lineto +1.9e+01 8.2192e+01 lineto +1.9e+01 8.9966e+01 lineto +1.971926e+01 9.083219e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.971926e+01 9.860619e+01 moveto +1.971926e+01 9.083219e+01 lineto +1.9e+01 8.9966e+01 lineto +1.9e+01 9.774e+01 lineto +1.971926e+01 9.860619e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +1.971926e+01 9.860619e+01 moveto +1.971926e+01 9.083219e+01 lineto +1.9e+01 8.9966e+01 lineto +1.9e+01 9.774e+01 lineto +1.971926e+01 9.860619e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.9e+01 2.7774e+01 moveto +1.9e+01 2.0e+01 lineto +1.856434e+01 1.913381e+01 lineto +1.856434e+01 2.690781e+01 lineto +1.9e+01 2.7774e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +1.9e+01 2.7774e+01 moveto +1.9e+01 2.0e+01 lineto +1.856434e+01 1.913381e+01 lineto +1.856434e+01 2.690781e+01 lineto +1.9e+01 2.7774e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.9e+01 3.5548e+01 moveto +1.9e+01 2.7774e+01 lineto +1.856434e+01 2.690781e+01 lineto +1.856434e+01 3.468181e+01 lineto +1.9e+01 3.5548e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +1.9e+01 3.5548e+01 moveto +1.9e+01 2.7774e+01 lineto +1.856434e+01 2.690781e+01 lineto +1.856434e+01 3.468181e+01 lineto +1.9e+01 3.5548e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.9e+01 4.3322e+01 moveto +1.9e+01 3.5548e+01 lineto +1.856434e+01 3.468181e+01 lineto +1.856434e+01 4.245581e+01 lineto +1.9e+01 4.3322e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +1.9e+01 4.3322e+01 moveto +1.9e+01 3.5548e+01 lineto +1.856434e+01 3.468181e+01 lineto +1.856434e+01 4.245581e+01 lineto +1.9e+01 4.3322e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.9e+01 5.1096e+01 moveto +1.9e+01 4.3322e+01 lineto +1.856434e+01 4.245581e+01 lineto +1.856434e+01 5.022981e+01 lineto +1.9e+01 5.1096e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +1.9e+01 5.1096e+01 moveto +1.9e+01 4.3322e+01 lineto +1.856434e+01 4.245581e+01 lineto +1.856434e+01 5.022981e+01 lineto +1.9e+01 5.1096e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.9e+01 5.887e+01 moveto +1.9e+01 5.1096e+01 lineto +1.856434e+01 5.022981e+01 lineto +1.856434e+01 5.800381e+01 lineto +1.9e+01 5.887e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +1.9e+01 5.887e+01 moveto +1.9e+01 5.1096e+01 lineto +1.856434e+01 5.022981e+01 lineto +1.856434e+01 5.800381e+01 lineto +1.9e+01 5.887e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.9e+01 6.6644e+01 moveto +1.9e+01 5.887e+01 lineto +1.856434e+01 5.800381e+01 lineto +1.856434e+01 6.577781e+01 lineto +1.9e+01 6.6644e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +1.9e+01 6.6644e+01 moveto +1.9e+01 5.887e+01 lineto +1.856434e+01 5.800381e+01 lineto +1.856434e+01 6.577781e+01 lineto +1.9e+01 6.6644e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.9e+01 7.4418e+01 moveto +1.9e+01 6.6644e+01 lineto +1.856434e+01 6.577781e+01 lineto +1.856434e+01 7.355181e+01 lineto +1.9e+01 7.4418e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +1.9e+01 7.4418e+01 moveto +1.9e+01 6.6644e+01 lineto +1.856434e+01 6.577781e+01 lineto +1.856434e+01 7.355181e+01 lineto +1.9e+01 7.4418e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.9e+01 8.2192e+01 moveto +1.9e+01 7.4418e+01 lineto +1.856434e+01 7.355181e+01 lineto +1.856434e+01 8.132581e+01 lineto +1.9e+01 8.2192e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +1.9e+01 8.2192e+01 moveto +1.9e+01 7.4418e+01 lineto +1.856434e+01 7.355181e+01 lineto +1.856434e+01 8.132581e+01 lineto +1.9e+01 8.2192e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.9e+01 8.9966e+01 moveto +1.9e+01 8.2192e+01 lineto +1.856434e+01 8.132581e+01 lineto +1.856434e+01 8.909981e+01 lineto +1.9e+01 8.9966e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +1.9e+01 8.9966e+01 moveto +1.9e+01 8.2192e+01 lineto +1.856434e+01 8.132581e+01 lineto +1.856434e+01 8.909981e+01 lineto +1.9e+01 8.9966e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.9e+01 9.774e+01 moveto +1.9e+01 8.9966e+01 lineto +1.856434e+01 8.909981e+01 lineto +1.856434e+01 9.687381e+01 lineto +1.9e+01 9.774e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +1.9e+01 9.774e+01 moveto +1.9e+01 8.9966e+01 lineto +1.856434e+01 8.909981e+01 lineto +1.856434e+01 9.687381e+01 lineto +1.9e+01 9.774e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.856434e+01 2.690781e+01 moveto +1.856434e+01 1.913381e+01 lineto +1.841498e+01 1.827296e+01 lineto +1.841498e+01 2.604696e+01 lineto +1.856434e+01 2.690781e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +1.856434e+01 2.690781e+01 moveto +1.856434e+01 1.913381e+01 lineto +1.841498e+01 1.827296e+01 lineto +1.841498e+01 2.604696e+01 lineto +1.856434e+01 2.690781e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.856434e+01 3.468181e+01 moveto +1.856434e+01 2.690781e+01 lineto +1.841498e+01 2.604696e+01 lineto +1.841498e+01 3.382096e+01 lineto +1.856434e+01 3.468181e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +1.856434e+01 3.468181e+01 moveto +1.856434e+01 2.690781e+01 lineto +1.841498e+01 2.604696e+01 lineto +1.841498e+01 3.382096e+01 lineto +1.856434e+01 3.468181e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.856434e+01 4.245581e+01 moveto +1.856434e+01 3.468181e+01 lineto +1.841498e+01 3.382096e+01 lineto +1.841498e+01 4.159496e+01 lineto +1.856434e+01 4.245581e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +1.856434e+01 4.245581e+01 moveto +1.856434e+01 3.468181e+01 lineto +1.841498e+01 3.382096e+01 lineto +1.841498e+01 4.159496e+01 lineto +1.856434e+01 4.245581e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.856434e+01 5.022981e+01 moveto +1.856434e+01 4.245581e+01 lineto +1.841498e+01 4.159496e+01 lineto +1.841498e+01 4.936896e+01 lineto +1.856434e+01 5.022981e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +1.856434e+01 5.022981e+01 moveto +1.856434e+01 4.245581e+01 lineto +1.841498e+01 4.159496e+01 lineto +1.841498e+01 4.936896e+01 lineto +1.856434e+01 5.022981e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.856434e+01 5.800381e+01 moveto +1.856434e+01 5.022981e+01 lineto +1.841498e+01 4.936896e+01 lineto +1.841498e+01 5.714296e+01 lineto +1.856434e+01 5.800381e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +1.856434e+01 5.800381e+01 moveto +1.856434e+01 5.022981e+01 lineto +1.841498e+01 4.936896e+01 lineto +1.841498e+01 5.714296e+01 lineto +1.856434e+01 5.800381e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.856434e+01 6.577781e+01 moveto +1.856434e+01 5.800381e+01 lineto +1.841498e+01 5.714296e+01 lineto +1.841498e+01 6.491696e+01 lineto +1.856434e+01 6.577781e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +1.856434e+01 6.577781e+01 moveto +1.856434e+01 5.800381e+01 lineto +1.841498e+01 5.714296e+01 lineto +1.841498e+01 6.491696e+01 lineto +1.856434e+01 6.577781e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.856434e+01 7.355181e+01 moveto +1.856434e+01 6.577781e+01 lineto +1.841498e+01 6.491696e+01 lineto +1.841498e+01 7.269096e+01 lineto +1.856434e+01 7.355181e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +1.856434e+01 7.355181e+01 moveto +1.856434e+01 6.577781e+01 lineto +1.841498e+01 6.491696e+01 lineto +1.841498e+01 7.269096e+01 lineto +1.856434e+01 7.355181e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.856434e+01 8.132581e+01 moveto +1.856434e+01 7.355181e+01 lineto +1.841498e+01 7.269096e+01 lineto +1.841498e+01 8.046496e+01 lineto +1.856434e+01 8.132581e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +1.856434e+01 8.132581e+01 moveto +1.856434e+01 7.355181e+01 lineto +1.841498e+01 7.269096e+01 lineto +1.841498e+01 8.046496e+01 lineto +1.856434e+01 8.132581e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.856434e+01 8.909981e+01 moveto +1.856434e+01 8.132581e+01 lineto +1.841498e+01 8.046496e+01 lineto +1.841498e+01 8.823896e+01 lineto +1.856434e+01 8.909981e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +1.856434e+01 8.909981e+01 moveto +1.856434e+01 8.132581e+01 lineto +1.841498e+01 8.046496e+01 lineto +1.841498e+01 8.823896e+01 lineto +1.856434e+01 8.909981e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.856434e+01 9.687381e+01 moveto +1.856434e+01 8.909981e+01 lineto +1.841498e+01 8.823896e+01 lineto +1.841498e+01 9.601296e+01 lineto +1.856434e+01 9.687381e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +1.856434e+01 9.687381e+01 moveto +1.856434e+01 8.909981e+01 lineto +1.841498e+01 8.823896e+01 lineto +1.841498e+01 9.601296e+01 lineto +1.856434e+01 9.687381e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +1 setlinewidth +newpath +1.0e-01 setlinewidth +newpath +5.764e+01 1.6734e+01 moveto +5.764e+01 8.96e+00 lineto +6.127181e+01 8.994033e+00 lineto +6.127181e+01 1.676803e+01 lineto +5.764e+01 1.6734e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +5.764e+01 2.4508e+01 moveto +5.764e+01 1.6734e+01 lineto +6.127181e+01 1.676803e+01 lineto +6.127181e+01 2.454203e+01 lineto +5.764e+01 2.4508e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +5.764e+01 3.2282e+01 moveto +5.764e+01 2.4508e+01 lineto +6.127181e+01 2.454203e+01 lineto +6.127181e+01 3.231603e+01 lineto +5.764e+01 3.2282e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +5.764e+01 4.0056e+01 moveto +5.764e+01 3.2282e+01 lineto +6.127181e+01 3.231603e+01 lineto +6.127181e+01 4.009003e+01 lineto +5.764e+01 4.0056e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +5.764e+01 4.783e+01 moveto +5.764e+01 4.0056e+01 lineto +6.127181e+01 4.009003e+01 lineto +6.127181e+01 4.786403e+01 lineto +5.764e+01 4.783e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +5.764e+01 5.5604e+01 moveto +5.764e+01 4.783e+01 lineto +6.127181e+01 4.786403e+01 lineto +6.127181e+01 5.563803e+01 lineto +5.764e+01 5.5604e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +5.764e+01 6.3378e+01 moveto +5.764e+01 5.5604e+01 lineto +6.127181e+01 5.563803e+01 lineto +6.127181e+01 6.341203e+01 lineto +5.764e+01 6.3378e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +5.764e+01 7.1152e+01 moveto +5.764e+01 6.3378e+01 lineto +6.127181e+01 6.341203e+01 lineto +6.127181e+01 7.118603e+01 lineto +5.764e+01 7.1152e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +5.764e+01 7.8926e+01 moveto +5.764e+01 7.1152e+01 lineto +6.127181e+01 7.118603e+01 lineto +6.127181e+01 7.896003e+01 lineto +5.764e+01 7.8926e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +5.764e+01 8.67e+01 moveto +5.764e+01 7.8926e+01 lineto +6.127181e+01 7.896003e+01 lineto +6.127181e+01 8.673403e+01 lineto +5.764e+01 8.67e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +6.127181e+01 1.676803e+01 moveto +6.127181e+01 8.994033e+00 lineto +6.49266e+01 9.095921e+00 lineto +6.49266e+01 1.686992e+01 lineto +6.127181e+01 1.676803e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +6.127181e+01 2.454203e+01 moveto +6.127181e+01 1.676803e+01 lineto +6.49266e+01 1.686992e+01 lineto +6.49266e+01 2.464392e+01 lineto +6.127181e+01 2.454203e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +6.127181e+01 3.231603e+01 moveto +6.127181e+01 2.454203e+01 lineto +6.49266e+01 2.464392e+01 lineto +6.49266e+01 3.241792e+01 lineto +6.127181e+01 3.231603e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +6.127181e+01 4.009003e+01 moveto +6.127181e+01 3.231603e+01 lineto +6.49266e+01 3.241792e+01 lineto +6.49266e+01 4.019192e+01 lineto +6.127181e+01 4.009003e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +6.127181e+01 4.786403e+01 moveto +6.127181e+01 4.009003e+01 lineto +6.49266e+01 4.019192e+01 lineto +6.49266e+01 4.796592e+01 lineto +6.127181e+01 4.786403e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +6.127181e+01 5.563803e+01 moveto +6.127181e+01 4.786403e+01 lineto +6.49266e+01 4.796592e+01 lineto +6.49266e+01 5.573992e+01 lineto +6.127181e+01 5.563803e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +6.127181e+01 6.341203e+01 moveto +6.127181e+01 5.563803e+01 lineto +6.49266e+01 5.573992e+01 lineto +6.49266e+01 6.351392e+01 lineto +6.127181e+01 6.341203e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +6.127181e+01 7.118603e+01 moveto +6.127181e+01 6.341203e+01 lineto +6.49266e+01 6.351392e+01 lineto +6.49266e+01 7.128792e+01 lineto +6.127181e+01 7.118603e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +6.127181e+01 7.896003e+01 moveto +6.127181e+01 7.118603e+01 lineto +6.49266e+01 7.128792e+01 lineto +6.49266e+01 7.906192e+01 lineto +6.127181e+01 7.896003e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +6.127181e+01 8.673403e+01 moveto +6.127181e+01 7.896003e+01 lineto +6.49266e+01 7.906192e+01 lineto +6.49266e+01 8.683592e+01 lineto +6.127181e+01 8.673403e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +6.49266e+01 1.686992e+01 moveto +6.49266e+01 9.095921e+00 lineto +6.858184e+01 9.265036e+00 lineto +6.858184e+01 1.703904e+01 lineto +6.49266e+01 1.686992e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +6.49266e+01 2.464392e+01 moveto +6.49266e+01 1.686992e+01 lineto +6.858184e+01 1.703904e+01 lineto +6.858184e+01 2.481304e+01 lineto +6.49266e+01 2.464392e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +6.49266e+01 3.241792e+01 moveto +6.49266e+01 2.464392e+01 lineto +6.858184e+01 2.481304e+01 lineto +6.858184e+01 3.258704e+01 lineto +6.49266e+01 3.241792e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +6.49266e+01 4.019192e+01 moveto +6.49266e+01 3.241792e+01 lineto +6.858184e+01 3.258704e+01 lineto +6.858184e+01 4.036104e+01 lineto +6.49266e+01 4.019192e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +6.49266e+01 4.796592e+01 moveto +6.49266e+01 4.019192e+01 lineto +6.858184e+01 4.036104e+01 lineto +6.858184e+01 4.813504e+01 lineto +6.49266e+01 4.796592e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +6.49266e+01 5.573992e+01 moveto +6.49266e+01 4.796592e+01 lineto +6.858184e+01 4.813504e+01 lineto +6.858184e+01 5.590904e+01 lineto +6.49266e+01 5.573992e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +6.49266e+01 6.351392e+01 moveto +6.49266e+01 5.573992e+01 lineto +6.858184e+01 5.590904e+01 lineto +6.858184e+01 6.368304e+01 lineto +6.49266e+01 6.351392e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +6.49266e+01 7.128792e+01 moveto +6.49266e+01 6.351392e+01 lineto +6.858184e+01 6.368304e+01 lineto +6.858184e+01 7.145704e+01 lineto +6.49266e+01 7.128792e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +6.49266e+01 7.906192e+01 moveto +6.49266e+01 7.128792e+01 lineto +6.858184e+01 7.145704e+01 lineto +6.858184e+01 7.923104e+01 lineto +6.49266e+01 7.906192e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +6.49266e+01 8.683592e+01 moveto +6.49266e+01 7.906192e+01 lineto +6.858184e+01 7.923104e+01 lineto +6.858184e+01 8.700504e+01 lineto +6.49266e+01 8.683592e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +6.858184e+01 1.703904e+01 moveto +6.858184e+01 9.265036e+00 lineto +7.221501e+01 9.500336e+00 lineto +7.221501e+01 1.727434e+01 lineto +6.858184e+01 1.703904e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +6.858184e+01 2.481304e+01 moveto +6.858184e+01 1.703904e+01 lineto +7.221501e+01 1.727434e+01 lineto +7.221501e+01 2.504834e+01 lineto +6.858184e+01 2.481304e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +6.858184e+01 3.258704e+01 moveto +6.858184e+01 2.481304e+01 lineto +7.221501e+01 2.504834e+01 lineto +7.221501e+01 3.282234e+01 lineto +6.858184e+01 3.258704e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +6.858184e+01 4.036104e+01 moveto +6.858184e+01 3.258704e+01 lineto +7.221501e+01 3.282234e+01 lineto +7.221501e+01 4.059634e+01 lineto +6.858184e+01 4.036104e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +6.858184e+01 4.813504e+01 moveto +6.858184e+01 4.036104e+01 lineto +7.221501e+01 4.059634e+01 lineto +7.221501e+01 4.837034e+01 lineto +6.858184e+01 4.813504e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +6.858184e+01 5.590904e+01 moveto +6.858184e+01 4.813504e+01 lineto +7.221501e+01 4.837034e+01 lineto +7.221501e+01 5.614434e+01 lineto +6.858184e+01 5.590904e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +6.858184e+01 6.368304e+01 moveto +6.858184e+01 5.590904e+01 lineto +7.221501e+01 5.614434e+01 lineto +7.221501e+01 6.391834e+01 lineto +6.858184e+01 6.368304e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +6.858184e+01 7.145704e+01 moveto +6.858184e+01 6.368304e+01 lineto +7.221501e+01 6.391834e+01 lineto +7.221501e+01 7.169234e+01 lineto +6.858184e+01 7.145704e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +6.858184e+01 7.923104e+01 moveto +6.858184e+01 7.145704e+01 lineto +7.221501e+01 7.169234e+01 lineto +7.221501e+01 7.946634e+01 lineto +6.858184e+01 7.923104e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +6.858184e+01 8.700504e+01 moveto +6.858184e+01 7.923104e+01 lineto +7.221501e+01 7.946634e+01 lineto +7.221501e+01 8.724034e+01 lineto +6.858184e+01 8.700504e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +7.221501e+01 1.727434e+01 moveto +7.221501e+01 9.500336e+00 lineto +7.580368e+01 9.80037e+00 lineto +7.580368e+01 1.757437e+01 lineto +7.221501e+01 1.727434e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +7.221501e+01 2.504834e+01 moveto +7.221501e+01 1.727434e+01 lineto +7.580368e+01 1.757437e+01 lineto +7.580368e+01 2.534837e+01 lineto +7.221501e+01 2.504834e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +7.221501e+01 3.282234e+01 moveto +7.221501e+01 2.504834e+01 lineto +7.580368e+01 2.534837e+01 lineto +7.580368e+01 3.312237e+01 lineto +7.221501e+01 3.282234e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +7.221501e+01 4.059634e+01 moveto +7.221501e+01 3.282234e+01 lineto +7.580368e+01 3.312237e+01 lineto +7.580368e+01 4.089637e+01 lineto +7.221501e+01 4.059634e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +7.221501e+01 4.837034e+01 moveto +7.221501e+01 4.059634e+01 lineto +7.580368e+01 4.089637e+01 lineto +7.580368e+01 4.867037e+01 lineto +7.221501e+01 4.837034e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +7.221501e+01 5.614434e+01 moveto +7.221501e+01 4.837034e+01 lineto +7.580368e+01 4.867037e+01 lineto +7.580368e+01 5.644437e+01 lineto +7.221501e+01 5.614434e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +7.221501e+01 6.391834e+01 moveto +7.221501e+01 5.614434e+01 lineto +7.580368e+01 5.644437e+01 lineto +7.580368e+01 6.421837e+01 lineto +7.221501e+01 6.391834e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +7.221501e+01 7.169234e+01 moveto +7.221501e+01 6.391834e+01 lineto +7.580368e+01 6.421837e+01 lineto +7.580368e+01 7.199237e+01 lineto +7.221501e+01 7.169234e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +7.221501e+01 7.946634e+01 moveto +7.221501e+01 7.169234e+01 lineto +7.580368e+01 7.199237e+01 lineto +7.580368e+01 7.976637e+01 lineto +7.221501e+01 7.946634e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +7.221501e+01 8.724034e+01 moveto +7.221501e+01 7.946634e+01 lineto +7.580368e+01 7.976637e+01 lineto +7.580368e+01 8.754037e+01 lineto +7.221501e+01 8.724034e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +7.580368e+01 1.757437e+01 moveto +7.580368e+01 9.80037e+00 lineto +7.932575e+01 1.016329e+01 lineto +7.932575e+01 1.793729e+01 lineto +7.580368e+01 1.757437e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +7.580368e+01 2.534837e+01 moveto +7.580368e+01 1.757437e+01 lineto +7.932575e+01 1.793729e+01 lineto +7.932575e+01 2.571129e+01 lineto +7.580368e+01 2.534837e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +7.580368e+01 3.312237e+01 moveto +7.580368e+01 2.534837e+01 lineto +7.932575e+01 2.571129e+01 lineto +7.932575e+01 3.348529e+01 lineto +7.580368e+01 3.312237e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +7.580368e+01 4.089637e+01 moveto +7.580368e+01 3.312237e+01 lineto +7.932575e+01 3.348529e+01 lineto +7.932575e+01 4.125929e+01 lineto +7.580368e+01 4.089637e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +7.580368e+01 4.867037e+01 moveto +7.580368e+01 4.089637e+01 lineto +7.932575e+01 4.125929e+01 lineto +7.932575e+01 4.903329e+01 lineto +7.580368e+01 4.867037e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +7.580368e+01 5.644437e+01 moveto +7.580368e+01 4.867037e+01 lineto +7.932575e+01 4.903329e+01 lineto +7.932575e+01 5.680729e+01 lineto +7.580368e+01 5.644437e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +7.580368e+01 6.421837e+01 moveto +7.580368e+01 5.644437e+01 lineto +7.932575e+01 5.680729e+01 lineto +7.932575e+01 6.458129e+01 lineto +7.580368e+01 6.421837e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +7.580368e+01 7.199237e+01 moveto +7.580368e+01 6.421837e+01 lineto +7.932575e+01 6.458129e+01 lineto +7.932575e+01 7.235529e+01 lineto +7.580368e+01 7.199237e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +7.580368e+01 7.976637e+01 moveto +7.580368e+01 7.199237e+01 lineto +7.932575e+01 7.235529e+01 lineto +7.932575e+01 8.012929e+01 lineto +7.580368e+01 7.976637e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +7.580368e+01 8.754037e+01 moveto +7.580368e+01 7.976637e+01 lineto +7.932575e+01 8.012929e+01 lineto +7.932575e+01 8.790329e+01 lineto +7.580368e+01 8.754037e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +7.932575e+01 1.793729e+01 moveto +7.932575e+01 1.016329e+01 lineto +8.27595e+01 1.058685e+01 lineto +8.27595e+01 1.836085e+01 lineto +7.932575e+01 1.793729e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +7.932575e+01 2.571129e+01 moveto +7.932575e+01 1.793729e+01 lineto +8.27595e+01 1.836085e+01 lineto +8.27595e+01 2.613485e+01 lineto +7.932575e+01 2.571129e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +7.932575e+01 3.348529e+01 moveto +7.932575e+01 2.571129e+01 lineto +8.27595e+01 2.613485e+01 lineto +8.27595e+01 3.390885e+01 lineto +7.932575e+01 3.348529e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +7.932575e+01 4.125929e+01 moveto +7.932575e+01 3.348529e+01 lineto +8.27595e+01 3.390885e+01 lineto +8.27595e+01 4.168285e+01 lineto +7.932575e+01 4.125929e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +7.932575e+01 4.903329e+01 moveto +7.932575e+01 4.125929e+01 lineto +8.27595e+01 4.168285e+01 lineto +8.27595e+01 4.945685e+01 lineto +7.932575e+01 4.903329e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +7.932575e+01 5.680729e+01 moveto +7.932575e+01 4.903329e+01 lineto +8.27595e+01 4.945685e+01 lineto +8.27595e+01 5.723085e+01 lineto +7.932575e+01 5.680729e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +7.932575e+01 6.458129e+01 moveto +7.932575e+01 5.680729e+01 lineto +8.27595e+01 5.723085e+01 lineto +8.27595e+01 6.500485e+01 lineto +7.932575e+01 6.458129e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +7.932575e+01 7.235529e+01 moveto +7.932575e+01 6.458129e+01 lineto +8.27595e+01 6.500485e+01 lineto +8.27595e+01 7.277885e+01 lineto +7.932575e+01 7.235529e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +7.932575e+01 8.012929e+01 moveto +7.932575e+01 7.235529e+01 lineto +8.27595e+01 7.277885e+01 lineto +8.27595e+01 8.055285e+01 lineto +7.932575e+01 8.012929e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +7.932575e+01 8.790329e+01 moveto +7.932575e+01 8.012929e+01 lineto +8.27595e+01 8.055285e+01 lineto +8.27595e+01 8.832685e+01 lineto +7.932575e+01 8.790329e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +8.27595e+01 1.836085e+01 moveto +8.27595e+01 1.058685e+01 lineto +8.608376e+01 1.106845e+01 lineto +8.608376e+01 1.884245e+01 lineto +8.27595e+01 1.836085e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +8.27595e+01 2.613485e+01 moveto +8.27595e+01 1.836085e+01 lineto +8.608376e+01 1.884245e+01 lineto +8.608376e+01 2.661645e+01 lineto +8.27595e+01 2.613485e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +8.27595e+01 3.390885e+01 moveto +8.27595e+01 2.613485e+01 lineto +8.608376e+01 2.661645e+01 lineto +8.608376e+01 3.439045e+01 lineto +8.27595e+01 3.390885e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +8.27595e+01 4.168285e+01 moveto +8.27595e+01 3.390885e+01 lineto +8.608376e+01 3.439045e+01 lineto +8.608376e+01 4.216445e+01 lineto +8.27595e+01 4.168285e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +8.27595e+01 4.945685e+01 moveto +8.27595e+01 4.168285e+01 lineto +8.608376e+01 4.216445e+01 lineto +8.608376e+01 4.993845e+01 lineto +8.27595e+01 4.945685e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +8.27595e+01 5.723085e+01 moveto +8.27595e+01 4.945685e+01 lineto +8.608376e+01 4.993845e+01 lineto +8.608376e+01 5.771245e+01 lineto +8.27595e+01 5.723085e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +8.27595e+01 6.500485e+01 moveto +8.27595e+01 5.723085e+01 lineto +8.608376e+01 5.771245e+01 lineto +8.608376e+01 6.548645e+01 lineto +8.27595e+01 6.500485e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +8.27595e+01 7.277885e+01 moveto +8.27595e+01 6.500485e+01 lineto +8.608376e+01 6.548645e+01 lineto +8.608376e+01 7.326045e+01 lineto +8.27595e+01 7.277885e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +8.27595e+01 8.055285e+01 moveto +8.27595e+01 7.277885e+01 lineto +8.608376e+01 7.326045e+01 lineto +8.608376e+01 8.103445e+01 lineto +8.27595e+01 8.055285e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +8.27595e+01 8.832685e+01 moveto +8.27595e+01 8.055285e+01 lineto +8.608376e+01 8.103445e+01 lineto +8.608376e+01 8.880845e+01 lineto +8.27595e+01 8.832685e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +8.608376e+01 1.884245e+01 moveto +8.608376e+01 1.106845e+01 lineto +8.927802e+01 1.160512e+01 lineto +8.927802e+01 1.937912e+01 lineto +8.608376e+01 1.884245e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +8.608376e+01 2.661645e+01 moveto +8.608376e+01 1.884245e+01 lineto +8.927802e+01 1.937912e+01 lineto +8.927802e+01 2.715312e+01 lineto +8.608376e+01 2.661645e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +8.608376e+01 3.439045e+01 moveto +8.608376e+01 2.661645e+01 lineto +8.927802e+01 2.715312e+01 lineto +8.927802e+01 3.492712e+01 lineto +8.608376e+01 3.439045e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +8.608376e+01 4.216445e+01 moveto +8.608376e+01 3.439045e+01 lineto +8.927802e+01 3.492712e+01 lineto +8.927802e+01 4.270112e+01 lineto +8.608376e+01 4.216445e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +8.608376e+01 4.993845e+01 moveto +8.608376e+01 4.216445e+01 lineto +8.927802e+01 4.270112e+01 lineto +8.927802e+01 5.047512e+01 lineto +8.608376e+01 4.993845e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +8.608376e+01 5.771245e+01 moveto +8.608376e+01 4.993845e+01 lineto +8.927802e+01 5.047512e+01 lineto +8.927802e+01 5.824912e+01 lineto +8.608376e+01 5.771245e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +8.608376e+01 6.548645e+01 moveto +8.608376e+01 5.771245e+01 lineto +8.927802e+01 5.824912e+01 lineto +8.927802e+01 6.602312e+01 lineto +8.608376e+01 6.548645e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +8.608376e+01 7.326045e+01 moveto +8.608376e+01 6.548645e+01 lineto +8.927802e+01 6.602312e+01 lineto +8.927802e+01 7.379712e+01 lineto +8.608376e+01 7.326045e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +8.608376e+01 8.103445e+01 moveto +8.608376e+01 7.326045e+01 lineto +8.927802e+01 7.379712e+01 lineto +8.927802e+01 8.157112e+01 lineto +8.608376e+01 8.103445e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +8.608376e+01 8.880845e+01 moveto +8.608376e+01 8.103445e+01 lineto +8.927802e+01 8.157112e+01 lineto +8.927802e+01 8.934512e+01 lineto +8.608376e+01 8.880845e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +8.927802e+01 1.937912e+01 moveto +8.927802e+01 1.160512e+01 lineto +9.232261e+01 1.219354e+01 lineto +9.232261e+01 1.996754e+01 lineto +8.927802e+01 1.937912e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +8.927802e+01 2.715312e+01 moveto +8.927802e+01 1.937912e+01 lineto +9.232261e+01 1.996754e+01 lineto +9.232261e+01 2.774154e+01 lineto +8.927802e+01 2.715312e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +8.927802e+01 3.492712e+01 moveto +8.927802e+01 2.715312e+01 lineto +9.232261e+01 2.774154e+01 lineto +9.232261e+01 3.551554e+01 lineto +8.927802e+01 3.492712e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +8.927802e+01 4.270112e+01 moveto +8.927802e+01 3.492712e+01 lineto +9.232261e+01 3.551554e+01 lineto +9.232261e+01 4.328954e+01 lineto +8.927802e+01 4.270112e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +8.927802e+01 5.047512e+01 moveto +8.927802e+01 4.270112e+01 lineto +9.232261e+01 4.328954e+01 lineto +9.232261e+01 5.106354e+01 lineto +8.927802e+01 5.047512e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +8.927802e+01 5.824912e+01 moveto +8.927802e+01 5.047512e+01 lineto +9.232261e+01 5.106354e+01 lineto +9.232261e+01 5.883754e+01 lineto +8.927802e+01 5.824912e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +8.927802e+01 6.602312e+01 moveto +8.927802e+01 5.824912e+01 lineto +9.232261e+01 5.883754e+01 lineto +9.232261e+01 6.661154e+01 lineto +8.927802e+01 6.602312e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +8.927802e+01 7.379712e+01 moveto +8.927802e+01 6.602312e+01 lineto +9.232261e+01 6.661154e+01 lineto +9.232261e+01 7.438554e+01 lineto +8.927802e+01 7.379712e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +8.927802e+01 8.157112e+01 moveto +8.927802e+01 7.379712e+01 lineto +9.232261e+01 7.438554e+01 lineto +9.232261e+01 8.215954e+01 lineto +8.927802e+01 8.157112e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +8.927802e+01 8.934512e+01 moveto +8.927802e+01 8.157112e+01 lineto +9.232261e+01 8.215954e+01 lineto +9.232261e+01 8.993354e+01 lineto +8.927802e+01 8.934512e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +9.232261e+01 1.996754e+01 moveto +9.232261e+01 1.219354e+01 lineto +9.519874e+01 1.283009e+01 lineto +9.519874e+01 2.060409e+01 lineto +9.232261e+01 1.996754e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +9.232261e+01 2.774154e+01 moveto +9.232261e+01 1.996754e+01 lineto +9.519874e+01 2.060409e+01 lineto +9.519874e+01 2.837809e+01 lineto +9.232261e+01 2.774154e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +9.232261e+01 3.551554e+01 moveto +9.232261e+01 2.774154e+01 lineto +9.519874e+01 2.837809e+01 lineto +9.519874e+01 3.615209e+01 lineto +9.232261e+01 3.551554e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +9.232261e+01 4.328954e+01 moveto +9.232261e+01 3.551554e+01 lineto +9.519874e+01 3.615209e+01 lineto +9.519874e+01 4.392609e+01 lineto +9.232261e+01 4.328954e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +9.232261e+01 5.106354e+01 moveto +9.232261e+01 4.328954e+01 lineto +9.519874e+01 4.392609e+01 lineto +9.519874e+01 5.170009e+01 lineto +9.232261e+01 5.106354e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +9.232261e+01 5.883754e+01 moveto +9.232261e+01 5.106354e+01 lineto +9.519874e+01 5.170009e+01 lineto +9.519874e+01 5.947409e+01 lineto +9.232261e+01 5.883754e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +9.232261e+01 6.661154e+01 moveto +9.232261e+01 5.883754e+01 lineto +9.519874e+01 5.947409e+01 lineto +9.519874e+01 6.724809e+01 lineto +9.232261e+01 6.661154e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +9.232261e+01 7.438554e+01 moveto +9.232261e+01 6.661154e+01 lineto +9.519874e+01 6.724809e+01 lineto +9.519874e+01 7.502209e+01 lineto +9.232261e+01 7.438554e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +9.232261e+01 8.215954e+01 moveto +9.232261e+01 7.438554e+01 lineto +9.519874e+01 7.502209e+01 lineto +9.519874e+01 8.279609e+01 lineto +9.232261e+01 8.215954e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +9.232261e+01 8.993354e+01 moveto +9.232261e+01 8.215954e+01 lineto +9.519874e+01 8.279609e+01 lineto +9.519874e+01 9.057009e+01 lineto +9.232261e+01 8.993354e+01 lineto +closepath +gsave +7.942998e-01 7.942998e-01 9.928748e-01 setrgbcolor +fill +grestore +newpath +9.519874e+01 2.060409e+01 moveto +9.519874e+01 1.283009e+01 lineto +9.788868e+01 1.351085e+01 lineto +9.788868e+01 2.128485e+01 lineto +9.519874e+01 2.060409e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +9.519874e+01 2.837809e+01 moveto +9.519874e+01 2.060409e+01 lineto +9.788868e+01 2.128485e+01 lineto +9.788868e+01 2.905885e+01 lineto +9.519874e+01 2.837809e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +9.519874e+01 3.615209e+01 moveto +9.519874e+01 2.837809e+01 lineto +9.788868e+01 2.905885e+01 lineto +9.788868e+01 3.683285e+01 lineto +9.519874e+01 3.615209e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +9.519874e+01 4.392609e+01 moveto +9.519874e+01 3.615209e+01 lineto +9.788868e+01 3.683285e+01 lineto +9.788868e+01 4.460685e+01 lineto +9.519874e+01 4.392609e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +9.519874e+01 5.170009e+01 moveto +9.519874e+01 4.392609e+01 lineto +9.788868e+01 4.460685e+01 lineto +9.788868e+01 5.238085e+01 lineto +9.519874e+01 5.170009e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +9.519874e+01 5.947409e+01 moveto +9.519874e+01 5.170009e+01 lineto +9.788868e+01 5.238085e+01 lineto +9.788868e+01 6.015485e+01 lineto +9.519874e+01 5.947409e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +9.519874e+01 6.724809e+01 moveto +9.519874e+01 5.947409e+01 lineto +9.788868e+01 6.015485e+01 lineto +9.788868e+01 6.792885e+01 lineto +9.519874e+01 6.724809e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +9.519874e+01 7.502209e+01 moveto +9.519874e+01 6.724809e+01 lineto +9.788868e+01 6.792885e+01 lineto +9.788868e+01 7.570285e+01 lineto +9.519874e+01 7.502209e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +9.519874e+01 8.279609e+01 moveto +9.519874e+01 7.502209e+01 lineto +9.788868e+01 7.570285e+01 lineto +9.788868e+01 8.347685e+01 lineto +9.519874e+01 8.279609e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +9.519874e+01 9.057009e+01 moveto +9.519874e+01 8.279609e+01 lineto +9.788868e+01 8.347685e+01 lineto +9.788868e+01 9.125085e+01 lineto +9.519874e+01 9.057009e+01 lineto +closepath +gsave +7.928364e-01 7.928364e-01 9.910455e-01 setrgbcolor +fill +grestore +newpath +9.788868e+01 2.128485e+01 moveto +9.788868e+01 1.351085e+01 lineto +1.003759e+02 1.423162e+01 lineto +1.003759e+02 2.200562e+01 lineto +9.788868e+01 2.128485e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +9.788868e+01 2.905885e+01 moveto +9.788868e+01 2.128485e+01 lineto +1.003759e+02 2.200562e+01 lineto +1.003759e+02 2.977962e+01 lineto +9.788868e+01 2.905885e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +9.788868e+01 3.683285e+01 moveto +9.788868e+01 2.905885e+01 lineto +1.003759e+02 2.977962e+01 lineto +1.003759e+02 3.755362e+01 lineto +9.788868e+01 3.683285e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +9.788868e+01 4.460685e+01 moveto +9.788868e+01 3.683285e+01 lineto +1.003759e+02 3.755362e+01 lineto +1.003759e+02 4.532762e+01 lineto +9.788868e+01 4.460685e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +9.788868e+01 5.238085e+01 moveto +9.788868e+01 4.460685e+01 lineto +1.003759e+02 4.532762e+01 lineto +1.003759e+02 5.310162e+01 lineto +9.788868e+01 5.238085e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +9.788868e+01 6.015485e+01 moveto +9.788868e+01 5.238085e+01 lineto +1.003759e+02 5.310162e+01 lineto +1.003759e+02 6.087562e+01 lineto +9.788868e+01 6.015485e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +9.788868e+01 6.792885e+01 moveto +9.788868e+01 6.015485e+01 lineto +1.003759e+02 6.087562e+01 lineto +1.003759e+02 6.864962e+01 lineto +9.788868e+01 6.792885e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +9.788868e+01 7.570285e+01 moveto +9.788868e+01 6.792885e+01 lineto +1.003759e+02 6.864962e+01 lineto +1.003759e+02 7.642362e+01 lineto +9.788868e+01 7.570285e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +9.788868e+01 8.347685e+01 moveto +9.788868e+01 7.570285e+01 lineto +1.003759e+02 7.642362e+01 lineto +1.003759e+02 8.419762e+01 lineto +9.788868e+01 8.347685e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +9.788868e+01 9.125085e+01 moveto +9.788868e+01 8.347685e+01 lineto +1.003759e+02 8.419762e+01 lineto +1.003759e+02 9.197162e+01 lineto +9.788868e+01 9.125085e+01 lineto +closepath +gsave +7.899063e-01 7.899063e-01 9.873829e-01 setrgbcolor +fill +grestore +newpath +1.003759e+02 2.200562e+01 moveto +1.003759e+02 1.423162e+01 lineto +1.026449e+02 1.498794e+01 lineto +1.026449e+02 2.276194e+01 lineto +1.003759e+02 2.200562e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +1.003759e+02 2.977962e+01 moveto +1.003759e+02 2.200562e+01 lineto +1.026449e+02 2.276194e+01 lineto +1.026449e+02 3.053594e+01 lineto +1.003759e+02 2.977962e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +1.003759e+02 3.755362e+01 moveto +1.003759e+02 2.977962e+01 lineto +1.026449e+02 3.053594e+01 lineto +1.026449e+02 3.830994e+01 lineto +1.003759e+02 3.755362e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +1.003759e+02 4.532762e+01 moveto +1.003759e+02 3.755362e+01 lineto +1.026449e+02 3.830994e+01 lineto +1.026449e+02 4.608394e+01 lineto +1.003759e+02 4.532762e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +1.003759e+02 5.310162e+01 moveto +1.003759e+02 4.532762e+01 lineto +1.026449e+02 4.608394e+01 lineto +1.026449e+02 5.385794e+01 lineto +1.003759e+02 5.310162e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +1.003759e+02 6.087562e+01 moveto +1.003759e+02 5.310162e+01 lineto +1.026449e+02 5.385794e+01 lineto +1.026449e+02 6.163194e+01 lineto +1.003759e+02 6.087562e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +1.003759e+02 6.864962e+01 moveto +1.003759e+02 6.087562e+01 lineto +1.026449e+02 6.163194e+01 lineto +1.026449e+02 6.940594e+01 lineto +1.003759e+02 6.864962e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +1.003759e+02 7.642362e+01 moveto +1.003759e+02 6.864962e+01 lineto +1.026449e+02 6.940594e+01 lineto +1.026449e+02 7.717994e+01 lineto +1.003759e+02 7.642362e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +1.003759e+02 8.419762e+01 moveto +1.003759e+02 7.642362e+01 lineto +1.026449e+02 7.717994e+01 lineto +1.026449e+02 8.495394e+01 lineto +1.003759e+02 8.419762e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +1.003759e+02 9.197162e+01 moveto +1.003759e+02 8.419762e+01 lineto +1.026449e+02 8.495394e+01 lineto +1.026449e+02 9.272794e+01 lineto +1.003759e+02 9.197162e+01 lineto +closepath +gsave +7.855045e-01 7.855045e-01 9.818806e-01 setrgbcolor +fill +grestore +newpath +1.026449e+02 2.276194e+01 moveto +1.026449e+02 1.498794e+01 lineto +1.046819e+02 1.577517e+01 lineto +1.046819e+02 2.354917e+01 lineto +1.026449e+02 2.276194e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +1.026449e+02 3.053594e+01 moveto +1.026449e+02 2.276194e+01 lineto +1.046819e+02 2.354917e+01 lineto +1.046819e+02 3.132317e+01 lineto +1.026449e+02 3.053594e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +1.026449e+02 3.830994e+01 moveto +1.026449e+02 3.053594e+01 lineto +1.046819e+02 3.132317e+01 lineto +1.046819e+02 3.909717e+01 lineto +1.026449e+02 3.830994e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +1.026449e+02 4.608394e+01 moveto +1.026449e+02 3.830994e+01 lineto +1.046819e+02 3.909717e+01 lineto +1.046819e+02 4.687117e+01 lineto +1.026449e+02 4.608394e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +1.026449e+02 5.385794e+01 moveto +1.026449e+02 4.608394e+01 lineto +1.046819e+02 4.687117e+01 lineto +1.046819e+02 5.464517e+01 lineto +1.026449e+02 5.385794e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +1.026449e+02 6.163194e+01 moveto +1.026449e+02 5.385794e+01 lineto +1.046819e+02 5.464517e+01 lineto +1.046819e+02 6.241917e+01 lineto +1.026449e+02 6.163194e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +1.026449e+02 6.940594e+01 moveto +1.026449e+02 6.163194e+01 lineto +1.046819e+02 6.241917e+01 lineto +1.046819e+02 7.019317e+01 lineto +1.026449e+02 6.940594e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +1.026449e+02 7.717994e+01 moveto +1.026449e+02 6.940594e+01 lineto +1.046819e+02 7.019317e+01 lineto +1.046819e+02 7.796717e+01 lineto +1.026449e+02 7.717994e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +1.026449e+02 8.495394e+01 moveto +1.026449e+02 7.717994e+01 lineto +1.046819e+02 7.796717e+01 lineto +1.046819e+02 8.574117e+01 lineto +1.026449e+02 8.495394e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +1.026449e+02 9.272794e+01 moveto +1.026449e+02 8.495394e+01 lineto +1.046819e+02 8.574117e+01 lineto +1.046819e+02 9.351517e+01 lineto +1.026449e+02 9.272794e+01 lineto +closepath +gsave +7.796258e-01 7.796258e-01 9.745322e-01 setrgbcolor +fill +grestore +newpath +1.046819e+02 2.354917e+01 moveto +1.046819e+02 1.577517e+01 lineto +1.064742e+02 1.658845e+01 lineto +1.064742e+02 2.436245e+01 lineto +1.046819e+02 2.354917e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +1.046819e+02 3.132317e+01 moveto +1.046819e+02 2.354917e+01 lineto +1.064742e+02 2.436245e+01 lineto +1.064742e+02 3.213645e+01 lineto +1.046819e+02 3.132317e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +1.046819e+02 3.909717e+01 moveto +1.046819e+02 3.132317e+01 lineto +1.064742e+02 3.213645e+01 lineto +1.064742e+02 3.991045e+01 lineto +1.046819e+02 3.909717e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +1.046819e+02 4.687117e+01 moveto +1.046819e+02 3.909717e+01 lineto +1.064742e+02 3.991045e+01 lineto +1.064742e+02 4.768445e+01 lineto +1.046819e+02 4.687117e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +1.046819e+02 5.464517e+01 moveto +1.046819e+02 4.687117e+01 lineto +1.064742e+02 4.768445e+01 lineto +1.064742e+02 5.545845e+01 lineto +1.046819e+02 5.464517e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +1.046819e+02 6.241917e+01 moveto +1.046819e+02 5.464517e+01 lineto +1.064742e+02 5.545845e+01 lineto +1.064742e+02 6.323245e+01 lineto +1.046819e+02 6.241917e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +1.046819e+02 7.019317e+01 moveto +1.046819e+02 6.241917e+01 lineto +1.064742e+02 6.323245e+01 lineto +1.064742e+02 7.100645e+01 lineto +1.046819e+02 7.019317e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +1.046819e+02 7.796717e+01 moveto +1.046819e+02 7.019317e+01 lineto +1.064742e+02 7.100645e+01 lineto +1.064742e+02 7.878045e+01 lineto +1.046819e+02 7.796717e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +1.046819e+02 8.574117e+01 moveto +1.046819e+02 7.796717e+01 lineto +1.064742e+02 7.878045e+01 lineto +1.064742e+02 8.655445e+01 lineto +1.046819e+02 8.574117e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +1.046819e+02 9.351517e+01 moveto +1.046819e+02 8.574117e+01 lineto +1.064742e+02 8.655445e+01 lineto +1.064742e+02 9.432845e+01 lineto +1.046819e+02 9.351517e+01 lineto +closepath +gsave +7.722681e-01 7.722681e-01 9.653351e-01 setrgbcolor +fill +grestore +newpath +1.064742e+02 2.436245e+01 moveto +1.064742e+02 1.658845e+01 lineto +1.080109e+02 1.742276e+01 lineto +1.080109e+02 2.519676e+01 lineto +1.064742e+02 2.436245e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +1.064742e+02 3.213645e+01 moveto +1.064742e+02 2.436245e+01 lineto +1.080109e+02 2.519676e+01 lineto +1.080109e+02 3.297076e+01 lineto +1.064742e+02 3.213645e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +1.064742e+02 3.991045e+01 moveto +1.064742e+02 3.213645e+01 lineto +1.080109e+02 3.297076e+01 lineto +1.080109e+02 4.074476e+01 lineto +1.064742e+02 3.991045e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +1.064742e+02 4.768445e+01 moveto +1.064742e+02 3.991045e+01 lineto +1.080109e+02 4.074476e+01 lineto +1.080109e+02 4.851876e+01 lineto +1.064742e+02 4.768445e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +1.064742e+02 5.545845e+01 moveto +1.064742e+02 4.768445e+01 lineto +1.080109e+02 4.851876e+01 lineto +1.080109e+02 5.629276e+01 lineto +1.064742e+02 5.545845e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +1.064742e+02 6.323245e+01 moveto +1.064742e+02 5.545845e+01 lineto +1.080109e+02 5.629276e+01 lineto +1.080109e+02 6.406676e+01 lineto +1.064742e+02 6.323245e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +1.064742e+02 7.100645e+01 moveto +1.064742e+02 6.323245e+01 lineto +1.080109e+02 6.406676e+01 lineto +1.080109e+02 7.184076e+01 lineto +1.064742e+02 7.100645e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +1.064742e+02 7.878045e+01 moveto +1.064742e+02 7.100645e+01 lineto +1.080109e+02 7.184076e+01 lineto +1.080109e+02 7.961476e+01 lineto +1.064742e+02 7.878045e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +1.064742e+02 8.655445e+01 moveto +1.064742e+02 7.878045e+01 lineto +1.080109e+02 7.961476e+01 lineto +1.080109e+02 8.738876e+01 lineto +1.064742e+02 8.655445e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +1.064742e+02 9.432845e+01 moveto +1.064742e+02 8.655445e+01 lineto +1.080109e+02 8.738876e+01 lineto +1.080109e+02 9.516276e+01 lineto +1.064742e+02 9.432845e+01 lineto +closepath +gsave +7.634359e-01 7.634359e-01 9.542949e-01 setrgbcolor +fill +grestore +newpath +1.080109e+02 2.519676e+01 moveto +1.080109e+02 1.742276e+01 lineto +1.092823e+02 1.827296e+01 lineto +1.092823e+02 2.604696e+01 lineto +1.080109e+02 2.519676e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +1.080109e+02 3.297076e+01 moveto +1.080109e+02 2.519676e+01 lineto +1.092823e+02 2.604696e+01 lineto +1.092823e+02 3.382096e+01 lineto +1.080109e+02 3.297076e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +1.080109e+02 4.074476e+01 moveto +1.080109e+02 3.297076e+01 lineto +1.092823e+02 3.382096e+01 lineto +1.092823e+02 4.159496e+01 lineto +1.080109e+02 4.074476e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +1.080109e+02 4.851876e+01 moveto +1.080109e+02 4.074476e+01 lineto +1.092823e+02 4.159496e+01 lineto +1.092823e+02 4.936896e+01 lineto +1.080109e+02 4.851876e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +1.080109e+02 5.629276e+01 moveto +1.080109e+02 4.851876e+01 lineto +1.092823e+02 4.936896e+01 lineto +1.092823e+02 5.714296e+01 lineto +1.080109e+02 5.629276e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +1.080109e+02 6.406676e+01 moveto +1.080109e+02 5.629276e+01 lineto +1.092823e+02 5.714296e+01 lineto +1.092823e+02 6.491696e+01 lineto +1.080109e+02 6.406676e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +1.080109e+02 7.184076e+01 moveto +1.080109e+02 6.406676e+01 lineto +1.092823e+02 6.491696e+01 lineto +1.092823e+02 7.269096e+01 lineto +1.080109e+02 7.184076e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +1.080109e+02 7.961476e+01 moveto +1.080109e+02 7.184076e+01 lineto +1.092823e+02 7.269096e+01 lineto +1.092823e+02 8.046496e+01 lineto +1.080109e+02 7.961476e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +1.080109e+02 8.738876e+01 moveto +1.080109e+02 7.961476e+01 lineto +1.092823e+02 8.046496e+01 lineto +1.092823e+02 8.823896e+01 lineto +1.080109e+02 8.738876e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +1.080109e+02 9.516276e+01 moveto +1.080109e+02 8.738876e+01 lineto +1.092823e+02 8.823896e+01 lineto +1.092823e+02 9.601296e+01 lineto +1.080109e+02 9.516276e+01 lineto +closepath +gsave +7.531445e-01 7.531445e-01 9.414306e-01 setrgbcolor +fill +grestore +newpath +1.092823e+02 2.604696e+01 moveto +1.092823e+02 1.827296e+01 lineto +1.102807e+02 1.913381e+01 lineto +1.102807e+02 2.690781e+01 lineto +1.092823e+02 2.604696e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +1.092823e+02 3.382096e+01 moveto +1.092823e+02 2.604696e+01 lineto +1.102807e+02 2.690781e+01 lineto +1.102807e+02 3.468181e+01 lineto +1.092823e+02 3.382096e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +1.092823e+02 4.159496e+01 moveto +1.092823e+02 3.382096e+01 lineto +1.102807e+02 3.468181e+01 lineto +1.102807e+02 4.245581e+01 lineto +1.092823e+02 4.159496e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +1.092823e+02 4.936896e+01 moveto +1.092823e+02 4.159496e+01 lineto +1.102807e+02 4.245581e+01 lineto +1.102807e+02 5.022981e+01 lineto +1.092823e+02 4.936896e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +1.092823e+02 5.714296e+01 moveto +1.092823e+02 4.936896e+01 lineto +1.102807e+02 5.022981e+01 lineto +1.102807e+02 5.800381e+01 lineto +1.092823e+02 5.714296e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +1.092823e+02 6.491696e+01 moveto +1.092823e+02 5.714296e+01 lineto +1.102807e+02 5.800381e+01 lineto +1.102807e+02 6.577781e+01 lineto +1.092823e+02 6.491696e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +1.092823e+02 7.269096e+01 moveto +1.092823e+02 6.491696e+01 lineto +1.102807e+02 6.577781e+01 lineto +1.102807e+02 7.355181e+01 lineto +1.092823e+02 7.269096e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +1.092823e+02 8.046496e+01 moveto +1.092823e+02 7.269096e+01 lineto +1.102807e+02 7.355181e+01 lineto +1.102807e+02 8.132581e+01 lineto +1.092823e+02 8.046496e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +1.092823e+02 8.823896e+01 moveto +1.092823e+02 8.046496e+01 lineto +1.102807e+02 8.132581e+01 lineto +1.102807e+02 8.909981e+01 lineto +1.092823e+02 8.823896e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +1.092823e+02 9.601296e+01 moveto +1.092823e+02 8.823896e+01 lineto +1.102807e+02 8.909981e+01 lineto +1.102807e+02 9.687381e+01 lineto +1.092823e+02 9.601296e+01 lineto +closepath +gsave +7.414239e-01 7.414239e-01 9.267799e-01 setrgbcolor +fill +grestore +newpath +1.102807e+02 2.690781e+01 moveto +1.102807e+02 1.913381e+01 lineto +1.11e+02 2.0e+01 lineto +1.11e+02 2.7774e+01 lineto +1.102807e+02 2.690781e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +1.102807e+02 3.468181e+01 moveto +1.102807e+02 2.690781e+01 lineto +1.11e+02 2.7774e+01 lineto +1.11e+02 3.5548e+01 lineto +1.102807e+02 3.468181e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +1.102807e+02 4.245581e+01 moveto +1.102807e+02 3.468181e+01 lineto +1.11e+02 3.5548e+01 lineto +1.11e+02 4.3322e+01 lineto +1.102807e+02 4.245581e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +1.102807e+02 5.022981e+01 moveto +1.102807e+02 4.245581e+01 lineto +1.11e+02 4.3322e+01 lineto +1.11e+02 5.1096e+01 lineto +1.102807e+02 5.022981e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +1.102807e+02 5.800381e+01 moveto +1.102807e+02 5.022981e+01 lineto +1.11e+02 5.1096e+01 lineto +1.11e+02 5.887e+01 lineto +1.102807e+02 5.800381e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +1.102807e+02 6.577781e+01 moveto +1.102807e+02 5.800381e+01 lineto +1.11e+02 5.887e+01 lineto +1.11e+02 6.6644e+01 lineto +1.102807e+02 6.577781e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +1.102807e+02 7.355181e+01 moveto +1.102807e+02 6.577781e+01 lineto +1.11e+02 6.6644e+01 lineto +1.11e+02 7.4418e+01 lineto +1.102807e+02 7.355181e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +1.102807e+02 8.132581e+01 moveto +1.102807e+02 7.355181e+01 lineto +1.11e+02 7.4418e+01 lineto +1.11e+02 8.2192e+01 lineto +1.102807e+02 8.132581e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +1.102807e+02 8.909981e+01 moveto +1.102807e+02 8.132581e+01 lineto +1.11e+02 8.2192e+01 lineto +1.11e+02 8.9966e+01 lineto +1.102807e+02 8.909981e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +1.102807e+02 9.687381e+01 moveto +1.102807e+02 8.909981e+01 lineto +1.11e+02 8.9966e+01 lineto +1.11e+02 9.774e+01 lineto +1.102807e+02 9.687381e+01 lineto +closepath +gsave +7.283229e-01 7.283229e-01 9.104036e-01 setrgbcolor +fill +grestore +newpath +1.11e+02 2.7774e+01 moveto +1.11e+02 2.0e+01 lineto +1.114357e+02 2.086619e+01 lineto +1.114357e+02 2.864019e+01 lineto +1.11e+02 2.7774e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +1.11e+02 3.5548e+01 moveto +1.11e+02 2.7774e+01 lineto +1.114357e+02 2.864019e+01 lineto +1.114357e+02 3.641419e+01 lineto +1.11e+02 3.5548e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +1.11e+02 4.3322e+01 moveto +1.11e+02 3.5548e+01 lineto +1.114357e+02 3.641419e+01 lineto +1.114357e+02 4.418819e+01 lineto +1.11e+02 4.3322e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +1.11e+02 5.1096e+01 moveto +1.11e+02 4.3322e+01 lineto +1.114357e+02 4.418819e+01 lineto +1.114357e+02 5.196219e+01 lineto +1.11e+02 5.1096e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +1.11e+02 5.887e+01 moveto +1.11e+02 5.1096e+01 lineto +1.114357e+02 5.196219e+01 lineto +1.114357e+02 5.973619e+01 lineto +1.11e+02 5.887e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +1.11e+02 6.6644e+01 moveto +1.11e+02 5.887e+01 lineto +1.114357e+02 5.973619e+01 lineto +1.114357e+02 6.751019e+01 lineto +1.11e+02 6.6644e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +1.11e+02 7.4418e+01 moveto +1.11e+02 6.6644e+01 lineto +1.114357e+02 6.751019e+01 lineto +1.114357e+02 7.528419e+01 lineto +1.11e+02 7.4418e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +1.11e+02 8.2192e+01 moveto +1.11e+02 7.4418e+01 lineto +1.114357e+02 7.528419e+01 lineto +1.114357e+02 8.305819e+01 lineto +1.11e+02 8.2192e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +1.11e+02 8.9966e+01 moveto +1.11e+02 8.2192e+01 lineto +1.114357e+02 8.305819e+01 lineto +1.114357e+02 9.083219e+01 lineto +1.11e+02 8.9966e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +1.11e+02 9.774e+01 moveto +1.11e+02 8.9966e+01 lineto +1.114357e+02 9.083219e+01 lineto +1.114357e+02 9.860619e+01 lineto +1.11e+02 9.774e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +1.114357e+02 2.864019e+01 moveto +1.114357e+02 2.086619e+01 lineto +1.11585e+02 2.172704e+01 lineto +1.11585e+02 2.950104e+01 lineto +1.114357e+02 2.864019e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +1.114357e+02 3.641419e+01 moveto +1.114357e+02 2.864019e+01 lineto +1.11585e+02 2.950104e+01 lineto +1.11585e+02 3.727504e+01 lineto +1.114357e+02 3.641419e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +1.114357e+02 4.418819e+01 moveto +1.114357e+02 3.641419e+01 lineto +1.11585e+02 3.727504e+01 lineto +1.11585e+02 4.504904e+01 lineto +1.114357e+02 4.418819e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +1.114357e+02 5.196219e+01 moveto +1.114357e+02 4.418819e+01 lineto +1.11585e+02 4.504904e+01 lineto +1.11585e+02 5.282304e+01 lineto +1.114357e+02 5.196219e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +1.114357e+02 5.973619e+01 moveto +1.114357e+02 5.196219e+01 lineto +1.11585e+02 5.282304e+01 lineto +1.11585e+02 6.059704e+01 lineto +1.114357e+02 5.973619e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +1.114357e+02 6.751019e+01 moveto +1.114357e+02 5.973619e+01 lineto +1.11585e+02 6.059704e+01 lineto +1.11585e+02 6.837104e+01 lineto +1.114357e+02 6.751019e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +1.114357e+02 7.528419e+01 moveto +1.114357e+02 6.751019e+01 lineto +1.11585e+02 6.837104e+01 lineto +1.11585e+02 7.614504e+01 lineto +1.114357e+02 7.528419e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +1.114357e+02 8.305819e+01 moveto +1.114357e+02 7.528419e+01 lineto +1.11585e+02 7.614504e+01 lineto +1.11585e+02 8.391904e+01 lineto +1.114357e+02 8.305819e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +1.114357e+02 9.083219e+01 moveto +1.114357e+02 8.305819e+01 lineto +1.11585e+02 8.391904e+01 lineto +1.11585e+02 9.169304e+01 lineto +1.114357e+02 9.083219e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +1.114357e+02 9.860619e+01 moveto +1.114357e+02 9.083219e+01 lineto +1.11585e+02 9.169304e+01 lineto +1.11585e+02 9.946704e+01 lineto +1.114357e+02 9.860619e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +1.841498e+01 2.604696e+01 moveto +1.841498e+01 1.827296e+01 lineto +1.855283e+01 1.742276e+01 lineto +1.855283e+01 2.519676e+01 lineto +1.841498e+01 2.604696e+01 lineto +closepath +gsave +4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor +fill +grestore +newpath +1.841498e+01 3.382096e+01 moveto +1.841498e+01 2.604696e+01 lineto +1.855283e+01 2.519676e+01 lineto +1.855283e+01 3.297076e+01 lineto +1.841498e+01 3.382096e+01 lineto +closepath +gsave +4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor +fill +grestore +newpath +1.841498e+01 4.159496e+01 moveto +1.841498e+01 3.382096e+01 lineto +1.855283e+01 3.297076e+01 lineto +1.855283e+01 4.074476e+01 lineto +1.841498e+01 4.159496e+01 lineto +closepath +gsave +4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor +fill +grestore +newpath +1.841498e+01 4.936896e+01 moveto +1.841498e+01 4.159496e+01 lineto +1.855283e+01 4.074476e+01 lineto +1.855283e+01 4.851876e+01 lineto +1.841498e+01 4.936896e+01 lineto +closepath +gsave +4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor +fill +grestore +newpath +1.841498e+01 5.714296e+01 moveto +1.841498e+01 4.936896e+01 lineto +1.855283e+01 4.851876e+01 lineto +1.855283e+01 5.629276e+01 lineto +1.841498e+01 5.714296e+01 lineto +closepath +gsave +4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor +fill +grestore +newpath +1.841498e+01 6.491696e+01 moveto +1.841498e+01 5.714296e+01 lineto +1.855283e+01 5.629276e+01 lineto +1.855283e+01 6.406676e+01 lineto +1.841498e+01 6.491696e+01 lineto +closepath +gsave +4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor +fill +grestore +newpath +1.841498e+01 7.269096e+01 moveto +1.841498e+01 6.491696e+01 lineto +1.855283e+01 6.406676e+01 lineto +1.855283e+01 7.184076e+01 lineto +1.841498e+01 7.269096e+01 lineto +closepath +gsave +4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor +fill +grestore +newpath +1.841498e+01 8.046496e+01 moveto +1.841498e+01 7.269096e+01 lineto +1.855283e+01 7.184076e+01 lineto +1.855283e+01 7.961476e+01 lineto +1.841498e+01 8.046496e+01 lineto +closepath +gsave +4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor +fill +grestore +newpath +1.841498e+01 8.823896e+01 moveto +1.841498e+01 8.046496e+01 lineto +1.855283e+01 7.961476e+01 lineto +1.855283e+01 8.738876e+01 lineto +1.841498e+01 8.823896e+01 lineto +closepath +gsave +4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor +fill +grestore +newpath +1.841498e+01 9.601296e+01 moveto +1.841498e+01 8.823896e+01 lineto +1.855283e+01 8.738876e+01 lineto +1.855283e+01 9.516276e+01 lineto +1.841498e+01 9.601296e+01 lineto +closepath +gsave +4.337932e-01 4.337932e-01 5.422415e-01 setrgbcolor +fill +grestore +newpath +1.855283e+01 2.519676e+01 moveto +1.855283e+01 1.742276e+01 lineto +1.897704e+01 1.658845e+01 lineto +1.897704e+01 2.436245e+01 lineto +1.855283e+01 2.519676e+01 lineto +closepath +gsave +4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor +fill +grestore +newpath +1.855283e+01 3.297076e+01 moveto +1.855283e+01 2.519676e+01 lineto +1.897704e+01 2.436245e+01 lineto +1.897704e+01 3.213645e+01 lineto +1.855283e+01 3.297076e+01 lineto +closepath +gsave +4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor +fill +grestore +newpath +1.855283e+01 4.074476e+01 moveto +1.855283e+01 3.297076e+01 lineto +1.897704e+01 3.213645e+01 lineto +1.897704e+01 3.991045e+01 lineto +1.855283e+01 4.074476e+01 lineto +closepath +gsave +4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor +fill +grestore +newpath +1.855283e+01 4.851876e+01 moveto +1.855283e+01 4.074476e+01 lineto +1.897704e+01 3.991045e+01 lineto +1.897704e+01 4.768445e+01 lineto +1.855283e+01 4.851876e+01 lineto +closepath +gsave +4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor +fill +grestore +newpath +1.855283e+01 5.629276e+01 moveto +1.855283e+01 4.851876e+01 lineto +1.897704e+01 4.768445e+01 lineto +1.897704e+01 5.545845e+01 lineto +1.855283e+01 5.629276e+01 lineto +closepath +gsave +4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor +fill +grestore +newpath +1.855283e+01 6.406676e+01 moveto +1.855283e+01 5.629276e+01 lineto +1.897704e+01 5.545845e+01 lineto +1.897704e+01 6.323245e+01 lineto +1.855283e+01 6.406676e+01 lineto +closepath +gsave +4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor +fill +grestore +newpath +1.855283e+01 7.184076e+01 moveto +1.855283e+01 6.406676e+01 lineto +1.897704e+01 6.323245e+01 lineto +1.897704e+01 7.100645e+01 lineto +1.855283e+01 7.184076e+01 lineto +closepath +gsave +4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor +fill +grestore +newpath +1.855283e+01 7.961476e+01 moveto +1.855283e+01 7.184076e+01 lineto +1.897704e+01 7.100645e+01 lineto +1.897704e+01 7.878045e+01 lineto +1.855283e+01 7.961476e+01 lineto +closepath +gsave +4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor +fill +grestore +newpath +1.855283e+01 8.738876e+01 moveto +1.855283e+01 7.961476e+01 lineto +1.897704e+01 7.878045e+01 lineto +1.897704e+01 8.655445e+01 lineto +1.855283e+01 8.738876e+01 lineto +closepath +gsave +4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor +fill +grestore +newpath +1.855283e+01 9.516276e+01 moveto +1.855283e+01 8.738876e+01 lineto +1.897704e+01 8.655445e+01 lineto +1.897704e+01 9.432845e+01 lineto +1.855283e+01 9.516276e+01 lineto +closepath +gsave +4.434429e-01 4.434429e-01 5.543036e-01 setrgbcolor +fill +grestore +newpath +1.897704e+01 2.436245e+01 moveto +1.897704e+01 1.658845e+01 lineto +1.968499e+01 1.577517e+01 lineto +1.968499e+01 2.354917e+01 lineto +1.897704e+01 2.436245e+01 lineto +closepath +gsave +4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor +fill +grestore +newpath +1.897704e+01 3.213645e+01 moveto +1.897704e+01 2.436245e+01 lineto +1.968499e+01 2.354917e+01 lineto +1.968499e+01 3.132317e+01 lineto +1.897704e+01 3.213645e+01 lineto +closepath +gsave +4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor +fill +grestore +newpath +1.897704e+01 3.991045e+01 moveto +1.897704e+01 3.213645e+01 lineto +1.968499e+01 3.132317e+01 lineto +1.968499e+01 3.909717e+01 lineto +1.897704e+01 3.991045e+01 lineto +closepath +gsave +4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor +fill +grestore +newpath +1.897704e+01 4.768445e+01 moveto +1.897704e+01 3.991045e+01 lineto +1.968499e+01 3.909717e+01 lineto +1.968499e+01 4.687117e+01 lineto +1.897704e+01 4.768445e+01 lineto +closepath +gsave +4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor +fill +grestore +newpath +1.897704e+01 5.545845e+01 moveto +1.897704e+01 4.768445e+01 lineto +1.968499e+01 4.687117e+01 lineto +1.968499e+01 5.464517e+01 lineto +1.897704e+01 5.545845e+01 lineto +closepath +gsave +4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor +fill +grestore +newpath +1.897704e+01 6.323245e+01 moveto +1.897704e+01 5.545845e+01 lineto +1.968499e+01 5.464517e+01 lineto +1.968499e+01 6.241917e+01 lineto +1.897704e+01 6.323245e+01 lineto +closepath +gsave +4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor +fill +grestore +newpath +1.897704e+01 7.100645e+01 moveto +1.897704e+01 6.323245e+01 lineto +1.968499e+01 6.241917e+01 lineto +1.968499e+01 7.019317e+01 lineto +1.897704e+01 7.100645e+01 lineto +closepath +gsave +4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor +fill +grestore +newpath +1.897704e+01 7.878045e+01 moveto +1.897704e+01 7.100645e+01 lineto +1.968499e+01 7.019317e+01 lineto +1.968499e+01 7.796717e+01 lineto +1.897704e+01 7.878045e+01 lineto +closepath +gsave +4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor +fill +grestore +newpath +1.897704e+01 8.655445e+01 moveto +1.897704e+01 7.878045e+01 lineto +1.968499e+01 7.796717e+01 lineto +1.968499e+01 8.574117e+01 lineto +1.897704e+01 8.655445e+01 lineto +closepath +gsave +4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor +fill +grestore +newpath +1.897704e+01 9.432845e+01 moveto +1.897704e+01 8.655445e+01 lineto +1.968499e+01 8.574117e+01 lineto +1.968499e+01 9.351517e+01 lineto +1.897704e+01 9.432845e+01 lineto +closepath +gsave +4.545984e-01 4.545984e-01 5.682479e-01 setrgbcolor +fill +grestore +newpath +1.968499e+01 2.354917e+01 moveto +1.968499e+01 1.577517e+01 lineto +2.067233e+01 1.498794e+01 lineto +2.067233e+01 2.276194e+01 lineto +1.968499e+01 2.354917e+01 lineto +closepath +gsave +4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor +fill +grestore +newpath +1.968499e+01 3.132317e+01 moveto +1.968499e+01 2.354917e+01 lineto +2.067233e+01 2.276194e+01 lineto +2.067233e+01 3.053594e+01 lineto +1.968499e+01 3.132317e+01 lineto +closepath +gsave +4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor +fill +grestore +newpath +1.968499e+01 3.909717e+01 moveto +1.968499e+01 3.132317e+01 lineto +2.067233e+01 3.053594e+01 lineto +2.067233e+01 3.830994e+01 lineto +1.968499e+01 3.909717e+01 lineto +closepath +gsave +4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor +fill +grestore +newpath +1.968499e+01 4.687117e+01 moveto +1.968499e+01 3.909717e+01 lineto +2.067233e+01 3.830994e+01 lineto +2.067233e+01 4.608394e+01 lineto +1.968499e+01 4.687117e+01 lineto +closepath +gsave +4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor +fill +grestore +newpath +1.968499e+01 5.464517e+01 moveto +1.968499e+01 4.687117e+01 lineto +2.067233e+01 4.608394e+01 lineto +2.067233e+01 5.385794e+01 lineto +1.968499e+01 5.464517e+01 lineto +closepath +gsave +4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor +fill +grestore +newpath +1.968499e+01 6.241917e+01 moveto +1.968499e+01 5.464517e+01 lineto +2.067233e+01 5.385794e+01 lineto +2.067233e+01 6.163194e+01 lineto +1.968499e+01 6.241917e+01 lineto +closepath +gsave +4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor +fill +grestore +newpath +1.968499e+01 7.019317e+01 moveto +1.968499e+01 6.241917e+01 lineto +2.067233e+01 6.163194e+01 lineto +2.067233e+01 6.940594e+01 lineto +1.968499e+01 7.019317e+01 lineto +closepath +gsave +4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor +fill +grestore +newpath +1.968499e+01 7.796717e+01 moveto +1.968499e+01 7.019317e+01 lineto +2.067233e+01 6.940594e+01 lineto +2.067233e+01 7.717994e+01 lineto +1.968499e+01 7.796717e+01 lineto +closepath +gsave +4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor +fill +grestore +newpath +1.968499e+01 8.574117e+01 moveto +1.968499e+01 7.796717e+01 lineto +2.067233e+01 7.717994e+01 lineto +2.067233e+01 8.495394e+01 lineto +1.968499e+01 8.574117e+01 lineto +closepath +gsave +4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor +fill +grestore +newpath +1.968499e+01 9.351517e+01 moveto +1.968499e+01 8.574117e+01 lineto +2.067233e+01 8.495394e+01 lineto +2.067233e+01 9.272794e+01 lineto +1.968499e+01 9.351517e+01 lineto +closepath +gsave +4.672412e-01 4.672412e-01 5.840515e-01 setrgbcolor +fill +grestore +newpath +2.067233e+01 2.276194e+01 moveto +2.067233e+01 1.498794e+01 lineto +2.193296e+01 1.423162e+01 lineto +2.193296e+01 2.200562e+01 lineto +2.067233e+01 2.276194e+01 lineto +closepath +gsave +4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor +fill +grestore +newpath +2.067233e+01 3.053594e+01 moveto +2.067233e+01 2.276194e+01 lineto +2.193296e+01 2.200562e+01 lineto +2.193296e+01 2.977962e+01 lineto +2.067233e+01 3.053594e+01 lineto +closepath +gsave +4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor +fill +grestore +newpath +2.067233e+01 3.830994e+01 moveto +2.067233e+01 3.053594e+01 lineto +2.193296e+01 2.977962e+01 lineto +2.193296e+01 3.755362e+01 lineto +2.067233e+01 3.830994e+01 lineto +closepath +gsave +4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor +fill +grestore +newpath +2.067233e+01 4.608394e+01 moveto +2.067233e+01 3.830994e+01 lineto +2.193296e+01 3.755362e+01 lineto +2.193296e+01 4.532762e+01 lineto +2.067233e+01 4.608394e+01 lineto +closepath +gsave +4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor +fill +grestore +newpath +2.067233e+01 5.385794e+01 moveto +2.067233e+01 4.608394e+01 lineto +2.193296e+01 4.532762e+01 lineto +2.193296e+01 5.310162e+01 lineto +2.067233e+01 5.385794e+01 lineto +closepath +gsave +4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor +fill +grestore +newpath +2.067233e+01 6.163194e+01 moveto +2.067233e+01 5.385794e+01 lineto +2.193296e+01 5.310162e+01 lineto +2.193296e+01 6.087562e+01 lineto +2.067233e+01 6.163194e+01 lineto +closepath +gsave +4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor +fill +grestore +newpath +2.067233e+01 6.940594e+01 moveto +2.067233e+01 6.163194e+01 lineto +2.193296e+01 6.087562e+01 lineto +2.193296e+01 6.864962e+01 lineto +2.067233e+01 6.940594e+01 lineto +closepath +gsave +4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor +fill +grestore +newpath +2.067233e+01 7.717994e+01 moveto +2.067233e+01 6.940594e+01 lineto +2.193296e+01 6.864962e+01 lineto +2.193296e+01 7.642362e+01 lineto +2.067233e+01 7.717994e+01 lineto +closepath +gsave +4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor +fill +grestore +newpath +2.067233e+01 8.495394e+01 moveto +2.067233e+01 7.717994e+01 lineto +2.193296e+01 7.642362e+01 lineto +2.193296e+01 8.419762e+01 lineto +2.067233e+01 8.495394e+01 lineto +closepath +gsave +4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor +fill +grestore +newpath +2.067233e+01 9.272794e+01 moveto +2.067233e+01 8.495394e+01 lineto +2.193296e+01 8.419762e+01 lineto +2.193296e+01 9.197162e+01 lineto +2.067233e+01 9.272794e+01 lineto +closepath +gsave +4.813109e-01 4.813109e-01 6.016386e-01 setrgbcolor +fill +grestore +newpath +2.193296e+01 2.200562e+01 moveto +2.193296e+01 1.423162e+01 lineto +2.345912e+01 1.351085e+01 lineto +2.345912e+01 2.128485e+01 lineto +2.193296e+01 2.200562e+01 lineto +closepath +gsave +4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor +fill +grestore +newpath +2.193296e+01 2.977962e+01 moveto +2.193296e+01 2.200562e+01 lineto +2.345912e+01 2.128485e+01 lineto +2.345912e+01 2.905885e+01 lineto +2.193296e+01 2.977962e+01 lineto +closepath +gsave +4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor +fill +grestore +newpath +2.193296e+01 3.755362e+01 moveto +2.193296e+01 2.977962e+01 lineto +2.345912e+01 2.905885e+01 lineto +2.345912e+01 3.683285e+01 lineto +2.193296e+01 3.755362e+01 lineto +closepath +gsave +4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor +fill +grestore +newpath +2.193296e+01 4.532762e+01 moveto +2.193296e+01 3.755362e+01 lineto +2.345912e+01 3.683285e+01 lineto +2.345912e+01 4.460685e+01 lineto +2.193296e+01 4.532762e+01 lineto +closepath +gsave +4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor +fill +grestore +newpath +2.193296e+01 5.310162e+01 moveto +2.193296e+01 4.532762e+01 lineto +2.345912e+01 4.460685e+01 lineto +2.345912e+01 5.238085e+01 lineto +2.193296e+01 5.310162e+01 lineto +closepath +gsave +4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor +fill +grestore +newpath +2.193296e+01 6.087562e+01 moveto +2.193296e+01 5.310162e+01 lineto +2.345912e+01 5.238085e+01 lineto +2.345912e+01 6.015485e+01 lineto +2.193296e+01 6.087562e+01 lineto +closepath +gsave +4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor +fill +grestore +newpath +2.193296e+01 6.864962e+01 moveto +2.193296e+01 6.087562e+01 lineto +2.345912e+01 6.015485e+01 lineto +2.345912e+01 6.792885e+01 lineto +2.193296e+01 6.864962e+01 lineto +closepath +gsave +4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor +fill +grestore +newpath +2.193296e+01 7.642362e+01 moveto +2.193296e+01 6.864962e+01 lineto +2.345912e+01 6.792885e+01 lineto +2.345912e+01 7.570285e+01 lineto +2.193296e+01 7.642362e+01 lineto +closepath +gsave +4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor +fill +grestore +newpath +2.193296e+01 8.419762e+01 moveto +2.193296e+01 7.642362e+01 lineto +2.345912e+01 7.570285e+01 lineto +2.345912e+01 8.347685e+01 lineto +2.193296e+01 8.419762e+01 lineto +closepath +gsave +4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor +fill +grestore +newpath +2.193296e+01 9.197162e+01 moveto +2.193296e+01 8.419762e+01 lineto +2.345912e+01 8.347685e+01 lineto +2.345912e+01 9.125085e+01 lineto +2.193296e+01 9.197162e+01 lineto +closepath +gsave +4.967062e-01 4.967062e-01 6.208827e-01 setrgbcolor +fill +grestore +newpath +2.345912e+01 2.128485e+01 moveto +2.345912e+01 1.351085e+01 lineto +2.524139e+01 1.283009e+01 lineto +2.524139e+01 2.060409e+01 lineto +2.345912e+01 2.128485e+01 lineto +closepath +gsave +5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor +fill +grestore +newpath +2.345912e+01 2.905885e+01 moveto +2.345912e+01 2.128485e+01 lineto +2.524139e+01 2.060409e+01 lineto +2.524139e+01 2.837809e+01 lineto +2.345912e+01 2.905885e+01 lineto +closepath +gsave +5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor +fill +grestore +newpath +2.345912e+01 3.683285e+01 moveto +2.345912e+01 2.905885e+01 lineto +2.524139e+01 2.837809e+01 lineto +2.524139e+01 3.615209e+01 lineto +2.345912e+01 3.683285e+01 lineto +closepath +gsave +5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor +fill +grestore +newpath +2.345912e+01 4.460685e+01 moveto +2.345912e+01 3.683285e+01 lineto +2.524139e+01 3.615209e+01 lineto +2.524139e+01 4.392609e+01 lineto +2.345912e+01 4.460685e+01 lineto +closepath +gsave +5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor +fill +grestore +newpath +2.345912e+01 5.238085e+01 moveto +2.345912e+01 4.460685e+01 lineto +2.524139e+01 4.392609e+01 lineto +2.524139e+01 5.170009e+01 lineto +2.345912e+01 5.238085e+01 lineto +closepath +gsave +5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor +fill +grestore +newpath +2.345912e+01 6.015485e+01 moveto +2.345912e+01 5.238085e+01 lineto +2.524139e+01 5.170009e+01 lineto +2.524139e+01 5.947409e+01 lineto +2.345912e+01 6.015485e+01 lineto +closepath +gsave +5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor +fill +grestore +newpath +2.345912e+01 6.792885e+01 moveto +2.345912e+01 6.015485e+01 lineto +2.524139e+01 5.947409e+01 lineto +2.524139e+01 6.724809e+01 lineto +2.345912e+01 6.792885e+01 lineto +closepath +gsave +5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor +fill +grestore +newpath +2.345912e+01 7.570285e+01 moveto +2.345912e+01 6.792885e+01 lineto +2.524139e+01 6.724809e+01 lineto +2.524139e+01 7.502209e+01 lineto +2.345912e+01 7.570285e+01 lineto +closepath +gsave +5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor +fill +grestore +newpath +2.345912e+01 8.347685e+01 moveto +2.345912e+01 7.570285e+01 lineto +2.524139e+01 7.502209e+01 lineto +2.524139e+01 8.279609e+01 lineto +2.345912e+01 8.347685e+01 lineto +closepath +gsave +5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor +fill +grestore +newpath +2.345912e+01 9.125085e+01 moveto +2.345912e+01 8.347685e+01 lineto +2.524139e+01 8.279609e+01 lineto +2.524139e+01 9.057009e+01 lineto +2.345912e+01 9.125085e+01 lineto +closepath +gsave +5.132879e-01 5.132879e-01 6.416099e-01 setrgbcolor +fill +grestore +newpath +2.524139e+01 2.060409e+01 moveto +2.524139e+01 1.283009e+01 lineto +2.726878e+01 1.219354e+01 lineto +2.726878e+01 1.996754e+01 lineto +2.524139e+01 2.060409e+01 lineto +closepath +gsave +5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor +fill +grestore +newpath +2.524139e+01 2.837809e+01 moveto +2.524139e+01 2.060409e+01 lineto +2.726878e+01 1.996754e+01 lineto +2.726878e+01 2.774154e+01 lineto +2.524139e+01 2.837809e+01 lineto +closepath +gsave +5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor +fill +grestore +newpath +2.524139e+01 3.615209e+01 moveto +2.524139e+01 2.837809e+01 lineto +2.726878e+01 2.774154e+01 lineto +2.726878e+01 3.551554e+01 lineto +2.524139e+01 3.615209e+01 lineto +closepath +gsave +5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor +fill +grestore +newpath +2.524139e+01 4.392609e+01 moveto +2.524139e+01 3.615209e+01 lineto +2.726878e+01 3.551554e+01 lineto +2.726878e+01 4.328954e+01 lineto +2.524139e+01 4.392609e+01 lineto +closepath +gsave +5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor +fill +grestore +newpath +2.524139e+01 5.170009e+01 moveto +2.524139e+01 4.392609e+01 lineto +2.726878e+01 4.328954e+01 lineto +2.726878e+01 5.106354e+01 lineto +2.524139e+01 5.170009e+01 lineto +closepath +gsave +5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor +fill +grestore +newpath +2.524139e+01 5.947409e+01 moveto +2.524139e+01 5.170009e+01 lineto +2.726878e+01 5.106354e+01 lineto +2.726878e+01 5.883754e+01 lineto +2.524139e+01 5.947409e+01 lineto +closepath +gsave +5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor +fill +grestore +newpath +2.524139e+01 6.724809e+01 moveto +2.524139e+01 5.947409e+01 lineto +2.726878e+01 5.883754e+01 lineto +2.726878e+01 6.661154e+01 lineto +2.524139e+01 6.724809e+01 lineto +closepath +gsave +5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor +fill +grestore +newpath +2.524139e+01 7.502209e+01 moveto +2.524139e+01 6.724809e+01 lineto +2.726878e+01 6.661154e+01 lineto +2.726878e+01 7.438554e+01 lineto +2.524139e+01 7.502209e+01 lineto +closepath +gsave +5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor +fill +grestore +newpath +2.524139e+01 8.279609e+01 moveto +2.524139e+01 7.502209e+01 lineto +2.726878e+01 7.438554e+01 lineto +2.726878e+01 8.215954e+01 lineto +2.524139e+01 8.279609e+01 lineto +closepath +gsave +5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor +fill +grestore +newpath +2.524139e+01 9.057009e+01 moveto +2.524139e+01 8.279609e+01 lineto +2.726878e+01 8.215954e+01 lineto +2.726878e+01 8.993354e+01 lineto +2.524139e+01 9.057009e+01 lineto +closepath +gsave +5.308836e-01 5.308836e-01 6.636045e-01 setrgbcolor +fill +grestore +newpath +2.726878e+01 1.996754e+01 moveto +2.726878e+01 1.219354e+01 lineto +2.95288e+01 1.160512e+01 lineto +2.95288e+01 1.937912e+01 lineto +2.726878e+01 1.996754e+01 lineto +closepath +gsave +5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor +fill +grestore +newpath +2.726878e+01 2.774154e+01 moveto +2.726878e+01 1.996754e+01 lineto +2.95288e+01 1.937912e+01 lineto +2.95288e+01 2.715312e+01 lineto +2.726878e+01 2.774154e+01 lineto +closepath +gsave +5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor +fill +grestore +newpath +2.726878e+01 3.551554e+01 moveto +2.726878e+01 2.774154e+01 lineto +2.95288e+01 2.715312e+01 lineto +2.95288e+01 3.492712e+01 lineto +2.726878e+01 3.551554e+01 lineto +closepath +gsave +5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor +fill +grestore +newpath +2.726878e+01 4.328954e+01 moveto +2.726878e+01 3.551554e+01 lineto +2.95288e+01 3.492712e+01 lineto +2.95288e+01 4.270112e+01 lineto +2.726878e+01 4.328954e+01 lineto +closepath +gsave +5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor +fill +grestore +newpath +2.726878e+01 5.106354e+01 moveto +2.726878e+01 4.328954e+01 lineto +2.95288e+01 4.270112e+01 lineto +2.95288e+01 5.047512e+01 lineto +2.726878e+01 5.106354e+01 lineto +closepath +gsave +5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor +fill +grestore +newpath +2.726878e+01 5.883754e+01 moveto +2.726878e+01 5.106354e+01 lineto +2.95288e+01 5.047512e+01 lineto +2.95288e+01 5.824912e+01 lineto +2.726878e+01 5.883754e+01 lineto +closepath +gsave +5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor +fill +grestore +newpath +2.726878e+01 6.661154e+01 moveto +2.726878e+01 5.883754e+01 lineto +2.95288e+01 5.824912e+01 lineto +2.95288e+01 6.602312e+01 lineto +2.726878e+01 6.661154e+01 lineto +closepath +gsave +5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor +fill +grestore +newpath +2.726878e+01 7.438554e+01 moveto +2.726878e+01 6.661154e+01 lineto +2.95288e+01 6.602312e+01 lineto +2.95288e+01 7.379712e+01 lineto +2.726878e+01 7.438554e+01 lineto +closepath +gsave +5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor +fill +grestore +newpath +2.726878e+01 8.215954e+01 moveto +2.726878e+01 7.438554e+01 lineto +2.95288e+01 7.379712e+01 lineto +2.95288e+01 8.157112e+01 lineto +2.726878e+01 8.215954e+01 lineto +closepath +gsave +5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor +fill +grestore +newpath +2.726878e+01 8.993354e+01 moveto +2.726878e+01 8.215954e+01 lineto +2.95288e+01 8.157112e+01 lineto +2.95288e+01 8.934512e+01 lineto +2.726878e+01 8.993354e+01 lineto +closepath +gsave +5.49293e-01 5.49293e-01 6.866163e-01 setrgbcolor +fill +grestore +newpath +2.95288e+01 1.937912e+01 moveto +2.95288e+01 1.160512e+01 lineto +3.200751e+01 1.106845e+01 lineto +3.200751e+01 1.884245e+01 lineto +2.95288e+01 1.937912e+01 lineto +closepath +gsave +5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor +fill +grestore +newpath +2.95288e+01 2.715312e+01 moveto +2.95288e+01 1.937912e+01 lineto +3.200751e+01 1.884245e+01 lineto +3.200751e+01 2.661645e+01 lineto +2.95288e+01 2.715312e+01 lineto +closepath +gsave +5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor +fill +grestore +newpath +2.95288e+01 3.492712e+01 moveto +2.95288e+01 2.715312e+01 lineto +3.200751e+01 2.661645e+01 lineto +3.200751e+01 3.439045e+01 lineto +2.95288e+01 3.492712e+01 lineto +closepath +gsave +5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor +fill +grestore +newpath +2.95288e+01 4.270112e+01 moveto +2.95288e+01 3.492712e+01 lineto +3.200751e+01 3.439045e+01 lineto +3.200751e+01 4.216445e+01 lineto +2.95288e+01 4.270112e+01 lineto +closepath +gsave +5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor +fill +grestore +newpath +2.95288e+01 5.047512e+01 moveto +2.95288e+01 4.270112e+01 lineto +3.200751e+01 4.216445e+01 lineto +3.200751e+01 4.993845e+01 lineto +2.95288e+01 5.047512e+01 lineto +closepath +gsave +5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor +fill +grestore +newpath +2.95288e+01 5.824912e+01 moveto +2.95288e+01 5.047512e+01 lineto +3.200751e+01 4.993845e+01 lineto +3.200751e+01 5.771245e+01 lineto +2.95288e+01 5.824912e+01 lineto +closepath +gsave +5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor +fill +grestore +newpath +2.95288e+01 6.602312e+01 moveto +2.95288e+01 5.824912e+01 lineto +3.200751e+01 5.771245e+01 lineto +3.200751e+01 6.548645e+01 lineto +2.95288e+01 6.602312e+01 lineto +closepath +gsave +5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor +fill +grestore +newpath +2.95288e+01 7.379712e+01 moveto +2.95288e+01 6.602312e+01 lineto +3.200751e+01 6.548645e+01 lineto +3.200751e+01 7.326045e+01 lineto +2.95288e+01 7.379712e+01 lineto +closepath +gsave +5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor +fill +grestore +newpath +2.95288e+01 8.157112e+01 moveto +2.95288e+01 7.379712e+01 lineto +3.200751e+01 7.326045e+01 lineto +3.200751e+01 8.103445e+01 lineto +2.95288e+01 8.157112e+01 lineto +closepath +gsave +5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor +fill +grestore +newpath +2.95288e+01 8.934512e+01 moveto +2.95288e+01 8.157112e+01 lineto +3.200751e+01 8.103445e+01 lineto +3.200751e+01 8.880845e+01 lineto +2.95288e+01 8.934512e+01 lineto +closepath +gsave +5.68295e-01 5.68295e-01 7.103687e-01 setrgbcolor +fill +grestore +newpath +3.200751e+01 1.884245e+01 moveto +3.200751e+01 1.106845e+01 lineto +3.468963e+01 1.058685e+01 lineto +3.468963e+01 1.836085e+01 lineto +3.200751e+01 1.884245e+01 lineto +closepath +gsave +5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor +fill +grestore +newpath +3.200751e+01 2.661645e+01 moveto +3.200751e+01 1.884245e+01 lineto +3.468963e+01 1.836085e+01 lineto +3.468963e+01 2.613485e+01 lineto +3.200751e+01 2.661645e+01 lineto +closepath +gsave +5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor +fill +grestore +newpath +3.200751e+01 3.439045e+01 moveto +3.200751e+01 2.661645e+01 lineto +3.468963e+01 2.613485e+01 lineto +3.468963e+01 3.390885e+01 lineto +3.200751e+01 3.439045e+01 lineto +closepath +gsave +5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor +fill +grestore +newpath +3.200751e+01 4.216445e+01 moveto +3.200751e+01 3.439045e+01 lineto +3.468963e+01 3.390885e+01 lineto +3.468963e+01 4.168285e+01 lineto +3.200751e+01 4.216445e+01 lineto +closepath +gsave +5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor +fill +grestore +newpath +3.200751e+01 4.993845e+01 moveto +3.200751e+01 4.216445e+01 lineto +3.468963e+01 4.168285e+01 lineto +3.468963e+01 4.945685e+01 lineto +3.200751e+01 4.993845e+01 lineto +closepath +gsave +5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor +fill +grestore +newpath +3.200751e+01 5.771245e+01 moveto +3.200751e+01 4.993845e+01 lineto +3.468963e+01 4.945685e+01 lineto +3.468963e+01 5.723085e+01 lineto +3.200751e+01 5.771245e+01 lineto +closepath +gsave +5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor +fill +grestore +newpath +3.200751e+01 6.548645e+01 moveto +3.200751e+01 5.771245e+01 lineto +3.468963e+01 5.723085e+01 lineto +3.468963e+01 6.500485e+01 lineto +3.200751e+01 6.548645e+01 lineto +closepath +gsave +5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor +fill +grestore +newpath +3.200751e+01 7.326045e+01 moveto +3.200751e+01 6.548645e+01 lineto +3.468963e+01 6.500485e+01 lineto +3.468963e+01 7.277885e+01 lineto +3.200751e+01 7.326045e+01 lineto +closepath +gsave +5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor +fill +grestore +newpath +3.200751e+01 8.103445e+01 moveto +3.200751e+01 7.326045e+01 lineto +3.468963e+01 7.277885e+01 lineto +3.468963e+01 8.055285e+01 lineto +3.200751e+01 8.103445e+01 lineto +closepath +gsave +5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor +fill +grestore +newpath +3.200751e+01 8.880845e+01 moveto +3.200751e+01 8.103445e+01 lineto +3.468963e+01 8.055285e+01 lineto +3.468963e+01 8.832685e+01 lineto +3.200751e+01 8.880845e+01 lineto +closepath +gsave +5.876546e-01 5.876546e-01 7.345683e-01 setrgbcolor +fill +grestore +newpath +3.468963e+01 1.836085e+01 moveto +3.468963e+01 1.058685e+01 lineto +3.755863e+01 1.016329e+01 lineto +3.755863e+01 1.793729e+01 lineto +3.468963e+01 1.836085e+01 lineto +closepath +gsave +6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor +fill +grestore +newpath +3.468963e+01 2.613485e+01 moveto +3.468963e+01 1.836085e+01 lineto +3.755863e+01 1.793729e+01 lineto +3.755863e+01 2.571129e+01 lineto +3.468963e+01 2.613485e+01 lineto +closepath +gsave +6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor +fill +grestore +newpath +3.468963e+01 3.390885e+01 moveto +3.468963e+01 2.613485e+01 lineto +3.755863e+01 2.571129e+01 lineto +3.755863e+01 3.348529e+01 lineto +3.468963e+01 3.390885e+01 lineto +closepath +gsave +6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor +fill +grestore +newpath +3.468963e+01 4.168285e+01 moveto +3.468963e+01 3.390885e+01 lineto +3.755863e+01 3.348529e+01 lineto +3.755863e+01 4.125929e+01 lineto +3.468963e+01 4.168285e+01 lineto +closepath +gsave +6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor +fill +grestore +newpath +3.468963e+01 4.945685e+01 moveto +3.468963e+01 4.168285e+01 lineto +3.755863e+01 4.125929e+01 lineto +3.755863e+01 4.903329e+01 lineto +3.468963e+01 4.945685e+01 lineto +closepath +gsave +6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor +fill +grestore +newpath +3.468963e+01 5.723085e+01 moveto +3.468963e+01 4.945685e+01 lineto +3.755863e+01 4.903329e+01 lineto +3.755863e+01 5.680729e+01 lineto +3.468963e+01 5.723085e+01 lineto +closepath +gsave +6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor +fill +grestore +newpath +3.468963e+01 6.500485e+01 moveto +3.468963e+01 5.723085e+01 lineto +3.755863e+01 5.680729e+01 lineto +3.755863e+01 6.458129e+01 lineto +3.468963e+01 6.500485e+01 lineto +closepath +gsave +6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor +fill +grestore +newpath +3.468963e+01 7.277885e+01 moveto +3.468963e+01 6.500485e+01 lineto +3.755863e+01 6.458129e+01 lineto +3.755863e+01 7.235529e+01 lineto +3.468963e+01 7.277885e+01 lineto +closepath +gsave +6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor +fill +grestore +newpath +3.468963e+01 8.055285e+01 moveto +3.468963e+01 7.277885e+01 lineto +3.755863e+01 7.235529e+01 lineto +3.755863e+01 8.012929e+01 lineto +3.468963e+01 8.055285e+01 lineto +closepath +gsave +6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor +fill +grestore +newpath +3.468963e+01 8.832685e+01 moveto +3.468963e+01 8.055285e+01 lineto +3.755863e+01 8.012929e+01 lineto +3.755863e+01 8.790329e+01 lineto +3.468963e+01 8.832685e+01 lineto +closepath +gsave +6.071311e-01 6.071311e-01 7.589139e-01 setrgbcolor +fill +grestore +newpath +3.755863e+01 1.793729e+01 moveto +3.755863e+01 1.016329e+01 lineto +4.059681e+01 9.80037e+00 lineto +4.059681e+01 1.757437e+01 lineto +3.755863e+01 1.793729e+01 lineto +closepath +gsave +6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor +fill +grestore +newpath +3.755863e+01 2.571129e+01 moveto +3.755863e+01 1.793729e+01 lineto +4.059681e+01 1.757437e+01 lineto +4.059681e+01 2.534837e+01 lineto +3.755863e+01 2.571129e+01 lineto +closepath +gsave +6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor +fill +grestore +newpath +3.755863e+01 3.348529e+01 moveto +3.755863e+01 2.571129e+01 lineto +4.059681e+01 2.534837e+01 lineto +4.059681e+01 3.312237e+01 lineto +3.755863e+01 3.348529e+01 lineto +closepath +gsave +6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor +fill +grestore +newpath +3.755863e+01 4.125929e+01 moveto +3.755863e+01 3.348529e+01 lineto +4.059681e+01 3.312237e+01 lineto +4.059681e+01 4.089637e+01 lineto +3.755863e+01 4.125929e+01 lineto +closepath +gsave +6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor +fill +grestore +newpath +3.755863e+01 4.903329e+01 moveto +3.755863e+01 4.125929e+01 lineto +4.059681e+01 4.089637e+01 lineto +4.059681e+01 4.867037e+01 lineto +3.755863e+01 4.903329e+01 lineto +closepath +gsave +6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor +fill +grestore +newpath +3.755863e+01 5.680729e+01 moveto +3.755863e+01 4.903329e+01 lineto +4.059681e+01 4.867037e+01 lineto +4.059681e+01 5.644437e+01 lineto +3.755863e+01 5.680729e+01 lineto +closepath +gsave +6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor +fill +grestore +newpath +3.755863e+01 6.458129e+01 moveto +3.755863e+01 5.680729e+01 lineto +4.059681e+01 5.644437e+01 lineto +4.059681e+01 6.421837e+01 lineto +3.755863e+01 6.458129e+01 lineto +closepath +gsave +6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor +fill +grestore +newpath +3.755863e+01 7.235529e+01 moveto +3.755863e+01 6.458129e+01 lineto +4.059681e+01 6.421837e+01 lineto +4.059681e+01 7.199237e+01 lineto +3.755863e+01 7.235529e+01 lineto +closepath +gsave +6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor +fill +grestore +newpath +3.755863e+01 8.012929e+01 moveto +3.755863e+01 7.235529e+01 lineto +4.059681e+01 7.199237e+01 lineto +4.059681e+01 7.976637e+01 lineto +3.755863e+01 8.012929e+01 lineto +closepath +gsave +6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor +fill +grestore +newpath +3.755863e+01 8.790329e+01 moveto +3.755863e+01 8.012929e+01 lineto +4.059681e+01 7.976637e+01 lineto +4.059681e+01 8.754037e+01 lineto +3.755863e+01 8.790329e+01 lineto +closepath +gsave +6.264847e-01 6.264847e-01 7.831059e-01 setrgbcolor +fill +grestore +newpath +4.059681e+01 1.757437e+01 moveto +4.059681e+01 9.80037e+00 lineto +4.378544e+01 9.500336e+00 lineto +4.378544e+01 1.727434e+01 lineto +4.059681e+01 1.757437e+01 lineto +closepath +gsave +6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor +fill +grestore +newpath +4.059681e+01 2.534837e+01 moveto +4.059681e+01 1.757437e+01 lineto +4.378544e+01 1.727434e+01 lineto +4.378544e+01 2.504834e+01 lineto +4.059681e+01 2.534837e+01 lineto +closepath +gsave +6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor +fill +grestore +newpath +4.059681e+01 3.312237e+01 moveto +4.059681e+01 2.534837e+01 lineto +4.378544e+01 2.504834e+01 lineto +4.378544e+01 3.282234e+01 lineto +4.059681e+01 3.312237e+01 lineto +closepath +gsave +6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor +fill +grestore +newpath +4.059681e+01 4.089637e+01 moveto +4.059681e+01 3.312237e+01 lineto +4.378544e+01 3.282234e+01 lineto +4.378544e+01 4.059634e+01 lineto +4.059681e+01 4.089637e+01 lineto +closepath +gsave +6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor +fill +grestore +newpath +4.059681e+01 4.867037e+01 moveto +4.059681e+01 4.089637e+01 lineto +4.378544e+01 4.059634e+01 lineto +4.378544e+01 4.837034e+01 lineto +4.059681e+01 4.867037e+01 lineto +closepath +gsave +6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor +fill +grestore +newpath +4.059681e+01 5.644437e+01 moveto +4.059681e+01 4.867037e+01 lineto +4.378544e+01 4.837034e+01 lineto +4.378544e+01 5.614434e+01 lineto +4.059681e+01 5.644437e+01 lineto +closepath +gsave +6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor +fill +grestore +newpath +4.059681e+01 6.421837e+01 moveto +4.059681e+01 5.644437e+01 lineto +4.378544e+01 5.614434e+01 lineto +4.378544e+01 6.391834e+01 lineto +4.059681e+01 6.421837e+01 lineto +closepath +gsave +6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor +fill +grestore +newpath +4.059681e+01 7.199237e+01 moveto +4.059681e+01 6.421837e+01 lineto +4.378544e+01 6.391834e+01 lineto +4.378544e+01 7.169234e+01 lineto +4.059681e+01 7.199237e+01 lineto +closepath +gsave +6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor +fill +grestore +newpath +4.059681e+01 7.976637e+01 moveto +4.059681e+01 7.199237e+01 lineto +4.378544e+01 7.169234e+01 lineto +4.378544e+01 7.946634e+01 lineto +4.059681e+01 7.976637e+01 lineto +closepath +gsave +6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor +fill +grestore +newpath +4.059681e+01 8.754037e+01 moveto +4.059681e+01 7.976637e+01 lineto +4.378544e+01 7.946634e+01 lineto +4.378544e+01 8.724034e+01 lineto +4.059681e+01 8.754037e+01 lineto +closepath +gsave +6.454841e-01 6.454841e-01 8.068551e-01 setrgbcolor +fill +grestore +newpath +4.378544e+01 1.727434e+01 moveto +4.378544e+01 9.500336e+00 lineto +4.710487e+01 9.265036e+00 lineto +4.710487e+01 1.703904e+01 lineto +4.378544e+01 1.727434e+01 lineto +closepath +gsave +6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor +fill +grestore +newpath +4.378544e+01 2.504834e+01 moveto +4.378544e+01 1.727434e+01 lineto +4.710487e+01 1.703904e+01 lineto +4.710487e+01 2.481304e+01 lineto +4.378544e+01 2.504834e+01 lineto +closepath +gsave +6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor +fill +grestore +newpath +4.378544e+01 3.282234e+01 moveto +4.378544e+01 2.504834e+01 lineto +4.710487e+01 2.481304e+01 lineto +4.710487e+01 3.258704e+01 lineto +4.378544e+01 3.282234e+01 lineto +closepath +gsave +6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor +fill +grestore +newpath +4.378544e+01 4.059634e+01 moveto +4.378544e+01 3.282234e+01 lineto +4.710487e+01 3.258704e+01 lineto +4.710487e+01 4.036104e+01 lineto +4.378544e+01 4.059634e+01 lineto +closepath +gsave +6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor +fill +grestore +newpath +4.378544e+01 4.837034e+01 moveto +4.378544e+01 4.059634e+01 lineto +4.710487e+01 4.036104e+01 lineto +4.710487e+01 4.813504e+01 lineto +4.378544e+01 4.837034e+01 lineto +closepath +gsave +6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor +fill +grestore +newpath +4.378544e+01 5.614434e+01 moveto +4.378544e+01 4.837034e+01 lineto +4.710487e+01 4.813504e+01 lineto +4.710487e+01 5.590904e+01 lineto +4.378544e+01 5.614434e+01 lineto +closepath +gsave +6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor +fill +grestore +newpath +4.378544e+01 6.391834e+01 moveto +4.378544e+01 5.614434e+01 lineto +4.710487e+01 5.590904e+01 lineto +4.710487e+01 6.368304e+01 lineto +4.378544e+01 6.391834e+01 lineto +closepath +gsave +6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor +fill +grestore +newpath +4.378544e+01 7.169234e+01 moveto +4.378544e+01 6.391834e+01 lineto +4.710487e+01 6.368304e+01 lineto +4.710487e+01 7.145704e+01 lineto +4.378544e+01 7.169234e+01 lineto +closepath +gsave +6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor +fill +grestore +newpath +4.378544e+01 7.946634e+01 moveto +4.378544e+01 7.169234e+01 lineto +4.710487e+01 7.145704e+01 lineto +4.710487e+01 7.923104e+01 lineto +4.378544e+01 7.946634e+01 lineto +closepath +gsave +6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor +fill +grestore +newpath +4.378544e+01 8.724034e+01 moveto +4.378544e+01 7.946634e+01 lineto +4.710487e+01 7.923104e+01 lineto +4.710487e+01 8.700504e+01 lineto +4.378544e+01 8.724034e+01 lineto +closepath +gsave +6.639123e-01 6.639123e-01 8.298904e-01 setrgbcolor +fill +grestore +newpath +4.710487e+01 1.703904e+01 moveto +4.710487e+01 9.265036e+00 lineto +5.053463e+01 9.095921e+00 lineto +5.053463e+01 1.686992e+01 lineto +4.710487e+01 1.703904e+01 lineto +closepath +gsave +6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor +fill +grestore +newpath +4.710487e+01 2.481304e+01 moveto +4.710487e+01 1.703904e+01 lineto +5.053463e+01 1.686992e+01 lineto +5.053463e+01 2.464392e+01 lineto +4.710487e+01 2.481304e+01 lineto +closepath +gsave +6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor +fill +grestore +newpath +4.710487e+01 3.258704e+01 moveto +4.710487e+01 2.481304e+01 lineto +5.053463e+01 2.464392e+01 lineto +5.053463e+01 3.241792e+01 lineto +4.710487e+01 3.258704e+01 lineto +closepath +gsave +6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor +fill +grestore +newpath +4.710487e+01 4.036104e+01 moveto +4.710487e+01 3.258704e+01 lineto +5.053463e+01 3.241792e+01 lineto +5.053463e+01 4.019192e+01 lineto +4.710487e+01 4.036104e+01 lineto +closepath +gsave +6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor +fill +grestore +newpath +4.710487e+01 4.813504e+01 moveto +4.710487e+01 4.036104e+01 lineto +5.053463e+01 4.019192e+01 lineto +5.053463e+01 4.796592e+01 lineto +4.710487e+01 4.813504e+01 lineto +closepath +gsave +6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor +fill +grestore +newpath +4.710487e+01 5.590904e+01 moveto +4.710487e+01 4.813504e+01 lineto +5.053463e+01 4.796592e+01 lineto +5.053463e+01 5.573992e+01 lineto +4.710487e+01 5.590904e+01 lineto +closepath +gsave +6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor +fill +grestore +newpath +4.710487e+01 6.368304e+01 moveto +4.710487e+01 5.590904e+01 lineto +5.053463e+01 5.573992e+01 lineto +5.053463e+01 6.351392e+01 lineto +4.710487e+01 6.368304e+01 lineto +closepath +gsave +6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor +fill +grestore +newpath +4.710487e+01 7.145704e+01 moveto +4.710487e+01 6.368304e+01 lineto +5.053463e+01 6.351392e+01 lineto +5.053463e+01 7.128792e+01 lineto +4.710487e+01 7.145704e+01 lineto +closepath +gsave +6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor +fill +grestore +newpath +4.710487e+01 7.923104e+01 moveto +4.710487e+01 7.145704e+01 lineto +5.053463e+01 7.128792e+01 lineto +5.053463e+01 7.906192e+01 lineto +4.710487e+01 7.923104e+01 lineto +closepath +gsave +6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor +fill +grestore +newpath +4.710487e+01 8.700504e+01 moveto +4.710487e+01 7.923104e+01 lineto +5.053463e+01 7.906192e+01 lineto +5.053463e+01 8.683592e+01 lineto +4.710487e+01 8.700504e+01 lineto +closepath +gsave +6.815717e-01 6.815717e-01 8.519646e-01 setrgbcolor +fill +grestore +newpath +5.053463e+01 1.686992e+01 moveto +5.053463e+01 9.095921e+00 lineto +5.405357e+01 8.994033e+00 lineto +5.405357e+01 1.676803e+01 lineto +5.053463e+01 1.686992e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +5.053463e+01 2.464392e+01 moveto +5.053463e+01 1.686992e+01 lineto +5.405357e+01 1.676803e+01 lineto +5.405357e+01 2.454203e+01 lineto +5.053463e+01 2.464392e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +5.053463e+01 3.241792e+01 moveto +5.053463e+01 2.464392e+01 lineto +5.405357e+01 2.454203e+01 lineto +5.405357e+01 3.231603e+01 lineto +5.053463e+01 3.241792e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +5.053463e+01 4.019192e+01 moveto +5.053463e+01 3.241792e+01 lineto +5.405357e+01 3.231603e+01 lineto +5.405357e+01 4.009003e+01 lineto +5.053463e+01 4.019192e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +5.053463e+01 4.796592e+01 moveto +5.053463e+01 4.019192e+01 lineto +5.405357e+01 4.009003e+01 lineto +5.405357e+01 4.786403e+01 lineto +5.053463e+01 4.796592e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +5.053463e+01 5.573992e+01 moveto +5.053463e+01 4.796592e+01 lineto +5.405357e+01 4.786403e+01 lineto +5.405357e+01 5.563803e+01 lineto +5.053463e+01 5.573992e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +5.053463e+01 6.351392e+01 moveto +5.053463e+01 5.573992e+01 lineto +5.405357e+01 5.563803e+01 lineto +5.405357e+01 6.341203e+01 lineto +5.053463e+01 6.351392e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +5.053463e+01 7.128792e+01 moveto +5.053463e+01 6.351392e+01 lineto +5.405357e+01 6.341203e+01 lineto +5.405357e+01 7.118603e+01 lineto +5.053463e+01 7.128792e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +5.053463e+01 7.906192e+01 moveto +5.053463e+01 7.128792e+01 lineto +5.405357e+01 7.118603e+01 lineto +5.405357e+01 7.896003e+01 lineto +5.053463e+01 7.906192e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +5.053463e+01 8.683592e+01 moveto +5.053463e+01 7.906192e+01 lineto +5.405357e+01 7.896003e+01 lineto +5.405357e+01 8.673403e+01 lineto +5.053463e+01 8.683592e+01 lineto +closepath +gsave +6.982879e-01 6.982879e-01 8.728599e-01 setrgbcolor +fill +grestore +newpath +5.405357e+01 1.676803e+01 moveto +5.405357e+01 8.994033e+00 lineto +5.764e+01 8.96e+00 lineto +5.764e+01 1.6734e+01 lineto +5.405357e+01 1.676803e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +5.405357e+01 2.454203e+01 moveto +5.405357e+01 1.676803e+01 lineto +5.764e+01 1.6734e+01 lineto +5.764e+01 2.4508e+01 lineto +5.405357e+01 2.454203e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +5.405357e+01 3.231603e+01 moveto +5.405357e+01 2.454203e+01 lineto +5.764e+01 2.4508e+01 lineto +5.764e+01 3.2282e+01 lineto +5.405357e+01 3.231603e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +5.405357e+01 4.009003e+01 moveto +5.405357e+01 3.231603e+01 lineto +5.764e+01 3.2282e+01 lineto +5.764e+01 4.0056e+01 lineto +5.405357e+01 4.009003e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +5.405357e+01 4.786403e+01 moveto +5.405357e+01 4.009003e+01 lineto +5.764e+01 4.0056e+01 lineto +5.764e+01 4.783e+01 lineto +5.405357e+01 4.786403e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +5.405357e+01 5.563803e+01 moveto +5.405357e+01 4.786403e+01 lineto +5.764e+01 4.783e+01 lineto +5.764e+01 5.5604e+01 lineto +5.405357e+01 5.563803e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +5.405357e+01 6.341203e+01 moveto +5.405357e+01 5.563803e+01 lineto +5.764e+01 5.5604e+01 lineto +5.764e+01 6.3378e+01 lineto +5.405357e+01 6.341203e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +5.405357e+01 7.118603e+01 moveto +5.405357e+01 6.341203e+01 lineto +5.764e+01 6.3378e+01 lineto +5.764e+01 7.1152e+01 lineto +5.405357e+01 7.118603e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +5.405357e+01 7.896003e+01 moveto +5.405357e+01 7.118603e+01 lineto +5.764e+01 7.1152e+01 lineto +5.764e+01 7.8926e+01 lineto +5.405357e+01 7.896003e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +5.405357e+01 8.673403e+01 moveto +5.405357e+01 7.896003e+01 lineto +5.764e+01 7.8926e+01 lineto +5.764e+01 8.67e+01 lineto +5.405357e+01 8.673403e+01 lineto +closepath +gsave +7.139123e-01 7.139123e-01 8.923904e-01 setrgbcolor +fill +grestore +newpath +5.764e+01 8.67e+01 moveto +6.054289e+01 8.672178e+01 lineto +6.346336e+01 8.678705e+01 lineto +6.638991e+01 8.689555e+01 lineto +6.931096e+01 8.704684e+01 lineto +7.221501e+01 8.724034e+01 lineto +7.509057e+01 8.747527e+01 lineto +7.792632e+01 8.775071e+01 lineto +8.071105e+01 8.806557e+01 lineto +8.343378e+01 8.841862e+01 lineto +8.608376e+01 8.880845e+01 lineto +8.865053e+01 8.923353e+01 lineto +9.112396e+01 8.969219e+01 lineto +9.349429e+01 9.01826e+01 lineto +9.575217e+01 9.070284e+01 lineto +9.788868e+01 9.125085e+01 lineto +9.98954e+01 9.182447e+01 lineto +1.017644e+02 9.242144e+01 lineto +1.034883e+02 9.30394e+01 lineto +1.050603e+02 9.36759e+01 lineto +1.064742e+02 9.432845e+01 lineto +1.077245e+02 9.499446e+01 lineto +1.088061e+02 9.567131e+01 lineto +1.097148e+02 9.635632e+01 lineto +1.104471e+02 9.704679e+01 lineto +1.11e+02 9.774e+01 lineto +1.113714e+02 9.843321e+01 lineto +1.115597e+02 9.912368e+01 lineto +1.115643e+02 9.980869e+01 lineto +1.113852e+02 1.004855e+02 lineto +1.11023e+02 1.011515e+02 lineto +1.104791e+02 1.018041e+02 lineto +1.097558e+02 1.024406e+02 lineto +1.088558e+02 1.030586e+02 lineto +1.077828e+02 1.036555e+02 lineto +1.065409e+02 1.042291e+02 lineto +1.05135e+02 1.047772e+02 lineto +1.035708e+02 1.052974e+02 lineto +1.018544e+02 1.057878e+02 lineto +9.999248e+01 1.062465e+02 lineto +9.799249e+01 1.066715e+02 lineto +9.586229e+01 1.070614e+02 lineto +9.361029e+01 1.074144e+02 lineto +9.124537e+01 1.077293e+02 lineto +8.877688e+01 1.080047e+02 lineto +8.621456e+01 1.082397e+02 lineto +8.356851e+01 1.084332e+02 lineto +8.084917e+01 1.085845e+02 lineto +7.806729e+01 1.086929e+02 lineto +7.523384e+01 1.087582e+02 lineto +7.236e+01 1.0878e+02 lineto +6.945711e+01 1.087582e+02 lineto +6.653664e+01 1.086929e+02 lineto +6.361009e+01 1.085845e+02 lineto +6.068904e+01 1.084332e+02 lineto +5.778499e+01 1.082397e+02 lineto +5.490943e+01 1.080047e+02 lineto +5.207368e+01 1.077293e+02 lineto +4.928895e+01 1.074144e+02 lineto +4.656622e+01 1.070614e+02 lineto +4.391624e+01 1.066715e+02 lineto +4.134947e+01 1.062465e+02 lineto +3.887604e+01 1.057878e+02 lineto +3.650571e+01 1.052974e+02 lineto +3.424783e+01 1.047772e+02 lineto +3.211132e+01 1.042291e+02 lineto +3.01046e+01 1.036555e+02 lineto +2.82356e+01 1.030586e+02 lineto +2.651169e+01 1.024406e+02 lineto +2.493968e+01 1.018041e+02 lineto +2.352577e+01 1.011515e+02 lineto +2.227553e+01 1.004855e+02 lineto +2.119391e+01 9.980869e+01 lineto +2.028518e+01 9.912368e+01 lineto +1.955291e+01 9.843321e+01 lineto +1.9e+01 9.774e+01 lineto +1.862863e+01 9.704679e+01 lineto +1.844027e+01 9.635632e+01 lineto +1.843566e+01 9.567131e+01 lineto +1.861482e+01 9.499446e+01 lineto +1.897704e+01 9.432845e+01 lineto +1.952088e+01 9.36759e+01 lineto +2.024422e+01 9.30394e+01 lineto +2.114419e+01 9.242144e+01 lineto +2.221723e+01 9.182447e+01 lineto +2.345912e+01 9.125085e+01 lineto +2.486495e+01 9.070284e+01 lineto +2.642918e+01 9.01826e+01 lineto +2.814562e+01 8.969219e+01 lineto +3.000752e+01 8.923353e+01 lineto +3.200751e+01 8.880845e+01 lineto +3.413771e+01 8.841862e+01 lineto +3.638971e+01 8.806557e+01 lineto +3.875463e+01 8.775071e+01 lineto +4.122312e+01 8.747527e+01 lineto +4.378544e+01 8.724034e+01 lineto +4.643149e+01 8.704684e+01 lineto +4.915083e+01 8.689555e+01 lineto +5.193271e+01 8.678705e+01 lineto +5.476616e+01 8.672178e+01 lineto +5.764e+01 8.67e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 1 setrgbcolor +fill +grestore +gsave +6.0e-01 6.0e-01 6.0e-01 setrgbcolor +stroke +grestore +newpath +1.842235e+01 1.845074e+01 moveto +1.846202e+01 1.776745e+01 lineto +1.868536e+01 1.709297e+01 lineto +1.909148e+01 1.642996e+01 lineto +1.967878e+01 1.578104e+01 lineto +2.044495e+01 1.514878e+01 lineto +2.138695e+01 1.453565e+01 lineto +2.250107e+01 1.39441e+01 lineto +2.378292e+01 1.337644e+01 lineto +2.522743e+01 1.283492e+01 lineto +2.68289e+01 1.232169e+01 lineto +2.858102e+01 1.183875e+01 lineto +3.047687e+01 1.138802e+01 lineto +3.250896e+01 1.097128e+01 lineto +3.466929e+01 1.059017e+01 lineto +3.694931e+01 1.02462e+01 lineto +3.934004e+01 9.940723e+00 lineto +4.183203e+01 9.674945e+00 lineto +4.441546e+01 9.449915e+00 lineto +4.708013e+01 9.266521e+00 lineto +4.981552e+01 9.125487e+00 lineto +5.261083e+01 9.02737e+00 lineto +5.545504e+01 8.972557e+00 lineto +5.833692e+01 8.961264e+00 lineto +6.124509e+01 8.993536e+00 lineto +6.416808e+01 9.069246e+00 lineto +6.709436e+01 9.188094e+00 lineto +7.001237e+01 9.349612e+00 lineto +7.29106e+01 9.553162e+00 lineto +7.577761e+01 9.797941e+00 lineto +7.860209e+01 1.008298e+01 lineto +8.137288e+01 1.040716e+01 lineto +8.407906e+01 1.07692e+01 lineto +8.670994e+01 1.116767e+01 lineto +8.925514e+01 1.160099e+01 lineto +9.170462e+01 1.206747e+01 lineto +9.404871e+01 1.256525e+01 lineto +9.627816e+01 1.309237e+01 lineto +9.838416e+01 1.364675e+01 lineto +1.003584e+02 1.42262e+01 lineto +1.021931e+02 1.482844e+01 lineto +1.03881e+02 1.545109e+01 lineto +1.054155e+02 1.60917e+01 lineto +1.067905e+02 1.674772e+01 lineto +1.080006e+02 1.741659e+01 lineto +1.090409e+02 1.809565e+01 lineto +1.099074e+02 1.878222e+01 lineto +1.105967e+02 1.94736e+01 lineto +1.111061e+02 2.016706e+01 lineto +1.114335e+02 2.085986e+01 lineto +1.115777e+02 2.154926e+01 lineto +gsave +6.0e-01 6.0e-01 6.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 9.774e+01 moveto +1.11e+02 9.774e+01 lineto +gsave stroke grestore +gsave +newpath +0 0 0 setrgbcolor + +% Comment: canvas init + +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +1.0e+01 setmiterlimit +gsave +/CMMI12 findfont +12.0 scalefont +setfont +8.292611e+01 1.0044e+02 moveto +gsave +[ 0.9 0.0 0.0 0.9 32.1541712779 -553.181917808 ] concat +(\162) show +grestore +grestore +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +grestore +gsave +newpath +0 0 0 setrgbcolor + +% Comment: canvas init + +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +1.0e+01 setmiterlimit +gsave +/CMMI12 findfont +12.0 scalefont +setfont +1.146e+02 5.513401e+01 moveto +gsave +[ 0.9 0.0 0.0 0.9 63.8280595715 -598.487903855 ] concat +(\150) show +grestore +grestore +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +grestore +grestore +grestore showpage + +% --------------------------------------------------------- + +%%Trailer +%%EOF diff --git a/assets/images/polynomial-applications-cylinder.svg b/assets/images/polynomial-applications-cylinder.svg index d9987159..49b64931 100644 --- a/assets/images/polynomial-applications-cylinder.svg +++ b/assets/images/polynomial-applications-cylinder.svg @@ -1,1228 +1,1228 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/polynomial-applications-postal.eps b/assets/images/polynomial-applications-postal.eps index 24d50375..378a1a51 100644 --- a/assets/images/polynomial-applications-postal.eps +++ b/assets/images/polynomial-applications-postal.eps @@ -1,153 +1,153 @@ -%!PS-Adobe-2.0 EPSF-3.0 -%%BoundingBox: 0 0 180 120 -%%Pages: 1 -%%PageOrder: Ascend - -%%BeginProlog -%%BeginProcSet: -/ReEncodeFont { exch findfont << >> copy dup 3 2 roll /Encoding exch put definefont } def -%%EndProcSet -%%EndProlog -%%Page: 1 1 -gsave -newpath -0.0e+00 0.0e+00 moveto -1.8e+02 0.0e+00 lineto -1.8e+02 1.2e+02 lineto -0.0e+00 1.2e+02 lineto -closepath -clip -1 setlinecap -1 setlinejoin -gsave -newpath -gsave -5.0e-01 setlinewidth -newpath -1.66e+02 1.13e+02 moveto -1.66e+02 6.1e+01 lineto -1.14e+02 6.1e+01 lineto -1.14e+02 1.13e+02 lineto -1.66e+02 1.13e+02 lineto -closepath -gsave -7.202137e-01 7.202137e-01 9.002672e-01 setrgbcolor -fill -grestore -newpath -1.66e+02 1.13e+02 moveto -1.66e+02 6.1e+01 lineto -1.14e+02 6.1e+01 lineto -1.14e+02 1.13e+02 lineto -1.66e+02 1.13e+02 lineto -closepath -newpath -1.66e+02 1.13e+02 moveto -1.66e+02 6.1e+01 lineto -1.14e+02 6.1e+01 lineto -1.14e+02 1.13e+02 lineto -1.66e+02 1.13e+02 lineto -closepath -gsave -4.0e-01 4.0e-01 4.0e-01 setrgbcolor -stroke -grestore -newpath -1.14e+02 1.13e+02 moveto -1.14e+02 6.1e+01 lineto -1.8e+01 7.0e+00 lineto -1.8e+01 5.9e+01 lineto -1.14e+02 1.13e+02 lineto -closepath -gsave -7.654716e-01 7.654716e-01 9.568395e-01 setrgbcolor -fill -grestore -newpath -1.14e+02 1.13e+02 moveto -1.14e+02 6.1e+01 lineto -1.8e+01 7.0e+00 lineto -1.8e+01 5.9e+01 lineto -1.14e+02 1.13e+02 lineto -closepath -newpath -1.14e+02 1.13e+02 moveto -1.14e+02 6.1e+01 lineto -1.8e+01 7.0e+00 lineto -1.8e+01 5.9e+01 lineto -1.14e+02 1.13e+02 lineto -closepath -gsave -4.0e-01 4.0e-01 4.0e-01 setrgbcolor -stroke -grestore -newpath -1.66e+02 6.1e+01 moveto -7.0e+01 7.0e+00 lineto -1.8e+01 7.0e+00 lineto -1.14e+02 6.1e+01 lineto -1.66e+02 6.1e+01 lineto -closepath -gsave -6.835537e-01 6.835537e-01 8.544421e-01 setrgbcolor -fill -grestore -newpath -1.66e+02 6.1e+01 moveto -7.0e+01 7.0e+00 lineto -1.8e+01 7.0e+00 lineto -1.14e+02 6.1e+01 lineto -1.66e+02 6.1e+01 lineto -closepath -newpath -1.66e+02 6.1e+01 moveto -7.0e+01 7.0e+00 lineto -1.8e+01 7.0e+00 lineto -1.14e+02 6.1e+01 lineto -1.66e+02 6.1e+01 lineto -closepath -gsave -4.0e-01 4.0e-01 4.0e-01 setrgbcolor -stroke -grestore -grestore -newpath -1.8e+01 5.9e+01 moveto -1.8e+01 7.0e+00 lineto -7.0e+01 7.0e+00 lineto -7.0e+01 5.9e+01 lineto -1.8e+01 5.9e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.0e+01 5.9e+01 moveto -7.0e+01 7.0e+00 lineto -1.66e+02 6.1e+01 lineto -1.66e+02 1.13e+02 lineto -7.0e+01 5.9e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.14e+02 1.13e+02 moveto -1.8e+01 5.9e+01 lineto -7.0e+01 5.9e+01 lineto -1.66e+02 1.13e+02 lineto -1.14e+02 1.13e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -grestore -grestore showpage - -% --------------------------------------------------------- - -%%Trailer -%%EOF +%!PS-Adobe-2.0 EPSF-3.0 +%%BoundingBox: 0 0 180 120 +%%Pages: 1 +%%PageOrder: Ascend + +%%BeginProlog +%%BeginProcSet: +/ReEncodeFont { exch findfont << >> copy dup 3 2 roll /Encoding exch put definefont } def +%%EndProcSet +%%EndProlog +%%Page: 1 1 +gsave +newpath +0.0e+00 0.0e+00 moveto +1.8e+02 0.0e+00 lineto +1.8e+02 1.2e+02 lineto +0.0e+00 1.2e+02 lineto +closepath +clip +1 setlinecap +1 setlinejoin +gsave +newpath +gsave +5.0e-01 setlinewidth +newpath +1.66e+02 1.13e+02 moveto +1.66e+02 6.1e+01 lineto +1.14e+02 6.1e+01 lineto +1.14e+02 1.13e+02 lineto +1.66e+02 1.13e+02 lineto +closepath +gsave +7.202137e-01 7.202137e-01 9.002672e-01 setrgbcolor +fill +grestore +newpath +1.66e+02 1.13e+02 moveto +1.66e+02 6.1e+01 lineto +1.14e+02 6.1e+01 lineto +1.14e+02 1.13e+02 lineto +1.66e+02 1.13e+02 lineto +closepath +newpath +1.66e+02 1.13e+02 moveto +1.66e+02 6.1e+01 lineto +1.14e+02 6.1e+01 lineto +1.14e+02 1.13e+02 lineto +1.66e+02 1.13e+02 lineto +closepath +gsave +4.0e-01 4.0e-01 4.0e-01 setrgbcolor +stroke +grestore +newpath +1.14e+02 1.13e+02 moveto +1.14e+02 6.1e+01 lineto +1.8e+01 7.0e+00 lineto +1.8e+01 5.9e+01 lineto +1.14e+02 1.13e+02 lineto +closepath +gsave +7.654716e-01 7.654716e-01 9.568395e-01 setrgbcolor +fill +grestore +newpath +1.14e+02 1.13e+02 moveto +1.14e+02 6.1e+01 lineto +1.8e+01 7.0e+00 lineto +1.8e+01 5.9e+01 lineto +1.14e+02 1.13e+02 lineto +closepath +newpath +1.14e+02 1.13e+02 moveto +1.14e+02 6.1e+01 lineto +1.8e+01 7.0e+00 lineto +1.8e+01 5.9e+01 lineto +1.14e+02 1.13e+02 lineto +closepath +gsave +4.0e-01 4.0e-01 4.0e-01 setrgbcolor +stroke +grestore +newpath +1.66e+02 6.1e+01 moveto +7.0e+01 7.0e+00 lineto +1.8e+01 7.0e+00 lineto +1.14e+02 6.1e+01 lineto +1.66e+02 6.1e+01 lineto +closepath +gsave +6.835537e-01 6.835537e-01 8.544421e-01 setrgbcolor +fill +grestore +newpath +1.66e+02 6.1e+01 moveto +7.0e+01 7.0e+00 lineto +1.8e+01 7.0e+00 lineto +1.14e+02 6.1e+01 lineto +1.66e+02 6.1e+01 lineto +closepath +newpath +1.66e+02 6.1e+01 moveto +7.0e+01 7.0e+00 lineto +1.8e+01 7.0e+00 lineto +1.14e+02 6.1e+01 lineto +1.66e+02 6.1e+01 lineto +closepath +gsave +4.0e-01 4.0e-01 4.0e-01 setrgbcolor +stroke +grestore +grestore +newpath +1.8e+01 5.9e+01 moveto +1.8e+01 7.0e+00 lineto +7.0e+01 7.0e+00 lineto +7.0e+01 5.9e+01 lineto +1.8e+01 5.9e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.0e+01 5.9e+01 moveto +7.0e+01 7.0e+00 lineto +1.66e+02 6.1e+01 lineto +1.66e+02 1.13e+02 lineto +7.0e+01 5.9e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.14e+02 1.13e+02 moveto +1.8e+01 5.9e+01 lineto +7.0e+01 5.9e+01 lineto +1.66e+02 1.13e+02 lineto +1.14e+02 1.13e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +grestore +grestore showpage + +% --------------------------------------------------------- + +%%Trailer +%%EOF diff --git a/assets/images/polynomial-applications-postal.svg b/assets/images/polynomial-applications-postal.svg index 5afc674f..b348b6ed 100644 --- a/assets/images/polynomial-applications-postal.svg +++ b/assets/images/polynomial-applications-postal.svg @@ -1,13 +1,13 @@ - - - - - - - - - - - - - + + + + + + + + + + + + + diff --git a/assets/images/polynomial-applications-trough.eps b/assets/images/polynomial-applications-trough.eps index 3ff3ac57..ae6905ef 100644 --- a/assets/images/polynomial-applications-trough.eps +++ b/assets/images/polynomial-applications-trough.eps @@ -1,114 +1,114 @@ -%!PS-Adobe-2.0 EPSF-3.0 -%%BoundingBox: 0 0 180 120 -%%Pages: 1 -%%PageOrder: Ascend - -%%BeginProlog -%%BeginProcSet: -/ReEncodeFont { exch findfont << >> copy dup 3 2 roll /Encoding exch put definefont } def -%%EndProcSet -%%EndProlog -%%Page: 1 1 -gsave -newpath -0.0e+00 0.0e+00 moveto -1.8e+02 0.0e+00 lineto -1.8e+02 1.2e+02 lineto -0.0e+00 1.2e+02 lineto -closepath -clip -1 setlinecap -1 setlinejoin -gsave -newpath -gsave -6.0e-01 setlinewidth -newpath -1.744e+02 1.1e+02 moveto -1.144e+02 3.0e+01 lineto -5.44e+01 1.1e+02 lineto -1.744e+02 1.1e+02 lineto -closepath -gsave -7.762382e-01 7.762382e-01 9.702978e-01 setrgbcolor -fill -grestore -newpath -1.744e+02 1.1e+02 moveto -1.144e+02 3.0e+01 lineto -5.44e+01 1.1e+02 lineto -1.744e+02 1.1e+02 lineto -closepath -gsave -6.0e-01 6.0e-01 6.0e-01 setrgbcolor -stroke -grestore -newpath -5.44e+01 1.1e+02 moveto -1.144e+02 3.0e+01 lineto -7.12e+01 6.0e+00 lineto -1.12e+01 8.6e+01 lineto -5.44e+01 1.1e+02 lineto -closepath -gsave -7.219162e-01 7.219162e-01 9.023953e-01 setrgbcolor -fill -grestore -newpath -5.44e+01 1.1e+02 moveto -1.144e+02 3.0e+01 lineto -7.12e+01 6.0e+00 lineto -1.12e+01 8.6e+01 lineto -5.44e+01 1.1e+02 lineto -closepath -gsave -6.0e-01 6.0e-01 6.0e-01 setrgbcolor -stroke -grestore -grestore -5.0e-01 setlinewidth -newpath -1.12e+01 8.6e+01 moveto -7.12e+01 6.0e+00 lineto -1.312e+02 8.6e+01 lineto -1.12e+01 8.6e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.312e+02 8.6e+01 moveto -7.12e+01 6.0e+00 lineto -1.144e+02 3.0e+01 lineto -1.744e+02 1.1e+02 lineto -1.312e+02 8.6e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.44e+01 1.1e+02 moveto -1.12e+01 8.6e+01 lineto -1.312e+02 8.6e+01 lineto -1.744e+02 1.1e+02 lineto -5.44e+01 1.1e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath --6.8e+00 8.6e+01 moveto -1.552e+02 8.6e+01 lineto -7.12e+01 8.6e+01 moveto -7.12e+01 -1.0e+01 lineto -newpath -grestore -grestore showpage - -% --------------------------------------------------------- - -%%Trailer -%%EOF +%!PS-Adobe-2.0 EPSF-3.0 +%%BoundingBox: 0 0 180 120 +%%Pages: 1 +%%PageOrder: Ascend + +%%BeginProlog +%%BeginProcSet: +/ReEncodeFont { exch findfont << >> copy dup 3 2 roll /Encoding exch put definefont } def +%%EndProcSet +%%EndProlog +%%Page: 1 1 +gsave +newpath +0.0e+00 0.0e+00 moveto +1.8e+02 0.0e+00 lineto +1.8e+02 1.2e+02 lineto +0.0e+00 1.2e+02 lineto +closepath +clip +1 setlinecap +1 setlinejoin +gsave +newpath +gsave +6.0e-01 setlinewidth +newpath +1.744e+02 1.1e+02 moveto +1.144e+02 3.0e+01 lineto +5.44e+01 1.1e+02 lineto +1.744e+02 1.1e+02 lineto +closepath +gsave +7.762382e-01 7.762382e-01 9.702978e-01 setrgbcolor +fill +grestore +newpath +1.744e+02 1.1e+02 moveto +1.144e+02 3.0e+01 lineto +5.44e+01 1.1e+02 lineto +1.744e+02 1.1e+02 lineto +closepath +gsave +6.0e-01 6.0e-01 6.0e-01 setrgbcolor +stroke +grestore +newpath +5.44e+01 1.1e+02 moveto +1.144e+02 3.0e+01 lineto +7.12e+01 6.0e+00 lineto +1.12e+01 8.6e+01 lineto +5.44e+01 1.1e+02 lineto +closepath +gsave +7.219162e-01 7.219162e-01 9.023953e-01 setrgbcolor +fill +grestore +newpath +5.44e+01 1.1e+02 moveto +1.144e+02 3.0e+01 lineto +7.12e+01 6.0e+00 lineto +1.12e+01 8.6e+01 lineto +5.44e+01 1.1e+02 lineto +closepath +gsave +6.0e-01 6.0e-01 6.0e-01 setrgbcolor +stroke +grestore +grestore +5.0e-01 setlinewidth +newpath +1.12e+01 8.6e+01 moveto +7.12e+01 6.0e+00 lineto +1.312e+02 8.6e+01 lineto +1.12e+01 8.6e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.312e+02 8.6e+01 moveto +7.12e+01 6.0e+00 lineto +1.144e+02 3.0e+01 lineto +1.744e+02 1.1e+02 lineto +1.312e+02 8.6e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.44e+01 1.1e+02 moveto +1.12e+01 8.6e+01 lineto +1.312e+02 8.6e+01 lineto +1.744e+02 1.1e+02 lineto +5.44e+01 1.1e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +-6.8e+00 8.6e+01 moveto +1.552e+02 8.6e+01 lineto +7.12e+01 8.6e+01 moveto +7.12e+01 -1.0e+01 lineto +newpath +grestore +grestore showpage + +% --------------------------------------------------------- + +%%Trailer +%%EOF diff --git a/assets/images/polynomial-applications-trough.svg b/assets/images/polynomial-applications-trough.svg index 133f3c78..f9c00870 100644 --- a/assets/images/polynomial-applications-trough.svg +++ b/assets/images/polynomial-applications-trough.svg @@ -1,12 +1,12 @@ - - - - - - - - - - - - + + + + + + + + + + + + diff --git a/assets/images/polynomial-sign-chart-1-graph.svg b/assets/images/polynomial-sign-chart-1-graph.svg index 1a93d5aa..89ef4353 100644 --- a/assets/images/polynomial-sign-chart-1-graph.svg +++ b/assets/images/polynomial-sign-chart-1-graph.svg @@ -1,82 +1,82 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/polynomial-sign-chart-1.svg b/assets/images/polynomial-sign-chart-1.svg index d62d1a2f..a2ab328c 100644 --- a/assets/images/polynomial-sign-chart-1.svg +++ b/assets/images/polynomial-sign-chart-1.svg @@ -1,265 +1,265 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/quadratic-1-CCD.svg b/assets/images/quadratic-1-CCD.svg index 5c3dd796..803a192e 100644 --- a/assets/images/quadratic-1-CCD.svg +++ b/assets/images/quadratic-1-CCD.svg @@ -1,39 +1,39 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/quadratic-3-CCU.svg b/assets/images/quadratic-3-CCU.svg index 4a8e4b7d..4cce964b 100644 --- a/assets/images/quadratic-3-CCU.svg +++ b/assets/images/quadratic-3-CCU.svg @@ -1,67 +1,67 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/quadratic-change-linear.svg b/assets/images/quadratic-change-linear.svg index 52391c87..e76ffc70 100644 --- a/assets/images/quadratic-change-linear.svg +++ b/assets/images/quadratic-change-linear.svg @@ -1,243 +1,243 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/quadratic-ez-find-formula.svg b/assets/images/quadratic-ez-find-formula.svg index 977f70e3..b3be69f3 100644 --- a/assets/images/quadratic-ez-find-formula.svg +++ b/assets/images/quadratic-ez-find-formula.svg @@ -1,137 +1,137 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/quadratic-vertex-CCD.svg b/assets/images/quadratic-vertex-CCD.svg index f85f0ffa..770fa455 100644 --- a/assets/images/quadratic-vertex-CCD.svg +++ b/assets/images/quadratic-vertex-CCD.svg @@ -1,54 +1,54 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/quadratic-vertex-CCU.svg b/assets/images/quadratic-vertex-CCU.svg index 8f933f13..0f57165f 100644 --- a/assets/images/quadratic-vertex-CCU.svg +++ b/assets/images/quadratic-vertex-CCU.svg @@ -1,154 +1,154 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/rational-ez-plot.svg b/assets/images/rational-ez-plot.svg index fed12190..201ebc83 100644 --- a/assets/images/rational-ez-plot.svg +++ b/assets/images/rational-ez-plot.svg @@ -1,168 +1,168 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/rational-features-hole-1.svg b/assets/images/rational-features-hole-1.svg index d5a6751e..218845cd 100644 --- a/assets/images/rational-features-hole-1.svg +++ b/assets/images/rational-features-hole-1.svg @@ -1,131 +1,131 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/rational-features-hole-1A-zoom-actual.svg b/assets/images/rational-features-hole-1A-zoom-actual.svg index 9fdf4bbf..71f82017 100644 --- a/assets/images/rational-features-hole-1A-zoom-actual.svg +++ b/assets/images/rational-features-hole-1A-zoom-actual.svg @@ -1,99 +1,99 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/rational-features-hole-1A-zoom.eps b/assets/images/rational-features-hole-1A-zoom.eps index 08428fa9..e0009811 100644 --- a/assets/images/rational-features-hole-1A-zoom.eps +++ b/assets/images/rational-features-hole-1A-zoom.eps @@ -1,708 +1,708 @@ -%!PS-Adobe-2.0 EPSF-3.0 -%%BoundingBox: 0 0 150 150 -%%Pages: 1 -%%PageOrder: Ascend - -%%BeginProlog -%%BeginProcSet: -/ReEncodeFont { exch findfont << >> copy dup 3 2 roll /Encoding exch put definefont } def -%%EndProcSet -%%BeginFont: CMSS10 -%!PS-AdobeFont-1.0: CMSS10 003.002 -%%Title: CMSS10 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMSS10. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments - -FontDirectory/CMSS10 known{/CMSS10 findfont dup/UniqueID known{dup -/UniqueID get 5000803 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /CMSS10 def -/FontBBox {-61 -250 999 759 }readonly def -/UniqueID 5000803 def -/PaintType 0 def -/FontInfo 9 dict dup begin - /version (003.002) readonly def - /Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMSS10.) readonly def - /FullName (CMSS10) readonly def - /FamilyName (Computer Modern) readonly def - /Weight (Medium) readonly def - /ItalicAngle 0 def - /isFixedPitch false def - /UnderlinePosition -100 def - /UnderlineThickness 50 def -end readonly def -/Encoding 256 array - 0 1 255 { 1 index exch /.notdef put} for -dup 0 /Gamma put -dup 1 /Delta put -dup 2 /Theta put -dup 3 /Lambda put -dup 4 /Xi put -dup 5 /Pi put -dup 6 /Sigma put -dup 7 /Upsilon put -dup 8 /Phi put -dup 9 /Psi put -dup 10 /Omega put -dup 11 /ff put -dup 12 /fi put -dup 13 /fl put -dup 14 /ffi put -dup 15 /ffl put -dup 16 /dotlessi put -dup 17 /dotlessj put -dup 18 /grave put -dup 19 /acute put -dup 20 /caron put -dup 21 /breve put -dup 22 /macron put -dup 23 /ring put -dup 24 /cedilla put -dup 25 /germandbls put -dup 26 /ae put -dup 27 /oe put -dup 28 /oslash put -dup 29 /AE put -dup 30 /OE put -dup 31 /Oslash put -dup 32 /suppress put -dup 33 /exclam put -dup 34 /quotedblright put -dup 35 /numbersign put -dup 36 /dollar put -dup 37 /percent put -dup 38 /ampersand put -dup 39 /quoteright put -dup 40 /parenleft put -dup 41 /parenright put -dup 42 /asterisk put -dup 43 /plus put -dup 44 /comma put -dup 45 /hyphen put -dup 46 /period put -dup 47 /slash put -dup 48 /zero put -dup 49 /one put -dup 50 /two put -dup 51 /three put -dup 52 /four put -dup 53 /five put -dup 54 /six put -dup 55 /seven put -dup 56 /eight put -dup 57 /nine put -dup 58 /colon put -dup 59 /semicolon put -dup 60 /exclamdown put -dup 61 /equal put -dup 62 /questiondown put -dup 63 /question put -dup 64 /at put -dup 65 /A put -dup 66 /B put -dup 67 /C put -dup 68 /D put -dup 69 /E put -dup 70 /F put -dup 71 /G put -dup 72 /H put -dup 73 /I put -dup 74 /J put -dup 75 /K put -dup 76 /L put -dup 77 /M put -dup 78 /N put -dup 79 /O put -dup 80 /P put -dup 81 /Q put -dup 82 /R put -dup 83 /S put -dup 84 /T put -dup 85 /U put -dup 86 /V put -dup 87 /W put -dup 88 /X put -dup 89 /Y put -dup 90 /Z put -dup 91 /bracketleft put -dup 92 /quotedblleft put -dup 93 /bracketright put -dup 94 /circumflex put -dup 95 /dotaccent put -dup 96 /quoteleft put -dup 97 /a put -dup 98 /b put -dup 99 /c put -dup 100 /d put -dup 101 /e put -dup 102 /f put -dup 103 /g put -dup 104 /h put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 108 /l put -dup 109 /m put -dup 110 /n put -dup 111 /o put -dup 112 /p put -dup 113 /q put -dup 114 /r put -dup 115 /s put -dup 116 /t put -dup 117 /u put -dup 118 /v put -dup 119 /w put -dup 120 /x put -dup 121 /y put -dup 122 /z put -dup 123 /endash put -dup 124 /emdash put -dup 125 /hungarumlaut put -dup 126 /tilde put -dup 127 /dieresis put -dup 128 /suppress put -dup 160 /space put -dup 161 /Gamma put -dup 162 /Delta put -dup 163 /Theta put -dup 164 /Lambda put -dup 165 /Xi put -dup 166 /Pi put -dup 167 /Sigma put -dup 168 /Upsilon put -dup 169 /Phi put -dup 170 /Psi put -dup 171 /sfthyphen put -dup 172 /nbspace put -dup 173 /Omega put -dup 174 /ff put -dup 175 /fi put -dup 176 /fl put -dup 177 /ffi put -dup 178 /ffl put -dup 179 /dotlessi put -dup 180 /dotlessj put -dup 181 /grave put -dup 182 /acute put -dup 183 /caron put -dup 184 /breve put -dup 185 /macron put -dup 186 /ring put -dup 187 /cedilla put -dup 188 /germandbls put -dup 189 /ae put -dup 190 /oe put -dup 191 /oslash put -dup 192 /AE put -dup 193 /OE put -dup 194 /Oslash put -dup 195 /suppress put -dup 196 /dieresis put -readonly def -currentdict end -currentfile eexec -D9D66F633B846AB284BCF8B0411B772DE5CD06DFE1BE899059C588357426D7A07B684C079A47D271 -426064AD18CB9750D8A986D1D67C1B2AEEF8CE785CC19C81DE96489F740045C5E342F02DA1C9F9F3 -C167651E646F1A67CF379789E311EF91511D0F605B045B279357D6FC8537C233E7AEE6A4FDBE73E7 -5A39EB206D20A6F61021961B748D419EBEEB028B592124E174CA595C108E12725B9875544955CFFD -028B698EF742BC8C19F979E35B8E99CADDDDC89CC6C59733F2A24BC3AF36AD861319147A4A219ECB -92D0D9F6228B51A97C295470093CA270C4488BB4EB864B4863941B9739638D2E6F3CC778582B46AE -B4E466D89D1C211225274356A4BC90F3274C6AA56E200249B7D0949A3FD4185DCB3E5286910EFD7C -A72D5D8E8052C96F388D12094B87D3705CE64459558CF024667C0FE96CBB32B0BC9E51037D7BD62B -E4B05FF99384E71D78441A79B0B1DBA1CAE02434A9FAE46596FB86B873B1670DAE0BAF516445A0DD -C127F8FF3ADA0B10EC30A9CC1F7E9248828B5E8AB46C3FE4154B80A54128A08777F5F9B8C519C7E3 -B632B3476F007FA156E9F39FBE57638B4214CD2BA79BA9DDA0F4C073AED814ABCCC2F7906C57A872 -C00E67FF03AC120029DAB92376422FA21C67CA98BCEB8C431CA2D3EDDC16BDA59363F49614070AA6 -859105192CCC6E4911B0B5D0FBDE04872D8C8D84FE6B68702FBFC4682186E03F2141CF8FC8E23254 -2FF446E00D34A7B9B9271B07DEEED93C336653ED0F51DBA0DE34235097373CA4583095151642EEE7 -6B6BA6714F37031F5AD2ECA4875FD02F65D47541F5245588F0CB5933A759342FC460ABF99E014A85 -CE3BFF948BC38F3D29FAFBD205400093EBD129A9C3AF161E7365DEB2905074660FEC703B6D4733A6 -6EC1E78A1FF3FA90863072C108109D4DFF62166EA04DD1E05225CD1B9A6808413402E9E1E81512B7 -1BFD781132923BA7B5DB7032E7AF65CAD135E8D3C0DDEFE960DECAC693166D83DB2A6D819E40024B -40A114818D7E943849FD90359B4BCC4FB0E2E0373A6200C13F194D735815ACC2E09BF4ABC693DE6E -975F0C27BAD1DCFE8D0A3977B48104EA6F85072BC0F5FD3E8FD8D53DBB088061BDB89249A4C3E6BD -B4A5A0F469D9B53E9B35A4A03F558DC93B8870FD28A829735E1F25F455CEA1CC8DFB408888DDBCEC -C050A84B6EBF39E42B4278F92E44C7A41FAA83CE07255B8CAA9F3EB43368900EEDEAADD836AEB663 -7EFF72351D649500FF3544DAB77FE191A5907B8E7C2AA4A9B18D857C63B2F41279FE6E241EB946D9 -A67B3908CF7146DE0D971192BF7908B3319E6C0B33995F4E54BACDA9040693EA19F24266FF8A46B9 -3D6091337C2BBAACE6ED443A6A83EA4296E41E309192D66122FCF7A37578C45859854CADF75A8299 -727CDC5868F365497886C518C001A3CD4C0A5ED589C3FE9C14269A9DBE9A10FBD6B4B0BB6292975E -F7210A6E4959DE1F3063A98393C63ED63D2EA31353ADC92AC1B924678E81B509CD4470DBD22694E2 -EF36266270A78A350581C6AF9747D92BA0ED2019FFFBDEAA908B373CA6A848512CD5A5607A8EF877 -1533539AE3D2F448FE1092CC640F699D73C6CB421B56C630574A11B5F48DF7DDF4942C82FD5DCC9A -5BF9585CB7715053059CF73503C1FBEF7F8F45546039AE0F3BDDE1ADA78C2DB36040C20848ADB414 -4E71B38A447FFC4F768366416027344912C9134FB30AD513BFB40008884FA98F1D25714121082696 -C877790A06A60BFFB6CFAEACF55453878DF4D972841D7D18E510D5E842416F023BA13A40696FA534 -DB3B0601F45B77FB1CECAD240B8594CC95DF65BD45C1A73D2489D6AA84FD46414D992CDA7D307640 -017951656A3C736C73B116EA9F0A3304EAFA312E46A5152E902D840108C2A1858A95B958055A8080 -B97D612BE59E2D24A5362EF77A83CD8656F8FB6519BDFB3CC43E068C8203BAE620255274AA281972 -A1EE85C378818532B42368AAA93A0C984D7380AD57F1B8FFAAFECAD5EAC17A07DA742E272D3C809B -157D2669AB88DA9EBB91B9E060DE7F275ADFE2FFEA18127969214795E7CD9C27CF902AD3EAD6C6AE -0A4BCDDAD88B6F37932BC7B07D9B43742A08A257DFB3FBB532077039C9CE90386F6C80BDED9CA008 -A7783B6F702DD00D9ECFE3AD9DB0704BBFF4CCBE0B3C75401337CFC1A37E008A09C95C4CE6CF8AF5 -56487D6B320F3B3A9D36623E85FF4119D9EAF24099C2E1D9860DD2187E8CDDF80C4F0B164EC85E0B -21901D017E0A20FBE2090DB90EEE5C9BD2EAD87725F7FF37FD8F43031494817603B8A7E69FEE78D1 -4AC7A66F16800B4B7943B7AED95E9044282017A0FED40F053EBFCA7E292B6C4E0C8DB47B054C91C9 -A1DE4A2741E5E7970AE431494BACF4AA487BCA0080D9A6A3FA3D0E77373F2D40B300D8936C71D83B -3332EE113D087B38E1852312C21ED29C688FFD05D07629D2A48AE9B7B6363AAFFC6CC5ABC96A996E -478C37D745E5B6C90A006349A971C554C27F1D4F7AD1CFED394315EE5C7E681D491213E010A328BF -49C988D7E490BDEA5A86B0F2A8C845A01D84751E1C4BFDDD19045AFDC1283279D7AA6A1FBFD539D3 -A0BEC325597E025A4DE112CBFDB439FE719E690F8DCBEDA826D6546EDF93EDCB67F5AA78FD308CC9 -4EB375BA5FD443083665C0E361462AE4EC541ECD1891B6A7B41715FEBAAAB658FF924A171F4504E5 -03CBC27912393C0F85DF4B276DB39A174CF94B2D6FAC5E3E4F886B2C0D67DF8C502E1E513D934938 -831AAD911F3270A67FA434FD5E3D02E9655661BFC2BB9FE7460E6AE8CFACF6BF545C41C730AC58DB -BCF9AC8532C9E85D9ECAC11D0F7C55288962DB1EFD351B56BF6F2051C62377B95FF0C93A09966EE9 -C6B792126A6C7E9995F2D68E20308347FAB463F5F2DB2E8675882CEF049EF0A6406E1647137D9A46 -734D6E909754E66704552A41B3698B50417F2F3D4F883E3D3E6A75743820E689AE4818C297572E29 -2B5761396825B38C2E6D96ED290856AC6154C51FD90C3EE498E46295832503D76A22CDAC68B6B7AC -B36BA3496422936F48E1569777229320718C45F71C0F857EE699FDD1526E4A23418681D41940E7E0 -FA2C551FB8B79495719F34C3774B229DF858F51AA2E26094FC181BCAE64EE209EE131B9472D6A7EF -6A131EFB221E0F2CCC829A0D9672CEDACF44453400D15DDD34C4126F003A0E57455B25785E1CC9AB -4D4EE1A3BCCBEE149CDCC7EDE7B1F09DA1174F48048B568094F280F22590903F3B2C6A1A796E851F -71D34972F00FF13EB51F8136490C2BA6909B130CF3170820C652A1733BC4B69297BF1F5CF816BCB7 -5A0AC3520AC1DE911B72DEE5AD0033228B9F75961ED1280C6808ED0FD548411696C1CC747AEF91A4 -1EF05215DB5720AADE50BC598749C67770515BFF6DBC5A940C07AB462AA296621D7722C5A47AB3FA -6305C55216216540098F86A1EE217C77EDC0BC3F6DFEC4AFA266019C20CAAAEB381145B3588FAD0A -AB944AD9F120DFF24168844BF92C279D1DF5923C9ACF10393655F33CB9E7EB09A74BD898D07A31A1 -07326EA219163FD6CA3E5A0985F74421F895F020D3D482444C50B428B364487B0FEF8717ABD8D223 -2B4D35EB256A3AE5C1B0D2AE331A1E1D4D5DBC7BACF361E52719DA50620E5137E085481F632B861E -FFF31AF04624D486130FB361F799FF5219E405C80DBFB653CCB3C2E10934C95417A7E91DBE161727 -C5861A219A59470E6AF895C93AD43FAD820BB4C58C13678AE33D18C3EF8DB36A7270CDB3BA2BDDAC -02B0C93D29829DC2B9087F070FFB297464CBF426545A65B869B2661F5B7B6575119DA27D715F0A42 -DF446901F0F2A632AF5614C9EC1FD2A6C79E676D80DACB9F2B89FC51333B4CA7CD98D8CE8B62959C -86949E2CC2F530333C9A80879850481167A7DC78A8A76DDE664449367B44F711D88EC7028E92AA59 -EBBBF050573B52DC80B0FA653E2EC9E5161C27DFCC86365648249518E72D8954BCBC439742A80ED6 -8A7DAF601400AAB2899D4851040C80A64C1E9D4C500F23ACEDC18C120C2E3D0001C37895247338EF -A633428297ECE1771E26219BC93237DDF71A9CF08D47B323D03E904243D1E98DC596BD7E7677B7D9 -1C06474CEEC23C4DAF1B29029342D16121B3390C87DB04C65447C2515B12B9BCC3AB98B9EABD9636 -1EDCEB53655A24E4845604C560D1120F90ED4456BC543E5916BD60C986482FB77BBE9060121FE179 -8C34A17A6AB350D85904106032A0A107649EEAD9B8F59E4CF5256B025440BB3713C2FA5638D6CEFB -788A39A5A5C51842A13AE24684EC59A6FAE55A64148FE73DFB3234F3912D21D68769C9470E3F2DCE -B860872E0556A5C72FB6FF7F7015D09B116FDFEC79EBF0544A0A989269B34475BF5E18B5A3111496 -FB39BD1B25468B6E5B2EDD1624C1AFD3401A8F2086CF3C9D366834BFF85115EDEAFCA61D1343367A -1F5441246000D9A585EDBE50D5B5CAB2455D58B855DA66180F8E1EAF8A2D1948DF1DA913C8F86F2C -58365A77F4B867309629DC8A9237EF9EF4CA0515B2D1B7B7ED64589CD8D196FC057EB96B392EDCC8 -60C15FA2622A484D32D4E2AFEBAD06946CDDD7B7AACA6C0AA5A41B3BCC91D459AB502137DC8C5032 -C3DC8E5D96D210F702FFA73794B639D0F9E7AE0D2134546FA90360B851782BACEE3C28CF7871D3F8 -12CAF86221212D1D321A07B39A14CAE62F41DC83E7714F3E315A7C63E2DCDCFB7F87DDA2BBC6CC60 -73839FC2F05C03077D8A0C9E7373849927450DF6DAF94B27277349A60073C6979312CC0D5C81A89A -058584982D449F1E993AE1EEF449F1AC7840BBA7AAFD999F622D0D1DD573326683C09082ED3564A9 -B28D29955F89ED47DD0EBC2ABE45B585D10E85CECBE52F919EFDDD9630CF8F90CBF2F156EA791E0D -BD178AFBB1AE3E72E08CB83F896067121B671F63869EA022BA7D11BD63381E33860317F70941E782 -FDADC1224AD556467935E93C63794E07F5AD57FDD0F6D859C82B562E80758E8A5C1EDD8FD2E37E34 -FA42E49098561E8E9696DF5A62F1A27D6B1D0FBC9911A979C25E5A81181BAA04415306D755B890B6 -0523E4A211D00CA64AA90625CBF5ABE06EE227128114B07536D79841004AA4A1FA1612A78DCF0F03 -B121B2870FD3ECCF2C034578F9A3F008DCDE1D8354625DE2A97D78E6F85782F829F79B3E286480B4 -57680BE7758FC50CDFC17E5EE5FB3276BEA977E933AB1BEEB1B27B2F3D164ED5B9AF1280C482ECC5 -952F608E0AD0D1F6363637CFAAEF4F0FC7CAEDA1EFE35BB80C07E0E701633CCA557BD478B70652C4 -874F4AF391481A982AE0AE8F0764EADD9316048CA985B570DDEFEDE6A64EA15A80BE9AA4709E4FA6 -DA9CC49B546955BFEF78320D67D14F120F47BF0C8568D337D6339CAC2FA9C51AF3EAB6AE46A4584A -89BD235ADB26332DB72F5EA2EE4DFCFEF41726C92C2CE299D54EF8A582E766A2C20F429CA48858A0 -D61716B9CDF7D67FFE5D7D6E72ACF982456C52D0986762485E2E111038EA4C67E1183A40249BBECE -EF800CFF6CFABCB532465C496571541110DCEA197B20E1915F9CDB842444BF7CC4A559262C89B487 -A99B92B7EF0087E6893DDBB5895C047D88FCEC1B29029368C65744591AC683FE613D8582066B6000 -35FA0EF7AD4236BF1A4632A7B9DCDAB2F9B8F6FA6C8E3248841AB3CE22D3741DC40F29A61E2676DF -55882F5F41DE8BDA16B6753D8D9EFC41D5C6AEEEE771F712188F4C92641B7C891EDB3484DE68D56F -58E5EF015B98490C17FE3020479384E19AF8AECD888F718055B81A78B8B39FDAC88BDCCC0C1CD447 -A18F0F04BE83D2C6FC44B376E74752EA4ACF043812E4BF1313703F8A9898D8C175CF434C97CBBA18 -197EC3C5A7928844060723A18F19EC2B26AE7CF1C95E4D2FAD1A4F7F9DB3E4143B69B9E0DF94D313 -F41F045B19D8B71376A44E05A5B41F3DB38EE63C24483DDE9F67A0102597DFC316A853C489B61A3C -C7F1A1908E3C63FDFD4D20754A27D27E5B17AFA895787DE85EB9F560EFDFE4EE3ACE1CD5222553A1 -A6B929665EF740E4B8724327B5A6FBA8C1142CA1FDDDE6DC085764FD4C519FA8742BEC0795773D01 -07E832A84B2A4AFF55102C143B67CA605527E129975852C1F99B765E26371D7A47F328DE406D8710 -C0C7242D624DAE937EA7D01056999ECC3A938AA560090C43EE5087B0A0C66CD9186E9C711A2916B6 -266FD68FCF8F6378241A614E8D7A144F3D9B807850F98C4401049B469FAF5C3BECC8741D47CCD383 -32D2C399B40D270B8B68FFACCD9405F619A897C865D3FA84DCE0F1FA9C54B9F8B9B574C9BA981A8F -4D5F4FBDA945D4DAA725DA6E1E24DA5E9803FD2769809AC972338812B14972D3DC6511903712CBFA -F3161D557B671DFE13AA19A942FE564B1EBF441B06D7B7C739DBFD9C96FDABC13A2B7397CCF37EAD -E23ABD4521F69FDBC483411452285234F655AFCA9BAA73BD43E081ED281383B57BA48F6BB92F810E -2031A6E96810116432D402B6EBD9B7208CAAE4D7E40AE1D275E49DBD4867A1DB946A2F7E67530350 -73F2AD5FB626921DA8E6A2C70502CBFF72067E45A1A5223FDEB1F4790BC4D1FCDE1AFBA9F1907652 -98D70C89645D8F39A9ACA1563B870950BF90C8976690A5CA41DB6CB5A6A9CDAF969876ADE9D82492 -35A41B32BB1A0564C55A46351366D61C6CF716ADE7EBD8CDFA6B217F180D3AB24D7CFF8B49992D3E -2A37BAFF83F757E365397602FCD60D70C65F537DF26778F0A1E7C2BAA3C2273FF88151EB2A6DC5C9 -AF099C7A728E95FBC50D889B416A864471EAB31050AF8C6C27A8EF177B3A686EDA6354FE931EB69E -D9B39C7FB5ECBAF29F54CF5A09B36EB52D088226F1ECF75FEC87BB35E00F89A9D6595584C9EDF98D -2CD7735E9545EEFBAFC14F9474453BE920D964FE48BC5D730D919105F890A84699149E36FEC03230 -E3643472DBBE1ED54BB4DBE53353A8AAAB4882F4EE901A2CD474FB1A5AE8E3DA026B721260093742 -D27A4823BEA13FA939B3D28F3D8F5BD8A2298007C0FC3B5A831F0E1294A9A8D7F224F188960994D9 -67CF182F8FF283468CCAA2EFAF24F053FA68BD9B16EE0597DD573844EF2FC8BA518B7EBEF00FA4A5 -D282F27E133F2A976C29B8FABBE95AFA8E82DE895CED761B0EC7E03DFE08BEF1F042BA8110E6218D -065672D5B8EA61D140333D49804A1B41EB9600075B4BE636483FF2179A06DEA1427DAD8F2871DF34 -68108E12980D03EA5F122A64CCB649DD800417F698DD1F38C55340CD07473B5D493BC6C68FDCF84E -6FB9CA9AAD42FE8010193C391AD3CD97C3DF8BEB06A1B5EEDAB48C92BBABFBD7DA041F2C587EC96D -555457B5A2D6FB52486E122B46B0F934B4D3AF86A1F537B108589C0798CD4B11573C1C25214C7118 -703D6A043902C980ED303B63FF038D0FFCE3C73AF6441404C013501D8621C14CA3C2480E6C3ED0C6 -4CAB288817639F43BC26AED457100D0B2D4117911B9A34D9DF00D636A28CE4351BA69B04B108464F -0BEE3A3791F0EF03E3FCA00533A4C0749B922BB56525D632B4D56864566E29588907BE31659D43EA -D3269FBF0BDF7EAC69D636023144BAF8A49410FE55D995C926F90A2FCC6B2C5D13228390F92CC0CD -581E9374C84B10BF5FF66FFA0459D9091374EEEE0645C7E93225359893C1E102065926E0D6485E15 -E8D6F488950C4DE682A76F8DD650811E220D2ED6CCADCF65D46FA81247C52DA15A39CC85C4B8B059 -37D9F3CB303F6CE7E0FAA58973474CF41ECC17BFC9DB2A957B1456491927803C274177A41AF5C041 -47E58B44ACEC2AC0BA966DA50A6318931ECB40B97152A6CD86F720C6366A7B8BA15AC4F03B0BF167 -AE6561779063F2C35A8AF47CB4C3AB05EEFC76F18BE8B54C5135396DE53F0025FDAE047DBE2CAD2C -FFC87FB822EEB92CDFD745EDE31D47925D8D360916491CDA2C40EF9561E94FA09BD0F0F01A5C69B9 -61B2DCA57BDAE1EF3CB223E5BE042533CD81A31BC92A46D84014B8887FD7388B0404214B6C5205D7 -B59E02D03AB22710938B33114DD5DD3C5FCEE28174F4A81959C7F2F52DC619649FAF3BC7D3F0867D -1B8D78B9A9DE9DB68DFC774FBD896843C02A91FD8CF44F18A407ABDF150C4220A12DCB47B390D11B -C6D7C87ADA05274DFAFF33321965754EBFF75B419BECF34BFCF41D02C7ED542D7EF045B32289A2AE -66476610A3640FBD31ACEE4C5B9C882916A12F81D6145E3354F4BE90491692973EB657B7833FE784 -5B0B200090B2530FC82FFBC9B873C27718E8597D6707D0F521A52BAB856F73DE4B0C345E902DC44D -A6BC40E08883BE79FE205F1C6C6DE2A230F1F4AFA78B27ED20C2D7A30F72987D86B494FECBAF1224 -F32B0E4E3CD18D72C35CCEDEF16C8D4D8DBBA8FD526B451498EAE762E2E5F3F0D68C40E221EFE2C2 -11F55A5D1F1C058602F2D9E7247FDB345E8350B8F483C8FE939C71CBF9C33E90BD7054741AF37436 -7BECFF9694AE2F06973F46E8D6BE94D5DF4DF3FC4C46742AB152EABF469497D65B66C08056F90A5E -121683C1B0F91C00318EAB91191B962D67647228929A92FBEB7B5DD5CB67ECF5494A318728BCE386 -6CDC497A69D1151E8693DA446E98664776EBDB07D78CE919C5A36AF67BA04601C649AC46EA968596 -096263885765CBA3CCE6D84260936E204F735DA45C84832C4AFD284ECF25B6240F0288C34D806011 -E9B97ABF0B1CB5FDA87A272064690D7AD7AC2E23291325A17D6A9356A2968072C47C3B4A24046F2F -1B395AB3BEE6103523BE590AF5861B20E26105D9A975DC5053D8E9AFDFEA1BA745EC2962E4B8337B -554A7045868A257173ED0D30E8DF74B5E73280E403235E6835D4AF87FE74D7BA59343CB6D3F245E3 -86377A9D0CE026F26BB682FE26B37A5666AA205307B31CA2AE48F1F11B222928B021F5E0FE4C96AB -A558CCB318EBD50CFFC9612668B337F980A48E88EFD0D6A3183526F171564840FD2625D477557FE6 -3BF4D510C4E7709958BB2573B0AD5D98FA6647B93186897AF7E8249B2FC974332250F6E6E0109EFA -3A9DE66A779FE63D62DDA72A626FD8AB70DDFA440CE4C2691B884F4989C120FABD8EB38B1AD33A1A -8CEA30BF0407FA0D6A4AC4B316AEDF4F08143F75A68EA342BAD6304CB2ECA05B11FAF39E062793C7 -9805C112CF95B32B0472B07C00CE901DC74939F4F8C27093E80CC2CAD27DFB5C67A99912CF50F6FD -5CB46A1AE81738F617244C8D77E164A51B7E745FC5B2FAE13F7F10F40D7C0D2961756216732C82C5 -0D2DCB1425A3F8DFF7AB28154918F59A2225D418FACB67BCE3D5A2 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 - -cleartomark -{restore}if -%%EndFont CMSS10 -%%EndProlog -%%Page: 1 1 -gsave -newpath -0.0e+00 0.0e+00 moveto -1.5e+02 0.0e+00 lineto -1.5e+02 1.5e+02 lineto -0.0e+00 1.5e+02 lineto -closepath -clip -gsave -clip -newpath -gsave -newpath -5.0e+00 5.0e+00 moveto -5.0e+00 1.45e+02 lineto -7.5e+01 5.0e+00 moveto -7.5e+01 1.45e+02 lineto -1.45e+02 5.0e+00 moveto -1.45e+02 1.45e+02 lineto -5.0e+00 5.0e+00 moveto -1.45e+02 5.0e+00 lineto -5.0e+00 1.45e+02 moveto -1.45e+02 1.45e+02 lineto -gsave -5.0e-01 setlinewidth -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -grestore -newpath -5.0e+00 1.9e+01 moveto -1.45e+02 1.9e+01 lineto -2.15e+02 5.0e+00 moveto -2.15e+02 1.45e+02 lineto -gsave -1 setlinewidth -gsave -0 0 0 setrgbcolor -stroke -grestore -grestore -gsave -7.5e+01 1.7e+01 moveto -7.5e+01 2.1e+01 lineto -gsave stroke grestore -grestore -gsave -newpath -0 0 0 setrgbcolor - -% Comment: canvas init - -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -1.0e+01 setmiterlimit -gsave -/CMSS10 findfont -10.0 scalefont -setfont -7.084889e+01 7.468934e+00 moveto -gsave -[ 1.0 0.0 0.0 1.0 -5.86344147679 -721.766433127 ] concat -(\055\061) show -grestore -grestore -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -grestore -newpath -5.0e+00 5.0e+00 moveto -1.45e+02 5.0e+00 lineto -1.45e+02 1.45e+02 lineto -5.0e+00 1.45e+02 lineto -closepath -clip -newpath -5.0e+00 8.263636e+01 moveto -5.0e+00 8.263636e+01 lineto -5.699986e+00 8.256688e+01 lineto -6.399972e+00 8.249727e+01 lineto -7.099958e+00 8.242753e+01 lineto -7.799944e+00 8.235767e+01 lineto -8.49993e+00 8.228768e+01 lineto -9.199916e+00 8.221756e+01 lineto -9.899902e+00 8.214731e+01 lineto -1.059989e+01 8.207693e+01 lineto -1.129987e+01 8.200643e+01 lineto -1.199986e+01 8.193579e+01 lineto -1.269985e+01 8.186503e+01 lineto -1.339983e+01 8.179413e+01 lineto -1.409982e+01 8.172311e+01 lineto -1.47998e+01 8.165195e+01 lineto -1.549979e+01 8.158067e+01 lineto -1.619978e+01 8.150925e+01 lineto -1.689976e+01 8.14377e+01 lineto -1.759975e+01 8.136601e+01 lineto -1.829973e+01 8.12942e+01 lineto -1.899972e+01 8.122225e+01 lineto -1.969971e+01 8.115017e+01 lineto -2.039969e+01 8.107795e+01 lineto -2.109968e+01 8.10056e+01 lineto -2.179966e+01 8.093312e+01 lineto -2.249965e+01 8.08605e+01 lineto -2.319964e+01 8.078775e+01 lineto -2.389962e+01 8.071486e+01 lineto -2.459961e+01 8.064183e+01 lineto -2.529959e+01 8.056867e+01 lineto -2.599958e+01 8.049537e+01 lineto -2.669957e+01 8.042194e+01 lineto -2.739955e+01 8.034836e+01 lineto -2.809954e+01 8.027465e+01 lineto -2.879952e+01 8.02008e+01 lineto -2.949951e+01 8.012681e+01 lineto -3.01995e+01 8.005269e+01 lineto -3.089948e+01 7.997842e+01 lineto -3.159947e+01 7.990401e+01 lineto -3.229945e+01 7.982946e+01 lineto -3.299944e+01 7.975478e+01 lineto -3.369943e+01 7.967995e+01 lineto -3.439941e+01 7.960498e+01 lineto -3.50994e+01 7.952987e+01 lineto -3.579938e+01 7.945461e+01 lineto -3.649937e+01 7.937921e+01 lineto -3.719936e+01 7.930367e+01 lineto -3.789934e+01 7.922799e+01 lineto -3.859933e+01 7.915216e+01 lineto -3.929931e+01 7.907619e+01 lineto -3.99993e+01 7.900008e+01 lineto -4.069929e+01 7.892381e+01 lineto -4.139927e+01 7.884741e+01 lineto -4.209926e+01 7.877085e+01 lineto -4.279924e+01 7.869416e+01 lineto -4.349923e+01 7.861731e+01 lineto -4.419922e+01 7.854032e+01 lineto -4.48992e+01 7.846318e+01 lineto -4.559919e+01 7.838589e+01 lineto -4.629917e+01 7.830845e+01 lineto -4.699916e+01 7.823086e+01 lineto -4.769915e+01 7.815313e+01 lineto -4.839913e+01 7.807524e+01 lineto -4.909912e+01 7.799721e+01 lineto -4.97991e+01 7.791902e+01 lineto -5.049909e+01 7.784068e+01 lineto -5.119908e+01 7.776219e+01 lineto -5.189906e+01 7.768355e+01 lineto -5.259905e+01 7.760476e+01 lineto -5.329903e+01 7.752581e+01 lineto -5.399902e+01 7.744671e+01 lineto -5.469901e+01 7.736746e+01 lineto -5.539899e+01 7.728805e+01 lineto -5.609898e+01 7.720849e+01 lineto -5.679896e+01 7.712877e+01 lineto -5.749895e+01 7.70489e+01 lineto -5.819894e+01 7.696887e+01 lineto -5.889892e+01 7.688869e+01 lineto -5.959891e+01 7.680834e+01 lineto -6.029889e+01 7.672785e+01 lineto -6.099888e+01 7.664719e+01 lineto -6.169887e+01 7.656637e+01 lineto -6.239885e+01 7.64854e+01 lineto -6.309884e+01 7.640426e+01 lineto -6.379882e+01 7.632297e+01 lineto -6.449881e+01 7.624152e+01 lineto -6.51988e+01 7.61599e+01 lineto -6.589878e+01 7.607813e+01 lineto -6.659877e+01 7.599619e+01 lineto -6.729875e+01 7.591409e+01 lineto -6.799874e+01 7.583183e+01 lineto -6.869873e+01 7.574941e+01 lineto -6.939871e+01 7.566682e+01 lineto -7.00987e+01 7.558407e+01 lineto -7.079868e+01 7.550115e+01 lineto -7.149867e+01 7.541807e+01 lineto -7.219866e+01 7.533482e+01 lineto -7.289864e+01 7.525141e+01 lineto -7.359863e+01 7.516783e+01 lineto -7.429861e+01 7.508408e+01 lineto -7.49986e+01 7.500017e+01 lineto -gsave -1.5e+00 setlinewidth -gsave -0 0 1 setrgbcolor -stroke -grestore -grestore -newpath -5.0e+00 5.0e+00 moveto -1.45e+02 5.0e+00 lineto -1.45e+02 1.45e+02 lineto -5.0e+00 1.45e+02 lineto -closepath -clip -newpath -7.50014e+01 7.499983e+01 moveto -7.50014e+01 7.499983e+01 lineto -7.570139e+01 7.491575e+01 lineto -7.640137e+01 7.48315e+01 lineto -7.710136e+01 7.474708e+01 lineto -7.780134e+01 7.466249e+01 lineto -7.850133e+01 7.457773e+01 lineto -7.920132e+01 7.44928e+01 lineto -7.99013e+01 7.44077e+01 lineto -8.060129e+01 7.432242e+01 lineto -8.130127e+01 7.423698e+01 lineto -8.200126e+01 7.415136e+01 lineto -8.270125e+01 7.406557e+01 lineto -8.340123e+01 7.397961e+01 lineto -8.410122e+01 7.389347e+01 lineto -8.48012e+01 7.380715e+01 lineto -8.550119e+01 7.372067e+01 lineto -8.620118e+01 7.3634e+01 lineto -8.690116e+01 7.354716e+01 lineto -8.760115e+01 7.346014e+01 lineto -8.830113e+01 7.337295e+01 lineto -8.900112e+01 7.328557e+01 lineto -8.970111e+01 7.319802e+01 lineto -9.040109e+01 7.311029e+01 lineto -9.110108e+01 7.302238e+01 lineto -9.180106e+01 7.293429e+01 lineto -9.250105e+01 7.284602e+01 lineto -9.320104e+01 7.275757e+01 lineto -9.390102e+01 7.266894e+01 lineto -9.460101e+01 7.258012e+01 lineto -9.530099e+01 7.249112e+01 lineto -9.600098e+01 7.240194e+01 lineto -9.670097e+01 7.231257e+01 lineto -9.740095e+01 7.222302e+01 lineto -9.810094e+01 7.213328e+01 lineto -9.880092e+01 7.204336e+01 lineto -9.950091e+01 7.195325e+01 lineto -1.002009e+02 7.186295e+01 lineto -1.009009e+02 7.177247e+01 lineto -1.016009e+02 7.16818e+01 lineto -1.023009e+02 7.159094e+01 lineto -1.030008e+02 7.149989e+01 lineto -1.037008e+02 7.140865e+01 lineto -1.044008e+02 7.131722e+01 lineto -1.051008e+02 7.12256e+01 lineto -1.058008e+02 7.113379e+01 lineto -1.065008e+02 7.104178e+01 lineto -1.072008e+02 7.094959e+01 lineto -1.079007e+02 7.085719e+01 lineto -1.086007e+02 7.076461e+01 lineto -1.093007e+02 7.067183e+01 lineto -1.100007e+02 7.057885e+01 lineto -1.107007e+02 7.048568e+01 lineto -1.114007e+02 7.039232e+01 lineto -1.121007e+02 7.029875e+01 lineto -1.128006e+02 7.020499e+01 lineto -1.135006e+02 7.011103e+01 lineto -1.142006e+02 7.001687e+01 lineto -1.149006e+02 6.992251e+01 lineto -1.156006e+02 6.982795e+01 lineto -1.163006e+02 6.973318e+01 lineto -1.170006e+02 6.963822e+01 lineto -1.177005e+02 6.954306e+01 lineto -1.184005e+02 6.944769e+01 lineto -1.191005e+02 6.935212e+01 lineto -1.198005e+02 6.925634e+01 lineto -1.205005e+02 6.916036e+01 lineto -1.212005e+02 6.906417e+01 lineto -1.219005e+02 6.896778e+01 lineto -1.226004e+02 6.887118e+01 lineto -1.233004e+02 6.877438e+01 lineto -1.240004e+02 6.867736e+01 lineto -1.247004e+02 6.858014e+01 lineto -1.254004e+02 6.84827e+01 lineto -1.261004e+02 6.838506e+01 lineto -1.268004e+02 6.828721e+01 lineto -1.275003e+02 6.818914e+01 lineto -1.282003e+02 6.809086e+01 lineto -1.289003e+02 6.799237e+01 lineto -1.296003e+02 6.789367e+01 lineto -1.303003e+02 6.779475e+01 lineto -1.310003e+02 6.769561e+01 lineto -1.317003e+02 6.759626e+01 lineto -1.324003e+02 6.74967e+01 lineto -1.331002e+02 6.739691e+01 lineto -1.338002e+02 6.729691e+01 lineto -1.345002e+02 6.719669e+01 lineto -1.352002e+02 6.709625e+01 lineto -1.359002e+02 6.699559e+01 lineto -1.366002e+02 6.689471e+01 lineto -1.373002e+02 6.679361e+01 lineto -1.380001e+02 6.669229e+01 lineto -1.387001e+02 6.659074e+01 lineto -1.394001e+02 6.648897e+01 lineto -1.401001e+02 6.638698e+01 lineto -1.408001e+02 6.628476e+01 lineto -1.415001e+02 6.618231e+01 lineto -1.422001e+02 6.607964e+01 lineto -1.429e+02 6.597674e+01 lineto -1.436e+02 6.587361e+01 lineto -1.443e+02 6.577025e+01 lineto -1.45e+02 6.566667e+01 lineto -gsave -1.5e+00 setlinewidth -gsave -0 0 1 setrgbcolor -stroke -grestore -grestore -grestore -grestore -grestore showpage - -% --------------------------------------------------------- - -%%Trailer -%%EOF +%!PS-Adobe-2.0 EPSF-3.0 +%%BoundingBox: 0 0 150 150 +%%Pages: 1 +%%PageOrder: Ascend + +%%BeginProlog +%%BeginProcSet: +/ReEncodeFont { exch findfont << >> copy dup 3 2 roll /Encoding exch put definefont } def +%%EndProcSet +%%BeginFont: CMSS10 +%!PS-AdobeFont-1.0: CMSS10 003.002 +%%Title: CMSS10 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMSS10. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments + +FontDirectory/CMSS10 known{/CMSS10 findfont dup/UniqueID known{dup +/UniqueID get 5000803 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /CMSS10 def +/FontBBox {-61 -250 999 759 }readonly def +/UniqueID 5000803 def +/PaintType 0 def +/FontInfo 9 dict dup begin + /version (003.002) readonly def + /Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMSS10.) readonly def + /FullName (CMSS10) readonly def + /FamilyName (Computer Modern) readonly def + /Weight (Medium) readonly def + /ItalicAngle 0 def + /isFixedPitch false def + /UnderlinePosition -100 def + /UnderlineThickness 50 def +end readonly def +/Encoding 256 array + 0 1 255 { 1 index exch /.notdef put} for +dup 0 /Gamma put +dup 1 /Delta put +dup 2 /Theta put +dup 3 /Lambda put +dup 4 /Xi put +dup 5 /Pi put +dup 6 /Sigma put +dup 7 /Upsilon put +dup 8 /Phi put +dup 9 /Psi put +dup 10 /Omega put +dup 11 /ff put +dup 12 /fi put +dup 13 /fl put +dup 14 /ffi put +dup 15 /ffl put +dup 16 /dotlessi put +dup 17 /dotlessj put +dup 18 /grave put +dup 19 /acute put +dup 20 /caron put +dup 21 /breve put +dup 22 /macron put +dup 23 /ring put +dup 24 /cedilla put +dup 25 /germandbls put +dup 26 /ae put +dup 27 /oe put +dup 28 /oslash put +dup 29 /AE put +dup 30 /OE put +dup 31 /Oslash put +dup 32 /suppress put +dup 33 /exclam put +dup 34 /quotedblright put +dup 35 /numbersign put +dup 36 /dollar put +dup 37 /percent put +dup 38 /ampersand put +dup 39 /quoteright put +dup 40 /parenleft put +dup 41 /parenright put +dup 42 /asterisk put +dup 43 /plus put +dup 44 /comma put +dup 45 /hyphen put +dup 46 /period put +dup 47 /slash put +dup 48 /zero put +dup 49 /one put +dup 50 /two put +dup 51 /three put +dup 52 /four put +dup 53 /five put +dup 54 /six put +dup 55 /seven put +dup 56 /eight put +dup 57 /nine put +dup 58 /colon put +dup 59 /semicolon put +dup 60 /exclamdown put +dup 61 /equal put +dup 62 /questiondown put +dup 63 /question put +dup 64 /at put +dup 65 /A put +dup 66 /B put +dup 67 /C put +dup 68 /D put +dup 69 /E put +dup 70 /F put +dup 71 /G put +dup 72 /H put +dup 73 /I put +dup 74 /J put +dup 75 /K put +dup 76 /L put +dup 77 /M put +dup 78 /N put +dup 79 /O put +dup 80 /P put +dup 81 /Q put +dup 82 /R put +dup 83 /S put +dup 84 /T put +dup 85 /U put +dup 86 /V put +dup 87 /W put +dup 88 /X put +dup 89 /Y put +dup 90 /Z put +dup 91 /bracketleft put +dup 92 /quotedblleft put +dup 93 /bracketright put +dup 94 /circumflex put +dup 95 /dotaccent put +dup 96 /quoteleft put +dup 97 /a put +dup 98 /b put +dup 99 /c put +dup 100 /d put +dup 101 /e put +dup 102 /f put +dup 103 /g put +dup 104 /h put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 108 /l put +dup 109 /m put +dup 110 /n put +dup 111 /o put +dup 112 /p put +dup 113 /q put +dup 114 /r put +dup 115 /s put +dup 116 /t put +dup 117 /u put +dup 118 /v put +dup 119 /w put +dup 120 /x put +dup 121 /y put +dup 122 /z put +dup 123 /endash put +dup 124 /emdash put +dup 125 /hungarumlaut put +dup 126 /tilde put +dup 127 /dieresis put +dup 128 /suppress put +dup 160 /space put +dup 161 /Gamma put +dup 162 /Delta put +dup 163 /Theta put +dup 164 /Lambda put +dup 165 /Xi put +dup 166 /Pi put +dup 167 /Sigma put +dup 168 /Upsilon put +dup 169 /Phi put +dup 170 /Psi put +dup 171 /sfthyphen put +dup 172 /nbspace put +dup 173 /Omega put +dup 174 /ff put +dup 175 /fi put +dup 176 /fl put +dup 177 /ffi put +dup 178 /ffl put +dup 179 /dotlessi put +dup 180 /dotlessj put +dup 181 /grave put +dup 182 /acute put +dup 183 /caron put +dup 184 /breve put +dup 185 /macron put +dup 186 /ring put +dup 187 /cedilla put +dup 188 /germandbls put +dup 189 /ae put +dup 190 /oe put +dup 191 /oslash put +dup 192 /AE put +dup 193 /OE put +dup 194 /Oslash put +dup 195 /suppress put +dup 196 /dieresis put +readonly def +currentdict end +currentfile eexec +D9D66F633B846AB284BCF8B0411B772DE5CD06DFE1BE899059C588357426D7A07B684C079A47D271 +426064AD18CB9750D8A986D1D67C1B2AEEF8CE785CC19C81DE96489F740045C5E342F02DA1C9F9F3 +C167651E646F1A67CF379789E311EF91511D0F605B045B279357D6FC8537C233E7AEE6A4FDBE73E7 +5A39EB206D20A6F61021961B748D419EBEEB028B592124E174CA595C108E12725B9875544955CFFD +028B698EF742BC8C19F979E35B8E99CADDDDC89CC6C59733F2A24BC3AF36AD861319147A4A219ECB +92D0D9F6228B51A97C295470093CA270C4488BB4EB864B4863941B9739638D2E6F3CC778582B46AE +B4E466D89D1C211225274356A4BC90F3274C6AA56E200249B7D0949A3FD4185DCB3E5286910EFD7C +A72D5D8E8052C96F388D12094B87D3705CE64459558CF024667C0FE96CBB32B0BC9E51037D7BD62B +E4B05FF99384E71D78441A79B0B1DBA1CAE02434A9FAE46596FB86B873B1670DAE0BAF516445A0DD +C127F8FF3ADA0B10EC30A9CC1F7E9248828B5E8AB46C3FE4154B80A54128A08777F5F9B8C519C7E3 +B632B3476F007FA156E9F39FBE57638B4214CD2BA79BA9DDA0F4C073AED814ABCCC2F7906C57A872 +C00E67FF03AC120029DAB92376422FA21C67CA98BCEB8C431CA2D3EDDC16BDA59363F49614070AA6 +859105192CCC6E4911B0B5D0FBDE04872D8C8D84FE6B68702FBFC4682186E03F2141CF8FC8E23254 +2FF446E00D34A7B9B9271B07DEEED93C336653ED0F51DBA0DE34235097373CA4583095151642EEE7 +6B6BA6714F37031F5AD2ECA4875FD02F65D47541F5245588F0CB5933A759342FC460ABF99E014A85 +CE3BFF948BC38F3D29FAFBD205400093EBD129A9C3AF161E7365DEB2905074660FEC703B6D4733A6 +6EC1E78A1FF3FA90863072C108109D4DFF62166EA04DD1E05225CD1B9A6808413402E9E1E81512B7 +1BFD781132923BA7B5DB7032E7AF65CAD135E8D3C0DDEFE960DECAC693166D83DB2A6D819E40024B +40A114818D7E943849FD90359B4BCC4FB0E2E0373A6200C13F194D735815ACC2E09BF4ABC693DE6E +975F0C27BAD1DCFE8D0A3977B48104EA6F85072BC0F5FD3E8FD8D53DBB088061BDB89249A4C3E6BD +B4A5A0F469D9B53E9B35A4A03F558DC93B8870FD28A829735E1F25F455CEA1CC8DFB408888DDBCEC +C050A84B6EBF39E42B4278F92E44C7A41FAA83CE07255B8CAA9F3EB43368900EEDEAADD836AEB663 +7EFF72351D649500FF3544DAB77FE191A5907B8E7C2AA4A9B18D857C63B2F41279FE6E241EB946D9 +A67B3908CF7146DE0D971192BF7908B3319E6C0B33995F4E54BACDA9040693EA19F24266FF8A46B9 +3D6091337C2BBAACE6ED443A6A83EA4296E41E309192D66122FCF7A37578C45859854CADF75A8299 +727CDC5868F365497886C518C001A3CD4C0A5ED589C3FE9C14269A9DBE9A10FBD6B4B0BB6292975E +F7210A6E4959DE1F3063A98393C63ED63D2EA31353ADC92AC1B924678E81B509CD4470DBD22694E2 +EF36266270A78A350581C6AF9747D92BA0ED2019FFFBDEAA908B373CA6A848512CD5A5607A8EF877 +1533539AE3D2F448FE1092CC640F699D73C6CB421B56C630574A11B5F48DF7DDF4942C82FD5DCC9A +5BF9585CB7715053059CF73503C1FBEF7F8F45546039AE0F3BDDE1ADA78C2DB36040C20848ADB414 +4E71B38A447FFC4F768366416027344912C9134FB30AD513BFB40008884FA98F1D25714121082696 +C877790A06A60BFFB6CFAEACF55453878DF4D972841D7D18E510D5E842416F023BA13A40696FA534 +DB3B0601F45B77FB1CECAD240B8594CC95DF65BD45C1A73D2489D6AA84FD46414D992CDA7D307640 +017951656A3C736C73B116EA9F0A3304EAFA312E46A5152E902D840108C2A1858A95B958055A8080 +B97D612BE59E2D24A5362EF77A83CD8656F8FB6519BDFB3CC43E068C8203BAE620255274AA281972 +A1EE85C378818532B42368AAA93A0C984D7380AD57F1B8FFAAFECAD5EAC17A07DA742E272D3C809B +157D2669AB88DA9EBB91B9E060DE7F275ADFE2FFEA18127969214795E7CD9C27CF902AD3EAD6C6AE +0A4BCDDAD88B6F37932BC7B07D9B43742A08A257DFB3FBB532077039C9CE90386F6C80BDED9CA008 +A7783B6F702DD00D9ECFE3AD9DB0704BBFF4CCBE0B3C75401337CFC1A37E008A09C95C4CE6CF8AF5 +56487D6B320F3B3A9D36623E85FF4119D9EAF24099C2E1D9860DD2187E8CDDF80C4F0B164EC85E0B +21901D017E0A20FBE2090DB90EEE5C9BD2EAD87725F7FF37FD8F43031494817603B8A7E69FEE78D1 +4AC7A66F16800B4B7943B7AED95E9044282017A0FED40F053EBFCA7E292B6C4E0C8DB47B054C91C9 +A1DE4A2741E5E7970AE431494BACF4AA487BCA0080D9A6A3FA3D0E77373F2D40B300D8936C71D83B +3332EE113D087B38E1852312C21ED29C688FFD05D07629D2A48AE9B7B6363AAFFC6CC5ABC96A996E +478C37D745E5B6C90A006349A971C554C27F1D4F7AD1CFED394315EE5C7E681D491213E010A328BF +49C988D7E490BDEA5A86B0F2A8C845A01D84751E1C4BFDDD19045AFDC1283279D7AA6A1FBFD539D3 +A0BEC325597E025A4DE112CBFDB439FE719E690F8DCBEDA826D6546EDF93EDCB67F5AA78FD308CC9 +4EB375BA5FD443083665C0E361462AE4EC541ECD1891B6A7B41715FEBAAAB658FF924A171F4504E5 +03CBC27912393C0F85DF4B276DB39A174CF94B2D6FAC5E3E4F886B2C0D67DF8C502E1E513D934938 +831AAD911F3270A67FA434FD5E3D02E9655661BFC2BB9FE7460E6AE8CFACF6BF545C41C730AC58DB +BCF9AC8532C9E85D9ECAC11D0F7C55288962DB1EFD351B56BF6F2051C62377B95FF0C93A09966EE9 +C6B792126A6C7E9995F2D68E20308347FAB463F5F2DB2E8675882CEF049EF0A6406E1647137D9A46 +734D6E909754E66704552A41B3698B50417F2F3D4F883E3D3E6A75743820E689AE4818C297572E29 +2B5761396825B38C2E6D96ED290856AC6154C51FD90C3EE498E46295832503D76A22CDAC68B6B7AC +B36BA3496422936F48E1569777229320718C45F71C0F857EE699FDD1526E4A23418681D41940E7E0 +FA2C551FB8B79495719F34C3774B229DF858F51AA2E26094FC181BCAE64EE209EE131B9472D6A7EF +6A131EFB221E0F2CCC829A0D9672CEDACF44453400D15DDD34C4126F003A0E57455B25785E1CC9AB +4D4EE1A3BCCBEE149CDCC7EDE7B1F09DA1174F48048B568094F280F22590903F3B2C6A1A796E851F +71D34972F00FF13EB51F8136490C2BA6909B130CF3170820C652A1733BC4B69297BF1F5CF816BCB7 +5A0AC3520AC1DE911B72DEE5AD0033228B9F75961ED1280C6808ED0FD548411696C1CC747AEF91A4 +1EF05215DB5720AADE50BC598749C67770515BFF6DBC5A940C07AB462AA296621D7722C5A47AB3FA +6305C55216216540098F86A1EE217C77EDC0BC3F6DFEC4AFA266019C20CAAAEB381145B3588FAD0A +AB944AD9F120DFF24168844BF92C279D1DF5923C9ACF10393655F33CB9E7EB09A74BD898D07A31A1 +07326EA219163FD6CA3E5A0985F74421F895F020D3D482444C50B428B364487B0FEF8717ABD8D223 +2B4D35EB256A3AE5C1B0D2AE331A1E1D4D5DBC7BACF361E52719DA50620E5137E085481F632B861E +FFF31AF04624D486130FB361F799FF5219E405C80DBFB653CCB3C2E10934C95417A7E91DBE161727 +C5861A219A59470E6AF895C93AD43FAD820BB4C58C13678AE33D18C3EF8DB36A7270CDB3BA2BDDAC +02B0C93D29829DC2B9087F070FFB297464CBF426545A65B869B2661F5B7B6575119DA27D715F0A42 +DF446901F0F2A632AF5614C9EC1FD2A6C79E676D80DACB9F2B89FC51333B4CA7CD98D8CE8B62959C +86949E2CC2F530333C9A80879850481167A7DC78A8A76DDE664449367B44F711D88EC7028E92AA59 +EBBBF050573B52DC80B0FA653E2EC9E5161C27DFCC86365648249518E72D8954BCBC439742A80ED6 +8A7DAF601400AAB2899D4851040C80A64C1E9D4C500F23ACEDC18C120C2E3D0001C37895247338EF +A633428297ECE1771E26219BC93237DDF71A9CF08D47B323D03E904243D1E98DC596BD7E7677B7D9 +1C06474CEEC23C4DAF1B29029342D16121B3390C87DB04C65447C2515B12B9BCC3AB98B9EABD9636 +1EDCEB53655A24E4845604C560D1120F90ED4456BC543E5916BD60C986482FB77BBE9060121FE179 +8C34A17A6AB350D85904106032A0A107649EEAD9B8F59E4CF5256B025440BB3713C2FA5638D6CEFB +788A39A5A5C51842A13AE24684EC59A6FAE55A64148FE73DFB3234F3912D21D68769C9470E3F2DCE +B860872E0556A5C72FB6FF7F7015D09B116FDFEC79EBF0544A0A989269B34475BF5E18B5A3111496 +FB39BD1B25468B6E5B2EDD1624C1AFD3401A8F2086CF3C9D366834BFF85115EDEAFCA61D1343367A +1F5441246000D9A585EDBE50D5B5CAB2455D58B855DA66180F8E1EAF8A2D1948DF1DA913C8F86F2C +58365A77F4B867309629DC8A9237EF9EF4CA0515B2D1B7B7ED64589CD8D196FC057EB96B392EDCC8 +60C15FA2622A484D32D4E2AFEBAD06946CDDD7B7AACA6C0AA5A41B3BCC91D459AB502137DC8C5032 +C3DC8E5D96D210F702FFA73794B639D0F9E7AE0D2134546FA90360B851782BACEE3C28CF7871D3F8 +12CAF86221212D1D321A07B39A14CAE62F41DC83E7714F3E315A7C63E2DCDCFB7F87DDA2BBC6CC60 +73839FC2F05C03077D8A0C9E7373849927450DF6DAF94B27277349A60073C6979312CC0D5C81A89A +058584982D449F1E993AE1EEF449F1AC7840BBA7AAFD999F622D0D1DD573326683C09082ED3564A9 +B28D29955F89ED47DD0EBC2ABE45B585D10E85CECBE52F919EFDDD9630CF8F90CBF2F156EA791E0D +BD178AFBB1AE3E72E08CB83F896067121B671F63869EA022BA7D11BD63381E33860317F70941E782 +FDADC1224AD556467935E93C63794E07F5AD57FDD0F6D859C82B562E80758E8A5C1EDD8FD2E37E34 +FA42E49098561E8E9696DF5A62F1A27D6B1D0FBC9911A979C25E5A81181BAA04415306D755B890B6 +0523E4A211D00CA64AA90625CBF5ABE06EE227128114B07536D79841004AA4A1FA1612A78DCF0F03 +B121B2870FD3ECCF2C034578F9A3F008DCDE1D8354625DE2A97D78E6F85782F829F79B3E286480B4 +57680BE7758FC50CDFC17E5EE5FB3276BEA977E933AB1BEEB1B27B2F3D164ED5B9AF1280C482ECC5 +952F608E0AD0D1F6363637CFAAEF4F0FC7CAEDA1EFE35BB80C07E0E701633CCA557BD478B70652C4 +874F4AF391481A982AE0AE8F0764EADD9316048CA985B570DDEFEDE6A64EA15A80BE9AA4709E4FA6 +DA9CC49B546955BFEF78320D67D14F120F47BF0C8568D337D6339CAC2FA9C51AF3EAB6AE46A4584A +89BD235ADB26332DB72F5EA2EE4DFCFEF41726C92C2CE299D54EF8A582E766A2C20F429CA48858A0 +D61716B9CDF7D67FFE5D7D6E72ACF982456C52D0986762485E2E111038EA4C67E1183A40249BBECE +EF800CFF6CFABCB532465C496571541110DCEA197B20E1915F9CDB842444BF7CC4A559262C89B487 +A99B92B7EF0087E6893DDBB5895C047D88FCEC1B29029368C65744591AC683FE613D8582066B6000 +35FA0EF7AD4236BF1A4632A7B9DCDAB2F9B8F6FA6C8E3248841AB3CE22D3741DC40F29A61E2676DF +55882F5F41DE8BDA16B6753D8D9EFC41D5C6AEEEE771F712188F4C92641B7C891EDB3484DE68D56F +58E5EF015B98490C17FE3020479384E19AF8AECD888F718055B81A78B8B39FDAC88BDCCC0C1CD447 +A18F0F04BE83D2C6FC44B376E74752EA4ACF043812E4BF1313703F8A9898D8C175CF434C97CBBA18 +197EC3C5A7928844060723A18F19EC2B26AE7CF1C95E4D2FAD1A4F7F9DB3E4143B69B9E0DF94D313 +F41F045B19D8B71376A44E05A5B41F3DB38EE63C24483DDE9F67A0102597DFC316A853C489B61A3C +C7F1A1908E3C63FDFD4D20754A27D27E5B17AFA895787DE85EB9F560EFDFE4EE3ACE1CD5222553A1 +A6B929665EF740E4B8724327B5A6FBA8C1142CA1FDDDE6DC085764FD4C519FA8742BEC0795773D01 +07E832A84B2A4AFF55102C143B67CA605527E129975852C1F99B765E26371D7A47F328DE406D8710 +C0C7242D624DAE937EA7D01056999ECC3A938AA560090C43EE5087B0A0C66CD9186E9C711A2916B6 +266FD68FCF8F6378241A614E8D7A144F3D9B807850F98C4401049B469FAF5C3BECC8741D47CCD383 +32D2C399B40D270B8B68FFACCD9405F619A897C865D3FA84DCE0F1FA9C54B9F8B9B574C9BA981A8F +4D5F4FBDA945D4DAA725DA6E1E24DA5E9803FD2769809AC972338812B14972D3DC6511903712CBFA +F3161D557B671DFE13AA19A942FE564B1EBF441B06D7B7C739DBFD9C96FDABC13A2B7397CCF37EAD +E23ABD4521F69FDBC483411452285234F655AFCA9BAA73BD43E081ED281383B57BA48F6BB92F810E +2031A6E96810116432D402B6EBD9B7208CAAE4D7E40AE1D275E49DBD4867A1DB946A2F7E67530350 +73F2AD5FB626921DA8E6A2C70502CBFF72067E45A1A5223FDEB1F4790BC4D1FCDE1AFBA9F1907652 +98D70C89645D8F39A9ACA1563B870950BF90C8976690A5CA41DB6CB5A6A9CDAF969876ADE9D82492 +35A41B32BB1A0564C55A46351366D61C6CF716ADE7EBD8CDFA6B217F180D3AB24D7CFF8B49992D3E +2A37BAFF83F757E365397602FCD60D70C65F537DF26778F0A1E7C2BAA3C2273FF88151EB2A6DC5C9 +AF099C7A728E95FBC50D889B416A864471EAB31050AF8C6C27A8EF177B3A686EDA6354FE931EB69E +D9B39C7FB5ECBAF29F54CF5A09B36EB52D088226F1ECF75FEC87BB35E00F89A9D6595584C9EDF98D +2CD7735E9545EEFBAFC14F9474453BE920D964FE48BC5D730D919105F890A84699149E36FEC03230 +E3643472DBBE1ED54BB4DBE53353A8AAAB4882F4EE901A2CD474FB1A5AE8E3DA026B721260093742 +D27A4823BEA13FA939B3D28F3D8F5BD8A2298007C0FC3B5A831F0E1294A9A8D7F224F188960994D9 +67CF182F8FF283468CCAA2EFAF24F053FA68BD9B16EE0597DD573844EF2FC8BA518B7EBEF00FA4A5 +D282F27E133F2A976C29B8FABBE95AFA8E82DE895CED761B0EC7E03DFE08BEF1F042BA8110E6218D +065672D5B8EA61D140333D49804A1B41EB9600075B4BE636483FF2179A06DEA1427DAD8F2871DF34 +68108E12980D03EA5F122A64CCB649DD800417F698DD1F38C55340CD07473B5D493BC6C68FDCF84E +6FB9CA9AAD42FE8010193C391AD3CD97C3DF8BEB06A1B5EEDAB48C92BBABFBD7DA041F2C587EC96D +555457B5A2D6FB52486E122B46B0F934B4D3AF86A1F537B108589C0798CD4B11573C1C25214C7118 +703D6A043902C980ED303B63FF038D0FFCE3C73AF6441404C013501D8621C14CA3C2480E6C3ED0C6 +4CAB288817639F43BC26AED457100D0B2D4117911B9A34D9DF00D636A28CE4351BA69B04B108464F +0BEE3A3791F0EF03E3FCA00533A4C0749B922BB56525D632B4D56864566E29588907BE31659D43EA +D3269FBF0BDF7EAC69D636023144BAF8A49410FE55D995C926F90A2FCC6B2C5D13228390F92CC0CD +581E9374C84B10BF5FF66FFA0459D9091374EEEE0645C7E93225359893C1E102065926E0D6485E15 +E8D6F488950C4DE682A76F8DD650811E220D2ED6CCADCF65D46FA81247C52DA15A39CC85C4B8B059 +37D9F3CB303F6CE7E0FAA58973474CF41ECC17BFC9DB2A957B1456491927803C274177A41AF5C041 +47E58B44ACEC2AC0BA966DA50A6318931ECB40B97152A6CD86F720C6366A7B8BA15AC4F03B0BF167 +AE6561779063F2C35A8AF47CB4C3AB05EEFC76F18BE8B54C5135396DE53F0025FDAE047DBE2CAD2C +FFC87FB822EEB92CDFD745EDE31D47925D8D360916491CDA2C40EF9561E94FA09BD0F0F01A5C69B9 +61B2DCA57BDAE1EF3CB223E5BE042533CD81A31BC92A46D84014B8887FD7388B0404214B6C5205D7 +B59E02D03AB22710938B33114DD5DD3C5FCEE28174F4A81959C7F2F52DC619649FAF3BC7D3F0867D +1B8D78B9A9DE9DB68DFC774FBD896843C02A91FD8CF44F18A407ABDF150C4220A12DCB47B390D11B +C6D7C87ADA05274DFAFF33321965754EBFF75B419BECF34BFCF41D02C7ED542D7EF045B32289A2AE +66476610A3640FBD31ACEE4C5B9C882916A12F81D6145E3354F4BE90491692973EB657B7833FE784 +5B0B200090B2530FC82FFBC9B873C27718E8597D6707D0F521A52BAB856F73DE4B0C345E902DC44D +A6BC40E08883BE79FE205F1C6C6DE2A230F1F4AFA78B27ED20C2D7A30F72987D86B494FECBAF1224 +F32B0E4E3CD18D72C35CCEDEF16C8D4D8DBBA8FD526B451498EAE762E2E5F3F0D68C40E221EFE2C2 +11F55A5D1F1C058602F2D9E7247FDB345E8350B8F483C8FE939C71CBF9C33E90BD7054741AF37436 +7BECFF9694AE2F06973F46E8D6BE94D5DF4DF3FC4C46742AB152EABF469497D65B66C08056F90A5E +121683C1B0F91C00318EAB91191B962D67647228929A92FBEB7B5DD5CB67ECF5494A318728BCE386 +6CDC497A69D1151E8693DA446E98664776EBDB07D78CE919C5A36AF67BA04601C649AC46EA968596 +096263885765CBA3CCE6D84260936E204F735DA45C84832C4AFD284ECF25B6240F0288C34D806011 +E9B97ABF0B1CB5FDA87A272064690D7AD7AC2E23291325A17D6A9356A2968072C47C3B4A24046F2F +1B395AB3BEE6103523BE590AF5861B20E26105D9A975DC5053D8E9AFDFEA1BA745EC2962E4B8337B +554A7045868A257173ED0D30E8DF74B5E73280E403235E6835D4AF87FE74D7BA59343CB6D3F245E3 +86377A9D0CE026F26BB682FE26B37A5666AA205307B31CA2AE48F1F11B222928B021F5E0FE4C96AB +A558CCB318EBD50CFFC9612668B337F980A48E88EFD0D6A3183526F171564840FD2625D477557FE6 +3BF4D510C4E7709958BB2573B0AD5D98FA6647B93186897AF7E8249B2FC974332250F6E6E0109EFA +3A9DE66A779FE63D62DDA72A626FD8AB70DDFA440CE4C2691B884F4989C120FABD8EB38B1AD33A1A +8CEA30BF0407FA0D6A4AC4B316AEDF4F08143F75A68EA342BAD6304CB2ECA05B11FAF39E062793C7 +9805C112CF95B32B0472B07C00CE901DC74939F4F8C27093E80CC2CAD27DFB5C67A99912CF50F6FD +5CB46A1AE81738F617244C8D77E164A51B7E745FC5B2FAE13F7F10F40D7C0D2961756216732C82C5 +0D2DCB1425A3F8DFF7AB28154918F59A2225D418FACB67BCE3D5A2 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 + +cleartomark +{restore}if +%%EndFont CMSS10 +%%EndProlog +%%Page: 1 1 +gsave +newpath +0.0e+00 0.0e+00 moveto +1.5e+02 0.0e+00 lineto +1.5e+02 1.5e+02 lineto +0.0e+00 1.5e+02 lineto +closepath +clip +gsave +clip +newpath +gsave +newpath +5.0e+00 5.0e+00 moveto +5.0e+00 1.45e+02 lineto +7.5e+01 5.0e+00 moveto +7.5e+01 1.45e+02 lineto +1.45e+02 5.0e+00 moveto +1.45e+02 1.45e+02 lineto +5.0e+00 5.0e+00 moveto +1.45e+02 5.0e+00 lineto +5.0e+00 1.45e+02 moveto +1.45e+02 1.45e+02 lineto +gsave +5.0e-01 setlinewidth +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +grestore +newpath +5.0e+00 1.9e+01 moveto +1.45e+02 1.9e+01 lineto +2.15e+02 5.0e+00 moveto +2.15e+02 1.45e+02 lineto +gsave +1 setlinewidth +gsave +0 0 0 setrgbcolor +stroke +grestore +grestore +gsave +7.5e+01 1.7e+01 moveto +7.5e+01 2.1e+01 lineto +gsave stroke grestore +grestore +gsave +newpath +0 0 0 setrgbcolor + +% Comment: canvas init + +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +1.0e+01 setmiterlimit +gsave +/CMSS10 findfont +10.0 scalefont +setfont +7.084889e+01 7.468934e+00 moveto +gsave +[ 1.0 0.0 0.0 1.0 -5.86344147679 -721.766433127 ] concat +(\055\061) show +grestore +grestore +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +grestore +newpath +5.0e+00 5.0e+00 moveto +1.45e+02 5.0e+00 lineto +1.45e+02 1.45e+02 lineto +5.0e+00 1.45e+02 lineto +closepath +clip +newpath +5.0e+00 8.263636e+01 moveto +5.0e+00 8.263636e+01 lineto +5.699986e+00 8.256688e+01 lineto +6.399972e+00 8.249727e+01 lineto +7.099958e+00 8.242753e+01 lineto +7.799944e+00 8.235767e+01 lineto +8.49993e+00 8.228768e+01 lineto +9.199916e+00 8.221756e+01 lineto +9.899902e+00 8.214731e+01 lineto +1.059989e+01 8.207693e+01 lineto +1.129987e+01 8.200643e+01 lineto +1.199986e+01 8.193579e+01 lineto +1.269985e+01 8.186503e+01 lineto +1.339983e+01 8.179413e+01 lineto +1.409982e+01 8.172311e+01 lineto +1.47998e+01 8.165195e+01 lineto +1.549979e+01 8.158067e+01 lineto +1.619978e+01 8.150925e+01 lineto +1.689976e+01 8.14377e+01 lineto +1.759975e+01 8.136601e+01 lineto +1.829973e+01 8.12942e+01 lineto +1.899972e+01 8.122225e+01 lineto +1.969971e+01 8.115017e+01 lineto +2.039969e+01 8.107795e+01 lineto +2.109968e+01 8.10056e+01 lineto +2.179966e+01 8.093312e+01 lineto +2.249965e+01 8.08605e+01 lineto +2.319964e+01 8.078775e+01 lineto +2.389962e+01 8.071486e+01 lineto +2.459961e+01 8.064183e+01 lineto +2.529959e+01 8.056867e+01 lineto +2.599958e+01 8.049537e+01 lineto +2.669957e+01 8.042194e+01 lineto +2.739955e+01 8.034836e+01 lineto +2.809954e+01 8.027465e+01 lineto +2.879952e+01 8.02008e+01 lineto +2.949951e+01 8.012681e+01 lineto +3.01995e+01 8.005269e+01 lineto +3.089948e+01 7.997842e+01 lineto +3.159947e+01 7.990401e+01 lineto +3.229945e+01 7.982946e+01 lineto +3.299944e+01 7.975478e+01 lineto +3.369943e+01 7.967995e+01 lineto +3.439941e+01 7.960498e+01 lineto +3.50994e+01 7.952987e+01 lineto +3.579938e+01 7.945461e+01 lineto +3.649937e+01 7.937921e+01 lineto +3.719936e+01 7.930367e+01 lineto +3.789934e+01 7.922799e+01 lineto +3.859933e+01 7.915216e+01 lineto +3.929931e+01 7.907619e+01 lineto +3.99993e+01 7.900008e+01 lineto +4.069929e+01 7.892381e+01 lineto +4.139927e+01 7.884741e+01 lineto +4.209926e+01 7.877085e+01 lineto +4.279924e+01 7.869416e+01 lineto +4.349923e+01 7.861731e+01 lineto +4.419922e+01 7.854032e+01 lineto +4.48992e+01 7.846318e+01 lineto +4.559919e+01 7.838589e+01 lineto +4.629917e+01 7.830845e+01 lineto +4.699916e+01 7.823086e+01 lineto +4.769915e+01 7.815313e+01 lineto +4.839913e+01 7.807524e+01 lineto +4.909912e+01 7.799721e+01 lineto +4.97991e+01 7.791902e+01 lineto +5.049909e+01 7.784068e+01 lineto +5.119908e+01 7.776219e+01 lineto +5.189906e+01 7.768355e+01 lineto +5.259905e+01 7.760476e+01 lineto +5.329903e+01 7.752581e+01 lineto +5.399902e+01 7.744671e+01 lineto +5.469901e+01 7.736746e+01 lineto +5.539899e+01 7.728805e+01 lineto +5.609898e+01 7.720849e+01 lineto +5.679896e+01 7.712877e+01 lineto +5.749895e+01 7.70489e+01 lineto +5.819894e+01 7.696887e+01 lineto +5.889892e+01 7.688869e+01 lineto +5.959891e+01 7.680834e+01 lineto +6.029889e+01 7.672785e+01 lineto +6.099888e+01 7.664719e+01 lineto +6.169887e+01 7.656637e+01 lineto +6.239885e+01 7.64854e+01 lineto +6.309884e+01 7.640426e+01 lineto +6.379882e+01 7.632297e+01 lineto +6.449881e+01 7.624152e+01 lineto +6.51988e+01 7.61599e+01 lineto +6.589878e+01 7.607813e+01 lineto +6.659877e+01 7.599619e+01 lineto +6.729875e+01 7.591409e+01 lineto +6.799874e+01 7.583183e+01 lineto +6.869873e+01 7.574941e+01 lineto +6.939871e+01 7.566682e+01 lineto +7.00987e+01 7.558407e+01 lineto +7.079868e+01 7.550115e+01 lineto +7.149867e+01 7.541807e+01 lineto +7.219866e+01 7.533482e+01 lineto +7.289864e+01 7.525141e+01 lineto +7.359863e+01 7.516783e+01 lineto +7.429861e+01 7.508408e+01 lineto +7.49986e+01 7.500017e+01 lineto +gsave +1.5e+00 setlinewidth +gsave +0 0 1 setrgbcolor +stroke +grestore +grestore +newpath +5.0e+00 5.0e+00 moveto +1.45e+02 5.0e+00 lineto +1.45e+02 1.45e+02 lineto +5.0e+00 1.45e+02 lineto +closepath +clip +newpath +7.50014e+01 7.499983e+01 moveto +7.50014e+01 7.499983e+01 lineto +7.570139e+01 7.491575e+01 lineto +7.640137e+01 7.48315e+01 lineto +7.710136e+01 7.474708e+01 lineto +7.780134e+01 7.466249e+01 lineto +7.850133e+01 7.457773e+01 lineto +7.920132e+01 7.44928e+01 lineto +7.99013e+01 7.44077e+01 lineto +8.060129e+01 7.432242e+01 lineto +8.130127e+01 7.423698e+01 lineto +8.200126e+01 7.415136e+01 lineto +8.270125e+01 7.406557e+01 lineto +8.340123e+01 7.397961e+01 lineto +8.410122e+01 7.389347e+01 lineto +8.48012e+01 7.380715e+01 lineto +8.550119e+01 7.372067e+01 lineto +8.620118e+01 7.3634e+01 lineto +8.690116e+01 7.354716e+01 lineto +8.760115e+01 7.346014e+01 lineto +8.830113e+01 7.337295e+01 lineto +8.900112e+01 7.328557e+01 lineto +8.970111e+01 7.319802e+01 lineto +9.040109e+01 7.311029e+01 lineto +9.110108e+01 7.302238e+01 lineto +9.180106e+01 7.293429e+01 lineto +9.250105e+01 7.284602e+01 lineto +9.320104e+01 7.275757e+01 lineto +9.390102e+01 7.266894e+01 lineto +9.460101e+01 7.258012e+01 lineto +9.530099e+01 7.249112e+01 lineto +9.600098e+01 7.240194e+01 lineto +9.670097e+01 7.231257e+01 lineto +9.740095e+01 7.222302e+01 lineto +9.810094e+01 7.213328e+01 lineto +9.880092e+01 7.204336e+01 lineto +9.950091e+01 7.195325e+01 lineto +1.002009e+02 7.186295e+01 lineto +1.009009e+02 7.177247e+01 lineto +1.016009e+02 7.16818e+01 lineto +1.023009e+02 7.159094e+01 lineto +1.030008e+02 7.149989e+01 lineto +1.037008e+02 7.140865e+01 lineto +1.044008e+02 7.131722e+01 lineto +1.051008e+02 7.12256e+01 lineto +1.058008e+02 7.113379e+01 lineto +1.065008e+02 7.104178e+01 lineto +1.072008e+02 7.094959e+01 lineto +1.079007e+02 7.085719e+01 lineto +1.086007e+02 7.076461e+01 lineto +1.093007e+02 7.067183e+01 lineto +1.100007e+02 7.057885e+01 lineto +1.107007e+02 7.048568e+01 lineto +1.114007e+02 7.039232e+01 lineto +1.121007e+02 7.029875e+01 lineto +1.128006e+02 7.020499e+01 lineto +1.135006e+02 7.011103e+01 lineto +1.142006e+02 7.001687e+01 lineto +1.149006e+02 6.992251e+01 lineto +1.156006e+02 6.982795e+01 lineto +1.163006e+02 6.973318e+01 lineto +1.170006e+02 6.963822e+01 lineto +1.177005e+02 6.954306e+01 lineto +1.184005e+02 6.944769e+01 lineto +1.191005e+02 6.935212e+01 lineto +1.198005e+02 6.925634e+01 lineto +1.205005e+02 6.916036e+01 lineto +1.212005e+02 6.906417e+01 lineto +1.219005e+02 6.896778e+01 lineto +1.226004e+02 6.887118e+01 lineto +1.233004e+02 6.877438e+01 lineto +1.240004e+02 6.867736e+01 lineto +1.247004e+02 6.858014e+01 lineto +1.254004e+02 6.84827e+01 lineto +1.261004e+02 6.838506e+01 lineto +1.268004e+02 6.828721e+01 lineto +1.275003e+02 6.818914e+01 lineto +1.282003e+02 6.809086e+01 lineto +1.289003e+02 6.799237e+01 lineto +1.296003e+02 6.789367e+01 lineto +1.303003e+02 6.779475e+01 lineto +1.310003e+02 6.769561e+01 lineto +1.317003e+02 6.759626e+01 lineto +1.324003e+02 6.74967e+01 lineto +1.331002e+02 6.739691e+01 lineto +1.338002e+02 6.729691e+01 lineto +1.345002e+02 6.719669e+01 lineto +1.352002e+02 6.709625e+01 lineto +1.359002e+02 6.699559e+01 lineto +1.366002e+02 6.689471e+01 lineto +1.373002e+02 6.679361e+01 lineto +1.380001e+02 6.669229e+01 lineto +1.387001e+02 6.659074e+01 lineto +1.394001e+02 6.648897e+01 lineto +1.401001e+02 6.638698e+01 lineto +1.408001e+02 6.628476e+01 lineto +1.415001e+02 6.618231e+01 lineto +1.422001e+02 6.607964e+01 lineto +1.429e+02 6.597674e+01 lineto +1.436e+02 6.587361e+01 lineto +1.443e+02 6.577025e+01 lineto +1.45e+02 6.566667e+01 lineto +gsave +1.5e+00 setlinewidth +gsave +0 0 1 setrgbcolor +stroke +grestore +grestore +grestore +grestore +grestore showpage + +% --------------------------------------------------------- + +%%Trailer +%%EOF diff --git a/assets/images/rational-features-hole-1A-zoom.svg b/assets/images/rational-features-hole-1A-zoom.svg index 37752918..b1292219 100644 --- a/assets/images/rational-features-hole-1A-zoom.svg +++ b/assets/images/rational-features-hole-1A-zoom.svg @@ -1,37 +1,37 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/rational-features-hole-1A.svg b/assets/images/rational-features-hole-1A.svg index df1991f8..c1e3cd4a 100644 --- a/assets/images/rational-features-hole-1A.svg +++ b/assets/images/rational-features-hole-1A.svg @@ -1,132 +1,132 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/rational-plot-act.svg b/assets/images/rational-plot-act.svg index 1b5bb243..be017a74 100644 --- a/assets/images/rational-plot-act.svg +++ b/assets/images/rational-plot-act.svg @@ -1,159 +1,159 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/rational-plot-ex.svg b/assets/images/rational-plot-ex.svg index 10fee5c3..cd227b17 100644 --- a/assets/images/rational-plot-ex.svg +++ b/assets/images/rational-plot-ex.svg @@ -1,116 +1,116 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/rational-sign-chart-act.svg b/assets/images/rational-sign-chart-act.svg index 118cdf16..cffc8028 100644 --- a/assets/images/rational-sign-chart-act.svg +++ b/assets/images/rational-sign-chart-act.svg @@ -1,161 +1,161 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/rational-sign-chart.svg b/assets/images/rational-sign-chart.svg index bc9983e1..b1afd785 100644 --- a/assets/images/rational-sign-chart.svg +++ b/assets/images/rational-sign-chart.svg @@ -1,354 +1,354 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/right-act-river-riv.svg b/assets/images/right-act-river-riv.svg index 2c2f28c1..d837e690 100644 --- a/assets/images/right-act-river-riv.svg +++ b/assets/images/right-act-river-riv.svg @@ -1,100 +1,100 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/right-act-river.svg b/assets/images/right-act-river.svg index d7c97be0..738bac9e 100644 --- a/assets/images/right-act-river.svg +++ b/assets/images/right-act-river.svg @@ -1,88 +1,88 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/right-triangle-5.svg b/assets/images/right-triangle-5.svg index a6e44c61..2adae842 100644 --- a/assets/images/right-triangle-5.svg +++ b/assets/images/right-triangle-5.svg @@ -1,47 +1,47 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/right-triangle-SOH-CAH-TOA.svg b/assets/images/right-triangle-SOH-CAH-TOA.svg index 883b32be..6351bcc7 100644 --- a/assets/images/right-triangle-SOH-CAH-TOA.svg +++ b/assets/images/right-triangle-SOH-CAH-TOA.svg @@ -1,58 +1,58 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/right-triangle-SOH-CAH.svg b/assets/images/right-triangle-SOH-CAH.svg index c3d20b84..5cc35f1b 100644 --- a/assets/images/right-triangle-SOH-CAH.svg +++ b/assets/images/right-triangle-SOH-CAH.svg @@ -1,58 +1,58 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/right-triangle-act-similar.svg b/assets/images/right-triangle-act-similar.svg index 3d526902..d5a16513 100644 --- a/assets/images/right-triangle-act-similar.svg +++ b/assets/images/right-triangle-act-similar.svg @@ -1,92 +1,92 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/right-triangle-ex-ratio.svg b/assets/images/right-triangle-ex-ratio.svg index f994dbd2..3a03bce8 100644 --- a/assets/images/right-triangle-ex-ratio.svg +++ b/assets/images/right-triangle-ex-ratio.svg @@ -1,49 +1,49 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/right-triangle-r-theta.svg b/assets/images/right-triangle-r-theta.svg index 6dfc936f..923f5aef 100644 --- a/assets/images/right-triangle-r-theta.svg +++ b/assets/images/right-triangle-r-theta.svg @@ -1,142 +1,142 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/right-triangle-trough.svg b/assets/images/right-triangle-trough.svg index c197af9a..4555db44 100644 --- a/assets/images/right-triangle-trough.svg +++ b/assets/images/right-triangle-trough.svg @@ -1,41 +1,41 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/sine-and-cosine-graphs.svg b/assets/images/sine-and-cosine-graphs.svg index 1eb85f93..d3637287 100644 --- a/assets/images/sine-and-cosine-graphs.svg +++ b/assets/images/sine-and-cosine-graphs.svg @@ -1,267 +1,267 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/sine-cosine-definition-axes.svg b/assets/images/sine-cosine-definition-axes.svg index 141c2062..7316d948 100644 --- a/assets/images/sine-cosine-definition-axes.svg +++ b/assets/images/sine-cosine-definition-axes.svg @@ -1,217 +1,217 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/sine-cosine-right-triangle.svg b/assets/images/sine-cosine-right-triangle.svg index 4e88c30f..9a06e406 100644 --- a/assets/images/sine-cosine-right-triangle.svg +++ b/assets/images/sine-cosine-right-triangle.svg @@ -1,100 +1,100 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/sine-cosine-unit-circle.svg b/assets/images/sine-cosine-unit-circle.svg index 79374a5a..3aff12b1 100644 --- a/assets/images/sine-cosine-unit-circle.svg +++ b/assets/images/sine-cosine-unit-circle.svg @@ -1,134 +1,134 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/sine-definition-graph.svg b/assets/images/sine-definition-graph.svg index c9c52aa7..27de1536 100644 --- a/assets/images/sine-definition-graph.svg +++ b/assets/images/sine-definition-graph.svg @@ -1,350 +1,350 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/sine-defn-cosine.svg b/assets/images/sine-defn-cosine.svg index 25a40516..eb0fa471 100644 --- a/assets/images/sine-defn-cosine.svg +++ b/assets/images/sine-defn-cosine.svg @@ -1,113 +1,113 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/sine-defn.svg b/assets/images/sine-defn.svg index 134be7f2..612109ab 100644 --- a/assets/images/sine-defn.svg +++ b/assets/images/sine-defn.svg @@ -1,113 +1,113 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/sine-labeling-graph.svg b/assets/images/sine-labeling-graph.svg index 366a6729..13c65e49 100644 --- a/assets/images/sine-labeling-graph.svg +++ b/assets/images/sine-labeling-graph.svg @@ -1,249 +1,249 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/sinusoidal-horiz-scaling-1.svg b/assets/images/sinusoidal-horiz-scaling-1.svg index fd5e5fc3..3c0c19bf 100644 --- a/assets/images/sinusoidal-horiz-scaling-1.svg +++ b/assets/images/sinusoidal-horiz-scaling-1.svg @@ -1,133 +1,133 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/sinusoidal-horiz-scaling-2.svg b/assets/images/sinusoidal-horiz-scaling-2.svg index 41272231..3870c26c 100644 --- a/assets/images/sinusoidal-horiz-scaling-2.svg +++ b/assets/images/sinusoidal-horiz-scaling-2.svg @@ -1,127 +1,127 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/sinusoidal-sine-horiz-scaling-2.svg b/assets/images/sinusoidal-sine-horiz-scaling-2.svg index 2fa12e95..017f8b20 100644 --- a/assets/images/sinusoidal-sine-horiz-scaling-2.svg +++ b/assets/images/sinusoidal-sine-horiz-scaling-2.svg @@ -1,266 +1,266 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/sinusoidal-sine-horiz-scaling.svg b/assets/images/sinusoidal-sine-horiz-scaling.svg index e7050cab..4e5e289c 100644 --- a/assets/images/sinusoidal-sine-horiz-scaling.svg +++ b/assets/images/sinusoidal-sine-horiz-scaling.svg @@ -1,269 +1,269 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/sinusoidal-transformed-cosine.svg b/assets/images/sinusoidal-transformed-cosine.svg index 442a37d1..52f6b298 100644 --- a/assets/images/sinusoidal-transformed-cosine.svg +++ b/assets/images/sinusoidal-transformed-cosine.svg @@ -1,387 +1,387 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/tan-act-mountain.svg b/assets/images/tan-act-mountain.svg index a862fd20..aeb5cca8 100644 --- a/assets/images/tan-act-mountain.svg +++ b/assets/images/tan-act-mountain.svg @@ -1,81 +1,81 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/tan-act-two-towers.svg b/assets/images/tan-act-two-towers.svg index 8e166625..52ca4c3b 100644 --- a/assets/images/tan-act-two-towers.svg +++ b/assets/images/tan-act-two-towers.svg @@ -1,80 +1,80 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/tan-definition-graph.svg b/assets/images/tan-definition-graph.svg index a0000d09..565f9ddf 100644 --- a/assets/images/tan-definition-graph.svg +++ b/assets/images/tan-definition-graph.svg @@ -1,342 +1,342 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/tan-defn-unit-circle.svg b/assets/images/tan-defn-unit-circle.svg index dfa7add4..3c68f17b 100644 --- a/assets/images/tan-defn-unit-circle.svg +++ b/assets/images/tan-defn-unit-circle.svg @@ -1,126 +1,126 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/tandem-V-t-blank-axes.svg b/assets/images/tandem-V-t-blank-axes.svg index d1448b63..55359fe1 100644 --- a/assets/images/tandem-V-t-blank-axes.svg +++ b/assets/images/tandem-V-t-blank-axes.svg @@ -1,38 +1,38 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/tandem-aquarium-V-t.svg b/assets/images/tandem-aquarium-V-t.svg index effa5efb..0e822524 100644 --- a/assets/images/tandem-aquarium-V-t.svg +++ b/assets/images/tandem-aquarium-V-t.svg @@ -1,122 +1,122 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/tandem-cone-V-t.svg b/assets/images/tandem-cone-V-t.svg index 300a3633..83b7fdf7 100644 --- a/assets/images/tandem-cone-V-t.svg +++ b/assets/images/tandem-cone-V-t.svg @@ -1,122 +1,122 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/tandem-cone-h-t.svg b/assets/images/tandem-cone-h-t.svg index 07ddbf58..aec623e3 100644 --- a/assets/images/tandem-cone-h-t.svg +++ b/assets/images/tandem-cone-h-t.svg @@ -1,103 +1,103 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/tandem-empty-aquarium.eps b/assets/images/tandem-empty-aquarium.eps index 52bb26fa..6abb1887 100755 --- a/assets/images/tandem-empty-aquarium.eps +++ b/assets/images/tandem-empty-aquarium.eps @@ -1,708 +1,708 @@ -%!PS-Adobe-2.0 EPSF-3.0 -%%BoundingBox: 0 0 160 100 -%%Pages: 1 -%%PageOrder: Ascend - -%%BeginProlog -%%BeginProcSet: -/ReEncodeFont { exch findfont << >> copy dup 3 2 roll /Encoding exch put definefont } def -%%EndProcSet -%%BeginFont: CMSS10 -%!PS-AdobeFont-1.0: CMSS10 003.002 -%%Title: CMSS10 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMSS10. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments - -FontDirectory/CMSS10 known{/CMSS10 findfont dup/UniqueID known{dup -/UniqueID get 5000803 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /CMSS10 def -/FontBBox {-61 -250 999 759 }readonly def -/UniqueID 5000803 def -/PaintType 0 def -/FontInfo 9 dict dup begin - /version (003.002) readonly def - /Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMSS10.) readonly def - /FullName (CMSS10) readonly def - /FamilyName (Computer Modern) readonly def - /Weight (Medium) readonly def - /ItalicAngle 0 def - /isFixedPitch false def - /UnderlinePosition -100 def - /UnderlineThickness 50 def -end readonly def -/Encoding 256 array - 0 1 255 { 1 index exch /.notdef put} for -dup 0 /Gamma put -dup 1 /Delta put -dup 2 /Theta put -dup 3 /Lambda put -dup 4 /Xi put -dup 5 /Pi put -dup 6 /Sigma put -dup 7 /Upsilon put -dup 8 /Phi put -dup 9 /Psi put -dup 10 /Omega put -dup 11 /ff put -dup 12 /fi put -dup 13 /fl put -dup 14 /ffi put -dup 15 /ffl put -dup 16 /dotlessi put -dup 17 /dotlessj put -dup 18 /grave put -dup 19 /acute put -dup 20 /caron put -dup 21 /breve put -dup 22 /macron put -dup 23 /ring put -dup 24 /cedilla put -dup 25 /germandbls put -dup 26 /ae put -dup 27 /oe put -dup 28 /oslash put -dup 29 /AE put -dup 30 /OE put -dup 31 /Oslash put -dup 32 /suppress put -dup 33 /exclam put -dup 34 /quotedblright put -dup 35 /numbersign put -dup 36 /dollar put -dup 37 /percent put -dup 38 /ampersand put -dup 39 /quoteright put -dup 40 /parenleft put -dup 41 /parenright put -dup 42 /asterisk put -dup 43 /plus put -dup 44 /comma put -dup 45 /hyphen put -dup 46 /period put -dup 47 /slash put -dup 48 /zero put -dup 49 /one put -dup 50 /two put -dup 51 /three put -dup 52 /four put -dup 53 /five put -dup 54 /six put -dup 55 /seven put -dup 56 /eight put -dup 57 /nine put -dup 58 /colon put -dup 59 /semicolon put -dup 60 /exclamdown put -dup 61 /equal put -dup 62 /questiondown put -dup 63 /question put -dup 64 /at put -dup 65 /A put -dup 66 /B put -dup 67 /C put -dup 68 /D put -dup 69 /E put -dup 70 /F put -dup 71 /G put -dup 72 /H put -dup 73 /I put -dup 74 /J put -dup 75 /K put -dup 76 /L put -dup 77 /M put -dup 78 /N put -dup 79 /O put -dup 80 /P put -dup 81 /Q put -dup 82 /R put -dup 83 /S put -dup 84 /T put -dup 85 /U put -dup 86 /V put -dup 87 /W put -dup 88 /X put -dup 89 /Y put -dup 90 /Z put -dup 91 /bracketleft put -dup 92 /quotedblleft put -dup 93 /bracketright put -dup 94 /circumflex put -dup 95 /dotaccent put -dup 96 /quoteleft put -dup 97 /a put -dup 98 /b put -dup 99 /c put -dup 100 /d put -dup 101 /e put -dup 102 /f put -dup 103 /g put -dup 104 /h put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 108 /l put -dup 109 /m put -dup 110 /n put -dup 111 /o put -dup 112 /p put -dup 113 /q put -dup 114 /r put -dup 115 /s put -dup 116 /t put -dup 117 /u put -dup 118 /v put -dup 119 /w put -dup 120 /x put -dup 121 /y put -dup 122 /z put -dup 123 /endash put -dup 124 /emdash put -dup 125 /hungarumlaut put -dup 126 /tilde put -dup 127 /dieresis put -dup 128 /suppress put -dup 160 /space put -dup 161 /Gamma put -dup 162 /Delta put -dup 163 /Theta put -dup 164 /Lambda put -dup 165 /Xi put -dup 166 /Pi put -dup 167 /Sigma put -dup 168 /Upsilon put -dup 169 /Phi put -dup 170 /Psi put -dup 171 /sfthyphen put -dup 172 /nbspace put -dup 173 /Omega put -dup 174 /ff put -dup 175 /fi put -dup 176 /fl put -dup 177 /ffi put -dup 178 /ffl put -dup 179 /dotlessi put -dup 180 /dotlessj put -dup 181 /grave put -dup 182 /acute put -dup 183 /caron put -dup 184 /breve put -dup 185 /macron put -dup 186 /ring put -dup 187 /cedilla put -dup 188 /germandbls put -dup 189 /ae put -dup 190 /oe put -dup 191 /oslash put -dup 192 /AE put -dup 193 /OE put -dup 194 /Oslash put -dup 195 /suppress put -dup 196 /dieresis put -readonly def -currentdict end -currentfile eexec -D9D66F633B846AB284BCF8B0411B772DE5CD06DFE1BE899059C588357426D7A07B684C079A47D271 -426064AD18CB9750D8A986D1D67C1B2AEEF8CE785CC19C81DE96489F740045C5E342F02DA1C9F9F3 -C167651E646F1A67CF379789E311EF91511D0F605B045B279357D6FC8537C233E7AEE6A4FDBE73E7 -5A39EB206D20A6F61021961B748D419EBEEB028B592124E174CA595C108E12725B9875544955CFFD -028B698EF742BC8C19F979E35B8E99CADDDDC89CC6C59733F2A24BC3AF36AD861319147A4A219ECB -92D0D9F6228B51A97C295470093CA270C4488BB4EB864B4863941B9739638D2E6F3CC778582B46AE -B4E466D89D1C211225274356A4BC90F3274C6AA56E200249B7D0949A3FD4185DCB3E5286910EFD7C -A72D5D8E8052C96F388D12094B87D3705CE64459558CF024667C0FE96CBB32B0BC9E51037D7BD62B -E4B05FF99384E71D78441A79B0B1DBA1CAE02434A9FAE46596FB86B873B1670DAE0BAF516445A0DD -C127F8FF3ADA0B10EC30A9CC1F7E9248828B5E8AB46C3FE4154B80A54128A08777F5F9B8C519C7E3 -B632B3476F007FA156E9F39FBE57638B4214CD2BA79BA9DDA0F4C073AED814ABCCC2F7906C57A872 -C00E67FF03AC120029DAB92376422FA21C67CA98BCEB8C431CA2D3EDDC16BDA59363F49614070AA6 -859105192CCC6E4911B0B5D0FBDE04872D8C8D84FE6B68702FBFC4682186E03F2141CF8FC8E23254 -2FF446E00D34A7B9B9271B07DEEED93C336653ED0F51DBA0DE34235097373CA4583095151642EEE7 -6B6BA6714F37031F5AD2ECA4875FD02F65D47541F5245588F0CB5933A759342FC460ABF99E014A85 -CE3BFF948BC38F3D29FAFBD205400093EBD129A9C3AF161E7365DEB2905074660FEC703B6D4733A6 -6EC1E78A1FF3FA90863072C108109D4DFF62166EA04DD1E05225CD1B9A6808413402E9E1E81512B7 -1BFD781132923BA7B5DB7032E7AF65CAD135E8D3C0DDEFE960DECAC693166D83DB2A6D819E40024B -40A114818D7E943849FD90359B4BCC4FB0E2E0373A6200C13F194D735815ACC2E09BF4ABC693DE6E -975F0C27BAD1DCFE8D0A3977B48104EA6F85072BC0F5FD3E8FD8D53DBB088061BDB89249A4C3E6BD -B4A5A0F469D9B53E9B35A4A03F558DC93B8870FD28A829735E1F25F455CEA1CC8DFB408888DDBCEC -C050A84B6EBF39E42B4278F92E44C7A41FAA83CE07255B8CAA9F3EB43368900EEDEAADD836AEB663 -7EFF72351D649500FF3544DAB77FE191A5907B8E7C2AA4A9B18D857C63B2F41279FE6E241EB946D9 -A67B3908CF7146DE0D971192BF7908B3319E6C0B33995F4E54BACDA9040693EA19F24266FF8A46B9 -3D6091337C2BBAACE6ED443A6A83EA4296E41E309192D66122FCF7A37578C45859854CADF75A8299 -727CDC5868F365497886C518C001A3CD4C0A5ED589C3FE9C14269A9DBE9A10FBD6B4B0BB6292975E -F7210A6E4959DE1F3063A98393C63ED63D2EA31353ADC92AC1B924678E81B509CD4470DBD22694E2 -EF36266270A78A350581C6AF9747D92BA0ED2019FFFBDEAA908B373CA6A848512CD5A5607A8EF877 -1533539AE3D2F448FE1092CC640F699D73C6CB421B56C630574A11B5F48DF7DDF4942C82FD5DCC9A -5BF9585CB7715053059CF73503C1FBEF7F8F45546039AE0F3BDDE1ADA78C2DB36040C20848ADB414 -4E71B38A447FFC4F768366416027344912C9134FB30AD513BFB40008884FA98F1D25714121082696 -C877790A06A60BFFB6CFAEACF55453878DF4D972841D7D18E510D5E842416F023BA13A40696FA534 -DB3B0601F45B77FB1CECAD240B8594CC95DF65BD45C1A73D2489D6AA84FD46414D992CDA7D307640 -017951656A3C736C73B116EA9F0A3304EAFA312E46A5152E902D840108C2A1858A95B958055A8080 -B97D612BE59E2D24A5362EF77A83CD8656F8FB6519BDFB3CC43E068C8203BAE620255274AA281972 -A1EE85C378818532B42368AAA93A0C984D7380AD57F1B8FFAAFECAD5EAC17A07DA742E272D3C809B -157D2669AB88DA9EBB91B9E060DE7F275ADFE2FFEA18127969214795E7CD9C27CF902AD3EAD6C6AE -0A4BCDDAD88B6F37932BC7B07D9B43742A08A257DFB3FBB532077039C9CE90386F6C80BDED9CA008 -A7783B6F702DD00D9ECFE3AD9DB0704BBFF4CCBE0B3C75401337CFC1A37E008A09C95C4CE6CF8AF5 -56487D6B320F3B3A9D36623E85FF4119D9EAF24099C2E1D9860DD2187E8CDDF80C4F0B164EC85E0B -21901D017E0A20FBE2090DB90EEE5C9BD2EAD87725F7FF37FD8F43031494817603B8A7E69FEE78D1 -4AC7A66F16800B4B7943B7AED95E9044282017A0FED40F053EBFCA7E292B6C4E0C8DB47B054C91C9 -A1DE4A2741E5E7970AE431494BACF4AA487BCA0080D9A6A3FA3D0E77373F2D40B300D8936C71D83B -3332EE113D087B38E1852312C21ED29C688FFD05D07629D2A48AE9B7B6363AAFFC6CC5ABC96A996E -478C37D745E5B6C90A006349A971C554C27F1D4F7AD1CFED394315EE5C7E681D491213E010A328BF -49C988D7E490BDEA5A86B0F2A8C845A01D84751E1C4BFDDD19045AFDC1283279D7AA6A1FBFD539D3 -A0BEC325597E025A4DE112CBFDB439FE719E690F8DCBEDA826D6546EDF93EDCB67F5AA78FD308CC9 -4EB375BA5FD443083665C0E361462AE4EC541ECD1891B6A7B41715FEBAAAB658FF924A171F4504E5 -03CBC27912393C0F85DF4B276DB39A174CF94B2D6FAC5E3E4F886B2C0D67DF8C502E1E513D934938 -831AAD911F3270A67FA434FD5E3D02E9655661BFC2BB9FE7460E6AE8CFACF6BF545C41C730AC58DB -BCF9AC8532C9E85D9ECAC11D0F7C55288962DB1EFD351B56BF6F2051C62377B95FF0C93A09966EE9 -C6B792126A6C7E9995F2D68E20308347FAB463F5F2DB2E8675882CEF049EF0A6406E1647137D9A46 -734D6E909754E66704552A41B3698B50417F2F3D4F883E3D3E6A75743820E689AE4818C297572E29 -2B5761396825B38C2E6D96ED290856AC6154C51FD90C3EE498E46295832503D76A22CDAC68B6B7AC -B36BA3496422936F48E1569777229320718C45F71C0F857EE699FDD1526E4A23418681D41940E7E0 -FA2C551FB8B79495719F34C3774B229DF858F51AA2E26094FC181BCAE64EE209EE131B9472D6A7EF -6A131EFB221E0F2CCC829A0D9672CEDACF44453400D15DDD34C4126F003A0E57455B25785E1CC9AB -4D4EE1A3BCCBEE149CDCC7EDE7B1F09DA1174F48048B568094F280F22590903F3B2C6A1A796E851F -71D34972F00FF13EB51F8136490C2BA6909B130CF3170820C652A1733BC4B69297BF1F5CF816BCB7 -5A0AC3520AC1DE911B72DEE5AD0033228B9F75961ED1280C6808ED0FD548411696C1CC747AEF91A4 -1EF05215DB5720AADE50BC598749C67770515BFF6DBC5A940C07AB462AA296621D7722C5A47AB3FA -6305C55216216540098F86A1EE217C77EDC0BC3F6DFEC4AFA266019C20CAAAEB381145B3588FAD0A -AB944AD9F120DFF24168844BF92C279D1DF5923C9ACF10393655F33CB9E7EB09A74BD898D07A31A1 -07326EA219163FD6CA3E5A0985F74421F895F020D3D482444C50B428B364487B0FEF8717ABD8D223 -2B4D35EB256A3AE5C1B0D2AE331A1E1D4D5DBC7BACF361E52719DA50620E5137E085481F632B861E -FFF31AF04624D486130FB361F799FF5219E405C80DBFB653CCB3C2E10934C95417A7E91DBE161727 -C5861A219A59470E6AF895C93AD43FAD820BB4C58C13678AE33D18C3EF8DB36A7270CDB3BA2BDDAC -02B0C93D29829DC2B9087F070FFB297464CBF426545A65B869B2661F5B7B6575119DA27D715F0A42 -DF446901F0F2A632AF5614C9EC1FD2A6C79E676D80DACB9F2B89FC51333B4CA7CD98D8CE8B62959C -86949E2CC2F530333C9A80879850481167A7DC78A8A76DDE664449367B44F711D88EC7028E92AA59 -EBBBF050573B52DC80B0FA653E2EC9E5161C27DFCC86365648249518E72D8954BCBC439742A80ED6 -8A7DAF601400AAB2899D4851040C80A64C1E9D4C500F23ACEDC18C120C2E3D0001C37895247338EF -A633428297ECE1771E26219BC93237DDF71A9CF08D47B323D03E904243D1E98DC596BD7E7677B7D9 -1C06474CEEC23C4DAF1B29029342D16121B3390C87DB04C65447C2515B12B9BCC3AB98B9EABD9636 -1EDCEB53655A24E4845604C560D1120F90ED4456BC543E5916BD60C986482FB77BBE9060121FE179 -8C34A17A6AB350D85904106032A0A107649EEAD9B8F59E4CF5256B025440BB3713C2FA5638D6CEFB -788A39A5A5C51842A13AE24684EC59A6FAE55A64148FE73DFB3234F3912D21D68769C9470E3F2DCE -B860872E0556A5C72FB6FF7F7015D09B116FDFEC79EBF0544A0A989269B34475BF5E18B5A3111496 -FB39BD1B25468B6E5B2EDD1624C1AFD3401A8F2086CF3C9D366834BFF85115EDEAFCA61D1343367A -1F5441246000D9A585EDBE50D5B5CAB2455D58B855DA66180F8E1EAF8A2D1948DF1DA913C8F86F2C -58365A77F4B867309629DC8A9237EF9EF4CA0515B2D1B7B7ED64589CD8D196FC057EB96B392EDCC8 -60C15FA2622A484D32D4E2AFEBAD06946CDDD7B7AACA6C0AA5A41B3BCC91D459AB502137DC8C5032 -C3DC8E5D96D210F702FFA73794B639D0F9E7AE0D2134546FA90360B851782BACEE3C28CF7871D3F8 -12CAF86221212D1D321A07B39A14CAE62F41DC83E7714F3E315A7C63E2DCDCFB7F87DDA2BBC6CC60 -73839FC2F05C03077D8A0C9E7373849927450DF6DAF94B27277349A60073C6979312CC0D5C81A89A -058584982D449F1E993AE1EEF449F1AC7840BBA7AAFD999F622D0D1DD573326683C09082ED3564A9 -B28D29955F89ED47DD0EBC2ABE45B585D10E85CECBE52F919EFDDD9630CF8F90CBF2F156EA791E0D -BD178AFBB1AE3E72E08CB83F896067121B671F63869EA022BA7D11BD63381E33860317F70941E782 -FDADC1224AD556467935E93C63794E07F5AD57FDD0F6D859C82B562E80758E8A5C1EDD8FD2E37E34 -FA42E49098561E8E9696DF5A62F1A27D6B1D0FBC9911A979C25E5A81181BAA04415306D755B890B6 -0523E4A211D00CA64AA90625CBF5ABE06EE227128114B07536D79841004AA4A1FA1612A78DCF0F03 -B121B2870FD3ECCF2C034578F9A3F008DCDE1D8354625DE2A97D78E6F85782F829F79B3E286480B4 -57680BE7758FC50CDFC17E5EE5FB3276BEA977E933AB1BEEB1B27B2F3D164ED5B9AF1280C482ECC5 -952F608E0AD0D1F6363637CFAAEF4F0FC7CAEDA1EFE35BB80C07E0E701633CCA557BD478B70652C4 -874F4AF391481A982AE0AE8F0764EADD9316048CA985B570DDEFEDE6A64EA15A80BE9AA4709E4FA6 -DA9CC49B546955BFEF78320D67D14F120F47BF0C8568D337D6339CAC2FA9C51AF3EAB6AE46A4584A -89BD235ADB26332DB72F5EA2EE4DFCFEF41726C92C2CE299D54EF8A582E766A2C20F429CA48858A0 -D61716B9CDF7D67FFE5D7D6E72ACF982456C52D0986762485E2E111038EA4C67E1183A40249BBECE -EF800CFF6CFABCB532465C496571541110DCEA197B20E1915F9CDB842444BF7CC4A559262C89B487 -A99B92B7EF0087E6893DDBB5895C047D88FCEC1B29029368C65744591AC683FE613D8582066B6000 -35FA0EF7AD4236BF1A4632A7B9DCDAB2F9B8F6FA6C8E3248841AB3CE22D3741DC40F29A61E2676DF -55882F5F41DE8BDA16B6753D8D9EFC41D5C6AEEEE771F712188F4C92641B7C891EDB3484DE68D56F -58E5EF015B98490C17FE3020479384E19AF8AECD888F718055B81A78B8B39FDAC88BDCCC0C1CD447 -A18F0F04BE83D2C6FC44B376E74752EA4ACF043812E4BF1313703F8A9898D8C175CF434C97CBBA18 -197EC3C5A7928844060723A18F19EC2B26AE7CF1C95E4D2FAD1A4F7F9DB3E4143B69B9E0DF94D313 -F41F045B19D8B71376A44E05A5B41F3DB38EE63C24483DDE9F67A0102597DFC316A853C489B61A3C -C7F1A1908E3C63FDFD4D20754A27D27E5B17AFA895787DE85EB9F560EFDFE4EE3ACE1CD5222553A1 -A6B929665EF740E4B8724327B5A6FBA8C1142CA1FDDDE6DC085764FD4C519FA8742BEC0795773D01 -07E832A84B2A4AFF55102C143B67CA605527E129975852C1F99B765E26371D7A47F328DE406D8710 -C0C7242D624DAE937EA7D01056999ECC3A938AA560090C43EE5087B0A0C66CD9186E9C711A2916B6 -266FD68FCF8F6378241A614E8D7A144F3D9B807850F98C4401049B469FAF5C3BECC8741D47CCD383 -32D2C399B40D270B8B68FFACCD9405F619A897C865D3FA84DCE0F1FA9C54B9F8B9B574C9BA981A8F -4D5F4FBDA945D4DAA725DA6E1E24DA5E9803FD2769809AC972338812B14972D3DC6511903712CBFA -F3161D557B671DFE13AA19A942FE564B1EBF441B06D7B7C739DBFD9C96FDABC13A2B7397CCF37EAD -E23ABD4521F69FDBC483411452285234F655AFCA9BAA73BD43E081ED281383B57BA48F6BB92F810E -2031A6E96810116432D402B6EBD9B7208CAAE4D7E40AE1D275E49DBD4867A1DB946A2F7E67530350 -73F2AD5FB626921DA8E6A2C70502CBFF72067E45A1A5223FDEB1F4790BC4D1FCDE1AFBA9F1907652 -98D70C89645D8F39A9ACA1563B870950BF90C8976690A5CA41DB6CB5A6A9CDAF969876ADE9D82492 -35A41B32BB1A0564C55A46351366D61C6CF716ADE7EBD8CDFA6B217F180D3AB24D7CFF8B49992D3E -2A37BAFF83F757E365397602FCD60D70C65F537DF26778F0A1E7C2BAA3C2273FF88151EB2A6DC5C9 -AF099C7A728E95FBC50D889B416A864471EAB31050AF8C6C27A8EF177B3A686EDA6354FE931EB69E -D9B39C7FB5ECBAF29F54CF5A09B36EB52D088226F1ECF75FEC87BB35E00F89A9D6595584C9EDF98D -2CD7735E9545EEFBAFC14F9474453BE920D964FE48BC5D730D919105F890A84699149E36FEC03230 -E3643472DBBE1ED54BB4DBE53353A8AAAB4882F4EE901A2CD474FB1A5AE8E3DA026B721260093742 -D27A4823BEA13FA939B3D28F3D8F5BD8A2298007C0FC3B5A831F0E1294A9A8D7F224F188960994D9 -67CF182F8FF283468CCAA2EFAF24F053FA68BD9B16EE0597DD573844EF2FC8BA518B7EBEF00FA4A5 -D282F27E133F2A976C29B8FABBE95AFA8E82DE895CED761B0EC7E03DFE08BEF1F042BA8110E6218D -065672D5B8EA61D140333D49804A1B41EB9600075B4BE636483FF2179A06DEA1427DAD8F2871DF34 -68108E12980D03EA5F122A64CCB649DD800417F698DD1F38C55340CD07473B5D493BC6C68FDCF84E -6FB9CA9AAD42FE8010193C391AD3CD97C3DF8BEB06A1B5EEDAB48C92BBABFBD7DA041F2C587EC96D -555457B5A2D6FB52486E122B46B0F934B4D3AF86A1F537B108589C0798CD4B11573C1C25214C7118 -703D6A043902C980ED303B63FF038D0FFCE3C73AF6441404C013501D8621C14CA3C2480E6C3ED0C6 -4CAB288817639F43BC26AED457100D0B2D4117911B9A34D9DF00D636A28CE4351BA69B04B108464F -0BEE3A3791F0EF03E3FCA00533A4C0749B922BB56525D632B4D56864566E29588907BE31659D43EA -D3269FBF0BDF7EAC69D636023144BAF8A49410FE55D995C926F90A2FCC6B2C5D13228390F92CC0CD -581E9374C84B10BF5FF66FFA0459D9091374EEEE0645C7E93225359893C1E102065926E0D6485E15 -E8D6F488950C4DE682A76F8DD650811E220D2ED6CCADCF65D46FA81247C52DA15A39CC85C4B8B059 -37D9F3CB303F6CE7E0FAA58973474CF41ECC17BFC9DB2A957B1456491927803C274177A41AF5C041 -47E58B44ACEC2AC0BA966DA50A6318931ECB40B97152A6CD86F720C6366A7B8BA15AC4F03B0BF167 -AE6561779063F2C35A8AF47CB4C3AB05EEFC76F18BE8B54C5135396DE53F0025FDAE047DBE2CAD2C -FFC87FB822EEB92CDFD745EDE31D47925D8D360916491CDA2C40EF9561E94FA09BD0F0F01A5C69B9 -61B2DCA57BDAE1EF3CB223E5BE042533CD81A31BC92A46D84014B8887FD7388B0404214B6C5205D7 -B59E02D03AB22710938B33114DD5DD3C5FCEE28174F4A81959C7F2F52DC619649FAF3BC7D3F0867D -1B8D78B9A9DE9DB68DFC774FBD896843C02A91FD8CF44F18A407ABDF150C4220A12DCB47B390D11B -C6D7C87ADA05274DFAFF33321965754EBFF75B419BECF34BFCF41D02C7ED542D7EF045B32289A2AE -66476610A3640FBD31ACEE4C5B9C882916A12F81D6145E3354F4BE90491692973EB657B7833FE784 -5B0B200090B2530FC82FFBC9B873C27718E8597D6707D0F521A52BAB856F73DE4B0C345E902DC44D -A6BC40E08883BE79FE205F1C6C6DE2A230F1F4AFA78B27ED20C2D7A30F72987D86B494FECBAF1224 -F32B0E4E3CD18D72C35CCEDEF16C8D4D8DBBA8FD526B451498EAE762E2E5F3F0D68C40E221EFE2C2 -11F55A5D1F1C058602F2D9E7247FDB345E8350B8F483C8FE939C71CBF9C33E90BD7054741AF37436 -7BECFF9694AE2F06973F46E8D6BE94D5DF4DF3FC4C46742AB152EABF469497D65B66C08056F90A5E -121683C1B0F91C00318EAB91191B962D67647228929A92FBEB7B5DD5CB67ECF5494A318728BCE386 -6CDC497A69D1151E8693DA446E98664776EBDB07D78CE919C5A36AF67BA04601C649AC46EA968596 -096263885765CBA3CCE6D84260936E204F735DA45C84832C4AFD284ECF25B6240F0288C34D806011 -E9B97ABF0B1CB5FDA87A272064690D7AD7AC2E23291325A17D6A9356A2968072C47C3B4A24046F2F -1B395AB3BEE6103523BE590AF5861B20E26105D9A975DC5053D8E9AFDFEA1BA745EC2962E4B8337B -554A7045868A257173ED0D30E8DF74B5E73280E403235E6835D4AF87FE74D7BA59343CB6D3F245E3 -86377A9D0CE026F26BB682FE26B37A5666AA205307B31CA2AE48F1F11B222928B021F5E0FE4C96AB -A558CCB318EBD50CFFC961266F18F44B2F9C37D294CC4699C65A96381E0A1215193A420ADC1645E9 -9BE97280ED370DE997AE5F13BE6467563A775F3CE9573F83B95B90559A5E2D649E1D7FD959444420 -9486BEA6CA1A21D6DE2BA2BD718403CA92BC29249BF2AB2068A4FB4B2F6FB78AB0F4AA1C0B8492FF -2DBA624577D20C047563412D41840EA6F6B8C0C82D7589AB4D8E6A562E9FB92D4F4455B19537650F -8F816590646965FA643485013FC0CDE94A2F86DB9A6128578DFC8282B352972C158B12C7B3B598D9 -2573599217F589B604041BB1CF0F7D1B7564BA0284B1FF71C83CDEAF25834105CD9A4E6AD1A47284 -ECB9DE7F6FEE4CC6C42BB6A3D712B0B81023E486CDC8C3E719ED7B0A9C3C0D44F54FEE924824AF95 -0E471B3FCA38495C1C1F27BE19E235F8B3625D15BB9C476A786250F9A932B2CB879DC32D3232A26D -47B9033C89BA861B49D219178911E4AB7B622FF3C96C68D4FFCAA547CFDDFF18860EA755C1A49AA7 -8556DE350DB546DF34006825740C35F6A9F2329DFFB4FA82B702763003C1011FAABA7C4459EDC9EB -E338D026ACBADA65F690A4C36CF75D322C02E5CB4E46E6D041A71AF6B15BCEBA125568C38DCDCCC4 -41C67239FDCDE87EA3598B5745E4CC9A90E4F6CABAB531EADDCF143DE7873C14A14753901F03CFB4 -AE51D00E5636C1F3FA522577207BC09C7D0CC310C4866AD988F97C1F80 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 - -cleartomark -{restore}if -%%EndFont CMSS10 -%%EndProlog -%%Page: 1 1 -gsave -newpath -0.0e+00 0.0e+00 moveto -1.6e+02 0.0e+00 lineto -1.6e+02 1.0e+02 lineto -0.0e+00 1.0e+02 lineto -closepath -clip -1 setlinecap -1 setlinejoin -gsave -newpath -1.5e+01 1.6e+01 moveto -4.5e+01 3.4e+01 lineto -1.53e+02 3.4e+01 lineto -1.23e+02 1.6e+01 lineto -1.5e+01 1.6e+01 lineto -closepath -gsave -7.929983e-01 7.929983e-01 7.929983e-01 setrgbcolor -fill -grestore -newpath -4.5e+01 8.8e+01 moveto -4.5e+01 3.4e+01 lineto -1.5e+01 1.6e+01 lineto -1.5e+01 7.0e+01 lineto -4.5e+01 8.8e+01 lineto -closepath -gsave -7.568935e-01 7.568935e-01 7.568935e-01 setrgbcolor -fill -grestore -newpath -1.53e+02 3.4e+01 moveto -4.5e+01 3.4e+01 lineto -4.5e+01 8.8e+01 lineto -1.53e+02 8.8e+01 lineto -1.53e+02 3.4e+01 lineto -closepath -gsave -8.728938e-01 8.728938e-01 8.728938e-01 setrgbcolor -fill -grestore -gsave -newpath -1.5e+01 7.0e+01 moveto -1.5e+01 1.6e+01 lineto -1.23e+02 1.6e+01 lineto -1.23e+02 7.0e+01 lineto -1.5e+01 7.0e+01 lineto -closepath -clip -newpath -1.5e+01 7.0e+01 moveto -1.5e+01 1.6e+01 lineto -1.23e+02 1.6e+01 lineto -1.23e+02 7.0e+01 lineto -1.5e+01 7.0e+01 lineto -closepath -gsave -7.665581e-01 7.665581e-01 7.665581e-01 setrgbcolor -fill -grestore -newpath -1.23e+02 7.0e+01 moveto -1.23e+02 1.6e+01 lineto -1.53e+02 3.4e+01 lineto -1.53e+02 8.8e+01 lineto -1.23e+02 7.0e+01 lineto -closepath -gsave -6.646889e-01 6.646889e-01 6.646889e-01 setrgbcolor -fill -grestore -newpath -1.5e+01 1.6e+01 moveto -4.5e+01 3.4e+01 lineto -1.53e+02 3.4e+01 lineto -1.23e+02 1.6e+01 lineto -1.5e+01 1.6e+01 lineto -closepath -gsave -7.303622e-01 7.303622e-01 7.303622e-01 setrgbcolor -stroke -grestore -newpath -4.5e+01 8.8e+01 moveto -4.5e+01 3.4e+01 lineto -1.5e+01 1.6e+01 lineto -1.5e+01 7.0e+01 lineto -4.5e+01 8.8e+01 lineto -closepath -gsave -7.303622e-01 7.303622e-01 7.303622e-01 setrgbcolor -stroke -grestore -newpath -1.5e+01 7.0e+01 moveto -1.5e+01 1.6e+01 lineto -1.23e+02 1.6e+01 lineto -1.23e+02 7.0e+01 lineto -1.5e+01 7.0e+01 lineto -closepath -gsave -7.303622e-01 7.303622e-01 7.303622e-01 setrgbcolor -stroke -grestore -newpath -1.53e+02 3.4e+01 moveto -4.5e+01 3.4e+01 lineto -4.5e+01 8.8e+01 lineto -1.53e+02 8.8e+01 lineto -1.53e+02 3.4e+01 lineto -closepath -gsave -7.303622e-01 7.303622e-01 7.303622e-01 setrgbcolor -stroke -grestore -newpath -1.23e+02 7.0e+01 moveto -1.23e+02 1.6e+01 lineto -1.53e+02 3.4e+01 lineto -1.53e+02 8.8e+01 lineto -1.23e+02 7.0e+01 lineto -closepath -gsave -7.303622e-01 7.303622e-01 7.303622e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -1.23e+02 7.0e+01 moveto -1.23e+02 1.6e+01 lineto -1.53e+02 3.4e+01 lineto -1.53e+02 8.8e+01 lineto -1.23e+02 7.0e+01 lineto -closepath -clip -newpath -1.5e+01 7.0e+01 moveto -1.5e+01 1.6e+01 lineto -1.23e+02 1.6e+01 lineto -1.23e+02 7.0e+01 lineto -1.5e+01 7.0e+01 lineto -closepath -gsave -7.265557e-01 7.265557e-01 7.265557e-01 setrgbcolor -fill -grestore -newpath -1.23e+02 7.0e+01 moveto -1.23e+02 1.6e+01 lineto -1.53e+02 3.4e+01 lineto -1.53e+02 8.8e+01 lineto -1.23e+02 7.0e+01 lineto -closepath -gsave -6.300025e-01 6.300025e-01 6.300025e-01 setrgbcolor -fill -grestore -newpath -1.5e+01 1.6e+01 moveto -4.5e+01 3.4e+01 lineto -1.53e+02 3.4e+01 lineto -1.23e+02 1.6e+01 lineto -1.5e+01 1.6e+01 lineto -closepath -gsave -6.891177e-01 6.891177e-01 6.891177e-01 setrgbcolor -stroke -grestore -newpath -4.5e+01 8.8e+01 moveto -4.5e+01 3.4e+01 lineto -1.5e+01 1.6e+01 lineto -1.5e+01 7.0e+01 lineto -4.5e+01 8.8e+01 lineto -closepath -gsave -6.891177e-01 6.891177e-01 6.891177e-01 setrgbcolor -stroke -grestore -newpath -1.5e+01 7.0e+01 moveto -1.5e+01 1.6e+01 lineto -1.23e+02 1.6e+01 lineto -1.23e+02 7.0e+01 lineto -1.5e+01 7.0e+01 lineto -closepath -gsave -6.891177e-01 6.891177e-01 6.891177e-01 setrgbcolor -stroke -grestore -newpath -1.53e+02 3.4e+01 moveto -4.5e+01 3.4e+01 lineto -4.5e+01 8.8e+01 lineto -1.53e+02 8.8e+01 lineto -1.53e+02 3.4e+01 lineto -closepath -gsave -6.891177e-01 6.891177e-01 6.891177e-01 setrgbcolor -stroke -grestore -newpath -1.23e+02 7.0e+01 moveto -1.23e+02 1.6e+01 lineto -1.53e+02 3.4e+01 lineto -1.53e+02 8.8e+01 lineto -1.23e+02 7.0e+01 lineto -closepath -gsave -6.891177e-01 6.891177e-01 6.891177e-01 setrgbcolor -stroke -grestore -grestore -newpath -1.5e+01 1.6e+01 moveto -1.23e+02 1.6e+01 lineto -1.23e+02 7.0e+01 lineto -1.5e+01 7.0e+01 lineto -closepath -gsave -newpath -0 0 0 setrgbcolor - -% Comment: canvas init - -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -1.0e+01 setmiterlimit -gsave -/CMSS10 findfont -10.0 scalefont -setfont -6.016795e+00 4.006102e+01 moveto -gsave -[ 0.9 0.0 0.0 0.9 -63.0243010372 -616.250810225 ] concat -(\063) show -grestore -grestore -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -grestore -gsave -newpath -0 0 0 setrgbcolor - -% Comment: canvas init - -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -1.0e+01 setmiterlimit -gsave -/CMSS10 findfont -10.0 scalefont -setfont -6.67584e+01 5.622041e+00 moveto -gsave -[ 0.9 0.0 0.0 0.9 -2.28269846383 -650.689789814 ] concat -(\064) show -grestore -grestore -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -grestore -gsave -newpath -0 0 0 setrgbcolor - -% Comment: canvas init - -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -1.0e+01 setmiterlimit -gsave -/CMSS10 findfont -10.0 scalefont -setfont -1.458e+02 1.822204e+01 moveto -gsave -[ 0.9 0.0 0.0 0.9 76.7589041096 -638.089789814 ] concat -(\062) show -grestore -grestore -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -grestore -grestore -grestore showpage - -% --------------------------------------------------------- - -%%Trailer -%%EOF +%!PS-Adobe-2.0 EPSF-3.0 +%%BoundingBox: 0 0 160 100 +%%Pages: 1 +%%PageOrder: Ascend + +%%BeginProlog +%%BeginProcSet: +/ReEncodeFont { exch findfont << >> copy dup 3 2 roll /Encoding exch put definefont } def +%%EndProcSet +%%BeginFont: CMSS10 +%!PS-AdobeFont-1.0: CMSS10 003.002 +%%Title: CMSS10 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMSS10. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments + +FontDirectory/CMSS10 known{/CMSS10 findfont dup/UniqueID known{dup +/UniqueID get 5000803 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /CMSS10 def +/FontBBox {-61 -250 999 759 }readonly def +/UniqueID 5000803 def +/PaintType 0 def +/FontInfo 9 dict dup begin + /version (003.002) readonly def + /Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMSS10.) readonly def + /FullName (CMSS10) readonly def + /FamilyName (Computer Modern) readonly def + /Weight (Medium) readonly def + /ItalicAngle 0 def + /isFixedPitch false def + /UnderlinePosition -100 def + /UnderlineThickness 50 def +end readonly def +/Encoding 256 array + 0 1 255 { 1 index exch /.notdef put} for +dup 0 /Gamma put +dup 1 /Delta put +dup 2 /Theta put +dup 3 /Lambda put +dup 4 /Xi put +dup 5 /Pi put +dup 6 /Sigma put +dup 7 /Upsilon put +dup 8 /Phi put +dup 9 /Psi put +dup 10 /Omega put +dup 11 /ff put +dup 12 /fi put +dup 13 /fl put +dup 14 /ffi put +dup 15 /ffl put +dup 16 /dotlessi put +dup 17 /dotlessj put +dup 18 /grave put +dup 19 /acute put +dup 20 /caron put +dup 21 /breve put +dup 22 /macron put +dup 23 /ring put +dup 24 /cedilla put +dup 25 /germandbls put +dup 26 /ae put +dup 27 /oe put +dup 28 /oslash put +dup 29 /AE put +dup 30 /OE put +dup 31 /Oslash put +dup 32 /suppress put +dup 33 /exclam put +dup 34 /quotedblright put +dup 35 /numbersign put +dup 36 /dollar put +dup 37 /percent put +dup 38 /ampersand put +dup 39 /quoteright put +dup 40 /parenleft put +dup 41 /parenright put +dup 42 /asterisk put +dup 43 /plus put +dup 44 /comma put +dup 45 /hyphen put +dup 46 /period put +dup 47 /slash put +dup 48 /zero put +dup 49 /one put +dup 50 /two put +dup 51 /three put +dup 52 /four put +dup 53 /five put +dup 54 /six put +dup 55 /seven put +dup 56 /eight put +dup 57 /nine put +dup 58 /colon put +dup 59 /semicolon put +dup 60 /exclamdown put +dup 61 /equal put +dup 62 /questiondown put +dup 63 /question put +dup 64 /at put +dup 65 /A put +dup 66 /B put +dup 67 /C put +dup 68 /D put +dup 69 /E put +dup 70 /F put +dup 71 /G put +dup 72 /H put +dup 73 /I put +dup 74 /J put +dup 75 /K put +dup 76 /L put +dup 77 /M put +dup 78 /N put +dup 79 /O put +dup 80 /P put +dup 81 /Q put +dup 82 /R put +dup 83 /S put +dup 84 /T put +dup 85 /U put +dup 86 /V put +dup 87 /W put +dup 88 /X put +dup 89 /Y put +dup 90 /Z put +dup 91 /bracketleft put +dup 92 /quotedblleft put +dup 93 /bracketright put +dup 94 /circumflex put +dup 95 /dotaccent put +dup 96 /quoteleft put +dup 97 /a put +dup 98 /b put +dup 99 /c put +dup 100 /d put +dup 101 /e put +dup 102 /f put +dup 103 /g put +dup 104 /h put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 108 /l put +dup 109 /m put +dup 110 /n put +dup 111 /o put +dup 112 /p put +dup 113 /q put +dup 114 /r put +dup 115 /s put +dup 116 /t put +dup 117 /u put +dup 118 /v put +dup 119 /w put +dup 120 /x put +dup 121 /y put +dup 122 /z put +dup 123 /endash put +dup 124 /emdash put +dup 125 /hungarumlaut put +dup 126 /tilde put +dup 127 /dieresis put +dup 128 /suppress put +dup 160 /space put +dup 161 /Gamma put +dup 162 /Delta put +dup 163 /Theta put +dup 164 /Lambda put +dup 165 /Xi put +dup 166 /Pi put +dup 167 /Sigma put +dup 168 /Upsilon put +dup 169 /Phi put +dup 170 /Psi put +dup 171 /sfthyphen put +dup 172 /nbspace put +dup 173 /Omega put +dup 174 /ff put +dup 175 /fi put +dup 176 /fl put +dup 177 /ffi put +dup 178 /ffl put +dup 179 /dotlessi put +dup 180 /dotlessj put +dup 181 /grave put +dup 182 /acute put +dup 183 /caron put +dup 184 /breve put +dup 185 /macron put +dup 186 /ring put +dup 187 /cedilla put +dup 188 /germandbls put +dup 189 /ae put +dup 190 /oe put +dup 191 /oslash put +dup 192 /AE put +dup 193 /OE put +dup 194 /Oslash put +dup 195 /suppress put +dup 196 /dieresis put +readonly def +currentdict end +currentfile eexec +D9D66F633B846AB284BCF8B0411B772DE5CD06DFE1BE899059C588357426D7A07B684C079A47D271 +426064AD18CB9750D8A986D1D67C1B2AEEF8CE785CC19C81DE96489F740045C5E342F02DA1C9F9F3 +C167651E646F1A67CF379789E311EF91511D0F605B045B279357D6FC8537C233E7AEE6A4FDBE73E7 +5A39EB206D20A6F61021961B748D419EBEEB028B592124E174CA595C108E12725B9875544955CFFD +028B698EF742BC8C19F979E35B8E99CADDDDC89CC6C59733F2A24BC3AF36AD861319147A4A219ECB +92D0D9F6228B51A97C295470093CA270C4488BB4EB864B4863941B9739638D2E6F3CC778582B46AE +B4E466D89D1C211225274356A4BC90F3274C6AA56E200249B7D0949A3FD4185DCB3E5286910EFD7C +A72D5D8E8052C96F388D12094B87D3705CE64459558CF024667C0FE96CBB32B0BC9E51037D7BD62B +E4B05FF99384E71D78441A79B0B1DBA1CAE02434A9FAE46596FB86B873B1670DAE0BAF516445A0DD +C127F8FF3ADA0B10EC30A9CC1F7E9248828B5E8AB46C3FE4154B80A54128A08777F5F9B8C519C7E3 +B632B3476F007FA156E9F39FBE57638B4214CD2BA79BA9DDA0F4C073AED814ABCCC2F7906C57A872 +C00E67FF03AC120029DAB92376422FA21C67CA98BCEB8C431CA2D3EDDC16BDA59363F49614070AA6 +859105192CCC6E4911B0B5D0FBDE04872D8C8D84FE6B68702FBFC4682186E03F2141CF8FC8E23254 +2FF446E00D34A7B9B9271B07DEEED93C336653ED0F51DBA0DE34235097373CA4583095151642EEE7 +6B6BA6714F37031F5AD2ECA4875FD02F65D47541F5245588F0CB5933A759342FC460ABF99E014A85 +CE3BFF948BC38F3D29FAFBD205400093EBD129A9C3AF161E7365DEB2905074660FEC703B6D4733A6 +6EC1E78A1FF3FA90863072C108109D4DFF62166EA04DD1E05225CD1B9A6808413402E9E1E81512B7 +1BFD781132923BA7B5DB7032E7AF65CAD135E8D3C0DDEFE960DECAC693166D83DB2A6D819E40024B +40A114818D7E943849FD90359B4BCC4FB0E2E0373A6200C13F194D735815ACC2E09BF4ABC693DE6E +975F0C27BAD1DCFE8D0A3977B48104EA6F85072BC0F5FD3E8FD8D53DBB088061BDB89249A4C3E6BD +B4A5A0F469D9B53E9B35A4A03F558DC93B8870FD28A829735E1F25F455CEA1CC8DFB408888DDBCEC +C050A84B6EBF39E42B4278F92E44C7A41FAA83CE07255B8CAA9F3EB43368900EEDEAADD836AEB663 +7EFF72351D649500FF3544DAB77FE191A5907B8E7C2AA4A9B18D857C63B2F41279FE6E241EB946D9 +A67B3908CF7146DE0D971192BF7908B3319E6C0B33995F4E54BACDA9040693EA19F24266FF8A46B9 +3D6091337C2BBAACE6ED443A6A83EA4296E41E309192D66122FCF7A37578C45859854CADF75A8299 +727CDC5868F365497886C518C001A3CD4C0A5ED589C3FE9C14269A9DBE9A10FBD6B4B0BB6292975E +F7210A6E4959DE1F3063A98393C63ED63D2EA31353ADC92AC1B924678E81B509CD4470DBD22694E2 +EF36266270A78A350581C6AF9747D92BA0ED2019FFFBDEAA908B373CA6A848512CD5A5607A8EF877 +1533539AE3D2F448FE1092CC640F699D73C6CB421B56C630574A11B5F48DF7DDF4942C82FD5DCC9A +5BF9585CB7715053059CF73503C1FBEF7F8F45546039AE0F3BDDE1ADA78C2DB36040C20848ADB414 +4E71B38A447FFC4F768366416027344912C9134FB30AD513BFB40008884FA98F1D25714121082696 +C877790A06A60BFFB6CFAEACF55453878DF4D972841D7D18E510D5E842416F023BA13A40696FA534 +DB3B0601F45B77FB1CECAD240B8594CC95DF65BD45C1A73D2489D6AA84FD46414D992CDA7D307640 +017951656A3C736C73B116EA9F0A3304EAFA312E46A5152E902D840108C2A1858A95B958055A8080 +B97D612BE59E2D24A5362EF77A83CD8656F8FB6519BDFB3CC43E068C8203BAE620255274AA281972 +A1EE85C378818532B42368AAA93A0C984D7380AD57F1B8FFAAFECAD5EAC17A07DA742E272D3C809B +157D2669AB88DA9EBB91B9E060DE7F275ADFE2FFEA18127969214795E7CD9C27CF902AD3EAD6C6AE +0A4BCDDAD88B6F37932BC7B07D9B43742A08A257DFB3FBB532077039C9CE90386F6C80BDED9CA008 +A7783B6F702DD00D9ECFE3AD9DB0704BBFF4CCBE0B3C75401337CFC1A37E008A09C95C4CE6CF8AF5 +56487D6B320F3B3A9D36623E85FF4119D9EAF24099C2E1D9860DD2187E8CDDF80C4F0B164EC85E0B +21901D017E0A20FBE2090DB90EEE5C9BD2EAD87725F7FF37FD8F43031494817603B8A7E69FEE78D1 +4AC7A66F16800B4B7943B7AED95E9044282017A0FED40F053EBFCA7E292B6C4E0C8DB47B054C91C9 +A1DE4A2741E5E7970AE431494BACF4AA487BCA0080D9A6A3FA3D0E77373F2D40B300D8936C71D83B +3332EE113D087B38E1852312C21ED29C688FFD05D07629D2A48AE9B7B6363AAFFC6CC5ABC96A996E +478C37D745E5B6C90A006349A971C554C27F1D4F7AD1CFED394315EE5C7E681D491213E010A328BF +49C988D7E490BDEA5A86B0F2A8C845A01D84751E1C4BFDDD19045AFDC1283279D7AA6A1FBFD539D3 +A0BEC325597E025A4DE112CBFDB439FE719E690F8DCBEDA826D6546EDF93EDCB67F5AA78FD308CC9 +4EB375BA5FD443083665C0E361462AE4EC541ECD1891B6A7B41715FEBAAAB658FF924A171F4504E5 +03CBC27912393C0F85DF4B276DB39A174CF94B2D6FAC5E3E4F886B2C0D67DF8C502E1E513D934938 +831AAD911F3270A67FA434FD5E3D02E9655661BFC2BB9FE7460E6AE8CFACF6BF545C41C730AC58DB +BCF9AC8532C9E85D9ECAC11D0F7C55288962DB1EFD351B56BF6F2051C62377B95FF0C93A09966EE9 +C6B792126A6C7E9995F2D68E20308347FAB463F5F2DB2E8675882CEF049EF0A6406E1647137D9A46 +734D6E909754E66704552A41B3698B50417F2F3D4F883E3D3E6A75743820E689AE4818C297572E29 +2B5761396825B38C2E6D96ED290856AC6154C51FD90C3EE498E46295832503D76A22CDAC68B6B7AC +B36BA3496422936F48E1569777229320718C45F71C0F857EE699FDD1526E4A23418681D41940E7E0 +FA2C551FB8B79495719F34C3774B229DF858F51AA2E26094FC181BCAE64EE209EE131B9472D6A7EF +6A131EFB221E0F2CCC829A0D9672CEDACF44453400D15DDD34C4126F003A0E57455B25785E1CC9AB +4D4EE1A3BCCBEE149CDCC7EDE7B1F09DA1174F48048B568094F280F22590903F3B2C6A1A796E851F +71D34972F00FF13EB51F8136490C2BA6909B130CF3170820C652A1733BC4B69297BF1F5CF816BCB7 +5A0AC3520AC1DE911B72DEE5AD0033228B9F75961ED1280C6808ED0FD548411696C1CC747AEF91A4 +1EF05215DB5720AADE50BC598749C67770515BFF6DBC5A940C07AB462AA296621D7722C5A47AB3FA +6305C55216216540098F86A1EE217C77EDC0BC3F6DFEC4AFA266019C20CAAAEB381145B3588FAD0A +AB944AD9F120DFF24168844BF92C279D1DF5923C9ACF10393655F33CB9E7EB09A74BD898D07A31A1 +07326EA219163FD6CA3E5A0985F74421F895F020D3D482444C50B428B364487B0FEF8717ABD8D223 +2B4D35EB256A3AE5C1B0D2AE331A1E1D4D5DBC7BACF361E52719DA50620E5137E085481F632B861E +FFF31AF04624D486130FB361F799FF5219E405C80DBFB653CCB3C2E10934C95417A7E91DBE161727 +C5861A219A59470E6AF895C93AD43FAD820BB4C58C13678AE33D18C3EF8DB36A7270CDB3BA2BDDAC +02B0C93D29829DC2B9087F070FFB297464CBF426545A65B869B2661F5B7B6575119DA27D715F0A42 +DF446901F0F2A632AF5614C9EC1FD2A6C79E676D80DACB9F2B89FC51333B4CA7CD98D8CE8B62959C +86949E2CC2F530333C9A80879850481167A7DC78A8A76DDE664449367B44F711D88EC7028E92AA59 +EBBBF050573B52DC80B0FA653E2EC9E5161C27DFCC86365648249518E72D8954BCBC439742A80ED6 +8A7DAF601400AAB2899D4851040C80A64C1E9D4C500F23ACEDC18C120C2E3D0001C37895247338EF +A633428297ECE1771E26219BC93237DDF71A9CF08D47B323D03E904243D1E98DC596BD7E7677B7D9 +1C06474CEEC23C4DAF1B29029342D16121B3390C87DB04C65447C2515B12B9BCC3AB98B9EABD9636 +1EDCEB53655A24E4845604C560D1120F90ED4456BC543E5916BD60C986482FB77BBE9060121FE179 +8C34A17A6AB350D85904106032A0A107649EEAD9B8F59E4CF5256B025440BB3713C2FA5638D6CEFB +788A39A5A5C51842A13AE24684EC59A6FAE55A64148FE73DFB3234F3912D21D68769C9470E3F2DCE +B860872E0556A5C72FB6FF7F7015D09B116FDFEC79EBF0544A0A989269B34475BF5E18B5A3111496 +FB39BD1B25468B6E5B2EDD1624C1AFD3401A8F2086CF3C9D366834BFF85115EDEAFCA61D1343367A +1F5441246000D9A585EDBE50D5B5CAB2455D58B855DA66180F8E1EAF8A2D1948DF1DA913C8F86F2C +58365A77F4B867309629DC8A9237EF9EF4CA0515B2D1B7B7ED64589CD8D196FC057EB96B392EDCC8 +60C15FA2622A484D32D4E2AFEBAD06946CDDD7B7AACA6C0AA5A41B3BCC91D459AB502137DC8C5032 +C3DC8E5D96D210F702FFA73794B639D0F9E7AE0D2134546FA90360B851782BACEE3C28CF7871D3F8 +12CAF86221212D1D321A07B39A14CAE62F41DC83E7714F3E315A7C63E2DCDCFB7F87DDA2BBC6CC60 +73839FC2F05C03077D8A0C9E7373849927450DF6DAF94B27277349A60073C6979312CC0D5C81A89A +058584982D449F1E993AE1EEF449F1AC7840BBA7AAFD999F622D0D1DD573326683C09082ED3564A9 +B28D29955F89ED47DD0EBC2ABE45B585D10E85CECBE52F919EFDDD9630CF8F90CBF2F156EA791E0D +BD178AFBB1AE3E72E08CB83F896067121B671F63869EA022BA7D11BD63381E33860317F70941E782 +FDADC1224AD556467935E93C63794E07F5AD57FDD0F6D859C82B562E80758E8A5C1EDD8FD2E37E34 +FA42E49098561E8E9696DF5A62F1A27D6B1D0FBC9911A979C25E5A81181BAA04415306D755B890B6 +0523E4A211D00CA64AA90625CBF5ABE06EE227128114B07536D79841004AA4A1FA1612A78DCF0F03 +B121B2870FD3ECCF2C034578F9A3F008DCDE1D8354625DE2A97D78E6F85782F829F79B3E286480B4 +57680BE7758FC50CDFC17E5EE5FB3276BEA977E933AB1BEEB1B27B2F3D164ED5B9AF1280C482ECC5 +952F608E0AD0D1F6363637CFAAEF4F0FC7CAEDA1EFE35BB80C07E0E701633CCA557BD478B70652C4 +874F4AF391481A982AE0AE8F0764EADD9316048CA985B570DDEFEDE6A64EA15A80BE9AA4709E4FA6 +DA9CC49B546955BFEF78320D67D14F120F47BF0C8568D337D6339CAC2FA9C51AF3EAB6AE46A4584A +89BD235ADB26332DB72F5EA2EE4DFCFEF41726C92C2CE299D54EF8A582E766A2C20F429CA48858A0 +D61716B9CDF7D67FFE5D7D6E72ACF982456C52D0986762485E2E111038EA4C67E1183A40249BBECE +EF800CFF6CFABCB532465C496571541110DCEA197B20E1915F9CDB842444BF7CC4A559262C89B487 +A99B92B7EF0087E6893DDBB5895C047D88FCEC1B29029368C65744591AC683FE613D8582066B6000 +35FA0EF7AD4236BF1A4632A7B9DCDAB2F9B8F6FA6C8E3248841AB3CE22D3741DC40F29A61E2676DF +55882F5F41DE8BDA16B6753D8D9EFC41D5C6AEEEE771F712188F4C92641B7C891EDB3484DE68D56F +58E5EF015B98490C17FE3020479384E19AF8AECD888F718055B81A78B8B39FDAC88BDCCC0C1CD447 +A18F0F04BE83D2C6FC44B376E74752EA4ACF043812E4BF1313703F8A9898D8C175CF434C97CBBA18 +197EC3C5A7928844060723A18F19EC2B26AE7CF1C95E4D2FAD1A4F7F9DB3E4143B69B9E0DF94D313 +F41F045B19D8B71376A44E05A5B41F3DB38EE63C24483DDE9F67A0102597DFC316A853C489B61A3C +C7F1A1908E3C63FDFD4D20754A27D27E5B17AFA895787DE85EB9F560EFDFE4EE3ACE1CD5222553A1 +A6B929665EF740E4B8724327B5A6FBA8C1142CA1FDDDE6DC085764FD4C519FA8742BEC0795773D01 +07E832A84B2A4AFF55102C143B67CA605527E129975852C1F99B765E26371D7A47F328DE406D8710 +C0C7242D624DAE937EA7D01056999ECC3A938AA560090C43EE5087B0A0C66CD9186E9C711A2916B6 +266FD68FCF8F6378241A614E8D7A144F3D9B807850F98C4401049B469FAF5C3BECC8741D47CCD383 +32D2C399B40D270B8B68FFACCD9405F619A897C865D3FA84DCE0F1FA9C54B9F8B9B574C9BA981A8F +4D5F4FBDA945D4DAA725DA6E1E24DA5E9803FD2769809AC972338812B14972D3DC6511903712CBFA +F3161D557B671DFE13AA19A942FE564B1EBF441B06D7B7C739DBFD9C96FDABC13A2B7397CCF37EAD +E23ABD4521F69FDBC483411452285234F655AFCA9BAA73BD43E081ED281383B57BA48F6BB92F810E +2031A6E96810116432D402B6EBD9B7208CAAE4D7E40AE1D275E49DBD4867A1DB946A2F7E67530350 +73F2AD5FB626921DA8E6A2C70502CBFF72067E45A1A5223FDEB1F4790BC4D1FCDE1AFBA9F1907652 +98D70C89645D8F39A9ACA1563B870950BF90C8976690A5CA41DB6CB5A6A9CDAF969876ADE9D82492 +35A41B32BB1A0564C55A46351366D61C6CF716ADE7EBD8CDFA6B217F180D3AB24D7CFF8B49992D3E +2A37BAFF83F757E365397602FCD60D70C65F537DF26778F0A1E7C2BAA3C2273FF88151EB2A6DC5C9 +AF099C7A728E95FBC50D889B416A864471EAB31050AF8C6C27A8EF177B3A686EDA6354FE931EB69E +D9B39C7FB5ECBAF29F54CF5A09B36EB52D088226F1ECF75FEC87BB35E00F89A9D6595584C9EDF98D +2CD7735E9545EEFBAFC14F9474453BE920D964FE48BC5D730D919105F890A84699149E36FEC03230 +E3643472DBBE1ED54BB4DBE53353A8AAAB4882F4EE901A2CD474FB1A5AE8E3DA026B721260093742 +D27A4823BEA13FA939B3D28F3D8F5BD8A2298007C0FC3B5A831F0E1294A9A8D7F224F188960994D9 +67CF182F8FF283468CCAA2EFAF24F053FA68BD9B16EE0597DD573844EF2FC8BA518B7EBEF00FA4A5 +D282F27E133F2A976C29B8FABBE95AFA8E82DE895CED761B0EC7E03DFE08BEF1F042BA8110E6218D +065672D5B8EA61D140333D49804A1B41EB9600075B4BE636483FF2179A06DEA1427DAD8F2871DF34 +68108E12980D03EA5F122A64CCB649DD800417F698DD1F38C55340CD07473B5D493BC6C68FDCF84E +6FB9CA9AAD42FE8010193C391AD3CD97C3DF8BEB06A1B5EEDAB48C92BBABFBD7DA041F2C587EC96D +555457B5A2D6FB52486E122B46B0F934B4D3AF86A1F537B108589C0798CD4B11573C1C25214C7118 +703D6A043902C980ED303B63FF038D0FFCE3C73AF6441404C013501D8621C14CA3C2480E6C3ED0C6 +4CAB288817639F43BC26AED457100D0B2D4117911B9A34D9DF00D636A28CE4351BA69B04B108464F +0BEE3A3791F0EF03E3FCA00533A4C0749B922BB56525D632B4D56864566E29588907BE31659D43EA +D3269FBF0BDF7EAC69D636023144BAF8A49410FE55D995C926F90A2FCC6B2C5D13228390F92CC0CD +581E9374C84B10BF5FF66FFA0459D9091374EEEE0645C7E93225359893C1E102065926E0D6485E15 +E8D6F488950C4DE682A76F8DD650811E220D2ED6CCADCF65D46FA81247C52DA15A39CC85C4B8B059 +37D9F3CB303F6CE7E0FAA58973474CF41ECC17BFC9DB2A957B1456491927803C274177A41AF5C041 +47E58B44ACEC2AC0BA966DA50A6318931ECB40B97152A6CD86F720C6366A7B8BA15AC4F03B0BF167 +AE6561779063F2C35A8AF47CB4C3AB05EEFC76F18BE8B54C5135396DE53F0025FDAE047DBE2CAD2C +FFC87FB822EEB92CDFD745EDE31D47925D8D360916491CDA2C40EF9561E94FA09BD0F0F01A5C69B9 +61B2DCA57BDAE1EF3CB223E5BE042533CD81A31BC92A46D84014B8887FD7388B0404214B6C5205D7 +B59E02D03AB22710938B33114DD5DD3C5FCEE28174F4A81959C7F2F52DC619649FAF3BC7D3F0867D +1B8D78B9A9DE9DB68DFC774FBD896843C02A91FD8CF44F18A407ABDF150C4220A12DCB47B390D11B +C6D7C87ADA05274DFAFF33321965754EBFF75B419BECF34BFCF41D02C7ED542D7EF045B32289A2AE +66476610A3640FBD31ACEE4C5B9C882916A12F81D6145E3354F4BE90491692973EB657B7833FE784 +5B0B200090B2530FC82FFBC9B873C27718E8597D6707D0F521A52BAB856F73DE4B0C345E902DC44D +A6BC40E08883BE79FE205F1C6C6DE2A230F1F4AFA78B27ED20C2D7A30F72987D86B494FECBAF1224 +F32B0E4E3CD18D72C35CCEDEF16C8D4D8DBBA8FD526B451498EAE762E2E5F3F0D68C40E221EFE2C2 +11F55A5D1F1C058602F2D9E7247FDB345E8350B8F483C8FE939C71CBF9C33E90BD7054741AF37436 +7BECFF9694AE2F06973F46E8D6BE94D5DF4DF3FC4C46742AB152EABF469497D65B66C08056F90A5E +121683C1B0F91C00318EAB91191B962D67647228929A92FBEB7B5DD5CB67ECF5494A318728BCE386 +6CDC497A69D1151E8693DA446E98664776EBDB07D78CE919C5A36AF67BA04601C649AC46EA968596 +096263885765CBA3CCE6D84260936E204F735DA45C84832C4AFD284ECF25B6240F0288C34D806011 +E9B97ABF0B1CB5FDA87A272064690D7AD7AC2E23291325A17D6A9356A2968072C47C3B4A24046F2F +1B395AB3BEE6103523BE590AF5861B20E26105D9A975DC5053D8E9AFDFEA1BA745EC2962E4B8337B +554A7045868A257173ED0D30E8DF74B5E73280E403235E6835D4AF87FE74D7BA59343CB6D3F245E3 +86377A9D0CE026F26BB682FE26B37A5666AA205307B31CA2AE48F1F11B222928B021F5E0FE4C96AB +A558CCB318EBD50CFFC961266F18F44B2F9C37D294CC4699C65A96381E0A1215193A420ADC1645E9 +9BE97280ED370DE997AE5F13BE6467563A775F3CE9573F83B95B90559A5E2D649E1D7FD959444420 +9486BEA6CA1A21D6DE2BA2BD718403CA92BC29249BF2AB2068A4FB4B2F6FB78AB0F4AA1C0B8492FF +2DBA624577D20C047563412D41840EA6F6B8C0C82D7589AB4D8E6A562E9FB92D4F4455B19537650F +8F816590646965FA643485013FC0CDE94A2F86DB9A6128578DFC8282B352972C158B12C7B3B598D9 +2573599217F589B604041BB1CF0F7D1B7564BA0284B1FF71C83CDEAF25834105CD9A4E6AD1A47284 +ECB9DE7F6FEE4CC6C42BB6A3D712B0B81023E486CDC8C3E719ED7B0A9C3C0D44F54FEE924824AF95 +0E471B3FCA38495C1C1F27BE19E235F8B3625D15BB9C476A786250F9A932B2CB879DC32D3232A26D +47B9033C89BA861B49D219178911E4AB7B622FF3C96C68D4FFCAA547CFDDFF18860EA755C1A49AA7 +8556DE350DB546DF34006825740C35F6A9F2329DFFB4FA82B702763003C1011FAABA7C4459EDC9EB +E338D026ACBADA65F690A4C36CF75D322C02E5CB4E46E6D041A71AF6B15BCEBA125568C38DCDCCC4 +41C67239FDCDE87EA3598B5745E4CC9A90E4F6CABAB531EADDCF143DE7873C14A14753901F03CFB4 +AE51D00E5636C1F3FA522577207BC09C7D0CC310C4866AD988F97C1F80 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 + +cleartomark +{restore}if +%%EndFont CMSS10 +%%EndProlog +%%Page: 1 1 +gsave +newpath +0.0e+00 0.0e+00 moveto +1.6e+02 0.0e+00 lineto +1.6e+02 1.0e+02 lineto +0.0e+00 1.0e+02 lineto +closepath +clip +1 setlinecap +1 setlinejoin +gsave +newpath +1.5e+01 1.6e+01 moveto +4.5e+01 3.4e+01 lineto +1.53e+02 3.4e+01 lineto +1.23e+02 1.6e+01 lineto +1.5e+01 1.6e+01 lineto +closepath +gsave +7.929983e-01 7.929983e-01 7.929983e-01 setrgbcolor +fill +grestore +newpath +4.5e+01 8.8e+01 moveto +4.5e+01 3.4e+01 lineto +1.5e+01 1.6e+01 lineto +1.5e+01 7.0e+01 lineto +4.5e+01 8.8e+01 lineto +closepath +gsave +7.568935e-01 7.568935e-01 7.568935e-01 setrgbcolor +fill +grestore +newpath +1.53e+02 3.4e+01 moveto +4.5e+01 3.4e+01 lineto +4.5e+01 8.8e+01 lineto +1.53e+02 8.8e+01 lineto +1.53e+02 3.4e+01 lineto +closepath +gsave +8.728938e-01 8.728938e-01 8.728938e-01 setrgbcolor +fill +grestore +gsave +newpath +1.5e+01 7.0e+01 moveto +1.5e+01 1.6e+01 lineto +1.23e+02 1.6e+01 lineto +1.23e+02 7.0e+01 lineto +1.5e+01 7.0e+01 lineto +closepath +clip +newpath +1.5e+01 7.0e+01 moveto +1.5e+01 1.6e+01 lineto +1.23e+02 1.6e+01 lineto +1.23e+02 7.0e+01 lineto +1.5e+01 7.0e+01 lineto +closepath +gsave +7.665581e-01 7.665581e-01 7.665581e-01 setrgbcolor +fill +grestore +newpath +1.23e+02 7.0e+01 moveto +1.23e+02 1.6e+01 lineto +1.53e+02 3.4e+01 lineto +1.53e+02 8.8e+01 lineto +1.23e+02 7.0e+01 lineto +closepath +gsave +6.646889e-01 6.646889e-01 6.646889e-01 setrgbcolor +fill +grestore +newpath +1.5e+01 1.6e+01 moveto +4.5e+01 3.4e+01 lineto +1.53e+02 3.4e+01 lineto +1.23e+02 1.6e+01 lineto +1.5e+01 1.6e+01 lineto +closepath +gsave +7.303622e-01 7.303622e-01 7.303622e-01 setrgbcolor +stroke +grestore +newpath +4.5e+01 8.8e+01 moveto +4.5e+01 3.4e+01 lineto +1.5e+01 1.6e+01 lineto +1.5e+01 7.0e+01 lineto +4.5e+01 8.8e+01 lineto +closepath +gsave +7.303622e-01 7.303622e-01 7.303622e-01 setrgbcolor +stroke +grestore +newpath +1.5e+01 7.0e+01 moveto +1.5e+01 1.6e+01 lineto +1.23e+02 1.6e+01 lineto +1.23e+02 7.0e+01 lineto +1.5e+01 7.0e+01 lineto +closepath +gsave +7.303622e-01 7.303622e-01 7.303622e-01 setrgbcolor +stroke +grestore +newpath +1.53e+02 3.4e+01 moveto +4.5e+01 3.4e+01 lineto +4.5e+01 8.8e+01 lineto +1.53e+02 8.8e+01 lineto +1.53e+02 3.4e+01 lineto +closepath +gsave +7.303622e-01 7.303622e-01 7.303622e-01 setrgbcolor +stroke +grestore +newpath +1.23e+02 7.0e+01 moveto +1.23e+02 1.6e+01 lineto +1.53e+02 3.4e+01 lineto +1.53e+02 8.8e+01 lineto +1.23e+02 7.0e+01 lineto +closepath +gsave +7.303622e-01 7.303622e-01 7.303622e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +1.23e+02 7.0e+01 moveto +1.23e+02 1.6e+01 lineto +1.53e+02 3.4e+01 lineto +1.53e+02 8.8e+01 lineto +1.23e+02 7.0e+01 lineto +closepath +clip +newpath +1.5e+01 7.0e+01 moveto +1.5e+01 1.6e+01 lineto +1.23e+02 1.6e+01 lineto +1.23e+02 7.0e+01 lineto +1.5e+01 7.0e+01 lineto +closepath +gsave +7.265557e-01 7.265557e-01 7.265557e-01 setrgbcolor +fill +grestore +newpath +1.23e+02 7.0e+01 moveto +1.23e+02 1.6e+01 lineto +1.53e+02 3.4e+01 lineto +1.53e+02 8.8e+01 lineto +1.23e+02 7.0e+01 lineto +closepath +gsave +6.300025e-01 6.300025e-01 6.300025e-01 setrgbcolor +fill +grestore +newpath +1.5e+01 1.6e+01 moveto +4.5e+01 3.4e+01 lineto +1.53e+02 3.4e+01 lineto +1.23e+02 1.6e+01 lineto +1.5e+01 1.6e+01 lineto +closepath +gsave +6.891177e-01 6.891177e-01 6.891177e-01 setrgbcolor +stroke +grestore +newpath +4.5e+01 8.8e+01 moveto +4.5e+01 3.4e+01 lineto +1.5e+01 1.6e+01 lineto +1.5e+01 7.0e+01 lineto +4.5e+01 8.8e+01 lineto +closepath +gsave +6.891177e-01 6.891177e-01 6.891177e-01 setrgbcolor +stroke +grestore +newpath +1.5e+01 7.0e+01 moveto +1.5e+01 1.6e+01 lineto +1.23e+02 1.6e+01 lineto +1.23e+02 7.0e+01 lineto +1.5e+01 7.0e+01 lineto +closepath +gsave +6.891177e-01 6.891177e-01 6.891177e-01 setrgbcolor +stroke +grestore +newpath +1.53e+02 3.4e+01 moveto +4.5e+01 3.4e+01 lineto +4.5e+01 8.8e+01 lineto +1.53e+02 8.8e+01 lineto +1.53e+02 3.4e+01 lineto +closepath +gsave +6.891177e-01 6.891177e-01 6.891177e-01 setrgbcolor +stroke +grestore +newpath +1.23e+02 7.0e+01 moveto +1.23e+02 1.6e+01 lineto +1.53e+02 3.4e+01 lineto +1.53e+02 8.8e+01 lineto +1.23e+02 7.0e+01 lineto +closepath +gsave +6.891177e-01 6.891177e-01 6.891177e-01 setrgbcolor +stroke +grestore +grestore +newpath +1.5e+01 1.6e+01 moveto +1.23e+02 1.6e+01 lineto +1.23e+02 7.0e+01 lineto +1.5e+01 7.0e+01 lineto +closepath +gsave +newpath +0 0 0 setrgbcolor + +% Comment: canvas init + +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +1.0e+01 setmiterlimit +gsave +/CMSS10 findfont +10.0 scalefont +setfont +6.016795e+00 4.006102e+01 moveto +gsave +[ 0.9 0.0 0.0 0.9 -63.0243010372 -616.250810225 ] concat +(\063) show +grestore +grestore +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +grestore +gsave +newpath +0 0 0 setrgbcolor + +% Comment: canvas init + +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +1.0e+01 setmiterlimit +gsave +/CMSS10 findfont +10.0 scalefont +setfont +6.67584e+01 5.622041e+00 moveto +gsave +[ 0.9 0.0 0.0 0.9 -2.28269846383 -650.689789814 ] concat +(\064) show +grestore +grestore +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +grestore +gsave +newpath +0 0 0 setrgbcolor + +% Comment: canvas init + +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +1.0e+01 setmiterlimit +gsave +/CMSS10 findfont +10.0 scalefont +setfont +1.458e+02 1.822204e+01 moveto +gsave +[ 0.9 0.0 0.0 0.9 76.7589041096 -638.089789814 ] concat +(\062) show +grestore +grestore +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +grestore +grestore +grestore showpage + +% --------------------------------------------------------- + +%%Trailer +%%EOF diff --git a/assets/images/tandem-empty-aquarium.svg b/assets/images/tandem-empty-aquarium.svg index 8d00bda2..de0a7187 100644 --- a/assets/images/tandem-empty-aquarium.svg +++ b/assets/images/tandem-empty-aquarium.svg @@ -1,119 +1,119 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/tandem-empty-conical-tank.eps b/assets/images/tandem-empty-conical-tank.eps index 192ad04a..edebdff8 100755 --- a/assets/images/tandem-empty-conical-tank.eps +++ b/assets/images/tandem-empty-conical-tank.eps @@ -1,15394 +1,15394 @@ -%!PS-Adobe-2.0 EPSF-3.0 -%%BoundingBox: 0 0 120 100 -%%Pages: 1 -%%PageOrder: Ascend - -%%BeginProlog -%%BeginProcSet: -/ReEncodeFont { exch findfont << >> copy dup 3 2 roll /Encoding exch put definefont } def -%%EndProcSet -%%BeginFont: CMSS10 -%!PS-AdobeFont-1.0: CMSS10 003.002 -%%Title: CMSS10 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMSS10. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments - -FontDirectory/CMSS10 known{/CMSS10 findfont dup/UniqueID known{dup -/UniqueID get 5000803 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /CMSS10 def -/FontBBox {-61 -250 999 759 }readonly def -/UniqueID 5000803 def -/PaintType 0 def -/FontInfo 9 dict dup begin - /version (003.002) readonly def - /Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMSS10.) readonly def - /FullName (CMSS10) readonly def - /FamilyName (Computer Modern) readonly def - /Weight (Medium) readonly def - /ItalicAngle 0 def - /isFixedPitch false def - /UnderlinePosition -100 def - /UnderlineThickness 50 def -end readonly def -/Encoding 256 array - 0 1 255 { 1 index exch /.notdef put} for -dup 0 /Gamma put -dup 1 /Delta put -dup 2 /Theta put -dup 3 /Lambda put -dup 4 /Xi put -dup 5 /Pi put -dup 6 /Sigma put -dup 7 /Upsilon put -dup 8 /Phi put -dup 9 /Psi put -dup 10 /Omega put -dup 11 /ff put -dup 12 /fi put -dup 13 /fl put -dup 14 /ffi put -dup 15 /ffl put -dup 16 /dotlessi put -dup 17 /dotlessj put -dup 18 /grave put -dup 19 /acute put -dup 20 /caron put -dup 21 /breve put -dup 22 /macron put -dup 23 /ring put -dup 24 /cedilla put -dup 25 /germandbls put -dup 26 /ae put -dup 27 /oe put -dup 28 /oslash put -dup 29 /AE put -dup 30 /OE put -dup 31 /Oslash put -dup 32 /suppress put -dup 33 /exclam put -dup 34 /quotedblright put -dup 35 /numbersign put -dup 36 /dollar put -dup 37 /percent put -dup 38 /ampersand put -dup 39 /quoteright put -dup 40 /parenleft put -dup 41 /parenright put -dup 42 /asterisk put -dup 43 /plus put -dup 44 /comma put -dup 45 /hyphen put -dup 46 /period put -dup 47 /slash put -dup 48 /zero put -dup 49 /one put -dup 50 /two put -dup 51 /three put -dup 52 /four put -dup 53 /five put -dup 54 /six put -dup 55 /seven put -dup 56 /eight put -dup 57 /nine put -dup 58 /colon put -dup 59 /semicolon put -dup 60 /exclamdown put -dup 61 /equal put -dup 62 /questiondown put -dup 63 /question put -dup 64 /at put -dup 65 /A put -dup 66 /B put -dup 67 /C put -dup 68 /D put -dup 69 /E put -dup 70 /F put -dup 71 /G put -dup 72 /H put -dup 73 /I put -dup 74 /J put -dup 75 /K put -dup 76 /L put -dup 77 /M put -dup 78 /N put -dup 79 /O put -dup 80 /P put -dup 81 /Q put -dup 82 /R put -dup 83 /S put -dup 84 /T put -dup 85 /U put -dup 86 /V put -dup 87 /W put -dup 88 /X put -dup 89 /Y put -dup 90 /Z put -dup 91 /bracketleft put -dup 92 /quotedblleft put -dup 93 /bracketright put -dup 94 /circumflex put -dup 95 /dotaccent put -dup 96 /quoteleft put -dup 97 /a put -dup 98 /b put -dup 99 /c put -dup 100 /d put -dup 101 /e put -dup 102 /f put -dup 103 /g put -dup 104 /h put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 108 /l put -dup 109 /m put -dup 110 /n put -dup 111 /o put -dup 112 /p put -dup 113 /q put -dup 114 /r put -dup 115 /s put -dup 116 /t put -dup 117 /u put -dup 118 /v put -dup 119 /w put -dup 120 /x put -dup 121 /y put -dup 122 /z put -dup 123 /endash put -dup 124 /emdash put -dup 125 /hungarumlaut put -dup 126 /tilde put -dup 127 /dieresis put -dup 128 /suppress put -dup 160 /space put -dup 161 /Gamma put -dup 162 /Delta put -dup 163 /Theta put -dup 164 /Lambda put -dup 165 /Xi put -dup 166 /Pi put -dup 167 /Sigma put -dup 168 /Upsilon put -dup 169 /Phi put -dup 170 /Psi put -dup 171 /sfthyphen put -dup 172 /nbspace put -dup 173 /Omega put -dup 174 /ff put -dup 175 /fi put -dup 176 /fl put -dup 177 /ffi put -dup 178 /ffl put -dup 179 /dotlessi put -dup 180 /dotlessj put -dup 181 /grave put -dup 182 /acute put -dup 183 /caron put -dup 184 /breve put -dup 185 /macron put -dup 186 /ring put -dup 187 /cedilla put -dup 188 /germandbls put -dup 189 /ae put -dup 190 /oe put -dup 191 /oslash put -dup 192 /AE put -dup 193 /OE put -dup 194 /Oslash put -dup 195 /suppress put -dup 196 /dieresis put -readonly def -currentdict end -currentfile eexec -D9D66F633B846AB284BCF8B0411B772DE5CD06DFE1BE899059C588357426D7A07B684C079A47D271 -426064AD18CB9750D8A986D1D67C1B2AEEF8CE785CC19C81DE96489F740045C5E342F02DA1C9F9F3 -C167651E646F1A67CF379789E311EF91511D0F605B045B279357D6FC8537C233E7AEE6A4FDBE73E7 -5A39EB206D20A6F61021961B748D419EBEEB028B592124E174CA595C108E12725B9875544955CFFD -028B698EF742BC8C19F979E35B8E99CADDDDC89CC6C59733F2A24BC3AF36AD861319147A4A219ECB -92D0D9F6228B51A97C295470093CA270C4488BB4EB864B4863941B9739638D2E6F3CC778582B46AE -B4E466D89D1C211225274356A4BC90F3274C6AA56E200249B7D0949A3FD4185DCB3E5286910EFD7C -A72D5D8E8052C96F388D12094B87D3705CE64459558CF024667C0FE96CBB32B0BC9E51037D7BD62B -E4B05FF99384E71D78441A79B0B1DBA1CAE02434A9FAE46596FB86B873B1670DAE0BAF516445A0DD -C127F8FF3ADA0B10EC30A9CC1F7E9248828B5E8AB46C3FE4154B80A54128A08777F5F9B8C519C7E3 -B632B3476F007FA156E9F39FBE57638B4214CD2BA79BA9DDA0F4C073AED814ABCCC2F7906C57A872 -C00E67FF03AC120029DAB92376422FA21C67CA98BCEB8C431CA2D3EDDC16BDA59363F49614070AA6 -859105192CCC6E4911B0B5D0FBDE04872D8C8D84FE6B68702FBFC4682186E03F2141CF8FC8E23254 -2FF446E00D34A7B9B9271B07DEEED93C336653ED0F51DBA0DE34235097373CA4583095151642EEE7 -6B6BA6714F37031F5AD2ECA4875FD02F65D47541F5245588F0CB5933A759342FC460ABF99E014A85 -CE3BFF948BC38F3D29FAFBD205400093EBD129A9C3AF161E7365DEB2905074660FEC703B6D4733A6 -6EC1E78A1FF3FA90863072C108109D4DFF62166EA04DD1E05225CD1B9A6808413402E9E1E81512B7 -1BFD781132923BA7B5DB7032E7AF65CAD135E8D3C0DDEFE960DECAC693166D83DB2A6D819E40024B -40A114818D7E943849FD90359B4BCC4FB0E2E0373A6200C13F194D735815ACC2E09BF4ABC693DE6E -975F0C27BAD1DCFE8D0A3977B48104EA6F85072BC0F5FD3E8FD8D53DBB088061BDB89249A4C3E6BD -B4A5A0F469D9B53E9B35A4A03F558DC93B8870FD28A829735E1F25F455CEA1CC8DFB408888DDBCEC -C050A84B6EBF39E42B4278F92E44C7A41FAA83CE07255B8CAA9F3EB43368900EEDEAADD836AEB663 -7EFF72351D649500FF3544DAB77FE191A5907B8E7C2AA4A9B18D857C63B2F41279FE6E241EB946D9 -A67B3908CF7146DE0D971192BF7908B3319E6C0B33995F4E54BACDA9040693EA19F24266FF8A46B9 -3D6091337C2BBAACE6ED443A6A83EA4296E41E309192D66122FCF7A37578C45859854CADF75A8299 -727CDC5868F365497886C518C001A3CD4C0A5ED589C3FE9C14269A9DBE9A10FBD6B4B0BB6292975E -F7210A6E4959DE1F3063A98393C63ED63D2EA31353ADC92AC1B924678E81B509CD4470DBD22694E2 -EF36266270A78A350581C6AF9747D92BA0ED2019FFFBDEAA908B373CA6A848512CD5A5607A8EF877 -1533539AE3D2F448FE1092CC640F699D73C6CB421B56C630574A11B5F48DF7DDF4942C82FD5DCC9A -5BF9585CB7715053059CF73503C1FBEF7F8F45546039AE0F3BDDE1ADA78C2DB36040C20848ADB414 -4E71B38A447FFC4F768366416027344912C9134FB30AD513BFB40008884FA98F1D25714121082696 -C877790A06A60BFFB6CFAEACF55453878DF4D972841D7D18E510D5E842416F023BA13A40696FA534 -DB3B0601F45B77FB1CECAD240B8594CC95DF65BD45C1A73D2489D6AA84FD46414D992CDA7D307640 -017951656A3C736C73B116EA9F0A3304EAFA312E46A5152E902D840108C2A1858A95B958055A8080 -B97D612BE59E2D24A5362EF77A83CD8656F8FB6519BDFB3CC43E068C8203BAE620255274AA281972 -A1EE85C378818532B42368AAA93A0C984D7380AD57F1B8FFAAFECAD5EAC17A07DA742E272D3C809B -157D2669AB88DA9EBB91B9E060DE7F275ADFE2FFEA18127969214795E7CD9C27CF902AD3EAD6C6AE -0A4BCDDAD88B6F37932BC7B07D9B43742A08A257DFB3FBB532077039C9CE90386F6C80BDED9CA008 -A7783B6F702DD00D9ECFE3AD9DB0704BBFF4CCBE0B3C75401337CFC1A37E008A09C95C4CE6CF8AF5 -56487D6B320F3B3A9D36623E85FF4119D9EAF24099C2E1D9860DD2187E8CDDF80C4F0B164EC85E0B -21901D017E0A20FBE2090DB90EEE5C9BD2EAD87725F7FF37FD8F43031494817603B8A7E69FEE78D1 -4AC7A66F16800B4B7943B7AED95E9044282017A0FED40F053EBFCA7E292B6C4E0C8DB47B054C91C9 -A1DE4A2741E5E7970AE431494BACF4AA487BCA0080D9A6A3FA3D0E77373F2D40B300D8936C71D83B -3332EE113D087B38E1852312C21ED29C688FFD05D07629D2A48AE9B7B6363AAFFC6CC5ABC96A996E -478C37D745E5B6C90A006349A971C554C27F1D4F7AD1CFED394315EE5C7E681D491213E010A328BF -49C988D7E490BDEA5A86B0F2A8C845A01D84751E1C4BFDDD19045AFDC1283279D7AA6A1FBFD539D3 -A0BEC325597E025A4DE112CBFDB439FE719E690F8DCBEDA826D6546EDF93EDCB67F5AA78FD308CC9 -4EB375BA5FD443083665C0E361462AE4EC541ECD1891B6A7B41715FEBAAAB658FF924A171F4504E5 -03CBC27912393C0F85DF4B276DB39A174CF94B2D6FAC5E3E4F886B2C0D67DF8C502E1E513D934938 -831AAD911F3270A67FA434FD5E3D02E9655661BFC2BB9FE7460E6AE8CFACF6BF545C41C730AC58DB -BCF9AC8532C9E85D9ECAC11D0F7C55288962DB1EFD351B56BF6F2051C62377B95FF0C93A09966EE9 -C6B792126A6C7E9995F2D68E20308347FAB463F5F2DB2E8675882CEF049EF0A6406E1647137D9A46 -734D6E909754E66704552A41B3698B50417F2F3D4F883E3D3E6A75743820E689AE4818C297572E29 -2B5761396825B38C2E6D96ED290856AC6154C51FD90C3EE498E46295832503D76A22CDAC68B6B7AC -B36BA3496422936F48E1569777229320718C45F71C0F857EE699FDD1526E4A23418681D41940E7E0 -FA2C551FB8B79495719F34C3774B229DF858F51AA2E26094FC181BCAE64EE209EE131B9472D6A7EF -6A131EFB221E0F2CCC829A0D9672CEDACF44453400D15DDD34C4126F003A0E57455B25785E1CC9AB -4D4EE1A3BCCBEE149CDCC7EDE7B1F09DA1174F48048B568094F280F22590903F3B2C6A1A796E851F -71D34972F00FF13EB51F8136490C2BA6909B130CF3170820C652A1733BC4B69297BF1F5CF816BCB7 -5A0AC3520AC1DE911B72DEE5AD0033228B9F75961ED1280C6808ED0FD548411696C1CC747AEF91A4 -1EF05215DB5720AADE50BC598749C67770515BFF6DBC5A940C07AB462AA296621D7722C5A47AB3FA -6305C55216216540098F86A1EE217C77EDC0BC3F6DFEC4AFA266019C20CAAAEB381145B3588FAD0A -AB944AD9F120DFF24168844BF92C279D1DF5923C9ACF10393655F33CB9E7EB09A74BD898D07A31A1 -07326EA219163FD6CA3E5A0985F74421F895F020D3D482444C50B428B364487B0FEF8717ABD8D223 -2B4D35EB256A3AE5C1B0D2AE331A1E1D4D5DBC7BACF361E52719DA50620E5137E085481F632B861E -FFF31AF04624D486130FB361F799FF5219E405C80DBFB653CCB3C2E10934C95417A7E91DBE161727 -C5861A219A59470E6AF895C93AD43FAD820BB4C58C13678AE33D18C3EF8DB36A7270CDB3BA2BDDAC -02B0C93D29829DC2B9087F070FFB297464CBF426545A65B869B2661F5B7B6575119DA27D715F0A42 -DF446901F0F2A632AF5614C9EC1FD2A6C79E676D80DACB9F2B89FC51333B4CA7CD98D8CE8B62959C -86949E2CC2F530333C9A80879850481167A7DC78A8A76DDE664449367B44F711D88EC7028E92AA59 -EBBBF050573B52DC80B0FA653E2EC9E5161C27DFCC86365648249518E72D8954BCBC439742A80ED6 -8A7DAF601400AAB2899D4851040C80A64C1E9D4C500F23ACEDC18C120C2E3D0001C37895247338EF -A633428297ECE1771E26219BC93237DDF71A9CF08D47B323D03E904243D1E98DC596BD7E7677B7D9 -1C06474CEEC23C4DAF1B29029342D16121B3390C87DB04C65447C2515B12B9BCC3AB98B9EABD9636 -1EDCEB53655A24E4845604C560D1120F90ED4456BC543E5916BD60C986482FB77BBE9060121FE179 -8C34A17A6AB350D85904106032A0A107649EEAD9B8F59E4CF5256B025440BB3713C2FA5638D6CEFB -788A39A5A5C51842A13AE24684EC59A6FAE55A64148FE73DFB3234F3912D21D68769C9470E3F2DCE -B860872E0556A5C72FB6FF7F7015D09B116FDFEC79EBF0544A0A989269B34475BF5E18B5A3111496 -FB39BD1B25468B6E5B2EDD1624C1AFD3401A8F2086CF3C9D366834BFF85115EDEAFCA61D1343367A -1F5441246000D9A585EDBE50D5B5CAB2455D58B855DA66180F8E1EAF8A2D1948DF1DA913C8F86F2C -58365A77F4B867309629DC8A9237EF9EF4CA0515B2D1B7B7ED64589CD8D196FC057EB96B392EDCC8 -60C15FA2622A484D32D4E2AFEBAD06946CDDD7B7AACA6C0AA5A41B3BCC91D459AB502137DC8C5032 -C3DC8E5D96D210F702FFA73794B639D0F9E7AE0D2134546FA90360B851782BACEE3C28CF7871D3F8 -12CAF86221212D1D321A07B39A14CAE62F41DC83E7714F3E315A7C63E2DCDCFB7F87DDA2BBC6CC60 -73839FC2F05C03077D8A0C9E7373849927450DF6DAF94B27277349A60073C6979312CC0D5C81A89A -058584982D449F1E993AE1EEF449F1AC7840BBA7AAFD999F622D0D1DD573326683C09082ED3564A9 -B28D29955F89ED47DD0EBC2ABE45B585D10E85CECBE52F919EFDDD9630CF8F90CBF2F156EA791E0D -BD178AFBB1AE3E72E08CB83F896067121B671F63869EA022BA7D11BD63381E33860317F70941E782 -FDADC1224AD556467935E93C63794E07F5AD57FDD0F6D859C82B562E80758E8A5C1EDD8FD2E37E34 -FA42E49098561E8E9696DF5A62F1A27D6B1D0FBC9911A979C25E5A81181BAA04415306D755B890B6 -0523E4A211D00CA64AA90625CBF5ABE06EE227128114B07536D79841004AA4A1FA1612A78DCF0F03 -B121B2870FD3ECCF2C034578F9A3F008DCDE1D8354625DE2A97D78E6F85782F829F79B3E286480B4 -57680BE7758FC50CDFC17E5EE5FB3276BEA977E933AB1BEEB1B27B2F3D164ED5B9AF1280C482ECC5 -952F608E0AD0D1F6363637CFAAEF4F0FC7CAEDA1EFE35BB80C07E0E701633CCA557BD478B70652C4 -874F4AF391481A982AE0AE8F0764EADD9316048CA985B570DDEFEDE6A64EA15A80BE9AA4709E4FA6 -DA9CC49B546955BFEF78320D67D14F120F47BF0C8568D337D6339CAC2FA9C51AF3EAB6AE46A4584A -89BD235ADB26332DB72F5EA2EE4DFCFEF41726C92C2CE299D54EF8A582E766A2C20F429CA48858A0 -D61716B9CDF7D67FFE5D7D6E72ACF982456C52D0986762485E2E111038EA4C67E1183A40249BBECE -EF800CFF6CFABCB532465C496571541110DCEA197B20E1915F9CDB842444BF7CC4A559262C89B487 -A99B92B7EF0087E6893DDBB5895C047D88FCEC1B29029368C65744591AC683FE613D8582066B6000 -35FA0EF7AD4236BF1A4632A7B9DCDAB2F9B8F6FA6C8E3248841AB3CE22D3741DC40F29A61E2676DF -55882F5F41DE8BDA16B6753D8D9EFC41D5C6AEEEE771F712188F4C92641B7C891EDB3484DE68D56F -58E5EF015B98490C17FE3020479384E19AF8AECD888F718055B81A78B8B39FDAC88BDCCC0C1CD447 -A18F0F04BE83D2C6FC44B376E74752EA4ACF043812E4BF1313703F8A9898D8C175CF434C97CBBA18 -197EC3C5A7928844060723A18F19EC2B26AE7CF1C95E4D2FAD1A4F7F9DB3E4143B69B9E0DF94D313 -F41F045B19D8B71376A44E05A5B41F3DB38EE63C24483DDE9F67A0102597DFC316A853C489B61A3C -C7F1A1908E3C63FDFD4D20754A27D27E5B17AFA895787DE85EB9F560EFDFE4EE3ACE1CD5222553A1 -A6B929665EF740E4B8724327B5A6FBA8C1142CA1FDDDE6DC085764FD4C519FA8742BEC0795773D01 -07E832A84B2A4AFF55102C143B67CA605527E129975852C1F99B765E26371D7A47F328DE406D8710 -C0C7242D624DAE937EA7D01056999ECC3A938AA560090C43EE5087B0A0C66CD9186E9C711A2916B6 -266FD68FCF8F6378241A614E8D7A144F3D9B807850F98C4401049B469FAF5C3BECC8741D47CCD383 -32D2C399B40D270B8B68FFACCD9405F619A897C865D3FA84DCE0F1FA9C54B9F8B9B574C9BA981A8F -4D5F4FBDA945D4DAA725DA6E1E24DA5E9803FD2769809AC972338812B14972D3DC6511903712CBFA -F3161D557B671DFE13AA19A942FE564B1EBF441B06D7B7C739DBFD9C96FDABC13A2B7397CCF37EAD -E23ABD4521F69FDBC483411452285234F655AFCA9BAA73BD43E081ED281383B57BA48F6BB92F810E -2031A6E96810116432D402B6EBD9B7208CAAE4D7E40AE1D275E49DBD4867A1DB946A2F7E67530350 -73F2AD5FB626921DA8E6A2C70502CBFF72067E45A1A5223FDEB1F4790BC4D1FCDE1AFBA9F1907652 -98D70C89645D8F39A9ACA1563B870950BF90C8976690A5CA41DB6CB5A6A9CDAF969876ADE9D82492 -35A41B32BB1A0564C55A46351366D61C6CF716ADE7EBD8CDFA6B217F180D3AB24D7CFF8B49992D3E -2A37BAFF83F757E365397602FCD60D70C65F537DF26778F0A1E7C2BAA3C2273FF88151EB2A6DC5C9 -AF099C7A728E95FBC50D889B416A864471EAB31050AF8C6C27A8EF177B3A686EDA6354FE931EB69E -D9B39C7FB5ECBAF29F54CF5A09B36EB52D088226F1ECF75FEC87BB35E00F89A9D6595584C9EDF98D -2CD7735E9545EEFBAFC14F9474453BE920D964FE48BC5D730D919105F890A84699149E36FEC03230 -E3643472DBBE1ED54BB4DBE53353A8AAAB4882F4EE901A2CD474FB1A5AE8E3DA026B721260093742 -D27A4823BEA13FA939B3D28F3D8F5BD8A2298007C0FC3B5A831F0E1294A9A8D7F224F188960994D9 -67CF182F8FF283468CCAA2EFAF24F053FA68BD9B16EE0597DD573844EF2FC8BA518B7EBEF00FA4A5 -D282F27E133F2A976C29B8FABBE95AFA8E82DE895CED761B0EC7E03DFE08BEF1F042BA8110E6218D -065672D5B8EA61D140333D49804A1B41EB9600075B4BE636483FF2179A06DEA1427DAD8F2871DF34 -68108E12980D03EA5F122A64CCB649DD800417F698DD1F38C55340CD07473B5D493BC6C68FDCF84E -6FB9CA9AAD42FE8010193C391AD3CD97C3DF8BEB06A1B5EEDAB48C92BBABFBD7DA041F2C587EC96D -555457B5A2D6FB52486E122B46B0F934B4D3AF86A1F537B108589C0798CD4B11573C1C25214C7118 -703D6A043902C980ED303B63FF038D0FFCE3C73AF6441404C013501D8621C14CA3C2480E6C3ED0C6 -4CAB288817639F43BC26AED457100D0B2D4117911B9A34D9DF00D636A28CE4351BA69B04B108464F -0BEE3A3791F0EF03E3FCA00533A4C0749B922BB56525D632B4D56864566E29588907BE31659D43EA -D3269FBF0BDF7EAC69D636023144BAF8A49410FE55D995C926F90A2FCC6B2C5D13228390F92CC0CD -581E9374C84B10BF5FF66FFA0459D9091374EEEE0645C7E93225359893C1E102065926E0D6485E15 -E8D6F488950C4DE682A76F8DD650811E220D2ED6CCADCF65D46FA81247C52DA15A39CC85C4B8B059 -37D9F3CB303F6CE7E0FAA58973474CF41ECC17BFC9DB2A957B1456491927803C274177A41AF5C041 -47E58B44ACEC2AC0BA966DA50A6318931ECB40B97152A6CD86F720C6366A7B8BA15AC4F03B0BF167 -AE6561779063F2C35A8AF47CB4C3AB05EEFC76F18BE8B54C5135396DE53F0025FDAE047DBE2CAD2C -FFC87FB822EEB92CDFD745EDE31D47925D8D360916491CDA2C40EF9561E94FA09BD0F0F01A5C69B9 -61B2DCA57BDAE1EF3CB223E5BE042533CD81A31BC92A46D84014B8887FD7388B0404214B6C5205D7 -B59E02D03AB22710938B33114DD5DD3C5FCEE28174F4A81959C7F2F52DC619649FAF3BC7D3F0867D -1B8D78B9A9DE9DB68DFC774FBD896843C02A91FD8CF44F18A407ABDF150C4220A12DCB47B390D11B -C6D7C87ADA05274DFAFF33321965754EBFF75B419BECF34BFCF41D02C7ED542D7EF045B32289A2AE -66476610A3640FBD31ACEE4C5B9C882916A12F81D6145E3354F4BE90491692973EB657B7833FE784 -5B0B200090B2530FC82FFBC9B873C27718E8597D6707D0F521A52BAB856F73DE4B0C345E902DC44D -A6BC40E08883BE79FE205F1C6C6DE2A230F1F4AFA78B27ED20C2D7A30F72987D86B494FECBAF1224 -F32B0E4E3CD18D72C35CCEDEF16C8D4D8DBBA8FD526B451498EAE762E2E5F3F0D68C40E221EFE2C2 -11F55A5D1F1C058602F2D9E7247FDB345E8350B8F483C8FE939C71CBF9C33E90BD7054741AF37436 -7BECFF9694AE2F06973F46E8D6BE94D5DF4DF3FC4C46742AB152EABF469497D65B66C08056F90A5E -121683C1B0F91C00318EAB91191B962D67647228929A92FBEB7B5DD5CB67ECF5494A318728BCE386 -6CDC497A69D1151E8693DA446E98664776EBDB07D78CE919C5A36AF67BA04601C649AC46EA968596 -096263885765CBA3CCE6D84260936E204F735DA45C84832C4AFD284ECF25B6240F0288C34D806011 -E9B97ABF0B1CB5FDA87A272064690D7AD7AC2E23291325A17D6A9356A2968072C47C3B4A24046F2F -1B395AB3BEE6103523BE590AF5861B20E26105D9A975DC5053D8E9AFDFEA1BA745EC2962E4B8337B -554A7045868A257173ED0D30E8DF74B5E73280E403235E6835D4AF87FE74D7BA59343CB6D3F245E3 -86377A9D0CE026F26BB682FE26B37A5666AA205307B31CA2AE48F1F11B222928B021F5E0FE4C96AB -A558CCB318EBD50CFFC9612668B337F980A48E88EFD0D6A3183526F171564840FD2625D477557FE6 -3BF4D510C4E7709958BB2573B0AD5D98FA7A28B50B5801A2CEF26223D6A85D670666297AD9446DBE -15F7F67B9922BAA536175E1FCC94AA350C207003C050F26B2844E8BEFE339D008104C3EAAA0C0A7F -8AA62F22E436CD6365BFDCFE638CB0BA3F37C1CF4AC3F92F4316706380C295A2B55441AB218B1731 -9C9085AF82E33AC0B5A636C86376FC1C1A1576CC5B1FE26ACC96ED5AEB1A7EB6444B4FBE37C1BFA9 -62C1D10BEF7FE76C602CF2F88178F1B0F6E4DDA6C89E7C3B85834E3E6944D35E3D948E96C790B474 -E1196CE08A29B908D07BE7CA8EC658B6058C534AEFE9F04D327CA822D0D72A079D3B71AA8C2F22BA -23167534D34702922EC7F1711232D66475284561D50C2A7DE3527A33513C4DE69AAB0019BC3AF306 -40DE71E41D43144E5F28D0631755CFC5C708D0971B01E59340390B682D14A914454E8FB589B73CCC -C4B2C376F220063A87CCE75C -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 - -cleartomark -{restore}if -%%EndFont CMSS10 -%%EndProlog -%%Page: 1 1 -gsave -newpath -0.0e+00 0.0e+00 moveto -1.2e+02 0.0e+00 lineto -1.2e+02 1.0e+02 lineto -0.0e+00 1.0e+02 lineto -closepath -clip -1 setlinecap -1 setlinejoin -gsave -newpath -6.266803e+01 8.507805e+00 moveto -6.000133e+01 5.001753e+00 lineto -6.000135e+01 5.0018e+00 lineto -6.270128e+01 8.60171e+00 lineto -6.266803e+01 8.507805e+00 lineto -closepath -gsave -5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor -fill -grestore -newpath -6.270128e+01 8.60171e+00 moveto -6.000135e+01 5.0018e+00 lineto -6.000133e+01 5.001847e+00 lineto -6.266803e+01 8.695615e+00 lineto -6.270128e+01 8.60171e+00 lineto -closepath -gsave -5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor -fill -grestore -newpath -6.266803e+01 8.695615e+00 moveto -6.000133e+01 5.001847e+00 lineto -6.000128e+01 5.001893e+00 lineto -6.256907e+01 8.787208e+00 lineto -6.266803e+01 8.695615e+00 lineto -closepath -gsave -5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor -fill -grestore -newpath -6.256907e+01 8.787208e+00 moveto -6.000128e+01 5.001893e+00 lineto -6.00012e+01 5.001936e+00 lineto -6.240686e+01 8.874234e+00 lineto -6.256907e+01 8.787208e+00 lineto -closepath -gsave -5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor -fill -grestore -newpath -6.240686e+01 8.874234e+00 moveto -6.00012e+01 5.001936e+00 lineto -6.000109e+01 5.001976e+00 lineto -6.218538e+01 8.954549e+00 lineto -6.240686e+01 8.874234e+00 lineto -closepath -gsave -5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor -fill -grestore -newpath -6.218538e+01 8.954549e+00 moveto -6.000109e+01 5.001976e+00 lineto -6.000095e+01 5.002012e+00 lineto -6.19101e+01 9.026176e+00 lineto -6.218538e+01 8.954549e+00 lineto -closepath -gsave -6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor -fill -grestore -newpath -6.19101e+01 9.026176e+00 moveto -6.000095e+01 5.002012e+00 lineto -6.000079e+01 5.002043e+00 lineto -6.158777e+01 9.087351e+00 lineto -6.19101e+01 9.026176e+00 lineto -closepath -gsave -6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor -fill -grestore -newpath -6.158777e+01 9.087351e+00 moveto -6.000079e+01 5.002043e+00 lineto -6.000061e+01 5.002067e+00 lineto -6.122636e+01 9.136568e+00 lineto -6.158777e+01 9.087351e+00 lineto -closepath -gsave -6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor -fill -grestore -newpath -6.122636e+01 9.136568e+00 moveto -6.000061e+01 5.002067e+00 lineto -6.000042e+01 5.002085e+00 lineto -6.083474e+01 9.172615e+00 lineto -6.122636e+01 9.136568e+00 lineto -closepath -gsave -6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor -fill -grestore -newpath -6.083474e+01 9.172615e+00 moveto -6.000042e+01 5.002085e+00 lineto -6.000021e+01 5.002096e+00 lineto -6.042257e+01 9.194604e+00 lineto -6.083474e+01 9.172615e+00 lineto -closepath -gsave -7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor -fill -grestore -newpath -6.042257e+01 9.194604e+00 moveto -6.000021e+01 5.002096e+00 lineto -6.0e+01 5.0021e+00 lineto -6.0e+01 9.201995e+00 lineto -6.042257e+01 9.194604e+00 lineto -closepath -gsave -7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 9.201995e+00 moveto -6.0e+01 5.0021e+00 lineto -5.999979e+01 5.002096e+00 lineto -5.957743e+01 9.194604e+00 lineto -6.0e+01 9.201995e+00 lineto -closepath -gsave -7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor -fill -grestore -newpath -5.957743e+01 9.194604e+00 moveto -5.999979e+01 5.002096e+00 lineto -5.999958e+01 5.002085e+00 lineto -5.916526e+01 9.172615e+00 lineto -5.957743e+01 9.194604e+00 lineto -closepath -gsave -7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor -fill -grestore -newpath -5.916526e+01 9.172615e+00 moveto -5.999958e+01 5.002085e+00 lineto -5.999939e+01 5.002067e+00 lineto -5.877364e+01 9.136568e+00 lineto -5.916526e+01 9.172615e+00 lineto -closepath -gsave -7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor -fill -grestore -newpath -5.877364e+01 9.136568e+00 moveto -5.999939e+01 5.002067e+00 lineto -5.999921e+01 5.002043e+00 lineto -5.841223e+01 9.087351e+00 lineto -5.877364e+01 9.136568e+00 lineto -closepath -gsave -7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor -fill -grestore -newpath -5.841223e+01 9.087351e+00 moveto -5.999921e+01 5.002043e+00 lineto -5.999905e+01 5.002012e+00 lineto -5.80899e+01 9.026176e+00 lineto -5.841223e+01 9.087351e+00 lineto -closepath -gsave -7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor -fill -grestore -newpath -5.80899e+01 9.026176e+00 moveto -5.999905e+01 5.002012e+00 lineto -5.999891e+01 5.001976e+00 lineto -5.781462e+01 8.954549e+00 lineto -5.80899e+01 9.026176e+00 lineto -closepath -gsave -7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor -fill -grestore -newpath -5.781462e+01 8.954549e+00 moveto -5.999891e+01 5.001976e+00 lineto -5.99988e+01 5.001936e+00 lineto -5.759314e+01 8.874234e+00 lineto -5.781462e+01 8.954549e+00 lineto -closepath -gsave -7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor -fill -grestore -newpath -5.759314e+01 8.874234e+00 moveto -5.99988e+01 5.001936e+00 lineto -5.999872e+01 5.001893e+00 lineto -5.743093e+01 8.787208e+00 lineto -5.759314e+01 8.874234e+00 lineto -closepath -gsave -7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor -fill -grestore -newpath -5.743093e+01 8.787208e+00 moveto -5.999872e+01 5.001893e+00 lineto -5.999867e+01 5.001847e+00 lineto -5.733197e+01 8.695615e+00 lineto -5.743093e+01 8.787208e+00 lineto -closepath -gsave -7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor -fill -grestore -newpath -5.733197e+01 8.695615e+00 moveto -5.999867e+01 5.001847e+00 lineto -5.999865e+01 5.0018e+00 lineto -5.729872e+01 8.60171e+00 lineto -5.733197e+01 8.695615e+00 lineto -closepath -gsave -7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor -fill -grestore -newpath -5.729872e+01 8.60171e+00 moveto -5.999865e+01 5.0018e+00 lineto -5.999867e+01 5.001753e+00 lineto -5.733197e+01 8.507805e+00 lineto -5.729872e+01 8.60171e+00 lineto -closepath -gsave -7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor -fill -grestore -newpath -6.533472e+01 1.201386e+01 moveto -6.266803e+01 8.507805e+00 lineto -6.270128e+01 8.60171e+00 lineto -6.540121e+01 1.220162e+01 lineto -6.533472e+01 1.201386e+01 lineto -closepath -gsave -5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor -fill -grestore -newpath -6.540121e+01 1.220162e+01 moveto -6.270128e+01 8.60171e+00 lineto -6.266803e+01 8.695615e+00 lineto -6.533472e+01 1.238938e+01 lineto -6.540121e+01 1.220162e+01 lineto -closepath -gsave -5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor -fill -grestore -newpath -6.533472e+01 1.238938e+01 moveto -6.266803e+01 8.695615e+00 lineto -6.256907e+01 8.787208e+00 lineto -6.513686e+01 1.257252e+01 lineto -6.533472e+01 1.238938e+01 lineto -closepath -gsave -5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor -fill -grestore -newpath -6.513686e+01 1.257252e+01 moveto -6.256907e+01 8.787208e+00 lineto -6.240686e+01 8.874234e+00 lineto -6.481252e+01 1.274653e+01 lineto -6.513686e+01 1.257252e+01 lineto -closepath -gsave -5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor -fill -grestore -newpath -6.481252e+01 1.274653e+01 moveto -6.240686e+01 8.874234e+00 lineto -6.218538e+01 8.954549e+00 lineto -6.436967e+01 1.290712e+01 lineto -6.481252e+01 1.274653e+01 lineto -closepath -gsave -5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor -fill -grestore -newpath -6.436967e+01 1.290712e+01 moveto -6.218538e+01 8.954549e+00 lineto -6.19101e+01 9.026176e+00 lineto -6.381924e+01 1.305034e+01 lineto -6.436967e+01 1.290712e+01 lineto -closepath -gsave -6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor -fill -grestore -newpath -6.381924e+01 1.305034e+01 moveto -6.19101e+01 9.026176e+00 lineto -6.158777e+01 9.087351e+00 lineto -6.317475e+01 1.317266e+01 lineto -6.381924e+01 1.305034e+01 lineto -closepath -gsave -6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor -fill -grestore -newpath -6.317475e+01 1.317266e+01 moveto -6.158777e+01 9.087351e+00 lineto -6.122636e+01 9.136568e+00 lineto -6.24521e+01 1.327107e+01 lineto -6.317475e+01 1.317266e+01 lineto -closepath -gsave -6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor -fill -grestore -newpath -6.24521e+01 1.327107e+01 moveto -6.122636e+01 9.136568e+00 lineto -6.083474e+01 9.172615e+00 lineto -6.166907e+01 1.334314e+01 lineto -6.24521e+01 1.327107e+01 lineto -closepath -gsave -6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor -fill -grestore -newpath -6.166907e+01 1.334314e+01 moveto -6.083474e+01 9.172615e+00 lineto -6.042257e+01 9.194604e+00 lineto -6.084494e+01 1.338711e+01 lineto -6.166907e+01 1.334314e+01 lineto -closepath -gsave -7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor -fill -grestore -newpath -6.084494e+01 1.338711e+01 moveto -6.042257e+01 9.194604e+00 lineto -6.0e+01 9.201995e+00 lineto -6.0e+01 1.340189e+01 lineto -6.084494e+01 1.338711e+01 lineto -closepath -gsave -7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 1.340189e+01 moveto -6.0e+01 9.201995e+00 lineto -5.957743e+01 9.194604e+00 lineto -5.915506e+01 1.338711e+01 lineto -6.0e+01 1.340189e+01 lineto -closepath -gsave -7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor -fill -grestore -newpath -5.915506e+01 1.338711e+01 moveto -5.957743e+01 9.194604e+00 lineto -5.916526e+01 9.172615e+00 lineto -5.833093e+01 1.334314e+01 lineto -5.915506e+01 1.338711e+01 lineto -closepath -gsave -7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor -fill -grestore -newpath -5.833093e+01 1.334314e+01 moveto -5.916526e+01 9.172615e+00 lineto -5.877364e+01 9.136568e+00 lineto -5.75479e+01 1.327107e+01 lineto -5.833093e+01 1.334314e+01 lineto -closepath -gsave -7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor -fill -grestore -newpath -5.75479e+01 1.327107e+01 moveto -5.877364e+01 9.136568e+00 lineto -5.841223e+01 9.087351e+00 lineto -5.682525e+01 1.317266e+01 lineto -5.75479e+01 1.327107e+01 lineto -closepath -gsave -7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor -fill -grestore -newpath -5.682525e+01 1.317266e+01 moveto -5.841223e+01 9.087351e+00 lineto -5.80899e+01 9.026176e+00 lineto -5.618076e+01 1.305034e+01 lineto -5.682525e+01 1.317266e+01 lineto -closepath -gsave -7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor -fill -grestore -newpath -5.618076e+01 1.305034e+01 moveto -5.80899e+01 9.026176e+00 lineto -5.781462e+01 8.954549e+00 lineto -5.563033e+01 1.290712e+01 lineto -5.618076e+01 1.305034e+01 lineto -closepath -gsave -7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor -fill -grestore -newpath -5.563033e+01 1.290712e+01 moveto -5.781462e+01 8.954549e+00 lineto -5.759314e+01 8.874234e+00 lineto -5.518748e+01 1.274653e+01 lineto -5.563033e+01 1.290712e+01 lineto -closepath -gsave -7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor -fill -grestore -newpath -5.518748e+01 1.274653e+01 moveto -5.759314e+01 8.874234e+00 lineto -5.743093e+01 8.787208e+00 lineto -5.486314e+01 1.257252e+01 lineto -5.518748e+01 1.274653e+01 lineto -closepath -gsave -7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor -fill -grestore -newpath -5.486314e+01 1.257252e+01 moveto -5.743093e+01 8.787208e+00 lineto -5.733197e+01 8.695615e+00 lineto -5.466528e+01 1.238938e+01 lineto -5.486314e+01 1.257252e+01 lineto -closepath -gsave -7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor -fill -grestore -newpath -5.466528e+01 1.238938e+01 moveto -5.733197e+01 8.695615e+00 lineto -5.729872e+01 8.60171e+00 lineto -5.459878e+01 1.220162e+01 lineto -5.466528e+01 1.238938e+01 lineto -closepath -gsave -7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor -fill -grestore -newpath -5.459878e+01 1.220162e+01 moveto -5.729872e+01 8.60171e+00 lineto -5.733197e+01 8.507805e+00 lineto -5.466528e+01 1.201386e+01 lineto -5.459878e+01 1.220162e+01 lineto -closepath -gsave -7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor -fill -grestore -newpath -6.800141e+01 1.551991e+01 moveto -6.533472e+01 1.201386e+01 lineto -6.540121e+01 1.220162e+01 lineto -6.810115e+01 1.580153e+01 lineto -6.800141e+01 1.551991e+01 lineto -closepath -gsave -5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor -fill -grestore -newpath -6.810115e+01 1.580153e+01 moveto -6.540121e+01 1.220162e+01 lineto -6.533472e+01 1.238938e+01 lineto -6.800141e+01 1.608315e+01 lineto -6.810115e+01 1.580153e+01 lineto -closepath -gsave -5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor -fill -grestore -newpath -6.800141e+01 1.608315e+01 moveto -6.533472e+01 1.238938e+01 lineto -6.513686e+01 1.257252e+01 lineto -6.770465e+01 1.635784e+01 lineto -6.800141e+01 1.608315e+01 lineto -closepath -gsave -5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor -fill -grestore -newpath -6.770465e+01 1.635784e+01 moveto -6.513686e+01 1.257252e+01 lineto -6.481252e+01 1.274653e+01 lineto -6.721818e+01 1.661883e+01 lineto -6.770465e+01 1.635784e+01 lineto -closepath -gsave -5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor -fill -grestore -newpath -6.721818e+01 1.661883e+01 moveto -6.481252e+01 1.274653e+01 lineto -6.436967e+01 1.290712e+01 lineto -6.655397e+01 1.685969e+01 lineto -6.721818e+01 1.661883e+01 lineto -closepath -gsave -5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor -fill -grestore -newpath -6.655397e+01 1.685969e+01 moveto -6.436967e+01 1.290712e+01 lineto -6.381924e+01 1.305034e+01 lineto -6.572838e+01 1.70745e+01 lineto -6.655397e+01 1.685969e+01 lineto -closepath -gsave -6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor -fill -grestore -newpath -6.572838e+01 1.70745e+01 moveto -6.381924e+01 1.305034e+01 lineto -6.317475e+01 1.317266e+01 lineto -6.476174e+01 1.725797e+01 lineto -6.572838e+01 1.70745e+01 lineto -closepath -gsave -6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor -fill -grestore -newpath -6.476174e+01 1.725797e+01 moveto -6.317475e+01 1.317266e+01 lineto -6.24521e+01 1.327107e+01 lineto -6.367784e+01 1.740557e+01 lineto -6.476174e+01 1.725797e+01 lineto -closepath -gsave -6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor -fill -grestore -newpath -6.367784e+01 1.740557e+01 moveto -6.24521e+01 1.327107e+01 lineto -6.166907e+01 1.334314e+01 lineto -6.250339e+01 1.751367e+01 lineto -6.367784e+01 1.740557e+01 lineto -closepath -gsave -6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor -fill -grestore -newpath -6.250339e+01 1.751367e+01 moveto -6.166907e+01 1.334314e+01 lineto -6.084494e+01 1.338711e+01 lineto -6.12673e+01 1.757962e+01 lineto -6.250339e+01 1.751367e+01 lineto -closepath -gsave -7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor -fill -grestore -newpath -6.12673e+01 1.757962e+01 moveto -6.084494e+01 1.338711e+01 lineto -6.0e+01 1.340189e+01 lineto -6.0e+01 1.760178e+01 lineto -6.12673e+01 1.757962e+01 lineto -closepath -gsave -7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 1.760178e+01 moveto -6.0e+01 1.340189e+01 lineto -5.915506e+01 1.338711e+01 lineto -5.87327e+01 1.757962e+01 lineto -6.0e+01 1.760178e+01 lineto -closepath -gsave -7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor -fill -grestore -newpath -5.87327e+01 1.757962e+01 moveto -5.915506e+01 1.338711e+01 lineto -5.833093e+01 1.334314e+01 lineto -5.749661e+01 1.751367e+01 lineto -5.87327e+01 1.757962e+01 lineto -closepath -gsave -7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor -fill -grestore -newpath -5.749661e+01 1.751367e+01 moveto -5.833093e+01 1.334314e+01 lineto -5.75479e+01 1.327107e+01 lineto -5.632216e+01 1.740557e+01 lineto -5.749661e+01 1.751367e+01 lineto -closepath -gsave -7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor -fill -grestore -newpath -5.632216e+01 1.740557e+01 moveto -5.75479e+01 1.327107e+01 lineto -5.682525e+01 1.317266e+01 lineto -5.523826e+01 1.725797e+01 lineto -5.632216e+01 1.740557e+01 lineto -closepath -gsave -7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor -fill -grestore -newpath -5.523826e+01 1.725797e+01 moveto -5.682525e+01 1.317266e+01 lineto -5.618076e+01 1.305034e+01 lineto -5.427162e+01 1.70745e+01 lineto -5.523826e+01 1.725797e+01 lineto -closepath -gsave -7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor -fill -grestore -newpath -5.427162e+01 1.70745e+01 moveto -5.618076e+01 1.305034e+01 lineto -5.563033e+01 1.290712e+01 lineto -5.344603e+01 1.685969e+01 lineto -5.427162e+01 1.70745e+01 lineto -closepath -gsave -7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor -fill -grestore -newpath -5.344603e+01 1.685969e+01 moveto -5.563033e+01 1.290712e+01 lineto -5.518748e+01 1.274653e+01 lineto -5.278182e+01 1.661883e+01 lineto -5.344603e+01 1.685969e+01 lineto -closepath -gsave -7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor -fill -grestore -newpath -5.278182e+01 1.661883e+01 moveto -5.518748e+01 1.274653e+01 lineto -5.486314e+01 1.257252e+01 lineto -5.229535e+01 1.635784e+01 lineto -5.278182e+01 1.661883e+01 lineto -closepath -gsave -7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor -fill -grestore -newpath -5.229535e+01 1.635784e+01 moveto -5.486314e+01 1.257252e+01 lineto -5.466528e+01 1.238938e+01 lineto -5.199859e+01 1.608315e+01 lineto -5.229535e+01 1.635784e+01 lineto -closepath -gsave -7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor -fill -grestore -newpath -5.199859e+01 1.608315e+01 moveto -5.466528e+01 1.238938e+01 lineto -5.459878e+01 1.220162e+01 lineto -5.189885e+01 1.580153e+01 lineto -5.199859e+01 1.608315e+01 lineto -closepath -gsave -7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor -fill -grestore -newpath -5.189885e+01 1.580153e+01 moveto -5.459878e+01 1.220162e+01 lineto -5.466528e+01 1.201386e+01 lineto -5.199859e+01 1.551991e+01 lineto -5.189885e+01 1.580153e+01 lineto -closepath -gsave -7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor -fill -grestore -newpath -7.06681e+01 1.902596e+01 moveto -6.800141e+01 1.551991e+01 lineto -6.810115e+01 1.580153e+01 lineto -7.080108e+01 1.940144e+01 lineto -7.06681e+01 1.902596e+01 lineto -closepath -gsave -5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor -fill -grestore -newpath -7.080108e+01 1.940144e+01 moveto -6.810115e+01 1.580153e+01 lineto -6.800141e+01 1.608315e+01 lineto -7.06681e+01 1.977692e+01 lineto -7.080108e+01 1.940144e+01 lineto -closepath -gsave -5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor -fill -grestore -newpath -7.06681e+01 1.977692e+01 moveto -6.800141e+01 1.608315e+01 lineto -6.770465e+01 1.635784e+01 lineto -7.027244e+01 2.014315e+01 lineto -7.06681e+01 1.977692e+01 lineto -closepath -gsave -5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor -fill -grestore -newpath -7.027244e+01 2.014315e+01 moveto -6.770465e+01 1.635784e+01 lineto -6.721818e+01 1.661883e+01 lineto -6.962383e+01 2.049113e+01 lineto -7.027244e+01 2.014315e+01 lineto -closepath -gsave -5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor -fill -grestore -newpath -6.962383e+01 2.049113e+01 moveto -6.721818e+01 1.661883e+01 lineto -6.655397e+01 1.685969e+01 lineto -6.873826e+01 2.081227e+01 lineto -6.962383e+01 2.049113e+01 lineto -closepath -gsave -5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor -fill -grestore -newpath -6.873826e+01 2.081227e+01 moveto -6.655397e+01 1.685969e+01 lineto -6.572838e+01 1.70745e+01 lineto -6.763752e+01 2.109867e+01 lineto -6.873826e+01 2.081227e+01 lineto -closepath -gsave -6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor -fill -grestore -newpath -6.763752e+01 2.109867e+01 moveto -6.572838e+01 1.70745e+01 lineto -6.476174e+01 1.725797e+01 lineto -6.634872e+01 2.134327e+01 lineto -6.763752e+01 2.109867e+01 lineto -closepath -gsave -6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor -fill -grestore -newpath -6.634872e+01 2.134327e+01 moveto -6.476174e+01 1.725797e+01 lineto -6.367784e+01 1.740557e+01 lineto -6.490359e+01 2.154007e+01 lineto -6.634872e+01 2.134327e+01 lineto -closepath -gsave -6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor -fill -grestore -newpath -6.490359e+01 2.154007e+01 moveto -6.367784e+01 1.740557e+01 lineto -6.250339e+01 1.751367e+01 lineto -6.333772e+01 2.16842e+01 lineto -6.490359e+01 2.154007e+01 lineto -closepath -gsave -6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor -fill -grestore -newpath -6.333772e+01 2.16842e+01 moveto -6.250339e+01 1.751367e+01 lineto -6.12673e+01 1.757962e+01 lineto -6.168966e+01 2.177213e+01 lineto -6.333772e+01 2.16842e+01 lineto -closepath -gsave -7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor -fill -grestore -newpath -6.168966e+01 2.177213e+01 moveto -6.12673e+01 1.757962e+01 lineto -6.0e+01 1.760178e+01 lineto -6.0e+01 2.180168e+01 lineto -6.168966e+01 2.177213e+01 lineto -closepath -gsave -7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 2.180168e+01 moveto -6.0e+01 1.760178e+01 lineto -5.87327e+01 1.757962e+01 lineto -5.831034e+01 2.177213e+01 lineto -6.0e+01 2.180168e+01 lineto -closepath -gsave -7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor -fill -grestore -newpath -5.831034e+01 2.177213e+01 moveto -5.87327e+01 1.757962e+01 lineto -5.749661e+01 1.751367e+01 lineto -5.666228e+01 2.16842e+01 lineto -5.831034e+01 2.177213e+01 lineto -closepath -gsave -7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor -fill -grestore -newpath -5.666228e+01 2.16842e+01 moveto -5.749661e+01 1.751367e+01 lineto -5.632216e+01 1.740557e+01 lineto -5.509641e+01 2.154007e+01 lineto -5.666228e+01 2.16842e+01 lineto -closepath -gsave -7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor -fill -grestore -newpath -5.509641e+01 2.154007e+01 moveto -5.632216e+01 1.740557e+01 lineto -5.523826e+01 1.725797e+01 lineto -5.365128e+01 2.134327e+01 lineto -5.509641e+01 2.154007e+01 lineto -closepath -gsave -7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor -fill -grestore -newpath -5.365128e+01 2.134327e+01 moveto -5.523826e+01 1.725797e+01 lineto -5.427162e+01 1.70745e+01 lineto -5.236248e+01 2.109867e+01 lineto -5.365128e+01 2.134327e+01 lineto -closepath -gsave -7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor -fill -grestore -newpath -5.236248e+01 2.109867e+01 moveto -5.427162e+01 1.70745e+01 lineto -5.344603e+01 1.685969e+01 lineto -5.126174e+01 2.081227e+01 lineto -5.236248e+01 2.109867e+01 lineto -closepath -gsave -7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor -fill -grestore -newpath -5.126174e+01 2.081227e+01 moveto -5.344603e+01 1.685969e+01 lineto -5.278182e+01 1.661883e+01 lineto -5.037617e+01 2.049113e+01 lineto -5.126174e+01 2.081227e+01 lineto -closepath -gsave -7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor -fill -grestore -newpath -5.037617e+01 2.049113e+01 moveto -5.278182e+01 1.661883e+01 lineto -5.229535e+01 1.635784e+01 lineto -4.972756e+01 2.014315e+01 lineto -5.037617e+01 2.049113e+01 lineto -closepath -gsave -7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor -fill -grestore -newpath -4.972756e+01 2.014315e+01 moveto -5.229535e+01 1.635784e+01 lineto -5.199859e+01 1.608315e+01 lineto -4.93319e+01 1.977692e+01 lineto -4.972756e+01 2.014315e+01 lineto -closepath -gsave -7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor -fill -grestore -newpath -4.93319e+01 1.977692e+01 moveto -5.199859e+01 1.608315e+01 lineto -5.189885e+01 1.580153e+01 lineto -4.919892e+01 1.940144e+01 lineto -4.93319e+01 1.977692e+01 lineto -closepath -gsave -7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor -fill -grestore -newpath -4.919892e+01 1.940144e+01 moveto -5.189885e+01 1.580153e+01 lineto -5.199859e+01 1.551991e+01 lineto -4.93319e+01 1.902596e+01 lineto -4.919892e+01 1.940144e+01 lineto -closepath -gsave -7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor -fill -grestore -newpath -7.333479e+01 2.253201e+01 moveto -7.06681e+01 1.902596e+01 lineto -7.080108e+01 1.940144e+01 lineto -7.350101e+01 2.300135e+01 lineto -7.333479e+01 2.253201e+01 lineto -closepath -gsave -5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor -fill -grestore -newpath -7.350101e+01 2.300135e+01 moveto -7.080108e+01 1.940144e+01 lineto -7.06681e+01 1.977692e+01 lineto -7.333479e+01 2.347069e+01 lineto -7.350101e+01 2.300135e+01 lineto -closepath -gsave -5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor -fill -grestore -newpath -7.333479e+01 2.347069e+01 moveto -7.06681e+01 1.977692e+01 lineto -7.027244e+01 2.014315e+01 lineto -7.284023e+01 2.392847e+01 lineto -7.333479e+01 2.347069e+01 lineto -closepath -gsave -5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor -fill -grestore -newpath -7.284023e+01 2.392847e+01 moveto -7.027244e+01 2.014315e+01 lineto -6.962383e+01 2.049113e+01 lineto -7.202949e+01 2.436342e+01 lineto -7.284023e+01 2.392847e+01 lineto -closepath -gsave -5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor -fill -grestore -newpath -7.202949e+01 2.436342e+01 moveto -6.962383e+01 2.049113e+01 lineto -6.873826e+01 2.081227e+01 lineto -7.092255e+01 2.476484e+01 lineto -7.202949e+01 2.436342e+01 lineto -closepath -gsave -5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor -fill -grestore -newpath -7.092255e+01 2.476484e+01 moveto -6.873826e+01 2.081227e+01 lineto -6.763752e+01 2.109867e+01 lineto -6.954666e+01 2.512283e+01 lineto -7.092255e+01 2.476484e+01 lineto -closepath -gsave -6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor -fill -grestore -newpath -6.954666e+01 2.512283e+01 moveto -6.763752e+01 2.109867e+01 lineto -6.634872e+01 2.134327e+01 lineto -6.79357e+01 2.542858e+01 lineto -6.954666e+01 2.512283e+01 lineto -closepath -gsave -6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor -fill -grestore -newpath -6.79357e+01 2.542858e+01 moveto -6.634872e+01 2.134327e+01 lineto -6.490359e+01 2.154007e+01 lineto -6.612933e+01 2.567457e+01 lineto -6.79357e+01 2.542858e+01 lineto -closepath -gsave -6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor -fill -grestore -newpath -6.612933e+01 2.567457e+01 moveto -6.490359e+01 2.154007e+01 lineto -6.333772e+01 2.16842e+01 lineto -6.417204e+01 2.585473e+01 lineto -6.612933e+01 2.567457e+01 lineto -closepath -gsave -6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor -fill -grestore -newpath -6.417204e+01 2.585473e+01 moveto -6.333772e+01 2.16842e+01 lineto -6.168966e+01 2.177213e+01 lineto -6.211202e+01 2.596464e+01 lineto -6.417204e+01 2.585473e+01 lineto -closepath -gsave -7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor -fill -grestore -newpath -6.211202e+01 2.596464e+01 moveto -6.168966e+01 2.177213e+01 lineto -6.0e+01 2.180168e+01 lineto -6.0e+01 2.600157e+01 lineto -6.211202e+01 2.596464e+01 lineto -closepath -gsave -7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 2.600157e+01 moveto -6.0e+01 2.180168e+01 lineto -5.831034e+01 2.177213e+01 lineto -5.788798e+01 2.596464e+01 lineto -6.0e+01 2.600157e+01 lineto -closepath -gsave -7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor -fill -grestore -newpath -5.788798e+01 2.596464e+01 moveto -5.831034e+01 2.177213e+01 lineto -5.666228e+01 2.16842e+01 lineto -5.582796e+01 2.585473e+01 lineto -5.788798e+01 2.596464e+01 lineto -closepath -gsave -7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor -fill -grestore -newpath -5.582796e+01 2.585473e+01 moveto -5.666228e+01 2.16842e+01 lineto -5.509641e+01 2.154007e+01 lineto -5.387067e+01 2.567457e+01 lineto -5.582796e+01 2.585473e+01 lineto -closepath -gsave -7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor -fill -grestore -newpath -5.387067e+01 2.567457e+01 moveto -5.509641e+01 2.154007e+01 lineto -5.365128e+01 2.134327e+01 lineto -5.20643e+01 2.542858e+01 lineto -5.387067e+01 2.567457e+01 lineto -closepath -gsave -7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor -fill -grestore -newpath -5.20643e+01 2.542858e+01 moveto -5.365128e+01 2.134327e+01 lineto -5.236248e+01 2.109867e+01 lineto -5.045334e+01 2.512283e+01 lineto -5.20643e+01 2.542858e+01 lineto -closepath -gsave -7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor -fill -grestore -newpath -5.045334e+01 2.512283e+01 moveto -5.236248e+01 2.109867e+01 lineto -5.126174e+01 2.081227e+01 lineto -4.907745e+01 2.476484e+01 lineto -5.045334e+01 2.512283e+01 lineto -closepath -gsave -7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor -fill -grestore -newpath -4.907745e+01 2.476484e+01 moveto -5.126174e+01 2.081227e+01 lineto -5.037617e+01 2.049113e+01 lineto -4.797051e+01 2.436342e+01 lineto -4.907745e+01 2.476484e+01 lineto -closepath -gsave -7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor -fill -grestore -newpath -4.797051e+01 2.436342e+01 moveto -5.037617e+01 2.049113e+01 lineto -4.972756e+01 2.014315e+01 lineto -4.715977e+01 2.392847e+01 lineto -4.797051e+01 2.436342e+01 lineto -closepath -gsave -7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor -fill -grestore -newpath -4.715977e+01 2.392847e+01 moveto -4.972756e+01 2.014315e+01 lineto -4.93319e+01 1.977692e+01 lineto -4.666521e+01 2.347069e+01 lineto -4.715977e+01 2.392847e+01 lineto -closepath -gsave -7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor -fill -grestore -newpath -4.666521e+01 2.347069e+01 moveto -4.93319e+01 1.977692e+01 lineto -4.919892e+01 1.940144e+01 lineto -4.649899e+01 2.300135e+01 lineto -4.666521e+01 2.347069e+01 lineto -closepath -gsave -7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor -fill -grestore -newpath -4.649899e+01 2.300135e+01 moveto -4.919892e+01 1.940144e+01 lineto -4.93319e+01 1.902596e+01 lineto -4.666521e+01 2.253201e+01 lineto -4.649899e+01 2.300135e+01 lineto -closepath -gsave -7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor -fill -grestore -newpath -7.600148e+01 2.603806e+01 moveto -7.333479e+01 2.253201e+01 lineto -7.350101e+01 2.300135e+01 lineto -7.620094e+01 2.660126e+01 lineto -7.600148e+01 2.603806e+01 lineto -closepath -gsave -5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor -fill -grestore -newpath -7.620094e+01 2.660126e+01 moveto -7.350101e+01 2.300135e+01 lineto -7.333479e+01 2.347069e+01 lineto -7.600148e+01 2.716446e+01 lineto -7.620094e+01 2.660126e+01 lineto -closepath -gsave -5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor -fill -grestore -newpath -7.600148e+01 2.716446e+01 moveto -7.333479e+01 2.347069e+01 lineto -7.284023e+01 2.392847e+01 lineto -7.540801e+01 2.771379e+01 lineto -7.600148e+01 2.716446e+01 lineto -closepath -gsave -5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor -fill -grestore -newpath -7.540801e+01 2.771379e+01 moveto -7.284023e+01 2.392847e+01 lineto -7.202949e+01 2.436342e+01 lineto -7.443515e+01 2.823572e+01 lineto -7.540801e+01 2.771379e+01 lineto -closepath -gsave -5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor -fill -grestore -newpath -7.443515e+01 2.823572e+01 moveto -7.202949e+01 2.436342e+01 lineto -7.092255e+01 2.476484e+01 lineto -7.310684e+01 2.871741e+01 lineto -7.443515e+01 2.823572e+01 lineto -closepath -gsave -5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor -fill -grestore -newpath -7.310684e+01 2.871741e+01 moveto -7.092255e+01 2.476484e+01 lineto -6.954666e+01 2.512283e+01 lineto -7.14558e+01 2.914699e+01 lineto -7.310684e+01 2.871741e+01 lineto -closepath -gsave -6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor -fill -grestore -newpath -7.14558e+01 2.914699e+01 moveto -6.954666e+01 2.512283e+01 lineto -6.79357e+01 2.542858e+01 lineto -6.952268e+01 2.951389e+01 lineto -7.14558e+01 2.914699e+01 lineto -closepath -gsave -6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor -fill -grestore -newpath -6.952268e+01 2.951389e+01 moveto -6.79357e+01 2.542858e+01 lineto -6.612933e+01 2.567457e+01 lineto -6.735508e+01 2.980907e+01 lineto -6.952268e+01 2.951389e+01 lineto -closepath -gsave -6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor -fill -grestore -newpath -6.735508e+01 2.980907e+01 moveto -6.612933e+01 2.567457e+01 lineto -6.417204e+01 2.585473e+01 lineto -6.500637e+01 3.002526e+01 lineto -6.735508e+01 2.980907e+01 lineto -closepath -gsave -6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor -fill -grestore -newpath -6.500637e+01 3.002526e+01 moveto -6.417204e+01 2.585473e+01 lineto -6.211202e+01 2.596464e+01 lineto -6.253439e+01 3.015715e+01 lineto -6.500637e+01 3.002526e+01 lineto -closepath -gsave -7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor -fill -grestore -newpath -6.253439e+01 3.015715e+01 moveto -6.211202e+01 2.596464e+01 lineto -6.0e+01 2.600157e+01 lineto -6.0e+01 3.020147e+01 lineto -6.253439e+01 3.015715e+01 lineto -closepath -gsave -7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 3.020147e+01 moveto -6.0e+01 2.600157e+01 lineto -5.788798e+01 2.596464e+01 lineto -5.746561e+01 3.015715e+01 lineto -6.0e+01 3.020147e+01 lineto -closepath -gsave -7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor -fill -grestore -newpath -5.746561e+01 3.015715e+01 moveto -5.788798e+01 2.596464e+01 lineto -5.582796e+01 2.585473e+01 lineto -5.499363e+01 3.002526e+01 lineto -5.746561e+01 3.015715e+01 lineto -closepath -gsave -7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor -fill -grestore -newpath -5.499363e+01 3.002526e+01 moveto -5.582796e+01 2.585473e+01 lineto -5.387067e+01 2.567457e+01 lineto -5.264492e+01 2.980907e+01 lineto -5.499363e+01 3.002526e+01 lineto -closepath -gsave -7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor -fill -grestore -newpath -5.264492e+01 2.980907e+01 moveto -5.387067e+01 2.567457e+01 lineto -5.20643e+01 2.542858e+01 lineto -5.047732e+01 2.951389e+01 lineto -5.264492e+01 2.980907e+01 lineto -closepath -gsave -7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor -fill -grestore -newpath -5.047732e+01 2.951389e+01 moveto -5.20643e+01 2.542858e+01 lineto -5.045334e+01 2.512283e+01 lineto -4.85442e+01 2.914699e+01 lineto -5.047732e+01 2.951389e+01 lineto -closepath -gsave -7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor -fill -grestore -newpath -4.85442e+01 2.914699e+01 moveto -5.045334e+01 2.512283e+01 lineto -4.907745e+01 2.476484e+01 lineto -4.689316e+01 2.871741e+01 lineto -4.85442e+01 2.914699e+01 lineto -closepath -gsave -7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor -fill -grestore -newpath -4.689316e+01 2.871741e+01 moveto -4.907745e+01 2.476484e+01 lineto -4.797051e+01 2.436342e+01 lineto -4.556485e+01 2.823572e+01 lineto -4.689316e+01 2.871741e+01 lineto -closepath -gsave -7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor -fill -grestore -newpath -4.556485e+01 2.823572e+01 moveto -4.797051e+01 2.436342e+01 lineto -4.715977e+01 2.392847e+01 lineto -4.459199e+01 2.771379e+01 lineto -4.556485e+01 2.823572e+01 lineto -closepath -gsave -7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor -fill -grestore -newpath -4.459199e+01 2.771379e+01 moveto -4.715977e+01 2.392847e+01 lineto -4.666521e+01 2.347069e+01 lineto -4.399852e+01 2.716446e+01 lineto -4.459199e+01 2.771379e+01 lineto -closepath -gsave -7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor -fill -grestore -newpath -4.399852e+01 2.716446e+01 moveto -4.666521e+01 2.347069e+01 lineto -4.649899e+01 2.300135e+01 lineto -4.379906e+01 2.660126e+01 lineto -4.399852e+01 2.716446e+01 lineto -closepath -gsave -7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor -fill -grestore -newpath -4.379906e+01 2.660126e+01 moveto -4.649899e+01 2.300135e+01 lineto -4.666521e+01 2.253201e+01 lineto -4.399852e+01 2.603806e+01 lineto -4.379906e+01 2.660126e+01 lineto -closepath -gsave -7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor -fill -grestore -newpath -7.866818e+01 2.954411e+01 moveto -7.600148e+01 2.603806e+01 lineto -7.620094e+01 2.660126e+01 lineto -7.890088e+01 3.020117e+01 lineto -7.866818e+01 2.954411e+01 lineto -closepath -gsave -5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor -fill -grestore -newpath -7.890088e+01 3.020117e+01 moveto -7.620094e+01 2.660126e+01 lineto -7.600148e+01 2.716446e+01 lineto -7.866818e+01 3.085823e+01 lineto -7.890088e+01 3.020117e+01 lineto -closepath -gsave -5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor -fill -grestore -newpath -7.866818e+01 3.085823e+01 moveto -7.600148e+01 2.716446e+01 lineto -7.540801e+01 2.771379e+01 lineto -7.79758e+01 3.14991e+01 lineto -7.866818e+01 3.085823e+01 lineto -closepath -gsave -5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor -fill -grestore -newpath -7.79758e+01 3.14991e+01 moveto -7.540801e+01 2.771379e+01 lineto -7.443515e+01 2.823572e+01 lineto -7.684081e+01 3.210802e+01 lineto -7.79758e+01 3.14991e+01 lineto -closepath -gsave -5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor -fill -grestore -newpath -7.684081e+01 3.210802e+01 moveto -7.443515e+01 2.823572e+01 lineto -7.310684e+01 2.871741e+01 lineto -7.529113e+01 3.266998e+01 lineto -7.684081e+01 3.210802e+01 lineto -closepath -gsave -5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor -fill -grestore -newpath -7.529113e+01 3.266998e+01 moveto -7.310684e+01 2.871741e+01 lineto -7.14558e+01 2.914699e+01 lineto -7.336494e+01 3.317116e+01 lineto -7.529113e+01 3.266998e+01 lineto -closepath -gsave -6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor -fill -grestore -newpath -7.336494e+01 3.317116e+01 moveto -7.14558e+01 2.914699e+01 lineto -6.952268e+01 2.951389e+01 lineto -7.110966e+01 3.35992e+01 lineto -7.336494e+01 3.317116e+01 lineto -closepath -gsave -6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor -fill -grestore -newpath -7.110966e+01 3.35992e+01 moveto -6.952268e+01 2.951389e+01 lineto -6.735508e+01 2.980907e+01 lineto -6.858082e+01 3.394357e+01 lineto -7.110966e+01 3.35992e+01 lineto -closepath -gsave -6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor -fill -grestore -newpath -6.858082e+01 3.394357e+01 moveto -6.735508e+01 2.980907e+01 lineto -6.500637e+01 3.002526e+01 lineto -6.584069e+01 3.419579e+01 lineto -6.858082e+01 3.394357e+01 lineto -closepath -gsave -6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor -fill -grestore -newpath -6.584069e+01 3.419579e+01 moveto -6.500637e+01 3.002526e+01 lineto -6.253439e+01 3.015715e+01 lineto -6.295675e+01 3.434965e+01 lineto -6.584069e+01 3.419579e+01 lineto -closepath -gsave -7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor -fill -grestore -newpath -6.295675e+01 3.434965e+01 moveto -6.253439e+01 3.015715e+01 lineto -6.0e+01 3.020147e+01 lineto -6.0e+01 3.440136e+01 lineto -6.295675e+01 3.434965e+01 lineto -closepath -gsave -7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 3.440136e+01 moveto -6.0e+01 3.020147e+01 lineto -5.746561e+01 3.015715e+01 lineto -5.704325e+01 3.434965e+01 lineto -6.0e+01 3.440136e+01 lineto -closepath -gsave -7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor -fill -grestore -newpath -5.704325e+01 3.434965e+01 moveto -5.746561e+01 3.015715e+01 lineto -5.499363e+01 3.002526e+01 lineto -5.415931e+01 3.419579e+01 lineto -5.704325e+01 3.434965e+01 lineto -closepath -gsave -7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor -fill -grestore -newpath -5.415931e+01 3.419579e+01 moveto -5.499363e+01 3.002526e+01 lineto -5.264492e+01 2.980907e+01 lineto -5.141918e+01 3.394357e+01 lineto -5.415931e+01 3.419579e+01 lineto -closepath -gsave -7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor -fill -grestore -newpath -5.141918e+01 3.394357e+01 moveto -5.264492e+01 2.980907e+01 lineto -5.047732e+01 2.951389e+01 lineto -4.889034e+01 3.35992e+01 lineto -5.141918e+01 3.394357e+01 lineto -closepath -gsave -7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor -fill -grestore -newpath -4.889034e+01 3.35992e+01 moveto -5.047732e+01 2.951389e+01 lineto -4.85442e+01 2.914699e+01 lineto -4.663506e+01 3.317116e+01 lineto -4.889034e+01 3.35992e+01 lineto -closepath -gsave -7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor -fill -grestore -newpath -4.663506e+01 3.317116e+01 moveto -4.85442e+01 2.914699e+01 lineto -4.689316e+01 2.871741e+01 lineto -4.470887e+01 3.266998e+01 lineto -4.663506e+01 3.317116e+01 lineto -closepath -gsave -7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor -fill -grestore -newpath -4.470887e+01 3.266998e+01 moveto -4.689316e+01 2.871741e+01 lineto -4.556485e+01 2.823572e+01 lineto -4.315919e+01 3.210802e+01 lineto -4.470887e+01 3.266998e+01 lineto -closepath -gsave -7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor -fill -grestore -newpath -4.315919e+01 3.210802e+01 moveto -4.556485e+01 2.823572e+01 lineto -4.459199e+01 2.771379e+01 lineto -4.20242e+01 3.14991e+01 lineto -4.315919e+01 3.210802e+01 lineto -closepath -gsave -7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor -fill -grestore -newpath -4.20242e+01 3.14991e+01 moveto -4.459199e+01 2.771379e+01 lineto -4.399852e+01 2.716446e+01 lineto -4.133182e+01 3.085823e+01 lineto -4.20242e+01 3.14991e+01 lineto -closepath -gsave -7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor -fill -grestore -newpath -4.133182e+01 3.085823e+01 moveto -4.399852e+01 2.716446e+01 lineto -4.379906e+01 2.660126e+01 lineto -4.109912e+01 3.020117e+01 lineto -4.133182e+01 3.085823e+01 lineto -closepath -gsave -7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor -fill -grestore -newpath -4.109912e+01 3.020117e+01 moveto -4.379906e+01 2.660126e+01 lineto -4.399852e+01 2.603806e+01 lineto -4.133182e+01 2.954411e+01 lineto -4.109912e+01 3.020117e+01 lineto -closepath -gsave -7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor -fill -grestore -newpath -8.133487e+01 3.305017e+01 moveto -7.866818e+01 2.954411e+01 lineto -7.890088e+01 3.020117e+01 lineto -8.160081e+01 3.380108e+01 lineto -8.133487e+01 3.305017e+01 lineto -closepath -gsave -5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor -fill -grestore -newpath -8.160081e+01 3.380108e+01 moveto -7.890088e+01 3.020117e+01 lineto -7.866818e+01 3.085823e+01 lineto -8.133487e+01 3.455199e+01 lineto -8.160081e+01 3.380108e+01 lineto -closepath -gsave -5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor -fill -grestore -newpath -8.133487e+01 3.455199e+01 moveto -7.866818e+01 3.085823e+01 lineto -7.79758e+01 3.14991e+01 lineto -8.054359e+01 3.528442e+01 lineto -8.133487e+01 3.455199e+01 lineto -closepath -gsave -5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor -fill -grestore -newpath -8.054359e+01 3.528442e+01 moveto -7.79758e+01 3.14991e+01 lineto -7.684081e+01 3.210802e+01 lineto -7.924646e+01 3.598032e+01 lineto -8.054359e+01 3.528442e+01 lineto -closepath -gsave -5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor -fill -grestore -newpath -7.924646e+01 3.598032e+01 moveto -7.684081e+01 3.210802e+01 lineto -7.529113e+01 3.266998e+01 lineto -7.747542e+01 3.662256e+01 lineto -7.924646e+01 3.598032e+01 lineto -closepath -gsave -5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor -fill -grestore -newpath -7.747542e+01 3.662256e+01 moveto -7.529113e+01 3.266998e+01 lineto -7.336494e+01 3.317116e+01 lineto -7.527408e+01 3.719532e+01 lineto -7.747542e+01 3.662256e+01 lineto -closepath -gsave -6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor -fill -grestore -newpath -7.527408e+01 3.719532e+01 moveto -7.336494e+01 3.317116e+01 lineto -7.110966e+01 3.35992e+01 lineto -7.269664e+01 3.768451e+01 lineto -7.527408e+01 3.719532e+01 lineto -closepath -gsave -6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor -fill -grestore -newpath -7.269664e+01 3.768451e+01 moveto -7.110966e+01 3.35992e+01 lineto -6.858082e+01 3.394357e+01 lineto -6.980656e+01 3.807807e+01 lineto -7.269664e+01 3.768451e+01 lineto -closepath -gsave -6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor -fill -grestore -newpath -6.980656e+01 3.807807e+01 moveto -6.858082e+01 3.394357e+01 lineto -6.584069e+01 3.419579e+01 lineto -6.667502e+01 3.836632e+01 lineto -6.980656e+01 3.807807e+01 lineto -closepath -gsave -6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor -fill -grestore -newpath -6.667502e+01 3.836632e+01 moveto -6.584069e+01 3.419579e+01 lineto -6.295675e+01 3.434965e+01 lineto -6.337911e+01 3.854216e+01 lineto -6.667502e+01 3.836632e+01 lineto -closepath -gsave -7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor -fill -grestore -newpath -6.337911e+01 3.854216e+01 moveto -6.295675e+01 3.434965e+01 lineto -6.0e+01 3.440136e+01 lineto -6.0e+01 3.860126e+01 lineto -6.337911e+01 3.854216e+01 lineto -closepath -gsave -7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 3.860126e+01 moveto -6.0e+01 3.440136e+01 lineto -5.704325e+01 3.434965e+01 lineto -5.662089e+01 3.854216e+01 lineto -6.0e+01 3.860126e+01 lineto -closepath -gsave -7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor -fill -grestore -newpath -5.662089e+01 3.854216e+01 moveto -5.704325e+01 3.434965e+01 lineto -5.415931e+01 3.419579e+01 lineto -5.332498e+01 3.836632e+01 lineto -5.662089e+01 3.854216e+01 lineto -closepath -gsave -7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor -fill -grestore -newpath -5.332498e+01 3.836632e+01 moveto -5.415931e+01 3.419579e+01 lineto -5.141918e+01 3.394357e+01 lineto -5.019344e+01 3.807807e+01 lineto -5.332498e+01 3.836632e+01 lineto -closepath -gsave -7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor -fill -grestore -newpath -5.019344e+01 3.807807e+01 moveto -5.141918e+01 3.394357e+01 lineto -4.889034e+01 3.35992e+01 lineto -4.730336e+01 3.768451e+01 lineto -5.019344e+01 3.807807e+01 lineto -closepath -gsave -7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor -fill -grestore -newpath -4.730336e+01 3.768451e+01 moveto -4.889034e+01 3.35992e+01 lineto -4.663506e+01 3.317116e+01 lineto -4.472592e+01 3.719532e+01 lineto -4.730336e+01 3.768451e+01 lineto -closepath -gsave -7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor -fill -grestore -newpath -4.472592e+01 3.719532e+01 moveto -4.663506e+01 3.317116e+01 lineto -4.470887e+01 3.266998e+01 lineto -4.252458e+01 3.662256e+01 lineto -4.472592e+01 3.719532e+01 lineto -closepath -gsave -7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor -fill -grestore -newpath -4.252458e+01 3.662256e+01 moveto -4.470887e+01 3.266998e+01 lineto -4.315919e+01 3.210802e+01 lineto -4.075354e+01 3.598032e+01 lineto -4.252458e+01 3.662256e+01 lineto -closepath -gsave -7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor -fill -grestore -newpath -4.075354e+01 3.598032e+01 moveto -4.315919e+01 3.210802e+01 lineto -4.20242e+01 3.14991e+01 lineto -3.945641e+01 3.528442e+01 lineto -4.075354e+01 3.598032e+01 lineto -closepath -gsave -7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor -fill -grestore -newpath -3.945641e+01 3.528442e+01 moveto -4.20242e+01 3.14991e+01 lineto -4.133182e+01 3.085823e+01 lineto -3.866513e+01 3.455199e+01 lineto -3.945641e+01 3.528442e+01 lineto -closepath -gsave -7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor -fill -grestore -newpath -3.866513e+01 3.455199e+01 moveto -4.133182e+01 3.085823e+01 lineto -4.109912e+01 3.020117e+01 lineto -3.839919e+01 3.380108e+01 lineto -3.866513e+01 3.455199e+01 lineto -closepath -gsave -7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor -fill -grestore -newpath -3.839919e+01 3.380108e+01 moveto -4.109912e+01 3.020117e+01 lineto -4.133182e+01 2.954411e+01 lineto -3.866513e+01 3.305017e+01 lineto -3.839919e+01 3.380108e+01 lineto -closepath -gsave -7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor -fill -grestore -newpath -8.400156e+01 3.655622e+01 moveto -8.133487e+01 3.305017e+01 lineto -8.160081e+01 3.380108e+01 lineto -8.430074e+01 3.740099e+01 lineto -8.400156e+01 3.655622e+01 lineto -closepath -gsave -5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor -fill -grestore -newpath -8.430074e+01 3.740099e+01 moveto -8.160081e+01 3.380108e+01 lineto -8.133487e+01 3.455199e+01 lineto -8.400156e+01 3.824576e+01 lineto -8.430074e+01 3.740099e+01 lineto -closepath -gsave -5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor -fill -grestore -newpath -8.400156e+01 3.824576e+01 moveto -8.133487e+01 3.455199e+01 lineto -8.054359e+01 3.528442e+01 lineto -8.311138e+01 3.906973e+01 lineto -8.400156e+01 3.824576e+01 lineto -closepath -gsave -5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor -fill -grestore -newpath -8.311138e+01 3.906973e+01 moveto -8.054359e+01 3.528442e+01 lineto -7.924646e+01 3.598032e+01 lineto -8.165212e+01 3.985261e+01 lineto -8.311138e+01 3.906973e+01 lineto -closepath -gsave -5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor -fill -grestore -newpath -8.165212e+01 3.985261e+01 moveto -7.924646e+01 3.598032e+01 lineto -7.747542e+01 3.662256e+01 lineto -7.965971e+01 4.057513e+01 lineto -8.165212e+01 3.985261e+01 lineto -closepath -gsave -5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor -fill -grestore -newpath -7.965971e+01 4.057513e+01 moveto -7.747542e+01 3.662256e+01 lineto -7.527408e+01 3.719532e+01 lineto -7.718322e+01 4.121948e+01 lineto -7.965971e+01 4.057513e+01 lineto -closepath -gsave -6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor -fill -grestore -newpath -7.718322e+01 4.121948e+01 moveto -7.527408e+01 3.719532e+01 lineto -7.269664e+01 3.768451e+01 lineto -7.428362e+01 4.176982e+01 lineto -7.718322e+01 4.121948e+01 lineto -closepath -gsave -6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor -fill -grestore -newpath -7.428362e+01 4.176982e+01 moveto -7.269664e+01 3.768451e+01 lineto -6.980656e+01 3.807807e+01 lineto -7.103231e+01 4.221257e+01 lineto -7.428362e+01 4.176982e+01 lineto -closepath -gsave -6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor -fill -grestore -newpath -7.103231e+01 4.221257e+01 moveto -6.980656e+01 3.807807e+01 lineto -6.667502e+01 3.836632e+01 lineto -6.750934e+01 4.253685e+01 lineto -7.103231e+01 4.221257e+01 lineto -closepath -gsave -6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor -fill -grestore -newpath -6.750934e+01 4.253685e+01 moveto -6.667502e+01 3.836632e+01 lineto -6.337911e+01 3.854216e+01 lineto -6.380147e+01 4.273467e+01 lineto -6.750934e+01 4.253685e+01 lineto -closepath -gsave -7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor -fill -grestore -newpath -6.380147e+01 4.273467e+01 moveto -6.337911e+01 3.854216e+01 lineto -6.0e+01 3.860126e+01 lineto -6.0e+01 4.280115e+01 lineto -6.380147e+01 4.273467e+01 lineto -closepath -gsave -7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 4.280115e+01 moveto -6.0e+01 3.860126e+01 lineto -5.662089e+01 3.854216e+01 lineto -5.619853e+01 4.273467e+01 lineto -6.0e+01 4.280115e+01 lineto -closepath -gsave -7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor -fill -grestore -newpath -5.619853e+01 4.273467e+01 moveto -5.662089e+01 3.854216e+01 lineto -5.332498e+01 3.836632e+01 lineto -5.249066e+01 4.253685e+01 lineto -5.619853e+01 4.273467e+01 lineto -closepath -gsave -7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor -fill -grestore -newpath -5.249066e+01 4.253685e+01 moveto -5.332498e+01 3.836632e+01 lineto -5.019344e+01 3.807807e+01 lineto -4.896769e+01 4.221257e+01 lineto -5.249066e+01 4.253685e+01 lineto -closepath -gsave -7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor -fill -grestore -newpath -4.896769e+01 4.221257e+01 moveto -5.019344e+01 3.807807e+01 lineto -4.730336e+01 3.768451e+01 lineto -4.571638e+01 4.176982e+01 lineto -4.896769e+01 4.221257e+01 lineto -closepath -gsave -7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor -fill -grestore -newpath -4.571638e+01 4.176982e+01 moveto -4.730336e+01 3.768451e+01 lineto -4.472592e+01 3.719532e+01 lineto -4.281678e+01 4.121948e+01 lineto -4.571638e+01 4.176982e+01 lineto -closepath -gsave -7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor -fill -grestore -newpath -4.281678e+01 4.121948e+01 moveto -4.472592e+01 3.719532e+01 lineto -4.252458e+01 3.662256e+01 lineto -4.034029e+01 4.057513e+01 lineto -4.281678e+01 4.121948e+01 lineto -closepath -gsave -7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor -fill -grestore -newpath -4.034029e+01 4.057513e+01 moveto -4.252458e+01 3.662256e+01 lineto -4.075354e+01 3.598032e+01 lineto -3.834788e+01 3.985261e+01 lineto -4.034029e+01 4.057513e+01 lineto -closepath -gsave -7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor -fill -grestore -newpath -3.834788e+01 3.985261e+01 moveto -4.075354e+01 3.598032e+01 lineto -3.945641e+01 3.528442e+01 lineto -3.688862e+01 3.906973e+01 lineto -3.834788e+01 3.985261e+01 lineto -closepath -gsave -7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor -fill -grestore -newpath -3.688862e+01 3.906973e+01 moveto -3.945641e+01 3.528442e+01 lineto -3.866513e+01 3.455199e+01 lineto -3.599844e+01 3.824576e+01 lineto -3.688862e+01 3.906973e+01 lineto -closepath -gsave -7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor -fill -grestore -newpath -3.599844e+01 3.824576e+01 moveto -3.866513e+01 3.455199e+01 lineto -3.839919e+01 3.380108e+01 lineto -3.569926e+01 3.740099e+01 lineto -3.599844e+01 3.824576e+01 lineto -closepath -gsave -7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor -fill -grestore -newpath -3.569926e+01 3.740099e+01 moveto -3.839919e+01 3.380108e+01 lineto -3.866513e+01 3.305017e+01 lineto -3.599844e+01 3.655622e+01 lineto -3.569926e+01 3.740099e+01 lineto -closepath -gsave -7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor -fill -grestore -newpath -8.666825e+01 4.006227e+01 moveto -8.400156e+01 3.655622e+01 lineto -8.430074e+01 3.740099e+01 lineto -8.700067e+01 4.10009e+01 lineto -8.666825e+01 4.006227e+01 lineto -closepath -gsave -5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor -fill -grestore -newpath -8.700067e+01 4.10009e+01 moveto -8.430074e+01 3.740099e+01 lineto -8.400156e+01 3.824576e+01 lineto -8.666825e+01 4.193953e+01 lineto -8.700067e+01 4.10009e+01 lineto -closepath -gsave -5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor -fill -grestore -newpath -8.666825e+01 4.193953e+01 moveto -8.400156e+01 3.824576e+01 lineto -8.311138e+01 3.906973e+01 lineto -8.567917e+01 4.285505e+01 lineto -8.666825e+01 4.193953e+01 lineto -closepath -gsave -5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor -fill -grestore -newpath -8.567917e+01 4.285505e+01 moveto -8.311138e+01 3.906973e+01 lineto -8.165212e+01 3.985261e+01 lineto -8.405778e+01 4.372491e+01 lineto -8.567917e+01 4.285505e+01 lineto -closepath -gsave -5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor -fill -grestore -newpath -8.405778e+01 4.372491e+01 moveto -8.165212e+01 3.985261e+01 lineto -7.965971e+01 4.057513e+01 lineto -8.1844e+01 4.45277e+01 lineto -8.405778e+01 4.372491e+01 lineto -closepath -gsave -5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor -fill -grestore -newpath -8.1844e+01 4.45277e+01 moveto -7.965971e+01 4.057513e+01 lineto -7.718322e+01 4.121948e+01 lineto -7.909236e+01 4.524365e+01 lineto -8.1844e+01 4.45277e+01 lineto -closepath -gsave -6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor -fill -grestore -newpath -7.909236e+01 4.524365e+01 moveto -7.718322e+01 4.121948e+01 lineto -7.428362e+01 4.176982e+01 lineto -7.58706e+01 4.585512e+01 lineto -7.909236e+01 4.524365e+01 lineto -closepath -gsave -6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor -fill -grestore -newpath -7.58706e+01 4.585512e+01 moveto -7.428362e+01 4.176982e+01 lineto -7.103231e+01 4.221257e+01 lineto -7.225805e+01 4.634707e+01 lineto -7.58706e+01 4.585512e+01 lineto -closepath -gsave -6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor -fill -grestore -newpath -7.225805e+01 4.634707e+01 moveto -7.103231e+01 4.221257e+01 lineto -6.750934e+01 4.253685e+01 lineto -6.834367e+01 4.670738e+01 lineto -7.225805e+01 4.634707e+01 lineto -closepath -gsave -6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor -fill -grestore -newpath -6.834367e+01 4.670738e+01 moveto -6.750934e+01 4.253685e+01 lineto -6.380147e+01 4.273467e+01 lineto -6.422384e+01 4.692718e+01 lineto -6.834367e+01 4.670738e+01 lineto -closepath -gsave -7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor -fill -grestore -newpath -6.422384e+01 4.692718e+01 moveto -6.380147e+01 4.273467e+01 lineto -6.0e+01 4.280115e+01 lineto -6.0e+01 4.700105e+01 lineto -6.422384e+01 4.692718e+01 lineto -closepath -gsave -7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 4.700105e+01 moveto -6.0e+01 4.280115e+01 lineto -5.619853e+01 4.273467e+01 lineto -5.577616e+01 4.692718e+01 lineto -6.0e+01 4.700105e+01 lineto -closepath -gsave -7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor -fill -grestore -newpath -5.577616e+01 4.692718e+01 moveto -5.619853e+01 4.273467e+01 lineto -5.249066e+01 4.253685e+01 lineto -5.165633e+01 4.670738e+01 lineto -5.577616e+01 4.692718e+01 lineto -closepath -gsave -7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor -fill -grestore -newpath -5.165633e+01 4.670738e+01 moveto -5.249066e+01 4.253685e+01 lineto -4.896769e+01 4.221257e+01 lineto -4.774195e+01 4.634707e+01 lineto -5.165633e+01 4.670738e+01 lineto -closepath -gsave -7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor -fill -grestore -newpath -4.774195e+01 4.634707e+01 moveto -4.896769e+01 4.221257e+01 lineto -4.571638e+01 4.176982e+01 lineto -4.41294e+01 4.585512e+01 lineto -4.774195e+01 4.634707e+01 lineto -closepath -gsave -7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor -fill -grestore -newpath -4.41294e+01 4.585512e+01 moveto -4.571638e+01 4.176982e+01 lineto -4.281678e+01 4.121948e+01 lineto -4.090764e+01 4.524365e+01 lineto -4.41294e+01 4.585512e+01 lineto -closepath -gsave -7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor -fill -grestore -newpath -4.090764e+01 4.524365e+01 moveto -4.281678e+01 4.121948e+01 lineto -4.034029e+01 4.057513e+01 lineto -3.8156e+01 4.45277e+01 lineto -4.090764e+01 4.524365e+01 lineto -closepath -gsave -7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor -fill -grestore -newpath -3.8156e+01 4.45277e+01 moveto -4.034029e+01 4.057513e+01 lineto -3.834788e+01 3.985261e+01 lineto -3.594222e+01 4.372491e+01 lineto -3.8156e+01 4.45277e+01 lineto -closepath -gsave -7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor -fill -grestore -newpath -3.594222e+01 4.372491e+01 moveto -3.834788e+01 3.985261e+01 lineto -3.688862e+01 3.906973e+01 lineto -3.432083e+01 4.285505e+01 lineto -3.594222e+01 4.372491e+01 lineto -closepath -gsave -7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor -fill -grestore -newpath -3.432083e+01 4.285505e+01 moveto -3.688862e+01 3.906973e+01 lineto -3.599844e+01 3.824576e+01 lineto -3.333175e+01 4.193953e+01 lineto -3.432083e+01 4.285505e+01 lineto -closepath -gsave -7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor -fill -grestore -newpath -3.333175e+01 4.193953e+01 moveto -3.599844e+01 3.824576e+01 lineto -3.569926e+01 3.740099e+01 lineto -3.299933e+01 4.10009e+01 lineto -3.333175e+01 4.193953e+01 lineto -closepath -gsave -7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor -fill -grestore -newpath -3.299933e+01 4.10009e+01 moveto -3.569926e+01 3.740099e+01 lineto -3.599844e+01 3.655622e+01 lineto -3.333175e+01 4.006227e+01 lineto -3.299933e+01 4.10009e+01 lineto -closepath -gsave -7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor -fill -grestore -newpath -8.933494e+01 4.356832e+01 moveto -8.666825e+01 4.006227e+01 lineto -8.700067e+01 4.10009e+01 lineto -8.970061e+01 4.460081e+01 lineto -8.933494e+01 4.356832e+01 lineto -closepath -gsave -5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor -fill -grestore -newpath -8.970061e+01 4.460081e+01 moveto -8.700067e+01 4.10009e+01 lineto -8.666825e+01 4.193953e+01 lineto -8.933494e+01 4.56333e+01 lineto -8.970061e+01 4.460081e+01 lineto -closepath -gsave -5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor -fill -grestore -newpath -8.933494e+01 4.56333e+01 moveto -8.666825e+01 4.193953e+01 lineto -8.567917e+01 4.285505e+01 lineto -8.824696e+01 4.664036e+01 lineto -8.933494e+01 4.56333e+01 lineto -closepath -gsave -5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor -fill -grestore -newpath -8.824696e+01 4.664036e+01 moveto -8.567917e+01 4.285505e+01 lineto -8.405778e+01 4.372491e+01 lineto -8.646344e+01 4.759721e+01 lineto -8.824696e+01 4.664036e+01 lineto -closepath -gsave -5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor -fill -grestore -newpath -8.646344e+01 4.759721e+01 moveto -8.405778e+01 4.372491e+01 lineto -8.1844e+01 4.45277e+01 lineto -8.40283e+01 4.848027e+01 lineto -8.646344e+01 4.759721e+01 lineto -closepath -gsave -5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor -fill -grestore -newpath -8.40283e+01 4.848027e+01 moveto -8.1844e+01 4.45277e+01 lineto -7.909236e+01 4.524365e+01 lineto -8.10015e+01 4.926781e+01 lineto -8.40283e+01 4.848027e+01 lineto -closepath -gsave -6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor -fill -grestore -newpath -8.10015e+01 4.926781e+01 moveto -7.909236e+01 4.524365e+01 lineto -7.58706e+01 4.585512e+01 lineto -7.745758e+01 4.994043e+01 lineto -8.10015e+01 4.926781e+01 lineto -closepath -gsave -6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor -fill -grestore -newpath -7.745758e+01 4.994043e+01 moveto -7.58706e+01 4.585512e+01 lineto -7.225805e+01 4.634707e+01 lineto -7.348379e+01 5.048157e+01 lineto -7.745758e+01 4.994043e+01 lineto -closepath -gsave -6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor -fill -grestore -newpath -7.348379e+01 5.048157e+01 moveto -7.225805e+01 4.634707e+01 lineto -6.834367e+01 4.670738e+01 lineto -6.917799e+01 5.087791e+01 lineto -7.348379e+01 5.048157e+01 lineto -closepath -gsave -6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor -fill -grestore -newpath -6.917799e+01 5.087791e+01 moveto -6.834367e+01 4.670738e+01 lineto -6.422384e+01 4.692718e+01 lineto -6.46462e+01 5.111969e+01 lineto -6.917799e+01 5.087791e+01 lineto -closepath -gsave -7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor -fill -grestore -newpath -6.46462e+01 5.111969e+01 moveto -6.422384e+01 4.692718e+01 lineto -6.0e+01 4.700105e+01 lineto -6.0e+01 5.120094e+01 lineto -6.46462e+01 5.111969e+01 lineto -closepath -gsave -7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 5.120094e+01 moveto -6.0e+01 4.700105e+01 lineto -5.577616e+01 4.692718e+01 lineto -5.53538e+01 5.111969e+01 lineto -6.0e+01 5.120094e+01 lineto -closepath -gsave -7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor -fill -grestore -newpath -5.53538e+01 5.111969e+01 moveto -5.577616e+01 4.692718e+01 lineto -5.165633e+01 4.670738e+01 lineto -5.082201e+01 5.087791e+01 lineto -5.53538e+01 5.111969e+01 lineto -closepath -gsave -7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor -fill -grestore -newpath -5.082201e+01 5.087791e+01 moveto -5.165633e+01 4.670738e+01 lineto -4.774195e+01 4.634707e+01 lineto -4.651621e+01 5.048157e+01 lineto -5.082201e+01 5.087791e+01 lineto -closepath -gsave -7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor -fill -grestore -newpath -4.651621e+01 5.048157e+01 moveto -4.774195e+01 4.634707e+01 lineto -4.41294e+01 4.585512e+01 lineto -4.254242e+01 4.994043e+01 lineto -4.651621e+01 5.048157e+01 lineto -closepath -gsave -7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor -fill -grestore -newpath -4.254242e+01 4.994043e+01 moveto -4.41294e+01 4.585512e+01 lineto -4.090764e+01 4.524365e+01 lineto -3.89985e+01 4.926781e+01 lineto -4.254242e+01 4.994043e+01 lineto -closepath -gsave -7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor -fill -grestore -newpath -3.89985e+01 4.926781e+01 moveto -4.090764e+01 4.524365e+01 lineto -3.8156e+01 4.45277e+01 lineto -3.59717e+01 4.848027e+01 lineto -3.89985e+01 4.926781e+01 lineto -closepath -gsave -7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor -fill -grestore -newpath -3.59717e+01 4.848027e+01 moveto -3.8156e+01 4.45277e+01 lineto -3.594222e+01 4.372491e+01 lineto -3.353656e+01 4.759721e+01 lineto -3.59717e+01 4.848027e+01 lineto -closepath -gsave -7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor -fill -grestore -newpath -3.353656e+01 4.759721e+01 moveto -3.594222e+01 4.372491e+01 lineto -3.432083e+01 4.285505e+01 lineto -3.175304e+01 4.664036e+01 lineto -3.353656e+01 4.759721e+01 lineto -closepath -gsave -7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor -fill -grestore -newpath -3.175304e+01 4.664036e+01 moveto -3.432083e+01 4.285505e+01 lineto -3.333175e+01 4.193953e+01 lineto -3.066506e+01 4.56333e+01 lineto -3.175304e+01 4.664036e+01 lineto -closepath -gsave -7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor -fill -grestore -newpath -3.066506e+01 4.56333e+01 moveto -3.333175e+01 4.193953e+01 lineto -3.299933e+01 4.10009e+01 lineto -3.029939e+01 4.460081e+01 lineto -3.066506e+01 4.56333e+01 lineto -closepath -gsave -7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor -fill -grestore -newpath -3.029939e+01 4.460081e+01 moveto -3.299933e+01 4.10009e+01 lineto -3.333175e+01 4.006227e+01 lineto -3.066506e+01 4.356832e+01 lineto -3.029939e+01 4.460081e+01 lineto -closepath -gsave -7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor -fill -grestore -newpath -9.200164e+01 4.707437e+01 moveto -8.933494e+01 4.356832e+01 lineto -8.970061e+01 4.460081e+01 lineto -9.240054e+01 4.820072e+01 lineto -9.200164e+01 4.707437e+01 lineto -closepath -gsave -5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor -fill -grestore -newpath -9.240054e+01 4.820072e+01 moveto -8.970061e+01 4.460081e+01 lineto -8.933494e+01 4.56333e+01 lineto -9.200164e+01 4.932707e+01 lineto -9.240054e+01 4.820072e+01 lineto -closepath -gsave -5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor -fill -grestore -newpath -9.200164e+01 4.932707e+01 moveto -8.933494e+01 4.56333e+01 lineto -8.824696e+01 4.664036e+01 lineto -9.081474e+01 5.042568e+01 lineto -9.200164e+01 4.932707e+01 lineto -closepath -gsave -5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor -fill -grestore -newpath -9.081474e+01 5.042568e+01 moveto -8.824696e+01 4.664036e+01 lineto -8.646344e+01 4.759721e+01 lineto -8.886909e+01 5.146951e+01 lineto -9.081474e+01 5.042568e+01 lineto -closepath -gsave -5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor -fill -grestore -newpath -8.886909e+01 5.146951e+01 moveto -8.646344e+01 4.759721e+01 lineto -8.40283e+01 4.848027e+01 lineto -8.621259e+01 5.243284e+01 lineto -8.886909e+01 5.146951e+01 lineto -closepath -gsave -5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor -fill -grestore -newpath -8.621259e+01 5.243284e+01 moveto -8.40283e+01 4.848027e+01 lineto -8.10015e+01 4.926781e+01 lineto -8.291064e+01 5.329197e+01 lineto -8.621259e+01 5.243284e+01 lineto -closepath -gsave -6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor -fill -grestore -newpath -8.291064e+01 5.329197e+01 moveto -8.10015e+01 4.926781e+01 lineto -7.745758e+01 4.994043e+01 lineto -7.904456e+01 5.402574e+01 lineto -8.291064e+01 5.329197e+01 lineto -closepath -gsave -6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor -fill -grestore -newpath -7.904456e+01 5.402574e+01 moveto -7.745758e+01 4.994043e+01 lineto -7.348379e+01 5.048157e+01 lineto -7.470954e+01 5.461607e+01 lineto -7.904456e+01 5.402574e+01 lineto -closepath -gsave -6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor -fill -grestore -newpath -7.470954e+01 5.461607e+01 moveto -7.348379e+01 5.048157e+01 lineto -6.917799e+01 5.087791e+01 lineto -7.001232e+01 5.504844e+01 lineto -7.470954e+01 5.461607e+01 lineto -closepath -gsave -6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor -fill -grestore -newpath -7.001232e+01 5.504844e+01 moveto -6.917799e+01 5.087791e+01 lineto -6.46462e+01 5.111969e+01 lineto -6.506856e+01 5.531219e+01 lineto -7.001232e+01 5.504844e+01 lineto -closepath -gsave -7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor -fill -grestore -newpath -6.506856e+01 5.531219e+01 moveto -6.46462e+01 5.111969e+01 lineto -6.0e+01 5.120094e+01 lineto -6.0e+01 5.540084e+01 lineto -6.506856e+01 5.531219e+01 lineto -closepath -gsave -7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 5.540084e+01 moveto -6.0e+01 5.120094e+01 lineto -5.53538e+01 5.111969e+01 lineto -5.493144e+01 5.531219e+01 lineto -6.0e+01 5.540084e+01 lineto -closepath -gsave -7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor -fill -grestore -newpath -5.493144e+01 5.531219e+01 moveto -5.53538e+01 5.111969e+01 lineto -5.082201e+01 5.087791e+01 lineto -4.998768e+01 5.504844e+01 lineto -5.493144e+01 5.531219e+01 lineto -closepath -gsave -7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor -fill -grestore -newpath -4.998768e+01 5.504844e+01 moveto -5.082201e+01 5.087791e+01 lineto -4.651621e+01 5.048157e+01 lineto -4.529046e+01 5.461607e+01 lineto -4.998768e+01 5.504844e+01 lineto -closepath -gsave -7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor -fill -grestore -newpath -4.529046e+01 5.461607e+01 moveto -4.651621e+01 5.048157e+01 lineto -4.254242e+01 4.994043e+01 lineto -4.095544e+01 5.402574e+01 lineto -4.529046e+01 5.461607e+01 lineto -closepath -gsave -7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor -fill -grestore -newpath -4.095544e+01 5.402574e+01 moveto -4.254242e+01 4.994043e+01 lineto -3.89985e+01 4.926781e+01 lineto -3.708936e+01 5.329197e+01 lineto -4.095544e+01 5.402574e+01 lineto -closepath -gsave -7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor -fill -grestore -newpath -3.708936e+01 5.329197e+01 moveto -3.89985e+01 4.926781e+01 lineto -3.59717e+01 4.848027e+01 lineto -3.378741e+01 5.243284e+01 lineto -3.708936e+01 5.329197e+01 lineto -closepath -gsave -7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor -fill -grestore -newpath -3.378741e+01 5.243284e+01 moveto -3.59717e+01 4.848027e+01 lineto -3.353656e+01 4.759721e+01 lineto -3.113091e+01 5.146951e+01 lineto -3.378741e+01 5.243284e+01 lineto -closepath -gsave -7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor -fill -grestore -newpath -3.113091e+01 5.146951e+01 moveto -3.353656e+01 4.759721e+01 lineto -3.175304e+01 4.664036e+01 lineto -2.918526e+01 5.042568e+01 lineto -3.113091e+01 5.146951e+01 lineto -closepath -gsave -7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor -fill -grestore -newpath -2.918526e+01 5.042568e+01 moveto -3.175304e+01 4.664036e+01 lineto -3.066506e+01 4.56333e+01 lineto -2.799836e+01 4.932707e+01 lineto -2.918526e+01 5.042568e+01 lineto -closepath -gsave -7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor -fill -grestore -newpath -2.799836e+01 4.932707e+01 moveto -3.066506e+01 4.56333e+01 lineto -3.029939e+01 4.460081e+01 lineto -2.759946e+01 4.820072e+01 lineto -2.799836e+01 4.932707e+01 lineto -closepath -gsave -7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor -fill -grestore -newpath -2.759946e+01 4.820072e+01 moveto -3.029939e+01 4.460081e+01 lineto -3.066506e+01 4.356832e+01 lineto -2.799836e+01 4.707437e+01 lineto -2.759946e+01 4.820072e+01 lineto -closepath -gsave -7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor -fill -grestore -newpath -9.466833e+01 5.058042e+01 moveto -9.200164e+01 4.707437e+01 lineto -9.240054e+01 4.820072e+01 lineto -9.510047e+01 5.180063e+01 lineto -9.466833e+01 5.058042e+01 lineto -closepath -gsave -5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor -fill -grestore -newpath -9.510047e+01 5.180063e+01 moveto -9.240054e+01 4.820072e+01 lineto -9.200164e+01 4.932707e+01 lineto -9.466833e+01 5.302084e+01 lineto -9.510047e+01 5.180063e+01 lineto -closepath -gsave -5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor -fill -grestore -newpath -9.466833e+01 5.302084e+01 moveto -9.200164e+01 4.932707e+01 lineto -9.081474e+01 5.042568e+01 lineto -9.338253e+01 5.4211e+01 lineto -9.466833e+01 5.302084e+01 lineto -closepath -gsave -5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor -fill -grestore -newpath -9.338253e+01 5.4211e+01 moveto -9.081474e+01 5.042568e+01 lineto -8.886909e+01 5.146951e+01 lineto -9.127475e+01 5.53418e+01 lineto -9.338253e+01 5.4211e+01 lineto -closepath -gsave -5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor -fill -grestore -newpath -9.127475e+01 5.53418e+01 moveto -8.886909e+01 5.146951e+01 lineto -8.621259e+01 5.243284e+01 lineto -8.839688e+01 5.638542e+01 lineto -9.127475e+01 5.53418e+01 lineto -closepath -gsave -5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor -fill -grestore -newpath -8.839688e+01 5.638542e+01 moveto -8.621259e+01 5.243284e+01 lineto -8.291064e+01 5.329197e+01 lineto -8.481978e+01 5.731614e+01 lineto -8.839688e+01 5.638542e+01 lineto -closepath -gsave -6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor -fill -grestore -newpath -8.481978e+01 5.731614e+01 moveto -8.291064e+01 5.329197e+01 lineto -7.904456e+01 5.402574e+01 lineto -8.063154e+01 5.811105e+01 lineto -8.481978e+01 5.731614e+01 lineto -closepath -gsave -6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor -fill -grestore -newpath -8.063154e+01 5.811105e+01 moveto -7.904456e+01 5.402574e+01 lineto -7.470954e+01 5.461607e+01 lineto -7.593528e+01 5.875057e+01 lineto -8.063154e+01 5.811105e+01 lineto -closepath -gsave -6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor -fill -grestore -newpath -7.593528e+01 5.875057e+01 moveto -7.470954e+01 5.461607e+01 lineto -7.001232e+01 5.504844e+01 lineto -7.084664e+01 5.921897e+01 lineto -7.593528e+01 5.875057e+01 lineto -closepath -gsave -6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor -fill -grestore -newpath -7.084664e+01 5.921897e+01 moveto -7.001232e+01 5.504844e+01 lineto -6.506856e+01 5.531219e+01 lineto -6.549092e+01 5.95047e+01 lineto -7.084664e+01 5.921897e+01 lineto -closepath -gsave -7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor -fill -grestore -newpath -6.549092e+01 5.95047e+01 moveto -6.506856e+01 5.531219e+01 lineto -6.0e+01 5.540084e+01 lineto -6.0e+01 5.960073e+01 lineto -6.549092e+01 5.95047e+01 lineto -closepath -gsave -7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 5.960073e+01 moveto -6.0e+01 5.540084e+01 lineto -5.493144e+01 5.531219e+01 lineto -5.450908e+01 5.95047e+01 lineto -6.0e+01 5.960073e+01 lineto -closepath -gsave -7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor -fill -grestore -newpath -5.450908e+01 5.95047e+01 moveto -5.493144e+01 5.531219e+01 lineto -4.998768e+01 5.504844e+01 lineto -4.915336e+01 5.921897e+01 lineto -5.450908e+01 5.95047e+01 lineto -closepath -gsave -7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor -fill -grestore -newpath -4.915336e+01 5.921897e+01 moveto -4.998768e+01 5.504844e+01 lineto -4.529046e+01 5.461607e+01 lineto -4.406472e+01 5.875057e+01 lineto -4.915336e+01 5.921897e+01 lineto -closepath -gsave -7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor -fill -grestore -newpath -4.406472e+01 5.875057e+01 moveto -4.529046e+01 5.461607e+01 lineto -4.095544e+01 5.402574e+01 lineto -3.936846e+01 5.811105e+01 lineto -4.406472e+01 5.875057e+01 lineto -closepath -gsave -7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor -fill -grestore -newpath -3.936846e+01 5.811105e+01 moveto -4.095544e+01 5.402574e+01 lineto -3.708936e+01 5.329197e+01 lineto -3.518022e+01 5.731614e+01 lineto -3.936846e+01 5.811105e+01 lineto -closepath -gsave -7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor -fill -grestore -newpath -3.518022e+01 5.731614e+01 moveto -3.708936e+01 5.329197e+01 lineto -3.378741e+01 5.243284e+01 lineto -3.160312e+01 5.638542e+01 lineto -3.518022e+01 5.731614e+01 lineto -closepath -gsave -7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor -fill -grestore -newpath -3.160312e+01 5.638542e+01 moveto -3.378741e+01 5.243284e+01 lineto -3.113091e+01 5.146951e+01 lineto -2.872525e+01 5.53418e+01 lineto -3.160312e+01 5.638542e+01 lineto -closepath -gsave -7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor -fill -grestore -newpath -2.872525e+01 5.53418e+01 moveto -3.113091e+01 5.146951e+01 lineto -2.918526e+01 5.042568e+01 lineto -2.661747e+01 5.4211e+01 lineto -2.872525e+01 5.53418e+01 lineto -closepath -gsave -7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor -fill -grestore -newpath -2.661747e+01 5.4211e+01 moveto -2.918526e+01 5.042568e+01 lineto -2.799836e+01 4.932707e+01 lineto -2.533167e+01 5.302084e+01 lineto -2.661747e+01 5.4211e+01 lineto -closepath -gsave -7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor -fill -grestore -newpath -2.533167e+01 5.302084e+01 moveto -2.799836e+01 4.932707e+01 lineto -2.759946e+01 4.820072e+01 lineto -2.489953e+01 5.180063e+01 lineto -2.533167e+01 5.302084e+01 lineto -closepath -gsave -7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor -fill -grestore -newpath -2.489953e+01 5.180063e+01 moveto -2.759946e+01 4.820072e+01 lineto -2.799836e+01 4.707437e+01 lineto -2.533167e+01 5.058042e+01 lineto -2.489953e+01 5.180063e+01 lineto -closepath -gsave -7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor -fill -grestore -newpath -9.733502e+01 5.408648e+01 moveto -9.466833e+01 5.058042e+01 lineto -9.510047e+01 5.180063e+01 lineto -9.78004e+01 5.540054e+01 lineto -9.733502e+01 5.408648e+01 lineto -closepath -gsave -5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor -fill -grestore -newpath -9.78004e+01 5.540054e+01 moveto -9.510047e+01 5.180063e+01 lineto -9.466833e+01 5.302084e+01 lineto -9.733502e+01 5.67146e+01 lineto -9.78004e+01 5.540054e+01 lineto -closepath -gsave -5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor -fill -grestore -newpath -9.733502e+01 5.67146e+01 moveto -9.466833e+01 5.302084e+01 lineto -9.338253e+01 5.4211e+01 lineto -9.595032e+01 5.799631e+01 lineto -9.733502e+01 5.67146e+01 lineto -closepath -gsave -5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor -fill -grestore -newpath -9.595032e+01 5.799631e+01 moveto -9.338253e+01 5.4211e+01 lineto -9.127475e+01 5.53418e+01 lineto -9.368041e+01 5.92141e+01 lineto -9.595032e+01 5.799631e+01 lineto -closepath -gsave -5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor -fill -grestore -newpath -9.368041e+01 5.92141e+01 moveto -9.127475e+01 5.53418e+01 lineto -8.839688e+01 5.638542e+01 lineto -9.058117e+01 6.033799e+01 lineto -9.368041e+01 5.92141e+01 lineto -closepath -gsave -5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor -fill -grestore -newpath -9.058117e+01 6.033799e+01 moveto -8.839688e+01 5.638542e+01 lineto -8.481978e+01 5.731614e+01 lineto -8.672892e+01 6.13403e+01 lineto -9.058117e+01 6.033799e+01 lineto -closepath -gsave -6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor -fill -grestore -newpath -8.672892e+01 6.13403e+01 moveto -8.481978e+01 5.731614e+01 lineto -8.063154e+01 5.811105e+01 lineto -8.221852e+01 6.219636e+01 lineto -8.672892e+01 6.13403e+01 lineto -closepath -gsave -6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor -fill -grestore -newpath -8.221852e+01 6.219636e+01 moveto -8.063154e+01 5.811105e+01 lineto -7.593528e+01 5.875057e+01 lineto -7.716102e+01 6.288507e+01 lineto -8.221852e+01 6.219636e+01 lineto -closepath -gsave -6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor -fill -grestore -newpath -7.716102e+01 6.288507e+01 moveto -7.593528e+01 5.875057e+01 lineto -7.084664e+01 5.921897e+01 lineto -7.168097e+01 6.33895e+01 lineto -7.716102e+01 6.288507e+01 lineto -closepath -gsave -6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor -fill -grestore -newpath -7.168097e+01 6.33895e+01 moveto -7.084664e+01 5.921897e+01 lineto -6.549092e+01 5.95047e+01 lineto -6.591329e+01 6.369721e+01 lineto -7.168097e+01 6.33895e+01 lineto -closepath -gsave -7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor -fill -grestore -newpath -6.591329e+01 6.369721e+01 moveto -6.549092e+01 5.95047e+01 lineto -6.0e+01 5.960073e+01 lineto -6.0e+01 6.380063e+01 lineto -6.591329e+01 6.369721e+01 lineto -closepath -gsave -7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 6.380063e+01 moveto -6.0e+01 5.960073e+01 lineto -5.450908e+01 5.95047e+01 lineto -5.408671e+01 6.369721e+01 lineto -6.0e+01 6.380063e+01 lineto -closepath -gsave -7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor -fill -grestore -newpath -5.408671e+01 6.369721e+01 moveto -5.450908e+01 5.95047e+01 lineto -4.915336e+01 5.921897e+01 lineto -4.831903e+01 6.33895e+01 lineto -5.408671e+01 6.369721e+01 lineto -closepath -gsave -7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor -fill -grestore -newpath -4.831903e+01 6.33895e+01 moveto -4.915336e+01 5.921897e+01 lineto -4.406472e+01 5.875057e+01 lineto -4.283898e+01 6.288507e+01 lineto -4.831903e+01 6.33895e+01 lineto -closepath -gsave -7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor -fill -grestore -newpath -4.283898e+01 6.288507e+01 moveto -4.406472e+01 5.875057e+01 lineto -3.936846e+01 5.811105e+01 lineto -3.778148e+01 6.219636e+01 lineto -4.283898e+01 6.288507e+01 lineto -closepath -gsave -7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor -fill -grestore -newpath -3.778148e+01 6.219636e+01 moveto -3.936846e+01 5.811105e+01 lineto -3.518022e+01 5.731614e+01 lineto -3.327108e+01 6.13403e+01 lineto -3.778148e+01 6.219636e+01 lineto -closepath -gsave -7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor -fill -grestore -newpath -3.327108e+01 6.13403e+01 moveto -3.518022e+01 5.731614e+01 lineto -3.160312e+01 5.638542e+01 lineto -2.941883e+01 6.033799e+01 lineto -3.327108e+01 6.13403e+01 lineto -closepath -gsave -7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor -fill -grestore -newpath -2.941883e+01 6.033799e+01 moveto -3.160312e+01 5.638542e+01 lineto -2.872525e+01 5.53418e+01 lineto -2.631959e+01 5.92141e+01 lineto -2.941883e+01 6.033799e+01 lineto -closepath -gsave -7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor -fill -grestore -newpath -2.631959e+01 5.92141e+01 moveto -2.872525e+01 5.53418e+01 lineto -2.661747e+01 5.4211e+01 lineto -2.404968e+01 5.799631e+01 lineto -2.631959e+01 5.92141e+01 lineto -closepath -gsave -7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor -fill -grestore -newpath -2.404968e+01 5.799631e+01 moveto -2.661747e+01 5.4211e+01 lineto -2.533167e+01 5.302084e+01 lineto -2.266498e+01 5.67146e+01 lineto -2.404968e+01 5.799631e+01 lineto -closepath -gsave -7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor -fill -grestore -newpath -2.266498e+01 5.67146e+01 moveto -2.533167e+01 5.302084e+01 lineto -2.489953e+01 5.180063e+01 lineto -2.21996e+01 5.540054e+01 lineto -2.266498e+01 5.67146e+01 lineto -closepath -gsave -7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor -fill -grestore -newpath -2.21996e+01 5.540054e+01 moveto -2.489953e+01 5.180063e+01 lineto -2.533167e+01 5.058042e+01 lineto -2.266498e+01 5.408648e+01 lineto -2.21996e+01 5.540054e+01 lineto -closepath -gsave -7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor -fill -grestore -newpath -1.000017e+02 5.759253e+01 moveto -9.733502e+01 5.408648e+01 lineto -9.78004e+01 5.540054e+01 lineto -1.005003e+02 5.900045e+01 lineto -1.000017e+02 5.759253e+01 lineto -closepath -gsave -5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor -fill -grestore -newpath -1.005003e+02 5.900045e+01 moveto -9.78004e+01 5.540054e+01 lineto -9.733502e+01 5.67146e+01 lineto -1.000017e+02 6.040837e+01 lineto -1.005003e+02 5.900045e+01 lineto -closepath -gsave -5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor -fill -grestore -newpath -1.000017e+02 6.040837e+01 moveto -9.733502e+01 5.67146e+01 lineto -9.595032e+01 5.799631e+01 lineto -9.851811e+01 6.178163e+01 lineto -1.000017e+02 6.040837e+01 lineto -closepath -gsave -5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor -fill -grestore -newpath -9.851811e+01 6.178163e+01 moveto -9.595032e+01 5.799631e+01 lineto -9.368041e+01 5.92141e+01 lineto -9.608606e+01 6.30864e+01 lineto -9.851811e+01 6.178163e+01 lineto -closepath -gsave -5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor -fill -grestore -newpath -9.608606e+01 6.30864e+01 moveto -9.368041e+01 5.92141e+01 lineto -9.058117e+01 6.033799e+01 lineto -9.276546e+01 6.429056e+01 lineto -9.608606e+01 6.30864e+01 lineto -closepath -gsave -5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor -fill -grestore -newpath -9.276546e+01 6.429056e+01 moveto -9.058117e+01 6.033799e+01 lineto -8.672892e+01 6.13403e+01 lineto -8.863806e+01 6.536446e+01 lineto -9.276546e+01 6.429056e+01 lineto -closepath -gsave -6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor -fill -grestore -newpath -8.863806e+01 6.536446e+01 moveto -8.672892e+01 6.13403e+01 lineto -8.221852e+01 6.219636e+01 lineto -8.38055e+01 6.628166e+01 lineto -8.863806e+01 6.536446e+01 lineto -closepath -gsave -6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor -fill -grestore -newpath -8.38055e+01 6.628166e+01 moveto -8.221852e+01 6.219636e+01 lineto -7.716102e+01 6.288507e+01 lineto -7.838677e+01 6.701958e+01 lineto -8.38055e+01 6.628166e+01 lineto -closepath -gsave -6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor -fill -grestore -newpath -7.838677e+01 6.701958e+01 moveto -7.716102e+01 6.288507e+01 lineto -7.168097e+01 6.33895e+01 lineto -7.251529e+01 6.756003e+01 lineto -7.838677e+01 6.701958e+01 lineto -closepath -gsave -6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor -fill -grestore -newpath -7.251529e+01 6.756003e+01 moveto -7.168097e+01 6.33895e+01 lineto -6.591329e+01 6.369721e+01 lineto -6.633565e+01 6.788972e+01 lineto -7.251529e+01 6.756003e+01 lineto -closepath -gsave -7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor -fill -grestore -newpath -6.633565e+01 6.788972e+01 moveto -6.591329e+01 6.369721e+01 lineto -6.0e+01 6.380063e+01 lineto -6.0e+01 6.800052e+01 lineto -6.633565e+01 6.788972e+01 lineto -closepath -gsave -7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 6.800052e+01 moveto -6.0e+01 6.380063e+01 lineto -5.408671e+01 6.369721e+01 lineto -5.366435e+01 6.788972e+01 lineto -6.0e+01 6.800052e+01 lineto -closepath -gsave -7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor -fill -grestore -newpath -5.366435e+01 6.788972e+01 moveto -5.408671e+01 6.369721e+01 lineto -4.831903e+01 6.33895e+01 lineto -4.748471e+01 6.756003e+01 lineto -5.366435e+01 6.788972e+01 lineto -closepath -gsave -7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor -fill -grestore -newpath -4.748471e+01 6.756003e+01 moveto -4.831903e+01 6.33895e+01 lineto -4.283898e+01 6.288507e+01 lineto -4.161323e+01 6.701958e+01 lineto -4.748471e+01 6.756003e+01 lineto -closepath -gsave -7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor -fill -grestore -newpath -4.161323e+01 6.701958e+01 moveto -4.283898e+01 6.288507e+01 lineto -3.778148e+01 6.219636e+01 lineto -3.61945e+01 6.628166e+01 lineto -4.161323e+01 6.701958e+01 lineto -closepath -gsave -7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor -fill -grestore -newpath -3.61945e+01 6.628166e+01 moveto -3.778148e+01 6.219636e+01 lineto -3.327108e+01 6.13403e+01 lineto -3.136194e+01 6.536446e+01 lineto -3.61945e+01 6.628166e+01 lineto -closepath -gsave -7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor -fill -grestore -newpath -3.136194e+01 6.536446e+01 moveto -3.327108e+01 6.13403e+01 lineto -2.941883e+01 6.033799e+01 lineto -2.723454e+01 6.429056e+01 lineto -3.136194e+01 6.536446e+01 lineto -closepath -gsave -7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor -fill -grestore -newpath -2.723454e+01 6.429056e+01 moveto -2.941883e+01 6.033799e+01 lineto -2.631959e+01 5.92141e+01 lineto -2.391394e+01 6.30864e+01 lineto -2.723454e+01 6.429056e+01 lineto -closepath -gsave -7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor -fill -grestore -newpath -2.391394e+01 6.30864e+01 moveto -2.631959e+01 5.92141e+01 lineto -2.404968e+01 5.799631e+01 lineto -2.148189e+01 6.178163e+01 lineto -2.391394e+01 6.30864e+01 lineto -closepath -gsave -7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor -fill -grestore -newpath -2.148189e+01 6.178163e+01 moveto -2.404968e+01 5.799631e+01 lineto -2.266498e+01 5.67146e+01 lineto -1.999829e+01 6.040837e+01 lineto -2.148189e+01 6.178163e+01 lineto -closepath -gsave -7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor -fill -grestore -newpath -1.999829e+01 6.040837e+01 moveto -2.266498e+01 5.67146e+01 lineto -2.21996e+01 5.540054e+01 lineto -1.949966e+01 5.900045e+01 lineto -1.999829e+01 6.040837e+01 lineto -closepath -gsave -7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor -fill -grestore -newpath -1.949966e+01 5.900045e+01 moveto -2.21996e+01 5.540054e+01 lineto -2.266498e+01 5.408648e+01 lineto -1.999829e+01 5.759253e+01 lineto -1.949966e+01 5.900045e+01 lineto -closepath -gsave -7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor -fill -grestore -newpath -1.026684e+02 6.109858e+01 moveto -1.000017e+02 5.759253e+01 lineto -1.005003e+02 5.900045e+01 lineto -1.032003e+02 6.260036e+01 lineto -1.026684e+02 6.109858e+01 lineto -closepath -gsave -5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor -fill -grestore -newpath -1.032003e+02 6.260036e+01 moveto -1.005003e+02 5.900045e+01 lineto -1.000017e+02 6.040837e+01 lineto -1.026684e+02 6.410214e+01 lineto -1.032003e+02 6.260036e+01 lineto -closepath -gsave -5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor -fill -grestore -newpath -1.026684e+02 6.410214e+01 moveto -1.000017e+02 6.040837e+01 lineto -9.851811e+01 6.178163e+01 lineto -1.010859e+02 6.556694e+01 lineto -1.026684e+02 6.410214e+01 lineto -closepath -gsave -5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor -fill -grestore -newpath -1.010859e+02 6.556694e+01 moveto -9.851811e+01 6.178163e+01 lineto -9.608606e+01 6.30864e+01 lineto -9.849172e+01 6.69587e+01 lineto -1.010859e+02 6.556694e+01 lineto -closepath -gsave -5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor -fill -grestore -newpath -9.849172e+01 6.69587e+01 moveto -9.608606e+01 6.30864e+01 lineto -9.276546e+01 6.429056e+01 lineto -9.494975e+01 6.824313e+01 lineto -9.849172e+01 6.69587e+01 lineto -closepath -gsave -5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor -fill -grestore -newpath -9.494975e+01 6.824313e+01 moveto -9.276546e+01 6.429056e+01 lineto -8.863806e+01 6.536446e+01 lineto -9.05472e+01 6.938863e+01 lineto -9.494975e+01 6.824313e+01 lineto -closepath -gsave -6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor -fill -grestore -newpath -9.05472e+01 6.938863e+01 moveto -8.863806e+01 6.536446e+01 lineto -8.38055e+01 6.628166e+01 lineto -8.539248e+01 7.036697e+01 lineto -9.05472e+01 6.938863e+01 lineto -closepath -gsave -6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor -fill -grestore -newpath -8.539248e+01 7.036697e+01 moveto -8.38055e+01 6.628166e+01 lineto -7.838677e+01 6.701958e+01 lineto -7.961251e+01 7.115408e+01 lineto -8.539248e+01 7.036697e+01 lineto -closepath -gsave -6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor -fill -grestore -newpath -7.961251e+01 7.115408e+01 moveto -7.838677e+01 6.701958e+01 lineto -7.251529e+01 6.756003e+01 lineto -7.334962e+01 7.173056e+01 lineto -7.961251e+01 7.115408e+01 lineto -closepath -gsave -6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor -fill -grestore -newpath -7.334962e+01 7.173056e+01 moveto -7.251529e+01 6.756003e+01 lineto -6.633565e+01 6.788972e+01 lineto -6.675801e+01 7.208223e+01 lineto -7.334962e+01 7.173056e+01 lineto -closepath -gsave -7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor -fill -grestore -newpath -6.675801e+01 7.208223e+01 moveto -6.633565e+01 6.788972e+01 lineto -6.0e+01 6.800052e+01 lineto -6.0e+01 7.220042e+01 lineto -6.675801e+01 7.208223e+01 lineto -closepath -gsave -7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 7.220042e+01 moveto -6.0e+01 6.800052e+01 lineto -5.366435e+01 6.788972e+01 lineto -5.324199e+01 7.208223e+01 lineto -6.0e+01 7.220042e+01 lineto -closepath -gsave -7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor -fill -grestore -newpath -5.324199e+01 7.208223e+01 moveto -5.366435e+01 6.788972e+01 lineto -4.748471e+01 6.756003e+01 lineto -4.665038e+01 7.173056e+01 lineto -5.324199e+01 7.208223e+01 lineto -closepath -gsave -7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor -fill -grestore -newpath -4.665038e+01 7.173056e+01 moveto -4.748471e+01 6.756003e+01 lineto -4.161323e+01 6.701958e+01 lineto -4.038749e+01 7.115408e+01 lineto -4.665038e+01 7.173056e+01 lineto -closepath -gsave -7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor -fill -grestore -newpath -4.038749e+01 7.115408e+01 moveto -4.161323e+01 6.701958e+01 lineto -3.61945e+01 6.628166e+01 lineto -3.460752e+01 7.036697e+01 lineto -4.038749e+01 7.115408e+01 lineto -closepath -gsave -7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor -fill -grestore -newpath -3.460752e+01 7.036697e+01 moveto -3.61945e+01 6.628166e+01 lineto -3.136194e+01 6.536446e+01 lineto -2.94528e+01 6.938863e+01 lineto -3.460752e+01 7.036697e+01 lineto -closepath -gsave -7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor -fill -grestore -newpath -2.94528e+01 6.938863e+01 moveto -3.136194e+01 6.536446e+01 lineto -2.723454e+01 6.429056e+01 lineto -2.505025e+01 6.824313e+01 lineto -2.94528e+01 6.938863e+01 lineto -closepath -gsave -7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor -fill -grestore -newpath -2.505025e+01 6.824313e+01 moveto -2.723454e+01 6.429056e+01 lineto -2.391394e+01 6.30864e+01 lineto -2.150828e+01 6.69587e+01 lineto -2.505025e+01 6.824313e+01 lineto -closepath -gsave -7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor -fill -grestore -newpath -2.150828e+01 6.69587e+01 moveto -2.391394e+01 6.30864e+01 lineto -2.148189e+01 6.178163e+01 lineto -1.89141e+01 6.556694e+01 lineto -2.150828e+01 6.69587e+01 lineto -closepath -gsave -7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor -fill -grestore -newpath -1.89141e+01 6.556694e+01 moveto -2.148189e+01 6.178163e+01 lineto -1.999829e+01 6.040837e+01 lineto -1.73316e+01 6.410214e+01 lineto -1.89141e+01 6.556694e+01 lineto -closepath -gsave -7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor -fill -grestore -newpath -1.73316e+01 6.410214e+01 moveto -1.999829e+01 6.040837e+01 lineto -1.949966e+01 5.900045e+01 lineto -1.679973e+01 6.260036e+01 lineto -1.73316e+01 6.410214e+01 lineto -closepath -gsave -7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor -fill -grestore -newpath -1.679973e+01 6.260036e+01 moveto -1.949966e+01 5.900045e+01 lineto -1.999829e+01 5.759253e+01 lineto -1.73316e+01 6.109858e+01 lineto -1.679973e+01 6.260036e+01 lineto -closepath -gsave -7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor -fill -grestore -newpath -1.053351e+02 6.460463e+01 moveto -1.026684e+02 6.109858e+01 lineto -1.032003e+02 6.260036e+01 lineto -1.059002e+02 6.620027e+01 lineto -1.053351e+02 6.460463e+01 lineto -closepath -gsave -5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor -fill -grestore -newpath -1.059002e+02 6.620027e+01 moveto -1.032003e+02 6.260036e+01 lineto -1.026684e+02 6.410214e+01 lineto -1.053351e+02 6.779591e+01 lineto -1.059002e+02 6.620027e+01 lineto -closepath -gsave -5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor -fill -grestore -newpath -1.053351e+02 6.779591e+01 moveto -1.026684e+02 6.410214e+01 lineto -1.010859e+02 6.556694e+01 lineto -1.036537e+02 6.935226e+01 lineto -1.053351e+02 6.779591e+01 lineto -closepath -gsave -5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor -fill -grestore -newpath -1.036537e+02 6.935226e+01 moveto -1.010859e+02 6.556694e+01 lineto -9.849172e+01 6.69587e+01 lineto -1.008974e+02 7.083099e+01 lineto -1.036537e+02 6.935226e+01 lineto -closepath -gsave -5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor -fill -grestore -newpath -1.008974e+02 7.083099e+01 moveto -9.849172e+01 6.69587e+01 lineto -9.494975e+01 6.824313e+01 lineto -9.713404e+01 7.219571e+01 lineto -1.008974e+02 7.083099e+01 lineto -closepath -gsave -5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor -fill -grestore -newpath -9.713404e+01 7.219571e+01 moveto -9.494975e+01 6.824313e+01 lineto -9.05472e+01 6.938863e+01 lineto -9.245634e+01 7.341279e+01 lineto -9.713404e+01 7.219571e+01 lineto -closepath -gsave -6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor -fill -grestore -newpath -9.245634e+01 7.341279e+01 moveto -9.05472e+01 6.938863e+01 lineto -8.539248e+01 7.036697e+01 lineto -8.697946e+01 7.445228e+01 lineto -9.245634e+01 7.341279e+01 lineto -closepath -gsave -6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor -fill -grestore -newpath -8.697946e+01 7.445228e+01 moveto -8.539248e+01 7.036697e+01 lineto -7.961251e+01 7.115408e+01 lineto -8.083826e+01 7.528858e+01 lineto -8.697946e+01 7.445228e+01 lineto -closepath -gsave -6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor -fill -grestore -newpath -8.083826e+01 7.528858e+01 moveto -7.961251e+01 7.115408e+01 lineto -7.334962e+01 7.173056e+01 lineto -7.418394e+01 7.590109e+01 lineto -8.083826e+01 7.528858e+01 lineto -closepath -gsave -6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor -fill -grestore -newpath -7.418394e+01 7.590109e+01 moveto -7.334962e+01 7.173056e+01 lineto -6.675801e+01 7.208223e+01 lineto -6.718037e+01 7.627474e+01 lineto -7.418394e+01 7.590109e+01 lineto -closepath -gsave -7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor -fill -grestore -newpath -6.718037e+01 7.627474e+01 moveto -6.675801e+01 7.208223e+01 lineto -6.0e+01 7.220042e+01 lineto -6.0e+01 7.640031e+01 lineto -6.718037e+01 7.627474e+01 lineto -closepath -gsave -7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 7.640031e+01 moveto -6.0e+01 7.220042e+01 lineto -5.324199e+01 7.208223e+01 lineto -5.281963e+01 7.627474e+01 lineto -6.0e+01 7.640031e+01 lineto -closepath -gsave -7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor -fill -grestore -newpath -5.281963e+01 7.627474e+01 moveto -5.324199e+01 7.208223e+01 lineto -4.665038e+01 7.173056e+01 lineto -4.581606e+01 7.590109e+01 lineto -5.281963e+01 7.627474e+01 lineto -closepath -gsave -7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor -fill -grestore -newpath -4.581606e+01 7.590109e+01 moveto -4.665038e+01 7.173056e+01 lineto -4.038749e+01 7.115408e+01 lineto -3.916174e+01 7.528858e+01 lineto -4.581606e+01 7.590109e+01 lineto -closepath -gsave -7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor -fill -grestore -newpath -3.916174e+01 7.528858e+01 moveto -4.038749e+01 7.115408e+01 lineto -3.460752e+01 7.036697e+01 lineto -3.302054e+01 7.445228e+01 lineto -3.916174e+01 7.528858e+01 lineto -closepath -gsave -7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor -fill -grestore -newpath -3.302054e+01 7.445228e+01 moveto -3.460752e+01 7.036697e+01 lineto -2.94528e+01 6.938863e+01 lineto -2.754366e+01 7.341279e+01 lineto -3.302054e+01 7.445228e+01 lineto -closepath -gsave -7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor -fill -grestore -newpath -2.754366e+01 7.341279e+01 moveto -2.94528e+01 6.938863e+01 lineto -2.505025e+01 6.824313e+01 lineto -2.286596e+01 7.219571e+01 lineto -2.754366e+01 7.341279e+01 lineto -closepath -gsave -7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor -fill -grestore -newpath -2.286596e+01 7.219571e+01 moveto -2.505025e+01 6.824313e+01 lineto -2.150828e+01 6.69587e+01 lineto -1.910262e+01 7.083099e+01 lineto -2.286596e+01 7.219571e+01 lineto -closepath -gsave -7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor -fill -grestore -newpath -1.910262e+01 7.083099e+01 moveto -2.150828e+01 6.69587e+01 lineto -1.89141e+01 6.556694e+01 lineto -1.634631e+01 6.935226e+01 lineto -1.910262e+01 7.083099e+01 lineto -closepath -gsave -7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor -fill -grestore -newpath -1.634631e+01 6.935226e+01 moveto -1.89141e+01 6.556694e+01 lineto -1.73316e+01 6.410214e+01 lineto -1.466491e+01 6.779591e+01 lineto -1.634631e+01 6.935226e+01 lineto -closepath -gsave -7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor -fill -grestore -newpath -1.466491e+01 6.779591e+01 moveto -1.73316e+01 6.410214e+01 lineto -1.679973e+01 6.260036e+01 lineto -1.40998e+01 6.620027e+01 lineto -1.466491e+01 6.779591e+01 lineto -closepath -gsave -7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor -fill -grestore -newpath -1.40998e+01 6.620027e+01 moveto -1.679973e+01 6.260036e+01 lineto -1.73316e+01 6.109858e+01 lineto -1.466491e+01 6.460463e+01 lineto -1.40998e+01 6.620027e+01 lineto -closepath -gsave -7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor -fill -grestore -newpath -1.080018e+02 6.811068e+01 moveto -1.053351e+02 6.460463e+01 lineto -1.059002e+02 6.620027e+01 lineto -1.086001e+02 6.980018e+01 lineto -1.080018e+02 6.811068e+01 lineto -closepath -gsave -5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor -fill -grestore -newpath -1.086001e+02 6.980018e+01 moveto -1.059002e+02 6.620027e+01 lineto -1.053351e+02 6.779591e+01 lineto -1.080018e+02 7.148968e+01 lineto -1.086001e+02 6.980018e+01 lineto -closepath -gsave -5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor -fill -grestore -newpath -1.080018e+02 7.148968e+01 moveto -1.053351e+02 6.779591e+01 lineto -1.036537e+02 6.935226e+01 lineto -1.062215e+02 7.313757e+01 lineto -1.080018e+02 7.148968e+01 lineto -closepath -gsave -5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor -fill -grestore -newpath -1.062215e+02 7.313757e+01 moveto -1.036537e+02 6.935226e+01 lineto -1.008974e+02 7.083099e+01 lineto -1.03303e+02 7.470329e+01 lineto -1.062215e+02 7.313757e+01 lineto -closepath -gsave -5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor -fill -grestore -newpath -1.03303e+02 7.470329e+01 moveto -1.008974e+02 7.083099e+01 lineto -9.713404e+01 7.219571e+01 lineto -9.931834e+01 7.614828e+01 lineto -1.03303e+02 7.470329e+01 lineto -closepath -gsave -5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor -fill -grestore -newpath -9.931834e+01 7.614828e+01 moveto -9.713404e+01 7.219571e+01 lineto -9.245634e+01 7.341279e+01 lineto -9.436549e+01 7.743695e+01 lineto -9.931834e+01 7.614828e+01 lineto -closepath -gsave -6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor -fill -grestore -newpath -9.436549e+01 7.743695e+01 moveto -9.245634e+01 7.341279e+01 lineto -8.697946e+01 7.445228e+01 lineto -8.856644e+01 7.853759e+01 lineto -9.436549e+01 7.743695e+01 lineto -closepath -gsave -6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor -fill -grestore -newpath -8.856644e+01 7.853759e+01 moveto -8.697946e+01 7.445228e+01 lineto -8.083826e+01 7.528858e+01 lineto -8.2064e+01 7.942308e+01 lineto -8.856644e+01 7.853759e+01 lineto -closepath -gsave -6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor -fill -grestore -newpath -8.2064e+01 7.942308e+01 moveto -8.083826e+01 7.528858e+01 lineto -7.418394e+01 7.590109e+01 lineto -7.501827e+01 8.007162e+01 lineto -8.2064e+01 7.942308e+01 lineto -closepath -gsave -6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor -fill -grestore -newpath -7.501827e+01 8.007162e+01 moveto -7.418394e+01 7.590109e+01 lineto -6.718037e+01 7.627474e+01 lineto -6.760274e+01 8.046724e+01 lineto -7.501827e+01 8.007162e+01 lineto -closepath -gsave -7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor -fill -grestore -newpath -6.760274e+01 8.046724e+01 moveto -6.718037e+01 7.627474e+01 lineto -6.0e+01 7.640031e+01 lineto -6.0e+01 8.060021e+01 lineto -6.760274e+01 8.046724e+01 lineto -closepath -gsave -7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 8.060021e+01 moveto -6.0e+01 7.640031e+01 lineto -5.281963e+01 7.627474e+01 lineto -5.239726e+01 8.046724e+01 lineto -6.0e+01 8.060021e+01 lineto -closepath -gsave -7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor -fill -grestore -newpath -5.239726e+01 8.046724e+01 moveto -5.281963e+01 7.627474e+01 lineto -4.581606e+01 7.590109e+01 lineto -4.498173e+01 8.007162e+01 lineto -5.239726e+01 8.046724e+01 lineto -closepath -gsave -7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor -fill -grestore -newpath -4.498173e+01 8.007162e+01 moveto -4.581606e+01 7.590109e+01 lineto -3.916174e+01 7.528858e+01 lineto -3.7936e+01 7.942308e+01 lineto -4.498173e+01 8.007162e+01 lineto -closepath -gsave -7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor -fill -grestore -newpath -3.7936e+01 7.942308e+01 moveto -3.916174e+01 7.528858e+01 lineto -3.302054e+01 7.445228e+01 lineto -3.143356e+01 7.853759e+01 lineto -3.7936e+01 7.942308e+01 lineto -closepath -gsave -7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor -fill -grestore -newpath -3.143356e+01 7.853759e+01 moveto -3.302054e+01 7.445228e+01 lineto -2.754366e+01 7.341279e+01 lineto -2.563451e+01 7.743695e+01 lineto -3.143356e+01 7.853759e+01 lineto -closepath -gsave -7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor -fill -grestore -newpath -2.563451e+01 7.743695e+01 moveto -2.754366e+01 7.341279e+01 lineto -2.286596e+01 7.219571e+01 lineto -2.068166e+01 7.614828e+01 lineto -2.563451e+01 7.743695e+01 lineto -closepath -gsave -7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor -fill -grestore -newpath -2.068166e+01 7.614828e+01 moveto -2.286596e+01 7.219571e+01 lineto -1.910262e+01 7.083099e+01 lineto -1.669696e+01 7.470329e+01 lineto -2.068166e+01 7.614828e+01 lineto -closepath -gsave -7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor -fill -grestore -newpath -1.669696e+01 7.470329e+01 moveto -1.910262e+01 7.083099e+01 lineto -1.634631e+01 6.935226e+01 lineto -1.377852e+01 7.313757e+01 lineto -1.669696e+01 7.470329e+01 lineto -closepath -gsave -7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor -fill -grestore -newpath -1.377852e+01 7.313757e+01 moveto -1.634631e+01 6.935226e+01 lineto -1.466491e+01 6.779591e+01 lineto -1.199821e+01 7.148968e+01 lineto -1.377852e+01 7.313757e+01 lineto -closepath -gsave -7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor -fill -grestore -newpath -1.199821e+01 7.148968e+01 moveto -1.466491e+01 6.779591e+01 lineto -1.40998e+01 6.620027e+01 lineto -1.139987e+01 6.980018e+01 lineto -1.199821e+01 7.148968e+01 lineto -closepath -gsave -7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor -fill -grestore -newpath -1.139987e+01 6.980018e+01 moveto -1.40998e+01 6.620027e+01 lineto -1.466491e+01 6.460463e+01 lineto -1.199821e+01 6.811068e+01 lineto -1.139987e+01 6.980018e+01 lineto -closepath -gsave -7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor -fill -grestore -newpath -1.106685e+02 7.161673e+01 moveto -1.080018e+02 6.811068e+01 lineto -1.086001e+02 6.980018e+01 lineto -1.113001e+02 7.340009e+01 lineto -1.106685e+02 7.161673e+01 lineto -closepath -gsave -5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor -fill -grestore -newpath -1.113001e+02 7.340009e+01 moveto -1.086001e+02 6.980018e+01 lineto -1.080018e+02 7.148968e+01 lineto -1.106685e+02 7.518345e+01 lineto -1.113001e+02 7.340009e+01 lineto -closepath -gsave -5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor -fill -grestore -newpath -1.106685e+02 7.518345e+01 moveto -1.080018e+02 7.148968e+01 lineto -1.062215e+02 7.313757e+01 lineto -1.087893e+02 7.692289e+01 lineto -1.106685e+02 7.518345e+01 lineto -closepath -gsave -5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor -fill -grestore -newpath -1.087893e+02 7.692289e+01 moveto -1.062215e+02 7.313757e+01 lineto -1.03303e+02 7.470329e+01 lineto -1.057087e+02 7.857559e+01 lineto -1.087893e+02 7.692289e+01 lineto -closepath -gsave -5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor -fill -grestore -newpath -1.057087e+02 7.857559e+01 moveto -1.03303e+02 7.470329e+01 lineto -9.931834e+01 7.614828e+01 lineto -1.015026e+02 8.010085e+01 lineto -1.057087e+02 7.857559e+01 lineto -closepath -gsave -5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor -fill -grestore -newpath -1.015026e+02 8.010085e+01 moveto -9.931834e+01 7.614828e+01 lineto -9.436549e+01 7.743695e+01 lineto -9.627463e+01 8.146112e+01 lineto -1.015026e+02 8.010085e+01 lineto -closepath -gsave -6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor -fill -grestore -newpath -9.627463e+01 8.146112e+01 moveto -9.436549e+01 7.743695e+01 lineto -8.856644e+01 7.853759e+01 lineto -9.015342e+01 8.26229e+01 lineto -9.627463e+01 8.146112e+01 lineto -closepath -gsave -6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor -fill -grestore -newpath -9.015342e+01 8.26229e+01 moveto -8.856644e+01 7.853759e+01 lineto -8.2064e+01 7.942308e+01 lineto -8.328974e+01 8.355758e+01 lineto -9.015342e+01 8.26229e+01 lineto -closepath -gsave -6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor -fill -grestore -newpath -8.328974e+01 8.355758e+01 moveto -8.2064e+01 7.942308e+01 lineto -7.501827e+01 8.007162e+01 lineto -7.585259e+01 8.424215e+01 lineto -8.328974e+01 8.355758e+01 lineto -closepath -gsave -6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor -fill -grestore -newpath -7.585259e+01 8.424215e+01 moveto -7.501827e+01 8.007162e+01 lineto -6.760274e+01 8.046724e+01 lineto -6.80251e+01 8.465975e+01 lineto -7.585259e+01 8.424215e+01 lineto -closepath -gsave -7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor -fill -grestore -newpath -6.80251e+01 8.465975e+01 moveto -6.760274e+01 8.046724e+01 lineto -6.0e+01 8.060021e+01 lineto -6.0e+01 8.48001e+01 lineto -6.80251e+01 8.465975e+01 lineto -closepath -gsave -7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 8.48001e+01 moveto -6.0e+01 8.060021e+01 lineto -5.239726e+01 8.046724e+01 lineto -5.19749e+01 8.465975e+01 lineto -6.0e+01 8.48001e+01 lineto -closepath -gsave -7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor -fill -grestore -newpath -5.19749e+01 8.465975e+01 moveto -5.239726e+01 8.046724e+01 lineto -4.498173e+01 8.007162e+01 lineto -4.414741e+01 8.424215e+01 lineto -5.19749e+01 8.465975e+01 lineto -closepath -gsave -7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor -fill -grestore -newpath -4.414741e+01 8.424215e+01 moveto -4.498173e+01 8.007162e+01 lineto -3.7936e+01 7.942308e+01 lineto -3.671026e+01 8.355758e+01 lineto -4.414741e+01 8.424215e+01 lineto -closepath -gsave -7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor -fill -grestore -newpath -3.671026e+01 8.355758e+01 moveto -3.7936e+01 7.942308e+01 lineto -3.143356e+01 7.853759e+01 lineto -2.984658e+01 8.26229e+01 lineto -3.671026e+01 8.355758e+01 lineto -closepath -gsave -7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor -fill -grestore -newpath -2.984658e+01 8.26229e+01 moveto -3.143356e+01 7.853759e+01 lineto -2.563451e+01 7.743695e+01 lineto -2.372537e+01 8.146112e+01 lineto -2.984658e+01 8.26229e+01 lineto -closepath -gsave -7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor -fill -grestore -newpath -2.372537e+01 8.146112e+01 moveto -2.563451e+01 7.743695e+01 lineto -2.068166e+01 7.614828e+01 lineto -1.849737e+01 8.010085e+01 lineto -2.372537e+01 8.146112e+01 lineto -closepath -gsave -7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor -fill -grestore -newpath -1.849737e+01 8.010085e+01 moveto -2.068166e+01 7.614828e+01 lineto -1.669696e+01 7.470329e+01 lineto -1.429131e+01 7.857559e+01 lineto -1.849737e+01 8.010085e+01 lineto -closepath -gsave -7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor -fill -grestore -newpath -1.429131e+01 7.857559e+01 moveto -1.669696e+01 7.470329e+01 lineto -1.377852e+01 7.313757e+01 lineto -1.121074e+01 7.692289e+01 lineto -1.429131e+01 7.857559e+01 lineto -closepath -gsave -7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor -fill -grestore -newpath -1.121074e+01 7.692289e+01 moveto -1.377852e+01 7.313757e+01 lineto -1.199821e+01 7.148968e+01 lineto -9.331521e+00 7.518345e+01 lineto -1.121074e+01 7.692289e+01 lineto -closepath -gsave -7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor -fill -grestore -newpath -9.331521e+00 7.518345e+01 moveto -1.199821e+01 7.148968e+01 lineto -1.139987e+01 6.980018e+01 lineto -8.699933e+00 7.340009e+01 lineto -9.331521e+00 7.518345e+01 lineto -closepath -gsave -7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor -fill -grestore -newpath -8.699933e+00 7.340009e+01 moveto -1.139987e+01 6.980018e+01 lineto -1.199821e+01 6.811068e+01 lineto -9.331521e+00 7.161673e+01 lineto -8.699933e+00 7.340009e+01 lineto -closepath -gsave -7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor -fill -grestore -newpath -1.133352e+02 7.512279e+01 moveto -1.106685e+02 7.161673e+01 lineto -1.113001e+02 7.340009e+01 lineto -1.14e+02 7.7e+01 lineto -1.133352e+02 7.512279e+01 lineto -closepath -gsave -5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor -fill -grestore -newpath -1.14e+02 7.7e+01 moveto -1.113001e+02 7.340009e+01 lineto -1.106685e+02 7.518345e+01 lineto -1.133352e+02 7.887721e+01 lineto -1.14e+02 7.7e+01 lineto -closepath -gsave -5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor -fill -grestore -newpath -1.133352e+02 7.887721e+01 moveto -1.106685e+02 7.518345e+01 lineto -1.087893e+02 7.692289e+01 lineto -1.113571e+02 8.07082e+01 lineto -1.133352e+02 7.887721e+01 lineto -closepath -gsave -5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor -fill -grestore -newpath -1.113571e+02 8.07082e+01 moveto -1.087893e+02 7.692289e+01 lineto -1.057087e+02 7.857559e+01 lineto -1.081144e+02 8.244789e+01 lineto -1.113571e+02 8.07082e+01 lineto -closepath -gsave -5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor -fill -grestore -newpath -1.081144e+02 8.244789e+01 moveto -1.057087e+02 7.857559e+01 lineto -1.015026e+02 8.010085e+01 lineto -1.036869e+02 8.405342e+01 lineto -1.081144e+02 8.244789e+01 lineto -closepath -gsave -5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor -fill -grestore -newpath -1.036869e+02 8.405342e+01 moveto -1.015026e+02 8.010085e+01 lineto -9.627463e+01 8.146112e+01 lineto -9.818377e+01 8.548528e+01 lineto -1.036869e+02 8.405342e+01 lineto -closepath -gsave -6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor -fill -grestore -newpath -9.818377e+01 8.548528e+01 moveto -9.627463e+01 8.146112e+01 lineto -9.015342e+01 8.26229e+01 lineto -9.17404e+01 8.67082e+01 lineto -9.818377e+01 8.548528e+01 lineto -closepath -gsave -6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor -fill -grestore -newpath -9.17404e+01 8.67082e+01 moveto -9.015342e+01 8.26229e+01 lineto -8.328974e+01 8.355758e+01 lineto -8.451549e+01 8.769208e+01 lineto -9.17404e+01 8.67082e+01 lineto -closepath -gsave -6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor -fill -grestore -newpath -8.451549e+01 8.769208e+01 moveto -8.328974e+01 8.355758e+01 lineto -7.585259e+01 8.424215e+01 lineto -7.668692e+01 8.841268e+01 lineto -8.451549e+01 8.769208e+01 lineto -closepath -gsave -6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor -fill -grestore -newpath -7.668692e+01 8.841268e+01 moveto -7.585259e+01 8.424215e+01 lineto -6.80251e+01 8.465975e+01 lineto -6.844746e+01 8.885226e+01 lineto -7.668692e+01 8.841268e+01 lineto -closepath -gsave -7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor -fill -grestore -newpath -6.844746e+01 8.885226e+01 moveto -6.80251e+01 8.465975e+01 lineto -6.0e+01 8.48001e+01 lineto -6.0e+01 8.9e+01 lineto -6.844746e+01 8.885226e+01 lineto -closepath -gsave -7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 8.9e+01 moveto -6.0e+01 8.48001e+01 lineto -5.19749e+01 8.465975e+01 lineto -5.155254e+01 8.885226e+01 lineto -6.0e+01 8.9e+01 lineto -closepath -gsave -7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor -fill -grestore -newpath -5.155254e+01 8.885226e+01 moveto -5.19749e+01 8.465975e+01 lineto -4.414741e+01 8.424215e+01 lineto -4.331308e+01 8.841268e+01 lineto -5.155254e+01 8.885226e+01 lineto -closepath -gsave -7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor -fill -grestore -newpath -4.331308e+01 8.841268e+01 moveto -4.414741e+01 8.424215e+01 lineto -3.671026e+01 8.355758e+01 lineto -3.548451e+01 8.769208e+01 lineto -4.331308e+01 8.841268e+01 lineto -closepath -gsave -7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor -fill -grestore -newpath -3.548451e+01 8.769208e+01 moveto -3.671026e+01 8.355758e+01 lineto -2.984658e+01 8.26229e+01 lineto -2.82596e+01 8.67082e+01 lineto -3.548451e+01 8.769208e+01 lineto -closepath -gsave -7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor -fill -grestore -newpath -2.82596e+01 8.67082e+01 moveto -2.984658e+01 8.26229e+01 lineto -2.372537e+01 8.146112e+01 lineto -2.181623e+01 8.548528e+01 lineto -2.82596e+01 8.67082e+01 lineto -closepath -gsave -7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor -fill -grestore -newpath -2.181623e+01 8.548528e+01 moveto -2.372537e+01 8.146112e+01 lineto -1.849737e+01 8.010085e+01 lineto -1.631308e+01 8.405342e+01 lineto -2.181623e+01 8.548528e+01 lineto -closepath -gsave -7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor -fill -grestore -newpath -1.631308e+01 8.405342e+01 moveto -1.849737e+01 8.010085e+01 lineto -1.429131e+01 7.857559e+01 lineto -1.188565e+01 8.244789e+01 lineto -1.631308e+01 8.405342e+01 lineto -closepath -gsave -7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor -fill -grestore -newpath -1.188565e+01 8.244789e+01 moveto -1.429131e+01 7.857559e+01 lineto -1.121074e+01 7.692289e+01 lineto -8.642948e+00 8.07082e+01 lineto -1.188565e+01 8.244789e+01 lineto -closepath -gsave -7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor -fill -grestore -newpath -8.642948e+00 8.07082e+01 moveto -1.121074e+01 7.692289e+01 lineto -9.331521e+00 7.518345e+01 lineto -6.66483e+00 7.887721e+01 lineto -8.642948e+00 8.07082e+01 lineto -closepath -gsave -7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor -fill -grestore -newpath -6.66483e+00 7.887721e+01 moveto -9.331521e+00 7.518345e+01 lineto -8.699933e+00 7.340009e+01 lineto -6.0e+00 7.7e+01 lineto -6.66483e+00 7.887721e+01 lineto -closepath -gsave -7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor -fill -grestore -newpath -6.0e+00 7.7e+01 moveto -8.699933e+00 7.340009e+01 lineto -9.331521e+00 7.161673e+01 lineto -6.66483e+00 7.512279e+01 lineto -6.0e+00 7.7e+01 lineto -closepath -gsave -7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 8.001425e+00 moveto -6.0e+01 5.0015e+00 lineto -6.000021e+01 5.001504e+00 lineto -6.042257e+01 8.008816e+00 lineto -6.0e+01 8.001425e+00 lineto -closepath -gsave -6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor -fill -grestore -newpath -6.042257e+01 8.008816e+00 moveto -6.000021e+01 5.001504e+00 lineto -6.000042e+01 5.001515e+00 lineto -6.083474e+01 8.030805e+00 lineto -6.042257e+01 8.008816e+00 lineto -closepath -gsave -6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor -fill -grestore -newpath -6.083474e+01 8.030805e+00 moveto -6.000042e+01 5.001515e+00 lineto -6.000061e+01 5.001533e+00 lineto -6.122636e+01 8.066852e+00 lineto -6.083474e+01 8.030805e+00 lineto -closepath -gsave -6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor -fill -grestore -newpath -6.122636e+01 8.066852e+00 moveto -6.000061e+01 5.001533e+00 lineto -6.000079e+01 5.001557e+00 lineto -6.158777e+01 8.116069e+00 lineto -6.122636e+01 8.066852e+00 lineto -closepath -gsave -6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor -fill -grestore -newpath -6.158777e+01 8.116069e+00 moveto -6.000079e+01 5.001557e+00 lineto -6.000095e+01 5.001588e+00 lineto -6.19101e+01 8.177244e+00 lineto -6.158777e+01 8.116069e+00 lineto -closepath -gsave -6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor -fill -grestore -newpath -6.19101e+01 8.177244e+00 moveto -6.000095e+01 5.001588e+00 lineto -6.000109e+01 5.001624e+00 lineto -6.218538e+01 8.248871e+00 lineto -6.19101e+01 8.177244e+00 lineto -closepath -gsave -6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor -fill -grestore -newpath -6.218538e+01 8.248871e+00 moveto -6.000109e+01 5.001624e+00 lineto -6.00012e+01 5.001664e+00 lineto -6.240686e+01 8.329186e+00 lineto -6.218538e+01 8.248871e+00 lineto -closepath -gsave -6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor -fill -grestore -newpath -6.240686e+01 8.329186e+00 moveto -6.00012e+01 5.001664e+00 lineto -6.000128e+01 5.001707e+00 lineto -6.256907e+01 8.416212e+00 lineto -6.240686e+01 8.329186e+00 lineto -closepath -gsave -6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor -fill -grestore -newpath -6.256907e+01 8.416212e+00 moveto -6.000128e+01 5.001707e+00 lineto -6.000133e+01 5.001753e+00 lineto -6.266803e+01 8.507805e+00 lineto -6.256907e+01 8.416212e+00 lineto -closepath -gsave -6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor -fill -grestore -newpath -5.733197e+01 8.507805e+00 moveto -5.999867e+01 5.001753e+00 lineto -5.999872e+01 5.001707e+00 lineto -5.743093e+01 8.416212e+00 lineto -5.733197e+01 8.507805e+00 lineto -closepath -gsave -3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor -fill -grestore -newpath -5.743093e+01 8.416212e+00 moveto -5.999872e+01 5.001707e+00 lineto -5.99988e+01 5.001664e+00 lineto -5.759314e+01 8.329186e+00 lineto -5.743093e+01 8.416212e+00 lineto -closepath -gsave -4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor -fill -grestore -newpath -5.759314e+01 8.329186e+00 moveto -5.99988e+01 5.001664e+00 lineto -5.999891e+01 5.001624e+00 lineto -5.781462e+01 8.248871e+00 lineto -5.759314e+01 8.329186e+00 lineto -closepath -gsave -4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor -fill -grestore -newpath -5.781462e+01 8.248871e+00 moveto -5.999891e+01 5.001624e+00 lineto -5.999905e+01 5.001588e+00 lineto -5.80899e+01 8.177244e+00 lineto -5.781462e+01 8.248871e+00 lineto -closepath -gsave -4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor -fill -grestore -newpath -5.80899e+01 8.177244e+00 moveto -5.999905e+01 5.001588e+00 lineto -5.999921e+01 5.001557e+00 lineto -5.841223e+01 8.116069e+00 lineto -5.80899e+01 8.177244e+00 lineto -closepath -gsave -4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor -fill -grestore -newpath -5.841223e+01 8.116069e+00 moveto -5.999921e+01 5.001557e+00 lineto -5.999939e+01 5.001533e+00 lineto -5.877364e+01 8.066852e+00 lineto -5.841223e+01 8.116069e+00 lineto -closepath -gsave -5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor -fill -grestore -newpath -5.877364e+01 8.066852e+00 moveto -5.999939e+01 5.001533e+00 lineto -5.999958e+01 5.001515e+00 lineto -5.916526e+01 8.030805e+00 lineto -5.877364e+01 8.066852e+00 lineto -closepath -gsave -5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor -fill -grestore -newpath -5.916526e+01 8.030805e+00 moveto -5.999958e+01 5.001515e+00 lineto -5.999979e+01 5.001504e+00 lineto -5.957743e+01 8.008816e+00 lineto -5.916526e+01 8.030805e+00 lineto -closepath -gsave -5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor -fill -grestore -newpath -5.957743e+01 8.008816e+00 moveto -5.999979e+01 5.001504e+00 lineto -6.0e+01 5.0015e+00 lineto -6.0e+01 8.001425e+00 lineto -5.957743e+01 8.008816e+00 lineto -closepath -gsave -5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 1.100135e+01 moveto -6.0e+01 8.001425e+00 lineto -6.042257e+01 8.008816e+00 lineto -6.084494e+01 1.101613e+01 lineto -6.0e+01 1.100135e+01 lineto -closepath -gsave -6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor -fill -grestore -newpath -6.084494e+01 1.101613e+01 moveto -6.042257e+01 8.008816e+00 lineto -6.083474e+01 8.030805e+00 lineto -6.166907e+01 1.10601e+01 lineto -6.084494e+01 1.101613e+01 lineto -closepath -gsave -6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor -fill -grestore -newpath -6.166907e+01 1.10601e+01 moveto -6.083474e+01 8.030805e+00 lineto -6.122636e+01 8.066852e+00 lineto -6.24521e+01 1.113217e+01 lineto -6.166907e+01 1.10601e+01 lineto -closepath -gsave -6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor -fill -grestore -newpath -6.24521e+01 1.113217e+01 moveto -6.122636e+01 8.066852e+00 lineto -6.158777e+01 8.116069e+00 lineto -6.317475e+01 1.123058e+01 lineto -6.24521e+01 1.113217e+01 lineto -closepath -gsave -6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor -fill -grestore -newpath -6.317475e+01 1.123058e+01 moveto -6.158777e+01 8.116069e+00 lineto -6.19101e+01 8.177244e+00 lineto -6.381924e+01 1.13529e+01 lineto -6.317475e+01 1.123058e+01 lineto -closepath -gsave -6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor -fill -grestore -newpath -6.381924e+01 1.13529e+01 moveto -6.19101e+01 8.177244e+00 lineto -6.218538e+01 8.248871e+00 lineto -6.436967e+01 1.149612e+01 lineto -6.381924e+01 1.13529e+01 lineto -closepath -gsave -6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor -fill -grestore -newpath -6.436967e+01 1.149612e+01 moveto -6.218538e+01 8.248871e+00 lineto -6.240686e+01 8.329186e+00 lineto -6.481252e+01 1.165671e+01 lineto -6.436967e+01 1.149612e+01 lineto -closepath -gsave -6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor -fill -grestore -newpath -6.481252e+01 1.165671e+01 moveto -6.240686e+01 8.329186e+00 lineto -6.256907e+01 8.416212e+00 lineto -6.513686e+01 1.183072e+01 lineto -6.481252e+01 1.165671e+01 lineto -closepath -gsave -6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor -fill -grestore -newpath -6.513686e+01 1.183072e+01 moveto -6.256907e+01 8.416212e+00 lineto -6.266803e+01 8.507805e+00 lineto -6.533472e+01 1.201386e+01 lineto -6.513686e+01 1.183072e+01 lineto -closepath -gsave -6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor -fill -grestore -newpath -5.466528e+01 1.201386e+01 moveto -5.733197e+01 8.507805e+00 lineto -5.743093e+01 8.416212e+00 lineto -5.486314e+01 1.183072e+01 lineto -5.466528e+01 1.201386e+01 lineto -closepath -gsave -3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor -fill -grestore -newpath -5.486314e+01 1.183072e+01 moveto -5.743093e+01 8.416212e+00 lineto -5.759314e+01 8.329186e+00 lineto -5.518748e+01 1.165671e+01 lineto -5.486314e+01 1.183072e+01 lineto -closepath -gsave -4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor -fill -grestore -newpath -5.518748e+01 1.165671e+01 moveto -5.759314e+01 8.329186e+00 lineto -5.781462e+01 8.248871e+00 lineto -5.563033e+01 1.149612e+01 lineto -5.518748e+01 1.165671e+01 lineto -closepath -gsave -4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor -fill -grestore -newpath -5.563033e+01 1.149612e+01 moveto -5.781462e+01 8.248871e+00 lineto -5.80899e+01 8.177244e+00 lineto -5.618076e+01 1.13529e+01 lineto -5.563033e+01 1.149612e+01 lineto -closepath -gsave -4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor -fill -grestore -newpath -5.618076e+01 1.13529e+01 moveto -5.80899e+01 8.177244e+00 lineto -5.841223e+01 8.116069e+00 lineto -5.682525e+01 1.123058e+01 lineto -5.618076e+01 1.13529e+01 lineto -closepath -gsave -4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor -fill -grestore -newpath -5.682525e+01 1.123058e+01 moveto -5.841223e+01 8.116069e+00 lineto -5.877364e+01 8.066852e+00 lineto -5.75479e+01 1.113217e+01 lineto -5.682525e+01 1.123058e+01 lineto -closepath -gsave -5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor -fill -grestore -newpath -5.75479e+01 1.113217e+01 moveto -5.877364e+01 8.066852e+00 lineto -5.916526e+01 8.030805e+00 lineto -5.833093e+01 1.10601e+01 lineto -5.75479e+01 1.113217e+01 lineto -closepath -gsave -5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor -fill -grestore -newpath -5.833093e+01 1.10601e+01 moveto -5.916526e+01 8.030805e+00 lineto -5.957743e+01 8.008816e+00 lineto -5.915506e+01 1.101613e+01 lineto -5.833093e+01 1.10601e+01 lineto -closepath -gsave -5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor -fill -grestore -newpath -5.915506e+01 1.101613e+01 moveto -5.957743e+01 8.008816e+00 lineto -6.0e+01 8.001425e+00 lineto -6.0e+01 1.100135e+01 lineto -5.915506e+01 1.101613e+01 lineto -closepath -gsave -5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 1.400127e+01 moveto -6.0e+01 1.100135e+01 lineto -6.084494e+01 1.101613e+01 lineto -6.12673e+01 1.402344e+01 lineto -6.0e+01 1.400127e+01 lineto -closepath -gsave -6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor -fill -grestore -newpath -6.12673e+01 1.402344e+01 moveto -6.084494e+01 1.101613e+01 lineto -6.166907e+01 1.10601e+01 lineto -6.250339e+01 1.408939e+01 lineto -6.12673e+01 1.402344e+01 lineto -closepath -gsave -6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor -fill -grestore -newpath -6.250339e+01 1.408939e+01 moveto -6.166907e+01 1.10601e+01 lineto -6.24521e+01 1.113217e+01 lineto -6.367784e+01 1.419749e+01 lineto -6.250339e+01 1.408939e+01 lineto -closepath -gsave -6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor -fill -grestore -newpath -6.367784e+01 1.419749e+01 moveto -6.24521e+01 1.113217e+01 lineto -6.317475e+01 1.123058e+01 lineto -6.476174e+01 1.434509e+01 lineto -6.367784e+01 1.419749e+01 lineto -closepath -gsave -6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor -fill -grestore -newpath -6.476174e+01 1.434509e+01 moveto -6.317475e+01 1.123058e+01 lineto -6.381924e+01 1.13529e+01 lineto -6.572838e+01 1.452856e+01 lineto -6.476174e+01 1.434509e+01 lineto -closepath -gsave -6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor -fill -grestore -newpath -6.572838e+01 1.452856e+01 moveto -6.381924e+01 1.13529e+01 lineto -6.436967e+01 1.149612e+01 lineto -6.655397e+01 1.474337e+01 lineto -6.572838e+01 1.452856e+01 lineto -closepath -gsave -6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor -fill -grestore -newpath -6.655397e+01 1.474337e+01 moveto -6.436967e+01 1.149612e+01 lineto -6.481252e+01 1.165671e+01 lineto -6.721818e+01 1.498423e+01 lineto -6.655397e+01 1.474337e+01 lineto -closepath -gsave -6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor -fill -grestore -newpath -6.721818e+01 1.498423e+01 moveto -6.481252e+01 1.165671e+01 lineto -6.513686e+01 1.183072e+01 lineto -6.770465e+01 1.524522e+01 lineto -6.721818e+01 1.498423e+01 lineto -closepath -gsave -6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor -fill -grestore -newpath -6.770465e+01 1.524522e+01 moveto -6.513686e+01 1.183072e+01 lineto -6.533472e+01 1.201386e+01 lineto -6.800141e+01 1.551991e+01 lineto -6.770465e+01 1.524522e+01 lineto -closepath -gsave -6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor -fill -grestore -newpath -5.199859e+01 1.551991e+01 moveto -5.466528e+01 1.201386e+01 lineto -5.486314e+01 1.183072e+01 lineto -5.229535e+01 1.524522e+01 lineto -5.199859e+01 1.551991e+01 lineto -closepath -gsave -3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor -fill -grestore -newpath -5.229535e+01 1.524522e+01 moveto -5.486314e+01 1.183072e+01 lineto -5.518748e+01 1.165671e+01 lineto -5.278182e+01 1.498423e+01 lineto -5.229535e+01 1.524522e+01 lineto -closepath -gsave -4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor -fill -grestore -newpath -5.278182e+01 1.498423e+01 moveto -5.518748e+01 1.165671e+01 lineto -5.563033e+01 1.149612e+01 lineto -5.344603e+01 1.474337e+01 lineto -5.278182e+01 1.498423e+01 lineto -closepath -gsave -4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor -fill -grestore -newpath -5.344603e+01 1.474337e+01 moveto -5.563033e+01 1.149612e+01 lineto -5.618076e+01 1.13529e+01 lineto -5.427162e+01 1.452856e+01 lineto -5.344603e+01 1.474337e+01 lineto -closepath -gsave -4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor -fill -grestore -newpath -5.427162e+01 1.452856e+01 moveto -5.618076e+01 1.13529e+01 lineto -5.682525e+01 1.123058e+01 lineto -5.523826e+01 1.434509e+01 lineto -5.427162e+01 1.452856e+01 lineto -closepath -gsave -4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor -fill -grestore -newpath -5.523826e+01 1.434509e+01 moveto -5.682525e+01 1.123058e+01 lineto -5.75479e+01 1.113217e+01 lineto -5.632216e+01 1.419749e+01 lineto -5.523826e+01 1.434509e+01 lineto -closepath -gsave -5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor -fill -grestore -newpath -5.632216e+01 1.419749e+01 moveto -5.75479e+01 1.113217e+01 lineto -5.833093e+01 1.10601e+01 lineto -5.749661e+01 1.408939e+01 lineto -5.632216e+01 1.419749e+01 lineto -closepath -gsave -5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor -fill -grestore -newpath -5.749661e+01 1.408939e+01 moveto -5.833093e+01 1.10601e+01 lineto -5.915506e+01 1.101613e+01 lineto -5.87327e+01 1.402344e+01 lineto -5.749661e+01 1.408939e+01 lineto -closepath -gsave -5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor -fill -grestore -newpath -5.87327e+01 1.402344e+01 moveto -5.915506e+01 1.101613e+01 lineto -6.0e+01 1.100135e+01 lineto -6.0e+01 1.400127e+01 lineto -5.87327e+01 1.402344e+01 lineto -closepath -gsave -5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 1.70012e+01 moveto -6.0e+01 1.400127e+01 lineto -6.12673e+01 1.402344e+01 lineto -6.168966e+01 1.703075e+01 lineto -6.0e+01 1.70012e+01 lineto -closepath -gsave -6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor -fill -grestore -newpath -6.168966e+01 1.703075e+01 moveto -6.12673e+01 1.402344e+01 lineto -6.250339e+01 1.408939e+01 lineto -6.333772e+01 1.711868e+01 lineto -6.168966e+01 1.703075e+01 lineto -closepath -gsave -6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor -fill -grestore -newpath -6.333772e+01 1.711868e+01 moveto -6.250339e+01 1.408939e+01 lineto -6.367784e+01 1.419749e+01 lineto -6.490359e+01 1.726281e+01 lineto -6.333772e+01 1.711868e+01 lineto -closepath -gsave -6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor -fill -grestore -newpath -6.490359e+01 1.726281e+01 moveto -6.367784e+01 1.419749e+01 lineto -6.476174e+01 1.434509e+01 lineto -6.634872e+01 1.745961e+01 lineto -6.490359e+01 1.726281e+01 lineto -closepath -gsave -6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor -fill -grestore -newpath -6.634872e+01 1.745961e+01 moveto -6.476174e+01 1.434509e+01 lineto -6.572838e+01 1.452856e+01 lineto -6.763752e+01 1.770421e+01 lineto -6.634872e+01 1.745961e+01 lineto -closepath -gsave -6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor -fill -grestore -newpath -6.763752e+01 1.770421e+01 moveto -6.572838e+01 1.452856e+01 lineto -6.655397e+01 1.474337e+01 lineto -6.873826e+01 1.799061e+01 lineto -6.763752e+01 1.770421e+01 lineto -closepath -gsave -6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor -fill -grestore -newpath -6.873826e+01 1.799061e+01 moveto -6.655397e+01 1.474337e+01 lineto -6.721818e+01 1.498423e+01 lineto -6.962383e+01 1.831175e+01 lineto -6.873826e+01 1.799061e+01 lineto -closepath -gsave -6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor -fill -grestore -newpath -6.962383e+01 1.831175e+01 moveto -6.721818e+01 1.498423e+01 lineto -6.770465e+01 1.524522e+01 lineto -7.027244e+01 1.865973e+01 lineto -6.962383e+01 1.831175e+01 lineto -closepath -gsave -6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor -fill -grestore -newpath -7.027244e+01 1.865973e+01 moveto -6.770465e+01 1.524522e+01 lineto -6.800141e+01 1.551991e+01 lineto -7.06681e+01 1.902596e+01 lineto -7.027244e+01 1.865973e+01 lineto -closepath -gsave -6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor -fill -grestore -newpath -4.93319e+01 1.902596e+01 moveto -5.199859e+01 1.551991e+01 lineto -5.229535e+01 1.524522e+01 lineto -4.972756e+01 1.865973e+01 lineto -4.93319e+01 1.902596e+01 lineto -closepath -gsave -3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor -fill -grestore -newpath -4.972756e+01 1.865973e+01 moveto -5.229535e+01 1.524522e+01 lineto -5.278182e+01 1.498423e+01 lineto -5.037617e+01 1.831175e+01 lineto -4.972756e+01 1.865973e+01 lineto -closepath -gsave -4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor -fill -grestore -newpath -5.037617e+01 1.831175e+01 moveto -5.278182e+01 1.498423e+01 lineto -5.344603e+01 1.474337e+01 lineto -5.126174e+01 1.799061e+01 lineto -5.037617e+01 1.831175e+01 lineto -closepath -gsave -4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor -fill -grestore -newpath -5.126174e+01 1.799061e+01 moveto -5.344603e+01 1.474337e+01 lineto -5.427162e+01 1.452856e+01 lineto -5.236248e+01 1.770421e+01 lineto -5.126174e+01 1.799061e+01 lineto -closepath -gsave -4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor -fill -grestore -newpath -5.236248e+01 1.770421e+01 moveto -5.427162e+01 1.452856e+01 lineto -5.523826e+01 1.434509e+01 lineto -5.365128e+01 1.745961e+01 lineto -5.236248e+01 1.770421e+01 lineto -closepath -gsave -4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor -fill -grestore -newpath -5.365128e+01 1.745961e+01 moveto -5.523826e+01 1.434509e+01 lineto -5.632216e+01 1.419749e+01 lineto -5.509641e+01 1.726281e+01 lineto -5.365128e+01 1.745961e+01 lineto -closepath -gsave -5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor -fill -grestore -newpath -5.509641e+01 1.726281e+01 moveto -5.632216e+01 1.419749e+01 lineto -5.749661e+01 1.408939e+01 lineto -5.666228e+01 1.711868e+01 lineto -5.509641e+01 1.726281e+01 lineto -closepath -gsave -5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor -fill -grestore -newpath -5.666228e+01 1.711868e+01 moveto -5.749661e+01 1.408939e+01 lineto -5.87327e+01 1.402344e+01 lineto -5.831034e+01 1.703075e+01 lineto -5.666228e+01 1.711868e+01 lineto -closepath -gsave -5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor -fill -grestore -newpath -5.831034e+01 1.703075e+01 moveto -5.87327e+01 1.402344e+01 lineto -6.0e+01 1.400127e+01 lineto -6.0e+01 1.70012e+01 lineto -5.831034e+01 1.703075e+01 lineto -closepath -gsave -5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 2.000112e+01 moveto -6.0e+01 1.70012e+01 lineto -6.168966e+01 1.703075e+01 lineto -6.211202e+01 2.003806e+01 lineto -6.0e+01 2.000112e+01 lineto -closepath -gsave -6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor -fill -grestore -newpath -6.211202e+01 2.003806e+01 moveto -6.168966e+01 1.703075e+01 lineto -6.333772e+01 1.711868e+01 lineto -6.417204e+01 2.014797e+01 lineto -6.211202e+01 2.003806e+01 lineto -closepath -gsave -6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor -fill -grestore -newpath -6.417204e+01 2.014797e+01 moveto -6.333772e+01 1.711868e+01 lineto -6.490359e+01 1.726281e+01 lineto -6.612933e+01 2.032813e+01 lineto -6.417204e+01 2.014797e+01 lineto -closepath -gsave -6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor -fill -grestore -newpath -6.612933e+01 2.032813e+01 moveto -6.490359e+01 1.726281e+01 lineto -6.634872e+01 1.745961e+01 lineto -6.79357e+01 2.057412e+01 lineto -6.612933e+01 2.032813e+01 lineto -closepath -gsave -6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor -fill -grestore -newpath -6.79357e+01 2.057412e+01 moveto -6.634872e+01 1.745961e+01 lineto -6.763752e+01 1.770421e+01 lineto -6.954666e+01 2.087987e+01 lineto -6.79357e+01 2.057412e+01 lineto -closepath -gsave -6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor -fill -grestore -newpath -6.954666e+01 2.087987e+01 moveto -6.763752e+01 1.770421e+01 lineto -6.873826e+01 1.799061e+01 lineto -7.092255e+01 2.123786e+01 lineto -6.954666e+01 2.087987e+01 lineto -closepath -gsave -6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor -fill -grestore -newpath -7.092255e+01 2.123786e+01 moveto -6.873826e+01 1.799061e+01 lineto -6.962383e+01 1.831175e+01 lineto -7.202949e+01 2.163928e+01 lineto -7.092255e+01 2.123786e+01 lineto -closepath -gsave -6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor -fill -grestore -newpath -7.202949e+01 2.163928e+01 moveto -6.962383e+01 1.831175e+01 lineto -7.027244e+01 1.865973e+01 lineto -7.284023e+01 2.207423e+01 lineto -7.202949e+01 2.163928e+01 lineto -closepath -gsave -6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor -fill -grestore -newpath -7.284023e+01 2.207423e+01 moveto -7.027244e+01 1.865973e+01 lineto -7.06681e+01 1.902596e+01 lineto -7.333479e+01 2.253201e+01 lineto -7.284023e+01 2.207423e+01 lineto -closepath -gsave -6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor -fill -grestore -newpath -4.666521e+01 2.253201e+01 moveto -4.93319e+01 1.902596e+01 lineto -4.972756e+01 1.865973e+01 lineto -4.715977e+01 2.207423e+01 lineto -4.666521e+01 2.253201e+01 lineto -closepath -gsave -3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor -fill -grestore -newpath -4.715977e+01 2.207423e+01 moveto -4.972756e+01 1.865973e+01 lineto -5.037617e+01 1.831175e+01 lineto -4.797051e+01 2.163928e+01 lineto -4.715977e+01 2.207423e+01 lineto -closepath -gsave -4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor -fill -grestore -newpath -4.797051e+01 2.163928e+01 moveto -5.037617e+01 1.831175e+01 lineto -5.126174e+01 1.799061e+01 lineto -4.907745e+01 2.123786e+01 lineto -4.797051e+01 2.163928e+01 lineto -closepath -gsave -4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor -fill -grestore -newpath -4.907745e+01 2.123786e+01 moveto -5.126174e+01 1.799061e+01 lineto -5.236248e+01 1.770421e+01 lineto -5.045334e+01 2.087987e+01 lineto -4.907745e+01 2.123786e+01 lineto -closepath -gsave -4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor -fill -grestore -newpath -5.045334e+01 2.087987e+01 moveto -5.236248e+01 1.770421e+01 lineto -5.365128e+01 1.745961e+01 lineto -5.20643e+01 2.057412e+01 lineto -5.045334e+01 2.087987e+01 lineto -closepath -gsave -4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor -fill -grestore -newpath -5.20643e+01 2.057412e+01 moveto -5.365128e+01 1.745961e+01 lineto -5.509641e+01 1.726281e+01 lineto -5.387067e+01 2.032813e+01 lineto -5.20643e+01 2.057412e+01 lineto -closepath -gsave -5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor -fill -grestore -newpath -5.387067e+01 2.032813e+01 moveto -5.509641e+01 1.726281e+01 lineto -5.666228e+01 1.711868e+01 lineto -5.582796e+01 2.014797e+01 lineto -5.387067e+01 2.032813e+01 lineto -closepath -gsave -5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor -fill -grestore -newpath -5.582796e+01 2.014797e+01 moveto -5.666228e+01 1.711868e+01 lineto -5.831034e+01 1.703075e+01 lineto -5.788798e+01 2.003806e+01 lineto -5.582796e+01 2.014797e+01 lineto -closepath -gsave -5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor -fill -grestore -newpath -5.788798e+01 2.003806e+01 moveto -5.831034e+01 1.703075e+01 lineto -6.0e+01 1.70012e+01 lineto -6.0e+01 2.000112e+01 lineto -5.788798e+01 2.003806e+01 lineto -closepath -gsave -5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 2.300105e+01 moveto -6.0e+01 2.000112e+01 lineto -6.211202e+01 2.003806e+01 lineto -6.253439e+01 2.304537e+01 lineto -6.0e+01 2.300105e+01 lineto -closepath -gsave -6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor -fill -grestore -newpath -6.253439e+01 2.304537e+01 moveto -6.211202e+01 2.003806e+01 lineto -6.417204e+01 2.014797e+01 lineto -6.500637e+01 2.317726e+01 lineto -6.253439e+01 2.304537e+01 lineto -closepath -gsave -6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor -fill -grestore -newpath -6.500637e+01 2.317726e+01 moveto -6.417204e+01 2.014797e+01 lineto -6.612933e+01 2.032813e+01 lineto -6.735508e+01 2.339345e+01 lineto -6.500637e+01 2.317726e+01 lineto -closepath -gsave -6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor -fill -grestore -newpath -6.735508e+01 2.339345e+01 moveto -6.612933e+01 2.032813e+01 lineto -6.79357e+01 2.057412e+01 lineto -6.952268e+01 2.368863e+01 lineto -6.735508e+01 2.339345e+01 lineto -closepath -gsave -6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor -fill -grestore -newpath -6.952268e+01 2.368863e+01 moveto -6.79357e+01 2.057412e+01 lineto -6.954666e+01 2.087987e+01 lineto -7.14558e+01 2.405553e+01 lineto -6.952268e+01 2.368863e+01 lineto -closepath -gsave -6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor -fill -grestore -newpath -7.14558e+01 2.405553e+01 moveto -6.954666e+01 2.087987e+01 lineto -7.092255e+01 2.123786e+01 lineto -7.310684e+01 2.448511e+01 lineto -7.14558e+01 2.405553e+01 lineto -closepath -gsave -6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor -fill -grestore -newpath -7.310684e+01 2.448511e+01 moveto -7.092255e+01 2.123786e+01 lineto -7.202949e+01 2.163928e+01 lineto -7.443515e+01 2.49668e+01 lineto -7.310684e+01 2.448511e+01 lineto -closepath -gsave -6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor -fill -grestore -newpath -7.443515e+01 2.49668e+01 moveto -7.202949e+01 2.163928e+01 lineto -7.284023e+01 2.207423e+01 lineto -7.540801e+01 2.548873e+01 lineto -7.443515e+01 2.49668e+01 lineto -closepath -gsave -6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor -fill -grestore -newpath -7.540801e+01 2.548873e+01 moveto -7.284023e+01 2.207423e+01 lineto -7.333479e+01 2.253201e+01 lineto -7.600148e+01 2.603806e+01 lineto -7.540801e+01 2.548873e+01 lineto -closepath -gsave -6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor -fill -grestore -newpath -4.399852e+01 2.603806e+01 moveto -4.666521e+01 2.253201e+01 lineto -4.715977e+01 2.207423e+01 lineto -4.459199e+01 2.548873e+01 lineto -4.399852e+01 2.603806e+01 lineto -closepath -gsave -3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor -fill -grestore -newpath -4.459199e+01 2.548873e+01 moveto -4.715977e+01 2.207423e+01 lineto -4.797051e+01 2.163928e+01 lineto -4.556485e+01 2.49668e+01 lineto -4.459199e+01 2.548873e+01 lineto -closepath -gsave -4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor -fill -grestore -newpath -4.556485e+01 2.49668e+01 moveto -4.797051e+01 2.163928e+01 lineto -4.907745e+01 2.123786e+01 lineto -4.689316e+01 2.448511e+01 lineto -4.556485e+01 2.49668e+01 lineto -closepath -gsave -4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor -fill -grestore -newpath -4.689316e+01 2.448511e+01 moveto -4.907745e+01 2.123786e+01 lineto -5.045334e+01 2.087987e+01 lineto -4.85442e+01 2.405553e+01 lineto -4.689316e+01 2.448511e+01 lineto -closepath -gsave -4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor -fill -grestore -newpath -4.85442e+01 2.405553e+01 moveto -5.045334e+01 2.087987e+01 lineto -5.20643e+01 2.057412e+01 lineto -5.047732e+01 2.368863e+01 lineto -4.85442e+01 2.405553e+01 lineto -closepath -gsave -4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor -fill -grestore -newpath -5.047732e+01 2.368863e+01 moveto -5.20643e+01 2.057412e+01 lineto -5.387067e+01 2.032813e+01 lineto -5.264492e+01 2.339345e+01 lineto -5.047732e+01 2.368863e+01 lineto -closepath -gsave -5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor -fill -grestore -newpath -5.264492e+01 2.339345e+01 moveto -5.387067e+01 2.032813e+01 lineto -5.582796e+01 2.014797e+01 lineto -5.499363e+01 2.317726e+01 lineto -5.264492e+01 2.339345e+01 lineto -closepath -gsave -5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor -fill -grestore -newpath -5.499363e+01 2.317726e+01 moveto -5.582796e+01 2.014797e+01 lineto -5.788798e+01 2.003806e+01 lineto -5.746561e+01 2.304537e+01 lineto -5.499363e+01 2.317726e+01 lineto -closepath -gsave -5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor -fill -grestore -newpath -5.746561e+01 2.304537e+01 moveto -5.788798e+01 2.003806e+01 lineto -6.0e+01 2.000112e+01 lineto -6.0e+01 2.300105e+01 lineto -5.746561e+01 2.304537e+01 lineto -closepath -gsave -5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 2.600097e+01 moveto -6.0e+01 2.300105e+01 lineto -6.253439e+01 2.304537e+01 lineto -6.295675e+01 2.605269e+01 lineto -6.0e+01 2.600097e+01 lineto -closepath -gsave -6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor -fill -grestore -newpath -6.295675e+01 2.605269e+01 moveto -6.253439e+01 2.304537e+01 lineto -6.500637e+01 2.317726e+01 lineto -6.584069e+01 2.620655e+01 lineto -6.295675e+01 2.605269e+01 lineto -closepath -gsave -6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor -fill -grestore -newpath -6.584069e+01 2.620655e+01 moveto -6.500637e+01 2.317726e+01 lineto -6.735508e+01 2.339345e+01 lineto -6.858082e+01 2.645877e+01 lineto -6.584069e+01 2.620655e+01 lineto -closepath -gsave -6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor -fill -grestore -newpath -6.858082e+01 2.645877e+01 moveto -6.735508e+01 2.339345e+01 lineto -6.952268e+01 2.368863e+01 lineto -7.110966e+01 2.680314e+01 lineto -6.858082e+01 2.645877e+01 lineto -closepath -gsave -6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor -fill -grestore -newpath -7.110966e+01 2.680314e+01 moveto -6.952268e+01 2.368863e+01 lineto -7.14558e+01 2.405553e+01 lineto -7.336494e+01 2.723118e+01 lineto -7.110966e+01 2.680314e+01 lineto -closepath -gsave -6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor -fill -grestore -newpath -7.336494e+01 2.723118e+01 moveto -7.14558e+01 2.405553e+01 lineto -7.310684e+01 2.448511e+01 lineto -7.529113e+01 2.773236e+01 lineto -7.336494e+01 2.723118e+01 lineto -closepath -gsave -6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor -fill -grestore -newpath -7.529113e+01 2.773236e+01 moveto -7.310684e+01 2.448511e+01 lineto -7.443515e+01 2.49668e+01 lineto -7.684081e+01 2.829432e+01 lineto -7.529113e+01 2.773236e+01 lineto -closepath -gsave -6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor -fill -grestore -newpath -7.684081e+01 2.829432e+01 moveto -7.443515e+01 2.49668e+01 lineto -7.540801e+01 2.548873e+01 lineto -7.79758e+01 2.890324e+01 lineto -7.684081e+01 2.829432e+01 lineto -closepath -gsave -6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor -fill -grestore -newpath -7.79758e+01 2.890324e+01 moveto -7.540801e+01 2.548873e+01 lineto -7.600148e+01 2.603806e+01 lineto -7.866818e+01 2.954411e+01 lineto -7.79758e+01 2.890324e+01 lineto -closepath -gsave -6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor -fill -grestore -newpath -4.133182e+01 2.954411e+01 moveto -4.399852e+01 2.603806e+01 lineto -4.459199e+01 2.548873e+01 lineto -4.20242e+01 2.890324e+01 lineto -4.133182e+01 2.954411e+01 lineto -closepath -gsave -3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor -fill -grestore -newpath -4.20242e+01 2.890324e+01 moveto -4.459199e+01 2.548873e+01 lineto -4.556485e+01 2.49668e+01 lineto -4.315919e+01 2.829432e+01 lineto -4.20242e+01 2.890324e+01 lineto -closepath -gsave -4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor -fill -grestore -newpath -4.315919e+01 2.829432e+01 moveto -4.556485e+01 2.49668e+01 lineto -4.689316e+01 2.448511e+01 lineto -4.470887e+01 2.773236e+01 lineto -4.315919e+01 2.829432e+01 lineto -closepath -gsave -4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor -fill -grestore -newpath -4.470887e+01 2.773236e+01 moveto -4.689316e+01 2.448511e+01 lineto -4.85442e+01 2.405553e+01 lineto -4.663506e+01 2.723118e+01 lineto -4.470887e+01 2.773236e+01 lineto -closepath -gsave -4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor -fill -grestore -newpath -4.663506e+01 2.723118e+01 moveto -4.85442e+01 2.405553e+01 lineto -5.047732e+01 2.368863e+01 lineto -4.889034e+01 2.680314e+01 lineto -4.663506e+01 2.723118e+01 lineto -closepath -gsave -4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor -fill -grestore -newpath -4.889034e+01 2.680314e+01 moveto -5.047732e+01 2.368863e+01 lineto -5.264492e+01 2.339345e+01 lineto -5.141918e+01 2.645877e+01 lineto -4.889034e+01 2.680314e+01 lineto -closepath -gsave -5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor -fill -grestore -newpath -5.141918e+01 2.645877e+01 moveto -5.264492e+01 2.339345e+01 lineto -5.499363e+01 2.317726e+01 lineto -5.415931e+01 2.620655e+01 lineto -5.141918e+01 2.645877e+01 lineto -closepath -gsave -5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor -fill -grestore -newpath -5.415931e+01 2.620655e+01 moveto -5.499363e+01 2.317726e+01 lineto -5.746561e+01 2.304537e+01 lineto -5.704325e+01 2.605269e+01 lineto -5.415931e+01 2.620655e+01 lineto -closepath -gsave -5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor -fill -grestore -newpath -5.704325e+01 2.605269e+01 moveto -5.746561e+01 2.304537e+01 lineto -6.0e+01 2.300105e+01 lineto -6.0e+01 2.600097e+01 lineto -5.704325e+01 2.605269e+01 lineto -closepath -gsave -5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 2.90009e+01 moveto -6.0e+01 2.600097e+01 lineto -6.295675e+01 2.605269e+01 lineto -6.337911e+01 2.906e+01 lineto -6.0e+01 2.90009e+01 lineto -closepath -gsave -6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor -fill -grestore -newpath -6.337911e+01 2.906e+01 moveto -6.295675e+01 2.605269e+01 lineto -6.584069e+01 2.620655e+01 lineto -6.667502e+01 2.923584e+01 lineto -6.337911e+01 2.906e+01 lineto -closepath -gsave -6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor -fill -grestore -newpath -6.667502e+01 2.923584e+01 moveto -6.584069e+01 2.620655e+01 lineto -6.858082e+01 2.645877e+01 lineto -6.980656e+01 2.952409e+01 lineto -6.667502e+01 2.923584e+01 lineto -closepath -gsave -6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor -fill -grestore -newpath -6.980656e+01 2.952409e+01 moveto -6.858082e+01 2.645877e+01 lineto -7.110966e+01 2.680314e+01 lineto -7.269664e+01 2.991765e+01 lineto -6.980656e+01 2.952409e+01 lineto -closepath -gsave -6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor -fill -grestore -newpath -7.269664e+01 2.991765e+01 moveto -7.110966e+01 2.680314e+01 lineto -7.336494e+01 2.723118e+01 lineto -7.527408e+01 3.040684e+01 lineto -7.269664e+01 2.991765e+01 lineto -closepath -gsave -6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor -fill -grestore -newpath -7.527408e+01 3.040684e+01 moveto -7.336494e+01 2.723118e+01 lineto -7.529113e+01 2.773236e+01 lineto -7.747542e+01 3.09796e+01 lineto -7.527408e+01 3.040684e+01 lineto -closepath -gsave -6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor -fill -grestore -newpath -7.747542e+01 3.09796e+01 moveto -7.529113e+01 2.773236e+01 lineto -7.684081e+01 2.829432e+01 lineto -7.924646e+01 3.162184e+01 lineto -7.747542e+01 3.09796e+01 lineto -closepath -gsave -6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor -fill -grestore -newpath -7.924646e+01 3.162184e+01 moveto -7.684081e+01 2.829432e+01 lineto -7.79758e+01 2.890324e+01 lineto -8.054359e+01 3.231774e+01 lineto -7.924646e+01 3.162184e+01 lineto -closepath -gsave -6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor -fill -grestore -newpath -8.054359e+01 3.231774e+01 moveto -7.79758e+01 2.890324e+01 lineto -7.866818e+01 2.954411e+01 lineto -8.133487e+01 3.305017e+01 lineto -8.054359e+01 3.231774e+01 lineto -closepath -gsave -6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor -fill -grestore -newpath -3.866513e+01 3.305017e+01 moveto -4.133182e+01 2.954411e+01 lineto -4.20242e+01 2.890324e+01 lineto -3.945641e+01 3.231774e+01 lineto -3.866513e+01 3.305017e+01 lineto -closepath -gsave -3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor -fill -grestore -newpath -3.945641e+01 3.231774e+01 moveto -4.20242e+01 2.890324e+01 lineto -4.315919e+01 2.829432e+01 lineto -4.075354e+01 3.162184e+01 lineto -3.945641e+01 3.231774e+01 lineto -closepath -gsave -4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor -fill -grestore -newpath -4.075354e+01 3.162184e+01 moveto -4.315919e+01 2.829432e+01 lineto -4.470887e+01 2.773236e+01 lineto -4.252458e+01 3.09796e+01 lineto -4.075354e+01 3.162184e+01 lineto -closepath -gsave -4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor -fill -grestore -newpath -4.252458e+01 3.09796e+01 moveto -4.470887e+01 2.773236e+01 lineto -4.663506e+01 2.723118e+01 lineto -4.472592e+01 3.040684e+01 lineto -4.252458e+01 3.09796e+01 lineto -closepath -gsave -4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor -fill -grestore -newpath -4.472592e+01 3.040684e+01 moveto -4.663506e+01 2.723118e+01 lineto -4.889034e+01 2.680314e+01 lineto -4.730336e+01 2.991765e+01 lineto -4.472592e+01 3.040684e+01 lineto -closepath -gsave -4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor -fill -grestore -newpath -4.730336e+01 2.991765e+01 moveto -4.889034e+01 2.680314e+01 lineto -5.141918e+01 2.645877e+01 lineto -5.019344e+01 2.952409e+01 lineto -4.730336e+01 2.991765e+01 lineto -closepath -gsave -5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor -fill -grestore -newpath -5.019344e+01 2.952409e+01 moveto -5.141918e+01 2.645877e+01 lineto -5.415931e+01 2.620655e+01 lineto -5.332498e+01 2.923584e+01 lineto -5.019344e+01 2.952409e+01 lineto -closepath -gsave -5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor -fill -grestore -newpath -5.332498e+01 2.923584e+01 moveto -5.415931e+01 2.620655e+01 lineto -5.704325e+01 2.605269e+01 lineto -5.662089e+01 2.906e+01 lineto -5.332498e+01 2.923584e+01 lineto -closepath -gsave -5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor -fill -grestore -newpath -5.662089e+01 2.906e+01 moveto -5.704325e+01 2.605269e+01 lineto -6.0e+01 2.600097e+01 lineto -6.0e+01 2.90009e+01 lineto -5.662089e+01 2.906e+01 lineto -closepath -gsave -5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 3.200082e+01 moveto -6.0e+01 2.90009e+01 lineto -6.337911e+01 2.906e+01 lineto -6.380147e+01 3.206731e+01 lineto -6.0e+01 3.200082e+01 lineto -closepath -gsave -6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor -fill -grestore -newpath -6.380147e+01 3.206731e+01 moveto -6.337911e+01 2.906e+01 lineto -6.667502e+01 2.923584e+01 lineto -6.750934e+01 3.226513e+01 lineto -6.380147e+01 3.206731e+01 lineto -closepath -gsave -6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor -fill -grestore -newpath -6.750934e+01 3.226513e+01 moveto -6.667502e+01 2.923584e+01 lineto -6.980656e+01 2.952409e+01 lineto -7.103231e+01 3.258941e+01 lineto -6.750934e+01 3.226513e+01 lineto -closepath -gsave -6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor -fill -grestore -newpath -7.103231e+01 3.258941e+01 moveto -6.980656e+01 2.952409e+01 lineto -7.269664e+01 2.991765e+01 lineto -7.428362e+01 3.303216e+01 lineto -7.103231e+01 3.258941e+01 lineto -closepath -gsave -6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor -fill -grestore -newpath -7.428362e+01 3.303216e+01 moveto -7.269664e+01 2.991765e+01 lineto -7.527408e+01 3.040684e+01 lineto -7.718322e+01 3.35825e+01 lineto -7.428362e+01 3.303216e+01 lineto -closepath -gsave -6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor -fill -grestore -newpath -7.718322e+01 3.35825e+01 moveto -7.527408e+01 3.040684e+01 lineto -7.747542e+01 3.09796e+01 lineto -7.965971e+01 3.422685e+01 lineto -7.718322e+01 3.35825e+01 lineto -closepath -gsave -6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor -fill -grestore -newpath -7.965971e+01 3.422685e+01 moveto -7.747542e+01 3.09796e+01 lineto -7.924646e+01 3.162184e+01 lineto -8.165212e+01 3.494937e+01 lineto -7.965971e+01 3.422685e+01 lineto -closepath -gsave -6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor -fill -grestore -newpath -8.165212e+01 3.494937e+01 moveto -7.924646e+01 3.162184e+01 lineto -8.054359e+01 3.231774e+01 lineto -8.311138e+01 3.573225e+01 lineto -8.165212e+01 3.494937e+01 lineto -closepath -gsave -6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor -fill -grestore -newpath -8.311138e+01 3.573225e+01 moveto -8.054359e+01 3.231774e+01 lineto -8.133487e+01 3.305017e+01 lineto -8.400156e+01 3.655622e+01 lineto -8.311138e+01 3.573225e+01 lineto -closepath -gsave -6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor -fill -grestore -newpath -3.599844e+01 3.655622e+01 moveto -3.866513e+01 3.305017e+01 lineto -3.945641e+01 3.231774e+01 lineto -3.688862e+01 3.573225e+01 lineto -3.599844e+01 3.655622e+01 lineto -closepath -gsave -3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor -fill -grestore -newpath -3.688862e+01 3.573225e+01 moveto -3.945641e+01 3.231774e+01 lineto -4.075354e+01 3.162184e+01 lineto -3.834788e+01 3.494937e+01 lineto -3.688862e+01 3.573225e+01 lineto -closepath -gsave -4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor -fill -grestore -newpath -3.834788e+01 3.494937e+01 moveto -4.075354e+01 3.162184e+01 lineto -4.252458e+01 3.09796e+01 lineto -4.034029e+01 3.422685e+01 lineto -3.834788e+01 3.494937e+01 lineto -closepath -gsave -4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor -fill -grestore -newpath -4.034029e+01 3.422685e+01 moveto -4.252458e+01 3.09796e+01 lineto -4.472592e+01 3.040684e+01 lineto -4.281678e+01 3.35825e+01 lineto -4.034029e+01 3.422685e+01 lineto -closepath -gsave -4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor -fill -grestore -newpath -4.281678e+01 3.35825e+01 moveto -4.472592e+01 3.040684e+01 lineto -4.730336e+01 2.991765e+01 lineto -4.571638e+01 3.303216e+01 lineto -4.281678e+01 3.35825e+01 lineto -closepath -gsave -4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor -fill -grestore -newpath -4.571638e+01 3.303216e+01 moveto -4.730336e+01 2.991765e+01 lineto -5.019344e+01 2.952409e+01 lineto -4.896769e+01 3.258941e+01 lineto -4.571638e+01 3.303216e+01 lineto -closepath -gsave -5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor -fill -grestore -newpath -4.896769e+01 3.258941e+01 moveto -5.019344e+01 2.952409e+01 lineto -5.332498e+01 2.923584e+01 lineto -5.249066e+01 3.226513e+01 lineto -4.896769e+01 3.258941e+01 lineto -closepath -gsave -5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor -fill -grestore -newpath -5.249066e+01 3.226513e+01 moveto -5.332498e+01 2.923584e+01 lineto -5.662089e+01 2.906e+01 lineto -5.619853e+01 3.206731e+01 lineto -5.249066e+01 3.226513e+01 lineto -closepath -gsave -5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor -fill -grestore -newpath -5.619853e+01 3.206731e+01 moveto -5.662089e+01 2.906e+01 lineto -6.0e+01 2.90009e+01 lineto -6.0e+01 3.200082e+01 lineto -5.619853e+01 3.206731e+01 lineto -closepath -gsave -5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 3.500075e+01 moveto -6.0e+01 3.200082e+01 lineto -6.380147e+01 3.206731e+01 lineto -6.422384e+01 3.507462e+01 lineto -6.0e+01 3.500075e+01 lineto -closepath -gsave -6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor -fill -grestore -newpath -6.422384e+01 3.507462e+01 moveto -6.380147e+01 3.206731e+01 lineto -6.750934e+01 3.226513e+01 lineto -6.834367e+01 3.529442e+01 lineto -6.422384e+01 3.507462e+01 lineto -closepath -gsave -6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor -fill -grestore -newpath -6.834367e+01 3.529442e+01 moveto -6.750934e+01 3.226513e+01 lineto -7.103231e+01 3.258941e+01 lineto -7.225805e+01 3.565473e+01 lineto -6.834367e+01 3.529442e+01 lineto -closepath -gsave -6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor -fill -grestore -newpath -7.225805e+01 3.565473e+01 moveto -7.103231e+01 3.258941e+01 lineto -7.428362e+01 3.303216e+01 lineto -7.58706e+01 3.614668e+01 lineto -7.225805e+01 3.565473e+01 lineto -closepath -gsave -6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor -fill -grestore -newpath -7.58706e+01 3.614668e+01 moveto -7.428362e+01 3.303216e+01 lineto -7.718322e+01 3.35825e+01 lineto -7.909236e+01 3.675815e+01 lineto -7.58706e+01 3.614668e+01 lineto -closepath -gsave -6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor -fill -grestore -newpath -7.909236e+01 3.675815e+01 moveto -7.718322e+01 3.35825e+01 lineto -7.965971e+01 3.422685e+01 lineto -8.1844e+01 3.74741e+01 lineto -7.909236e+01 3.675815e+01 lineto -closepath -gsave -6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor -fill -grestore -newpath -8.1844e+01 3.74741e+01 moveto -7.965971e+01 3.422685e+01 lineto -8.165212e+01 3.494937e+01 lineto -8.405778e+01 3.827689e+01 lineto -8.1844e+01 3.74741e+01 lineto -closepath -gsave -6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor -fill -grestore -newpath -8.405778e+01 3.827689e+01 moveto -8.165212e+01 3.494937e+01 lineto -8.311138e+01 3.573225e+01 lineto -8.567917e+01 3.914675e+01 lineto -8.405778e+01 3.827689e+01 lineto -closepath -gsave -6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor -fill -grestore -newpath -8.567917e+01 3.914675e+01 moveto -8.311138e+01 3.573225e+01 lineto -8.400156e+01 3.655622e+01 lineto -8.666825e+01 4.006227e+01 lineto -8.567917e+01 3.914675e+01 lineto -closepath -gsave -6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor -fill -grestore -newpath -3.333175e+01 4.006227e+01 moveto -3.599844e+01 3.655622e+01 lineto -3.688862e+01 3.573225e+01 lineto -3.432083e+01 3.914675e+01 lineto -3.333175e+01 4.006227e+01 lineto -closepath -gsave -3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor -fill -grestore -newpath -3.432083e+01 3.914675e+01 moveto -3.688862e+01 3.573225e+01 lineto -3.834788e+01 3.494937e+01 lineto -3.594222e+01 3.827689e+01 lineto -3.432083e+01 3.914675e+01 lineto -closepath -gsave -4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor -fill -grestore -newpath -3.594222e+01 3.827689e+01 moveto -3.834788e+01 3.494937e+01 lineto -4.034029e+01 3.422685e+01 lineto -3.8156e+01 3.74741e+01 lineto -3.594222e+01 3.827689e+01 lineto -closepath -gsave -4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor -fill -grestore -newpath -3.8156e+01 3.74741e+01 moveto -4.034029e+01 3.422685e+01 lineto -4.281678e+01 3.35825e+01 lineto -4.090764e+01 3.675815e+01 lineto -3.8156e+01 3.74741e+01 lineto -closepath -gsave -4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor -fill -grestore -newpath -4.090764e+01 3.675815e+01 moveto -4.281678e+01 3.35825e+01 lineto -4.571638e+01 3.303216e+01 lineto -4.41294e+01 3.614668e+01 lineto -4.090764e+01 3.675815e+01 lineto -closepath -gsave -4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor -fill -grestore -newpath -4.41294e+01 3.614668e+01 moveto -4.571638e+01 3.303216e+01 lineto -4.896769e+01 3.258941e+01 lineto -4.774195e+01 3.565473e+01 lineto -4.41294e+01 3.614668e+01 lineto -closepath -gsave -5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor -fill -grestore -newpath -4.774195e+01 3.565473e+01 moveto -4.896769e+01 3.258941e+01 lineto -5.249066e+01 3.226513e+01 lineto -5.165633e+01 3.529442e+01 lineto -4.774195e+01 3.565473e+01 lineto -closepath -gsave -5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor -fill -grestore -newpath -5.165633e+01 3.529442e+01 moveto -5.249066e+01 3.226513e+01 lineto -5.619853e+01 3.206731e+01 lineto -5.577616e+01 3.507462e+01 lineto -5.165633e+01 3.529442e+01 lineto -closepath -gsave -5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor -fill -grestore -newpath -5.577616e+01 3.507462e+01 moveto -5.619853e+01 3.206731e+01 lineto -6.0e+01 3.200082e+01 lineto -6.0e+01 3.500075e+01 lineto -5.577616e+01 3.507462e+01 lineto -closepath -gsave -5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 3.800067e+01 moveto -6.0e+01 3.500075e+01 lineto -6.422384e+01 3.507462e+01 lineto -6.46462e+01 3.808193e+01 lineto -6.0e+01 3.800067e+01 lineto -closepath -gsave -6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor -fill -grestore -newpath -6.46462e+01 3.808193e+01 moveto -6.422384e+01 3.507462e+01 lineto -6.834367e+01 3.529442e+01 lineto -6.917799e+01 3.832371e+01 lineto -6.46462e+01 3.808193e+01 lineto -closepath -gsave -6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor -fill -grestore -newpath -6.917799e+01 3.832371e+01 moveto -6.834367e+01 3.529442e+01 lineto -7.225805e+01 3.565473e+01 lineto -7.348379e+01 3.872005e+01 lineto -6.917799e+01 3.832371e+01 lineto -closepath -gsave -6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor -fill -grestore -newpath -7.348379e+01 3.872005e+01 moveto -7.225805e+01 3.565473e+01 lineto -7.58706e+01 3.614668e+01 lineto -7.745758e+01 3.926119e+01 lineto -7.348379e+01 3.872005e+01 lineto -closepath -gsave -6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor -fill -grestore -newpath -7.745758e+01 3.926119e+01 moveto -7.58706e+01 3.614668e+01 lineto -7.909236e+01 3.675815e+01 lineto -8.10015e+01 3.993381e+01 lineto -7.745758e+01 3.926119e+01 lineto -closepath -gsave -6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor -fill -grestore -newpath -8.10015e+01 3.993381e+01 moveto -7.909236e+01 3.675815e+01 lineto -8.1844e+01 3.74741e+01 lineto -8.40283e+01 4.072135e+01 lineto -8.10015e+01 3.993381e+01 lineto -closepath -gsave -6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor -fill -grestore -newpath -8.40283e+01 4.072135e+01 moveto -8.1844e+01 3.74741e+01 lineto -8.405778e+01 3.827689e+01 lineto -8.646344e+01 4.160441e+01 lineto -8.40283e+01 4.072135e+01 lineto -closepath -gsave -6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor -fill -grestore -newpath -8.646344e+01 4.160441e+01 moveto -8.405778e+01 3.827689e+01 lineto -8.567917e+01 3.914675e+01 lineto -8.824696e+01 4.256126e+01 lineto -8.646344e+01 4.160441e+01 lineto -closepath -gsave -6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor -fill -grestore -newpath -8.824696e+01 4.256126e+01 moveto -8.567917e+01 3.914675e+01 lineto -8.666825e+01 4.006227e+01 lineto -8.933494e+01 4.356832e+01 lineto -8.824696e+01 4.256126e+01 lineto -closepath -gsave -6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor -fill -grestore -newpath -3.066506e+01 4.356832e+01 moveto -3.333175e+01 4.006227e+01 lineto -3.432083e+01 3.914675e+01 lineto -3.175304e+01 4.256126e+01 lineto -3.066506e+01 4.356832e+01 lineto -closepath -gsave -3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor -fill -grestore -newpath -3.175304e+01 4.256126e+01 moveto -3.432083e+01 3.914675e+01 lineto -3.594222e+01 3.827689e+01 lineto -3.353656e+01 4.160441e+01 lineto -3.175304e+01 4.256126e+01 lineto -closepath -gsave -4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor -fill -grestore -newpath -3.353656e+01 4.160441e+01 moveto -3.594222e+01 3.827689e+01 lineto -3.8156e+01 3.74741e+01 lineto -3.59717e+01 4.072135e+01 lineto -3.353656e+01 4.160441e+01 lineto -closepath -gsave -4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor -fill -grestore -newpath -3.59717e+01 4.072135e+01 moveto -3.8156e+01 3.74741e+01 lineto -4.090764e+01 3.675815e+01 lineto -3.89985e+01 3.993381e+01 lineto -3.59717e+01 4.072135e+01 lineto -closepath -gsave -4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor -fill -grestore -newpath -3.89985e+01 3.993381e+01 moveto -4.090764e+01 3.675815e+01 lineto -4.41294e+01 3.614668e+01 lineto -4.254242e+01 3.926119e+01 lineto -3.89985e+01 3.993381e+01 lineto -closepath -gsave -4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor -fill -grestore -newpath -4.254242e+01 3.926119e+01 moveto -4.41294e+01 3.614668e+01 lineto -4.774195e+01 3.565473e+01 lineto -4.651621e+01 3.872005e+01 lineto -4.254242e+01 3.926119e+01 lineto -closepath -gsave -5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor -fill -grestore -newpath -4.651621e+01 3.872005e+01 moveto -4.774195e+01 3.565473e+01 lineto -5.165633e+01 3.529442e+01 lineto -5.082201e+01 3.832371e+01 lineto -4.651621e+01 3.872005e+01 lineto -closepath -gsave -5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor -fill -grestore -newpath -5.082201e+01 3.832371e+01 moveto -5.165633e+01 3.529442e+01 lineto -5.577616e+01 3.507462e+01 lineto -5.53538e+01 3.808193e+01 lineto -5.082201e+01 3.832371e+01 lineto -closepath -gsave -5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor -fill -grestore -newpath -5.53538e+01 3.808193e+01 moveto -5.577616e+01 3.507462e+01 lineto -6.0e+01 3.500075e+01 lineto -6.0e+01 3.800067e+01 lineto -5.53538e+01 3.808193e+01 lineto -closepath -gsave -5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 4.10006e+01 moveto -6.0e+01 3.800067e+01 lineto -6.46462e+01 3.808193e+01 lineto -6.506856e+01 4.108925e+01 lineto -6.0e+01 4.10006e+01 lineto -closepath -gsave -6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor -fill -grestore -newpath -6.506856e+01 4.108925e+01 moveto -6.46462e+01 3.808193e+01 lineto -6.917799e+01 3.832371e+01 lineto -7.001232e+01 4.1353e+01 lineto -6.506856e+01 4.108925e+01 lineto -closepath -gsave -6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor -fill -grestore -newpath -7.001232e+01 4.1353e+01 moveto -6.917799e+01 3.832371e+01 lineto -7.348379e+01 3.872005e+01 lineto -7.470954e+01 4.178537e+01 lineto -7.001232e+01 4.1353e+01 lineto -closepath -gsave -6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor -fill -grestore -newpath -7.470954e+01 4.178537e+01 moveto -7.348379e+01 3.872005e+01 lineto -7.745758e+01 3.926119e+01 lineto -7.904456e+01 4.23757e+01 lineto -7.470954e+01 4.178537e+01 lineto -closepath -gsave -6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor -fill -grestore -newpath -7.904456e+01 4.23757e+01 moveto -7.745758e+01 3.926119e+01 lineto -8.10015e+01 3.993381e+01 lineto -8.291064e+01 4.310947e+01 lineto -7.904456e+01 4.23757e+01 lineto -closepath -gsave -6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor -fill -grestore -newpath -8.291064e+01 4.310947e+01 moveto -8.10015e+01 3.993381e+01 lineto -8.40283e+01 4.072135e+01 lineto -8.621259e+01 4.39686e+01 lineto -8.291064e+01 4.310947e+01 lineto -closepath -gsave -6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor -fill -grestore -newpath -8.621259e+01 4.39686e+01 moveto -8.40283e+01 4.072135e+01 lineto -8.646344e+01 4.160441e+01 lineto -8.886909e+01 4.493193e+01 lineto -8.621259e+01 4.39686e+01 lineto -closepath -gsave -6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor -fill -grestore -newpath -8.886909e+01 4.493193e+01 moveto -8.646344e+01 4.160441e+01 lineto -8.824696e+01 4.256126e+01 lineto -9.081474e+01 4.597576e+01 lineto -8.886909e+01 4.493193e+01 lineto -closepath -gsave -6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor -fill -grestore -newpath -9.081474e+01 4.597576e+01 moveto -8.824696e+01 4.256126e+01 lineto -8.933494e+01 4.356832e+01 lineto -9.200164e+01 4.707437e+01 lineto -9.081474e+01 4.597576e+01 lineto -closepath -gsave -6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor -fill -grestore -newpath -2.799836e+01 4.707437e+01 moveto -3.066506e+01 4.356832e+01 lineto -3.175304e+01 4.256126e+01 lineto -2.918526e+01 4.597576e+01 lineto -2.799836e+01 4.707437e+01 lineto -closepath -gsave -3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor -fill -grestore -newpath -2.918526e+01 4.597576e+01 moveto -3.175304e+01 4.256126e+01 lineto -3.353656e+01 4.160441e+01 lineto -3.113091e+01 4.493193e+01 lineto -2.918526e+01 4.597576e+01 lineto -closepath -gsave -4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor -fill -grestore -newpath -3.113091e+01 4.493193e+01 moveto -3.353656e+01 4.160441e+01 lineto -3.59717e+01 4.072135e+01 lineto -3.378741e+01 4.39686e+01 lineto -3.113091e+01 4.493193e+01 lineto -closepath -gsave -4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor -fill -grestore -newpath -3.378741e+01 4.39686e+01 moveto -3.59717e+01 4.072135e+01 lineto -3.89985e+01 3.993381e+01 lineto -3.708936e+01 4.310947e+01 lineto -3.378741e+01 4.39686e+01 lineto -closepath -gsave -4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor -fill -grestore -newpath -3.708936e+01 4.310947e+01 moveto -3.89985e+01 3.993381e+01 lineto -4.254242e+01 3.926119e+01 lineto -4.095544e+01 4.23757e+01 lineto -3.708936e+01 4.310947e+01 lineto -closepath -gsave -4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor -fill -grestore -newpath -4.095544e+01 4.23757e+01 moveto -4.254242e+01 3.926119e+01 lineto -4.651621e+01 3.872005e+01 lineto -4.529046e+01 4.178537e+01 lineto -4.095544e+01 4.23757e+01 lineto -closepath -gsave -5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor -fill -grestore -newpath -4.529046e+01 4.178537e+01 moveto -4.651621e+01 3.872005e+01 lineto -5.082201e+01 3.832371e+01 lineto -4.998768e+01 4.1353e+01 lineto -4.529046e+01 4.178537e+01 lineto -closepath -gsave -5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor -fill -grestore -newpath -4.998768e+01 4.1353e+01 moveto -5.082201e+01 3.832371e+01 lineto -5.53538e+01 3.808193e+01 lineto -5.493144e+01 4.108925e+01 lineto -4.998768e+01 4.1353e+01 lineto -closepath -gsave -5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor -fill -grestore -newpath -5.493144e+01 4.108925e+01 moveto -5.53538e+01 3.808193e+01 lineto -6.0e+01 3.800067e+01 lineto -6.0e+01 4.10006e+01 lineto -5.493144e+01 4.108925e+01 lineto -closepath -gsave -5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 4.400052e+01 moveto -6.0e+01 4.10006e+01 lineto -6.506856e+01 4.108925e+01 lineto -6.549092e+01 4.409656e+01 lineto -6.0e+01 4.400052e+01 lineto -closepath -gsave -6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor -fill -grestore -newpath -6.549092e+01 4.409656e+01 moveto -6.506856e+01 4.108925e+01 lineto -7.001232e+01 4.1353e+01 lineto -7.084664e+01 4.438229e+01 lineto -6.549092e+01 4.409656e+01 lineto -closepath -gsave -6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor -fill -grestore -newpath -7.084664e+01 4.438229e+01 moveto -7.001232e+01 4.1353e+01 lineto -7.470954e+01 4.178537e+01 lineto -7.593528e+01 4.485069e+01 lineto -7.084664e+01 4.438229e+01 lineto -closepath -gsave -6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor -fill -grestore -newpath -7.593528e+01 4.485069e+01 moveto -7.470954e+01 4.178537e+01 lineto -7.904456e+01 4.23757e+01 lineto -8.063154e+01 4.549021e+01 lineto -7.593528e+01 4.485069e+01 lineto -closepath -gsave -6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor -fill -grestore -newpath -8.063154e+01 4.549021e+01 moveto -7.904456e+01 4.23757e+01 lineto -8.291064e+01 4.310947e+01 lineto -8.481978e+01 4.628512e+01 lineto -8.063154e+01 4.549021e+01 lineto -closepath -gsave -6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor -fill -grestore -newpath -8.481978e+01 4.628512e+01 moveto -8.291064e+01 4.310947e+01 lineto -8.621259e+01 4.39686e+01 lineto -8.839688e+01 4.721584e+01 lineto -8.481978e+01 4.628512e+01 lineto -closepath -gsave -6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor -fill -grestore -newpath -8.839688e+01 4.721584e+01 moveto -8.621259e+01 4.39686e+01 lineto -8.886909e+01 4.493193e+01 lineto -9.127475e+01 4.825946e+01 lineto -8.839688e+01 4.721584e+01 lineto -closepath -gsave -6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor -fill -grestore -newpath -9.127475e+01 4.825946e+01 moveto -8.886909e+01 4.493193e+01 lineto -9.081474e+01 4.597576e+01 lineto -9.338253e+01 4.939026e+01 lineto -9.127475e+01 4.825946e+01 lineto -closepath -gsave -6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor -fill -grestore -newpath -9.338253e+01 4.939026e+01 moveto -9.081474e+01 4.597576e+01 lineto -9.200164e+01 4.707437e+01 lineto -9.466833e+01 5.058042e+01 lineto -9.338253e+01 4.939026e+01 lineto -closepath -gsave -6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor -fill -grestore -newpath -2.533167e+01 5.058042e+01 moveto -2.799836e+01 4.707437e+01 lineto -2.918526e+01 4.597576e+01 lineto -2.661747e+01 4.939026e+01 lineto -2.533167e+01 5.058042e+01 lineto -closepath -gsave -3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor -fill -grestore -newpath -2.661747e+01 4.939026e+01 moveto -2.918526e+01 4.597576e+01 lineto -3.113091e+01 4.493193e+01 lineto -2.872525e+01 4.825946e+01 lineto -2.661747e+01 4.939026e+01 lineto -closepath -gsave -4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor -fill -grestore -newpath -2.872525e+01 4.825946e+01 moveto -3.113091e+01 4.493193e+01 lineto -3.378741e+01 4.39686e+01 lineto -3.160312e+01 4.721584e+01 lineto -2.872525e+01 4.825946e+01 lineto -closepath -gsave -4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor -fill -grestore -newpath -3.160312e+01 4.721584e+01 moveto -3.378741e+01 4.39686e+01 lineto -3.708936e+01 4.310947e+01 lineto -3.518022e+01 4.628512e+01 lineto -3.160312e+01 4.721584e+01 lineto -closepath -gsave -4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor -fill -grestore -newpath -3.518022e+01 4.628512e+01 moveto -3.708936e+01 4.310947e+01 lineto -4.095544e+01 4.23757e+01 lineto -3.936846e+01 4.549021e+01 lineto -3.518022e+01 4.628512e+01 lineto -closepath -gsave -4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor -fill -grestore -newpath -3.936846e+01 4.549021e+01 moveto -4.095544e+01 4.23757e+01 lineto -4.529046e+01 4.178537e+01 lineto -4.406472e+01 4.485069e+01 lineto -3.936846e+01 4.549021e+01 lineto -closepath -gsave -5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor -fill -grestore -newpath -4.406472e+01 4.485069e+01 moveto -4.529046e+01 4.178537e+01 lineto -4.998768e+01 4.1353e+01 lineto -4.915336e+01 4.438229e+01 lineto -4.406472e+01 4.485069e+01 lineto -closepath -gsave -5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor -fill -grestore -newpath -4.915336e+01 4.438229e+01 moveto -4.998768e+01 4.1353e+01 lineto -5.493144e+01 4.108925e+01 lineto -5.450908e+01 4.409656e+01 lineto -4.915336e+01 4.438229e+01 lineto -closepath -gsave -5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor -fill -grestore -newpath -5.450908e+01 4.409656e+01 moveto -5.493144e+01 4.108925e+01 lineto -6.0e+01 4.10006e+01 lineto -6.0e+01 4.400052e+01 lineto -5.450908e+01 4.409656e+01 lineto -closepath -gsave -5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 4.700045e+01 moveto -6.0e+01 4.400052e+01 lineto -6.549092e+01 4.409656e+01 lineto -6.591329e+01 4.710387e+01 lineto -6.0e+01 4.700045e+01 lineto -closepath -gsave -6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor -fill -grestore -newpath -6.591329e+01 4.710387e+01 moveto -6.549092e+01 4.409656e+01 lineto -7.084664e+01 4.438229e+01 lineto -7.168097e+01 4.741158e+01 lineto -6.591329e+01 4.710387e+01 lineto -closepath -gsave -6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor -fill -grestore -newpath -7.168097e+01 4.741158e+01 moveto -7.084664e+01 4.438229e+01 lineto -7.593528e+01 4.485069e+01 lineto -7.716102e+01 4.791601e+01 lineto -7.168097e+01 4.741158e+01 lineto -closepath -gsave -6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor -fill -grestore -newpath -7.716102e+01 4.791601e+01 moveto -7.593528e+01 4.485069e+01 lineto -8.063154e+01 4.549021e+01 lineto -8.221852e+01 4.860472e+01 lineto -7.716102e+01 4.791601e+01 lineto -closepath -gsave -6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor -fill -grestore -newpath -8.221852e+01 4.860472e+01 moveto -8.063154e+01 4.549021e+01 lineto -8.481978e+01 4.628512e+01 lineto -8.672892e+01 4.946078e+01 lineto -8.221852e+01 4.860472e+01 lineto -closepath -gsave -6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor -fill -grestore -newpath -8.672892e+01 4.946078e+01 moveto -8.481978e+01 4.628512e+01 lineto -8.839688e+01 4.721584e+01 lineto -9.058117e+01 5.046309e+01 lineto -8.672892e+01 4.946078e+01 lineto -closepath -gsave -6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor -fill -grestore -newpath -9.058117e+01 5.046309e+01 moveto -8.839688e+01 4.721584e+01 lineto -9.127475e+01 4.825946e+01 lineto -9.368041e+01 5.158698e+01 lineto -9.058117e+01 5.046309e+01 lineto -closepath -gsave -6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor -fill -grestore -newpath -9.368041e+01 5.158698e+01 moveto -9.127475e+01 4.825946e+01 lineto -9.338253e+01 4.939026e+01 lineto -9.595032e+01 5.280477e+01 lineto -9.368041e+01 5.158698e+01 lineto -closepath -gsave -6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor -fill -grestore -newpath -9.595032e+01 5.280477e+01 moveto -9.338253e+01 4.939026e+01 lineto -9.466833e+01 5.058042e+01 lineto -9.733502e+01 5.408648e+01 lineto -9.595032e+01 5.280477e+01 lineto -closepath -gsave -6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor -fill -grestore -newpath -2.266498e+01 5.408648e+01 moveto -2.533167e+01 5.058042e+01 lineto -2.661747e+01 4.939026e+01 lineto -2.404968e+01 5.280477e+01 lineto -2.266498e+01 5.408648e+01 lineto -closepath -gsave -3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor -fill -grestore -newpath -2.404968e+01 5.280477e+01 moveto -2.661747e+01 4.939026e+01 lineto -2.872525e+01 4.825946e+01 lineto -2.631959e+01 5.158698e+01 lineto -2.404968e+01 5.280477e+01 lineto -closepath -gsave -4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor -fill -grestore -newpath -2.631959e+01 5.158698e+01 moveto -2.872525e+01 4.825946e+01 lineto -3.160312e+01 4.721584e+01 lineto -2.941883e+01 5.046309e+01 lineto -2.631959e+01 5.158698e+01 lineto -closepath -gsave -4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor -fill -grestore -newpath -2.941883e+01 5.046309e+01 moveto -3.160312e+01 4.721584e+01 lineto -3.518022e+01 4.628512e+01 lineto -3.327108e+01 4.946078e+01 lineto -2.941883e+01 5.046309e+01 lineto -closepath -gsave -4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor -fill -grestore -newpath -3.327108e+01 4.946078e+01 moveto -3.518022e+01 4.628512e+01 lineto -3.936846e+01 4.549021e+01 lineto -3.778148e+01 4.860472e+01 lineto -3.327108e+01 4.946078e+01 lineto -closepath -gsave -4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor -fill -grestore -newpath -3.778148e+01 4.860472e+01 moveto -3.936846e+01 4.549021e+01 lineto -4.406472e+01 4.485069e+01 lineto -4.283898e+01 4.791601e+01 lineto -3.778148e+01 4.860472e+01 lineto -closepath -gsave -5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor -fill -grestore -newpath -4.283898e+01 4.791601e+01 moveto -4.406472e+01 4.485069e+01 lineto -4.915336e+01 4.438229e+01 lineto -4.831903e+01 4.741158e+01 lineto -4.283898e+01 4.791601e+01 lineto -closepath -gsave -5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor -fill -grestore -newpath -4.831903e+01 4.741158e+01 moveto -4.915336e+01 4.438229e+01 lineto -5.450908e+01 4.409656e+01 lineto -5.408671e+01 4.710387e+01 lineto -4.831903e+01 4.741158e+01 lineto -closepath -gsave -5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor -fill -grestore -newpath -5.408671e+01 4.710387e+01 moveto -5.450908e+01 4.409656e+01 lineto -6.0e+01 4.400052e+01 lineto -6.0e+01 4.700045e+01 lineto -5.408671e+01 4.710387e+01 lineto -closepath -gsave -5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 5.000037e+01 moveto -6.0e+01 4.700045e+01 lineto -6.591329e+01 4.710387e+01 lineto -6.633565e+01 5.011118e+01 lineto -6.0e+01 5.000037e+01 lineto -closepath -gsave -6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor -fill -grestore -newpath -6.633565e+01 5.011118e+01 moveto -6.591329e+01 4.710387e+01 lineto -7.168097e+01 4.741158e+01 lineto -7.251529e+01 5.044087e+01 lineto -6.633565e+01 5.011118e+01 lineto -closepath -gsave -6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor -fill -grestore -newpath -7.251529e+01 5.044087e+01 moveto -7.168097e+01 4.741158e+01 lineto -7.716102e+01 4.791601e+01 lineto -7.838677e+01 5.098132e+01 lineto -7.251529e+01 5.044087e+01 lineto -closepath -gsave -6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor -fill -grestore -newpath -7.838677e+01 5.098132e+01 moveto -7.716102e+01 4.791601e+01 lineto -8.221852e+01 4.860472e+01 lineto -8.38055e+01 5.171924e+01 lineto -7.838677e+01 5.098132e+01 lineto -closepath -gsave -6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor -fill -grestore -newpath -8.38055e+01 5.171924e+01 moveto -8.221852e+01 4.860472e+01 lineto -8.672892e+01 4.946078e+01 lineto -8.863806e+01 5.263644e+01 lineto -8.38055e+01 5.171924e+01 lineto -closepath -gsave -6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor -fill -grestore -newpath -8.863806e+01 5.263644e+01 moveto -8.672892e+01 4.946078e+01 lineto -9.058117e+01 5.046309e+01 lineto -9.276546e+01 5.371034e+01 lineto -8.863806e+01 5.263644e+01 lineto -closepath -gsave -6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor -fill -grestore -newpath -9.276546e+01 5.371034e+01 moveto -9.058117e+01 5.046309e+01 lineto -9.368041e+01 5.158698e+01 lineto -9.608606e+01 5.49145e+01 lineto -9.276546e+01 5.371034e+01 lineto -closepath -gsave -6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor -fill -grestore -newpath -9.608606e+01 5.49145e+01 moveto -9.368041e+01 5.158698e+01 lineto -9.595032e+01 5.280477e+01 lineto -9.851811e+01 5.621927e+01 lineto -9.608606e+01 5.49145e+01 lineto -closepath -gsave -6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor -fill -grestore -newpath -9.851811e+01 5.621927e+01 moveto -9.595032e+01 5.280477e+01 lineto -9.733502e+01 5.408648e+01 lineto -1.000017e+02 5.759253e+01 lineto -9.851811e+01 5.621927e+01 lineto -closepath -gsave -6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor -fill -grestore -newpath -1.999829e+01 5.759253e+01 moveto -2.266498e+01 5.408648e+01 lineto -2.404968e+01 5.280477e+01 lineto -2.148189e+01 5.621927e+01 lineto -1.999829e+01 5.759253e+01 lineto -closepath -gsave -3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor -fill -grestore -newpath -2.148189e+01 5.621927e+01 moveto -2.404968e+01 5.280477e+01 lineto -2.631959e+01 5.158698e+01 lineto -2.391394e+01 5.49145e+01 lineto -2.148189e+01 5.621927e+01 lineto -closepath -gsave -4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor -fill -grestore -newpath -2.391394e+01 5.49145e+01 moveto -2.631959e+01 5.158698e+01 lineto -2.941883e+01 5.046309e+01 lineto -2.723454e+01 5.371034e+01 lineto -2.391394e+01 5.49145e+01 lineto -closepath -gsave -4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor -fill -grestore -newpath -2.723454e+01 5.371034e+01 moveto -2.941883e+01 5.046309e+01 lineto -3.327108e+01 4.946078e+01 lineto -3.136194e+01 5.263644e+01 lineto -2.723454e+01 5.371034e+01 lineto -closepath -gsave -4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor -fill -grestore -newpath -3.136194e+01 5.263644e+01 moveto -3.327108e+01 4.946078e+01 lineto -3.778148e+01 4.860472e+01 lineto -3.61945e+01 5.171924e+01 lineto -3.136194e+01 5.263644e+01 lineto -closepath -gsave -4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor -fill -grestore -newpath -3.61945e+01 5.171924e+01 moveto -3.778148e+01 4.860472e+01 lineto -4.283898e+01 4.791601e+01 lineto -4.161323e+01 5.098132e+01 lineto -3.61945e+01 5.171924e+01 lineto -closepath -gsave -5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor -fill -grestore -newpath -4.161323e+01 5.098132e+01 moveto -4.283898e+01 4.791601e+01 lineto -4.831903e+01 4.741158e+01 lineto -4.748471e+01 5.044087e+01 lineto -4.161323e+01 5.098132e+01 lineto -closepath -gsave -5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor -fill -grestore -newpath -4.748471e+01 5.044087e+01 moveto -4.831903e+01 4.741158e+01 lineto -5.408671e+01 4.710387e+01 lineto -5.366435e+01 5.011118e+01 lineto -4.748471e+01 5.044087e+01 lineto -closepath -gsave -5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor -fill -grestore -newpath -5.366435e+01 5.011118e+01 moveto -5.408671e+01 4.710387e+01 lineto -6.0e+01 4.700045e+01 lineto -6.0e+01 5.000037e+01 lineto -5.366435e+01 5.011118e+01 lineto -closepath -gsave -5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 5.30003e+01 moveto -6.0e+01 5.000037e+01 lineto -6.633565e+01 5.011118e+01 lineto -6.675801e+01 5.311849e+01 lineto -6.0e+01 5.30003e+01 lineto -closepath -gsave -6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor -fill -grestore -newpath -6.675801e+01 5.311849e+01 moveto -6.633565e+01 5.011118e+01 lineto -7.251529e+01 5.044087e+01 lineto -7.334962e+01 5.347016e+01 lineto -6.675801e+01 5.311849e+01 lineto -closepath -gsave -6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor -fill -grestore -newpath -7.334962e+01 5.347016e+01 moveto -7.251529e+01 5.044087e+01 lineto -7.838677e+01 5.098132e+01 lineto -7.961251e+01 5.404664e+01 lineto -7.334962e+01 5.347016e+01 lineto -closepath -gsave -6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor -fill -grestore -newpath -7.961251e+01 5.404664e+01 moveto -7.838677e+01 5.098132e+01 lineto -8.38055e+01 5.171924e+01 lineto -8.539248e+01 5.483375e+01 lineto -7.961251e+01 5.404664e+01 lineto -closepath -gsave -6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor -fill -grestore -newpath -8.539248e+01 5.483375e+01 moveto -8.38055e+01 5.171924e+01 lineto -8.863806e+01 5.263644e+01 lineto -9.05472e+01 5.581209e+01 lineto -8.539248e+01 5.483375e+01 lineto -closepath -gsave -6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor -fill -grestore -newpath -9.05472e+01 5.581209e+01 moveto -8.863806e+01 5.263644e+01 lineto -9.276546e+01 5.371034e+01 lineto -9.494975e+01 5.695759e+01 lineto -9.05472e+01 5.581209e+01 lineto -closepath -gsave -6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor -fill -grestore -newpath -9.494975e+01 5.695759e+01 moveto -9.276546e+01 5.371034e+01 lineto -9.608606e+01 5.49145e+01 lineto -9.849172e+01 5.824202e+01 lineto -9.494975e+01 5.695759e+01 lineto -closepath -gsave -6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor -fill -grestore -newpath -9.849172e+01 5.824202e+01 moveto -9.608606e+01 5.49145e+01 lineto -9.851811e+01 5.621927e+01 lineto -1.010859e+02 5.963378e+01 lineto -9.849172e+01 5.824202e+01 lineto -closepath -gsave -6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor -fill -grestore -newpath -1.010859e+02 5.963378e+01 moveto -9.851811e+01 5.621927e+01 lineto -1.000017e+02 5.759253e+01 lineto -1.026684e+02 6.109858e+01 lineto -1.010859e+02 5.963378e+01 lineto -closepath -gsave -6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor -fill -grestore -newpath -1.73316e+01 6.109858e+01 moveto -1.999829e+01 5.759253e+01 lineto -2.148189e+01 5.621927e+01 lineto -1.89141e+01 5.963378e+01 lineto -1.73316e+01 6.109858e+01 lineto -closepath -gsave -3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor -fill -grestore -newpath -1.89141e+01 5.963378e+01 moveto -2.148189e+01 5.621927e+01 lineto -2.391394e+01 5.49145e+01 lineto -2.150828e+01 5.824202e+01 lineto -1.89141e+01 5.963378e+01 lineto -closepath -gsave -4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor -fill -grestore -newpath -2.150828e+01 5.824202e+01 moveto -2.391394e+01 5.49145e+01 lineto -2.723454e+01 5.371034e+01 lineto -2.505025e+01 5.695759e+01 lineto -2.150828e+01 5.824202e+01 lineto -closepath -gsave -4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor -fill -grestore -newpath -2.505025e+01 5.695759e+01 moveto -2.723454e+01 5.371034e+01 lineto -3.136194e+01 5.263644e+01 lineto -2.94528e+01 5.581209e+01 lineto -2.505025e+01 5.695759e+01 lineto -closepath -gsave -4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor -fill -grestore -newpath -2.94528e+01 5.581209e+01 moveto -3.136194e+01 5.263644e+01 lineto -3.61945e+01 5.171924e+01 lineto -3.460752e+01 5.483375e+01 lineto -2.94528e+01 5.581209e+01 lineto -closepath -gsave -4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor -fill -grestore -newpath -3.460752e+01 5.483375e+01 moveto -3.61945e+01 5.171924e+01 lineto -4.161323e+01 5.098132e+01 lineto -4.038749e+01 5.404664e+01 lineto -3.460752e+01 5.483375e+01 lineto -closepath -gsave -5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor -fill -grestore -newpath -4.038749e+01 5.404664e+01 moveto -4.161323e+01 5.098132e+01 lineto -4.748471e+01 5.044087e+01 lineto -4.665038e+01 5.347016e+01 lineto -4.038749e+01 5.404664e+01 lineto -closepath -gsave -5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor -fill -grestore -newpath -4.665038e+01 5.347016e+01 moveto -4.748471e+01 5.044087e+01 lineto -5.366435e+01 5.011118e+01 lineto -5.324199e+01 5.311849e+01 lineto -4.665038e+01 5.347016e+01 lineto -closepath -gsave -5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor -fill -grestore -newpath -5.324199e+01 5.311849e+01 moveto -5.366435e+01 5.011118e+01 lineto -6.0e+01 5.000037e+01 lineto -6.0e+01 5.30003e+01 lineto -5.324199e+01 5.311849e+01 lineto -closepath -gsave -5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 5.600022e+01 moveto -6.0e+01 5.30003e+01 lineto -6.675801e+01 5.311849e+01 lineto -6.718037e+01 5.61258e+01 lineto -6.0e+01 5.600022e+01 lineto -closepath -gsave -6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor -fill -grestore -newpath -6.718037e+01 5.61258e+01 moveto -6.675801e+01 5.311849e+01 lineto -7.334962e+01 5.347016e+01 lineto -7.418394e+01 5.649945e+01 lineto -6.718037e+01 5.61258e+01 lineto -closepath -gsave -6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor -fill -grestore -newpath -7.418394e+01 5.649945e+01 moveto -7.334962e+01 5.347016e+01 lineto -7.961251e+01 5.404664e+01 lineto -8.083826e+01 5.711196e+01 lineto -7.418394e+01 5.649945e+01 lineto -closepath -gsave -6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor -fill -grestore -newpath -8.083826e+01 5.711196e+01 moveto -7.961251e+01 5.404664e+01 lineto -8.539248e+01 5.483375e+01 lineto -8.697946e+01 5.794826e+01 lineto -8.083826e+01 5.711196e+01 lineto -closepath -gsave -6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor -fill -grestore -newpath -8.697946e+01 5.794826e+01 moveto -8.539248e+01 5.483375e+01 lineto -9.05472e+01 5.581209e+01 lineto -9.245634e+01 5.898775e+01 lineto -8.697946e+01 5.794826e+01 lineto -closepath -gsave -6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor -fill -grestore -newpath -9.245634e+01 5.898775e+01 moveto -9.05472e+01 5.581209e+01 lineto -9.494975e+01 5.695759e+01 lineto -9.713404e+01 6.020483e+01 lineto -9.245634e+01 5.898775e+01 lineto -closepath -gsave -6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor -fill -grestore -newpath -9.713404e+01 6.020483e+01 moveto -9.494975e+01 5.695759e+01 lineto -9.849172e+01 5.824202e+01 lineto -1.008974e+02 6.156955e+01 lineto -9.713404e+01 6.020483e+01 lineto -closepath -gsave -6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor -fill -grestore -newpath -1.008974e+02 6.156955e+01 moveto -9.849172e+01 5.824202e+01 lineto -1.010859e+02 5.963378e+01 lineto -1.036537e+02 6.304828e+01 lineto -1.008974e+02 6.156955e+01 lineto -closepath -gsave -6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor -fill -grestore -newpath -1.036537e+02 6.304828e+01 moveto -1.010859e+02 5.963378e+01 lineto -1.026684e+02 6.109858e+01 lineto -1.053351e+02 6.460463e+01 lineto -1.036537e+02 6.304828e+01 lineto -closepath -gsave -6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor -fill -grestore -newpath -1.466491e+01 6.460463e+01 moveto -1.73316e+01 6.109858e+01 lineto -1.89141e+01 5.963378e+01 lineto -1.634631e+01 6.304828e+01 lineto -1.466491e+01 6.460463e+01 lineto -closepath -gsave -3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor -fill -grestore -newpath -1.634631e+01 6.304828e+01 moveto -1.89141e+01 5.963378e+01 lineto -2.150828e+01 5.824202e+01 lineto -1.910262e+01 6.156955e+01 lineto -1.634631e+01 6.304828e+01 lineto -closepath -gsave -4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor -fill -grestore -newpath -1.910262e+01 6.156955e+01 moveto -2.150828e+01 5.824202e+01 lineto -2.505025e+01 5.695759e+01 lineto -2.286596e+01 6.020483e+01 lineto -1.910262e+01 6.156955e+01 lineto -closepath -gsave -4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor -fill -grestore -newpath -2.286596e+01 6.020483e+01 moveto -2.505025e+01 5.695759e+01 lineto -2.94528e+01 5.581209e+01 lineto -2.754366e+01 5.898775e+01 lineto -2.286596e+01 6.020483e+01 lineto -closepath -gsave -4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor -fill -grestore -newpath -2.754366e+01 5.898775e+01 moveto -2.94528e+01 5.581209e+01 lineto -3.460752e+01 5.483375e+01 lineto -3.302054e+01 5.794826e+01 lineto -2.754366e+01 5.898775e+01 lineto -closepath -gsave -4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor -fill -grestore -newpath -3.302054e+01 5.794826e+01 moveto -3.460752e+01 5.483375e+01 lineto -4.038749e+01 5.404664e+01 lineto -3.916174e+01 5.711196e+01 lineto -3.302054e+01 5.794826e+01 lineto -closepath -gsave -5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor -fill -grestore -newpath -3.916174e+01 5.711196e+01 moveto -4.038749e+01 5.404664e+01 lineto -4.665038e+01 5.347016e+01 lineto -4.581606e+01 5.649945e+01 lineto -3.916174e+01 5.711196e+01 lineto -closepath -gsave -5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor -fill -grestore -newpath -4.581606e+01 5.649945e+01 moveto -4.665038e+01 5.347016e+01 lineto -5.324199e+01 5.311849e+01 lineto -5.281963e+01 5.61258e+01 lineto -4.581606e+01 5.649945e+01 lineto -closepath -gsave -5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor -fill -grestore -newpath -5.281963e+01 5.61258e+01 moveto -5.324199e+01 5.311849e+01 lineto -6.0e+01 5.30003e+01 lineto -6.0e+01 5.600022e+01 lineto -5.281963e+01 5.61258e+01 lineto -closepath -gsave -5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 5.900015e+01 moveto -6.0e+01 5.600022e+01 lineto -6.718037e+01 5.61258e+01 lineto -6.760274e+01 5.913312e+01 lineto -6.0e+01 5.900015e+01 lineto -closepath -gsave -6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor -fill -grestore -newpath -6.760274e+01 5.913312e+01 moveto -6.718037e+01 5.61258e+01 lineto -7.418394e+01 5.649945e+01 lineto -7.501827e+01 5.952874e+01 lineto -6.760274e+01 5.913312e+01 lineto -closepath -gsave -6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor -fill -grestore -newpath -7.501827e+01 5.952874e+01 moveto -7.418394e+01 5.649945e+01 lineto -8.083826e+01 5.711196e+01 lineto -8.2064e+01 6.017728e+01 lineto -7.501827e+01 5.952874e+01 lineto -closepath -gsave -6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor -fill -grestore -newpath -8.2064e+01 6.017728e+01 moveto -8.083826e+01 5.711196e+01 lineto -8.697946e+01 5.794826e+01 lineto -8.856644e+01 6.106277e+01 lineto -8.2064e+01 6.017728e+01 lineto -closepath -gsave -6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor -fill -grestore -newpath -8.856644e+01 6.106277e+01 moveto -8.697946e+01 5.794826e+01 lineto -9.245634e+01 5.898775e+01 lineto -9.436549e+01 6.216341e+01 lineto -8.856644e+01 6.106277e+01 lineto -closepath -gsave -6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor -fill -grestore -newpath -9.436549e+01 6.216341e+01 moveto -9.245634e+01 5.898775e+01 lineto -9.713404e+01 6.020483e+01 lineto -9.931834e+01 6.345208e+01 lineto -9.436549e+01 6.216341e+01 lineto -closepath -gsave -6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor -fill -grestore -newpath -9.931834e+01 6.345208e+01 moveto -9.713404e+01 6.020483e+01 lineto -1.008974e+02 6.156955e+01 lineto -1.03303e+02 6.489707e+01 lineto -9.931834e+01 6.345208e+01 lineto -closepath -gsave -6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor -fill -grestore -newpath -1.03303e+02 6.489707e+01 moveto -1.008974e+02 6.156955e+01 lineto -1.036537e+02 6.304828e+01 lineto -1.062215e+02 6.646279e+01 lineto -1.03303e+02 6.489707e+01 lineto -closepath -gsave -6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor -fill -grestore -newpath -1.062215e+02 6.646279e+01 moveto -1.036537e+02 6.304828e+01 lineto -1.053351e+02 6.460463e+01 lineto -1.080018e+02 6.811068e+01 lineto -1.062215e+02 6.646279e+01 lineto -closepath -gsave -6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor -fill -grestore -newpath -1.199821e+01 6.811068e+01 moveto -1.466491e+01 6.460463e+01 lineto -1.634631e+01 6.304828e+01 lineto -1.377852e+01 6.646279e+01 lineto -1.199821e+01 6.811068e+01 lineto -closepath -gsave -3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor -fill -grestore -newpath -1.377852e+01 6.646279e+01 moveto -1.634631e+01 6.304828e+01 lineto -1.910262e+01 6.156955e+01 lineto -1.669696e+01 6.489707e+01 lineto -1.377852e+01 6.646279e+01 lineto -closepath -gsave -4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor -fill -grestore -newpath -1.669696e+01 6.489707e+01 moveto -1.910262e+01 6.156955e+01 lineto -2.286596e+01 6.020483e+01 lineto -2.068166e+01 6.345208e+01 lineto -1.669696e+01 6.489707e+01 lineto -closepath -gsave -4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor -fill -grestore -newpath -2.068166e+01 6.345208e+01 moveto -2.286596e+01 6.020483e+01 lineto -2.754366e+01 5.898775e+01 lineto -2.563451e+01 6.216341e+01 lineto -2.068166e+01 6.345208e+01 lineto -closepath -gsave -4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor -fill -grestore -newpath -2.563451e+01 6.216341e+01 moveto -2.754366e+01 5.898775e+01 lineto -3.302054e+01 5.794826e+01 lineto -3.143356e+01 6.106277e+01 lineto -2.563451e+01 6.216341e+01 lineto -closepath -gsave -4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor -fill -grestore -newpath -3.143356e+01 6.106277e+01 moveto -3.302054e+01 5.794826e+01 lineto -3.916174e+01 5.711196e+01 lineto -3.7936e+01 6.017728e+01 lineto -3.143356e+01 6.106277e+01 lineto -closepath -gsave -5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor -fill -grestore -newpath -3.7936e+01 6.017728e+01 moveto -3.916174e+01 5.711196e+01 lineto -4.581606e+01 5.649945e+01 lineto -4.498173e+01 5.952874e+01 lineto -3.7936e+01 6.017728e+01 lineto -closepath -gsave -5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor -fill -grestore -newpath -4.498173e+01 5.952874e+01 moveto -4.581606e+01 5.649945e+01 lineto -5.281963e+01 5.61258e+01 lineto -5.239726e+01 5.913312e+01 lineto -4.498173e+01 5.952874e+01 lineto -closepath -gsave -5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor -fill -grestore -newpath -5.239726e+01 5.913312e+01 moveto -5.281963e+01 5.61258e+01 lineto -6.0e+01 5.600022e+01 lineto -6.0e+01 5.900015e+01 lineto -5.239726e+01 5.913312e+01 lineto -closepath -gsave -5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 6.200007e+01 moveto -6.0e+01 5.900015e+01 lineto -6.760274e+01 5.913312e+01 lineto -6.80251e+01 6.214043e+01 lineto -6.0e+01 6.200007e+01 lineto -closepath -gsave -6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor -fill -grestore -newpath -6.80251e+01 6.214043e+01 moveto -6.760274e+01 5.913312e+01 lineto -7.501827e+01 5.952874e+01 lineto -7.585259e+01 6.255803e+01 lineto -6.80251e+01 6.214043e+01 lineto -closepath -gsave -6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor -fill -grestore -newpath -7.585259e+01 6.255803e+01 moveto -7.501827e+01 5.952874e+01 lineto -8.2064e+01 6.017728e+01 lineto -8.328974e+01 6.32426e+01 lineto -7.585259e+01 6.255803e+01 lineto -closepath -gsave -6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor -fill -grestore -newpath -8.328974e+01 6.32426e+01 moveto -8.2064e+01 6.017728e+01 lineto -8.856644e+01 6.106277e+01 lineto -9.015342e+01 6.417728e+01 lineto -8.328974e+01 6.32426e+01 lineto -closepath -gsave -6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor -fill -grestore -newpath -9.015342e+01 6.417728e+01 moveto -8.856644e+01 6.106277e+01 lineto -9.436549e+01 6.216341e+01 lineto -9.627463e+01 6.533906e+01 lineto -9.015342e+01 6.417728e+01 lineto -closepath -gsave -6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor -fill -grestore -newpath -9.627463e+01 6.533906e+01 moveto -9.436549e+01 6.216341e+01 lineto -9.931834e+01 6.345208e+01 lineto -1.015026e+02 6.669933e+01 lineto -9.627463e+01 6.533906e+01 lineto -closepath -gsave -6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor -fill -grestore -newpath -1.015026e+02 6.669933e+01 moveto -9.931834e+01 6.345208e+01 lineto -1.03303e+02 6.489707e+01 lineto -1.057087e+02 6.822459e+01 lineto -1.015026e+02 6.669933e+01 lineto -closepath -gsave -6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor -fill -grestore -newpath -1.057087e+02 6.822459e+01 moveto -1.03303e+02 6.489707e+01 lineto -1.062215e+02 6.646279e+01 lineto -1.087893e+02 6.987729e+01 lineto -1.057087e+02 6.822459e+01 lineto -closepath -gsave -6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor -fill -grestore -newpath -1.087893e+02 6.987729e+01 moveto -1.062215e+02 6.646279e+01 lineto -1.080018e+02 6.811068e+01 lineto -1.106685e+02 7.161673e+01 lineto -1.087893e+02 6.987729e+01 lineto -closepath -gsave -6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor -fill -grestore -newpath -9.331521e+00 7.161673e+01 moveto -1.199821e+01 6.811068e+01 lineto -1.377852e+01 6.646279e+01 lineto -1.121074e+01 6.987729e+01 lineto -9.331521e+00 7.161673e+01 lineto -closepath -gsave -3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor -fill -grestore -newpath -1.121074e+01 6.987729e+01 moveto -1.377852e+01 6.646279e+01 lineto -1.669696e+01 6.489707e+01 lineto -1.429131e+01 6.822459e+01 lineto -1.121074e+01 6.987729e+01 lineto -closepath -gsave -4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor -fill -grestore -newpath -1.429131e+01 6.822459e+01 moveto -1.669696e+01 6.489707e+01 lineto -2.068166e+01 6.345208e+01 lineto -1.849737e+01 6.669933e+01 lineto -1.429131e+01 6.822459e+01 lineto -closepath -gsave -4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor -fill -grestore -newpath -1.849737e+01 6.669933e+01 moveto -2.068166e+01 6.345208e+01 lineto -2.563451e+01 6.216341e+01 lineto -2.372537e+01 6.533906e+01 lineto -1.849737e+01 6.669933e+01 lineto -closepath -gsave -4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor -fill -grestore -newpath -2.372537e+01 6.533906e+01 moveto -2.563451e+01 6.216341e+01 lineto -3.143356e+01 6.106277e+01 lineto -2.984658e+01 6.417728e+01 lineto -2.372537e+01 6.533906e+01 lineto -closepath -gsave -4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor -fill -grestore -newpath -2.984658e+01 6.417728e+01 moveto -3.143356e+01 6.106277e+01 lineto -3.7936e+01 6.017728e+01 lineto -3.671026e+01 6.32426e+01 lineto -2.984658e+01 6.417728e+01 lineto -closepath -gsave -5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor -fill -grestore -newpath -3.671026e+01 6.32426e+01 moveto -3.7936e+01 6.017728e+01 lineto -4.498173e+01 5.952874e+01 lineto -4.414741e+01 6.255803e+01 lineto -3.671026e+01 6.32426e+01 lineto -closepath -gsave -5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor -fill -grestore -newpath -4.414741e+01 6.255803e+01 moveto -4.498173e+01 5.952874e+01 lineto -5.239726e+01 5.913312e+01 lineto -5.19749e+01 6.214043e+01 lineto -4.414741e+01 6.255803e+01 lineto -closepath -gsave -5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor -fill -grestore -newpath -5.19749e+01 6.214043e+01 moveto -5.239726e+01 5.913312e+01 lineto -6.0e+01 5.900015e+01 lineto -6.0e+01 6.200007e+01 lineto -5.19749e+01 6.214043e+01 lineto -closepath -gsave -5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 6.5e+01 moveto -6.0e+01 6.200007e+01 lineto -6.80251e+01 6.214043e+01 lineto -6.844746e+01 6.514774e+01 lineto -6.0e+01 6.5e+01 lineto -closepath -gsave -6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor -fill -grestore -newpath -6.844746e+01 6.514774e+01 moveto -6.80251e+01 6.214043e+01 lineto -7.585259e+01 6.255803e+01 lineto -7.668692e+01 6.558732e+01 lineto -6.844746e+01 6.514774e+01 lineto -closepath -gsave -6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor -fill -grestore -newpath -7.668692e+01 6.558732e+01 moveto -7.585259e+01 6.255803e+01 lineto -8.328974e+01 6.32426e+01 lineto -8.451549e+01 6.630792e+01 lineto -7.668692e+01 6.558732e+01 lineto -closepath -gsave -6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor -fill -grestore -newpath -8.451549e+01 6.630792e+01 moveto -8.328974e+01 6.32426e+01 lineto -9.015342e+01 6.417728e+01 lineto -9.17404e+01 6.72918e+01 lineto -8.451549e+01 6.630792e+01 lineto -closepath -gsave -6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor -fill -grestore -newpath -9.17404e+01 6.72918e+01 moveto -9.015342e+01 6.417728e+01 lineto -9.627463e+01 6.533906e+01 lineto -9.818377e+01 6.851472e+01 lineto -9.17404e+01 6.72918e+01 lineto -closepath -gsave -6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor -fill -grestore -newpath -9.818377e+01 6.851472e+01 moveto -9.627463e+01 6.533906e+01 lineto -1.015026e+02 6.669933e+01 lineto -1.036869e+02 6.994658e+01 lineto -9.818377e+01 6.851472e+01 lineto -closepath -gsave -6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor -fill -grestore -newpath -1.036869e+02 6.994658e+01 moveto -1.015026e+02 6.669933e+01 lineto -1.057087e+02 6.822459e+01 lineto -1.081144e+02 7.155211e+01 lineto -1.036869e+02 6.994658e+01 lineto -closepath -gsave -6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor -fill -grestore -newpath -1.081144e+02 7.155211e+01 moveto -1.057087e+02 6.822459e+01 lineto -1.087893e+02 6.987729e+01 lineto -1.113571e+02 7.32918e+01 lineto -1.081144e+02 7.155211e+01 lineto -closepath -gsave -6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor -fill -grestore -newpath -1.113571e+02 7.32918e+01 moveto -1.087893e+02 6.987729e+01 lineto -1.106685e+02 7.161673e+01 lineto -1.133352e+02 7.512279e+01 lineto -1.113571e+02 7.32918e+01 lineto -closepath -gsave -6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor -fill -grestore -newpath -6.66483e+00 7.512279e+01 moveto -9.331521e+00 7.161673e+01 lineto -1.121074e+01 6.987729e+01 lineto -8.642948e+00 7.32918e+01 lineto -6.66483e+00 7.512279e+01 lineto -closepath -gsave -3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor -fill -grestore -newpath -8.642948e+00 7.32918e+01 moveto -1.121074e+01 6.987729e+01 lineto -1.429131e+01 6.822459e+01 lineto -1.188565e+01 7.155211e+01 lineto -8.642948e+00 7.32918e+01 lineto -closepath -gsave -4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor -fill -grestore -newpath -1.188565e+01 7.155211e+01 moveto -1.429131e+01 6.822459e+01 lineto -1.849737e+01 6.669933e+01 lineto -1.631308e+01 6.994658e+01 lineto -1.188565e+01 7.155211e+01 lineto -closepath -gsave -4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor -fill -grestore -newpath -1.631308e+01 6.994658e+01 moveto -1.849737e+01 6.669933e+01 lineto -2.372537e+01 6.533906e+01 lineto -2.181623e+01 6.851472e+01 lineto -1.631308e+01 6.994658e+01 lineto -closepath -gsave -4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor -fill -grestore -newpath -2.181623e+01 6.851472e+01 moveto -2.372537e+01 6.533906e+01 lineto -2.984658e+01 6.417728e+01 lineto -2.82596e+01 6.72918e+01 lineto -2.181623e+01 6.851472e+01 lineto -closepath -gsave -4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor -fill -grestore -newpath -2.82596e+01 6.72918e+01 moveto -2.984658e+01 6.417728e+01 lineto -3.671026e+01 6.32426e+01 lineto -3.548451e+01 6.630792e+01 lineto -2.82596e+01 6.72918e+01 lineto -closepath -gsave -5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor -fill -grestore -newpath -3.548451e+01 6.630792e+01 moveto -3.671026e+01 6.32426e+01 lineto -4.414741e+01 6.255803e+01 lineto -4.331308e+01 6.558732e+01 lineto -3.548451e+01 6.630792e+01 lineto -closepath -gsave -5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor -fill -grestore -newpath -4.331308e+01 6.558732e+01 moveto -4.414741e+01 6.255803e+01 lineto -5.19749e+01 6.214043e+01 lineto -5.155254e+01 6.514774e+01 lineto -4.331308e+01 6.558732e+01 lineto -closepath -gsave -5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor -fill -grestore -newpath -5.155254e+01 6.514774e+01 moveto -5.19749e+01 6.214043e+01 lineto -6.0e+01 6.200007e+01 lineto -6.0e+01 6.5e+01 lineto -5.155254e+01 6.514774e+01 lineto -closepath -gsave -5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor -fill -grestore -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -1.1346e+02 7.7e+01 lineto -gsave -4.0e-01 4.0e-01 4.0e-01 setrgbcolor -stroke -grestore -gsave -newpath -6.0e+01 8.001425e+00 moveto -6.0e+01 5.0015e+00 lineto -6.000021e+01 5.001504e+00 lineto -6.042257e+01 8.008816e+00 lineto -6.0e+01 8.001425e+00 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.042257e+01 8.008816e+00 moveto -6.000021e+01 5.001504e+00 lineto -6.000042e+01 5.001515e+00 lineto -6.083474e+01 8.030805e+00 lineto -6.042257e+01 8.008816e+00 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.083474e+01 8.030805e+00 moveto -6.000042e+01 5.001515e+00 lineto -6.000061e+01 5.001533e+00 lineto -6.122636e+01 8.066852e+00 lineto -6.083474e+01 8.030805e+00 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.122636e+01 8.066852e+00 moveto -6.000061e+01 5.001533e+00 lineto -6.000079e+01 5.001557e+00 lineto -6.158777e+01 8.116069e+00 lineto -6.122636e+01 8.066852e+00 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.158777e+01 8.116069e+00 moveto -6.000079e+01 5.001557e+00 lineto -6.000095e+01 5.001588e+00 lineto -6.19101e+01 8.177244e+00 lineto -6.158777e+01 8.116069e+00 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.19101e+01 8.177244e+00 moveto -6.000095e+01 5.001588e+00 lineto -6.000109e+01 5.001624e+00 lineto -6.218538e+01 8.248871e+00 lineto -6.19101e+01 8.177244e+00 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.218538e+01 8.248871e+00 moveto -6.000109e+01 5.001624e+00 lineto -6.00012e+01 5.001664e+00 lineto -6.240686e+01 8.329186e+00 lineto -6.218538e+01 8.248871e+00 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.240686e+01 8.329186e+00 moveto -6.00012e+01 5.001664e+00 lineto -6.000128e+01 5.001707e+00 lineto -6.256907e+01 8.416212e+00 lineto -6.240686e+01 8.329186e+00 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.256907e+01 8.416212e+00 moveto -6.000128e+01 5.001707e+00 lineto -6.000133e+01 5.001753e+00 lineto -6.266803e+01 8.507805e+00 lineto -6.256907e+01 8.416212e+00 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.733197e+01 8.507805e+00 moveto -5.999867e+01 5.001753e+00 lineto -5.999872e+01 5.001707e+00 lineto -5.743093e+01 8.416212e+00 lineto -5.733197e+01 8.507805e+00 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.743093e+01 8.416212e+00 moveto -5.999872e+01 5.001707e+00 lineto -5.99988e+01 5.001664e+00 lineto -5.759314e+01 8.329186e+00 lineto -5.743093e+01 8.416212e+00 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.759314e+01 8.329186e+00 moveto -5.99988e+01 5.001664e+00 lineto -5.999891e+01 5.001624e+00 lineto -5.781462e+01 8.248871e+00 lineto -5.759314e+01 8.329186e+00 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.781462e+01 8.248871e+00 moveto -5.999891e+01 5.001624e+00 lineto -5.999905e+01 5.001588e+00 lineto -5.80899e+01 8.177244e+00 lineto -5.781462e+01 8.248871e+00 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.80899e+01 8.177244e+00 moveto -5.999905e+01 5.001588e+00 lineto -5.999921e+01 5.001557e+00 lineto -5.841223e+01 8.116069e+00 lineto -5.80899e+01 8.177244e+00 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.841223e+01 8.116069e+00 moveto -5.999921e+01 5.001557e+00 lineto -5.999939e+01 5.001533e+00 lineto -5.877364e+01 8.066852e+00 lineto -5.841223e+01 8.116069e+00 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.877364e+01 8.066852e+00 moveto -5.999939e+01 5.001533e+00 lineto -5.999958e+01 5.001515e+00 lineto -5.916526e+01 8.030805e+00 lineto -5.877364e+01 8.066852e+00 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.916526e+01 8.030805e+00 moveto -5.999958e+01 5.001515e+00 lineto -5.999979e+01 5.001504e+00 lineto -5.957743e+01 8.008816e+00 lineto -5.916526e+01 8.030805e+00 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.957743e+01 8.008816e+00 moveto -5.999979e+01 5.001504e+00 lineto -6.0e+01 5.0015e+00 lineto -6.0e+01 8.001425e+00 lineto -5.957743e+01 8.008816e+00 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.0e+01 1.100135e+01 moveto -6.0e+01 8.001425e+00 lineto -6.042257e+01 8.008816e+00 lineto -6.084494e+01 1.101613e+01 lineto -6.0e+01 1.100135e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.084494e+01 1.101613e+01 moveto -6.042257e+01 8.008816e+00 lineto -6.083474e+01 8.030805e+00 lineto -6.166907e+01 1.10601e+01 lineto -6.084494e+01 1.101613e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.166907e+01 1.10601e+01 moveto -6.083474e+01 8.030805e+00 lineto -6.122636e+01 8.066852e+00 lineto -6.24521e+01 1.113217e+01 lineto -6.166907e+01 1.10601e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.24521e+01 1.113217e+01 moveto -6.122636e+01 8.066852e+00 lineto -6.158777e+01 8.116069e+00 lineto -6.317475e+01 1.123058e+01 lineto -6.24521e+01 1.113217e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.317475e+01 1.123058e+01 moveto -6.158777e+01 8.116069e+00 lineto -6.19101e+01 8.177244e+00 lineto -6.381924e+01 1.13529e+01 lineto -6.317475e+01 1.123058e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.381924e+01 1.13529e+01 moveto -6.19101e+01 8.177244e+00 lineto -6.218538e+01 8.248871e+00 lineto -6.436967e+01 1.149612e+01 lineto -6.381924e+01 1.13529e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.436967e+01 1.149612e+01 moveto -6.218538e+01 8.248871e+00 lineto -6.240686e+01 8.329186e+00 lineto -6.481252e+01 1.165671e+01 lineto -6.436967e+01 1.149612e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.481252e+01 1.165671e+01 moveto -6.240686e+01 8.329186e+00 lineto -6.256907e+01 8.416212e+00 lineto -6.513686e+01 1.183072e+01 lineto -6.481252e+01 1.165671e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.513686e+01 1.183072e+01 moveto -6.256907e+01 8.416212e+00 lineto -6.266803e+01 8.507805e+00 lineto -6.533472e+01 1.201386e+01 lineto -6.513686e+01 1.183072e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.466528e+01 1.201386e+01 moveto -5.733197e+01 8.507805e+00 lineto -5.743093e+01 8.416212e+00 lineto -5.486314e+01 1.183072e+01 lineto -5.466528e+01 1.201386e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.486314e+01 1.183072e+01 moveto -5.743093e+01 8.416212e+00 lineto -5.759314e+01 8.329186e+00 lineto -5.518748e+01 1.165671e+01 lineto -5.486314e+01 1.183072e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.518748e+01 1.165671e+01 moveto -5.759314e+01 8.329186e+00 lineto -5.781462e+01 8.248871e+00 lineto -5.563033e+01 1.149612e+01 lineto -5.518748e+01 1.165671e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.563033e+01 1.149612e+01 moveto -5.781462e+01 8.248871e+00 lineto -5.80899e+01 8.177244e+00 lineto -5.618076e+01 1.13529e+01 lineto -5.563033e+01 1.149612e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.618076e+01 1.13529e+01 moveto -5.80899e+01 8.177244e+00 lineto -5.841223e+01 8.116069e+00 lineto -5.682525e+01 1.123058e+01 lineto -5.618076e+01 1.13529e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.682525e+01 1.123058e+01 moveto -5.841223e+01 8.116069e+00 lineto -5.877364e+01 8.066852e+00 lineto -5.75479e+01 1.113217e+01 lineto -5.682525e+01 1.123058e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.75479e+01 1.113217e+01 moveto -5.877364e+01 8.066852e+00 lineto -5.916526e+01 8.030805e+00 lineto -5.833093e+01 1.10601e+01 lineto -5.75479e+01 1.113217e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.833093e+01 1.10601e+01 moveto -5.916526e+01 8.030805e+00 lineto -5.957743e+01 8.008816e+00 lineto -5.915506e+01 1.101613e+01 lineto -5.833093e+01 1.10601e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.915506e+01 1.101613e+01 moveto -5.957743e+01 8.008816e+00 lineto -6.0e+01 8.001425e+00 lineto -6.0e+01 1.100135e+01 lineto -5.915506e+01 1.101613e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.0e+01 1.400127e+01 moveto -6.0e+01 1.100135e+01 lineto -6.084494e+01 1.101613e+01 lineto -6.12673e+01 1.402344e+01 lineto -6.0e+01 1.400127e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.12673e+01 1.402344e+01 moveto -6.084494e+01 1.101613e+01 lineto -6.166907e+01 1.10601e+01 lineto -6.250339e+01 1.408939e+01 lineto -6.12673e+01 1.402344e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.250339e+01 1.408939e+01 moveto -6.166907e+01 1.10601e+01 lineto -6.24521e+01 1.113217e+01 lineto -6.367784e+01 1.419749e+01 lineto -6.250339e+01 1.408939e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.367784e+01 1.419749e+01 moveto -6.24521e+01 1.113217e+01 lineto -6.317475e+01 1.123058e+01 lineto -6.476174e+01 1.434509e+01 lineto -6.367784e+01 1.419749e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.476174e+01 1.434509e+01 moveto -6.317475e+01 1.123058e+01 lineto -6.381924e+01 1.13529e+01 lineto -6.572838e+01 1.452856e+01 lineto -6.476174e+01 1.434509e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.572838e+01 1.452856e+01 moveto -6.381924e+01 1.13529e+01 lineto -6.436967e+01 1.149612e+01 lineto -6.655397e+01 1.474337e+01 lineto -6.572838e+01 1.452856e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.655397e+01 1.474337e+01 moveto -6.436967e+01 1.149612e+01 lineto -6.481252e+01 1.165671e+01 lineto -6.721818e+01 1.498423e+01 lineto -6.655397e+01 1.474337e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.721818e+01 1.498423e+01 moveto -6.481252e+01 1.165671e+01 lineto -6.513686e+01 1.183072e+01 lineto -6.770465e+01 1.524522e+01 lineto -6.721818e+01 1.498423e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.770465e+01 1.524522e+01 moveto -6.513686e+01 1.183072e+01 lineto -6.533472e+01 1.201386e+01 lineto -6.800141e+01 1.551991e+01 lineto -6.770465e+01 1.524522e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.199859e+01 1.551991e+01 moveto -5.466528e+01 1.201386e+01 lineto -5.486314e+01 1.183072e+01 lineto -5.229535e+01 1.524522e+01 lineto -5.199859e+01 1.551991e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.229535e+01 1.524522e+01 moveto -5.486314e+01 1.183072e+01 lineto -5.518748e+01 1.165671e+01 lineto -5.278182e+01 1.498423e+01 lineto -5.229535e+01 1.524522e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.278182e+01 1.498423e+01 moveto -5.518748e+01 1.165671e+01 lineto -5.563033e+01 1.149612e+01 lineto -5.344603e+01 1.474337e+01 lineto -5.278182e+01 1.498423e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.344603e+01 1.474337e+01 moveto -5.563033e+01 1.149612e+01 lineto -5.618076e+01 1.13529e+01 lineto -5.427162e+01 1.452856e+01 lineto -5.344603e+01 1.474337e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.427162e+01 1.452856e+01 moveto -5.618076e+01 1.13529e+01 lineto -5.682525e+01 1.123058e+01 lineto -5.523826e+01 1.434509e+01 lineto -5.427162e+01 1.452856e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.523826e+01 1.434509e+01 moveto -5.682525e+01 1.123058e+01 lineto -5.75479e+01 1.113217e+01 lineto -5.632216e+01 1.419749e+01 lineto -5.523826e+01 1.434509e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.632216e+01 1.419749e+01 moveto -5.75479e+01 1.113217e+01 lineto -5.833093e+01 1.10601e+01 lineto -5.749661e+01 1.408939e+01 lineto -5.632216e+01 1.419749e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.749661e+01 1.408939e+01 moveto -5.833093e+01 1.10601e+01 lineto -5.915506e+01 1.101613e+01 lineto -5.87327e+01 1.402344e+01 lineto -5.749661e+01 1.408939e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.87327e+01 1.402344e+01 moveto -5.915506e+01 1.101613e+01 lineto -6.0e+01 1.100135e+01 lineto -6.0e+01 1.400127e+01 lineto -5.87327e+01 1.402344e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.0e+01 1.70012e+01 moveto -6.0e+01 1.400127e+01 lineto -6.12673e+01 1.402344e+01 lineto -6.168966e+01 1.703075e+01 lineto -6.0e+01 1.70012e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.168966e+01 1.703075e+01 moveto -6.12673e+01 1.402344e+01 lineto -6.250339e+01 1.408939e+01 lineto -6.333772e+01 1.711868e+01 lineto -6.168966e+01 1.703075e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.333772e+01 1.711868e+01 moveto -6.250339e+01 1.408939e+01 lineto -6.367784e+01 1.419749e+01 lineto -6.490359e+01 1.726281e+01 lineto -6.333772e+01 1.711868e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.490359e+01 1.726281e+01 moveto -6.367784e+01 1.419749e+01 lineto -6.476174e+01 1.434509e+01 lineto -6.634872e+01 1.745961e+01 lineto -6.490359e+01 1.726281e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.634872e+01 1.745961e+01 moveto -6.476174e+01 1.434509e+01 lineto -6.572838e+01 1.452856e+01 lineto -6.763752e+01 1.770421e+01 lineto -6.634872e+01 1.745961e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.763752e+01 1.770421e+01 moveto -6.572838e+01 1.452856e+01 lineto -6.655397e+01 1.474337e+01 lineto -6.873826e+01 1.799061e+01 lineto -6.763752e+01 1.770421e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.873826e+01 1.799061e+01 moveto -6.655397e+01 1.474337e+01 lineto -6.721818e+01 1.498423e+01 lineto -6.962383e+01 1.831175e+01 lineto -6.873826e+01 1.799061e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.962383e+01 1.831175e+01 moveto -6.721818e+01 1.498423e+01 lineto -6.770465e+01 1.524522e+01 lineto -7.027244e+01 1.865973e+01 lineto -6.962383e+01 1.831175e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.027244e+01 1.865973e+01 moveto -6.770465e+01 1.524522e+01 lineto -6.800141e+01 1.551991e+01 lineto -7.06681e+01 1.902596e+01 lineto -7.027244e+01 1.865973e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.93319e+01 1.902596e+01 moveto -5.199859e+01 1.551991e+01 lineto -5.229535e+01 1.524522e+01 lineto -4.972756e+01 1.865973e+01 lineto -4.93319e+01 1.902596e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.972756e+01 1.865973e+01 moveto -5.229535e+01 1.524522e+01 lineto -5.278182e+01 1.498423e+01 lineto -5.037617e+01 1.831175e+01 lineto -4.972756e+01 1.865973e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.037617e+01 1.831175e+01 moveto -5.278182e+01 1.498423e+01 lineto -5.344603e+01 1.474337e+01 lineto -5.126174e+01 1.799061e+01 lineto -5.037617e+01 1.831175e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.126174e+01 1.799061e+01 moveto -5.344603e+01 1.474337e+01 lineto -5.427162e+01 1.452856e+01 lineto -5.236248e+01 1.770421e+01 lineto -5.126174e+01 1.799061e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.236248e+01 1.770421e+01 moveto -5.427162e+01 1.452856e+01 lineto -5.523826e+01 1.434509e+01 lineto -5.365128e+01 1.745961e+01 lineto -5.236248e+01 1.770421e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.365128e+01 1.745961e+01 moveto -5.523826e+01 1.434509e+01 lineto -5.632216e+01 1.419749e+01 lineto -5.509641e+01 1.726281e+01 lineto -5.365128e+01 1.745961e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.509641e+01 1.726281e+01 moveto -5.632216e+01 1.419749e+01 lineto -5.749661e+01 1.408939e+01 lineto -5.666228e+01 1.711868e+01 lineto -5.509641e+01 1.726281e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.666228e+01 1.711868e+01 moveto -5.749661e+01 1.408939e+01 lineto -5.87327e+01 1.402344e+01 lineto -5.831034e+01 1.703075e+01 lineto -5.666228e+01 1.711868e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.831034e+01 1.703075e+01 moveto -5.87327e+01 1.402344e+01 lineto -6.0e+01 1.400127e+01 lineto -6.0e+01 1.70012e+01 lineto -5.831034e+01 1.703075e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.0e+01 2.000112e+01 moveto -6.0e+01 1.70012e+01 lineto -6.168966e+01 1.703075e+01 lineto -6.211202e+01 2.003806e+01 lineto -6.0e+01 2.000112e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.211202e+01 2.003806e+01 moveto -6.168966e+01 1.703075e+01 lineto -6.333772e+01 1.711868e+01 lineto -6.417204e+01 2.014797e+01 lineto -6.211202e+01 2.003806e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.417204e+01 2.014797e+01 moveto -6.333772e+01 1.711868e+01 lineto -6.490359e+01 1.726281e+01 lineto -6.612933e+01 2.032813e+01 lineto -6.417204e+01 2.014797e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.612933e+01 2.032813e+01 moveto -6.490359e+01 1.726281e+01 lineto -6.634872e+01 1.745961e+01 lineto -6.79357e+01 2.057412e+01 lineto -6.612933e+01 2.032813e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.79357e+01 2.057412e+01 moveto -6.634872e+01 1.745961e+01 lineto -6.763752e+01 1.770421e+01 lineto -6.954666e+01 2.087987e+01 lineto -6.79357e+01 2.057412e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.954666e+01 2.087987e+01 moveto -6.763752e+01 1.770421e+01 lineto -6.873826e+01 1.799061e+01 lineto -7.092255e+01 2.123786e+01 lineto -6.954666e+01 2.087987e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.092255e+01 2.123786e+01 moveto -6.873826e+01 1.799061e+01 lineto -6.962383e+01 1.831175e+01 lineto -7.202949e+01 2.163928e+01 lineto -7.092255e+01 2.123786e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.202949e+01 2.163928e+01 moveto -6.962383e+01 1.831175e+01 lineto -7.027244e+01 1.865973e+01 lineto -7.284023e+01 2.207423e+01 lineto -7.202949e+01 2.163928e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.284023e+01 2.207423e+01 moveto -7.027244e+01 1.865973e+01 lineto -7.06681e+01 1.902596e+01 lineto -7.333479e+01 2.253201e+01 lineto -7.284023e+01 2.207423e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.666521e+01 2.253201e+01 moveto -4.93319e+01 1.902596e+01 lineto -4.972756e+01 1.865973e+01 lineto -4.715977e+01 2.207423e+01 lineto -4.666521e+01 2.253201e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.715977e+01 2.207423e+01 moveto -4.972756e+01 1.865973e+01 lineto -5.037617e+01 1.831175e+01 lineto -4.797051e+01 2.163928e+01 lineto -4.715977e+01 2.207423e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.797051e+01 2.163928e+01 moveto -5.037617e+01 1.831175e+01 lineto -5.126174e+01 1.799061e+01 lineto -4.907745e+01 2.123786e+01 lineto -4.797051e+01 2.163928e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.907745e+01 2.123786e+01 moveto -5.126174e+01 1.799061e+01 lineto -5.236248e+01 1.770421e+01 lineto -5.045334e+01 2.087987e+01 lineto -4.907745e+01 2.123786e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.045334e+01 2.087987e+01 moveto -5.236248e+01 1.770421e+01 lineto -5.365128e+01 1.745961e+01 lineto -5.20643e+01 2.057412e+01 lineto -5.045334e+01 2.087987e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.20643e+01 2.057412e+01 moveto -5.365128e+01 1.745961e+01 lineto -5.509641e+01 1.726281e+01 lineto -5.387067e+01 2.032813e+01 lineto -5.20643e+01 2.057412e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.387067e+01 2.032813e+01 moveto -5.509641e+01 1.726281e+01 lineto -5.666228e+01 1.711868e+01 lineto -5.582796e+01 2.014797e+01 lineto -5.387067e+01 2.032813e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.582796e+01 2.014797e+01 moveto -5.666228e+01 1.711868e+01 lineto -5.831034e+01 1.703075e+01 lineto -5.788798e+01 2.003806e+01 lineto -5.582796e+01 2.014797e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.788798e+01 2.003806e+01 moveto -5.831034e+01 1.703075e+01 lineto -6.0e+01 1.70012e+01 lineto -6.0e+01 2.000112e+01 lineto -5.788798e+01 2.003806e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.0e+01 2.300105e+01 moveto -6.0e+01 2.000112e+01 lineto -6.211202e+01 2.003806e+01 lineto -6.253439e+01 2.304537e+01 lineto -6.0e+01 2.300105e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.253439e+01 2.304537e+01 moveto -6.211202e+01 2.003806e+01 lineto -6.417204e+01 2.014797e+01 lineto -6.500637e+01 2.317726e+01 lineto -6.253439e+01 2.304537e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.500637e+01 2.317726e+01 moveto -6.417204e+01 2.014797e+01 lineto -6.612933e+01 2.032813e+01 lineto -6.735508e+01 2.339345e+01 lineto -6.500637e+01 2.317726e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.735508e+01 2.339345e+01 moveto -6.612933e+01 2.032813e+01 lineto -6.79357e+01 2.057412e+01 lineto -6.952268e+01 2.368863e+01 lineto -6.735508e+01 2.339345e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.952268e+01 2.368863e+01 moveto -6.79357e+01 2.057412e+01 lineto -6.954666e+01 2.087987e+01 lineto -7.14558e+01 2.405553e+01 lineto -6.952268e+01 2.368863e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.14558e+01 2.405553e+01 moveto -6.954666e+01 2.087987e+01 lineto -7.092255e+01 2.123786e+01 lineto -7.310684e+01 2.448511e+01 lineto -7.14558e+01 2.405553e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.310684e+01 2.448511e+01 moveto -7.092255e+01 2.123786e+01 lineto -7.202949e+01 2.163928e+01 lineto -7.443515e+01 2.49668e+01 lineto -7.310684e+01 2.448511e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.443515e+01 2.49668e+01 moveto -7.202949e+01 2.163928e+01 lineto -7.284023e+01 2.207423e+01 lineto -7.540801e+01 2.548873e+01 lineto -7.443515e+01 2.49668e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.540801e+01 2.548873e+01 moveto -7.284023e+01 2.207423e+01 lineto -7.333479e+01 2.253201e+01 lineto -7.600148e+01 2.603806e+01 lineto -7.540801e+01 2.548873e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.399852e+01 2.603806e+01 moveto -4.666521e+01 2.253201e+01 lineto -4.715977e+01 2.207423e+01 lineto -4.459199e+01 2.548873e+01 lineto -4.399852e+01 2.603806e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.459199e+01 2.548873e+01 moveto -4.715977e+01 2.207423e+01 lineto -4.797051e+01 2.163928e+01 lineto -4.556485e+01 2.49668e+01 lineto -4.459199e+01 2.548873e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.556485e+01 2.49668e+01 moveto -4.797051e+01 2.163928e+01 lineto -4.907745e+01 2.123786e+01 lineto -4.689316e+01 2.448511e+01 lineto -4.556485e+01 2.49668e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.689316e+01 2.448511e+01 moveto -4.907745e+01 2.123786e+01 lineto -5.045334e+01 2.087987e+01 lineto -4.85442e+01 2.405553e+01 lineto -4.689316e+01 2.448511e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.85442e+01 2.405553e+01 moveto -5.045334e+01 2.087987e+01 lineto -5.20643e+01 2.057412e+01 lineto -5.047732e+01 2.368863e+01 lineto -4.85442e+01 2.405553e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.047732e+01 2.368863e+01 moveto -5.20643e+01 2.057412e+01 lineto -5.387067e+01 2.032813e+01 lineto -5.264492e+01 2.339345e+01 lineto -5.047732e+01 2.368863e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.264492e+01 2.339345e+01 moveto -5.387067e+01 2.032813e+01 lineto -5.582796e+01 2.014797e+01 lineto -5.499363e+01 2.317726e+01 lineto -5.264492e+01 2.339345e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.499363e+01 2.317726e+01 moveto -5.582796e+01 2.014797e+01 lineto -5.788798e+01 2.003806e+01 lineto -5.746561e+01 2.304537e+01 lineto -5.499363e+01 2.317726e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.746561e+01 2.304537e+01 moveto -5.788798e+01 2.003806e+01 lineto -6.0e+01 2.000112e+01 lineto -6.0e+01 2.300105e+01 lineto -5.746561e+01 2.304537e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.0e+01 2.600097e+01 moveto -6.0e+01 2.300105e+01 lineto -6.253439e+01 2.304537e+01 lineto -6.295675e+01 2.605269e+01 lineto -6.0e+01 2.600097e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.295675e+01 2.605269e+01 moveto -6.253439e+01 2.304537e+01 lineto -6.500637e+01 2.317726e+01 lineto -6.584069e+01 2.620655e+01 lineto -6.295675e+01 2.605269e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.584069e+01 2.620655e+01 moveto -6.500637e+01 2.317726e+01 lineto -6.735508e+01 2.339345e+01 lineto -6.858082e+01 2.645877e+01 lineto -6.584069e+01 2.620655e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.858082e+01 2.645877e+01 moveto -6.735508e+01 2.339345e+01 lineto -6.952268e+01 2.368863e+01 lineto -7.110966e+01 2.680314e+01 lineto -6.858082e+01 2.645877e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.110966e+01 2.680314e+01 moveto -6.952268e+01 2.368863e+01 lineto -7.14558e+01 2.405553e+01 lineto -7.336494e+01 2.723118e+01 lineto -7.110966e+01 2.680314e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.336494e+01 2.723118e+01 moveto -7.14558e+01 2.405553e+01 lineto -7.310684e+01 2.448511e+01 lineto -7.529113e+01 2.773236e+01 lineto -7.336494e+01 2.723118e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.529113e+01 2.773236e+01 moveto -7.310684e+01 2.448511e+01 lineto -7.443515e+01 2.49668e+01 lineto -7.684081e+01 2.829432e+01 lineto -7.529113e+01 2.773236e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.684081e+01 2.829432e+01 moveto -7.443515e+01 2.49668e+01 lineto -7.540801e+01 2.548873e+01 lineto -7.79758e+01 2.890324e+01 lineto -7.684081e+01 2.829432e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.79758e+01 2.890324e+01 moveto -7.540801e+01 2.548873e+01 lineto -7.600148e+01 2.603806e+01 lineto -7.866818e+01 2.954411e+01 lineto -7.79758e+01 2.890324e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.133182e+01 2.954411e+01 moveto -4.399852e+01 2.603806e+01 lineto -4.459199e+01 2.548873e+01 lineto -4.20242e+01 2.890324e+01 lineto -4.133182e+01 2.954411e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.20242e+01 2.890324e+01 moveto -4.459199e+01 2.548873e+01 lineto -4.556485e+01 2.49668e+01 lineto -4.315919e+01 2.829432e+01 lineto -4.20242e+01 2.890324e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.315919e+01 2.829432e+01 moveto -4.556485e+01 2.49668e+01 lineto -4.689316e+01 2.448511e+01 lineto -4.470887e+01 2.773236e+01 lineto -4.315919e+01 2.829432e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.470887e+01 2.773236e+01 moveto -4.689316e+01 2.448511e+01 lineto -4.85442e+01 2.405553e+01 lineto -4.663506e+01 2.723118e+01 lineto -4.470887e+01 2.773236e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.663506e+01 2.723118e+01 moveto -4.85442e+01 2.405553e+01 lineto -5.047732e+01 2.368863e+01 lineto -4.889034e+01 2.680314e+01 lineto -4.663506e+01 2.723118e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.889034e+01 2.680314e+01 moveto -5.047732e+01 2.368863e+01 lineto -5.264492e+01 2.339345e+01 lineto -5.141918e+01 2.645877e+01 lineto -4.889034e+01 2.680314e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.141918e+01 2.645877e+01 moveto -5.264492e+01 2.339345e+01 lineto -5.499363e+01 2.317726e+01 lineto -5.415931e+01 2.620655e+01 lineto -5.141918e+01 2.645877e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.415931e+01 2.620655e+01 moveto -5.499363e+01 2.317726e+01 lineto -5.746561e+01 2.304537e+01 lineto -5.704325e+01 2.605269e+01 lineto -5.415931e+01 2.620655e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.704325e+01 2.605269e+01 moveto -5.746561e+01 2.304537e+01 lineto -6.0e+01 2.300105e+01 lineto -6.0e+01 2.600097e+01 lineto -5.704325e+01 2.605269e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.0e+01 2.90009e+01 moveto -6.0e+01 2.600097e+01 lineto -6.295675e+01 2.605269e+01 lineto -6.337911e+01 2.906e+01 lineto -6.0e+01 2.90009e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.337911e+01 2.906e+01 moveto -6.295675e+01 2.605269e+01 lineto -6.584069e+01 2.620655e+01 lineto -6.667502e+01 2.923584e+01 lineto -6.337911e+01 2.906e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.667502e+01 2.923584e+01 moveto -6.584069e+01 2.620655e+01 lineto -6.858082e+01 2.645877e+01 lineto -6.980656e+01 2.952409e+01 lineto -6.667502e+01 2.923584e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.980656e+01 2.952409e+01 moveto -6.858082e+01 2.645877e+01 lineto -7.110966e+01 2.680314e+01 lineto -7.269664e+01 2.991765e+01 lineto -6.980656e+01 2.952409e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.269664e+01 2.991765e+01 moveto -7.110966e+01 2.680314e+01 lineto -7.336494e+01 2.723118e+01 lineto -7.527408e+01 3.040684e+01 lineto -7.269664e+01 2.991765e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.527408e+01 3.040684e+01 moveto -7.336494e+01 2.723118e+01 lineto -7.529113e+01 2.773236e+01 lineto -7.747542e+01 3.09796e+01 lineto -7.527408e+01 3.040684e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.747542e+01 3.09796e+01 moveto -7.529113e+01 2.773236e+01 lineto -7.684081e+01 2.829432e+01 lineto -7.924646e+01 3.162184e+01 lineto -7.747542e+01 3.09796e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.924646e+01 3.162184e+01 moveto -7.684081e+01 2.829432e+01 lineto -7.79758e+01 2.890324e+01 lineto -8.054359e+01 3.231774e+01 lineto -7.924646e+01 3.162184e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -8.054359e+01 3.231774e+01 moveto -7.79758e+01 2.890324e+01 lineto -7.866818e+01 2.954411e+01 lineto -8.133487e+01 3.305017e+01 lineto -8.054359e+01 3.231774e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -3.866513e+01 3.305017e+01 moveto -4.133182e+01 2.954411e+01 lineto -4.20242e+01 2.890324e+01 lineto -3.945641e+01 3.231774e+01 lineto -3.866513e+01 3.305017e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -3.945641e+01 3.231774e+01 moveto -4.20242e+01 2.890324e+01 lineto -4.315919e+01 2.829432e+01 lineto -4.075354e+01 3.162184e+01 lineto -3.945641e+01 3.231774e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.075354e+01 3.162184e+01 moveto -4.315919e+01 2.829432e+01 lineto -4.470887e+01 2.773236e+01 lineto -4.252458e+01 3.09796e+01 lineto -4.075354e+01 3.162184e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.252458e+01 3.09796e+01 moveto -4.470887e+01 2.773236e+01 lineto -4.663506e+01 2.723118e+01 lineto -4.472592e+01 3.040684e+01 lineto -4.252458e+01 3.09796e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.472592e+01 3.040684e+01 moveto -4.663506e+01 2.723118e+01 lineto -4.889034e+01 2.680314e+01 lineto -4.730336e+01 2.991765e+01 lineto -4.472592e+01 3.040684e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.730336e+01 2.991765e+01 moveto -4.889034e+01 2.680314e+01 lineto -5.141918e+01 2.645877e+01 lineto -5.019344e+01 2.952409e+01 lineto -4.730336e+01 2.991765e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.019344e+01 2.952409e+01 moveto -5.141918e+01 2.645877e+01 lineto -5.415931e+01 2.620655e+01 lineto -5.332498e+01 2.923584e+01 lineto -5.019344e+01 2.952409e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.332498e+01 2.923584e+01 moveto -5.415931e+01 2.620655e+01 lineto -5.704325e+01 2.605269e+01 lineto -5.662089e+01 2.906e+01 lineto -5.332498e+01 2.923584e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.662089e+01 2.906e+01 moveto -5.704325e+01 2.605269e+01 lineto -6.0e+01 2.600097e+01 lineto -6.0e+01 2.90009e+01 lineto -5.662089e+01 2.906e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.0e+01 3.200082e+01 moveto -6.0e+01 2.90009e+01 lineto -6.337911e+01 2.906e+01 lineto -6.380147e+01 3.206731e+01 lineto -6.0e+01 3.200082e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.380147e+01 3.206731e+01 moveto -6.337911e+01 2.906e+01 lineto -6.667502e+01 2.923584e+01 lineto -6.750934e+01 3.226513e+01 lineto -6.380147e+01 3.206731e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.750934e+01 3.226513e+01 moveto -6.667502e+01 2.923584e+01 lineto -6.980656e+01 2.952409e+01 lineto -7.103231e+01 3.258941e+01 lineto -6.750934e+01 3.226513e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.103231e+01 3.258941e+01 moveto -6.980656e+01 2.952409e+01 lineto -7.269664e+01 2.991765e+01 lineto -7.428362e+01 3.303216e+01 lineto -7.103231e+01 3.258941e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.428362e+01 3.303216e+01 moveto -7.269664e+01 2.991765e+01 lineto -7.527408e+01 3.040684e+01 lineto -7.718322e+01 3.35825e+01 lineto -7.428362e+01 3.303216e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.718322e+01 3.35825e+01 moveto -7.527408e+01 3.040684e+01 lineto -7.747542e+01 3.09796e+01 lineto -7.965971e+01 3.422685e+01 lineto -7.718322e+01 3.35825e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.965971e+01 3.422685e+01 moveto -7.747542e+01 3.09796e+01 lineto -7.924646e+01 3.162184e+01 lineto -8.165212e+01 3.494937e+01 lineto -7.965971e+01 3.422685e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -8.165212e+01 3.494937e+01 moveto -7.924646e+01 3.162184e+01 lineto -8.054359e+01 3.231774e+01 lineto -8.311138e+01 3.573225e+01 lineto -8.165212e+01 3.494937e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -8.311138e+01 3.573225e+01 moveto -8.054359e+01 3.231774e+01 lineto -8.133487e+01 3.305017e+01 lineto -8.400156e+01 3.655622e+01 lineto -8.311138e+01 3.573225e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -3.599844e+01 3.655622e+01 moveto -3.866513e+01 3.305017e+01 lineto -3.945641e+01 3.231774e+01 lineto -3.688862e+01 3.573225e+01 lineto -3.599844e+01 3.655622e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -3.688862e+01 3.573225e+01 moveto -3.945641e+01 3.231774e+01 lineto -4.075354e+01 3.162184e+01 lineto -3.834788e+01 3.494937e+01 lineto -3.688862e+01 3.573225e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -3.834788e+01 3.494937e+01 moveto -4.075354e+01 3.162184e+01 lineto -4.252458e+01 3.09796e+01 lineto -4.034029e+01 3.422685e+01 lineto -3.834788e+01 3.494937e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.034029e+01 3.422685e+01 moveto -4.252458e+01 3.09796e+01 lineto -4.472592e+01 3.040684e+01 lineto -4.281678e+01 3.35825e+01 lineto -4.034029e+01 3.422685e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.281678e+01 3.35825e+01 moveto -4.472592e+01 3.040684e+01 lineto -4.730336e+01 2.991765e+01 lineto -4.571638e+01 3.303216e+01 lineto -4.281678e+01 3.35825e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.571638e+01 3.303216e+01 moveto -4.730336e+01 2.991765e+01 lineto -5.019344e+01 2.952409e+01 lineto -4.896769e+01 3.258941e+01 lineto -4.571638e+01 3.303216e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.896769e+01 3.258941e+01 moveto -5.019344e+01 2.952409e+01 lineto -5.332498e+01 2.923584e+01 lineto -5.249066e+01 3.226513e+01 lineto -4.896769e+01 3.258941e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.249066e+01 3.226513e+01 moveto -5.332498e+01 2.923584e+01 lineto -5.662089e+01 2.906e+01 lineto -5.619853e+01 3.206731e+01 lineto -5.249066e+01 3.226513e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.619853e+01 3.206731e+01 moveto -5.662089e+01 2.906e+01 lineto -6.0e+01 2.90009e+01 lineto -6.0e+01 3.200082e+01 lineto -5.619853e+01 3.206731e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.0e+01 3.500075e+01 moveto -6.0e+01 3.200082e+01 lineto -6.380147e+01 3.206731e+01 lineto -6.422384e+01 3.507462e+01 lineto -6.0e+01 3.500075e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.422384e+01 3.507462e+01 moveto -6.380147e+01 3.206731e+01 lineto -6.750934e+01 3.226513e+01 lineto -6.834367e+01 3.529442e+01 lineto -6.422384e+01 3.507462e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.834367e+01 3.529442e+01 moveto -6.750934e+01 3.226513e+01 lineto -7.103231e+01 3.258941e+01 lineto -7.225805e+01 3.565473e+01 lineto -6.834367e+01 3.529442e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.225805e+01 3.565473e+01 moveto -7.103231e+01 3.258941e+01 lineto -7.428362e+01 3.303216e+01 lineto -7.58706e+01 3.614668e+01 lineto -7.225805e+01 3.565473e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.58706e+01 3.614668e+01 moveto -7.428362e+01 3.303216e+01 lineto -7.718322e+01 3.35825e+01 lineto -7.909236e+01 3.675815e+01 lineto -7.58706e+01 3.614668e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.909236e+01 3.675815e+01 moveto -7.718322e+01 3.35825e+01 lineto -7.965971e+01 3.422685e+01 lineto -8.1844e+01 3.74741e+01 lineto -7.909236e+01 3.675815e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -8.1844e+01 3.74741e+01 moveto -7.965971e+01 3.422685e+01 lineto -8.165212e+01 3.494937e+01 lineto -8.405778e+01 3.827689e+01 lineto -8.1844e+01 3.74741e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -8.405778e+01 3.827689e+01 moveto -8.165212e+01 3.494937e+01 lineto -8.311138e+01 3.573225e+01 lineto -8.567917e+01 3.914675e+01 lineto -8.405778e+01 3.827689e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -8.567917e+01 3.914675e+01 moveto -8.311138e+01 3.573225e+01 lineto -8.400156e+01 3.655622e+01 lineto -8.666825e+01 4.006227e+01 lineto -8.567917e+01 3.914675e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -3.333175e+01 4.006227e+01 moveto -3.599844e+01 3.655622e+01 lineto -3.688862e+01 3.573225e+01 lineto -3.432083e+01 3.914675e+01 lineto -3.333175e+01 4.006227e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -3.432083e+01 3.914675e+01 moveto -3.688862e+01 3.573225e+01 lineto -3.834788e+01 3.494937e+01 lineto -3.594222e+01 3.827689e+01 lineto -3.432083e+01 3.914675e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -3.594222e+01 3.827689e+01 moveto -3.834788e+01 3.494937e+01 lineto -4.034029e+01 3.422685e+01 lineto -3.8156e+01 3.74741e+01 lineto -3.594222e+01 3.827689e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -3.8156e+01 3.74741e+01 moveto -4.034029e+01 3.422685e+01 lineto -4.281678e+01 3.35825e+01 lineto -4.090764e+01 3.675815e+01 lineto -3.8156e+01 3.74741e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.090764e+01 3.675815e+01 moveto -4.281678e+01 3.35825e+01 lineto -4.571638e+01 3.303216e+01 lineto -4.41294e+01 3.614668e+01 lineto -4.090764e+01 3.675815e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.41294e+01 3.614668e+01 moveto -4.571638e+01 3.303216e+01 lineto -4.896769e+01 3.258941e+01 lineto -4.774195e+01 3.565473e+01 lineto -4.41294e+01 3.614668e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.774195e+01 3.565473e+01 moveto -4.896769e+01 3.258941e+01 lineto -5.249066e+01 3.226513e+01 lineto -5.165633e+01 3.529442e+01 lineto -4.774195e+01 3.565473e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.165633e+01 3.529442e+01 moveto -5.249066e+01 3.226513e+01 lineto -5.619853e+01 3.206731e+01 lineto -5.577616e+01 3.507462e+01 lineto -5.165633e+01 3.529442e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.577616e+01 3.507462e+01 moveto -5.619853e+01 3.206731e+01 lineto -6.0e+01 3.200082e+01 lineto -6.0e+01 3.500075e+01 lineto -5.577616e+01 3.507462e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.0e+01 3.800067e+01 moveto -6.0e+01 3.500075e+01 lineto -6.422384e+01 3.507462e+01 lineto -6.46462e+01 3.808193e+01 lineto -6.0e+01 3.800067e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.46462e+01 3.808193e+01 moveto -6.422384e+01 3.507462e+01 lineto -6.834367e+01 3.529442e+01 lineto -6.917799e+01 3.832371e+01 lineto -6.46462e+01 3.808193e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.917799e+01 3.832371e+01 moveto -6.834367e+01 3.529442e+01 lineto -7.225805e+01 3.565473e+01 lineto -7.348379e+01 3.872005e+01 lineto -6.917799e+01 3.832371e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.348379e+01 3.872005e+01 moveto -7.225805e+01 3.565473e+01 lineto -7.58706e+01 3.614668e+01 lineto -7.745758e+01 3.926119e+01 lineto -7.348379e+01 3.872005e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.745758e+01 3.926119e+01 moveto -7.58706e+01 3.614668e+01 lineto -7.909236e+01 3.675815e+01 lineto -8.10015e+01 3.993381e+01 lineto -7.745758e+01 3.926119e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -8.10015e+01 3.993381e+01 moveto -7.909236e+01 3.675815e+01 lineto -8.1844e+01 3.74741e+01 lineto -8.40283e+01 4.072135e+01 lineto -8.10015e+01 3.993381e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -8.40283e+01 4.072135e+01 moveto -8.1844e+01 3.74741e+01 lineto -8.405778e+01 3.827689e+01 lineto -8.646344e+01 4.160441e+01 lineto -8.40283e+01 4.072135e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -8.646344e+01 4.160441e+01 moveto -8.405778e+01 3.827689e+01 lineto -8.567917e+01 3.914675e+01 lineto -8.824696e+01 4.256126e+01 lineto -8.646344e+01 4.160441e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -8.824696e+01 4.256126e+01 moveto -8.567917e+01 3.914675e+01 lineto -8.666825e+01 4.006227e+01 lineto -8.933494e+01 4.356832e+01 lineto -8.824696e+01 4.256126e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -3.066506e+01 4.356832e+01 moveto -3.333175e+01 4.006227e+01 lineto -3.432083e+01 3.914675e+01 lineto -3.175304e+01 4.256126e+01 lineto -3.066506e+01 4.356832e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -3.175304e+01 4.256126e+01 moveto -3.432083e+01 3.914675e+01 lineto -3.594222e+01 3.827689e+01 lineto -3.353656e+01 4.160441e+01 lineto -3.175304e+01 4.256126e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -3.353656e+01 4.160441e+01 moveto -3.594222e+01 3.827689e+01 lineto -3.8156e+01 3.74741e+01 lineto -3.59717e+01 4.072135e+01 lineto -3.353656e+01 4.160441e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -3.59717e+01 4.072135e+01 moveto -3.8156e+01 3.74741e+01 lineto -4.090764e+01 3.675815e+01 lineto -3.89985e+01 3.993381e+01 lineto -3.59717e+01 4.072135e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -3.89985e+01 3.993381e+01 moveto -4.090764e+01 3.675815e+01 lineto -4.41294e+01 3.614668e+01 lineto -4.254242e+01 3.926119e+01 lineto -3.89985e+01 3.993381e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.254242e+01 3.926119e+01 moveto -4.41294e+01 3.614668e+01 lineto -4.774195e+01 3.565473e+01 lineto -4.651621e+01 3.872005e+01 lineto -4.254242e+01 3.926119e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.651621e+01 3.872005e+01 moveto -4.774195e+01 3.565473e+01 lineto -5.165633e+01 3.529442e+01 lineto -5.082201e+01 3.832371e+01 lineto -4.651621e+01 3.872005e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.082201e+01 3.832371e+01 moveto -5.165633e+01 3.529442e+01 lineto -5.577616e+01 3.507462e+01 lineto -5.53538e+01 3.808193e+01 lineto -5.082201e+01 3.832371e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.53538e+01 3.808193e+01 moveto -5.577616e+01 3.507462e+01 lineto -6.0e+01 3.500075e+01 lineto -6.0e+01 3.800067e+01 lineto -5.53538e+01 3.808193e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.0e+01 4.10006e+01 moveto -6.0e+01 3.800067e+01 lineto -6.46462e+01 3.808193e+01 lineto -6.506856e+01 4.108925e+01 lineto -6.0e+01 4.10006e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.506856e+01 4.108925e+01 moveto -6.46462e+01 3.808193e+01 lineto -6.917799e+01 3.832371e+01 lineto -7.001232e+01 4.1353e+01 lineto -6.506856e+01 4.108925e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.001232e+01 4.1353e+01 moveto -6.917799e+01 3.832371e+01 lineto -7.348379e+01 3.872005e+01 lineto -7.470954e+01 4.178537e+01 lineto -7.001232e+01 4.1353e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.470954e+01 4.178537e+01 moveto -7.348379e+01 3.872005e+01 lineto -7.745758e+01 3.926119e+01 lineto -7.904456e+01 4.23757e+01 lineto -7.470954e+01 4.178537e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.904456e+01 4.23757e+01 moveto -7.745758e+01 3.926119e+01 lineto -8.10015e+01 3.993381e+01 lineto -8.291064e+01 4.310947e+01 lineto -7.904456e+01 4.23757e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -8.291064e+01 4.310947e+01 moveto -8.10015e+01 3.993381e+01 lineto -8.40283e+01 4.072135e+01 lineto -8.621259e+01 4.39686e+01 lineto -8.291064e+01 4.310947e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -8.621259e+01 4.39686e+01 moveto -8.40283e+01 4.072135e+01 lineto -8.646344e+01 4.160441e+01 lineto -8.886909e+01 4.493193e+01 lineto -8.621259e+01 4.39686e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -8.886909e+01 4.493193e+01 moveto -8.646344e+01 4.160441e+01 lineto -8.824696e+01 4.256126e+01 lineto -9.081474e+01 4.597576e+01 lineto -8.886909e+01 4.493193e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -9.081474e+01 4.597576e+01 moveto -8.824696e+01 4.256126e+01 lineto -8.933494e+01 4.356832e+01 lineto -9.200164e+01 4.707437e+01 lineto -9.081474e+01 4.597576e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -2.799836e+01 4.707437e+01 moveto -3.066506e+01 4.356832e+01 lineto -3.175304e+01 4.256126e+01 lineto -2.918526e+01 4.597576e+01 lineto -2.799836e+01 4.707437e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -2.918526e+01 4.597576e+01 moveto -3.175304e+01 4.256126e+01 lineto -3.353656e+01 4.160441e+01 lineto -3.113091e+01 4.493193e+01 lineto -2.918526e+01 4.597576e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -3.113091e+01 4.493193e+01 moveto -3.353656e+01 4.160441e+01 lineto -3.59717e+01 4.072135e+01 lineto -3.378741e+01 4.39686e+01 lineto -3.113091e+01 4.493193e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -3.378741e+01 4.39686e+01 moveto -3.59717e+01 4.072135e+01 lineto -3.89985e+01 3.993381e+01 lineto -3.708936e+01 4.310947e+01 lineto -3.378741e+01 4.39686e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -3.708936e+01 4.310947e+01 moveto -3.89985e+01 3.993381e+01 lineto -4.254242e+01 3.926119e+01 lineto -4.095544e+01 4.23757e+01 lineto -3.708936e+01 4.310947e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.095544e+01 4.23757e+01 moveto -4.254242e+01 3.926119e+01 lineto -4.651621e+01 3.872005e+01 lineto -4.529046e+01 4.178537e+01 lineto -4.095544e+01 4.23757e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.529046e+01 4.178537e+01 moveto -4.651621e+01 3.872005e+01 lineto -5.082201e+01 3.832371e+01 lineto -4.998768e+01 4.1353e+01 lineto -4.529046e+01 4.178537e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.998768e+01 4.1353e+01 moveto -5.082201e+01 3.832371e+01 lineto -5.53538e+01 3.808193e+01 lineto -5.493144e+01 4.108925e+01 lineto -4.998768e+01 4.1353e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.493144e+01 4.108925e+01 moveto -5.53538e+01 3.808193e+01 lineto -6.0e+01 3.800067e+01 lineto -6.0e+01 4.10006e+01 lineto -5.493144e+01 4.108925e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.0e+01 4.400052e+01 moveto -6.0e+01 4.10006e+01 lineto -6.506856e+01 4.108925e+01 lineto -6.549092e+01 4.409656e+01 lineto -6.0e+01 4.400052e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.549092e+01 4.409656e+01 moveto -6.506856e+01 4.108925e+01 lineto -7.001232e+01 4.1353e+01 lineto -7.084664e+01 4.438229e+01 lineto -6.549092e+01 4.409656e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.084664e+01 4.438229e+01 moveto -7.001232e+01 4.1353e+01 lineto -7.470954e+01 4.178537e+01 lineto -7.593528e+01 4.485069e+01 lineto -7.084664e+01 4.438229e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.593528e+01 4.485069e+01 moveto -7.470954e+01 4.178537e+01 lineto -7.904456e+01 4.23757e+01 lineto -8.063154e+01 4.549021e+01 lineto -7.593528e+01 4.485069e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -8.063154e+01 4.549021e+01 moveto -7.904456e+01 4.23757e+01 lineto -8.291064e+01 4.310947e+01 lineto -8.481978e+01 4.628512e+01 lineto -8.063154e+01 4.549021e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -8.481978e+01 4.628512e+01 moveto -8.291064e+01 4.310947e+01 lineto -8.621259e+01 4.39686e+01 lineto -8.839688e+01 4.721584e+01 lineto -8.481978e+01 4.628512e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -8.839688e+01 4.721584e+01 moveto -8.621259e+01 4.39686e+01 lineto -8.886909e+01 4.493193e+01 lineto -9.127475e+01 4.825946e+01 lineto -8.839688e+01 4.721584e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -9.127475e+01 4.825946e+01 moveto -8.886909e+01 4.493193e+01 lineto -9.081474e+01 4.597576e+01 lineto -9.338253e+01 4.939026e+01 lineto -9.127475e+01 4.825946e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -9.338253e+01 4.939026e+01 moveto -9.081474e+01 4.597576e+01 lineto -9.200164e+01 4.707437e+01 lineto -9.466833e+01 5.058042e+01 lineto -9.338253e+01 4.939026e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -2.533167e+01 5.058042e+01 moveto -2.799836e+01 4.707437e+01 lineto -2.918526e+01 4.597576e+01 lineto -2.661747e+01 4.939026e+01 lineto -2.533167e+01 5.058042e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -2.661747e+01 4.939026e+01 moveto -2.918526e+01 4.597576e+01 lineto -3.113091e+01 4.493193e+01 lineto -2.872525e+01 4.825946e+01 lineto -2.661747e+01 4.939026e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -2.872525e+01 4.825946e+01 moveto -3.113091e+01 4.493193e+01 lineto -3.378741e+01 4.39686e+01 lineto -3.160312e+01 4.721584e+01 lineto -2.872525e+01 4.825946e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -3.160312e+01 4.721584e+01 moveto -3.378741e+01 4.39686e+01 lineto -3.708936e+01 4.310947e+01 lineto -3.518022e+01 4.628512e+01 lineto -3.160312e+01 4.721584e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -3.518022e+01 4.628512e+01 moveto -3.708936e+01 4.310947e+01 lineto -4.095544e+01 4.23757e+01 lineto -3.936846e+01 4.549021e+01 lineto -3.518022e+01 4.628512e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -3.936846e+01 4.549021e+01 moveto -4.095544e+01 4.23757e+01 lineto -4.529046e+01 4.178537e+01 lineto -4.406472e+01 4.485069e+01 lineto -3.936846e+01 4.549021e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.406472e+01 4.485069e+01 moveto -4.529046e+01 4.178537e+01 lineto -4.998768e+01 4.1353e+01 lineto -4.915336e+01 4.438229e+01 lineto -4.406472e+01 4.485069e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.915336e+01 4.438229e+01 moveto -4.998768e+01 4.1353e+01 lineto -5.493144e+01 4.108925e+01 lineto -5.450908e+01 4.409656e+01 lineto -4.915336e+01 4.438229e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.450908e+01 4.409656e+01 moveto -5.493144e+01 4.108925e+01 lineto -6.0e+01 4.10006e+01 lineto -6.0e+01 4.400052e+01 lineto -5.450908e+01 4.409656e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.0e+01 4.700045e+01 moveto -6.0e+01 4.400052e+01 lineto -6.549092e+01 4.409656e+01 lineto -6.591329e+01 4.710387e+01 lineto -6.0e+01 4.700045e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.591329e+01 4.710387e+01 moveto -6.549092e+01 4.409656e+01 lineto -7.084664e+01 4.438229e+01 lineto -7.168097e+01 4.741158e+01 lineto -6.591329e+01 4.710387e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.168097e+01 4.741158e+01 moveto -7.084664e+01 4.438229e+01 lineto -7.593528e+01 4.485069e+01 lineto -7.716102e+01 4.791601e+01 lineto -7.168097e+01 4.741158e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.716102e+01 4.791601e+01 moveto -7.593528e+01 4.485069e+01 lineto -8.063154e+01 4.549021e+01 lineto -8.221852e+01 4.860472e+01 lineto -7.716102e+01 4.791601e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -8.221852e+01 4.860472e+01 moveto -8.063154e+01 4.549021e+01 lineto -8.481978e+01 4.628512e+01 lineto -8.672892e+01 4.946078e+01 lineto -8.221852e+01 4.860472e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -8.672892e+01 4.946078e+01 moveto -8.481978e+01 4.628512e+01 lineto -8.839688e+01 4.721584e+01 lineto -9.058117e+01 5.046309e+01 lineto -8.672892e+01 4.946078e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -9.058117e+01 5.046309e+01 moveto -8.839688e+01 4.721584e+01 lineto -9.127475e+01 4.825946e+01 lineto -9.368041e+01 5.158698e+01 lineto -9.058117e+01 5.046309e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -9.368041e+01 5.158698e+01 moveto -9.127475e+01 4.825946e+01 lineto -9.338253e+01 4.939026e+01 lineto -9.595032e+01 5.280477e+01 lineto -9.368041e+01 5.158698e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -9.595032e+01 5.280477e+01 moveto -9.338253e+01 4.939026e+01 lineto -9.466833e+01 5.058042e+01 lineto -9.733502e+01 5.408648e+01 lineto -9.595032e+01 5.280477e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -2.266498e+01 5.408648e+01 moveto -2.533167e+01 5.058042e+01 lineto -2.661747e+01 4.939026e+01 lineto -2.404968e+01 5.280477e+01 lineto -2.266498e+01 5.408648e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -2.404968e+01 5.280477e+01 moveto -2.661747e+01 4.939026e+01 lineto -2.872525e+01 4.825946e+01 lineto -2.631959e+01 5.158698e+01 lineto -2.404968e+01 5.280477e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -2.631959e+01 5.158698e+01 moveto -2.872525e+01 4.825946e+01 lineto -3.160312e+01 4.721584e+01 lineto -2.941883e+01 5.046309e+01 lineto -2.631959e+01 5.158698e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -2.941883e+01 5.046309e+01 moveto -3.160312e+01 4.721584e+01 lineto -3.518022e+01 4.628512e+01 lineto -3.327108e+01 4.946078e+01 lineto -2.941883e+01 5.046309e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -3.327108e+01 4.946078e+01 moveto -3.518022e+01 4.628512e+01 lineto -3.936846e+01 4.549021e+01 lineto -3.778148e+01 4.860472e+01 lineto -3.327108e+01 4.946078e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -3.778148e+01 4.860472e+01 moveto -3.936846e+01 4.549021e+01 lineto -4.406472e+01 4.485069e+01 lineto -4.283898e+01 4.791601e+01 lineto -3.778148e+01 4.860472e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.283898e+01 4.791601e+01 moveto -4.406472e+01 4.485069e+01 lineto -4.915336e+01 4.438229e+01 lineto -4.831903e+01 4.741158e+01 lineto -4.283898e+01 4.791601e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.831903e+01 4.741158e+01 moveto -4.915336e+01 4.438229e+01 lineto -5.450908e+01 4.409656e+01 lineto -5.408671e+01 4.710387e+01 lineto -4.831903e+01 4.741158e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.408671e+01 4.710387e+01 moveto -5.450908e+01 4.409656e+01 lineto -6.0e+01 4.400052e+01 lineto -6.0e+01 4.700045e+01 lineto -5.408671e+01 4.710387e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.0e+01 5.000037e+01 moveto -6.0e+01 4.700045e+01 lineto -6.591329e+01 4.710387e+01 lineto -6.633565e+01 5.011118e+01 lineto -6.0e+01 5.000037e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.633565e+01 5.011118e+01 moveto -6.591329e+01 4.710387e+01 lineto -7.168097e+01 4.741158e+01 lineto -7.251529e+01 5.044087e+01 lineto -6.633565e+01 5.011118e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.251529e+01 5.044087e+01 moveto -7.168097e+01 4.741158e+01 lineto -7.716102e+01 4.791601e+01 lineto -7.838677e+01 5.098132e+01 lineto -7.251529e+01 5.044087e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.838677e+01 5.098132e+01 moveto -7.716102e+01 4.791601e+01 lineto -8.221852e+01 4.860472e+01 lineto -8.38055e+01 5.171924e+01 lineto -7.838677e+01 5.098132e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -8.38055e+01 5.171924e+01 moveto -8.221852e+01 4.860472e+01 lineto -8.672892e+01 4.946078e+01 lineto -8.863806e+01 5.263644e+01 lineto -8.38055e+01 5.171924e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -8.863806e+01 5.263644e+01 moveto -8.672892e+01 4.946078e+01 lineto -9.058117e+01 5.046309e+01 lineto -9.276546e+01 5.371034e+01 lineto -8.863806e+01 5.263644e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -9.276546e+01 5.371034e+01 moveto -9.058117e+01 5.046309e+01 lineto -9.368041e+01 5.158698e+01 lineto -9.608606e+01 5.49145e+01 lineto -9.276546e+01 5.371034e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -9.608606e+01 5.49145e+01 moveto -9.368041e+01 5.158698e+01 lineto -9.595032e+01 5.280477e+01 lineto -9.851811e+01 5.621927e+01 lineto -9.608606e+01 5.49145e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -9.851811e+01 5.621927e+01 moveto -9.595032e+01 5.280477e+01 lineto -9.733502e+01 5.408648e+01 lineto -1.000017e+02 5.759253e+01 lineto -9.851811e+01 5.621927e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -1.999829e+01 5.759253e+01 moveto -2.266498e+01 5.408648e+01 lineto -2.404968e+01 5.280477e+01 lineto -2.148189e+01 5.621927e+01 lineto -1.999829e+01 5.759253e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -2.148189e+01 5.621927e+01 moveto -2.404968e+01 5.280477e+01 lineto -2.631959e+01 5.158698e+01 lineto -2.391394e+01 5.49145e+01 lineto -2.148189e+01 5.621927e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -2.391394e+01 5.49145e+01 moveto -2.631959e+01 5.158698e+01 lineto -2.941883e+01 5.046309e+01 lineto -2.723454e+01 5.371034e+01 lineto -2.391394e+01 5.49145e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -2.723454e+01 5.371034e+01 moveto -2.941883e+01 5.046309e+01 lineto -3.327108e+01 4.946078e+01 lineto -3.136194e+01 5.263644e+01 lineto -2.723454e+01 5.371034e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -3.136194e+01 5.263644e+01 moveto -3.327108e+01 4.946078e+01 lineto -3.778148e+01 4.860472e+01 lineto -3.61945e+01 5.171924e+01 lineto -3.136194e+01 5.263644e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -3.61945e+01 5.171924e+01 moveto -3.778148e+01 4.860472e+01 lineto -4.283898e+01 4.791601e+01 lineto -4.161323e+01 5.098132e+01 lineto -3.61945e+01 5.171924e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.161323e+01 5.098132e+01 moveto -4.283898e+01 4.791601e+01 lineto -4.831903e+01 4.741158e+01 lineto -4.748471e+01 5.044087e+01 lineto -4.161323e+01 5.098132e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.748471e+01 5.044087e+01 moveto -4.831903e+01 4.741158e+01 lineto -5.408671e+01 4.710387e+01 lineto -5.366435e+01 5.011118e+01 lineto -4.748471e+01 5.044087e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.366435e+01 5.011118e+01 moveto -5.408671e+01 4.710387e+01 lineto -6.0e+01 4.700045e+01 lineto -6.0e+01 5.000037e+01 lineto -5.366435e+01 5.011118e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.0e+01 5.30003e+01 moveto -6.0e+01 5.000037e+01 lineto -6.633565e+01 5.011118e+01 lineto -6.675801e+01 5.311849e+01 lineto -6.0e+01 5.30003e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.675801e+01 5.311849e+01 moveto -6.633565e+01 5.011118e+01 lineto -7.251529e+01 5.044087e+01 lineto -7.334962e+01 5.347016e+01 lineto -6.675801e+01 5.311849e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.334962e+01 5.347016e+01 moveto -7.251529e+01 5.044087e+01 lineto -7.838677e+01 5.098132e+01 lineto -7.961251e+01 5.404664e+01 lineto -7.334962e+01 5.347016e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.961251e+01 5.404664e+01 moveto -7.838677e+01 5.098132e+01 lineto -8.38055e+01 5.171924e+01 lineto -8.539248e+01 5.483375e+01 lineto -7.961251e+01 5.404664e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -8.539248e+01 5.483375e+01 moveto -8.38055e+01 5.171924e+01 lineto -8.863806e+01 5.263644e+01 lineto -9.05472e+01 5.581209e+01 lineto -8.539248e+01 5.483375e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -9.05472e+01 5.581209e+01 moveto -8.863806e+01 5.263644e+01 lineto -9.276546e+01 5.371034e+01 lineto -9.494975e+01 5.695759e+01 lineto -9.05472e+01 5.581209e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -9.494975e+01 5.695759e+01 moveto -9.276546e+01 5.371034e+01 lineto -9.608606e+01 5.49145e+01 lineto -9.849172e+01 5.824202e+01 lineto -9.494975e+01 5.695759e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -9.849172e+01 5.824202e+01 moveto -9.608606e+01 5.49145e+01 lineto -9.851811e+01 5.621927e+01 lineto -1.010859e+02 5.963378e+01 lineto -9.849172e+01 5.824202e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -1.010859e+02 5.963378e+01 moveto -9.851811e+01 5.621927e+01 lineto -1.000017e+02 5.759253e+01 lineto -1.026684e+02 6.109858e+01 lineto -1.010859e+02 5.963378e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -1.73316e+01 6.109858e+01 moveto -1.999829e+01 5.759253e+01 lineto -2.148189e+01 5.621927e+01 lineto -1.89141e+01 5.963378e+01 lineto -1.73316e+01 6.109858e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -1.89141e+01 5.963378e+01 moveto -2.148189e+01 5.621927e+01 lineto -2.391394e+01 5.49145e+01 lineto -2.150828e+01 5.824202e+01 lineto -1.89141e+01 5.963378e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -2.150828e+01 5.824202e+01 moveto -2.391394e+01 5.49145e+01 lineto -2.723454e+01 5.371034e+01 lineto -2.505025e+01 5.695759e+01 lineto -2.150828e+01 5.824202e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -2.505025e+01 5.695759e+01 moveto -2.723454e+01 5.371034e+01 lineto -3.136194e+01 5.263644e+01 lineto -2.94528e+01 5.581209e+01 lineto -2.505025e+01 5.695759e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -2.94528e+01 5.581209e+01 moveto -3.136194e+01 5.263644e+01 lineto -3.61945e+01 5.171924e+01 lineto -3.460752e+01 5.483375e+01 lineto -2.94528e+01 5.581209e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -3.460752e+01 5.483375e+01 moveto -3.61945e+01 5.171924e+01 lineto -4.161323e+01 5.098132e+01 lineto -4.038749e+01 5.404664e+01 lineto -3.460752e+01 5.483375e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.038749e+01 5.404664e+01 moveto -4.161323e+01 5.098132e+01 lineto -4.748471e+01 5.044087e+01 lineto -4.665038e+01 5.347016e+01 lineto -4.038749e+01 5.404664e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.665038e+01 5.347016e+01 moveto -4.748471e+01 5.044087e+01 lineto -5.366435e+01 5.011118e+01 lineto -5.324199e+01 5.311849e+01 lineto -4.665038e+01 5.347016e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.324199e+01 5.311849e+01 moveto -5.366435e+01 5.011118e+01 lineto -6.0e+01 5.000037e+01 lineto -6.0e+01 5.30003e+01 lineto -5.324199e+01 5.311849e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.0e+01 5.600022e+01 moveto -6.0e+01 5.30003e+01 lineto -6.675801e+01 5.311849e+01 lineto -6.718037e+01 5.61258e+01 lineto -6.0e+01 5.600022e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.718037e+01 5.61258e+01 moveto -6.675801e+01 5.311849e+01 lineto -7.334962e+01 5.347016e+01 lineto -7.418394e+01 5.649945e+01 lineto -6.718037e+01 5.61258e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.418394e+01 5.649945e+01 moveto -7.334962e+01 5.347016e+01 lineto -7.961251e+01 5.404664e+01 lineto -8.083826e+01 5.711196e+01 lineto -7.418394e+01 5.649945e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -8.083826e+01 5.711196e+01 moveto -7.961251e+01 5.404664e+01 lineto -8.539248e+01 5.483375e+01 lineto -8.697946e+01 5.794826e+01 lineto -8.083826e+01 5.711196e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -8.697946e+01 5.794826e+01 moveto -8.539248e+01 5.483375e+01 lineto -9.05472e+01 5.581209e+01 lineto -9.245634e+01 5.898775e+01 lineto -8.697946e+01 5.794826e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -9.245634e+01 5.898775e+01 moveto -9.05472e+01 5.581209e+01 lineto -9.494975e+01 5.695759e+01 lineto -9.713404e+01 6.020483e+01 lineto -9.245634e+01 5.898775e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -9.713404e+01 6.020483e+01 moveto -9.494975e+01 5.695759e+01 lineto -9.849172e+01 5.824202e+01 lineto -1.008974e+02 6.156955e+01 lineto -9.713404e+01 6.020483e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -1.008974e+02 6.156955e+01 moveto -9.849172e+01 5.824202e+01 lineto -1.010859e+02 5.963378e+01 lineto -1.036537e+02 6.304828e+01 lineto -1.008974e+02 6.156955e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -1.036537e+02 6.304828e+01 moveto -1.010859e+02 5.963378e+01 lineto -1.026684e+02 6.109858e+01 lineto -1.053351e+02 6.460463e+01 lineto -1.036537e+02 6.304828e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -1.466491e+01 6.460463e+01 moveto -1.73316e+01 6.109858e+01 lineto -1.89141e+01 5.963378e+01 lineto -1.634631e+01 6.304828e+01 lineto -1.466491e+01 6.460463e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -1.634631e+01 6.304828e+01 moveto -1.89141e+01 5.963378e+01 lineto -2.150828e+01 5.824202e+01 lineto -1.910262e+01 6.156955e+01 lineto -1.634631e+01 6.304828e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -1.910262e+01 6.156955e+01 moveto -2.150828e+01 5.824202e+01 lineto -2.505025e+01 5.695759e+01 lineto -2.286596e+01 6.020483e+01 lineto -1.910262e+01 6.156955e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -2.286596e+01 6.020483e+01 moveto -2.505025e+01 5.695759e+01 lineto -2.94528e+01 5.581209e+01 lineto -2.754366e+01 5.898775e+01 lineto -2.286596e+01 6.020483e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -2.754366e+01 5.898775e+01 moveto -2.94528e+01 5.581209e+01 lineto -3.460752e+01 5.483375e+01 lineto -3.302054e+01 5.794826e+01 lineto -2.754366e+01 5.898775e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -3.302054e+01 5.794826e+01 moveto -3.460752e+01 5.483375e+01 lineto -4.038749e+01 5.404664e+01 lineto -3.916174e+01 5.711196e+01 lineto -3.302054e+01 5.794826e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -3.916174e+01 5.711196e+01 moveto -4.038749e+01 5.404664e+01 lineto -4.665038e+01 5.347016e+01 lineto -4.581606e+01 5.649945e+01 lineto -3.916174e+01 5.711196e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.581606e+01 5.649945e+01 moveto -4.665038e+01 5.347016e+01 lineto -5.324199e+01 5.311849e+01 lineto -5.281963e+01 5.61258e+01 lineto -4.581606e+01 5.649945e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.281963e+01 5.61258e+01 moveto -5.324199e+01 5.311849e+01 lineto -6.0e+01 5.30003e+01 lineto -6.0e+01 5.600022e+01 lineto -5.281963e+01 5.61258e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.0e+01 5.900015e+01 moveto -6.0e+01 5.600022e+01 lineto -6.718037e+01 5.61258e+01 lineto -6.760274e+01 5.913312e+01 lineto -6.0e+01 5.900015e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.760274e+01 5.913312e+01 moveto -6.718037e+01 5.61258e+01 lineto -7.418394e+01 5.649945e+01 lineto -7.501827e+01 5.952874e+01 lineto -6.760274e+01 5.913312e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.501827e+01 5.952874e+01 moveto -7.418394e+01 5.649945e+01 lineto -8.083826e+01 5.711196e+01 lineto -8.2064e+01 6.017728e+01 lineto -7.501827e+01 5.952874e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -8.2064e+01 6.017728e+01 moveto -8.083826e+01 5.711196e+01 lineto -8.697946e+01 5.794826e+01 lineto -8.856644e+01 6.106277e+01 lineto -8.2064e+01 6.017728e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -8.856644e+01 6.106277e+01 moveto -8.697946e+01 5.794826e+01 lineto -9.245634e+01 5.898775e+01 lineto -9.436549e+01 6.216341e+01 lineto -8.856644e+01 6.106277e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -9.436549e+01 6.216341e+01 moveto -9.245634e+01 5.898775e+01 lineto -9.713404e+01 6.020483e+01 lineto -9.931834e+01 6.345208e+01 lineto -9.436549e+01 6.216341e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -9.931834e+01 6.345208e+01 moveto -9.713404e+01 6.020483e+01 lineto -1.008974e+02 6.156955e+01 lineto -1.03303e+02 6.489707e+01 lineto -9.931834e+01 6.345208e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -1.03303e+02 6.489707e+01 moveto -1.008974e+02 6.156955e+01 lineto -1.036537e+02 6.304828e+01 lineto -1.062215e+02 6.646279e+01 lineto -1.03303e+02 6.489707e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -1.062215e+02 6.646279e+01 moveto -1.036537e+02 6.304828e+01 lineto -1.053351e+02 6.460463e+01 lineto -1.080018e+02 6.811068e+01 lineto -1.062215e+02 6.646279e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -1.199821e+01 6.811068e+01 moveto -1.466491e+01 6.460463e+01 lineto -1.634631e+01 6.304828e+01 lineto -1.377852e+01 6.646279e+01 lineto -1.199821e+01 6.811068e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -1.377852e+01 6.646279e+01 moveto -1.634631e+01 6.304828e+01 lineto -1.910262e+01 6.156955e+01 lineto -1.669696e+01 6.489707e+01 lineto -1.377852e+01 6.646279e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -1.669696e+01 6.489707e+01 moveto -1.910262e+01 6.156955e+01 lineto -2.286596e+01 6.020483e+01 lineto -2.068166e+01 6.345208e+01 lineto -1.669696e+01 6.489707e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -2.068166e+01 6.345208e+01 moveto -2.286596e+01 6.020483e+01 lineto -2.754366e+01 5.898775e+01 lineto -2.563451e+01 6.216341e+01 lineto -2.068166e+01 6.345208e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -2.563451e+01 6.216341e+01 moveto -2.754366e+01 5.898775e+01 lineto -3.302054e+01 5.794826e+01 lineto -3.143356e+01 6.106277e+01 lineto -2.563451e+01 6.216341e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -3.143356e+01 6.106277e+01 moveto -3.302054e+01 5.794826e+01 lineto -3.916174e+01 5.711196e+01 lineto -3.7936e+01 6.017728e+01 lineto -3.143356e+01 6.106277e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -3.7936e+01 6.017728e+01 moveto -3.916174e+01 5.711196e+01 lineto -4.581606e+01 5.649945e+01 lineto -4.498173e+01 5.952874e+01 lineto -3.7936e+01 6.017728e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.498173e+01 5.952874e+01 moveto -4.581606e+01 5.649945e+01 lineto -5.281963e+01 5.61258e+01 lineto -5.239726e+01 5.913312e+01 lineto -4.498173e+01 5.952874e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.239726e+01 5.913312e+01 moveto -5.281963e+01 5.61258e+01 lineto -6.0e+01 5.600022e+01 lineto -6.0e+01 5.900015e+01 lineto -5.239726e+01 5.913312e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.0e+01 6.200007e+01 moveto -6.0e+01 5.900015e+01 lineto -6.760274e+01 5.913312e+01 lineto -6.80251e+01 6.214043e+01 lineto -6.0e+01 6.200007e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.80251e+01 6.214043e+01 moveto -6.760274e+01 5.913312e+01 lineto -7.501827e+01 5.952874e+01 lineto -7.585259e+01 6.255803e+01 lineto -6.80251e+01 6.214043e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.585259e+01 6.255803e+01 moveto -7.501827e+01 5.952874e+01 lineto -8.2064e+01 6.017728e+01 lineto -8.328974e+01 6.32426e+01 lineto -7.585259e+01 6.255803e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -8.328974e+01 6.32426e+01 moveto -8.2064e+01 6.017728e+01 lineto -8.856644e+01 6.106277e+01 lineto -9.015342e+01 6.417728e+01 lineto -8.328974e+01 6.32426e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -9.015342e+01 6.417728e+01 moveto -8.856644e+01 6.106277e+01 lineto -9.436549e+01 6.216341e+01 lineto -9.627463e+01 6.533906e+01 lineto -9.015342e+01 6.417728e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -9.627463e+01 6.533906e+01 moveto -9.436549e+01 6.216341e+01 lineto -9.931834e+01 6.345208e+01 lineto -1.015026e+02 6.669933e+01 lineto -9.627463e+01 6.533906e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -1.015026e+02 6.669933e+01 moveto -9.931834e+01 6.345208e+01 lineto -1.03303e+02 6.489707e+01 lineto -1.057087e+02 6.822459e+01 lineto -1.015026e+02 6.669933e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -1.057087e+02 6.822459e+01 moveto -1.03303e+02 6.489707e+01 lineto -1.062215e+02 6.646279e+01 lineto -1.087893e+02 6.987729e+01 lineto -1.057087e+02 6.822459e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -1.087893e+02 6.987729e+01 moveto -1.062215e+02 6.646279e+01 lineto -1.080018e+02 6.811068e+01 lineto -1.106685e+02 7.161673e+01 lineto -1.087893e+02 6.987729e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -9.331521e+00 7.161673e+01 moveto -1.199821e+01 6.811068e+01 lineto -1.377852e+01 6.646279e+01 lineto -1.121074e+01 6.987729e+01 lineto -9.331521e+00 7.161673e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -1.121074e+01 6.987729e+01 moveto -1.377852e+01 6.646279e+01 lineto -1.669696e+01 6.489707e+01 lineto -1.429131e+01 6.822459e+01 lineto -1.121074e+01 6.987729e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -1.429131e+01 6.822459e+01 moveto -1.669696e+01 6.489707e+01 lineto -2.068166e+01 6.345208e+01 lineto -1.849737e+01 6.669933e+01 lineto -1.429131e+01 6.822459e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -1.849737e+01 6.669933e+01 moveto -2.068166e+01 6.345208e+01 lineto -2.563451e+01 6.216341e+01 lineto -2.372537e+01 6.533906e+01 lineto -1.849737e+01 6.669933e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -2.372537e+01 6.533906e+01 moveto -2.563451e+01 6.216341e+01 lineto -3.143356e+01 6.106277e+01 lineto -2.984658e+01 6.417728e+01 lineto -2.372537e+01 6.533906e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -2.984658e+01 6.417728e+01 moveto -3.143356e+01 6.106277e+01 lineto -3.7936e+01 6.017728e+01 lineto -3.671026e+01 6.32426e+01 lineto -2.984658e+01 6.417728e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -3.671026e+01 6.32426e+01 moveto -3.7936e+01 6.017728e+01 lineto -4.498173e+01 5.952874e+01 lineto -4.414741e+01 6.255803e+01 lineto -3.671026e+01 6.32426e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.414741e+01 6.255803e+01 moveto -4.498173e+01 5.952874e+01 lineto -5.239726e+01 5.913312e+01 lineto -5.19749e+01 6.214043e+01 lineto -4.414741e+01 6.255803e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.19749e+01 6.214043e+01 moveto -5.239726e+01 5.913312e+01 lineto -6.0e+01 5.900015e+01 lineto -6.0e+01 6.200007e+01 lineto -5.19749e+01 6.214043e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.0e+01 6.5e+01 moveto -6.0e+01 6.200007e+01 lineto -6.80251e+01 6.214043e+01 lineto -6.844746e+01 6.514774e+01 lineto -6.0e+01 6.5e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.844746e+01 6.514774e+01 moveto -6.80251e+01 6.214043e+01 lineto -7.585259e+01 6.255803e+01 lineto -7.668692e+01 6.558732e+01 lineto -6.844746e+01 6.514774e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -7.668692e+01 6.558732e+01 moveto -7.585259e+01 6.255803e+01 lineto -8.328974e+01 6.32426e+01 lineto -8.451549e+01 6.630792e+01 lineto -7.668692e+01 6.558732e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -8.451549e+01 6.630792e+01 moveto -8.328974e+01 6.32426e+01 lineto -9.015342e+01 6.417728e+01 lineto -9.17404e+01 6.72918e+01 lineto -8.451549e+01 6.630792e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -9.17404e+01 6.72918e+01 moveto -9.015342e+01 6.417728e+01 lineto -9.627463e+01 6.533906e+01 lineto -9.818377e+01 6.851472e+01 lineto -9.17404e+01 6.72918e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -9.818377e+01 6.851472e+01 moveto -9.627463e+01 6.533906e+01 lineto -1.015026e+02 6.669933e+01 lineto -1.036869e+02 6.994658e+01 lineto -9.818377e+01 6.851472e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -1.036869e+02 6.994658e+01 moveto -1.015026e+02 6.669933e+01 lineto -1.057087e+02 6.822459e+01 lineto -1.081144e+02 7.155211e+01 lineto -1.036869e+02 6.994658e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -1.081144e+02 7.155211e+01 moveto -1.057087e+02 6.822459e+01 lineto -1.087893e+02 6.987729e+01 lineto -1.113571e+02 7.32918e+01 lineto -1.081144e+02 7.155211e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -1.113571e+02 7.32918e+01 moveto -1.087893e+02 6.987729e+01 lineto -1.106685e+02 7.161673e+01 lineto -1.133352e+02 7.512279e+01 lineto -1.113571e+02 7.32918e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -6.66483e+00 7.512279e+01 moveto -9.331521e+00 7.161673e+01 lineto -1.121074e+01 6.987729e+01 lineto -8.642948e+00 7.32918e+01 lineto -6.66483e+00 7.512279e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -8.642948e+00 7.32918e+01 moveto -1.121074e+01 6.987729e+01 lineto -1.429131e+01 6.822459e+01 lineto -1.188565e+01 7.155211e+01 lineto -8.642948e+00 7.32918e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -1.188565e+01 7.155211e+01 moveto -1.429131e+01 6.822459e+01 lineto -1.849737e+01 6.669933e+01 lineto -1.631308e+01 6.994658e+01 lineto -1.188565e+01 7.155211e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -1.631308e+01 6.994658e+01 moveto -1.849737e+01 6.669933e+01 lineto -2.372537e+01 6.533906e+01 lineto -2.181623e+01 6.851472e+01 lineto -1.631308e+01 6.994658e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -2.181623e+01 6.851472e+01 moveto -2.372537e+01 6.533906e+01 lineto -2.984658e+01 6.417728e+01 lineto -2.82596e+01 6.72918e+01 lineto -2.181623e+01 6.851472e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -2.82596e+01 6.72918e+01 moveto -2.984658e+01 6.417728e+01 lineto -3.671026e+01 6.32426e+01 lineto -3.548451e+01 6.630792e+01 lineto -2.82596e+01 6.72918e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -3.548451e+01 6.630792e+01 moveto -3.671026e+01 6.32426e+01 lineto -4.414741e+01 6.255803e+01 lineto -4.331308e+01 6.558732e+01 lineto -3.548451e+01 6.630792e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -4.331308e+01 6.558732e+01 moveto -4.414741e+01 6.255803e+01 lineto -5.19749e+01 6.214043e+01 lineto -5.155254e+01 6.514774e+01 lineto -4.331308e+01 6.558732e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -5.155254e+01 6.514774e+01 moveto -5.19749e+01 6.214043e+01 lineto -6.0e+01 6.200007e+01 lineto -6.0e+01 6.5e+01 lineto -5.155254e+01 6.514774e+01 lineto -closepath -clip -newpath -6.0e+01 5.0e+00 moveto -6.0e+01 7.7e+01 lineto -gsave -5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -0 0 0 setrgbcolor - -% Comment: canvas init - -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -1.0e+01 setmiterlimit -gsave -/CMSS10 findfont -10.0 scalefont -setfont -8.20584e+01 7.88e+01 moveto -gsave -[ 0.9 0.0 0.0 0.9 13.0173015362 -577.511830635 ] concat -(\062) show -grestore -grestore -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -grestore -gsave -newpath -3.0e-01 3.0e-01 3.0e-01 setrgbcolor - -% Comment: canvas init - -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -1.0e+01 setmiterlimit -gsave -/CMSS10 findfont -10.0 scalefont -setfont -5.281679e+01 5.246102e+01 moveto -gsave -[ 0.9 0.0 0.0 0.9 -16.2243010372 -603.850810225 ] concat -(\064) show -grestore -grestore -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -grestore -grestore -grestore showpage - -% --------------------------------------------------------- - -%%Trailer -%%EOF +%!PS-Adobe-2.0 EPSF-3.0 +%%BoundingBox: 0 0 120 100 +%%Pages: 1 +%%PageOrder: Ascend + +%%BeginProlog +%%BeginProcSet: +/ReEncodeFont { exch findfont << >> copy dup 3 2 roll /Encoding exch put definefont } def +%%EndProcSet +%%BeginFont: CMSS10 +%!PS-AdobeFont-1.0: CMSS10 003.002 +%%Title: CMSS10 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMSS10. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments + +FontDirectory/CMSS10 known{/CMSS10 findfont dup/UniqueID known{dup +/UniqueID get 5000803 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /CMSS10 def +/FontBBox {-61 -250 999 759 }readonly def +/UniqueID 5000803 def +/PaintType 0 def +/FontInfo 9 dict dup begin + /version (003.002) readonly def + /Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMSS10.) readonly def + /FullName (CMSS10) readonly def + /FamilyName (Computer Modern) readonly def + /Weight (Medium) readonly def + /ItalicAngle 0 def + /isFixedPitch false def + /UnderlinePosition -100 def + /UnderlineThickness 50 def +end readonly def +/Encoding 256 array + 0 1 255 { 1 index exch /.notdef put} for +dup 0 /Gamma put +dup 1 /Delta put +dup 2 /Theta put +dup 3 /Lambda put +dup 4 /Xi put +dup 5 /Pi put +dup 6 /Sigma put +dup 7 /Upsilon put +dup 8 /Phi put +dup 9 /Psi put +dup 10 /Omega put +dup 11 /ff put +dup 12 /fi put +dup 13 /fl put +dup 14 /ffi put +dup 15 /ffl put +dup 16 /dotlessi put +dup 17 /dotlessj put +dup 18 /grave put +dup 19 /acute put +dup 20 /caron put +dup 21 /breve put +dup 22 /macron put +dup 23 /ring put +dup 24 /cedilla put +dup 25 /germandbls put +dup 26 /ae put +dup 27 /oe put +dup 28 /oslash put +dup 29 /AE put +dup 30 /OE put +dup 31 /Oslash put +dup 32 /suppress put +dup 33 /exclam put +dup 34 /quotedblright put +dup 35 /numbersign put +dup 36 /dollar put +dup 37 /percent put +dup 38 /ampersand put +dup 39 /quoteright put +dup 40 /parenleft put +dup 41 /parenright put +dup 42 /asterisk put +dup 43 /plus put +dup 44 /comma put +dup 45 /hyphen put +dup 46 /period put +dup 47 /slash put +dup 48 /zero put +dup 49 /one put +dup 50 /two put +dup 51 /three put +dup 52 /four put +dup 53 /five put +dup 54 /six put +dup 55 /seven put +dup 56 /eight put +dup 57 /nine put +dup 58 /colon put +dup 59 /semicolon put +dup 60 /exclamdown put +dup 61 /equal put +dup 62 /questiondown put +dup 63 /question put +dup 64 /at put +dup 65 /A put +dup 66 /B put +dup 67 /C put +dup 68 /D put +dup 69 /E put +dup 70 /F put +dup 71 /G put +dup 72 /H put +dup 73 /I put +dup 74 /J put +dup 75 /K put +dup 76 /L put +dup 77 /M put +dup 78 /N put +dup 79 /O put +dup 80 /P put +dup 81 /Q put +dup 82 /R put +dup 83 /S put +dup 84 /T put +dup 85 /U put +dup 86 /V put +dup 87 /W put +dup 88 /X put +dup 89 /Y put +dup 90 /Z put +dup 91 /bracketleft put +dup 92 /quotedblleft put +dup 93 /bracketright put +dup 94 /circumflex put +dup 95 /dotaccent put +dup 96 /quoteleft put +dup 97 /a put +dup 98 /b put +dup 99 /c put +dup 100 /d put +dup 101 /e put +dup 102 /f put +dup 103 /g put +dup 104 /h put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 108 /l put +dup 109 /m put +dup 110 /n put +dup 111 /o put +dup 112 /p put +dup 113 /q put +dup 114 /r put +dup 115 /s put +dup 116 /t put +dup 117 /u put +dup 118 /v put +dup 119 /w put +dup 120 /x put +dup 121 /y put +dup 122 /z put +dup 123 /endash put +dup 124 /emdash put +dup 125 /hungarumlaut put +dup 126 /tilde put +dup 127 /dieresis put +dup 128 /suppress put +dup 160 /space put +dup 161 /Gamma put +dup 162 /Delta put +dup 163 /Theta put +dup 164 /Lambda put +dup 165 /Xi put +dup 166 /Pi put +dup 167 /Sigma put +dup 168 /Upsilon put +dup 169 /Phi put +dup 170 /Psi put +dup 171 /sfthyphen put +dup 172 /nbspace put +dup 173 /Omega put +dup 174 /ff put +dup 175 /fi put +dup 176 /fl put +dup 177 /ffi put +dup 178 /ffl put +dup 179 /dotlessi put +dup 180 /dotlessj put +dup 181 /grave put +dup 182 /acute put +dup 183 /caron put +dup 184 /breve put +dup 185 /macron put +dup 186 /ring put +dup 187 /cedilla put +dup 188 /germandbls put +dup 189 /ae put +dup 190 /oe put +dup 191 /oslash put +dup 192 /AE put +dup 193 /OE put +dup 194 /Oslash put +dup 195 /suppress put +dup 196 /dieresis put +readonly def +currentdict end +currentfile eexec +D9D66F633B846AB284BCF8B0411B772DE5CD06DFE1BE899059C588357426D7A07B684C079A47D271 +426064AD18CB9750D8A986D1D67C1B2AEEF8CE785CC19C81DE96489F740045C5E342F02DA1C9F9F3 +C167651E646F1A67CF379789E311EF91511D0F605B045B279357D6FC8537C233E7AEE6A4FDBE73E7 +5A39EB206D20A6F61021961B748D419EBEEB028B592124E174CA595C108E12725B9875544955CFFD +028B698EF742BC8C19F979E35B8E99CADDDDC89CC6C59733F2A24BC3AF36AD861319147A4A219ECB +92D0D9F6228B51A97C295470093CA270C4488BB4EB864B4863941B9739638D2E6F3CC778582B46AE +B4E466D89D1C211225274356A4BC90F3274C6AA56E200249B7D0949A3FD4185DCB3E5286910EFD7C +A72D5D8E8052C96F388D12094B87D3705CE64459558CF024667C0FE96CBB32B0BC9E51037D7BD62B +E4B05FF99384E71D78441A79B0B1DBA1CAE02434A9FAE46596FB86B873B1670DAE0BAF516445A0DD +C127F8FF3ADA0B10EC30A9CC1F7E9248828B5E8AB46C3FE4154B80A54128A08777F5F9B8C519C7E3 +B632B3476F007FA156E9F39FBE57638B4214CD2BA79BA9DDA0F4C073AED814ABCCC2F7906C57A872 +C00E67FF03AC120029DAB92376422FA21C67CA98BCEB8C431CA2D3EDDC16BDA59363F49614070AA6 +859105192CCC6E4911B0B5D0FBDE04872D8C8D84FE6B68702FBFC4682186E03F2141CF8FC8E23254 +2FF446E00D34A7B9B9271B07DEEED93C336653ED0F51DBA0DE34235097373CA4583095151642EEE7 +6B6BA6714F37031F5AD2ECA4875FD02F65D47541F5245588F0CB5933A759342FC460ABF99E014A85 +CE3BFF948BC38F3D29FAFBD205400093EBD129A9C3AF161E7365DEB2905074660FEC703B6D4733A6 +6EC1E78A1FF3FA90863072C108109D4DFF62166EA04DD1E05225CD1B9A6808413402E9E1E81512B7 +1BFD781132923BA7B5DB7032E7AF65CAD135E8D3C0DDEFE960DECAC693166D83DB2A6D819E40024B +40A114818D7E943849FD90359B4BCC4FB0E2E0373A6200C13F194D735815ACC2E09BF4ABC693DE6E +975F0C27BAD1DCFE8D0A3977B48104EA6F85072BC0F5FD3E8FD8D53DBB088061BDB89249A4C3E6BD +B4A5A0F469D9B53E9B35A4A03F558DC93B8870FD28A829735E1F25F455CEA1CC8DFB408888DDBCEC +C050A84B6EBF39E42B4278F92E44C7A41FAA83CE07255B8CAA9F3EB43368900EEDEAADD836AEB663 +7EFF72351D649500FF3544DAB77FE191A5907B8E7C2AA4A9B18D857C63B2F41279FE6E241EB946D9 +A67B3908CF7146DE0D971192BF7908B3319E6C0B33995F4E54BACDA9040693EA19F24266FF8A46B9 +3D6091337C2BBAACE6ED443A6A83EA4296E41E309192D66122FCF7A37578C45859854CADF75A8299 +727CDC5868F365497886C518C001A3CD4C0A5ED589C3FE9C14269A9DBE9A10FBD6B4B0BB6292975E +F7210A6E4959DE1F3063A98393C63ED63D2EA31353ADC92AC1B924678E81B509CD4470DBD22694E2 +EF36266270A78A350581C6AF9747D92BA0ED2019FFFBDEAA908B373CA6A848512CD5A5607A8EF877 +1533539AE3D2F448FE1092CC640F699D73C6CB421B56C630574A11B5F48DF7DDF4942C82FD5DCC9A +5BF9585CB7715053059CF73503C1FBEF7F8F45546039AE0F3BDDE1ADA78C2DB36040C20848ADB414 +4E71B38A447FFC4F768366416027344912C9134FB30AD513BFB40008884FA98F1D25714121082696 +C877790A06A60BFFB6CFAEACF55453878DF4D972841D7D18E510D5E842416F023BA13A40696FA534 +DB3B0601F45B77FB1CECAD240B8594CC95DF65BD45C1A73D2489D6AA84FD46414D992CDA7D307640 +017951656A3C736C73B116EA9F0A3304EAFA312E46A5152E902D840108C2A1858A95B958055A8080 +B97D612BE59E2D24A5362EF77A83CD8656F8FB6519BDFB3CC43E068C8203BAE620255274AA281972 +A1EE85C378818532B42368AAA93A0C984D7380AD57F1B8FFAAFECAD5EAC17A07DA742E272D3C809B +157D2669AB88DA9EBB91B9E060DE7F275ADFE2FFEA18127969214795E7CD9C27CF902AD3EAD6C6AE +0A4BCDDAD88B6F37932BC7B07D9B43742A08A257DFB3FBB532077039C9CE90386F6C80BDED9CA008 +A7783B6F702DD00D9ECFE3AD9DB0704BBFF4CCBE0B3C75401337CFC1A37E008A09C95C4CE6CF8AF5 +56487D6B320F3B3A9D36623E85FF4119D9EAF24099C2E1D9860DD2187E8CDDF80C4F0B164EC85E0B +21901D017E0A20FBE2090DB90EEE5C9BD2EAD87725F7FF37FD8F43031494817603B8A7E69FEE78D1 +4AC7A66F16800B4B7943B7AED95E9044282017A0FED40F053EBFCA7E292B6C4E0C8DB47B054C91C9 +A1DE4A2741E5E7970AE431494BACF4AA487BCA0080D9A6A3FA3D0E77373F2D40B300D8936C71D83B +3332EE113D087B38E1852312C21ED29C688FFD05D07629D2A48AE9B7B6363AAFFC6CC5ABC96A996E +478C37D745E5B6C90A006349A971C554C27F1D4F7AD1CFED394315EE5C7E681D491213E010A328BF +49C988D7E490BDEA5A86B0F2A8C845A01D84751E1C4BFDDD19045AFDC1283279D7AA6A1FBFD539D3 +A0BEC325597E025A4DE112CBFDB439FE719E690F8DCBEDA826D6546EDF93EDCB67F5AA78FD308CC9 +4EB375BA5FD443083665C0E361462AE4EC541ECD1891B6A7B41715FEBAAAB658FF924A171F4504E5 +03CBC27912393C0F85DF4B276DB39A174CF94B2D6FAC5E3E4F886B2C0D67DF8C502E1E513D934938 +831AAD911F3270A67FA434FD5E3D02E9655661BFC2BB9FE7460E6AE8CFACF6BF545C41C730AC58DB +BCF9AC8532C9E85D9ECAC11D0F7C55288962DB1EFD351B56BF6F2051C62377B95FF0C93A09966EE9 +C6B792126A6C7E9995F2D68E20308347FAB463F5F2DB2E8675882CEF049EF0A6406E1647137D9A46 +734D6E909754E66704552A41B3698B50417F2F3D4F883E3D3E6A75743820E689AE4818C297572E29 +2B5761396825B38C2E6D96ED290856AC6154C51FD90C3EE498E46295832503D76A22CDAC68B6B7AC +B36BA3496422936F48E1569777229320718C45F71C0F857EE699FDD1526E4A23418681D41940E7E0 +FA2C551FB8B79495719F34C3774B229DF858F51AA2E26094FC181BCAE64EE209EE131B9472D6A7EF +6A131EFB221E0F2CCC829A0D9672CEDACF44453400D15DDD34C4126F003A0E57455B25785E1CC9AB +4D4EE1A3BCCBEE149CDCC7EDE7B1F09DA1174F48048B568094F280F22590903F3B2C6A1A796E851F +71D34972F00FF13EB51F8136490C2BA6909B130CF3170820C652A1733BC4B69297BF1F5CF816BCB7 +5A0AC3520AC1DE911B72DEE5AD0033228B9F75961ED1280C6808ED0FD548411696C1CC747AEF91A4 +1EF05215DB5720AADE50BC598749C67770515BFF6DBC5A940C07AB462AA296621D7722C5A47AB3FA +6305C55216216540098F86A1EE217C77EDC0BC3F6DFEC4AFA266019C20CAAAEB381145B3588FAD0A +AB944AD9F120DFF24168844BF92C279D1DF5923C9ACF10393655F33CB9E7EB09A74BD898D07A31A1 +07326EA219163FD6CA3E5A0985F74421F895F020D3D482444C50B428B364487B0FEF8717ABD8D223 +2B4D35EB256A3AE5C1B0D2AE331A1E1D4D5DBC7BACF361E52719DA50620E5137E085481F632B861E +FFF31AF04624D486130FB361F799FF5219E405C80DBFB653CCB3C2E10934C95417A7E91DBE161727 +C5861A219A59470E6AF895C93AD43FAD820BB4C58C13678AE33D18C3EF8DB36A7270CDB3BA2BDDAC +02B0C93D29829DC2B9087F070FFB297464CBF426545A65B869B2661F5B7B6575119DA27D715F0A42 +DF446901F0F2A632AF5614C9EC1FD2A6C79E676D80DACB9F2B89FC51333B4CA7CD98D8CE8B62959C +86949E2CC2F530333C9A80879850481167A7DC78A8A76DDE664449367B44F711D88EC7028E92AA59 +EBBBF050573B52DC80B0FA653E2EC9E5161C27DFCC86365648249518E72D8954BCBC439742A80ED6 +8A7DAF601400AAB2899D4851040C80A64C1E9D4C500F23ACEDC18C120C2E3D0001C37895247338EF +A633428297ECE1771E26219BC93237DDF71A9CF08D47B323D03E904243D1E98DC596BD7E7677B7D9 +1C06474CEEC23C4DAF1B29029342D16121B3390C87DB04C65447C2515B12B9BCC3AB98B9EABD9636 +1EDCEB53655A24E4845604C560D1120F90ED4456BC543E5916BD60C986482FB77BBE9060121FE179 +8C34A17A6AB350D85904106032A0A107649EEAD9B8F59E4CF5256B025440BB3713C2FA5638D6CEFB +788A39A5A5C51842A13AE24684EC59A6FAE55A64148FE73DFB3234F3912D21D68769C9470E3F2DCE +B860872E0556A5C72FB6FF7F7015D09B116FDFEC79EBF0544A0A989269B34475BF5E18B5A3111496 +FB39BD1B25468B6E5B2EDD1624C1AFD3401A8F2086CF3C9D366834BFF85115EDEAFCA61D1343367A +1F5441246000D9A585EDBE50D5B5CAB2455D58B855DA66180F8E1EAF8A2D1948DF1DA913C8F86F2C +58365A77F4B867309629DC8A9237EF9EF4CA0515B2D1B7B7ED64589CD8D196FC057EB96B392EDCC8 +60C15FA2622A484D32D4E2AFEBAD06946CDDD7B7AACA6C0AA5A41B3BCC91D459AB502137DC8C5032 +C3DC8E5D96D210F702FFA73794B639D0F9E7AE0D2134546FA90360B851782BACEE3C28CF7871D3F8 +12CAF86221212D1D321A07B39A14CAE62F41DC83E7714F3E315A7C63E2DCDCFB7F87DDA2BBC6CC60 +73839FC2F05C03077D8A0C9E7373849927450DF6DAF94B27277349A60073C6979312CC0D5C81A89A +058584982D449F1E993AE1EEF449F1AC7840BBA7AAFD999F622D0D1DD573326683C09082ED3564A9 +B28D29955F89ED47DD0EBC2ABE45B585D10E85CECBE52F919EFDDD9630CF8F90CBF2F156EA791E0D +BD178AFBB1AE3E72E08CB83F896067121B671F63869EA022BA7D11BD63381E33860317F70941E782 +FDADC1224AD556467935E93C63794E07F5AD57FDD0F6D859C82B562E80758E8A5C1EDD8FD2E37E34 +FA42E49098561E8E9696DF5A62F1A27D6B1D0FBC9911A979C25E5A81181BAA04415306D755B890B6 +0523E4A211D00CA64AA90625CBF5ABE06EE227128114B07536D79841004AA4A1FA1612A78DCF0F03 +B121B2870FD3ECCF2C034578F9A3F008DCDE1D8354625DE2A97D78E6F85782F829F79B3E286480B4 +57680BE7758FC50CDFC17E5EE5FB3276BEA977E933AB1BEEB1B27B2F3D164ED5B9AF1280C482ECC5 +952F608E0AD0D1F6363637CFAAEF4F0FC7CAEDA1EFE35BB80C07E0E701633CCA557BD478B70652C4 +874F4AF391481A982AE0AE8F0764EADD9316048CA985B570DDEFEDE6A64EA15A80BE9AA4709E4FA6 +DA9CC49B546955BFEF78320D67D14F120F47BF0C8568D337D6339CAC2FA9C51AF3EAB6AE46A4584A +89BD235ADB26332DB72F5EA2EE4DFCFEF41726C92C2CE299D54EF8A582E766A2C20F429CA48858A0 +D61716B9CDF7D67FFE5D7D6E72ACF982456C52D0986762485E2E111038EA4C67E1183A40249BBECE +EF800CFF6CFABCB532465C496571541110DCEA197B20E1915F9CDB842444BF7CC4A559262C89B487 +A99B92B7EF0087E6893DDBB5895C047D88FCEC1B29029368C65744591AC683FE613D8582066B6000 +35FA0EF7AD4236BF1A4632A7B9DCDAB2F9B8F6FA6C8E3248841AB3CE22D3741DC40F29A61E2676DF +55882F5F41DE8BDA16B6753D8D9EFC41D5C6AEEEE771F712188F4C92641B7C891EDB3484DE68D56F +58E5EF015B98490C17FE3020479384E19AF8AECD888F718055B81A78B8B39FDAC88BDCCC0C1CD447 +A18F0F04BE83D2C6FC44B376E74752EA4ACF043812E4BF1313703F8A9898D8C175CF434C97CBBA18 +197EC3C5A7928844060723A18F19EC2B26AE7CF1C95E4D2FAD1A4F7F9DB3E4143B69B9E0DF94D313 +F41F045B19D8B71376A44E05A5B41F3DB38EE63C24483DDE9F67A0102597DFC316A853C489B61A3C +C7F1A1908E3C63FDFD4D20754A27D27E5B17AFA895787DE85EB9F560EFDFE4EE3ACE1CD5222553A1 +A6B929665EF740E4B8724327B5A6FBA8C1142CA1FDDDE6DC085764FD4C519FA8742BEC0795773D01 +07E832A84B2A4AFF55102C143B67CA605527E129975852C1F99B765E26371D7A47F328DE406D8710 +C0C7242D624DAE937EA7D01056999ECC3A938AA560090C43EE5087B0A0C66CD9186E9C711A2916B6 +266FD68FCF8F6378241A614E8D7A144F3D9B807850F98C4401049B469FAF5C3BECC8741D47CCD383 +32D2C399B40D270B8B68FFACCD9405F619A897C865D3FA84DCE0F1FA9C54B9F8B9B574C9BA981A8F +4D5F4FBDA945D4DAA725DA6E1E24DA5E9803FD2769809AC972338812B14972D3DC6511903712CBFA +F3161D557B671DFE13AA19A942FE564B1EBF441B06D7B7C739DBFD9C96FDABC13A2B7397CCF37EAD +E23ABD4521F69FDBC483411452285234F655AFCA9BAA73BD43E081ED281383B57BA48F6BB92F810E +2031A6E96810116432D402B6EBD9B7208CAAE4D7E40AE1D275E49DBD4867A1DB946A2F7E67530350 +73F2AD5FB626921DA8E6A2C70502CBFF72067E45A1A5223FDEB1F4790BC4D1FCDE1AFBA9F1907652 +98D70C89645D8F39A9ACA1563B870950BF90C8976690A5CA41DB6CB5A6A9CDAF969876ADE9D82492 +35A41B32BB1A0564C55A46351366D61C6CF716ADE7EBD8CDFA6B217F180D3AB24D7CFF8B49992D3E +2A37BAFF83F757E365397602FCD60D70C65F537DF26778F0A1E7C2BAA3C2273FF88151EB2A6DC5C9 +AF099C7A728E95FBC50D889B416A864471EAB31050AF8C6C27A8EF177B3A686EDA6354FE931EB69E +D9B39C7FB5ECBAF29F54CF5A09B36EB52D088226F1ECF75FEC87BB35E00F89A9D6595584C9EDF98D +2CD7735E9545EEFBAFC14F9474453BE920D964FE48BC5D730D919105F890A84699149E36FEC03230 +E3643472DBBE1ED54BB4DBE53353A8AAAB4882F4EE901A2CD474FB1A5AE8E3DA026B721260093742 +D27A4823BEA13FA939B3D28F3D8F5BD8A2298007C0FC3B5A831F0E1294A9A8D7F224F188960994D9 +67CF182F8FF283468CCAA2EFAF24F053FA68BD9B16EE0597DD573844EF2FC8BA518B7EBEF00FA4A5 +D282F27E133F2A976C29B8FABBE95AFA8E82DE895CED761B0EC7E03DFE08BEF1F042BA8110E6218D +065672D5B8EA61D140333D49804A1B41EB9600075B4BE636483FF2179A06DEA1427DAD8F2871DF34 +68108E12980D03EA5F122A64CCB649DD800417F698DD1F38C55340CD07473B5D493BC6C68FDCF84E +6FB9CA9AAD42FE8010193C391AD3CD97C3DF8BEB06A1B5EEDAB48C92BBABFBD7DA041F2C587EC96D +555457B5A2D6FB52486E122B46B0F934B4D3AF86A1F537B108589C0798CD4B11573C1C25214C7118 +703D6A043902C980ED303B63FF038D0FFCE3C73AF6441404C013501D8621C14CA3C2480E6C3ED0C6 +4CAB288817639F43BC26AED457100D0B2D4117911B9A34D9DF00D636A28CE4351BA69B04B108464F +0BEE3A3791F0EF03E3FCA00533A4C0749B922BB56525D632B4D56864566E29588907BE31659D43EA +D3269FBF0BDF7EAC69D636023144BAF8A49410FE55D995C926F90A2FCC6B2C5D13228390F92CC0CD +581E9374C84B10BF5FF66FFA0459D9091374EEEE0645C7E93225359893C1E102065926E0D6485E15 +E8D6F488950C4DE682A76F8DD650811E220D2ED6CCADCF65D46FA81247C52DA15A39CC85C4B8B059 +37D9F3CB303F6CE7E0FAA58973474CF41ECC17BFC9DB2A957B1456491927803C274177A41AF5C041 +47E58B44ACEC2AC0BA966DA50A6318931ECB40B97152A6CD86F720C6366A7B8BA15AC4F03B0BF167 +AE6561779063F2C35A8AF47CB4C3AB05EEFC76F18BE8B54C5135396DE53F0025FDAE047DBE2CAD2C +FFC87FB822EEB92CDFD745EDE31D47925D8D360916491CDA2C40EF9561E94FA09BD0F0F01A5C69B9 +61B2DCA57BDAE1EF3CB223E5BE042533CD81A31BC92A46D84014B8887FD7388B0404214B6C5205D7 +B59E02D03AB22710938B33114DD5DD3C5FCEE28174F4A81959C7F2F52DC619649FAF3BC7D3F0867D +1B8D78B9A9DE9DB68DFC774FBD896843C02A91FD8CF44F18A407ABDF150C4220A12DCB47B390D11B +C6D7C87ADA05274DFAFF33321965754EBFF75B419BECF34BFCF41D02C7ED542D7EF045B32289A2AE +66476610A3640FBD31ACEE4C5B9C882916A12F81D6145E3354F4BE90491692973EB657B7833FE784 +5B0B200090B2530FC82FFBC9B873C27718E8597D6707D0F521A52BAB856F73DE4B0C345E902DC44D +A6BC40E08883BE79FE205F1C6C6DE2A230F1F4AFA78B27ED20C2D7A30F72987D86B494FECBAF1224 +F32B0E4E3CD18D72C35CCEDEF16C8D4D8DBBA8FD526B451498EAE762E2E5F3F0D68C40E221EFE2C2 +11F55A5D1F1C058602F2D9E7247FDB345E8350B8F483C8FE939C71CBF9C33E90BD7054741AF37436 +7BECFF9694AE2F06973F46E8D6BE94D5DF4DF3FC4C46742AB152EABF469497D65B66C08056F90A5E +121683C1B0F91C00318EAB91191B962D67647228929A92FBEB7B5DD5CB67ECF5494A318728BCE386 +6CDC497A69D1151E8693DA446E98664776EBDB07D78CE919C5A36AF67BA04601C649AC46EA968596 +096263885765CBA3CCE6D84260936E204F735DA45C84832C4AFD284ECF25B6240F0288C34D806011 +E9B97ABF0B1CB5FDA87A272064690D7AD7AC2E23291325A17D6A9356A2968072C47C3B4A24046F2F +1B395AB3BEE6103523BE590AF5861B20E26105D9A975DC5053D8E9AFDFEA1BA745EC2962E4B8337B +554A7045868A257173ED0D30E8DF74B5E73280E403235E6835D4AF87FE74D7BA59343CB6D3F245E3 +86377A9D0CE026F26BB682FE26B37A5666AA205307B31CA2AE48F1F11B222928B021F5E0FE4C96AB +A558CCB318EBD50CFFC9612668B337F980A48E88EFD0D6A3183526F171564840FD2625D477557FE6 +3BF4D510C4E7709958BB2573B0AD5D98FA7A28B50B5801A2CEF26223D6A85D670666297AD9446DBE +15F7F67B9922BAA536175E1FCC94AA350C207003C050F26B2844E8BEFE339D008104C3EAAA0C0A7F +8AA62F22E436CD6365BFDCFE638CB0BA3F37C1CF4AC3F92F4316706380C295A2B55441AB218B1731 +9C9085AF82E33AC0B5A636C86376FC1C1A1576CC5B1FE26ACC96ED5AEB1A7EB6444B4FBE37C1BFA9 +62C1D10BEF7FE76C602CF2F88178F1B0F6E4DDA6C89E7C3B85834E3E6944D35E3D948E96C790B474 +E1196CE08A29B908D07BE7CA8EC658B6058C534AEFE9F04D327CA822D0D72A079D3B71AA8C2F22BA +23167534D34702922EC7F1711232D66475284561D50C2A7DE3527A33513C4DE69AAB0019BC3AF306 +40DE71E41D43144E5F28D0631755CFC5C708D0971B01E59340390B682D14A914454E8FB589B73CCC +C4B2C376F220063A87CCE75C +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 + +cleartomark +{restore}if +%%EndFont CMSS10 +%%EndProlog +%%Page: 1 1 +gsave +newpath +0.0e+00 0.0e+00 moveto +1.2e+02 0.0e+00 lineto +1.2e+02 1.0e+02 lineto +0.0e+00 1.0e+02 lineto +closepath +clip +1 setlinecap +1 setlinejoin +gsave +newpath +6.266803e+01 8.507805e+00 moveto +6.000133e+01 5.001753e+00 lineto +6.000135e+01 5.0018e+00 lineto +6.270128e+01 8.60171e+00 lineto +6.266803e+01 8.507805e+00 lineto +closepath +gsave +5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor +fill +grestore +newpath +6.270128e+01 8.60171e+00 moveto +6.000135e+01 5.0018e+00 lineto +6.000133e+01 5.001847e+00 lineto +6.266803e+01 8.695615e+00 lineto +6.270128e+01 8.60171e+00 lineto +closepath +gsave +5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor +fill +grestore +newpath +6.266803e+01 8.695615e+00 moveto +6.000133e+01 5.001847e+00 lineto +6.000128e+01 5.001893e+00 lineto +6.256907e+01 8.787208e+00 lineto +6.266803e+01 8.695615e+00 lineto +closepath +gsave +5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor +fill +grestore +newpath +6.256907e+01 8.787208e+00 moveto +6.000128e+01 5.001893e+00 lineto +6.00012e+01 5.001936e+00 lineto +6.240686e+01 8.874234e+00 lineto +6.256907e+01 8.787208e+00 lineto +closepath +gsave +5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor +fill +grestore +newpath +6.240686e+01 8.874234e+00 moveto +6.00012e+01 5.001936e+00 lineto +6.000109e+01 5.001976e+00 lineto +6.218538e+01 8.954549e+00 lineto +6.240686e+01 8.874234e+00 lineto +closepath +gsave +5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor +fill +grestore +newpath +6.218538e+01 8.954549e+00 moveto +6.000109e+01 5.001976e+00 lineto +6.000095e+01 5.002012e+00 lineto +6.19101e+01 9.026176e+00 lineto +6.218538e+01 8.954549e+00 lineto +closepath +gsave +6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor +fill +grestore +newpath +6.19101e+01 9.026176e+00 moveto +6.000095e+01 5.002012e+00 lineto +6.000079e+01 5.002043e+00 lineto +6.158777e+01 9.087351e+00 lineto +6.19101e+01 9.026176e+00 lineto +closepath +gsave +6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor +fill +grestore +newpath +6.158777e+01 9.087351e+00 moveto +6.000079e+01 5.002043e+00 lineto +6.000061e+01 5.002067e+00 lineto +6.122636e+01 9.136568e+00 lineto +6.158777e+01 9.087351e+00 lineto +closepath +gsave +6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor +fill +grestore +newpath +6.122636e+01 9.136568e+00 moveto +6.000061e+01 5.002067e+00 lineto +6.000042e+01 5.002085e+00 lineto +6.083474e+01 9.172615e+00 lineto +6.122636e+01 9.136568e+00 lineto +closepath +gsave +6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor +fill +grestore +newpath +6.083474e+01 9.172615e+00 moveto +6.000042e+01 5.002085e+00 lineto +6.000021e+01 5.002096e+00 lineto +6.042257e+01 9.194604e+00 lineto +6.083474e+01 9.172615e+00 lineto +closepath +gsave +7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor +fill +grestore +newpath +6.042257e+01 9.194604e+00 moveto +6.000021e+01 5.002096e+00 lineto +6.0e+01 5.0021e+00 lineto +6.0e+01 9.201995e+00 lineto +6.042257e+01 9.194604e+00 lineto +closepath +gsave +7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 9.201995e+00 moveto +6.0e+01 5.0021e+00 lineto +5.999979e+01 5.002096e+00 lineto +5.957743e+01 9.194604e+00 lineto +6.0e+01 9.201995e+00 lineto +closepath +gsave +7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor +fill +grestore +newpath +5.957743e+01 9.194604e+00 moveto +5.999979e+01 5.002096e+00 lineto +5.999958e+01 5.002085e+00 lineto +5.916526e+01 9.172615e+00 lineto +5.957743e+01 9.194604e+00 lineto +closepath +gsave +7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor +fill +grestore +newpath +5.916526e+01 9.172615e+00 moveto +5.999958e+01 5.002085e+00 lineto +5.999939e+01 5.002067e+00 lineto +5.877364e+01 9.136568e+00 lineto +5.916526e+01 9.172615e+00 lineto +closepath +gsave +7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor +fill +grestore +newpath +5.877364e+01 9.136568e+00 moveto +5.999939e+01 5.002067e+00 lineto +5.999921e+01 5.002043e+00 lineto +5.841223e+01 9.087351e+00 lineto +5.877364e+01 9.136568e+00 lineto +closepath +gsave +7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor +fill +grestore +newpath +5.841223e+01 9.087351e+00 moveto +5.999921e+01 5.002043e+00 lineto +5.999905e+01 5.002012e+00 lineto +5.80899e+01 9.026176e+00 lineto +5.841223e+01 9.087351e+00 lineto +closepath +gsave +7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor +fill +grestore +newpath +5.80899e+01 9.026176e+00 moveto +5.999905e+01 5.002012e+00 lineto +5.999891e+01 5.001976e+00 lineto +5.781462e+01 8.954549e+00 lineto +5.80899e+01 9.026176e+00 lineto +closepath +gsave +7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor +fill +grestore +newpath +5.781462e+01 8.954549e+00 moveto +5.999891e+01 5.001976e+00 lineto +5.99988e+01 5.001936e+00 lineto +5.759314e+01 8.874234e+00 lineto +5.781462e+01 8.954549e+00 lineto +closepath +gsave +7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor +fill +grestore +newpath +5.759314e+01 8.874234e+00 moveto +5.99988e+01 5.001936e+00 lineto +5.999872e+01 5.001893e+00 lineto +5.743093e+01 8.787208e+00 lineto +5.759314e+01 8.874234e+00 lineto +closepath +gsave +7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor +fill +grestore +newpath +5.743093e+01 8.787208e+00 moveto +5.999872e+01 5.001893e+00 lineto +5.999867e+01 5.001847e+00 lineto +5.733197e+01 8.695615e+00 lineto +5.743093e+01 8.787208e+00 lineto +closepath +gsave +7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor +fill +grestore +newpath +5.733197e+01 8.695615e+00 moveto +5.999867e+01 5.001847e+00 lineto +5.999865e+01 5.0018e+00 lineto +5.729872e+01 8.60171e+00 lineto +5.733197e+01 8.695615e+00 lineto +closepath +gsave +7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor +fill +grestore +newpath +5.729872e+01 8.60171e+00 moveto +5.999865e+01 5.0018e+00 lineto +5.999867e+01 5.001753e+00 lineto +5.733197e+01 8.507805e+00 lineto +5.729872e+01 8.60171e+00 lineto +closepath +gsave +7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor +fill +grestore +newpath +6.533472e+01 1.201386e+01 moveto +6.266803e+01 8.507805e+00 lineto +6.270128e+01 8.60171e+00 lineto +6.540121e+01 1.220162e+01 lineto +6.533472e+01 1.201386e+01 lineto +closepath +gsave +5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor +fill +grestore +newpath +6.540121e+01 1.220162e+01 moveto +6.270128e+01 8.60171e+00 lineto +6.266803e+01 8.695615e+00 lineto +6.533472e+01 1.238938e+01 lineto +6.540121e+01 1.220162e+01 lineto +closepath +gsave +5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor +fill +grestore +newpath +6.533472e+01 1.238938e+01 moveto +6.266803e+01 8.695615e+00 lineto +6.256907e+01 8.787208e+00 lineto +6.513686e+01 1.257252e+01 lineto +6.533472e+01 1.238938e+01 lineto +closepath +gsave +5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor +fill +grestore +newpath +6.513686e+01 1.257252e+01 moveto +6.256907e+01 8.787208e+00 lineto +6.240686e+01 8.874234e+00 lineto +6.481252e+01 1.274653e+01 lineto +6.513686e+01 1.257252e+01 lineto +closepath +gsave +5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor +fill +grestore +newpath +6.481252e+01 1.274653e+01 moveto +6.240686e+01 8.874234e+00 lineto +6.218538e+01 8.954549e+00 lineto +6.436967e+01 1.290712e+01 lineto +6.481252e+01 1.274653e+01 lineto +closepath +gsave +5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor +fill +grestore +newpath +6.436967e+01 1.290712e+01 moveto +6.218538e+01 8.954549e+00 lineto +6.19101e+01 9.026176e+00 lineto +6.381924e+01 1.305034e+01 lineto +6.436967e+01 1.290712e+01 lineto +closepath +gsave +6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor +fill +grestore +newpath +6.381924e+01 1.305034e+01 moveto +6.19101e+01 9.026176e+00 lineto +6.158777e+01 9.087351e+00 lineto +6.317475e+01 1.317266e+01 lineto +6.381924e+01 1.305034e+01 lineto +closepath +gsave +6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor +fill +grestore +newpath +6.317475e+01 1.317266e+01 moveto +6.158777e+01 9.087351e+00 lineto +6.122636e+01 9.136568e+00 lineto +6.24521e+01 1.327107e+01 lineto +6.317475e+01 1.317266e+01 lineto +closepath +gsave +6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor +fill +grestore +newpath +6.24521e+01 1.327107e+01 moveto +6.122636e+01 9.136568e+00 lineto +6.083474e+01 9.172615e+00 lineto +6.166907e+01 1.334314e+01 lineto +6.24521e+01 1.327107e+01 lineto +closepath +gsave +6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor +fill +grestore +newpath +6.166907e+01 1.334314e+01 moveto +6.083474e+01 9.172615e+00 lineto +6.042257e+01 9.194604e+00 lineto +6.084494e+01 1.338711e+01 lineto +6.166907e+01 1.334314e+01 lineto +closepath +gsave +7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor +fill +grestore +newpath +6.084494e+01 1.338711e+01 moveto +6.042257e+01 9.194604e+00 lineto +6.0e+01 9.201995e+00 lineto +6.0e+01 1.340189e+01 lineto +6.084494e+01 1.338711e+01 lineto +closepath +gsave +7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 1.340189e+01 moveto +6.0e+01 9.201995e+00 lineto +5.957743e+01 9.194604e+00 lineto +5.915506e+01 1.338711e+01 lineto +6.0e+01 1.340189e+01 lineto +closepath +gsave +7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor +fill +grestore +newpath +5.915506e+01 1.338711e+01 moveto +5.957743e+01 9.194604e+00 lineto +5.916526e+01 9.172615e+00 lineto +5.833093e+01 1.334314e+01 lineto +5.915506e+01 1.338711e+01 lineto +closepath +gsave +7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor +fill +grestore +newpath +5.833093e+01 1.334314e+01 moveto +5.916526e+01 9.172615e+00 lineto +5.877364e+01 9.136568e+00 lineto +5.75479e+01 1.327107e+01 lineto +5.833093e+01 1.334314e+01 lineto +closepath +gsave +7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor +fill +grestore +newpath +5.75479e+01 1.327107e+01 moveto +5.877364e+01 9.136568e+00 lineto +5.841223e+01 9.087351e+00 lineto +5.682525e+01 1.317266e+01 lineto +5.75479e+01 1.327107e+01 lineto +closepath +gsave +7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor +fill +grestore +newpath +5.682525e+01 1.317266e+01 moveto +5.841223e+01 9.087351e+00 lineto +5.80899e+01 9.026176e+00 lineto +5.618076e+01 1.305034e+01 lineto +5.682525e+01 1.317266e+01 lineto +closepath +gsave +7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor +fill +grestore +newpath +5.618076e+01 1.305034e+01 moveto +5.80899e+01 9.026176e+00 lineto +5.781462e+01 8.954549e+00 lineto +5.563033e+01 1.290712e+01 lineto +5.618076e+01 1.305034e+01 lineto +closepath +gsave +7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor +fill +grestore +newpath +5.563033e+01 1.290712e+01 moveto +5.781462e+01 8.954549e+00 lineto +5.759314e+01 8.874234e+00 lineto +5.518748e+01 1.274653e+01 lineto +5.563033e+01 1.290712e+01 lineto +closepath +gsave +7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor +fill +grestore +newpath +5.518748e+01 1.274653e+01 moveto +5.759314e+01 8.874234e+00 lineto +5.743093e+01 8.787208e+00 lineto +5.486314e+01 1.257252e+01 lineto +5.518748e+01 1.274653e+01 lineto +closepath +gsave +7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor +fill +grestore +newpath +5.486314e+01 1.257252e+01 moveto +5.743093e+01 8.787208e+00 lineto +5.733197e+01 8.695615e+00 lineto +5.466528e+01 1.238938e+01 lineto +5.486314e+01 1.257252e+01 lineto +closepath +gsave +7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor +fill +grestore +newpath +5.466528e+01 1.238938e+01 moveto +5.733197e+01 8.695615e+00 lineto +5.729872e+01 8.60171e+00 lineto +5.459878e+01 1.220162e+01 lineto +5.466528e+01 1.238938e+01 lineto +closepath +gsave +7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor +fill +grestore +newpath +5.459878e+01 1.220162e+01 moveto +5.729872e+01 8.60171e+00 lineto +5.733197e+01 8.507805e+00 lineto +5.466528e+01 1.201386e+01 lineto +5.459878e+01 1.220162e+01 lineto +closepath +gsave +7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor +fill +grestore +newpath +6.800141e+01 1.551991e+01 moveto +6.533472e+01 1.201386e+01 lineto +6.540121e+01 1.220162e+01 lineto +6.810115e+01 1.580153e+01 lineto +6.800141e+01 1.551991e+01 lineto +closepath +gsave +5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor +fill +grestore +newpath +6.810115e+01 1.580153e+01 moveto +6.540121e+01 1.220162e+01 lineto +6.533472e+01 1.238938e+01 lineto +6.800141e+01 1.608315e+01 lineto +6.810115e+01 1.580153e+01 lineto +closepath +gsave +5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor +fill +grestore +newpath +6.800141e+01 1.608315e+01 moveto +6.533472e+01 1.238938e+01 lineto +6.513686e+01 1.257252e+01 lineto +6.770465e+01 1.635784e+01 lineto +6.800141e+01 1.608315e+01 lineto +closepath +gsave +5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor +fill +grestore +newpath +6.770465e+01 1.635784e+01 moveto +6.513686e+01 1.257252e+01 lineto +6.481252e+01 1.274653e+01 lineto +6.721818e+01 1.661883e+01 lineto +6.770465e+01 1.635784e+01 lineto +closepath +gsave +5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor +fill +grestore +newpath +6.721818e+01 1.661883e+01 moveto +6.481252e+01 1.274653e+01 lineto +6.436967e+01 1.290712e+01 lineto +6.655397e+01 1.685969e+01 lineto +6.721818e+01 1.661883e+01 lineto +closepath +gsave +5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor +fill +grestore +newpath +6.655397e+01 1.685969e+01 moveto +6.436967e+01 1.290712e+01 lineto +6.381924e+01 1.305034e+01 lineto +6.572838e+01 1.70745e+01 lineto +6.655397e+01 1.685969e+01 lineto +closepath +gsave +6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor +fill +grestore +newpath +6.572838e+01 1.70745e+01 moveto +6.381924e+01 1.305034e+01 lineto +6.317475e+01 1.317266e+01 lineto +6.476174e+01 1.725797e+01 lineto +6.572838e+01 1.70745e+01 lineto +closepath +gsave +6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor +fill +grestore +newpath +6.476174e+01 1.725797e+01 moveto +6.317475e+01 1.317266e+01 lineto +6.24521e+01 1.327107e+01 lineto +6.367784e+01 1.740557e+01 lineto +6.476174e+01 1.725797e+01 lineto +closepath +gsave +6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor +fill +grestore +newpath +6.367784e+01 1.740557e+01 moveto +6.24521e+01 1.327107e+01 lineto +6.166907e+01 1.334314e+01 lineto +6.250339e+01 1.751367e+01 lineto +6.367784e+01 1.740557e+01 lineto +closepath +gsave +6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor +fill +grestore +newpath +6.250339e+01 1.751367e+01 moveto +6.166907e+01 1.334314e+01 lineto +6.084494e+01 1.338711e+01 lineto +6.12673e+01 1.757962e+01 lineto +6.250339e+01 1.751367e+01 lineto +closepath +gsave +7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor +fill +grestore +newpath +6.12673e+01 1.757962e+01 moveto +6.084494e+01 1.338711e+01 lineto +6.0e+01 1.340189e+01 lineto +6.0e+01 1.760178e+01 lineto +6.12673e+01 1.757962e+01 lineto +closepath +gsave +7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 1.760178e+01 moveto +6.0e+01 1.340189e+01 lineto +5.915506e+01 1.338711e+01 lineto +5.87327e+01 1.757962e+01 lineto +6.0e+01 1.760178e+01 lineto +closepath +gsave +7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor +fill +grestore +newpath +5.87327e+01 1.757962e+01 moveto +5.915506e+01 1.338711e+01 lineto +5.833093e+01 1.334314e+01 lineto +5.749661e+01 1.751367e+01 lineto +5.87327e+01 1.757962e+01 lineto +closepath +gsave +7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor +fill +grestore +newpath +5.749661e+01 1.751367e+01 moveto +5.833093e+01 1.334314e+01 lineto +5.75479e+01 1.327107e+01 lineto +5.632216e+01 1.740557e+01 lineto +5.749661e+01 1.751367e+01 lineto +closepath +gsave +7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor +fill +grestore +newpath +5.632216e+01 1.740557e+01 moveto +5.75479e+01 1.327107e+01 lineto +5.682525e+01 1.317266e+01 lineto +5.523826e+01 1.725797e+01 lineto +5.632216e+01 1.740557e+01 lineto +closepath +gsave +7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor +fill +grestore +newpath +5.523826e+01 1.725797e+01 moveto +5.682525e+01 1.317266e+01 lineto +5.618076e+01 1.305034e+01 lineto +5.427162e+01 1.70745e+01 lineto +5.523826e+01 1.725797e+01 lineto +closepath +gsave +7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor +fill +grestore +newpath +5.427162e+01 1.70745e+01 moveto +5.618076e+01 1.305034e+01 lineto +5.563033e+01 1.290712e+01 lineto +5.344603e+01 1.685969e+01 lineto +5.427162e+01 1.70745e+01 lineto +closepath +gsave +7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor +fill +grestore +newpath +5.344603e+01 1.685969e+01 moveto +5.563033e+01 1.290712e+01 lineto +5.518748e+01 1.274653e+01 lineto +5.278182e+01 1.661883e+01 lineto +5.344603e+01 1.685969e+01 lineto +closepath +gsave +7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor +fill +grestore +newpath +5.278182e+01 1.661883e+01 moveto +5.518748e+01 1.274653e+01 lineto +5.486314e+01 1.257252e+01 lineto +5.229535e+01 1.635784e+01 lineto +5.278182e+01 1.661883e+01 lineto +closepath +gsave +7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor +fill +grestore +newpath +5.229535e+01 1.635784e+01 moveto +5.486314e+01 1.257252e+01 lineto +5.466528e+01 1.238938e+01 lineto +5.199859e+01 1.608315e+01 lineto +5.229535e+01 1.635784e+01 lineto +closepath +gsave +7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor +fill +grestore +newpath +5.199859e+01 1.608315e+01 moveto +5.466528e+01 1.238938e+01 lineto +5.459878e+01 1.220162e+01 lineto +5.189885e+01 1.580153e+01 lineto +5.199859e+01 1.608315e+01 lineto +closepath +gsave +7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor +fill +grestore +newpath +5.189885e+01 1.580153e+01 moveto +5.459878e+01 1.220162e+01 lineto +5.466528e+01 1.201386e+01 lineto +5.199859e+01 1.551991e+01 lineto +5.189885e+01 1.580153e+01 lineto +closepath +gsave +7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor +fill +grestore +newpath +7.06681e+01 1.902596e+01 moveto +6.800141e+01 1.551991e+01 lineto +6.810115e+01 1.580153e+01 lineto +7.080108e+01 1.940144e+01 lineto +7.06681e+01 1.902596e+01 lineto +closepath +gsave +5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor +fill +grestore +newpath +7.080108e+01 1.940144e+01 moveto +6.810115e+01 1.580153e+01 lineto +6.800141e+01 1.608315e+01 lineto +7.06681e+01 1.977692e+01 lineto +7.080108e+01 1.940144e+01 lineto +closepath +gsave +5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor +fill +grestore +newpath +7.06681e+01 1.977692e+01 moveto +6.800141e+01 1.608315e+01 lineto +6.770465e+01 1.635784e+01 lineto +7.027244e+01 2.014315e+01 lineto +7.06681e+01 1.977692e+01 lineto +closepath +gsave +5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor +fill +grestore +newpath +7.027244e+01 2.014315e+01 moveto +6.770465e+01 1.635784e+01 lineto +6.721818e+01 1.661883e+01 lineto +6.962383e+01 2.049113e+01 lineto +7.027244e+01 2.014315e+01 lineto +closepath +gsave +5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor +fill +grestore +newpath +6.962383e+01 2.049113e+01 moveto +6.721818e+01 1.661883e+01 lineto +6.655397e+01 1.685969e+01 lineto +6.873826e+01 2.081227e+01 lineto +6.962383e+01 2.049113e+01 lineto +closepath +gsave +5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor +fill +grestore +newpath +6.873826e+01 2.081227e+01 moveto +6.655397e+01 1.685969e+01 lineto +6.572838e+01 1.70745e+01 lineto +6.763752e+01 2.109867e+01 lineto +6.873826e+01 2.081227e+01 lineto +closepath +gsave +6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor +fill +grestore +newpath +6.763752e+01 2.109867e+01 moveto +6.572838e+01 1.70745e+01 lineto +6.476174e+01 1.725797e+01 lineto +6.634872e+01 2.134327e+01 lineto +6.763752e+01 2.109867e+01 lineto +closepath +gsave +6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor +fill +grestore +newpath +6.634872e+01 2.134327e+01 moveto +6.476174e+01 1.725797e+01 lineto +6.367784e+01 1.740557e+01 lineto +6.490359e+01 2.154007e+01 lineto +6.634872e+01 2.134327e+01 lineto +closepath +gsave +6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor +fill +grestore +newpath +6.490359e+01 2.154007e+01 moveto +6.367784e+01 1.740557e+01 lineto +6.250339e+01 1.751367e+01 lineto +6.333772e+01 2.16842e+01 lineto +6.490359e+01 2.154007e+01 lineto +closepath +gsave +6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor +fill +grestore +newpath +6.333772e+01 2.16842e+01 moveto +6.250339e+01 1.751367e+01 lineto +6.12673e+01 1.757962e+01 lineto +6.168966e+01 2.177213e+01 lineto +6.333772e+01 2.16842e+01 lineto +closepath +gsave +7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor +fill +grestore +newpath +6.168966e+01 2.177213e+01 moveto +6.12673e+01 1.757962e+01 lineto +6.0e+01 1.760178e+01 lineto +6.0e+01 2.180168e+01 lineto +6.168966e+01 2.177213e+01 lineto +closepath +gsave +7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 2.180168e+01 moveto +6.0e+01 1.760178e+01 lineto +5.87327e+01 1.757962e+01 lineto +5.831034e+01 2.177213e+01 lineto +6.0e+01 2.180168e+01 lineto +closepath +gsave +7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor +fill +grestore +newpath +5.831034e+01 2.177213e+01 moveto +5.87327e+01 1.757962e+01 lineto +5.749661e+01 1.751367e+01 lineto +5.666228e+01 2.16842e+01 lineto +5.831034e+01 2.177213e+01 lineto +closepath +gsave +7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor +fill +grestore +newpath +5.666228e+01 2.16842e+01 moveto +5.749661e+01 1.751367e+01 lineto +5.632216e+01 1.740557e+01 lineto +5.509641e+01 2.154007e+01 lineto +5.666228e+01 2.16842e+01 lineto +closepath +gsave +7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor +fill +grestore +newpath +5.509641e+01 2.154007e+01 moveto +5.632216e+01 1.740557e+01 lineto +5.523826e+01 1.725797e+01 lineto +5.365128e+01 2.134327e+01 lineto +5.509641e+01 2.154007e+01 lineto +closepath +gsave +7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor +fill +grestore +newpath +5.365128e+01 2.134327e+01 moveto +5.523826e+01 1.725797e+01 lineto +5.427162e+01 1.70745e+01 lineto +5.236248e+01 2.109867e+01 lineto +5.365128e+01 2.134327e+01 lineto +closepath +gsave +7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor +fill +grestore +newpath +5.236248e+01 2.109867e+01 moveto +5.427162e+01 1.70745e+01 lineto +5.344603e+01 1.685969e+01 lineto +5.126174e+01 2.081227e+01 lineto +5.236248e+01 2.109867e+01 lineto +closepath +gsave +7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor +fill +grestore +newpath +5.126174e+01 2.081227e+01 moveto +5.344603e+01 1.685969e+01 lineto +5.278182e+01 1.661883e+01 lineto +5.037617e+01 2.049113e+01 lineto +5.126174e+01 2.081227e+01 lineto +closepath +gsave +7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor +fill +grestore +newpath +5.037617e+01 2.049113e+01 moveto +5.278182e+01 1.661883e+01 lineto +5.229535e+01 1.635784e+01 lineto +4.972756e+01 2.014315e+01 lineto +5.037617e+01 2.049113e+01 lineto +closepath +gsave +7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor +fill +grestore +newpath +4.972756e+01 2.014315e+01 moveto +5.229535e+01 1.635784e+01 lineto +5.199859e+01 1.608315e+01 lineto +4.93319e+01 1.977692e+01 lineto +4.972756e+01 2.014315e+01 lineto +closepath +gsave +7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor +fill +grestore +newpath +4.93319e+01 1.977692e+01 moveto +5.199859e+01 1.608315e+01 lineto +5.189885e+01 1.580153e+01 lineto +4.919892e+01 1.940144e+01 lineto +4.93319e+01 1.977692e+01 lineto +closepath +gsave +7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor +fill +grestore +newpath +4.919892e+01 1.940144e+01 moveto +5.189885e+01 1.580153e+01 lineto +5.199859e+01 1.551991e+01 lineto +4.93319e+01 1.902596e+01 lineto +4.919892e+01 1.940144e+01 lineto +closepath +gsave +7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor +fill +grestore +newpath +7.333479e+01 2.253201e+01 moveto +7.06681e+01 1.902596e+01 lineto +7.080108e+01 1.940144e+01 lineto +7.350101e+01 2.300135e+01 lineto +7.333479e+01 2.253201e+01 lineto +closepath +gsave +5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor +fill +grestore +newpath +7.350101e+01 2.300135e+01 moveto +7.080108e+01 1.940144e+01 lineto +7.06681e+01 1.977692e+01 lineto +7.333479e+01 2.347069e+01 lineto +7.350101e+01 2.300135e+01 lineto +closepath +gsave +5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor +fill +grestore +newpath +7.333479e+01 2.347069e+01 moveto +7.06681e+01 1.977692e+01 lineto +7.027244e+01 2.014315e+01 lineto +7.284023e+01 2.392847e+01 lineto +7.333479e+01 2.347069e+01 lineto +closepath +gsave +5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor +fill +grestore +newpath +7.284023e+01 2.392847e+01 moveto +7.027244e+01 2.014315e+01 lineto +6.962383e+01 2.049113e+01 lineto +7.202949e+01 2.436342e+01 lineto +7.284023e+01 2.392847e+01 lineto +closepath +gsave +5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor +fill +grestore +newpath +7.202949e+01 2.436342e+01 moveto +6.962383e+01 2.049113e+01 lineto +6.873826e+01 2.081227e+01 lineto +7.092255e+01 2.476484e+01 lineto +7.202949e+01 2.436342e+01 lineto +closepath +gsave +5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor +fill +grestore +newpath +7.092255e+01 2.476484e+01 moveto +6.873826e+01 2.081227e+01 lineto +6.763752e+01 2.109867e+01 lineto +6.954666e+01 2.512283e+01 lineto +7.092255e+01 2.476484e+01 lineto +closepath +gsave +6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor +fill +grestore +newpath +6.954666e+01 2.512283e+01 moveto +6.763752e+01 2.109867e+01 lineto +6.634872e+01 2.134327e+01 lineto +6.79357e+01 2.542858e+01 lineto +6.954666e+01 2.512283e+01 lineto +closepath +gsave +6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor +fill +grestore +newpath +6.79357e+01 2.542858e+01 moveto +6.634872e+01 2.134327e+01 lineto +6.490359e+01 2.154007e+01 lineto +6.612933e+01 2.567457e+01 lineto +6.79357e+01 2.542858e+01 lineto +closepath +gsave +6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor +fill +grestore +newpath +6.612933e+01 2.567457e+01 moveto +6.490359e+01 2.154007e+01 lineto +6.333772e+01 2.16842e+01 lineto +6.417204e+01 2.585473e+01 lineto +6.612933e+01 2.567457e+01 lineto +closepath +gsave +6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor +fill +grestore +newpath +6.417204e+01 2.585473e+01 moveto +6.333772e+01 2.16842e+01 lineto +6.168966e+01 2.177213e+01 lineto +6.211202e+01 2.596464e+01 lineto +6.417204e+01 2.585473e+01 lineto +closepath +gsave +7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor +fill +grestore +newpath +6.211202e+01 2.596464e+01 moveto +6.168966e+01 2.177213e+01 lineto +6.0e+01 2.180168e+01 lineto +6.0e+01 2.600157e+01 lineto +6.211202e+01 2.596464e+01 lineto +closepath +gsave +7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 2.600157e+01 moveto +6.0e+01 2.180168e+01 lineto +5.831034e+01 2.177213e+01 lineto +5.788798e+01 2.596464e+01 lineto +6.0e+01 2.600157e+01 lineto +closepath +gsave +7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor +fill +grestore +newpath +5.788798e+01 2.596464e+01 moveto +5.831034e+01 2.177213e+01 lineto +5.666228e+01 2.16842e+01 lineto +5.582796e+01 2.585473e+01 lineto +5.788798e+01 2.596464e+01 lineto +closepath +gsave +7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor +fill +grestore +newpath +5.582796e+01 2.585473e+01 moveto +5.666228e+01 2.16842e+01 lineto +5.509641e+01 2.154007e+01 lineto +5.387067e+01 2.567457e+01 lineto +5.582796e+01 2.585473e+01 lineto +closepath +gsave +7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor +fill +grestore +newpath +5.387067e+01 2.567457e+01 moveto +5.509641e+01 2.154007e+01 lineto +5.365128e+01 2.134327e+01 lineto +5.20643e+01 2.542858e+01 lineto +5.387067e+01 2.567457e+01 lineto +closepath +gsave +7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor +fill +grestore +newpath +5.20643e+01 2.542858e+01 moveto +5.365128e+01 2.134327e+01 lineto +5.236248e+01 2.109867e+01 lineto +5.045334e+01 2.512283e+01 lineto +5.20643e+01 2.542858e+01 lineto +closepath +gsave +7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor +fill +grestore +newpath +5.045334e+01 2.512283e+01 moveto +5.236248e+01 2.109867e+01 lineto +5.126174e+01 2.081227e+01 lineto +4.907745e+01 2.476484e+01 lineto +5.045334e+01 2.512283e+01 lineto +closepath +gsave +7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor +fill +grestore +newpath +4.907745e+01 2.476484e+01 moveto +5.126174e+01 2.081227e+01 lineto +5.037617e+01 2.049113e+01 lineto +4.797051e+01 2.436342e+01 lineto +4.907745e+01 2.476484e+01 lineto +closepath +gsave +7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor +fill +grestore +newpath +4.797051e+01 2.436342e+01 moveto +5.037617e+01 2.049113e+01 lineto +4.972756e+01 2.014315e+01 lineto +4.715977e+01 2.392847e+01 lineto +4.797051e+01 2.436342e+01 lineto +closepath +gsave +7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor +fill +grestore +newpath +4.715977e+01 2.392847e+01 moveto +4.972756e+01 2.014315e+01 lineto +4.93319e+01 1.977692e+01 lineto +4.666521e+01 2.347069e+01 lineto +4.715977e+01 2.392847e+01 lineto +closepath +gsave +7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor +fill +grestore +newpath +4.666521e+01 2.347069e+01 moveto +4.93319e+01 1.977692e+01 lineto +4.919892e+01 1.940144e+01 lineto +4.649899e+01 2.300135e+01 lineto +4.666521e+01 2.347069e+01 lineto +closepath +gsave +7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor +fill +grestore +newpath +4.649899e+01 2.300135e+01 moveto +4.919892e+01 1.940144e+01 lineto +4.93319e+01 1.902596e+01 lineto +4.666521e+01 2.253201e+01 lineto +4.649899e+01 2.300135e+01 lineto +closepath +gsave +7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor +fill +grestore +newpath +7.600148e+01 2.603806e+01 moveto +7.333479e+01 2.253201e+01 lineto +7.350101e+01 2.300135e+01 lineto +7.620094e+01 2.660126e+01 lineto +7.600148e+01 2.603806e+01 lineto +closepath +gsave +5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor +fill +grestore +newpath +7.620094e+01 2.660126e+01 moveto +7.350101e+01 2.300135e+01 lineto +7.333479e+01 2.347069e+01 lineto +7.600148e+01 2.716446e+01 lineto +7.620094e+01 2.660126e+01 lineto +closepath +gsave +5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor +fill +grestore +newpath +7.600148e+01 2.716446e+01 moveto +7.333479e+01 2.347069e+01 lineto +7.284023e+01 2.392847e+01 lineto +7.540801e+01 2.771379e+01 lineto +7.600148e+01 2.716446e+01 lineto +closepath +gsave +5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor +fill +grestore +newpath +7.540801e+01 2.771379e+01 moveto +7.284023e+01 2.392847e+01 lineto +7.202949e+01 2.436342e+01 lineto +7.443515e+01 2.823572e+01 lineto +7.540801e+01 2.771379e+01 lineto +closepath +gsave +5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor +fill +grestore +newpath +7.443515e+01 2.823572e+01 moveto +7.202949e+01 2.436342e+01 lineto +7.092255e+01 2.476484e+01 lineto +7.310684e+01 2.871741e+01 lineto +7.443515e+01 2.823572e+01 lineto +closepath +gsave +5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor +fill +grestore +newpath +7.310684e+01 2.871741e+01 moveto +7.092255e+01 2.476484e+01 lineto +6.954666e+01 2.512283e+01 lineto +7.14558e+01 2.914699e+01 lineto +7.310684e+01 2.871741e+01 lineto +closepath +gsave +6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor +fill +grestore +newpath +7.14558e+01 2.914699e+01 moveto +6.954666e+01 2.512283e+01 lineto +6.79357e+01 2.542858e+01 lineto +6.952268e+01 2.951389e+01 lineto +7.14558e+01 2.914699e+01 lineto +closepath +gsave +6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor +fill +grestore +newpath +6.952268e+01 2.951389e+01 moveto +6.79357e+01 2.542858e+01 lineto +6.612933e+01 2.567457e+01 lineto +6.735508e+01 2.980907e+01 lineto +6.952268e+01 2.951389e+01 lineto +closepath +gsave +6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor +fill +grestore +newpath +6.735508e+01 2.980907e+01 moveto +6.612933e+01 2.567457e+01 lineto +6.417204e+01 2.585473e+01 lineto +6.500637e+01 3.002526e+01 lineto +6.735508e+01 2.980907e+01 lineto +closepath +gsave +6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor +fill +grestore +newpath +6.500637e+01 3.002526e+01 moveto +6.417204e+01 2.585473e+01 lineto +6.211202e+01 2.596464e+01 lineto +6.253439e+01 3.015715e+01 lineto +6.500637e+01 3.002526e+01 lineto +closepath +gsave +7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor +fill +grestore +newpath +6.253439e+01 3.015715e+01 moveto +6.211202e+01 2.596464e+01 lineto +6.0e+01 2.600157e+01 lineto +6.0e+01 3.020147e+01 lineto +6.253439e+01 3.015715e+01 lineto +closepath +gsave +7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 3.020147e+01 moveto +6.0e+01 2.600157e+01 lineto +5.788798e+01 2.596464e+01 lineto +5.746561e+01 3.015715e+01 lineto +6.0e+01 3.020147e+01 lineto +closepath +gsave +7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor +fill +grestore +newpath +5.746561e+01 3.015715e+01 moveto +5.788798e+01 2.596464e+01 lineto +5.582796e+01 2.585473e+01 lineto +5.499363e+01 3.002526e+01 lineto +5.746561e+01 3.015715e+01 lineto +closepath +gsave +7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor +fill +grestore +newpath +5.499363e+01 3.002526e+01 moveto +5.582796e+01 2.585473e+01 lineto +5.387067e+01 2.567457e+01 lineto +5.264492e+01 2.980907e+01 lineto +5.499363e+01 3.002526e+01 lineto +closepath +gsave +7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor +fill +grestore +newpath +5.264492e+01 2.980907e+01 moveto +5.387067e+01 2.567457e+01 lineto +5.20643e+01 2.542858e+01 lineto +5.047732e+01 2.951389e+01 lineto +5.264492e+01 2.980907e+01 lineto +closepath +gsave +7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor +fill +grestore +newpath +5.047732e+01 2.951389e+01 moveto +5.20643e+01 2.542858e+01 lineto +5.045334e+01 2.512283e+01 lineto +4.85442e+01 2.914699e+01 lineto +5.047732e+01 2.951389e+01 lineto +closepath +gsave +7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor +fill +grestore +newpath +4.85442e+01 2.914699e+01 moveto +5.045334e+01 2.512283e+01 lineto +4.907745e+01 2.476484e+01 lineto +4.689316e+01 2.871741e+01 lineto +4.85442e+01 2.914699e+01 lineto +closepath +gsave +7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor +fill +grestore +newpath +4.689316e+01 2.871741e+01 moveto +4.907745e+01 2.476484e+01 lineto +4.797051e+01 2.436342e+01 lineto +4.556485e+01 2.823572e+01 lineto +4.689316e+01 2.871741e+01 lineto +closepath +gsave +7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor +fill +grestore +newpath +4.556485e+01 2.823572e+01 moveto +4.797051e+01 2.436342e+01 lineto +4.715977e+01 2.392847e+01 lineto +4.459199e+01 2.771379e+01 lineto +4.556485e+01 2.823572e+01 lineto +closepath +gsave +7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor +fill +grestore +newpath +4.459199e+01 2.771379e+01 moveto +4.715977e+01 2.392847e+01 lineto +4.666521e+01 2.347069e+01 lineto +4.399852e+01 2.716446e+01 lineto +4.459199e+01 2.771379e+01 lineto +closepath +gsave +7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor +fill +grestore +newpath +4.399852e+01 2.716446e+01 moveto +4.666521e+01 2.347069e+01 lineto +4.649899e+01 2.300135e+01 lineto +4.379906e+01 2.660126e+01 lineto +4.399852e+01 2.716446e+01 lineto +closepath +gsave +7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor +fill +grestore +newpath +4.379906e+01 2.660126e+01 moveto +4.649899e+01 2.300135e+01 lineto +4.666521e+01 2.253201e+01 lineto +4.399852e+01 2.603806e+01 lineto +4.379906e+01 2.660126e+01 lineto +closepath +gsave +7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor +fill +grestore +newpath +7.866818e+01 2.954411e+01 moveto +7.600148e+01 2.603806e+01 lineto +7.620094e+01 2.660126e+01 lineto +7.890088e+01 3.020117e+01 lineto +7.866818e+01 2.954411e+01 lineto +closepath +gsave +5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor +fill +grestore +newpath +7.890088e+01 3.020117e+01 moveto +7.620094e+01 2.660126e+01 lineto +7.600148e+01 2.716446e+01 lineto +7.866818e+01 3.085823e+01 lineto +7.890088e+01 3.020117e+01 lineto +closepath +gsave +5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor +fill +grestore +newpath +7.866818e+01 3.085823e+01 moveto +7.600148e+01 2.716446e+01 lineto +7.540801e+01 2.771379e+01 lineto +7.79758e+01 3.14991e+01 lineto +7.866818e+01 3.085823e+01 lineto +closepath +gsave +5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor +fill +grestore +newpath +7.79758e+01 3.14991e+01 moveto +7.540801e+01 2.771379e+01 lineto +7.443515e+01 2.823572e+01 lineto +7.684081e+01 3.210802e+01 lineto +7.79758e+01 3.14991e+01 lineto +closepath +gsave +5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor +fill +grestore +newpath +7.684081e+01 3.210802e+01 moveto +7.443515e+01 2.823572e+01 lineto +7.310684e+01 2.871741e+01 lineto +7.529113e+01 3.266998e+01 lineto +7.684081e+01 3.210802e+01 lineto +closepath +gsave +5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor +fill +grestore +newpath +7.529113e+01 3.266998e+01 moveto +7.310684e+01 2.871741e+01 lineto +7.14558e+01 2.914699e+01 lineto +7.336494e+01 3.317116e+01 lineto +7.529113e+01 3.266998e+01 lineto +closepath +gsave +6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor +fill +grestore +newpath +7.336494e+01 3.317116e+01 moveto +7.14558e+01 2.914699e+01 lineto +6.952268e+01 2.951389e+01 lineto +7.110966e+01 3.35992e+01 lineto +7.336494e+01 3.317116e+01 lineto +closepath +gsave +6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor +fill +grestore +newpath +7.110966e+01 3.35992e+01 moveto +6.952268e+01 2.951389e+01 lineto +6.735508e+01 2.980907e+01 lineto +6.858082e+01 3.394357e+01 lineto +7.110966e+01 3.35992e+01 lineto +closepath +gsave +6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor +fill +grestore +newpath +6.858082e+01 3.394357e+01 moveto +6.735508e+01 2.980907e+01 lineto +6.500637e+01 3.002526e+01 lineto +6.584069e+01 3.419579e+01 lineto +6.858082e+01 3.394357e+01 lineto +closepath +gsave +6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor +fill +grestore +newpath +6.584069e+01 3.419579e+01 moveto +6.500637e+01 3.002526e+01 lineto +6.253439e+01 3.015715e+01 lineto +6.295675e+01 3.434965e+01 lineto +6.584069e+01 3.419579e+01 lineto +closepath +gsave +7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor +fill +grestore +newpath +6.295675e+01 3.434965e+01 moveto +6.253439e+01 3.015715e+01 lineto +6.0e+01 3.020147e+01 lineto +6.0e+01 3.440136e+01 lineto +6.295675e+01 3.434965e+01 lineto +closepath +gsave +7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 3.440136e+01 moveto +6.0e+01 3.020147e+01 lineto +5.746561e+01 3.015715e+01 lineto +5.704325e+01 3.434965e+01 lineto +6.0e+01 3.440136e+01 lineto +closepath +gsave +7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor +fill +grestore +newpath +5.704325e+01 3.434965e+01 moveto +5.746561e+01 3.015715e+01 lineto +5.499363e+01 3.002526e+01 lineto +5.415931e+01 3.419579e+01 lineto +5.704325e+01 3.434965e+01 lineto +closepath +gsave +7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor +fill +grestore +newpath +5.415931e+01 3.419579e+01 moveto +5.499363e+01 3.002526e+01 lineto +5.264492e+01 2.980907e+01 lineto +5.141918e+01 3.394357e+01 lineto +5.415931e+01 3.419579e+01 lineto +closepath +gsave +7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor +fill +grestore +newpath +5.141918e+01 3.394357e+01 moveto +5.264492e+01 2.980907e+01 lineto +5.047732e+01 2.951389e+01 lineto +4.889034e+01 3.35992e+01 lineto +5.141918e+01 3.394357e+01 lineto +closepath +gsave +7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor +fill +grestore +newpath +4.889034e+01 3.35992e+01 moveto +5.047732e+01 2.951389e+01 lineto +4.85442e+01 2.914699e+01 lineto +4.663506e+01 3.317116e+01 lineto +4.889034e+01 3.35992e+01 lineto +closepath +gsave +7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor +fill +grestore +newpath +4.663506e+01 3.317116e+01 moveto +4.85442e+01 2.914699e+01 lineto +4.689316e+01 2.871741e+01 lineto +4.470887e+01 3.266998e+01 lineto +4.663506e+01 3.317116e+01 lineto +closepath +gsave +7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor +fill +grestore +newpath +4.470887e+01 3.266998e+01 moveto +4.689316e+01 2.871741e+01 lineto +4.556485e+01 2.823572e+01 lineto +4.315919e+01 3.210802e+01 lineto +4.470887e+01 3.266998e+01 lineto +closepath +gsave +7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor +fill +grestore +newpath +4.315919e+01 3.210802e+01 moveto +4.556485e+01 2.823572e+01 lineto +4.459199e+01 2.771379e+01 lineto +4.20242e+01 3.14991e+01 lineto +4.315919e+01 3.210802e+01 lineto +closepath +gsave +7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor +fill +grestore +newpath +4.20242e+01 3.14991e+01 moveto +4.459199e+01 2.771379e+01 lineto +4.399852e+01 2.716446e+01 lineto +4.133182e+01 3.085823e+01 lineto +4.20242e+01 3.14991e+01 lineto +closepath +gsave +7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor +fill +grestore +newpath +4.133182e+01 3.085823e+01 moveto +4.399852e+01 2.716446e+01 lineto +4.379906e+01 2.660126e+01 lineto +4.109912e+01 3.020117e+01 lineto +4.133182e+01 3.085823e+01 lineto +closepath +gsave +7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor +fill +grestore +newpath +4.109912e+01 3.020117e+01 moveto +4.379906e+01 2.660126e+01 lineto +4.399852e+01 2.603806e+01 lineto +4.133182e+01 2.954411e+01 lineto +4.109912e+01 3.020117e+01 lineto +closepath +gsave +7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor +fill +grestore +newpath +8.133487e+01 3.305017e+01 moveto +7.866818e+01 2.954411e+01 lineto +7.890088e+01 3.020117e+01 lineto +8.160081e+01 3.380108e+01 lineto +8.133487e+01 3.305017e+01 lineto +closepath +gsave +5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor +fill +grestore +newpath +8.160081e+01 3.380108e+01 moveto +7.890088e+01 3.020117e+01 lineto +7.866818e+01 3.085823e+01 lineto +8.133487e+01 3.455199e+01 lineto +8.160081e+01 3.380108e+01 lineto +closepath +gsave +5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor +fill +grestore +newpath +8.133487e+01 3.455199e+01 moveto +7.866818e+01 3.085823e+01 lineto +7.79758e+01 3.14991e+01 lineto +8.054359e+01 3.528442e+01 lineto +8.133487e+01 3.455199e+01 lineto +closepath +gsave +5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor +fill +grestore +newpath +8.054359e+01 3.528442e+01 moveto +7.79758e+01 3.14991e+01 lineto +7.684081e+01 3.210802e+01 lineto +7.924646e+01 3.598032e+01 lineto +8.054359e+01 3.528442e+01 lineto +closepath +gsave +5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor +fill +grestore +newpath +7.924646e+01 3.598032e+01 moveto +7.684081e+01 3.210802e+01 lineto +7.529113e+01 3.266998e+01 lineto +7.747542e+01 3.662256e+01 lineto +7.924646e+01 3.598032e+01 lineto +closepath +gsave +5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor +fill +grestore +newpath +7.747542e+01 3.662256e+01 moveto +7.529113e+01 3.266998e+01 lineto +7.336494e+01 3.317116e+01 lineto +7.527408e+01 3.719532e+01 lineto +7.747542e+01 3.662256e+01 lineto +closepath +gsave +6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor +fill +grestore +newpath +7.527408e+01 3.719532e+01 moveto +7.336494e+01 3.317116e+01 lineto +7.110966e+01 3.35992e+01 lineto +7.269664e+01 3.768451e+01 lineto +7.527408e+01 3.719532e+01 lineto +closepath +gsave +6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor +fill +grestore +newpath +7.269664e+01 3.768451e+01 moveto +7.110966e+01 3.35992e+01 lineto +6.858082e+01 3.394357e+01 lineto +6.980656e+01 3.807807e+01 lineto +7.269664e+01 3.768451e+01 lineto +closepath +gsave +6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor +fill +grestore +newpath +6.980656e+01 3.807807e+01 moveto +6.858082e+01 3.394357e+01 lineto +6.584069e+01 3.419579e+01 lineto +6.667502e+01 3.836632e+01 lineto +6.980656e+01 3.807807e+01 lineto +closepath +gsave +6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor +fill +grestore +newpath +6.667502e+01 3.836632e+01 moveto +6.584069e+01 3.419579e+01 lineto +6.295675e+01 3.434965e+01 lineto +6.337911e+01 3.854216e+01 lineto +6.667502e+01 3.836632e+01 lineto +closepath +gsave +7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor +fill +grestore +newpath +6.337911e+01 3.854216e+01 moveto +6.295675e+01 3.434965e+01 lineto +6.0e+01 3.440136e+01 lineto +6.0e+01 3.860126e+01 lineto +6.337911e+01 3.854216e+01 lineto +closepath +gsave +7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 3.860126e+01 moveto +6.0e+01 3.440136e+01 lineto +5.704325e+01 3.434965e+01 lineto +5.662089e+01 3.854216e+01 lineto +6.0e+01 3.860126e+01 lineto +closepath +gsave +7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor +fill +grestore +newpath +5.662089e+01 3.854216e+01 moveto +5.704325e+01 3.434965e+01 lineto +5.415931e+01 3.419579e+01 lineto +5.332498e+01 3.836632e+01 lineto +5.662089e+01 3.854216e+01 lineto +closepath +gsave +7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor +fill +grestore +newpath +5.332498e+01 3.836632e+01 moveto +5.415931e+01 3.419579e+01 lineto +5.141918e+01 3.394357e+01 lineto +5.019344e+01 3.807807e+01 lineto +5.332498e+01 3.836632e+01 lineto +closepath +gsave +7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor +fill +grestore +newpath +5.019344e+01 3.807807e+01 moveto +5.141918e+01 3.394357e+01 lineto +4.889034e+01 3.35992e+01 lineto +4.730336e+01 3.768451e+01 lineto +5.019344e+01 3.807807e+01 lineto +closepath +gsave +7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor +fill +grestore +newpath +4.730336e+01 3.768451e+01 moveto +4.889034e+01 3.35992e+01 lineto +4.663506e+01 3.317116e+01 lineto +4.472592e+01 3.719532e+01 lineto +4.730336e+01 3.768451e+01 lineto +closepath +gsave +7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor +fill +grestore +newpath +4.472592e+01 3.719532e+01 moveto +4.663506e+01 3.317116e+01 lineto +4.470887e+01 3.266998e+01 lineto +4.252458e+01 3.662256e+01 lineto +4.472592e+01 3.719532e+01 lineto +closepath +gsave +7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor +fill +grestore +newpath +4.252458e+01 3.662256e+01 moveto +4.470887e+01 3.266998e+01 lineto +4.315919e+01 3.210802e+01 lineto +4.075354e+01 3.598032e+01 lineto +4.252458e+01 3.662256e+01 lineto +closepath +gsave +7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor +fill +grestore +newpath +4.075354e+01 3.598032e+01 moveto +4.315919e+01 3.210802e+01 lineto +4.20242e+01 3.14991e+01 lineto +3.945641e+01 3.528442e+01 lineto +4.075354e+01 3.598032e+01 lineto +closepath +gsave +7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor +fill +grestore +newpath +3.945641e+01 3.528442e+01 moveto +4.20242e+01 3.14991e+01 lineto +4.133182e+01 3.085823e+01 lineto +3.866513e+01 3.455199e+01 lineto +3.945641e+01 3.528442e+01 lineto +closepath +gsave +7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor +fill +grestore +newpath +3.866513e+01 3.455199e+01 moveto +4.133182e+01 3.085823e+01 lineto +4.109912e+01 3.020117e+01 lineto +3.839919e+01 3.380108e+01 lineto +3.866513e+01 3.455199e+01 lineto +closepath +gsave +7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor +fill +grestore +newpath +3.839919e+01 3.380108e+01 moveto +4.109912e+01 3.020117e+01 lineto +4.133182e+01 2.954411e+01 lineto +3.866513e+01 3.305017e+01 lineto +3.839919e+01 3.380108e+01 lineto +closepath +gsave +7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor +fill +grestore +newpath +8.400156e+01 3.655622e+01 moveto +8.133487e+01 3.305017e+01 lineto +8.160081e+01 3.380108e+01 lineto +8.430074e+01 3.740099e+01 lineto +8.400156e+01 3.655622e+01 lineto +closepath +gsave +5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor +fill +grestore +newpath +8.430074e+01 3.740099e+01 moveto +8.160081e+01 3.380108e+01 lineto +8.133487e+01 3.455199e+01 lineto +8.400156e+01 3.824576e+01 lineto +8.430074e+01 3.740099e+01 lineto +closepath +gsave +5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor +fill +grestore +newpath +8.400156e+01 3.824576e+01 moveto +8.133487e+01 3.455199e+01 lineto +8.054359e+01 3.528442e+01 lineto +8.311138e+01 3.906973e+01 lineto +8.400156e+01 3.824576e+01 lineto +closepath +gsave +5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor +fill +grestore +newpath +8.311138e+01 3.906973e+01 moveto +8.054359e+01 3.528442e+01 lineto +7.924646e+01 3.598032e+01 lineto +8.165212e+01 3.985261e+01 lineto +8.311138e+01 3.906973e+01 lineto +closepath +gsave +5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor +fill +grestore +newpath +8.165212e+01 3.985261e+01 moveto +7.924646e+01 3.598032e+01 lineto +7.747542e+01 3.662256e+01 lineto +7.965971e+01 4.057513e+01 lineto +8.165212e+01 3.985261e+01 lineto +closepath +gsave +5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor +fill +grestore +newpath +7.965971e+01 4.057513e+01 moveto +7.747542e+01 3.662256e+01 lineto +7.527408e+01 3.719532e+01 lineto +7.718322e+01 4.121948e+01 lineto +7.965971e+01 4.057513e+01 lineto +closepath +gsave +6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor +fill +grestore +newpath +7.718322e+01 4.121948e+01 moveto +7.527408e+01 3.719532e+01 lineto +7.269664e+01 3.768451e+01 lineto +7.428362e+01 4.176982e+01 lineto +7.718322e+01 4.121948e+01 lineto +closepath +gsave +6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor +fill +grestore +newpath +7.428362e+01 4.176982e+01 moveto +7.269664e+01 3.768451e+01 lineto +6.980656e+01 3.807807e+01 lineto +7.103231e+01 4.221257e+01 lineto +7.428362e+01 4.176982e+01 lineto +closepath +gsave +6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor +fill +grestore +newpath +7.103231e+01 4.221257e+01 moveto +6.980656e+01 3.807807e+01 lineto +6.667502e+01 3.836632e+01 lineto +6.750934e+01 4.253685e+01 lineto +7.103231e+01 4.221257e+01 lineto +closepath +gsave +6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor +fill +grestore +newpath +6.750934e+01 4.253685e+01 moveto +6.667502e+01 3.836632e+01 lineto +6.337911e+01 3.854216e+01 lineto +6.380147e+01 4.273467e+01 lineto +6.750934e+01 4.253685e+01 lineto +closepath +gsave +7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor +fill +grestore +newpath +6.380147e+01 4.273467e+01 moveto +6.337911e+01 3.854216e+01 lineto +6.0e+01 3.860126e+01 lineto +6.0e+01 4.280115e+01 lineto +6.380147e+01 4.273467e+01 lineto +closepath +gsave +7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 4.280115e+01 moveto +6.0e+01 3.860126e+01 lineto +5.662089e+01 3.854216e+01 lineto +5.619853e+01 4.273467e+01 lineto +6.0e+01 4.280115e+01 lineto +closepath +gsave +7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor +fill +grestore +newpath +5.619853e+01 4.273467e+01 moveto +5.662089e+01 3.854216e+01 lineto +5.332498e+01 3.836632e+01 lineto +5.249066e+01 4.253685e+01 lineto +5.619853e+01 4.273467e+01 lineto +closepath +gsave +7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor +fill +grestore +newpath +5.249066e+01 4.253685e+01 moveto +5.332498e+01 3.836632e+01 lineto +5.019344e+01 3.807807e+01 lineto +4.896769e+01 4.221257e+01 lineto +5.249066e+01 4.253685e+01 lineto +closepath +gsave +7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor +fill +grestore +newpath +4.896769e+01 4.221257e+01 moveto +5.019344e+01 3.807807e+01 lineto +4.730336e+01 3.768451e+01 lineto +4.571638e+01 4.176982e+01 lineto +4.896769e+01 4.221257e+01 lineto +closepath +gsave +7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor +fill +grestore +newpath +4.571638e+01 4.176982e+01 moveto +4.730336e+01 3.768451e+01 lineto +4.472592e+01 3.719532e+01 lineto +4.281678e+01 4.121948e+01 lineto +4.571638e+01 4.176982e+01 lineto +closepath +gsave +7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor +fill +grestore +newpath +4.281678e+01 4.121948e+01 moveto +4.472592e+01 3.719532e+01 lineto +4.252458e+01 3.662256e+01 lineto +4.034029e+01 4.057513e+01 lineto +4.281678e+01 4.121948e+01 lineto +closepath +gsave +7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor +fill +grestore +newpath +4.034029e+01 4.057513e+01 moveto +4.252458e+01 3.662256e+01 lineto +4.075354e+01 3.598032e+01 lineto +3.834788e+01 3.985261e+01 lineto +4.034029e+01 4.057513e+01 lineto +closepath +gsave +7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor +fill +grestore +newpath +3.834788e+01 3.985261e+01 moveto +4.075354e+01 3.598032e+01 lineto +3.945641e+01 3.528442e+01 lineto +3.688862e+01 3.906973e+01 lineto +3.834788e+01 3.985261e+01 lineto +closepath +gsave +7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor +fill +grestore +newpath +3.688862e+01 3.906973e+01 moveto +3.945641e+01 3.528442e+01 lineto +3.866513e+01 3.455199e+01 lineto +3.599844e+01 3.824576e+01 lineto +3.688862e+01 3.906973e+01 lineto +closepath +gsave +7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor +fill +grestore +newpath +3.599844e+01 3.824576e+01 moveto +3.866513e+01 3.455199e+01 lineto +3.839919e+01 3.380108e+01 lineto +3.569926e+01 3.740099e+01 lineto +3.599844e+01 3.824576e+01 lineto +closepath +gsave +7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor +fill +grestore +newpath +3.569926e+01 3.740099e+01 moveto +3.839919e+01 3.380108e+01 lineto +3.866513e+01 3.305017e+01 lineto +3.599844e+01 3.655622e+01 lineto +3.569926e+01 3.740099e+01 lineto +closepath +gsave +7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor +fill +grestore +newpath +8.666825e+01 4.006227e+01 moveto +8.400156e+01 3.655622e+01 lineto +8.430074e+01 3.740099e+01 lineto +8.700067e+01 4.10009e+01 lineto +8.666825e+01 4.006227e+01 lineto +closepath +gsave +5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor +fill +grestore +newpath +8.700067e+01 4.10009e+01 moveto +8.430074e+01 3.740099e+01 lineto +8.400156e+01 3.824576e+01 lineto +8.666825e+01 4.193953e+01 lineto +8.700067e+01 4.10009e+01 lineto +closepath +gsave +5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor +fill +grestore +newpath +8.666825e+01 4.193953e+01 moveto +8.400156e+01 3.824576e+01 lineto +8.311138e+01 3.906973e+01 lineto +8.567917e+01 4.285505e+01 lineto +8.666825e+01 4.193953e+01 lineto +closepath +gsave +5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor +fill +grestore +newpath +8.567917e+01 4.285505e+01 moveto +8.311138e+01 3.906973e+01 lineto +8.165212e+01 3.985261e+01 lineto +8.405778e+01 4.372491e+01 lineto +8.567917e+01 4.285505e+01 lineto +closepath +gsave +5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor +fill +grestore +newpath +8.405778e+01 4.372491e+01 moveto +8.165212e+01 3.985261e+01 lineto +7.965971e+01 4.057513e+01 lineto +8.1844e+01 4.45277e+01 lineto +8.405778e+01 4.372491e+01 lineto +closepath +gsave +5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor +fill +grestore +newpath +8.1844e+01 4.45277e+01 moveto +7.965971e+01 4.057513e+01 lineto +7.718322e+01 4.121948e+01 lineto +7.909236e+01 4.524365e+01 lineto +8.1844e+01 4.45277e+01 lineto +closepath +gsave +6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor +fill +grestore +newpath +7.909236e+01 4.524365e+01 moveto +7.718322e+01 4.121948e+01 lineto +7.428362e+01 4.176982e+01 lineto +7.58706e+01 4.585512e+01 lineto +7.909236e+01 4.524365e+01 lineto +closepath +gsave +6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor +fill +grestore +newpath +7.58706e+01 4.585512e+01 moveto +7.428362e+01 4.176982e+01 lineto +7.103231e+01 4.221257e+01 lineto +7.225805e+01 4.634707e+01 lineto +7.58706e+01 4.585512e+01 lineto +closepath +gsave +6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor +fill +grestore +newpath +7.225805e+01 4.634707e+01 moveto +7.103231e+01 4.221257e+01 lineto +6.750934e+01 4.253685e+01 lineto +6.834367e+01 4.670738e+01 lineto +7.225805e+01 4.634707e+01 lineto +closepath +gsave +6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor +fill +grestore +newpath +6.834367e+01 4.670738e+01 moveto +6.750934e+01 4.253685e+01 lineto +6.380147e+01 4.273467e+01 lineto +6.422384e+01 4.692718e+01 lineto +6.834367e+01 4.670738e+01 lineto +closepath +gsave +7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor +fill +grestore +newpath +6.422384e+01 4.692718e+01 moveto +6.380147e+01 4.273467e+01 lineto +6.0e+01 4.280115e+01 lineto +6.0e+01 4.700105e+01 lineto +6.422384e+01 4.692718e+01 lineto +closepath +gsave +7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 4.700105e+01 moveto +6.0e+01 4.280115e+01 lineto +5.619853e+01 4.273467e+01 lineto +5.577616e+01 4.692718e+01 lineto +6.0e+01 4.700105e+01 lineto +closepath +gsave +7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor +fill +grestore +newpath +5.577616e+01 4.692718e+01 moveto +5.619853e+01 4.273467e+01 lineto +5.249066e+01 4.253685e+01 lineto +5.165633e+01 4.670738e+01 lineto +5.577616e+01 4.692718e+01 lineto +closepath +gsave +7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor +fill +grestore +newpath +5.165633e+01 4.670738e+01 moveto +5.249066e+01 4.253685e+01 lineto +4.896769e+01 4.221257e+01 lineto +4.774195e+01 4.634707e+01 lineto +5.165633e+01 4.670738e+01 lineto +closepath +gsave +7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor +fill +grestore +newpath +4.774195e+01 4.634707e+01 moveto +4.896769e+01 4.221257e+01 lineto +4.571638e+01 4.176982e+01 lineto +4.41294e+01 4.585512e+01 lineto +4.774195e+01 4.634707e+01 lineto +closepath +gsave +7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor +fill +grestore +newpath +4.41294e+01 4.585512e+01 moveto +4.571638e+01 4.176982e+01 lineto +4.281678e+01 4.121948e+01 lineto +4.090764e+01 4.524365e+01 lineto +4.41294e+01 4.585512e+01 lineto +closepath +gsave +7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor +fill +grestore +newpath +4.090764e+01 4.524365e+01 moveto +4.281678e+01 4.121948e+01 lineto +4.034029e+01 4.057513e+01 lineto +3.8156e+01 4.45277e+01 lineto +4.090764e+01 4.524365e+01 lineto +closepath +gsave +7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor +fill +grestore +newpath +3.8156e+01 4.45277e+01 moveto +4.034029e+01 4.057513e+01 lineto +3.834788e+01 3.985261e+01 lineto +3.594222e+01 4.372491e+01 lineto +3.8156e+01 4.45277e+01 lineto +closepath +gsave +7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor +fill +grestore +newpath +3.594222e+01 4.372491e+01 moveto +3.834788e+01 3.985261e+01 lineto +3.688862e+01 3.906973e+01 lineto +3.432083e+01 4.285505e+01 lineto +3.594222e+01 4.372491e+01 lineto +closepath +gsave +7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor +fill +grestore +newpath +3.432083e+01 4.285505e+01 moveto +3.688862e+01 3.906973e+01 lineto +3.599844e+01 3.824576e+01 lineto +3.333175e+01 4.193953e+01 lineto +3.432083e+01 4.285505e+01 lineto +closepath +gsave +7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor +fill +grestore +newpath +3.333175e+01 4.193953e+01 moveto +3.599844e+01 3.824576e+01 lineto +3.569926e+01 3.740099e+01 lineto +3.299933e+01 4.10009e+01 lineto +3.333175e+01 4.193953e+01 lineto +closepath +gsave +7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor +fill +grestore +newpath +3.299933e+01 4.10009e+01 moveto +3.569926e+01 3.740099e+01 lineto +3.599844e+01 3.655622e+01 lineto +3.333175e+01 4.006227e+01 lineto +3.299933e+01 4.10009e+01 lineto +closepath +gsave +7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor +fill +grestore +newpath +8.933494e+01 4.356832e+01 moveto +8.666825e+01 4.006227e+01 lineto +8.700067e+01 4.10009e+01 lineto +8.970061e+01 4.460081e+01 lineto +8.933494e+01 4.356832e+01 lineto +closepath +gsave +5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor +fill +grestore +newpath +8.970061e+01 4.460081e+01 moveto +8.700067e+01 4.10009e+01 lineto +8.666825e+01 4.193953e+01 lineto +8.933494e+01 4.56333e+01 lineto +8.970061e+01 4.460081e+01 lineto +closepath +gsave +5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor +fill +grestore +newpath +8.933494e+01 4.56333e+01 moveto +8.666825e+01 4.193953e+01 lineto +8.567917e+01 4.285505e+01 lineto +8.824696e+01 4.664036e+01 lineto +8.933494e+01 4.56333e+01 lineto +closepath +gsave +5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor +fill +grestore +newpath +8.824696e+01 4.664036e+01 moveto +8.567917e+01 4.285505e+01 lineto +8.405778e+01 4.372491e+01 lineto +8.646344e+01 4.759721e+01 lineto +8.824696e+01 4.664036e+01 lineto +closepath +gsave +5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor +fill +grestore +newpath +8.646344e+01 4.759721e+01 moveto +8.405778e+01 4.372491e+01 lineto +8.1844e+01 4.45277e+01 lineto +8.40283e+01 4.848027e+01 lineto +8.646344e+01 4.759721e+01 lineto +closepath +gsave +5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor +fill +grestore +newpath +8.40283e+01 4.848027e+01 moveto +8.1844e+01 4.45277e+01 lineto +7.909236e+01 4.524365e+01 lineto +8.10015e+01 4.926781e+01 lineto +8.40283e+01 4.848027e+01 lineto +closepath +gsave +6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor +fill +grestore +newpath +8.10015e+01 4.926781e+01 moveto +7.909236e+01 4.524365e+01 lineto +7.58706e+01 4.585512e+01 lineto +7.745758e+01 4.994043e+01 lineto +8.10015e+01 4.926781e+01 lineto +closepath +gsave +6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor +fill +grestore +newpath +7.745758e+01 4.994043e+01 moveto +7.58706e+01 4.585512e+01 lineto +7.225805e+01 4.634707e+01 lineto +7.348379e+01 5.048157e+01 lineto +7.745758e+01 4.994043e+01 lineto +closepath +gsave +6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor +fill +grestore +newpath +7.348379e+01 5.048157e+01 moveto +7.225805e+01 4.634707e+01 lineto +6.834367e+01 4.670738e+01 lineto +6.917799e+01 5.087791e+01 lineto +7.348379e+01 5.048157e+01 lineto +closepath +gsave +6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor +fill +grestore +newpath +6.917799e+01 5.087791e+01 moveto +6.834367e+01 4.670738e+01 lineto +6.422384e+01 4.692718e+01 lineto +6.46462e+01 5.111969e+01 lineto +6.917799e+01 5.087791e+01 lineto +closepath +gsave +7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor +fill +grestore +newpath +6.46462e+01 5.111969e+01 moveto +6.422384e+01 4.692718e+01 lineto +6.0e+01 4.700105e+01 lineto +6.0e+01 5.120094e+01 lineto +6.46462e+01 5.111969e+01 lineto +closepath +gsave +7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 5.120094e+01 moveto +6.0e+01 4.700105e+01 lineto +5.577616e+01 4.692718e+01 lineto +5.53538e+01 5.111969e+01 lineto +6.0e+01 5.120094e+01 lineto +closepath +gsave +7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor +fill +grestore +newpath +5.53538e+01 5.111969e+01 moveto +5.577616e+01 4.692718e+01 lineto +5.165633e+01 4.670738e+01 lineto +5.082201e+01 5.087791e+01 lineto +5.53538e+01 5.111969e+01 lineto +closepath +gsave +7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor +fill +grestore +newpath +5.082201e+01 5.087791e+01 moveto +5.165633e+01 4.670738e+01 lineto +4.774195e+01 4.634707e+01 lineto +4.651621e+01 5.048157e+01 lineto +5.082201e+01 5.087791e+01 lineto +closepath +gsave +7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor +fill +grestore +newpath +4.651621e+01 5.048157e+01 moveto +4.774195e+01 4.634707e+01 lineto +4.41294e+01 4.585512e+01 lineto +4.254242e+01 4.994043e+01 lineto +4.651621e+01 5.048157e+01 lineto +closepath +gsave +7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor +fill +grestore +newpath +4.254242e+01 4.994043e+01 moveto +4.41294e+01 4.585512e+01 lineto +4.090764e+01 4.524365e+01 lineto +3.89985e+01 4.926781e+01 lineto +4.254242e+01 4.994043e+01 lineto +closepath +gsave +7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor +fill +grestore +newpath +3.89985e+01 4.926781e+01 moveto +4.090764e+01 4.524365e+01 lineto +3.8156e+01 4.45277e+01 lineto +3.59717e+01 4.848027e+01 lineto +3.89985e+01 4.926781e+01 lineto +closepath +gsave +7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor +fill +grestore +newpath +3.59717e+01 4.848027e+01 moveto +3.8156e+01 4.45277e+01 lineto +3.594222e+01 4.372491e+01 lineto +3.353656e+01 4.759721e+01 lineto +3.59717e+01 4.848027e+01 lineto +closepath +gsave +7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor +fill +grestore +newpath +3.353656e+01 4.759721e+01 moveto +3.594222e+01 4.372491e+01 lineto +3.432083e+01 4.285505e+01 lineto +3.175304e+01 4.664036e+01 lineto +3.353656e+01 4.759721e+01 lineto +closepath +gsave +7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor +fill +grestore +newpath +3.175304e+01 4.664036e+01 moveto +3.432083e+01 4.285505e+01 lineto +3.333175e+01 4.193953e+01 lineto +3.066506e+01 4.56333e+01 lineto +3.175304e+01 4.664036e+01 lineto +closepath +gsave +7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor +fill +grestore +newpath +3.066506e+01 4.56333e+01 moveto +3.333175e+01 4.193953e+01 lineto +3.299933e+01 4.10009e+01 lineto +3.029939e+01 4.460081e+01 lineto +3.066506e+01 4.56333e+01 lineto +closepath +gsave +7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor +fill +grestore +newpath +3.029939e+01 4.460081e+01 moveto +3.299933e+01 4.10009e+01 lineto +3.333175e+01 4.006227e+01 lineto +3.066506e+01 4.356832e+01 lineto +3.029939e+01 4.460081e+01 lineto +closepath +gsave +7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor +fill +grestore +newpath +9.200164e+01 4.707437e+01 moveto +8.933494e+01 4.356832e+01 lineto +8.970061e+01 4.460081e+01 lineto +9.240054e+01 4.820072e+01 lineto +9.200164e+01 4.707437e+01 lineto +closepath +gsave +5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor +fill +grestore +newpath +9.240054e+01 4.820072e+01 moveto +8.970061e+01 4.460081e+01 lineto +8.933494e+01 4.56333e+01 lineto +9.200164e+01 4.932707e+01 lineto +9.240054e+01 4.820072e+01 lineto +closepath +gsave +5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor +fill +grestore +newpath +9.200164e+01 4.932707e+01 moveto +8.933494e+01 4.56333e+01 lineto +8.824696e+01 4.664036e+01 lineto +9.081474e+01 5.042568e+01 lineto +9.200164e+01 4.932707e+01 lineto +closepath +gsave +5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor +fill +grestore +newpath +9.081474e+01 5.042568e+01 moveto +8.824696e+01 4.664036e+01 lineto +8.646344e+01 4.759721e+01 lineto +8.886909e+01 5.146951e+01 lineto +9.081474e+01 5.042568e+01 lineto +closepath +gsave +5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor +fill +grestore +newpath +8.886909e+01 5.146951e+01 moveto +8.646344e+01 4.759721e+01 lineto +8.40283e+01 4.848027e+01 lineto +8.621259e+01 5.243284e+01 lineto +8.886909e+01 5.146951e+01 lineto +closepath +gsave +5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor +fill +grestore +newpath +8.621259e+01 5.243284e+01 moveto +8.40283e+01 4.848027e+01 lineto +8.10015e+01 4.926781e+01 lineto +8.291064e+01 5.329197e+01 lineto +8.621259e+01 5.243284e+01 lineto +closepath +gsave +6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor +fill +grestore +newpath +8.291064e+01 5.329197e+01 moveto +8.10015e+01 4.926781e+01 lineto +7.745758e+01 4.994043e+01 lineto +7.904456e+01 5.402574e+01 lineto +8.291064e+01 5.329197e+01 lineto +closepath +gsave +6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor +fill +grestore +newpath +7.904456e+01 5.402574e+01 moveto +7.745758e+01 4.994043e+01 lineto +7.348379e+01 5.048157e+01 lineto +7.470954e+01 5.461607e+01 lineto +7.904456e+01 5.402574e+01 lineto +closepath +gsave +6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor +fill +grestore +newpath +7.470954e+01 5.461607e+01 moveto +7.348379e+01 5.048157e+01 lineto +6.917799e+01 5.087791e+01 lineto +7.001232e+01 5.504844e+01 lineto +7.470954e+01 5.461607e+01 lineto +closepath +gsave +6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor +fill +grestore +newpath +7.001232e+01 5.504844e+01 moveto +6.917799e+01 5.087791e+01 lineto +6.46462e+01 5.111969e+01 lineto +6.506856e+01 5.531219e+01 lineto +7.001232e+01 5.504844e+01 lineto +closepath +gsave +7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor +fill +grestore +newpath +6.506856e+01 5.531219e+01 moveto +6.46462e+01 5.111969e+01 lineto +6.0e+01 5.120094e+01 lineto +6.0e+01 5.540084e+01 lineto +6.506856e+01 5.531219e+01 lineto +closepath +gsave +7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 5.540084e+01 moveto +6.0e+01 5.120094e+01 lineto +5.53538e+01 5.111969e+01 lineto +5.493144e+01 5.531219e+01 lineto +6.0e+01 5.540084e+01 lineto +closepath +gsave +7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor +fill +grestore +newpath +5.493144e+01 5.531219e+01 moveto +5.53538e+01 5.111969e+01 lineto +5.082201e+01 5.087791e+01 lineto +4.998768e+01 5.504844e+01 lineto +5.493144e+01 5.531219e+01 lineto +closepath +gsave +7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor +fill +grestore +newpath +4.998768e+01 5.504844e+01 moveto +5.082201e+01 5.087791e+01 lineto +4.651621e+01 5.048157e+01 lineto +4.529046e+01 5.461607e+01 lineto +4.998768e+01 5.504844e+01 lineto +closepath +gsave +7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor +fill +grestore +newpath +4.529046e+01 5.461607e+01 moveto +4.651621e+01 5.048157e+01 lineto +4.254242e+01 4.994043e+01 lineto +4.095544e+01 5.402574e+01 lineto +4.529046e+01 5.461607e+01 lineto +closepath +gsave +7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor +fill +grestore +newpath +4.095544e+01 5.402574e+01 moveto +4.254242e+01 4.994043e+01 lineto +3.89985e+01 4.926781e+01 lineto +3.708936e+01 5.329197e+01 lineto +4.095544e+01 5.402574e+01 lineto +closepath +gsave +7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor +fill +grestore +newpath +3.708936e+01 5.329197e+01 moveto +3.89985e+01 4.926781e+01 lineto +3.59717e+01 4.848027e+01 lineto +3.378741e+01 5.243284e+01 lineto +3.708936e+01 5.329197e+01 lineto +closepath +gsave +7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor +fill +grestore +newpath +3.378741e+01 5.243284e+01 moveto +3.59717e+01 4.848027e+01 lineto +3.353656e+01 4.759721e+01 lineto +3.113091e+01 5.146951e+01 lineto +3.378741e+01 5.243284e+01 lineto +closepath +gsave +7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor +fill +grestore +newpath +3.113091e+01 5.146951e+01 moveto +3.353656e+01 4.759721e+01 lineto +3.175304e+01 4.664036e+01 lineto +2.918526e+01 5.042568e+01 lineto +3.113091e+01 5.146951e+01 lineto +closepath +gsave +7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor +fill +grestore +newpath +2.918526e+01 5.042568e+01 moveto +3.175304e+01 4.664036e+01 lineto +3.066506e+01 4.56333e+01 lineto +2.799836e+01 4.932707e+01 lineto +2.918526e+01 5.042568e+01 lineto +closepath +gsave +7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor +fill +grestore +newpath +2.799836e+01 4.932707e+01 moveto +3.066506e+01 4.56333e+01 lineto +3.029939e+01 4.460081e+01 lineto +2.759946e+01 4.820072e+01 lineto +2.799836e+01 4.932707e+01 lineto +closepath +gsave +7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor +fill +grestore +newpath +2.759946e+01 4.820072e+01 moveto +3.029939e+01 4.460081e+01 lineto +3.066506e+01 4.356832e+01 lineto +2.799836e+01 4.707437e+01 lineto +2.759946e+01 4.820072e+01 lineto +closepath +gsave +7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor +fill +grestore +newpath +9.466833e+01 5.058042e+01 moveto +9.200164e+01 4.707437e+01 lineto +9.240054e+01 4.820072e+01 lineto +9.510047e+01 5.180063e+01 lineto +9.466833e+01 5.058042e+01 lineto +closepath +gsave +5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor +fill +grestore +newpath +9.510047e+01 5.180063e+01 moveto +9.240054e+01 4.820072e+01 lineto +9.200164e+01 4.932707e+01 lineto +9.466833e+01 5.302084e+01 lineto +9.510047e+01 5.180063e+01 lineto +closepath +gsave +5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor +fill +grestore +newpath +9.466833e+01 5.302084e+01 moveto +9.200164e+01 4.932707e+01 lineto +9.081474e+01 5.042568e+01 lineto +9.338253e+01 5.4211e+01 lineto +9.466833e+01 5.302084e+01 lineto +closepath +gsave +5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor +fill +grestore +newpath +9.338253e+01 5.4211e+01 moveto +9.081474e+01 5.042568e+01 lineto +8.886909e+01 5.146951e+01 lineto +9.127475e+01 5.53418e+01 lineto +9.338253e+01 5.4211e+01 lineto +closepath +gsave +5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor +fill +grestore +newpath +9.127475e+01 5.53418e+01 moveto +8.886909e+01 5.146951e+01 lineto +8.621259e+01 5.243284e+01 lineto +8.839688e+01 5.638542e+01 lineto +9.127475e+01 5.53418e+01 lineto +closepath +gsave +5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor +fill +grestore +newpath +8.839688e+01 5.638542e+01 moveto +8.621259e+01 5.243284e+01 lineto +8.291064e+01 5.329197e+01 lineto +8.481978e+01 5.731614e+01 lineto +8.839688e+01 5.638542e+01 lineto +closepath +gsave +6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor +fill +grestore +newpath +8.481978e+01 5.731614e+01 moveto +8.291064e+01 5.329197e+01 lineto +7.904456e+01 5.402574e+01 lineto +8.063154e+01 5.811105e+01 lineto +8.481978e+01 5.731614e+01 lineto +closepath +gsave +6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor +fill +grestore +newpath +8.063154e+01 5.811105e+01 moveto +7.904456e+01 5.402574e+01 lineto +7.470954e+01 5.461607e+01 lineto +7.593528e+01 5.875057e+01 lineto +8.063154e+01 5.811105e+01 lineto +closepath +gsave +6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor +fill +grestore +newpath +7.593528e+01 5.875057e+01 moveto +7.470954e+01 5.461607e+01 lineto +7.001232e+01 5.504844e+01 lineto +7.084664e+01 5.921897e+01 lineto +7.593528e+01 5.875057e+01 lineto +closepath +gsave +6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor +fill +grestore +newpath +7.084664e+01 5.921897e+01 moveto +7.001232e+01 5.504844e+01 lineto +6.506856e+01 5.531219e+01 lineto +6.549092e+01 5.95047e+01 lineto +7.084664e+01 5.921897e+01 lineto +closepath +gsave +7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor +fill +grestore +newpath +6.549092e+01 5.95047e+01 moveto +6.506856e+01 5.531219e+01 lineto +6.0e+01 5.540084e+01 lineto +6.0e+01 5.960073e+01 lineto +6.549092e+01 5.95047e+01 lineto +closepath +gsave +7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 5.960073e+01 moveto +6.0e+01 5.540084e+01 lineto +5.493144e+01 5.531219e+01 lineto +5.450908e+01 5.95047e+01 lineto +6.0e+01 5.960073e+01 lineto +closepath +gsave +7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor +fill +grestore +newpath +5.450908e+01 5.95047e+01 moveto +5.493144e+01 5.531219e+01 lineto +4.998768e+01 5.504844e+01 lineto +4.915336e+01 5.921897e+01 lineto +5.450908e+01 5.95047e+01 lineto +closepath +gsave +7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor +fill +grestore +newpath +4.915336e+01 5.921897e+01 moveto +4.998768e+01 5.504844e+01 lineto +4.529046e+01 5.461607e+01 lineto +4.406472e+01 5.875057e+01 lineto +4.915336e+01 5.921897e+01 lineto +closepath +gsave +7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor +fill +grestore +newpath +4.406472e+01 5.875057e+01 moveto +4.529046e+01 5.461607e+01 lineto +4.095544e+01 5.402574e+01 lineto +3.936846e+01 5.811105e+01 lineto +4.406472e+01 5.875057e+01 lineto +closepath +gsave +7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor +fill +grestore +newpath +3.936846e+01 5.811105e+01 moveto +4.095544e+01 5.402574e+01 lineto +3.708936e+01 5.329197e+01 lineto +3.518022e+01 5.731614e+01 lineto +3.936846e+01 5.811105e+01 lineto +closepath +gsave +7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor +fill +grestore +newpath +3.518022e+01 5.731614e+01 moveto +3.708936e+01 5.329197e+01 lineto +3.378741e+01 5.243284e+01 lineto +3.160312e+01 5.638542e+01 lineto +3.518022e+01 5.731614e+01 lineto +closepath +gsave +7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor +fill +grestore +newpath +3.160312e+01 5.638542e+01 moveto +3.378741e+01 5.243284e+01 lineto +3.113091e+01 5.146951e+01 lineto +2.872525e+01 5.53418e+01 lineto +3.160312e+01 5.638542e+01 lineto +closepath +gsave +7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor +fill +grestore +newpath +2.872525e+01 5.53418e+01 moveto +3.113091e+01 5.146951e+01 lineto +2.918526e+01 5.042568e+01 lineto +2.661747e+01 5.4211e+01 lineto +2.872525e+01 5.53418e+01 lineto +closepath +gsave +7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor +fill +grestore +newpath +2.661747e+01 5.4211e+01 moveto +2.918526e+01 5.042568e+01 lineto +2.799836e+01 4.932707e+01 lineto +2.533167e+01 5.302084e+01 lineto +2.661747e+01 5.4211e+01 lineto +closepath +gsave +7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor +fill +grestore +newpath +2.533167e+01 5.302084e+01 moveto +2.799836e+01 4.932707e+01 lineto +2.759946e+01 4.820072e+01 lineto +2.489953e+01 5.180063e+01 lineto +2.533167e+01 5.302084e+01 lineto +closepath +gsave +7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor +fill +grestore +newpath +2.489953e+01 5.180063e+01 moveto +2.759946e+01 4.820072e+01 lineto +2.799836e+01 4.707437e+01 lineto +2.533167e+01 5.058042e+01 lineto +2.489953e+01 5.180063e+01 lineto +closepath +gsave +7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor +fill +grestore +newpath +9.733502e+01 5.408648e+01 moveto +9.466833e+01 5.058042e+01 lineto +9.510047e+01 5.180063e+01 lineto +9.78004e+01 5.540054e+01 lineto +9.733502e+01 5.408648e+01 lineto +closepath +gsave +5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor +fill +grestore +newpath +9.78004e+01 5.540054e+01 moveto +9.510047e+01 5.180063e+01 lineto +9.466833e+01 5.302084e+01 lineto +9.733502e+01 5.67146e+01 lineto +9.78004e+01 5.540054e+01 lineto +closepath +gsave +5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor +fill +grestore +newpath +9.733502e+01 5.67146e+01 moveto +9.466833e+01 5.302084e+01 lineto +9.338253e+01 5.4211e+01 lineto +9.595032e+01 5.799631e+01 lineto +9.733502e+01 5.67146e+01 lineto +closepath +gsave +5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor +fill +grestore +newpath +9.595032e+01 5.799631e+01 moveto +9.338253e+01 5.4211e+01 lineto +9.127475e+01 5.53418e+01 lineto +9.368041e+01 5.92141e+01 lineto +9.595032e+01 5.799631e+01 lineto +closepath +gsave +5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor +fill +grestore +newpath +9.368041e+01 5.92141e+01 moveto +9.127475e+01 5.53418e+01 lineto +8.839688e+01 5.638542e+01 lineto +9.058117e+01 6.033799e+01 lineto +9.368041e+01 5.92141e+01 lineto +closepath +gsave +5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor +fill +grestore +newpath +9.058117e+01 6.033799e+01 moveto +8.839688e+01 5.638542e+01 lineto +8.481978e+01 5.731614e+01 lineto +8.672892e+01 6.13403e+01 lineto +9.058117e+01 6.033799e+01 lineto +closepath +gsave +6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor +fill +grestore +newpath +8.672892e+01 6.13403e+01 moveto +8.481978e+01 5.731614e+01 lineto +8.063154e+01 5.811105e+01 lineto +8.221852e+01 6.219636e+01 lineto +8.672892e+01 6.13403e+01 lineto +closepath +gsave +6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor +fill +grestore +newpath +8.221852e+01 6.219636e+01 moveto +8.063154e+01 5.811105e+01 lineto +7.593528e+01 5.875057e+01 lineto +7.716102e+01 6.288507e+01 lineto +8.221852e+01 6.219636e+01 lineto +closepath +gsave +6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor +fill +grestore +newpath +7.716102e+01 6.288507e+01 moveto +7.593528e+01 5.875057e+01 lineto +7.084664e+01 5.921897e+01 lineto +7.168097e+01 6.33895e+01 lineto +7.716102e+01 6.288507e+01 lineto +closepath +gsave +6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor +fill +grestore +newpath +7.168097e+01 6.33895e+01 moveto +7.084664e+01 5.921897e+01 lineto +6.549092e+01 5.95047e+01 lineto +6.591329e+01 6.369721e+01 lineto +7.168097e+01 6.33895e+01 lineto +closepath +gsave +7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor +fill +grestore +newpath +6.591329e+01 6.369721e+01 moveto +6.549092e+01 5.95047e+01 lineto +6.0e+01 5.960073e+01 lineto +6.0e+01 6.380063e+01 lineto +6.591329e+01 6.369721e+01 lineto +closepath +gsave +7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 6.380063e+01 moveto +6.0e+01 5.960073e+01 lineto +5.450908e+01 5.95047e+01 lineto +5.408671e+01 6.369721e+01 lineto +6.0e+01 6.380063e+01 lineto +closepath +gsave +7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor +fill +grestore +newpath +5.408671e+01 6.369721e+01 moveto +5.450908e+01 5.95047e+01 lineto +4.915336e+01 5.921897e+01 lineto +4.831903e+01 6.33895e+01 lineto +5.408671e+01 6.369721e+01 lineto +closepath +gsave +7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor +fill +grestore +newpath +4.831903e+01 6.33895e+01 moveto +4.915336e+01 5.921897e+01 lineto +4.406472e+01 5.875057e+01 lineto +4.283898e+01 6.288507e+01 lineto +4.831903e+01 6.33895e+01 lineto +closepath +gsave +7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor +fill +grestore +newpath +4.283898e+01 6.288507e+01 moveto +4.406472e+01 5.875057e+01 lineto +3.936846e+01 5.811105e+01 lineto +3.778148e+01 6.219636e+01 lineto +4.283898e+01 6.288507e+01 lineto +closepath +gsave +7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor +fill +grestore +newpath +3.778148e+01 6.219636e+01 moveto +3.936846e+01 5.811105e+01 lineto +3.518022e+01 5.731614e+01 lineto +3.327108e+01 6.13403e+01 lineto +3.778148e+01 6.219636e+01 lineto +closepath +gsave +7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor +fill +grestore +newpath +3.327108e+01 6.13403e+01 moveto +3.518022e+01 5.731614e+01 lineto +3.160312e+01 5.638542e+01 lineto +2.941883e+01 6.033799e+01 lineto +3.327108e+01 6.13403e+01 lineto +closepath +gsave +7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor +fill +grestore +newpath +2.941883e+01 6.033799e+01 moveto +3.160312e+01 5.638542e+01 lineto +2.872525e+01 5.53418e+01 lineto +2.631959e+01 5.92141e+01 lineto +2.941883e+01 6.033799e+01 lineto +closepath +gsave +7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor +fill +grestore +newpath +2.631959e+01 5.92141e+01 moveto +2.872525e+01 5.53418e+01 lineto +2.661747e+01 5.4211e+01 lineto +2.404968e+01 5.799631e+01 lineto +2.631959e+01 5.92141e+01 lineto +closepath +gsave +7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor +fill +grestore +newpath +2.404968e+01 5.799631e+01 moveto +2.661747e+01 5.4211e+01 lineto +2.533167e+01 5.302084e+01 lineto +2.266498e+01 5.67146e+01 lineto +2.404968e+01 5.799631e+01 lineto +closepath +gsave +7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor +fill +grestore +newpath +2.266498e+01 5.67146e+01 moveto +2.533167e+01 5.302084e+01 lineto +2.489953e+01 5.180063e+01 lineto +2.21996e+01 5.540054e+01 lineto +2.266498e+01 5.67146e+01 lineto +closepath +gsave +7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor +fill +grestore +newpath +2.21996e+01 5.540054e+01 moveto +2.489953e+01 5.180063e+01 lineto +2.533167e+01 5.058042e+01 lineto +2.266498e+01 5.408648e+01 lineto +2.21996e+01 5.540054e+01 lineto +closepath +gsave +7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor +fill +grestore +newpath +1.000017e+02 5.759253e+01 moveto +9.733502e+01 5.408648e+01 lineto +9.78004e+01 5.540054e+01 lineto +1.005003e+02 5.900045e+01 lineto +1.000017e+02 5.759253e+01 lineto +closepath +gsave +5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor +fill +grestore +newpath +1.005003e+02 5.900045e+01 moveto +9.78004e+01 5.540054e+01 lineto +9.733502e+01 5.67146e+01 lineto +1.000017e+02 6.040837e+01 lineto +1.005003e+02 5.900045e+01 lineto +closepath +gsave +5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor +fill +grestore +newpath +1.000017e+02 6.040837e+01 moveto +9.733502e+01 5.67146e+01 lineto +9.595032e+01 5.799631e+01 lineto +9.851811e+01 6.178163e+01 lineto +1.000017e+02 6.040837e+01 lineto +closepath +gsave +5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor +fill +grestore +newpath +9.851811e+01 6.178163e+01 moveto +9.595032e+01 5.799631e+01 lineto +9.368041e+01 5.92141e+01 lineto +9.608606e+01 6.30864e+01 lineto +9.851811e+01 6.178163e+01 lineto +closepath +gsave +5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor +fill +grestore +newpath +9.608606e+01 6.30864e+01 moveto +9.368041e+01 5.92141e+01 lineto +9.058117e+01 6.033799e+01 lineto +9.276546e+01 6.429056e+01 lineto +9.608606e+01 6.30864e+01 lineto +closepath +gsave +5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor +fill +grestore +newpath +9.276546e+01 6.429056e+01 moveto +9.058117e+01 6.033799e+01 lineto +8.672892e+01 6.13403e+01 lineto +8.863806e+01 6.536446e+01 lineto +9.276546e+01 6.429056e+01 lineto +closepath +gsave +6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor +fill +grestore +newpath +8.863806e+01 6.536446e+01 moveto +8.672892e+01 6.13403e+01 lineto +8.221852e+01 6.219636e+01 lineto +8.38055e+01 6.628166e+01 lineto +8.863806e+01 6.536446e+01 lineto +closepath +gsave +6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor +fill +grestore +newpath +8.38055e+01 6.628166e+01 moveto +8.221852e+01 6.219636e+01 lineto +7.716102e+01 6.288507e+01 lineto +7.838677e+01 6.701958e+01 lineto +8.38055e+01 6.628166e+01 lineto +closepath +gsave +6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor +fill +grestore +newpath +7.838677e+01 6.701958e+01 moveto +7.716102e+01 6.288507e+01 lineto +7.168097e+01 6.33895e+01 lineto +7.251529e+01 6.756003e+01 lineto +7.838677e+01 6.701958e+01 lineto +closepath +gsave +6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor +fill +grestore +newpath +7.251529e+01 6.756003e+01 moveto +7.168097e+01 6.33895e+01 lineto +6.591329e+01 6.369721e+01 lineto +6.633565e+01 6.788972e+01 lineto +7.251529e+01 6.756003e+01 lineto +closepath +gsave +7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor +fill +grestore +newpath +6.633565e+01 6.788972e+01 moveto +6.591329e+01 6.369721e+01 lineto +6.0e+01 6.380063e+01 lineto +6.0e+01 6.800052e+01 lineto +6.633565e+01 6.788972e+01 lineto +closepath +gsave +7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 6.800052e+01 moveto +6.0e+01 6.380063e+01 lineto +5.408671e+01 6.369721e+01 lineto +5.366435e+01 6.788972e+01 lineto +6.0e+01 6.800052e+01 lineto +closepath +gsave +7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor +fill +grestore +newpath +5.366435e+01 6.788972e+01 moveto +5.408671e+01 6.369721e+01 lineto +4.831903e+01 6.33895e+01 lineto +4.748471e+01 6.756003e+01 lineto +5.366435e+01 6.788972e+01 lineto +closepath +gsave +7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor +fill +grestore +newpath +4.748471e+01 6.756003e+01 moveto +4.831903e+01 6.33895e+01 lineto +4.283898e+01 6.288507e+01 lineto +4.161323e+01 6.701958e+01 lineto +4.748471e+01 6.756003e+01 lineto +closepath +gsave +7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor +fill +grestore +newpath +4.161323e+01 6.701958e+01 moveto +4.283898e+01 6.288507e+01 lineto +3.778148e+01 6.219636e+01 lineto +3.61945e+01 6.628166e+01 lineto +4.161323e+01 6.701958e+01 lineto +closepath +gsave +7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor +fill +grestore +newpath +3.61945e+01 6.628166e+01 moveto +3.778148e+01 6.219636e+01 lineto +3.327108e+01 6.13403e+01 lineto +3.136194e+01 6.536446e+01 lineto +3.61945e+01 6.628166e+01 lineto +closepath +gsave +7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor +fill +grestore +newpath +3.136194e+01 6.536446e+01 moveto +3.327108e+01 6.13403e+01 lineto +2.941883e+01 6.033799e+01 lineto +2.723454e+01 6.429056e+01 lineto +3.136194e+01 6.536446e+01 lineto +closepath +gsave +7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor +fill +grestore +newpath +2.723454e+01 6.429056e+01 moveto +2.941883e+01 6.033799e+01 lineto +2.631959e+01 5.92141e+01 lineto +2.391394e+01 6.30864e+01 lineto +2.723454e+01 6.429056e+01 lineto +closepath +gsave +7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor +fill +grestore +newpath +2.391394e+01 6.30864e+01 moveto +2.631959e+01 5.92141e+01 lineto +2.404968e+01 5.799631e+01 lineto +2.148189e+01 6.178163e+01 lineto +2.391394e+01 6.30864e+01 lineto +closepath +gsave +7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor +fill +grestore +newpath +2.148189e+01 6.178163e+01 moveto +2.404968e+01 5.799631e+01 lineto +2.266498e+01 5.67146e+01 lineto +1.999829e+01 6.040837e+01 lineto +2.148189e+01 6.178163e+01 lineto +closepath +gsave +7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor +fill +grestore +newpath +1.999829e+01 6.040837e+01 moveto +2.266498e+01 5.67146e+01 lineto +2.21996e+01 5.540054e+01 lineto +1.949966e+01 5.900045e+01 lineto +1.999829e+01 6.040837e+01 lineto +closepath +gsave +7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor +fill +grestore +newpath +1.949966e+01 5.900045e+01 moveto +2.21996e+01 5.540054e+01 lineto +2.266498e+01 5.408648e+01 lineto +1.999829e+01 5.759253e+01 lineto +1.949966e+01 5.900045e+01 lineto +closepath +gsave +7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor +fill +grestore +newpath +1.026684e+02 6.109858e+01 moveto +1.000017e+02 5.759253e+01 lineto +1.005003e+02 5.900045e+01 lineto +1.032003e+02 6.260036e+01 lineto +1.026684e+02 6.109858e+01 lineto +closepath +gsave +5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor +fill +grestore +newpath +1.032003e+02 6.260036e+01 moveto +1.005003e+02 5.900045e+01 lineto +1.000017e+02 6.040837e+01 lineto +1.026684e+02 6.410214e+01 lineto +1.032003e+02 6.260036e+01 lineto +closepath +gsave +5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor +fill +grestore +newpath +1.026684e+02 6.410214e+01 moveto +1.000017e+02 6.040837e+01 lineto +9.851811e+01 6.178163e+01 lineto +1.010859e+02 6.556694e+01 lineto +1.026684e+02 6.410214e+01 lineto +closepath +gsave +5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor +fill +grestore +newpath +1.010859e+02 6.556694e+01 moveto +9.851811e+01 6.178163e+01 lineto +9.608606e+01 6.30864e+01 lineto +9.849172e+01 6.69587e+01 lineto +1.010859e+02 6.556694e+01 lineto +closepath +gsave +5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor +fill +grestore +newpath +9.849172e+01 6.69587e+01 moveto +9.608606e+01 6.30864e+01 lineto +9.276546e+01 6.429056e+01 lineto +9.494975e+01 6.824313e+01 lineto +9.849172e+01 6.69587e+01 lineto +closepath +gsave +5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor +fill +grestore +newpath +9.494975e+01 6.824313e+01 moveto +9.276546e+01 6.429056e+01 lineto +8.863806e+01 6.536446e+01 lineto +9.05472e+01 6.938863e+01 lineto +9.494975e+01 6.824313e+01 lineto +closepath +gsave +6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor +fill +grestore +newpath +9.05472e+01 6.938863e+01 moveto +8.863806e+01 6.536446e+01 lineto +8.38055e+01 6.628166e+01 lineto +8.539248e+01 7.036697e+01 lineto +9.05472e+01 6.938863e+01 lineto +closepath +gsave +6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor +fill +grestore +newpath +8.539248e+01 7.036697e+01 moveto +8.38055e+01 6.628166e+01 lineto +7.838677e+01 6.701958e+01 lineto +7.961251e+01 7.115408e+01 lineto +8.539248e+01 7.036697e+01 lineto +closepath +gsave +6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor +fill +grestore +newpath +7.961251e+01 7.115408e+01 moveto +7.838677e+01 6.701958e+01 lineto +7.251529e+01 6.756003e+01 lineto +7.334962e+01 7.173056e+01 lineto +7.961251e+01 7.115408e+01 lineto +closepath +gsave +6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor +fill +grestore +newpath +7.334962e+01 7.173056e+01 moveto +7.251529e+01 6.756003e+01 lineto +6.633565e+01 6.788972e+01 lineto +6.675801e+01 7.208223e+01 lineto +7.334962e+01 7.173056e+01 lineto +closepath +gsave +7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor +fill +grestore +newpath +6.675801e+01 7.208223e+01 moveto +6.633565e+01 6.788972e+01 lineto +6.0e+01 6.800052e+01 lineto +6.0e+01 7.220042e+01 lineto +6.675801e+01 7.208223e+01 lineto +closepath +gsave +7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 7.220042e+01 moveto +6.0e+01 6.800052e+01 lineto +5.366435e+01 6.788972e+01 lineto +5.324199e+01 7.208223e+01 lineto +6.0e+01 7.220042e+01 lineto +closepath +gsave +7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor +fill +grestore +newpath +5.324199e+01 7.208223e+01 moveto +5.366435e+01 6.788972e+01 lineto +4.748471e+01 6.756003e+01 lineto +4.665038e+01 7.173056e+01 lineto +5.324199e+01 7.208223e+01 lineto +closepath +gsave +7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor +fill +grestore +newpath +4.665038e+01 7.173056e+01 moveto +4.748471e+01 6.756003e+01 lineto +4.161323e+01 6.701958e+01 lineto +4.038749e+01 7.115408e+01 lineto +4.665038e+01 7.173056e+01 lineto +closepath +gsave +7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor +fill +grestore +newpath +4.038749e+01 7.115408e+01 moveto +4.161323e+01 6.701958e+01 lineto +3.61945e+01 6.628166e+01 lineto +3.460752e+01 7.036697e+01 lineto +4.038749e+01 7.115408e+01 lineto +closepath +gsave +7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor +fill +grestore +newpath +3.460752e+01 7.036697e+01 moveto +3.61945e+01 6.628166e+01 lineto +3.136194e+01 6.536446e+01 lineto +2.94528e+01 6.938863e+01 lineto +3.460752e+01 7.036697e+01 lineto +closepath +gsave +7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor +fill +grestore +newpath +2.94528e+01 6.938863e+01 moveto +3.136194e+01 6.536446e+01 lineto +2.723454e+01 6.429056e+01 lineto +2.505025e+01 6.824313e+01 lineto +2.94528e+01 6.938863e+01 lineto +closepath +gsave +7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor +fill +grestore +newpath +2.505025e+01 6.824313e+01 moveto +2.723454e+01 6.429056e+01 lineto +2.391394e+01 6.30864e+01 lineto +2.150828e+01 6.69587e+01 lineto +2.505025e+01 6.824313e+01 lineto +closepath +gsave +7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor +fill +grestore +newpath +2.150828e+01 6.69587e+01 moveto +2.391394e+01 6.30864e+01 lineto +2.148189e+01 6.178163e+01 lineto +1.89141e+01 6.556694e+01 lineto +2.150828e+01 6.69587e+01 lineto +closepath +gsave +7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor +fill +grestore +newpath +1.89141e+01 6.556694e+01 moveto +2.148189e+01 6.178163e+01 lineto +1.999829e+01 6.040837e+01 lineto +1.73316e+01 6.410214e+01 lineto +1.89141e+01 6.556694e+01 lineto +closepath +gsave +7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor +fill +grestore +newpath +1.73316e+01 6.410214e+01 moveto +1.999829e+01 6.040837e+01 lineto +1.949966e+01 5.900045e+01 lineto +1.679973e+01 6.260036e+01 lineto +1.73316e+01 6.410214e+01 lineto +closepath +gsave +7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor +fill +grestore +newpath +1.679973e+01 6.260036e+01 moveto +1.949966e+01 5.900045e+01 lineto +1.999829e+01 5.759253e+01 lineto +1.73316e+01 6.109858e+01 lineto +1.679973e+01 6.260036e+01 lineto +closepath +gsave +7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor +fill +grestore +newpath +1.053351e+02 6.460463e+01 moveto +1.026684e+02 6.109858e+01 lineto +1.032003e+02 6.260036e+01 lineto +1.059002e+02 6.620027e+01 lineto +1.053351e+02 6.460463e+01 lineto +closepath +gsave +5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor +fill +grestore +newpath +1.059002e+02 6.620027e+01 moveto +1.032003e+02 6.260036e+01 lineto +1.026684e+02 6.410214e+01 lineto +1.053351e+02 6.779591e+01 lineto +1.059002e+02 6.620027e+01 lineto +closepath +gsave +5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor +fill +grestore +newpath +1.053351e+02 6.779591e+01 moveto +1.026684e+02 6.410214e+01 lineto +1.010859e+02 6.556694e+01 lineto +1.036537e+02 6.935226e+01 lineto +1.053351e+02 6.779591e+01 lineto +closepath +gsave +5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor +fill +grestore +newpath +1.036537e+02 6.935226e+01 moveto +1.010859e+02 6.556694e+01 lineto +9.849172e+01 6.69587e+01 lineto +1.008974e+02 7.083099e+01 lineto +1.036537e+02 6.935226e+01 lineto +closepath +gsave +5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor +fill +grestore +newpath +1.008974e+02 7.083099e+01 moveto +9.849172e+01 6.69587e+01 lineto +9.494975e+01 6.824313e+01 lineto +9.713404e+01 7.219571e+01 lineto +1.008974e+02 7.083099e+01 lineto +closepath +gsave +5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor +fill +grestore +newpath +9.713404e+01 7.219571e+01 moveto +9.494975e+01 6.824313e+01 lineto +9.05472e+01 6.938863e+01 lineto +9.245634e+01 7.341279e+01 lineto +9.713404e+01 7.219571e+01 lineto +closepath +gsave +6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor +fill +grestore +newpath +9.245634e+01 7.341279e+01 moveto +9.05472e+01 6.938863e+01 lineto +8.539248e+01 7.036697e+01 lineto +8.697946e+01 7.445228e+01 lineto +9.245634e+01 7.341279e+01 lineto +closepath +gsave +6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor +fill +grestore +newpath +8.697946e+01 7.445228e+01 moveto +8.539248e+01 7.036697e+01 lineto +7.961251e+01 7.115408e+01 lineto +8.083826e+01 7.528858e+01 lineto +8.697946e+01 7.445228e+01 lineto +closepath +gsave +6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor +fill +grestore +newpath +8.083826e+01 7.528858e+01 moveto +7.961251e+01 7.115408e+01 lineto +7.334962e+01 7.173056e+01 lineto +7.418394e+01 7.590109e+01 lineto +8.083826e+01 7.528858e+01 lineto +closepath +gsave +6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor +fill +grestore +newpath +7.418394e+01 7.590109e+01 moveto +7.334962e+01 7.173056e+01 lineto +6.675801e+01 7.208223e+01 lineto +6.718037e+01 7.627474e+01 lineto +7.418394e+01 7.590109e+01 lineto +closepath +gsave +7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor +fill +grestore +newpath +6.718037e+01 7.627474e+01 moveto +6.675801e+01 7.208223e+01 lineto +6.0e+01 7.220042e+01 lineto +6.0e+01 7.640031e+01 lineto +6.718037e+01 7.627474e+01 lineto +closepath +gsave +7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 7.640031e+01 moveto +6.0e+01 7.220042e+01 lineto +5.324199e+01 7.208223e+01 lineto +5.281963e+01 7.627474e+01 lineto +6.0e+01 7.640031e+01 lineto +closepath +gsave +7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor +fill +grestore +newpath +5.281963e+01 7.627474e+01 moveto +5.324199e+01 7.208223e+01 lineto +4.665038e+01 7.173056e+01 lineto +4.581606e+01 7.590109e+01 lineto +5.281963e+01 7.627474e+01 lineto +closepath +gsave +7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor +fill +grestore +newpath +4.581606e+01 7.590109e+01 moveto +4.665038e+01 7.173056e+01 lineto +4.038749e+01 7.115408e+01 lineto +3.916174e+01 7.528858e+01 lineto +4.581606e+01 7.590109e+01 lineto +closepath +gsave +7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor +fill +grestore +newpath +3.916174e+01 7.528858e+01 moveto +4.038749e+01 7.115408e+01 lineto +3.460752e+01 7.036697e+01 lineto +3.302054e+01 7.445228e+01 lineto +3.916174e+01 7.528858e+01 lineto +closepath +gsave +7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor +fill +grestore +newpath +3.302054e+01 7.445228e+01 moveto +3.460752e+01 7.036697e+01 lineto +2.94528e+01 6.938863e+01 lineto +2.754366e+01 7.341279e+01 lineto +3.302054e+01 7.445228e+01 lineto +closepath +gsave +7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor +fill +grestore +newpath +2.754366e+01 7.341279e+01 moveto +2.94528e+01 6.938863e+01 lineto +2.505025e+01 6.824313e+01 lineto +2.286596e+01 7.219571e+01 lineto +2.754366e+01 7.341279e+01 lineto +closepath +gsave +7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor +fill +grestore +newpath +2.286596e+01 7.219571e+01 moveto +2.505025e+01 6.824313e+01 lineto +2.150828e+01 6.69587e+01 lineto +1.910262e+01 7.083099e+01 lineto +2.286596e+01 7.219571e+01 lineto +closepath +gsave +7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor +fill +grestore +newpath +1.910262e+01 7.083099e+01 moveto +2.150828e+01 6.69587e+01 lineto +1.89141e+01 6.556694e+01 lineto +1.634631e+01 6.935226e+01 lineto +1.910262e+01 7.083099e+01 lineto +closepath +gsave +7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor +fill +grestore +newpath +1.634631e+01 6.935226e+01 moveto +1.89141e+01 6.556694e+01 lineto +1.73316e+01 6.410214e+01 lineto +1.466491e+01 6.779591e+01 lineto +1.634631e+01 6.935226e+01 lineto +closepath +gsave +7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor +fill +grestore +newpath +1.466491e+01 6.779591e+01 moveto +1.73316e+01 6.410214e+01 lineto +1.679973e+01 6.260036e+01 lineto +1.40998e+01 6.620027e+01 lineto +1.466491e+01 6.779591e+01 lineto +closepath +gsave +7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor +fill +grestore +newpath +1.40998e+01 6.620027e+01 moveto +1.679973e+01 6.260036e+01 lineto +1.73316e+01 6.109858e+01 lineto +1.466491e+01 6.460463e+01 lineto +1.40998e+01 6.620027e+01 lineto +closepath +gsave +7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor +fill +grestore +newpath +1.080018e+02 6.811068e+01 moveto +1.053351e+02 6.460463e+01 lineto +1.059002e+02 6.620027e+01 lineto +1.086001e+02 6.980018e+01 lineto +1.080018e+02 6.811068e+01 lineto +closepath +gsave +5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor +fill +grestore +newpath +1.086001e+02 6.980018e+01 moveto +1.059002e+02 6.620027e+01 lineto +1.053351e+02 6.779591e+01 lineto +1.080018e+02 7.148968e+01 lineto +1.086001e+02 6.980018e+01 lineto +closepath +gsave +5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor +fill +grestore +newpath +1.080018e+02 7.148968e+01 moveto +1.053351e+02 6.779591e+01 lineto +1.036537e+02 6.935226e+01 lineto +1.062215e+02 7.313757e+01 lineto +1.080018e+02 7.148968e+01 lineto +closepath +gsave +5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor +fill +grestore +newpath +1.062215e+02 7.313757e+01 moveto +1.036537e+02 6.935226e+01 lineto +1.008974e+02 7.083099e+01 lineto +1.03303e+02 7.470329e+01 lineto +1.062215e+02 7.313757e+01 lineto +closepath +gsave +5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor +fill +grestore +newpath +1.03303e+02 7.470329e+01 moveto +1.008974e+02 7.083099e+01 lineto +9.713404e+01 7.219571e+01 lineto +9.931834e+01 7.614828e+01 lineto +1.03303e+02 7.470329e+01 lineto +closepath +gsave +5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor +fill +grestore +newpath +9.931834e+01 7.614828e+01 moveto +9.713404e+01 7.219571e+01 lineto +9.245634e+01 7.341279e+01 lineto +9.436549e+01 7.743695e+01 lineto +9.931834e+01 7.614828e+01 lineto +closepath +gsave +6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor +fill +grestore +newpath +9.436549e+01 7.743695e+01 moveto +9.245634e+01 7.341279e+01 lineto +8.697946e+01 7.445228e+01 lineto +8.856644e+01 7.853759e+01 lineto +9.436549e+01 7.743695e+01 lineto +closepath +gsave +6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor +fill +grestore +newpath +8.856644e+01 7.853759e+01 moveto +8.697946e+01 7.445228e+01 lineto +8.083826e+01 7.528858e+01 lineto +8.2064e+01 7.942308e+01 lineto +8.856644e+01 7.853759e+01 lineto +closepath +gsave +6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor +fill +grestore +newpath +8.2064e+01 7.942308e+01 moveto +8.083826e+01 7.528858e+01 lineto +7.418394e+01 7.590109e+01 lineto +7.501827e+01 8.007162e+01 lineto +8.2064e+01 7.942308e+01 lineto +closepath +gsave +6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor +fill +grestore +newpath +7.501827e+01 8.007162e+01 moveto +7.418394e+01 7.590109e+01 lineto +6.718037e+01 7.627474e+01 lineto +6.760274e+01 8.046724e+01 lineto +7.501827e+01 8.007162e+01 lineto +closepath +gsave +7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor +fill +grestore +newpath +6.760274e+01 8.046724e+01 moveto +6.718037e+01 7.627474e+01 lineto +6.0e+01 7.640031e+01 lineto +6.0e+01 8.060021e+01 lineto +6.760274e+01 8.046724e+01 lineto +closepath +gsave +7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 8.060021e+01 moveto +6.0e+01 7.640031e+01 lineto +5.281963e+01 7.627474e+01 lineto +5.239726e+01 8.046724e+01 lineto +6.0e+01 8.060021e+01 lineto +closepath +gsave +7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor +fill +grestore +newpath +5.239726e+01 8.046724e+01 moveto +5.281963e+01 7.627474e+01 lineto +4.581606e+01 7.590109e+01 lineto +4.498173e+01 8.007162e+01 lineto +5.239726e+01 8.046724e+01 lineto +closepath +gsave +7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor +fill +grestore +newpath +4.498173e+01 8.007162e+01 moveto +4.581606e+01 7.590109e+01 lineto +3.916174e+01 7.528858e+01 lineto +3.7936e+01 7.942308e+01 lineto +4.498173e+01 8.007162e+01 lineto +closepath +gsave +7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor +fill +grestore +newpath +3.7936e+01 7.942308e+01 moveto +3.916174e+01 7.528858e+01 lineto +3.302054e+01 7.445228e+01 lineto +3.143356e+01 7.853759e+01 lineto +3.7936e+01 7.942308e+01 lineto +closepath +gsave +7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor +fill +grestore +newpath +3.143356e+01 7.853759e+01 moveto +3.302054e+01 7.445228e+01 lineto +2.754366e+01 7.341279e+01 lineto +2.563451e+01 7.743695e+01 lineto +3.143356e+01 7.853759e+01 lineto +closepath +gsave +7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor +fill +grestore +newpath +2.563451e+01 7.743695e+01 moveto +2.754366e+01 7.341279e+01 lineto +2.286596e+01 7.219571e+01 lineto +2.068166e+01 7.614828e+01 lineto +2.563451e+01 7.743695e+01 lineto +closepath +gsave +7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor +fill +grestore +newpath +2.068166e+01 7.614828e+01 moveto +2.286596e+01 7.219571e+01 lineto +1.910262e+01 7.083099e+01 lineto +1.669696e+01 7.470329e+01 lineto +2.068166e+01 7.614828e+01 lineto +closepath +gsave +7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor +fill +grestore +newpath +1.669696e+01 7.470329e+01 moveto +1.910262e+01 7.083099e+01 lineto +1.634631e+01 6.935226e+01 lineto +1.377852e+01 7.313757e+01 lineto +1.669696e+01 7.470329e+01 lineto +closepath +gsave +7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor +fill +grestore +newpath +1.377852e+01 7.313757e+01 moveto +1.634631e+01 6.935226e+01 lineto +1.466491e+01 6.779591e+01 lineto +1.199821e+01 7.148968e+01 lineto +1.377852e+01 7.313757e+01 lineto +closepath +gsave +7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor +fill +grestore +newpath +1.199821e+01 7.148968e+01 moveto +1.466491e+01 6.779591e+01 lineto +1.40998e+01 6.620027e+01 lineto +1.139987e+01 6.980018e+01 lineto +1.199821e+01 7.148968e+01 lineto +closepath +gsave +7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor +fill +grestore +newpath +1.139987e+01 6.980018e+01 moveto +1.40998e+01 6.620027e+01 lineto +1.466491e+01 6.460463e+01 lineto +1.199821e+01 6.811068e+01 lineto +1.139987e+01 6.980018e+01 lineto +closepath +gsave +7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor +fill +grestore +newpath +1.106685e+02 7.161673e+01 moveto +1.080018e+02 6.811068e+01 lineto +1.086001e+02 6.980018e+01 lineto +1.113001e+02 7.340009e+01 lineto +1.106685e+02 7.161673e+01 lineto +closepath +gsave +5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor +fill +grestore +newpath +1.113001e+02 7.340009e+01 moveto +1.086001e+02 6.980018e+01 lineto +1.080018e+02 7.148968e+01 lineto +1.106685e+02 7.518345e+01 lineto +1.113001e+02 7.340009e+01 lineto +closepath +gsave +5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor +fill +grestore +newpath +1.106685e+02 7.518345e+01 moveto +1.080018e+02 7.148968e+01 lineto +1.062215e+02 7.313757e+01 lineto +1.087893e+02 7.692289e+01 lineto +1.106685e+02 7.518345e+01 lineto +closepath +gsave +5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor +fill +grestore +newpath +1.087893e+02 7.692289e+01 moveto +1.062215e+02 7.313757e+01 lineto +1.03303e+02 7.470329e+01 lineto +1.057087e+02 7.857559e+01 lineto +1.087893e+02 7.692289e+01 lineto +closepath +gsave +5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor +fill +grestore +newpath +1.057087e+02 7.857559e+01 moveto +1.03303e+02 7.470329e+01 lineto +9.931834e+01 7.614828e+01 lineto +1.015026e+02 8.010085e+01 lineto +1.057087e+02 7.857559e+01 lineto +closepath +gsave +5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor +fill +grestore +newpath +1.015026e+02 8.010085e+01 moveto +9.931834e+01 7.614828e+01 lineto +9.436549e+01 7.743695e+01 lineto +9.627463e+01 8.146112e+01 lineto +1.015026e+02 8.010085e+01 lineto +closepath +gsave +6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor +fill +grestore +newpath +9.627463e+01 8.146112e+01 moveto +9.436549e+01 7.743695e+01 lineto +8.856644e+01 7.853759e+01 lineto +9.015342e+01 8.26229e+01 lineto +9.627463e+01 8.146112e+01 lineto +closepath +gsave +6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor +fill +grestore +newpath +9.015342e+01 8.26229e+01 moveto +8.856644e+01 7.853759e+01 lineto +8.2064e+01 7.942308e+01 lineto +8.328974e+01 8.355758e+01 lineto +9.015342e+01 8.26229e+01 lineto +closepath +gsave +6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor +fill +grestore +newpath +8.328974e+01 8.355758e+01 moveto +8.2064e+01 7.942308e+01 lineto +7.501827e+01 8.007162e+01 lineto +7.585259e+01 8.424215e+01 lineto +8.328974e+01 8.355758e+01 lineto +closepath +gsave +6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor +fill +grestore +newpath +7.585259e+01 8.424215e+01 moveto +7.501827e+01 8.007162e+01 lineto +6.760274e+01 8.046724e+01 lineto +6.80251e+01 8.465975e+01 lineto +7.585259e+01 8.424215e+01 lineto +closepath +gsave +7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor +fill +grestore +newpath +6.80251e+01 8.465975e+01 moveto +6.760274e+01 8.046724e+01 lineto +6.0e+01 8.060021e+01 lineto +6.0e+01 8.48001e+01 lineto +6.80251e+01 8.465975e+01 lineto +closepath +gsave +7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 8.48001e+01 moveto +6.0e+01 8.060021e+01 lineto +5.239726e+01 8.046724e+01 lineto +5.19749e+01 8.465975e+01 lineto +6.0e+01 8.48001e+01 lineto +closepath +gsave +7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor +fill +grestore +newpath +5.19749e+01 8.465975e+01 moveto +5.239726e+01 8.046724e+01 lineto +4.498173e+01 8.007162e+01 lineto +4.414741e+01 8.424215e+01 lineto +5.19749e+01 8.465975e+01 lineto +closepath +gsave +7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor +fill +grestore +newpath +4.414741e+01 8.424215e+01 moveto +4.498173e+01 8.007162e+01 lineto +3.7936e+01 7.942308e+01 lineto +3.671026e+01 8.355758e+01 lineto +4.414741e+01 8.424215e+01 lineto +closepath +gsave +7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor +fill +grestore +newpath +3.671026e+01 8.355758e+01 moveto +3.7936e+01 7.942308e+01 lineto +3.143356e+01 7.853759e+01 lineto +2.984658e+01 8.26229e+01 lineto +3.671026e+01 8.355758e+01 lineto +closepath +gsave +7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor +fill +grestore +newpath +2.984658e+01 8.26229e+01 moveto +3.143356e+01 7.853759e+01 lineto +2.563451e+01 7.743695e+01 lineto +2.372537e+01 8.146112e+01 lineto +2.984658e+01 8.26229e+01 lineto +closepath +gsave +7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor +fill +grestore +newpath +2.372537e+01 8.146112e+01 moveto +2.563451e+01 7.743695e+01 lineto +2.068166e+01 7.614828e+01 lineto +1.849737e+01 8.010085e+01 lineto +2.372537e+01 8.146112e+01 lineto +closepath +gsave +7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor +fill +grestore +newpath +1.849737e+01 8.010085e+01 moveto +2.068166e+01 7.614828e+01 lineto +1.669696e+01 7.470329e+01 lineto +1.429131e+01 7.857559e+01 lineto +1.849737e+01 8.010085e+01 lineto +closepath +gsave +7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor +fill +grestore +newpath +1.429131e+01 7.857559e+01 moveto +1.669696e+01 7.470329e+01 lineto +1.377852e+01 7.313757e+01 lineto +1.121074e+01 7.692289e+01 lineto +1.429131e+01 7.857559e+01 lineto +closepath +gsave +7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor +fill +grestore +newpath +1.121074e+01 7.692289e+01 moveto +1.377852e+01 7.313757e+01 lineto +1.199821e+01 7.148968e+01 lineto +9.331521e+00 7.518345e+01 lineto +1.121074e+01 7.692289e+01 lineto +closepath +gsave +7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor +fill +grestore +newpath +9.331521e+00 7.518345e+01 moveto +1.199821e+01 7.148968e+01 lineto +1.139987e+01 6.980018e+01 lineto +8.699933e+00 7.340009e+01 lineto +9.331521e+00 7.518345e+01 lineto +closepath +gsave +7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor +fill +grestore +newpath +8.699933e+00 7.340009e+01 moveto +1.139987e+01 6.980018e+01 lineto +1.199821e+01 6.811068e+01 lineto +9.331521e+00 7.161673e+01 lineto +8.699933e+00 7.340009e+01 lineto +closepath +gsave +7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor +fill +grestore +newpath +1.133352e+02 7.512279e+01 moveto +1.106685e+02 7.161673e+01 lineto +1.113001e+02 7.340009e+01 lineto +1.14e+02 7.7e+01 lineto +1.133352e+02 7.512279e+01 lineto +closepath +gsave +5.107349e-01 5.107349e-01 5.107349e-01 setrgbcolor +fill +grestore +newpath +1.14e+02 7.7e+01 moveto +1.113001e+02 7.340009e+01 lineto +1.106685e+02 7.518345e+01 lineto +1.133352e+02 7.887721e+01 lineto +1.14e+02 7.7e+01 lineto +closepath +gsave +5.265009e-01 5.265009e-01 5.265009e-01 setrgbcolor +fill +grestore +newpath +1.133352e+02 7.887721e+01 moveto +1.106685e+02 7.518345e+01 lineto +1.087893e+02 7.692289e+01 lineto +1.113571e+02 8.07082e+01 lineto +1.133352e+02 7.887721e+01 lineto +closepath +gsave +5.458251e-01 5.458251e-01 5.458251e-01 setrgbcolor +fill +grestore +newpath +1.113571e+02 8.07082e+01 moveto +1.087893e+02 7.692289e+01 lineto +1.057087e+02 7.857559e+01 lineto +1.081144e+02 8.244789e+01 lineto +1.113571e+02 8.07082e+01 lineto +closepath +gsave +5.681081e-01 5.681081e-01 5.681081e-01 setrgbcolor +fill +grestore +newpath +1.081144e+02 8.244789e+01 moveto +1.057087e+02 7.857559e+01 lineto +1.015026e+02 8.010085e+01 lineto +1.036869e+02 8.405342e+01 lineto +1.081144e+02 8.244789e+01 lineto +closepath +gsave +5.926115e-01 5.926115e-01 5.926115e-01 setrgbcolor +fill +grestore +newpath +1.036869e+02 8.405342e+01 moveto +1.015026e+02 8.010085e+01 lineto +9.627463e+01 8.146112e+01 lineto +9.818377e+01 8.548528e+01 lineto +1.036869e+02 8.405342e+01 lineto +closepath +gsave +6.184839e-01 6.184839e-01 6.184839e-01 setrgbcolor +fill +grestore +newpath +9.818377e+01 8.548528e+01 moveto +9.627463e+01 8.146112e+01 lineto +9.015342e+01 8.26229e+01 lineto +9.17404e+01 8.67082e+01 lineto +9.818377e+01 8.548528e+01 lineto +closepath +gsave +6.448056e-01 6.448056e-01 6.448056e-01 setrgbcolor +fill +grestore +newpath +9.17404e+01 8.67082e+01 moveto +9.015342e+01 8.26229e+01 lineto +8.328974e+01 8.355758e+01 lineto +8.451549e+01 8.769208e+01 lineto +9.17404e+01 8.67082e+01 lineto +closepath +gsave +6.706496e-01 6.706496e-01 6.706496e-01 setrgbcolor +fill +grestore +newpath +8.451549e+01 8.769208e+01 moveto +8.328974e+01 8.355758e+01 lineto +7.585259e+01 8.424215e+01 lineto +7.668692e+01 8.841268e+01 lineto +8.451549e+01 8.769208e+01 lineto +closepath +gsave +6.951506e-01 6.951506e-01 6.951506e-01 setrgbcolor +fill +grestore +newpath +7.668692e+01 8.841268e+01 moveto +7.585259e+01 8.424215e+01 lineto +6.80251e+01 8.465975e+01 lineto +6.844746e+01 8.885226e+01 lineto +7.668692e+01 8.841268e+01 lineto +closepath +gsave +7.175727e-01 7.175727e-01 7.175727e-01 setrgbcolor +fill +grestore +newpath +6.844746e+01 8.885226e+01 moveto +6.80251e+01 8.465975e+01 lineto +6.0e+01 8.48001e+01 lineto +6.0e+01 8.9e+01 lineto +6.844746e+01 8.885226e+01 lineto +closepath +gsave +7.373627e-01 7.373627e-01 7.373627e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 8.9e+01 moveto +6.0e+01 8.48001e+01 lineto +5.19749e+01 8.465975e+01 lineto +5.155254e+01 8.885226e+01 lineto +6.0e+01 8.9e+01 lineto +closepath +gsave +7.541818e-01 7.541818e-01 7.541818e-01 setrgbcolor +fill +grestore +newpath +5.155254e+01 8.885226e+01 moveto +5.19749e+01 8.465975e+01 lineto +4.414741e+01 8.424215e+01 lineto +4.331308e+01 8.841268e+01 lineto +5.155254e+01 8.885226e+01 lineto +closepath +gsave +7.679062e-01 7.679062e-01 7.679062e-01 setrgbcolor +fill +grestore +newpath +4.331308e+01 8.841268e+01 moveto +4.414741e+01 8.424215e+01 lineto +3.671026e+01 8.355758e+01 lineto +3.548451e+01 8.769208e+01 lineto +4.331308e+01 8.841268e+01 lineto +closepath +gsave +7.785989e-01 7.785989e-01 7.785989e-01 setrgbcolor +fill +grestore +newpath +3.548451e+01 8.769208e+01 moveto +3.671026e+01 8.355758e+01 lineto +2.984658e+01 8.26229e+01 lineto +2.82596e+01 8.67082e+01 lineto +3.548451e+01 8.769208e+01 lineto +closepath +gsave +7.864551e-01 7.864551e-01 7.864551e-01 setrgbcolor +fill +grestore +newpath +2.82596e+01 8.67082e+01 moveto +2.984658e+01 8.26229e+01 lineto +2.372537e+01 8.146112e+01 lineto +2.181623e+01 8.548528e+01 lineto +2.82596e+01 8.67082e+01 lineto +closepath +gsave +7.917311e-01 7.917311e-01 7.917311e-01 setrgbcolor +fill +grestore +newpath +2.181623e+01 8.548528e+01 moveto +2.372537e+01 8.146112e+01 lineto +1.849737e+01 8.010085e+01 lineto +1.631308e+01 8.405342e+01 lineto +2.181623e+01 8.548528e+01 lineto +closepath +gsave +7.946702e-01 7.946702e-01 7.946702e-01 setrgbcolor +fill +grestore +newpath +1.631308e+01 8.405342e+01 moveto +1.849737e+01 8.010085e+01 lineto +1.429131e+01 7.857559e+01 lineto +1.188565e+01 8.244789e+01 lineto +1.631308e+01 8.405342e+01 lineto +closepath +gsave +7.954388e-01 7.954388e-01 7.954388e-01 setrgbcolor +fill +grestore +newpath +1.188565e+01 8.244789e+01 moveto +1.429131e+01 7.857559e+01 lineto +1.121074e+01 7.692289e+01 lineto +8.642948e+00 8.07082e+01 lineto +1.188565e+01 8.244789e+01 lineto +closepath +gsave +7.940846e-01 7.940846e-01 7.940846e-01 setrgbcolor +fill +grestore +newpath +8.642948e+00 8.07082e+01 moveto +1.121074e+01 7.692289e+01 lineto +9.331521e+00 7.518345e+01 lineto +6.66483e+00 7.887721e+01 lineto +8.642948e+00 8.07082e+01 lineto +closepath +gsave +7.905249e-01 7.905249e-01 7.905249e-01 setrgbcolor +fill +grestore +newpath +6.66483e+00 7.887721e+01 moveto +9.331521e+00 7.518345e+01 lineto +8.699933e+00 7.340009e+01 lineto +6.0e+00 7.7e+01 lineto +6.66483e+00 7.887721e+01 lineto +closepath +gsave +7.845668e-01 7.845668e-01 7.845668e-01 setrgbcolor +fill +grestore +newpath +6.0e+00 7.7e+01 moveto +8.699933e+00 7.340009e+01 lineto +9.331521e+00 7.161673e+01 lineto +6.66483e+00 7.512279e+01 lineto +6.0e+00 7.7e+01 lineto +closepath +gsave +7.759563e-01 7.759563e-01 7.759563e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 8.001425e+00 moveto +6.0e+01 5.0015e+00 lineto +6.000021e+01 5.001504e+00 lineto +6.042257e+01 8.008816e+00 lineto +6.0e+01 8.001425e+00 lineto +closepath +gsave +6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor +fill +grestore +newpath +6.042257e+01 8.008816e+00 moveto +6.000021e+01 5.001504e+00 lineto +6.000042e+01 5.001515e+00 lineto +6.083474e+01 8.030805e+00 lineto +6.042257e+01 8.008816e+00 lineto +closepath +gsave +6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor +fill +grestore +newpath +6.083474e+01 8.030805e+00 moveto +6.000042e+01 5.001515e+00 lineto +6.000061e+01 5.001533e+00 lineto +6.122636e+01 8.066852e+00 lineto +6.083474e+01 8.030805e+00 lineto +closepath +gsave +6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor +fill +grestore +newpath +6.122636e+01 8.066852e+00 moveto +6.000061e+01 5.001533e+00 lineto +6.000079e+01 5.001557e+00 lineto +6.158777e+01 8.116069e+00 lineto +6.122636e+01 8.066852e+00 lineto +closepath +gsave +6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor +fill +grestore +newpath +6.158777e+01 8.116069e+00 moveto +6.000079e+01 5.001557e+00 lineto +6.000095e+01 5.001588e+00 lineto +6.19101e+01 8.177244e+00 lineto +6.158777e+01 8.116069e+00 lineto +closepath +gsave +6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor +fill +grestore +newpath +6.19101e+01 8.177244e+00 moveto +6.000095e+01 5.001588e+00 lineto +6.000109e+01 5.001624e+00 lineto +6.218538e+01 8.248871e+00 lineto +6.19101e+01 8.177244e+00 lineto +closepath +gsave +6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor +fill +grestore +newpath +6.218538e+01 8.248871e+00 moveto +6.000109e+01 5.001624e+00 lineto +6.00012e+01 5.001664e+00 lineto +6.240686e+01 8.329186e+00 lineto +6.218538e+01 8.248871e+00 lineto +closepath +gsave +6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor +fill +grestore +newpath +6.240686e+01 8.329186e+00 moveto +6.00012e+01 5.001664e+00 lineto +6.000128e+01 5.001707e+00 lineto +6.256907e+01 8.416212e+00 lineto +6.240686e+01 8.329186e+00 lineto +closepath +gsave +6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor +fill +grestore +newpath +6.256907e+01 8.416212e+00 moveto +6.000128e+01 5.001707e+00 lineto +6.000133e+01 5.001753e+00 lineto +6.266803e+01 8.507805e+00 lineto +6.256907e+01 8.416212e+00 lineto +closepath +gsave +6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor +fill +grestore +newpath +5.733197e+01 8.507805e+00 moveto +5.999867e+01 5.001753e+00 lineto +5.999872e+01 5.001707e+00 lineto +5.743093e+01 8.416212e+00 lineto +5.733197e+01 8.507805e+00 lineto +closepath +gsave +3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor +fill +grestore +newpath +5.743093e+01 8.416212e+00 moveto +5.999872e+01 5.001707e+00 lineto +5.99988e+01 5.001664e+00 lineto +5.759314e+01 8.329186e+00 lineto +5.743093e+01 8.416212e+00 lineto +closepath +gsave +4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor +fill +grestore +newpath +5.759314e+01 8.329186e+00 moveto +5.99988e+01 5.001664e+00 lineto +5.999891e+01 5.001624e+00 lineto +5.781462e+01 8.248871e+00 lineto +5.759314e+01 8.329186e+00 lineto +closepath +gsave +4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor +fill +grestore +newpath +5.781462e+01 8.248871e+00 moveto +5.999891e+01 5.001624e+00 lineto +5.999905e+01 5.001588e+00 lineto +5.80899e+01 8.177244e+00 lineto +5.781462e+01 8.248871e+00 lineto +closepath +gsave +4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor +fill +grestore +newpath +5.80899e+01 8.177244e+00 moveto +5.999905e+01 5.001588e+00 lineto +5.999921e+01 5.001557e+00 lineto +5.841223e+01 8.116069e+00 lineto +5.80899e+01 8.177244e+00 lineto +closepath +gsave +4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor +fill +grestore +newpath +5.841223e+01 8.116069e+00 moveto +5.999921e+01 5.001557e+00 lineto +5.999939e+01 5.001533e+00 lineto +5.877364e+01 8.066852e+00 lineto +5.841223e+01 8.116069e+00 lineto +closepath +gsave +5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor +fill +grestore +newpath +5.877364e+01 8.066852e+00 moveto +5.999939e+01 5.001533e+00 lineto +5.999958e+01 5.001515e+00 lineto +5.916526e+01 8.030805e+00 lineto +5.877364e+01 8.066852e+00 lineto +closepath +gsave +5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor +fill +grestore +newpath +5.916526e+01 8.030805e+00 moveto +5.999958e+01 5.001515e+00 lineto +5.999979e+01 5.001504e+00 lineto +5.957743e+01 8.008816e+00 lineto +5.916526e+01 8.030805e+00 lineto +closepath +gsave +5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor +fill +grestore +newpath +5.957743e+01 8.008816e+00 moveto +5.999979e+01 5.001504e+00 lineto +6.0e+01 5.0015e+00 lineto +6.0e+01 8.001425e+00 lineto +5.957743e+01 8.008816e+00 lineto +closepath +gsave +5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 1.100135e+01 moveto +6.0e+01 8.001425e+00 lineto +6.042257e+01 8.008816e+00 lineto +6.084494e+01 1.101613e+01 lineto +6.0e+01 1.100135e+01 lineto +closepath +gsave +6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor +fill +grestore +newpath +6.084494e+01 1.101613e+01 moveto +6.042257e+01 8.008816e+00 lineto +6.083474e+01 8.030805e+00 lineto +6.166907e+01 1.10601e+01 lineto +6.084494e+01 1.101613e+01 lineto +closepath +gsave +6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor +fill +grestore +newpath +6.166907e+01 1.10601e+01 moveto +6.083474e+01 8.030805e+00 lineto +6.122636e+01 8.066852e+00 lineto +6.24521e+01 1.113217e+01 lineto +6.166907e+01 1.10601e+01 lineto +closepath +gsave +6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor +fill +grestore +newpath +6.24521e+01 1.113217e+01 moveto +6.122636e+01 8.066852e+00 lineto +6.158777e+01 8.116069e+00 lineto +6.317475e+01 1.123058e+01 lineto +6.24521e+01 1.113217e+01 lineto +closepath +gsave +6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor +fill +grestore +newpath +6.317475e+01 1.123058e+01 moveto +6.158777e+01 8.116069e+00 lineto +6.19101e+01 8.177244e+00 lineto +6.381924e+01 1.13529e+01 lineto +6.317475e+01 1.123058e+01 lineto +closepath +gsave +6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor +fill +grestore +newpath +6.381924e+01 1.13529e+01 moveto +6.19101e+01 8.177244e+00 lineto +6.218538e+01 8.248871e+00 lineto +6.436967e+01 1.149612e+01 lineto +6.381924e+01 1.13529e+01 lineto +closepath +gsave +6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor +fill +grestore +newpath +6.436967e+01 1.149612e+01 moveto +6.218538e+01 8.248871e+00 lineto +6.240686e+01 8.329186e+00 lineto +6.481252e+01 1.165671e+01 lineto +6.436967e+01 1.149612e+01 lineto +closepath +gsave +6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor +fill +grestore +newpath +6.481252e+01 1.165671e+01 moveto +6.240686e+01 8.329186e+00 lineto +6.256907e+01 8.416212e+00 lineto +6.513686e+01 1.183072e+01 lineto +6.481252e+01 1.165671e+01 lineto +closepath +gsave +6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor +fill +grestore +newpath +6.513686e+01 1.183072e+01 moveto +6.256907e+01 8.416212e+00 lineto +6.266803e+01 8.507805e+00 lineto +6.533472e+01 1.201386e+01 lineto +6.513686e+01 1.183072e+01 lineto +closepath +gsave +6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor +fill +grestore +newpath +5.466528e+01 1.201386e+01 moveto +5.733197e+01 8.507805e+00 lineto +5.743093e+01 8.416212e+00 lineto +5.486314e+01 1.183072e+01 lineto +5.466528e+01 1.201386e+01 lineto +closepath +gsave +3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor +fill +grestore +newpath +5.486314e+01 1.183072e+01 moveto +5.743093e+01 8.416212e+00 lineto +5.759314e+01 8.329186e+00 lineto +5.518748e+01 1.165671e+01 lineto +5.486314e+01 1.183072e+01 lineto +closepath +gsave +4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor +fill +grestore +newpath +5.518748e+01 1.165671e+01 moveto +5.759314e+01 8.329186e+00 lineto +5.781462e+01 8.248871e+00 lineto +5.563033e+01 1.149612e+01 lineto +5.518748e+01 1.165671e+01 lineto +closepath +gsave +4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor +fill +grestore +newpath +5.563033e+01 1.149612e+01 moveto +5.781462e+01 8.248871e+00 lineto +5.80899e+01 8.177244e+00 lineto +5.618076e+01 1.13529e+01 lineto +5.563033e+01 1.149612e+01 lineto +closepath +gsave +4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor +fill +grestore +newpath +5.618076e+01 1.13529e+01 moveto +5.80899e+01 8.177244e+00 lineto +5.841223e+01 8.116069e+00 lineto +5.682525e+01 1.123058e+01 lineto +5.618076e+01 1.13529e+01 lineto +closepath +gsave +4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor +fill +grestore +newpath +5.682525e+01 1.123058e+01 moveto +5.841223e+01 8.116069e+00 lineto +5.877364e+01 8.066852e+00 lineto +5.75479e+01 1.113217e+01 lineto +5.682525e+01 1.123058e+01 lineto +closepath +gsave +5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor +fill +grestore +newpath +5.75479e+01 1.113217e+01 moveto +5.877364e+01 8.066852e+00 lineto +5.916526e+01 8.030805e+00 lineto +5.833093e+01 1.10601e+01 lineto +5.75479e+01 1.113217e+01 lineto +closepath +gsave +5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor +fill +grestore +newpath +5.833093e+01 1.10601e+01 moveto +5.916526e+01 8.030805e+00 lineto +5.957743e+01 8.008816e+00 lineto +5.915506e+01 1.101613e+01 lineto +5.833093e+01 1.10601e+01 lineto +closepath +gsave +5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor +fill +grestore +newpath +5.915506e+01 1.101613e+01 moveto +5.957743e+01 8.008816e+00 lineto +6.0e+01 8.001425e+00 lineto +6.0e+01 1.100135e+01 lineto +5.915506e+01 1.101613e+01 lineto +closepath +gsave +5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 1.400127e+01 moveto +6.0e+01 1.100135e+01 lineto +6.084494e+01 1.101613e+01 lineto +6.12673e+01 1.402344e+01 lineto +6.0e+01 1.400127e+01 lineto +closepath +gsave +6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor +fill +grestore +newpath +6.12673e+01 1.402344e+01 moveto +6.084494e+01 1.101613e+01 lineto +6.166907e+01 1.10601e+01 lineto +6.250339e+01 1.408939e+01 lineto +6.12673e+01 1.402344e+01 lineto +closepath +gsave +6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor +fill +grestore +newpath +6.250339e+01 1.408939e+01 moveto +6.166907e+01 1.10601e+01 lineto +6.24521e+01 1.113217e+01 lineto +6.367784e+01 1.419749e+01 lineto +6.250339e+01 1.408939e+01 lineto +closepath +gsave +6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor +fill +grestore +newpath +6.367784e+01 1.419749e+01 moveto +6.24521e+01 1.113217e+01 lineto +6.317475e+01 1.123058e+01 lineto +6.476174e+01 1.434509e+01 lineto +6.367784e+01 1.419749e+01 lineto +closepath +gsave +6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor +fill +grestore +newpath +6.476174e+01 1.434509e+01 moveto +6.317475e+01 1.123058e+01 lineto +6.381924e+01 1.13529e+01 lineto +6.572838e+01 1.452856e+01 lineto +6.476174e+01 1.434509e+01 lineto +closepath +gsave +6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor +fill +grestore +newpath +6.572838e+01 1.452856e+01 moveto +6.381924e+01 1.13529e+01 lineto +6.436967e+01 1.149612e+01 lineto +6.655397e+01 1.474337e+01 lineto +6.572838e+01 1.452856e+01 lineto +closepath +gsave +6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor +fill +grestore +newpath +6.655397e+01 1.474337e+01 moveto +6.436967e+01 1.149612e+01 lineto +6.481252e+01 1.165671e+01 lineto +6.721818e+01 1.498423e+01 lineto +6.655397e+01 1.474337e+01 lineto +closepath +gsave +6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor +fill +grestore +newpath +6.721818e+01 1.498423e+01 moveto +6.481252e+01 1.165671e+01 lineto +6.513686e+01 1.183072e+01 lineto +6.770465e+01 1.524522e+01 lineto +6.721818e+01 1.498423e+01 lineto +closepath +gsave +6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor +fill +grestore +newpath +6.770465e+01 1.524522e+01 moveto +6.513686e+01 1.183072e+01 lineto +6.533472e+01 1.201386e+01 lineto +6.800141e+01 1.551991e+01 lineto +6.770465e+01 1.524522e+01 lineto +closepath +gsave +6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor +fill +grestore +newpath +5.199859e+01 1.551991e+01 moveto +5.466528e+01 1.201386e+01 lineto +5.486314e+01 1.183072e+01 lineto +5.229535e+01 1.524522e+01 lineto +5.199859e+01 1.551991e+01 lineto +closepath +gsave +3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor +fill +grestore +newpath +5.229535e+01 1.524522e+01 moveto +5.486314e+01 1.183072e+01 lineto +5.518748e+01 1.165671e+01 lineto +5.278182e+01 1.498423e+01 lineto +5.229535e+01 1.524522e+01 lineto +closepath +gsave +4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor +fill +grestore +newpath +5.278182e+01 1.498423e+01 moveto +5.518748e+01 1.165671e+01 lineto +5.563033e+01 1.149612e+01 lineto +5.344603e+01 1.474337e+01 lineto +5.278182e+01 1.498423e+01 lineto +closepath +gsave +4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor +fill +grestore +newpath +5.344603e+01 1.474337e+01 moveto +5.563033e+01 1.149612e+01 lineto +5.618076e+01 1.13529e+01 lineto +5.427162e+01 1.452856e+01 lineto +5.344603e+01 1.474337e+01 lineto +closepath +gsave +4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor +fill +grestore +newpath +5.427162e+01 1.452856e+01 moveto +5.618076e+01 1.13529e+01 lineto +5.682525e+01 1.123058e+01 lineto +5.523826e+01 1.434509e+01 lineto +5.427162e+01 1.452856e+01 lineto +closepath +gsave +4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor +fill +grestore +newpath +5.523826e+01 1.434509e+01 moveto +5.682525e+01 1.123058e+01 lineto +5.75479e+01 1.113217e+01 lineto +5.632216e+01 1.419749e+01 lineto +5.523826e+01 1.434509e+01 lineto +closepath +gsave +5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor +fill +grestore +newpath +5.632216e+01 1.419749e+01 moveto +5.75479e+01 1.113217e+01 lineto +5.833093e+01 1.10601e+01 lineto +5.749661e+01 1.408939e+01 lineto +5.632216e+01 1.419749e+01 lineto +closepath +gsave +5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor +fill +grestore +newpath +5.749661e+01 1.408939e+01 moveto +5.833093e+01 1.10601e+01 lineto +5.915506e+01 1.101613e+01 lineto +5.87327e+01 1.402344e+01 lineto +5.749661e+01 1.408939e+01 lineto +closepath +gsave +5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor +fill +grestore +newpath +5.87327e+01 1.402344e+01 moveto +5.915506e+01 1.101613e+01 lineto +6.0e+01 1.100135e+01 lineto +6.0e+01 1.400127e+01 lineto +5.87327e+01 1.402344e+01 lineto +closepath +gsave +5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 1.70012e+01 moveto +6.0e+01 1.400127e+01 lineto +6.12673e+01 1.402344e+01 lineto +6.168966e+01 1.703075e+01 lineto +6.0e+01 1.70012e+01 lineto +closepath +gsave +6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor +fill +grestore +newpath +6.168966e+01 1.703075e+01 moveto +6.12673e+01 1.402344e+01 lineto +6.250339e+01 1.408939e+01 lineto +6.333772e+01 1.711868e+01 lineto +6.168966e+01 1.703075e+01 lineto +closepath +gsave +6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor +fill +grestore +newpath +6.333772e+01 1.711868e+01 moveto +6.250339e+01 1.408939e+01 lineto +6.367784e+01 1.419749e+01 lineto +6.490359e+01 1.726281e+01 lineto +6.333772e+01 1.711868e+01 lineto +closepath +gsave +6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor +fill +grestore +newpath +6.490359e+01 1.726281e+01 moveto +6.367784e+01 1.419749e+01 lineto +6.476174e+01 1.434509e+01 lineto +6.634872e+01 1.745961e+01 lineto +6.490359e+01 1.726281e+01 lineto +closepath +gsave +6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor +fill +grestore +newpath +6.634872e+01 1.745961e+01 moveto +6.476174e+01 1.434509e+01 lineto +6.572838e+01 1.452856e+01 lineto +6.763752e+01 1.770421e+01 lineto +6.634872e+01 1.745961e+01 lineto +closepath +gsave +6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor +fill +grestore +newpath +6.763752e+01 1.770421e+01 moveto +6.572838e+01 1.452856e+01 lineto +6.655397e+01 1.474337e+01 lineto +6.873826e+01 1.799061e+01 lineto +6.763752e+01 1.770421e+01 lineto +closepath +gsave +6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor +fill +grestore +newpath +6.873826e+01 1.799061e+01 moveto +6.655397e+01 1.474337e+01 lineto +6.721818e+01 1.498423e+01 lineto +6.962383e+01 1.831175e+01 lineto +6.873826e+01 1.799061e+01 lineto +closepath +gsave +6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor +fill +grestore +newpath +6.962383e+01 1.831175e+01 moveto +6.721818e+01 1.498423e+01 lineto +6.770465e+01 1.524522e+01 lineto +7.027244e+01 1.865973e+01 lineto +6.962383e+01 1.831175e+01 lineto +closepath +gsave +6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor +fill +grestore +newpath +7.027244e+01 1.865973e+01 moveto +6.770465e+01 1.524522e+01 lineto +6.800141e+01 1.551991e+01 lineto +7.06681e+01 1.902596e+01 lineto +7.027244e+01 1.865973e+01 lineto +closepath +gsave +6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor +fill +grestore +newpath +4.93319e+01 1.902596e+01 moveto +5.199859e+01 1.551991e+01 lineto +5.229535e+01 1.524522e+01 lineto +4.972756e+01 1.865973e+01 lineto +4.93319e+01 1.902596e+01 lineto +closepath +gsave +3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor +fill +grestore +newpath +4.972756e+01 1.865973e+01 moveto +5.229535e+01 1.524522e+01 lineto +5.278182e+01 1.498423e+01 lineto +5.037617e+01 1.831175e+01 lineto +4.972756e+01 1.865973e+01 lineto +closepath +gsave +4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor +fill +grestore +newpath +5.037617e+01 1.831175e+01 moveto +5.278182e+01 1.498423e+01 lineto +5.344603e+01 1.474337e+01 lineto +5.126174e+01 1.799061e+01 lineto +5.037617e+01 1.831175e+01 lineto +closepath +gsave +4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor +fill +grestore +newpath +5.126174e+01 1.799061e+01 moveto +5.344603e+01 1.474337e+01 lineto +5.427162e+01 1.452856e+01 lineto +5.236248e+01 1.770421e+01 lineto +5.126174e+01 1.799061e+01 lineto +closepath +gsave +4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor +fill +grestore +newpath +5.236248e+01 1.770421e+01 moveto +5.427162e+01 1.452856e+01 lineto +5.523826e+01 1.434509e+01 lineto +5.365128e+01 1.745961e+01 lineto +5.236248e+01 1.770421e+01 lineto +closepath +gsave +4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor +fill +grestore +newpath +5.365128e+01 1.745961e+01 moveto +5.523826e+01 1.434509e+01 lineto +5.632216e+01 1.419749e+01 lineto +5.509641e+01 1.726281e+01 lineto +5.365128e+01 1.745961e+01 lineto +closepath +gsave +5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor +fill +grestore +newpath +5.509641e+01 1.726281e+01 moveto +5.632216e+01 1.419749e+01 lineto +5.749661e+01 1.408939e+01 lineto +5.666228e+01 1.711868e+01 lineto +5.509641e+01 1.726281e+01 lineto +closepath +gsave +5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor +fill +grestore +newpath +5.666228e+01 1.711868e+01 moveto +5.749661e+01 1.408939e+01 lineto +5.87327e+01 1.402344e+01 lineto +5.831034e+01 1.703075e+01 lineto +5.666228e+01 1.711868e+01 lineto +closepath +gsave +5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor +fill +grestore +newpath +5.831034e+01 1.703075e+01 moveto +5.87327e+01 1.402344e+01 lineto +6.0e+01 1.400127e+01 lineto +6.0e+01 1.70012e+01 lineto +5.831034e+01 1.703075e+01 lineto +closepath +gsave +5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 2.000112e+01 moveto +6.0e+01 1.70012e+01 lineto +6.168966e+01 1.703075e+01 lineto +6.211202e+01 2.003806e+01 lineto +6.0e+01 2.000112e+01 lineto +closepath +gsave +6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor +fill +grestore +newpath +6.211202e+01 2.003806e+01 moveto +6.168966e+01 1.703075e+01 lineto +6.333772e+01 1.711868e+01 lineto +6.417204e+01 2.014797e+01 lineto +6.211202e+01 2.003806e+01 lineto +closepath +gsave +6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor +fill +grestore +newpath +6.417204e+01 2.014797e+01 moveto +6.333772e+01 1.711868e+01 lineto +6.490359e+01 1.726281e+01 lineto +6.612933e+01 2.032813e+01 lineto +6.417204e+01 2.014797e+01 lineto +closepath +gsave +6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor +fill +grestore +newpath +6.612933e+01 2.032813e+01 moveto +6.490359e+01 1.726281e+01 lineto +6.634872e+01 1.745961e+01 lineto +6.79357e+01 2.057412e+01 lineto +6.612933e+01 2.032813e+01 lineto +closepath +gsave +6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor +fill +grestore +newpath +6.79357e+01 2.057412e+01 moveto +6.634872e+01 1.745961e+01 lineto +6.763752e+01 1.770421e+01 lineto +6.954666e+01 2.087987e+01 lineto +6.79357e+01 2.057412e+01 lineto +closepath +gsave +6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor +fill +grestore +newpath +6.954666e+01 2.087987e+01 moveto +6.763752e+01 1.770421e+01 lineto +6.873826e+01 1.799061e+01 lineto +7.092255e+01 2.123786e+01 lineto +6.954666e+01 2.087987e+01 lineto +closepath +gsave +6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor +fill +grestore +newpath +7.092255e+01 2.123786e+01 moveto +6.873826e+01 1.799061e+01 lineto +6.962383e+01 1.831175e+01 lineto +7.202949e+01 2.163928e+01 lineto +7.092255e+01 2.123786e+01 lineto +closepath +gsave +6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor +fill +grestore +newpath +7.202949e+01 2.163928e+01 moveto +6.962383e+01 1.831175e+01 lineto +7.027244e+01 1.865973e+01 lineto +7.284023e+01 2.207423e+01 lineto +7.202949e+01 2.163928e+01 lineto +closepath +gsave +6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor +fill +grestore +newpath +7.284023e+01 2.207423e+01 moveto +7.027244e+01 1.865973e+01 lineto +7.06681e+01 1.902596e+01 lineto +7.333479e+01 2.253201e+01 lineto +7.284023e+01 2.207423e+01 lineto +closepath +gsave +6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor +fill +grestore +newpath +4.666521e+01 2.253201e+01 moveto +4.93319e+01 1.902596e+01 lineto +4.972756e+01 1.865973e+01 lineto +4.715977e+01 2.207423e+01 lineto +4.666521e+01 2.253201e+01 lineto +closepath +gsave +3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor +fill +grestore +newpath +4.715977e+01 2.207423e+01 moveto +4.972756e+01 1.865973e+01 lineto +5.037617e+01 1.831175e+01 lineto +4.797051e+01 2.163928e+01 lineto +4.715977e+01 2.207423e+01 lineto +closepath +gsave +4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor +fill +grestore +newpath +4.797051e+01 2.163928e+01 moveto +5.037617e+01 1.831175e+01 lineto +5.126174e+01 1.799061e+01 lineto +4.907745e+01 2.123786e+01 lineto +4.797051e+01 2.163928e+01 lineto +closepath +gsave +4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor +fill +grestore +newpath +4.907745e+01 2.123786e+01 moveto +5.126174e+01 1.799061e+01 lineto +5.236248e+01 1.770421e+01 lineto +5.045334e+01 2.087987e+01 lineto +4.907745e+01 2.123786e+01 lineto +closepath +gsave +4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor +fill +grestore +newpath +5.045334e+01 2.087987e+01 moveto +5.236248e+01 1.770421e+01 lineto +5.365128e+01 1.745961e+01 lineto +5.20643e+01 2.057412e+01 lineto +5.045334e+01 2.087987e+01 lineto +closepath +gsave +4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor +fill +grestore +newpath +5.20643e+01 2.057412e+01 moveto +5.365128e+01 1.745961e+01 lineto +5.509641e+01 1.726281e+01 lineto +5.387067e+01 2.032813e+01 lineto +5.20643e+01 2.057412e+01 lineto +closepath +gsave +5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor +fill +grestore +newpath +5.387067e+01 2.032813e+01 moveto +5.509641e+01 1.726281e+01 lineto +5.666228e+01 1.711868e+01 lineto +5.582796e+01 2.014797e+01 lineto +5.387067e+01 2.032813e+01 lineto +closepath +gsave +5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor +fill +grestore +newpath +5.582796e+01 2.014797e+01 moveto +5.666228e+01 1.711868e+01 lineto +5.831034e+01 1.703075e+01 lineto +5.788798e+01 2.003806e+01 lineto +5.582796e+01 2.014797e+01 lineto +closepath +gsave +5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor +fill +grestore +newpath +5.788798e+01 2.003806e+01 moveto +5.831034e+01 1.703075e+01 lineto +6.0e+01 1.70012e+01 lineto +6.0e+01 2.000112e+01 lineto +5.788798e+01 2.003806e+01 lineto +closepath +gsave +5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 2.300105e+01 moveto +6.0e+01 2.000112e+01 lineto +6.211202e+01 2.003806e+01 lineto +6.253439e+01 2.304537e+01 lineto +6.0e+01 2.300105e+01 lineto +closepath +gsave +6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor +fill +grestore +newpath +6.253439e+01 2.304537e+01 moveto +6.211202e+01 2.003806e+01 lineto +6.417204e+01 2.014797e+01 lineto +6.500637e+01 2.317726e+01 lineto +6.253439e+01 2.304537e+01 lineto +closepath +gsave +6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor +fill +grestore +newpath +6.500637e+01 2.317726e+01 moveto +6.417204e+01 2.014797e+01 lineto +6.612933e+01 2.032813e+01 lineto +6.735508e+01 2.339345e+01 lineto +6.500637e+01 2.317726e+01 lineto +closepath +gsave +6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor +fill +grestore +newpath +6.735508e+01 2.339345e+01 moveto +6.612933e+01 2.032813e+01 lineto +6.79357e+01 2.057412e+01 lineto +6.952268e+01 2.368863e+01 lineto +6.735508e+01 2.339345e+01 lineto +closepath +gsave +6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor +fill +grestore +newpath +6.952268e+01 2.368863e+01 moveto +6.79357e+01 2.057412e+01 lineto +6.954666e+01 2.087987e+01 lineto +7.14558e+01 2.405553e+01 lineto +6.952268e+01 2.368863e+01 lineto +closepath +gsave +6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor +fill +grestore +newpath +7.14558e+01 2.405553e+01 moveto +6.954666e+01 2.087987e+01 lineto +7.092255e+01 2.123786e+01 lineto +7.310684e+01 2.448511e+01 lineto +7.14558e+01 2.405553e+01 lineto +closepath +gsave +6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor +fill +grestore +newpath +7.310684e+01 2.448511e+01 moveto +7.092255e+01 2.123786e+01 lineto +7.202949e+01 2.163928e+01 lineto +7.443515e+01 2.49668e+01 lineto +7.310684e+01 2.448511e+01 lineto +closepath +gsave +6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor +fill +grestore +newpath +7.443515e+01 2.49668e+01 moveto +7.202949e+01 2.163928e+01 lineto +7.284023e+01 2.207423e+01 lineto +7.540801e+01 2.548873e+01 lineto +7.443515e+01 2.49668e+01 lineto +closepath +gsave +6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor +fill +grestore +newpath +7.540801e+01 2.548873e+01 moveto +7.284023e+01 2.207423e+01 lineto +7.333479e+01 2.253201e+01 lineto +7.600148e+01 2.603806e+01 lineto +7.540801e+01 2.548873e+01 lineto +closepath +gsave +6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor +fill +grestore +newpath +4.399852e+01 2.603806e+01 moveto +4.666521e+01 2.253201e+01 lineto +4.715977e+01 2.207423e+01 lineto +4.459199e+01 2.548873e+01 lineto +4.399852e+01 2.603806e+01 lineto +closepath +gsave +3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor +fill +grestore +newpath +4.459199e+01 2.548873e+01 moveto +4.715977e+01 2.207423e+01 lineto +4.797051e+01 2.163928e+01 lineto +4.556485e+01 2.49668e+01 lineto +4.459199e+01 2.548873e+01 lineto +closepath +gsave +4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor +fill +grestore +newpath +4.556485e+01 2.49668e+01 moveto +4.797051e+01 2.163928e+01 lineto +4.907745e+01 2.123786e+01 lineto +4.689316e+01 2.448511e+01 lineto +4.556485e+01 2.49668e+01 lineto +closepath +gsave +4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor +fill +grestore +newpath +4.689316e+01 2.448511e+01 moveto +4.907745e+01 2.123786e+01 lineto +5.045334e+01 2.087987e+01 lineto +4.85442e+01 2.405553e+01 lineto +4.689316e+01 2.448511e+01 lineto +closepath +gsave +4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor +fill +grestore +newpath +4.85442e+01 2.405553e+01 moveto +5.045334e+01 2.087987e+01 lineto +5.20643e+01 2.057412e+01 lineto +5.047732e+01 2.368863e+01 lineto +4.85442e+01 2.405553e+01 lineto +closepath +gsave +4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor +fill +grestore +newpath +5.047732e+01 2.368863e+01 moveto +5.20643e+01 2.057412e+01 lineto +5.387067e+01 2.032813e+01 lineto +5.264492e+01 2.339345e+01 lineto +5.047732e+01 2.368863e+01 lineto +closepath +gsave +5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor +fill +grestore +newpath +5.264492e+01 2.339345e+01 moveto +5.387067e+01 2.032813e+01 lineto +5.582796e+01 2.014797e+01 lineto +5.499363e+01 2.317726e+01 lineto +5.264492e+01 2.339345e+01 lineto +closepath +gsave +5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor +fill +grestore +newpath +5.499363e+01 2.317726e+01 moveto +5.582796e+01 2.014797e+01 lineto +5.788798e+01 2.003806e+01 lineto +5.746561e+01 2.304537e+01 lineto +5.499363e+01 2.317726e+01 lineto +closepath +gsave +5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor +fill +grestore +newpath +5.746561e+01 2.304537e+01 moveto +5.788798e+01 2.003806e+01 lineto +6.0e+01 2.000112e+01 lineto +6.0e+01 2.300105e+01 lineto +5.746561e+01 2.304537e+01 lineto +closepath +gsave +5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 2.600097e+01 moveto +6.0e+01 2.300105e+01 lineto +6.253439e+01 2.304537e+01 lineto +6.295675e+01 2.605269e+01 lineto +6.0e+01 2.600097e+01 lineto +closepath +gsave +6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor +fill +grestore +newpath +6.295675e+01 2.605269e+01 moveto +6.253439e+01 2.304537e+01 lineto +6.500637e+01 2.317726e+01 lineto +6.584069e+01 2.620655e+01 lineto +6.295675e+01 2.605269e+01 lineto +closepath +gsave +6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor +fill +grestore +newpath +6.584069e+01 2.620655e+01 moveto +6.500637e+01 2.317726e+01 lineto +6.735508e+01 2.339345e+01 lineto +6.858082e+01 2.645877e+01 lineto +6.584069e+01 2.620655e+01 lineto +closepath +gsave +6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor +fill +grestore +newpath +6.858082e+01 2.645877e+01 moveto +6.735508e+01 2.339345e+01 lineto +6.952268e+01 2.368863e+01 lineto +7.110966e+01 2.680314e+01 lineto +6.858082e+01 2.645877e+01 lineto +closepath +gsave +6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor +fill +grestore +newpath +7.110966e+01 2.680314e+01 moveto +6.952268e+01 2.368863e+01 lineto +7.14558e+01 2.405553e+01 lineto +7.336494e+01 2.723118e+01 lineto +7.110966e+01 2.680314e+01 lineto +closepath +gsave +6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor +fill +grestore +newpath +7.336494e+01 2.723118e+01 moveto +7.14558e+01 2.405553e+01 lineto +7.310684e+01 2.448511e+01 lineto +7.529113e+01 2.773236e+01 lineto +7.336494e+01 2.723118e+01 lineto +closepath +gsave +6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor +fill +grestore +newpath +7.529113e+01 2.773236e+01 moveto +7.310684e+01 2.448511e+01 lineto +7.443515e+01 2.49668e+01 lineto +7.684081e+01 2.829432e+01 lineto +7.529113e+01 2.773236e+01 lineto +closepath +gsave +6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor +fill +grestore +newpath +7.684081e+01 2.829432e+01 moveto +7.443515e+01 2.49668e+01 lineto +7.540801e+01 2.548873e+01 lineto +7.79758e+01 2.890324e+01 lineto +7.684081e+01 2.829432e+01 lineto +closepath +gsave +6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor +fill +grestore +newpath +7.79758e+01 2.890324e+01 moveto +7.540801e+01 2.548873e+01 lineto +7.600148e+01 2.603806e+01 lineto +7.866818e+01 2.954411e+01 lineto +7.79758e+01 2.890324e+01 lineto +closepath +gsave +6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor +fill +grestore +newpath +4.133182e+01 2.954411e+01 moveto +4.399852e+01 2.603806e+01 lineto +4.459199e+01 2.548873e+01 lineto +4.20242e+01 2.890324e+01 lineto +4.133182e+01 2.954411e+01 lineto +closepath +gsave +3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor +fill +grestore +newpath +4.20242e+01 2.890324e+01 moveto +4.459199e+01 2.548873e+01 lineto +4.556485e+01 2.49668e+01 lineto +4.315919e+01 2.829432e+01 lineto +4.20242e+01 2.890324e+01 lineto +closepath +gsave +4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor +fill +grestore +newpath +4.315919e+01 2.829432e+01 moveto +4.556485e+01 2.49668e+01 lineto +4.689316e+01 2.448511e+01 lineto +4.470887e+01 2.773236e+01 lineto +4.315919e+01 2.829432e+01 lineto +closepath +gsave +4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor +fill +grestore +newpath +4.470887e+01 2.773236e+01 moveto +4.689316e+01 2.448511e+01 lineto +4.85442e+01 2.405553e+01 lineto +4.663506e+01 2.723118e+01 lineto +4.470887e+01 2.773236e+01 lineto +closepath +gsave +4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor +fill +grestore +newpath +4.663506e+01 2.723118e+01 moveto +4.85442e+01 2.405553e+01 lineto +5.047732e+01 2.368863e+01 lineto +4.889034e+01 2.680314e+01 lineto +4.663506e+01 2.723118e+01 lineto +closepath +gsave +4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor +fill +grestore +newpath +4.889034e+01 2.680314e+01 moveto +5.047732e+01 2.368863e+01 lineto +5.264492e+01 2.339345e+01 lineto +5.141918e+01 2.645877e+01 lineto +4.889034e+01 2.680314e+01 lineto +closepath +gsave +5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor +fill +grestore +newpath +5.141918e+01 2.645877e+01 moveto +5.264492e+01 2.339345e+01 lineto +5.499363e+01 2.317726e+01 lineto +5.415931e+01 2.620655e+01 lineto +5.141918e+01 2.645877e+01 lineto +closepath +gsave +5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor +fill +grestore +newpath +5.415931e+01 2.620655e+01 moveto +5.499363e+01 2.317726e+01 lineto +5.746561e+01 2.304537e+01 lineto +5.704325e+01 2.605269e+01 lineto +5.415931e+01 2.620655e+01 lineto +closepath +gsave +5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor +fill +grestore +newpath +5.704325e+01 2.605269e+01 moveto +5.746561e+01 2.304537e+01 lineto +6.0e+01 2.300105e+01 lineto +6.0e+01 2.600097e+01 lineto +5.704325e+01 2.605269e+01 lineto +closepath +gsave +5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 2.90009e+01 moveto +6.0e+01 2.600097e+01 lineto +6.295675e+01 2.605269e+01 lineto +6.337911e+01 2.906e+01 lineto +6.0e+01 2.90009e+01 lineto +closepath +gsave +6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor +fill +grestore +newpath +6.337911e+01 2.906e+01 moveto +6.295675e+01 2.605269e+01 lineto +6.584069e+01 2.620655e+01 lineto +6.667502e+01 2.923584e+01 lineto +6.337911e+01 2.906e+01 lineto +closepath +gsave +6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor +fill +grestore +newpath +6.667502e+01 2.923584e+01 moveto +6.584069e+01 2.620655e+01 lineto +6.858082e+01 2.645877e+01 lineto +6.980656e+01 2.952409e+01 lineto +6.667502e+01 2.923584e+01 lineto +closepath +gsave +6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor +fill +grestore +newpath +6.980656e+01 2.952409e+01 moveto +6.858082e+01 2.645877e+01 lineto +7.110966e+01 2.680314e+01 lineto +7.269664e+01 2.991765e+01 lineto +6.980656e+01 2.952409e+01 lineto +closepath +gsave +6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor +fill +grestore +newpath +7.269664e+01 2.991765e+01 moveto +7.110966e+01 2.680314e+01 lineto +7.336494e+01 2.723118e+01 lineto +7.527408e+01 3.040684e+01 lineto +7.269664e+01 2.991765e+01 lineto +closepath +gsave +6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor +fill +grestore +newpath +7.527408e+01 3.040684e+01 moveto +7.336494e+01 2.723118e+01 lineto +7.529113e+01 2.773236e+01 lineto +7.747542e+01 3.09796e+01 lineto +7.527408e+01 3.040684e+01 lineto +closepath +gsave +6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor +fill +grestore +newpath +7.747542e+01 3.09796e+01 moveto +7.529113e+01 2.773236e+01 lineto +7.684081e+01 2.829432e+01 lineto +7.924646e+01 3.162184e+01 lineto +7.747542e+01 3.09796e+01 lineto +closepath +gsave +6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor +fill +grestore +newpath +7.924646e+01 3.162184e+01 moveto +7.684081e+01 2.829432e+01 lineto +7.79758e+01 2.890324e+01 lineto +8.054359e+01 3.231774e+01 lineto +7.924646e+01 3.162184e+01 lineto +closepath +gsave +6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor +fill +grestore +newpath +8.054359e+01 3.231774e+01 moveto +7.79758e+01 2.890324e+01 lineto +7.866818e+01 2.954411e+01 lineto +8.133487e+01 3.305017e+01 lineto +8.054359e+01 3.231774e+01 lineto +closepath +gsave +6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor +fill +grestore +newpath +3.866513e+01 3.305017e+01 moveto +4.133182e+01 2.954411e+01 lineto +4.20242e+01 2.890324e+01 lineto +3.945641e+01 3.231774e+01 lineto +3.866513e+01 3.305017e+01 lineto +closepath +gsave +3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor +fill +grestore +newpath +3.945641e+01 3.231774e+01 moveto +4.20242e+01 2.890324e+01 lineto +4.315919e+01 2.829432e+01 lineto +4.075354e+01 3.162184e+01 lineto +3.945641e+01 3.231774e+01 lineto +closepath +gsave +4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor +fill +grestore +newpath +4.075354e+01 3.162184e+01 moveto +4.315919e+01 2.829432e+01 lineto +4.470887e+01 2.773236e+01 lineto +4.252458e+01 3.09796e+01 lineto +4.075354e+01 3.162184e+01 lineto +closepath +gsave +4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor +fill +grestore +newpath +4.252458e+01 3.09796e+01 moveto +4.470887e+01 2.773236e+01 lineto +4.663506e+01 2.723118e+01 lineto +4.472592e+01 3.040684e+01 lineto +4.252458e+01 3.09796e+01 lineto +closepath +gsave +4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor +fill +grestore +newpath +4.472592e+01 3.040684e+01 moveto +4.663506e+01 2.723118e+01 lineto +4.889034e+01 2.680314e+01 lineto +4.730336e+01 2.991765e+01 lineto +4.472592e+01 3.040684e+01 lineto +closepath +gsave +4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor +fill +grestore +newpath +4.730336e+01 2.991765e+01 moveto +4.889034e+01 2.680314e+01 lineto +5.141918e+01 2.645877e+01 lineto +5.019344e+01 2.952409e+01 lineto +4.730336e+01 2.991765e+01 lineto +closepath +gsave +5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor +fill +grestore +newpath +5.019344e+01 2.952409e+01 moveto +5.141918e+01 2.645877e+01 lineto +5.415931e+01 2.620655e+01 lineto +5.332498e+01 2.923584e+01 lineto +5.019344e+01 2.952409e+01 lineto +closepath +gsave +5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor +fill +grestore +newpath +5.332498e+01 2.923584e+01 moveto +5.415931e+01 2.620655e+01 lineto +5.704325e+01 2.605269e+01 lineto +5.662089e+01 2.906e+01 lineto +5.332498e+01 2.923584e+01 lineto +closepath +gsave +5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor +fill +grestore +newpath +5.662089e+01 2.906e+01 moveto +5.704325e+01 2.605269e+01 lineto +6.0e+01 2.600097e+01 lineto +6.0e+01 2.90009e+01 lineto +5.662089e+01 2.906e+01 lineto +closepath +gsave +5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 3.200082e+01 moveto +6.0e+01 2.90009e+01 lineto +6.337911e+01 2.906e+01 lineto +6.380147e+01 3.206731e+01 lineto +6.0e+01 3.200082e+01 lineto +closepath +gsave +6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor +fill +grestore +newpath +6.380147e+01 3.206731e+01 moveto +6.337911e+01 2.906e+01 lineto +6.667502e+01 2.923584e+01 lineto +6.750934e+01 3.226513e+01 lineto +6.380147e+01 3.206731e+01 lineto +closepath +gsave +6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor +fill +grestore +newpath +6.750934e+01 3.226513e+01 moveto +6.667502e+01 2.923584e+01 lineto +6.980656e+01 2.952409e+01 lineto +7.103231e+01 3.258941e+01 lineto +6.750934e+01 3.226513e+01 lineto +closepath +gsave +6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor +fill +grestore +newpath +7.103231e+01 3.258941e+01 moveto +6.980656e+01 2.952409e+01 lineto +7.269664e+01 2.991765e+01 lineto +7.428362e+01 3.303216e+01 lineto +7.103231e+01 3.258941e+01 lineto +closepath +gsave +6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor +fill +grestore +newpath +7.428362e+01 3.303216e+01 moveto +7.269664e+01 2.991765e+01 lineto +7.527408e+01 3.040684e+01 lineto +7.718322e+01 3.35825e+01 lineto +7.428362e+01 3.303216e+01 lineto +closepath +gsave +6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor +fill +grestore +newpath +7.718322e+01 3.35825e+01 moveto +7.527408e+01 3.040684e+01 lineto +7.747542e+01 3.09796e+01 lineto +7.965971e+01 3.422685e+01 lineto +7.718322e+01 3.35825e+01 lineto +closepath +gsave +6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor +fill +grestore +newpath +7.965971e+01 3.422685e+01 moveto +7.747542e+01 3.09796e+01 lineto +7.924646e+01 3.162184e+01 lineto +8.165212e+01 3.494937e+01 lineto +7.965971e+01 3.422685e+01 lineto +closepath +gsave +6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor +fill +grestore +newpath +8.165212e+01 3.494937e+01 moveto +7.924646e+01 3.162184e+01 lineto +8.054359e+01 3.231774e+01 lineto +8.311138e+01 3.573225e+01 lineto +8.165212e+01 3.494937e+01 lineto +closepath +gsave +6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor +fill +grestore +newpath +8.311138e+01 3.573225e+01 moveto +8.054359e+01 3.231774e+01 lineto +8.133487e+01 3.305017e+01 lineto +8.400156e+01 3.655622e+01 lineto +8.311138e+01 3.573225e+01 lineto +closepath +gsave +6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor +fill +grestore +newpath +3.599844e+01 3.655622e+01 moveto +3.866513e+01 3.305017e+01 lineto +3.945641e+01 3.231774e+01 lineto +3.688862e+01 3.573225e+01 lineto +3.599844e+01 3.655622e+01 lineto +closepath +gsave +3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor +fill +grestore +newpath +3.688862e+01 3.573225e+01 moveto +3.945641e+01 3.231774e+01 lineto +4.075354e+01 3.162184e+01 lineto +3.834788e+01 3.494937e+01 lineto +3.688862e+01 3.573225e+01 lineto +closepath +gsave +4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor +fill +grestore +newpath +3.834788e+01 3.494937e+01 moveto +4.075354e+01 3.162184e+01 lineto +4.252458e+01 3.09796e+01 lineto +4.034029e+01 3.422685e+01 lineto +3.834788e+01 3.494937e+01 lineto +closepath +gsave +4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor +fill +grestore +newpath +4.034029e+01 3.422685e+01 moveto +4.252458e+01 3.09796e+01 lineto +4.472592e+01 3.040684e+01 lineto +4.281678e+01 3.35825e+01 lineto +4.034029e+01 3.422685e+01 lineto +closepath +gsave +4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor +fill +grestore +newpath +4.281678e+01 3.35825e+01 moveto +4.472592e+01 3.040684e+01 lineto +4.730336e+01 2.991765e+01 lineto +4.571638e+01 3.303216e+01 lineto +4.281678e+01 3.35825e+01 lineto +closepath +gsave +4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor +fill +grestore +newpath +4.571638e+01 3.303216e+01 moveto +4.730336e+01 2.991765e+01 lineto +5.019344e+01 2.952409e+01 lineto +4.896769e+01 3.258941e+01 lineto +4.571638e+01 3.303216e+01 lineto +closepath +gsave +5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor +fill +grestore +newpath +4.896769e+01 3.258941e+01 moveto +5.019344e+01 2.952409e+01 lineto +5.332498e+01 2.923584e+01 lineto +5.249066e+01 3.226513e+01 lineto +4.896769e+01 3.258941e+01 lineto +closepath +gsave +5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor +fill +grestore +newpath +5.249066e+01 3.226513e+01 moveto +5.332498e+01 2.923584e+01 lineto +5.662089e+01 2.906e+01 lineto +5.619853e+01 3.206731e+01 lineto +5.249066e+01 3.226513e+01 lineto +closepath +gsave +5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor +fill +grestore +newpath +5.619853e+01 3.206731e+01 moveto +5.662089e+01 2.906e+01 lineto +6.0e+01 2.90009e+01 lineto +6.0e+01 3.200082e+01 lineto +5.619853e+01 3.206731e+01 lineto +closepath +gsave +5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 3.500075e+01 moveto +6.0e+01 3.200082e+01 lineto +6.380147e+01 3.206731e+01 lineto +6.422384e+01 3.507462e+01 lineto +6.0e+01 3.500075e+01 lineto +closepath +gsave +6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor +fill +grestore +newpath +6.422384e+01 3.507462e+01 moveto +6.380147e+01 3.206731e+01 lineto +6.750934e+01 3.226513e+01 lineto +6.834367e+01 3.529442e+01 lineto +6.422384e+01 3.507462e+01 lineto +closepath +gsave +6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor +fill +grestore +newpath +6.834367e+01 3.529442e+01 moveto +6.750934e+01 3.226513e+01 lineto +7.103231e+01 3.258941e+01 lineto +7.225805e+01 3.565473e+01 lineto +6.834367e+01 3.529442e+01 lineto +closepath +gsave +6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor +fill +grestore +newpath +7.225805e+01 3.565473e+01 moveto +7.103231e+01 3.258941e+01 lineto +7.428362e+01 3.303216e+01 lineto +7.58706e+01 3.614668e+01 lineto +7.225805e+01 3.565473e+01 lineto +closepath +gsave +6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor +fill +grestore +newpath +7.58706e+01 3.614668e+01 moveto +7.428362e+01 3.303216e+01 lineto +7.718322e+01 3.35825e+01 lineto +7.909236e+01 3.675815e+01 lineto +7.58706e+01 3.614668e+01 lineto +closepath +gsave +6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor +fill +grestore +newpath +7.909236e+01 3.675815e+01 moveto +7.718322e+01 3.35825e+01 lineto +7.965971e+01 3.422685e+01 lineto +8.1844e+01 3.74741e+01 lineto +7.909236e+01 3.675815e+01 lineto +closepath +gsave +6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor +fill +grestore +newpath +8.1844e+01 3.74741e+01 moveto +7.965971e+01 3.422685e+01 lineto +8.165212e+01 3.494937e+01 lineto +8.405778e+01 3.827689e+01 lineto +8.1844e+01 3.74741e+01 lineto +closepath +gsave +6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor +fill +grestore +newpath +8.405778e+01 3.827689e+01 moveto +8.165212e+01 3.494937e+01 lineto +8.311138e+01 3.573225e+01 lineto +8.567917e+01 3.914675e+01 lineto +8.405778e+01 3.827689e+01 lineto +closepath +gsave +6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor +fill +grestore +newpath +8.567917e+01 3.914675e+01 moveto +8.311138e+01 3.573225e+01 lineto +8.400156e+01 3.655622e+01 lineto +8.666825e+01 4.006227e+01 lineto +8.567917e+01 3.914675e+01 lineto +closepath +gsave +6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor +fill +grestore +newpath +3.333175e+01 4.006227e+01 moveto +3.599844e+01 3.655622e+01 lineto +3.688862e+01 3.573225e+01 lineto +3.432083e+01 3.914675e+01 lineto +3.333175e+01 4.006227e+01 lineto +closepath +gsave +3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor +fill +grestore +newpath +3.432083e+01 3.914675e+01 moveto +3.688862e+01 3.573225e+01 lineto +3.834788e+01 3.494937e+01 lineto +3.594222e+01 3.827689e+01 lineto +3.432083e+01 3.914675e+01 lineto +closepath +gsave +4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor +fill +grestore +newpath +3.594222e+01 3.827689e+01 moveto +3.834788e+01 3.494937e+01 lineto +4.034029e+01 3.422685e+01 lineto +3.8156e+01 3.74741e+01 lineto +3.594222e+01 3.827689e+01 lineto +closepath +gsave +4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor +fill +grestore +newpath +3.8156e+01 3.74741e+01 moveto +4.034029e+01 3.422685e+01 lineto +4.281678e+01 3.35825e+01 lineto +4.090764e+01 3.675815e+01 lineto +3.8156e+01 3.74741e+01 lineto +closepath +gsave +4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor +fill +grestore +newpath +4.090764e+01 3.675815e+01 moveto +4.281678e+01 3.35825e+01 lineto +4.571638e+01 3.303216e+01 lineto +4.41294e+01 3.614668e+01 lineto +4.090764e+01 3.675815e+01 lineto +closepath +gsave +4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor +fill +grestore +newpath +4.41294e+01 3.614668e+01 moveto +4.571638e+01 3.303216e+01 lineto +4.896769e+01 3.258941e+01 lineto +4.774195e+01 3.565473e+01 lineto +4.41294e+01 3.614668e+01 lineto +closepath +gsave +5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor +fill +grestore +newpath +4.774195e+01 3.565473e+01 moveto +4.896769e+01 3.258941e+01 lineto +5.249066e+01 3.226513e+01 lineto +5.165633e+01 3.529442e+01 lineto +4.774195e+01 3.565473e+01 lineto +closepath +gsave +5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor +fill +grestore +newpath +5.165633e+01 3.529442e+01 moveto +5.249066e+01 3.226513e+01 lineto +5.619853e+01 3.206731e+01 lineto +5.577616e+01 3.507462e+01 lineto +5.165633e+01 3.529442e+01 lineto +closepath +gsave +5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor +fill +grestore +newpath +5.577616e+01 3.507462e+01 moveto +5.619853e+01 3.206731e+01 lineto +6.0e+01 3.200082e+01 lineto +6.0e+01 3.500075e+01 lineto +5.577616e+01 3.507462e+01 lineto +closepath +gsave +5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 3.800067e+01 moveto +6.0e+01 3.500075e+01 lineto +6.422384e+01 3.507462e+01 lineto +6.46462e+01 3.808193e+01 lineto +6.0e+01 3.800067e+01 lineto +closepath +gsave +6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor +fill +grestore +newpath +6.46462e+01 3.808193e+01 moveto +6.422384e+01 3.507462e+01 lineto +6.834367e+01 3.529442e+01 lineto +6.917799e+01 3.832371e+01 lineto +6.46462e+01 3.808193e+01 lineto +closepath +gsave +6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor +fill +grestore +newpath +6.917799e+01 3.832371e+01 moveto +6.834367e+01 3.529442e+01 lineto +7.225805e+01 3.565473e+01 lineto +7.348379e+01 3.872005e+01 lineto +6.917799e+01 3.832371e+01 lineto +closepath +gsave +6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor +fill +grestore +newpath +7.348379e+01 3.872005e+01 moveto +7.225805e+01 3.565473e+01 lineto +7.58706e+01 3.614668e+01 lineto +7.745758e+01 3.926119e+01 lineto +7.348379e+01 3.872005e+01 lineto +closepath +gsave +6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor +fill +grestore +newpath +7.745758e+01 3.926119e+01 moveto +7.58706e+01 3.614668e+01 lineto +7.909236e+01 3.675815e+01 lineto +8.10015e+01 3.993381e+01 lineto +7.745758e+01 3.926119e+01 lineto +closepath +gsave +6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor +fill +grestore +newpath +8.10015e+01 3.993381e+01 moveto +7.909236e+01 3.675815e+01 lineto +8.1844e+01 3.74741e+01 lineto +8.40283e+01 4.072135e+01 lineto +8.10015e+01 3.993381e+01 lineto +closepath +gsave +6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor +fill +grestore +newpath +8.40283e+01 4.072135e+01 moveto +8.1844e+01 3.74741e+01 lineto +8.405778e+01 3.827689e+01 lineto +8.646344e+01 4.160441e+01 lineto +8.40283e+01 4.072135e+01 lineto +closepath +gsave +6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor +fill +grestore +newpath +8.646344e+01 4.160441e+01 moveto +8.405778e+01 3.827689e+01 lineto +8.567917e+01 3.914675e+01 lineto +8.824696e+01 4.256126e+01 lineto +8.646344e+01 4.160441e+01 lineto +closepath +gsave +6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor +fill +grestore +newpath +8.824696e+01 4.256126e+01 moveto +8.567917e+01 3.914675e+01 lineto +8.666825e+01 4.006227e+01 lineto +8.933494e+01 4.356832e+01 lineto +8.824696e+01 4.256126e+01 lineto +closepath +gsave +6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor +fill +grestore +newpath +3.066506e+01 4.356832e+01 moveto +3.333175e+01 4.006227e+01 lineto +3.432083e+01 3.914675e+01 lineto +3.175304e+01 4.256126e+01 lineto +3.066506e+01 4.356832e+01 lineto +closepath +gsave +3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor +fill +grestore +newpath +3.175304e+01 4.256126e+01 moveto +3.432083e+01 3.914675e+01 lineto +3.594222e+01 3.827689e+01 lineto +3.353656e+01 4.160441e+01 lineto +3.175304e+01 4.256126e+01 lineto +closepath +gsave +4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor +fill +grestore +newpath +3.353656e+01 4.160441e+01 moveto +3.594222e+01 3.827689e+01 lineto +3.8156e+01 3.74741e+01 lineto +3.59717e+01 4.072135e+01 lineto +3.353656e+01 4.160441e+01 lineto +closepath +gsave +4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor +fill +grestore +newpath +3.59717e+01 4.072135e+01 moveto +3.8156e+01 3.74741e+01 lineto +4.090764e+01 3.675815e+01 lineto +3.89985e+01 3.993381e+01 lineto +3.59717e+01 4.072135e+01 lineto +closepath +gsave +4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor +fill +grestore +newpath +3.89985e+01 3.993381e+01 moveto +4.090764e+01 3.675815e+01 lineto +4.41294e+01 3.614668e+01 lineto +4.254242e+01 3.926119e+01 lineto +3.89985e+01 3.993381e+01 lineto +closepath +gsave +4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor +fill +grestore +newpath +4.254242e+01 3.926119e+01 moveto +4.41294e+01 3.614668e+01 lineto +4.774195e+01 3.565473e+01 lineto +4.651621e+01 3.872005e+01 lineto +4.254242e+01 3.926119e+01 lineto +closepath +gsave +5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor +fill +grestore +newpath +4.651621e+01 3.872005e+01 moveto +4.774195e+01 3.565473e+01 lineto +5.165633e+01 3.529442e+01 lineto +5.082201e+01 3.832371e+01 lineto +4.651621e+01 3.872005e+01 lineto +closepath +gsave +5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor +fill +grestore +newpath +5.082201e+01 3.832371e+01 moveto +5.165633e+01 3.529442e+01 lineto +5.577616e+01 3.507462e+01 lineto +5.53538e+01 3.808193e+01 lineto +5.082201e+01 3.832371e+01 lineto +closepath +gsave +5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor +fill +grestore +newpath +5.53538e+01 3.808193e+01 moveto +5.577616e+01 3.507462e+01 lineto +6.0e+01 3.500075e+01 lineto +6.0e+01 3.800067e+01 lineto +5.53538e+01 3.808193e+01 lineto +closepath +gsave +5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 4.10006e+01 moveto +6.0e+01 3.800067e+01 lineto +6.46462e+01 3.808193e+01 lineto +6.506856e+01 4.108925e+01 lineto +6.0e+01 4.10006e+01 lineto +closepath +gsave +6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor +fill +grestore +newpath +6.506856e+01 4.108925e+01 moveto +6.46462e+01 3.808193e+01 lineto +6.917799e+01 3.832371e+01 lineto +7.001232e+01 4.1353e+01 lineto +6.506856e+01 4.108925e+01 lineto +closepath +gsave +6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor +fill +grestore +newpath +7.001232e+01 4.1353e+01 moveto +6.917799e+01 3.832371e+01 lineto +7.348379e+01 3.872005e+01 lineto +7.470954e+01 4.178537e+01 lineto +7.001232e+01 4.1353e+01 lineto +closepath +gsave +6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor +fill +grestore +newpath +7.470954e+01 4.178537e+01 moveto +7.348379e+01 3.872005e+01 lineto +7.745758e+01 3.926119e+01 lineto +7.904456e+01 4.23757e+01 lineto +7.470954e+01 4.178537e+01 lineto +closepath +gsave +6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor +fill +grestore +newpath +7.904456e+01 4.23757e+01 moveto +7.745758e+01 3.926119e+01 lineto +8.10015e+01 3.993381e+01 lineto +8.291064e+01 4.310947e+01 lineto +7.904456e+01 4.23757e+01 lineto +closepath +gsave +6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor +fill +grestore +newpath +8.291064e+01 4.310947e+01 moveto +8.10015e+01 3.993381e+01 lineto +8.40283e+01 4.072135e+01 lineto +8.621259e+01 4.39686e+01 lineto +8.291064e+01 4.310947e+01 lineto +closepath +gsave +6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor +fill +grestore +newpath +8.621259e+01 4.39686e+01 moveto +8.40283e+01 4.072135e+01 lineto +8.646344e+01 4.160441e+01 lineto +8.886909e+01 4.493193e+01 lineto +8.621259e+01 4.39686e+01 lineto +closepath +gsave +6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor +fill +grestore +newpath +8.886909e+01 4.493193e+01 moveto +8.646344e+01 4.160441e+01 lineto +8.824696e+01 4.256126e+01 lineto +9.081474e+01 4.597576e+01 lineto +8.886909e+01 4.493193e+01 lineto +closepath +gsave +6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor +fill +grestore +newpath +9.081474e+01 4.597576e+01 moveto +8.824696e+01 4.256126e+01 lineto +8.933494e+01 4.356832e+01 lineto +9.200164e+01 4.707437e+01 lineto +9.081474e+01 4.597576e+01 lineto +closepath +gsave +6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor +fill +grestore +newpath +2.799836e+01 4.707437e+01 moveto +3.066506e+01 4.356832e+01 lineto +3.175304e+01 4.256126e+01 lineto +2.918526e+01 4.597576e+01 lineto +2.799836e+01 4.707437e+01 lineto +closepath +gsave +3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor +fill +grestore +newpath +2.918526e+01 4.597576e+01 moveto +3.175304e+01 4.256126e+01 lineto +3.353656e+01 4.160441e+01 lineto +3.113091e+01 4.493193e+01 lineto +2.918526e+01 4.597576e+01 lineto +closepath +gsave +4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor +fill +grestore +newpath +3.113091e+01 4.493193e+01 moveto +3.353656e+01 4.160441e+01 lineto +3.59717e+01 4.072135e+01 lineto +3.378741e+01 4.39686e+01 lineto +3.113091e+01 4.493193e+01 lineto +closepath +gsave +4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor +fill +grestore +newpath +3.378741e+01 4.39686e+01 moveto +3.59717e+01 4.072135e+01 lineto +3.89985e+01 3.993381e+01 lineto +3.708936e+01 4.310947e+01 lineto +3.378741e+01 4.39686e+01 lineto +closepath +gsave +4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor +fill +grestore +newpath +3.708936e+01 4.310947e+01 moveto +3.89985e+01 3.993381e+01 lineto +4.254242e+01 3.926119e+01 lineto +4.095544e+01 4.23757e+01 lineto +3.708936e+01 4.310947e+01 lineto +closepath +gsave +4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor +fill +grestore +newpath +4.095544e+01 4.23757e+01 moveto +4.254242e+01 3.926119e+01 lineto +4.651621e+01 3.872005e+01 lineto +4.529046e+01 4.178537e+01 lineto +4.095544e+01 4.23757e+01 lineto +closepath +gsave +5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor +fill +grestore +newpath +4.529046e+01 4.178537e+01 moveto +4.651621e+01 3.872005e+01 lineto +5.082201e+01 3.832371e+01 lineto +4.998768e+01 4.1353e+01 lineto +4.529046e+01 4.178537e+01 lineto +closepath +gsave +5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor +fill +grestore +newpath +4.998768e+01 4.1353e+01 moveto +5.082201e+01 3.832371e+01 lineto +5.53538e+01 3.808193e+01 lineto +5.493144e+01 4.108925e+01 lineto +4.998768e+01 4.1353e+01 lineto +closepath +gsave +5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor +fill +grestore +newpath +5.493144e+01 4.108925e+01 moveto +5.53538e+01 3.808193e+01 lineto +6.0e+01 3.800067e+01 lineto +6.0e+01 4.10006e+01 lineto +5.493144e+01 4.108925e+01 lineto +closepath +gsave +5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 4.400052e+01 moveto +6.0e+01 4.10006e+01 lineto +6.506856e+01 4.108925e+01 lineto +6.549092e+01 4.409656e+01 lineto +6.0e+01 4.400052e+01 lineto +closepath +gsave +6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor +fill +grestore +newpath +6.549092e+01 4.409656e+01 moveto +6.506856e+01 4.108925e+01 lineto +7.001232e+01 4.1353e+01 lineto +7.084664e+01 4.438229e+01 lineto +6.549092e+01 4.409656e+01 lineto +closepath +gsave +6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor +fill +grestore +newpath +7.084664e+01 4.438229e+01 moveto +7.001232e+01 4.1353e+01 lineto +7.470954e+01 4.178537e+01 lineto +7.593528e+01 4.485069e+01 lineto +7.084664e+01 4.438229e+01 lineto +closepath +gsave +6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor +fill +grestore +newpath +7.593528e+01 4.485069e+01 moveto +7.470954e+01 4.178537e+01 lineto +7.904456e+01 4.23757e+01 lineto +8.063154e+01 4.549021e+01 lineto +7.593528e+01 4.485069e+01 lineto +closepath +gsave +6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor +fill +grestore +newpath +8.063154e+01 4.549021e+01 moveto +7.904456e+01 4.23757e+01 lineto +8.291064e+01 4.310947e+01 lineto +8.481978e+01 4.628512e+01 lineto +8.063154e+01 4.549021e+01 lineto +closepath +gsave +6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor +fill +grestore +newpath +8.481978e+01 4.628512e+01 moveto +8.291064e+01 4.310947e+01 lineto +8.621259e+01 4.39686e+01 lineto +8.839688e+01 4.721584e+01 lineto +8.481978e+01 4.628512e+01 lineto +closepath +gsave +6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor +fill +grestore +newpath +8.839688e+01 4.721584e+01 moveto +8.621259e+01 4.39686e+01 lineto +8.886909e+01 4.493193e+01 lineto +9.127475e+01 4.825946e+01 lineto +8.839688e+01 4.721584e+01 lineto +closepath +gsave +6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor +fill +grestore +newpath +9.127475e+01 4.825946e+01 moveto +8.886909e+01 4.493193e+01 lineto +9.081474e+01 4.597576e+01 lineto +9.338253e+01 4.939026e+01 lineto +9.127475e+01 4.825946e+01 lineto +closepath +gsave +6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor +fill +grestore +newpath +9.338253e+01 4.939026e+01 moveto +9.081474e+01 4.597576e+01 lineto +9.200164e+01 4.707437e+01 lineto +9.466833e+01 5.058042e+01 lineto +9.338253e+01 4.939026e+01 lineto +closepath +gsave +6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor +fill +grestore +newpath +2.533167e+01 5.058042e+01 moveto +2.799836e+01 4.707437e+01 lineto +2.918526e+01 4.597576e+01 lineto +2.661747e+01 4.939026e+01 lineto +2.533167e+01 5.058042e+01 lineto +closepath +gsave +3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor +fill +grestore +newpath +2.661747e+01 4.939026e+01 moveto +2.918526e+01 4.597576e+01 lineto +3.113091e+01 4.493193e+01 lineto +2.872525e+01 4.825946e+01 lineto +2.661747e+01 4.939026e+01 lineto +closepath +gsave +4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor +fill +grestore +newpath +2.872525e+01 4.825946e+01 moveto +3.113091e+01 4.493193e+01 lineto +3.378741e+01 4.39686e+01 lineto +3.160312e+01 4.721584e+01 lineto +2.872525e+01 4.825946e+01 lineto +closepath +gsave +4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor +fill +grestore +newpath +3.160312e+01 4.721584e+01 moveto +3.378741e+01 4.39686e+01 lineto +3.708936e+01 4.310947e+01 lineto +3.518022e+01 4.628512e+01 lineto +3.160312e+01 4.721584e+01 lineto +closepath +gsave +4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor +fill +grestore +newpath +3.518022e+01 4.628512e+01 moveto +3.708936e+01 4.310947e+01 lineto +4.095544e+01 4.23757e+01 lineto +3.936846e+01 4.549021e+01 lineto +3.518022e+01 4.628512e+01 lineto +closepath +gsave +4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor +fill +grestore +newpath +3.936846e+01 4.549021e+01 moveto +4.095544e+01 4.23757e+01 lineto +4.529046e+01 4.178537e+01 lineto +4.406472e+01 4.485069e+01 lineto +3.936846e+01 4.549021e+01 lineto +closepath +gsave +5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor +fill +grestore +newpath +4.406472e+01 4.485069e+01 moveto +4.529046e+01 4.178537e+01 lineto +4.998768e+01 4.1353e+01 lineto +4.915336e+01 4.438229e+01 lineto +4.406472e+01 4.485069e+01 lineto +closepath +gsave +5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor +fill +grestore +newpath +4.915336e+01 4.438229e+01 moveto +4.998768e+01 4.1353e+01 lineto +5.493144e+01 4.108925e+01 lineto +5.450908e+01 4.409656e+01 lineto +4.915336e+01 4.438229e+01 lineto +closepath +gsave +5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor +fill +grestore +newpath +5.450908e+01 4.409656e+01 moveto +5.493144e+01 4.108925e+01 lineto +6.0e+01 4.10006e+01 lineto +6.0e+01 4.400052e+01 lineto +5.450908e+01 4.409656e+01 lineto +closepath +gsave +5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 4.700045e+01 moveto +6.0e+01 4.400052e+01 lineto +6.549092e+01 4.409656e+01 lineto +6.591329e+01 4.710387e+01 lineto +6.0e+01 4.700045e+01 lineto +closepath +gsave +6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor +fill +grestore +newpath +6.591329e+01 4.710387e+01 moveto +6.549092e+01 4.409656e+01 lineto +7.084664e+01 4.438229e+01 lineto +7.168097e+01 4.741158e+01 lineto +6.591329e+01 4.710387e+01 lineto +closepath +gsave +6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor +fill +grestore +newpath +7.168097e+01 4.741158e+01 moveto +7.084664e+01 4.438229e+01 lineto +7.593528e+01 4.485069e+01 lineto +7.716102e+01 4.791601e+01 lineto +7.168097e+01 4.741158e+01 lineto +closepath +gsave +6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor +fill +grestore +newpath +7.716102e+01 4.791601e+01 moveto +7.593528e+01 4.485069e+01 lineto +8.063154e+01 4.549021e+01 lineto +8.221852e+01 4.860472e+01 lineto +7.716102e+01 4.791601e+01 lineto +closepath +gsave +6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor +fill +grestore +newpath +8.221852e+01 4.860472e+01 moveto +8.063154e+01 4.549021e+01 lineto +8.481978e+01 4.628512e+01 lineto +8.672892e+01 4.946078e+01 lineto +8.221852e+01 4.860472e+01 lineto +closepath +gsave +6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor +fill +grestore +newpath +8.672892e+01 4.946078e+01 moveto +8.481978e+01 4.628512e+01 lineto +8.839688e+01 4.721584e+01 lineto +9.058117e+01 5.046309e+01 lineto +8.672892e+01 4.946078e+01 lineto +closepath +gsave +6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor +fill +grestore +newpath +9.058117e+01 5.046309e+01 moveto +8.839688e+01 4.721584e+01 lineto +9.127475e+01 4.825946e+01 lineto +9.368041e+01 5.158698e+01 lineto +9.058117e+01 5.046309e+01 lineto +closepath +gsave +6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor +fill +grestore +newpath +9.368041e+01 5.158698e+01 moveto +9.127475e+01 4.825946e+01 lineto +9.338253e+01 4.939026e+01 lineto +9.595032e+01 5.280477e+01 lineto +9.368041e+01 5.158698e+01 lineto +closepath +gsave +6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor +fill +grestore +newpath +9.595032e+01 5.280477e+01 moveto +9.338253e+01 4.939026e+01 lineto +9.466833e+01 5.058042e+01 lineto +9.733502e+01 5.408648e+01 lineto +9.595032e+01 5.280477e+01 lineto +closepath +gsave +6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor +fill +grestore +newpath +2.266498e+01 5.408648e+01 moveto +2.533167e+01 5.058042e+01 lineto +2.661747e+01 4.939026e+01 lineto +2.404968e+01 5.280477e+01 lineto +2.266498e+01 5.408648e+01 lineto +closepath +gsave +3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor +fill +grestore +newpath +2.404968e+01 5.280477e+01 moveto +2.661747e+01 4.939026e+01 lineto +2.872525e+01 4.825946e+01 lineto +2.631959e+01 5.158698e+01 lineto +2.404968e+01 5.280477e+01 lineto +closepath +gsave +4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor +fill +grestore +newpath +2.631959e+01 5.158698e+01 moveto +2.872525e+01 4.825946e+01 lineto +3.160312e+01 4.721584e+01 lineto +2.941883e+01 5.046309e+01 lineto +2.631959e+01 5.158698e+01 lineto +closepath +gsave +4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor +fill +grestore +newpath +2.941883e+01 5.046309e+01 moveto +3.160312e+01 4.721584e+01 lineto +3.518022e+01 4.628512e+01 lineto +3.327108e+01 4.946078e+01 lineto +2.941883e+01 5.046309e+01 lineto +closepath +gsave +4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor +fill +grestore +newpath +3.327108e+01 4.946078e+01 moveto +3.518022e+01 4.628512e+01 lineto +3.936846e+01 4.549021e+01 lineto +3.778148e+01 4.860472e+01 lineto +3.327108e+01 4.946078e+01 lineto +closepath +gsave +4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor +fill +grestore +newpath +3.778148e+01 4.860472e+01 moveto +3.936846e+01 4.549021e+01 lineto +4.406472e+01 4.485069e+01 lineto +4.283898e+01 4.791601e+01 lineto +3.778148e+01 4.860472e+01 lineto +closepath +gsave +5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor +fill +grestore +newpath +4.283898e+01 4.791601e+01 moveto +4.406472e+01 4.485069e+01 lineto +4.915336e+01 4.438229e+01 lineto +4.831903e+01 4.741158e+01 lineto +4.283898e+01 4.791601e+01 lineto +closepath +gsave +5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor +fill +grestore +newpath +4.831903e+01 4.741158e+01 moveto +4.915336e+01 4.438229e+01 lineto +5.450908e+01 4.409656e+01 lineto +5.408671e+01 4.710387e+01 lineto +4.831903e+01 4.741158e+01 lineto +closepath +gsave +5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor +fill +grestore +newpath +5.408671e+01 4.710387e+01 moveto +5.450908e+01 4.409656e+01 lineto +6.0e+01 4.400052e+01 lineto +6.0e+01 4.700045e+01 lineto +5.408671e+01 4.710387e+01 lineto +closepath +gsave +5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 5.000037e+01 moveto +6.0e+01 4.700045e+01 lineto +6.591329e+01 4.710387e+01 lineto +6.633565e+01 5.011118e+01 lineto +6.0e+01 5.000037e+01 lineto +closepath +gsave +6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor +fill +grestore +newpath +6.633565e+01 5.011118e+01 moveto +6.591329e+01 4.710387e+01 lineto +7.168097e+01 4.741158e+01 lineto +7.251529e+01 5.044087e+01 lineto +6.633565e+01 5.011118e+01 lineto +closepath +gsave +6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor +fill +grestore +newpath +7.251529e+01 5.044087e+01 moveto +7.168097e+01 4.741158e+01 lineto +7.716102e+01 4.791601e+01 lineto +7.838677e+01 5.098132e+01 lineto +7.251529e+01 5.044087e+01 lineto +closepath +gsave +6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor +fill +grestore +newpath +7.838677e+01 5.098132e+01 moveto +7.716102e+01 4.791601e+01 lineto +8.221852e+01 4.860472e+01 lineto +8.38055e+01 5.171924e+01 lineto +7.838677e+01 5.098132e+01 lineto +closepath +gsave +6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor +fill +grestore +newpath +8.38055e+01 5.171924e+01 moveto +8.221852e+01 4.860472e+01 lineto +8.672892e+01 4.946078e+01 lineto +8.863806e+01 5.263644e+01 lineto +8.38055e+01 5.171924e+01 lineto +closepath +gsave +6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor +fill +grestore +newpath +8.863806e+01 5.263644e+01 moveto +8.672892e+01 4.946078e+01 lineto +9.058117e+01 5.046309e+01 lineto +9.276546e+01 5.371034e+01 lineto +8.863806e+01 5.263644e+01 lineto +closepath +gsave +6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor +fill +grestore +newpath +9.276546e+01 5.371034e+01 moveto +9.058117e+01 5.046309e+01 lineto +9.368041e+01 5.158698e+01 lineto +9.608606e+01 5.49145e+01 lineto +9.276546e+01 5.371034e+01 lineto +closepath +gsave +6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor +fill +grestore +newpath +9.608606e+01 5.49145e+01 moveto +9.368041e+01 5.158698e+01 lineto +9.595032e+01 5.280477e+01 lineto +9.851811e+01 5.621927e+01 lineto +9.608606e+01 5.49145e+01 lineto +closepath +gsave +6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor +fill +grestore +newpath +9.851811e+01 5.621927e+01 moveto +9.595032e+01 5.280477e+01 lineto +9.733502e+01 5.408648e+01 lineto +1.000017e+02 5.759253e+01 lineto +9.851811e+01 5.621927e+01 lineto +closepath +gsave +6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor +fill +grestore +newpath +1.999829e+01 5.759253e+01 moveto +2.266498e+01 5.408648e+01 lineto +2.404968e+01 5.280477e+01 lineto +2.148189e+01 5.621927e+01 lineto +1.999829e+01 5.759253e+01 lineto +closepath +gsave +3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor +fill +grestore +newpath +2.148189e+01 5.621927e+01 moveto +2.404968e+01 5.280477e+01 lineto +2.631959e+01 5.158698e+01 lineto +2.391394e+01 5.49145e+01 lineto +2.148189e+01 5.621927e+01 lineto +closepath +gsave +4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor +fill +grestore +newpath +2.391394e+01 5.49145e+01 moveto +2.631959e+01 5.158698e+01 lineto +2.941883e+01 5.046309e+01 lineto +2.723454e+01 5.371034e+01 lineto +2.391394e+01 5.49145e+01 lineto +closepath +gsave +4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor +fill +grestore +newpath +2.723454e+01 5.371034e+01 moveto +2.941883e+01 5.046309e+01 lineto +3.327108e+01 4.946078e+01 lineto +3.136194e+01 5.263644e+01 lineto +2.723454e+01 5.371034e+01 lineto +closepath +gsave +4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor +fill +grestore +newpath +3.136194e+01 5.263644e+01 moveto +3.327108e+01 4.946078e+01 lineto +3.778148e+01 4.860472e+01 lineto +3.61945e+01 5.171924e+01 lineto +3.136194e+01 5.263644e+01 lineto +closepath +gsave +4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor +fill +grestore +newpath +3.61945e+01 5.171924e+01 moveto +3.778148e+01 4.860472e+01 lineto +4.283898e+01 4.791601e+01 lineto +4.161323e+01 5.098132e+01 lineto +3.61945e+01 5.171924e+01 lineto +closepath +gsave +5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor +fill +grestore +newpath +4.161323e+01 5.098132e+01 moveto +4.283898e+01 4.791601e+01 lineto +4.831903e+01 4.741158e+01 lineto +4.748471e+01 5.044087e+01 lineto +4.161323e+01 5.098132e+01 lineto +closepath +gsave +5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor +fill +grestore +newpath +4.748471e+01 5.044087e+01 moveto +4.831903e+01 4.741158e+01 lineto +5.408671e+01 4.710387e+01 lineto +5.366435e+01 5.011118e+01 lineto +4.748471e+01 5.044087e+01 lineto +closepath +gsave +5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor +fill +grestore +newpath +5.366435e+01 5.011118e+01 moveto +5.408671e+01 4.710387e+01 lineto +6.0e+01 4.700045e+01 lineto +6.0e+01 5.000037e+01 lineto +5.366435e+01 5.011118e+01 lineto +closepath +gsave +5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 5.30003e+01 moveto +6.0e+01 5.000037e+01 lineto +6.633565e+01 5.011118e+01 lineto +6.675801e+01 5.311849e+01 lineto +6.0e+01 5.30003e+01 lineto +closepath +gsave +6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor +fill +grestore +newpath +6.675801e+01 5.311849e+01 moveto +6.633565e+01 5.011118e+01 lineto +7.251529e+01 5.044087e+01 lineto +7.334962e+01 5.347016e+01 lineto +6.675801e+01 5.311849e+01 lineto +closepath +gsave +6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor +fill +grestore +newpath +7.334962e+01 5.347016e+01 moveto +7.251529e+01 5.044087e+01 lineto +7.838677e+01 5.098132e+01 lineto +7.961251e+01 5.404664e+01 lineto +7.334962e+01 5.347016e+01 lineto +closepath +gsave +6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor +fill +grestore +newpath +7.961251e+01 5.404664e+01 moveto +7.838677e+01 5.098132e+01 lineto +8.38055e+01 5.171924e+01 lineto +8.539248e+01 5.483375e+01 lineto +7.961251e+01 5.404664e+01 lineto +closepath +gsave +6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor +fill +grestore +newpath +8.539248e+01 5.483375e+01 moveto +8.38055e+01 5.171924e+01 lineto +8.863806e+01 5.263644e+01 lineto +9.05472e+01 5.581209e+01 lineto +8.539248e+01 5.483375e+01 lineto +closepath +gsave +6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor +fill +grestore +newpath +9.05472e+01 5.581209e+01 moveto +8.863806e+01 5.263644e+01 lineto +9.276546e+01 5.371034e+01 lineto +9.494975e+01 5.695759e+01 lineto +9.05472e+01 5.581209e+01 lineto +closepath +gsave +6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor +fill +grestore +newpath +9.494975e+01 5.695759e+01 moveto +9.276546e+01 5.371034e+01 lineto +9.608606e+01 5.49145e+01 lineto +9.849172e+01 5.824202e+01 lineto +9.494975e+01 5.695759e+01 lineto +closepath +gsave +6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor +fill +grestore +newpath +9.849172e+01 5.824202e+01 moveto +9.608606e+01 5.49145e+01 lineto +9.851811e+01 5.621927e+01 lineto +1.010859e+02 5.963378e+01 lineto +9.849172e+01 5.824202e+01 lineto +closepath +gsave +6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor +fill +grestore +newpath +1.010859e+02 5.963378e+01 moveto +9.851811e+01 5.621927e+01 lineto +1.000017e+02 5.759253e+01 lineto +1.026684e+02 6.109858e+01 lineto +1.010859e+02 5.963378e+01 lineto +closepath +gsave +6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor +fill +grestore +newpath +1.73316e+01 6.109858e+01 moveto +1.999829e+01 5.759253e+01 lineto +2.148189e+01 5.621927e+01 lineto +1.89141e+01 5.963378e+01 lineto +1.73316e+01 6.109858e+01 lineto +closepath +gsave +3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor +fill +grestore +newpath +1.89141e+01 5.963378e+01 moveto +2.148189e+01 5.621927e+01 lineto +2.391394e+01 5.49145e+01 lineto +2.150828e+01 5.824202e+01 lineto +1.89141e+01 5.963378e+01 lineto +closepath +gsave +4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor +fill +grestore +newpath +2.150828e+01 5.824202e+01 moveto +2.391394e+01 5.49145e+01 lineto +2.723454e+01 5.371034e+01 lineto +2.505025e+01 5.695759e+01 lineto +2.150828e+01 5.824202e+01 lineto +closepath +gsave +4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor +fill +grestore +newpath +2.505025e+01 5.695759e+01 moveto +2.723454e+01 5.371034e+01 lineto +3.136194e+01 5.263644e+01 lineto +2.94528e+01 5.581209e+01 lineto +2.505025e+01 5.695759e+01 lineto +closepath +gsave +4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor +fill +grestore +newpath +2.94528e+01 5.581209e+01 moveto +3.136194e+01 5.263644e+01 lineto +3.61945e+01 5.171924e+01 lineto +3.460752e+01 5.483375e+01 lineto +2.94528e+01 5.581209e+01 lineto +closepath +gsave +4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor +fill +grestore +newpath +3.460752e+01 5.483375e+01 moveto +3.61945e+01 5.171924e+01 lineto +4.161323e+01 5.098132e+01 lineto +4.038749e+01 5.404664e+01 lineto +3.460752e+01 5.483375e+01 lineto +closepath +gsave +5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor +fill +grestore +newpath +4.038749e+01 5.404664e+01 moveto +4.161323e+01 5.098132e+01 lineto +4.748471e+01 5.044087e+01 lineto +4.665038e+01 5.347016e+01 lineto +4.038749e+01 5.404664e+01 lineto +closepath +gsave +5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor +fill +grestore +newpath +4.665038e+01 5.347016e+01 moveto +4.748471e+01 5.044087e+01 lineto +5.366435e+01 5.011118e+01 lineto +5.324199e+01 5.311849e+01 lineto +4.665038e+01 5.347016e+01 lineto +closepath +gsave +5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor +fill +grestore +newpath +5.324199e+01 5.311849e+01 moveto +5.366435e+01 5.011118e+01 lineto +6.0e+01 5.000037e+01 lineto +6.0e+01 5.30003e+01 lineto +5.324199e+01 5.311849e+01 lineto +closepath +gsave +5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 5.600022e+01 moveto +6.0e+01 5.30003e+01 lineto +6.675801e+01 5.311849e+01 lineto +6.718037e+01 5.61258e+01 lineto +6.0e+01 5.600022e+01 lineto +closepath +gsave +6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor +fill +grestore +newpath +6.718037e+01 5.61258e+01 moveto +6.675801e+01 5.311849e+01 lineto +7.334962e+01 5.347016e+01 lineto +7.418394e+01 5.649945e+01 lineto +6.718037e+01 5.61258e+01 lineto +closepath +gsave +6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor +fill +grestore +newpath +7.418394e+01 5.649945e+01 moveto +7.334962e+01 5.347016e+01 lineto +7.961251e+01 5.404664e+01 lineto +8.083826e+01 5.711196e+01 lineto +7.418394e+01 5.649945e+01 lineto +closepath +gsave +6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor +fill +grestore +newpath +8.083826e+01 5.711196e+01 moveto +7.961251e+01 5.404664e+01 lineto +8.539248e+01 5.483375e+01 lineto +8.697946e+01 5.794826e+01 lineto +8.083826e+01 5.711196e+01 lineto +closepath +gsave +6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor +fill +grestore +newpath +8.697946e+01 5.794826e+01 moveto +8.539248e+01 5.483375e+01 lineto +9.05472e+01 5.581209e+01 lineto +9.245634e+01 5.898775e+01 lineto +8.697946e+01 5.794826e+01 lineto +closepath +gsave +6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor +fill +grestore +newpath +9.245634e+01 5.898775e+01 moveto +9.05472e+01 5.581209e+01 lineto +9.494975e+01 5.695759e+01 lineto +9.713404e+01 6.020483e+01 lineto +9.245634e+01 5.898775e+01 lineto +closepath +gsave +6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor +fill +grestore +newpath +9.713404e+01 6.020483e+01 moveto +9.494975e+01 5.695759e+01 lineto +9.849172e+01 5.824202e+01 lineto +1.008974e+02 6.156955e+01 lineto +9.713404e+01 6.020483e+01 lineto +closepath +gsave +6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor +fill +grestore +newpath +1.008974e+02 6.156955e+01 moveto +9.849172e+01 5.824202e+01 lineto +1.010859e+02 5.963378e+01 lineto +1.036537e+02 6.304828e+01 lineto +1.008974e+02 6.156955e+01 lineto +closepath +gsave +6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor +fill +grestore +newpath +1.036537e+02 6.304828e+01 moveto +1.010859e+02 5.963378e+01 lineto +1.026684e+02 6.109858e+01 lineto +1.053351e+02 6.460463e+01 lineto +1.036537e+02 6.304828e+01 lineto +closepath +gsave +6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor +fill +grestore +newpath +1.466491e+01 6.460463e+01 moveto +1.73316e+01 6.109858e+01 lineto +1.89141e+01 5.963378e+01 lineto +1.634631e+01 6.304828e+01 lineto +1.466491e+01 6.460463e+01 lineto +closepath +gsave +3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor +fill +grestore +newpath +1.634631e+01 6.304828e+01 moveto +1.89141e+01 5.963378e+01 lineto +2.150828e+01 5.824202e+01 lineto +1.910262e+01 6.156955e+01 lineto +1.634631e+01 6.304828e+01 lineto +closepath +gsave +4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor +fill +grestore +newpath +1.910262e+01 6.156955e+01 moveto +2.150828e+01 5.824202e+01 lineto +2.505025e+01 5.695759e+01 lineto +2.286596e+01 6.020483e+01 lineto +1.910262e+01 6.156955e+01 lineto +closepath +gsave +4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor +fill +grestore +newpath +2.286596e+01 6.020483e+01 moveto +2.505025e+01 5.695759e+01 lineto +2.94528e+01 5.581209e+01 lineto +2.754366e+01 5.898775e+01 lineto +2.286596e+01 6.020483e+01 lineto +closepath +gsave +4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor +fill +grestore +newpath +2.754366e+01 5.898775e+01 moveto +2.94528e+01 5.581209e+01 lineto +3.460752e+01 5.483375e+01 lineto +3.302054e+01 5.794826e+01 lineto +2.754366e+01 5.898775e+01 lineto +closepath +gsave +4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor +fill +grestore +newpath +3.302054e+01 5.794826e+01 moveto +3.460752e+01 5.483375e+01 lineto +4.038749e+01 5.404664e+01 lineto +3.916174e+01 5.711196e+01 lineto +3.302054e+01 5.794826e+01 lineto +closepath +gsave +5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor +fill +grestore +newpath +3.916174e+01 5.711196e+01 moveto +4.038749e+01 5.404664e+01 lineto +4.665038e+01 5.347016e+01 lineto +4.581606e+01 5.649945e+01 lineto +3.916174e+01 5.711196e+01 lineto +closepath +gsave +5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor +fill +grestore +newpath +4.581606e+01 5.649945e+01 moveto +4.665038e+01 5.347016e+01 lineto +5.324199e+01 5.311849e+01 lineto +5.281963e+01 5.61258e+01 lineto +4.581606e+01 5.649945e+01 lineto +closepath +gsave +5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor +fill +grestore +newpath +5.281963e+01 5.61258e+01 moveto +5.324199e+01 5.311849e+01 lineto +6.0e+01 5.30003e+01 lineto +6.0e+01 5.600022e+01 lineto +5.281963e+01 5.61258e+01 lineto +closepath +gsave +5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 5.900015e+01 moveto +6.0e+01 5.600022e+01 lineto +6.718037e+01 5.61258e+01 lineto +6.760274e+01 5.913312e+01 lineto +6.0e+01 5.900015e+01 lineto +closepath +gsave +6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor +fill +grestore +newpath +6.760274e+01 5.913312e+01 moveto +6.718037e+01 5.61258e+01 lineto +7.418394e+01 5.649945e+01 lineto +7.501827e+01 5.952874e+01 lineto +6.760274e+01 5.913312e+01 lineto +closepath +gsave +6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor +fill +grestore +newpath +7.501827e+01 5.952874e+01 moveto +7.418394e+01 5.649945e+01 lineto +8.083826e+01 5.711196e+01 lineto +8.2064e+01 6.017728e+01 lineto +7.501827e+01 5.952874e+01 lineto +closepath +gsave +6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor +fill +grestore +newpath +8.2064e+01 6.017728e+01 moveto +8.083826e+01 5.711196e+01 lineto +8.697946e+01 5.794826e+01 lineto +8.856644e+01 6.106277e+01 lineto +8.2064e+01 6.017728e+01 lineto +closepath +gsave +6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor +fill +grestore +newpath +8.856644e+01 6.106277e+01 moveto +8.697946e+01 5.794826e+01 lineto +9.245634e+01 5.898775e+01 lineto +9.436549e+01 6.216341e+01 lineto +8.856644e+01 6.106277e+01 lineto +closepath +gsave +6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor +fill +grestore +newpath +9.436549e+01 6.216341e+01 moveto +9.245634e+01 5.898775e+01 lineto +9.713404e+01 6.020483e+01 lineto +9.931834e+01 6.345208e+01 lineto +9.436549e+01 6.216341e+01 lineto +closepath +gsave +6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor +fill +grestore +newpath +9.931834e+01 6.345208e+01 moveto +9.713404e+01 6.020483e+01 lineto +1.008974e+02 6.156955e+01 lineto +1.03303e+02 6.489707e+01 lineto +9.931834e+01 6.345208e+01 lineto +closepath +gsave +6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor +fill +grestore +newpath +1.03303e+02 6.489707e+01 moveto +1.008974e+02 6.156955e+01 lineto +1.036537e+02 6.304828e+01 lineto +1.062215e+02 6.646279e+01 lineto +1.03303e+02 6.489707e+01 lineto +closepath +gsave +6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor +fill +grestore +newpath +1.062215e+02 6.646279e+01 moveto +1.036537e+02 6.304828e+01 lineto +1.053351e+02 6.460463e+01 lineto +1.080018e+02 6.811068e+01 lineto +1.062215e+02 6.646279e+01 lineto +closepath +gsave +6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor +fill +grestore +newpath +1.199821e+01 6.811068e+01 moveto +1.466491e+01 6.460463e+01 lineto +1.634631e+01 6.304828e+01 lineto +1.377852e+01 6.646279e+01 lineto +1.199821e+01 6.811068e+01 lineto +closepath +gsave +3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor +fill +grestore +newpath +1.377852e+01 6.646279e+01 moveto +1.634631e+01 6.304828e+01 lineto +1.910262e+01 6.156955e+01 lineto +1.669696e+01 6.489707e+01 lineto +1.377852e+01 6.646279e+01 lineto +closepath +gsave +4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor +fill +grestore +newpath +1.669696e+01 6.489707e+01 moveto +1.910262e+01 6.156955e+01 lineto +2.286596e+01 6.020483e+01 lineto +2.068166e+01 6.345208e+01 lineto +1.669696e+01 6.489707e+01 lineto +closepath +gsave +4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor +fill +grestore +newpath +2.068166e+01 6.345208e+01 moveto +2.286596e+01 6.020483e+01 lineto +2.754366e+01 5.898775e+01 lineto +2.563451e+01 6.216341e+01 lineto +2.068166e+01 6.345208e+01 lineto +closepath +gsave +4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor +fill +grestore +newpath +2.563451e+01 6.216341e+01 moveto +2.754366e+01 5.898775e+01 lineto +3.302054e+01 5.794826e+01 lineto +3.143356e+01 6.106277e+01 lineto +2.563451e+01 6.216341e+01 lineto +closepath +gsave +4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor +fill +grestore +newpath +3.143356e+01 6.106277e+01 moveto +3.302054e+01 5.794826e+01 lineto +3.916174e+01 5.711196e+01 lineto +3.7936e+01 6.017728e+01 lineto +3.143356e+01 6.106277e+01 lineto +closepath +gsave +5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor +fill +grestore +newpath +3.7936e+01 6.017728e+01 moveto +3.916174e+01 5.711196e+01 lineto +4.581606e+01 5.649945e+01 lineto +4.498173e+01 5.952874e+01 lineto +3.7936e+01 6.017728e+01 lineto +closepath +gsave +5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor +fill +grestore +newpath +4.498173e+01 5.952874e+01 moveto +4.581606e+01 5.649945e+01 lineto +5.281963e+01 5.61258e+01 lineto +5.239726e+01 5.913312e+01 lineto +4.498173e+01 5.952874e+01 lineto +closepath +gsave +5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor +fill +grestore +newpath +5.239726e+01 5.913312e+01 moveto +5.281963e+01 5.61258e+01 lineto +6.0e+01 5.600022e+01 lineto +6.0e+01 5.900015e+01 lineto +5.239726e+01 5.913312e+01 lineto +closepath +gsave +5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 6.200007e+01 moveto +6.0e+01 5.900015e+01 lineto +6.760274e+01 5.913312e+01 lineto +6.80251e+01 6.214043e+01 lineto +6.0e+01 6.200007e+01 lineto +closepath +gsave +6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor +fill +grestore +newpath +6.80251e+01 6.214043e+01 moveto +6.760274e+01 5.913312e+01 lineto +7.501827e+01 5.952874e+01 lineto +7.585259e+01 6.255803e+01 lineto +6.80251e+01 6.214043e+01 lineto +closepath +gsave +6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor +fill +grestore +newpath +7.585259e+01 6.255803e+01 moveto +7.501827e+01 5.952874e+01 lineto +8.2064e+01 6.017728e+01 lineto +8.328974e+01 6.32426e+01 lineto +7.585259e+01 6.255803e+01 lineto +closepath +gsave +6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor +fill +grestore +newpath +8.328974e+01 6.32426e+01 moveto +8.2064e+01 6.017728e+01 lineto +8.856644e+01 6.106277e+01 lineto +9.015342e+01 6.417728e+01 lineto +8.328974e+01 6.32426e+01 lineto +closepath +gsave +6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor +fill +grestore +newpath +9.015342e+01 6.417728e+01 moveto +8.856644e+01 6.106277e+01 lineto +9.436549e+01 6.216341e+01 lineto +9.627463e+01 6.533906e+01 lineto +9.015342e+01 6.417728e+01 lineto +closepath +gsave +6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor +fill +grestore +newpath +9.627463e+01 6.533906e+01 moveto +9.436549e+01 6.216341e+01 lineto +9.931834e+01 6.345208e+01 lineto +1.015026e+02 6.669933e+01 lineto +9.627463e+01 6.533906e+01 lineto +closepath +gsave +6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor +fill +grestore +newpath +1.015026e+02 6.669933e+01 moveto +9.931834e+01 6.345208e+01 lineto +1.03303e+02 6.489707e+01 lineto +1.057087e+02 6.822459e+01 lineto +1.015026e+02 6.669933e+01 lineto +closepath +gsave +6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor +fill +grestore +newpath +1.057087e+02 6.822459e+01 moveto +1.03303e+02 6.489707e+01 lineto +1.062215e+02 6.646279e+01 lineto +1.087893e+02 6.987729e+01 lineto +1.057087e+02 6.822459e+01 lineto +closepath +gsave +6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor +fill +grestore +newpath +1.087893e+02 6.987729e+01 moveto +1.062215e+02 6.646279e+01 lineto +1.080018e+02 6.811068e+01 lineto +1.106685e+02 7.161673e+01 lineto +1.087893e+02 6.987729e+01 lineto +closepath +gsave +6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor +fill +grestore +newpath +9.331521e+00 7.161673e+01 moveto +1.199821e+01 6.811068e+01 lineto +1.377852e+01 6.646279e+01 lineto +1.121074e+01 6.987729e+01 lineto +9.331521e+00 7.161673e+01 lineto +closepath +gsave +3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor +fill +grestore +newpath +1.121074e+01 6.987729e+01 moveto +1.377852e+01 6.646279e+01 lineto +1.669696e+01 6.489707e+01 lineto +1.429131e+01 6.822459e+01 lineto +1.121074e+01 6.987729e+01 lineto +closepath +gsave +4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor +fill +grestore +newpath +1.429131e+01 6.822459e+01 moveto +1.669696e+01 6.489707e+01 lineto +2.068166e+01 6.345208e+01 lineto +1.849737e+01 6.669933e+01 lineto +1.429131e+01 6.822459e+01 lineto +closepath +gsave +4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor +fill +grestore +newpath +1.849737e+01 6.669933e+01 moveto +2.068166e+01 6.345208e+01 lineto +2.563451e+01 6.216341e+01 lineto +2.372537e+01 6.533906e+01 lineto +1.849737e+01 6.669933e+01 lineto +closepath +gsave +4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor +fill +grestore +newpath +2.372537e+01 6.533906e+01 moveto +2.563451e+01 6.216341e+01 lineto +3.143356e+01 6.106277e+01 lineto +2.984658e+01 6.417728e+01 lineto +2.372537e+01 6.533906e+01 lineto +closepath +gsave +4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor +fill +grestore +newpath +2.984658e+01 6.417728e+01 moveto +3.143356e+01 6.106277e+01 lineto +3.7936e+01 6.017728e+01 lineto +3.671026e+01 6.32426e+01 lineto +2.984658e+01 6.417728e+01 lineto +closepath +gsave +5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor +fill +grestore +newpath +3.671026e+01 6.32426e+01 moveto +3.7936e+01 6.017728e+01 lineto +4.498173e+01 5.952874e+01 lineto +4.414741e+01 6.255803e+01 lineto +3.671026e+01 6.32426e+01 lineto +closepath +gsave +5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor +fill +grestore +newpath +4.414741e+01 6.255803e+01 moveto +4.498173e+01 5.952874e+01 lineto +5.239726e+01 5.913312e+01 lineto +5.19749e+01 6.214043e+01 lineto +4.414741e+01 6.255803e+01 lineto +closepath +gsave +5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor +fill +grestore +newpath +5.19749e+01 6.214043e+01 moveto +5.239726e+01 5.913312e+01 lineto +6.0e+01 5.900015e+01 lineto +6.0e+01 6.200007e+01 lineto +5.19749e+01 6.214043e+01 lineto +closepath +gsave +5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 6.5e+01 moveto +6.0e+01 6.200007e+01 lineto +6.80251e+01 6.214043e+01 lineto +6.844746e+01 6.514774e+01 lineto +6.0e+01 6.5e+01 lineto +closepath +gsave +6.17619e-01 6.17619e-01 6.17619e-01 setrgbcolor +fill +grestore +newpath +6.844746e+01 6.514774e+01 moveto +6.80251e+01 6.214043e+01 lineto +7.585259e+01 6.255803e+01 lineto +7.668692e+01 6.558732e+01 lineto +6.844746e+01 6.514774e+01 lineto +closepath +gsave +6.378263e-01 6.378263e-01 6.378263e-01 setrgbcolor +fill +grestore +newpath +7.668692e+01 6.558732e+01 moveto +7.585259e+01 6.255803e+01 lineto +8.328974e+01 6.32426e+01 lineto +8.451549e+01 6.630792e+01 lineto +7.668692e+01 6.558732e+01 lineto +closepath +gsave +6.545281e-01 6.545281e-01 6.545281e-01 setrgbcolor +fill +grestore +newpath +8.451549e+01 6.630792e+01 moveto +8.328974e+01 6.32426e+01 lineto +9.015342e+01 6.417728e+01 lineto +9.17404e+01 6.72918e+01 lineto +8.451549e+01 6.630792e+01 lineto +closepath +gsave +6.675047e-01 6.675047e-01 6.675047e-01 setrgbcolor +fill +grestore +newpath +9.17404e+01 6.72918e+01 moveto +9.015342e+01 6.417728e+01 lineto +9.627463e+01 6.533906e+01 lineto +9.818377e+01 6.851472e+01 lineto +9.17404e+01 6.72918e+01 lineto +closepath +gsave +6.766492e-01 6.766492e-01 6.766492e-01 setrgbcolor +fill +grestore +newpath +9.818377e+01 6.851472e+01 moveto +9.627463e+01 6.533906e+01 lineto +1.015026e+02 6.669933e+01 lineto +1.036869e+02 6.994658e+01 lineto +9.818377e+01 6.851472e+01 lineto +closepath +gsave +6.819256e-01 6.819256e-01 6.819256e-01 setrgbcolor +fill +grestore +newpath +1.036869e+02 6.994658e+01 moveto +1.015026e+02 6.669933e+01 lineto +1.057087e+02 6.822459e+01 lineto +1.081144e+02 7.155211e+01 lineto +1.036869e+02 6.994658e+01 lineto +closepath +gsave +6.833299e-01 6.833299e-01 6.833299e-01 setrgbcolor +fill +grestore +newpath +1.081144e+02 7.155211e+01 moveto +1.057087e+02 6.822459e+01 lineto +1.087893e+02 6.987729e+01 lineto +1.113571e+02 7.32918e+01 lineto +1.081144e+02 7.155211e+01 lineto +closepath +gsave +6.808629e-01 6.808629e-01 6.808629e-01 setrgbcolor +fill +grestore +newpath +1.113571e+02 7.32918e+01 moveto +1.087893e+02 6.987729e+01 lineto +1.106685e+02 7.161673e+01 lineto +1.133352e+02 7.512279e+01 lineto +1.113571e+02 7.32918e+01 lineto +closepath +gsave +6.745235e-01 6.745235e-01 6.745235e-01 setrgbcolor +fill +grestore +newpath +6.66483e+00 7.512279e+01 moveto +9.331521e+00 7.161673e+01 lineto +1.121074e+01 6.987729e+01 lineto +8.642948e+00 7.32918e+01 lineto +6.66483e+00 7.512279e+01 lineto +closepath +gsave +3.81033e-01 3.81033e-01 3.81033e-01 setrgbcolor +fill +grestore +newpath +8.642948e+00 7.32918e+01 moveto +1.121074e+01 6.987729e+01 lineto +1.429131e+01 6.822459e+01 lineto +1.188565e+01 7.155211e+01 lineto +8.642948e+00 7.32918e+01 lineto +closepath +gsave +4.025679e-01 4.025679e-01 4.025679e-01 setrgbcolor +fill +grestore +newpath +1.188565e+01 7.155211e+01 moveto +1.429131e+01 6.822459e+01 lineto +1.849737e+01 6.669933e+01 lineto +1.631308e+01 6.994658e+01 lineto +1.188565e+01 7.155211e+01 lineto +closepath +gsave +4.270646e-01 4.270646e-01 4.270646e-01 setrgbcolor +fill +grestore +newpath +1.631308e+01 6.994658e+01 moveto +1.849737e+01 6.669933e+01 lineto +2.372537e+01 6.533906e+01 lineto +2.181623e+01 6.851472e+01 lineto +1.631308e+01 6.994658e+01 lineto +closepath +gsave +4.539087e-01 4.539087e-01 4.539087e-01 setrgbcolor +fill +grestore +newpath +2.181623e+01 6.851472e+01 moveto +2.372537e+01 6.533906e+01 lineto +2.984658e+01 6.417728e+01 lineto +2.82596e+01 6.72918e+01 lineto +2.181623e+01 6.851472e+01 lineto +closepath +gsave +4.823408e-01 4.823408e-01 4.823408e-01 setrgbcolor +fill +grestore +newpath +2.82596e+01 6.72918e+01 moveto +2.984658e+01 6.417728e+01 lineto +3.671026e+01 6.32426e+01 lineto +3.548451e+01 6.630792e+01 lineto +2.82596e+01 6.72918e+01 lineto +closepath +gsave +5.114948e-01 5.114948e-01 5.114948e-01 setrgbcolor +fill +grestore +newpath +3.548451e+01 6.630792e+01 moveto +3.671026e+01 6.32426e+01 lineto +4.414741e+01 6.255803e+01 lineto +4.331308e+01 6.558732e+01 lineto +3.548451e+01 6.630792e+01 lineto +closepath +gsave +5.404551e-01 5.404551e-01 5.404551e-01 setrgbcolor +fill +grestore +newpath +4.331308e+01 6.558732e+01 moveto +4.414741e+01 6.255803e+01 lineto +5.19749e+01 6.214043e+01 lineto +5.155254e+01 6.514774e+01 lineto +4.331308e+01 6.558732e+01 lineto +closepath +gsave +5.683217e-01 5.683217e-01 5.683217e-01 setrgbcolor +fill +grestore +newpath +5.155254e+01 6.514774e+01 moveto +5.19749e+01 6.214043e+01 lineto +6.0e+01 6.200007e+01 lineto +6.0e+01 6.5e+01 lineto +5.155254e+01 6.514774e+01 lineto +closepath +gsave +5.942735e-01 5.942735e-01 5.942735e-01 setrgbcolor +fill +grestore +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +1.1346e+02 7.7e+01 lineto +gsave +4.0e-01 4.0e-01 4.0e-01 setrgbcolor +stroke +grestore +gsave +newpath +6.0e+01 8.001425e+00 moveto +6.0e+01 5.0015e+00 lineto +6.000021e+01 5.001504e+00 lineto +6.042257e+01 8.008816e+00 lineto +6.0e+01 8.001425e+00 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.042257e+01 8.008816e+00 moveto +6.000021e+01 5.001504e+00 lineto +6.000042e+01 5.001515e+00 lineto +6.083474e+01 8.030805e+00 lineto +6.042257e+01 8.008816e+00 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.083474e+01 8.030805e+00 moveto +6.000042e+01 5.001515e+00 lineto +6.000061e+01 5.001533e+00 lineto +6.122636e+01 8.066852e+00 lineto +6.083474e+01 8.030805e+00 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.122636e+01 8.066852e+00 moveto +6.000061e+01 5.001533e+00 lineto +6.000079e+01 5.001557e+00 lineto +6.158777e+01 8.116069e+00 lineto +6.122636e+01 8.066852e+00 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.158777e+01 8.116069e+00 moveto +6.000079e+01 5.001557e+00 lineto +6.000095e+01 5.001588e+00 lineto +6.19101e+01 8.177244e+00 lineto +6.158777e+01 8.116069e+00 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.19101e+01 8.177244e+00 moveto +6.000095e+01 5.001588e+00 lineto +6.000109e+01 5.001624e+00 lineto +6.218538e+01 8.248871e+00 lineto +6.19101e+01 8.177244e+00 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.218538e+01 8.248871e+00 moveto +6.000109e+01 5.001624e+00 lineto +6.00012e+01 5.001664e+00 lineto +6.240686e+01 8.329186e+00 lineto +6.218538e+01 8.248871e+00 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.240686e+01 8.329186e+00 moveto +6.00012e+01 5.001664e+00 lineto +6.000128e+01 5.001707e+00 lineto +6.256907e+01 8.416212e+00 lineto +6.240686e+01 8.329186e+00 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.256907e+01 8.416212e+00 moveto +6.000128e+01 5.001707e+00 lineto +6.000133e+01 5.001753e+00 lineto +6.266803e+01 8.507805e+00 lineto +6.256907e+01 8.416212e+00 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.733197e+01 8.507805e+00 moveto +5.999867e+01 5.001753e+00 lineto +5.999872e+01 5.001707e+00 lineto +5.743093e+01 8.416212e+00 lineto +5.733197e+01 8.507805e+00 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.743093e+01 8.416212e+00 moveto +5.999872e+01 5.001707e+00 lineto +5.99988e+01 5.001664e+00 lineto +5.759314e+01 8.329186e+00 lineto +5.743093e+01 8.416212e+00 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.759314e+01 8.329186e+00 moveto +5.99988e+01 5.001664e+00 lineto +5.999891e+01 5.001624e+00 lineto +5.781462e+01 8.248871e+00 lineto +5.759314e+01 8.329186e+00 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.781462e+01 8.248871e+00 moveto +5.999891e+01 5.001624e+00 lineto +5.999905e+01 5.001588e+00 lineto +5.80899e+01 8.177244e+00 lineto +5.781462e+01 8.248871e+00 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.80899e+01 8.177244e+00 moveto +5.999905e+01 5.001588e+00 lineto +5.999921e+01 5.001557e+00 lineto +5.841223e+01 8.116069e+00 lineto +5.80899e+01 8.177244e+00 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.841223e+01 8.116069e+00 moveto +5.999921e+01 5.001557e+00 lineto +5.999939e+01 5.001533e+00 lineto +5.877364e+01 8.066852e+00 lineto +5.841223e+01 8.116069e+00 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.877364e+01 8.066852e+00 moveto +5.999939e+01 5.001533e+00 lineto +5.999958e+01 5.001515e+00 lineto +5.916526e+01 8.030805e+00 lineto +5.877364e+01 8.066852e+00 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.916526e+01 8.030805e+00 moveto +5.999958e+01 5.001515e+00 lineto +5.999979e+01 5.001504e+00 lineto +5.957743e+01 8.008816e+00 lineto +5.916526e+01 8.030805e+00 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.957743e+01 8.008816e+00 moveto +5.999979e+01 5.001504e+00 lineto +6.0e+01 5.0015e+00 lineto +6.0e+01 8.001425e+00 lineto +5.957743e+01 8.008816e+00 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.0e+01 1.100135e+01 moveto +6.0e+01 8.001425e+00 lineto +6.042257e+01 8.008816e+00 lineto +6.084494e+01 1.101613e+01 lineto +6.0e+01 1.100135e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.084494e+01 1.101613e+01 moveto +6.042257e+01 8.008816e+00 lineto +6.083474e+01 8.030805e+00 lineto +6.166907e+01 1.10601e+01 lineto +6.084494e+01 1.101613e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.166907e+01 1.10601e+01 moveto +6.083474e+01 8.030805e+00 lineto +6.122636e+01 8.066852e+00 lineto +6.24521e+01 1.113217e+01 lineto +6.166907e+01 1.10601e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.24521e+01 1.113217e+01 moveto +6.122636e+01 8.066852e+00 lineto +6.158777e+01 8.116069e+00 lineto +6.317475e+01 1.123058e+01 lineto +6.24521e+01 1.113217e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.317475e+01 1.123058e+01 moveto +6.158777e+01 8.116069e+00 lineto +6.19101e+01 8.177244e+00 lineto +6.381924e+01 1.13529e+01 lineto +6.317475e+01 1.123058e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.381924e+01 1.13529e+01 moveto +6.19101e+01 8.177244e+00 lineto +6.218538e+01 8.248871e+00 lineto +6.436967e+01 1.149612e+01 lineto +6.381924e+01 1.13529e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.436967e+01 1.149612e+01 moveto +6.218538e+01 8.248871e+00 lineto +6.240686e+01 8.329186e+00 lineto +6.481252e+01 1.165671e+01 lineto +6.436967e+01 1.149612e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.481252e+01 1.165671e+01 moveto +6.240686e+01 8.329186e+00 lineto +6.256907e+01 8.416212e+00 lineto +6.513686e+01 1.183072e+01 lineto +6.481252e+01 1.165671e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.513686e+01 1.183072e+01 moveto +6.256907e+01 8.416212e+00 lineto +6.266803e+01 8.507805e+00 lineto +6.533472e+01 1.201386e+01 lineto +6.513686e+01 1.183072e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.466528e+01 1.201386e+01 moveto +5.733197e+01 8.507805e+00 lineto +5.743093e+01 8.416212e+00 lineto +5.486314e+01 1.183072e+01 lineto +5.466528e+01 1.201386e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.486314e+01 1.183072e+01 moveto +5.743093e+01 8.416212e+00 lineto +5.759314e+01 8.329186e+00 lineto +5.518748e+01 1.165671e+01 lineto +5.486314e+01 1.183072e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.518748e+01 1.165671e+01 moveto +5.759314e+01 8.329186e+00 lineto +5.781462e+01 8.248871e+00 lineto +5.563033e+01 1.149612e+01 lineto +5.518748e+01 1.165671e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.563033e+01 1.149612e+01 moveto +5.781462e+01 8.248871e+00 lineto +5.80899e+01 8.177244e+00 lineto +5.618076e+01 1.13529e+01 lineto +5.563033e+01 1.149612e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.618076e+01 1.13529e+01 moveto +5.80899e+01 8.177244e+00 lineto +5.841223e+01 8.116069e+00 lineto +5.682525e+01 1.123058e+01 lineto +5.618076e+01 1.13529e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.682525e+01 1.123058e+01 moveto +5.841223e+01 8.116069e+00 lineto +5.877364e+01 8.066852e+00 lineto +5.75479e+01 1.113217e+01 lineto +5.682525e+01 1.123058e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.75479e+01 1.113217e+01 moveto +5.877364e+01 8.066852e+00 lineto +5.916526e+01 8.030805e+00 lineto +5.833093e+01 1.10601e+01 lineto +5.75479e+01 1.113217e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.833093e+01 1.10601e+01 moveto +5.916526e+01 8.030805e+00 lineto +5.957743e+01 8.008816e+00 lineto +5.915506e+01 1.101613e+01 lineto +5.833093e+01 1.10601e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.915506e+01 1.101613e+01 moveto +5.957743e+01 8.008816e+00 lineto +6.0e+01 8.001425e+00 lineto +6.0e+01 1.100135e+01 lineto +5.915506e+01 1.101613e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.0e+01 1.400127e+01 moveto +6.0e+01 1.100135e+01 lineto +6.084494e+01 1.101613e+01 lineto +6.12673e+01 1.402344e+01 lineto +6.0e+01 1.400127e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.12673e+01 1.402344e+01 moveto +6.084494e+01 1.101613e+01 lineto +6.166907e+01 1.10601e+01 lineto +6.250339e+01 1.408939e+01 lineto +6.12673e+01 1.402344e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.250339e+01 1.408939e+01 moveto +6.166907e+01 1.10601e+01 lineto +6.24521e+01 1.113217e+01 lineto +6.367784e+01 1.419749e+01 lineto +6.250339e+01 1.408939e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.367784e+01 1.419749e+01 moveto +6.24521e+01 1.113217e+01 lineto +6.317475e+01 1.123058e+01 lineto +6.476174e+01 1.434509e+01 lineto +6.367784e+01 1.419749e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.476174e+01 1.434509e+01 moveto +6.317475e+01 1.123058e+01 lineto +6.381924e+01 1.13529e+01 lineto +6.572838e+01 1.452856e+01 lineto +6.476174e+01 1.434509e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.572838e+01 1.452856e+01 moveto +6.381924e+01 1.13529e+01 lineto +6.436967e+01 1.149612e+01 lineto +6.655397e+01 1.474337e+01 lineto +6.572838e+01 1.452856e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.655397e+01 1.474337e+01 moveto +6.436967e+01 1.149612e+01 lineto +6.481252e+01 1.165671e+01 lineto +6.721818e+01 1.498423e+01 lineto +6.655397e+01 1.474337e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.721818e+01 1.498423e+01 moveto +6.481252e+01 1.165671e+01 lineto +6.513686e+01 1.183072e+01 lineto +6.770465e+01 1.524522e+01 lineto +6.721818e+01 1.498423e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.770465e+01 1.524522e+01 moveto +6.513686e+01 1.183072e+01 lineto +6.533472e+01 1.201386e+01 lineto +6.800141e+01 1.551991e+01 lineto +6.770465e+01 1.524522e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.199859e+01 1.551991e+01 moveto +5.466528e+01 1.201386e+01 lineto +5.486314e+01 1.183072e+01 lineto +5.229535e+01 1.524522e+01 lineto +5.199859e+01 1.551991e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.229535e+01 1.524522e+01 moveto +5.486314e+01 1.183072e+01 lineto +5.518748e+01 1.165671e+01 lineto +5.278182e+01 1.498423e+01 lineto +5.229535e+01 1.524522e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.278182e+01 1.498423e+01 moveto +5.518748e+01 1.165671e+01 lineto +5.563033e+01 1.149612e+01 lineto +5.344603e+01 1.474337e+01 lineto +5.278182e+01 1.498423e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.344603e+01 1.474337e+01 moveto +5.563033e+01 1.149612e+01 lineto +5.618076e+01 1.13529e+01 lineto +5.427162e+01 1.452856e+01 lineto +5.344603e+01 1.474337e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.427162e+01 1.452856e+01 moveto +5.618076e+01 1.13529e+01 lineto +5.682525e+01 1.123058e+01 lineto +5.523826e+01 1.434509e+01 lineto +5.427162e+01 1.452856e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.523826e+01 1.434509e+01 moveto +5.682525e+01 1.123058e+01 lineto +5.75479e+01 1.113217e+01 lineto +5.632216e+01 1.419749e+01 lineto +5.523826e+01 1.434509e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.632216e+01 1.419749e+01 moveto +5.75479e+01 1.113217e+01 lineto +5.833093e+01 1.10601e+01 lineto +5.749661e+01 1.408939e+01 lineto +5.632216e+01 1.419749e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.749661e+01 1.408939e+01 moveto +5.833093e+01 1.10601e+01 lineto +5.915506e+01 1.101613e+01 lineto +5.87327e+01 1.402344e+01 lineto +5.749661e+01 1.408939e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.87327e+01 1.402344e+01 moveto +5.915506e+01 1.101613e+01 lineto +6.0e+01 1.100135e+01 lineto +6.0e+01 1.400127e+01 lineto +5.87327e+01 1.402344e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.0e+01 1.70012e+01 moveto +6.0e+01 1.400127e+01 lineto +6.12673e+01 1.402344e+01 lineto +6.168966e+01 1.703075e+01 lineto +6.0e+01 1.70012e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.168966e+01 1.703075e+01 moveto +6.12673e+01 1.402344e+01 lineto +6.250339e+01 1.408939e+01 lineto +6.333772e+01 1.711868e+01 lineto +6.168966e+01 1.703075e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.333772e+01 1.711868e+01 moveto +6.250339e+01 1.408939e+01 lineto +6.367784e+01 1.419749e+01 lineto +6.490359e+01 1.726281e+01 lineto +6.333772e+01 1.711868e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.490359e+01 1.726281e+01 moveto +6.367784e+01 1.419749e+01 lineto +6.476174e+01 1.434509e+01 lineto +6.634872e+01 1.745961e+01 lineto +6.490359e+01 1.726281e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.634872e+01 1.745961e+01 moveto +6.476174e+01 1.434509e+01 lineto +6.572838e+01 1.452856e+01 lineto +6.763752e+01 1.770421e+01 lineto +6.634872e+01 1.745961e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.763752e+01 1.770421e+01 moveto +6.572838e+01 1.452856e+01 lineto +6.655397e+01 1.474337e+01 lineto +6.873826e+01 1.799061e+01 lineto +6.763752e+01 1.770421e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.873826e+01 1.799061e+01 moveto +6.655397e+01 1.474337e+01 lineto +6.721818e+01 1.498423e+01 lineto +6.962383e+01 1.831175e+01 lineto +6.873826e+01 1.799061e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.962383e+01 1.831175e+01 moveto +6.721818e+01 1.498423e+01 lineto +6.770465e+01 1.524522e+01 lineto +7.027244e+01 1.865973e+01 lineto +6.962383e+01 1.831175e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.027244e+01 1.865973e+01 moveto +6.770465e+01 1.524522e+01 lineto +6.800141e+01 1.551991e+01 lineto +7.06681e+01 1.902596e+01 lineto +7.027244e+01 1.865973e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.93319e+01 1.902596e+01 moveto +5.199859e+01 1.551991e+01 lineto +5.229535e+01 1.524522e+01 lineto +4.972756e+01 1.865973e+01 lineto +4.93319e+01 1.902596e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.972756e+01 1.865973e+01 moveto +5.229535e+01 1.524522e+01 lineto +5.278182e+01 1.498423e+01 lineto +5.037617e+01 1.831175e+01 lineto +4.972756e+01 1.865973e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.037617e+01 1.831175e+01 moveto +5.278182e+01 1.498423e+01 lineto +5.344603e+01 1.474337e+01 lineto +5.126174e+01 1.799061e+01 lineto +5.037617e+01 1.831175e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.126174e+01 1.799061e+01 moveto +5.344603e+01 1.474337e+01 lineto +5.427162e+01 1.452856e+01 lineto +5.236248e+01 1.770421e+01 lineto +5.126174e+01 1.799061e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.236248e+01 1.770421e+01 moveto +5.427162e+01 1.452856e+01 lineto +5.523826e+01 1.434509e+01 lineto +5.365128e+01 1.745961e+01 lineto +5.236248e+01 1.770421e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.365128e+01 1.745961e+01 moveto +5.523826e+01 1.434509e+01 lineto +5.632216e+01 1.419749e+01 lineto +5.509641e+01 1.726281e+01 lineto +5.365128e+01 1.745961e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.509641e+01 1.726281e+01 moveto +5.632216e+01 1.419749e+01 lineto +5.749661e+01 1.408939e+01 lineto +5.666228e+01 1.711868e+01 lineto +5.509641e+01 1.726281e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.666228e+01 1.711868e+01 moveto +5.749661e+01 1.408939e+01 lineto +5.87327e+01 1.402344e+01 lineto +5.831034e+01 1.703075e+01 lineto +5.666228e+01 1.711868e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.831034e+01 1.703075e+01 moveto +5.87327e+01 1.402344e+01 lineto +6.0e+01 1.400127e+01 lineto +6.0e+01 1.70012e+01 lineto +5.831034e+01 1.703075e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.0e+01 2.000112e+01 moveto +6.0e+01 1.70012e+01 lineto +6.168966e+01 1.703075e+01 lineto +6.211202e+01 2.003806e+01 lineto +6.0e+01 2.000112e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.211202e+01 2.003806e+01 moveto +6.168966e+01 1.703075e+01 lineto +6.333772e+01 1.711868e+01 lineto +6.417204e+01 2.014797e+01 lineto +6.211202e+01 2.003806e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.417204e+01 2.014797e+01 moveto +6.333772e+01 1.711868e+01 lineto +6.490359e+01 1.726281e+01 lineto +6.612933e+01 2.032813e+01 lineto +6.417204e+01 2.014797e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.612933e+01 2.032813e+01 moveto +6.490359e+01 1.726281e+01 lineto +6.634872e+01 1.745961e+01 lineto +6.79357e+01 2.057412e+01 lineto +6.612933e+01 2.032813e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.79357e+01 2.057412e+01 moveto +6.634872e+01 1.745961e+01 lineto +6.763752e+01 1.770421e+01 lineto +6.954666e+01 2.087987e+01 lineto +6.79357e+01 2.057412e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.954666e+01 2.087987e+01 moveto +6.763752e+01 1.770421e+01 lineto +6.873826e+01 1.799061e+01 lineto +7.092255e+01 2.123786e+01 lineto +6.954666e+01 2.087987e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.092255e+01 2.123786e+01 moveto +6.873826e+01 1.799061e+01 lineto +6.962383e+01 1.831175e+01 lineto +7.202949e+01 2.163928e+01 lineto +7.092255e+01 2.123786e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.202949e+01 2.163928e+01 moveto +6.962383e+01 1.831175e+01 lineto +7.027244e+01 1.865973e+01 lineto +7.284023e+01 2.207423e+01 lineto +7.202949e+01 2.163928e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.284023e+01 2.207423e+01 moveto +7.027244e+01 1.865973e+01 lineto +7.06681e+01 1.902596e+01 lineto +7.333479e+01 2.253201e+01 lineto +7.284023e+01 2.207423e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.666521e+01 2.253201e+01 moveto +4.93319e+01 1.902596e+01 lineto +4.972756e+01 1.865973e+01 lineto +4.715977e+01 2.207423e+01 lineto +4.666521e+01 2.253201e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.715977e+01 2.207423e+01 moveto +4.972756e+01 1.865973e+01 lineto +5.037617e+01 1.831175e+01 lineto +4.797051e+01 2.163928e+01 lineto +4.715977e+01 2.207423e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.797051e+01 2.163928e+01 moveto +5.037617e+01 1.831175e+01 lineto +5.126174e+01 1.799061e+01 lineto +4.907745e+01 2.123786e+01 lineto +4.797051e+01 2.163928e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.907745e+01 2.123786e+01 moveto +5.126174e+01 1.799061e+01 lineto +5.236248e+01 1.770421e+01 lineto +5.045334e+01 2.087987e+01 lineto +4.907745e+01 2.123786e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.045334e+01 2.087987e+01 moveto +5.236248e+01 1.770421e+01 lineto +5.365128e+01 1.745961e+01 lineto +5.20643e+01 2.057412e+01 lineto +5.045334e+01 2.087987e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.20643e+01 2.057412e+01 moveto +5.365128e+01 1.745961e+01 lineto +5.509641e+01 1.726281e+01 lineto +5.387067e+01 2.032813e+01 lineto +5.20643e+01 2.057412e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.387067e+01 2.032813e+01 moveto +5.509641e+01 1.726281e+01 lineto +5.666228e+01 1.711868e+01 lineto +5.582796e+01 2.014797e+01 lineto +5.387067e+01 2.032813e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.582796e+01 2.014797e+01 moveto +5.666228e+01 1.711868e+01 lineto +5.831034e+01 1.703075e+01 lineto +5.788798e+01 2.003806e+01 lineto +5.582796e+01 2.014797e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.788798e+01 2.003806e+01 moveto +5.831034e+01 1.703075e+01 lineto +6.0e+01 1.70012e+01 lineto +6.0e+01 2.000112e+01 lineto +5.788798e+01 2.003806e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.0e+01 2.300105e+01 moveto +6.0e+01 2.000112e+01 lineto +6.211202e+01 2.003806e+01 lineto +6.253439e+01 2.304537e+01 lineto +6.0e+01 2.300105e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.253439e+01 2.304537e+01 moveto +6.211202e+01 2.003806e+01 lineto +6.417204e+01 2.014797e+01 lineto +6.500637e+01 2.317726e+01 lineto +6.253439e+01 2.304537e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.500637e+01 2.317726e+01 moveto +6.417204e+01 2.014797e+01 lineto +6.612933e+01 2.032813e+01 lineto +6.735508e+01 2.339345e+01 lineto +6.500637e+01 2.317726e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.735508e+01 2.339345e+01 moveto +6.612933e+01 2.032813e+01 lineto +6.79357e+01 2.057412e+01 lineto +6.952268e+01 2.368863e+01 lineto +6.735508e+01 2.339345e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.952268e+01 2.368863e+01 moveto +6.79357e+01 2.057412e+01 lineto +6.954666e+01 2.087987e+01 lineto +7.14558e+01 2.405553e+01 lineto +6.952268e+01 2.368863e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.14558e+01 2.405553e+01 moveto +6.954666e+01 2.087987e+01 lineto +7.092255e+01 2.123786e+01 lineto +7.310684e+01 2.448511e+01 lineto +7.14558e+01 2.405553e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.310684e+01 2.448511e+01 moveto +7.092255e+01 2.123786e+01 lineto +7.202949e+01 2.163928e+01 lineto +7.443515e+01 2.49668e+01 lineto +7.310684e+01 2.448511e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.443515e+01 2.49668e+01 moveto +7.202949e+01 2.163928e+01 lineto +7.284023e+01 2.207423e+01 lineto +7.540801e+01 2.548873e+01 lineto +7.443515e+01 2.49668e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.540801e+01 2.548873e+01 moveto +7.284023e+01 2.207423e+01 lineto +7.333479e+01 2.253201e+01 lineto +7.600148e+01 2.603806e+01 lineto +7.540801e+01 2.548873e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.399852e+01 2.603806e+01 moveto +4.666521e+01 2.253201e+01 lineto +4.715977e+01 2.207423e+01 lineto +4.459199e+01 2.548873e+01 lineto +4.399852e+01 2.603806e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.459199e+01 2.548873e+01 moveto +4.715977e+01 2.207423e+01 lineto +4.797051e+01 2.163928e+01 lineto +4.556485e+01 2.49668e+01 lineto +4.459199e+01 2.548873e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.556485e+01 2.49668e+01 moveto +4.797051e+01 2.163928e+01 lineto +4.907745e+01 2.123786e+01 lineto +4.689316e+01 2.448511e+01 lineto +4.556485e+01 2.49668e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.689316e+01 2.448511e+01 moveto +4.907745e+01 2.123786e+01 lineto +5.045334e+01 2.087987e+01 lineto +4.85442e+01 2.405553e+01 lineto +4.689316e+01 2.448511e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.85442e+01 2.405553e+01 moveto +5.045334e+01 2.087987e+01 lineto +5.20643e+01 2.057412e+01 lineto +5.047732e+01 2.368863e+01 lineto +4.85442e+01 2.405553e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.047732e+01 2.368863e+01 moveto +5.20643e+01 2.057412e+01 lineto +5.387067e+01 2.032813e+01 lineto +5.264492e+01 2.339345e+01 lineto +5.047732e+01 2.368863e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.264492e+01 2.339345e+01 moveto +5.387067e+01 2.032813e+01 lineto +5.582796e+01 2.014797e+01 lineto +5.499363e+01 2.317726e+01 lineto +5.264492e+01 2.339345e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.499363e+01 2.317726e+01 moveto +5.582796e+01 2.014797e+01 lineto +5.788798e+01 2.003806e+01 lineto +5.746561e+01 2.304537e+01 lineto +5.499363e+01 2.317726e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.746561e+01 2.304537e+01 moveto +5.788798e+01 2.003806e+01 lineto +6.0e+01 2.000112e+01 lineto +6.0e+01 2.300105e+01 lineto +5.746561e+01 2.304537e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.0e+01 2.600097e+01 moveto +6.0e+01 2.300105e+01 lineto +6.253439e+01 2.304537e+01 lineto +6.295675e+01 2.605269e+01 lineto +6.0e+01 2.600097e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.295675e+01 2.605269e+01 moveto +6.253439e+01 2.304537e+01 lineto +6.500637e+01 2.317726e+01 lineto +6.584069e+01 2.620655e+01 lineto +6.295675e+01 2.605269e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.584069e+01 2.620655e+01 moveto +6.500637e+01 2.317726e+01 lineto +6.735508e+01 2.339345e+01 lineto +6.858082e+01 2.645877e+01 lineto +6.584069e+01 2.620655e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.858082e+01 2.645877e+01 moveto +6.735508e+01 2.339345e+01 lineto +6.952268e+01 2.368863e+01 lineto +7.110966e+01 2.680314e+01 lineto +6.858082e+01 2.645877e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.110966e+01 2.680314e+01 moveto +6.952268e+01 2.368863e+01 lineto +7.14558e+01 2.405553e+01 lineto +7.336494e+01 2.723118e+01 lineto +7.110966e+01 2.680314e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.336494e+01 2.723118e+01 moveto +7.14558e+01 2.405553e+01 lineto +7.310684e+01 2.448511e+01 lineto +7.529113e+01 2.773236e+01 lineto +7.336494e+01 2.723118e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.529113e+01 2.773236e+01 moveto +7.310684e+01 2.448511e+01 lineto +7.443515e+01 2.49668e+01 lineto +7.684081e+01 2.829432e+01 lineto +7.529113e+01 2.773236e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.684081e+01 2.829432e+01 moveto +7.443515e+01 2.49668e+01 lineto +7.540801e+01 2.548873e+01 lineto +7.79758e+01 2.890324e+01 lineto +7.684081e+01 2.829432e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.79758e+01 2.890324e+01 moveto +7.540801e+01 2.548873e+01 lineto +7.600148e+01 2.603806e+01 lineto +7.866818e+01 2.954411e+01 lineto +7.79758e+01 2.890324e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.133182e+01 2.954411e+01 moveto +4.399852e+01 2.603806e+01 lineto +4.459199e+01 2.548873e+01 lineto +4.20242e+01 2.890324e+01 lineto +4.133182e+01 2.954411e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.20242e+01 2.890324e+01 moveto +4.459199e+01 2.548873e+01 lineto +4.556485e+01 2.49668e+01 lineto +4.315919e+01 2.829432e+01 lineto +4.20242e+01 2.890324e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.315919e+01 2.829432e+01 moveto +4.556485e+01 2.49668e+01 lineto +4.689316e+01 2.448511e+01 lineto +4.470887e+01 2.773236e+01 lineto +4.315919e+01 2.829432e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.470887e+01 2.773236e+01 moveto +4.689316e+01 2.448511e+01 lineto +4.85442e+01 2.405553e+01 lineto +4.663506e+01 2.723118e+01 lineto +4.470887e+01 2.773236e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.663506e+01 2.723118e+01 moveto +4.85442e+01 2.405553e+01 lineto +5.047732e+01 2.368863e+01 lineto +4.889034e+01 2.680314e+01 lineto +4.663506e+01 2.723118e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.889034e+01 2.680314e+01 moveto +5.047732e+01 2.368863e+01 lineto +5.264492e+01 2.339345e+01 lineto +5.141918e+01 2.645877e+01 lineto +4.889034e+01 2.680314e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.141918e+01 2.645877e+01 moveto +5.264492e+01 2.339345e+01 lineto +5.499363e+01 2.317726e+01 lineto +5.415931e+01 2.620655e+01 lineto +5.141918e+01 2.645877e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.415931e+01 2.620655e+01 moveto +5.499363e+01 2.317726e+01 lineto +5.746561e+01 2.304537e+01 lineto +5.704325e+01 2.605269e+01 lineto +5.415931e+01 2.620655e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.704325e+01 2.605269e+01 moveto +5.746561e+01 2.304537e+01 lineto +6.0e+01 2.300105e+01 lineto +6.0e+01 2.600097e+01 lineto +5.704325e+01 2.605269e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.0e+01 2.90009e+01 moveto +6.0e+01 2.600097e+01 lineto +6.295675e+01 2.605269e+01 lineto +6.337911e+01 2.906e+01 lineto +6.0e+01 2.90009e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.337911e+01 2.906e+01 moveto +6.295675e+01 2.605269e+01 lineto +6.584069e+01 2.620655e+01 lineto +6.667502e+01 2.923584e+01 lineto +6.337911e+01 2.906e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.667502e+01 2.923584e+01 moveto +6.584069e+01 2.620655e+01 lineto +6.858082e+01 2.645877e+01 lineto +6.980656e+01 2.952409e+01 lineto +6.667502e+01 2.923584e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.980656e+01 2.952409e+01 moveto +6.858082e+01 2.645877e+01 lineto +7.110966e+01 2.680314e+01 lineto +7.269664e+01 2.991765e+01 lineto +6.980656e+01 2.952409e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.269664e+01 2.991765e+01 moveto +7.110966e+01 2.680314e+01 lineto +7.336494e+01 2.723118e+01 lineto +7.527408e+01 3.040684e+01 lineto +7.269664e+01 2.991765e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.527408e+01 3.040684e+01 moveto +7.336494e+01 2.723118e+01 lineto +7.529113e+01 2.773236e+01 lineto +7.747542e+01 3.09796e+01 lineto +7.527408e+01 3.040684e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.747542e+01 3.09796e+01 moveto +7.529113e+01 2.773236e+01 lineto +7.684081e+01 2.829432e+01 lineto +7.924646e+01 3.162184e+01 lineto +7.747542e+01 3.09796e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.924646e+01 3.162184e+01 moveto +7.684081e+01 2.829432e+01 lineto +7.79758e+01 2.890324e+01 lineto +8.054359e+01 3.231774e+01 lineto +7.924646e+01 3.162184e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +8.054359e+01 3.231774e+01 moveto +7.79758e+01 2.890324e+01 lineto +7.866818e+01 2.954411e+01 lineto +8.133487e+01 3.305017e+01 lineto +8.054359e+01 3.231774e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +3.866513e+01 3.305017e+01 moveto +4.133182e+01 2.954411e+01 lineto +4.20242e+01 2.890324e+01 lineto +3.945641e+01 3.231774e+01 lineto +3.866513e+01 3.305017e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +3.945641e+01 3.231774e+01 moveto +4.20242e+01 2.890324e+01 lineto +4.315919e+01 2.829432e+01 lineto +4.075354e+01 3.162184e+01 lineto +3.945641e+01 3.231774e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.075354e+01 3.162184e+01 moveto +4.315919e+01 2.829432e+01 lineto +4.470887e+01 2.773236e+01 lineto +4.252458e+01 3.09796e+01 lineto +4.075354e+01 3.162184e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.252458e+01 3.09796e+01 moveto +4.470887e+01 2.773236e+01 lineto +4.663506e+01 2.723118e+01 lineto +4.472592e+01 3.040684e+01 lineto +4.252458e+01 3.09796e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.472592e+01 3.040684e+01 moveto +4.663506e+01 2.723118e+01 lineto +4.889034e+01 2.680314e+01 lineto +4.730336e+01 2.991765e+01 lineto +4.472592e+01 3.040684e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.730336e+01 2.991765e+01 moveto +4.889034e+01 2.680314e+01 lineto +5.141918e+01 2.645877e+01 lineto +5.019344e+01 2.952409e+01 lineto +4.730336e+01 2.991765e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.019344e+01 2.952409e+01 moveto +5.141918e+01 2.645877e+01 lineto +5.415931e+01 2.620655e+01 lineto +5.332498e+01 2.923584e+01 lineto +5.019344e+01 2.952409e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.332498e+01 2.923584e+01 moveto +5.415931e+01 2.620655e+01 lineto +5.704325e+01 2.605269e+01 lineto +5.662089e+01 2.906e+01 lineto +5.332498e+01 2.923584e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.662089e+01 2.906e+01 moveto +5.704325e+01 2.605269e+01 lineto +6.0e+01 2.600097e+01 lineto +6.0e+01 2.90009e+01 lineto +5.662089e+01 2.906e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.0e+01 3.200082e+01 moveto +6.0e+01 2.90009e+01 lineto +6.337911e+01 2.906e+01 lineto +6.380147e+01 3.206731e+01 lineto +6.0e+01 3.200082e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.380147e+01 3.206731e+01 moveto +6.337911e+01 2.906e+01 lineto +6.667502e+01 2.923584e+01 lineto +6.750934e+01 3.226513e+01 lineto +6.380147e+01 3.206731e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.750934e+01 3.226513e+01 moveto +6.667502e+01 2.923584e+01 lineto +6.980656e+01 2.952409e+01 lineto +7.103231e+01 3.258941e+01 lineto +6.750934e+01 3.226513e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.103231e+01 3.258941e+01 moveto +6.980656e+01 2.952409e+01 lineto +7.269664e+01 2.991765e+01 lineto +7.428362e+01 3.303216e+01 lineto +7.103231e+01 3.258941e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.428362e+01 3.303216e+01 moveto +7.269664e+01 2.991765e+01 lineto +7.527408e+01 3.040684e+01 lineto +7.718322e+01 3.35825e+01 lineto +7.428362e+01 3.303216e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.718322e+01 3.35825e+01 moveto +7.527408e+01 3.040684e+01 lineto +7.747542e+01 3.09796e+01 lineto +7.965971e+01 3.422685e+01 lineto +7.718322e+01 3.35825e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.965971e+01 3.422685e+01 moveto +7.747542e+01 3.09796e+01 lineto +7.924646e+01 3.162184e+01 lineto +8.165212e+01 3.494937e+01 lineto +7.965971e+01 3.422685e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +8.165212e+01 3.494937e+01 moveto +7.924646e+01 3.162184e+01 lineto +8.054359e+01 3.231774e+01 lineto +8.311138e+01 3.573225e+01 lineto +8.165212e+01 3.494937e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +8.311138e+01 3.573225e+01 moveto +8.054359e+01 3.231774e+01 lineto +8.133487e+01 3.305017e+01 lineto +8.400156e+01 3.655622e+01 lineto +8.311138e+01 3.573225e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +3.599844e+01 3.655622e+01 moveto +3.866513e+01 3.305017e+01 lineto +3.945641e+01 3.231774e+01 lineto +3.688862e+01 3.573225e+01 lineto +3.599844e+01 3.655622e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +3.688862e+01 3.573225e+01 moveto +3.945641e+01 3.231774e+01 lineto +4.075354e+01 3.162184e+01 lineto +3.834788e+01 3.494937e+01 lineto +3.688862e+01 3.573225e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +3.834788e+01 3.494937e+01 moveto +4.075354e+01 3.162184e+01 lineto +4.252458e+01 3.09796e+01 lineto +4.034029e+01 3.422685e+01 lineto +3.834788e+01 3.494937e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.034029e+01 3.422685e+01 moveto +4.252458e+01 3.09796e+01 lineto +4.472592e+01 3.040684e+01 lineto +4.281678e+01 3.35825e+01 lineto +4.034029e+01 3.422685e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.281678e+01 3.35825e+01 moveto +4.472592e+01 3.040684e+01 lineto +4.730336e+01 2.991765e+01 lineto +4.571638e+01 3.303216e+01 lineto +4.281678e+01 3.35825e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.571638e+01 3.303216e+01 moveto +4.730336e+01 2.991765e+01 lineto +5.019344e+01 2.952409e+01 lineto +4.896769e+01 3.258941e+01 lineto +4.571638e+01 3.303216e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.896769e+01 3.258941e+01 moveto +5.019344e+01 2.952409e+01 lineto +5.332498e+01 2.923584e+01 lineto +5.249066e+01 3.226513e+01 lineto +4.896769e+01 3.258941e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.249066e+01 3.226513e+01 moveto +5.332498e+01 2.923584e+01 lineto +5.662089e+01 2.906e+01 lineto +5.619853e+01 3.206731e+01 lineto +5.249066e+01 3.226513e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.619853e+01 3.206731e+01 moveto +5.662089e+01 2.906e+01 lineto +6.0e+01 2.90009e+01 lineto +6.0e+01 3.200082e+01 lineto +5.619853e+01 3.206731e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.0e+01 3.500075e+01 moveto +6.0e+01 3.200082e+01 lineto +6.380147e+01 3.206731e+01 lineto +6.422384e+01 3.507462e+01 lineto +6.0e+01 3.500075e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.422384e+01 3.507462e+01 moveto +6.380147e+01 3.206731e+01 lineto +6.750934e+01 3.226513e+01 lineto +6.834367e+01 3.529442e+01 lineto +6.422384e+01 3.507462e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.834367e+01 3.529442e+01 moveto +6.750934e+01 3.226513e+01 lineto +7.103231e+01 3.258941e+01 lineto +7.225805e+01 3.565473e+01 lineto +6.834367e+01 3.529442e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.225805e+01 3.565473e+01 moveto +7.103231e+01 3.258941e+01 lineto +7.428362e+01 3.303216e+01 lineto +7.58706e+01 3.614668e+01 lineto +7.225805e+01 3.565473e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.58706e+01 3.614668e+01 moveto +7.428362e+01 3.303216e+01 lineto +7.718322e+01 3.35825e+01 lineto +7.909236e+01 3.675815e+01 lineto +7.58706e+01 3.614668e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.909236e+01 3.675815e+01 moveto +7.718322e+01 3.35825e+01 lineto +7.965971e+01 3.422685e+01 lineto +8.1844e+01 3.74741e+01 lineto +7.909236e+01 3.675815e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +8.1844e+01 3.74741e+01 moveto +7.965971e+01 3.422685e+01 lineto +8.165212e+01 3.494937e+01 lineto +8.405778e+01 3.827689e+01 lineto +8.1844e+01 3.74741e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +8.405778e+01 3.827689e+01 moveto +8.165212e+01 3.494937e+01 lineto +8.311138e+01 3.573225e+01 lineto +8.567917e+01 3.914675e+01 lineto +8.405778e+01 3.827689e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +8.567917e+01 3.914675e+01 moveto +8.311138e+01 3.573225e+01 lineto +8.400156e+01 3.655622e+01 lineto +8.666825e+01 4.006227e+01 lineto +8.567917e+01 3.914675e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +3.333175e+01 4.006227e+01 moveto +3.599844e+01 3.655622e+01 lineto +3.688862e+01 3.573225e+01 lineto +3.432083e+01 3.914675e+01 lineto +3.333175e+01 4.006227e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +3.432083e+01 3.914675e+01 moveto +3.688862e+01 3.573225e+01 lineto +3.834788e+01 3.494937e+01 lineto +3.594222e+01 3.827689e+01 lineto +3.432083e+01 3.914675e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +3.594222e+01 3.827689e+01 moveto +3.834788e+01 3.494937e+01 lineto +4.034029e+01 3.422685e+01 lineto +3.8156e+01 3.74741e+01 lineto +3.594222e+01 3.827689e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +3.8156e+01 3.74741e+01 moveto +4.034029e+01 3.422685e+01 lineto +4.281678e+01 3.35825e+01 lineto +4.090764e+01 3.675815e+01 lineto +3.8156e+01 3.74741e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.090764e+01 3.675815e+01 moveto +4.281678e+01 3.35825e+01 lineto +4.571638e+01 3.303216e+01 lineto +4.41294e+01 3.614668e+01 lineto +4.090764e+01 3.675815e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.41294e+01 3.614668e+01 moveto +4.571638e+01 3.303216e+01 lineto +4.896769e+01 3.258941e+01 lineto +4.774195e+01 3.565473e+01 lineto +4.41294e+01 3.614668e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.774195e+01 3.565473e+01 moveto +4.896769e+01 3.258941e+01 lineto +5.249066e+01 3.226513e+01 lineto +5.165633e+01 3.529442e+01 lineto +4.774195e+01 3.565473e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.165633e+01 3.529442e+01 moveto +5.249066e+01 3.226513e+01 lineto +5.619853e+01 3.206731e+01 lineto +5.577616e+01 3.507462e+01 lineto +5.165633e+01 3.529442e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.577616e+01 3.507462e+01 moveto +5.619853e+01 3.206731e+01 lineto +6.0e+01 3.200082e+01 lineto +6.0e+01 3.500075e+01 lineto +5.577616e+01 3.507462e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.0e+01 3.800067e+01 moveto +6.0e+01 3.500075e+01 lineto +6.422384e+01 3.507462e+01 lineto +6.46462e+01 3.808193e+01 lineto +6.0e+01 3.800067e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.46462e+01 3.808193e+01 moveto +6.422384e+01 3.507462e+01 lineto +6.834367e+01 3.529442e+01 lineto +6.917799e+01 3.832371e+01 lineto +6.46462e+01 3.808193e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.917799e+01 3.832371e+01 moveto +6.834367e+01 3.529442e+01 lineto +7.225805e+01 3.565473e+01 lineto +7.348379e+01 3.872005e+01 lineto +6.917799e+01 3.832371e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.348379e+01 3.872005e+01 moveto +7.225805e+01 3.565473e+01 lineto +7.58706e+01 3.614668e+01 lineto +7.745758e+01 3.926119e+01 lineto +7.348379e+01 3.872005e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.745758e+01 3.926119e+01 moveto +7.58706e+01 3.614668e+01 lineto +7.909236e+01 3.675815e+01 lineto +8.10015e+01 3.993381e+01 lineto +7.745758e+01 3.926119e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +8.10015e+01 3.993381e+01 moveto +7.909236e+01 3.675815e+01 lineto +8.1844e+01 3.74741e+01 lineto +8.40283e+01 4.072135e+01 lineto +8.10015e+01 3.993381e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +8.40283e+01 4.072135e+01 moveto +8.1844e+01 3.74741e+01 lineto +8.405778e+01 3.827689e+01 lineto +8.646344e+01 4.160441e+01 lineto +8.40283e+01 4.072135e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +8.646344e+01 4.160441e+01 moveto +8.405778e+01 3.827689e+01 lineto +8.567917e+01 3.914675e+01 lineto +8.824696e+01 4.256126e+01 lineto +8.646344e+01 4.160441e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +8.824696e+01 4.256126e+01 moveto +8.567917e+01 3.914675e+01 lineto +8.666825e+01 4.006227e+01 lineto +8.933494e+01 4.356832e+01 lineto +8.824696e+01 4.256126e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +3.066506e+01 4.356832e+01 moveto +3.333175e+01 4.006227e+01 lineto +3.432083e+01 3.914675e+01 lineto +3.175304e+01 4.256126e+01 lineto +3.066506e+01 4.356832e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +3.175304e+01 4.256126e+01 moveto +3.432083e+01 3.914675e+01 lineto +3.594222e+01 3.827689e+01 lineto +3.353656e+01 4.160441e+01 lineto +3.175304e+01 4.256126e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +3.353656e+01 4.160441e+01 moveto +3.594222e+01 3.827689e+01 lineto +3.8156e+01 3.74741e+01 lineto +3.59717e+01 4.072135e+01 lineto +3.353656e+01 4.160441e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +3.59717e+01 4.072135e+01 moveto +3.8156e+01 3.74741e+01 lineto +4.090764e+01 3.675815e+01 lineto +3.89985e+01 3.993381e+01 lineto +3.59717e+01 4.072135e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +3.89985e+01 3.993381e+01 moveto +4.090764e+01 3.675815e+01 lineto +4.41294e+01 3.614668e+01 lineto +4.254242e+01 3.926119e+01 lineto +3.89985e+01 3.993381e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.254242e+01 3.926119e+01 moveto +4.41294e+01 3.614668e+01 lineto +4.774195e+01 3.565473e+01 lineto +4.651621e+01 3.872005e+01 lineto +4.254242e+01 3.926119e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.651621e+01 3.872005e+01 moveto +4.774195e+01 3.565473e+01 lineto +5.165633e+01 3.529442e+01 lineto +5.082201e+01 3.832371e+01 lineto +4.651621e+01 3.872005e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.082201e+01 3.832371e+01 moveto +5.165633e+01 3.529442e+01 lineto +5.577616e+01 3.507462e+01 lineto +5.53538e+01 3.808193e+01 lineto +5.082201e+01 3.832371e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.53538e+01 3.808193e+01 moveto +5.577616e+01 3.507462e+01 lineto +6.0e+01 3.500075e+01 lineto +6.0e+01 3.800067e+01 lineto +5.53538e+01 3.808193e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.0e+01 4.10006e+01 moveto +6.0e+01 3.800067e+01 lineto +6.46462e+01 3.808193e+01 lineto +6.506856e+01 4.108925e+01 lineto +6.0e+01 4.10006e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.506856e+01 4.108925e+01 moveto +6.46462e+01 3.808193e+01 lineto +6.917799e+01 3.832371e+01 lineto +7.001232e+01 4.1353e+01 lineto +6.506856e+01 4.108925e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.001232e+01 4.1353e+01 moveto +6.917799e+01 3.832371e+01 lineto +7.348379e+01 3.872005e+01 lineto +7.470954e+01 4.178537e+01 lineto +7.001232e+01 4.1353e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.470954e+01 4.178537e+01 moveto +7.348379e+01 3.872005e+01 lineto +7.745758e+01 3.926119e+01 lineto +7.904456e+01 4.23757e+01 lineto +7.470954e+01 4.178537e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.904456e+01 4.23757e+01 moveto +7.745758e+01 3.926119e+01 lineto +8.10015e+01 3.993381e+01 lineto +8.291064e+01 4.310947e+01 lineto +7.904456e+01 4.23757e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +8.291064e+01 4.310947e+01 moveto +8.10015e+01 3.993381e+01 lineto +8.40283e+01 4.072135e+01 lineto +8.621259e+01 4.39686e+01 lineto +8.291064e+01 4.310947e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +8.621259e+01 4.39686e+01 moveto +8.40283e+01 4.072135e+01 lineto +8.646344e+01 4.160441e+01 lineto +8.886909e+01 4.493193e+01 lineto +8.621259e+01 4.39686e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +8.886909e+01 4.493193e+01 moveto +8.646344e+01 4.160441e+01 lineto +8.824696e+01 4.256126e+01 lineto +9.081474e+01 4.597576e+01 lineto +8.886909e+01 4.493193e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +9.081474e+01 4.597576e+01 moveto +8.824696e+01 4.256126e+01 lineto +8.933494e+01 4.356832e+01 lineto +9.200164e+01 4.707437e+01 lineto +9.081474e+01 4.597576e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +2.799836e+01 4.707437e+01 moveto +3.066506e+01 4.356832e+01 lineto +3.175304e+01 4.256126e+01 lineto +2.918526e+01 4.597576e+01 lineto +2.799836e+01 4.707437e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +2.918526e+01 4.597576e+01 moveto +3.175304e+01 4.256126e+01 lineto +3.353656e+01 4.160441e+01 lineto +3.113091e+01 4.493193e+01 lineto +2.918526e+01 4.597576e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +3.113091e+01 4.493193e+01 moveto +3.353656e+01 4.160441e+01 lineto +3.59717e+01 4.072135e+01 lineto +3.378741e+01 4.39686e+01 lineto +3.113091e+01 4.493193e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +3.378741e+01 4.39686e+01 moveto +3.59717e+01 4.072135e+01 lineto +3.89985e+01 3.993381e+01 lineto +3.708936e+01 4.310947e+01 lineto +3.378741e+01 4.39686e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +3.708936e+01 4.310947e+01 moveto +3.89985e+01 3.993381e+01 lineto +4.254242e+01 3.926119e+01 lineto +4.095544e+01 4.23757e+01 lineto +3.708936e+01 4.310947e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.095544e+01 4.23757e+01 moveto +4.254242e+01 3.926119e+01 lineto +4.651621e+01 3.872005e+01 lineto +4.529046e+01 4.178537e+01 lineto +4.095544e+01 4.23757e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.529046e+01 4.178537e+01 moveto +4.651621e+01 3.872005e+01 lineto +5.082201e+01 3.832371e+01 lineto +4.998768e+01 4.1353e+01 lineto +4.529046e+01 4.178537e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.998768e+01 4.1353e+01 moveto +5.082201e+01 3.832371e+01 lineto +5.53538e+01 3.808193e+01 lineto +5.493144e+01 4.108925e+01 lineto +4.998768e+01 4.1353e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.493144e+01 4.108925e+01 moveto +5.53538e+01 3.808193e+01 lineto +6.0e+01 3.800067e+01 lineto +6.0e+01 4.10006e+01 lineto +5.493144e+01 4.108925e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.0e+01 4.400052e+01 moveto +6.0e+01 4.10006e+01 lineto +6.506856e+01 4.108925e+01 lineto +6.549092e+01 4.409656e+01 lineto +6.0e+01 4.400052e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.549092e+01 4.409656e+01 moveto +6.506856e+01 4.108925e+01 lineto +7.001232e+01 4.1353e+01 lineto +7.084664e+01 4.438229e+01 lineto +6.549092e+01 4.409656e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.084664e+01 4.438229e+01 moveto +7.001232e+01 4.1353e+01 lineto +7.470954e+01 4.178537e+01 lineto +7.593528e+01 4.485069e+01 lineto +7.084664e+01 4.438229e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.593528e+01 4.485069e+01 moveto +7.470954e+01 4.178537e+01 lineto +7.904456e+01 4.23757e+01 lineto +8.063154e+01 4.549021e+01 lineto +7.593528e+01 4.485069e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +8.063154e+01 4.549021e+01 moveto +7.904456e+01 4.23757e+01 lineto +8.291064e+01 4.310947e+01 lineto +8.481978e+01 4.628512e+01 lineto +8.063154e+01 4.549021e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +8.481978e+01 4.628512e+01 moveto +8.291064e+01 4.310947e+01 lineto +8.621259e+01 4.39686e+01 lineto +8.839688e+01 4.721584e+01 lineto +8.481978e+01 4.628512e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +8.839688e+01 4.721584e+01 moveto +8.621259e+01 4.39686e+01 lineto +8.886909e+01 4.493193e+01 lineto +9.127475e+01 4.825946e+01 lineto +8.839688e+01 4.721584e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +9.127475e+01 4.825946e+01 moveto +8.886909e+01 4.493193e+01 lineto +9.081474e+01 4.597576e+01 lineto +9.338253e+01 4.939026e+01 lineto +9.127475e+01 4.825946e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +9.338253e+01 4.939026e+01 moveto +9.081474e+01 4.597576e+01 lineto +9.200164e+01 4.707437e+01 lineto +9.466833e+01 5.058042e+01 lineto +9.338253e+01 4.939026e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +2.533167e+01 5.058042e+01 moveto +2.799836e+01 4.707437e+01 lineto +2.918526e+01 4.597576e+01 lineto +2.661747e+01 4.939026e+01 lineto +2.533167e+01 5.058042e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +2.661747e+01 4.939026e+01 moveto +2.918526e+01 4.597576e+01 lineto +3.113091e+01 4.493193e+01 lineto +2.872525e+01 4.825946e+01 lineto +2.661747e+01 4.939026e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +2.872525e+01 4.825946e+01 moveto +3.113091e+01 4.493193e+01 lineto +3.378741e+01 4.39686e+01 lineto +3.160312e+01 4.721584e+01 lineto +2.872525e+01 4.825946e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +3.160312e+01 4.721584e+01 moveto +3.378741e+01 4.39686e+01 lineto +3.708936e+01 4.310947e+01 lineto +3.518022e+01 4.628512e+01 lineto +3.160312e+01 4.721584e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +3.518022e+01 4.628512e+01 moveto +3.708936e+01 4.310947e+01 lineto +4.095544e+01 4.23757e+01 lineto +3.936846e+01 4.549021e+01 lineto +3.518022e+01 4.628512e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +3.936846e+01 4.549021e+01 moveto +4.095544e+01 4.23757e+01 lineto +4.529046e+01 4.178537e+01 lineto +4.406472e+01 4.485069e+01 lineto +3.936846e+01 4.549021e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.406472e+01 4.485069e+01 moveto +4.529046e+01 4.178537e+01 lineto +4.998768e+01 4.1353e+01 lineto +4.915336e+01 4.438229e+01 lineto +4.406472e+01 4.485069e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.915336e+01 4.438229e+01 moveto +4.998768e+01 4.1353e+01 lineto +5.493144e+01 4.108925e+01 lineto +5.450908e+01 4.409656e+01 lineto +4.915336e+01 4.438229e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.450908e+01 4.409656e+01 moveto +5.493144e+01 4.108925e+01 lineto +6.0e+01 4.10006e+01 lineto +6.0e+01 4.400052e+01 lineto +5.450908e+01 4.409656e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.0e+01 4.700045e+01 moveto +6.0e+01 4.400052e+01 lineto +6.549092e+01 4.409656e+01 lineto +6.591329e+01 4.710387e+01 lineto +6.0e+01 4.700045e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.591329e+01 4.710387e+01 moveto +6.549092e+01 4.409656e+01 lineto +7.084664e+01 4.438229e+01 lineto +7.168097e+01 4.741158e+01 lineto +6.591329e+01 4.710387e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.168097e+01 4.741158e+01 moveto +7.084664e+01 4.438229e+01 lineto +7.593528e+01 4.485069e+01 lineto +7.716102e+01 4.791601e+01 lineto +7.168097e+01 4.741158e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.716102e+01 4.791601e+01 moveto +7.593528e+01 4.485069e+01 lineto +8.063154e+01 4.549021e+01 lineto +8.221852e+01 4.860472e+01 lineto +7.716102e+01 4.791601e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +8.221852e+01 4.860472e+01 moveto +8.063154e+01 4.549021e+01 lineto +8.481978e+01 4.628512e+01 lineto +8.672892e+01 4.946078e+01 lineto +8.221852e+01 4.860472e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +8.672892e+01 4.946078e+01 moveto +8.481978e+01 4.628512e+01 lineto +8.839688e+01 4.721584e+01 lineto +9.058117e+01 5.046309e+01 lineto +8.672892e+01 4.946078e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +9.058117e+01 5.046309e+01 moveto +8.839688e+01 4.721584e+01 lineto +9.127475e+01 4.825946e+01 lineto +9.368041e+01 5.158698e+01 lineto +9.058117e+01 5.046309e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +9.368041e+01 5.158698e+01 moveto +9.127475e+01 4.825946e+01 lineto +9.338253e+01 4.939026e+01 lineto +9.595032e+01 5.280477e+01 lineto +9.368041e+01 5.158698e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +9.595032e+01 5.280477e+01 moveto +9.338253e+01 4.939026e+01 lineto +9.466833e+01 5.058042e+01 lineto +9.733502e+01 5.408648e+01 lineto +9.595032e+01 5.280477e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +2.266498e+01 5.408648e+01 moveto +2.533167e+01 5.058042e+01 lineto +2.661747e+01 4.939026e+01 lineto +2.404968e+01 5.280477e+01 lineto +2.266498e+01 5.408648e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +2.404968e+01 5.280477e+01 moveto +2.661747e+01 4.939026e+01 lineto +2.872525e+01 4.825946e+01 lineto +2.631959e+01 5.158698e+01 lineto +2.404968e+01 5.280477e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +2.631959e+01 5.158698e+01 moveto +2.872525e+01 4.825946e+01 lineto +3.160312e+01 4.721584e+01 lineto +2.941883e+01 5.046309e+01 lineto +2.631959e+01 5.158698e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +2.941883e+01 5.046309e+01 moveto +3.160312e+01 4.721584e+01 lineto +3.518022e+01 4.628512e+01 lineto +3.327108e+01 4.946078e+01 lineto +2.941883e+01 5.046309e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +3.327108e+01 4.946078e+01 moveto +3.518022e+01 4.628512e+01 lineto +3.936846e+01 4.549021e+01 lineto +3.778148e+01 4.860472e+01 lineto +3.327108e+01 4.946078e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +3.778148e+01 4.860472e+01 moveto +3.936846e+01 4.549021e+01 lineto +4.406472e+01 4.485069e+01 lineto +4.283898e+01 4.791601e+01 lineto +3.778148e+01 4.860472e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.283898e+01 4.791601e+01 moveto +4.406472e+01 4.485069e+01 lineto +4.915336e+01 4.438229e+01 lineto +4.831903e+01 4.741158e+01 lineto +4.283898e+01 4.791601e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.831903e+01 4.741158e+01 moveto +4.915336e+01 4.438229e+01 lineto +5.450908e+01 4.409656e+01 lineto +5.408671e+01 4.710387e+01 lineto +4.831903e+01 4.741158e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.408671e+01 4.710387e+01 moveto +5.450908e+01 4.409656e+01 lineto +6.0e+01 4.400052e+01 lineto +6.0e+01 4.700045e+01 lineto +5.408671e+01 4.710387e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.0e+01 5.000037e+01 moveto +6.0e+01 4.700045e+01 lineto +6.591329e+01 4.710387e+01 lineto +6.633565e+01 5.011118e+01 lineto +6.0e+01 5.000037e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.633565e+01 5.011118e+01 moveto +6.591329e+01 4.710387e+01 lineto +7.168097e+01 4.741158e+01 lineto +7.251529e+01 5.044087e+01 lineto +6.633565e+01 5.011118e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.251529e+01 5.044087e+01 moveto +7.168097e+01 4.741158e+01 lineto +7.716102e+01 4.791601e+01 lineto +7.838677e+01 5.098132e+01 lineto +7.251529e+01 5.044087e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.838677e+01 5.098132e+01 moveto +7.716102e+01 4.791601e+01 lineto +8.221852e+01 4.860472e+01 lineto +8.38055e+01 5.171924e+01 lineto +7.838677e+01 5.098132e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +8.38055e+01 5.171924e+01 moveto +8.221852e+01 4.860472e+01 lineto +8.672892e+01 4.946078e+01 lineto +8.863806e+01 5.263644e+01 lineto +8.38055e+01 5.171924e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +8.863806e+01 5.263644e+01 moveto +8.672892e+01 4.946078e+01 lineto +9.058117e+01 5.046309e+01 lineto +9.276546e+01 5.371034e+01 lineto +8.863806e+01 5.263644e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +9.276546e+01 5.371034e+01 moveto +9.058117e+01 5.046309e+01 lineto +9.368041e+01 5.158698e+01 lineto +9.608606e+01 5.49145e+01 lineto +9.276546e+01 5.371034e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +9.608606e+01 5.49145e+01 moveto +9.368041e+01 5.158698e+01 lineto +9.595032e+01 5.280477e+01 lineto +9.851811e+01 5.621927e+01 lineto +9.608606e+01 5.49145e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +9.851811e+01 5.621927e+01 moveto +9.595032e+01 5.280477e+01 lineto +9.733502e+01 5.408648e+01 lineto +1.000017e+02 5.759253e+01 lineto +9.851811e+01 5.621927e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +1.999829e+01 5.759253e+01 moveto +2.266498e+01 5.408648e+01 lineto +2.404968e+01 5.280477e+01 lineto +2.148189e+01 5.621927e+01 lineto +1.999829e+01 5.759253e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +2.148189e+01 5.621927e+01 moveto +2.404968e+01 5.280477e+01 lineto +2.631959e+01 5.158698e+01 lineto +2.391394e+01 5.49145e+01 lineto +2.148189e+01 5.621927e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +2.391394e+01 5.49145e+01 moveto +2.631959e+01 5.158698e+01 lineto +2.941883e+01 5.046309e+01 lineto +2.723454e+01 5.371034e+01 lineto +2.391394e+01 5.49145e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +2.723454e+01 5.371034e+01 moveto +2.941883e+01 5.046309e+01 lineto +3.327108e+01 4.946078e+01 lineto +3.136194e+01 5.263644e+01 lineto +2.723454e+01 5.371034e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +3.136194e+01 5.263644e+01 moveto +3.327108e+01 4.946078e+01 lineto +3.778148e+01 4.860472e+01 lineto +3.61945e+01 5.171924e+01 lineto +3.136194e+01 5.263644e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +3.61945e+01 5.171924e+01 moveto +3.778148e+01 4.860472e+01 lineto +4.283898e+01 4.791601e+01 lineto +4.161323e+01 5.098132e+01 lineto +3.61945e+01 5.171924e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.161323e+01 5.098132e+01 moveto +4.283898e+01 4.791601e+01 lineto +4.831903e+01 4.741158e+01 lineto +4.748471e+01 5.044087e+01 lineto +4.161323e+01 5.098132e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.748471e+01 5.044087e+01 moveto +4.831903e+01 4.741158e+01 lineto +5.408671e+01 4.710387e+01 lineto +5.366435e+01 5.011118e+01 lineto +4.748471e+01 5.044087e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.366435e+01 5.011118e+01 moveto +5.408671e+01 4.710387e+01 lineto +6.0e+01 4.700045e+01 lineto +6.0e+01 5.000037e+01 lineto +5.366435e+01 5.011118e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.0e+01 5.30003e+01 moveto +6.0e+01 5.000037e+01 lineto +6.633565e+01 5.011118e+01 lineto +6.675801e+01 5.311849e+01 lineto +6.0e+01 5.30003e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.675801e+01 5.311849e+01 moveto +6.633565e+01 5.011118e+01 lineto +7.251529e+01 5.044087e+01 lineto +7.334962e+01 5.347016e+01 lineto +6.675801e+01 5.311849e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.334962e+01 5.347016e+01 moveto +7.251529e+01 5.044087e+01 lineto +7.838677e+01 5.098132e+01 lineto +7.961251e+01 5.404664e+01 lineto +7.334962e+01 5.347016e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.961251e+01 5.404664e+01 moveto +7.838677e+01 5.098132e+01 lineto +8.38055e+01 5.171924e+01 lineto +8.539248e+01 5.483375e+01 lineto +7.961251e+01 5.404664e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +8.539248e+01 5.483375e+01 moveto +8.38055e+01 5.171924e+01 lineto +8.863806e+01 5.263644e+01 lineto +9.05472e+01 5.581209e+01 lineto +8.539248e+01 5.483375e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +9.05472e+01 5.581209e+01 moveto +8.863806e+01 5.263644e+01 lineto +9.276546e+01 5.371034e+01 lineto +9.494975e+01 5.695759e+01 lineto +9.05472e+01 5.581209e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +9.494975e+01 5.695759e+01 moveto +9.276546e+01 5.371034e+01 lineto +9.608606e+01 5.49145e+01 lineto +9.849172e+01 5.824202e+01 lineto +9.494975e+01 5.695759e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +9.849172e+01 5.824202e+01 moveto +9.608606e+01 5.49145e+01 lineto +9.851811e+01 5.621927e+01 lineto +1.010859e+02 5.963378e+01 lineto +9.849172e+01 5.824202e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +1.010859e+02 5.963378e+01 moveto +9.851811e+01 5.621927e+01 lineto +1.000017e+02 5.759253e+01 lineto +1.026684e+02 6.109858e+01 lineto +1.010859e+02 5.963378e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +1.73316e+01 6.109858e+01 moveto +1.999829e+01 5.759253e+01 lineto +2.148189e+01 5.621927e+01 lineto +1.89141e+01 5.963378e+01 lineto +1.73316e+01 6.109858e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +1.89141e+01 5.963378e+01 moveto +2.148189e+01 5.621927e+01 lineto +2.391394e+01 5.49145e+01 lineto +2.150828e+01 5.824202e+01 lineto +1.89141e+01 5.963378e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +2.150828e+01 5.824202e+01 moveto +2.391394e+01 5.49145e+01 lineto +2.723454e+01 5.371034e+01 lineto +2.505025e+01 5.695759e+01 lineto +2.150828e+01 5.824202e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +2.505025e+01 5.695759e+01 moveto +2.723454e+01 5.371034e+01 lineto +3.136194e+01 5.263644e+01 lineto +2.94528e+01 5.581209e+01 lineto +2.505025e+01 5.695759e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +2.94528e+01 5.581209e+01 moveto +3.136194e+01 5.263644e+01 lineto +3.61945e+01 5.171924e+01 lineto +3.460752e+01 5.483375e+01 lineto +2.94528e+01 5.581209e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +3.460752e+01 5.483375e+01 moveto +3.61945e+01 5.171924e+01 lineto +4.161323e+01 5.098132e+01 lineto +4.038749e+01 5.404664e+01 lineto +3.460752e+01 5.483375e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.038749e+01 5.404664e+01 moveto +4.161323e+01 5.098132e+01 lineto +4.748471e+01 5.044087e+01 lineto +4.665038e+01 5.347016e+01 lineto +4.038749e+01 5.404664e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.665038e+01 5.347016e+01 moveto +4.748471e+01 5.044087e+01 lineto +5.366435e+01 5.011118e+01 lineto +5.324199e+01 5.311849e+01 lineto +4.665038e+01 5.347016e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.324199e+01 5.311849e+01 moveto +5.366435e+01 5.011118e+01 lineto +6.0e+01 5.000037e+01 lineto +6.0e+01 5.30003e+01 lineto +5.324199e+01 5.311849e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.0e+01 5.600022e+01 moveto +6.0e+01 5.30003e+01 lineto +6.675801e+01 5.311849e+01 lineto +6.718037e+01 5.61258e+01 lineto +6.0e+01 5.600022e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.718037e+01 5.61258e+01 moveto +6.675801e+01 5.311849e+01 lineto +7.334962e+01 5.347016e+01 lineto +7.418394e+01 5.649945e+01 lineto +6.718037e+01 5.61258e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.418394e+01 5.649945e+01 moveto +7.334962e+01 5.347016e+01 lineto +7.961251e+01 5.404664e+01 lineto +8.083826e+01 5.711196e+01 lineto +7.418394e+01 5.649945e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +8.083826e+01 5.711196e+01 moveto +7.961251e+01 5.404664e+01 lineto +8.539248e+01 5.483375e+01 lineto +8.697946e+01 5.794826e+01 lineto +8.083826e+01 5.711196e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +8.697946e+01 5.794826e+01 moveto +8.539248e+01 5.483375e+01 lineto +9.05472e+01 5.581209e+01 lineto +9.245634e+01 5.898775e+01 lineto +8.697946e+01 5.794826e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +9.245634e+01 5.898775e+01 moveto +9.05472e+01 5.581209e+01 lineto +9.494975e+01 5.695759e+01 lineto +9.713404e+01 6.020483e+01 lineto +9.245634e+01 5.898775e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +9.713404e+01 6.020483e+01 moveto +9.494975e+01 5.695759e+01 lineto +9.849172e+01 5.824202e+01 lineto +1.008974e+02 6.156955e+01 lineto +9.713404e+01 6.020483e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +1.008974e+02 6.156955e+01 moveto +9.849172e+01 5.824202e+01 lineto +1.010859e+02 5.963378e+01 lineto +1.036537e+02 6.304828e+01 lineto +1.008974e+02 6.156955e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +1.036537e+02 6.304828e+01 moveto +1.010859e+02 5.963378e+01 lineto +1.026684e+02 6.109858e+01 lineto +1.053351e+02 6.460463e+01 lineto +1.036537e+02 6.304828e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +1.466491e+01 6.460463e+01 moveto +1.73316e+01 6.109858e+01 lineto +1.89141e+01 5.963378e+01 lineto +1.634631e+01 6.304828e+01 lineto +1.466491e+01 6.460463e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +1.634631e+01 6.304828e+01 moveto +1.89141e+01 5.963378e+01 lineto +2.150828e+01 5.824202e+01 lineto +1.910262e+01 6.156955e+01 lineto +1.634631e+01 6.304828e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +1.910262e+01 6.156955e+01 moveto +2.150828e+01 5.824202e+01 lineto +2.505025e+01 5.695759e+01 lineto +2.286596e+01 6.020483e+01 lineto +1.910262e+01 6.156955e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +2.286596e+01 6.020483e+01 moveto +2.505025e+01 5.695759e+01 lineto +2.94528e+01 5.581209e+01 lineto +2.754366e+01 5.898775e+01 lineto +2.286596e+01 6.020483e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +2.754366e+01 5.898775e+01 moveto +2.94528e+01 5.581209e+01 lineto +3.460752e+01 5.483375e+01 lineto +3.302054e+01 5.794826e+01 lineto +2.754366e+01 5.898775e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +3.302054e+01 5.794826e+01 moveto +3.460752e+01 5.483375e+01 lineto +4.038749e+01 5.404664e+01 lineto +3.916174e+01 5.711196e+01 lineto +3.302054e+01 5.794826e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +3.916174e+01 5.711196e+01 moveto +4.038749e+01 5.404664e+01 lineto +4.665038e+01 5.347016e+01 lineto +4.581606e+01 5.649945e+01 lineto +3.916174e+01 5.711196e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.581606e+01 5.649945e+01 moveto +4.665038e+01 5.347016e+01 lineto +5.324199e+01 5.311849e+01 lineto +5.281963e+01 5.61258e+01 lineto +4.581606e+01 5.649945e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.281963e+01 5.61258e+01 moveto +5.324199e+01 5.311849e+01 lineto +6.0e+01 5.30003e+01 lineto +6.0e+01 5.600022e+01 lineto +5.281963e+01 5.61258e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.0e+01 5.900015e+01 moveto +6.0e+01 5.600022e+01 lineto +6.718037e+01 5.61258e+01 lineto +6.760274e+01 5.913312e+01 lineto +6.0e+01 5.900015e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.760274e+01 5.913312e+01 moveto +6.718037e+01 5.61258e+01 lineto +7.418394e+01 5.649945e+01 lineto +7.501827e+01 5.952874e+01 lineto +6.760274e+01 5.913312e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.501827e+01 5.952874e+01 moveto +7.418394e+01 5.649945e+01 lineto +8.083826e+01 5.711196e+01 lineto +8.2064e+01 6.017728e+01 lineto +7.501827e+01 5.952874e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +8.2064e+01 6.017728e+01 moveto +8.083826e+01 5.711196e+01 lineto +8.697946e+01 5.794826e+01 lineto +8.856644e+01 6.106277e+01 lineto +8.2064e+01 6.017728e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +8.856644e+01 6.106277e+01 moveto +8.697946e+01 5.794826e+01 lineto +9.245634e+01 5.898775e+01 lineto +9.436549e+01 6.216341e+01 lineto +8.856644e+01 6.106277e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +9.436549e+01 6.216341e+01 moveto +9.245634e+01 5.898775e+01 lineto +9.713404e+01 6.020483e+01 lineto +9.931834e+01 6.345208e+01 lineto +9.436549e+01 6.216341e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +9.931834e+01 6.345208e+01 moveto +9.713404e+01 6.020483e+01 lineto +1.008974e+02 6.156955e+01 lineto +1.03303e+02 6.489707e+01 lineto +9.931834e+01 6.345208e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +1.03303e+02 6.489707e+01 moveto +1.008974e+02 6.156955e+01 lineto +1.036537e+02 6.304828e+01 lineto +1.062215e+02 6.646279e+01 lineto +1.03303e+02 6.489707e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +1.062215e+02 6.646279e+01 moveto +1.036537e+02 6.304828e+01 lineto +1.053351e+02 6.460463e+01 lineto +1.080018e+02 6.811068e+01 lineto +1.062215e+02 6.646279e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +1.199821e+01 6.811068e+01 moveto +1.466491e+01 6.460463e+01 lineto +1.634631e+01 6.304828e+01 lineto +1.377852e+01 6.646279e+01 lineto +1.199821e+01 6.811068e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +1.377852e+01 6.646279e+01 moveto +1.634631e+01 6.304828e+01 lineto +1.910262e+01 6.156955e+01 lineto +1.669696e+01 6.489707e+01 lineto +1.377852e+01 6.646279e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +1.669696e+01 6.489707e+01 moveto +1.910262e+01 6.156955e+01 lineto +2.286596e+01 6.020483e+01 lineto +2.068166e+01 6.345208e+01 lineto +1.669696e+01 6.489707e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +2.068166e+01 6.345208e+01 moveto +2.286596e+01 6.020483e+01 lineto +2.754366e+01 5.898775e+01 lineto +2.563451e+01 6.216341e+01 lineto +2.068166e+01 6.345208e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +2.563451e+01 6.216341e+01 moveto +2.754366e+01 5.898775e+01 lineto +3.302054e+01 5.794826e+01 lineto +3.143356e+01 6.106277e+01 lineto +2.563451e+01 6.216341e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +3.143356e+01 6.106277e+01 moveto +3.302054e+01 5.794826e+01 lineto +3.916174e+01 5.711196e+01 lineto +3.7936e+01 6.017728e+01 lineto +3.143356e+01 6.106277e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +3.7936e+01 6.017728e+01 moveto +3.916174e+01 5.711196e+01 lineto +4.581606e+01 5.649945e+01 lineto +4.498173e+01 5.952874e+01 lineto +3.7936e+01 6.017728e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.498173e+01 5.952874e+01 moveto +4.581606e+01 5.649945e+01 lineto +5.281963e+01 5.61258e+01 lineto +5.239726e+01 5.913312e+01 lineto +4.498173e+01 5.952874e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.239726e+01 5.913312e+01 moveto +5.281963e+01 5.61258e+01 lineto +6.0e+01 5.600022e+01 lineto +6.0e+01 5.900015e+01 lineto +5.239726e+01 5.913312e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.0e+01 6.200007e+01 moveto +6.0e+01 5.900015e+01 lineto +6.760274e+01 5.913312e+01 lineto +6.80251e+01 6.214043e+01 lineto +6.0e+01 6.200007e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.80251e+01 6.214043e+01 moveto +6.760274e+01 5.913312e+01 lineto +7.501827e+01 5.952874e+01 lineto +7.585259e+01 6.255803e+01 lineto +6.80251e+01 6.214043e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.585259e+01 6.255803e+01 moveto +7.501827e+01 5.952874e+01 lineto +8.2064e+01 6.017728e+01 lineto +8.328974e+01 6.32426e+01 lineto +7.585259e+01 6.255803e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +8.328974e+01 6.32426e+01 moveto +8.2064e+01 6.017728e+01 lineto +8.856644e+01 6.106277e+01 lineto +9.015342e+01 6.417728e+01 lineto +8.328974e+01 6.32426e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +9.015342e+01 6.417728e+01 moveto +8.856644e+01 6.106277e+01 lineto +9.436549e+01 6.216341e+01 lineto +9.627463e+01 6.533906e+01 lineto +9.015342e+01 6.417728e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +9.627463e+01 6.533906e+01 moveto +9.436549e+01 6.216341e+01 lineto +9.931834e+01 6.345208e+01 lineto +1.015026e+02 6.669933e+01 lineto +9.627463e+01 6.533906e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +1.015026e+02 6.669933e+01 moveto +9.931834e+01 6.345208e+01 lineto +1.03303e+02 6.489707e+01 lineto +1.057087e+02 6.822459e+01 lineto +1.015026e+02 6.669933e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +1.057087e+02 6.822459e+01 moveto +1.03303e+02 6.489707e+01 lineto +1.062215e+02 6.646279e+01 lineto +1.087893e+02 6.987729e+01 lineto +1.057087e+02 6.822459e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +1.087893e+02 6.987729e+01 moveto +1.062215e+02 6.646279e+01 lineto +1.080018e+02 6.811068e+01 lineto +1.106685e+02 7.161673e+01 lineto +1.087893e+02 6.987729e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +9.331521e+00 7.161673e+01 moveto +1.199821e+01 6.811068e+01 lineto +1.377852e+01 6.646279e+01 lineto +1.121074e+01 6.987729e+01 lineto +9.331521e+00 7.161673e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +1.121074e+01 6.987729e+01 moveto +1.377852e+01 6.646279e+01 lineto +1.669696e+01 6.489707e+01 lineto +1.429131e+01 6.822459e+01 lineto +1.121074e+01 6.987729e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +1.429131e+01 6.822459e+01 moveto +1.669696e+01 6.489707e+01 lineto +2.068166e+01 6.345208e+01 lineto +1.849737e+01 6.669933e+01 lineto +1.429131e+01 6.822459e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +1.849737e+01 6.669933e+01 moveto +2.068166e+01 6.345208e+01 lineto +2.563451e+01 6.216341e+01 lineto +2.372537e+01 6.533906e+01 lineto +1.849737e+01 6.669933e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +2.372537e+01 6.533906e+01 moveto +2.563451e+01 6.216341e+01 lineto +3.143356e+01 6.106277e+01 lineto +2.984658e+01 6.417728e+01 lineto +2.372537e+01 6.533906e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +2.984658e+01 6.417728e+01 moveto +3.143356e+01 6.106277e+01 lineto +3.7936e+01 6.017728e+01 lineto +3.671026e+01 6.32426e+01 lineto +2.984658e+01 6.417728e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +3.671026e+01 6.32426e+01 moveto +3.7936e+01 6.017728e+01 lineto +4.498173e+01 5.952874e+01 lineto +4.414741e+01 6.255803e+01 lineto +3.671026e+01 6.32426e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.414741e+01 6.255803e+01 moveto +4.498173e+01 5.952874e+01 lineto +5.239726e+01 5.913312e+01 lineto +5.19749e+01 6.214043e+01 lineto +4.414741e+01 6.255803e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.19749e+01 6.214043e+01 moveto +5.239726e+01 5.913312e+01 lineto +6.0e+01 5.900015e+01 lineto +6.0e+01 6.200007e+01 lineto +5.19749e+01 6.214043e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.0e+01 6.5e+01 moveto +6.0e+01 6.200007e+01 lineto +6.80251e+01 6.214043e+01 lineto +6.844746e+01 6.514774e+01 lineto +6.0e+01 6.5e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.305714e-01 5.305714e-01 5.305714e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.844746e+01 6.514774e+01 moveto +6.80251e+01 6.214043e+01 lineto +7.585259e+01 6.255803e+01 lineto +7.668692e+01 6.558732e+01 lineto +6.844746e+01 6.514774e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.426958e-01 5.426958e-01 5.426958e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +7.668692e+01 6.558732e+01 moveto +7.585259e+01 6.255803e+01 lineto +8.328974e+01 6.32426e+01 lineto +8.451549e+01 6.630792e+01 lineto +7.668692e+01 6.558732e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.527169e-01 5.527169e-01 5.527169e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +8.451549e+01 6.630792e+01 moveto +8.328974e+01 6.32426e+01 lineto +9.015342e+01 6.417728e+01 lineto +9.17404e+01 6.72918e+01 lineto +8.451549e+01 6.630792e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.605028e-01 5.605028e-01 5.605028e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +9.17404e+01 6.72918e+01 moveto +9.015342e+01 6.417728e+01 lineto +9.627463e+01 6.533906e+01 lineto +9.818377e+01 6.851472e+01 lineto +9.17404e+01 6.72918e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.659895e-01 5.659895e-01 5.659895e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +9.818377e+01 6.851472e+01 moveto +9.627463e+01 6.533906e+01 lineto +1.015026e+02 6.669933e+01 lineto +1.036869e+02 6.994658e+01 lineto +9.818377e+01 6.851472e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.691554e-01 5.691554e-01 5.691554e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +1.036869e+02 6.994658e+01 moveto +1.015026e+02 6.669933e+01 lineto +1.057087e+02 6.822459e+01 lineto +1.081144e+02 7.155211e+01 lineto +1.036869e+02 6.994658e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.699979e-01 5.699979e-01 5.699979e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +1.081144e+02 7.155211e+01 moveto +1.057087e+02 6.822459e+01 lineto +1.087893e+02 6.987729e+01 lineto +1.113571e+02 7.32918e+01 lineto +1.081144e+02 7.155211e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.685177e-01 5.685177e-01 5.685177e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +1.113571e+02 7.32918e+01 moveto +1.087893e+02 6.987729e+01 lineto +1.106685e+02 7.161673e+01 lineto +1.133352e+02 7.512279e+01 lineto +1.113571e+02 7.32918e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.647141e-01 5.647141e-01 5.647141e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +6.66483e+00 7.512279e+01 moveto +9.331521e+00 7.161673e+01 lineto +1.121074e+01 6.987729e+01 lineto +8.642948e+00 7.32918e+01 lineto +6.66483e+00 7.512279e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +3.886198e-01 3.886198e-01 3.886198e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +8.642948e+00 7.32918e+01 moveto +1.121074e+01 6.987729e+01 lineto +1.429131e+01 6.822459e+01 lineto +1.188565e+01 7.155211e+01 lineto +8.642948e+00 7.32918e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.015408e-01 4.015408e-01 4.015408e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +1.188565e+01 7.155211e+01 moveto +1.429131e+01 6.822459e+01 lineto +1.849737e+01 6.669933e+01 lineto +1.631308e+01 6.994658e+01 lineto +1.188565e+01 7.155211e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.162387e-01 4.162387e-01 4.162387e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +1.631308e+01 6.994658e+01 moveto +1.849737e+01 6.669933e+01 lineto +2.372537e+01 6.533906e+01 lineto +2.181623e+01 6.851472e+01 lineto +1.631308e+01 6.994658e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.323452e-01 4.323452e-01 4.323452e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +2.181623e+01 6.851472e+01 moveto +2.372537e+01 6.533906e+01 lineto +2.984658e+01 6.417728e+01 lineto +2.82596e+01 6.72918e+01 lineto +2.181623e+01 6.851472e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.494045e-01 4.494045e-01 4.494045e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +2.82596e+01 6.72918e+01 moveto +2.984658e+01 6.417728e+01 lineto +3.671026e+01 6.32426e+01 lineto +3.548451e+01 6.630792e+01 lineto +2.82596e+01 6.72918e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.668969e-01 4.668969e-01 4.668969e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +3.548451e+01 6.630792e+01 moveto +3.671026e+01 6.32426e+01 lineto +4.414741e+01 6.255803e+01 lineto +4.331308e+01 6.558732e+01 lineto +3.548451e+01 6.630792e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +4.842731e-01 4.842731e-01 4.842731e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +4.331308e+01 6.558732e+01 moveto +4.414741e+01 6.255803e+01 lineto +5.19749e+01 6.214043e+01 lineto +5.155254e+01 6.514774e+01 lineto +4.331308e+01 6.558732e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.00993e-01 5.00993e-01 5.00993e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +5.155254e+01 6.514774e+01 moveto +5.19749e+01 6.214043e+01 lineto +6.0e+01 6.200007e+01 lineto +6.0e+01 6.5e+01 lineto +5.155254e+01 6.514774e+01 lineto +closepath +clip +newpath +6.0e+01 5.0e+00 moveto +6.0e+01 7.7e+01 lineto +gsave +5.165641e-01 5.165641e-01 5.165641e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +0 0 0 setrgbcolor + +% Comment: canvas init + +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +1.0e+01 setmiterlimit +gsave +/CMSS10 findfont +10.0 scalefont +setfont +8.20584e+01 7.88e+01 moveto +gsave +[ 0.9 0.0 0.0 0.9 13.0173015362 -577.511830635 ] concat +(\062) show +grestore +grestore +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +grestore +gsave +newpath +3.0e-01 3.0e-01 3.0e-01 setrgbcolor + +% Comment: canvas init + +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +1.0e+01 setmiterlimit +gsave +/CMSS10 findfont +10.0 scalefont +setfont +5.281679e+01 5.246102e+01 moveto +gsave +[ 0.9 0.0 0.0 0.9 -16.2243010372 -603.850810225 ] concat +(\064) show +grestore +grestore +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +grestore +grestore +grestore showpage + +% --------------------------------------------------------- + +%%Trailer +%%EOF diff --git a/assets/images/tandem-empty-conical-tank.svg b/assets/images/tandem-empty-conical-tank.svg index 241dae2d..9f80d24f 100644 --- a/assets/images/tandem-empty-conical-tank.svg +++ b/assets/images/tandem-empty-conical-tank.svg @@ -1,1463 +1,1463 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/tandem-ez-chiminea.eps b/assets/images/tandem-ez-chiminea.eps index 1d2a6655..2bba9ef0 100644 --- a/assets/images/tandem-ez-chiminea.eps +++ b/assets/images/tandem-ez-chiminea.eps @@ -1,148757 +1,148757 @@ -%!PS-Adobe-2.0 EPSF-3.0 -%%BoundingBox: 0 0 130 120 -%%Pages: 1 -%%PageOrder: Ascend - -%%BeginProlog -%%BeginProcSet: -/ReEncodeFont { exch findfont << >> copy dup 3 2 roll /Encoding exch put definefont } def -%%EndProcSet -%%BeginFont: CMMI12 -%!PS-AdobeFont-1.0: CMMI12 003.002 -%%Title: CMMI12 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMMI12. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments - -FontDirectory/CMMI12 known{/CMMI12 findfont dup/UniqueID known{dup -/UniqueID get 5087386 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /CMMI12 def -/FontBBox {-31 -250 1026 750 }readonly def -/UniqueID 5087386 def -/PaintType 0 def -/FontInfo 10 dict dup begin - /version (003.002) readonly def - /Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMMI12.) readonly def - /FullName (CMMI12) readonly def - /FamilyName (Computer Modern) readonly def - /Weight (Medium) readonly def - /ItalicAngle -14.04 def - /isFixedPitch false def - /UnderlinePosition -100 def - /UnderlineThickness 50 def - /ascent 750 def -end readonly def -/Encoding 256 array - 0 1 255 { 1 index exch /.notdef put} for -dup 0 /Gamma put -dup 1 /Delta put -dup 2 /Theta put -dup 3 /Lambda put -dup 4 /Xi put -dup 5 /Pi put -dup 6 /Sigma put -dup 7 /Upsilon put -dup 8 /Phi put -dup 9 /Psi put -dup 10 /Omega put -dup 11 /alpha put -dup 12 /beta put -dup 13 /gamma put -dup 14 /delta put -dup 15 /epsilon1 put -dup 16 /zeta put -dup 17 /eta put -dup 18 /theta put -dup 19 /iota put -dup 20 /kappa put -dup 21 /lambda put -dup 22 /mu put -dup 23 /nu put -dup 24 /xi put -dup 25 /pi put -dup 26 /rho put -dup 27 /sigma put -dup 28 /tau put -dup 29 /upsilon put -dup 30 /phi put -dup 31 /chi put -dup 32 /psi put -dup 33 /omega put -dup 34 /epsilon put -dup 35 /theta1 put -dup 36 /pi1 put -dup 37 /rho1 put -dup 38 /sigma1 put -dup 39 /phi1 put -dup 40 /arrowlefttophalf put -dup 41 /arrowleftbothalf put -dup 42 /arrowrighttophalf put -dup 43 /arrowrightbothalf put -dup 44 /arrowhookleft put -dup 45 /arrowhookright put -dup 46 /triangleright put -dup 47 /triangleleft put -dup 48 /zerooldstyle put -dup 49 /oneoldstyle put -dup 50 /twooldstyle put -dup 51 /threeoldstyle put -dup 52 /fouroldstyle put -dup 53 /fiveoldstyle put -dup 54 /sixoldstyle put -dup 55 /sevenoldstyle put -dup 56 /eightoldstyle put -dup 57 /nineoldstyle put -dup 58 /period put -dup 59 /comma put -dup 60 /less put -dup 61 /slash put -dup 62 /greater put -dup 63 /star put -dup 64 /partialdiff put -dup 65 /A put -dup 66 /B put -dup 67 /C put -dup 68 /D put -dup 69 /E put -dup 70 /F put -dup 71 /G put -dup 72 /H put -dup 73 /I put -dup 74 /J put -dup 75 /K put -dup 76 /L put -dup 77 /M put -dup 78 /N put -dup 79 /O put -dup 80 /P put -dup 81 /Q put -dup 82 /R put -dup 83 /S put -dup 84 /T put -dup 85 /U put -dup 86 /V put -dup 87 /W put -dup 88 /X put -dup 89 /Y put -dup 90 /Z put -dup 91 /flat put -dup 92 /natural put -dup 93 /sharp put -dup 94 /slurbelow put -dup 95 /slurabove put -dup 96 /lscript put -dup 97 /a put -dup 98 /b put -dup 99 /c put -dup 100 /d put -dup 101 /e put -dup 102 /f put -dup 103 /g put -dup 104 /h put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 108 /l put -dup 109 /m put -dup 110 /n put -dup 111 /o put -dup 112 /p put -dup 113 /q put -dup 114 /r put -dup 115 /s put -dup 116 /t put -dup 117 /u put -dup 118 /v put -dup 119 /w put -dup 120 /x put -dup 121 /y put -dup 122 /z put -dup 123 /dotlessi put -dup 124 /dotlessj put -dup 125 /weierstrass put -dup 126 /vector put -dup 127 /tie put -dup 128 /psi put -dup 160 /space put -dup 161 /Gamma put -dup 162 /Delta put -dup 163 /Theta put -dup 164 /Lambda put -dup 165 /Xi put -dup 166 /Pi put -dup 167 /Sigma put -dup 168 /Upsilon put -dup 169 /Phi put -dup 170 /Psi put -dup 173 /Omega put -dup 174 /alpha put -dup 175 /beta put -dup 176 /gamma put -dup 177 /delta put -dup 178 /epsilon1 put -dup 179 /zeta put -dup 180 /eta put -dup 181 /theta put -dup 182 /iota put -dup 183 /kappa put -dup 184 /lambda put -dup 185 /mu put -dup 186 /nu put -dup 187 /xi put -dup 188 /pi put -dup 189 /rho put -dup 190 /sigma put -dup 191 /tau put -dup 192 /upsilon put -dup 193 /phi put -dup 194 /chi put -dup 195 /psi put -dup 196 /tie put -readonly def -currentdict end -currentfile eexec -D9D66F633B846AB284BCF8B0411B772DE5CE3C05EF98F858322DCEA45E0874C545D25FE192539D9C -DA4BAA46D9C431465E6ABF4E4271F89EDED7F37BE4B31FB47934F62D1F46E8671F6290D6FFF601D4 -937BF71C22D60FB800A15796421E3AA772C500501D8B10C0093F6467C553250F7C27B2C3D8937726 -14A846374A85BC4EBEC0B0A89C4C161C3956ECE25274B962C854E535F418279FE26D8F83E38C5C89 -974E9A224B3CBEF90A9277AF10E0C7CAC8DC11C41DC18B814A7682E5F024867411453BC81C443407 -AF41AF8A831A85A700CFC65E2181BCBFBFE3573BF464E2BE882A715BE109B49A15C32F62CF5C1025 -7E5EA12C24F72137EB63297C28625AC32274038691582D6D75FE8F895A0813982793297E49CC9B54 -053BA2ABD429156A7FFCD7B19DAA44E2107720921B74185AE507AC33141819511A6AC20BC20FB541 -0B5AAEC5743673E9E39C1976D5E6EB4E4D8E2B31BEA302E5AF1B2FBCEC6D9E69987970648B927623 -2093695D55A806D87648B1749CB537E78BB08AA83A5001F7609CD1D17FFA1043EB3807AF0B596AF3 -8C91A9675E2A53196FEF45849C95F7DC182A5EC0EC4435A8A4B6E1CDBF9A5AF457564EA72BF85228 -EB6FD244F25135360DD3EBEDA99D94828F447D52D011A8FC8B8BC124A4B367EC860C5F7CDBE58563 -4A1ACD80E37B6F2D5F33AF5A2C0814652FA37D0C6A99767C561253AF8DA3A1279D421AE11C133004 -DB273FDDC2134ECA4CC50296220A4729E4E73003AA88CE151F57F8C5DFEE1A8B3A74D7CB142B4F7A -128A4B0FD028B71FCF59841D3E8CB0450A0AB47B927D944D94C5DA562310C79E2321106D6B90FBD0 -4F5EB787AC050578011A0B24AE534B93B4108D982736464ACF5B77071ACD59B8D987EA9FE832A655 -C175AA8204DFA034D9DEB3AF510C4E948AD8DF3E799B81C5C8250B86FF8F91BE906357FC5DE9A320 -9AF78555AAA0FE720FBF0300F4FFB1E6F49CE9E00B0870D1E0EAB2CE05378850D15E9591ED19E563 -27A083671AD4BD0FAFC5A3AFA4D3E3CB1E50111ECD344168DA214E380AB12211010DA632B2CE9261 -6B94EEF181FF68119A2A0FB6AD9D3BE9E91F24484D018879EF39B3A5EF9A040B26AC1F2F6EC60EAB -B4233CC0878BF25AD526D45BA051CB36353A5A56E9BA2D1132F595F3202195681878AE92CFFC0A80 -9F8EF0DBE782E10D065658FF573553AE7EBC443C640F3F5745DA56489EFE26BBE67475C3F0ED603B -9DDB8464D40B587BBAB8F1B3F73FF9371EB27335665FA61498231EE271987F283580C7B42BF98121 -2D1460D366B3B5D0B7A7F7CD24B3C145B291FAF0B1F20996860BB42E7AF96BEE82C2B2174E9ECE34 -28A5FF9A63D7858C44BBC680770CE70BC7DF2B68CD42F9342517976533B7DA625EBDB07E071D4C17 -C3C32714C079DBEFE2F6F4977B005FCB214BF1FCEB394488CF34938B112C31AD00A54D096EC3769F -157DF59B6EC70FC6BB644470C2DB9688A9891D06145B198DEC09C5DDBFF4E1F56D8B62D172F59271 -B009EC62DBD8D48017892149618394F80F3472ABA74AAEABBA441B569394080498B5E5B56EFDC414 -BBFEBD1D53FBD880E92ABBA771A5EFBFAB1CA24C3F36686B9D9B65DBBBA23089C7D35CEF18D9751F -EB7C1E65F3B672D5E7C2BF998F65D0F49573F285279159BBCCE027E66EEEF9E47CA90DF348D89F86 -48FCB6F55AB2ED74C4043AE90F3542759B3F15932F8A52E3318F1693B2367E13AC6412B41D06DFA7 -1A3A869DA8816B26CD2CC94DA976DEE2B7ED59B4E956A0836A5E7FF5E0FAA40A121482798BF50E17 -28D3387D50CD62E1017235A3B1416CBB94C04F3E3D5FA2BDA3819A47057B8FECB3C09E0A391B5EAD -C38DC1AB744F90453026AACEDFCC190A280F0179C8A3BC1273C608A671E4ABF8BB5DCFC473240048 -1002AE9451172F2F9809B75440B987AB11DBB3569022A02F0194D73FEACA133DBB96BE3DED9623D5 -A89D652880EB4A147BD25031EE1C212E3226D5F7C4497DD9E2F767C4414323972C2B268F192113EA -4A0CD2B82760DCB2ACADC8719511F63D471F2DAAD5399A0B5DE1A15C6579712A81B432DC083E2EFD -660FDE2F155C78676E3350A9A5724512F4169C5E697897F5013D010BF75CB1920328F21DA3408BD9 -0216A18A5017D5FA51083A7C49C3D226B8AEB886083D13EECFB4EF12DE38E5F6B5B7A06D7F2BFEE4 -4690C87A7EFA5725AC793B61EE754278919EF5C5033D539A9BE0732F3D33137B6BC6D170DDF29763 -101BA0078E4BDC1562D16CDC01E05129709AD0E9532C6E6F7E74E42BF133F53314AAF732E90DC3AC -5C1BF5FD615189E12EBCE636C9129641A4879BC987E734289732F73DFF066C8C13B3735E2F2DD818 -E542EC0649DE3E37B0B5111670C45EC14E1E1FF14E41F12A20A6FCB2FDCFA350467651D697AA7E55 -49E2D4B30175244EE941B1F66BCC160A03B963A64DB7D1A06ECA645866EC4627EF2F3563FB399DC9 -B56A99A024D8FB026B8CF36E49484B98C90DA4477FB706CE1F5B136705E52A539D21C933315542DC -E71BC85955427D9DFF0DD9CB767B6B67DE7C2B8A2E2CF3A639E4C354EBC169360311D44D6F57322F -0A402C293F9FF510AF29BAAE402A218B6314495017595DC15128022B8C698ECFBAEF7ECDEE7FF01D -E305261E0119786B842B781C94E2B0138A581CD051807508F585597EBCEF7871A914FDB08466B2E9 -79C83DE884845105596546434E0EA525BEDFFF3E68F245493745A06B577C9A50E0170274210A6F6D -4A44C1EB5512ECDEA42F107E8C08A98EEB9EED0582D607DE96328ACD3D81BD759CEFB2F6DFD2AD55 -FF46D5202CCD0B518DB0008DE95594E96F77FC36BCB1EBCD388BD2E3CB674F90A8C69B4F57FBFB6A -57F07443B05B43BAD9EDEC3A90C5270A9F9198C8674972734277A7A14F22433A74CCC8182FEA974F -E66DD3A3BBE8F2494895B01B5AEDEB4173D8C3BFD4AAC413A548E0D446E0EAD5BCE288586885C116 -080C0AFB697061D021C043D2822FCDB78CFA99DE2A90A8465822A6FE4C0D03494EC045EFA80793A2 -458FA78C3353B0D5D0600CE006E31CA3131F387EC4D84B0C7C46A308D08C302C85ABF45B2D483BC6 -3DF7B0EEA1A0AFC0F844D77274C95ED477114752D0C88AE6092423DFABB3B01934699F096AF8F067 -D870F73CE45036362AC4CADCF97F42C63DFFC69EAC751C08AB6D61D34D32BFCEE1155D012314FD51 -252D2470B4D4CB16D0ACE4DDB17030C3622F56F96EBEA0FB90D92D109B956A4DC00332A9433FFE10 -43300B01D87EAD0C51E6D65545C37AA6528C214BF68831BDC78A84746E879643D9D9EE6BA5C167DB -0A370308C5EB606619A17BEC856BFF181BEBDBA0CA0BEA05C4EC948E288A941755EFA2DCFAEE67F3 -3B311CE0532CAF26FDE29474DBBEE42A623BEA14E4A4858B0496EFAFC775D48065F58DC20F727DCB -866EE68E24918AA1906073B64B0FE458B08A1B7DFA4BC03DC88CB5394F1FD149478577396F0AD201 -C4568BEBAB40DE8B864484D8D117727EA283CAA7485AA58FC506CC9B1C774FC883A3440499E3D984 -36111DC1DEF8CA30DDDBB9DDB9C89534D691555C36B5450DDE24CE5B17DA11E3E4C37A11581E4FA3 -C0D89B5CC3784BFFC14B6E98C548A7C38C53CAB973AF3DE82C6D42A01A57C9FFA790111BF79FE7F5 -91D5E2FF9E2730B7920A30D7BF713E4EBDD272DBDAFC8A676F195BA9082CD779E002FFD0785FC8DE -FFCD12E4B8DF368091E6119E135076E43DD0CD75E6429CEEA972391BA73D93B89645B2480315A49F -49AFE2F324D251AEE654ADCCA32A66E9B1B9407B055BBC615E37BF1BC8C1ADD81ABBF983C73F733F -91770D50184FCA3A0F6165CFE79002352DCDC1296D67AD671A4F4C0A60C7E9C18F3CC374A4D065FE -56D0BBD2CEEE3F70AA9398896FE22CDC4BF7332726A0E676D66D511799D63BDBE0DA140EC4EBF57D -E032B620E5ED890A6760CB7D40A05037BE3A6C5347DDFFCAAE3A5C4BC116F39969936FB483040E42 -1345EADC494523ACBDB55CEA57C40279D4AF5C7C9F3B0660ED9E725C9FADCD5361784D5C14B93C3B -13FD055F269BC7DF6D67719A2BF30D19D1A690B4CBC06DEA51884A686564B3FF6B3F8E9C9FBEC5A9 -14F525B6AE34D448B0AB85FAFA4E7F301984A9645C786DF2A19C2E6A20DD0B60AA2974A624E7CD19 -17AB87B273D04516D727FD30EFD27C983342C9BCC1D9CE95E7576AF25A4BFF02DB4588B8604C306C -04AB66E85E114C28CC47395016955AFACE381AF44B1D004D5B6B64186CD7CB9D081F93A637BBCFE8 -E292FD8D5863BFC683C9E37F0FEF0ECD16CFE63E0A584BFA4116D3AB0ED62B7B82C1630B2B78F255 -27A79267580F58005BFBD37E5C0C31029945CF6F6F72DB17EABDBB51DC8726FCD5AB2D61341B2EF7 -716F0D0AAC546DEDD22AC62FEFB1ECA0EC524C6B3233FB4E1B4CCE49F584BE7BAF33C878F2280A85 -98502001DEDB4FBC9F7DCF40D055AC35AADA869F2808F0B401C294AE378AA9B2AF2768B75D9CAE1A -C52025F18E7DDAEEA2122CE9D233A2A9046EC5EBEAE20FA928BA4AC651AF426574FAEFE31D28C771 -7DEA91429C7BD7611CDA7F5F55A070AD6776AF18DED46E5101A7D1A47F0752896669148EACDBEAD1 -C8A44801B53DDC61261499F2FCC600F635D8CDDDAD94A24BC14A2F5B5AAA6260955256256AF4A9AB -CDF541453E4190AF27139D3C6A2BE9BE4870260574C26338FF348F503DA4DC15FAC4F6ADBCBCC29D -93B9100EE126A0A28C3F0CA30B7F09E13AE59E34DA373702C5817D222DA4AC23DA5EE272805A902C -DB7001A0CCB26220D956871465BE18A323DF93CD792BBE61F3FF8C4957FA49925DFBA1569FBC1BAB -D1C3BA13F88D1D98F7034DBDF956F52646DF43AC978E86A1C532085DF36A66FF556442F3F337A699 -DEAF26EAE1AC20FB2968E58DF82ACBB647350335E4D48032E1BB49F1EA2181FBE183AACDC06761B4 -8A9EEAE514A00B4656B4CDA4BA3AC27F30C39A4274C1DAC69A7BBDEC53C9C7D78D0FAD8530073440 -C85F0A4B0003AE793731EF2A3199CD73663B05BDF83FB2B8C175F0CB3D20C52C0C8A370F9DB92304 -8CBBEA7267C828A700C5856EECBF7FFE8A67C5027BEF1B1C7D42C717ABC02FBB73A3AFEC5F57D6BE -21C2CBADC84855BFA4BDB2F127307BF437F010AF0C938F9587B153249E6EEC2ECA63E9BEE972CF4D -98627E9DFD37B325E7A6612C667296C8E9256C62690BE9D25F7C68CD984B56197148A89E8E05B9FE -98F033E9DD9EF7245EF70E63289C7947BE5F2272154E207A9B4B1FDBE41B1D4D72BE13873462B012 -F4B9D5F4164B714965F36C4101C870EFCC4BACC1A6DF744C1F91B1B7A2BF63BDFB840F5B0C062ACD -11FE47D9A3AA36CDC00ACD6DD8475034F603E859B3113B1C8A311C80B5D9EE1D881424745B573DB4 -3656FD733864CDC8978006D58309E4B226288A0DCDB9AAC8396FC9DD024BC5F00160C382B127EB4C -9FA74B62BA990E2DFBA53D3CD57A27FB68F912E5B69CFF2113D70CDCAEF634BFEB9D7A65CD1A670E -3A2CEE5D9687558A1BDA4358BE0917A4C8614B97DF5810473714F6FB8BE998BA52916F790F353DB8 -7B96194C6271147A947C664D273CDE1893D4E1EAEE9F4199941970A46AB809D4776E9310C506EDE7 -7EF1E9804829E495B0F654EB15FC2563DF6CB1B9D36D837777547CA37ADB28768A8DA2433BFD20D7 -2F9F00743272277F2C9A9F1F33CFAD44A8F3D620A0DDA13C3286760361107A0A82E0D12A9C601FE9 -3971250D47583AD68AC90892AECC54BFAB740A2F51F07A1E2C5B5E3A895F3E3001F4DEEB99E0A646 -4B0EC3753F30013E9C92525D9F651898A585DB03BB7180D652CB68ABAB55BF18402A43888772F9C3 -6C9F7CF6E00F07B33590C777B1B056B6C31210A3FEABC46BF00E7A837E93EE3464776B9D78E75C60 -CE9E0725C31784836B9CD63BA44DB0867C80D70A15FC97CC6E4526E84AE9B30CDA84C1C7857466E5 -F315C8F6DCFA0289FA937AAFF5D3CC35709E9EC3C255B355D7BC6063BFE6364804342D4BA7D015BE -58633CB781FFDEE7BFC46AFD84255D141DA1EF280D5CE22017DBC7C1A128B3F9974AD5BC1E53E43C -3EC042C17DBED744236D8AC784B9102E2FC4E94DF8C78254A6D496790CD6684EBB54035048E1DB75 -93E552C7EE7B884012517917AD46CA470ECFBDDAFA7F1FF13C0CB00005628710DD4EA93C79DE721A -89BBF27DBF7A085799B00D6AA37D7B3590C79ACAA5DFD15953E7F8B5874EF9BF34A217184100A080 -0A5675D552ADEFD930E294A50CF7A3C6344EA0871ED23AF942EC699E21537D852ADBE736EB1070D2 -C9B622EBD2384430BCB114D1DA3CBE2C6FBC839D77F20ECC999A5302705AE31AEEB8B4E5CA4046A3 -C77F8B0248E3755013CFA7C76D7248920CC203834E9328B58D5FC7C46B11B5AEA991556D067C2B24 -37634D95EA274197D3B46CA1B8446D633B6F0AAE72A599548BB3D81A337113D3EC58B0B2DD107A61 -7CA6DEADEE7003AE6F28ED6DAA5C5D99D67DFD2594800A66D11D26490156A539E286191274C30C09 -8DB77A427695BAE705DF290F97887C5DD6FD964D76FE6132016D0D58580F2EAEB727FE1B8AEFEC95 -C4629CB17D8C63D1EDD2125527D00C9E7C64AA7053A047A69F82812FD3C8C2543F269EE9C553F5BF -8A53D461D9C308C198EBF2B97DD531664229D32C3EC61D69E4E79F539E9E589FC3F57C9E4624F869 -A482062A52C9F4B640090C360DF8DC8702DB966EFADCAE94C8A2DE022E88EB388239BC517368F8C2 -6C8D96A6E8649737F902495E3F29F357B9B58EA47A9400D028B8BFFE74BAFC43E888808381C5F3E3 -18DF9BDA26F6E14DE2858A1A9CFAAB8A82B7819F748E04C8606DA94D884A13C67E3FA06F9C2834E1 -A02F4BD043C87D57297D500E4757BCEB37239A755F36FF99A3F9B6E0CC9F8938041EB931519BF0D4 -2E7A93EE62E6A59C2BBF1B2D6CE1958DAB40F1EC78C99C501CFD69864DA50EBF933D30CEAEE7456C -D0A08C78CAFAD93CACE2671F7E3DDDDA98EA56CA35648109D4E6333188ECC817F317D8979DA9FAD9 -DD45DFE5D74BBADFAC4921723F736426D5ADCC5DE4FA6703E121BFCECFB415F1D444634A7223389A -38DF2AD64101476D170DB854A220CA8433AB5DC40A841BEA6CBC538C63E0442A7764014D853AF8AF -C34F2D17A1DB8740A45C857667A59F895094867D12D06EBF72942E8ED4D6EE9EF225B4DD82A2F16A -D0A8C2C246DBA7BB9245ECC4863D14885BC30950451113123C868B8AA5B36F7B926B5ECB0A333902 -BB241B3D281550655912AE14A634D79515F00799E91F6DB093ADA1692CCB5A32CF94FA0A4E1B311A -68BD03C0F85F2F63C3C0658A3756013288704B240E14F65AC1BDA3098894BE592794245AEF119ED5 -9523983DEB2D0E9D211F62E6D6C5AAE72F3AEEDC4E590BD531EEA93C05EDB1370F140DB3034A9996 -22ED4BA8F1AAEDB368656B6C6AF920DE068E06B985FD47461276723C9944CAC87B44475767009320 -C7934FEB9B4DB8E1003000A663155C9A3FC67182BE4EA30F5FC813A8F34F3F99DEE8134252A98B21 -54FCE28C1EC23FA5E4BA8C4E005708A18FCEDE9F154576F0B3400C7FBFF197011FFB739D285819F9 -C19796979B3A0A5E4E5CB116F78DCB3A7178718D886D1A9E52BF4D9C8CA2FA2725147413CE566DC7 -4DCD7328806238F8BF9A780CE75C05A7C2BD89420F8A0B0D602498C1C83F775A231B8BED4EDA6F8C -995ACF80138D4A438EED6FB2CA44F06D664052D45B2FEEF0EC584B27E01D663D4B2F8C48E04690B3 -50AB33F10875460000D37C300CAFB3F8391E44F1AB363074FAC3E03C41BF062E5668AB0A4214C64B -171A2CBA072DED6EFAD31309A34D99DBC065106DD8F0942DE6DFD6C0743D98F214C3E3FA09DDEE4D -1080AFF99C98E001EFE2B853747CA64A6130A87AEE3583592AAD47CFA01F0B5B22C638925ED65188 -6EC83777DCCB56A808404BB5B655DBAE33483AADA292B580F02FF2494C7F3F7459BABA95373E39D2 -ABEFEC3FB56440DF99E6DC49E4D01F9286E11085D68EBE8744F307F6AAD2DE8B745E243163427A2B -90A90F6726BCF115DA15331E3F30CD025624C7B916A97B4067C60213C0B3782EEE9F4594B4B78B07 -2C5E9A30D35E1FCFB5E043404E5407A01A2ABBB636096B0ABFCA115414EBB67749D494CA030E21A9 -1206D6B090E0D94EF2D1165765010B8D39695D096825D9687F2480C851690AAEAF4AEEF413C054EB -FA49AA548B618802B62D0DD5FE7529563FD02F7CAFD93CA182B2506393AE802093C5668BE1D5D2C9 -E74C3160B5C3055A31ACD75B2CE21E1014D136FB96E44D4E6BD79A7B5FC5F1741A55B6CDE4CB5B44 -AE1EC827FD9BC083F76C8787756104E782F9D4BDEDA005B4085690CCDA8AC75A0BEFB47D0806F4A4 -6126AA280A41F0FFCFEA04B96714C7B1D4F806FA6412DDDAA68B20551C36E556647C3A7FC303C655 -79322171A7783FD7364F56ED31B5B8132815F524DC97030DFE3E47EDE35D03F4CD2CD99AE55D0BB8 -17A93C71F7C5383ADD04552F1C54557D494907D3050FC9D5514FCF80EF7039C5B076F16A3A946D59 -1165E72F2A31E906D4A57167B44D64BFAE9C408E9CE5EC8937C7B3B0AF24089A1878AF0758B7CFC8 -A787EB7CBA64BF13D3939DED996660A6487579162F56C3440764954DF160077B16CBBAAB9DBD5857 -FC44A5775ED562140DD33B3CB2173152213DF78D65AFC94347685181CDCAF3B79D755652C2B2D3EC -39449252DA027E97E534AC05ADCC39795C41F68E5F98F983CFCB4DE3BADFED909B2B6178904806B4 -0AE9F9B3577531D1C9C5793EB1C455C9895D2C858540C6B7F8B40AEDAE79FE461309AF352C80739C -5AD7612EE5970C113133502E1F59F53F8A72373A3841C37E727ABFB1E7A2AEAEF482B0942CDA1BFD -D81F7A2FC15A7D0E7F2CEFD8BC432268ACDDF3698804556E4AFE9086E6AE0CF1B144A5A7D04CE576 -F26533B611371D7F846959F2A589E54EBC0EA0AEE1C117EA3E8957E07AB8A728AB388B06BD7D98CD -44C468F7AE354304DCD93BCAF479F5C27BAC920128ED987667E94ADAB5E55EAFAB2B52BB2D83991F -9D638CC461A25738A6C33F134191A1A804EA935EF441F89129175BF705D4F7089BDE3C0AE6C61921 -487B3EDB029FFE0CDD2307B68CEFCD58591F939ED509EBA0FD070294B5158F3BF432AB18379BDA34 -86DBAC2984198FAEA711008AA454E9612B23B6C8C5AA908E5424456603D522BCAEB3EC41E1C8BBEA -B1C8CE0BEF6AB7C7008171F62B03BF9258329DCC30472DB329313606157CE246CC8D5C9E7DA2AE08 -967CB303C5E516F18F0CE530E75762541536B444925C1E123CFB615157A3169F7F10172423BF5A54 -0015BDA30A03414679A145541655B65253CC546261FF4626722942C8AF01FDA6F92200EFF2716807 -4F3BAC5692AAC160F7A0DCBD5315C4B700E3BEF31520215C093F0F1DCFD5D18538F8D4FF1997C652 -4DD972AE1CD7E11F829CC621B383390C2E7D196A8D5A9CBFBD8D3145E20CF045D1F128CA47CC9A01 -91E29D4217A1FA558F1F93DC86171E43764CC7D9377A1C76AE027D5C3FEC7A38CEE040DA280902D3 -F183134E3A95E5EF148C71BD5994BB28EDAF191EAC23BD02BD9A5F613235E97A5EE8C5C7E6A93F03 -186A29C684B6E46026A31BF1830B1ED3BB12A0648270CEE09A4F5AB891AD72D80C4057C781DFD270 -EE443E1FE4E9D8E58D2AA0A9A702836EABF544A3B4F2E1841776EA821FDB36E71AECD6A1C355127B -461FCF72A531176DB59F10D9A1222F99EE4AA579CD5CF6A288016F5DA6838536F3FE0D902543095D -90094EB79BF1592CDDE05786DAFD98AF30C6CEBF27B1315C706A63D4E868BA374EBE33145C16F181 -2AB2F8668B549A74C8A58304BAFBEE3136533542EDB8976C7550F0905546D116DD0E11384C2B99E1 -195316EC9CD53EBADB73509FDE80B1BCBCAE46E8806E0CC8CCBF2B10FC54D05C9F604B4ABFC87B25 -DB5CA90B64096B18C33E8A53F45F163AB7AC47CD6E9521230D689ACA686B5792D72097C4E67F93DC -9B7AEE088DA36BD6ACEE7E68ECFCAFE7D585F677BD1ED27595948CB7CCE21BAA375393CA45234E8F -4633D61EC657C528EDD0FF520964F8B737D0DB9A58DB146588F7F02CB77DE7D417CFC65B45CCD62F -77CC833DB5228159A552C7D6B0F7E5E5521E26C7F9A47D8F600CA820DF8B4B25B8B8D823FFB49E7B -1E779D9680AFB496C7BD8D2FDB99717F9EF91A6AFFBDAF5E6C188315BF63C3BA9B8414709D1E60FD -25D29BEA68D6D5857CF024BC2E03249A4B294F36E3BE13225319F11AED07AC2BD2E5BA6E9CD7F77C -C707F6268514BB7D50257EB4E23BD6CB9700745AF46DDD87664364A8CE71574F2D60CDBE61A3AFAB -925EFFB23273B61E93385C29C2E8B76650C1432AC8D4FF35F5419CFB553C8F10F4230CDC749B5F3A -8F5B1EC8C9FE31626378EB495A9A53BE7E1C0683550BB3AE9ED557CF4DE95399C5EAFB4B99B0889C -890FE2CEF419A20800812D0DA7795E9F519061D19D1AFE2AC77CBBF05D1A738E62B64B4224DCA36C -48B7A9D1FF785225C9852111316ACE1DAA2C21E05D767DB0DE6A0593D19029814C8BCE19DEED87EA -E4F52004EA1FE7934C099EC71AE7048D796081176AB9B8ECF42FA5581FFD859BD818411DFC4649C7 -6F82D6C03563F9B9D2DE6F274D41E0A93784EB6ED0FEAB8DB20CFD35E2DEB93A1DD1AE514F9E8A48 -279536885042D248CF3FB0872135921DFDDC41198DFEE21982D675CC3BEFA0A3986893CB55393D0D -97ABBE2E2E9B911B8E219104B22197EA04E201FF9C5F9B644E91709CFACDA783050C75212109FBBC -0422B697902D9847D764AD31E851ABB49F9BED16F1377F97198664125C1BA4E06C4C43AAD8829047 -38E1127C3CDC74167B21358CBDC8563951CA7B5DE09526FEA0B1D2AA92F3C4EDFC252BBC38463B55 -E97E8C40D6FD34403357911A1FD0A46565148F3FC891B20EC84976FB26D13A93F1B3D7162D864F8E -1C4A4CED23724105D0B7EB83EB334386912AAD93BAA8AA9CF5CDDF83D5FF76E94C8A2C40C28B5F48 -47A49D8155347392B7D2CF2731E45E0ECA9A654AEEC5DC2A6B03E93D4DA22575D824294ED80804B8 -42B898708A5FA69C5F958A935D47F57039C31771879DC8AE993CF060F6B509F8CE28FAFA8A0FF706 -9464A5D1B1FFA1793EB110F1911BFD03CD3D35BE6AE7AE186C07BC7D58A92835845B4147286802BE -9E2A7DBB73F443E0D5B1A01C9D578535802FEA3202CAE07D64F011E5052C4E3D6F0E83BE8CCDD403 -D53C97A1D398CAC1DE5B2F1610DE122A2FB4E58F711BFED8D19A2EC2F82B94D11D6A73A315376B27 -FA64746F56B77ADF14359CFBDD7C7B15EE49D8C97010E1BCAB82485E8597747E0ADA97D673399B17 -CCC088F0450BD277A82AD326535D8539C6E6D7DE5511D503552C1A1774F8185B660E0F8163A2779C -7A36AD63F628DA7CFF6853DE27AC61E6CF97264392D1DE6807D84E2F86F67DDC1056E622637755BB -E86D142CF911AB87ED0AAD5B68D9B3DE1DAFB7D210410FED42D6AB1B4D6FE4E6D9E36A314D14D1ED -EFBD137E9122D40A9C42018772A868335C52CB34E4DA8DC7194187E99394F5D6285F68B36F5207B4 -9AA42F358585CFE126B077BB52A3F3E689433C8B41364EE740F16CC3A99EABE76826DA65DB410511 -8C84 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 - -cleartomark -{restore}if -%%EndFont CMMI12 -%%EndProlog -%%Page: 1 1 -gsave -newpath -0.0e+00 0.0e+00 moveto -1.3e+02 0.0e+00 lineto -1.3e+02 1.2e+02 lineto -0.0e+00 1.2e+02 lineto -closepath -clip -1 setlinecap -1 setlinejoin -gsave -newpath -1.0e-01 setlinewidth -newpath -6.558414e+01 5.035192e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.52959e+01 5.032491e+00 lineto -6.558414e+01 5.035192e+00 lineto -closepath -gsave -5.105286e-01 5.105286e-01 5.105286e-01 setrgbcolor -fill -grestore -newpath -6.558414e+01 5.035192e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.52959e+01 5.032491e+00 lineto -6.558414e+01 5.035192e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.616386e+01 6.380506e+00 moveto -6.558414e+01 5.035192e+00 lineto -6.52959e+01 5.032491e+00 lineto -6.558955e+01 6.375124e+00 lineto -6.616386e+01 6.380506e+00 lineto -closepath -gsave -5.263016e-01 5.263016e-01 5.263016e-01 setrgbcolor -fill -grestore -newpath -6.616386e+01 6.380506e+00 moveto -6.558414e+01 5.035192e+00 lineto -6.52959e+01 5.032491e+00 lineto -6.558955e+01 6.375124e+00 lineto -6.616386e+01 6.380506e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.673477e+01 8.025757e+00 moveto -6.616386e+01 6.380506e+00 lineto -6.558955e+01 6.375124e+00 lineto -6.587874e+01 8.017735e+00 lineto -6.673477e+01 8.025757e+00 lineto -closepath -gsave -5.426778e-01 5.426778e-01 5.426778e-01 setrgbcolor -fill -grestore -newpath -6.673477e+01 8.025757e+00 moveto -6.616386e+01 6.380506e+00 lineto -6.558955e+01 6.375124e+00 lineto -6.587874e+01 8.017735e+00 lineto -6.673477e+01 8.025757e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.729255e+01 9.958489e+00 moveto -6.673477e+01 8.025757e+00 lineto -6.587874e+01 8.017735e+00 lineto -6.616128e+01 9.947889e+00 lineto -6.729255e+01 9.958489e+00 lineto -closepath -gsave -5.593781e-01 5.593781e-01 5.593781e-01 setrgbcolor -fill -grestore -newpath -6.729255e+01 9.958489e+00 moveto -6.673477e+01 8.025757e+00 lineto -6.587874e+01 8.017735e+00 lineto -6.616128e+01 9.947889e+00 lineto -6.729255e+01 9.958489e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.783297e+01 1.216407e+01 moveto -6.729255e+01 9.958489e+00 lineto -6.616128e+01 9.947889e+00 lineto -6.643503e+01 1.215097e+01 lineto -6.783297e+01 1.216407e+01 lineto -closepath -gsave -5.760874e-01 5.760874e-01 5.760874e-01 setrgbcolor -fill -grestore -newpath -6.783297e+01 1.216407e+01 moveto -6.729255e+01 9.958489e+00 lineto -6.616128e+01 9.947889e+00 lineto -6.643503e+01 1.215097e+01 lineto -6.783297e+01 1.216407e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.835194e+01 1.462581e+01 moveto -6.783297e+01 1.216407e+01 lineto -6.643503e+01 1.215097e+01 lineto -6.669792e+01 1.461031e+01 lineto -6.835194e+01 1.462581e+01 lineto -closepath -gsave -5.924643e-01 5.924643e-01 5.924643e-01 setrgbcolor -fill -grestore -newpath -6.835194e+01 1.462581e+01 moveto -6.783297e+01 1.216407e+01 lineto -6.643503e+01 1.215097e+01 lineto -6.669792e+01 1.461031e+01 lineto -6.835194e+01 1.462581e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.884554e+01 1.732506e+01 moveto -6.835194e+01 1.462581e+01 lineto -6.669792e+01 1.461031e+01 lineto -6.694795e+01 1.730728e+01 lineto -6.884554e+01 1.732506e+01 lineto -closepath -gsave -6.081517e-01 6.081517e-01 6.081517e-01 setrgbcolor -fill -grestore -newpath -6.884554e+01 1.732506e+01 moveto -6.835194e+01 1.462581e+01 lineto -6.669792e+01 1.461031e+01 lineto -6.694795e+01 1.730728e+01 lineto -6.884554e+01 1.732506e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.931002e+01 2.024139e+01 moveto -6.884554e+01 1.732506e+01 lineto -6.694795e+01 1.730728e+01 lineto -6.718323e+01 2.022146e+01 lineto -6.931002e+01 2.024139e+01 lineto -closepath -gsave -6.227892e-01 6.227892e-01 6.227892e-01 setrgbcolor -fill -grestore -newpath -6.931002e+01 2.024139e+01 moveto -6.884554e+01 1.732506e+01 lineto -6.694795e+01 1.730728e+01 lineto -6.718323e+01 2.022146e+01 lineto -6.931002e+01 2.024139e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.974188e+01 2.335273e+01 moveto -6.931002e+01 2.024139e+01 lineto -6.718323e+01 2.022146e+01 lineto -6.740199e+01 2.33308e+01 lineto -6.974188e+01 2.335273e+01 lineto -closepath -gsave -6.360258e-01 6.360258e-01 6.360258e-01 setrgbcolor -fill -grestore -newpath -6.974188e+01 2.335273e+01 moveto -6.931002e+01 2.024139e+01 lineto -6.718323e+01 2.022146e+01 lineto -6.740199e+01 2.33308e+01 lineto -6.974188e+01 2.335273e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.013784e+01 2.663552e+01 moveto -6.974188e+01 2.335273e+01 lineto -6.740199e+01 2.33308e+01 lineto -6.760256e+01 2.661176e+01 lineto -7.013784e+01 2.663552e+01 lineto -closepath -gsave -6.475331e-01 6.475331e-01 6.475331e-01 setrgbcolor -fill -grestore -newpath -7.013784e+01 2.663552e+01 moveto -6.974188e+01 2.335273e+01 lineto -6.740199e+01 2.33308e+01 lineto -6.760256e+01 2.661176e+01 lineto -7.013784e+01 2.663552e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.04949e+01 3.00649e+01 moveto -7.013784e+01 2.663552e+01 lineto -6.760256e+01 2.661176e+01 lineto -6.778343e+01 3.003949e+01 lineto -7.04949e+01 3.00649e+01 lineto -closepath -gsave -6.570176e-01 6.570176e-01 6.570176e-01 setrgbcolor -fill -grestore -newpath -7.04949e+01 3.00649e+01 moveto -7.013784e+01 2.663552e+01 lineto -6.760256e+01 2.661176e+01 lineto -6.778343e+01 3.003949e+01 lineto -7.04949e+01 3.00649e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.081037e+01 3.361492e+01 moveto -7.04949e+01 3.00649e+01 lineto -6.778343e+01 3.003949e+01 lineto -6.794323e+01 3.358806e+01 lineto -7.081037e+01 3.361492e+01 lineto -closepath -gsave -6.642327e-01 6.642327e-01 6.642327e-01 setrgbcolor -fill -grestore -newpath -7.081037e+01 3.361492e+01 moveto -7.04949e+01 3.00649e+01 lineto -6.778343e+01 3.003949e+01 lineto -6.794323e+01 3.358806e+01 lineto -7.081037e+01 3.361492e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.108184e+01 3.72587e+01 moveto -7.081037e+01 3.361492e+01 lineto -6.794323e+01 3.358806e+01 lineto -6.808075e+01 3.723058e+01 lineto -7.108184e+01 3.72587e+01 lineto -closepath -gsave -6.689878e-01 6.689878e-01 6.689878e-01 setrgbcolor -fill -grestore -newpath -7.108184e+01 3.72587e+01 moveto -7.081037e+01 3.361492e+01 lineto -6.794323e+01 3.358806e+01 lineto -6.808075e+01 3.723058e+01 lineto -7.108184e+01 3.72587e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.130728e+01 4.096866e+01 moveto -7.108184e+01 3.72587e+01 lineto -6.808075e+01 3.723058e+01 lineto -6.819494e+01 4.09395e+01 lineto -7.130728e+01 4.096866e+01 lineto -closepath -gsave -6.711563e-01 6.711563e-01 6.711563e-01 setrgbcolor -fill -grestore -newpath -7.130728e+01 4.096866e+01 moveto -7.108184e+01 3.72587e+01 lineto -6.808075e+01 3.723058e+01 lineto -6.819494e+01 4.09395e+01 lineto -7.130728e+01 4.096866e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.148496e+01 4.471671e+01 moveto -7.130728e+01 4.096866e+01 lineto -6.819494e+01 4.09395e+01 lineto -6.828495e+01 4.468672e+01 lineto -7.148496e+01 4.471671e+01 lineto -closepath -gsave -6.706806e-01 6.706806e-01 6.706806e-01 setrgbcolor -fill -grestore -newpath -7.148496e+01 4.471671e+01 moveto -7.130728e+01 4.096866e+01 lineto -6.819494e+01 4.09395e+01 lineto -6.828495e+01 4.468672e+01 lineto -7.148496e+01 4.471671e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.161356e+01 4.847447e+01 moveto -7.148496e+01 4.471671e+01 lineto -6.828495e+01 4.468672e+01 lineto -6.835008e+01 4.844389e+01 lineto -7.161356e+01 4.847447e+01 lineto -closepath -gsave -6.675741e-01 6.675741e-01 6.675741e-01 setrgbcolor -fill -grestore -newpath -7.161356e+01 4.847447e+01 moveto -7.148496e+01 4.471671e+01 lineto -6.828495e+01 4.468672e+01 lineto -6.835008e+01 4.844389e+01 lineto -7.161356e+01 4.847447e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.169208e+01 5.22135e+01 moveto -7.161356e+01 4.847447e+01 lineto -6.835008e+01 4.844389e+01 lineto -6.838986e+01 5.218255e+01 lineto -7.169208e+01 5.22135e+01 lineto -closepath -gsave -6.619211e-01 6.619211e-01 6.619211e-01 setrgbcolor -fill -grestore -newpath -7.169208e+01 5.22135e+01 moveto -7.161356e+01 4.847447e+01 lineto -6.835008e+01 4.844389e+01 lineto -6.838986e+01 5.218255e+01 lineto -7.169208e+01 5.22135e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.171994e+01 5.590549e+01 moveto -7.169208e+01 5.22135e+01 lineto -6.838986e+01 5.218255e+01 lineto -6.840397e+01 5.587441e+01 lineto -7.171994e+01 5.590549e+01 lineto -closepath -gsave -6.538726e-01 6.538726e-01 6.538726e-01 setrgbcolor -fill -grestore -newpath -7.171994e+01 5.590549e+01 moveto -7.169208e+01 5.22135e+01 lineto -6.838986e+01 5.218255e+01 lineto -6.840397e+01 5.587441e+01 lineto -7.171994e+01 5.590549e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.169693e+01 5.952249e+01 moveto -7.171994e+01 5.590549e+01 lineto -6.840397e+01 5.587441e+01 lineto -6.839232e+01 5.949152e+01 lineto -7.169693e+01 5.952249e+01 lineto -closepath -gsave -6.43641e-01 6.43641e-01 6.43641e-01 setrgbcolor -fill -grestore -newpath -7.169693e+01 5.952249e+01 moveto -7.171994e+01 5.590549e+01 lineto -6.840397e+01 5.587441e+01 lineto -6.839232e+01 5.949152e+01 lineto -7.169693e+01 5.952249e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.162322e+01 6.303712e+01 moveto -7.169693e+01 5.952249e+01 lineto -6.839232e+01 5.949152e+01 lineto -6.835498e+01 6.300649e+01 lineto -7.162322e+01 6.303712e+01 lineto -closepath -gsave -6.314909e-01 6.314909e-01 6.314909e-01 setrgbcolor -fill -grestore -newpath -7.162322e+01 6.303712e+01 moveto -7.169693e+01 5.952249e+01 lineto -6.839232e+01 5.949152e+01 lineto -6.835498e+01 6.300649e+01 lineto -7.162322e+01 6.303712e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.149937e+01 6.642277e+01 moveto -7.162322e+01 6.303712e+01 lineto -6.835498e+01 6.300649e+01 lineto -6.829224e+01 6.639271e+01 lineto -7.149937e+01 6.642277e+01 lineto -closepath -gsave -6.177291e-01 6.177291e-01 6.177291e-01 setrgbcolor -fill -grestore -newpath -7.149937e+01 6.642277e+01 moveto -7.162322e+01 6.303712e+01 lineto -6.835498e+01 6.300649e+01 lineto -6.829224e+01 6.639271e+01 lineto -7.149937e+01 6.642277e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.132632e+01 6.965381e+01 moveto -7.149937e+01 6.642277e+01 lineto -6.829224e+01 6.639271e+01 lineto -6.820458e+01 6.962456e+01 lineto -7.132632e+01 6.965381e+01 lineto -closepath -gsave -6.026927e-01 6.026927e-01 6.026927e-01 setrgbcolor -fill -grestore -newpath -7.132632e+01 6.965381e+01 moveto -7.149937e+01 6.642277e+01 lineto -6.829224e+01 6.639271e+01 lineto -6.820458e+01 6.962456e+01 lineto -7.132632e+01 6.965381e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.110537e+01 7.270578e+01 moveto -7.132632e+01 6.965381e+01 lineto -6.820458e+01 6.962456e+01 lineto -6.809266e+01 7.267755e+01 lineto -7.110537e+01 7.270578e+01 lineto -closepath -gsave -5.867362e-01 5.867362e-01 5.867362e-01 setrgbcolor -fill -grestore -newpath -7.110537e+01 7.270578e+01 moveto -7.132632e+01 6.965381e+01 lineto -6.820458e+01 6.962456e+01 lineto -6.809266e+01 7.267755e+01 lineto -7.110537e+01 7.270578e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.083821e+01 7.555558e+01 moveto -7.110537e+01 7.270578e+01 lineto -6.809266e+01 7.267755e+01 lineto -6.795733e+01 7.552858e+01 lineto -7.083821e+01 7.555558e+01 lineto -closepath -gsave -5.702188e-01 5.702188e-01 5.702188e-01 setrgbcolor -fill -grestore -newpath -7.083821e+01 7.555558e+01 moveto -7.110537e+01 7.270578e+01 lineto -6.809266e+01 7.267755e+01 lineto -6.795733e+01 7.552858e+01 lineto -7.083821e+01 7.555558e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.052684e+01 7.818163e+01 moveto -7.083821e+01 7.555558e+01 lineto -6.795733e+01 7.552858e+01 lineto -6.779961e+01 7.815607e+01 lineto -7.052684e+01 7.818163e+01 lineto -closepath -gsave -5.534918e-01 5.534918e-01 5.534918e-01 setrgbcolor -fill -grestore -newpath -7.052684e+01 7.818163e+01 moveto -7.083821e+01 7.555558e+01 lineto -6.795733e+01 7.552858e+01 lineto -6.779961e+01 7.815607e+01 lineto -7.052684e+01 7.818163e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.017364e+01 8.056405e+01 moveto -7.052684e+01 7.818163e+01 lineto -6.779961e+01 7.815607e+01 lineto -6.76207e+01 8.054012e+01 lineto -7.017364e+01 8.056405e+01 lineto -closepath -gsave -5.36887e-01 5.36887e-01 5.36887e-01 setrgbcolor -fill -grestore -newpath -7.017364e+01 8.056405e+01 moveto -7.052684e+01 7.818163e+01 lineto -6.779961e+01 7.815607e+01 lineto -6.76207e+01 8.054012e+01 lineto -7.017364e+01 8.056405e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.978127e+01 8.26848e+01 moveto -7.017364e+01 8.056405e+01 lineto -6.76207e+01 8.054012e+01 lineto -6.742194e+01 8.266269e+01 lineto -6.978127e+01 8.26848e+01 lineto -closepath -gsave -5.207064e-01 5.207064e-01 5.207064e-01 setrgbcolor -fill -grestore -newpath -6.978127e+01 8.26848e+01 moveto -7.017364e+01 8.056405e+01 lineto -6.76207e+01 8.054012e+01 lineto -6.742194e+01 8.266269e+01 lineto -6.978127e+01 8.26848e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.93527e+01 8.452784e+01 moveto -6.978127e+01 8.26848e+01 lineto -6.742194e+01 8.266269e+01 lineto -6.720485e+01 8.450771e+01 lineto -6.93527e+01 8.452784e+01 lineto -closepath -gsave -5.052141e-01 5.052141e-01 5.052141e-01 setrgbcolor -fill -grestore -newpath -6.93527e+01 8.452784e+01 moveto -6.978127e+01 8.26848e+01 lineto -6.742194e+01 8.266269e+01 lineto -6.720485e+01 8.450771e+01 lineto -6.93527e+01 8.452784e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.889118e+01 8.60792e+01 moveto -6.93527e+01 8.452784e+01 lineto -6.720485e+01 8.450771e+01 lineto -6.697107e+01 8.606121e+01 lineto -6.889118e+01 8.60792e+01 lineto -closepath -gsave -4.906297e-01 4.906297e-01 4.906297e-01 setrgbcolor -fill -grestore -newpath -6.889118e+01 8.60792e+01 moveto -6.93527e+01 8.452784e+01 lineto -6.720485e+01 8.450771e+01 lineto -6.697107e+01 8.606121e+01 lineto -6.889118e+01 8.60792e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.84002e+01 8.732714e+01 moveto -6.889118e+01 8.60792e+01 lineto -6.697107e+01 8.606121e+01 lineto -6.672237e+01 8.731142e+01 lineto -6.84002e+01 8.732714e+01 lineto -closepath -gsave -4.771248e-01 4.771248e-01 4.771248e-01 setrgbcolor -fill -grestore -newpath -6.84002e+01 8.732714e+01 moveto -6.889118e+01 8.60792e+01 lineto -6.697107e+01 8.606121e+01 lineto -6.672237e+01 8.731142e+01 lineto -6.84002e+01 8.732714e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.788348e+01 8.826222e+01 moveto -6.84002e+01 8.732714e+01 lineto -6.672237e+01 8.731142e+01 lineto -6.646062e+01 8.824889e+01 lineto -6.788348e+01 8.826222e+01 lineto -closepath -gsave -4.648212e-01 4.648212e-01 4.648212e-01 setrgbcolor -fill -grestore -newpath -6.788348e+01 8.826222e+01 moveto -6.84002e+01 8.732714e+01 lineto -6.672237e+01 8.731142e+01 lineto -6.646062e+01 8.824889e+01 lineto -6.788348e+01 8.826222e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.734493e+01 8.887736e+01 moveto -6.788348e+01 8.826222e+01 lineto -6.646062e+01 8.824889e+01 lineto -6.618782e+01 8.886652e+01 lineto -6.734493e+01 8.887736e+01 lineto -closepath -gsave -4.537921e-01 4.537921e-01 4.537921e-01 setrgbcolor -fill -grestore -newpath -6.734493e+01 8.887736e+01 moveto -6.788348e+01 8.826222e+01 lineto -6.646062e+01 8.824889e+01 lineto -6.618782e+01 8.886652e+01 lineto -6.734493e+01 8.887736e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.678863e+01 8.91679e+01 moveto -6.734493e+01 8.887736e+01 lineto -6.618782e+01 8.886652e+01 lineto -6.590603e+01 8.915963e+01 lineto -6.678863e+01 8.91679e+01 lineto -closepath -gsave -4.440642e-01 4.440642e-01 4.440642e-01 setrgbcolor -fill -grestore -newpath -6.678863e+01 8.91679e+01 moveto -6.734493e+01 8.887736e+01 lineto -6.618782e+01 8.886652e+01 lineto -6.590603e+01 8.915963e+01 lineto -6.678863e+01 8.91679e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.389115e+01 8.5761e+01 moveto -6.447148e+01 8.707713e+01 lineto -6.473228e+01 8.707957e+01 lineto -6.443831e+01 8.576613e+01 lineto -6.389115e+01 8.5761e+01 lineto -closepath -gsave -5.247662e-01 5.247662e-01 5.247662e-01 setrgbcolor -fill -grestore -newpath -6.389115e+01 8.5761e+01 moveto -6.447148e+01 8.707713e+01 lineto -6.473228e+01 8.707957e+01 lineto -6.443831e+01 8.576613e+01 lineto -6.389115e+01 8.5761e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.331921e+01 8.414388e+01 moveto -6.389115e+01 8.5761e+01 lineto -6.443831e+01 8.576613e+01 lineto -6.41486e+01 8.415165e+01 lineto -6.331921e+01 8.414388e+01 lineto -closepath -gsave -5.410963e-01 5.410963e-01 5.410963e-01 setrgbcolor -fill -grestore -newpath -6.331921e+01 8.414388e+01 moveto -6.389115e+01 8.5761e+01 lineto -6.443831e+01 8.576613e+01 lineto -6.41486e+01 8.415165e+01 lineto -6.331921e+01 8.414388e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.276e+01 8.223798e+01 moveto -6.331921e+01 8.414388e+01 lineto -6.41486e+01 8.415165e+01 lineto -6.386533e+01 8.224834e+01 lineto -6.276e+01 8.223798e+01 lineto -closepath -gsave -5.577787e-01 5.577787e-01 5.577787e-01 setrgbcolor -fill -grestore -newpath -6.276e+01 8.223798e+01 moveto -6.331921e+01 8.414388e+01 lineto -6.41486e+01 8.415165e+01 lineto -6.386533e+01 8.224834e+01 lineto -6.276e+01 8.223798e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.52959e+01 5.032491e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.500583e+01 5.024405e+00 lineto -6.52959e+01 5.032491e+00 lineto -closepath -gsave -5.110732e-01 5.110732e-01 5.110732e-01 setrgbcolor -fill -grestore -newpath -6.52959e+01 5.032491e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.500583e+01 5.024405e+00 lineto -6.52959e+01 5.032491e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.558955e+01 6.375124e+00 moveto -6.52959e+01 5.032491e+00 lineto -6.500583e+01 5.024405e+00 lineto -6.501161e+01 6.359012e+00 lineto -6.558955e+01 6.375124e+00 lineto -closepath -gsave -5.280885e-01 5.280885e-01 5.280885e-01 setrgbcolor -fill -grestore -newpath -6.558955e+01 6.375124e+00 moveto -6.52959e+01 5.032491e+00 lineto -6.500583e+01 5.024405e+00 lineto -6.501161e+01 6.359012e+00 lineto -6.558955e+01 6.375124e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.587874e+01 8.017735e+00 moveto -6.558955e+01 6.375124e+00 lineto -6.501161e+01 6.359012e+00 lineto -6.50173e+01 7.99372e+00 lineto -6.587874e+01 8.017735e+00 lineto -closepath -gsave -5.459008e-01 5.459008e-01 5.459008e-01 setrgbcolor -fill -grestore -newpath -6.587874e+01 8.017735e+00 moveto -6.558955e+01 6.375124e+00 lineto -6.501161e+01 6.359012e+00 lineto -6.50173e+01 7.99372e+00 lineto -6.587874e+01 8.017735e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.616128e+01 9.947889e+00 moveto -6.587874e+01 8.017735e+00 lineto -6.50173e+01 7.99372e+00 lineto -6.502286e+01 9.916152e+00 lineto -6.616128e+01 9.947889e+00 lineto -closepath -gsave -5.64211e-01 5.64211e-01 5.64211e-01 setrgbcolor -fill -grestore -newpath -6.616128e+01 9.947889e+00 moveto -6.587874e+01 8.017735e+00 lineto -6.50173e+01 7.99372e+00 lineto -6.502286e+01 9.916152e+00 lineto -6.616128e+01 9.947889e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.643503e+01 1.215097e+01 moveto -6.616128e+01 9.947889e+00 lineto -6.502286e+01 9.916152e+00 lineto -6.502825e+01 1.211175e+01 lineto -6.643503e+01 1.215097e+01 lineto -closepath -gsave -5.826758e-01 5.826758e-01 5.826758e-01 setrgbcolor -fill -grestore -newpath -6.643503e+01 1.215097e+01 moveto -6.616128e+01 9.947889e+00 lineto -6.502286e+01 9.916152e+00 lineto -6.502825e+01 1.211175e+01 lineto -6.643503e+01 1.215097e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.669792e+01 1.461031e+01 moveto -6.643503e+01 1.215097e+01 lineto -6.502825e+01 1.211175e+01 lineto -6.503343e+01 1.456391e+01 lineto -6.669792e+01 1.461031e+01 lineto -closepath -gsave -6.009174e-01 6.009174e-01 6.009174e-01 setrgbcolor -fill -grestore -newpath -6.669792e+01 1.461031e+01 moveto -6.643503e+01 1.215097e+01 lineto -6.502825e+01 1.211175e+01 lineto -6.503343e+01 1.456391e+01 lineto -6.669792e+01 1.461031e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.694795e+01 1.730728e+01 moveto -6.669792e+01 1.461031e+01 lineto -6.503343e+01 1.456391e+01 lineto -6.503835e+01 1.725404e+01 lineto -6.694795e+01 1.730728e+01 lineto -closepath -gsave -6.185356e-01 6.185356e-01 6.185356e-01 setrgbcolor -fill -grestore -newpath -6.694795e+01 1.730728e+01 moveto -6.669792e+01 1.461031e+01 lineto -6.503343e+01 1.456391e+01 lineto -6.503835e+01 1.725404e+01 lineto -6.694795e+01 1.730728e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.718323e+01 2.022146e+01 moveto -6.694795e+01 1.730728e+01 lineto -6.503835e+01 1.725404e+01 lineto -6.504298e+01 2.01618e+01 lineto -6.718323e+01 2.022146e+01 lineto -closepath -gsave -6.351215e-01 6.351215e-01 6.351215e-01 setrgbcolor -fill -grestore -newpath -6.718323e+01 2.022146e+01 moveto -6.694795e+01 1.730728e+01 lineto -6.503835e+01 1.725404e+01 lineto -6.504298e+01 2.01618e+01 lineto -6.718323e+01 2.022146e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.740199e+01 2.33308e+01 moveto -6.718323e+01 2.022146e+01 lineto -6.504298e+01 2.01618e+01 lineto -6.504729e+01 2.326516e+01 lineto -6.740199e+01 2.33308e+01 lineto -closepath -gsave -6.502722e-01 6.502722e-01 6.502722e-01 setrgbcolor -fill -grestore -newpath -6.740199e+01 2.33308e+01 moveto -6.718323e+01 2.022146e+01 lineto -6.504298e+01 2.01618e+01 lineto -6.504729e+01 2.326516e+01 lineto -6.740199e+01 2.33308e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.760256e+01 2.661176e+01 moveto -6.740199e+01 2.33308e+01 lineto -6.504729e+01 2.326516e+01 lineto -6.505124e+01 2.654063e+01 lineto -6.760256e+01 2.661176e+01 lineto -closepath -gsave -6.636059e-01 6.636059e-01 6.636059e-01 setrgbcolor -fill -grestore -newpath -6.760256e+01 2.661176e+01 moveto -6.740199e+01 2.33308e+01 lineto -6.504729e+01 2.326516e+01 lineto -6.505124e+01 2.654063e+01 lineto -6.760256e+01 2.661176e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.778343e+01 3.003949e+01 moveto -6.760256e+01 2.661176e+01 lineto -6.505124e+01 2.654063e+01 lineto -6.50548e+01 2.996343e+01 lineto -6.778343e+01 3.003949e+01 lineto -closepath -gsave -6.747768e-01 6.747768e-01 6.747768e-01 setrgbcolor -fill -grestore -newpath -6.778343e+01 3.003949e+01 moveto -6.760256e+01 2.661176e+01 lineto -6.505124e+01 2.654063e+01 lineto -6.50548e+01 2.996343e+01 lineto -6.778343e+01 3.003949e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.794323e+01 3.358806e+01 moveto -6.778343e+01 3.003949e+01 lineto -6.50548e+01 2.996343e+01 lineto -6.505795e+01 3.350762e+01 lineto -6.794323e+01 3.358806e+01 lineto -closepath -gsave -6.834887e-01 6.834887e-01 6.834887e-01 setrgbcolor -fill -grestore -newpath -6.794323e+01 3.358806e+01 moveto -6.778343e+01 3.003949e+01 lineto -6.50548e+01 2.996343e+01 lineto -6.505795e+01 3.350762e+01 lineto -6.794323e+01 3.358806e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.808075e+01 3.723058e+01 moveto -6.794323e+01 3.358806e+01 lineto -6.505795e+01 3.350762e+01 lineto -6.506065e+01 3.714639e+01 lineto -6.808075e+01 3.723058e+01 lineto -closepath -gsave -6.895066e-01 6.895066e-01 6.895066e-01 setrgbcolor -fill -grestore -newpath -6.808075e+01 3.723058e+01 moveto -6.794323e+01 3.358806e+01 lineto -6.505795e+01 3.350762e+01 lineto -6.506065e+01 3.714639e+01 lineto -6.808075e+01 3.723058e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.819494e+01 4.09395e+01 moveto -6.808075e+01 3.723058e+01 lineto -6.506065e+01 3.714639e+01 lineto -6.50629e+01 4.085218e+01 lineto -6.819494e+01 4.09395e+01 lineto -closepath -gsave -6.926668e-01 6.926668e-01 6.926668e-01 setrgbcolor -fill -grestore -newpath -6.819494e+01 4.09395e+01 moveto -6.808075e+01 3.723058e+01 lineto -6.506065e+01 3.714639e+01 lineto -6.50629e+01 4.085218e+01 lineto -6.819494e+01 4.09395e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.828495e+01 4.468672e+01 moveto -6.819494e+01 4.09395e+01 lineto -6.50629e+01 4.085218e+01 lineto -6.506467e+01 4.459695e+01 lineto -6.828495e+01 4.468672e+01 lineto -closepath -gsave -6.928828e-01 6.928828e-01 6.928828e-01 setrgbcolor -fill -grestore -newpath -6.828495e+01 4.468672e+01 moveto -6.819494e+01 4.09395e+01 lineto -6.50629e+01 4.085218e+01 lineto -6.506467e+01 4.459695e+01 lineto -6.828495e+01 4.468672e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.835008e+01 4.844389e+01 moveto -6.828495e+01 4.468672e+01 lineto -6.506467e+01 4.459695e+01 lineto -6.506596e+01 4.835233e+01 lineto -6.835008e+01 4.844389e+01 lineto -closepath -gsave -6.901494e-01 6.901494e-01 6.901494e-01 setrgbcolor -fill -grestore -newpath -6.835008e+01 4.844389e+01 moveto -6.828495e+01 4.468672e+01 lineto -6.506467e+01 4.459695e+01 lineto -6.506596e+01 4.835233e+01 lineto -6.835008e+01 4.844389e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.838986e+01 5.218255e+01 moveto -6.835008e+01 4.844389e+01 lineto -6.506596e+01 4.835233e+01 lineto -6.506674e+01 5.208991e+01 lineto -6.838986e+01 5.218255e+01 lineto -closepath -gsave -6.845428e-01 6.845428e-01 6.845428e-01 setrgbcolor -fill -grestore -newpath -6.838986e+01 5.218255e+01 moveto -6.835008e+01 4.844389e+01 lineto -6.506596e+01 4.835233e+01 lineto -6.506674e+01 5.208991e+01 lineto -6.838986e+01 5.218255e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.840397e+01 5.587441e+01 moveto -6.838986e+01 5.218255e+01 lineto -6.506674e+01 5.208991e+01 lineto -6.506702e+01 5.578139e+01 lineto -6.840397e+01 5.587441e+01 lineto -closepath -gsave -6.762168e-01 6.762168e-01 6.762168e-01 setrgbcolor -fill -grestore -newpath -6.840397e+01 5.587441e+01 moveto -6.838986e+01 5.218255e+01 lineto -6.506674e+01 5.208991e+01 lineto -6.506702e+01 5.578139e+01 lineto -6.840397e+01 5.587441e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.839232e+01 5.949152e+01 moveto -6.840397e+01 5.587441e+01 lineto -6.506702e+01 5.578139e+01 lineto -6.506679e+01 5.939881e+01 lineto -6.839232e+01 5.949152e+01 lineto -closepath -gsave -6.653973e-01 6.653973e-01 6.653973e-01 setrgbcolor -fill -grestore -newpath -6.839232e+01 5.949152e+01 moveto -6.840397e+01 5.587441e+01 lineto -6.506702e+01 5.578139e+01 lineto -6.506679e+01 5.939881e+01 lineto -6.839232e+01 5.949152e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.835498e+01 6.300649e+01 moveto -6.839232e+01 5.949152e+01 lineto -6.506679e+01 5.939881e+01 lineto -6.506605e+01 6.29148e+01 lineto -6.835498e+01 6.300649e+01 lineto -closepath -gsave -6.523723e-01 6.523723e-01 6.523723e-01 setrgbcolor -fill -grestore -newpath -6.835498e+01 6.300649e+01 moveto -6.839232e+01 5.949152e+01 lineto -6.506679e+01 5.939881e+01 lineto -6.506605e+01 6.29148e+01 lineto -6.835498e+01 6.300649e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.829224e+01 6.639271e+01 moveto -6.835498e+01 6.300649e+01 lineto -6.506605e+01 6.29148e+01 lineto -6.506482e+01 6.630274e+01 lineto -6.829224e+01 6.639271e+01 lineto -closepath -gsave -6.374808e-01 6.374808e-01 6.374808e-01 setrgbcolor -fill -grestore -newpath -6.829224e+01 6.639271e+01 moveto -6.835498e+01 6.300649e+01 lineto -6.506605e+01 6.29148e+01 lineto -6.506482e+01 6.630274e+01 lineto -6.829224e+01 6.639271e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.820458e+01 6.962456e+01 moveto -6.829224e+01 6.639271e+01 lineto -6.506482e+01 6.630274e+01 lineto -6.506309e+01 6.953698e+01 lineto -6.820458e+01 6.962456e+01 lineto -closepath -gsave -6.210993e-01 6.210993e-01 6.210993e-01 setrgbcolor -fill -grestore -newpath -6.820458e+01 6.962456e+01 moveto -6.829224e+01 6.639271e+01 lineto -6.506482e+01 6.630274e+01 lineto -6.506309e+01 6.953698e+01 lineto -6.820458e+01 6.962456e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.809266e+01 7.267755e+01 moveto -6.820458e+01 6.962456e+01 lineto -6.506309e+01 6.953698e+01 lineto -6.506089e+01 7.259303e+01 lineto -6.809266e+01 7.267755e+01 lineto -closepath -gsave -6.036271e-01 6.036271e-01 6.036271e-01 setrgbcolor -fill -grestore -newpath -6.809266e+01 7.267755e+01 moveto -6.820458e+01 6.962456e+01 lineto -6.506309e+01 6.953698e+01 lineto -6.506089e+01 7.259303e+01 lineto -6.809266e+01 7.267755e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.795733e+01 7.552858e+01 moveto -6.809266e+01 7.267755e+01 lineto -6.506089e+01 7.259303e+01 lineto -6.505822e+01 7.544776e+01 lineto -6.795733e+01 7.552858e+01 lineto -closepath -gsave -5.854717e-01 5.854717e-01 5.854717e-01 setrgbcolor -fill -grestore -newpath -6.795733e+01 7.552858e+01 moveto -6.809266e+01 7.267755e+01 lineto -6.506089e+01 7.259303e+01 lineto -6.505822e+01 7.544776e+01 lineto -6.795733e+01 7.552858e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.779961e+01 7.815607e+01 moveto -6.795733e+01 7.552858e+01 lineto -6.505822e+01 7.544776e+01 lineto -6.505512e+01 7.807956e+01 lineto -6.779961e+01 7.815607e+01 lineto -closepath -gsave -5.670337e-01 5.670337e-01 5.670337e-01 setrgbcolor -fill -grestore -newpath -6.779961e+01 7.815607e+01 moveto -6.795733e+01 7.552858e+01 lineto -6.505822e+01 7.544776e+01 lineto -6.505512e+01 7.807956e+01 lineto -6.779961e+01 7.815607e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.76207e+01 8.054012e+01 moveto -6.779961e+01 7.815607e+01 lineto -6.505512e+01 7.807956e+01 lineto -6.50516e+01 8.04685e+01 lineto -6.76207e+01 8.054012e+01 lineto -closepath -gsave -5.486935e-01 5.486935e-01 5.486935e-01 setrgbcolor -fill -grestore -newpath -6.76207e+01 8.054012e+01 moveto -6.779961e+01 7.815607e+01 lineto -6.505512e+01 7.807956e+01 lineto -6.50516e+01 8.04685e+01 lineto -6.76207e+01 8.054012e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.742194e+01 8.266269e+01 moveto -6.76207e+01 8.054012e+01 lineto -6.50516e+01 8.04685e+01 lineto -6.504768e+01 8.25965e+01 lineto -6.742194e+01 8.266269e+01 lineto -closepath -gsave -5.307991e-01 5.307991e-01 5.307991e-01 setrgbcolor -fill -grestore -newpath -6.742194e+01 8.266269e+01 moveto -6.76207e+01 8.054012e+01 lineto -6.50516e+01 8.04685e+01 lineto -6.504768e+01 8.25965e+01 lineto -6.742194e+01 8.266269e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.720485e+01 8.450771e+01 moveto -6.742194e+01 8.266269e+01 lineto -6.504768e+01 8.25965e+01 lineto -6.504341e+01 8.444745e+01 lineto -6.720485e+01 8.450771e+01 lineto -closepath -gsave -5.136557e-01 5.136557e-01 5.136557e-01 setrgbcolor -fill -grestore -newpath -6.720485e+01 8.450771e+01 moveto -6.742194e+01 8.266269e+01 lineto -6.504768e+01 8.25965e+01 lineto -6.504341e+01 8.444745e+01 lineto -6.720485e+01 8.450771e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.697107e+01 8.606121e+01 moveto -6.720485e+01 8.450771e+01 lineto -6.504341e+01 8.444745e+01 lineto -6.503881e+01 8.600734e+01 lineto -6.697107e+01 8.606121e+01 lineto -closepath -gsave -4.975185e-01 4.975185e-01 4.975185e-01 setrgbcolor -fill -grestore -newpath -6.697107e+01 8.606121e+01 moveto -6.720485e+01 8.450771e+01 lineto -6.504341e+01 8.444745e+01 lineto -6.503881e+01 8.600734e+01 lineto -6.697107e+01 8.606121e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.672237e+01 8.731142e+01 moveto -6.697107e+01 8.606121e+01 lineto -6.503881e+01 8.600734e+01 lineto -6.503391e+01 8.726435e+01 lineto -6.672237e+01 8.731142e+01 lineto -closepath -gsave -4.825877e-01 4.825877e-01 4.825877e-01 setrgbcolor -fill -grestore -newpath -6.672237e+01 8.731142e+01 moveto -6.697107e+01 8.606121e+01 lineto -6.503881e+01 8.600734e+01 lineto -6.503391e+01 8.726435e+01 lineto -6.672237e+01 8.731142e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.646062e+01 8.824889e+01 moveto -6.672237e+01 8.731142e+01 lineto -6.503391e+01 8.726435e+01 lineto -6.502876e+01 8.820897e+01 lineto -6.646062e+01 8.824889e+01 lineto -closepath -gsave -4.69006e-01 4.69006e-01 4.69006e-01 setrgbcolor -fill -grestore -newpath -6.646062e+01 8.824889e+01 moveto -6.672237e+01 8.731142e+01 lineto -6.503391e+01 8.726435e+01 lineto -6.502876e+01 8.820897e+01 lineto -6.646062e+01 8.824889e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.618782e+01 8.886652e+01 moveto -6.646062e+01 8.824889e+01 lineto -6.502876e+01 8.820897e+01 lineto -6.502339e+01 8.883405e+01 lineto -6.618782e+01 8.886652e+01 lineto -closepath -gsave -4.568598e-01 4.568598e-01 4.568598e-01 setrgbcolor -fill -grestore -newpath -6.618782e+01 8.886652e+01 moveto -6.646062e+01 8.824889e+01 lineto -6.502876e+01 8.820897e+01 lineto -6.502339e+01 8.883405e+01 lineto -6.618782e+01 8.886652e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.590603e+01 8.915963e+01 moveto -6.618782e+01 8.886652e+01 lineto -6.502339e+01 8.883405e+01 lineto -6.501784e+01 8.913486e+01 lineto -6.590603e+01 8.915963e+01 lineto -closepath -gsave -4.461815e-01 4.461815e-01 4.461815e-01 setrgbcolor -fill -grestore -newpath -6.590603e+01 8.915963e+01 moveto -6.618782e+01 8.886652e+01 lineto -6.502339e+01 8.883405e+01 lineto -6.501784e+01 8.913486e+01 lineto -6.590603e+01 8.915963e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.443831e+01 8.576613e+01 moveto -6.473228e+01 8.707957e+01 lineto -6.499473e+01 8.708689e+01 lineto -6.498894e+01 8.578148e+01 lineto -6.443831e+01 8.576613e+01 lineto -closepath -gsave -5.26426e-01 5.26426e-01 5.26426e-01 setrgbcolor -fill -grestore -newpath -6.443831e+01 8.576613e+01 moveto -6.473228e+01 8.707957e+01 lineto -6.499473e+01 8.708689e+01 lineto -6.498894e+01 8.578148e+01 lineto -6.443831e+01 8.576613e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.41486e+01 8.415165e+01 moveto -6.443831e+01 8.576613e+01 lineto -6.498894e+01 8.578148e+01 lineto -6.498324e+01 8.417492e+01 lineto -6.41486e+01 8.415165e+01 lineto -closepath -gsave -5.441744e-01 5.441744e-01 5.441744e-01 setrgbcolor -fill -grestore -newpath -6.41486e+01 8.415165e+01 moveto -6.443831e+01 8.576613e+01 lineto -6.498894e+01 8.578148e+01 lineto -6.498324e+01 8.417492e+01 lineto -6.41486e+01 8.415165e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.386533e+01 8.224834e+01 moveto -6.41486e+01 8.415165e+01 lineto -6.498324e+01 8.417492e+01 lineto -6.497766e+01 8.227935e+01 lineto -6.386533e+01 8.224834e+01 lineto -closepath -gsave -5.624513e-01 5.624513e-01 5.624513e-01 setrgbcolor -fill -grestore -newpath -6.386533e+01 8.224834e+01 moveto -6.41486e+01 8.415165e+01 lineto -6.498324e+01 8.417492e+01 lineto -6.497766e+01 8.227935e+01 lineto -6.386533e+01 8.224834e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.500583e+01 5.024405e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.471572e+01 5.010982e+00 lineto -6.500583e+01 5.024405e+00 lineto -closepath -gsave -5.115678e-01 5.115678e-01 5.115678e-01 setrgbcolor -fill -grestore -newpath -6.500583e+01 5.024405e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.471572e+01 5.010982e+00 lineto -6.500583e+01 5.024405e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.501161e+01 6.359012e+00 moveto -6.500583e+01 5.024405e+00 lineto -6.471572e+01 5.010982e+00 lineto -6.443359e+01 6.33227e+00 lineto -6.501161e+01 6.359012e+00 lineto -closepath -gsave -5.297203e-01 5.297203e-01 5.297203e-01 setrgbcolor -fill -grestore -newpath -6.501161e+01 6.359012e+00 moveto -6.500583e+01 5.024405e+00 lineto -6.471572e+01 5.010982e+00 lineto -6.443359e+01 6.33227e+00 lineto -6.501161e+01 6.359012e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.50173e+01 7.99372e+00 moveto -6.501161e+01 6.359012e+00 lineto -6.443359e+01 6.33227e+00 lineto -6.415575e+01 7.953859e+00 lineto -6.50173e+01 7.99372e+00 lineto -closepath -gsave -5.488593e-01 5.488593e-01 5.488593e-01 setrgbcolor -fill -grestore -newpath -6.50173e+01 7.99372e+00 moveto -6.501161e+01 6.359012e+00 lineto -6.443359e+01 6.33227e+00 lineto -6.415575e+01 7.953859e+00 lineto -6.50173e+01 7.99372e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.502286e+01 9.916152e+00 moveto -6.50173e+01 7.99372e+00 lineto -6.415575e+01 7.953859e+00 lineto -6.38843e+01 9.863474e+00 lineto -6.502286e+01 9.916152e+00 lineto -closepath -gsave -5.686685e-01 5.686685e-01 5.686685e-01 setrgbcolor -fill -grestore -newpath -6.502286e+01 9.916152e+00 moveto -6.50173e+01 7.99372e+00 lineto -6.415575e+01 7.953859e+00 lineto -6.38843e+01 9.863474e+00 lineto -6.502286e+01 9.916152e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.502825e+01 1.211175e+01 moveto -6.502286e+01 9.916152e+00 lineto -6.38843e+01 9.863474e+00 lineto -6.36213e+01 1.204666e+01 lineto -6.502825e+01 1.211175e+01 lineto -closepath -gsave -5.887786e-01 5.887786e-01 5.887786e-01 setrgbcolor -fill -grestore -newpath -6.502825e+01 1.211175e+01 moveto -6.502286e+01 9.916152e+00 lineto -6.38843e+01 9.863474e+00 lineto -6.36213e+01 1.204666e+01 lineto -6.502825e+01 1.211175e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.503343e+01 1.456391e+01 moveto -6.502825e+01 1.211175e+01 lineto -6.36213e+01 1.204666e+01 lineto -6.336873e+01 1.448689e+01 lineto -6.503343e+01 1.456391e+01 lineto -closepath -gsave -6.087781e-01 6.087781e-01 6.087781e-01 setrgbcolor -fill -grestore -newpath -6.503343e+01 1.456391e+01 moveto -6.502825e+01 1.211175e+01 lineto -6.36213e+01 1.204666e+01 lineto -6.336873e+01 1.448689e+01 lineto -6.503343e+01 1.456391e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.503835e+01 1.725404e+01 moveto -6.503343e+01 1.456391e+01 lineto -6.336873e+01 1.448689e+01 lineto -6.312852e+01 1.716568e+01 lineto -6.503835e+01 1.725404e+01 lineto -closepath -gsave -6.282263e-01 6.282263e-01 6.282263e-01 setrgbcolor -fill -grestore -newpath -6.503835e+01 1.725404e+01 moveto -6.503343e+01 1.456391e+01 lineto -6.336873e+01 1.448689e+01 lineto -6.312852e+01 1.716568e+01 lineto -6.503835e+01 1.725404e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.504298e+01 2.01618e+01 moveto -6.503835e+01 1.725404e+01 lineto -6.312852e+01 1.716568e+01 lineto -6.290247e+01 2.006276e+01 lineto -6.504298e+01 2.01618e+01 lineto -closepath -gsave -6.466678e-01 6.466678e-01 6.466678e-01 setrgbcolor -fill -grestore -newpath -6.504298e+01 2.01618e+01 moveto -6.503835e+01 1.725404e+01 lineto -6.312852e+01 1.716568e+01 lineto -6.290247e+01 2.006276e+01 lineto -6.504298e+01 2.01618e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.504729e+01 2.326516e+01 moveto -6.504298e+01 2.01618e+01 lineto -6.290247e+01 2.006276e+01 lineto -6.26923e+01 2.31562e+01 lineto -6.504729e+01 2.326516e+01 lineto -closepath -gsave -6.636501e-01 6.636501e-01 6.636501e-01 setrgbcolor -fill -grestore -newpath -6.504729e+01 2.326516e+01 moveto -6.504298e+01 2.01618e+01 lineto -6.290247e+01 2.006276e+01 lineto -6.26923e+01 2.31562e+01 lineto -6.504729e+01 2.326516e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.505124e+01 2.654063e+01 moveto -6.504729e+01 2.326516e+01 lineto -6.26923e+01 2.31562e+01 lineto -6.24996e+01 2.642258e+01 lineto -6.505124e+01 2.654063e+01 lineto -closepath -gsave -6.787394e-01 6.787394e-01 6.787394e-01 setrgbcolor -fill -grestore -newpath -6.505124e+01 2.654063e+01 moveto -6.504729e+01 2.326516e+01 lineto -6.26923e+01 2.31562e+01 lineto -6.24996e+01 2.642258e+01 lineto -6.505124e+01 2.654063e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.50548e+01 2.996343e+01 moveto -6.505124e+01 2.654063e+01 lineto -6.24996e+01 2.642258e+01 lineto -6.232583e+01 2.983717e+01 lineto -6.50548e+01 2.996343e+01 lineto -closepath -gsave -6.915389e-01 6.915389e-01 6.915389e-01 setrgbcolor -fill -grestore -newpath -6.50548e+01 2.996343e+01 moveto -6.505124e+01 2.654063e+01 lineto -6.24996e+01 2.642258e+01 lineto -6.232583e+01 2.983717e+01 lineto -6.50548e+01 2.996343e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.505795e+01 3.350762e+01 moveto -6.50548e+01 2.996343e+01 lineto -6.232583e+01 2.983717e+01 lineto -6.217231e+01 3.337411e+01 lineto -6.505795e+01 3.350762e+01 lineto -closepath -gsave -7.017033e-01 7.017033e-01 7.017033e-01 setrgbcolor -fill -grestore -newpath -6.505795e+01 3.350762e+01 moveto -6.50548e+01 2.996343e+01 lineto -6.232583e+01 2.983717e+01 lineto -6.217231e+01 3.337411e+01 lineto -6.505795e+01 3.350762e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.506065e+01 3.714639e+01 moveto -6.505795e+01 3.350762e+01 lineto -6.217231e+01 3.337411e+01 lineto -6.204019e+01 3.700664e+01 lineto -6.506065e+01 3.714639e+01 lineto -closepath -gsave -7.08954e-01 7.08954e-01 7.08954e-01 setrgbcolor -fill -grestore -newpath -6.506065e+01 3.714639e+01 moveto -6.505795e+01 3.350762e+01 lineto -6.217231e+01 3.337411e+01 lineto -6.204019e+01 3.700664e+01 lineto -6.506065e+01 3.714639e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.50629e+01 4.085218e+01 moveto -6.506065e+01 3.714639e+01 lineto -6.204019e+01 3.700664e+01 lineto -6.193048e+01 4.070726e+01 lineto -6.50629e+01 4.085218e+01 lineto -closepath -gsave -7.130897e-01 7.130897e-01 7.130897e-01 setrgbcolor -fill -grestore -newpath -6.50629e+01 4.085218e+01 moveto -6.506065e+01 3.714639e+01 lineto -6.204019e+01 3.700664e+01 lineto -6.193048e+01 4.070726e+01 lineto -6.50629e+01 4.085218e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.506467e+01 4.459695e+01 moveto -6.50629e+01 4.085218e+01 lineto -6.193048e+01 4.070726e+01 lineto -6.1844e+01 4.444794e+01 lineto -6.506467e+01 4.459695e+01 lineto -closepath -gsave -7.139951e-01 7.139951e-01 7.139951e-01 setrgbcolor -fill -grestore -newpath -6.506467e+01 4.459695e+01 moveto -6.50629e+01 4.085218e+01 lineto -6.193048e+01 4.070726e+01 lineto -6.1844e+01 4.444794e+01 lineto -6.506467e+01 4.459695e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.506596e+01 4.835233e+01 moveto -6.506467e+01 4.459695e+01 lineto -6.1844e+01 4.444794e+01 lineto -6.178142e+01 4.820037e+01 lineto -6.506596e+01 4.835233e+01 lineto -closepath -gsave -7.116454e-01 7.116454e-01 7.116454e-01 setrgbcolor -fill -grestore -newpath -6.506596e+01 4.835233e+01 moveto -6.506467e+01 4.459695e+01 lineto -6.1844e+01 4.444794e+01 lineto -6.178142e+01 4.820037e+01 lineto -6.506596e+01 4.835233e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.506674e+01 5.208991e+01 moveto -6.506596e+01 4.835233e+01 lineto -6.178142e+01 4.820037e+01 lineto -6.174321e+01 5.193614e+01 lineto -6.506674e+01 5.208991e+01 lineto -closepath -gsave -7.061075e-01 7.061075e-01 7.061075e-01 setrgbcolor -fill -grestore -newpath -6.506674e+01 5.208991e+01 moveto -6.506596e+01 4.835233e+01 lineto -6.178142e+01 4.820037e+01 lineto -6.174321e+01 5.193614e+01 lineto -6.506674e+01 5.208991e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.506702e+01 5.578139e+01 moveto -6.506674e+01 5.208991e+01 lineto -6.174321e+01 5.193614e+01 lineto -6.172965e+01 5.562698e+01 lineto -6.506702e+01 5.578139e+01 lineto -closepath -gsave -6.975369e-01 6.975369e-01 6.975369e-01 setrgbcolor -fill -grestore -newpath -6.506702e+01 5.578139e+01 moveto -6.506674e+01 5.208991e+01 lineto -6.174321e+01 5.193614e+01 lineto -6.172965e+01 5.562698e+01 lineto -6.506702e+01 5.578139e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.506679e+01 5.939881e+01 moveto -6.506702e+01 5.578139e+01 lineto -6.172965e+01 5.562698e+01 lineto -6.174085e+01 5.924493e+01 lineto -6.506679e+01 5.939881e+01 lineto -closepath -gsave -6.861716e-01 6.861716e-01 6.861716e-01 setrgbcolor -fill -grestore -newpath -6.506679e+01 5.939881e+01 moveto -6.506702e+01 5.578139e+01 lineto -6.172965e+01 5.562698e+01 lineto -6.174085e+01 5.924493e+01 lineto -6.506679e+01 5.939881e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.506605e+01 6.29148e+01 moveto -6.506679e+01 5.939881e+01 lineto -6.174085e+01 5.924493e+01 lineto -6.177672e+01 6.276262e+01 lineto -6.506605e+01 6.29148e+01 lineto -closepath -gsave -6.723214e-01 6.723214e-01 6.723214e-01 setrgbcolor -fill -grestore -newpath -6.506605e+01 6.29148e+01 moveto -6.506679e+01 5.939881e+01 lineto -6.174085e+01 5.924493e+01 lineto -6.177672e+01 6.276262e+01 lineto -6.506605e+01 6.29148e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.506482e+01 6.630274e+01 moveto -6.506605e+01 6.29148e+01 lineto -6.177672e+01 6.276262e+01 lineto -6.183699e+01 6.61534e+01 lineto -6.506482e+01 6.630274e+01 lineto -closepath -gsave -6.563562e-01 6.563562e-01 6.563562e-01 setrgbcolor -fill -grestore -newpath -6.506482e+01 6.630274e+01 moveto -6.506605e+01 6.29148e+01 lineto -6.177672e+01 6.276262e+01 lineto -6.183699e+01 6.61534e+01 lineto -6.506482e+01 6.630274e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.506309e+01 6.953698e+01 moveto -6.506482e+01 6.630274e+01 lineto -6.183699e+01 6.61534e+01 lineto -6.192121e+01 6.939161e+01 lineto -6.506309e+01 6.953698e+01 lineto -closepath -gsave -6.386902e-01 6.386902e-01 6.386902e-01 setrgbcolor -fill -grestore -newpath -6.506309e+01 6.953698e+01 moveto -6.506482e+01 6.630274e+01 lineto -6.183699e+01 6.61534e+01 lineto -6.192121e+01 6.939161e+01 lineto -6.506309e+01 6.953698e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.506089e+01 7.259303e+01 moveto -6.506309e+01 6.953698e+01 lineto -6.192121e+01 6.939161e+01 lineto -6.202874e+01 7.245274e+01 lineto -6.506089e+01 7.259303e+01 lineto -closepath -gsave -6.197662e-01 6.197662e-01 6.197662e-01 setrgbcolor -fill -grestore -newpath -6.506089e+01 7.259303e+01 moveto -6.506309e+01 6.953698e+01 lineto -6.192121e+01 6.939161e+01 lineto -6.202874e+01 7.245274e+01 lineto -6.506089e+01 7.259303e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.505822e+01 7.544776e+01 moveto -6.506089e+01 7.259303e+01 lineto -6.202874e+01 7.245274e+01 lineto -6.215876e+01 7.531361e+01 lineto -6.505822e+01 7.544776e+01 lineto -closepath -gsave -6.000386e-01 6.000386e-01 6.000386e-01 setrgbcolor -fill -grestore -newpath -6.505822e+01 7.544776e+01 moveto -6.506089e+01 7.259303e+01 lineto -6.202874e+01 7.245274e+01 lineto -6.215876e+01 7.531361e+01 lineto -6.505822e+01 7.544776e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.505512e+01 7.807956e+01 moveto -6.505822e+01 7.544776e+01 lineto -6.215876e+01 7.531361e+01 lineto -6.231029e+01 7.795257e+01 lineto -6.505512e+01 7.807956e+01 lineto -closepath -gsave -5.799564e-01 5.799564e-01 5.799564e-01 setrgbcolor -fill -grestore -newpath -6.505512e+01 7.807956e+01 moveto -6.505822e+01 7.544776e+01 lineto -6.215876e+01 7.531361e+01 lineto -6.231029e+01 7.795257e+01 lineto -6.505512e+01 7.807956e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.50516e+01 8.04685e+01 moveto -6.505512e+01 7.807956e+01 lineto -6.231029e+01 7.795257e+01 lineto -6.248218e+01 8.034962e+01 lineto -6.50516e+01 8.04685e+01 lineto -closepath -gsave -5.599476e-01 5.599476e-01 5.599476e-01 setrgbcolor -fill -grestore -newpath -6.50516e+01 8.04685e+01 moveto -6.505512e+01 7.807956e+01 lineto -6.231029e+01 7.795257e+01 lineto -6.248218e+01 8.034962e+01 lineto -6.50516e+01 8.04685e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.504768e+01 8.25965e+01 moveto -6.50516e+01 8.04685e+01 lineto -6.248218e+01 8.034962e+01 lineto -6.267313e+01 8.248664e+01 lineto -6.504768e+01 8.25965e+01 lineto -closepath -gsave -5.40405e-01 5.40405e-01 5.40405e-01 setrgbcolor -fill -grestore -newpath -6.504768e+01 8.25965e+01 moveto -6.50516e+01 8.04685e+01 lineto -6.248218e+01 8.034962e+01 lineto -6.267313e+01 8.248664e+01 lineto -6.504768e+01 8.25965e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.504341e+01 8.444745e+01 moveto -6.504768e+01 8.25965e+01 lineto -6.267313e+01 8.248664e+01 lineto -6.28817e+01 8.434744e+01 lineto -6.504341e+01 8.444745e+01 lineto -closepath -gsave -5.216747e-01 5.216747e-01 5.216747e-01 setrgbcolor -fill -grestore -newpath -6.504341e+01 8.444745e+01 moveto -6.504768e+01 8.25965e+01 lineto -6.267313e+01 8.248664e+01 lineto -6.28817e+01 8.434744e+01 lineto -6.504341e+01 8.444745e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.503881e+01 8.600734e+01 moveto -6.504341e+01 8.444745e+01 lineto -6.28817e+01 8.434744e+01 lineto -6.31063e+01 8.591793e+01 lineto -6.503881e+01 8.600734e+01 lineto -closepath -gsave -5.040466e-01 5.040466e-01 5.040466e-01 setrgbcolor -fill -grestore -newpath -6.503881e+01 8.600734e+01 moveto -6.504341e+01 8.444745e+01 lineto -6.28817e+01 8.434744e+01 lineto -6.31063e+01 8.591793e+01 lineto -6.503881e+01 8.600734e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.503391e+01 8.726435e+01 moveto -6.503881e+01 8.600734e+01 lineto -6.31063e+01 8.591793e+01 lineto -6.334525e+01 8.718622e+01 lineto -6.503391e+01 8.726435e+01 lineto -closepath -gsave -4.877491e-01 4.877491e-01 4.877491e-01 setrgbcolor -fill -grestore -newpath -6.503391e+01 8.726435e+01 moveto -6.503881e+01 8.600734e+01 lineto -6.31063e+01 8.591793e+01 lineto -6.334525e+01 8.718622e+01 lineto -6.503391e+01 8.726435e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.502876e+01 8.820897e+01 moveto -6.503391e+01 8.726435e+01 lineto -6.334525e+01 8.718622e+01 lineto -6.359671e+01 8.814272e+01 lineto -6.502876e+01 8.820897e+01 lineto -closepath -gsave -4.729454e-01 4.729454e-01 4.729454e-01 setrgbcolor -fill -grestore -newpath -6.502876e+01 8.820897e+01 moveto -6.503391e+01 8.726435e+01 lineto -6.334525e+01 8.718622e+01 lineto -6.359671e+01 8.814272e+01 lineto -6.502876e+01 8.820897e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.502339e+01 8.883405e+01 moveto -6.502876e+01 8.820897e+01 lineto -6.359671e+01 8.814272e+01 lineto -6.385881e+01 8.878017e+01 lineto -6.502339e+01 8.883405e+01 lineto -closepath -gsave -4.597348e-01 4.597348e-01 4.597348e-01 setrgbcolor -fill -grestore -newpath -6.502339e+01 8.883405e+01 moveto -6.502876e+01 8.820897e+01 lineto -6.359671e+01 8.814272e+01 lineto -6.385881e+01 8.878017e+01 lineto -6.502339e+01 8.883405e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.501784e+01 8.913486e+01 moveto -6.502339e+01 8.883405e+01 lineto -6.385881e+01 8.878017e+01 lineto -6.412954e+01 8.909377e+01 lineto -6.501784e+01 8.913486e+01 lineto -closepath -gsave -4.481553e-01 4.481553e-01 4.481553e-01 setrgbcolor -fill -grestore -newpath -6.501784e+01 8.913486e+01 moveto -6.502339e+01 8.883405e+01 lineto -6.385881e+01 8.878017e+01 lineto -6.412954e+01 8.909377e+01 lineto -6.501784e+01 8.913486e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.498894e+01 8.578148e+01 moveto -6.499473e+01 8.708689e+01 lineto -6.525721e+01 8.709903e+01 lineto -6.553964e+01 8.580696e+01 lineto -6.498894e+01 8.578148e+01 lineto -closepath -gsave -5.279409e-01 5.279409e-01 5.279409e-01 setrgbcolor -fill -grestore -newpath -6.498894e+01 8.578148e+01 moveto -6.499473e+01 8.708689e+01 lineto -6.525721e+01 8.709903e+01 lineto -6.553964e+01 8.580696e+01 lineto -6.498894e+01 8.578148e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.498324e+01 8.417492e+01 moveto -6.498894e+01 8.578148e+01 lineto -6.553964e+01 8.580696e+01 lineto -6.581798e+01 8.421354e+01 lineto -6.498324e+01 8.417492e+01 lineto -closepath -gsave -5.469985e-01 5.469985e-01 5.469985e-01 setrgbcolor -fill -grestore -newpath -6.498324e+01 8.417492e+01 moveto -6.498894e+01 8.578148e+01 lineto -6.553964e+01 8.580696e+01 lineto -6.581798e+01 8.421354e+01 lineto -6.498324e+01 8.417492e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.497766e+01 8.227935e+01 moveto -6.498324e+01 8.417492e+01 lineto -6.581798e+01 8.421354e+01 lineto -6.609013e+01 8.233082e+01 lineto -6.497766e+01 8.227935e+01 lineto -closepath -gsave -5.667589e-01 5.667589e-01 5.667589e-01 setrgbcolor -fill -grestore -newpath -6.497766e+01 8.227935e+01 moveto -6.498324e+01 8.417492e+01 lineto -6.581798e+01 8.421354e+01 lineto -6.609013e+01 8.233082e+01 lineto -6.497766e+01 8.227935e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.471572e+01 5.010982e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.442737e+01 4.992307e+00 lineto -6.471572e+01 5.010982e+00 lineto -closepath -gsave -5.120086e-01 5.120086e-01 5.120086e-01 setrgbcolor -fill -grestore -newpath -6.471572e+01 5.010982e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.442737e+01 4.992307e+00 lineto -6.471572e+01 5.010982e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.443359e+01 6.33227e+00 moveto -6.471572e+01 5.010982e+00 lineto -6.442737e+01 4.992307e+00 lineto -6.385907e+01 6.295061e+00 lineto -6.443359e+01 6.33227e+00 lineto -closepath -gsave -5.311824e-01 5.311824e-01 5.311824e-01 setrgbcolor -fill -grestore -newpath -6.443359e+01 6.33227e+00 moveto -6.471572e+01 5.010982e+00 lineto -6.442737e+01 4.992307e+00 lineto -6.385907e+01 6.295061e+00 lineto -6.443359e+01 6.33227e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.415575e+01 7.953859e+00 moveto -6.443359e+01 6.33227e+00 lineto -6.385907e+01 6.295061e+00 lineto -6.32994e+01 7.898398e+00 lineto -6.415575e+01 7.953859e+00 lineto -closepath -gsave -5.515226e-01 5.515226e-01 5.515226e-01 setrgbcolor -fill -grestore -newpath -6.415575e+01 7.953859e+00 moveto -6.443359e+01 6.33227e+00 lineto -6.385907e+01 6.295061e+00 lineto -6.32994e+01 7.898398e+00 lineto -6.415575e+01 7.953859e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.38843e+01 9.863474e+00 moveto -6.415575e+01 7.953859e+00 lineto -6.32994e+01 7.898398e+00 lineto -6.275262e+01 9.790182e+00 lineto -6.38843e+01 9.863474e+00 lineto -closepath -gsave -5.726979e-01 5.726979e-01 5.726979e-01 setrgbcolor -fill -grestore -newpath -6.38843e+01 9.863474e+00 moveto -6.415575e+01 7.953859e+00 lineto -6.32994e+01 7.898398e+00 lineto -6.275262e+01 9.790182e+00 lineto -6.38843e+01 9.863474e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.36213e+01 1.204666e+01 moveto -6.38843e+01 9.863474e+00 lineto -6.275262e+01 9.790182e+00 lineto -6.222284e+01 1.195609e+01 lineto -6.36213e+01 1.204666e+01 lineto -closepath -gsave -5.943163e-01 5.943163e-01 5.943163e-01 setrgbcolor -fill -grestore -newpath -6.36213e+01 1.204666e+01 moveto -6.38843e+01 9.863474e+00 lineto -6.275262e+01 9.790182e+00 lineto -6.222284e+01 1.195609e+01 lineto -6.36213e+01 1.204666e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.336873e+01 1.448689e+01 moveto -6.36213e+01 1.204666e+01 lineto -6.222284e+01 1.195609e+01 lineto -6.171409e+01 1.437972e+01 lineto -6.336873e+01 1.448689e+01 lineto -closepath -gsave -6.159356e-01 6.159356e-01 6.159356e-01 setrgbcolor -fill -grestore -newpath -6.336873e+01 1.448689e+01 moveto -6.36213e+01 1.204666e+01 lineto -6.222284e+01 1.195609e+01 lineto -6.171409e+01 1.437972e+01 lineto -6.336873e+01 1.448689e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.312852e+01 1.716568e+01 moveto -6.336873e+01 1.448689e+01 lineto -6.171409e+01 1.437972e+01 lineto -6.123022e+01 1.704274e+01 lineto -6.312852e+01 1.716568e+01 lineto -closepath -gsave -6.370775e-01 6.370775e-01 6.370775e-01 setrgbcolor -fill -grestore -newpath -6.312852e+01 1.716568e+01 moveto -6.336873e+01 1.448689e+01 lineto -6.171409e+01 1.437972e+01 lineto -6.123022e+01 1.704274e+01 lineto -6.312852e+01 1.716568e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.290247e+01 2.006276e+01 moveto -6.312852e+01 1.716568e+01 lineto -6.123022e+01 1.704274e+01 lineto -6.077489e+01 1.992497e+01 lineto -6.290247e+01 2.006276e+01 lineto -closepath -gsave -6.572438e-01 6.572438e-01 6.572438e-01 setrgbcolor -fill -grestore -newpath -6.290247e+01 2.006276e+01 moveto -6.312852e+01 1.716568e+01 lineto -6.123022e+01 1.704274e+01 lineto -6.077489e+01 1.992497e+01 lineto -6.290247e+01 2.006276e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.26923e+01 2.31562e+01 moveto -6.290247e+01 2.006276e+01 lineto -6.077489e+01 1.992497e+01 lineto -6.035154e+01 2.30046e+01 lineto -6.26923e+01 2.31562e+01 lineto -closepath -gsave -6.759351e-01 6.759351e-01 6.759351e-01 setrgbcolor -fill -grestore -newpath -6.26923e+01 2.31562e+01 moveto -6.290247e+01 2.006276e+01 lineto -6.077489e+01 1.992497e+01 lineto -6.035154e+01 2.30046e+01 lineto -6.26923e+01 2.31562e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.24996e+01 2.642258e+01 moveto -6.26923e+01 2.31562e+01 lineto -6.035154e+01 2.30046e+01 lineto -5.996338e+01 2.625832e+01 lineto -6.24996e+01 2.642258e+01 lineto -closepath -gsave -6.92669e-01 6.92669e-01 6.92669e-01 setrgbcolor -fill -grestore -newpath -6.24996e+01 2.642258e+01 moveto -6.26923e+01 2.31562e+01 lineto -6.035154e+01 2.30046e+01 lineto -5.996338e+01 2.625832e+01 lineto -6.24996e+01 2.642258e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.232583e+01 2.983717e+01 moveto -6.24996e+01 2.642258e+01 lineto -5.996338e+01 2.625832e+01 lineto -5.961335e+01 2.966149e+01 lineto -6.232583e+01 2.983717e+01 lineto -closepath -gsave -7.069997e-01 7.069997e-01 7.069997e-01 setrgbcolor -fill -grestore -newpath -6.232583e+01 2.983717e+01 moveto -6.24996e+01 2.642258e+01 lineto -5.996338e+01 2.625832e+01 lineto -5.961335e+01 2.966149e+01 lineto -6.232583e+01 2.983717e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.217231e+01 3.337411e+01 moveto -6.232583e+01 2.983717e+01 lineto -5.961335e+01 2.966149e+01 lineto -5.93041e+01 3.318835e+01 lineto -6.217231e+01 3.337411e+01 lineto -closepath -gsave -7.185358e-01 7.185358e-01 7.185358e-01 setrgbcolor -fill -grestore -newpath -6.217231e+01 3.337411e+01 moveto -6.232583e+01 2.983717e+01 lineto -5.961335e+01 2.966149e+01 lineto -5.93041e+01 3.318835e+01 lineto -6.217231e+01 3.337411e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.204019e+01 3.700664e+01 moveto -6.217231e+01 3.337411e+01 lineto -5.93041e+01 3.318835e+01 lineto -5.903797e+01 3.68122e+01 lineto -6.204019e+01 3.700664e+01 lineto -closepath -gsave -7.269561e-01 7.269561e-01 7.269561e-01 setrgbcolor -fill -grestore -newpath -6.204019e+01 3.700664e+01 moveto -6.217231e+01 3.337411e+01 lineto -5.93041e+01 3.318835e+01 lineto -5.903797e+01 3.68122e+01 lineto -6.204019e+01 3.700664e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.193048e+01 4.070726e+01 moveto -6.204019e+01 3.700664e+01 lineto -5.903797e+01 3.68122e+01 lineto -5.881698e+01 4.050561e+01 lineto -6.193048e+01 4.070726e+01 lineto -closepath -gsave -7.320233e-01 7.320233e-01 7.320233e-01 setrgbcolor -fill -grestore -newpath -6.193048e+01 4.070726e+01 moveto -6.204019e+01 3.700664e+01 lineto -5.903797e+01 3.68122e+01 lineto -5.881698e+01 4.050561e+01 lineto -6.193048e+01 4.070726e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.1844e+01 4.444794e+01 moveto -6.193048e+01 4.070726e+01 lineto -5.881698e+01 4.050561e+01 lineto -5.864279e+01 4.424061e+01 lineto -6.1844e+01 4.444794e+01 lineto -closepath -gsave -7.335937e-01 7.335937e-01 7.335937e-01 setrgbcolor -fill -grestore -newpath -6.1844e+01 4.444794e+01 moveto -6.193048e+01 4.070726e+01 lineto -5.881698e+01 4.050561e+01 lineto -5.864279e+01 4.424061e+01 lineto -6.1844e+01 4.444794e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.178142e+01 4.820037e+01 moveto -6.1844e+01 4.444794e+01 lineto -5.864279e+01 4.424061e+01 lineto -5.851673e+01 4.798893e+01 lineto -6.178142e+01 4.820037e+01 lineto -closepath -gsave -7.31623e-01 7.31623e-01 7.31623e-01 setrgbcolor -fill -grestore -newpath -6.178142e+01 4.820037e+01 moveto -6.1844e+01 4.444794e+01 lineto -5.864279e+01 4.424061e+01 lineto -5.851673e+01 4.798893e+01 lineto -6.178142e+01 4.820037e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.174321e+01 5.193614e+01 moveto -6.178142e+01 4.820037e+01 lineto -5.851673e+01 4.798893e+01 lineto -5.843976e+01 5.17222e+01 lineto -6.174321e+01 5.193614e+01 lineto -closepath -gsave -7.261685e-01 7.261685e-01 7.261685e-01 setrgbcolor -fill -grestore -newpath -6.174321e+01 5.193614e+01 moveto -6.178142e+01 4.820037e+01 lineto -5.851673e+01 4.798893e+01 lineto -5.843976e+01 5.17222e+01 lineto -6.174321e+01 5.193614e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.172965e+01 5.562698e+01 moveto -6.174321e+01 5.193614e+01 lineto -5.843976e+01 5.17222e+01 lineto -5.841244e+01 5.541214e+01 lineto -6.172965e+01 5.562698e+01 lineto -closepath -gsave -7.173863e-01 7.173863e-01 7.173863e-01 setrgbcolor -fill -grestore -newpath -6.172965e+01 5.562698e+01 moveto -6.174321e+01 5.193614e+01 lineto -5.843976e+01 5.17222e+01 lineto -5.841244e+01 5.541214e+01 lineto -6.172965e+01 5.562698e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.174085e+01 5.924493e+01 moveto -6.172965e+01 5.562698e+01 lineto -5.841244e+01 5.541214e+01 lineto -5.8435e+01 5.903083e+01 lineto -6.174085e+01 5.924493e+01 lineto -closepath -gsave -7.055248e-01 7.055248e-01 7.055248e-01 setrgbcolor -fill -grestore -newpath -6.174085e+01 5.924493e+01 moveto -6.172965e+01 5.562698e+01 lineto -5.841244e+01 5.541214e+01 lineto -5.8435e+01 5.903083e+01 lineto -6.174085e+01 5.924493e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.177672e+01 6.276262e+01 moveto -6.174085e+01 5.924493e+01 lineto -5.8435e+01 5.903083e+01 lineto -5.850726e+01 6.255087e+01 lineto -6.177672e+01 6.276262e+01 lineto -closepath -gsave -6.909141e-01 6.909141e-01 6.909141e-01 setrgbcolor -fill -grestore -newpath -6.177672e+01 6.276262e+01 moveto -6.174085e+01 5.924493e+01 lineto -5.8435e+01 5.903083e+01 lineto -5.850726e+01 6.255087e+01 lineto -6.177672e+01 6.276262e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.183699e+01 6.61534e+01 moveto -6.177672e+01 6.276262e+01 lineto -5.850726e+01 6.255087e+01 lineto -5.862867e+01 6.594561e+01 lineto -6.183699e+01 6.61534e+01 lineto -closepath -gsave -6.739524e-01 6.739524e-01 6.739524e-01 setrgbcolor -fill -grestore -newpath -6.183699e+01 6.61534e+01 moveto -6.177672e+01 6.276262e+01 lineto -5.850726e+01 6.255087e+01 lineto -5.862867e+01 6.594561e+01 lineto -6.183699e+01 6.61534e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.192121e+01 6.939161e+01 moveto -6.183699e+01 6.61534e+01 lineto -5.862867e+01 6.594561e+01 lineto -5.879831e+01 6.918936e+01 lineto -6.192121e+01 6.939161e+01 lineto -closepath -gsave -6.550897e-01 6.550897e-01 6.550897e-01 setrgbcolor -fill -grestore -newpath -6.192121e+01 6.939161e+01 moveto -6.183699e+01 6.61534e+01 lineto -5.862867e+01 6.594561e+01 lineto -5.879831e+01 6.918936e+01 lineto -6.192121e+01 6.939161e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.202874e+01 7.245274e+01 moveto -6.192121e+01 6.939161e+01 lineto -5.879831e+01 6.918936e+01 lineto -5.90149e+01 7.225755e+01 lineto -6.202874e+01 7.245274e+01 lineto -closepath -gsave -6.348097e-01 6.348097e-01 6.348097e-01 setrgbcolor -fill -grestore -newpath -6.202874e+01 7.245274e+01 moveto -6.192121e+01 6.939161e+01 lineto -5.879831e+01 6.918936e+01 lineto -5.90149e+01 7.225755e+01 lineto -6.202874e+01 7.245274e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.215876e+01 7.531361e+01 moveto -6.202874e+01 7.245274e+01 lineto -5.90149e+01 7.225755e+01 lineto -5.927681e+01 7.512697e+01 lineto -6.215876e+01 7.531361e+01 lineto -closepath -gsave -6.136112e-01 6.136112e-01 6.136112e-01 setrgbcolor -fill -grestore -newpath -6.215876e+01 7.531361e+01 moveto -6.202874e+01 7.245274e+01 lineto -5.90149e+01 7.225755e+01 lineto -5.927681e+01 7.512697e+01 lineto -6.215876e+01 7.531361e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.231029e+01 7.795257e+01 moveto -6.215876e+01 7.531361e+01 lineto -5.927681e+01 7.512697e+01 lineto -5.958204e+01 7.777587e+01 lineto -6.231029e+01 7.795257e+01 lineto -closepath -gsave -5.919889e-01 5.919889e-01 5.919889e-01 setrgbcolor -fill -grestore -newpath -6.231029e+01 7.795257e+01 moveto -6.215876e+01 7.531361e+01 lineto -5.927681e+01 7.512697e+01 lineto -5.958204e+01 7.777587e+01 lineto -6.231029e+01 7.795257e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.248218e+01 8.034962e+01 moveto -6.231029e+01 7.795257e+01 lineto -5.958204e+01 7.777587e+01 lineto -5.992828e+01 8.018422e+01 lineto -6.248218e+01 8.034962e+01 lineto -closepath -gsave -5.704163e-01 5.704163e-01 5.704163e-01 setrgbcolor -fill -grestore -newpath -6.248218e+01 8.034962e+01 moveto -6.231029e+01 7.795257e+01 lineto -5.958204e+01 7.777587e+01 lineto -5.992828e+01 8.018422e+01 lineto -6.248218e+01 8.034962e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.267313e+01 8.248664e+01 moveto -6.248218e+01 8.034962e+01 lineto -5.992828e+01 8.018422e+01 lineto -6.031293e+01 8.233378e+01 lineto -6.267313e+01 8.248664e+01 lineto -closepath -gsave -5.493291e-01 5.493291e-01 5.493291e-01 setrgbcolor -fill -grestore -newpath -6.267313e+01 8.248664e+01 moveto -6.248218e+01 8.034962e+01 lineto -5.992828e+01 8.018422e+01 lineto -6.031293e+01 8.233378e+01 lineto -6.267313e+01 8.248664e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.28817e+01 8.434744e+01 moveto -6.267313e+01 8.248664e+01 lineto -6.031293e+01 8.233378e+01 lineto -6.073305e+01 8.420828e+01 lineto -6.28817e+01 8.434744e+01 lineto -closepath -gsave -5.291121e-01 5.291121e-01 5.291121e-01 setrgbcolor -fill -grestore -newpath -6.28817e+01 8.434744e+01 moveto -6.267313e+01 8.248664e+01 lineto -6.031293e+01 8.233378e+01 lineto -6.073305e+01 8.420828e+01 lineto -6.28817e+01 8.434744e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.31063e+01 8.591793e+01 moveto -6.28817e+01 8.434744e+01 lineto -6.073305e+01 8.420828e+01 lineto -6.118548e+01 8.579353e+01 lineto -6.31063e+01 8.591793e+01 lineto -closepath -gsave -5.100888e-01 5.100888e-01 5.100888e-01 setrgbcolor -fill -grestore -newpath -6.31063e+01 8.591793e+01 moveto -6.28817e+01 8.434744e+01 lineto -6.073305e+01 8.420828e+01 lineto -6.118548e+01 8.579353e+01 lineto -6.31063e+01 8.591793e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.334525e+01 8.718622e+01 moveto -6.31063e+01 8.591793e+01 lineto -6.118548e+01 8.579353e+01 lineto -6.166678e+01 8.707752e+01 lineto -6.334525e+01 8.718622e+01 lineto -closepath -gsave -4.925139e-01 4.925139e-01 4.925139e-01 setrgbcolor -fill -grestore -newpath -6.334525e+01 8.718622e+01 moveto -6.31063e+01 8.591793e+01 lineto -6.118548e+01 8.579353e+01 lineto -6.166678e+01 8.707752e+01 lineto -6.334525e+01 8.718622e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.359671e+01 8.814272e+01 moveto -6.334525e+01 8.718622e+01 lineto -6.166678e+01 8.707752e+01 lineto -6.217332e+01 8.805053e+01 lineto -6.359671e+01 8.814272e+01 lineto -closepath -gsave -4.765707e-01 4.765707e-01 4.765707e-01 setrgbcolor -fill -grestore -newpath -6.359671e+01 8.814272e+01 moveto -6.334525e+01 8.718622e+01 lineto -6.166678e+01 8.707752e+01 lineto -6.217332e+01 8.805053e+01 lineto -6.359671e+01 8.814272e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.385881e+01 8.878017e+01 moveto -6.359671e+01 8.814272e+01 lineto -6.217332e+01 8.805053e+01 lineto -6.270126e+01 8.870521e+01 lineto -6.385881e+01 8.878017e+01 lineto -closepath -gsave -4.623705e-01 4.623705e-01 4.623705e-01 setrgbcolor -fill -grestore -newpath -6.385881e+01 8.878017e+01 moveto -6.359671e+01 8.814272e+01 lineto -6.217332e+01 8.805053e+01 lineto -6.270126e+01 8.870521e+01 lineto -6.385881e+01 8.878017e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.412954e+01 8.909377e+01 moveto -6.385881e+01 8.878017e+01 lineto -6.270126e+01 8.870521e+01 lineto -6.32466e+01 8.903658e+01 lineto -6.412954e+01 8.909377e+01 lineto -closepath -gsave -4.499564e-01 4.499564e-01 4.499564e-01 setrgbcolor -fill -grestore -newpath -6.412954e+01 8.909377e+01 moveto -6.385881e+01 8.878017e+01 lineto -6.270126e+01 8.870521e+01 lineto -6.32466e+01 8.903658e+01 lineto -6.412954e+01 8.909377e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.553964e+01 8.580696e+01 moveto -6.525721e+01 8.709903e+01 lineto -6.551811e+01 8.711593e+01 lineto -6.6087e+01 8.584241e+01 lineto -6.553964e+01 8.580696e+01 lineto -closepath -gsave -5.292976e-01 5.292976e-01 5.292976e-01 setrgbcolor -fill -grestore -newpath -6.553964e+01 8.580696e+01 moveto -6.525721e+01 8.709903e+01 lineto -6.551811e+01 8.711593e+01 lineto -6.6087e+01 8.584241e+01 lineto -6.553964e+01 8.580696e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.581798e+01 8.421354e+01 moveto -6.553964e+01 8.580696e+01 lineto -6.6087e+01 8.584241e+01 lineto -6.664767e+01 8.426727e+01 lineto -6.581798e+01 8.421354e+01 lineto -closepath -gsave -5.495397e-01 5.495397e-01 5.495397e-01 setrgbcolor -fill -grestore -newpath -6.581798e+01 8.421354e+01 moveto -6.553964e+01 8.580696e+01 lineto -6.6087e+01 8.584241e+01 lineto -6.664767e+01 8.426727e+01 lineto -6.581798e+01 8.421354e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.609013e+01 8.233082e+01 moveto -6.581798e+01 8.421354e+01 lineto -6.664767e+01 8.426727e+01 lineto -6.719587e+01 8.240243e+01 lineto -6.609013e+01 8.233082e+01 lineto -closepath -gsave -5.706514e-01 5.706514e-01 5.706514e-01 setrgbcolor -fill -grestore -newpath -6.609013e+01 8.233082e+01 moveto -6.581798e+01 8.421354e+01 lineto -6.664767e+01 8.426727e+01 lineto -6.719587e+01 8.240243e+01 lineto -6.609013e+01 8.233082e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.442737e+01 4.992307e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.414254e+01 4.968494e+00 lineto -6.442737e+01 4.992307e+00 lineto -closepath -gsave -5.123925e-01 5.123925e-01 5.123925e-01 setrgbcolor -fill -grestore -newpath -6.442737e+01 4.992307e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.414254e+01 4.968494e+00 lineto -6.442737e+01 4.992307e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.385907e+01 6.295061e+00 moveto -6.442737e+01 4.992307e+00 lineto -6.414254e+01 4.968494e+00 lineto -6.329158e+01 6.247616e+00 lineto -6.385907e+01 6.295061e+00 lineto -closepath -gsave -5.324617e-01 5.324617e-01 5.324617e-01 setrgbcolor -fill -grestore -newpath -6.385907e+01 6.295061e+00 moveto -6.442737e+01 4.992307e+00 lineto -6.414254e+01 4.968494e+00 lineto -6.329158e+01 6.247616e+00 lineto -6.385907e+01 6.295061e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.32994e+01 7.898398e+00 moveto -6.385907e+01 6.295061e+00 lineto -6.329158e+01 6.247616e+00 lineto -6.245354e+01 7.82768e+00 lineto -6.32994e+01 7.898398e+00 lineto -closepath -gsave -5.538622e-01 5.538622e-01 5.538622e-01 setrgbcolor -fill -grestore -newpath -6.32994e+01 7.898398e+00 moveto -6.385907e+01 6.295061e+00 lineto -6.329158e+01 6.247616e+00 lineto -6.245354e+01 7.82768e+00 lineto -6.32994e+01 7.898398e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.275262e+01 9.790182e+00 moveto -6.32994e+01 7.898398e+00 lineto -6.245354e+01 7.82768e+00 lineto -6.163479e+01 9.696725e+00 lineto -6.275262e+01 9.790182e+00 lineto -closepath -gsave -5.762507e-01 5.762507e-01 5.762507e-01 setrgbcolor -fill -grestore -newpath -6.275262e+01 9.790182e+00 moveto -6.32994e+01 7.898398e+00 lineto -6.245354e+01 7.82768e+00 lineto -6.163479e+01 9.696725e+00 lineto -6.275262e+01 9.790182e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.222284e+01 1.195609e+01 moveto -6.275262e+01 9.790182e+00 lineto -6.163479e+01 9.696725e+00 lineto -6.084151e+01 1.18406e+01 lineto -6.222284e+01 1.195609e+01 lineto -closepath -gsave -5.99215e-01 5.99215e-01 5.99215e-01 setrgbcolor -fill -grestore -newpath -6.222284e+01 1.195609e+01 moveto -6.275262e+01 9.790182e+00 lineto -6.163479e+01 9.696725e+00 lineto -6.084151e+01 1.18406e+01 lineto -6.222284e+01 1.195609e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.171409e+01 1.437972e+01 moveto -6.222284e+01 1.195609e+01 lineto -6.084151e+01 1.18406e+01 lineto -6.007971e+01 1.424308e+01 lineto -6.171409e+01 1.437972e+01 lineto -closepath -gsave -6.222859e-01 6.222859e-01 6.222859e-01 setrgbcolor -fill -grestore -newpath -6.171409e+01 1.437972e+01 moveto -6.222284e+01 1.195609e+01 lineto -6.084151e+01 1.18406e+01 lineto -6.007971e+01 1.424308e+01 lineto -6.171409e+01 1.437972e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.123022e+01 1.704274e+01 moveto -6.171409e+01 1.437972e+01 lineto -6.007971e+01 1.424308e+01 lineto -5.935517e+01 1.688597e+01 lineto -6.123022e+01 1.704274e+01 lineto -closepath -gsave -6.449515e-01 6.449515e-01 6.449515e-01 setrgbcolor -fill -grestore -newpath -6.123022e+01 1.704274e+01 moveto -6.171409e+01 1.437972e+01 lineto -6.007971e+01 1.424308e+01 lineto -5.935517e+01 1.688597e+01 lineto -6.123022e+01 1.704274e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.077489e+01 1.992497e+01 moveto -6.123022e+01 1.704274e+01 lineto -5.935517e+01 1.688597e+01 lineto -5.867335e+01 1.974927e+01 lineto -6.077489e+01 1.992497e+01 lineto -closepath -gsave -6.66675e-01 6.66675e-01 6.66675e-01 setrgbcolor -fill -grestore -newpath -6.077489e+01 1.992497e+01 moveto -6.123022e+01 1.704274e+01 lineto -5.935517e+01 1.688597e+01 lineto -5.867335e+01 1.974927e+01 lineto -6.077489e+01 1.992497e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.035154e+01 2.30046e+01 moveto -6.077489e+01 1.992497e+01 lineto -5.867335e+01 1.974927e+01 lineto -5.803943e+01 2.28113e+01 lineto -6.035154e+01 2.30046e+01 lineto -closepath -gsave -6.869143e-01 6.869143e-01 6.869143e-01 setrgbcolor -fill -grestore -newpath -6.035154e+01 2.30046e+01 moveto -6.077489e+01 1.992497e+01 lineto -5.867335e+01 1.974927e+01 lineto -5.803943e+01 2.28113e+01 lineto -6.035154e+01 2.30046e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.996338e+01 2.625832e+01 moveto -6.035154e+01 2.30046e+01 lineto -5.803943e+01 2.28113e+01 lineto -5.745821e+01 2.604888e+01 lineto -5.996338e+01 2.625832e+01 lineto -closepath -gsave -7.051425e-01 7.051425e-01 7.051425e-01 setrgbcolor -fill -grestore -newpath -5.996338e+01 2.625832e+01 moveto -6.035154e+01 2.30046e+01 lineto -5.803943e+01 2.28113e+01 lineto -5.745821e+01 2.604888e+01 lineto -5.996338e+01 2.625832e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.961335e+01 2.966149e+01 moveto -5.996338e+01 2.625832e+01 lineto -5.745821e+01 2.604888e+01 lineto -5.693408e+01 2.943749e+01 lineto -5.961335e+01 2.966149e+01 lineto -closepath -gsave -7.208692e-01 7.208692e-01 7.208692e-01 setrgbcolor -fill -grestore -newpath -5.961335e+01 2.966149e+01 moveto -5.996338e+01 2.625832e+01 lineto -5.745821e+01 2.604888e+01 lineto -5.693408e+01 2.943749e+01 lineto -5.961335e+01 2.966149e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.93041e+01 3.318835e+01 moveto -5.961335e+01 2.966149e+01 lineto -5.693408e+01 2.943749e+01 lineto -5.647101e+01 3.295149e+01 lineto -5.93041e+01 3.318835e+01 lineto -closepath -gsave -7.336599e-01 7.336599e-01 7.336599e-01 setrgbcolor -fill -grestore -newpath -5.93041e+01 3.318835e+01 moveto -5.961335e+01 2.966149e+01 lineto -5.693408e+01 2.943749e+01 lineto -5.647101e+01 3.295149e+01 lineto -5.93041e+01 3.318835e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.903797e+01 3.68122e+01 moveto -5.93041e+01 3.318835e+01 lineto -5.647101e+01 3.295149e+01 lineto -5.607251e+01 3.656428e+01 lineto -5.903797e+01 3.68122e+01 lineto -closepath -gsave -7.431544e-01 7.431544e-01 7.431544e-01 setrgbcolor -fill -grestore -newpath -5.903797e+01 3.68122e+01 moveto -5.93041e+01 3.318835e+01 lineto -5.647101e+01 3.295149e+01 lineto -5.607251e+01 3.656428e+01 lineto -5.903797e+01 3.68122e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.881698e+01 4.050561e+01 moveto -5.903797e+01 3.68122e+01 lineto -5.607251e+01 3.656428e+01 lineto -5.57416e+01 4.024849e+01 lineto -5.881698e+01 4.050561e+01 lineto -closepath -gsave -7.490815e-01 7.490815e-01 7.490815e-01 setrgbcolor -fill -grestore -newpath -5.881698e+01 4.050561e+01 moveto -5.903797e+01 3.68122e+01 lineto -5.607251e+01 3.656428e+01 lineto -5.57416e+01 4.024849e+01 lineto -5.881698e+01 4.050561e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.864279e+01 4.424061e+01 moveto -5.881698e+01 4.050561e+01 lineto -5.57416e+01 4.024849e+01 lineto -5.548077e+01 4.397625e+01 lineto -5.864279e+01 4.424061e+01 lineto -closepath -gsave -7.512708e-01 7.512708e-01 7.512708e-01 setrgbcolor -fill -grestore -newpath -5.864279e+01 4.424061e+01 moveto -5.881698e+01 4.050561e+01 lineto -5.57416e+01 4.024849e+01 lineto -5.548077e+01 4.397625e+01 lineto -5.864279e+01 4.424061e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.851673e+01 4.798893e+01 moveto -5.864279e+01 4.424061e+01 lineto -5.548077e+01 4.397625e+01 lineto -5.529202e+01 4.771933e+01 lineto -5.851673e+01 4.798893e+01 lineto -closepath -gsave -7.496594e-01 7.496594e-01 7.496594e-01 setrgbcolor -fill -grestore -newpath -5.851673e+01 4.798893e+01 moveto -5.864279e+01 4.424061e+01 lineto -5.548077e+01 4.397625e+01 lineto -5.529202e+01 4.771933e+01 lineto -5.851673e+01 4.798893e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.843976e+01 5.17222e+01 moveto -5.851673e+01 4.798893e+01 lineto -5.529202e+01 4.771933e+01 lineto -5.517675e+01 5.144939e+01 lineto -5.843976e+01 5.17222e+01 lineto -closepath -gsave -7.442951e-01 7.442951e-01 7.442951e-01 setrgbcolor -fill -grestore -newpath -5.843976e+01 5.17222e+01 moveto -5.851673e+01 4.798893e+01 lineto -5.529202e+01 4.771933e+01 lineto -5.517675e+01 5.144939e+01 lineto -5.843976e+01 5.17222e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.841244e+01 5.541214e+01 moveto -5.843976e+01 5.17222e+01 lineto -5.517675e+01 5.144939e+01 lineto -5.513585e+01 5.51382e+01 lineto -5.841244e+01 5.541214e+01 lineto -closepath -gsave -7.353337e-01 7.353337e-01 7.353337e-01 setrgbcolor -fill -grestore -newpath -5.841244e+01 5.541214e+01 moveto -5.843976e+01 5.17222e+01 lineto -5.517675e+01 5.144939e+01 lineto -5.513585e+01 5.51382e+01 lineto -5.841244e+01 5.541214e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.8435e+01 5.903083e+01 moveto -5.841244e+01 5.541214e+01 lineto -5.513585e+01 5.51382e+01 lineto -5.516963e+01 5.875783e+01 lineto -5.8435e+01 5.903083e+01 lineto -closepath -gsave -7.230328e-01 7.230328e-01 7.230328e-01 setrgbcolor -fill -grestore -newpath -5.8435e+01 5.903083e+01 moveto -5.841244e+01 5.541214e+01 lineto -5.513585e+01 5.51382e+01 lineto -5.516963e+01 5.875783e+01 lineto -5.8435e+01 5.903083e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.850726e+01 6.255087e+01 moveto -5.8435e+01 5.903083e+01 lineto -5.516963e+01 5.875783e+01 lineto -5.527783e+01 6.228087e+01 lineto -5.850726e+01 6.255087e+01 lineto -closepath -gsave -7.077403e-01 7.077403e-01 7.077403e-01 setrgbcolor -fill -grestore -newpath -5.850726e+01 6.255087e+01 moveto -5.8435e+01 5.903083e+01 lineto -5.516963e+01 5.875783e+01 lineto -5.527783e+01 6.228087e+01 lineto -5.850726e+01 6.255087e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.862867e+01 6.594561e+01 moveto -5.850726e+01 6.255087e+01 lineto -5.527783e+01 6.228087e+01 lineto -5.545962e+01 6.568066e+01 lineto -5.862867e+01 6.594561e+01 lineto -closepath -gsave -6.898802e-01 6.898802e-01 6.898802e-01 setrgbcolor -fill -grestore -newpath -5.862867e+01 6.594561e+01 moveto -5.850726e+01 6.255087e+01 lineto -5.527783e+01 6.228087e+01 lineto -5.545962e+01 6.568066e+01 lineto -5.862867e+01 6.594561e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.879831e+01 6.918936e+01 moveto -5.862867e+01 6.594561e+01 lineto -5.545962e+01 6.568066e+01 lineto -5.571365e+01 6.893147e+01 lineto -5.879831e+01 6.918936e+01 lineto -closepath -gsave -6.699348e-01 6.699348e-01 6.699348e-01 setrgbcolor -fill -grestore -newpath -5.879831e+01 6.918936e+01 moveto -5.862867e+01 6.594561e+01 lineto -5.545962e+01 6.568066e+01 lineto -5.571365e+01 6.893147e+01 lineto -5.879831e+01 6.918936e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.90149e+01 7.225755e+01 moveto -5.879831e+01 6.918936e+01 lineto -5.571365e+01 6.893147e+01 lineto -5.603797e+01 7.200867e+01 lineto -5.90149e+01 7.225755e+01 lineto -closepath -gsave -6.484253e-01 6.484253e-01 6.484253e-01 setrgbcolor -fill -grestore -newpath -5.90149e+01 7.225755e+01 moveto -5.879831e+01 6.918936e+01 lineto -5.571365e+01 6.893147e+01 lineto -5.603797e+01 7.200867e+01 lineto -5.90149e+01 7.225755e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.927681e+01 7.512697e+01 moveto -5.90149e+01 7.225755e+01 lineto -5.603797e+01 7.200867e+01 lineto -5.643014e+01 7.488897e+01 lineto -5.927681e+01 7.512697e+01 lineto -closepath -gsave -6.258912e-01 6.258912e-01 6.258912e-01 setrgbcolor -fill -grestore -newpath -5.927681e+01 7.512697e+01 moveto -5.90149e+01 7.225755e+01 lineto -5.603797e+01 7.200867e+01 lineto -5.643014e+01 7.488897e+01 lineto -5.927681e+01 7.512697e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.958204e+01 7.777587e+01 moveto -5.927681e+01 7.512697e+01 lineto -5.643014e+01 7.488897e+01 lineto -5.688719e+01 7.755057e+01 lineto -5.958204e+01 7.777587e+01 lineto -closepath -gsave -6.028694e-01 6.028694e-01 6.028694e-01 setrgbcolor -fill -grestore -newpath -5.958204e+01 7.777587e+01 moveto -5.927681e+01 7.512697e+01 lineto -5.643014e+01 7.488897e+01 lineto -5.688719e+01 7.755057e+01 lineto -5.958204e+01 7.777587e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.992828e+01 8.018422e+01 moveto -5.958204e+01 7.777587e+01 lineto -5.688719e+01 7.755057e+01 lineto -5.740566e+01 7.997332e+01 lineto -5.992828e+01 8.018422e+01 lineto -closepath -gsave -5.798751e-01 5.798751e-01 5.798751e-01 setrgbcolor -fill -grestore -newpath -5.992828e+01 8.018422e+01 moveto -5.958204e+01 7.777587e+01 lineto -5.688719e+01 7.755057e+01 lineto -5.740566e+01 7.997332e+01 lineto -5.992828e+01 8.018422e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.031293e+01 8.233378e+01 moveto -5.992828e+01 8.018422e+01 lineto -5.740566e+01 7.997332e+01 lineto -5.798162e+01 8.213887e+01 lineto -6.031293e+01 8.233378e+01 lineto -closepath -gsave -5.573836e-01 5.573836e-01 5.573836e-01 setrgbcolor -fill -grestore -newpath -6.031293e+01 8.233378e+01 moveto -5.992828e+01 8.018422e+01 lineto -5.740566e+01 7.997332e+01 lineto -5.798162e+01 8.213887e+01 lineto -6.031293e+01 8.233378e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.073305e+01 8.420828e+01 moveto -6.031293e+01 8.233378e+01 lineto -5.798162e+01 8.213887e+01 lineto -5.861071e+01 8.403084e+01 lineto -6.073305e+01 8.420828e+01 lineto -closepath -gsave -5.358155e-01 5.358155e-01 5.358155e-01 setrgbcolor -fill -grestore -newpath -6.073305e+01 8.420828e+01 moveto -6.031293e+01 8.233378e+01 lineto -5.798162e+01 8.213887e+01 lineto -5.861071e+01 8.403084e+01 lineto -6.073305e+01 8.420828e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.118548e+01 8.579353e+01 moveto -6.073305e+01 8.420828e+01 lineto -5.861071e+01 8.403084e+01 lineto -5.928817e+01 8.56349e+01 lineto -6.118548e+01 8.579353e+01 lineto -closepath -gsave -5.155248e-01 5.155248e-01 5.155248e-01 setrgbcolor -fill -grestore -newpath -6.118548e+01 8.579353e+01 moveto -6.073305e+01 8.420828e+01 lineto -5.861071e+01 8.403084e+01 lineto -5.928817e+01 8.56349e+01 lineto -6.118548e+01 8.579353e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.166678e+01 8.707752e+01 moveto -6.118548e+01 8.579353e+01 lineto -5.928817e+01 8.56349e+01 lineto -6.000887e+01 8.693891e+01 lineto -6.166678e+01 8.707752e+01 lineto -closepath -gsave -4.967915e-01 4.967915e-01 4.967915e-01 setrgbcolor -fill -grestore -newpath -6.166678e+01 8.707752e+01 moveto -6.118548e+01 8.579353e+01 lineto -5.928817e+01 8.56349e+01 lineto -6.000887e+01 8.693891e+01 lineto -6.166678e+01 8.707752e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.217332e+01 8.805053e+01 moveto -6.166678e+01 8.707752e+01 lineto -6.000887e+01 8.693891e+01 lineto -6.076736e+01 8.793299e+01 lineto -6.217332e+01 8.805053e+01 lineto -closepath -gsave -4.798165e-01 4.798165e-01 4.798165e-01 setrgbcolor -fill -grestore -newpath -6.217332e+01 8.805053e+01 moveto -6.166678e+01 8.707752e+01 lineto -6.000887e+01 8.693891e+01 lineto -6.076736e+01 8.793299e+01 lineto -6.217332e+01 8.805053e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.270126e+01 8.870521e+01 moveto -6.217332e+01 8.805053e+01 lineto -6.076736e+01 8.793299e+01 lineto -6.155789e+01 8.860961e+01 lineto -6.270126e+01 8.870521e+01 lineto -closepath -gsave -4.647226e-01 4.647226e-01 4.647226e-01 setrgbcolor -fill -grestore -newpath -6.270126e+01 8.870521e+01 moveto -6.217332e+01 8.805053e+01 lineto -6.076736e+01 8.793299e+01 lineto -6.155789e+01 8.860961e+01 lineto -6.270126e+01 8.870521e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.32466e+01 8.903658e+01 moveto -6.270126e+01 8.870521e+01 lineto -6.155789e+01 8.860961e+01 lineto -6.237448e+01 8.896367e+01 lineto -6.32466e+01 8.903658e+01 lineto -closepath -gsave -4.515573e-01 4.515573e-01 4.515573e-01 setrgbcolor -fill -grestore -newpath -6.32466e+01 8.903658e+01 moveto -6.270126e+01 8.870521e+01 lineto -6.155789e+01 8.860961e+01 lineto -6.237448e+01 8.896367e+01 lineto -6.32466e+01 8.903658e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.6087e+01 8.584241e+01 moveto -6.551811e+01 8.711593e+01 lineto -6.577581e+01 8.713747e+01 lineto -6.662767e+01 8.588761e+01 lineto -6.6087e+01 8.584241e+01 lineto -closepath -gsave -5.304842e-01 5.304842e-01 5.304842e-01 setrgbcolor -fill -grestore -newpath -6.6087e+01 8.584241e+01 moveto -6.551811e+01 8.711593e+01 lineto -6.577581e+01 8.713747e+01 lineto -6.662767e+01 8.588761e+01 lineto -6.6087e+01 8.584241e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.664767e+01 8.426727e+01 moveto -6.6087e+01 8.584241e+01 lineto -6.662767e+01 8.588761e+01 lineto -6.746721e+01 8.433579e+01 lineto -6.664767e+01 8.426727e+01 lineto -closepath -gsave -5.517713e-01 5.517713e-01 5.517713e-01 setrgbcolor -fill -grestore -newpath -6.664767e+01 8.426727e+01 moveto -6.6087e+01 8.584241e+01 lineto -6.662767e+01 8.588761e+01 lineto -6.746721e+01 8.433579e+01 lineto -6.664767e+01 8.426727e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.719587e+01 8.240243e+01 moveto -6.664767e+01 8.426727e+01 lineto -6.746721e+01 8.433579e+01 lineto -6.828808e+01 8.249374e+01 lineto -6.719587e+01 8.240243e+01 lineto -closepath -gsave -5.740823e-01 5.740823e-01 5.740823e-01 setrgbcolor -fill -grestore -newpath -6.719587e+01 8.240243e+01 moveto -6.664767e+01 8.426727e+01 lineto -6.746721e+01 8.433579e+01 lineto -6.828808e+01 8.249374e+01 lineto -6.719587e+01 8.240243e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.414254e+01 4.968494e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.386301e+01 4.939691e+00 lineto -6.414254e+01 4.968494e+00 lineto -closepath -gsave -5.127169e-01 5.127169e-01 5.127169e-01 setrgbcolor -fill -grestore -newpath -6.414254e+01 4.968494e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.386301e+01 4.939691e+00 lineto -6.414254e+01 4.968494e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.329158e+01 6.247616e+00 moveto -6.414254e+01 4.968494e+00 lineto -6.386301e+01 4.939691e+00 lineto -6.273462e+01 6.190226e+00 lineto -6.329158e+01 6.247616e+00 lineto -closepath -gsave -5.335465e-01 5.335465e-01 5.335465e-01 setrgbcolor -fill -grestore -newpath -6.329158e+01 6.247616e+00 moveto -6.414254e+01 4.968494e+00 lineto -6.386301e+01 4.939691e+00 lineto -6.273462e+01 6.190226e+00 lineto -6.329158e+01 6.247616e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.245354e+01 7.82768e+00 moveto -6.329158e+01 6.247616e+00 lineto -6.273462e+01 6.190226e+00 lineto -6.162338e+01 7.742139e+00 lineto -6.245354e+01 7.82768e+00 lineto -closepath -gsave -5.55853e-01 5.55853e-01 5.55853e-01 setrgbcolor -fill -grestore -newpath -6.245354e+01 7.82768e+00 moveto -6.329158e+01 6.247616e+00 lineto -6.273462e+01 6.190226e+00 lineto -6.162338e+01 7.742139e+00 lineto -6.245354e+01 7.82768e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.163479e+01 9.696725e+00 moveto -6.245354e+01 7.82768e+00 lineto -6.162338e+01 7.742139e+00 lineto -6.053771e+01 9.58368e+00 lineto -6.163479e+01 9.696725e+00 lineto -closepath -gsave -5.79283e-01 5.79283e-01 5.79283e-01 setrgbcolor -fill -grestore -newpath -6.163479e+01 9.696725e+00 moveto -6.245354e+01 7.82768e+00 lineto -6.162338e+01 7.742139e+00 lineto -6.053771e+01 9.58368e+00 lineto -6.163479e+01 9.696725e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.084151e+01 1.18406e+01 moveto -6.163479e+01 9.696725e+00 lineto -6.053771e+01 9.58368e+00 lineto -5.948582e+01 1.170091e+01 lineto -6.084151e+01 1.18406e+01 lineto -closepath -gsave -6.034077e-01 6.034077e-01 6.034077e-01 setrgbcolor -fill -grestore -newpath -6.084151e+01 1.18406e+01 moveto -6.163479e+01 9.696725e+00 lineto -6.053771e+01 9.58368e+00 lineto -5.948582e+01 1.170091e+01 lineto -6.084151e+01 1.18406e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.007971e+01 1.424308e+01 moveto -6.084151e+01 1.18406e+01 lineto -5.948582e+01 1.170091e+01 lineto -5.847567e+01 1.40778e+01 lineto -6.007971e+01 1.424308e+01 lineto -closepath -gsave -6.277345e-01 6.277345e-01 6.277345e-01 setrgbcolor -fill -grestore -newpath -6.007971e+01 1.424308e+01 moveto -6.084151e+01 1.18406e+01 lineto -5.948582e+01 1.170091e+01 lineto -5.847567e+01 1.40778e+01 lineto -6.007971e+01 1.424308e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.935517e+01 1.688597e+01 moveto -6.007971e+01 1.424308e+01 lineto -5.847567e+01 1.40778e+01 lineto -5.751491e+01 1.669635e+01 lineto -5.935517e+01 1.688597e+01 lineto -closepath -gsave -6.517226e-01 6.517226e-01 6.517226e-01 setrgbcolor -fill -grestore -newpath -5.935517e+01 1.688597e+01 moveto -6.007971e+01 1.424308e+01 lineto -5.847567e+01 1.40778e+01 lineto -5.751491e+01 1.669635e+01 lineto -5.935517e+01 1.688597e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.867335e+01 1.974927e+01 moveto -5.935517e+01 1.688597e+01 lineto -5.751491e+01 1.669635e+01 lineto -5.661082e+01 1.953675e+01 lineto -5.867335e+01 1.974927e+01 lineto -closepath -gsave -6.748016e-01 6.748016e-01 6.748016e-01 setrgbcolor -fill -grestore -newpath -5.867335e+01 1.974927e+01 moveto -5.935517e+01 1.688597e+01 lineto -5.751491e+01 1.669635e+01 lineto -5.661082e+01 1.953675e+01 lineto -5.867335e+01 1.974927e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.803943e+01 2.28113e+01 moveto -5.867335e+01 1.974927e+01 lineto -5.661082e+01 1.953675e+01 lineto -5.577024e+01 2.257748e+01 lineto -5.803943e+01 2.28113e+01 lineto -closepath -gsave -6.963921e-01 6.963921e-01 6.963921e-01 setrgbcolor -fill -grestore -newpath -5.803943e+01 2.28113e+01 moveto -5.867335e+01 1.974927e+01 lineto -5.661082e+01 1.953675e+01 lineto -5.577024e+01 2.257748e+01 lineto -5.803943e+01 2.28113e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.745821e+01 2.604888e+01 moveto -5.803943e+01 2.28113e+01 lineto -5.577024e+01 2.257748e+01 lineto -5.499954e+01 2.579553e+01 lineto -5.745821e+01 2.604888e+01 lineto -closepath -gsave -7.159281e-01 7.159281e-01 7.159281e-01 setrgbcolor -fill -grestore -newpath -5.745821e+01 2.604888e+01 moveto -5.803943e+01 2.28113e+01 lineto -5.577024e+01 2.257748e+01 lineto -5.499954e+01 2.579553e+01 lineto -5.745821e+01 2.604888e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.693408e+01 2.943749e+01 moveto -5.745821e+01 2.604888e+01 lineto -5.499954e+01 2.579553e+01 lineto -5.430454e+01 2.916654e+01 lineto -5.693408e+01 2.943749e+01 lineto -closepath -gsave -7.328796e-01 7.328796e-01 7.328796e-01 setrgbcolor -fill -grestore -newpath -5.693408e+01 2.943749e+01 moveto -5.745821e+01 2.604888e+01 lineto -5.499954e+01 2.579553e+01 lineto -5.430454e+01 2.916654e+01 lineto -5.693408e+01 2.943749e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.647101e+01 3.295149e+01 moveto -5.693408e+01 2.943749e+01 lineto -5.430454e+01 2.916654e+01 lineto -5.369051e+01 3.266499e+01 lineto -5.647101e+01 3.295149e+01 lineto -closepath -gsave -7.467743e-01 7.467743e-01 7.467743e-01 setrgbcolor -fill -grestore -newpath -5.647101e+01 3.295149e+01 moveto -5.693408e+01 2.943749e+01 lineto -5.430454e+01 2.916654e+01 lineto -5.369051e+01 3.266499e+01 lineto -5.647101e+01 3.295149e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.607251e+01 3.656428e+01 moveto -5.647101e+01 3.295149e+01 lineto -5.369051e+01 3.266499e+01 lineto -5.316209e+01 3.626438e+01 lineto -5.607251e+01 3.656428e+01 lineto -closepath -gsave -7.572169e-01 7.572169e-01 7.572169e-01 setrgbcolor -fill -grestore -newpath -5.607251e+01 3.656428e+01 moveto -5.647101e+01 3.295149e+01 lineto -5.369051e+01 3.266499e+01 lineto -5.316209e+01 3.626438e+01 lineto -5.607251e+01 3.656428e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.57416e+01 4.024849e+01 moveto -5.607251e+01 3.656428e+01 lineto -5.316209e+01 3.626438e+01 lineto -5.27233e+01 3.993748e+01 lineto -5.57416e+01 4.024849e+01 lineto -closepath -gsave -7.639062e-01 7.639062e-01 7.639062e-01 setrgbcolor -fill -grestore -newpath -5.57416e+01 4.024849e+01 moveto -5.607251e+01 3.656428e+01 lineto -5.316209e+01 3.626438e+01 lineto -5.27233e+01 3.993748e+01 lineto -5.57416e+01 4.024849e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.548077e+01 4.397625e+01 moveto -5.57416e+01 4.024849e+01 lineto -5.27233e+01 3.993748e+01 lineto -5.237745e+01 4.365648e+01 lineto -5.548077e+01 4.397625e+01 lineto -closepath -gsave -7.666476e-01 7.666476e-01 7.666476e-01 setrgbcolor -fill -grestore -newpath -5.548077e+01 4.397625e+01 moveto -5.57416e+01 4.024849e+01 lineto -5.27233e+01 3.993748e+01 lineto -5.237745e+01 4.365648e+01 lineto -5.548077e+01 4.397625e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.529202e+01 4.771933e+01 moveto -5.548077e+01 4.397625e+01 lineto -5.237745e+01 4.365648e+01 lineto -5.212715e+01 4.739322e+01 lineto -5.529202e+01 4.771933e+01 lineto -closepath -gsave -7.653614e-01 7.653614e-01 7.653614e-01 setrgbcolor -fill -grestore -newpath -5.529202e+01 4.771933e+01 moveto -5.548077e+01 4.397625e+01 lineto -5.237745e+01 4.365648e+01 lineto -5.212715e+01 4.739322e+01 lineto -5.529202e+01 4.771933e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.517675e+01 5.144939e+01 moveto -5.529202e+01 4.771933e+01 lineto -5.212715e+01 4.739322e+01 lineto -5.197431e+01 5.111941e+01 lineto -5.517675e+01 5.144939e+01 lineto -closepath -gsave -7.600863e-01 7.600863e-01 7.600863e-01 setrgbcolor -fill -grestore -newpath -5.517675e+01 5.144939e+01 moveto -5.529202e+01 4.771933e+01 lineto -5.212715e+01 4.739322e+01 lineto -5.197431e+01 5.111941e+01 lineto -5.517675e+01 5.144939e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.513585e+01 5.51382e+01 moveto -5.517675e+01 5.144939e+01 lineto -5.197431e+01 5.111941e+01 lineto -5.192008e+01 5.480684e+01 lineto -5.513585e+01 5.51382e+01 lineto -closepath -gsave -7.509776e-01 7.509776e-01 7.509776e-01 setrgbcolor -fill -grestore -newpath -5.513585e+01 5.51382e+01 moveto -5.517675e+01 5.144939e+01 lineto -5.197431e+01 5.111941e+01 lineto -5.192008e+01 5.480684e+01 lineto -5.513585e+01 5.51382e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.516963e+01 5.875783e+01 moveto -5.513585e+01 5.51382e+01 lineto -5.192008e+01 5.480684e+01 lineto -5.196486e+01 5.84276e+01 lineto -5.516963e+01 5.875783e+01 lineto -closepath -gsave -7.383002e-01 7.383002e-01 7.383002e-01 setrgbcolor -fill -grestore -newpath -5.516963e+01 5.875783e+01 moveto -5.513585e+01 5.51382e+01 lineto -5.192008e+01 5.480684e+01 lineto -5.196486e+01 5.84276e+01 lineto -5.516963e+01 5.875783e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.527783e+01 6.228087e+01 moveto -5.516963e+01 5.875783e+01 lineto -5.196486e+01 5.84276e+01 lineto -5.210833e+01 6.195428e+01 lineto -5.527783e+01 6.228087e+01 lineto -closepath -gsave -7.224176e-01 7.224176e-01 7.224176e-01 setrgbcolor -fill -grestore -newpath -5.527783e+01 6.228087e+01 moveto -5.516963e+01 5.875783e+01 lineto -5.196486e+01 5.84276e+01 lineto -5.210833e+01 6.195428e+01 lineto -5.527783e+01 6.228087e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.545962e+01 6.568066e+01 moveto -5.527783e+01 6.228087e+01 lineto -5.210833e+01 6.195428e+01 lineto -5.23494e+01 6.536018e+01 lineto -5.545962e+01 6.568066e+01 lineto -closepath -gsave -7.037762e-01 7.037762e-01 7.037762e-01 setrgbcolor -fill -grestore -newpath -5.545962e+01 6.568066e+01 moveto -5.527783e+01 6.228087e+01 lineto -5.210833e+01 6.195428e+01 lineto -5.23494e+01 6.536018e+01 lineto -5.545962e+01 6.568066e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.571365e+01 6.893147e+01 moveto -5.545962e+01 6.568066e+01 lineto -5.23494e+01 6.536018e+01 lineto -5.268624e+01 6.861952e+01 lineto -5.571365e+01 6.893147e+01 lineto -closepath -gsave -6.828866e-01 6.828866e-01 6.828866e-01 setrgbcolor -fill -grestore -newpath -5.571365e+01 6.893147e+01 moveto -5.545962e+01 6.568066e+01 lineto -5.23494e+01 6.536018e+01 lineto -5.268624e+01 6.861952e+01 lineto -5.571365e+01 6.893147e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.603797e+01 7.200867e+01 moveto -5.571365e+01 6.893147e+01 lineto -5.268624e+01 6.861952e+01 lineto -5.311629e+01 7.170761e+01 lineto -5.603797e+01 7.200867e+01 lineto -closepath -gsave -6.603031e-01 6.603031e-01 6.603031e-01 setrgbcolor -fill -grestore -newpath -5.603797e+01 7.200867e+01 moveto -5.571365e+01 6.893147e+01 lineto -5.268624e+01 6.861952e+01 lineto -5.311629e+01 7.170761e+01 lineto -5.603797e+01 7.200867e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.643014e+01 7.488897e+01 moveto -5.603797e+01 7.200867e+01 lineto -5.311629e+01 7.170761e+01 lineto -5.363631e+01 7.460109e+01 lineto -5.643014e+01 7.488897e+01 lineto -closepath -gsave -6.366008e-01 6.366008e-01 6.366008e-01 setrgbcolor -fill -grestore -newpath -5.643014e+01 7.488897e+01 moveto -5.603797e+01 7.200867e+01 lineto -5.311629e+01 7.170761e+01 lineto -5.363631e+01 7.460109e+01 lineto -5.643014e+01 7.488897e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.688719e+01 7.755057e+01 moveto -5.643014e+01 7.488897e+01 lineto -5.363631e+01 7.460109e+01 lineto -5.424236e+01 7.727804e+01 lineto -5.688719e+01 7.755057e+01 lineto -closepath -gsave -6.123541e-01 6.123541e-01 6.123541e-01 setrgbcolor -fill -grestore -newpath -5.688719e+01 7.755057e+01 moveto -5.643014e+01 7.488897e+01 lineto -5.363631e+01 7.460109e+01 lineto -5.424236e+01 7.727804e+01 lineto -5.688719e+01 7.755057e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.740566e+01 7.997332e+01 moveto -5.688719e+01 7.755057e+01 lineto -5.424236e+01 7.727804e+01 lineto -5.492985e+01 7.971821e+01 lineto -5.740566e+01 7.997332e+01 lineto -closepath -gsave -5.881149e-01 5.881149e-01 5.881149e-01 setrgbcolor -fill -grestore -newpath -5.740566e+01 7.997332e+01 moveto -5.688719e+01 7.755057e+01 lineto -5.424236e+01 7.727804e+01 lineto -5.492985e+01 7.971821e+01 lineto -5.740566e+01 7.997332e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.798162e+01 8.213887e+01 moveto -5.740566e+01 7.997332e+01 lineto -5.492985e+01 7.971821e+01 lineto -5.569358e+01 8.190311e+01 lineto -5.798162e+01 8.213887e+01 lineto -closepath -gsave -5.643938e-01 5.643938e-01 5.643938e-01 setrgbcolor -fill -grestore -newpath -5.798162e+01 8.213887e+01 moveto -5.740566e+01 7.997332e+01 lineto -5.492985e+01 7.971821e+01 lineto -5.569358e+01 8.190311e+01 lineto -5.798162e+01 8.213887e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.861071e+01 8.403084e+01 moveto -5.798162e+01 8.213887e+01 lineto -5.569358e+01 8.190311e+01 lineto -5.652776e+01 8.381621e+01 lineto -5.861071e+01 8.403084e+01 lineto -closepath -gsave -5.416429e-01 5.416429e-01 5.416429e-01 setrgbcolor -fill -grestore -newpath -5.861071e+01 8.403084e+01 moveto -5.798162e+01 8.213887e+01 lineto -5.569358e+01 8.190311e+01 lineto -5.652776e+01 8.381621e+01 lineto -5.861071e+01 8.403084e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.928817e+01 8.56349e+01 moveto -5.861071e+01 8.403084e+01 lineto -5.652776e+01 8.381621e+01 lineto -5.742608e+01 8.544303e+01 lineto -5.928817e+01 8.56349e+01 lineto -closepath -gsave -5.202437e-01 5.202437e-01 5.202437e-01 setrgbcolor -fill -grestore -newpath -5.928817e+01 8.56349e+01 moveto -5.861071e+01 8.403084e+01 lineto -5.652776e+01 8.381621e+01 lineto -5.742608e+01 8.544303e+01 lineto -5.928817e+01 8.56349e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.000887e+01 8.693891e+01 moveto -5.928817e+01 8.56349e+01 lineto -5.742608e+01 8.544303e+01 lineto -5.838173e+01 8.677124e+01 lineto -6.000887e+01 8.693891e+01 lineto -closepath -gsave -5.00498e-01 5.00498e-01 5.00498e-01 setrgbcolor -fill -grestore -newpath -6.000887e+01 8.693891e+01 moveto -5.928817e+01 8.56349e+01 lineto -5.742608e+01 8.544303e+01 lineto -5.838173e+01 8.677124e+01 lineto -6.000887e+01 8.693891e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.076736e+01 8.793299e+01 moveto -6.000887e+01 8.693891e+01 lineto -5.838173e+01 8.677124e+01 lineto -5.938749e+01 8.77908e+01 lineto -6.076736e+01 8.793299e+01 lineto -closepath -gsave -4.826228e-01 4.826228e-01 4.826228e-01 setrgbcolor -fill -grestore -newpath -6.076736e+01 8.793299e+01 moveto -6.000887e+01 8.693891e+01 lineto -5.838173e+01 8.677124e+01 lineto -5.938749e+01 8.77908e+01 lineto -6.076736e+01 8.793299e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.155789e+01 8.860961e+01 moveto -6.076736e+01 8.793299e+01 lineto -5.938749e+01 8.77908e+01 lineto -6.043574e+01 8.849399e+01 lineto -6.155789e+01 8.860961e+01 lineto -closepath -gsave -4.667507e-01 4.667507e-01 4.667507e-01 setrgbcolor -fill -grestore -newpath -6.155789e+01 8.860961e+01 moveto -6.076736e+01 8.793299e+01 lineto -5.938749e+01 8.77908e+01 lineto -6.043574e+01 8.849399e+01 lineto -6.155789e+01 8.860961e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.237448e+01 8.896367e+01 moveto -6.155789e+01 8.860961e+01 lineto -6.043574e+01 8.849399e+01 lineto -6.151854e+01 8.887547e+01 lineto -6.237448e+01 8.896367e+01 lineto -closepath -gsave -4.52933e-01 4.52933e-01 4.52933e-01 setrgbcolor -fill -grestore -newpath -6.237448e+01 8.896367e+01 moveto -6.155789e+01 8.860961e+01 lineto -6.043574e+01 8.849399e+01 lineto -6.151854e+01 8.887547e+01 lineto -6.237448e+01 8.896367e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.662767e+01 8.588761e+01 moveto -6.577581e+01 8.713747e+01 lineto -6.602872e+01 8.716353e+01 lineto -6.71583e+01 8.594229e+01 lineto -6.662767e+01 8.588761e+01 lineto -closepath -gsave -5.3149e-01 5.3149e-01 5.3149e-01 setrgbcolor -fill -grestore -newpath -6.662767e+01 8.588761e+01 moveto -6.577581e+01 8.713747e+01 lineto -6.602872e+01 8.716353e+01 lineto -6.71583e+01 8.594229e+01 lineto -6.662767e+01 8.588761e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.746721e+01 8.433579e+01 moveto -6.662767e+01 8.588761e+01 lineto -6.71583e+01 8.594229e+01 lineto -6.827154e+01 8.441867e+01 lineto -6.746721e+01 8.433579e+01 lineto -closepath -gsave -5.536696e-01 5.536696e-01 5.536696e-01 setrgbcolor -fill -grestore -newpath -6.746721e+01 8.433579e+01 moveto -6.662767e+01 8.588761e+01 lineto -6.71583e+01 8.594229e+01 lineto -6.827154e+01 8.441867e+01 lineto -6.746721e+01 8.433579e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.828808e+01 8.249374e+01 moveto -6.746721e+01 8.433579e+01 lineto -6.827154e+01 8.441867e+01 lineto -6.936001e+01 8.26042e+01 lineto -6.828808e+01 8.249374e+01 lineto -closepath -gsave -5.770098e-01 5.770098e-01 5.770098e-01 setrgbcolor -fill -grestore -newpath -6.828808e+01 8.249374e+01 moveto -6.746721e+01 8.433579e+01 lineto -6.827154e+01 8.441867e+01 lineto -6.936001e+01 8.26042e+01 lineto -6.828808e+01 8.249374e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.386301e+01 4.939691e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.359048e+01 4.906074e+00 lineto -6.386301e+01 4.939691e+00 lineto -closepath -gsave -5.129792e-01 5.129792e-01 5.129792e-01 setrgbcolor -fill -grestore -newpath -6.386301e+01 4.939691e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.359048e+01 4.906074e+00 lineto -6.386301e+01 4.939691e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.273462e+01 6.190226e+00 moveto -6.386301e+01 4.939691e+00 lineto -6.359048e+01 4.906074e+00 lineto -6.219163e+01 6.123246e+00 lineto -6.273462e+01 6.190226e+00 lineto -closepath -gsave -5.344267e-01 5.344267e-01 5.344267e-01 setrgbcolor -fill -grestore -newpath -6.273462e+01 6.190226e+00 moveto -6.386301e+01 4.939691e+00 lineto -6.359048e+01 4.906074e+00 lineto -6.219163e+01 6.123246e+00 lineto -6.273462e+01 6.190226e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.162338e+01 7.742139e+00 moveto -6.273462e+01 6.190226e+00 lineto -6.219163e+01 6.123246e+00 lineto -6.081404e+01 7.642304e+00 lineto -6.162338e+01 7.742139e+00 lineto -closepath -gsave -5.574731e-01 5.574731e-01 5.574731e-01 setrgbcolor -fill -grestore -newpath -6.162338e+01 7.742139e+00 moveto -6.273462e+01 6.190226e+00 lineto -6.219163e+01 6.123246e+00 lineto -6.081404e+01 7.642304e+00 lineto -6.162338e+01 7.742139e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.053771e+01 9.58368e+00 moveto -6.162338e+01 7.742139e+00 lineto -6.081404e+01 7.642304e+00 lineto -5.946814e+01 9.451745e+00 lineto -6.053771e+01 9.58368e+00 lineto -closepath -gsave -5.817569e-01 5.817569e-01 5.817569e-01 setrgbcolor -fill -grestore -newpath -6.053771e+01 9.58368e+00 moveto -6.162338e+01 7.742139e+00 lineto -6.081404e+01 7.642304e+00 lineto -5.946814e+01 9.451745e+00 lineto -6.053771e+01 9.58368e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.948582e+01 1.170091e+01 moveto -6.053771e+01 9.58368e+00 lineto -5.946814e+01 9.451745e+00 lineto -5.816412e+01 1.153787e+01 lineto -5.948582e+01 1.170091e+01 lineto -closepath -gsave -6.068359e-01 6.068359e-01 6.068359e-01 setrgbcolor -fill -grestore -newpath -5.948582e+01 1.170091e+01 moveto -6.053771e+01 9.58368e+00 lineto -5.946814e+01 9.451745e+00 lineto -5.816412e+01 1.153787e+01 lineto -5.948582e+01 1.170091e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.847567e+01 1.40778e+01 moveto -5.948582e+01 1.170091e+01 lineto -5.816412e+01 1.153787e+01 lineto -5.691185e+01 1.38849e+01 lineto -5.847567e+01 1.40778e+01 lineto -closepath -gsave -6.321986e-01 6.321986e-01 6.321986e-01 setrgbcolor -fill -grestore -newpath -5.847567e+01 1.40778e+01 moveto -5.948582e+01 1.170091e+01 lineto -5.816412e+01 1.153787e+01 lineto -5.691185e+01 1.38849e+01 lineto -5.847567e+01 1.40778e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.751491e+01 1.669635e+01 moveto -5.847567e+01 1.40778e+01 lineto -5.691185e+01 1.38849e+01 lineto -5.572081e+01 1.647504e+01 lineto -5.751491e+01 1.669635e+01 lineto -closepath -gsave -6.572805e-01 6.572805e-01 6.572805e-01 setrgbcolor -fill -grestore -newpath -5.751491e+01 1.669635e+01 moveto -5.847567e+01 1.40778e+01 lineto -5.691185e+01 1.38849e+01 lineto -5.572081e+01 1.647504e+01 lineto -5.751491e+01 1.669635e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.661082e+01 1.953675e+01 moveto -5.751491e+01 1.669635e+01 lineto -5.572081e+01 1.647504e+01 lineto -5.460002e+01 1.928871e+01 lineto -5.661082e+01 1.953675e+01 lineto -closepath -gsave -6.814831e-01 6.814831e-01 6.814831e-01 setrgbcolor -fill -grestore -newpath -5.661082e+01 1.953675e+01 moveto -5.751491e+01 1.669635e+01 lineto -5.572081e+01 1.647504e+01 lineto -5.460002e+01 1.928871e+01 lineto -5.661082e+01 1.953675e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.577024e+01 2.257748e+01 moveto -5.661082e+01 1.953675e+01 lineto -5.460002e+01 1.928871e+01 lineto -5.355796e+01 2.230459e+01 lineto -5.577024e+01 2.257748e+01 lineto -closepath -gsave -7.04196e-01 7.04196e-01 7.04196e-01 setrgbcolor -fill -grestore -newpath -5.577024e+01 2.257748e+01 moveto -5.661082e+01 1.953675e+01 lineto -5.460002e+01 1.928871e+01 lineto -5.355796e+01 2.230459e+01 lineto -5.577024e+01 2.257748e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.499954e+01 2.579553e+01 moveto -5.577024e+01 2.257748e+01 lineto -5.355796e+01 2.230459e+01 lineto -5.260252e+01 2.549985e+01 lineto -5.499954e+01 2.579553e+01 lineto -closepath -gsave -7.248206e-01 7.248206e-01 7.248206e-01 setrgbcolor -fill -grestore -newpath -5.499954e+01 2.579553e+01 moveto -5.577024e+01 2.257748e+01 lineto -5.355796e+01 2.230459e+01 lineto -5.260252e+01 2.549985e+01 lineto -5.499954e+01 2.579553e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.430454e+01 2.916654e+01 moveto -5.499954e+01 2.579553e+01 lineto -5.260252e+01 2.549985e+01 lineto -5.174093e+01 2.885031e+01 lineto -5.430454e+01 2.916654e+01 lineto -closepath -gsave -7.427939e-01 7.427939e-01 7.427939e-01 setrgbcolor -fill -grestore -newpath -5.430454e+01 2.916654e+01 moveto -5.499954e+01 2.579553e+01 lineto -5.260252e+01 2.549985e+01 lineto -5.174093e+01 2.885031e+01 lineto -5.430454e+01 2.916654e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.369051e+01 3.266499e+01 moveto -5.430454e+01 2.916654e+01 lineto -5.174093e+01 2.885031e+01 lineto -5.097973e+01 3.23306e+01 lineto -5.369051e+01 3.266499e+01 lineto -closepath -gsave -7.576115e-01 7.576115e-01 7.576115e-01 setrgbcolor -fill -grestore -newpath -5.369051e+01 3.266499e+01 moveto -5.430454e+01 2.916654e+01 lineto -5.174093e+01 2.885031e+01 lineto -5.097973e+01 3.23306e+01 lineto -5.369051e+01 3.266499e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.316209e+01 3.626438e+01 moveto -5.369051e+01 3.266499e+01 lineto -5.097973e+01 3.23306e+01 lineto -5.032466e+01 3.591438e+01 lineto -5.316209e+01 3.626438e+01 lineto -closepath -gsave -7.688488e-01 7.688488e-01 7.688488e-01 setrgbcolor -fill -grestore -newpath -5.316209e+01 3.626438e+01 moveto -5.369051e+01 3.266499e+01 lineto -5.097973e+01 3.23306e+01 lineto -5.032466e+01 3.591438e+01 lineto -5.316209e+01 3.626438e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.27233e+01 3.993748e+01 moveto -5.316209e+01 3.626438e+01 lineto -5.032466e+01 3.591438e+01 lineto -4.978069e+01 3.95745e+01 lineto -5.27233e+01 3.993748e+01 lineto -closepath -gsave -7.761789e-01 7.761789e-01 7.761789e-01 setrgbcolor -fill -grestore -newpath -5.27233e+01 3.993748e+01 moveto -5.316209e+01 3.626438e+01 lineto -5.032466e+01 3.591438e+01 lineto -4.978069e+01 3.95745e+01 lineto -5.27233e+01 3.993748e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.237745e+01 4.365648e+01 moveto -5.27233e+01 3.993748e+01 lineto -4.978069e+01 3.95745e+01 lineto -4.935194e+01 4.328327e+01 lineto -5.237745e+01 4.365648e+01 lineto -closepath -gsave -7.793869e-01 7.793869e-01 7.793869e-01 setrgbcolor -fill -grestore -newpath -5.237745e+01 4.365648e+01 moveto -5.27233e+01 3.993748e+01 lineto -4.978069e+01 3.95745e+01 lineto -4.935194e+01 4.328327e+01 lineto -5.237745e+01 4.365648e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.212715e+01 4.739322e+01 moveto -5.237745e+01 4.365648e+01 lineto -4.935194e+01 4.328327e+01 lineto -4.904165e+01 4.701261e+01 lineto -5.212715e+01 4.739322e+01 lineto -closepath -gsave -7.783785e-01 7.783785e-01 7.783785e-01 setrgbcolor -fill -grestore -newpath -5.212715e+01 4.739322e+01 moveto -5.237745e+01 4.365648e+01 lineto -4.935194e+01 4.328327e+01 lineto -4.904165e+01 4.701261e+01 lineto -5.212715e+01 4.739322e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.197431e+01 5.111941e+01 moveto -5.212715e+01 4.739322e+01 lineto -4.904165e+01 4.701261e+01 lineto -4.885217e+01 5.073428e+01 lineto -5.197431e+01 5.111941e+01 lineto -closepath -gsave -7.731845e-01 7.731845e-01 7.731845e-01 setrgbcolor -fill -grestore -newpath -5.197431e+01 5.111941e+01 moveto -5.212715e+01 4.739322e+01 lineto -4.904165e+01 4.701261e+01 lineto -4.885217e+01 5.073428e+01 lineto -5.197431e+01 5.111941e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.192008e+01 5.480684e+01 moveto -5.197431e+01 5.111941e+01 lineto -4.885217e+01 5.073428e+01 lineto -4.878494e+01 5.442011e+01 lineto -5.192008e+01 5.480684e+01 lineto -closepath -gsave -7.639593e-01 7.639593e-01 7.639593e-01 setrgbcolor -fill -grestore -newpath -5.192008e+01 5.480684e+01 moveto -5.197431e+01 5.111941e+01 lineto -4.885217e+01 5.073428e+01 lineto -4.878494e+01 5.442011e+01 lineto -5.192008e+01 5.480684e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.196486e+01 5.84276e+01 moveto -5.192008e+01 5.480684e+01 lineto -4.878494e+01 5.442011e+01 lineto -4.884047e+01 5.80422e+01 lineto -5.196486e+01 5.84276e+01 lineto -closepath -gsave -7.509739e-01 7.509739e-01 7.509739e-01 setrgbcolor -fill -grestore -newpath -5.196486e+01 5.84276e+01 moveto -5.192008e+01 5.480684e+01 lineto -4.878494e+01 5.442011e+01 lineto -4.884047e+01 5.80422e+01 lineto -5.196486e+01 5.84276e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.210833e+01 6.195428e+01 moveto -5.196486e+01 5.84276e+01 lineto -4.884047e+01 5.80422e+01 lineto -4.901832e+01 6.157312e+01 lineto -5.210833e+01 6.195428e+01 lineto -closepath -gsave -7.346045e-01 7.346045e-01 7.346045e-01 setrgbcolor -fill -grestore -newpath -5.210833e+01 6.195428e+01 moveto -5.196486e+01 5.84276e+01 lineto -4.884047e+01 5.80422e+01 lineto -4.901832e+01 6.157312e+01 lineto -5.210833e+01 6.195428e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.23494e+01 6.536018e+01 moveto -5.210833e+01 6.195428e+01 lineto -4.901832e+01 6.157312e+01 lineto -4.931717e+01 6.498615e+01 lineto -5.23494e+01 6.536018e+01 lineto -closepath -gsave -7.153159e-01 7.153159e-01 7.153159e-01 setrgbcolor -fill -grestore -newpath -5.23494e+01 6.536018e+01 moveto -5.210833e+01 6.195428e+01 lineto -4.901832e+01 6.157312e+01 lineto -4.931717e+01 6.498615e+01 lineto -5.23494e+01 6.536018e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.268624e+01 6.861952e+01 moveto -5.23494e+01 6.536018e+01 lineto -4.931717e+01 6.498615e+01 lineto -4.973474e+01 6.825544e+01 lineto -5.268624e+01 6.861952e+01 lineto -closepath -gsave -6.936426e-01 6.936426e-01 6.936426e-01 setrgbcolor -fill -grestore -newpath -5.268624e+01 6.861952e+01 moveto -5.23494e+01 6.536018e+01 lineto -4.931717e+01 6.498615e+01 lineto -4.973474e+01 6.825544e+01 lineto -5.268624e+01 6.861952e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.311629e+01 7.170761e+01 moveto -5.268624e+01 6.861952e+01 lineto -4.973474e+01 6.825544e+01 lineto -5.026788e+01 7.135625e+01 lineto -5.311629e+01 7.170761e+01 lineto -closepath -gsave -6.701661e-01 6.701661e-01 6.701661e-01 setrgbcolor -fill -grestore -newpath -5.311629e+01 7.170761e+01 moveto -5.268624e+01 6.861952e+01 lineto -4.973474e+01 6.825544e+01 lineto -5.026788e+01 7.135625e+01 lineto -5.311629e+01 7.170761e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.363631e+01 7.460109e+01 moveto -5.311629e+01 7.170761e+01 lineto -5.026788e+01 7.135625e+01 lineto -5.091255e+01 7.42651e+01 lineto -5.363631e+01 7.460109e+01 lineto -closepath -gsave -6.454918e-01 6.454918e-01 6.454918e-01 setrgbcolor -fill -grestore -newpath -5.363631e+01 7.460109e+01 moveto -5.311629e+01 7.170761e+01 lineto -5.026788e+01 7.135625e+01 lineto -5.091255e+01 7.42651e+01 lineto -5.363631e+01 7.460109e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.424236e+01 7.727804e+01 moveto -5.363631e+01 7.460109e+01 lineto -5.091255e+01 7.42651e+01 lineto -5.166386e+01 7.695998e+01 lineto -5.424236e+01 7.727804e+01 lineto -closepath -gsave -6.202252e-01 6.202252e-01 6.202252e-01 setrgbcolor -fill -grestore -newpath -5.424236e+01 7.727804e+01 moveto -5.363631e+01 7.460109e+01 lineto -5.091255e+01 7.42651e+01 lineto -5.166386e+01 7.695998e+01 lineto -5.424236e+01 7.727804e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.492985e+01 7.971821e+01 moveto -5.424236e+01 7.727804e+01 lineto -5.166386e+01 7.695998e+01 lineto -5.251614e+01 7.942047e+01 lineto -5.492985e+01 7.971821e+01 lineto -closepath -gsave -5.949493e-01 5.949493e-01 5.949493e-01 setrgbcolor -fill -grestore -newpath -5.492985e+01 7.971821e+01 moveto -5.424236e+01 7.727804e+01 lineto -5.166386e+01 7.695998e+01 lineto -5.251614e+01 7.942047e+01 lineto -5.492985e+01 7.971821e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.569358e+01 8.190311e+01 moveto -5.492985e+01 7.971821e+01 lineto -5.251614e+01 7.942047e+01 lineto -5.346292e+01 8.162795e+01 lineto -5.569358e+01 8.190311e+01 lineto -closepath -gsave -5.702041e-01 5.702041e-01 5.702041e-01 setrgbcolor -fill -grestore -newpath -5.569358e+01 8.190311e+01 moveto -5.492985e+01 7.971821e+01 lineto -5.251614e+01 7.942047e+01 lineto -5.346292e+01 8.162795e+01 lineto -5.569358e+01 8.190311e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.652776e+01 8.381621e+01 moveto -5.569358e+01 8.190311e+01 lineto -5.346292e+01 8.162795e+01 lineto -5.449704e+01 8.356572e+01 lineto -5.652776e+01 8.381621e+01 lineto -closepath -gsave -5.464684e-01 5.464684e-01 5.464684e-01 setrgbcolor -fill -grestore -newpath -5.652776e+01 8.381621e+01 moveto -5.569358e+01 8.190311e+01 lineto -5.346292e+01 8.162795e+01 lineto -5.449704e+01 8.356572e+01 lineto -5.652776e+01 8.381621e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.742608e+01 8.544303e+01 moveto -5.652776e+01 8.381621e+01 lineto -5.449704e+01 8.356572e+01 lineto -5.561068e+01 8.521909e+01 lineto -5.742608e+01 8.544303e+01 lineto -closepath -gsave -5.241467e-01 5.241467e-01 5.241467e-01 setrgbcolor -fill -grestore -newpath -5.742608e+01 8.544303e+01 moveto -5.652776e+01 8.381621e+01 lineto -5.449704e+01 8.356572e+01 lineto -5.561068e+01 8.521909e+01 lineto -5.742608e+01 8.544303e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.838173e+01 8.677124e+01 moveto -5.742608e+01 8.544303e+01 lineto -5.561068e+01 8.521909e+01 lineto -5.67954e+01 8.657556e+01 lineto -5.838173e+01 8.677124e+01 lineto -closepath -gsave -5.035591e-01 5.035591e-01 5.035591e-01 setrgbcolor -fill -grestore -newpath -5.838173e+01 8.677124e+01 moveto -5.742608e+01 8.544303e+01 lineto -5.561068e+01 8.521909e+01 lineto -5.67954e+01 8.657556e+01 lineto -5.838173e+01 8.677124e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.938749e+01 8.77908e+01 moveto -5.838173e+01 8.677124e+01 lineto -5.67954e+01 8.657556e+01 lineto -5.804223e+01 8.762486e+01 lineto -5.938749e+01 8.77908e+01 lineto -closepath -gsave -4.849362e-01 4.849362e-01 4.849362e-01 setrgbcolor -fill -grestore -newpath -5.938749e+01 8.77908e+01 moveto -5.838173e+01 8.677124e+01 lineto -5.67954e+01 8.657556e+01 lineto -5.804223e+01 8.762486e+01 lineto -5.938749e+01 8.77908e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.043574e+01 8.849399e+01 moveto -5.938749e+01 8.77908e+01 lineto -5.804223e+01 8.762486e+01 lineto -5.934173e+01 8.835904e+01 lineto -6.043574e+01 8.849399e+01 lineto -closepath -gsave -4.684189e-01 4.684189e-01 4.684189e-01 setrgbcolor -fill -grestore -newpath -6.043574e+01 8.849399e+01 moveto -5.938749e+01 8.77908e+01 lineto -5.804223e+01 8.762486e+01 lineto -5.934173e+01 8.835904e+01 lineto -6.043574e+01 8.849399e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.151854e+01 8.887547e+01 moveto -6.043574e+01 8.849399e+01 lineto -5.934173e+01 8.835904e+01 lineto -6.068407e+01 8.877254e+01 lineto -6.151854e+01 8.887547e+01 lineto -closepath -gsave -4.540617e-01 4.540617e-01 4.540617e-01 setrgbcolor -fill -grestore -newpath -6.151854e+01 8.887547e+01 moveto -6.043574e+01 8.849399e+01 lineto -5.934173e+01 8.835904e+01 lineto -6.068407e+01 8.877254e+01 lineto -6.151854e+01 8.887547e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.71583e+01 8.594229e+01 moveto -6.602872e+01 8.716353e+01 lineto -6.62753e+01 8.719395e+01 lineto -6.767563e+01 8.60061e+01 lineto -6.71583e+01 8.594229e+01 lineto -closepath -gsave -5.323059e-01 5.323059e-01 5.323059e-01 setrgbcolor -fill -grestore -newpath -6.71583e+01 8.594229e+01 moveto -6.602872e+01 8.716353e+01 lineto -6.62753e+01 8.719395e+01 lineto -6.767563e+01 8.60061e+01 lineto -6.71583e+01 8.594229e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.827154e+01 8.441867e+01 moveto -6.71583e+01 8.594229e+01 lineto -6.767563e+01 8.60061e+01 lineto -6.90557e+01 8.45154e+01 lineto -6.827154e+01 8.441867e+01 lineto -closepath -gsave -5.55214e-01 5.55214e-01 5.55214e-01 setrgbcolor -fill -grestore -newpath -6.827154e+01 8.441867e+01 moveto -6.71583e+01 8.594229e+01 lineto -6.767563e+01 8.60061e+01 lineto -6.90557e+01 8.45154e+01 lineto -6.827154e+01 8.441867e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.936001e+01 8.26042e+01 moveto -6.827154e+01 8.441867e+01 lineto -6.90557e+01 8.45154e+01 lineto -7.040507e+01 8.273311e+01 lineto -6.936001e+01 8.26042e+01 lineto -closepath -gsave -5.793976e-01 5.793976e-01 5.793976e-01 setrgbcolor -fill -grestore -newpath -6.936001e+01 8.26042e+01 moveto -6.827154e+01 8.441867e+01 lineto -6.90557e+01 8.45154e+01 lineto -7.040507e+01 8.273311e+01 lineto -6.936001e+01 8.26042e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.359048e+01 4.906074e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.332664e+01 4.86785e+00 lineto -6.359048e+01 4.906074e+00 lineto -closepath -gsave -5.131777e-01 5.131777e-01 5.131777e-01 setrgbcolor -fill -grestore -newpath -6.359048e+01 4.906074e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.332664e+01 4.86785e+00 lineto -6.359048e+01 4.906074e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.219163e+01 6.123246e+00 moveto -6.359048e+01 4.906074e+00 lineto -6.332664e+01 4.86785e+00 lineto -6.166595e+01 6.047089e+00 lineto -6.219163e+01 6.123246e+00 lineto -closepath -gsave -5.350943e-01 5.350943e-01 5.350943e-01 setrgbcolor -fill -grestore -newpath -6.219163e+01 6.123246e+00 moveto -6.359048e+01 4.906074e+00 lineto -6.332664e+01 4.86785e+00 lineto -6.166595e+01 6.047089e+00 lineto -6.219163e+01 6.123246e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.081404e+01 7.642304e+00 moveto -6.219163e+01 6.123246e+00 lineto -6.166595e+01 6.047089e+00 lineto -6.003051e+01 7.528789e+00 lineto -6.081404e+01 7.642304e+00 lineto -closepath -gsave -5.587044e-01 5.587044e-01 5.587044e-01 setrgbcolor -fill -grestore -newpath -6.081404e+01 7.642304e+00 moveto -6.219163e+01 6.123246e+00 lineto -6.166595e+01 6.047089e+00 lineto -6.003051e+01 7.528789e+00 lineto -6.081404e+01 7.642304e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.946814e+01 9.451745e+00 moveto -6.081404e+01 7.642304e+00 lineto -6.003051e+01 7.528789e+00 lineto -5.843268e+01 9.301733e+00 lineto -5.946814e+01 9.451745e+00 lineto -closepath -gsave -5.836407e-01 5.836407e-01 5.836407e-01 setrgbcolor -fill -grestore -newpath -5.946814e+01 9.451745e+00 moveto -6.081404e+01 7.642304e+00 lineto -6.003051e+01 7.528789e+00 lineto -5.843268e+01 9.301733e+00 lineto -5.946814e+01 9.451745e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.816412e+01 1.153787e+01 moveto -5.946814e+01 9.451745e+00 lineto -5.843268e+01 9.301733e+00 lineto -5.688457e+01 1.13525e+01 lineto -5.816412e+01 1.153787e+01 lineto -closepath -gsave -6.09451e-01 6.09451e-01 6.09451e-01 setrgbcolor -fill -grestore -newpath -5.816412e+01 1.153787e+01 moveto -5.946814e+01 9.451745e+00 lineto -5.843268e+01 9.301733e+00 lineto -5.688457e+01 1.13525e+01 lineto -5.816412e+01 1.153787e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.691185e+01 1.38849e+01 moveto -5.816412e+01 1.153787e+01 lineto -5.688457e+01 1.13525e+01 lineto -5.539789e+01 1.366556e+01 lineto -5.691185e+01 1.38849e+01 lineto -closepath -gsave -6.356094e-01 6.356094e-01 6.356094e-01 setrgbcolor -fill -grestore -newpath -5.691185e+01 1.38849e+01 moveto -5.816412e+01 1.153787e+01 lineto -5.688457e+01 1.13525e+01 lineto -5.539789e+01 1.366556e+01 lineto -5.691185e+01 1.38849e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.572081e+01 1.647504e+01 moveto -5.691185e+01 1.38849e+01 lineto -5.539789e+01 1.366556e+01 lineto -5.398391e+01 1.622341e+01 lineto -5.572081e+01 1.647504e+01 lineto -closepath -gsave -6.61533e-01 6.61533e-01 6.61533e-01 setrgbcolor -fill -grestore -newpath -5.572081e+01 1.647504e+01 moveto -5.691185e+01 1.38849e+01 lineto -5.539789e+01 1.366556e+01 lineto -5.398391e+01 1.622341e+01 lineto -5.572081e+01 1.647504e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.460002e+01 1.928871e+01 moveto -5.572081e+01 1.647504e+01 lineto -5.398391e+01 1.622341e+01 lineto -5.265333e+01 1.900668e+01 lineto -5.460002e+01 1.928871e+01 lineto -closepath -gsave -6.866017e-01 6.866017e-01 6.866017e-01 setrgbcolor -fill -grestore -newpath -5.460002e+01 1.928871e+01 moveto -5.572081e+01 1.647504e+01 lineto -5.398391e+01 1.622341e+01 lineto -5.265333e+01 1.900668e+01 lineto -5.460002e+01 1.928871e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.355796e+01 2.230459e+01 moveto -5.460002e+01 1.928871e+01 lineto -5.265333e+01 1.900668e+01 lineto -5.141622e+01 2.19943e+01 lineto -5.355796e+01 2.230459e+01 lineto -closepath -gsave -7.101814e-01 7.101814e-01 7.101814e-01 setrgbcolor -fill -grestore -newpath -5.355796e+01 2.230459e+01 moveto -5.460002e+01 1.928871e+01 lineto -5.265333e+01 1.900668e+01 lineto -5.141622e+01 2.19943e+01 lineto -5.355796e+01 2.230459e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.260252e+01 2.549985e+01 moveto -5.355796e+01 2.230459e+01 lineto -5.141622e+01 2.19943e+01 lineto -5.028194e+01 2.516366e+01 lineto -5.260252e+01 2.549985e+01 lineto -closepath -gsave -7.31648e-01 7.31648e-01 7.31648e-01 setrgbcolor -fill -grestore -newpath -5.260252e+01 2.549985e+01 moveto -5.355796e+01 2.230459e+01 lineto -5.141622e+01 2.19943e+01 lineto -5.028194e+01 2.516366e+01 lineto -5.260252e+01 2.549985e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.174093e+01 2.885031e+01 moveto -5.260252e+01 2.549985e+01 lineto -5.028194e+01 2.516366e+01 lineto -4.925908e+01 2.849075e+01 lineto -5.174093e+01 2.885031e+01 lineto -closepath -gsave -7.504128e-01 7.504128e-01 7.504128e-01 setrgbcolor -fill -grestore -newpath -5.174093e+01 2.885031e+01 moveto -5.260252e+01 2.549985e+01 lineto -5.028194e+01 2.516366e+01 lineto -4.925908e+01 2.849075e+01 lineto -5.174093e+01 2.885031e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.097973e+01 3.23306e+01 moveto -5.174093e+01 2.885031e+01 lineto -4.925908e+01 2.849075e+01 lineto -4.835539e+01 3.19504e+01 lineto -5.097973e+01 3.23306e+01 lineto -closepath -gsave -7.659465e-01 7.659465e-01 7.659465e-01 setrgbcolor -fill -grestore -newpath -5.097973e+01 3.23306e+01 moveto -5.174093e+01 2.885031e+01 lineto -4.925908e+01 2.849075e+01 lineto -4.835539e+01 3.19504e+01 lineto -5.097973e+01 3.23306e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.032466e+01 3.591438e+01 moveto -5.097973e+01 3.23306e+01 lineto -4.835539e+01 3.19504e+01 lineto -4.757771e+01 3.551641e+01 lineto -5.032466e+01 3.591438e+01 lineto -closepath -gsave -7.778015e-01 7.778015e-01 7.778015e-01 setrgbcolor -fill -grestore -newpath -5.032466e+01 3.591438e+01 moveto -5.097973e+01 3.23306e+01 lineto -4.835539e+01 3.19504e+01 lineto -4.757771e+01 3.551641e+01 lineto -5.032466e+01 3.591438e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.978069e+01 3.95745e+01 moveto -5.032466e+01 3.591438e+01 lineto -4.757771e+01 3.551641e+01 lineto -4.693192e+01 3.916179e+01 lineto -4.978069e+01 3.95745e+01 lineto -closepath -gsave -7.856311e-01 7.856311e-01 7.856311e-01 setrgbcolor -fill -grestore -newpath -4.978069e+01 3.95745e+01 moveto -5.032466e+01 3.591438e+01 lineto -4.757771e+01 3.551641e+01 lineto -4.693192e+01 3.916179e+01 lineto -4.978069e+01 3.95745e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.935194e+01 4.328327e+01 moveto -4.978069e+01 3.95745e+01 lineto -4.693192e+01 3.916179e+01 lineto -4.642291e+01 4.285893e+01 lineto -4.935194e+01 4.328327e+01 lineto -closepath -gsave -7.89204e-01 7.89204e-01 7.89204e-01 setrgbcolor -fill -grestore -newpath -4.935194e+01 4.328327e+01 moveto -4.978069e+01 3.95745e+01 lineto -4.693192e+01 3.916179e+01 lineto -4.642291e+01 4.285893e+01 lineto -4.935194e+01 4.328327e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.904165e+01 4.701261e+01 moveto -4.935194e+01 4.328327e+01 lineto -4.642291e+01 4.285893e+01 lineto -4.605454e+01 4.657985e+01 lineto -4.904165e+01 4.701261e+01 lineto -closepath -gsave -7.884146e-01 7.884146e-01 7.884146e-01 setrgbcolor -fill -grestore -newpath -4.904165e+01 4.701261e+01 moveto -4.935194e+01 4.328327e+01 lineto -4.642291e+01 4.285893e+01 lineto -4.605454e+01 4.657985e+01 lineto -4.904165e+01 4.701261e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.885217e+01 5.073428e+01 moveto -4.904165e+01 4.701261e+01 lineto -4.605454e+01 4.657985e+01 lineto -4.58296e+01 5.029639e+01 lineto -4.885217e+01 5.073428e+01 lineto -closepath -gsave -7.832873e-01 7.832873e-01 7.832873e-01 setrgbcolor -fill -grestore -newpath -4.885217e+01 5.073428e+01 moveto -4.904165e+01 4.701261e+01 lineto -4.605454e+01 4.657985e+01 lineto -4.58296e+01 5.029639e+01 lineto -4.885217e+01 5.073428e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.878494e+01 5.442011e+01 moveto -4.885217e+01 5.073428e+01 lineto -4.58296e+01 5.029639e+01 lineto -4.574978e+01 5.398039e+01 lineto -4.878494e+01 5.442011e+01 lineto -closepath -gsave -7.739757e-01 7.739757e-01 7.739757e-01 setrgbcolor -fill -grestore -newpath -4.878494e+01 5.442011e+01 moveto -4.885217e+01 5.073428e+01 lineto -4.58296e+01 5.029639e+01 lineto -4.574978e+01 5.398039e+01 lineto -4.878494e+01 5.442011e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.884047e+01 5.80422e+01 moveto -4.878494e+01 5.442011e+01 lineto -4.574978e+01 5.398039e+01 lineto -4.58157e+01 5.760399e+01 lineto -4.884047e+01 5.80422e+01 lineto -closepath -gsave -7.607553e-01 7.607553e-01 7.607553e-01 setrgbcolor -fill -grestore -newpath -4.884047e+01 5.80422e+01 moveto -4.878494e+01 5.442011e+01 lineto -4.574978e+01 5.398039e+01 lineto -4.58157e+01 5.760399e+01 lineto -4.884047e+01 5.80422e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.901832e+01 6.157312e+01 moveto -4.884047e+01 5.80422e+01 lineto -4.58157e+01 5.760399e+01 lineto -4.602685e+01 6.113973e+01 lineto -4.901832e+01 6.157312e+01 lineto -closepath -gsave -7.440119e-01 7.440119e-01 7.440119e-01 setrgbcolor -fill -grestore -newpath -4.901832e+01 6.157312e+01 moveto -4.884047e+01 5.80422e+01 lineto -4.58157e+01 5.760399e+01 lineto -4.602685e+01 6.113973e+01 lineto -4.901832e+01 6.157312e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.931717e+01 6.498615e+01 moveto -4.901832e+01 6.157312e+01 lineto -4.602685e+01 6.113973e+01 lineto -4.638163e+01 6.456086e+01 lineto -4.931717e+01 6.498615e+01 lineto -closepath -gsave -7.242247e-01 7.242247e-01 7.242247e-01 setrgbcolor -fill -grestore -newpath -4.931717e+01 6.498615e+01 moveto -4.901832e+01 6.157312e+01 lineto -4.602685e+01 6.113973e+01 lineto -4.638163e+01 6.456086e+01 lineto -4.931717e+01 6.498615e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.973474e+01 6.825544e+01 moveto -4.931717e+01 6.498615e+01 lineto -4.638163e+01 6.456086e+01 lineto -4.687737e+01 6.784148e+01 lineto -4.973474e+01 6.825544e+01 lineto -closepath -gsave -7.019464e-01 7.019464e-01 7.019464e-01 setrgbcolor -fill -grestore -newpath -4.973474e+01 6.825544e+01 moveto -4.931717e+01 6.498615e+01 lineto -4.638163e+01 6.456086e+01 lineto -4.687737e+01 6.784148e+01 lineto -4.973474e+01 6.825544e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.026788e+01 7.135625e+01 moveto -4.973474e+01 6.825544e+01 lineto -4.687737e+01 6.784148e+01 lineto -4.75103e+01 7.095675e+01 lineto -5.026788e+01 7.135625e+01 lineto -closepath -gsave -6.7778e-01 6.7778e-01 6.7778e-01 setrgbcolor -fill -grestore -newpath -5.026788e+01 7.135625e+01 moveto -4.973474e+01 6.825544e+01 lineto -4.687737e+01 6.784148e+01 lineto -4.75103e+01 7.095675e+01 lineto -5.026788e+01 7.135625e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.091255e+01 7.42651e+01 moveto -5.026788e+01 7.135625e+01 lineto -4.75103e+01 7.095675e+01 lineto -4.827563e+01 7.388308e+01 lineto -5.091255e+01 7.42651e+01 lineto -closepath -gsave -6.523541e-01 6.523541e-01 6.523541e-01 setrgbcolor -fill -grestore -newpath -5.091255e+01 7.42651e+01 moveto -5.026788e+01 7.135625e+01 lineto -4.75103e+01 7.095675e+01 lineto -4.827563e+01 7.388308e+01 lineto -5.091255e+01 7.42651e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.166386e+01 7.695998e+01 moveto -5.091255e+01 7.42651e+01 lineto -4.827563e+01 7.388308e+01 lineto -4.916758e+01 7.659833e+01 lineto -5.166386e+01 7.695998e+01 lineto -closepath -gsave -6.262986e-01 6.262986e-01 6.262986e-01 setrgbcolor -fill -grestore -newpath -5.166386e+01 7.695998e+01 moveto -5.091255e+01 7.42651e+01 lineto -4.827563e+01 7.388308e+01 lineto -4.916758e+01 7.659833e+01 lineto -5.166386e+01 7.695998e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.251614e+01 7.942047e+01 moveto -5.166386e+01 7.695998e+01 lineto -4.916758e+01 7.659833e+01 lineto -5.017939e+01 7.908193e+01 lineto -5.251614e+01 7.942047e+01 lineto -closepath -gsave -6.002207e-01 6.002207e-01 6.002207e-01 setrgbcolor -fill -grestore -newpath -5.251614e+01 7.942047e+01 moveto -5.166386e+01 7.695998e+01 lineto -4.916758e+01 7.659833e+01 lineto -5.017939e+01 7.908193e+01 lineto -5.251614e+01 7.942047e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.346292e+01 8.162795e+01 moveto -5.251614e+01 7.942047e+01 lineto -5.017939e+01 7.908193e+01 lineto -5.130339e+01 8.131509e+01 lineto -5.346292e+01 8.162795e+01 lineto -closepath -gsave -5.746831e-01 5.746831e-01 5.746831e-01 setrgbcolor -fill -grestore -newpath -5.346292e+01 8.162795e+01 moveto -5.251614e+01 7.942047e+01 lineto -5.017939e+01 7.908193e+01 lineto -5.130339e+01 8.131509e+01 lineto -5.346292e+01 8.162795e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.449704e+01 8.356572e+01 moveto -5.346292e+01 8.162795e+01 lineto -5.130339e+01 8.131509e+01 lineto -5.253108e+01 8.32809e+01 lineto -5.449704e+01 8.356572e+01 lineto -closepath -gsave -5.501856e-01 5.501856e-01 5.501856e-01 setrgbcolor -fill -grestore -newpath -5.449704e+01 8.356572e+01 moveto -5.346292e+01 8.162795e+01 lineto -5.130339e+01 8.131509e+01 lineto -5.253108e+01 8.32809e+01 lineto -5.449704e+01 8.356572e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.561068e+01 8.521909e+01 moveto -5.449704e+01 8.356572e+01 lineto -5.253108e+01 8.32809e+01 lineto -5.385317e+01 8.496447e+01 lineto -5.561068e+01 8.521909e+01 lineto -closepath -gsave -5.271505e-01 5.271505e-01 5.271505e-01 setrgbcolor -fill -grestore -newpath -5.561068e+01 8.521909e+01 moveto -5.449704e+01 8.356572e+01 lineto -5.253108e+01 8.32809e+01 lineto -5.385317e+01 8.496447e+01 lineto -5.561068e+01 8.521909e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.67954e+01 8.657556e+01 moveto -5.561068e+01 8.521909e+01 lineto -5.385317e+01 8.496447e+01 lineto -5.525964e+01 8.635307e+01 lineto -5.67954e+01 8.657556e+01 lineto -closepath -gsave -5.059124e-01 5.059124e-01 5.059124e-01 setrgbcolor -fill -grestore -newpath -5.67954e+01 8.657556e+01 moveto -5.561068e+01 8.521909e+01 lineto -5.385317e+01 8.496447e+01 lineto -5.525964e+01 8.635307e+01 lineto -5.67954e+01 8.657556e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.804223e+01 8.762486e+01 moveto -5.67954e+01 8.657556e+01 lineto -5.525964e+01 8.635307e+01 lineto -5.673986e+01 8.743618e+01 lineto -5.804223e+01 8.762486e+01 lineto -closepath -gsave -4.867122e-01 4.867122e-01 4.867122e-01 setrgbcolor -fill -grestore -newpath -5.804223e+01 8.762486e+01 moveto -5.67954e+01 8.657556e+01 lineto -5.525964e+01 8.635307e+01 lineto -5.673986e+01 8.743618e+01 lineto -5.804223e+01 8.762486e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.934173e+01 8.835904e+01 moveto -5.804223e+01 8.762486e+01 lineto -5.673986e+01 8.743618e+01 lineto -5.82826e+01 8.82056e+01 lineto -5.934173e+01 8.835904e+01 lineto -closepath -gsave -4.696973e-01 4.696973e-01 4.696973e-01 setrgbcolor -fill -grestore -newpath -5.934173e+01 8.835904e+01 moveto -5.804223e+01 8.762486e+01 lineto -5.673986e+01 8.743618e+01 lineto -5.82826e+01 8.82056e+01 lineto -5.934173e+01 8.835904e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.068407e+01 8.877254e+01 moveto -5.934173e+01 8.835904e+01 lineto -5.82826e+01 8.82056e+01 lineto -5.98762e+01 8.86555e+01 lineto -6.068407e+01 8.877254e+01 lineto -closepath -gsave -4.549248e-01 4.549248e-01 4.549248e-01 setrgbcolor -fill -grestore -newpath -6.068407e+01 8.877254e+01 moveto -5.934173e+01 8.835904e+01 lineto -5.82826e+01 8.82056e+01 lineto -5.98762e+01 8.86555e+01 lineto -6.068407e+01 8.877254e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.767563e+01 8.60061e+01 moveto -6.62753e+01 8.719395e+01 lineto -6.651401e+01 8.722853e+01 lineto -6.817645e+01 8.607866e+01 lineto -6.767563e+01 8.60061e+01 lineto -closepath -gsave -5.329246e-01 5.329246e-01 5.329246e-01 setrgbcolor -fill -grestore -newpath -6.767563e+01 8.60061e+01 moveto -6.62753e+01 8.719395e+01 lineto -6.651401e+01 8.722853e+01 lineto -6.817645e+01 8.607866e+01 lineto -6.767563e+01 8.60061e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.90557e+01 8.45154e+01 moveto -6.767563e+01 8.60061e+01 lineto -6.817645e+01 8.607866e+01 lineto -6.981485e+01 8.462538e+01 lineto -6.90557e+01 8.45154e+01 lineto -closepath -gsave -5.563875e-01 5.563875e-01 5.563875e-01 setrgbcolor -fill -grestore -newpath -6.90557e+01 8.45154e+01 moveto -6.767563e+01 8.60061e+01 lineto -6.817645e+01 8.607866e+01 lineto -6.981485e+01 8.462538e+01 lineto -6.90557e+01 8.45154e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.040507e+01 8.273311e+01 moveto -6.90557e+01 8.45154e+01 lineto -6.981485e+01 8.462538e+01 lineto -7.14168e+01 8.287968e+01 lineto -7.040507e+01 8.273311e+01 lineto -closepath -gsave -5.812156e-01 5.812156e-01 5.812156e-01 setrgbcolor -fill -grestore -newpath -7.040507e+01 8.273311e+01 moveto -6.90557e+01 8.45154e+01 lineto -6.981485e+01 8.462538e+01 lineto -7.14168e+01 8.287968e+01 lineto -7.040507e+01 8.273311e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.332664e+01 4.86785e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.307312e+01 4.825257e+00 lineto -6.332664e+01 4.86785e+00 lineto -closepath -gsave -5.133108e-01 5.133108e-01 5.133108e-01 setrgbcolor -fill -grestore -newpath -6.332664e+01 4.86785e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.307312e+01 4.825257e+00 lineto -6.332664e+01 4.86785e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.166595e+01 6.047089e+00 moveto -6.332664e+01 4.86785e+00 lineto -6.307312e+01 4.825257e+00 lineto -6.116083e+01 5.962225e+00 lineto -6.166595e+01 6.047089e+00 lineto -closepath -gsave -5.355429e-01 5.355429e-01 5.355429e-01 setrgbcolor -fill -grestore -newpath -6.166595e+01 6.047089e+00 moveto -6.332664e+01 4.86785e+00 lineto -6.307312e+01 4.825257e+00 lineto -6.116083e+01 5.962225e+00 lineto -6.166595e+01 6.047089e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.003051e+01 7.528789e+00 moveto -6.166595e+01 6.047089e+00 lineto -6.116083e+01 5.962225e+00 lineto -5.927761e+01 7.402296e+00 lineto -6.003051e+01 7.528789e+00 lineto -closepath -gsave -5.59533e-01 5.59533e-01 5.59533e-01 setrgbcolor -fill -grestore -newpath -6.003051e+01 7.528789e+00 moveto -6.166595e+01 6.047089e+00 lineto -6.116083e+01 5.962225e+00 lineto -5.927761e+01 7.402296e+00 lineto -6.003051e+01 7.528789e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.843268e+01 9.301733e+00 moveto -6.003051e+01 7.528789e+00 lineto -5.927761e+01 7.402296e+00 lineto -5.74377e+01 9.134569e+00 lineto -5.843268e+01 9.301733e+00 lineto -closepath -gsave -5.849104e-01 5.849104e-01 5.849104e-01 setrgbcolor -fill -grestore -newpath -5.843268e+01 9.301733e+00 moveto -6.003051e+01 7.528789e+00 lineto -5.927761e+01 7.402296e+00 lineto -5.74377e+01 9.134569e+00 lineto -5.843268e+01 9.301733e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.688457e+01 1.13525e+01 moveto -5.843268e+01 9.301733e+00 lineto -5.74377e+01 9.134569e+00 lineto -5.565505e+01 1.114593e+01 lineto -5.688457e+01 1.13525e+01 lineto -closepath -gsave -6.112158e-01 6.112158e-01 6.112158e-01 setrgbcolor -fill -grestore -newpath -5.688457e+01 1.13525e+01 moveto -5.843268e+01 9.301733e+00 lineto -5.74377e+01 9.134569e+00 lineto -5.565505e+01 1.114593e+01 lineto -5.688457e+01 1.13525e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.539789e+01 1.366556e+01 moveto -5.688457e+01 1.13525e+01 lineto -5.565505e+01 1.114593e+01 lineto -5.394314e+01 1.342115e+01 lineto -5.539789e+01 1.366556e+01 lineto -closepath -gsave -6.379136e-01 6.379136e-01 6.379136e-01 setrgbcolor -fill -grestore -newpath -5.539789e+01 1.366556e+01 moveto -5.688457e+01 1.13525e+01 lineto -5.565505e+01 1.114593e+01 lineto -5.394314e+01 1.342115e+01 lineto -5.539789e+01 1.366556e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.398391e+01 1.622341e+01 moveto -5.539789e+01 1.366556e+01 lineto -5.394314e+01 1.342115e+01 lineto -5.231494e+01 1.594301e+01 lineto -5.398391e+01 1.622341e+01 lineto -closepath -gsave -6.644087e-01 6.644087e-01 6.644087e-01 setrgbcolor -fill -grestore -newpath -5.398391e+01 1.622341e+01 moveto -5.539789e+01 1.366556e+01 lineto -5.394314e+01 1.342115e+01 lineto -5.231494e+01 1.594301e+01 lineto -5.398391e+01 1.622341e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.265333e+01 1.900668e+01 moveto -5.398391e+01 1.622341e+01 lineto -5.231494e+01 1.594301e+01 lineto -5.078277e+01 1.869241e+01 lineto -5.265333e+01 1.900668e+01 lineto -closepath -gsave -6.900663e-01 6.900663e-01 6.900663e-01 setrgbcolor -fill -grestore -newpath -5.265333e+01 1.900668e+01 moveto -5.398391e+01 1.622341e+01 lineto -5.231494e+01 1.594301e+01 lineto -5.078277e+01 1.869241e+01 lineto -5.265333e+01 1.900668e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.141622e+01 2.19943e+01 moveto -5.265333e+01 1.900668e+01 lineto -5.078277e+01 1.869241e+01 lineto -4.935822e+01 2.164854e+01 lineto -5.141622e+01 2.19943e+01 lineto -closepath -gsave -7.142359e-01 7.142359e-01 7.142359e-01 setrgbcolor -fill -grestore -newpath -5.141622e+01 2.19943e+01 moveto -5.265333e+01 1.900668e+01 lineto -5.078277e+01 1.869241e+01 lineto -4.935822e+01 2.164854e+01 lineto -5.141622e+01 2.19943e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.028194e+01 2.516366e+01 moveto -5.141622e+01 2.19943e+01 lineto -4.935822e+01 2.164854e+01 lineto -4.80521e+01 2.478902e+01 lineto -5.028194e+01 2.516366e+01 lineto -closepath -gsave -7.362762e-01 7.362762e-01 7.362762e-01 setrgbcolor -fill -grestore -newpath -5.028194e+01 2.516366e+01 moveto -5.141622e+01 2.19943e+01 lineto -4.935822e+01 2.164854e+01 lineto -4.80521e+01 2.478902e+01 lineto -5.028194e+01 2.516366e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.925908e+01 2.849075e+01 moveto -5.028194e+01 2.516366e+01 lineto -4.80521e+01 2.478902e+01 lineto -4.687427e+01 2.809008e+01 lineto -4.925908e+01 2.849075e+01 lineto -closepath -gsave -7.55581e-01 7.55581e-01 7.55581e-01 setrgbcolor -fill -grestore -newpath -4.925908e+01 2.849075e+01 moveto -5.028194e+01 2.516366e+01 lineto -4.80521e+01 2.478902e+01 lineto -4.687427e+01 2.809008e+01 lineto -4.925908e+01 2.849075e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.835539e+01 3.19504e+01 moveto -4.925908e+01 2.849075e+01 lineto -4.687427e+01 2.809008e+01 lineto -4.583367e+01 3.152673e+01 lineto -4.835539e+01 3.19504e+01 lineto -closepath -gsave -7.716037e-01 7.716037e-01 7.716037e-01 setrgbcolor -fill -grestore -newpath -4.835539e+01 3.19504e+01 moveto -4.925908e+01 2.849075e+01 lineto -4.687427e+01 2.809008e+01 lineto -4.583367e+01 3.152673e+01 lineto -4.835539e+01 3.19504e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.757771e+01 3.551641e+01 moveto -4.835539e+01 3.19504e+01 lineto -4.583367e+01 3.152673e+01 lineto -4.493816e+01 3.507295e+01 lineto -4.757771e+01 3.551641e+01 lineto -closepath -gsave -7.838812e-01 7.838812e-01 7.838812e-01 setrgbcolor -fill -grestore -newpath -4.757771e+01 3.551641e+01 moveto -4.835539e+01 3.19504e+01 lineto -4.583367e+01 3.152673e+01 lineto -4.493816e+01 3.507295e+01 lineto -4.757771e+01 3.551641e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.693192e+01 3.916179e+01 moveto -4.757771e+01 3.551641e+01 lineto -4.493816e+01 3.507295e+01 lineto -4.419454e+01 3.870188e+01 lineto -4.693192e+01 3.916179e+01 lineto -closepath -gsave -7.920529e-01 7.920529e-01 7.920529e-01 setrgbcolor -fill -grestore -newpath -4.693192e+01 3.916179e+01 moveto -4.757771e+01 3.551641e+01 lineto -4.493816e+01 3.507295e+01 lineto -4.419454e+01 3.870188e+01 lineto -4.693192e+01 3.916179e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.642291e+01 4.285893e+01 moveto -4.693192e+01 3.916179e+01 lineto -4.419454e+01 3.870188e+01 lineto -4.360841e+01 4.238607e+01 lineto -4.642291e+01 4.285893e+01 lineto -closepath -gsave -7.958764e-01 7.958764e-01 7.958764e-01 setrgbcolor -fill -grestore -newpath -4.642291e+01 4.285893e+01 moveto -4.693192e+01 3.916179e+01 lineto -4.419454e+01 3.870188e+01 lineto -4.360841e+01 4.238607e+01 lineto -4.642291e+01 4.285893e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.605454e+01 4.657985e+01 moveto -4.642291e+01 4.285893e+01 lineto -4.360841e+01 4.238607e+01 lineto -4.318423e+01 4.609762e+01 lineto -4.605454e+01 4.657985e+01 lineto -closepath -gsave -7.952382e-01 7.952382e-01 7.952382e-01 setrgbcolor -fill -grestore -newpath -4.605454e+01 4.657985e+01 moveto -4.642291e+01 4.285893e+01 lineto -4.360841e+01 4.238607e+01 lineto -4.318423e+01 4.609762e+01 lineto -4.605454e+01 4.657985e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.58296e+01 5.029639e+01 moveto -4.605454e+01 4.657985e+01 lineto -4.318423e+01 4.609762e+01 lineto -4.292521e+01 4.980842e+01 lineto -4.58296e+01 5.029639e+01 lineto -closepath -gsave -7.901584e-01 7.901584e-01 7.901584e-01 setrgbcolor -fill -grestore -newpath -4.58296e+01 5.029639e+01 moveto -4.605454e+01 4.657985e+01 lineto -4.318423e+01 4.609762e+01 lineto -4.292521e+01 4.980842e+01 lineto -4.58296e+01 5.029639e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.574978e+01 5.398039e+01 moveto -4.58296e+01 5.029639e+01 lineto -4.292521e+01 4.980842e+01 lineto -4.28333e+01 5.34904e+01 lineto -4.574978e+01 5.398039e+01 lineto -closepath -gsave -7.807897e-01 7.807897e-01 7.807897e-01 setrgbcolor -fill -grestore -newpath -4.574978e+01 5.398039e+01 moveto -4.58296e+01 5.029639e+01 lineto -4.292521e+01 4.980842e+01 lineto -4.28333e+01 5.34904e+01 lineto -4.574978e+01 5.398039e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.58157e+01 5.760399e+01 moveto -4.574978e+01 5.398039e+01 lineto -4.28333e+01 5.34904e+01 lineto -4.29092e+01 5.711567e+01 lineto -4.58157e+01 5.760399e+01 lineto -closepath -gsave -7.674106e-01 7.674106e-01 7.674106e-01 setrgbcolor -fill -grestore -newpath -4.58157e+01 5.760399e+01 moveto -4.574978e+01 5.398039e+01 lineto -4.28333e+01 5.34904e+01 lineto -4.29092e+01 5.711567e+01 lineto -4.58157e+01 5.760399e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.602685e+01 6.113973e+01 moveto -4.58157e+01 5.760399e+01 lineto -4.29092e+01 5.711567e+01 lineto -4.315235e+01 6.065679e+01 lineto -4.602685e+01 6.113973e+01 lineto -closepath -gsave -7.504136e-01 7.504136e-01 7.504136e-01 setrgbcolor -fill -grestore -newpath -4.602685e+01 6.113973e+01 moveto -4.58157e+01 5.760399e+01 lineto -4.29092e+01 5.711567e+01 lineto -4.315235e+01 6.065679e+01 lineto -4.602685e+01 6.113973e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.638163e+01 6.456086e+01 moveto -4.602685e+01 6.113973e+01 lineto -4.315235e+01 6.065679e+01 lineto -4.356088e+01 6.408695e+01 lineto -4.638163e+01 6.456086e+01 lineto -closepath -gsave -7.302875e-01 7.302875e-01 7.302875e-01 setrgbcolor -fill -grestore -newpath -4.638163e+01 6.456086e+01 moveto -4.602685e+01 6.113973e+01 lineto -4.315235e+01 6.065679e+01 lineto -4.356088e+01 6.408695e+01 lineto -4.638163e+01 6.456086e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.687737e+01 6.784148e+01 moveto -4.638163e+01 6.456086e+01 lineto -4.356088e+01 6.408695e+01 lineto -4.413172e+01 6.738019e+01 lineto -4.687737e+01 6.784148e+01 lineto -closepath -gsave -7.075977e-01 7.075977e-01 7.075977e-01 setrgbcolor -fill -grestore -newpath -4.687737e+01 6.784148e+01 moveto -4.638163e+01 6.456086e+01 lineto -4.356088e+01 6.408695e+01 lineto -4.413172e+01 6.738019e+01 lineto -4.687737e+01 6.784148e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.75103e+01 7.095675e+01 moveto -4.687737e+01 6.784148e+01 lineto -4.413172e+01 6.738019e+01 lineto -4.486054e+01 7.051156e+01 lineto -4.75103e+01 7.095675e+01 lineto -closepath -gsave -6.829614e-01 6.829614e-01 6.829614e-01 setrgbcolor -fill -grestore -newpath -4.75103e+01 7.095675e+01 moveto -4.687737e+01 6.784148e+01 lineto -4.413172e+01 6.738019e+01 lineto -4.486054e+01 7.051156e+01 lineto -4.75103e+01 7.095675e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.827563e+01 7.388308e+01 moveto -4.75103e+01 7.095675e+01 lineto -4.486054e+01 7.051156e+01 lineto -4.574183e+01 7.345738e+01 lineto -4.827563e+01 7.388308e+01 lineto -closepath -gsave -6.570235e-01 6.570235e-01 6.570235e-01 setrgbcolor -fill -grestore -newpath -4.827563e+01 7.388308e+01 moveto -4.75103e+01 7.095675e+01 lineto -4.486054e+01 7.051156e+01 lineto -4.574183e+01 7.345738e+01 lineto -4.827563e+01 7.388308e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.916758e+01 7.659833e+01 moveto -4.827563e+01 7.388308e+01 lineto -4.574183e+01 7.345738e+01 lineto -4.676891e+01 7.619533e+01 lineto -4.916758e+01 7.659833e+01 lineto -closepath -gsave -6.304304e-01 6.304304e-01 6.304304e-01 setrgbcolor -fill -grestore -newpath -4.916758e+01 7.659833e+01 moveto -4.827563e+01 7.388308e+01 lineto -4.574183e+01 7.345738e+01 lineto -4.676891e+01 7.619533e+01 lineto -4.916758e+01 7.659833e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.017939e+01 7.908193e+01 moveto -4.916758e+01 7.659833e+01 lineto -4.676891e+01 7.619533e+01 lineto -4.793401e+01 7.870469e+01 lineto -5.017939e+01 7.908193e+01 lineto -closepath -gsave -6.038057e-01 6.038057e-01 6.038057e-01 setrgbcolor -fill -grestore -newpath -5.017939e+01 7.908193e+01 moveto -4.916758e+01 7.659833e+01 lineto -4.676891e+01 7.619533e+01 lineto -4.793401e+01 7.870469e+01 lineto -5.017939e+01 7.908193e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.130339e+01 8.131509e+01 moveto -5.017939e+01 7.908193e+01 lineto -4.793401e+01 7.870469e+01 lineto -4.92283e+01 8.096646e+01 lineto -5.130339e+01 8.131509e+01 lineto -closepath -gsave -5.77728e-01 5.77728e-01 5.77728e-01 setrgbcolor -fill -grestore -newpath -5.130339e+01 8.131509e+01 moveto -5.017939e+01 7.908193e+01 lineto -4.793401e+01 7.870469e+01 lineto -4.92283e+01 8.096646e+01 lineto -5.130339e+01 8.131509e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.253108e+01 8.32809e+01 moveto -5.130339e+01 8.131509e+01 lineto -4.92283e+01 8.096646e+01 lineto -5.0642e+01 8.296352e+01 lineto -5.253108e+01 8.32809e+01 lineto -closepath -gsave -5.527114e-01 5.527114e-01 5.527114e-01 setrgbcolor -fill -grestore -newpath -5.253108e+01 8.32809e+01 moveto -5.130339e+01 8.131509e+01 lineto -4.92283e+01 8.096646e+01 lineto -5.0642e+01 8.296352e+01 lineto -5.253108e+01 8.32809e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.385317e+01 8.496447e+01 moveto -5.253108e+01 8.32809e+01 lineto -5.0642e+01 8.296352e+01 lineto -5.216438e+01 8.468074e+01 lineto -5.385317e+01 8.496447e+01 lineto -closepath -gsave -5.291903e-01 5.291903e-01 5.291903e-01 setrgbcolor -fill -grestore -newpath -5.385317e+01 8.496447e+01 moveto -5.253108e+01 8.32809e+01 lineto -5.0642e+01 8.296352e+01 lineto -5.216438e+01 8.468074e+01 lineto -5.385317e+01 8.496447e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.525964e+01 8.635307e+01 moveto -5.385317e+01 8.496447e+01 lineto -5.216438e+01 8.468074e+01 lineto -5.378394e+01 8.610514e+01 lineto -5.525964e+01 8.635307e+01 lineto -closepath -gsave -5.075091e-01 5.075091e-01 5.075091e-01 setrgbcolor -fill -grestore -newpath -5.525964e+01 8.635307e+01 moveto -5.385317e+01 8.496447e+01 lineto -5.216438e+01 8.468074e+01 lineto -5.378394e+01 8.610514e+01 lineto -5.525964e+01 8.635307e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.673986e+01 8.743618e+01 moveto -5.525964e+01 8.635307e+01 lineto -5.378394e+01 8.610514e+01 lineto -5.548842e+01 8.722593e+01 lineto -5.673986e+01 8.743618e+01 lineto -closepath -gsave -4.879161e-01 4.879161e-01 4.879161e-01 setrgbcolor -fill -grestore -newpath -5.673986e+01 8.743618e+01 moveto -5.525964e+01 8.635307e+01 lineto -5.378394e+01 8.610514e+01 lineto -5.548842e+01 8.722593e+01 lineto -5.673986e+01 8.743618e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.82826e+01 8.82056e+01 moveto -5.673986e+01 8.743618e+01 lineto -5.548842e+01 8.722593e+01 lineto -5.726489e+01 8.803461e+01 lineto -5.82826e+01 8.82056e+01 lineto -closepath -gsave -4.705629e-01 4.705629e-01 4.705629e-01 setrgbcolor -fill -grestore -newpath -5.82826e+01 8.82056e+01 moveto -5.673986e+01 8.743618e+01 lineto -5.548842e+01 8.722593e+01 lineto -5.726489e+01 8.803461e+01 lineto -5.82826e+01 8.82056e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.98762e+01 8.86555e+01 moveto -5.82826e+01 8.82056e+01 lineto -5.726489e+01 8.803461e+01 lineto -5.909993e+01 8.852508e+01 lineto -5.98762e+01 8.86555e+01 lineto -closepath -gsave -4.555084e-01 4.555084e-01 4.555084e-01 setrgbcolor -fill -grestore -newpath -5.98762e+01 8.86555e+01 moveto -5.82826e+01 8.82056e+01 lineto -5.726489e+01 8.803461e+01 lineto -5.909993e+01 8.852508e+01 lineto -5.98762e+01 8.86555e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.817645e+01 8.607866e+01 moveto -6.651401e+01 8.722853e+01 lineto -6.674339e+01 8.726707e+01 lineto -6.86577e+01 8.615952e+01 lineto -6.817645e+01 8.607866e+01 lineto -closepath -gsave -5.333402e-01 5.333402e-01 5.333402e-01 setrgbcolor -fill -grestore -newpath -6.817645e+01 8.607866e+01 moveto -6.651401e+01 8.722853e+01 lineto -6.674339e+01 8.726707e+01 lineto -6.86577e+01 8.615952e+01 lineto -6.817645e+01 8.607866e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.981485e+01 8.462538e+01 moveto -6.817645e+01 8.607866e+01 lineto -6.86577e+01 8.615952e+01 lineto -7.054432e+01 8.474793e+01 lineto -6.981485e+01 8.462538e+01 lineto -closepath -gsave -5.571772e-01 5.571772e-01 5.571772e-01 setrgbcolor -fill -grestore -newpath -6.981485e+01 8.462538e+01 moveto -6.817645e+01 8.607866e+01 lineto -6.86577e+01 8.615952e+01 lineto -7.054432e+01 8.474793e+01 lineto -6.981485e+01 8.462538e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.14168e+01 8.287968e+01 moveto -6.981485e+01 8.462538e+01 lineto -7.054432e+01 8.474793e+01 lineto -7.238896e+01 8.304302e+01 lineto -7.14168e+01 8.287968e+01 lineto -closepath -gsave -5.824407e-01 5.824407e-01 5.824407e-01 setrgbcolor -fill -grestore -newpath -7.14168e+01 8.287968e+01 moveto -6.981485e+01 8.462538e+01 lineto -7.054432e+01 8.474793e+01 lineto -7.238896e+01 8.304302e+01 lineto -7.14168e+01 8.287968e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.307312e+01 4.825257e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.283148e+01 4.778555e+00 lineto -6.307312e+01 4.825257e+00 lineto -closepath -gsave -5.133776e-01 5.133776e-01 5.133776e-01 setrgbcolor -fill -grestore -newpath -6.307312e+01 4.825257e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.283148e+01 4.778555e+00 lineto -6.307312e+01 4.825257e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.116083e+01 5.962225e+00 moveto -6.307312e+01 4.825257e+00 lineto -6.283148e+01 4.778555e+00 lineto -6.067938e+01 5.869175e+00 lineto -6.116083e+01 5.962225e+00 lineto -closepath -gsave -5.357682e-01 5.357682e-01 5.357682e-01 setrgbcolor -fill -grestore -newpath -6.116083e+01 5.962225e+00 moveto -6.307312e+01 4.825257e+00 lineto -6.283148e+01 4.778555e+00 lineto -6.067938e+01 5.869175e+00 lineto -6.116083e+01 5.962225e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.927761e+01 7.402296e+00 moveto -6.116083e+01 5.962225e+00 lineto -6.067938e+01 5.869175e+00 lineto -5.855999e+01 7.263603e+00 lineto -5.927761e+01 7.402296e+00 lineto -closepath -gsave -5.599497e-01 5.599497e-01 5.599497e-01 setrgbcolor -fill -grestore -newpath -5.927761e+01 7.402296e+00 moveto -6.116083e+01 5.962225e+00 lineto -6.067938e+01 5.869175e+00 lineto -5.855999e+01 7.263603e+00 lineto -5.927761e+01 7.402296e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.74377e+01 9.134569e+00 moveto -5.927761e+01 7.402296e+00 lineto -5.855999e+01 7.263603e+00 lineto -5.648936e+01 8.951282e+00 lineto -5.74377e+01 9.134569e+00 lineto -closepath -gsave -5.855494e-01 5.855494e-01 5.855494e-01 setrgbcolor -fill -grestore -newpath -5.74377e+01 9.134569e+00 moveto -5.927761e+01 7.402296e+00 lineto -5.855999e+01 7.263603e+00 lineto -5.648936e+01 8.951282e+00 lineto -5.74377e+01 9.134569e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.565505e+01 1.114593e+01 moveto -5.74377e+01 9.134569e+00 lineto -5.648936e+01 8.951282e+00 lineto -5.448315e+01 1.091944e+01 lineto -5.565505e+01 1.114593e+01 lineto -closepath -gsave -6.121046e-01 6.121046e-01 6.121046e-01 setrgbcolor -fill -grestore -newpath -5.565505e+01 1.114593e+01 moveto -5.74377e+01 9.134569e+00 lineto -5.648936e+01 8.951282e+00 lineto -5.448315e+01 1.091944e+01 lineto -5.565505e+01 1.114593e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.394314e+01 1.342115e+01 moveto -5.565505e+01 1.114593e+01 lineto -5.448315e+01 1.091944e+01 lineto -5.255656e+01 1.315317e+01 lineto -5.394314e+01 1.342115e+01 lineto -closepath -gsave -6.39075e-01 6.39075e-01 6.39075e-01 setrgbcolor -fill -grestore -newpath -5.394314e+01 1.342115e+01 moveto -5.565505e+01 1.114593e+01 lineto -5.448315e+01 1.091944e+01 lineto -5.255656e+01 1.315317e+01 lineto -5.394314e+01 1.342115e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.231494e+01 1.594301e+01 moveto -5.394314e+01 1.342115e+01 lineto -5.255656e+01 1.315317e+01 lineto -5.072417e+01 1.563556e+01 lineto -5.231494e+01 1.594301e+01 lineto -closepath -gsave -6.658589e-01 6.658589e-01 6.658589e-01 setrgbcolor -fill -grestore -newpath -5.231494e+01 1.594301e+01 moveto -5.394314e+01 1.342115e+01 lineto -5.255656e+01 1.315317e+01 lineto -5.072417e+01 1.563556e+01 lineto -5.231494e+01 1.594301e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.078277e+01 1.869241e+01 moveto -5.231494e+01 1.594301e+01 lineto -5.072417e+01 1.563556e+01 lineto -4.899985e+01 1.834783e+01 lineto -5.078277e+01 1.869241e+01 lineto -closepath -gsave -6.918144e-01 6.918144e-01 6.918144e-01 setrgbcolor -fill -grestore -newpath -5.078277e+01 1.869241e+01 moveto -5.231494e+01 1.594301e+01 lineto -5.072417e+01 1.563556e+01 lineto -4.899985e+01 1.834783e+01 lineto -5.078277e+01 1.869241e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.935822e+01 2.164854e+01 moveto -5.078277e+01 1.869241e+01 lineto -4.899985e+01 1.834783e+01 lineto -4.739667e+01 2.126943e+01 lineto -4.935822e+01 2.164854e+01 lineto -closepath -gsave -7.162827e-01 7.162827e-01 7.162827e-01 setrgbcolor -fill -grestore -newpath -4.935822e+01 2.164854e+01 moveto -5.078277e+01 1.869241e+01 lineto -4.899985e+01 1.834783e+01 lineto -4.739667e+01 2.126943e+01 lineto -4.935822e+01 2.164854e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.80521e+01 2.478902e+01 moveto -4.935822e+01 2.164854e+01 lineto -4.739667e+01 2.126943e+01 lineto -4.592675e+01 2.437826e+01 lineto -4.80521e+01 2.478902e+01 lineto -closepath -gsave -7.386136e-01 7.386136e-01 7.386136e-01 setrgbcolor -fill -grestore -newpath -4.80521e+01 2.478902e+01 moveto -4.935822e+01 2.164854e+01 lineto -4.739667e+01 2.126943e+01 lineto -4.592675e+01 2.437826e+01 lineto -4.80521e+01 2.478902e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.687427e+01 2.809008e+01 moveto -4.80521e+01 2.478902e+01 lineto -4.592675e+01 2.437826e+01 lineto -4.460122e+01 2.765077e+01 lineto -4.687427e+01 2.809008e+01 lineto -closepath -gsave -7.58192e-01 7.58192e-01 7.58192e-01 setrgbcolor -fill -grestore -newpath -4.687427e+01 2.809008e+01 moveto -4.80521e+01 2.478902e+01 lineto -4.592675e+01 2.437826e+01 lineto -4.460122e+01 2.765077e+01 lineto -4.687427e+01 2.809008e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.583367e+01 3.152673e+01 moveto -4.687427e+01 2.809008e+01 lineto -4.460122e+01 2.765077e+01 lineto -4.343012e+01 3.10622e+01 lineto -4.583367e+01 3.152673e+01 lineto -closepath -gsave -7.744629e-01 7.744629e-01 7.744629e-01 setrgbcolor -fill -grestore -newpath -4.583367e+01 3.152673e+01 moveto -4.687427e+01 2.809008e+01 lineto -4.460122e+01 2.765077e+01 lineto -4.343012e+01 3.10622e+01 lineto -4.583367e+01 3.152673e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.493816e+01 3.507295e+01 moveto -4.583367e+01 3.152673e+01 lineto -4.343012e+01 3.10622e+01 lineto -4.242231e+01 3.458671e+01 lineto -4.493816e+01 3.507295e+01 lineto -closepath -gsave -7.869549e-01 7.869549e-01 7.869549e-01 setrgbcolor -fill -grestore -newpath -4.493816e+01 3.507295e+01 moveto -4.583367e+01 3.152673e+01 lineto -4.343012e+01 3.10622e+01 lineto -4.242231e+01 3.458671e+01 lineto -4.493816e+01 3.507295e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.419454e+01 3.870188e+01 moveto -4.493816e+01 3.507295e+01 lineto -4.242231e+01 3.458671e+01 lineto -4.158543e+01 3.819762e+01 lineto -4.419454e+01 3.870188e+01 lineto -closepath -gsave -7.953004e-01 7.953004e-01 7.953004e-01 setrgbcolor -fill -grestore -newpath -4.419454e+01 3.870188e+01 moveto -4.493816e+01 3.507295e+01 lineto -4.242231e+01 3.458671e+01 lineto -4.158543e+01 3.819762e+01 lineto -4.419454e+01 3.870188e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.360841e+01 4.238607e+01 moveto -4.419454e+01 3.870188e+01 lineto -4.158543e+01 3.819762e+01 lineto -4.09258e+01 4.18676e+01 lineto -4.360841e+01 4.238607e+01 lineto -closepath -gsave -7.992514e-01 7.992514e-01 7.992514e-01 setrgbcolor -fill -grestore -newpath -4.360841e+01 4.238607e+01 moveto -4.419454e+01 3.870188e+01 lineto -4.158543e+01 3.819762e+01 lineto -4.09258e+01 4.18676e+01 lineto -4.360841e+01 4.238607e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.318423e+01 4.609762e+01 moveto -4.360841e+01 4.238607e+01 lineto -4.09258e+01 4.18676e+01 lineto -4.044843e+01 4.556887e+01 lineto -4.318423e+01 4.609762e+01 lineto -closepath -gsave -7.986905e-01 7.986905e-01 7.986905e-01 setrgbcolor -fill -grestore -newpath -4.318423e+01 4.609762e+01 moveto -4.360841e+01 4.238607e+01 lineto -4.09258e+01 4.18676e+01 lineto -4.044843e+01 4.556887e+01 lineto -4.318423e+01 4.609762e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.292521e+01 4.980842e+01 moveto -4.318423e+01 4.609762e+01 lineto -4.044843e+01 4.556887e+01 lineto -4.015692e+01 4.92734e+01 lineto -4.292521e+01 4.980842e+01 lineto -closepath -gsave -7.936353e-01 7.936353e-01 7.936353e-01 setrgbcolor -fill -grestore -newpath -4.292521e+01 4.980842e+01 moveto -4.318423e+01 4.609762e+01 lineto -4.044843e+01 4.556887e+01 lineto -4.015692e+01 4.92734e+01 lineto -4.292521e+01 4.980842e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.28333e+01 5.34904e+01 moveto -4.292521e+01 4.980842e+01 lineto -4.015692e+01 4.92734e+01 lineto -4.005349e+01 5.295315e+01 lineto -4.28333e+01 5.34904e+01 lineto -closepath -gsave -7.842381e-01 7.842381e-01 7.842381e-01 setrgbcolor -fill -grestore -newpath -4.28333e+01 5.34904e+01 moveto -4.292521e+01 4.980842e+01 lineto -4.015692e+01 4.92734e+01 lineto -4.005349e+01 5.295315e+01 lineto -4.28333e+01 5.34904e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.29092e+01 5.711567e+01 moveto -4.28333e+01 5.34904e+01 lineto -4.005349e+01 5.295315e+01 lineto -4.013891e+01 5.658026e+01 lineto -4.29092e+01 5.711567e+01 lineto -closepath -gsave -7.707792e-01 7.707792e-01 7.707792e-01 setrgbcolor -fill -grestore -newpath -4.29092e+01 5.711567e+01 moveto -4.28333e+01 5.34904e+01 lineto -4.005349e+01 5.295315e+01 lineto -4.013891e+01 5.658026e+01 lineto -4.29092e+01 5.711567e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.315235e+01 6.065679e+01 moveto -4.29092e+01 5.711567e+01 lineto -4.013891e+01 5.658026e+01 lineto -4.041254e+01 6.012727e+01 lineto -4.315235e+01 6.065679e+01 lineto -closepath -gsave -7.53654e-01 7.53654e-01 7.53654e-01 setrgbcolor -fill -grestore -newpath -4.315235e+01 6.065679e+01 moveto -4.29092e+01 5.711567e+01 lineto -4.013891e+01 5.658026e+01 lineto -4.041254e+01 6.012727e+01 lineto -4.315235e+01 6.065679e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.356088e+01 6.408695e+01 moveto -4.315235e+01 6.065679e+01 lineto -4.041254e+01 6.012727e+01 lineto -4.087231e+01 6.356733e+01 lineto -4.356088e+01 6.408695e+01 lineto -closepath -gsave -7.333566e-01 7.333566e-01 7.333566e-01 setrgbcolor -fill -grestore -newpath -4.356088e+01 6.408695e+01 moveto -4.315235e+01 6.065679e+01 lineto -4.041254e+01 6.012727e+01 lineto -4.087231e+01 6.356733e+01 lineto -4.356088e+01 6.408695e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.413172e+01 6.738019e+01 moveto -4.356088e+01 6.408695e+01 lineto -4.087231e+01 6.356733e+01 lineto -4.151474e+01 6.687441e+01 lineto -4.413172e+01 6.738019e+01 lineto -closepath -gsave -7.104584e-01 7.104584e-01 7.104584e-01 setrgbcolor -fill -grestore -newpath -4.413172e+01 6.738019e+01 moveto -4.356088e+01 6.408695e+01 lineto -4.087231e+01 6.356733e+01 lineto -4.151474e+01 6.687441e+01 lineto -4.413172e+01 6.738019e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.486054e+01 7.051156e+01 moveto -4.413172e+01 6.738019e+01 lineto -4.151474e+01 6.687441e+01 lineto -4.233496e+01 7.002345e+01 lineto -4.486054e+01 7.051156e+01 lineto -closepath -gsave -6.855842e-01 6.855842e-01 6.855842e-01 setrgbcolor -fill -grestore -newpath -4.486054e+01 7.051156e+01 moveto -4.413172e+01 6.738019e+01 lineto -4.151474e+01 6.687441e+01 lineto -4.233496e+01 7.002345e+01 lineto -4.486054e+01 7.051156e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.574183e+01 7.345738e+01 moveto -4.486054e+01 7.051156e+01 lineto -4.233496e+01 7.002345e+01 lineto -4.332676e+01 7.299062e+01 lineto -4.574183e+01 7.345738e+01 lineto -closepath -gsave -6.59387e-01 6.59387e-01 6.59387e-01 setrgbcolor -fill -grestore -newpath -4.574183e+01 7.345738e+01 moveto -4.486054e+01 7.051156e+01 lineto -4.233496e+01 7.002345e+01 lineto -4.332676e+01 7.299062e+01 lineto -4.574183e+01 7.345738e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.676891e+01 7.619533e+01 moveto -4.574183e+01 7.345738e+01 lineto -4.332676e+01 7.299062e+01 lineto -4.448264e+01 7.575347e+01 lineto -4.676891e+01 7.619533e+01 lineto -closepath -gsave -6.325215e-01 6.325215e-01 6.325215e-01 setrgbcolor -fill -grestore -newpath -4.676891e+01 7.619533e+01 moveto -4.574183e+01 7.345738e+01 lineto -4.332676e+01 7.299062e+01 lineto -4.448264e+01 7.575347e+01 lineto -4.676891e+01 7.619533e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.793401e+01 7.870469e+01 moveto -4.676891e+01 7.619533e+01 lineto -4.448264e+01 7.575347e+01 lineto -4.579385e+01 7.829106e+01 lineto -4.793401e+01 7.870469e+01 lineto -closepath -gsave -6.056198e-01 6.056198e-01 6.056198e-01 setrgbcolor -fill -grestore -newpath -4.793401e+01 7.870469e+01 moveto -4.676891e+01 7.619533e+01 lineto -4.448264e+01 7.575347e+01 lineto -4.579385e+01 7.829106e+01 lineto -4.793401e+01 7.870469e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.92283e+01 8.096646e+01 moveto -4.793401e+01 7.870469e+01 lineto -4.579385e+01 7.829106e+01 lineto -4.725045e+01 8.05842e+01 lineto -4.92283e+01 8.096646e+01 lineto -closepath -gsave -5.792685e-01 5.792685e-01 5.792685e-01 setrgbcolor -fill -grestore -newpath -4.92283e+01 8.096646e+01 moveto -4.793401e+01 7.870469e+01 lineto -4.579385e+01 7.829106e+01 lineto -4.725045e+01 8.05842e+01 lineto -4.92283e+01 8.096646e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.0642e+01 8.296352e+01 moveto -4.92283e+01 8.096646e+01 lineto -4.725045e+01 8.05842e+01 lineto -4.884143e+01 8.261552e+01 lineto -5.0642e+01 8.296352e+01 lineto -closepath -gsave -5.539888e-01 5.539888e-01 5.539888e-01 setrgbcolor -fill -grestore -newpath -5.0642e+01 8.296352e+01 moveto -4.92283e+01 8.096646e+01 lineto -4.725045e+01 8.05842e+01 lineto -4.884143e+01 8.261552e+01 lineto -5.0642e+01 8.296352e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.216438e+01 8.468074e+01 moveto -5.0642e+01 8.296352e+01 lineto -4.884143e+01 8.261552e+01 lineto -5.055474e+01 8.436965e+01 lineto -5.216438e+01 8.468074e+01 lineto -closepath -gsave -5.302215e-01 5.302215e-01 5.302215e-01 setrgbcolor -fill -grestore -newpath -5.216438e+01 8.468074e+01 moveto -5.0642e+01 8.296352e+01 lineto -4.884143e+01 8.261552e+01 lineto -5.055474e+01 8.436965e+01 lineto -5.216438e+01 8.468074e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.378394e+01 8.610514e+01 moveto -5.216438e+01 8.468074e+01 lineto -5.055474e+01 8.436965e+01 lineto -5.23774e+01 8.58333e+01 lineto -5.378394e+01 8.610514e+01 lineto -closepath -gsave -5.08316e-01 5.08316e-01 5.08316e-01 setrgbcolor -fill -grestore -newpath -5.378394e+01 8.610514e+01 moveto -5.216438e+01 8.468074e+01 lineto -5.055474e+01 8.436965e+01 lineto -5.23774e+01 8.58333e+01 lineto -5.378394e+01 8.610514e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.548842e+01 8.722593e+01 moveto -5.378394e+01 8.610514e+01 lineto -5.23774e+01 8.58333e+01 lineto -5.429562e+01 8.699539e+01 lineto -5.548842e+01 8.722593e+01 lineto -closepath -gsave -4.885241e-01 4.885241e-01 4.885241e-01 setrgbcolor -fill -grestore -newpath -5.548842e+01 8.722593e+01 moveto -5.378394e+01 8.610514e+01 lineto -5.23774e+01 8.58333e+01 lineto -5.429562e+01 8.699539e+01 lineto -5.548842e+01 8.722593e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.726489e+01 8.803461e+01 moveto -5.548842e+01 8.722593e+01 lineto -5.429562e+01 8.699539e+01 lineto -5.629487e+01 8.784714e+01 lineto -5.726489e+01 8.803461e+01 lineto -closepath -gsave -4.709997e-01 4.709997e-01 4.709997e-01 setrgbcolor -fill -grestore -newpath -5.726489e+01 8.803461e+01 moveto -5.548842e+01 8.722593e+01 lineto -5.429562e+01 8.699539e+01 lineto -5.629487e+01 8.784714e+01 lineto -5.726489e+01 8.803461e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.909993e+01 8.852508e+01 moveto -5.726489e+01 8.803461e+01 lineto -5.629487e+01 8.784714e+01 lineto -5.836003e+01 8.838208e+01 lineto -5.909993e+01 8.852508e+01 lineto -closepath -gsave -4.558026e-01 4.558026e-01 4.558026e-01 setrgbcolor -fill -grestore -newpath -5.909993e+01 8.852508e+01 moveto -5.726489e+01 8.803461e+01 lineto -5.629487e+01 8.784714e+01 lineto -5.836003e+01 8.838208e+01 lineto -5.909993e+01 8.852508e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.86577e+01 8.615952e+01 moveto -6.674339e+01 8.726707e+01 lineto -6.696202e+01 8.730932e+01 lineto -6.911639e+01 8.624817e+01 lineto -6.86577e+01 8.615952e+01 lineto -closepath -gsave -5.33549e-01 5.33549e-01 5.33549e-01 setrgbcolor -fill -grestore -newpath -6.86577e+01 8.615952e+01 moveto -6.674339e+01 8.726707e+01 lineto -6.696202e+01 8.730932e+01 lineto -6.911639e+01 8.624817e+01 lineto -6.86577e+01 8.615952e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.054432e+01 8.474793e+01 moveto -6.86577e+01 8.615952e+01 lineto -6.911639e+01 8.624817e+01 lineto -7.12396e+01 8.488231e+01 lineto -7.054432e+01 8.474793e+01 lineto -closepath -gsave -5.575742e-01 5.575742e-01 5.575742e-01 setrgbcolor -fill -grestore -newpath -7.054432e+01 8.474793e+01 moveto -6.86577e+01 8.615952e+01 lineto -6.911639e+01 8.624817e+01 lineto -7.12396e+01 8.488231e+01 lineto -7.054432e+01 8.474793e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.238896e+01 8.304302e+01 moveto -7.054432e+01 8.474793e+01 lineto -7.12396e+01 8.488231e+01 lineto -7.331558e+01 8.32221e+01 lineto -7.238896e+01 8.304302e+01 lineto -closepath -gsave -5.830572e-01 5.830572e-01 5.830572e-01 setrgbcolor -fill -grestore -newpath -7.238896e+01 8.304302e+01 moveto -7.054432e+01 8.474793e+01 lineto -7.12396e+01 8.488231e+01 lineto -7.331558e+01 8.32221e+01 lineto -7.238896e+01 8.304302e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.283148e+01 4.778555e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.260321e+01 4.728034e+00 lineto -6.283148e+01 4.778555e+00 lineto -closepath -gsave -5.133776e-01 5.133776e-01 5.133776e-01 setrgbcolor -fill -grestore -newpath -6.283148e+01 4.778555e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.260321e+01 4.728034e+00 lineto -6.283148e+01 4.778555e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.067938e+01 5.869175e+00 moveto -6.283148e+01 4.778555e+00 lineto -6.260321e+01 4.728034e+00 lineto -6.022457e+01 5.768515e+00 lineto -6.067938e+01 5.869175e+00 lineto -closepath -gsave -5.357682e-01 5.357682e-01 5.357682e-01 setrgbcolor -fill -grestore -newpath -6.067938e+01 5.869175e+00 moveto -6.283148e+01 4.778555e+00 lineto -6.260321e+01 4.728034e+00 lineto -6.022457e+01 5.768515e+00 lineto -6.067938e+01 5.869175e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.855999e+01 7.263603e+00 moveto -6.067938e+01 5.869175e+00 lineto -6.022457e+01 5.768515e+00 lineto -5.788208e+01 7.113566e+00 lineto -5.855999e+01 7.263603e+00 lineto -closepath -gsave -5.599497e-01 5.599497e-01 5.599497e-01 setrgbcolor -fill -grestore -newpath -5.855999e+01 7.263603e+00 moveto -6.067938e+01 5.869175e+00 lineto -6.022457e+01 5.768515e+00 lineto -5.788208e+01 7.113566e+00 lineto -5.855999e+01 7.263603e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.648936e+01 8.951282e+00 moveto -5.855999e+01 7.263603e+00 lineto -5.788208e+01 7.113566e+00 lineto -5.559348e+01 8.753004e+00 lineto -5.648936e+01 8.951282e+00 lineto -closepath -gsave -5.855494e-01 5.855494e-01 5.855494e-01 setrgbcolor -fill -grestore -newpath -5.648936e+01 8.951282e+00 moveto -5.855999e+01 7.263603e+00 lineto -5.788208e+01 7.113566e+00 lineto -5.559348e+01 8.753004e+00 lineto -5.648936e+01 8.951282e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.448315e+01 1.091944e+01 moveto -5.648936e+01 8.951282e+00 lineto -5.559348e+01 8.753004e+00 lineto -5.337608e+01 1.067442e+01 lineto -5.448315e+01 1.091944e+01 lineto -closepath -gsave -6.121046e-01 6.121046e-01 6.121046e-01 setrgbcolor -fill -grestore -newpath -5.448315e+01 1.091944e+01 moveto -5.648936e+01 8.951282e+00 lineto -5.559348e+01 8.753004e+00 lineto -5.337608e+01 1.067442e+01 lineto -5.448315e+01 1.091944e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.255656e+01 1.315317e+01 moveto -5.448315e+01 1.091944e+01 lineto -5.337608e+01 1.067442e+01 lineto -5.124669e+01 1.286326e+01 lineto -5.255656e+01 1.315317e+01 lineto -closepath -gsave -6.39075e-01 6.39075e-01 6.39075e-01 setrgbcolor -fill -grestore -newpath -5.255656e+01 1.315317e+01 moveto -5.448315e+01 1.091944e+01 lineto -5.337608e+01 1.067442e+01 lineto -5.124669e+01 1.286326e+01 lineto -5.255656e+01 1.315317e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.072417e+01 1.563556e+01 moveto -5.255656e+01 1.315317e+01 lineto -5.124669e+01 1.286326e+01 lineto -4.922141e+01 1.530297e+01 lineto -5.072417e+01 1.563556e+01 lineto -closepath -gsave -6.658589e-01 6.658589e-01 6.658589e-01 setrgbcolor -fill -grestore -newpath -5.072417e+01 1.563556e+01 moveto -5.255656e+01 1.315317e+01 lineto -5.124669e+01 1.286326e+01 lineto -4.922141e+01 1.530297e+01 lineto -5.072417e+01 1.563556e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.899985e+01 1.834783e+01 moveto -5.072417e+01 1.563556e+01 lineto -4.922141e+01 1.530297e+01 lineto -4.731559e+01 1.797506e+01 lineto -4.899985e+01 1.834783e+01 lineto -closepath -gsave -6.918144e-01 6.918144e-01 6.918144e-01 setrgbcolor -fill -grestore -newpath -4.899985e+01 1.834783e+01 moveto -5.072417e+01 1.563556e+01 lineto -4.922141e+01 1.530297e+01 lineto -4.731559e+01 1.797506e+01 lineto -4.899985e+01 1.834783e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.739667e+01 2.126943e+01 moveto -4.899985e+01 1.834783e+01 lineto -4.731559e+01 1.797506e+01 lineto -4.554364e+01 2.085932e+01 lineto -4.739667e+01 2.126943e+01 lineto -closepath -gsave -7.162827e-01 7.162827e-01 7.162827e-01 setrgbcolor -fill -grestore -newpath -4.739667e+01 2.126943e+01 moveto -4.899985e+01 1.834783e+01 lineto -4.731559e+01 1.797506e+01 lineto -4.554364e+01 2.085932e+01 lineto -4.739667e+01 2.126943e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.592675e+01 2.437826e+01 moveto -4.739667e+01 2.126943e+01 lineto -4.554364e+01 2.085932e+01 lineto -4.391899e+01 2.39339e+01 lineto -4.592675e+01 2.437826e+01 lineto -closepath -gsave -7.386136e-01 7.386136e-01 7.386136e-01 setrgbcolor -fill -grestore -newpath -4.592675e+01 2.437826e+01 moveto -4.739667e+01 2.126943e+01 lineto -4.554364e+01 2.085932e+01 lineto -4.391899e+01 2.39339e+01 lineto -4.592675e+01 2.437826e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.460122e+01 2.765077e+01 moveto -4.592675e+01 2.437826e+01 lineto -4.391899e+01 2.39339e+01 lineto -4.245393e+01 2.717553e+01 lineto -4.460122e+01 2.765077e+01 lineto -closepath -gsave -7.58192e-01 7.58192e-01 7.58192e-01 setrgbcolor -fill -grestore -newpath -4.460122e+01 2.765077e+01 moveto -4.592675e+01 2.437826e+01 lineto -4.391899e+01 2.39339e+01 lineto -4.245393e+01 2.717553e+01 lineto -4.460122e+01 2.765077e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.343012e+01 3.10622e+01 moveto -4.460122e+01 2.765077e+01 lineto -4.245393e+01 2.717553e+01 lineto -4.115955e+01 3.055967e+01 lineto -4.343012e+01 3.10622e+01 lineto -closepath -gsave -7.744629e-01 7.744629e-01 7.744629e-01 setrgbcolor -fill -grestore -newpath -4.343012e+01 3.10622e+01 moveto -4.460122e+01 2.765077e+01 lineto -4.245393e+01 2.717553e+01 lineto -4.115955e+01 3.055967e+01 lineto -4.343012e+01 3.10622e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.242231e+01 3.458671e+01 moveto -4.343012e+01 3.10622e+01 lineto -4.115955e+01 3.055967e+01 lineto -4.004566e+01 3.40607e+01 lineto -4.242231e+01 3.458671e+01 lineto -closepath -gsave -7.869549e-01 7.869549e-01 7.869549e-01 setrgbcolor -fill -grestore -newpath -4.242231e+01 3.458671e+01 moveto -4.343012e+01 3.10622e+01 lineto -4.115955e+01 3.055967e+01 lineto -4.004566e+01 3.40607e+01 lineto -4.242231e+01 3.458671e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.158543e+01 3.819762e+01 moveto -4.242231e+01 3.458671e+01 lineto -4.004566e+01 3.40607e+01 lineto -3.912068e+01 3.765212e+01 lineto -4.158543e+01 3.819762e+01 lineto -closepath -gsave -7.953004e-01 7.953004e-01 7.953004e-01 setrgbcolor -fill -grestore -newpath -4.158543e+01 3.819762e+01 moveto -4.242231e+01 3.458671e+01 lineto -4.004566e+01 3.40607e+01 lineto -3.912068e+01 3.765212e+01 lineto -4.158543e+01 3.819762e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.09258e+01 4.18676e+01 moveto -4.158543e+01 3.819762e+01 lineto -3.912068e+01 3.765212e+01 lineto -3.839162e+01 4.130673e+01 lineto -4.09258e+01 4.18676e+01 lineto -closepath -gsave -7.992514e-01 7.992514e-01 7.992514e-01 setrgbcolor -fill -grestore -newpath -4.09258e+01 4.18676e+01 moveto -4.158543e+01 3.819762e+01 lineto -3.912068e+01 3.765212e+01 lineto -3.839162e+01 4.130673e+01 lineto -4.09258e+01 4.18676e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.044843e+01 4.556887e+01 moveto -4.09258e+01 4.18676e+01 lineto -3.839162e+01 4.130673e+01 lineto -3.786399e+01 4.499688e+01 lineto -4.044843e+01 4.556887e+01 lineto -closepath -gsave -7.986905e-01 7.986905e-01 7.986905e-01 setrgbcolor -fill -grestore -newpath -4.044843e+01 4.556887e+01 moveto -4.09258e+01 4.18676e+01 lineto -3.839162e+01 4.130673e+01 lineto -3.786399e+01 4.499688e+01 lineto -4.044843e+01 4.556887e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.015692e+01 4.92734e+01 moveto -4.044843e+01 4.556887e+01 lineto -3.786399e+01 4.499688e+01 lineto -3.75418e+01 4.869461e+01 lineto -4.015692e+01 4.92734e+01 lineto -closepath -gsave -7.936353e-01 7.936353e-01 7.936353e-01 setrgbcolor -fill -grestore -newpath -4.015692e+01 4.92734e+01 moveto -4.044843e+01 4.556887e+01 lineto -3.786399e+01 4.499688e+01 lineto -3.75418e+01 4.869461e+01 lineto -4.015692e+01 4.92734e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.005349e+01 5.295315e+01 moveto -4.015692e+01 4.92734e+01 lineto -3.75418e+01 4.869461e+01 lineto -3.742748e+01 5.237195e+01 lineto -4.005349e+01 5.295315e+01 lineto -closepath -gsave -7.842381e-01 7.842381e-01 7.842381e-01 setrgbcolor -fill -grestore -newpath -4.005349e+01 5.295315e+01 moveto -4.015692e+01 4.92734e+01 lineto -3.75418e+01 4.869461e+01 lineto -3.742748e+01 5.237195e+01 lineto -4.005349e+01 5.295315e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.013891e+01 5.658026e+01 moveto -4.005349e+01 5.295315e+01 lineto -3.742748e+01 5.237195e+01 lineto -3.752189e+01 5.600105e+01 lineto -4.013891e+01 5.658026e+01 lineto -closepath -gsave -7.707792e-01 7.707792e-01 7.707792e-01 setrgbcolor -fill -grestore -newpath -4.013891e+01 5.658026e+01 moveto -4.005349e+01 5.295315e+01 lineto -3.742748e+01 5.237195e+01 lineto -3.752189e+01 5.600105e+01 lineto -4.013891e+01 5.658026e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.041254e+01 6.012727e+01 moveto -4.013891e+01 5.658026e+01 lineto -3.752189e+01 5.600105e+01 lineto -3.782433e+01 5.955444e+01 lineto -4.041254e+01 6.012727e+01 lineto -closepath -gsave -7.53654e-01 7.53654e-01 7.53654e-01 setrgbcolor -fill -grestore -newpath -4.041254e+01 6.012727e+01 moveto -4.013891e+01 5.658026e+01 lineto -3.752189e+01 5.600105e+01 lineto -3.782433e+01 5.955444e+01 lineto -4.041254e+01 6.012727e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.087231e+01 6.356733e+01 moveto -4.041254e+01 6.012727e+01 lineto -3.782433e+01 5.955444e+01 lineto -3.83325e+01 6.300522e+01 lineto -4.087231e+01 6.356733e+01 lineto -closepath -gsave -7.333566e-01 7.333566e-01 7.333566e-01 setrgbcolor -fill -grestore -newpath -4.087231e+01 6.356733e+01 moveto -4.041254e+01 6.012727e+01 lineto -3.782433e+01 5.955444e+01 lineto -3.83325e+01 6.300522e+01 lineto -4.087231e+01 6.356733e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.151474e+01 6.687441e+01 moveto -4.087231e+01 6.356733e+01 lineto -3.83325e+01 6.300522e+01 lineto -3.904255e+01 6.632725e+01 lineto -4.151474e+01 6.687441e+01 lineto -closepath -gsave -7.104584e-01 7.104584e-01 7.104584e-01 setrgbcolor -fill -grestore -newpath -4.151474e+01 6.687441e+01 moveto -4.087231e+01 6.356733e+01 lineto -3.83325e+01 6.300522e+01 lineto -3.904255e+01 6.632725e+01 lineto -4.151474e+01 6.687441e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.233496e+01 7.002345e+01 moveto -4.151474e+01 6.687441e+01 lineto -3.904255e+01 6.632725e+01 lineto -3.994911e+01 6.949541e+01 lineto -4.233496e+01 7.002345e+01 lineto -closepath -gsave -6.855842e-01 6.855842e-01 6.855842e-01 setrgbcolor -fill -grestore -newpath -4.233496e+01 7.002345e+01 moveto -4.151474e+01 6.687441e+01 lineto -3.904255e+01 6.632725e+01 lineto -3.994911e+01 6.949541e+01 lineto -4.233496e+01 7.002345e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.332676e+01 7.299062e+01 moveto -4.233496e+01 7.002345e+01 lineto -3.994911e+01 6.949541e+01 lineto -4.104532e+01 7.248569e+01 lineto -4.332676e+01 7.299062e+01 lineto -closepath -gsave -6.59387e-01 6.59387e-01 6.59387e-01 setrgbcolor -fill -grestore -newpath -4.332676e+01 7.299062e+01 moveto -4.233496e+01 7.002345e+01 lineto -3.994911e+01 6.949541e+01 lineto -4.104532e+01 7.248569e+01 lineto -4.332676e+01 7.299062e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.448264e+01 7.575347e+01 moveto -4.332676e+01 7.299062e+01 lineto -4.104532e+01 7.248569e+01 lineto -4.232287e+01 7.527546e+01 lineto -4.448264e+01 7.575347e+01 lineto -closepath -gsave -6.325215e-01 6.325215e-01 6.325215e-01 setrgbcolor -fill -grestore -newpath -4.448264e+01 7.575347e+01 moveto -4.332676e+01 7.299062e+01 lineto -4.104532e+01 7.248569e+01 lineto -4.232287e+01 7.527546e+01 lineto -4.448264e+01 7.575347e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.579385e+01 7.829106e+01 moveto -4.448264e+01 7.575347e+01 lineto -4.232287e+01 7.527546e+01 lineto -4.37721e+01 7.78436e+01 lineto -4.579385e+01 7.829106e+01 lineto -closepath -gsave -6.056198e-01 6.056198e-01 6.056198e-01 setrgbcolor -fill -grestore -newpath -4.579385e+01 7.829106e+01 moveto -4.448264e+01 7.575347e+01 lineto -4.232287e+01 7.527546e+01 lineto -4.37721e+01 7.78436e+01 lineto -4.579385e+01 7.829106e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.725045e+01 8.05842e+01 moveto -4.579385e+01 7.829106e+01 lineto -4.37721e+01 7.78436e+01 lineto -4.538204e+01 8.017068e+01 lineto -4.725045e+01 8.05842e+01 lineto -closepath -gsave -5.792685e-01 5.792685e-01 5.792685e-01 setrgbcolor -fill -grestore -newpath -4.725045e+01 8.05842e+01 moveto -4.579385e+01 7.829106e+01 lineto -4.37721e+01 7.78436e+01 lineto -4.538204e+01 8.017068e+01 lineto -4.725045e+01 8.05842e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.884143e+01 8.261552e+01 moveto -4.725045e+01 8.05842e+01 lineto -4.538204e+01 8.017068e+01 lineto -4.714049e+01 8.223907e+01 lineto -4.884143e+01 8.261552e+01 lineto -closepath -gsave -5.539888e-01 5.539888e-01 5.539888e-01 setrgbcolor -fill -grestore -newpath -4.884143e+01 8.261552e+01 moveto -4.725045e+01 8.05842e+01 lineto -4.538204e+01 8.017068e+01 lineto -4.714049e+01 8.223907e+01 lineto -4.884143e+01 8.261552e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.055474e+01 8.436965e+01 moveto -4.884143e+01 8.261552e+01 lineto -4.714049e+01 8.223907e+01 lineto -4.903415e+01 8.403311e+01 lineto -5.055474e+01 8.436965e+01 lineto -closepath -gsave -5.302215e-01 5.302215e-01 5.302215e-01 setrgbcolor -fill -grestore -newpath -5.055474e+01 8.436965e+01 moveto -4.884143e+01 8.261552e+01 lineto -4.714049e+01 8.223907e+01 lineto -4.903415e+01 8.403311e+01 lineto -5.055474e+01 8.436965e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.23774e+01 8.58333e+01 moveto -5.055474e+01 8.436965e+01 lineto -4.903415e+01 8.403311e+01 lineto -5.104867e+01 8.553922e+01 lineto -5.23774e+01 8.58333e+01 lineto -closepath -gsave -5.08316e-01 5.08316e-01 5.08316e-01 setrgbcolor -fill -grestore -newpath -5.23774e+01 8.58333e+01 moveto -5.055474e+01 8.436965e+01 lineto -4.903415e+01 8.403311e+01 lineto -5.104867e+01 8.553922e+01 lineto -5.23774e+01 8.58333e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.429562e+01 8.699539e+01 moveto -5.23774e+01 8.58333e+01 lineto -5.104867e+01 8.553922e+01 lineto -5.316881e+01 8.674601e+01 lineto -5.429562e+01 8.699539e+01 lineto -closepath -gsave -4.885241e-01 4.885241e-01 4.885241e-01 setrgbcolor -fill -grestore -newpath -5.429562e+01 8.699539e+01 moveto -5.23774e+01 8.58333e+01 lineto -5.104867e+01 8.553922e+01 lineto -5.316881e+01 8.674601e+01 lineto -5.429562e+01 8.699539e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.629487e+01 8.784714e+01 moveto -5.429562e+01 8.699539e+01 lineto -5.316881e+01 8.674601e+01 lineto -5.537852e+01 8.764433e+01 lineto -5.629487e+01 8.784714e+01 lineto -closepath -gsave -4.709997e-01 4.709997e-01 4.709997e-01 setrgbcolor -fill -grestore -newpath -5.629487e+01 8.784714e+01 moveto -5.429562e+01 8.699539e+01 lineto -5.316881e+01 8.674601e+01 lineto -5.537852e+01 8.764433e+01 lineto -5.629487e+01 8.784714e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.836003e+01 8.838208e+01 moveto -5.629487e+01 8.784714e+01 lineto -5.537852e+01 8.764433e+01 lineto -5.766107e+01 8.822738e+01 lineto -5.836003e+01 8.838208e+01 lineto -closepath -gsave -4.558026e-01 4.558026e-01 4.558026e-01 setrgbcolor -fill -grestore -newpath -5.836003e+01 8.838208e+01 moveto -5.629487e+01 8.784714e+01 lineto -5.537852e+01 8.764433e+01 lineto -5.766107e+01 8.822738e+01 lineto -5.836003e+01 8.838208e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.911639e+01 8.624817e+01 moveto -6.696202e+01 8.730932e+01 lineto -6.716855e+01 8.735503e+01 lineto -6.954971e+01 8.634407e+01 lineto -6.911639e+01 8.624817e+01 lineto -closepath -gsave -5.33549e-01 5.33549e-01 5.33549e-01 setrgbcolor -fill -grestore -newpath -6.911639e+01 8.624817e+01 moveto -6.696202e+01 8.730932e+01 lineto -6.716855e+01 8.735503e+01 lineto -6.954971e+01 8.634407e+01 lineto -6.911639e+01 8.624817e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.12396e+01 8.488231e+01 moveto -6.911639e+01 8.624817e+01 lineto -6.954971e+01 8.634407e+01 lineto -7.189642e+01 8.502768e+01 lineto -7.12396e+01 8.488231e+01 lineto -closepath -gsave -5.575742e-01 5.575742e-01 5.575742e-01 setrgbcolor -fill -grestore -newpath -7.12396e+01 8.488231e+01 moveto -6.911639e+01 8.624817e+01 lineto -6.954971e+01 8.634407e+01 lineto -7.189642e+01 8.502768e+01 lineto -7.12396e+01 8.488231e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.331558e+01 8.32221e+01 moveto -7.12396e+01 8.488231e+01 lineto -7.189642e+01 8.502768e+01 lineto -7.419092e+01 8.341583e+01 lineto -7.331558e+01 8.32221e+01 lineto -closepath -gsave -5.830572e-01 5.830572e-01 5.830572e-01 setrgbcolor -fill -grestore -newpath -7.331558e+01 8.32221e+01 moveto -7.12396e+01 8.488231e+01 lineto -7.189642e+01 8.502768e+01 lineto -7.419092e+01 8.341583e+01 lineto -7.331558e+01 8.32221e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.260321e+01 4.728034e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.238972e+01 4.674004e+00 lineto -6.260321e+01 4.728034e+00 lineto -closepath -gsave -5.133108e-01 5.133108e-01 5.133108e-01 setrgbcolor -fill -grestore -newpath -6.260321e+01 4.728034e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.238972e+01 4.674004e+00 lineto -6.260321e+01 4.728034e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.022457e+01 5.768515e+00 moveto -6.260321e+01 4.728034e+00 lineto -6.238972e+01 4.674004e+00 lineto -5.97992e+01 5.660865e+00 lineto -6.022457e+01 5.768515e+00 lineto -closepath -gsave -5.355429e-01 5.355429e-01 5.355429e-01 setrgbcolor -fill -grestore -newpath -6.022457e+01 5.768515e+00 moveto -6.260321e+01 4.728034e+00 lineto -6.238972e+01 4.674004e+00 lineto -5.97992e+01 5.660865e+00 lineto -6.022457e+01 5.768515e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.788208e+01 7.113566e+00 moveto -6.022457e+01 5.768515e+00 lineto -5.97992e+01 5.660865e+00 lineto -5.724805e+01 6.95311e+00 lineto -5.788208e+01 7.113566e+00 lineto -closepath -gsave -5.59533e-01 5.59533e-01 5.59533e-01 setrgbcolor -fill -grestore -newpath -5.788208e+01 7.113566e+00 moveto -6.022457e+01 5.768515e+00 lineto -5.97992e+01 5.660865e+00 lineto -5.724805e+01 6.95311e+00 lineto -5.788208e+01 7.113566e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.559348e+01 8.753004e+00 moveto -5.788208e+01 7.113566e+00 lineto -5.724805e+01 6.95311e+00 lineto -5.475559e+01 8.540957e+00 lineto -5.559348e+01 8.753004e+00 lineto -closepath -gsave -5.849104e-01 5.849104e-01 5.849104e-01 setrgbcolor -fill -grestore -newpath -5.559348e+01 8.753004e+00 moveto -5.788208e+01 7.113566e+00 lineto -5.724805e+01 6.95311e+00 lineto -5.475559e+01 8.540957e+00 lineto -5.559348e+01 8.753004e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.337608e+01 1.067442e+01 moveto -5.559348e+01 8.753004e+00 lineto -5.475559e+01 8.540957e+00 lineto -5.234069e+01 1.041239e+01 lineto -5.337608e+01 1.067442e+01 lineto -closepath -gsave -6.112158e-01 6.112158e-01 6.112158e-01 setrgbcolor -fill -grestore -newpath -5.337608e+01 1.067442e+01 moveto -5.559348e+01 8.753004e+00 lineto -5.475559e+01 8.540957e+00 lineto -5.234069e+01 1.041239e+01 lineto -5.337608e+01 1.067442e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.124669e+01 1.286326e+01 moveto -5.337608e+01 1.067442e+01 lineto -5.234069e+01 1.041239e+01 lineto -5.002162e+01 1.255323e+01 lineto -5.124669e+01 1.286326e+01 lineto -closepath -gsave -6.379136e-01 6.379136e-01 6.379136e-01 setrgbcolor -fill -grestore -newpath -5.124669e+01 1.286326e+01 moveto -5.337608e+01 1.067442e+01 lineto -5.234069e+01 1.041239e+01 lineto -5.002162e+01 1.255323e+01 lineto -5.124669e+01 1.286326e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.922141e+01 1.530297e+01 moveto -5.124669e+01 1.286326e+01 lineto -5.002162e+01 1.255323e+01 lineto -4.781594e+01 1.494728e+01 lineto -4.922141e+01 1.530297e+01 lineto -closepath -gsave -6.644087e-01 6.644087e-01 6.644087e-01 setrgbcolor -fill -grestore -newpath -4.922141e+01 1.530297e+01 moveto -5.124669e+01 1.286326e+01 lineto -5.002162e+01 1.255323e+01 lineto -4.781594e+01 1.494728e+01 lineto -4.922141e+01 1.530297e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.731559e+01 1.797506e+01 moveto -4.922141e+01 1.530297e+01 lineto -4.781594e+01 1.494728e+01 lineto -4.574035e+01 1.757641e+01 lineto -4.731559e+01 1.797506e+01 lineto -closepath -gsave -6.900663e-01 6.900663e-01 6.900663e-01 setrgbcolor -fill -grestore -newpath -4.731559e+01 1.797506e+01 moveto -4.922141e+01 1.530297e+01 lineto -4.781594e+01 1.494728e+01 lineto -4.574035e+01 1.757641e+01 lineto -4.731559e+01 1.797506e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.554364e+01 2.085932e+01 moveto -4.731559e+01 1.797506e+01 lineto -4.574035e+01 1.757641e+01 lineto -4.381057e+01 2.042072e+01 lineto -4.554364e+01 2.085932e+01 lineto -closepath -gsave -7.142359e-01 7.142359e-01 7.142359e-01 setrgbcolor -fill -grestore -newpath -4.554364e+01 2.085932e+01 moveto -4.731559e+01 1.797506e+01 lineto -4.574035e+01 1.757641e+01 lineto -4.381057e+01 2.042072e+01 lineto -4.554364e+01 2.085932e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.391899e+01 2.39339e+01 moveto -4.554364e+01 2.085932e+01 lineto -4.381057e+01 2.042072e+01 lineto -4.20412e+01 2.345868e+01 lineto -4.391899e+01 2.39339e+01 lineto -closepath -gsave -7.362762e-01 7.362762e-01 7.362762e-01 setrgbcolor -fill -grestore -newpath -4.391899e+01 2.39339e+01 moveto -4.554364e+01 2.085932e+01 lineto -4.381057e+01 2.042072e+01 lineto -4.20412e+01 2.345868e+01 lineto -4.391899e+01 2.39339e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.245393e+01 2.717553e+01 moveto -4.391899e+01 2.39339e+01 lineto -4.20412e+01 2.345868e+01 lineto -4.044564e+01 2.666728e+01 lineto -4.245393e+01 2.717553e+01 lineto -closepath -gsave -7.55581e-01 7.55581e-01 7.55581e-01 setrgbcolor -fill -grestore -newpath -4.245393e+01 2.717553e+01 moveto -4.391899e+01 2.39339e+01 lineto -4.20412e+01 2.345868e+01 lineto -4.044564e+01 2.666728e+01 lineto -4.245393e+01 2.717553e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.115955e+01 3.055967e+01 moveto -4.245393e+01 2.717553e+01 lineto -4.044564e+01 2.666728e+01 lineto -3.903597e+01 3.002225e+01 lineto -4.115955e+01 3.055967e+01 lineto -closepath -gsave -7.716037e-01 7.716037e-01 7.716037e-01 setrgbcolor -fill -grestore -newpath -4.115955e+01 3.055967e+01 moveto -4.245393e+01 2.717553e+01 lineto -4.044564e+01 2.666728e+01 lineto -3.903597e+01 3.002225e+01 lineto -4.115955e+01 3.055967e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.004566e+01 3.40607e+01 moveto -4.115955e+01 3.055967e+01 lineto -3.903597e+01 3.002225e+01 lineto -3.782285e+01 3.349817e+01 lineto -4.004566e+01 3.40607e+01 lineto -closepath -gsave -7.838812e-01 7.838812e-01 7.838812e-01 setrgbcolor -fill -grestore -newpath -4.004566e+01 3.40607e+01 moveto -4.115955e+01 3.055967e+01 lineto -3.903597e+01 3.002225e+01 lineto -3.782285e+01 3.349817e+01 lineto -4.004566e+01 3.40607e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.912068e+01 3.765212e+01 moveto -4.004566e+01 3.40607e+01 lineto -3.782285e+01 3.349817e+01 lineto -3.681548e+01 3.706873e+01 lineto -3.912068e+01 3.765212e+01 lineto -closepath -gsave -7.920529e-01 7.920529e-01 7.920529e-01 setrgbcolor -fill -grestore -newpath -3.912068e+01 3.765212e+01 moveto -4.004566e+01 3.40607e+01 lineto -3.782285e+01 3.349817e+01 lineto -3.681548e+01 3.706873e+01 lineto -3.912068e+01 3.765212e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.839162e+01 4.130673e+01 moveto -3.912068e+01 3.765212e+01 lineto -3.681548e+01 3.706873e+01 lineto -3.602148e+01 4.070691e+01 lineto -3.839162e+01 4.130673e+01 lineto -closepath -gsave -7.958764e-01 7.958764e-01 7.958764e-01 setrgbcolor -fill -grestore -newpath -3.839162e+01 4.130673e+01 moveto -3.912068e+01 3.765212e+01 lineto -3.681548e+01 3.706873e+01 lineto -3.602148e+01 4.070691e+01 lineto -3.839162e+01 4.130673e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.786399e+01 4.499688e+01 moveto -3.839162e+01 4.130673e+01 lineto -3.602148e+01 4.070691e+01 lineto -3.544686e+01 4.438516e+01 lineto -3.786399e+01 4.499688e+01 lineto -closepath -gsave -7.952382e-01 7.952382e-01 7.952382e-01 setrgbcolor -fill -grestore -newpath -3.786399e+01 4.499688e+01 moveto -3.839162e+01 4.130673e+01 lineto -3.602148e+01 4.070691e+01 lineto -3.544686e+01 4.438516e+01 lineto -3.786399e+01 4.499688e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.75418e+01 4.869461e+01 moveto -3.786399e+01 4.499688e+01 lineto -3.544686e+01 4.438516e+01 lineto -3.509597e+01 4.807564e+01 lineto -3.75418e+01 4.869461e+01 lineto -closepath -gsave -7.901584e-01 7.901584e-01 7.901584e-01 setrgbcolor -fill -grestore -newpath -3.75418e+01 4.869461e+01 moveto -3.786399e+01 4.499688e+01 lineto -3.544686e+01 4.438516e+01 lineto -3.509597e+01 4.807564e+01 lineto -3.75418e+01 4.869461e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.742748e+01 5.237195e+01 moveto -3.75418e+01 4.869461e+01 lineto -3.509597e+01 4.807564e+01 lineto -3.497146e+01 5.17504e+01 lineto -3.742748e+01 5.237195e+01 lineto -closepath -gsave -7.807897e-01 7.807897e-01 7.807897e-01 setrgbcolor -fill -grestore -newpath -3.742748e+01 5.237195e+01 moveto -3.75418e+01 4.869461e+01 lineto -3.509597e+01 4.807564e+01 lineto -3.497146e+01 5.17504e+01 lineto -3.742748e+01 5.237195e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.752189e+01 5.600105e+01 moveto -3.742748e+01 5.237195e+01 lineto -3.497146e+01 5.17504e+01 lineto -3.507429e+01 5.538163e+01 lineto -3.752189e+01 5.600105e+01 lineto -closepath -gsave -7.674106e-01 7.674106e-01 7.674106e-01 setrgbcolor -fill -grestore -newpath -3.752189e+01 5.600105e+01 moveto -3.742748e+01 5.237195e+01 lineto -3.497146e+01 5.17504e+01 lineto -3.507429e+01 5.538163e+01 lineto -3.752189e+01 5.600105e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.782433e+01 5.955444e+01 moveto -3.752189e+01 5.600105e+01 lineto -3.507429e+01 5.538163e+01 lineto -3.540366e+01 5.894183e+01 lineto -3.782433e+01 5.955444e+01 lineto -closepath -gsave -7.504136e-01 7.504136e-01 7.504136e-01 setrgbcolor -fill -grestore -newpath -3.782433e+01 5.955444e+01 moveto -3.752189e+01 5.600105e+01 lineto -3.507429e+01 5.538163e+01 lineto -3.540366e+01 5.894183e+01 lineto -3.782433e+01 5.955444e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.83325e+01 6.300522e+01 moveto -3.782433e+01 5.955444e+01 lineto -3.540366e+01 5.894183e+01 lineto -3.595709e+01 6.240406e+01 lineto -3.83325e+01 6.300522e+01 lineto -closepath -gsave -7.302875e-01 7.302875e-01 7.302875e-01 setrgbcolor -fill -grestore -newpath -3.83325e+01 6.300522e+01 moveto -3.782433e+01 5.955444e+01 lineto -3.540366e+01 5.894183e+01 lineto -3.595709e+01 6.240406e+01 lineto -3.83325e+01 6.300522e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.904255e+01 6.632725e+01 moveto -3.83325e+01 6.300522e+01 lineto -3.595709e+01 6.240406e+01 lineto -3.673039e+01 6.574211e+01 lineto -3.904255e+01 6.632725e+01 lineto -closepath -gsave -7.075977e-01 7.075977e-01 7.075977e-01 setrgbcolor -fill -grestore -newpath -3.904255e+01 6.632725e+01 moveto -3.83325e+01 6.300522e+01 lineto -3.595709e+01 6.240406e+01 lineto -3.673039e+01 6.574211e+01 lineto -3.904255e+01 6.632725e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.994911e+01 6.949541e+01 moveto -3.904255e+01 6.632725e+01 lineto -3.673039e+01 6.574211e+01 lineto -3.771771e+01 6.893069e+01 lineto -3.994911e+01 6.949541e+01 lineto -closepath -gsave -6.829614e-01 6.829614e-01 6.829614e-01 setrgbcolor -fill -grestore -newpath -3.994911e+01 6.949541e+01 moveto -3.904255e+01 6.632725e+01 lineto -3.673039e+01 6.574211e+01 lineto -3.771771e+01 6.893069e+01 lineto -3.994911e+01 6.949541e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.104532e+01 7.248569e+01 moveto -3.994911e+01 6.949541e+01 lineto -3.771771e+01 6.893069e+01 lineto -3.891156e+01 7.194569e+01 lineto -4.104532e+01 7.248569e+01 lineto -closepath -gsave -6.570235e-01 6.570235e-01 6.570235e-01 setrgbcolor -fill -grestore -newpath -4.104532e+01 7.248569e+01 moveto -3.994911e+01 6.949541e+01 lineto -3.771771e+01 6.893069e+01 lineto -3.891156e+01 7.194569e+01 lineto -4.104532e+01 7.248569e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.232287e+01 7.527546e+01 moveto -4.104532e+01 7.248569e+01 lineto -3.891156e+01 7.194569e+01 lineto -4.030291e+01 7.476426e+01 lineto -4.232287e+01 7.527546e+01 lineto -closepath -gsave -6.304304e-01 6.304304e-01 6.304304e-01 setrgbcolor -fill -grestore -newpath -4.232287e+01 7.527546e+01 moveto -4.104532e+01 7.248569e+01 lineto -3.891156e+01 7.194569e+01 lineto -4.030291e+01 7.476426e+01 lineto -4.232287e+01 7.527546e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.37721e+01 7.78436e+01 moveto -4.232287e+01 7.527546e+01 lineto -4.030291e+01 7.476426e+01 lineto -4.188123e+01 7.736507e+01 lineto -4.37721e+01 7.78436e+01 lineto -closepath -gsave -6.038057e-01 6.038057e-01 6.038057e-01 setrgbcolor -fill -grestore -newpath -4.37721e+01 7.78436e+01 moveto -4.232287e+01 7.527546e+01 lineto -4.030291e+01 7.476426e+01 lineto -4.188123e+01 7.736507e+01 lineto -4.37721e+01 7.78436e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.538204e+01 8.017068e+01 moveto -4.37721e+01 7.78436e+01 lineto -4.188123e+01 7.736507e+01 lineto -4.363457e+01 7.972844e+01 lineto -4.538204e+01 8.017068e+01 lineto -closepath -gsave -5.77728e-01 5.77728e-01 5.77728e-01 setrgbcolor -fill -grestore -newpath -4.538204e+01 8.017068e+01 moveto -4.37721e+01 7.78436e+01 lineto -4.188123e+01 7.736507e+01 lineto -4.363457e+01 7.972844e+01 lineto -4.538204e+01 8.017068e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.714049e+01 8.223907e+01 moveto -4.538204e+01 8.017068e+01 lineto -4.363457e+01 7.972844e+01 lineto -4.554966e+01 8.183647e+01 lineto -4.714049e+01 8.223907e+01 lineto -closepath -gsave -5.527114e-01 5.527114e-01 5.527114e-01 setrgbcolor -fill -grestore -newpath -4.714049e+01 8.223907e+01 moveto -4.538204e+01 8.017068e+01 lineto -4.363457e+01 7.972844e+01 lineto -4.554966e+01 8.183647e+01 lineto -4.714049e+01 8.223907e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.903415e+01 8.403311e+01 moveto -4.714049e+01 8.223907e+01 lineto -4.554966e+01 8.183647e+01 lineto -4.761199e+01 8.36732e+01 lineto -4.903415e+01 8.403311e+01 lineto -closepath -gsave -5.291903e-01 5.291903e-01 5.291903e-01 setrgbcolor -fill -grestore -newpath -4.903415e+01 8.403311e+01 moveto -4.714049e+01 8.223907e+01 lineto -4.554966e+01 8.183647e+01 lineto -4.761199e+01 8.36732e+01 lineto -4.903415e+01 8.403311e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.104867e+01 8.553922e+01 moveto -4.903415e+01 8.403311e+01 lineto -4.761199e+01 8.36732e+01 lineto -4.980596e+01 8.522472e+01 lineto -5.104867e+01 8.553922e+01 lineto -closepath -gsave -5.075091e-01 5.075091e-01 5.075091e-01 setrgbcolor -fill -grestore -newpath -5.104867e+01 8.553922e+01 moveto -4.903415e+01 8.403311e+01 lineto -4.761199e+01 8.36732e+01 lineto -4.980596e+01 8.522472e+01 lineto -5.104867e+01 8.553922e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.316881e+01 8.674601e+01 moveto -5.104867e+01 8.553922e+01 lineto -4.980596e+01 8.522472e+01 lineto -5.211495e+01 8.64793e+01 lineto -5.316881e+01 8.674601e+01 lineto -closepath -gsave -4.879161e-01 4.879161e-01 4.879161e-01 setrgbcolor -fill -grestore -newpath -5.316881e+01 8.674601e+01 moveto -5.104867e+01 8.553922e+01 lineto -4.980596e+01 8.522472e+01 lineto -5.211495e+01 8.64793e+01 lineto -5.316881e+01 8.674601e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.537852e+01 8.764433e+01 moveto -5.316881e+01 8.674601e+01 lineto -5.211495e+01 8.64793e+01 lineto -5.452149e+01 8.742743e+01 lineto -5.537852e+01 8.764433e+01 lineto -closepath -gsave -4.705629e-01 4.705629e-01 4.705629e-01 setrgbcolor -fill -grestore -newpath -5.537852e+01 8.764433e+01 moveto -5.316881e+01 8.674601e+01 lineto -5.211495e+01 8.64793e+01 lineto -5.452149e+01 8.742743e+01 lineto -5.537852e+01 8.764433e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.766107e+01 8.822738e+01 moveto -5.537852e+01 8.764433e+01 lineto -5.452149e+01 8.742743e+01 lineto -5.700736e+01 8.806194e+01 lineto -5.766107e+01 8.822738e+01 lineto -closepath -gsave -4.555084e-01 4.555084e-01 4.555084e-01 setrgbcolor -fill -grestore -newpath -5.766107e+01 8.822738e+01 moveto -5.537852e+01 8.764433e+01 lineto -5.452149e+01 8.742743e+01 lineto -5.700736e+01 8.806194e+01 lineto -5.766107e+01 8.822738e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.954971e+01 8.634407e+01 moveto -6.716855e+01 8.735503e+01 lineto -6.736172e+01 8.740392e+01 lineto -6.995497e+01 8.644663e+01 lineto -6.954971e+01 8.634407e+01 lineto -closepath -gsave -5.333402e-01 5.333402e-01 5.333402e-01 setrgbcolor -fill -grestore -newpath -6.954971e+01 8.634407e+01 moveto -6.716855e+01 8.735503e+01 lineto -6.736172e+01 8.740392e+01 lineto -6.995497e+01 8.644663e+01 lineto -6.954971e+01 8.634407e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.189642e+01 8.502768e+01 moveto -6.954971e+01 8.634407e+01 lineto -6.995497e+01 8.644663e+01 lineto -7.251071e+01 8.518314e+01 lineto -7.189642e+01 8.502768e+01 lineto -closepath -gsave -5.571772e-01 5.571772e-01 5.571772e-01 setrgbcolor -fill -grestore -newpath -7.189642e+01 8.502768e+01 moveto -6.954971e+01 8.634407e+01 lineto -6.995497e+01 8.644663e+01 lineto -7.251071e+01 8.518314e+01 lineto -7.189642e+01 8.502768e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.419092e+01 8.341583e+01 moveto -7.189642e+01 8.502768e+01 lineto -7.251071e+01 8.518314e+01 lineto -7.50096e+01 8.362302e+01 lineto -7.419092e+01 8.341583e+01 lineto -closepath -gsave -5.824407e-01 5.824407e-01 5.824407e-01 setrgbcolor -fill -grestore -newpath -7.419092e+01 8.341583e+01 moveto -7.189642e+01 8.502768e+01 lineto -7.251071e+01 8.518314e+01 lineto -7.50096e+01 8.362302e+01 lineto -7.419092e+01 8.341583e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.238972e+01 4.674004e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.219232e+01 4.616799e+00 lineto -6.238972e+01 4.674004e+00 lineto -closepath -gsave -5.131777e-01 5.131777e-01 5.131777e-01 setrgbcolor -fill -grestore -newpath -6.238972e+01 4.674004e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.219232e+01 4.616799e+00 lineto -6.238972e+01 4.674004e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.97992e+01 5.660865e+00 moveto -6.238972e+01 4.674004e+00 lineto -6.219232e+01 4.616799e+00 lineto -5.94059e+01 5.546888e+00 lineto -5.97992e+01 5.660865e+00 lineto -closepath -gsave -5.350943e-01 5.350943e-01 5.350943e-01 setrgbcolor -fill -grestore -newpath -5.97992e+01 5.660865e+00 moveto -6.238972e+01 4.674004e+00 lineto -6.219232e+01 4.616799e+00 lineto -5.94059e+01 5.546888e+00 lineto -5.97992e+01 5.660865e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.724805e+01 6.95311e+00 moveto -5.97992e+01 5.660865e+00 lineto -5.94059e+01 5.546888e+00 lineto -5.666182e+01 6.783224e+00 lineto -5.724805e+01 6.95311e+00 lineto -closepath -gsave -5.587044e-01 5.587044e-01 5.587044e-01 setrgbcolor -fill -grestore -newpath -5.724805e+01 6.95311e+00 moveto -5.97992e+01 5.660865e+00 lineto -5.94059e+01 5.546888e+00 lineto -5.666182e+01 6.783224e+00 lineto -5.724805e+01 6.95311e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.475559e+01 8.540957e+00 moveto -5.724805e+01 6.95311e+00 lineto -5.666182e+01 6.783224e+00 lineto -5.398087e+01 8.316448e+00 lineto -5.475559e+01 8.540957e+00 lineto -closepath -gsave -5.836407e-01 5.836407e-01 5.836407e-01 setrgbcolor -fill -grestore -newpath -5.475559e+01 8.540957e+00 moveto -5.724805e+01 6.95311e+00 lineto -5.666182e+01 6.783224e+00 lineto -5.398087e+01 8.316448e+00 lineto -5.475559e+01 8.540957e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.234069e+01 1.041239e+01 moveto -5.475559e+01 8.540957e+00 lineto -5.398087e+01 8.316448e+00 lineto -5.138334e+01 1.013495e+01 lineto -5.234069e+01 1.041239e+01 lineto -closepath -gsave -6.09451e-01 6.09451e-01 6.09451e-01 setrgbcolor -fill -grestore -newpath -5.234069e+01 1.041239e+01 moveto -5.475559e+01 8.540957e+00 lineto -5.398087e+01 8.316448e+00 lineto -5.138334e+01 1.013495e+01 lineto -5.234069e+01 1.041239e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.002162e+01 1.255323e+01 moveto -5.234069e+01 1.041239e+01 lineto -5.138334e+01 1.013495e+01 lineto -4.888889e+01 1.222497e+01 lineto -5.002162e+01 1.255323e+01 lineto -closepath -gsave -6.356094e-01 6.356094e-01 6.356094e-01 setrgbcolor -fill -grestore -newpath -5.002162e+01 1.255323e+01 moveto -5.234069e+01 1.041239e+01 lineto -5.138334e+01 1.013495e+01 lineto -4.888889e+01 1.222497e+01 lineto -5.002162e+01 1.255323e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.781594e+01 1.494728e+01 moveto -5.002162e+01 1.255323e+01 lineto -4.888889e+01 1.222497e+01 lineto -4.651641e+01 1.457068e+01 lineto -4.781594e+01 1.494728e+01 lineto -closepath -gsave -6.61533e-01 6.61533e-01 6.61533e-01 setrgbcolor -fill -grestore -newpath -4.781594e+01 1.494728e+01 moveto -5.002162e+01 1.255323e+01 lineto -4.888889e+01 1.222497e+01 lineto -4.651641e+01 1.457068e+01 lineto -4.781594e+01 1.494728e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.574035e+01 1.757641e+01 moveto -4.781594e+01 1.494728e+01 lineto -4.651641e+01 1.457068e+01 lineto -4.428386e+01 1.715433e+01 lineto -4.574035e+01 1.757641e+01 lineto -closepath -gsave -6.866017e-01 6.866017e-01 6.866017e-01 setrgbcolor -fill -grestore -newpath -4.574035e+01 1.757641e+01 moveto -4.781594e+01 1.494728e+01 lineto -4.651641e+01 1.457068e+01 lineto -4.428386e+01 1.715433e+01 lineto -4.574035e+01 1.757641e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.381057e+01 2.042072e+01 moveto -4.574035e+01 1.757641e+01 lineto -4.428386e+01 1.715433e+01 lineto -4.220814e+01 1.995635e+01 lineto -4.381057e+01 2.042072e+01 lineto -closepath -gsave -7.101814e-01 7.101814e-01 7.101814e-01 setrgbcolor -fill -grestore -newpath -4.381057e+01 2.042072e+01 moveto -4.574035e+01 1.757641e+01 lineto -4.428386e+01 1.715433e+01 lineto -4.220814e+01 1.995635e+01 lineto -4.381057e+01 2.042072e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.20412e+01 2.345868e+01 moveto -4.381057e+01 2.042072e+01 lineto -4.220814e+01 1.995635e+01 lineto -4.030497e+01 2.295553e+01 lineto -4.20412e+01 2.345868e+01 lineto -closepath -gsave -7.31648e-01 7.31648e-01 7.31648e-01 setrgbcolor -fill -grestore -newpath -4.20412e+01 2.345868e+01 moveto -4.381057e+01 2.042072e+01 lineto -4.220814e+01 1.995635e+01 lineto -4.030497e+01 2.295553e+01 lineto -4.20412e+01 2.345868e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.044564e+01 2.666728e+01 moveto -4.20412e+01 2.345868e+01 lineto -4.030497e+01 2.295553e+01 lineto -3.858874e+01 2.612917e+01 lineto -4.044564e+01 2.666728e+01 lineto -closepath -gsave -7.504128e-01 7.504128e-01 7.504128e-01 setrgbcolor -fill -grestore -newpath -4.044564e+01 2.666728e+01 moveto -4.20412e+01 2.345868e+01 lineto -4.030497e+01 2.295553e+01 lineto -3.858874e+01 2.612917e+01 lineto -4.044564e+01 2.666728e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.903597e+01 3.002225e+01 moveto -4.044564e+01 2.666728e+01 lineto -3.858874e+01 2.612917e+01 lineto -3.707246e+01 2.945324e+01 lineto -3.903597e+01 3.002225e+01 lineto -closepath -gsave -7.659465e-01 7.659465e-01 7.659465e-01 setrgbcolor -fill -grestore -newpath -3.903597e+01 3.002225e+01 moveto -4.044564e+01 2.666728e+01 lineto -3.858874e+01 2.612917e+01 lineto -3.707246e+01 2.945324e+01 lineto -3.903597e+01 3.002225e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.782285e+01 3.349817e+01 moveto -3.903597e+01 3.002225e+01 lineto -3.707246e+01 2.945324e+01 lineto -3.576761e+01 3.290257e+01 lineto -3.782285e+01 3.349817e+01 lineto -closepath -gsave -7.778015e-01 7.778015e-01 7.778015e-01 setrgbcolor -fill -grestore -newpath -3.782285e+01 3.349817e+01 moveto -3.903597e+01 3.002225e+01 lineto -3.707246e+01 2.945324e+01 lineto -3.576761e+01 3.290257e+01 lineto -3.782285e+01 3.349817e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.681548e+01 3.706873e+01 moveto -3.782285e+01 3.349817e+01 lineto -3.576761e+01 3.290257e+01 lineto -3.468406e+01 3.645106e+01 lineto -3.681548e+01 3.706873e+01 lineto -closepath -gsave -7.856311e-01 7.856311e-01 7.856311e-01 setrgbcolor -fill -grestore -newpath -3.681548e+01 3.706873e+01 moveto -3.782285e+01 3.349817e+01 lineto -3.576761e+01 3.290257e+01 lineto -3.468406e+01 3.645106e+01 lineto -3.681548e+01 3.706873e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.602148e+01 4.070691e+01 moveto -3.681548e+01 3.706873e+01 lineto -3.468406e+01 3.645106e+01 lineto -3.383001e+01 4.007184e+01 lineto -3.602148e+01 4.070691e+01 lineto -closepath -gsave -7.89204e-01 7.89204e-01 7.89204e-01 setrgbcolor -fill -grestore -newpath -3.602148e+01 4.070691e+01 moveto -3.681548e+01 3.706873e+01 lineto -3.468406e+01 3.645106e+01 lineto -3.383001e+01 4.007184e+01 lineto -3.602148e+01 4.070691e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.544686e+01 4.438516e+01 moveto -3.602148e+01 4.070691e+01 lineto -3.383001e+01 4.007184e+01 lineto -3.321193e+01 4.37375e+01 lineto -3.544686e+01 4.438516e+01 lineto -closepath -gsave -7.884146e-01 7.884146e-01 7.884146e-01 setrgbcolor -fill -grestore -newpath -3.544686e+01 4.438516e+01 moveto -3.602148e+01 4.070691e+01 lineto -3.383001e+01 4.007184e+01 lineto -3.321193e+01 4.37375e+01 lineto -3.544686e+01 4.438516e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.509597e+01 4.807564e+01 moveto -3.544686e+01 4.438516e+01 lineto -3.321193e+01 4.37375e+01 lineto -3.28345e+01 4.742028e+01 lineto -3.509597e+01 4.807564e+01 lineto -closepath -gsave -7.832873e-01 7.832873e-01 7.832873e-01 setrgbcolor -fill -grestore -newpath -3.509597e+01 4.807564e+01 moveto -3.544686e+01 4.438516e+01 lineto -3.321193e+01 4.37375e+01 lineto -3.28345e+01 4.742028e+01 lineto -3.509597e+01 4.807564e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.497146e+01 5.17504e+01 moveto -3.509597e+01 4.807564e+01 lineto -3.28345e+01 4.742028e+01 lineto -3.270058e+01 5.109231e+01 lineto -3.497146e+01 5.17504e+01 lineto -closepath -gsave -7.739757e-01 7.739757e-01 7.739757e-01 setrgbcolor -fill -grestore -newpath -3.497146e+01 5.17504e+01 moveto -3.509597e+01 4.807564e+01 lineto -3.28345e+01 4.742028e+01 lineto -3.270058e+01 5.109231e+01 lineto -3.497146e+01 5.17504e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.507429e+01 5.538163e+01 moveto -3.497146e+01 5.17504e+01 lineto -3.270058e+01 5.109231e+01 lineto -3.281118e+01 5.47258e+01 lineto -3.507429e+01 5.538163e+01 lineto -closepath -gsave -7.607553e-01 7.607553e-01 7.607553e-01 setrgbcolor -fill -grestore -newpath -3.507429e+01 5.538163e+01 moveto -3.497146e+01 5.17504e+01 lineto -3.270058e+01 5.109231e+01 lineto -3.281118e+01 5.47258e+01 lineto -3.507429e+01 5.538163e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.540366e+01 5.894183e+01 moveto -3.507429e+01 5.538163e+01 lineto -3.281118e+01 5.47258e+01 lineto -3.316547e+01 5.829322e+01 lineto -3.540366e+01 5.894183e+01 lineto -closepath -gsave -7.440119e-01 7.440119e-01 7.440119e-01 setrgbcolor -fill -grestore -newpath -3.540366e+01 5.894183e+01 moveto -3.507429e+01 5.538163e+01 lineto -3.281118e+01 5.47258e+01 lineto -3.316547e+01 5.829322e+01 lineto -3.540366e+01 5.894183e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.595709e+01 6.240406e+01 moveto -3.540366e+01 5.894183e+01 lineto -3.316547e+01 5.829322e+01 lineto -3.376075e+01 6.176758e+01 lineto -3.595709e+01 6.240406e+01 lineto -closepath -gsave -7.242247e-01 7.242247e-01 7.242247e-01 setrgbcolor -fill -grestore -newpath -3.595709e+01 6.240406e+01 moveto -3.540366e+01 5.894183e+01 lineto -3.316547e+01 5.829322e+01 lineto -3.376075e+01 6.176758e+01 lineto -3.595709e+01 6.240406e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.673039e+01 6.574211e+01 moveto -3.595709e+01 6.240406e+01 lineto -3.376075e+01 6.176758e+01 lineto -3.459253e+01 6.512257e+01 lineto -3.673039e+01 6.574211e+01 lineto -closepath -gsave -7.019464e-01 7.019464e-01 7.019464e-01 setrgbcolor -fill -grestore -newpath -3.673039e+01 6.574211e+01 moveto -3.595709e+01 6.240406e+01 lineto -3.376075e+01 6.176758e+01 lineto -3.459253e+01 6.512257e+01 lineto -3.673039e+01 6.574211e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.771771e+01 6.893069e+01 moveto -3.673039e+01 6.574211e+01 lineto -3.459253e+01 6.512257e+01 lineto -3.565451e+01 6.833279e+01 lineto -3.771771e+01 6.893069e+01 lineto -closepath -gsave -6.7778e-01 6.7778e-01 6.7778e-01 setrgbcolor -fill -grestore -newpath -3.771771e+01 6.893069e+01 moveto -3.673039e+01 6.574211e+01 lineto -3.459253e+01 6.512257e+01 lineto -3.565451e+01 6.833279e+01 lineto -3.771771e+01 6.893069e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.891156e+01 7.194569e+01 moveto -3.771771e+01 6.893069e+01 lineto -3.565451e+01 6.833279e+01 lineto -3.693864e+01 7.137395e+01 lineto -3.891156e+01 7.194569e+01 lineto -closepath -gsave -6.523541e-01 6.523541e-01 6.523541e-01 setrgbcolor -fill -grestore -newpath -3.891156e+01 7.194569e+01 moveto -3.771771e+01 6.893069e+01 lineto -3.565451e+01 6.833279e+01 lineto -3.693864e+01 7.137395e+01 lineto -3.891156e+01 7.194569e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.030291e+01 7.476426e+01 moveto -3.891156e+01 7.194569e+01 lineto -3.693864e+01 7.137395e+01 lineto -3.843522e+01 7.422301e+01 lineto -4.030291e+01 7.476426e+01 lineto -closepath -gsave -6.262986e-01 6.262986e-01 6.262986e-01 setrgbcolor -fill -grestore -newpath -4.030291e+01 7.476426e+01 moveto -3.891156e+01 7.194569e+01 lineto -3.693864e+01 7.137395e+01 lineto -3.843522e+01 7.422301e+01 lineto -4.030291e+01 7.476426e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.188123e+01 7.736507e+01 moveto -4.030291e+01 7.476426e+01 lineto -3.843522e+01 7.422301e+01 lineto -4.01329e+01 7.685842e+01 lineto -4.188123e+01 7.736507e+01 lineto -closepath -gsave -6.002207e-01 6.002207e-01 6.002207e-01 setrgbcolor -fill -grestore -newpath -4.188123e+01 7.736507e+01 moveto -4.030291e+01 7.476426e+01 lineto -3.843522e+01 7.422301e+01 lineto -4.01329e+01 7.685842e+01 lineto -4.188123e+01 7.736507e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.363457e+01 7.972844e+01 moveto -4.188123e+01 7.736507e+01 lineto -4.01329e+01 7.685842e+01 lineto -4.201883e+01 7.926021e+01 lineto -4.363457e+01 7.972844e+01 lineto -closepath -gsave -5.746831e-01 5.746831e-01 5.746831e-01 setrgbcolor -fill -grestore -newpath -4.363457e+01 7.972844e+01 moveto -4.188123e+01 7.736507e+01 lineto -4.01329e+01 7.685842e+01 lineto -4.201883e+01 7.926021e+01 lineto -4.363457e+01 7.972844e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.554966e+01 8.183647e+01 moveto -4.363457e+01 7.972844e+01 lineto -4.201883e+01 7.926021e+01 lineto -4.407874e+01 8.141021e+01 lineto -4.554966e+01 8.183647e+01 lineto -closepath -gsave -5.501856e-01 5.501856e-01 5.501856e-01 setrgbcolor -fill -grestore -newpath -4.554966e+01 8.183647e+01 moveto -4.363457e+01 7.972844e+01 lineto -4.201883e+01 7.926021e+01 lineto -4.407874e+01 8.141021e+01 lineto -4.554966e+01 8.183647e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.761199e+01 8.36732e+01 moveto -4.554966e+01 8.183647e+01 lineto -4.407874e+01 8.141021e+01 lineto -4.629704e+01 8.329213e+01 lineto -4.761199e+01 8.36732e+01 lineto -closepath -gsave -5.271505e-01 5.271505e-01 5.271505e-01 setrgbcolor -fill -grestore -newpath -4.761199e+01 8.36732e+01 moveto -4.554966e+01 8.183647e+01 lineto -4.407874e+01 8.141021e+01 lineto -4.629704e+01 8.329213e+01 lineto -4.761199e+01 8.36732e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.980596e+01 8.522472e+01 moveto -4.761199e+01 8.36732e+01 lineto -4.629704e+01 8.329213e+01 lineto -4.865692e+01 8.489174e+01 lineto -4.980596e+01 8.522472e+01 lineto -closepath -gsave -5.059124e-01 5.059124e-01 5.059124e-01 setrgbcolor -fill -grestore -newpath -4.980596e+01 8.522472e+01 moveto -4.761199e+01 8.36732e+01 lineto -4.629704e+01 8.329213e+01 lineto -4.865692e+01 8.489174e+01 lineto -4.980596e+01 8.522472e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.211495e+01 8.64793e+01 moveto -4.980596e+01 8.522472e+01 lineto -4.865692e+01 8.489174e+01 lineto -5.114053e+01 8.619692e+01 lineto -5.211495e+01 8.64793e+01 lineto -closepath -gsave -4.867122e-01 4.867122e-01 4.867122e-01 setrgbcolor -fill -grestore -newpath -5.211495e+01 8.64793e+01 moveto -4.980596e+01 8.522472e+01 lineto -4.865692e+01 8.489174e+01 lineto -5.114053e+01 8.619692e+01 lineto -5.211495e+01 8.64793e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.452149e+01 8.742743e+01 moveto -5.211495e+01 8.64793e+01 lineto -5.114053e+01 8.619692e+01 lineto -5.372906e+01 8.71978e+01 lineto -5.452149e+01 8.742743e+01 lineto -closepath -gsave -4.696973e-01 4.696973e-01 4.696973e-01 setrgbcolor -fill -grestore -newpath -5.452149e+01 8.742743e+01 moveto -5.211495e+01 8.64793e+01 lineto -5.114053e+01 8.619692e+01 lineto -5.372906e+01 8.71978e+01 lineto -5.452149e+01 8.742743e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.995497e+01 8.644663e+01 moveto -6.736172e+01 8.740392e+01 lineto -6.754032e+01 8.745568e+01 lineto -7.032969e+01 8.655522e+01 lineto -6.995497e+01 8.644663e+01 lineto -closepath -gsave -5.329246e-01 5.329246e-01 5.329246e-01 setrgbcolor -fill -grestore -newpath -6.995497e+01 8.644663e+01 moveto -6.736172e+01 8.740392e+01 lineto -6.754032e+01 8.745568e+01 lineto -7.032969e+01 8.655522e+01 lineto -6.995497e+01 8.644663e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.251071e+01 8.518314e+01 moveto -6.995497e+01 8.644663e+01 lineto -7.032969e+01 8.655522e+01 lineto -7.307871e+01 8.534774e+01 lineto -7.251071e+01 8.518314e+01 lineto -closepath -gsave -5.563875e-01 5.563875e-01 5.563875e-01 setrgbcolor -fill -grestore -newpath -7.251071e+01 8.518314e+01 moveto -6.995497e+01 8.644663e+01 lineto -7.032969e+01 8.655522e+01 lineto -7.307871e+01 8.534774e+01 lineto -7.251071e+01 8.518314e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.50096e+01 8.362302e+01 moveto -7.251071e+01 8.518314e+01 lineto -7.307871e+01 8.534774e+01 lineto -7.576657e+01 8.384238e+01 lineto -7.50096e+01 8.362302e+01 lineto -closepath -gsave -5.812156e-01 5.812156e-01 5.812156e-01 setrgbcolor -fill -grestore -newpath -7.50096e+01 8.362302e+01 moveto -7.251071e+01 8.518314e+01 lineto -7.307871e+01 8.534774e+01 lineto -7.576657e+01 8.384238e+01 lineto -7.50096e+01 8.362302e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.219232e+01 4.616799e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.201223e+01 4.556772e+00 lineto -6.219232e+01 4.616799e+00 lineto -closepath -gsave -5.129792e-01 5.129792e-01 5.129792e-01 setrgbcolor -fill -grestore -newpath -6.219232e+01 4.616799e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.201223e+01 4.556772e+00 lineto -6.219232e+01 4.616799e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.94059e+01 5.546888e+00 moveto -6.219232e+01 4.616799e+00 lineto -6.201223e+01 4.556772e+00 lineto -5.904708e+01 5.427287e+00 lineto -5.94059e+01 5.546888e+00 lineto -closepath -gsave -5.344267e-01 5.344267e-01 5.344267e-01 setrgbcolor -fill -grestore -newpath -5.94059e+01 5.546888e+00 moveto -6.219232e+01 4.616799e+00 lineto -6.201223e+01 4.556772e+00 lineto -5.904708e+01 5.427287e+00 lineto -5.94059e+01 5.546888e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.666182e+01 6.783224e+00 moveto -5.94059e+01 5.546888e+00 lineto -5.904708e+01 5.427287e+00 lineto -5.612699e+01 6.604955e+00 lineto -5.666182e+01 6.783224e+00 lineto -closepath -gsave -5.574731e-01 5.574731e-01 5.574731e-01 setrgbcolor -fill -grestore -newpath -5.666182e+01 6.783224e+00 moveto -5.94059e+01 5.546888e+00 lineto -5.904708e+01 5.427287e+00 lineto -5.612699e+01 6.604955e+00 lineto -5.666182e+01 6.783224e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.398087e+01 8.316448e+00 moveto -5.666182e+01 6.783224e+00 lineto -5.612699e+01 6.604955e+00 lineto -5.327408e+01 8.080861e+00 lineto -5.398087e+01 8.316448e+00 lineto -closepath -gsave -5.817569e-01 5.817569e-01 5.817569e-01 setrgbcolor -fill -grestore -newpath -5.398087e+01 8.316448e+00 moveto -5.666182e+01 6.783224e+00 lineto -5.612699e+01 6.604955e+00 lineto -5.327408e+01 8.080861e+00 lineto -5.398087e+01 8.316448e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.138334e+01 1.013495e+01 moveto -5.398087e+01 8.316448e+00 lineto -5.327408e+01 8.080861e+00 lineto -5.050994e+01 9.843832e+00 lineto -5.138334e+01 1.013495e+01 lineto -closepath -gsave -6.068359e-01 6.068359e-01 6.068359e-01 setrgbcolor -fill -grestore -newpath -5.138334e+01 1.013495e+01 moveto -5.398087e+01 8.316448e+00 lineto -5.327408e+01 8.080861e+00 lineto -5.050994e+01 9.843832e+00 lineto -5.138334e+01 1.013495e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.888889e+01 1.222497e+01 moveto -5.138334e+01 1.013495e+01 lineto -5.050994e+01 9.843832e+00 lineto -4.785549e+01 1.188052e+01 lineto -4.888889e+01 1.222497e+01 lineto -closepath -gsave -6.321986e-01 6.321986e-01 6.321986e-01 setrgbcolor -fill -grestore -newpath -4.888889e+01 1.222497e+01 moveto -5.138334e+01 1.013495e+01 lineto -5.050994e+01 9.843832e+00 lineto -4.785549e+01 1.188052e+01 lineto -4.888889e+01 1.222497e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.651641e+01 1.457068e+01 moveto -4.888889e+01 1.222497e+01 lineto -4.785549e+01 1.188052e+01 lineto -4.533084e+01 1.417551e+01 lineto -4.651641e+01 1.457068e+01 lineto -closepath -gsave -6.572805e-01 6.572805e-01 6.572805e-01 setrgbcolor -fill -grestore -newpath -4.651641e+01 1.457068e+01 moveto -4.888889e+01 1.222497e+01 lineto -4.785549e+01 1.188052e+01 lineto -4.533084e+01 1.417551e+01 lineto -4.651641e+01 1.457068e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.428386e+01 1.715433e+01 moveto -4.651641e+01 1.457068e+01 lineto -4.533084e+01 1.417551e+01 lineto -4.295509e+01 1.671142e+01 lineto -4.428386e+01 1.715433e+01 lineto -closepath -gsave -6.814831e-01 6.814831e-01 6.814831e-01 setrgbcolor -fill -grestore -newpath -4.428386e+01 1.715433e+01 moveto -4.651641e+01 1.457068e+01 lineto -4.533084e+01 1.417551e+01 lineto -4.295509e+01 1.671142e+01 lineto -4.428386e+01 1.715433e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.220814e+01 1.995635e+01 moveto -4.428386e+01 1.715433e+01 lineto -4.295509e+01 1.671142e+01 lineto -4.074623e+01 1.946906e+01 lineto -4.220814e+01 1.995635e+01 lineto -closepath -gsave -7.04196e-01 7.04196e-01 7.04196e-01 setrgbcolor -fill -grestore -newpath -4.220814e+01 1.995635e+01 moveto -4.428386e+01 1.715433e+01 lineto -4.295509e+01 1.671142e+01 lineto -4.074623e+01 1.946906e+01 lineto -4.220814e+01 1.995635e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.030497e+01 2.295553e+01 moveto -4.220814e+01 1.995635e+01 lineto -4.074623e+01 1.946906e+01 lineto -3.872098e+01 2.242755e+01 lineto -4.030497e+01 2.295553e+01 lineto -closepath -gsave -7.248206e-01 7.248206e-01 7.248206e-01 setrgbcolor -fill -grestore -newpath -4.030497e+01 2.295553e+01 moveto -4.220814e+01 1.995635e+01 lineto -4.074623e+01 1.946906e+01 lineto -3.872098e+01 2.242755e+01 lineto -4.030497e+01 2.295553e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.858874e+01 2.612917e+01 moveto -4.030497e+01 2.295553e+01 lineto -3.872098e+01 2.242755e+01 lineto -3.689468e+01 2.55645e+01 lineto -3.858874e+01 2.612917e+01 lineto -closepath -gsave -7.427939e-01 7.427939e-01 7.427939e-01 setrgbcolor -fill -grestore -newpath -3.858874e+01 2.612917e+01 moveto -4.030497e+01 2.295553e+01 lineto -3.872098e+01 2.242755e+01 lineto -3.689468e+01 2.55645e+01 lineto -3.858874e+01 2.612917e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.707246e+01 2.945324e+01 moveto -3.858874e+01 2.612917e+01 lineto -3.689468e+01 2.55645e+01 lineto -3.528114e+01 2.885615e+01 lineto -3.707246e+01 2.945324e+01 lineto -closepath -gsave -7.576115e-01 7.576115e-01 7.576115e-01 setrgbcolor -fill -grestore -newpath -3.707246e+01 2.945324e+01 moveto -3.858874e+01 2.612917e+01 lineto -3.689468e+01 2.55645e+01 lineto -3.528114e+01 2.885615e+01 lineto -3.707246e+01 2.945324e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.576761e+01 3.290257e+01 moveto -3.707246e+01 2.945324e+01 lineto -3.528114e+01 2.885615e+01 lineto -3.389259e+01 3.227759e+01 lineto -3.576761e+01 3.290257e+01 lineto -closepath -gsave -7.688488e-01 7.688488e-01 7.688488e-01 setrgbcolor -fill -grestore -newpath -3.576761e+01 3.290257e+01 moveto -3.707246e+01 2.945324e+01 lineto -3.528114e+01 2.885615e+01 lineto -3.389259e+01 3.227759e+01 lineto -3.576761e+01 3.290257e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.468406e+01 3.645106e+01 moveto -3.576761e+01 3.290257e+01 lineto -3.389259e+01 3.227759e+01 lineto -3.273954e+01 3.580291e+01 lineto -3.468406e+01 3.645106e+01 lineto -closepath -gsave -7.761789e-01 7.761789e-01 7.761789e-01 setrgbcolor -fill -grestore -newpath -3.468406e+01 3.645106e+01 moveto -3.576761e+01 3.290257e+01 lineto -3.389259e+01 3.227759e+01 lineto -3.273954e+01 3.580291e+01 lineto -3.468406e+01 3.645106e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.383001e+01 4.007184e+01 moveto -3.468406e+01 3.645106e+01 lineto -3.273954e+01 3.580291e+01 lineto -3.183071e+01 3.940543e+01 lineto -3.383001e+01 4.007184e+01 lineto -closepath -gsave -7.793869e-01 7.793869e-01 7.793869e-01 setrgbcolor -fill -grestore -newpath -3.383001e+01 4.007184e+01 moveto -3.468406e+01 3.645106e+01 lineto -3.273954e+01 3.580291e+01 lineto -3.183071e+01 3.940543e+01 lineto -3.383001e+01 4.007184e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.321193e+01 4.37375e+01 moveto -3.383001e+01 4.007184e+01 lineto -3.183071e+01 3.940543e+01 lineto -3.117299e+01 4.305787e+01 lineto -3.321193e+01 4.37375e+01 lineto -closepath -gsave -7.783785e-01 7.783785e-01 7.783785e-01 setrgbcolor -fill -grestore -newpath -3.321193e+01 4.37375e+01 moveto -3.383001e+01 4.007184e+01 lineto -3.183071e+01 3.940543e+01 lineto -3.117299e+01 4.305787e+01 lineto -3.321193e+01 4.37375e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.28345e+01 4.742028e+01 moveto -3.321193e+01 4.37375e+01 lineto -3.117299e+01 4.305787e+01 lineto -3.077135e+01 4.673259e+01 lineto -3.28345e+01 4.742028e+01 lineto -closepath -gsave -7.731845e-01 7.731845e-01 7.731845e-01 setrgbcolor -fill -grestore -newpath -3.28345e+01 4.742028e+01 moveto -3.321193e+01 4.37375e+01 lineto -3.117299e+01 4.305787e+01 lineto -3.077135e+01 4.673259e+01 lineto -3.28345e+01 4.742028e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.270058e+01 5.109231e+01 moveto -3.28345e+01 4.742028e+01 lineto -3.077135e+01 4.673259e+01 lineto -3.062884e+01 5.040176e+01 lineto -3.270058e+01 5.109231e+01 lineto -closepath -gsave -7.639593e-01 7.639593e-01 7.639593e-01 setrgbcolor -fill -grestore -newpath -3.270058e+01 5.109231e+01 moveto -3.28345e+01 4.742028e+01 lineto -3.077135e+01 4.673259e+01 lineto -3.062884e+01 5.040176e+01 lineto -3.270058e+01 5.109231e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.281118e+01 5.47258e+01 moveto -3.270058e+01 5.109231e+01 lineto -3.062884e+01 5.040176e+01 lineto -3.074653e+01 5.40376e+01 lineto -3.281118e+01 5.47258e+01 lineto -closepath -gsave -7.509739e-01 7.509739e-01 7.509739e-01 setrgbcolor -fill -grestore -newpath -3.281118e+01 5.47258e+01 moveto -3.270058e+01 5.109231e+01 lineto -3.062884e+01 5.040176e+01 lineto -3.074653e+01 5.40376e+01 lineto -3.281118e+01 5.47258e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.316547e+01 5.829322e+01 moveto -3.281118e+01 5.47258e+01 lineto -3.074653e+01 5.40376e+01 lineto -3.112354e+01 5.76126e+01 lineto -3.316547e+01 5.829322e+01 lineto -closepath -gsave -7.346045e-01 7.346045e-01 7.346045e-01 setrgbcolor -fill -grestore -newpath -3.316547e+01 5.829322e+01 moveto -3.281118e+01 5.47258e+01 lineto -3.074653e+01 5.40376e+01 lineto -3.112354e+01 5.76126e+01 lineto -3.316547e+01 5.829322e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.376075e+01 6.176758e+01 moveto -3.316547e+01 5.829322e+01 lineto -3.112354e+01 5.76126e+01 lineto -3.175701e+01 6.109969e+01 lineto -3.376075e+01 6.176758e+01 lineto -closepath -gsave -7.153159e-01 7.153159e-01 7.153159e-01 setrgbcolor -fill -grestore -newpath -3.376075e+01 6.176758e+01 moveto -3.316547e+01 5.829322e+01 lineto -3.112354e+01 5.76126e+01 lineto -3.175701e+01 6.109969e+01 lineto -3.376075e+01 6.176758e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.459253e+01 6.512257e+01 moveto -3.376075e+01 6.176758e+01 lineto -3.175701e+01 6.109969e+01 lineto -3.264214e+01 6.447246e+01 lineto -3.459253e+01 6.512257e+01 lineto -closepath -gsave -6.936426e-01 6.936426e-01 6.936426e-01 setrgbcolor -fill -grestore -newpath -3.459253e+01 6.512257e+01 moveto -3.376075e+01 6.176758e+01 lineto -3.175701e+01 6.109969e+01 lineto -3.264214e+01 6.447246e+01 lineto -3.459253e+01 6.512257e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.565451e+01 6.833279e+01 moveto -3.459253e+01 6.512257e+01 lineto -3.264214e+01 6.447246e+01 lineto -3.377223e+01 6.770539e+01 lineto -3.565451e+01 6.833279e+01 lineto -closepath -gsave -6.701661e-01 6.701661e-01 6.701661e-01 setrgbcolor -fill -grestore -newpath -3.565451e+01 6.833279e+01 moveto -3.459253e+01 6.512257e+01 lineto -3.264214e+01 6.447246e+01 lineto -3.377223e+01 6.770539e+01 lineto -3.565451e+01 6.833279e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.693864e+01 7.137395e+01 moveto -3.565451e+01 6.833279e+01 lineto -3.377223e+01 6.770539e+01 lineto -3.513874e+01 7.0774e+01 lineto -3.693864e+01 7.137395e+01 lineto -closepath -gsave -6.454918e-01 6.454918e-01 6.454918e-01 setrgbcolor -fill -grestore -newpath -3.693864e+01 7.137395e+01 moveto -3.565451e+01 6.833279e+01 lineto -3.377223e+01 6.770539e+01 lineto -3.513874e+01 7.0774e+01 lineto -3.693864e+01 7.137395e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.843522e+01 7.422301e+01 moveto -3.693864e+01 7.137395e+01 lineto -3.513874e+01 7.0774e+01 lineto -3.67313e+01 7.365506e+01 lineto -3.843522e+01 7.422301e+01 lineto -closepath -gsave -6.202252e-01 6.202252e-01 6.202252e-01 setrgbcolor -fill -grestore -newpath -3.843522e+01 7.422301e+01 moveto -3.693864e+01 7.137395e+01 lineto -3.513874e+01 7.0774e+01 lineto -3.67313e+01 7.365506e+01 lineto -3.843522e+01 7.422301e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.01329e+01 7.685842e+01 moveto -3.843522e+01 7.422301e+01 lineto -3.67313e+01 7.365506e+01 lineto -3.853788e+01 7.632676e+01 lineto -4.01329e+01 7.685842e+01 lineto -closepath -gsave -5.949493e-01 5.949493e-01 5.949493e-01 setrgbcolor -fill -grestore -newpath -4.01329e+01 7.685842e+01 moveto -3.843522e+01 7.422301e+01 lineto -3.67313e+01 7.365506e+01 lineto -3.853788e+01 7.632676e+01 lineto -4.01329e+01 7.685842e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.201883e+01 7.926021e+01 moveto -4.01329e+01 7.685842e+01 lineto -3.853788e+01 7.632676e+01 lineto -4.054478e+01 7.876888e+01 lineto -4.201883e+01 7.926021e+01 lineto -closepath -gsave -5.702041e-01 5.702041e-01 5.702041e-01 setrgbcolor -fill -grestore -newpath -4.201883e+01 7.926021e+01 moveto -4.01329e+01 7.685842e+01 lineto -3.853788e+01 7.632676e+01 lineto -4.054478e+01 7.876888e+01 lineto -4.201883e+01 7.926021e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.407874e+01 8.141021e+01 moveto -4.201883e+01 7.926021e+01 lineto -4.054478e+01 7.876888e+01 lineto -4.273682e+01 8.096291e+01 lineto -4.407874e+01 8.141021e+01 lineto -closepath -gsave -5.464684e-01 5.464684e-01 5.464684e-01 setrgbcolor -fill -grestore -newpath -4.407874e+01 8.141021e+01 moveto -4.201883e+01 7.926021e+01 lineto -4.054478e+01 7.876888e+01 lineto -4.273682e+01 8.096291e+01 lineto -4.407874e+01 8.141021e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.629704e+01 8.329213e+01 moveto -4.407874e+01 8.141021e+01 lineto -4.273682e+01 8.096291e+01 lineto -4.50974e+01 8.289227e+01 lineto -4.629704e+01 8.329213e+01 lineto -closepath -gsave -5.241467e-01 5.241467e-01 5.241467e-01 setrgbcolor -fill -grestore -newpath -4.629704e+01 8.329213e+01 moveto -4.407874e+01 8.141021e+01 lineto -4.273682e+01 8.096291e+01 lineto -4.50974e+01 8.289227e+01 lineto -4.629704e+01 8.329213e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.865692e+01 8.489174e+01 moveto -4.629704e+01 8.329213e+01 lineto -4.50974e+01 8.289227e+01 lineto -4.760865e+01 8.454233e+01 lineto -4.865692e+01 8.489174e+01 lineto -closepath -gsave -5.035591e-01 5.035591e-01 5.035591e-01 setrgbcolor -fill -grestore -newpath -4.865692e+01 8.489174e+01 moveto -4.629704e+01 8.329213e+01 lineto -4.50974e+01 8.289227e+01 lineto -4.760865e+01 8.454233e+01 lineto -4.865692e+01 8.489174e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.114053e+01 8.619692e+01 moveto -4.865692e+01 8.489174e+01 lineto -4.760865e+01 8.454233e+01 lineto -5.025156e+01 8.590061e+01 lineto -5.114053e+01 8.619692e+01 lineto -closepath -gsave -4.849362e-01 4.849362e-01 4.849362e-01 setrgbcolor -fill -grestore -newpath -5.114053e+01 8.619692e+01 moveto -4.865692e+01 8.489174e+01 lineto -4.760865e+01 8.454233e+01 lineto -5.025156e+01 8.590061e+01 lineto -5.114053e+01 8.619692e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.372906e+01 8.71978e+01 moveto -5.114053e+01 8.619692e+01 lineto -5.025156e+01 8.590061e+01 lineto -5.300613e+01 8.695682e+01 lineto -5.372906e+01 8.71978e+01 lineto -closepath -gsave -4.684189e-01 4.684189e-01 4.684189e-01 setrgbcolor -fill -grestore -newpath -5.372906e+01 8.71978e+01 moveto -5.114053e+01 8.619692e+01 lineto -5.025156e+01 8.590061e+01 lineto -5.300613e+01 8.695682e+01 lineto -5.372906e+01 8.71978e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.032969e+01 8.655522e+01 moveto -6.754032e+01 8.745568e+01 lineto -6.770326e+01 8.750999e+01 lineto -7.067154e+01 8.666917e+01 lineto -7.032969e+01 8.655522e+01 lineto -closepath -gsave -5.323059e-01 5.323059e-01 5.323059e-01 setrgbcolor -fill -grestore -newpath -7.032969e+01 8.655522e+01 moveto -6.754032e+01 8.745568e+01 lineto -6.770326e+01 8.750999e+01 lineto -7.067154e+01 8.666917e+01 lineto -7.032969e+01 8.655522e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.307871e+01 8.534774e+01 moveto -7.032969e+01 8.655522e+01 lineto -7.067154e+01 8.666917e+01 lineto -7.359689e+01 8.552046e+01 lineto -7.307871e+01 8.534774e+01 lineto -closepath -gsave -5.55214e-01 5.55214e-01 5.55214e-01 setrgbcolor -fill -grestore -newpath -7.307871e+01 8.534774e+01 moveto -7.032969e+01 8.655522e+01 lineto -7.067154e+01 8.666917e+01 lineto -7.359689e+01 8.552046e+01 lineto -7.307871e+01 8.534774e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.576657e+01 8.384238e+01 moveto -7.307871e+01 8.534774e+01 lineto -7.359689e+01 8.552046e+01 lineto -7.645715e+01 8.407257e+01 lineto -7.576657e+01 8.384238e+01 lineto -closepath -gsave -5.793976e-01 5.793976e-01 5.793976e-01 setrgbcolor -fill -grestore -newpath -7.576657e+01 8.384238e+01 moveto -7.307871e+01 8.534774e+01 lineto -7.359689e+01 8.552046e+01 lineto -7.645715e+01 8.407257e+01 lineto -7.576657e+01 8.384238e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.201223e+01 4.556772e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.185056e+01 4.494291e+00 lineto -6.201223e+01 4.556772e+00 lineto -closepath -gsave -5.127169e-01 5.127169e-01 5.127169e-01 setrgbcolor -fill -grestore -newpath -6.201223e+01 4.556772e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.185056e+01 4.494291e+00 lineto -6.201223e+01 4.556772e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.904708e+01 5.427287e+00 moveto -6.201223e+01 4.556772e+00 lineto -6.185056e+01 4.494291e+00 lineto -5.872496e+01 5.302799e+00 lineto -5.904708e+01 5.427287e+00 lineto -closepath -gsave -5.335465e-01 5.335465e-01 5.335465e-01 setrgbcolor -fill -grestore -newpath -5.904708e+01 5.427287e+00 moveto -6.201223e+01 4.556772e+00 lineto -6.185056e+01 4.494291e+00 lineto -5.872496e+01 5.302799e+00 lineto -5.904708e+01 5.427287e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.612699e+01 6.604955e+00 moveto -5.904708e+01 5.427287e+00 lineto -5.872496e+01 5.302799e+00 lineto -5.564687e+01 6.419403e+00 lineto -5.612699e+01 6.604955e+00 lineto -closepath -gsave -5.55853e-01 5.55853e-01 5.55853e-01 setrgbcolor -fill -grestore -newpath -5.612699e+01 6.604955e+00 moveto -5.904708e+01 5.427287e+00 lineto -5.872496e+01 5.302799e+00 lineto -5.564687e+01 6.419403e+00 lineto -5.612699e+01 6.604955e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.327408e+01 8.080861e+00 moveto -5.612699e+01 6.604955e+00 lineto -5.564687e+01 6.419403e+00 lineto -5.263959e+01 7.835649e+00 lineto -5.327408e+01 8.080861e+00 lineto -closepath -gsave -5.79283e-01 5.79283e-01 5.79283e-01 setrgbcolor -fill -grestore -newpath -5.327408e+01 8.080861e+00 moveto -5.612699e+01 6.604955e+00 lineto -5.564687e+01 6.419403e+00 lineto -5.263959e+01 7.835649e+00 lineto -5.327408e+01 8.080861e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.050994e+01 9.843832e+00 moveto -5.327408e+01 8.080861e+00 lineto -5.263959e+01 7.835649e+00 lineto -4.972588e+01 9.540816e+00 lineto -5.050994e+01 9.843832e+00 lineto -closepath -gsave -6.034077e-01 6.034077e-01 6.034077e-01 setrgbcolor -fill -grestore -newpath -5.050994e+01 9.843832e+00 moveto -5.327408e+01 8.080861e+00 lineto -5.263959e+01 7.835649e+00 lineto -4.972588e+01 9.540816e+00 lineto -5.050994e+01 9.843832e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.785549e+01 1.188052e+01 moveto -5.050994e+01 9.843832e+00 lineto -4.972588e+01 9.540816e+00 lineto -4.69278e+01 1.152199e+01 lineto -4.785549e+01 1.188052e+01 lineto -closepath -gsave -6.277345e-01 6.277345e-01 6.277345e-01 setrgbcolor -fill -grestore -newpath -4.785549e+01 1.188052e+01 moveto -5.050994e+01 9.843832e+00 lineto -4.972588e+01 9.540816e+00 lineto -4.69278e+01 1.152199e+01 lineto -4.785549e+01 1.188052e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.533084e+01 1.417551e+01 moveto -4.785549e+01 1.188052e+01 lineto -4.69278e+01 1.152199e+01 lineto -4.426654e+01 1.376419e+01 lineto -4.533084e+01 1.417551e+01 lineto -closepath -gsave -6.517226e-01 6.517226e-01 6.517226e-01 setrgbcolor -fill -grestore -newpath -4.533084e+01 1.417551e+01 moveto -4.785549e+01 1.188052e+01 lineto -4.69278e+01 1.152199e+01 lineto -4.426654e+01 1.376419e+01 lineto -4.533084e+01 1.417551e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.295509e+01 1.671142e+01 moveto -4.533084e+01 1.417551e+01 lineto -4.426654e+01 1.376419e+01 lineto -4.176223e+01 1.625042e+01 lineto -4.295509e+01 1.671142e+01 lineto -closepath -gsave -6.748016e-01 6.748016e-01 6.748016e-01 setrgbcolor -fill -grestore -newpath -4.295509e+01 1.671142e+01 moveto -4.533084e+01 1.417551e+01 lineto -4.426654e+01 1.376419e+01 lineto -4.176223e+01 1.625042e+01 lineto -4.295509e+01 1.671142e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.074623e+01 1.946906e+01 moveto -4.295509e+01 1.671142e+01 lineto -4.176223e+01 1.625042e+01 lineto -3.943385e+01 1.896187e+01 lineto -4.074623e+01 1.946906e+01 lineto -closepath -gsave -6.963921e-01 6.963921e-01 6.963921e-01 setrgbcolor -fill -grestore -newpath -4.074623e+01 1.946906e+01 moveto -4.295509e+01 1.671142e+01 lineto -4.176223e+01 1.625042e+01 lineto -3.943385e+01 1.896187e+01 lineto -4.074623e+01 1.946906e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.872098e+01 2.242755e+01 moveto -4.074623e+01 1.946906e+01 lineto -3.943385e+01 1.896187e+01 lineto -3.729902e+01 2.187801e+01 lineto -3.872098e+01 2.242755e+01 lineto -closepath -gsave -7.159281e-01 7.159281e-01 7.159281e-01 setrgbcolor -fill -grestore -newpath -3.872098e+01 2.242755e+01 moveto -4.074623e+01 1.946906e+01 lineto -3.943385e+01 1.896187e+01 lineto -3.729902e+01 2.187801e+01 lineto -3.872098e+01 2.242755e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.689468e+01 2.55645e+01 moveto -3.872098e+01 2.242755e+01 lineto -3.729902e+01 2.187801e+01 lineto -3.537389e+01 2.497676e+01 lineto -3.689468e+01 2.55645e+01 lineto -closepath -gsave -7.328796e-01 7.328796e-01 7.328796e-01 setrgbcolor -fill -grestore -newpath -3.689468e+01 2.55645e+01 moveto -3.872098e+01 2.242755e+01 lineto -3.729902e+01 2.187801e+01 lineto -3.537389e+01 2.497676e+01 lineto -3.689468e+01 2.55645e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.528114e+01 2.885615e+01 moveto -3.689468e+01 2.55645e+01 lineto -3.537389e+01 2.497676e+01 lineto -3.367304e+01 2.823467e+01 lineto -3.528114e+01 2.885615e+01 lineto -closepath -gsave -7.467743e-01 7.467743e-01 7.467743e-01 setrgbcolor -fill -grestore -newpath -3.528114e+01 2.885615e+01 moveto -3.689468e+01 2.55645e+01 lineto -3.537389e+01 2.497676e+01 lineto -3.367304e+01 2.823467e+01 lineto -3.528114e+01 2.885615e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.389259e+01 3.227759e+01 moveto -3.528114e+01 2.885615e+01 lineto -3.367304e+01 2.823467e+01 lineto -3.220936e+01 3.162707e+01 lineto -3.389259e+01 3.227759e+01 lineto -closepath -gsave -7.572169e-01 7.572169e-01 7.572169e-01 setrgbcolor -fill -grestore -newpath -3.389259e+01 3.227759e+01 moveto -3.528114e+01 2.885615e+01 lineto -3.367304e+01 2.823467e+01 lineto -3.220936e+01 3.162707e+01 lineto -3.389259e+01 3.227759e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.273954e+01 3.580291e+01 moveto -3.389259e+01 3.227759e+01 lineto -3.220936e+01 3.162707e+01 lineto -3.099391e+01 3.512828e+01 lineto -3.273954e+01 3.580291e+01 lineto -closepath -gsave -7.639062e-01 7.639062e-01 7.639062e-01 setrgbcolor -fill -grestore -newpath -3.273954e+01 3.580291e+01 moveto -3.389259e+01 3.227759e+01 lineto -3.220936e+01 3.162707e+01 lineto -3.099391e+01 3.512828e+01 lineto -3.273954e+01 3.580291e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.183071e+01 3.940543e+01 moveto -3.273954e+01 3.580291e+01 lineto -3.099391e+01 3.512828e+01 lineto -3.003591e+01 3.871179e+01 lineto -3.183071e+01 3.940543e+01 lineto -closepath -gsave -7.666476e-01 7.666476e-01 7.666476e-01 setrgbcolor -fill -grestore -newpath -3.183071e+01 3.940543e+01 moveto -3.273954e+01 3.580291e+01 lineto -3.099391e+01 3.512828e+01 lineto -3.003591e+01 3.871179e+01 lineto -3.183071e+01 3.940543e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.117299e+01 4.305787e+01 moveto -3.183071e+01 3.940543e+01 lineto -3.003591e+01 3.871179e+01 lineto -2.93426e+01 4.235048e+01 lineto -3.117299e+01 4.305787e+01 lineto -closepath -gsave -7.653614e-01 7.653614e-01 7.653614e-01 setrgbcolor -fill -grestore -newpath -3.117299e+01 4.305787e+01 moveto -3.183071e+01 3.940543e+01 lineto -3.003591e+01 3.871179e+01 lineto -2.93426e+01 4.235048e+01 lineto -3.117299e+01 4.305787e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.077135e+01 4.673259e+01 moveto -3.117299e+01 4.305787e+01 lineto -2.93426e+01 4.235048e+01 lineto -2.891923e+01 4.60168e+01 lineto -3.077135e+01 4.673259e+01 lineto -closepath -gsave -7.600863e-01 7.600863e-01 7.600863e-01 setrgbcolor -fill -grestore -newpath -3.077135e+01 4.673259e+01 moveto -3.117299e+01 4.305787e+01 lineto -2.93426e+01 4.235048e+01 lineto -2.891923e+01 4.60168e+01 lineto -3.077135e+01 4.673259e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.062884e+01 5.040176e+01 moveto -3.077135e+01 4.673259e+01 lineto -2.891923e+01 4.60168e+01 lineto -2.8769e+01 4.968299e+01 lineto -3.062884e+01 5.040176e+01 lineto -closepath -gsave -7.509776e-01 7.509776e-01 7.509776e-01 setrgbcolor -fill -grestore -newpath -3.062884e+01 5.040176e+01 moveto -3.077135e+01 4.673259e+01 lineto -2.891923e+01 4.60168e+01 lineto -2.8769e+01 4.968299e+01 lineto -3.062884e+01 5.040176e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.074653e+01 5.40376e+01 moveto -3.062884e+01 5.040176e+01 lineto -2.8769e+01 4.968299e+01 lineto -2.889307e+01 5.33213e+01 lineto -3.074653e+01 5.40376e+01 lineto -closepath -gsave -7.383002e-01 7.383002e-01 7.383002e-01 setrgbcolor -fill -grestore -newpath -3.074653e+01 5.40376e+01 moveto -3.062884e+01 5.040176e+01 lineto -2.8769e+01 4.968299e+01 lineto -2.889307e+01 5.33213e+01 lineto -3.074653e+01 5.40376e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.112354e+01 5.76126e+01 moveto -3.074653e+01 5.40376e+01 lineto -2.889307e+01 5.33213e+01 lineto -2.929048e+01 5.690418e+01 lineto -3.112354e+01 5.76126e+01 lineto -closepath -gsave -7.224176e-01 7.224176e-01 7.224176e-01 setrgbcolor -fill -grestore -newpath -3.112354e+01 5.76126e+01 moveto -3.074653e+01 5.40376e+01 lineto -2.889307e+01 5.33213e+01 lineto -2.929048e+01 5.690418e+01 lineto -3.112354e+01 5.76126e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.175701e+01 6.109969e+01 moveto -3.112354e+01 5.76126e+01 lineto -2.929048e+01 5.690418e+01 lineto -2.995822e+01 6.040451e+01 lineto -3.175701e+01 6.109969e+01 lineto -closepath -gsave -7.037762e-01 7.037762e-01 7.037762e-01 setrgbcolor -fill -grestore -newpath -3.175701e+01 6.109969e+01 moveto -3.112354e+01 5.76126e+01 lineto -2.929048e+01 5.690418e+01 lineto -2.995822e+01 6.040451e+01 lineto -3.175701e+01 6.109969e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.264214e+01 6.447246e+01 moveto -3.175701e+01 6.109969e+01 lineto -2.995822e+01 6.040451e+01 lineto -3.089125e+01 6.37958e+01 lineto -3.264214e+01 6.447246e+01 lineto -closepath -gsave -6.828866e-01 6.828866e-01 6.828866e-01 setrgbcolor -fill -grestore -newpath -3.264214e+01 6.447246e+01 moveto -3.175701e+01 6.109969e+01 lineto -2.995822e+01 6.040451e+01 lineto -3.089125e+01 6.37958e+01 lineto -3.264214e+01 6.447246e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.377223e+01 6.770539e+01 moveto -3.264214e+01 6.447246e+01 lineto -3.089125e+01 6.37958e+01 lineto -3.208249e+01 6.705236e+01 lineto -3.377223e+01 6.770539e+01 lineto -closepath -gsave -6.603031e-01 6.603031e-01 6.603031e-01 setrgbcolor -fill -grestore -newpath -3.377223e+01 6.770539e+01 moveto -3.264214e+01 6.447246e+01 lineto -3.089125e+01 6.37958e+01 lineto -3.208249e+01 6.705236e+01 lineto -3.377223e+01 6.770539e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.513874e+01 7.0774e+01 moveto -3.377223e+01 6.770539e+01 lineto -3.208249e+01 6.705236e+01 lineto -3.352294e+01 7.014955e+01 lineto -3.513874e+01 7.0774e+01 lineto -closepath -gsave -6.366008e-01 6.366008e-01 6.366008e-01 setrgbcolor -fill -grestore -newpath -3.513874e+01 7.0774e+01 moveto -3.377223e+01 6.770539e+01 lineto -3.208249e+01 6.705236e+01 lineto -3.352294e+01 7.014955e+01 lineto -3.513874e+01 7.0774e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.67313e+01 7.365506e+01 moveto -3.513874e+01 7.0774e+01 lineto -3.352294e+01 7.014955e+01 lineto -3.520168e+01 7.306391e+01 lineto -3.67313e+01 7.365506e+01 lineto -closepath -gsave -6.123541e-01 6.123541e-01 6.123541e-01 setrgbcolor -fill -grestore -newpath -3.67313e+01 7.365506e+01 moveto -3.513874e+01 7.0774e+01 lineto -3.352294e+01 7.014955e+01 lineto -3.520168e+01 7.306391e+01 lineto -3.67313e+01 7.365506e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.853788e+01 7.632676e+01 moveto -3.67313e+01 7.365506e+01 lineto -3.520168e+01 7.306391e+01 lineto -3.7106e+01 7.577339e+01 lineto -3.853788e+01 7.632676e+01 lineto -closepath -gsave -5.881149e-01 5.881149e-01 5.881149e-01 setrgbcolor -fill -grestore -newpath -3.853788e+01 7.632676e+01 moveto -3.67313e+01 7.365506e+01 lineto -3.520168e+01 7.306391e+01 lineto -3.7106e+01 7.577339e+01 lineto -3.853788e+01 7.632676e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.054478e+01 7.876888e+01 moveto -3.853788e+01 7.632676e+01 lineto -3.7106e+01 7.577339e+01 lineto -3.92215e+01 7.825747e+01 lineto -4.054478e+01 7.876888e+01 lineto -closepath -gsave -5.643938e-01 5.643938e-01 5.643938e-01 setrgbcolor -fill -grestore -newpath -4.054478e+01 7.876888e+01 moveto -3.853788e+01 7.632676e+01 lineto -3.7106e+01 7.577339e+01 lineto -3.92215e+01 7.825747e+01 lineto -4.054478e+01 7.876888e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.273682e+01 8.096291e+01 moveto -4.054478e+01 7.876888e+01 lineto -3.92215e+01 7.825747e+01 lineto -4.153215e+01 8.049735e+01 lineto -4.273682e+01 8.096291e+01 lineto -closepath -gsave -5.416429e-01 5.416429e-01 5.416429e-01 setrgbcolor -fill -grestore -newpath -4.273682e+01 8.096291e+01 moveto -4.054478e+01 7.876888e+01 lineto -3.92215e+01 7.825747e+01 lineto -4.153215e+01 8.049735e+01 lineto -4.273682e+01 8.096291e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.50974e+01 8.289227e+01 moveto -4.273682e+01 8.096291e+01 lineto -4.153215e+01 8.049735e+01 lineto -4.402046e+01 8.247606e+01 lineto -4.50974e+01 8.289227e+01 lineto -closepath -gsave -5.202437e-01 5.202437e-01 5.202437e-01 setrgbcolor -fill -grestore -newpath -4.50974e+01 8.289227e+01 moveto -4.273682e+01 8.096291e+01 lineto -4.153215e+01 8.049735e+01 lineto -4.402046e+01 8.247606e+01 lineto -4.50974e+01 8.289227e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.760865e+01 8.454233e+01 moveto -4.50974e+01 8.289227e+01 lineto -4.402046e+01 8.247606e+01 lineto -4.66676e+01 8.417864e+01 lineto -4.760865e+01 8.454233e+01 lineto -closepath -gsave -5.00498e-01 5.00498e-01 5.00498e-01 setrgbcolor -fill -grestore -newpath -4.760865e+01 8.454233e+01 moveto -4.50974e+01 8.289227e+01 lineto -4.402046e+01 8.247606e+01 lineto -4.66676e+01 8.417864e+01 lineto -4.760865e+01 8.454233e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.025156e+01 8.590061e+01 moveto -4.760865e+01 8.454233e+01 lineto -4.66676e+01 8.417864e+01 lineto -4.945352e+01 8.559219e+01 lineto -5.025156e+01 8.590061e+01 lineto -closepath -gsave -4.826228e-01 4.826228e-01 4.826228e-01 setrgbcolor -fill -grestore -newpath -5.025156e+01 8.590061e+01 moveto -4.760865e+01 8.454233e+01 lineto -4.66676e+01 8.417864e+01 lineto -4.945352e+01 8.559219e+01 lineto -5.025156e+01 8.590061e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.067154e+01 8.666917e+01 moveto -6.770326e+01 8.750999e+01 lineto -6.784953e+01 8.756652e+01 lineto -7.097843e+01 8.678777e+01 lineto -7.067154e+01 8.666917e+01 lineto -closepath -gsave -5.3149e-01 5.3149e-01 5.3149e-01 setrgbcolor -fill -grestore -newpath -7.067154e+01 8.666917e+01 moveto -6.770326e+01 8.750999e+01 lineto -6.784953e+01 8.756652e+01 lineto -7.097843e+01 8.678777e+01 lineto -7.067154e+01 8.666917e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.359689e+01 8.552046e+01 moveto -7.067154e+01 8.666917e+01 lineto -7.097843e+01 8.678777e+01 lineto -7.406207e+01 8.570024e+01 lineto -7.359689e+01 8.552046e+01 lineto -closepath -gsave -5.536696e-01 5.536696e-01 5.536696e-01 setrgbcolor -fill -grestore -newpath -7.359689e+01 8.552046e+01 moveto -7.067154e+01 8.666917e+01 lineto -7.097843e+01 8.678777e+01 lineto -7.406207e+01 8.570024e+01 lineto -7.359689e+01 8.552046e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.645715e+01 8.407257e+01 moveto -7.359689e+01 8.552046e+01 lineto -7.406207e+01 8.570024e+01 lineto -7.70771e+01 8.431216e+01 lineto -7.645715e+01 8.407257e+01 lineto -closepath -gsave -5.770098e-01 5.770098e-01 5.770098e-01 setrgbcolor -fill -grestore -newpath -7.645715e+01 8.407257e+01 moveto -7.359689e+01 8.552046e+01 lineto -7.406207e+01 8.570024e+01 lineto -7.70771e+01 8.431216e+01 lineto -7.645715e+01 8.407257e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.185056e+01 4.494291e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.170831e+01 4.429744e+00 lineto -6.185056e+01 4.494291e+00 lineto -closepath -gsave -5.123925e-01 5.123925e-01 5.123925e-01 setrgbcolor -fill -grestore -newpath -6.185056e+01 4.494291e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.170831e+01 4.429744e+00 lineto -6.185056e+01 4.494291e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.872496e+01 5.302799e+00 moveto -6.185056e+01 4.494291e+00 lineto -6.170831e+01 4.429744e+00 lineto -5.844154e+01 5.174193e+00 lineto -5.872496e+01 5.302799e+00 lineto -closepath -gsave -5.324617e-01 5.324617e-01 5.324617e-01 setrgbcolor -fill -grestore -newpath -5.872496e+01 5.302799e+00 moveto -6.185056e+01 4.494291e+00 lineto -6.170831e+01 4.429744e+00 lineto -5.844154e+01 5.174193e+00 lineto -5.872496e+01 5.302799e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.564687e+01 6.419403e+00 moveto -5.872496e+01 5.302799e+00 lineto -5.844154e+01 5.174193e+00 lineto -5.522442e+01 6.227711e+00 lineto -5.564687e+01 6.419403e+00 lineto -closepath -gsave -5.538622e-01 5.538622e-01 5.538622e-01 setrgbcolor -fill -grestore -newpath -5.564687e+01 6.419403e+00 moveto -5.872496e+01 5.302799e+00 lineto -5.844154e+01 5.174193e+00 lineto -5.522442e+01 6.227711e+00 lineto -5.564687e+01 6.419403e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.263959e+01 7.835649e+00 moveto -5.564687e+01 6.419403e+00 lineto -5.522442e+01 6.227711e+00 lineto -5.20813e+01 7.582323e+00 lineto -5.263959e+01 7.835649e+00 lineto -closepath -gsave -5.762507e-01 5.762507e-01 5.762507e-01 setrgbcolor -fill -grestore -newpath -5.263959e+01 7.835649e+00 moveto -5.564687e+01 6.419403e+00 lineto -5.522442e+01 6.227711e+00 lineto -5.20813e+01 7.582323e+00 lineto -5.263959e+01 7.835649e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.972588e+01 9.540816e+00 moveto -5.263959e+01 7.835649e+00 lineto -5.20813e+01 7.582323e+00 lineto -4.903599e+01 9.227774e+00 lineto -4.972588e+01 9.540816e+00 lineto -closepath -gsave -5.99215e-01 5.99215e-01 5.99215e-01 setrgbcolor -fill -grestore -newpath -4.972588e+01 9.540816e+00 moveto -5.263959e+01 7.835649e+00 lineto -5.20813e+01 7.582323e+00 lineto -4.903599e+01 9.227774e+00 lineto -4.972588e+01 9.540816e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.69278e+01 1.152199e+01 moveto -4.972588e+01 9.540816e+00 lineto -4.903599e+01 9.227774e+00 lineto -4.611153e+01 1.115161e+01 lineto -4.69278e+01 1.152199e+01 lineto -closepath -gsave -6.222859e-01 6.222859e-01 6.222859e-01 setrgbcolor -fill -grestore -newpath -4.69278e+01 1.152199e+01 moveto -4.972588e+01 9.540816e+00 lineto -4.903599e+01 9.227774e+00 lineto -4.611153e+01 1.115161e+01 lineto -4.69278e+01 1.152199e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.426654e+01 1.376419e+01 moveto -4.69278e+01 1.152199e+01 lineto -4.611153e+01 1.115161e+01 lineto -4.333006e+01 1.333926e+01 lineto -4.426654e+01 1.376419e+01 lineto -closepath -gsave -6.449515e-01 6.449515e-01 6.449515e-01 setrgbcolor -fill -grestore -newpath -4.426654e+01 1.376419e+01 moveto -4.69278e+01 1.152199e+01 lineto -4.611153e+01 1.115161e+01 lineto -4.333006e+01 1.333926e+01 lineto -4.426654e+01 1.376419e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.176223e+01 1.625042e+01 moveto -4.426654e+01 1.376419e+01 lineto -4.333006e+01 1.333926e+01 lineto -4.071265e+01 1.577416e+01 lineto -4.176223e+01 1.625042e+01 lineto -closepath -gsave -6.66675e-01 6.66675e-01 6.66675e-01 setrgbcolor -fill -grestore -newpath -4.176223e+01 1.625042e+01 moveto -4.426654e+01 1.376419e+01 lineto -4.333006e+01 1.333926e+01 lineto -4.071265e+01 1.577416e+01 lineto -4.176223e+01 1.625042e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.943385e+01 1.896187e+01 moveto -4.176223e+01 1.625042e+01 lineto -4.071265e+01 1.577416e+01 lineto -3.82791e+01 1.843789e+01 lineto -3.943385e+01 1.896187e+01 lineto -closepath -gsave -6.869143e-01 6.869143e-01 6.869143e-01 setrgbcolor -fill -grestore -newpath -3.943385e+01 1.896187e+01 moveto -4.176223e+01 1.625042e+01 lineto -4.071265e+01 1.577416e+01 lineto -3.82791e+01 1.843789e+01 lineto -3.943385e+01 1.896187e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.729902e+01 2.187801e+01 moveto -3.943385e+01 1.896187e+01 lineto -3.82791e+01 1.843789e+01 lineto -3.604784e+01 2.131028e+01 lineto -3.729902e+01 2.187801e+01 lineto -closepath -gsave -7.051425e-01 7.051425e-01 7.051425e-01 setrgbcolor -fill -grestore -newpath -3.729902e+01 2.187801e+01 moveto -3.943385e+01 1.896187e+01 lineto -3.82791e+01 1.843789e+01 lineto -3.604784e+01 2.131028e+01 lineto -3.729902e+01 2.187801e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.537389e+01 2.497676e+01 moveto -3.729902e+01 2.187801e+01 lineto -3.604784e+01 2.131028e+01 lineto -3.403576e+01 2.436958e+01 lineto -3.537389e+01 2.497676e+01 lineto -closepath -gsave -7.208692e-01 7.208692e-01 7.208692e-01 setrgbcolor -fill -grestore -newpath -3.537389e+01 2.497676e+01 moveto -3.729902e+01 2.187801e+01 lineto -3.604784e+01 2.131028e+01 lineto -3.403576e+01 2.436958e+01 lineto -3.537389e+01 2.497676e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.367304e+01 2.823467e+01 moveto -3.537389e+01 2.497676e+01 lineto -3.403576e+01 2.436958e+01 lineto -3.225809e+01 2.759263e+01 lineto -3.367304e+01 2.823467e+01 lineto -closepath -gsave -7.336599e-01 7.336599e-01 7.336599e-01 setrgbcolor -fill -grestore -newpath -3.367304e+01 2.823467e+01 moveto -3.537389e+01 2.497676e+01 lineto -3.403576e+01 2.436958e+01 lineto -3.225809e+01 2.759263e+01 lineto -3.367304e+01 2.823467e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.220936e+01 3.162707e+01 moveto -3.367304e+01 2.823467e+01 lineto -3.225809e+01 2.759263e+01 lineto -3.072829e+01 3.095503e+01 lineto -3.220936e+01 3.162707e+01 lineto -closepath -gsave -7.431544e-01 7.431544e-01 7.431544e-01 setrgbcolor -fill -grestore -newpath -3.220936e+01 3.162707e+01 moveto -3.367304e+01 2.823467e+01 lineto -3.225809e+01 2.759263e+01 lineto -3.072829e+01 3.095503e+01 lineto -3.220936e+01 3.162707e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.099391e+01 3.512828e+01 moveto -3.220936e+01 3.162707e+01 lineto -3.072829e+01 3.095503e+01 lineto -2.945795e+01 3.443133e+01 lineto -3.099391e+01 3.512828e+01 lineto -closepath -gsave -7.490815e-01 7.490815e-01 7.490815e-01 setrgbcolor -fill -grestore -newpath -3.099391e+01 3.512828e+01 moveto -3.220936e+01 3.162707e+01 lineto -3.072829e+01 3.095503e+01 lineto -2.945795e+01 3.443133e+01 lineto -3.099391e+01 3.512828e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.003591e+01 3.871179e+01 moveto -3.099391e+01 3.512828e+01 lineto -2.945795e+01 3.443133e+01 lineto -2.845667e+01 3.799521e+01 lineto -3.003591e+01 3.871179e+01 lineto -closepath -gsave -7.512708e-01 7.512708e-01 7.512708e-01 setrgbcolor -fill -grestore -newpath -3.003591e+01 3.871179e+01 moveto -3.099391e+01 3.512828e+01 lineto -2.945795e+01 3.443133e+01 lineto -2.845667e+01 3.799521e+01 lineto -3.003591e+01 3.871179e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.93426e+01 4.235048e+01 moveto -3.003591e+01 3.871179e+01 lineto -2.845667e+01 3.799521e+01 lineto -2.773205e+01 4.161969e+01 lineto -2.93426e+01 4.235048e+01 lineto -closepath -gsave -7.496594e-01 7.496594e-01 7.496594e-01 setrgbcolor -fill -grestore -newpath -2.93426e+01 4.235048e+01 moveto -3.003591e+01 3.871179e+01 lineto -2.845667e+01 3.799521e+01 lineto -2.773205e+01 4.161969e+01 lineto -2.93426e+01 4.235048e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.891923e+01 4.60168e+01 moveto -2.93426e+01 4.235048e+01 lineto -2.773205e+01 4.161969e+01 lineto -2.728955e+01 4.527733e+01 lineto -2.891923e+01 4.60168e+01 lineto -closepath -gsave -7.442951e-01 7.442951e-01 7.442951e-01 setrgbcolor -fill -grestore -newpath -2.891923e+01 4.60168e+01 moveto -2.93426e+01 4.235048e+01 lineto -2.773205e+01 4.161969e+01 lineto -2.728955e+01 4.527733e+01 lineto -2.891923e+01 4.60168e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.8769e+01 4.968299e+01 moveto -2.891923e+01 4.60168e+01 lineto -2.728955e+01 4.527733e+01 lineto -2.713255e+01 4.894044e+01 lineto -2.8769e+01 4.968299e+01 lineto -closepath -gsave -7.353337e-01 7.353337e-01 7.353337e-01 setrgbcolor -fill -grestore -newpath -2.8769e+01 4.968299e+01 moveto -2.891923e+01 4.60168e+01 lineto -2.728955e+01 4.527733e+01 lineto -2.713255e+01 4.894044e+01 lineto -2.8769e+01 4.968299e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.889307e+01 5.33213e+01 moveto -2.8769e+01 4.968299e+01 lineto -2.713255e+01 4.894044e+01 lineto -2.726221e+01 5.258129e+01 lineto -2.889307e+01 5.33213e+01 lineto -closepath -gsave -7.230328e-01 7.230328e-01 7.230328e-01 setrgbcolor -fill -grestore -newpath -2.889307e+01 5.33213e+01 moveto -2.8769e+01 4.968299e+01 lineto -2.713255e+01 4.894044e+01 lineto -2.726221e+01 5.258129e+01 lineto -2.889307e+01 5.33213e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.929048e+01 5.690418e+01 moveto -2.889307e+01 5.33213e+01 lineto -2.726221e+01 5.258129e+01 lineto -2.767757e+01 5.617232e+01 lineto -2.929048e+01 5.690418e+01 lineto -closepath -gsave -7.077403e-01 7.077403e-01 7.077403e-01 setrgbcolor -fill -grestore -newpath -2.929048e+01 5.690418e+01 moveto -2.889307e+01 5.33213e+01 lineto -2.726221e+01 5.258129e+01 lineto -2.767757e+01 5.617232e+01 lineto -2.929048e+01 5.690418e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.995822e+01 6.040451e+01 moveto -2.929048e+01 5.690418e+01 lineto -2.767757e+01 5.617232e+01 lineto -2.837548e+01 5.968633e+01 lineto -2.995822e+01 6.040451e+01 lineto -closepath -gsave -6.898802e-01 6.898802e-01 6.898802e-01 setrgbcolor -fill -grestore -newpath -2.995822e+01 6.040451e+01 moveto -2.929048e+01 5.690418e+01 lineto -2.767757e+01 5.617232e+01 lineto -2.837548e+01 5.968633e+01 lineto -2.995822e+01 6.040451e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.089125e+01 6.37958e+01 moveto -2.995822e+01 6.040451e+01 lineto -2.837548e+01 5.968633e+01 lineto -2.935064e+01 6.309674e+01 lineto -3.089125e+01 6.37958e+01 lineto -closepath -gsave -6.699348e-01 6.699348e-01 6.699348e-01 setrgbcolor -fill -grestore -newpath -3.089125e+01 6.37958e+01 moveto -2.995822e+01 6.040451e+01 lineto -2.837548e+01 5.968633e+01 lineto -2.935064e+01 6.309674e+01 lineto -3.089125e+01 6.37958e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.208249e+01 6.705236e+01 moveto -3.089125e+01 6.37958e+01 lineto -2.935064e+01 6.309674e+01 lineto -3.059569e+01 6.637772e+01 lineto -3.208249e+01 6.705236e+01 lineto -closepath -gsave -6.484253e-01 6.484253e-01 6.484253e-01 setrgbcolor -fill -grestore -newpath -3.208249e+01 6.705236e+01 moveto -3.089125e+01 6.37958e+01 lineto -2.935064e+01 6.309674e+01 lineto -3.059569e+01 6.637772e+01 lineto -3.208249e+01 6.705236e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.352294e+01 7.014955e+01 moveto -3.208249e+01 6.705236e+01 lineto -3.059569e+01 6.637772e+01 lineto -3.21012e+01 6.950443e+01 lineto -3.352294e+01 7.014955e+01 lineto -closepath -gsave -6.258912e-01 6.258912e-01 6.258912e-01 setrgbcolor -fill -grestore -newpath -3.352294e+01 7.014955e+01 moveto -3.208249e+01 6.705236e+01 lineto -3.059569e+01 6.637772e+01 lineto -3.21012e+01 6.950443e+01 lineto -3.352294e+01 7.014955e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.520168e+01 7.306391e+01 moveto -3.352294e+01 7.014955e+01 lineto -3.21012e+01 6.950443e+01 lineto -3.385576e+01 7.24532e+01 lineto -3.520168e+01 7.306391e+01 lineto -closepath -gsave -6.028694e-01 6.028694e-01 6.028694e-01 setrgbcolor -fill -grestore -newpath -3.520168e+01 7.306391e+01 moveto -3.352294e+01 7.014955e+01 lineto -3.21012e+01 6.950443e+01 lineto -3.385576e+01 7.24532e+01 lineto -3.520168e+01 7.306391e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.7106e+01 7.577339e+01 moveto -3.520168e+01 7.306391e+01 lineto -3.385576e+01 7.24532e+01 lineto -3.58461e+01 7.52017e+01 lineto -3.7106e+01 7.577339e+01 lineto -closepath -gsave -5.798751e-01 5.798751e-01 5.798751e-01 setrgbcolor -fill -grestore -newpath -3.7106e+01 7.577339e+01 moveto -3.520168e+01 7.306391e+01 lineto -3.385576e+01 7.24532e+01 lineto -3.58461e+01 7.52017e+01 lineto -3.7106e+01 7.577339e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.92215e+01 7.825747e+01 moveto -3.7106e+01 7.577339e+01 lineto -3.58461e+01 7.52017e+01 lineto -3.805715e+01 7.772914e+01 lineto -3.92215e+01 7.825747e+01 lineto -closepath -gsave -5.573836e-01 5.573836e-01 5.573836e-01 setrgbcolor -fill -grestore -newpath -3.92215e+01 7.825747e+01 moveto -3.7106e+01 7.577339e+01 lineto -3.58461e+01 7.52017e+01 lineto -3.805715e+01 7.772914e+01 lineto -3.92215e+01 7.825747e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.153215e+01 8.049735e+01 moveto -3.92215e+01 7.825747e+01 lineto -3.805715e+01 7.772914e+01 lineto -4.047217e+01 8.001638e+01 lineto -4.153215e+01 8.049735e+01 lineto -closepath -gsave -5.358155e-01 5.358155e-01 5.358155e-01 setrgbcolor -fill -grestore -newpath -4.153215e+01 8.049735e+01 moveto -3.92215e+01 7.825747e+01 lineto -3.805715e+01 7.772914e+01 lineto -4.047217e+01 8.001638e+01 lineto -4.153215e+01 8.049735e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.402046e+01 8.247606e+01 moveto -4.153215e+01 8.049735e+01 lineto -4.047217e+01 8.001638e+01 lineto -4.307287e+01 8.204609e+01 lineto -4.402046e+01 8.247606e+01 lineto -closepath -gsave -5.155248e-01 5.155248e-01 5.155248e-01 setrgbcolor -fill -grestore -newpath -4.402046e+01 8.247606e+01 moveto -4.153215e+01 8.049735e+01 lineto -4.047217e+01 8.001638e+01 lineto -4.307287e+01 8.204609e+01 lineto -4.402046e+01 8.247606e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.66676e+01 8.417864e+01 moveto -4.402046e+01 8.247606e+01 lineto -4.307287e+01 8.204609e+01 lineto -4.583957e+01 8.380292e+01 lineto -4.66676e+01 8.417864e+01 lineto -closepath -gsave -4.967915e-01 4.967915e-01 4.967915e-01 setrgbcolor -fill -grestore -newpath -4.66676e+01 8.417864e+01 moveto -4.402046e+01 8.247606e+01 lineto -4.307287e+01 8.204609e+01 lineto -4.583957e+01 8.380292e+01 lineto -4.66676e+01 8.417864e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.945352e+01 8.559219e+01 moveto -4.66676e+01 8.417864e+01 lineto -4.583957e+01 8.380292e+01 lineto -4.875133e+01 8.527357e+01 lineto -4.945352e+01 8.559219e+01 lineto -closepath -gsave -4.798165e-01 4.798165e-01 4.798165e-01 setrgbcolor -fill -grestore -newpath -4.945352e+01 8.559219e+01 moveto -4.66676e+01 8.417864e+01 lineto -4.583957e+01 8.380292e+01 lineto -4.875133e+01 8.527357e+01 lineto -4.945352e+01 8.559219e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.097843e+01 8.678777e+01 moveto -6.784953e+01 8.756652e+01 lineto -6.797824e+01 8.762492e+01 lineto -7.124846e+01 8.69103e+01 lineto -7.097843e+01 8.678777e+01 lineto -closepath -gsave -5.304842e-01 5.304842e-01 5.304842e-01 setrgbcolor -fill -grestore -newpath -7.097843e+01 8.678777e+01 moveto -6.784953e+01 8.756652e+01 lineto -6.797824e+01 8.762492e+01 lineto -7.124846e+01 8.69103e+01 lineto -7.097843e+01 8.678777e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.406207e+01 8.570024e+01 moveto -7.097843e+01 8.678777e+01 lineto -7.124846e+01 8.69103e+01 lineto -7.447138e+01 8.588597e+01 lineto -7.406207e+01 8.570024e+01 lineto -closepath -gsave -5.517713e-01 5.517713e-01 5.517713e-01 setrgbcolor -fill -grestore -newpath -7.406207e+01 8.570024e+01 moveto -7.097843e+01 8.678777e+01 lineto -7.124846e+01 8.69103e+01 lineto -7.447138e+01 8.588597e+01 lineto -7.406207e+01 8.570024e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.70771e+01 8.431216e+01 moveto -7.406207e+01 8.570024e+01 lineto -7.447138e+01 8.588597e+01 lineto -7.762259e+01 8.455968e+01 lineto -7.70771e+01 8.431216e+01 lineto -closepath -gsave -5.740823e-01 5.740823e-01 5.740823e-01 setrgbcolor -fill -grestore -newpath -7.70771e+01 8.431216e+01 moveto -7.406207e+01 8.570024e+01 lineto -7.447138e+01 8.588597e+01 lineto -7.762259e+01 8.455968e+01 lineto -7.70771e+01 8.431216e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.170831e+01 4.429744e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.158635e+01 4.363527e+00 lineto -6.170831e+01 4.429744e+00 lineto -closepath -gsave -5.120086e-01 5.120086e-01 5.120086e-01 setrgbcolor -fill -grestore -newpath -6.170831e+01 4.429744e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.158635e+01 4.363527e+00 lineto -6.170831e+01 4.429744e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.844154e+01 5.174193e+00 moveto -6.170831e+01 4.429744e+00 lineto -6.158635e+01 4.363527e+00 lineto -5.819855e+01 5.042261e+00 lineto -5.844154e+01 5.174193e+00 lineto -closepath -gsave -5.311824e-01 5.311824e-01 5.311824e-01 setrgbcolor -fill -grestore -newpath -5.844154e+01 5.174193e+00 moveto -6.170831e+01 4.429744e+00 lineto -6.158635e+01 4.363527e+00 lineto -5.819855e+01 5.042261e+00 lineto -5.844154e+01 5.174193e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.522442e+01 6.227711e+00 moveto -5.844154e+01 5.174193e+00 lineto -5.819855e+01 5.042261e+00 lineto -5.486223e+01 6.031062e+00 lineto -5.522442e+01 6.227711e+00 lineto -closepath -gsave -5.515226e-01 5.515226e-01 5.515226e-01 setrgbcolor -fill -grestore -newpath -5.522442e+01 6.227711e+00 moveto -5.844154e+01 5.174193e+00 lineto -5.819855e+01 5.042261e+00 lineto -5.486223e+01 6.031062e+00 lineto -5.522442e+01 6.227711e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.20813e+01 7.582323e+00 moveto -5.522442e+01 6.227711e+00 lineto -5.486223e+01 6.031062e+00 lineto -5.160266e+01 7.322446e+00 lineto -5.20813e+01 7.582323e+00 lineto -closepath -gsave -5.726979e-01 5.726979e-01 5.726979e-01 setrgbcolor -fill -grestore -newpath -5.20813e+01 7.582323e+00 moveto -5.522442e+01 6.227711e+00 lineto -5.486223e+01 6.031062e+00 lineto -5.160266e+01 7.322446e+00 lineto -5.20813e+01 7.582323e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.903599e+01 9.227774e+00 moveto -5.20813e+01 7.582323e+00 lineto -5.160266e+01 7.322446e+00 lineto -4.844452e+01 8.906636e+00 lineto -4.903599e+01 9.227774e+00 lineto -closepath -gsave -5.943163e-01 5.943163e-01 5.943163e-01 setrgbcolor -fill -grestore -newpath -4.903599e+01 9.227774e+00 moveto -5.20813e+01 7.582323e+00 lineto -5.160266e+01 7.322446e+00 lineto -4.844452e+01 8.906636e+00 lineto -4.903599e+01 9.227774e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.611153e+01 1.115161e+01 moveto -4.903599e+01 9.227774e+00 lineto -4.844452e+01 8.906636e+00 lineto -4.541171e+01 1.077164e+01 lineto -4.611153e+01 1.115161e+01 lineto -closepath -gsave -6.159356e-01 6.159356e-01 6.159356e-01 setrgbcolor -fill -grestore -newpath -4.611153e+01 1.115161e+01 moveto -4.903599e+01 9.227774e+00 lineto -4.844452e+01 8.906636e+00 lineto -4.541171e+01 1.077164e+01 lineto -4.611153e+01 1.115161e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.333006e+01 1.333926e+01 moveto -4.611153e+01 1.115161e+01 lineto -4.541171e+01 1.077164e+01 lineto -4.252719e+01 1.290334e+01 lineto -4.333006e+01 1.333926e+01 lineto -closepath -gsave -6.370775e-01 6.370775e-01 6.370775e-01 setrgbcolor -fill -grestore -newpath -4.333006e+01 1.333926e+01 moveto -4.611153e+01 1.115161e+01 lineto -4.541171e+01 1.077164e+01 lineto -4.252719e+01 1.290334e+01 lineto -4.333006e+01 1.333926e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.071265e+01 1.577416e+01 moveto -4.333006e+01 1.333926e+01 lineto -4.252719e+01 1.290334e+01 lineto -3.98128e+01 1.528559e+01 lineto -4.071265e+01 1.577416e+01 lineto -closepath -gsave -6.572438e-01 6.572438e-01 6.572438e-01 setrgbcolor -fill -grestore -newpath -4.071265e+01 1.577416e+01 moveto -4.333006e+01 1.333926e+01 lineto -4.252719e+01 1.290334e+01 lineto -3.98128e+01 1.528559e+01 lineto -4.071265e+01 1.577416e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.82791e+01 1.843789e+01 moveto -4.071265e+01 1.577416e+01 lineto -3.98128e+01 1.528559e+01 lineto -3.728908e+01 1.790036e+01 lineto -3.82791e+01 1.843789e+01 lineto -closepath -gsave -6.759351e-01 6.759351e-01 6.759351e-01 setrgbcolor -fill -grestore -newpath -3.82791e+01 1.843789e+01 moveto -4.071265e+01 1.577416e+01 lineto -3.98128e+01 1.528559e+01 lineto -3.728908e+01 1.790036e+01 lineto -3.82791e+01 1.843789e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.604784e+01 2.131028e+01 moveto -3.82791e+01 1.843789e+01 lineto -3.728908e+01 1.790036e+01 lineto -3.497516e+01 2.072787e+01 lineto -3.604784e+01 2.131028e+01 lineto -closepath -gsave -6.92669e-01 6.92669e-01 6.92669e-01 setrgbcolor -fill -grestore -newpath -3.604784e+01 2.131028e+01 moveto -3.82791e+01 1.843789e+01 lineto -3.728908e+01 1.790036e+01 lineto -3.497516e+01 2.072787e+01 lineto -3.604784e+01 2.131028e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.403576e+01 2.436958e+01 moveto -3.604784e+01 2.131028e+01 lineto -3.497516e+01 2.072787e+01 lineto -3.288853e+01 2.374669e+01 lineto -3.403576e+01 2.436958e+01 lineto -closepath -gsave -7.069997e-01 7.069997e-01 7.069997e-01 setrgbcolor -fill -grestore -newpath -3.403576e+01 2.436958e+01 moveto -3.604784e+01 2.131028e+01 lineto -3.497516e+01 2.072787e+01 lineto -3.288853e+01 2.374669e+01 lineto -3.403576e+01 2.436958e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.225809e+01 2.759263e+01 moveto -3.403576e+01 2.436958e+01 lineto -3.288853e+01 2.374669e+01 lineto -3.1045e+01 2.693398e+01 lineto -3.225809e+01 2.759263e+01 lineto -closepath -gsave -7.185358e-01 7.185358e-01 7.185358e-01 setrgbcolor -fill -grestore -newpath -3.225809e+01 2.759263e+01 moveto -3.403576e+01 2.436958e+01 lineto -3.288853e+01 2.374669e+01 lineto -3.1045e+01 2.693398e+01 lineto -3.225809e+01 2.759263e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.072829e+01 3.095503e+01 moveto -3.225809e+01 2.759263e+01 lineto -3.1045e+01 2.693398e+01 lineto -2.945852e+01 3.026561e+01 lineto -3.072829e+01 3.095503e+01 lineto -closepath -gsave -7.269561e-01 7.269561e-01 7.269561e-01 setrgbcolor -fill -grestore -newpath -3.072829e+01 3.095503e+01 moveto -3.225809e+01 2.759263e+01 lineto -3.1045e+01 2.693398e+01 lineto -2.945852e+01 3.026561e+01 lineto -3.072829e+01 3.095503e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.945795e+01 3.443133e+01 moveto -3.072829e+01 3.095503e+01 lineto -2.945852e+01 3.026561e+01 lineto -2.814111e+01 3.371635e+01 lineto -2.945795e+01 3.443133e+01 lineto -closepath -gsave -7.320233e-01 7.320233e-01 7.320233e-01 setrgbcolor -fill -grestore -newpath -2.945795e+01 3.443133e+01 moveto -3.072829e+01 3.095503e+01 lineto -2.945852e+01 3.026561e+01 lineto -2.814111e+01 3.371635e+01 lineto -2.945795e+01 3.443133e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.845667e+01 3.799521e+01 moveto -2.945795e+01 3.443133e+01 lineto -2.814111e+01 3.371635e+01 lineto -2.710274e+01 3.726009e+01 lineto -2.845667e+01 3.799521e+01 lineto -closepath -gsave -7.335937e-01 7.335937e-01 7.335937e-01 setrgbcolor -fill -grestore -newpath -2.845667e+01 3.799521e+01 moveto -2.945795e+01 3.443133e+01 lineto -2.814111e+01 3.371635e+01 lineto -2.710274e+01 3.726009e+01 lineto -2.845667e+01 3.799521e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.773205e+01 4.161969e+01 moveto -2.845667e+01 3.799521e+01 lineto -2.710274e+01 3.726009e+01 lineto -2.635127e+01 4.086999e+01 lineto -2.773205e+01 4.161969e+01 lineto -closepath -gsave -7.31623e-01 7.31623e-01 7.31623e-01 setrgbcolor -fill -grestore -newpath -2.773205e+01 4.161969e+01 moveto -2.845667e+01 3.799521e+01 lineto -2.710274e+01 3.726009e+01 lineto -2.635127e+01 4.086999e+01 lineto -2.773205e+01 4.161969e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.728955e+01 4.527733e+01 moveto -2.773205e+01 4.161969e+01 lineto -2.635127e+01 4.086999e+01 lineto -2.589238e+01 4.451873e+01 lineto -2.728955e+01 4.527733e+01 lineto -closepath -gsave -7.261685e-01 7.261685e-01 7.261685e-01 setrgbcolor -fill -grestore -newpath -2.728955e+01 4.527733e+01 moveto -2.773205e+01 4.161969e+01 lineto -2.635127e+01 4.086999e+01 lineto -2.589238e+01 4.451873e+01 lineto -2.728955e+01 4.527733e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.713255e+01 4.894044e+01 moveto -2.728955e+01 4.527733e+01 lineto -2.589238e+01 4.451873e+01 lineto -2.572955e+01 4.817868e+01 lineto -2.713255e+01 4.894044e+01 lineto -closepath -gsave -7.173863e-01 7.173863e-01 7.173863e-01 setrgbcolor -fill -grestore -newpath -2.713255e+01 4.894044e+01 moveto -2.728955e+01 4.527733e+01 lineto -2.589238e+01 4.451873e+01 lineto -2.572955e+01 4.817868e+01 lineto -2.713255e+01 4.894044e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.726221e+01 5.258129e+01 moveto -2.713255e+01 4.894044e+01 lineto -2.572955e+01 4.817868e+01 lineto -2.586403e+01 5.182214e+01 lineto -2.726221e+01 5.258129e+01 lineto -closepath -gsave -7.055248e-01 7.055248e-01 7.055248e-01 setrgbcolor -fill -grestore -newpath -2.726221e+01 5.258129e+01 moveto -2.713255e+01 4.894044e+01 lineto -2.572955e+01 4.817868e+01 lineto -2.586403e+01 5.182214e+01 lineto -2.726221e+01 5.258129e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.767757e+01 5.617232e+01 moveto -2.726221e+01 5.258129e+01 lineto -2.586403e+01 5.182214e+01 lineto -2.629477e+01 5.542152e+01 lineto -2.767757e+01 5.617232e+01 lineto -closepath -gsave -6.909141e-01 6.909141e-01 6.909141e-01 setrgbcolor -fill -grestore -newpath -2.767757e+01 5.617232e+01 moveto -2.726221e+01 5.258129e+01 lineto -2.586403e+01 5.182214e+01 lineto -2.629477e+01 5.542152e+01 lineto -2.767757e+01 5.617232e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.837548e+01 5.968633e+01 moveto -2.767757e+01 5.617232e+01 lineto -2.629477e+01 5.542152e+01 lineto -2.701853e+01 5.894958e+01 lineto -2.837548e+01 5.968633e+01 lineto -closepath -gsave -6.739524e-01 6.739524e-01 6.739524e-01 setrgbcolor -fill -grestore -newpath -2.837548e+01 5.968633e+01 moveto -2.767757e+01 5.617232e+01 lineto -2.629477e+01 5.542152e+01 lineto -2.701853e+01 5.894958e+01 lineto -2.837548e+01 5.968633e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.935064e+01 6.309674e+01 moveto -2.837548e+01 5.968633e+01 lineto -2.701853e+01 5.894958e+01 lineto -2.802983e+01 6.237961e+01 lineto -2.935064e+01 6.309674e+01 lineto -closepath -gsave -6.550897e-01 6.550897e-01 6.550897e-01 setrgbcolor -fill -grestore -newpath -2.935064e+01 6.309674e+01 moveto -2.837548e+01 5.968633e+01 lineto -2.701853e+01 5.894958e+01 lineto -2.802983e+01 6.237961e+01 lineto -2.935064e+01 6.309674e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.059569e+01 6.637772e+01 moveto -2.935064e+01 6.309674e+01 lineto -2.802983e+01 6.237961e+01 lineto -2.932101e+01 6.568563e+01 lineto -3.059569e+01 6.637772e+01 lineto -closepath -gsave -6.348097e-01 6.348097e-01 6.348097e-01 setrgbcolor -fill -grestore -newpath -3.059569e+01 6.637772e+01 moveto -2.935064e+01 6.309674e+01 lineto -2.802983e+01 6.237961e+01 lineto -2.932101e+01 6.568563e+01 lineto -3.059569e+01 6.637772e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.21012e+01 6.950443e+01 moveto -3.059569e+01 6.637772e+01 lineto -2.932101e+01 6.568563e+01 lineto -3.08823e+01 6.884262e+01 lineto -3.21012e+01 6.950443e+01 lineto -closepath -gsave -6.136112e-01 6.136112e-01 6.136112e-01 setrgbcolor -fill -grestore -newpath -3.21012e+01 6.950443e+01 moveto -3.059569e+01 6.637772e+01 lineto -2.932101e+01 6.568563e+01 lineto -3.08823e+01 6.884262e+01 lineto -3.21012e+01 6.950443e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.385576e+01 7.24532e+01 moveto -3.21012e+01 6.950443e+01 lineto -3.08823e+01 6.884262e+01 lineto -3.270187e+01 7.182669e+01 lineto -3.385576e+01 7.24532e+01 lineto -closepath -gsave -5.919889e-01 5.919889e-01 5.919889e-01 setrgbcolor -fill -grestore -newpath -3.385576e+01 7.24532e+01 moveto -3.21012e+01 6.950443e+01 lineto -3.08823e+01 6.884262e+01 lineto -3.270187e+01 7.182669e+01 lineto -3.385576e+01 7.24532e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.58461e+01 7.52017e+01 moveto -3.385576e+01 7.24532e+01 lineto -3.270187e+01 7.182669e+01 lineto -3.476595e+01 7.461523e+01 lineto -3.58461e+01 7.52017e+01 lineto -closepath -gsave -5.704163e-01 5.704163e-01 5.704163e-01 setrgbcolor -fill -grestore -newpath -3.58461e+01 7.52017e+01 moveto -3.385576e+01 7.24532e+01 lineto -3.270187e+01 7.182669e+01 lineto -3.476595e+01 7.461523e+01 lineto -3.58461e+01 7.52017e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.805715e+01 7.772914e+01 moveto -3.58461e+01 7.52017e+01 lineto -3.476595e+01 7.461523e+01 lineto -3.705892e+01 7.718715e+01 lineto -3.805715e+01 7.772914e+01 lineto -closepath -gsave -5.493291e-01 5.493291e-01 5.493291e-01 setrgbcolor -fill -grestore -newpath -3.805715e+01 7.772914e+01 moveto -3.58461e+01 7.52017e+01 lineto -3.476595e+01 7.461523e+01 lineto -3.705892e+01 7.718715e+01 lineto -3.805715e+01 7.772914e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.047217e+01 8.001638e+01 moveto -3.805715e+01 7.772914e+01 lineto -3.705892e+01 7.718715e+01 lineto -3.956341e+01 7.952296e+01 lineto -4.047217e+01 8.001638e+01 lineto -closepath -gsave -5.291121e-01 5.291121e-01 5.291121e-01 setrgbcolor -fill -grestore -newpath -4.047217e+01 8.001638e+01 moveto -3.805715e+01 7.772914e+01 lineto -3.705892e+01 7.718715e+01 lineto -3.956341e+01 7.952296e+01 lineto -4.047217e+01 8.001638e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.307287e+01 8.204609e+01 moveto -4.047217e+01 8.001638e+01 lineto -3.956341e+01 7.952296e+01 lineto -4.226047e+01 8.1605e+01 lineto -4.307287e+01 8.204609e+01 lineto -closepath -gsave -5.100888e-01 5.100888e-01 5.100888e-01 setrgbcolor -fill -grestore -newpath -4.307287e+01 8.204609e+01 moveto -4.047217e+01 8.001638e+01 lineto -3.956341e+01 7.952296e+01 lineto -4.226047e+01 8.1605e+01 lineto -4.307287e+01 8.204609e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.583957e+01 8.380292e+01 moveto -4.307287e+01 8.204609e+01 lineto -4.226047e+01 8.1605e+01 lineto -4.512968e+01 8.341748e+01 lineto -4.583957e+01 8.380292e+01 lineto -closepath -gsave -4.925139e-01 4.925139e-01 4.925139e-01 setrgbcolor -fill -grestore -newpath -4.583957e+01 8.380292e+01 moveto -4.307287e+01 8.204609e+01 lineto -4.226047e+01 8.1605e+01 lineto -4.512968e+01 8.341748e+01 lineto -4.583957e+01 8.380292e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.124846e+01 8.69103e+01 moveto -6.797824e+01 8.762492e+01 lineto -6.808858e+01 8.768483e+01 lineto -7.147997e+01 8.703599e+01 lineto -7.124846e+01 8.69103e+01 lineto -closepath -gsave -5.292976e-01 5.292976e-01 5.292976e-01 setrgbcolor -fill -grestore -newpath -7.124846e+01 8.69103e+01 moveto -6.797824e+01 8.762492e+01 lineto -6.808858e+01 8.768483e+01 lineto -7.147997e+01 8.703599e+01 lineto -7.124846e+01 8.69103e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.447138e+01 8.588597e+01 moveto -7.124846e+01 8.69103e+01 lineto -7.147997e+01 8.703599e+01 lineto -7.482229e+01 8.60765e+01 lineto -7.447138e+01 8.588597e+01 lineto -closepath -gsave -5.495397e-01 5.495397e-01 5.495397e-01 setrgbcolor -fill -grestore -newpath -7.447138e+01 8.588597e+01 moveto -7.124846e+01 8.69103e+01 lineto -7.147997e+01 8.703599e+01 lineto -7.482229e+01 8.60765e+01 lineto -7.447138e+01 8.588597e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.762259e+01 8.455968e+01 moveto -7.447138e+01 8.588597e+01 lineto -7.482229e+01 8.60765e+01 lineto -7.809026e+01 8.48136e+01 lineto -7.762259e+01 8.455968e+01 lineto -closepath -gsave -5.706514e-01 5.706514e-01 5.706514e-01 setrgbcolor -fill -grestore -newpath -7.762259e+01 8.455968e+01 moveto -7.447138e+01 8.588597e+01 lineto -7.482229e+01 8.60765e+01 lineto -7.809026e+01 8.48136e+01 lineto -7.762259e+01 8.455968e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.158635e+01 4.363527e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.148544e+01 4.296049e+00 lineto -6.158635e+01 4.363527e+00 lineto -closepath -gsave -5.115678e-01 5.115678e-01 5.115678e-01 setrgbcolor -fill -grestore -newpath -6.158635e+01 4.363527e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.148544e+01 4.296049e+00 lineto -6.158635e+01 4.363527e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.819855e+01 5.042261e+00 moveto -6.158635e+01 4.363527e+00 lineto -6.148544e+01 4.296049e+00 lineto -5.799749e+01 4.907815e+00 lineto -5.819855e+01 5.042261e+00 lineto -closepath -gsave -5.297203e-01 5.297203e-01 5.297203e-01 setrgbcolor -fill -grestore -newpath -5.819855e+01 5.042261e+00 moveto -6.158635e+01 4.363527e+00 lineto -6.148544e+01 4.296049e+00 lineto -5.799749e+01 4.907815e+00 lineto -5.819855e+01 5.042261e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.486223e+01 6.031062e+00 moveto -5.819855e+01 5.042261e+00 lineto -5.799749e+01 4.907815e+00 lineto -5.456255e+01 5.830668e+00 lineto -5.486223e+01 6.031062e+00 lineto -closepath -gsave -5.488593e-01 5.488593e-01 5.488593e-01 setrgbcolor -fill -grestore -newpath -5.486223e+01 6.031062e+00 moveto -5.819855e+01 5.042261e+00 lineto -5.799749e+01 4.907815e+00 lineto -5.456255e+01 5.830668e+00 lineto -5.486223e+01 6.031062e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.160266e+01 7.322446e+00 moveto -5.486223e+01 6.031062e+00 lineto -5.456255e+01 5.830668e+00 lineto -5.120662e+01 7.057619e+00 lineto -5.160266e+01 7.322446e+00 lineto -closepath -gsave -5.686685e-01 5.686685e-01 5.686685e-01 setrgbcolor -fill -grestore -newpath -5.160266e+01 7.322446e+00 moveto -5.486223e+01 6.031062e+00 lineto -5.456255e+01 5.830668e+00 lineto -5.120662e+01 7.057619e+00 lineto -5.160266e+01 7.322446e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.844452e+01 8.906636e+00 moveto -5.160266e+01 7.322446e+00 lineto -5.120662e+01 7.057619e+00 lineto -4.795512e+01 8.579382e+00 lineto -4.844452e+01 8.906636e+00 lineto -closepath -gsave -5.887786e-01 5.887786e-01 5.887786e-01 setrgbcolor -fill -grestore -newpath -4.844452e+01 8.906636e+00 moveto -5.160266e+01 7.322446e+00 lineto -5.120662e+01 7.057619e+00 lineto -4.795512e+01 8.579382e+00 lineto -4.844452e+01 8.906636e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.541171e+01 1.077164e+01 moveto -4.844452e+01 8.906636e+00 lineto -4.795512e+01 8.579382e+00 lineto -4.483266e+01 1.038444e+01 lineto -4.541171e+01 1.077164e+01 lineto -closepath -gsave -6.087781e-01 6.087781e-01 6.087781e-01 setrgbcolor -fill -grestore -newpath -4.541171e+01 1.077164e+01 moveto -4.844452e+01 8.906636e+00 lineto -4.795512e+01 8.579382e+00 lineto -4.483266e+01 1.038444e+01 lineto -4.541171e+01 1.077164e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.252719e+01 1.290334e+01 moveto -4.541171e+01 1.077164e+01 lineto -4.483266e+01 1.038444e+01 lineto -4.186287e+01 1.245911e+01 lineto -4.252719e+01 1.290334e+01 lineto -closepath -gsave -6.282263e-01 6.282263e-01 6.282263e-01 setrgbcolor -fill -grestore -newpath -4.252719e+01 1.290334e+01 moveto -4.541171e+01 1.077164e+01 lineto -4.483266e+01 1.038444e+01 lineto -4.186287e+01 1.245911e+01 lineto -4.252719e+01 1.290334e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.98128e+01 1.528559e+01 moveto -4.252719e+01 1.290334e+01 lineto -4.186287e+01 1.245911e+01 lineto -3.906824e+01 1.478771e+01 lineto -3.98128e+01 1.528559e+01 lineto -closepath -gsave -6.466678e-01 6.466678e-01 6.466678e-01 setrgbcolor -fill -grestore -newpath -3.98128e+01 1.528559e+01 moveto -4.252719e+01 1.290334e+01 lineto -4.186287e+01 1.245911e+01 lineto -3.906824e+01 1.478771e+01 lineto -3.98128e+01 1.528559e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.728908e+01 1.790036e+01 moveto -3.98128e+01 1.528559e+01 lineto -3.906824e+01 1.478771e+01 lineto -3.646992e+01 1.73526e+01 lineto -3.728908e+01 1.790036e+01 lineto -closepath -gsave -6.636501e-01 6.636501e-01 6.636501e-01 setrgbcolor -fill -grestore -newpath -3.728908e+01 1.790036e+01 moveto -3.98128e+01 1.528559e+01 lineto -3.906824e+01 1.478771e+01 lineto -3.646992e+01 1.73526e+01 lineto -3.728908e+01 1.790036e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.497516e+01 2.072787e+01 moveto -3.728908e+01 1.790036e+01 lineto -3.646992e+01 1.73526e+01 lineto -3.408759e+01 2.013436e+01 lineto -3.497516e+01 2.072787e+01 lineto -closepath -gsave -6.787394e-01 6.787394e-01 6.787394e-01 setrgbcolor -fill -grestore -newpath -3.497516e+01 2.072787e+01 moveto -3.728908e+01 1.790036e+01 lineto -3.646992e+01 1.73526e+01 lineto -3.408759e+01 2.013436e+01 lineto -3.497516e+01 2.072787e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.288853e+01 2.374669e+01 moveto -3.497516e+01 2.072787e+01 lineto -3.408759e+01 2.013436e+01 lineto -3.193928e+01 2.311194e+01 lineto -3.288853e+01 2.374669e+01 lineto -closepath -gsave -6.915389e-01 6.915389e-01 6.915389e-01 setrgbcolor -fill -grestore -newpath -3.288853e+01 2.374669e+01 moveto -3.497516e+01 2.072787e+01 lineto -3.408759e+01 2.013436e+01 lineto -3.193928e+01 2.311194e+01 lineto -3.288853e+01 2.374669e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.1045e+01 2.693398e+01 moveto -3.288853e+01 2.374669e+01 lineto -3.193928e+01 2.311194e+01 lineto -3.004125e+01 2.626279e+01 lineto -3.1045e+01 2.693398e+01 lineto -closepath -gsave -7.017033e-01 7.017033e-01 7.017033e-01 setrgbcolor -fill -grestore -newpath -3.1045e+01 2.693398e+01 moveto -3.288853e+01 2.374669e+01 lineto -3.193928e+01 2.311194e+01 lineto -3.004125e+01 2.626279e+01 lineto -3.1045e+01 2.693398e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.945852e+01 3.026561e+01 moveto -3.1045e+01 2.693398e+01 lineto -3.004125e+01 2.626279e+01 lineto -2.840788e+01 2.956306e+01 lineto -2.945852e+01 3.026561e+01 lineto -closepath -gsave -7.08954e-01 7.08954e-01 7.08954e-01 setrgbcolor -fill -grestore -newpath -2.945852e+01 3.026561e+01 moveto -3.1045e+01 2.693398e+01 lineto -3.004125e+01 2.626279e+01 lineto -2.840788e+01 2.956306e+01 lineto -2.945852e+01 3.026561e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.814111e+01 3.371635e+01 moveto -2.945852e+01 3.026561e+01 lineto -2.840788e+01 2.956306e+01 lineto -2.705152e+01 3.298776e+01 lineto -2.814111e+01 3.371635e+01 lineto -closepath -gsave -7.130897e-01 7.130897e-01 7.130897e-01 setrgbcolor -fill -grestore -newpath -2.814111e+01 3.371635e+01 moveto -2.945852e+01 3.026561e+01 lineto -2.840788e+01 2.956306e+01 lineto -2.705152e+01 3.298776e+01 lineto -2.814111e+01 3.371635e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.710274e+01 3.726009e+01 moveto -2.814111e+01 3.371635e+01 lineto -2.705152e+01 3.298776e+01 lineto -2.598245e+01 3.651097e+01 lineto -2.710274e+01 3.726009e+01 lineto -closepath -gsave -7.139951e-01 7.139951e-01 7.139951e-01 setrgbcolor -fill -grestore -newpath -2.710274e+01 3.726009e+01 moveto -2.814111e+01 3.371635e+01 lineto -2.705152e+01 3.298776e+01 lineto -2.598245e+01 3.651097e+01 lineto -2.710274e+01 3.726009e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.635127e+01 4.086999e+01 moveto -2.710274e+01 3.726009e+01 lineto -2.598245e+01 3.651097e+01 lineto -2.520877e+01 4.010602e+01 lineto -2.635127e+01 4.086999e+01 lineto -closepath -gsave -7.116454e-01 7.116454e-01 7.116454e-01 setrgbcolor -fill -grestore -newpath -2.635127e+01 4.086999e+01 moveto -2.710274e+01 3.726009e+01 lineto -2.598245e+01 3.651097e+01 lineto -2.520877e+01 4.010602e+01 lineto -2.635127e+01 4.086999e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.589238e+01 4.451873e+01 moveto -2.635127e+01 4.086999e+01 lineto -2.520877e+01 4.010602e+01 lineto -2.473632e+01 4.374569e+01 lineto -2.589238e+01 4.451873e+01 lineto -closepath -gsave -7.061075e-01 7.061075e-01 7.061075e-01 setrgbcolor -fill -grestore -newpath -2.589238e+01 4.451873e+01 moveto -2.635127e+01 4.086999e+01 lineto -2.520877e+01 4.010602e+01 lineto -2.473632e+01 4.374569e+01 lineto -2.589238e+01 4.451873e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.572955e+01 4.817868e+01 moveto -2.589238e+01 4.451873e+01 lineto -2.473632e+01 4.374569e+01 lineto -2.456868e+01 4.740242e+01 lineto -2.572955e+01 4.817868e+01 lineto -closepath -gsave -6.975369e-01 6.975369e-01 6.975369e-01 setrgbcolor -fill -grestore -newpath -2.572955e+01 4.817868e+01 moveto -2.589238e+01 4.451873e+01 lineto -2.473632e+01 4.374569e+01 lineto -2.456868e+01 4.740242e+01 lineto -2.572955e+01 4.817868e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.586403e+01 5.182214e+01 moveto -2.572955e+01 4.817868e+01 lineto -2.456868e+01 4.740242e+01 lineto -2.470712e+01 5.104854e+01 lineto -2.586403e+01 5.182214e+01 lineto -closepath -gsave -6.861716e-01 6.861716e-01 6.861716e-01 setrgbcolor -fill -grestore -newpath -2.586403e+01 5.182214e+01 moveto -2.572955e+01 4.817868e+01 lineto -2.456868e+01 4.740242e+01 lineto -2.470712e+01 5.104854e+01 lineto -2.586403e+01 5.182214e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.629477e+01 5.542152e+01 moveto -2.586403e+01 5.182214e+01 lineto -2.470712e+01 5.104854e+01 lineto -2.51506e+01 5.465643e+01 lineto -2.629477e+01 5.542152e+01 lineto -closepath -gsave -6.723214e-01 6.723214e-01 6.723214e-01 setrgbcolor -fill -grestore -newpath -2.629477e+01 5.542152e+01 moveto -2.586403e+01 5.182214e+01 lineto -2.470712e+01 5.104854e+01 lineto -2.51506e+01 5.465643e+01 lineto -2.629477e+01 5.542152e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.701853e+01 5.894958e+01 moveto -2.629477e+01 5.542152e+01 lineto -2.51506e+01 5.465643e+01 lineto -2.589576e+01 5.81988e+01 lineto -2.701853e+01 5.894958e+01 lineto -closepath -gsave -6.563562e-01 6.563562e-01 6.563562e-01 setrgbcolor -fill -grestore -newpath -2.701853e+01 5.894958e+01 moveto -2.629477e+01 5.542152e+01 lineto -2.51506e+01 5.465643e+01 lineto -2.589576e+01 5.81988e+01 lineto -2.701853e+01 5.894958e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.802983e+01 6.237961e+01 moveto -2.701853e+01 5.894958e+01 lineto -2.589576e+01 5.81988e+01 lineto -2.693696e+01 6.164881e+01 lineto -2.802983e+01 6.237961e+01 lineto -closepath -gsave -6.386902e-01 6.386902e-01 6.386902e-01 setrgbcolor -fill -grestore -newpath -2.802983e+01 6.237961e+01 moveto -2.701853e+01 5.894958e+01 lineto -2.589576e+01 5.81988e+01 lineto -2.693696e+01 6.164881e+01 lineto -2.802983e+01 6.237961e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.932101e+01 6.568563e+01 moveto -2.802983e+01 6.237961e+01 lineto -2.693696e+01 6.164881e+01 lineto -2.82663e+01 6.498036e+01 lineto -2.932101e+01 6.568563e+01 lineto -closepath -gsave -6.197662e-01 6.197662e-01 6.197662e-01 setrgbcolor -fill -grestore -newpath -2.932101e+01 6.568563e+01 moveto -2.802983e+01 6.237961e+01 lineto -2.693696e+01 6.164881e+01 lineto -2.82663e+01 6.498036e+01 lineto -2.932101e+01 6.568563e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.08823e+01 6.884262e+01 moveto -2.932101e+01 6.568563e+01 lineto -2.82663e+01 6.498036e+01 lineto -2.987374e+01 6.816821e+01 lineto -3.08823e+01 6.884262e+01 lineto -closepath -gsave -6.000386e-01 6.000386e-01 6.000386e-01 setrgbcolor -fill -grestore -newpath -3.08823e+01 6.884262e+01 moveto -2.932101e+01 6.568563e+01 lineto -2.82663e+01 6.498036e+01 lineto -2.987374e+01 6.816821e+01 lineto -3.08823e+01 6.884262e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.270187e+01 7.182669e+01 moveto -3.08823e+01 6.884262e+01 lineto -2.987374e+01 6.816821e+01 lineto -3.17471e+01 7.118825e+01 lineto -3.270187e+01 7.182669e+01 lineto -closepath -gsave -5.799564e-01 5.799564e-01 5.799564e-01 setrgbcolor -fill -grestore -newpath -3.270187e+01 7.182669e+01 moveto -3.08823e+01 6.884262e+01 lineto -2.987374e+01 6.816821e+01 lineto -3.17471e+01 7.118825e+01 lineto -3.270187e+01 7.182669e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.476595e+01 7.461523e+01 moveto -3.270187e+01 7.182669e+01 lineto -3.17471e+01 7.118825e+01 lineto -3.38722e+01 7.401759e+01 lineto -3.476595e+01 7.461523e+01 lineto -closepath -gsave -5.599476e-01 5.599476e-01 5.599476e-01 setrgbcolor -fill -grestore -newpath -3.476595e+01 7.461523e+01 moveto -3.270187e+01 7.182669e+01 lineto -3.17471e+01 7.118825e+01 lineto -3.38722e+01 7.401759e+01 lineto -3.476595e+01 7.461523e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.705892e+01 7.718715e+01 moveto -3.476595e+01 7.461523e+01 lineto -3.38722e+01 7.401759e+01 lineto -3.623295e+01 7.663483e+01 lineto -3.705892e+01 7.718715e+01 lineto -closepath -gsave -5.40405e-01 5.40405e-01 5.40405e-01 setrgbcolor -fill -grestore -newpath -3.705892e+01 7.718715e+01 moveto -3.476595e+01 7.461523e+01 lineto -3.38722e+01 7.401759e+01 lineto -3.623295e+01 7.663483e+01 lineto -3.705892e+01 7.718715e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.956341e+01 7.952296e+01 moveto -3.705892e+01 7.718715e+01 lineto -3.623295e+01 7.663483e+01 lineto -3.881148e+01 7.902016e+01 lineto -3.956341e+01 7.952296e+01 lineto -closepath -gsave -5.216747e-01 5.216747e-01 5.216747e-01 setrgbcolor -fill -grestore -newpath -3.956341e+01 7.952296e+01 moveto -3.705892e+01 7.718715e+01 lineto -3.623295e+01 7.663483e+01 lineto -3.881148e+01 7.902016e+01 lineto -3.956341e+01 7.952296e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.226047e+01 8.1605e+01 moveto -3.956341e+01 7.952296e+01 lineto -3.881148e+01 7.902016e+01 lineto -4.158826e+01 8.11555e+01 lineto -4.226047e+01 8.1605e+01 lineto -closepath -gsave -5.040466e-01 5.040466e-01 5.040466e-01 setrgbcolor -fill -grestore -newpath -4.226047e+01 8.1605e+01 moveto -3.956341e+01 7.952296e+01 lineto -3.881148e+01 7.902016e+01 lineto -4.158826e+01 8.11555e+01 lineto -4.226047e+01 8.1605e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.147997e+01 8.703599e+01 moveto -6.808858e+01 8.768483e+01 lineto -6.817989e+01 8.774588e+01 lineto -7.167152e+01 8.716409e+01 lineto -7.147997e+01 8.703599e+01 lineto -closepath -gsave -5.279409e-01 5.279409e-01 5.279409e-01 setrgbcolor -fill -grestore -newpath -7.147997e+01 8.703599e+01 moveto -6.808858e+01 8.768483e+01 lineto -6.817989e+01 8.774588e+01 lineto -7.167152e+01 8.716409e+01 lineto -7.147997e+01 8.703599e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.482229e+01 8.60765e+01 moveto -7.147997e+01 8.703599e+01 lineto -7.167152e+01 8.716409e+01 lineto -7.511265e+01 8.627066e+01 lineto -7.482229e+01 8.60765e+01 lineto -closepath -gsave -5.469985e-01 5.469985e-01 5.469985e-01 setrgbcolor -fill -grestore -newpath -7.482229e+01 8.60765e+01 moveto -7.147997e+01 8.703599e+01 lineto -7.167152e+01 8.716409e+01 lineto -7.511265e+01 8.627066e+01 lineto -7.482229e+01 8.60765e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.809026e+01 8.48136e+01 moveto -7.482229e+01 8.60765e+01 lineto -7.511265e+01 8.627066e+01 lineto -7.847722e+01 8.507236e+01 lineto -7.809026e+01 8.48136e+01 lineto -closepath -gsave -5.667589e-01 5.667589e-01 5.667589e-01 setrgbcolor -fill -grestore -newpath -7.809026e+01 8.48136e+01 moveto -7.482229e+01 8.60765e+01 lineto -7.511265e+01 8.627066e+01 lineto -7.847722e+01 8.507236e+01 lineto -7.809026e+01 8.48136e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.148544e+01 4.296049e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.14062e+01 4.227726e+00 lineto -6.148544e+01 4.296049e+00 lineto -closepath -gsave -5.110732e-01 5.110732e-01 5.110732e-01 setrgbcolor -fill -grestore -newpath -6.148544e+01 4.296049e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.14062e+01 4.227726e+00 lineto -6.148544e+01 4.296049e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.799749e+01 4.907815e+00 moveto -6.148544e+01 4.296049e+00 lineto -6.14062e+01 4.227726e+00 lineto -5.78396e+01 4.771687e+00 lineto -5.799749e+01 4.907815e+00 lineto -closepath -gsave -5.280885e-01 5.280885e-01 5.280885e-01 setrgbcolor -fill -grestore -newpath -5.799749e+01 4.907815e+00 moveto -6.148544e+01 4.296049e+00 lineto -6.14062e+01 4.227726e+00 lineto -5.78396e+01 4.771687e+00 lineto -5.799749e+01 4.907815e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.456255e+01 5.830668e+00 moveto -5.799749e+01 4.907815e+00 lineto -5.78396e+01 4.771687e+00 lineto -5.432722e+01 5.627764e+00 lineto -5.456255e+01 5.830668e+00 lineto -closepath -gsave -5.459008e-01 5.459008e-01 5.459008e-01 setrgbcolor -fill -grestore -newpath -5.456255e+01 5.830668e+00 moveto -5.799749e+01 4.907815e+00 lineto -5.78396e+01 4.771687e+00 lineto -5.432722e+01 5.627764e+00 lineto -5.456255e+01 5.830668e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.120662e+01 7.057619e+00 moveto -5.456255e+01 5.830668e+00 lineto -5.432722e+01 5.627764e+00 lineto -5.089562e+01 6.789476e+00 lineto -5.120662e+01 7.057619e+00 lineto -closepath -gsave -5.64211e-01 5.64211e-01 5.64211e-01 setrgbcolor -fill -grestore -newpath -5.120662e+01 7.057619e+00 moveto -5.456255e+01 5.830668e+00 lineto -5.432722e+01 5.627764e+00 lineto -5.089562e+01 6.789476e+00 lineto -5.120662e+01 7.057619e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.795512e+01 8.579382e+00 moveto -5.120662e+01 7.057619e+00 lineto -5.089562e+01 6.789476e+00 lineto -4.757081e+01 8.24803e+00 lineto -4.795512e+01 8.579382e+00 lineto -closepath -gsave -5.826758e-01 5.826758e-01 5.826758e-01 setrgbcolor -fill -grestore -newpath -4.795512e+01 8.579382e+00 moveto -5.120662e+01 7.057619e+00 lineto -5.089562e+01 6.789476e+00 lineto -4.757081e+01 8.24803e+00 lineto -4.795512e+01 8.579382e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.483266e+01 1.038444e+01 moveto -4.795512e+01 8.579382e+00 lineto -4.757081e+01 8.24803e+00 lineto -4.437794e+01 9.992382e+00 lineto -4.483266e+01 1.038444e+01 lineto -closepath -gsave -6.009174e-01 6.009174e-01 6.009174e-01 setrgbcolor -fill -grestore -newpath -4.483266e+01 1.038444e+01 moveto -4.795512e+01 8.579382e+00 lineto -4.757081e+01 8.24803e+00 lineto -4.437794e+01 9.992382e+00 lineto -4.483266e+01 1.038444e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.186287e+01 1.245911e+01 moveto -4.483266e+01 1.038444e+01 lineto -4.437794e+01 9.992382e+00 lineto -4.134119e+01 1.200933e+01 lineto -4.186287e+01 1.245911e+01 lineto -closepath -gsave -6.185356e-01 6.185356e-01 6.185356e-01 setrgbcolor -fill -grestore -newpath -4.186287e+01 1.245911e+01 moveto -4.483266e+01 1.038444e+01 lineto -4.437794e+01 9.992382e+00 lineto -4.134119e+01 1.200933e+01 lineto -4.186287e+01 1.245911e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.906824e+01 1.478771e+01 moveto -4.186287e+01 1.245911e+01 lineto -4.134119e+01 1.200933e+01 lineto -3.848355e+01 1.42836e+01 lineto -3.906824e+01 1.478771e+01 lineto -closepath -gsave -6.351215e-01 6.351215e-01 6.351215e-01 setrgbcolor -fill -grestore -newpath -3.906824e+01 1.478771e+01 moveto -4.186287e+01 1.245911e+01 lineto -4.134119e+01 1.200933e+01 lineto -3.848355e+01 1.42836e+01 lineto -3.906824e+01 1.478771e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.646992e+01 1.73526e+01 moveto -3.906824e+01 1.478771e+01 lineto -3.848355e+01 1.42836e+01 lineto -3.582665e+01 1.679798e+01 lineto -3.646992e+01 1.73526e+01 lineto -closepath -gsave -6.502722e-01 6.502722e-01 6.502722e-01 setrgbcolor -fill -grestore -newpath -3.646992e+01 1.73526e+01 moveto -3.906824e+01 1.478771e+01 lineto -3.848355e+01 1.42836e+01 lineto -3.582665e+01 1.679798e+01 lineto -3.646992e+01 1.73526e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.408759e+01 2.013436e+01 moveto -3.646992e+01 1.73526e+01 lineto -3.582665e+01 1.679798e+01 lineto -3.339061e+01 1.953342e+01 lineto -3.408759e+01 2.013436e+01 lineto -closepath -gsave -6.636059e-01 6.636059e-01 6.636059e-01 setrgbcolor -fill -grestore -newpath -3.408759e+01 2.013436e+01 moveto -3.646992e+01 1.73526e+01 lineto -3.582665e+01 1.679798e+01 lineto -3.339061e+01 1.953342e+01 lineto -3.408759e+01 2.013436e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.193928e+01 2.311194e+01 moveto -3.408759e+01 2.013436e+01 lineto -3.339061e+01 1.953342e+01 lineto -3.119386e+01 2.246924e+01 lineto -3.193928e+01 2.311194e+01 lineto -closepath -gsave -6.747768e-01 6.747768e-01 6.747768e-01 setrgbcolor -fill -grestore -newpath -3.193928e+01 2.311194e+01 moveto -3.408759e+01 2.013436e+01 lineto -3.339061e+01 1.953342e+01 lineto -3.119386e+01 2.246924e+01 lineto -3.193928e+01 2.311194e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.004125e+01 2.626279e+01 moveto -3.193928e+01 2.311194e+01 lineto -3.119386e+01 2.246924e+01 lineto -2.925304e+01 2.558319e+01 lineto -3.004125e+01 2.626279e+01 lineto -closepath -gsave -6.834887e-01 6.834887e-01 6.834887e-01 setrgbcolor -fill -grestore -newpath -3.004125e+01 2.626279e+01 moveto -3.193928e+01 2.311194e+01 lineto -3.119386e+01 2.246924e+01 lineto -2.925304e+01 2.558319e+01 lineto -3.004125e+01 2.626279e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.840788e+01 2.956306e+01 moveto -3.004125e+01 2.626279e+01 lineto -2.925304e+01 2.558319e+01 lineto -2.758284e+01 2.88517e+01 lineto -2.840788e+01 2.956306e+01 lineto -closepath -gsave -6.895066e-01 6.895066e-01 6.895066e-01 setrgbcolor -fill -grestore -newpath -2.840788e+01 2.956306e+01 moveto -3.004125e+01 2.626279e+01 lineto -2.925304e+01 2.558319e+01 lineto -2.758284e+01 2.88517e+01 lineto -2.840788e+01 2.956306e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.705152e+01 3.298776e+01 moveto -2.840788e+01 2.956306e+01 lineto -2.758284e+01 2.88517e+01 lineto -2.61959e+01 3.225004e+01 lineto -2.705152e+01 3.298776e+01 lineto -closepath -gsave -6.926668e-01 6.926668e-01 6.926668e-01 setrgbcolor -fill -grestore -newpath -2.705152e+01 3.298776e+01 moveto -2.840788e+01 2.956306e+01 lineto -2.758284e+01 2.88517e+01 lineto -2.61959e+01 3.225004e+01 lineto -2.705152e+01 3.298776e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.598245e+01 3.651097e+01 moveto -2.705152e+01 3.298776e+01 lineto -2.61959e+01 3.225004e+01 lineto -2.510273e+01 3.575247e+01 lineto -2.598245e+01 3.651097e+01 lineto -closepath -gsave -6.928828e-01 6.928828e-01 6.928828e-01 setrgbcolor -fill -grestore -newpath -2.598245e+01 3.651097e+01 moveto -2.705152e+01 3.298776e+01 lineto -2.61959e+01 3.225004e+01 lineto -2.510273e+01 3.575247e+01 lineto -2.598245e+01 3.651097e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.520877e+01 4.010602e+01 moveto -2.598245e+01 3.651097e+01 lineto -2.510273e+01 3.575247e+01 lineto -2.431159e+01 3.933248e+01 lineto -2.520877e+01 4.010602e+01 lineto -closepath -gsave -6.901494e-01 6.901494e-01 6.901494e-01 setrgbcolor -fill -grestore -newpath -2.520877e+01 4.010602e+01 moveto -2.598245e+01 3.651097e+01 lineto -2.510273e+01 3.575247e+01 lineto -2.431159e+01 3.933248e+01 lineto -2.520877e+01 4.010602e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.473632e+01 4.374569e+01 moveto -2.520877e+01 4.010602e+01 lineto -2.431159e+01 3.933248e+01 lineto -2.382849e+01 4.296296e+01 lineto -2.473632e+01 4.374569e+01 lineto -closepath -gsave -6.845428e-01 6.845428e-01 6.845428e-01 setrgbcolor -fill -grestore -newpath -2.473632e+01 4.374569e+01 moveto -2.520877e+01 4.010602e+01 lineto -2.431159e+01 3.933248e+01 lineto -2.382849e+01 4.296296e+01 lineto -2.473632e+01 4.374569e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.456868e+01 4.740242e+01 moveto -2.473632e+01 4.374569e+01 lineto -2.382849e+01 4.296296e+01 lineto -2.365707e+01 4.661643e+01 lineto -2.456868e+01 4.740242e+01 lineto -closepath -gsave -6.762168e-01 6.762168e-01 6.762168e-01 setrgbcolor -fill -grestore -newpath -2.456868e+01 4.740242e+01 moveto -2.473632e+01 4.374569e+01 lineto -2.382849e+01 4.296296e+01 lineto -2.365707e+01 4.661643e+01 lineto -2.456868e+01 4.740242e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.470712e+01 5.104854e+01 moveto -2.456868e+01 4.740242e+01 lineto -2.365707e+01 4.661643e+01 lineto -2.379864e+01 5.026524e+01 lineto -2.470712e+01 5.104854e+01 lineto -closepath -gsave -6.653973e-01 6.653973e-01 6.653973e-01 setrgbcolor -fill -grestore -newpath -2.470712e+01 5.104854e+01 moveto -2.456868e+01 4.740242e+01 lineto -2.365707e+01 4.661643e+01 lineto -2.379864e+01 5.026524e+01 lineto -2.470712e+01 5.104854e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.51506e+01 5.465643e+01 moveto -2.470712e+01 5.104854e+01 lineto -2.379864e+01 5.026524e+01 lineto -2.425212e+01 5.388176e+01 lineto -2.51506e+01 5.465643e+01 lineto -closepath -gsave -6.523723e-01 6.523723e-01 6.523723e-01 setrgbcolor -fill -grestore -newpath -2.51506e+01 5.465643e+01 moveto -2.470712e+01 5.104854e+01 lineto -2.379864e+01 5.026524e+01 lineto -2.425212e+01 5.388176e+01 lineto -2.51506e+01 5.465643e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.589576e+01 5.81988e+01 moveto -2.51506e+01 5.465643e+01 lineto -2.425212e+01 5.388176e+01 lineto -2.501408e+01 5.743861e+01 lineto -2.589576e+01 5.81988e+01 lineto -closepath -gsave -6.374808e-01 6.374808e-01 6.374808e-01 setrgbcolor -fill -grestore -newpath -2.589576e+01 5.81988e+01 moveto -2.51506e+01 5.465643e+01 lineto -2.425212e+01 5.388176e+01 lineto -2.501408e+01 5.743861e+01 lineto -2.589576e+01 5.81988e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.693696e+01 6.164881e+01 moveto -2.589576e+01 5.81988e+01 lineto -2.501408e+01 5.743861e+01 lineto -2.607875e+01 6.090887e+01 lineto -2.693696e+01 6.164881e+01 lineto -closepath -gsave -6.210993e-01 6.210993e-01 6.210993e-01 setrgbcolor -fill -grestore -newpath -2.693696e+01 6.164881e+01 moveto -2.589576e+01 5.81988e+01 lineto -2.501408e+01 5.743861e+01 lineto -2.607875e+01 6.090887e+01 lineto -2.693696e+01 6.164881e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.82663e+01 6.498036e+01 moveto -2.693696e+01 6.164881e+01 lineto -2.607875e+01 6.090887e+01 lineto -2.743807e+01 6.426625e+01 lineto -2.82663e+01 6.498036e+01 lineto -closepath -gsave -6.036271e-01 6.036271e-01 6.036271e-01 setrgbcolor -fill -grestore -newpath -2.82663e+01 6.498036e+01 moveto -2.693696e+01 6.164881e+01 lineto -2.607875e+01 6.090887e+01 lineto -2.743807e+01 6.426625e+01 lineto -2.82663e+01 6.498036e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.987374e+01 6.816821e+01 moveto -2.82663e+01 6.498036e+01 lineto -2.743807e+01 6.426625e+01 lineto -2.908175e+01 6.748536e+01 lineto -2.987374e+01 6.816821e+01 lineto -closepath -gsave -5.854717e-01 5.854717e-01 5.854717e-01 setrgbcolor -fill -grestore -newpath -2.987374e+01 6.816821e+01 moveto -2.82663e+01 6.498036e+01 lineto -2.743807e+01 6.426625e+01 lineto -2.908175e+01 6.748536e+01 lineto -2.987374e+01 6.816821e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.17471e+01 7.118825e+01 moveto -2.987374e+01 6.816821e+01 lineto -2.908175e+01 6.748536e+01 lineto -3.099735e+01 7.054181e+01 lineto -3.17471e+01 7.118825e+01 lineto -closepath -gsave -5.670337e-01 5.670337e-01 5.670337e-01 setrgbcolor -fill -grestore -newpath -3.17471e+01 7.118825e+01 moveto -2.987374e+01 6.816821e+01 lineto -2.908175e+01 6.748536e+01 lineto -3.099735e+01 7.054181e+01 lineto -3.17471e+01 7.118825e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.38722e+01 7.401759e+01 moveto -3.17471e+01 7.118825e+01 lineto -3.099735e+01 7.054181e+01 lineto -3.317036e+01 7.341247e+01 lineto -3.38722e+01 7.401759e+01 lineto -closepath -gsave -5.486935e-01 5.486935e-01 5.486935e-01 setrgbcolor -fill -grestore -newpath -3.38722e+01 7.401759e+01 moveto -3.17471e+01 7.118825e+01 lineto -3.099735e+01 7.054181e+01 lineto -3.317036e+01 7.341247e+01 lineto -3.38722e+01 7.401759e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.623295e+01 7.663483e+01 moveto -3.38722e+01 7.401759e+01 lineto -3.317036e+01 7.341247e+01 lineto -3.558434e+01 7.60756e+01 lineto -3.623295e+01 7.663483e+01 lineto -closepath -gsave -5.307991e-01 5.307991e-01 5.307991e-01 setrgbcolor -fill -grestore -newpath -3.623295e+01 7.663483e+01 moveto -3.38722e+01 7.401759e+01 lineto -3.317036e+01 7.341247e+01 lineto -3.558434e+01 7.60756e+01 lineto -3.623295e+01 7.663483e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.881148e+01 7.902016e+01 moveto -3.623295e+01 7.663483e+01 lineto -3.558434e+01 7.60756e+01 lineto -3.8221e+01 7.851105e+01 lineto -3.881148e+01 7.902016e+01 lineto -closepath -gsave -5.136557e-01 5.136557e-01 5.136557e-01 setrgbcolor -fill -grestore -newpath -3.881148e+01 7.902016e+01 moveto -3.623295e+01 7.663483e+01 lineto -3.558434e+01 7.60756e+01 lineto -3.8221e+01 7.851105e+01 lineto -3.881148e+01 7.902016e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.167152e+01 8.716409e+01 moveto -6.817989e+01 8.774588e+01 lineto -6.825158e+01 8.78077e+01 lineto -7.182194e+01 8.729378e+01 lineto -7.167152e+01 8.716409e+01 lineto -closepath -gsave -5.26426e-01 5.26426e-01 5.26426e-01 setrgbcolor -fill -grestore -newpath -7.167152e+01 8.716409e+01 moveto -6.817989e+01 8.774588e+01 lineto -6.825158e+01 8.78077e+01 lineto -7.182194e+01 8.729378e+01 lineto -7.167152e+01 8.716409e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.511265e+01 8.627066e+01 moveto -7.167152e+01 8.716409e+01 lineto -7.182194e+01 8.729378e+01 lineto -7.534066e+01 8.646725e+01 lineto -7.511265e+01 8.627066e+01 lineto -closepath -gsave -5.441744e-01 5.441744e-01 5.441744e-01 setrgbcolor -fill -grestore -newpath -7.511265e+01 8.627066e+01 moveto -7.167152e+01 8.716409e+01 lineto -7.182194e+01 8.729378e+01 lineto -7.534066e+01 8.646725e+01 lineto -7.511265e+01 8.627066e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.847722e+01 8.507236e+01 moveto -7.511265e+01 8.627066e+01 lineto -7.534066e+01 8.646725e+01 lineto -7.878109e+01 8.533436e+01 lineto -7.847722e+01 8.507236e+01 lineto -closepath -gsave -5.624513e-01 5.624513e-01 5.624513e-01 setrgbcolor -fill -grestore -newpath -7.847722e+01 8.507236e+01 moveto -7.511265e+01 8.627066e+01 lineto -7.534066e+01 8.646725e+01 lineto -7.878109e+01 8.533436e+01 lineto -7.847722e+01 8.507236e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.14062e+01 4.227726e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.134911e+01 4.158979e+00 lineto -6.14062e+01 4.227726e+00 lineto -closepath -gsave -5.105286e-01 5.105286e-01 5.105286e-01 setrgbcolor -fill -grestore -newpath -6.14062e+01 4.227726e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.134911e+01 4.158979e+00 lineto -6.14062e+01 4.227726e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.78396e+01 4.771687e+00 moveto -6.14062e+01 4.227726e+00 lineto -6.134911e+01 4.158979e+00 lineto -5.772586e+01 4.634713e+00 lineto -5.78396e+01 4.771687e+00 lineto -closepath -gsave -5.263016e-01 5.263016e-01 5.263016e-01 setrgbcolor -fill -grestore -newpath -5.78396e+01 4.771687e+00 moveto -6.14062e+01 4.227726e+00 lineto -6.134911e+01 4.158979e+00 lineto -5.772586e+01 4.634713e+00 lineto -5.78396e+01 4.771687e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.432722e+01 5.627764e+00 moveto -5.78396e+01 4.771687e+00 lineto -5.772586e+01 4.634713e+00 lineto -5.415768e+01 5.423601e+00 lineto -5.432722e+01 5.627764e+00 lineto -closepath -gsave -5.426778e-01 5.426778e-01 5.426778e-01 setrgbcolor -fill -grestore -newpath -5.432722e+01 5.627764e+00 moveto -5.78396e+01 4.771687e+00 lineto -5.772586e+01 4.634713e+00 lineto -5.415768e+01 5.423601e+00 lineto -5.432722e+01 5.627764e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.089562e+01 6.789476e+00 moveto -5.432722e+01 5.627764e+00 lineto -5.415768e+01 5.423601e+00 lineto -5.067158e+01 6.51967e+00 lineto -5.089562e+01 6.789476e+00 lineto -closepath -gsave -5.593781e-01 5.593781e-01 5.593781e-01 setrgbcolor -fill -grestore -newpath -5.089562e+01 6.789476e+00 moveto -5.432722e+01 5.627764e+00 lineto -5.415768e+01 5.423601e+00 lineto -5.067158e+01 6.51967e+00 lineto -5.089562e+01 6.789476e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.757081e+01 8.24803e+00 moveto -5.089562e+01 6.789476e+00 lineto -5.067158e+01 6.51967e+00 lineto -4.729396e+01 7.914622e+00 lineto -4.757081e+01 8.24803e+00 lineto -closepath -gsave -5.760874e-01 5.760874e-01 5.760874e-01 setrgbcolor -fill -grestore -newpath -4.757081e+01 8.24803e+00 moveto -5.089562e+01 6.789476e+00 lineto -5.067158e+01 6.51967e+00 lineto -4.729396e+01 7.914622e+00 lineto -4.757081e+01 8.24803e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.437794e+01 9.992382e+00 moveto -4.757081e+01 8.24803e+00 lineto -4.729396e+01 7.914622e+00 lineto -4.405037e+01 9.597897e+00 lineto -4.437794e+01 9.992382e+00 lineto -closepath -gsave -5.924643e-01 5.924643e-01 5.924643e-01 setrgbcolor -fill -grestore -newpath -4.437794e+01 9.992382e+00 moveto -4.757081e+01 8.24803e+00 lineto -4.729396e+01 7.914622e+00 lineto -4.405037e+01 9.597897e+00 lineto -4.437794e+01 9.992382e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.134119e+01 1.200933e+01 moveto -4.437794e+01 9.992382e+00 lineto -4.405037e+01 9.597897e+00 lineto -4.096539e+01 1.155675e+01 lineto -4.134119e+01 1.200933e+01 lineto -closepath -gsave -6.081517e-01 6.081517e-01 6.081517e-01 setrgbcolor -fill -grestore -newpath -4.134119e+01 1.200933e+01 moveto -4.437794e+01 9.992382e+00 lineto -4.405037e+01 9.597897e+00 lineto -4.096539e+01 1.155675e+01 lineto -4.134119e+01 1.200933e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.848355e+01 1.42836e+01 moveto -4.134119e+01 1.200933e+01 lineto -4.096539e+01 1.155675e+01 lineto -3.806235e+01 1.377636e+01 lineto -3.848355e+01 1.42836e+01 lineto -closepath -gsave -6.227892e-01 6.227892e-01 6.227892e-01 setrgbcolor -fill -grestore -newpath -3.848355e+01 1.42836e+01 moveto -4.134119e+01 1.200933e+01 lineto -4.096539e+01 1.155675e+01 lineto -3.806235e+01 1.377636e+01 lineto -3.848355e+01 1.42836e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.582665e+01 1.679798e+01 moveto -3.848355e+01 1.42836e+01 lineto -3.806235e+01 1.377636e+01 lineto -3.536325e+01 1.623991e+01 lineto -3.582665e+01 1.679798e+01 lineto -closepath -gsave -6.360258e-01 6.360258e-01 6.360258e-01 setrgbcolor -fill -grestore -newpath -3.582665e+01 1.679798e+01 moveto -3.848355e+01 1.42836e+01 lineto -3.806235e+01 1.377636e+01 lineto -3.536325e+01 1.623991e+01 lineto -3.582665e+01 1.679798e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.339061e+01 1.953342e+01 moveto -3.582665e+01 1.679798e+01 lineto -3.536325e+01 1.623991e+01 lineto -3.288851e+01 1.892876e+01 lineto -3.339061e+01 1.953342e+01 lineto -closepath -gsave -6.475331e-01 6.475331e-01 6.475331e-01 setrgbcolor -fill -grestore -newpath -3.339061e+01 1.953342e+01 moveto -3.582665e+01 1.679798e+01 lineto -3.536325e+01 1.623991e+01 lineto -3.288851e+01 1.892876e+01 lineto -3.339061e+01 1.953342e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.119386e+01 2.246924e+01 moveto -3.339061e+01 1.953342e+01 lineto -3.288851e+01 1.892876e+01 lineto -3.065686e+01 2.182255e+01 lineto -3.119386e+01 2.246924e+01 lineto -closepath -gsave -6.570176e-01 6.570176e-01 6.570176e-01 setrgbcolor -fill -grestore -newpath -3.119386e+01 2.246924e+01 moveto -3.339061e+01 1.953342e+01 lineto -3.288851e+01 1.892876e+01 lineto -3.065686e+01 2.182255e+01 lineto -3.119386e+01 2.246924e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.925304e+01 2.558319e+01 moveto -3.119386e+01 2.246924e+01 lineto -3.065686e+01 2.182255e+01 lineto -2.868521e+01 2.489938e+01 lineto -2.925304e+01 2.558319e+01 lineto -closepath -gsave -6.642327e-01 6.642327e-01 6.642327e-01 setrgbcolor -fill -grestore -newpath -2.925304e+01 2.558319e+01 moveto -3.119386e+01 2.246924e+01 lineto -3.065686e+01 2.182255e+01 lineto -2.868521e+01 2.489938e+01 lineto -2.925304e+01 2.558319e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.758284e+01 2.88517e+01 moveto -2.925304e+01 2.558319e+01 lineto -2.868521e+01 2.489938e+01 lineto -2.698848e+01 2.813594e+01 lineto -2.758284e+01 2.88517e+01 lineto -closepath -gsave -6.689878e-01 6.689878e-01 6.689878e-01 setrgbcolor -fill -grestore -newpath -2.758284e+01 2.88517e+01 moveto -2.925304e+01 2.558319e+01 lineto -2.868521e+01 2.489938e+01 lineto -2.698848e+01 2.813594e+01 lineto -2.758284e+01 2.88517e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.61959e+01 3.225004e+01 moveto -2.758284e+01 2.88517e+01 lineto -2.698848e+01 2.813594e+01 lineto -2.557952e+01 3.150775e+01 lineto -2.61959e+01 3.225004e+01 lineto -closepath -gsave -6.711563e-01 6.711563e-01 6.711563e-01 setrgbcolor -fill -grestore -newpath -2.61959e+01 3.225004e+01 moveto -2.758284e+01 2.88517e+01 lineto -2.698848e+01 2.813594e+01 lineto -2.557952e+01 3.150775e+01 lineto -2.61959e+01 3.225004e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.510273e+01 3.575247e+01 moveto -2.61959e+01 3.225004e+01 lineto -2.557952e+01 3.150775e+01 lineto -2.446898e+01 3.498926e+01 lineto -2.510273e+01 3.575247e+01 lineto -closepath -gsave -6.706806e-01 6.706806e-01 6.706806e-01 setrgbcolor -fill -grestore -newpath -2.510273e+01 3.575247e+01 moveto -2.61959e+01 3.225004e+01 lineto -2.557952e+01 3.150775e+01 lineto -2.446898e+01 3.498926e+01 lineto -2.510273e+01 3.575247e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.431159e+01 3.933248e+01 moveto -2.510273e+01 3.575247e+01 lineto -2.446898e+01 3.498926e+01 lineto -2.366528e+01 3.855414e+01 lineto -2.431159e+01 3.933248e+01 lineto -closepath -gsave -6.675741e-01 6.675741e-01 6.675741e-01 setrgbcolor -fill -grestore -newpath -2.431159e+01 3.933248e+01 moveto -2.510273e+01 3.575247e+01 lineto -2.446898e+01 3.498926e+01 lineto -2.366528e+01 3.855414e+01 lineto -2.431159e+01 3.933248e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.382849e+01 4.296296e+01 moveto -2.431159e+01 3.933248e+01 lineto -2.366528e+01 3.855414e+01 lineto -2.31745e+01 4.217538e+01 lineto -2.382849e+01 4.296296e+01 lineto -closepath -gsave -6.619211e-01 6.619211e-01 6.619211e-01 setrgbcolor -fill -grestore -newpath -2.382849e+01 4.296296e+01 moveto -2.431159e+01 3.933248e+01 lineto -2.366528e+01 3.855414e+01 lineto -2.31745e+01 4.217538e+01 lineto -2.382849e+01 4.296296e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.365707e+01 4.661643e+01 moveto -2.382849e+01 4.296296e+01 lineto -2.31745e+01 4.217538e+01 lineto -2.300036e+01 4.582557e+01 lineto -2.365707e+01 4.661643e+01 lineto -closepath -gsave -6.538726e-01 6.538726e-01 6.538726e-01 setrgbcolor -fill -grestore -newpath -2.365707e+01 4.661643e+01 moveto -2.382849e+01 4.296296e+01 lineto -2.31745e+01 4.217538e+01 lineto -2.300036e+01 4.582557e+01 lineto -2.365707e+01 4.661643e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.379864e+01 5.026524e+01 moveto -2.365707e+01 4.661643e+01 lineto -2.300036e+01 4.582557e+01 lineto -2.314418e+01 4.947709e+01 lineto -2.379864e+01 5.026524e+01 lineto -closepath -gsave -6.43641e-01 6.43641e-01 6.43641e-01 setrgbcolor -fill -grestore -newpath -2.379864e+01 5.026524e+01 moveto -2.365707e+01 4.661643e+01 lineto -2.300036e+01 4.582557e+01 lineto -2.314418e+01 4.947709e+01 lineto -2.379864e+01 5.026524e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.425212e+01 5.388176e+01 moveto -2.379864e+01 5.026524e+01 lineto -2.314418e+01 4.947709e+01 lineto -2.360486e+01 5.310228e+01 lineto -2.425212e+01 5.388176e+01 lineto -closepath -gsave -6.314909e-01 6.314909e-01 6.314909e-01 setrgbcolor -fill -grestore -newpath -2.425212e+01 5.388176e+01 moveto -2.379864e+01 5.026524e+01 lineto -2.314418e+01 4.947709e+01 lineto -2.360486e+01 5.310228e+01 lineto -2.425212e+01 5.388176e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.501408e+01 5.743861e+01 moveto -2.425212e+01 5.388176e+01 lineto -2.360486e+01 5.310228e+01 lineto -2.437892e+01 5.667371e+01 lineto -2.501408e+01 5.743861e+01 lineto -closepath -gsave -6.177291e-01 6.177291e-01 6.177291e-01 setrgbcolor -fill -grestore -newpath -2.501408e+01 5.743861e+01 moveto -2.425212e+01 5.388176e+01 lineto -2.360486e+01 5.310228e+01 lineto -2.437892e+01 5.667371e+01 lineto -2.501408e+01 5.743861e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.607875e+01 6.090887e+01 moveto -2.501408e+01 5.743861e+01 lineto -2.437892e+01 5.667371e+01 lineto -2.54605e+01 6.016433e+01 lineto -2.607875e+01 6.090887e+01 lineto -closepath -gsave -6.026927e-01 6.026927e-01 6.026927e-01 setrgbcolor -fill -grestore -newpath -2.607875e+01 6.090887e+01 moveto -2.501408e+01 5.743861e+01 lineto -2.437892e+01 5.667371e+01 lineto -2.54605e+01 6.016433e+01 lineto -2.607875e+01 6.090887e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.743807e+01 6.426625e+01 moveto -2.607875e+01 6.090887e+01 lineto -2.54605e+01 6.016433e+01 lineto -2.684142e+01 6.354772e+01 lineto -2.743807e+01 6.426625e+01 lineto -closepath -gsave -5.867362e-01 5.867362e-01 5.867362e-01 setrgbcolor -fill -grestore -newpath -2.743807e+01 6.426625e+01 moveto -2.607875e+01 6.090887e+01 lineto -2.54605e+01 6.016433e+01 lineto -2.684142e+01 6.354772e+01 lineto -2.743807e+01 6.426625e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.908175e+01 6.748536e+01 moveto -2.743807e+01 6.426625e+01 lineto -2.684142e+01 6.354772e+01 lineto -2.851121e+01 6.679827e+01 lineto -2.908175e+01 6.748536e+01 lineto -closepath -gsave -5.702188e-01 5.702188e-01 5.702188e-01 setrgbcolor -fill -grestore -newpath -2.908175e+01 6.748536e+01 moveto -2.743807e+01 6.426625e+01 lineto -2.684142e+01 6.354772e+01 lineto -2.851121e+01 6.679827e+01 lineto -2.908175e+01 6.748536e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.099735e+01 7.054181e+01 moveto -2.908175e+01 6.748536e+01 lineto -2.851121e+01 6.679827e+01 lineto -3.045723e+01 6.989136e+01 lineto -3.099735e+01 7.054181e+01 lineto -closepath -gsave -5.534918e-01 5.534918e-01 5.534918e-01 setrgbcolor -fill -grestore -newpath -3.099735e+01 7.054181e+01 moveto -2.908175e+01 6.748536e+01 lineto -2.851121e+01 6.679827e+01 lineto -3.045723e+01 6.989136e+01 lineto -3.099735e+01 7.054181e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.317036e+01 7.341247e+01 moveto -3.099735e+01 7.054181e+01 lineto -3.045723e+01 6.989136e+01 lineto -3.266476e+01 7.280359e+01 lineto -3.317036e+01 7.341247e+01 lineto -closepath -gsave -5.36887e-01 5.36887e-01 5.36887e-01 setrgbcolor -fill -grestore -newpath -3.317036e+01 7.341247e+01 moveto -3.099735e+01 7.054181e+01 lineto -3.045723e+01 6.989136e+01 lineto -3.266476e+01 7.280359e+01 lineto -3.317036e+01 7.341247e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.182194e+01 8.729378e+01 moveto -6.825158e+01 8.78077e+01 lineto -6.830323e+01 8.78699e+01 lineto -7.193031e+01 8.742428e+01 lineto -7.182194e+01 8.729378e+01 lineto -closepath -gsave -5.247662e-01 5.247662e-01 5.247662e-01 setrgbcolor -fill -grestore -newpath -7.182194e+01 8.729378e+01 moveto -6.825158e+01 8.78077e+01 lineto -6.830323e+01 8.78699e+01 lineto -7.193031e+01 8.742428e+01 lineto -7.182194e+01 8.729378e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.534066e+01 8.646725e+01 moveto -7.182194e+01 8.729378e+01 lineto -7.193031e+01 8.742428e+01 lineto -7.550492e+01 8.666506e+01 lineto -7.534066e+01 8.646725e+01 lineto -closepath -gsave -5.410963e-01 5.410963e-01 5.410963e-01 setrgbcolor -fill -grestore -newpath -7.534066e+01 8.646725e+01 moveto -7.182194e+01 8.729378e+01 lineto -7.193031e+01 8.742428e+01 lineto -7.550492e+01 8.666506e+01 lineto -7.534066e+01 8.646725e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.878109e+01 8.533436e+01 moveto -7.534066e+01 8.646725e+01 lineto -7.550492e+01 8.666506e+01 lineto -7.9e+01 8.559798e+01 lineto -7.878109e+01 8.533436e+01 lineto -closepath -gsave -5.577787e-01 5.577787e-01 5.577787e-01 setrgbcolor -fill -grestore -newpath -7.878109e+01 8.533436e+01 moveto -7.534066e+01 8.646725e+01 lineto -7.550492e+01 8.666506e+01 lineto -7.9e+01 8.559798e+01 lineto -7.878109e+01 8.533436e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.134911e+01 4.158979e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.131454e+01 4.090232e+00 lineto -6.134911e+01 4.158979e+00 lineto -closepath -gsave -5.099375e-01 5.099375e-01 5.099375e-01 setrgbcolor -fill -grestore -newpath -6.134911e+01 4.158979e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.131454e+01 4.090232e+00 lineto -6.134911e+01 4.158979e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.772586e+01 4.634713e+00 moveto -6.134911e+01 4.158979e+00 lineto -6.131454e+01 4.090232e+00 lineto -5.765697e+01 4.49774e+00 lineto -5.772586e+01 4.634713e+00 lineto -closepath -gsave -5.24375e-01 5.24375e-01 5.24375e-01 setrgbcolor -fill -grestore -newpath -5.772586e+01 4.634713e+00 moveto -6.134911e+01 4.158979e+00 lineto -6.131454e+01 4.090232e+00 lineto -5.765697e+01 4.49774e+00 lineto -5.772586e+01 4.634713e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.415768e+01 5.423601e+00 moveto -5.772586e+01 4.634713e+00 lineto -5.765697e+01 4.49774e+00 lineto -5.4055e+01 5.219438e+00 lineto -5.415768e+01 5.423601e+00 lineto -closepath -gsave -5.392231e-01 5.392231e-01 5.392231e-01 setrgbcolor -fill -grestore -newpath -5.415768e+01 5.423601e+00 moveto -5.772586e+01 4.634713e+00 lineto -5.765697e+01 4.49774e+00 lineto -5.4055e+01 5.219438e+00 lineto -5.415768e+01 5.423601e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.067158e+01 6.51967e+00 moveto -5.415768e+01 5.423601e+00 lineto -5.4055e+01 5.219438e+00 lineto -5.053588e+01 6.249863e+00 lineto -5.067158e+01 6.51967e+00 lineto -closepath -gsave -5.542249e-01 5.542249e-01 5.542249e-01 setrgbcolor -fill -grestore -newpath -5.067158e+01 6.51967e+00 moveto -5.415768e+01 5.423601e+00 lineto -5.4055e+01 5.219438e+00 lineto -5.053588e+01 6.249863e+00 lineto -5.067158e+01 6.51967e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.729396e+01 7.914622e+00 moveto -5.067158e+01 6.51967e+00 lineto -5.053588e+01 6.249863e+00 lineto -4.712627e+01 7.581214e+00 lineto -4.729396e+01 7.914622e+00 lineto -closepath -gsave -5.690963e-01 5.690963e-01 5.690963e-01 setrgbcolor -fill -grestore -newpath -4.729396e+01 7.914622e+00 moveto -5.067158e+01 6.51967e+00 lineto -5.053588e+01 6.249863e+00 lineto -4.712627e+01 7.581214e+00 lineto -4.729396e+01 7.914622e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.405037e+01 9.597897e+00 moveto -4.729396e+01 7.914622e+00 lineto -4.712627e+01 7.581214e+00 lineto -4.385196e+01 9.203411e+00 lineto -4.405037e+01 9.597897e+00 lineto -closepath -gsave -5.83534e-01 5.83534e-01 5.83534e-01 setrgbcolor -fill -grestore -newpath -4.405037e+01 9.597897e+00 moveto -4.729396e+01 7.914622e+00 lineto -4.712627e+01 7.581214e+00 lineto -4.385196e+01 9.203411e+00 lineto -4.405037e+01 9.597897e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.096539e+01 1.155675e+01 moveto -4.405037e+01 9.597897e+00 lineto -4.385196e+01 9.203411e+00 lineto -4.073776e+01 1.110418e+01 lineto -4.096539e+01 1.155675e+01 lineto -closepath -gsave -5.972259e-01 5.972259e-01 5.972259e-01 setrgbcolor -fill -grestore -newpath -4.096539e+01 1.155675e+01 moveto -4.405037e+01 9.597897e+00 lineto -4.385196e+01 9.203411e+00 lineto -4.073776e+01 1.110418e+01 lineto -4.096539e+01 1.155675e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.806235e+01 1.377636e+01 moveto -4.096539e+01 1.155675e+01 lineto -4.073776e+01 1.110418e+01 lineto -3.780723e+01 1.326912e+01 lineto -3.806235e+01 1.377636e+01 lineto -closepath -gsave -6.09861e-01 6.09861e-01 6.09861e-01 setrgbcolor -fill -grestore -newpath -3.806235e+01 1.377636e+01 moveto -4.096539e+01 1.155675e+01 lineto -4.073776e+01 1.110418e+01 lineto -3.780723e+01 1.326912e+01 lineto -3.806235e+01 1.377636e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.536325e+01 1.623991e+01 moveto -3.806235e+01 1.377636e+01 lineto -3.780723e+01 1.326912e+01 lineto -3.508257e+01 1.568184e+01 lineto -3.536325e+01 1.623991e+01 lineto -closepath -gsave -6.211411e-01 6.211411e-01 6.211411e-01 setrgbcolor -fill -grestore -newpath -3.536325e+01 1.623991e+01 moveto -3.806235e+01 1.377636e+01 lineto -3.780723e+01 1.326912e+01 lineto -3.508257e+01 1.568184e+01 lineto -3.536325e+01 1.623991e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.288851e+01 1.892876e+01 moveto -3.536325e+01 1.623991e+01 lineto -3.508257e+01 1.568184e+01 lineto -3.258439e+01 1.832409e+01 lineto -3.288851e+01 1.892876e+01 lineto -closepath -gsave -6.307912e-01 6.307912e-01 6.307912e-01 setrgbcolor -fill -grestore -newpath -3.288851e+01 1.892876e+01 moveto -3.536325e+01 1.623991e+01 lineto -3.508257e+01 1.568184e+01 lineto -3.258439e+01 1.832409e+01 lineto -3.288851e+01 1.892876e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.065686e+01 2.182255e+01 moveto -3.288851e+01 1.892876e+01 lineto -3.258439e+01 1.832409e+01 lineto -3.033161e+01 2.117586e+01 lineto -3.065686e+01 2.182255e+01 lineto -closepath -gsave -6.385705e-01 6.385705e-01 6.385705e-01 setrgbcolor -fill -grestore -newpath -3.065686e+01 2.182255e+01 moveto -3.288851e+01 1.892876e+01 lineto -3.258439e+01 1.832409e+01 lineto -3.033161e+01 2.117586e+01 lineto -3.065686e+01 2.182255e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.868521e+01 2.489938e+01 moveto -3.065686e+01 2.182255e+01 lineto -3.033161e+01 2.117586e+01 lineto -2.834129e+01 2.421556e+01 lineto -2.868521e+01 2.489938e+01 lineto -closepath -gsave -6.442811e-01 6.442811e-01 6.442811e-01 setrgbcolor -fill -grestore -newpath -2.868521e+01 2.489938e+01 moveto -3.065686e+01 2.182255e+01 lineto -3.033161e+01 2.117586e+01 lineto -2.834129e+01 2.421556e+01 lineto -2.868521e+01 2.489938e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.698848e+01 2.813594e+01 moveto -2.868521e+01 2.489938e+01 lineto -2.834129e+01 2.421556e+01 lineto -2.662848e+01 2.742018e+01 lineto -2.698848e+01 2.813594e+01 lineto -closepath -gsave -6.477758e-01 6.477758e-01 6.477758e-01 setrgbcolor -fill -grestore -newpath -2.698848e+01 2.813594e+01 moveto -2.868521e+01 2.489938e+01 lineto -2.834129e+01 2.421556e+01 lineto -2.662848e+01 2.742018e+01 lineto -2.698848e+01 2.813594e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.557952e+01 3.150775e+01 moveto -2.698848e+01 2.813594e+01 lineto -2.662848e+01 2.742018e+01 lineto -2.520617e+01 3.076545e+01 lineto -2.557952e+01 3.150775e+01 lineto -closepath -gsave -6.489641e-01 6.489641e-01 6.489641e-01 setrgbcolor -fill -grestore -newpath -2.557952e+01 3.150775e+01 moveto -2.698848e+01 2.813594e+01 lineto -2.662848e+01 2.742018e+01 lineto -2.520617e+01 3.076545e+01 lineto -2.557952e+01 3.150775e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.446898e+01 3.498926e+01 moveto -2.557952e+01 3.150775e+01 lineto -2.520617e+01 3.076545e+01 lineto -2.408512e+01 3.422606e+01 lineto -2.446898e+01 3.498926e+01 lineto -closepath -gsave -6.478155e-01 6.478155e-01 6.478155e-01 setrgbcolor -fill -grestore -newpath -2.446898e+01 3.498926e+01 moveto -2.557952e+01 3.150775e+01 lineto -2.520617e+01 3.076545e+01 lineto -2.408512e+01 3.422606e+01 lineto -2.446898e+01 3.498926e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.366528e+01 3.855414e+01 moveto -2.446898e+01 3.498926e+01 lineto -2.408512e+01 3.422606e+01 lineto -2.327381e+01 3.77758e+01 lineto -2.366528e+01 3.855414e+01 lineto -closepath -gsave -6.443608e-01 6.443608e-01 6.443608e-01 setrgbcolor -fill -grestore -newpath -2.366528e+01 3.855414e+01 moveto -2.446898e+01 3.498926e+01 lineto -2.408512e+01 3.422606e+01 lineto -2.327381e+01 3.77758e+01 lineto -2.366528e+01 3.855414e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.31745e+01 4.217538e+01 moveto -2.366528e+01 3.855414e+01 lineto -2.327381e+01 3.77758e+01 lineto -2.277838e+01 4.13878e+01 lineto -2.31745e+01 4.217538e+01 lineto -closepath -gsave -6.386906e-01 6.386906e-01 6.386906e-01 setrgbcolor -fill -grestore -newpath -2.31745e+01 4.217538e+01 moveto -2.366528e+01 3.855414e+01 lineto -2.327381e+01 3.77758e+01 lineto -2.277838e+01 4.13878e+01 lineto -2.31745e+01 4.217538e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.300036e+01 4.582557e+01 moveto -2.31745e+01 4.217538e+01 lineto -2.277838e+01 4.13878e+01 lineto -2.260259e+01 4.503471e+01 lineto -2.300036e+01 4.582557e+01 lineto -closepath -gsave -6.30952e-01 6.30952e-01 6.30952e-01 setrgbcolor -fill -grestore -newpath -2.300036e+01 4.582557e+01 moveto -2.31745e+01 4.217538e+01 lineto -2.277838e+01 4.13878e+01 lineto -2.260259e+01 4.503471e+01 lineto -2.300036e+01 4.582557e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.314418e+01 4.947709e+01 moveto -2.300036e+01 4.582557e+01 lineto -2.260259e+01 4.503471e+01 lineto -2.274777e+01 4.868894e+01 lineto -2.314418e+01 4.947709e+01 lineto -closepath -gsave -6.213423e-01 6.213423e-01 6.213423e-01 setrgbcolor -fill -grestore -newpath -2.314418e+01 4.947709e+01 moveto -2.300036e+01 4.582557e+01 lineto -2.260259e+01 4.503471e+01 lineto -2.274777e+01 4.868894e+01 lineto -2.314418e+01 4.947709e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.360486e+01 5.310228e+01 moveto -2.314418e+01 4.947709e+01 lineto -2.274777e+01 4.868894e+01 lineto -2.321282e+01 5.232281e+01 lineto -2.360486e+01 5.310228e+01 lineto -closepath -gsave -6.101017e-01 6.101017e-01 6.101017e-01 setrgbcolor -fill -grestore -newpath -2.360486e+01 5.310228e+01 moveto -2.314418e+01 4.947709e+01 lineto -2.274777e+01 4.868894e+01 lineto -2.321282e+01 5.232281e+01 lineto -2.360486e+01 5.310228e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.437892e+01 5.667371e+01 moveto -2.360486e+01 5.310228e+01 lineto -2.321282e+01 5.232281e+01 lineto -2.399421e+01 5.590881e+01 lineto -2.437892e+01 5.667371e+01 lineto -closepath -gsave -5.975039e-01 5.975039e-01 5.975039e-01 setrgbcolor -fill -grestore -newpath -2.437892e+01 5.667371e+01 moveto -2.360486e+01 5.310228e+01 lineto -2.321282e+01 5.232281e+01 lineto -2.399421e+01 5.590881e+01 lineto -2.437892e+01 5.667371e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.54605e+01 6.016433e+01 moveto -2.437892e+01 5.667371e+01 lineto -2.399421e+01 5.590881e+01 lineto -2.508603e+01 5.941979e+01 lineto -2.54605e+01 6.016433e+01 lineto -closepath -gsave -5.83846e-01 5.83846e-01 5.83846e-01 setrgbcolor -fill -grestore -newpath -2.54605e+01 6.016433e+01 moveto -2.437892e+01 5.667371e+01 lineto -2.399421e+01 5.590881e+01 lineto -2.508603e+01 5.941979e+01 lineto -2.54605e+01 6.016433e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.684142e+01 6.354772e+01 moveto -2.54605e+01 6.016433e+01 lineto -2.508603e+01 5.941979e+01 lineto -2.648002e+01 6.282919e+01 lineto -2.684142e+01 6.354772e+01 lineto -closepath -gsave -5.694373e-01 5.694373e-01 5.694373e-01 setrgbcolor -fill -grestore -newpath -2.684142e+01 6.354772e+01 moveto -2.54605e+01 6.016433e+01 lineto -2.508603e+01 5.941979e+01 lineto -2.648002e+01 6.282919e+01 lineto -2.684142e+01 6.354772e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.193031e+01 8.742428e+01 moveto -6.830323e+01 8.78699e+01 lineto -6.833452e+01 8.79321e+01 lineto -7.199594e+01 8.755478e+01 lineto -7.193031e+01 8.742428e+01 lineto -closepath -gsave -5.229756e-01 5.229756e-01 5.229756e-01 setrgbcolor -fill -grestore -newpath -7.193031e+01 8.742428e+01 moveto -6.830323e+01 8.78699e+01 lineto -6.833452e+01 8.79321e+01 lineto -7.199594e+01 8.755478e+01 lineto -7.193031e+01 8.742428e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.550492e+01 8.666506e+01 moveto -7.193031e+01 8.742428e+01 lineto -7.199594e+01 8.755478e+01 lineto -7.560441e+01 8.686286e+01 lineto -7.550492e+01 8.666506e+01 lineto -closepath -gsave -5.377951e-01 5.377951e-01 5.377951e-01 setrgbcolor -fill -grestore -newpath -7.550492e+01 8.666506e+01 moveto -7.193031e+01 8.742428e+01 lineto -7.199594e+01 8.755478e+01 lineto -7.560441e+01 8.686286e+01 lineto -7.550492e+01 8.666506e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.9e+01 8.559798e+01 moveto -7.550492e+01 8.666506e+01 lineto -7.560441e+01 8.686286e+01 lineto -7.913259e+01 8.58616e+01 lineto -7.9e+01 8.559798e+01 lineto -closepath -gsave -5.527942e-01 5.527942e-01 5.527942e-01 setrgbcolor -fill -grestore -newpath -7.9e+01 8.559798e+01 moveto -7.550492e+01 8.666506e+01 lineto -7.560441e+01 8.686286e+01 lineto -7.913259e+01 8.58616e+01 lineto -7.9e+01 8.559798e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.131454e+01 4.090232e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.130268e+01 4.021909e+00 lineto -6.131454e+01 4.090232e+00 lineto -closepath -gsave -5.093043e-01 5.093043e-01 5.093043e-01 setrgbcolor -fill -grestore -newpath -6.131454e+01 4.090232e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.130268e+01 4.021909e+00 lineto -6.131454e+01 4.090232e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.765697e+01 4.49774e+00 moveto -6.131454e+01 4.090232e+00 lineto -6.130268e+01 4.021909e+00 lineto -5.763335e+01 4.361611e+00 lineto -5.765697e+01 4.49774e+00 lineto -closepath -gsave -5.223251e-01 5.223251e-01 5.223251e-01 setrgbcolor -fill -grestore -newpath -5.765697e+01 4.49774e+00 moveto -6.131454e+01 4.090232e+00 lineto -6.130268e+01 4.021909e+00 lineto -5.763335e+01 4.361611e+00 lineto -5.765697e+01 4.49774e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.4055e+01 5.219438e+00 moveto -5.765697e+01 4.49774e+00 lineto -5.763335e+01 4.361611e+00 lineto -5.401979e+01 5.016534e+00 lineto -5.4055e+01 5.219438e+00 lineto -closepath -gsave -5.355706e-01 5.355706e-01 5.355706e-01 setrgbcolor -fill -grestore -newpath -5.4055e+01 5.219438e+00 moveto -5.765697e+01 4.49774e+00 lineto -5.763335e+01 4.361611e+00 lineto -5.401979e+01 5.016534e+00 lineto -5.4055e+01 5.219438e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.053588e+01 6.249863e+00 moveto -5.4055e+01 5.219438e+00 lineto -5.401979e+01 5.016534e+00 lineto -5.048936e+01 5.98172e+00 lineto -5.053588e+01 6.249863e+00 lineto -closepath -gsave -5.488086e-01 5.488086e-01 5.488086e-01 setrgbcolor -fill -grestore -newpath -5.053588e+01 6.249863e+00 moveto -5.4055e+01 5.219438e+00 lineto -5.401979e+01 5.016534e+00 lineto -5.048936e+01 5.98172e+00 lineto -5.053588e+01 6.249863e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.712627e+01 7.581214e+00 moveto -5.053588e+01 6.249863e+00 lineto -5.048936e+01 5.98172e+00 lineto -4.706877e+01 7.249861e+00 lineto -4.712627e+01 7.581214e+00 lineto -closepath -gsave -5.617874e-01 5.617874e-01 5.617874e-01 setrgbcolor -fill -grestore -newpath -4.712627e+01 7.581214e+00 moveto -5.053588e+01 6.249863e+00 lineto -5.048936e+01 5.98172e+00 lineto -4.706877e+01 7.249861e+00 lineto -4.712627e+01 7.581214e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.385196e+01 9.203411e+00 moveto -4.712627e+01 7.581214e+00 lineto -4.706877e+01 7.249861e+00 lineto -4.378394e+01 8.811358e+00 lineto -4.385196e+01 9.203411e+00 lineto -closepath -gsave -5.742436e-01 5.742436e-01 5.742436e-01 setrgbcolor -fill -grestore -newpath -4.385196e+01 9.203411e+00 moveto -4.712627e+01 7.581214e+00 lineto -4.706877e+01 7.249861e+00 lineto -4.378394e+01 8.811358e+00 lineto -4.385196e+01 9.203411e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.073776e+01 1.110418e+01 moveto -4.385196e+01 9.203411e+00 lineto -4.378394e+01 8.811358e+00 lineto -4.065972e+01 1.065439e+01 lineto -4.073776e+01 1.110418e+01 lineto -closepath -gsave -5.859106e-01 5.859106e-01 5.859106e-01 setrgbcolor -fill -grestore -newpath -4.073776e+01 1.110418e+01 moveto -4.385196e+01 9.203411e+00 lineto -4.378394e+01 8.811358e+00 lineto -4.065972e+01 1.065439e+01 lineto -4.073776e+01 1.110418e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.780723e+01 1.326912e+01 moveto -4.073776e+01 1.110418e+01 lineto -4.065972e+01 1.065439e+01 lineto -3.771976e+01 1.2765e+01 lineto -3.780723e+01 1.326912e+01 lineto -closepath -gsave -5.965272e-01 5.965272e-01 5.965272e-01 setrgbcolor -fill -grestore -newpath -3.780723e+01 1.326912e+01 moveto -4.073776e+01 1.110418e+01 lineto -4.065972e+01 1.065439e+01 lineto -3.771976e+01 1.2765e+01 lineto -3.780723e+01 1.326912e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.508257e+01 1.568184e+01 moveto -3.780723e+01 1.326912e+01 lineto -3.771976e+01 1.2765e+01 lineto -3.498633e+01 1.512722e+01 lineto -3.508257e+01 1.568184e+01 lineto -closepath -gsave -6.058474e-01 6.058474e-01 6.058474e-01 setrgbcolor -fill -grestore -newpath -3.508257e+01 1.568184e+01 moveto -3.780723e+01 1.326912e+01 lineto -3.771976e+01 1.2765e+01 lineto -3.498633e+01 1.512722e+01 lineto -3.508257e+01 1.568184e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.258439e+01 1.832409e+01 moveto -3.508257e+01 1.568184e+01 lineto -3.498633e+01 1.512722e+01 lineto -3.248012e+01 1.772316e+01 lineto -3.258439e+01 1.832409e+01 lineto -closepath -gsave -6.136489e-01 6.136489e-01 6.136489e-01 setrgbcolor -fill -grestore -newpath -3.258439e+01 1.832409e+01 moveto -3.508257e+01 1.568184e+01 lineto -3.498633e+01 1.512722e+01 lineto -3.248012e+01 1.772316e+01 lineto -3.258439e+01 1.832409e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.033161e+01 2.117586e+01 moveto -3.258439e+01 1.832409e+01 lineto -3.248012e+01 1.772316e+01 lineto -3.022009e+01 2.053316e+01 lineto -3.033161e+01 2.117586e+01 lineto -closepath -gsave -6.197417e-01 6.197417e-01 6.197417e-01 setrgbcolor -fill -grestore -newpath -3.033161e+01 2.117586e+01 moveto -3.258439e+01 1.832409e+01 lineto -3.248012e+01 1.772316e+01 lineto -3.022009e+01 2.053316e+01 lineto -3.033161e+01 2.117586e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.834129e+01 2.421556e+01 moveto -3.033161e+01 2.117586e+01 lineto -3.022009e+01 2.053316e+01 lineto -2.822337e+01 2.353596e+01 lineto -2.834129e+01 2.421556e+01 lineto -closepath -gsave -6.239748e-01 6.239748e-01 6.239748e-01 setrgbcolor -fill -grestore -newpath -2.834129e+01 2.421556e+01 moveto -3.033161e+01 2.117586e+01 lineto -3.022009e+01 2.053316e+01 lineto -2.822337e+01 2.353596e+01 lineto -2.834129e+01 2.421556e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.662848e+01 2.742018e+01 moveto -2.834129e+01 2.421556e+01 lineto -2.822337e+01 2.353596e+01 lineto -2.650506e+01 2.670883e+01 lineto -2.662848e+01 2.742018e+01 lineto -closepath -gsave -6.262423e-01 6.262423e-01 6.262423e-01 setrgbcolor -fill -grestore -newpath -2.662848e+01 2.742018e+01 moveto -2.834129e+01 2.421556e+01 lineto -2.822337e+01 2.353596e+01 lineto -2.650506e+01 2.670883e+01 lineto -2.662848e+01 2.742018e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.520617e+01 3.076545e+01 moveto -2.662848e+01 2.742018e+01 lineto -2.650506e+01 2.670883e+01 lineto -2.507817e+01 3.002773e+01 lineto -2.520617e+01 3.076545e+01 lineto -closepath -gsave -6.264875e-01 6.264875e-01 6.264875e-01 setrgbcolor -fill -grestore -newpath -2.520617e+01 3.076545e+01 moveto -2.662848e+01 2.742018e+01 lineto -2.650506e+01 2.670883e+01 lineto -2.507817e+01 3.002773e+01 lineto -2.520617e+01 3.076545e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.408512e+01 3.422606e+01 moveto -2.520617e+01 3.076545e+01 lineto -2.507817e+01 3.002773e+01 lineto -2.395351e+01 3.346755e+01 lineto -2.408512e+01 3.422606e+01 lineto -closepath -gsave -6.247048e-01 6.247048e-01 6.247048e-01 setrgbcolor -fill -grestore -newpath -2.408512e+01 3.422606e+01 moveto -2.520617e+01 3.076545e+01 lineto -2.507817e+01 3.002773e+01 lineto -2.395351e+01 3.346755e+01 lineto -2.408512e+01 3.422606e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.327381e+01 3.77758e+01 moveto -2.408512e+01 3.422606e+01 lineto -2.395351e+01 3.346755e+01 lineto -2.313959e+01 3.700225e+01 lineto -2.327381e+01 3.77758e+01 lineto -closepath -gsave -6.209398e-01 6.209398e-01 6.209398e-01 setrgbcolor -fill -grestore -newpath -2.327381e+01 3.77758e+01 moveto -2.408512e+01 3.422606e+01 lineto -2.395351e+01 3.346755e+01 lineto -2.313959e+01 3.700225e+01 lineto -2.327381e+01 3.77758e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.277838e+01 4.13878e+01 moveto -2.327381e+01 3.77758e+01 lineto -2.313959e+01 3.700225e+01 lineto -2.264257e+01 4.060507e+01 lineto -2.277838e+01 4.13878e+01 lineto -closepath -gsave -6.152879e-01 6.152879e-01 6.152879e-01 setrgbcolor -fill -grestore -newpath -2.277838e+01 4.13878e+01 moveto -2.327381e+01 3.77758e+01 lineto -2.313959e+01 3.700225e+01 lineto -2.264257e+01 4.060507e+01 lineto -2.277838e+01 4.13878e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.260259e+01 4.503471e+01 moveto -2.277838e+01 4.13878e+01 lineto -2.264257e+01 4.060507e+01 lineto -2.246622e+01 4.424873e+01 lineto -2.260259e+01 4.503471e+01 lineto -closepath -gsave -6.078902e-01 6.078902e-01 6.078902e-01 setrgbcolor -fill -grestore -newpath -2.260259e+01 4.503471e+01 moveto -2.277838e+01 4.13878e+01 lineto -2.264257e+01 4.060507e+01 lineto -2.246622e+01 4.424873e+01 lineto -2.260259e+01 4.503471e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.274777e+01 4.868894e+01 moveto -2.260259e+01 4.503471e+01 lineto -2.246622e+01 4.424873e+01 lineto -2.261186e+01 4.790564e+01 lineto -2.274777e+01 4.868894e+01 lineto -closepath -gsave -5.98928e-01 5.98928e-01 5.98928e-01 setrgbcolor -fill -grestore -newpath -2.274777e+01 4.868894e+01 moveto -2.260259e+01 4.503471e+01 lineto -2.246622e+01 4.424873e+01 lineto -2.261186e+01 4.790564e+01 lineto -2.274777e+01 4.868894e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.321282e+01 5.232281e+01 moveto -2.274777e+01 4.868894e+01 lineto -2.261186e+01 4.790564e+01 lineto -2.30784e+01 5.154813e+01 lineto -2.321282e+01 5.232281e+01 lineto -closepath -gsave -5.886164e-01 5.886164e-01 5.886164e-01 setrgbcolor -fill -grestore -newpath -2.321282e+01 5.232281e+01 moveto -2.274777e+01 4.868894e+01 lineto -2.261186e+01 4.790564e+01 lineto -2.30784e+01 5.154813e+01 lineto -2.321282e+01 5.232281e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.199594e+01 8.755478e+01 moveto -6.833452e+01 8.79321e+01 lineto -6.834524e+01 8.799392e+01 lineto -7.201845e+01 8.768447e+01 lineto -7.199594e+01 8.755478e+01 lineto -closepath -gsave -5.210693e-01 5.210693e-01 5.210693e-01 setrgbcolor -fill -grestore -newpath -7.199594e+01 8.755478e+01 moveto -6.833452e+01 8.79321e+01 lineto -6.834524e+01 8.799392e+01 lineto -7.201845e+01 8.768447e+01 lineto -7.199594e+01 8.755478e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.560441e+01 8.686286e+01 moveto -7.199594e+01 8.755478e+01 lineto -7.201845e+01 8.768447e+01 lineto -7.563852e+01 8.705945e+01 lineto -7.560441e+01 8.686286e+01 lineto -closepath -gsave -5.34303e-01 5.34303e-01 5.34303e-01 setrgbcolor -fill -grestore -newpath -7.560441e+01 8.686286e+01 moveto -7.199594e+01 8.755478e+01 lineto -7.201845e+01 8.768447e+01 lineto -7.563852e+01 8.705945e+01 lineto -7.560441e+01 8.686286e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.913259e+01 8.58616e+01 moveto -7.560441e+01 8.686286e+01 lineto -7.563852e+01 8.705945e+01 lineto -7.917805e+01 8.61236e+01 lineto -7.913259e+01 8.58616e+01 lineto -closepath -gsave -5.475524e-01 5.475524e-01 5.475524e-01 setrgbcolor -fill -grestore -newpath -7.913259e+01 8.58616e+01 moveto -7.560441e+01 8.686286e+01 lineto -7.563852e+01 8.705945e+01 lineto -7.917805e+01 8.61236e+01 lineto -7.913259e+01 8.58616e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.130268e+01 4.021909e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.131362e+01 3.954431e+00 lineto -6.130268e+01 4.021909e+00 lineto -closepath -gsave -5.086333e-01 5.086333e-01 5.086333e-01 setrgbcolor -fill -grestore -newpath -6.130268e+01 4.021909e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.131362e+01 3.954431e+00 lineto -6.130268e+01 4.021909e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.763335e+01 4.361611e+00 moveto -6.130268e+01 4.021909e+00 lineto -6.131362e+01 3.954431e+00 lineto -5.765515e+01 4.227166e+00 lineto -5.763335e+01 4.361611e+00 lineto -closepath -gsave -5.20169e-01 5.20169e-01 5.20169e-01 setrgbcolor -fill -grestore -newpath -5.763335e+01 4.361611e+00 moveto -6.130268e+01 4.021909e+00 lineto -6.131362e+01 3.954431e+00 lineto -5.765515e+01 4.227166e+00 lineto -5.763335e+01 4.361611e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.401979e+01 5.016534e+00 moveto -5.763335e+01 4.361611e+00 lineto -5.765515e+01 4.227166e+00 lineto -5.405228e+01 4.81614e+00 lineto -5.401979e+01 5.016534e+00 lineto -closepath -gsave -5.317554e-01 5.317554e-01 5.317554e-01 setrgbcolor -fill -grestore -newpath -5.401979e+01 5.016534e+00 moveto -5.763335e+01 4.361611e+00 lineto -5.765515e+01 4.227166e+00 lineto -5.405228e+01 4.81614e+00 lineto -5.401979e+01 5.016534e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.048936e+01 5.98172e+00 moveto -5.401979e+01 5.016534e+00 lineto -5.405228e+01 4.81614e+00 lineto -5.053229e+01 5.716893e+00 lineto -5.048936e+01 5.98172e+00 lineto -closepath -gsave -5.431869e-01 5.431869e-01 5.431869e-01 setrgbcolor -fill -grestore -newpath -5.048936e+01 5.98172e+00 moveto -5.401979e+01 5.016534e+00 lineto -5.405228e+01 4.81614e+00 lineto -5.053229e+01 5.716893e+00 lineto -5.048936e+01 5.98172e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.706877e+01 7.249861e+00 moveto -5.048936e+01 5.98172e+00 lineto -5.053229e+01 5.716893e+00 lineto -4.712183e+01 6.922607e+00 lineto -4.706877e+01 7.249861e+00 lineto -closepath -gsave -5.542459e-01 5.542459e-01 5.542459e-01 setrgbcolor -fill -grestore -newpath -4.706877e+01 7.249861e+00 moveto -5.048936e+01 5.98172e+00 lineto -5.053229e+01 5.716893e+00 lineto -4.712183e+01 6.922607e+00 lineto -4.706877e+01 7.249861e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.378394e+01 8.811358e+00 moveto -4.706877e+01 7.249861e+00 lineto -4.712183e+01 6.922607e+00 lineto -4.384672e+01 8.424154e+00 lineto -4.378394e+01 8.811358e+00 lineto -closepath -gsave -5.647094e-01 5.647094e-01 5.647094e-01 setrgbcolor -fill -grestore -newpath -4.378394e+01 8.811358e+00 moveto -4.706877e+01 7.249861e+00 lineto -4.712183e+01 6.922607e+00 lineto -4.384672e+01 8.424154e+00 lineto -4.378394e+01 8.811358e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.065972e+01 1.065439e+01 moveto -4.378394e+01 8.811358e+00 lineto -4.384672e+01 8.424154e+00 lineto -4.073174e+01 1.021017e+01 lineto -4.065972e+01 1.065439e+01 lineto -closepath -gsave -5.743562e-01 5.743562e-01 5.743562e-01 setrgbcolor -fill -grestore -newpath -4.065972e+01 1.065439e+01 moveto -4.378394e+01 8.811358e+00 lineto -4.384672e+01 8.424154e+00 lineto -4.073174e+01 1.021017e+01 lineto -4.065972e+01 1.065439e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.771976e+01 1.2765e+01 moveto -4.065972e+01 1.065439e+01 lineto -4.073174e+01 1.021017e+01 lineto -3.780049e+01 1.226712e+01 lineto -3.771976e+01 1.2765e+01 lineto -closepath -gsave -5.829743e-01 5.829743e-01 5.829743e-01 setrgbcolor -fill -grestore -newpath -3.771976e+01 1.2765e+01 moveto -4.065972e+01 1.065439e+01 lineto -4.073174e+01 1.021017e+01 lineto -3.780049e+01 1.226712e+01 lineto -3.771976e+01 1.2765e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.498633e+01 1.512722e+01 moveto -3.771976e+01 1.2765e+01 lineto -3.780049e+01 1.226712e+01 lineto -3.507514e+01 1.457946e+01 lineto -3.498633e+01 1.512722e+01 lineto -closepath -gsave -5.903682e-01 5.903682e-01 5.903682e-01 setrgbcolor -fill -grestore -newpath -3.498633e+01 1.512722e+01 moveto -3.771976e+01 1.2765e+01 lineto -3.780049e+01 1.226712e+01 lineto -3.507514e+01 1.457946e+01 lineto -3.498633e+01 1.512722e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.248012e+01 1.772316e+01 moveto -3.498633e+01 1.512722e+01 lineto -3.507514e+01 1.457946e+01 lineto -3.257635e+01 1.712965e+01 lineto -3.248012e+01 1.772316e+01 lineto -closepath -gsave -5.963661e-01 5.963661e-01 5.963661e-01 setrgbcolor -fill -grestore -newpath -3.248012e+01 1.772316e+01 moveto -3.498633e+01 1.512722e+01 lineto -3.507514e+01 1.457946e+01 lineto -3.257635e+01 1.712965e+01 lineto -3.248012e+01 1.772316e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.022009e+01 2.053316e+01 moveto -3.248012e+01 1.772316e+01 lineto -3.257635e+01 1.712965e+01 lineto -3.032301e+01 1.989841e+01 lineto -3.022009e+01 2.053316e+01 lineto -closepath -gsave -6.008259e-01 6.008259e-01 6.008259e-01 setrgbcolor -fill -grestore -newpath -3.022009e+01 2.053316e+01 moveto -3.248012e+01 1.772316e+01 lineto -3.257635e+01 1.712965e+01 lineto -3.032301e+01 1.989841e+01 lineto -3.022009e+01 2.053316e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.822337e+01 2.353596e+01 moveto -3.022009e+01 2.053316e+01 lineto -3.032301e+01 1.989841e+01 lineto -2.833219e+01 2.286477e+01 lineto -2.822337e+01 2.353596e+01 lineto -closepath -gsave -6.036406e-01 6.036406e-01 6.036406e-01 setrgbcolor -fill -grestore -newpath -2.822337e+01 2.353596e+01 moveto -3.022009e+01 2.053316e+01 lineto -3.032301e+01 1.989841e+01 lineto -2.833219e+01 2.286477e+01 lineto -2.822337e+01 2.353596e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.650506e+01 2.670883e+01 moveto -2.822337e+01 2.353596e+01 lineto -2.833219e+01 2.286477e+01 lineto -2.661897e+01 2.600627e+01 lineto -2.650506e+01 2.670883e+01 lineto -closepath -gsave -6.047424e-01 6.047424e-01 6.047424e-01 setrgbcolor -fill -grestore -newpath -2.650506e+01 2.670883e+01 moveto -2.822337e+01 2.353596e+01 lineto -2.833219e+01 2.286477e+01 lineto -2.661897e+01 2.600627e+01 lineto -2.650506e+01 2.670883e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.507817e+01 3.002773e+01 moveto -2.650506e+01 2.670883e+01 lineto -2.661897e+01 2.600627e+01 lineto -2.51963e+01 2.929914e+01 lineto -2.507817e+01 3.002773e+01 lineto -closepath -gsave -6.041049e-01 6.041049e-01 6.041049e-01 setrgbcolor -fill -grestore -newpath -2.507817e+01 3.002773e+01 moveto -2.650506e+01 2.670883e+01 lineto -2.661897e+01 2.600627e+01 lineto -2.51963e+01 2.929914e+01 lineto -2.507817e+01 3.002773e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.395351e+01 3.346755e+01 moveto -2.507817e+01 3.002773e+01 lineto -2.51963e+01 2.929914e+01 lineto -2.407497e+01 3.271844e+01 lineto -2.395351e+01 3.346755e+01 lineto -closepath -gsave -6.017442e-01 6.017442e-01 6.017442e-01 setrgbcolor -fill -grestore -newpath -2.395351e+01 3.346755e+01 moveto -2.507817e+01 3.002773e+01 lineto -2.51963e+01 2.929914e+01 lineto -2.407497e+01 3.271844e+01 lineto -2.395351e+01 3.346755e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.313959e+01 3.700225e+01 moveto -2.395351e+01 3.346755e+01 lineto -2.407497e+01 3.271844e+01 lineto -2.326346e+01 3.623828e+01 lineto -2.313959e+01 3.700225e+01 lineto -closepath -gsave -5.977183e-01 5.977183e-01 5.977183e-01 setrgbcolor -fill -grestore -newpath -2.313959e+01 3.700225e+01 moveto -2.395351e+01 3.346755e+01 lineto -2.407497e+01 3.271844e+01 lineto -2.326346e+01 3.623828e+01 lineto -2.313959e+01 3.700225e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.201845e+01 8.768447e+01 moveto -6.834524e+01 8.799392e+01 lineto -6.833534e+01 8.805497e+01 lineto -7.199768e+01 8.781256e+01 lineto -7.201845e+01 8.768447e+01 lineto -closepath -gsave -5.190628e-01 5.190628e-01 5.190628e-01 setrgbcolor -fill -grestore -newpath -7.201845e+01 8.768447e+01 moveto -6.834524e+01 8.799392e+01 lineto -6.833534e+01 8.805497e+01 lineto -7.199768e+01 8.781256e+01 lineto -7.201845e+01 8.768447e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.563852e+01 8.705945e+01 moveto -7.201845e+01 8.768447e+01 lineto -7.199768e+01 8.781256e+01 lineto -7.560704e+01 8.725361e+01 lineto -7.563852e+01 8.705945e+01 lineto -closepath -gsave -5.30653e-01 5.30653e-01 5.30653e-01 setrgbcolor -fill -grestore -newpath -7.563852e+01 8.705945e+01 moveto -7.201845e+01 8.768447e+01 lineto -7.199768e+01 8.781256e+01 lineto -7.560704e+01 8.725361e+01 lineto -7.563852e+01 8.705945e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.917805e+01 8.61236e+01 moveto -7.563852e+01 8.705945e+01 lineto -7.560704e+01 8.725361e+01 lineto -7.91361e+01 8.638236e+01 lineto -7.917805e+01 8.61236e+01 lineto -closepath -gsave -5.421085e-01 5.421085e-01 5.421085e-01 setrgbcolor -fill -grestore -newpath -7.917805e+01 8.61236e+01 moveto -7.563852e+01 8.705945e+01 lineto -7.560704e+01 8.725361e+01 lineto -7.91361e+01 8.638236e+01 lineto -7.917805e+01 8.61236e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.131362e+01 3.954431e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.134729e+01 3.888215e+00 lineto -6.131362e+01 3.954431e+00 lineto -closepath -gsave -5.079291e-01 5.079291e-01 5.079291e-01 setrgbcolor -fill -grestore -newpath -6.131362e+01 3.954431e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.134729e+01 3.888215e+00 lineto -6.131362e+01 3.954431e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.765515e+01 4.227166e+00 moveto -6.131362e+01 3.954431e+00 lineto -6.134729e+01 3.888215e+00 lineto -5.772223e+01 4.095234e+00 lineto -5.765515e+01 4.227166e+00 lineto -closepath -gsave -5.179243e-01 5.179243e-01 5.179243e-01 setrgbcolor -fill -grestore -newpath -5.765515e+01 4.227166e+00 moveto -6.131362e+01 3.954431e+00 lineto -6.134729e+01 3.888215e+00 lineto -5.772223e+01 4.095234e+00 lineto -5.765515e+01 4.227166e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.405228e+01 4.81614e+00 moveto -5.765515e+01 4.227166e+00 lineto -5.772223e+01 4.095234e+00 lineto -5.415227e+01 4.61949e+00 lineto -5.405228e+01 4.81614e+00 lineto -closepath -gsave -5.278127e-01 5.278127e-01 5.278127e-01 setrgbcolor -fill -grestore -newpath -5.405228e+01 4.81614e+00 moveto -5.765515e+01 4.227166e+00 lineto -5.772223e+01 4.095234e+00 lineto -5.415227e+01 4.61949e+00 lineto -5.405228e+01 4.81614e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.053229e+01 5.716893e+00 moveto -5.405228e+01 4.81614e+00 lineto -5.415227e+01 4.61949e+00 lineto -5.066443e+01 5.457016e+00 lineto -5.053229e+01 5.716893e+00 lineto -closepath -gsave -5.374172e-01 5.374172e-01 5.374172e-01 setrgbcolor -fill -grestore -newpath -5.053229e+01 5.716893e+00 moveto -5.405228e+01 4.81614e+00 lineto -5.415227e+01 4.61949e+00 lineto -5.066443e+01 5.457016e+00 lineto -5.053229e+01 5.716893e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.712183e+01 6.922607e+00 moveto -5.053229e+01 5.716893e+00 lineto -5.066443e+01 5.457016e+00 lineto -4.728512e+01 6.601469e+00 lineto -4.712183e+01 6.922607e+00 lineto -closepath -gsave -5.465553e-01 5.465553e-01 5.465553e-01 setrgbcolor -fill -grestore -newpath -4.712183e+01 6.922607e+00 moveto -5.053229e+01 5.716893e+00 lineto -5.066443e+01 5.457016e+00 lineto -4.728512e+01 6.601469e+00 lineto -4.712183e+01 6.922607e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.384672e+01 8.424154e+00 moveto -4.712183e+01 6.922607e+00 lineto -4.728512e+01 6.601469e+00 lineto -4.403991e+01 8.044187e+00 lineto -4.384672e+01 8.424154e+00 lineto -closepath -gsave -5.550444e-01 5.550444e-01 5.550444e-01 setrgbcolor -fill -grestore -newpath -4.384672e+01 8.424154e+00 moveto -4.712183e+01 6.922607e+00 lineto -4.728512e+01 6.601469e+00 lineto -4.403991e+01 8.044187e+00 lineto -4.384672e+01 8.424154e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.073174e+01 1.021017e+01 moveto -4.384672e+01 8.424154e+00 lineto -4.403991e+01 8.044187e+00 lineto -4.095339e+01 9.774247e+00 lineto -4.073174e+01 1.021017e+01 lineto -closepath -gsave -5.627078e-01 5.627078e-01 5.627078e-01 setrgbcolor -fill -grestore -newpath -4.073174e+01 1.021017e+01 moveto -4.384672e+01 8.424154e+00 lineto -4.403991e+01 8.044187e+00 lineto -4.095339e+01 9.774247e+00 lineto -4.073174e+01 1.021017e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.780049e+01 1.226712e+01 moveto -4.073174e+01 1.021017e+01 lineto -4.095339e+01 9.774247e+00 lineto -3.80489e+01 1.177855e+01 lineto -3.780049e+01 1.226712e+01 lineto -closepath -gsave -5.693807e-01 5.693807e-01 5.693807e-01 setrgbcolor -fill -grestore -newpath -3.780049e+01 1.226712e+01 moveto -4.073174e+01 1.021017e+01 lineto -4.095339e+01 9.774247e+00 lineto -3.80489e+01 1.177855e+01 lineto -3.780049e+01 1.226712e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.507514e+01 1.457946e+01 moveto -3.780049e+01 1.226712e+01 lineto -3.80489e+01 1.177855e+01 lineto -3.534845e+01 1.404193e+01 lineto -3.507514e+01 1.457946e+01 lineto -closepath -gsave -5.749156e-01 5.749156e-01 5.749156e-01 setrgbcolor -fill -grestore -newpath -3.507514e+01 1.457946e+01 moveto -3.780049e+01 1.226712e+01 lineto -3.80489e+01 1.177855e+01 lineto -3.534845e+01 1.404193e+01 lineto -3.507514e+01 1.457946e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.257635e+01 1.712965e+01 moveto -3.507514e+01 1.457946e+01 lineto -3.534845e+01 1.404193e+01 lineto -3.287248e+01 1.654724e+01 lineto -3.257635e+01 1.712965e+01 lineto -closepath -gsave -5.791878e-01 5.791878e-01 5.791878e-01 setrgbcolor -fill -grestore -newpath -3.257635e+01 1.712965e+01 moveto -3.507514e+01 1.457946e+01 lineto -3.534845e+01 1.404193e+01 lineto -3.287248e+01 1.654724e+01 lineto -3.257635e+01 1.712965e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.032301e+01 1.989841e+01 moveto -3.257635e+01 1.712965e+01 lineto -3.287248e+01 1.654724e+01 lineto -3.063972e+01 1.927552e+01 lineto -3.032301e+01 1.989841e+01 lineto -closepath -gsave -5.820994e-01 5.820994e-01 5.820994e-01 setrgbcolor -fill -grestore -newpath -3.032301e+01 1.989841e+01 moveto -3.257635e+01 1.712965e+01 lineto -3.287248e+01 1.654724e+01 lineto -3.063972e+01 1.927552e+01 lineto -3.032301e+01 1.989841e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.833219e+01 2.286477e+01 moveto -3.032301e+01 1.989841e+01 lineto -3.063972e+01 1.927552e+01 lineto -2.866709e+01 2.220612e+01 lineto -2.833219e+01 2.286477e+01 lineto -closepath -gsave -5.835833e-01 5.835833e-01 5.835833e-01 setrgbcolor -fill -grestore -newpath -2.833219e+01 2.286477e+01 moveto -3.032301e+01 1.989841e+01 lineto -3.063972e+01 1.927552e+01 lineto -2.866709e+01 2.220612e+01 lineto -2.833219e+01 2.286477e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.661897e+01 2.600627e+01 moveto -2.833219e+01 2.286477e+01 lineto -2.866709e+01 2.220612e+01 lineto -2.696951e+01 2.531685e+01 lineto -2.661897e+01 2.600627e+01 lineto -closepath -gsave -5.836053e-01 5.836053e-01 5.836053e-01 setrgbcolor -fill -grestore -newpath -2.661897e+01 2.600627e+01 moveto -2.833219e+01 2.286477e+01 lineto -2.866709e+01 2.220612e+01 lineto -2.696951e+01 2.531685e+01 lineto -2.661897e+01 2.600627e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.199768e+01 8.781256e+01 moveto -6.833534e+01 8.805497e+01 lineto -6.830488e+01 8.811488e+01 lineto -7.193377e+01 8.793826e+01 lineto -7.199768e+01 8.781256e+01 lineto -closepath -gsave -5.169723e-01 5.169723e-01 5.169723e-01 setrgbcolor -fill -grestore -newpath -7.199768e+01 8.781256e+01 moveto -6.833534e+01 8.805497e+01 lineto -6.830488e+01 8.811488e+01 lineto -7.193377e+01 8.793826e+01 lineto -7.199768e+01 8.781256e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.560704e+01 8.725361e+01 moveto -7.199768e+01 8.781256e+01 lineto -7.193377e+01 8.793826e+01 lineto -7.551016e+01 8.744414e+01 lineto -7.560704e+01 8.725361e+01 lineto -closepath -gsave -5.268784e-01 5.268784e-01 5.268784e-01 setrgbcolor -fill -grestore -newpath -7.560704e+01 8.725361e+01 moveto -7.199768e+01 8.781256e+01 lineto -7.193377e+01 8.793826e+01 lineto -7.551016e+01 8.744414e+01 lineto -7.560704e+01 8.725361e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.91361e+01 8.638236e+01 moveto -7.560704e+01 8.725361e+01 lineto -7.551016e+01 8.744414e+01 lineto -7.900699e+01 8.663628e+01 lineto -7.91361e+01 8.638236e+01 lineto -closepath -gsave -5.365178e-01 5.365178e-01 5.365178e-01 setrgbcolor -fill -grestore -newpath -7.91361e+01 8.638236e+01 moveto -7.560704e+01 8.725361e+01 lineto -7.551016e+01 8.744414e+01 lineto -7.900699e+01 8.663628e+01 lineto -7.91361e+01 8.638236e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.134729e+01 3.888215e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.140348e+01 3.823667e+00 lineto -6.134729e+01 3.888215e+00 lineto -closepath -gsave -5.071964e-01 5.071964e-01 5.071964e-01 setrgbcolor -fill -grestore -newpath -6.134729e+01 3.888215e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.140348e+01 3.823667e+00 lineto -6.134729e+01 3.888215e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.772223e+01 4.095234e+00 moveto -6.134729e+01 3.888215e+00 lineto -6.140348e+01 3.823667e+00 lineto -5.783418e+01 3.966627e+00 lineto -5.772223e+01 4.095234e+00 lineto -closepath -gsave -5.156086e-01 5.156086e-01 5.156086e-01 setrgbcolor -fill -grestore -newpath -5.772223e+01 4.095234e+00 moveto -6.134729e+01 3.888215e+00 lineto -6.140348e+01 3.823667e+00 lineto -5.783418e+01 3.966627e+00 lineto -5.772223e+01 4.095234e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.415227e+01 4.61949e+00 moveto -5.772223e+01 4.095234e+00 lineto -5.783418e+01 3.966627e+00 lineto -5.431914e+01 4.427799e+00 lineto -5.415227e+01 4.61949e+00 lineto -closepath -gsave -5.237774e-01 5.237774e-01 5.237774e-01 setrgbcolor -fill -grestore -newpath -5.415227e+01 4.61949e+00 moveto -5.772223e+01 4.095234e+00 lineto -5.783418e+01 3.966627e+00 lineto -5.431914e+01 4.427799e+00 lineto -5.415227e+01 4.61949e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.066443e+01 5.457016e+00 moveto -5.415227e+01 4.61949e+00 lineto -5.431914e+01 4.427799e+00 lineto -5.088495e+01 5.20369e+00 lineto -5.066443e+01 5.457016e+00 lineto -closepath -gsave -5.315557e-01 5.315557e-01 5.315557e-01 setrgbcolor -fill -grestore -newpath -5.066443e+01 5.457016e+00 moveto -5.415227e+01 4.61949e+00 lineto -5.431914e+01 4.427799e+00 lineto -5.088495e+01 5.20369e+00 lineto -5.066443e+01 5.457016e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.728512e+01 6.601469e+00 moveto -5.066443e+01 5.457016e+00 lineto -5.088495e+01 5.20369e+00 lineto -4.755762e+01 6.288427e+00 lineto -4.728512e+01 6.601469e+00 lineto -closepath -gsave -5.387964e-01 5.387964e-01 5.387964e-01 setrgbcolor -fill -grestore -newpath -4.728512e+01 6.601469e+00 moveto -5.066443e+01 5.457016e+00 lineto -5.088495e+01 5.20369e+00 lineto -4.755762e+01 6.288427e+00 lineto -4.728512e+01 6.601469e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.403991e+01 8.044187e+00 moveto -4.728512e+01 6.601469e+00 lineto -4.755762e+01 6.288427e+00 lineto -4.436234e+01 7.673799e+00 lineto -4.403991e+01 8.044187e+00 lineto -closepath -gsave -5.453564e-01 5.453564e-01 5.453564e-01 setrgbcolor -fill -grestore -newpath -4.403991e+01 8.044187e+00 moveto -4.728512e+01 6.601469e+00 lineto -4.755762e+01 6.288427e+00 lineto -4.436234e+01 7.673799e+00 lineto -4.403991e+01 8.044187e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.095339e+01 9.774247e+00 moveto -4.403991e+01 8.044187e+00 lineto -4.436234e+01 7.673799e+00 lineto -4.132329e+01 9.349316e+00 lineto -4.095339e+01 9.774247e+00 lineto -closepath -gsave -5.511021e-01 5.511021e-01 5.511021e-01 setrgbcolor -fill -grestore -newpath -4.095339e+01 9.774247e+00 moveto -4.403991e+01 8.044187e+00 lineto -4.436234e+01 7.673799e+00 lineto -4.132329e+01 9.349316e+00 lineto -4.095339e+01 9.774247e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.80489e+01 1.177855e+01 moveto -4.095339e+01 9.774247e+00 lineto -4.132329e+01 9.349316e+00 lineto -3.846348e+01 1.13023e+01 lineto -3.80489e+01 1.177855e+01 lineto -closepath -gsave -5.559129e-01 5.559129e-01 5.559129e-01 setrgbcolor -fill -grestore -newpath -3.80489e+01 1.177855e+01 moveto -4.095339e+01 9.774247e+00 lineto -4.132329e+01 9.349316e+00 lineto -3.846348e+01 1.13023e+01 lineto -3.80489e+01 1.177855e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.534845e+01 1.404193e+01 moveto -3.80489e+01 1.177855e+01 lineto -3.846348e+01 1.13023e+01 lineto -3.580457e+01 1.351795e+01 lineto -3.534845e+01 1.404193e+01 lineto -closepath -gsave -5.596859e-01 5.596859e-01 5.596859e-01 setrgbcolor -fill -grestore -newpath -3.534845e+01 1.404193e+01 moveto -3.80489e+01 1.177855e+01 lineto -3.846348e+01 1.13023e+01 lineto -3.580457e+01 1.351795e+01 lineto -3.534845e+01 1.404193e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.287248e+01 1.654724e+01 moveto -3.534845e+01 1.404193e+01 lineto -3.580457e+01 1.351795e+01 lineto -3.336668e+01 1.597951e+01 lineto -3.287248e+01 1.654724e+01 lineto -closepath -gsave -5.62339e-01 5.62339e-01 5.62339e-01 setrgbcolor -fill -grestore -newpath -3.287248e+01 1.654724e+01 moveto -3.534845e+01 1.404193e+01 lineto -3.580457e+01 1.351795e+01 lineto -3.336668e+01 1.597951e+01 lineto -3.287248e+01 1.654724e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.193377e+01 8.793826e+01 moveto -6.830488e+01 8.811488e+01 lineto -6.825404e+01 8.817328e+01 lineto -7.182711e+01 8.806079e+01 lineto -7.193377e+01 8.793826e+01 lineto -closepath -gsave -5.14814e-01 5.14814e-01 5.14814e-01 setrgbcolor -fill -grestore -newpath -7.193377e+01 8.793826e+01 moveto -6.830488e+01 8.811488e+01 lineto -6.825404e+01 8.817328e+01 lineto -7.182711e+01 8.806079e+01 lineto -7.193377e+01 8.793826e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.551016e+01 8.744414e+01 moveto -7.193377e+01 8.793826e+01 lineto -7.182711e+01 8.806079e+01 lineto -7.534849e+01 8.762987e+01 lineto -7.551016e+01 8.744414e+01 lineto -closepath -gsave -5.230124e-01 5.230124e-01 5.230124e-01 setrgbcolor -fill -grestore -newpath -7.551016e+01 8.744414e+01 moveto -7.193377e+01 8.793826e+01 lineto -7.182711e+01 8.806079e+01 lineto -7.534849e+01 8.762987e+01 lineto -7.551016e+01 8.744414e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.900699e+01 8.663628e+01 moveto -7.551016e+01 8.744414e+01 lineto -7.534849e+01 8.762987e+01 lineto -7.879152e+01 8.68838e+01 lineto -7.900699e+01 8.663628e+01 lineto -closepath -gsave -5.308343e-01 5.308343e-01 5.308343e-01 setrgbcolor -fill -grestore -newpath -7.900699e+01 8.663628e+01 moveto -7.551016e+01 8.744414e+01 lineto -7.534849e+01 8.762987e+01 lineto -7.879152e+01 8.68838e+01 lineto -7.900699e+01 8.663628e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.140348e+01 3.823667e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.148184e+01 3.761187e+00 lineto -6.140348e+01 3.823667e+00 lineto -closepath -gsave -5.064403e-01 5.064403e-01 5.064403e-01 setrgbcolor -fill -grestore -newpath -6.140348e+01 3.823667e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.148184e+01 3.761187e+00 lineto -6.140348e+01 3.823667e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.783418e+01 3.966627e+00 moveto -6.140348e+01 3.823667e+00 lineto -6.148184e+01 3.761187e+00 lineto -5.799031e+01 3.84214e+00 lineto -5.783418e+01 3.966627e+00 lineto -closepath -gsave -5.132397e-01 5.132397e-01 5.132397e-01 setrgbcolor -fill -grestore -newpath -5.783418e+01 3.966627e+00 moveto -6.140348e+01 3.823667e+00 lineto -6.148184e+01 3.761187e+00 lineto -5.799031e+01 3.84214e+00 lineto -5.783418e+01 3.966627e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.431914e+01 4.427799e+00 moveto -5.783418e+01 3.966627e+00 lineto -5.799031e+01 3.84214e+00 lineto -5.455186e+01 4.242247e+00 lineto -5.431914e+01 4.427799e+00 lineto -closepath -gsave -5.196839e-01 5.196839e-01 5.196839e-01 setrgbcolor -fill -grestore -newpath -5.431914e+01 4.427799e+00 moveto -5.783418e+01 3.966627e+00 lineto -5.799031e+01 3.84214e+00 lineto -5.455186e+01 4.242247e+00 lineto -5.431914e+01 4.427799e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.088495e+01 5.20369e+00 moveto -5.431914e+01 4.427799e+00 lineto -5.455186e+01 4.242247e+00 lineto -5.119249e+01 4.958478e+00 lineto -5.088495e+01 5.20369e+00 lineto -closepath -gsave -5.256566e-01 5.256566e-01 5.256566e-01 setrgbcolor -fill -grestore -newpath -5.088495e+01 5.20369e+00 moveto -5.431914e+01 4.427799e+00 lineto -5.455186e+01 4.242247e+00 lineto -5.119249e+01 4.958478e+00 lineto -5.088495e+01 5.20369e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.755762e+01 6.288427e+00 moveto -5.088495e+01 5.20369e+00 lineto -5.119249e+01 4.958478e+00 lineto -4.793766e+01 5.985412e+00 lineto -4.755762e+01 6.288427e+00 lineto -closepath -gsave -5.310455e-01 5.310455e-01 5.310455e-01 setrgbcolor -fill -grestore -newpath -4.755762e+01 6.288427e+00 moveto -5.088495e+01 5.20369e+00 lineto -5.119249e+01 4.958478e+00 lineto -4.793766e+01 5.985412e+00 lineto -4.755762e+01 6.288427e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.436234e+01 7.673799e+00 moveto -4.755762e+01 6.288427e+00 lineto -4.793766e+01 5.985412e+00 lineto -4.4812e+01 7.315273e+00 lineto -4.436234e+01 7.673799e+00 lineto -closepath -gsave -5.357462e-01 5.357462e-01 5.357462e-01 setrgbcolor -fill -grestore -newpath -4.436234e+01 7.673799e+00 moveto -4.755762e+01 6.288427e+00 lineto -4.793766e+01 5.985412e+00 lineto -4.4812e+01 7.315273e+00 lineto -4.436234e+01 7.673799e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.132329e+01 9.349316e+00 moveto -4.436234e+01 7.673799e+00 lineto -4.4812e+01 7.315273e+00 lineto -4.183916e+01 8.937995e+00 lineto -4.132329e+01 9.349316e+00 lineto -closepath -gsave -5.396652e-01 5.396652e-01 5.396652e-01 setrgbcolor -fill -grestore -newpath -4.132329e+01 9.349316e+00 moveto -4.436234e+01 7.673799e+00 lineto -4.4812e+01 7.315273e+00 lineto -4.183916e+01 8.937995e+00 lineto -4.132329e+01 9.349316e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.846348e+01 1.13023e+01 moveto -4.132329e+01 9.349316e+00 lineto -4.183916e+01 8.937995e+00 lineto -3.904167e+01 1.084129e+01 lineto -3.846348e+01 1.13023e+01 lineto -closepath -gsave -5.427227e-01 5.427227e-01 5.427227e-01 setrgbcolor -fill -grestore -newpath -3.846348e+01 1.13023e+01 moveto -4.132329e+01 9.349316e+00 lineto -4.183916e+01 8.937995e+00 lineto -3.904167e+01 1.084129e+01 lineto -3.846348e+01 1.13023e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.182711e+01 8.806079e+01 moveto -6.825404e+01 8.817328e+01 lineto -6.818314e+01 8.822981e+01 lineto -7.167836e+01 8.817939e+01 lineto -7.182711e+01 8.806079e+01 lineto -closepath -gsave -5.126043e-01 5.126043e-01 5.126043e-01 setrgbcolor -fill -grestore -newpath -7.182711e+01 8.806079e+01 moveto -6.825404e+01 8.817328e+01 lineto -6.818314e+01 8.822981e+01 lineto -7.167836e+01 8.817939e+01 lineto -7.182711e+01 8.806079e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.534849e+01 8.762987e+01 moveto -7.182711e+01 8.806079e+01 lineto -7.167836e+01 8.817939e+01 lineto -7.512301e+01 8.780965e+01 lineto -7.534849e+01 8.762987e+01 lineto -closepath -gsave -5.190875e-01 5.190875e-01 5.190875e-01 setrgbcolor -fill -grestore -newpath -7.534849e+01 8.762987e+01 moveto -7.182711e+01 8.806079e+01 lineto -7.167836e+01 8.817939e+01 lineto -7.512301e+01 8.780965e+01 lineto -7.534849e+01 8.762987e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.879152e+01 8.68838e+01 moveto -7.534849e+01 8.762987e+01 lineto -7.512301e+01 8.780965e+01 lineto -7.849103e+01 8.712339e+01 lineto -7.879152e+01 8.68838e+01 lineto -closepath -gsave -5.251101e-01 5.251101e-01 5.251101e-01 setrgbcolor -fill -grestore -newpath -7.879152e+01 8.68838e+01 moveto -7.534849e+01 8.762987e+01 lineto -7.512301e+01 8.780965e+01 lineto -7.849103e+01 8.712339e+01 lineto -7.879152e+01 8.68838e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.148184e+01 3.761187e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.158189e+01 3.701159e+00 lineto -6.148184e+01 3.761187e+00 lineto -closepath -gsave -5.056656e-01 5.056656e-01 5.056656e-01 setrgbcolor -fill -grestore -newpath -6.148184e+01 3.761187e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.158189e+01 3.701159e+00 lineto -6.148184e+01 3.761187e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.799031e+01 3.84214e+00 moveto -6.148184e+01 3.761187e+00 lineto -6.158189e+01 3.701159e+00 lineto -5.818966e+01 3.722539e+00 lineto -5.799031e+01 3.84214e+00 lineto -closepath -gsave -5.108352e-01 5.108352e-01 5.108352e-01 setrgbcolor -fill -grestore -newpath -5.799031e+01 3.84214e+00 moveto -6.148184e+01 3.761187e+00 lineto -6.158189e+01 3.701159e+00 lineto -5.818966e+01 3.722539e+00 lineto -5.799031e+01 3.84214e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.455186e+01 4.242247e+00 moveto -5.799031e+01 3.84214e+00 lineto -5.818966e+01 3.722539e+00 lineto -5.484899e+01 4.063978e+00 lineto -5.455186e+01 4.242247e+00 lineto -closepath -gsave -5.155653e-01 5.155653e-01 5.155653e-01 setrgbcolor -fill -grestore -newpath -5.455186e+01 4.242247e+00 moveto -5.799031e+01 3.84214e+00 lineto -5.818966e+01 3.722539e+00 lineto -5.484899e+01 4.063978e+00 lineto -5.455186e+01 4.242247e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.119249e+01 4.958478e+00 moveto -5.455186e+01 4.242247e+00 lineto -5.484899e+01 4.063978e+00 lineto -5.158516e+01 4.722891e+00 lineto -5.119249e+01 4.958478e+00 lineto -closepath -gsave -5.197708e-01 5.197708e-01 5.197708e-01 setrgbcolor -fill -grestore -newpath -5.119249e+01 4.958478e+00 moveto -5.455186e+01 4.242247e+00 lineto -5.484899e+01 4.063978e+00 lineto -5.158516e+01 4.722891e+00 lineto -5.119249e+01 4.958478e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.793766e+01 5.985412e+00 moveto -5.119249e+01 4.958478e+00 lineto -5.158516e+01 4.722891e+00 lineto -4.84229e+01 5.69429e+00 lineto -4.793766e+01 5.985412e+00 lineto -closepath -gsave -5.233738e-01 5.233738e-01 5.233738e-01 setrgbcolor -fill -grestore -newpath -4.793766e+01 5.985412e+00 moveto -5.119249e+01 4.958478e+00 lineto -5.158516e+01 4.722891e+00 lineto -4.84229e+01 5.69429e+00 lineto -4.793766e+01 5.985412e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.4812e+01 7.315273e+00 moveto -4.793766e+01 5.985412e+00 lineto -4.84229e+01 5.69429e+00 lineto -4.538612e+01 6.970821e+00 lineto -4.4812e+01 7.315273e+00 lineto -closepath -gsave -5.263058e-01 5.263058e-01 5.263058e-01 setrgbcolor -fill -grestore -newpath -4.4812e+01 7.315273e+00 moveto -4.793766e+01 5.985412e+00 lineto -4.84229e+01 5.69429e+00 lineto -4.538612e+01 6.970821e+00 lineto -4.4812e+01 7.315273e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.183916e+01 8.937995e+00 moveto -4.4812e+01 7.315273e+00 lineto -4.538612e+01 6.970821e+00 lineto -4.249783e+01 8.54282e+00 lineto -4.183916e+01 8.937995e+00 lineto -closepath -gsave -5.285102e-01 5.285102e-01 5.285102e-01 setrgbcolor -fill -grestore -newpath -4.183916e+01 8.937995e+00 moveto -4.4812e+01 7.315273e+00 lineto -4.538612e+01 6.970821e+00 lineto -4.249783e+01 8.54282e+00 lineto -4.183916e+01 8.937995e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.167836e+01 8.817939e+01 moveto -6.818314e+01 8.822981e+01 lineto -6.809262e+01 8.828413e+01 lineto -7.148843e+01 8.829334e+01 lineto -7.167836e+01 8.817939e+01 lineto -closepath -gsave -5.103594e-01 5.103594e-01 5.103594e-01 setrgbcolor -fill -grestore -newpath -7.167836e+01 8.817939e+01 moveto -6.818314e+01 8.822981e+01 lineto -6.809262e+01 8.828413e+01 lineto -7.148843e+01 8.829334e+01 lineto -7.167836e+01 8.817939e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.512301e+01 8.780965e+01 moveto -7.167836e+01 8.817939e+01 lineto -7.148843e+01 8.829334e+01 lineto -7.483512e+01 8.798237e+01 lineto -7.512301e+01 8.780965e+01 lineto -closepath -gsave -5.151352e-01 5.151352e-01 5.151352e-01 setrgbcolor -fill -grestore -newpath -7.512301e+01 8.780965e+01 moveto -7.167836e+01 8.817939e+01 lineto -7.148843e+01 8.829334e+01 lineto -7.483512e+01 8.798237e+01 lineto -7.512301e+01 8.780965e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.849103e+01 8.712339e+01 moveto -7.512301e+01 8.780965e+01 lineto -7.483512e+01 8.798237e+01 lineto -7.810736e+01 8.735357e+01 lineto -7.849103e+01 8.712339e+01 lineto -closepath -gsave -5.193943e-01 5.193943e-01 5.193943e-01 setrgbcolor -fill -grestore -newpath -7.849103e+01 8.712339e+01 moveto -7.512301e+01 8.780965e+01 lineto -7.483512e+01 8.798237e+01 lineto -7.810736e+01 8.735357e+01 lineto -7.849103e+01 8.712339e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.158189e+01 3.701159e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.170302e+01 3.643954e+00 lineto -6.158189e+01 3.701159e+00 lineto -closepath -gsave -5.048774e-01 5.048774e-01 5.048774e-01 setrgbcolor -fill -grestore -newpath -6.158189e+01 3.701159e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.170302e+01 3.643954e+00 lineto -6.158189e+01 3.701159e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.818966e+01 3.722539e+00 moveto -6.158189e+01 3.701159e+00 lineto -6.170302e+01 3.643954e+00 lineto -5.8431e+01 3.608562e+00 lineto -5.818966e+01 3.722539e+00 lineto -closepath -gsave -5.084122e-01 5.084122e-01 5.084122e-01 setrgbcolor -fill -grestore -newpath -5.818966e+01 3.722539e+00 moveto -6.158189e+01 3.701159e+00 lineto -6.170302e+01 3.643954e+00 lineto -5.8431e+01 3.608562e+00 lineto -5.818966e+01 3.722539e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.484899e+01 4.063978e+00 moveto -5.818966e+01 3.722539e+00 lineto -5.8431e+01 3.608562e+00 lineto -5.520871e+01 3.894092e+00 lineto -5.484899e+01 4.063978e+00 lineto -closepath -gsave -5.114532e-01 5.114532e-01 5.114532e-01 setrgbcolor -fill -grestore -newpath -5.484899e+01 4.063978e+00 moveto -5.818966e+01 3.722539e+00 lineto -5.8431e+01 3.608562e+00 lineto -5.520871e+01 3.894092e+00 lineto -5.484899e+01 4.063978e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.158516e+01 4.722891e+00 moveto -5.484899e+01 4.063978e+00 lineto -5.520871e+01 3.894092e+00 lineto -5.206054e+01 4.498382e+00 lineto -5.158516e+01 4.722891e+00 lineto -closepath -gsave -5.139463e-01 5.139463e-01 5.139463e-01 setrgbcolor -fill -grestore -newpath -5.158516e+01 4.722891e+00 moveto -5.484899e+01 4.063978e+00 lineto -5.520871e+01 3.894092e+00 lineto -5.206054e+01 4.498382e+00 lineto -5.158516e+01 4.722891e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.84229e+01 5.69429e+00 moveto -5.158516e+01 4.722891e+00 lineto -5.206054e+01 4.498382e+00 lineto -4.901033e+01 5.416857e+00 lineto -4.84229e+01 5.69429e+00 lineto -closepath -gsave -5.158458e-01 5.158458e-01 5.158458e-01 setrgbcolor -fill -grestore -newpath -4.84229e+01 5.69429e+00 moveto -5.158516e+01 4.722891e+00 lineto -5.206054e+01 4.498382e+00 lineto -4.901033e+01 5.416857e+00 lineto -4.84229e+01 5.69429e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.538612e+01 6.970821e+00 moveto -4.84229e+01 5.69429e+00 lineto -4.901033e+01 5.416857e+00 lineto -4.608117e+01 6.642565e+00 lineto -4.538612e+01 6.970821e+00 lineto -closepath -gsave -5.17117e-01 5.17117e-01 5.17117e-01 setrgbcolor -fill -grestore -newpath -4.538612e+01 6.970821e+00 moveto -4.84229e+01 5.69429e+00 lineto -4.901033e+01 5.416857e+00 lineto -4.608117e+01 6.642565e+00 lineto -4.538612e+01 6.970821e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.148843e+01 8.829334e+01 moveto -6.809262e+01 8.828413e+01 lineto -6.798303e+01 8.833588e+01 lineto -7.12585e+01 8.840193e+01 lineto -7.148843e+01 8.829334e+01 lineto -closepath -gsave -5.080952e-01 5.080952e-01 5.080952e-01 setrgbcolor -fill -grestore -newpath -7.148843e+01 8.829334e+01 moveto -6.809262e+01 8.828413e+01 lineto -6.798303e+01 8.833588e+01 lineto -7.12585e+01 8.840193e+01 lineto -7.148843e+01 8.829334e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.483512e+01 8.798237e+01 moveto -7.148843e+01 8.829334e+01 lineto -7.12585e+01 8.840193e+01 lineto -7.44866e+01 8.814697e+01 lineto -7.483512e+01 8.798237e+01 lineto -closepath -gsave -5.111859e-01 5.111859e-01 5.111859e-01 setrgbcolor -fill -grestore -newpath -7.483512e+01 8.798237e+01 moveto -7.148843e+01 8.829334e+01 lineto -7.12585e+01 8.840193e+01 lineto -7.44866e+01 8.814697e+01 lineto -7.483512e+01 8.798237e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.810736e+01 8.735357e+01 moveto -7.483512e+01 8.798237e+01 lineto -7.44866e+01 8.814697e+01 lineto -7.764288e+01 8.757294e+01 lineto -7.810736e+01 8.735357e+01 lineto -closepath -gsave -5.137333e-01 5.137333e-01 5.137333e-01 setrgbcolor -fill -grestore -newpath -7.810736e+01 8.735357e+01 moveto -7.483512e+01 8.798237e+01 lineto -7.44866e+01 8.814697e+01 lineto -7.764288e+01 8.757294e+01 lineto -7.810736e+01 8.735357e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.170302e+01 3.643954e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.184447e+01 3.589924e+00 lineto -6.170302e+01 3.643954e+00 lineto -closepath -gsave -5.040809e-01 5.040809e-01 5.040809e-01 setrgbcolor -fill -grestore -newpath -6.170302e+01 3.643954e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.184447e+01 3.589924e+00 lineto -6.170302e+01 3.643954e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.8431e+01 3.608562e+00 moveto -6.170302e+01 3.643954e+00 lineto -6.184447e+01 3.589924e+00 lineto -5.871284e+01 3.500912e+00 lineto -5.8431e+01 3.608562e+00 lineto -closepath -gsave -5.059874e-01 5.059874e-01 5.059874e-01 setrgbcolor -fill -grestore -newpath -5.8431e+01 3.608562e+00 moveto -6.170302e+01 3.643954e+00 lineto -6.184447e+01 3.589924e+00 lineto -5.871284e+01 3.500912e+00 lineto -5.8431e+01 3.608562e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.520871e+01 3.894092e+00 moveto -5.8431e+01 3.608562e+00 lineto -5.871284e+01 3.500912e+00 lineto -5.562879e+01 3.733636e+00 lineto -5.520871e+01 3.894092e+00 lineto -closepath -gsave -5.073774e-01 5.073774e-01 5.073774e-01 setrgbcolor -fill -grestore -newpath -5.520871e+01 3.894092e+00 moveto -5.8431e+01 3.608562e+00 lineto -5.871284e+01 3.500912e+00 lineto -5.562879e+01 3.733636e+00 lineto -5.520871e+01 3.894092e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.206054e+01 4.498382e+00 moveto -5.520871e+01 3.894092e+00 lineto -5.562879e+01 3.733636e+00 lineto -5.26157e+01 4.286335e+00 lineto -5.206054e+01 4.498382e+00 lineto -closepath -gsave -5.082264e-01 5.082264e-01 5.082264e-01 setrgbcolor -fill -grestore -newpath -5.206054e+01 4.498382e+00 moveto -5.520871e+01 3.894092e+00 lineto -5.562879e+01 3.733636e+00 lineto -5.26157e+01 4.286335e+00 lineto -5.206054e+01 4.498382e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.901033e+01 5.416857e+00 moveto -5.206054e+01 4.498382e+00 lineto -5.26157e+01 4.286335e+00 lineto -4.969635e+01 5.154824e+00 lineto -4.901033e+01 5.416857e+00 lineto -closepath -gsave -5.085193e-01 5.085193e-01 5.085193e-01 setrgbcolor -fill -grestore -newpath -4.901033e+01 5.416857e+00 moveto -5.206054e+01 4.498382e+00 lineto -5.26157e+01 4.286335e+00 lineto -4.969635e+01 5.154824e+00 lineto -4.901033e+01 5.416857e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.12585e+01 8.840193e+01 moveto -6.798303e+01 8.833588e+01 lineto -6.785504e+01 8.838477e+01 lineto -7.098999e+01 8.850449e+01 lineto -7.12585e+01 8.840193e+01 lineto -closepath -gsave -5.058273e-01 5.058273e-01 5.058273e-01 setrgbcolor -fill -grestore -newpath -7.12585e+01 8.840193e+01 moveto -6.798303e+01 8.833588e+01 lineto -6.785504e+01 8.838477e+01 lineto -7.098999e+01 8.850449e+01 lineto -7.12585e+01 8.840193e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.44866e+01 8.814697e+01 moveto -7.12585e+01 8.840193e+01 lineto -7.098999e+01 8.850449e+01 lineto -7.407959e+01 8.830243e+01 lineto -7.44866e+01 8.814697e+01 lineto -closepath -gsave -5.072678e-01 5.072678e-01 5.072678e-01 setrgbcolor -fill -grestore -newpath -7.44866e+01 8.814697e+01 moveto -7.12585e+01 8.840193e+01 lineto -7.098999e+01 8.850449e+01 lineto -7.407959e+01 8.830243e+01 lineto -7.44866e+01 8.814697e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.764288e+01 8.757294e+01 moveto -7.44866e+01 8.814697e+01 lineto -7.407959e+01 8.830243e+01 lineto -7.710045e+01 8.778013e+01 lineto -7.764288e+01 8.757294e+01 lineto -closepath -gsave -5.081692e-01 5.081692e-01 5.081692e-01 setrgbcolor -fill -grestore -newpath -7.764288e+01 8.757294e+01 moveto -7.44866e+01 8.814697e+01 lineto -7.407959e+01 8.830243e+01 lineto -7.710045e+01 8.778013e+01 lineto -7.764288e+01 8.757294e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.184447e+01 3.589924e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.200538e+01 3.539403e+00 lineto -6.184447e+01 3.589924e+00 lineto -closepath -gsave -5.03281e-01 5.03281e-01 5.03281e-01 setrgbcolor -fill -grestore -newpath -6.184447e+01 3.589924e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.200538e+01 3.539403e+00 lineto -6.184447e+01 3.589924e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.871284e+01 3.500912e+00 moveto -6.184447e+01 3.589924e+00 lineto -6.200538e+01 3.539403e+00 lineto -5.903343e+01 3.400251e+00 lineto -5.871284e+01 3.500912e+00 lineto -closepath -gsave -5.035769e-01 5.035769e-01 5.035769e-01 setrgbcolor -fill -grestore -newpath -5.871284e+01 3.500912e+00 moveto -6.184447e+01 3.589924e+00 lineto -6.200538e+01 3.539403e+00 lineto -5.903343e+01 3.400251e+00 lineto -5.871284e+01 3.500912e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.562879e+01 3.733636e+00 moveto -5.871284e+01 3.500912e+00 lineto -5.903343e+01 3.400251e+00 lineto -5.610666e+01 3.583599e+00 lineto -5.562879e+01 3.733636e+00 lineto -closepath -gsave -5.033656e-01 5.033656e-01 5.033656e-01 setrgbcolor -fill -grestore -newpath -5.562879e+01 3.733636e+00 moveto -5.871284e+01 3.500912e+00 lineto -5.903343e+01 3.400251e+00 lineto -5.610666e+01 3.583599e+00 lineto -5.562879e+01 3.733636e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.26157e+01 4.286335e+00 moveto -5.562879e+01 3.733636e+00 lineto -5.610666e+01 3.583599e+00 lineto -5.32472e+01 4.088057e+00 lineto -5.26157e+01 4.286335e+00 lineto -closepath -gsave -5.026505e-01 5.026505e-01 5.026505e-01 setrgbcolor -fill -grestore -newpath -5.26157e+01 4.286335e+00 moveto -5.562879e+01 3.733636e+00 lineto -5.610666e+01 3.583599e+00 lineto -5.32472e+01 4.088057e+00 lineto -5.26157e+01 4.286335e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.969635e+01 5.154824e+00 moveto -5.26157e+01 4.286335e+00 lineto -5.32472e+01 4.088057e+00 lineto -5.047673e+01 4.909806e+00 lineto -4.969635e+01 5.154824e+00 lineto -closepath -gsave -5.014444e-01 5.014444e-01 5.014444e-01 setrgbcolor -fill -grestore -newpath -4.969635e+01 5.154824e+00 moveto -5.26157e+01 4.286335e+00 lineto -5.32472e+01 4.088057e+00 lineto -5.047673e+01 4.909806e+00 lineto -4.969635e+01 5.154824e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.098999e+01 8.850449e+01 moveto -6.785504e+01 8.838477e+01 lineto -6.770946e+01 8.843048e+01 lineto -7.068454e+01 8.860039e+01 lineto -7.098999e+01 8.850449e+01 lineto -closepath -gsave -5.035706e-01 5.035706e-01 5.035706e-01 setrgbcolor -fill -grestore -newpath -7.098999e+01 8.850449e+01 moveto -6.785504e+01 8.838477e+01 lineto -6.770946e+01 8.843048e+01 lineto -7.068454e+01 8.860039e+01 lineto -7.098999e+01 8.850449e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.407959e+01 8.830243e+01 moveto -7.098999e+01 8.850449e+01 lineto -7.068454e+01 8.860039e+01 lineto -7.361659e+01 8.84478e+01 lineto -7.407959e+01 8.830243e+01 lineto -closepath -gsave -5.034076e-01 5.034076e-01 5.034076e-01 setrgbcolor -fill -grestore -newpath -7.407959e+01 8.830243e+01 moveto -7.098999e+01 8.850449e+01 lineto -7.068454e+01 8.860039e+01 lineto -7.361659e+01 8.84478e+01 lineto -7.407959e+01 8.830243e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.710045e+01 8.778013e+01 moveto -7.407959e+01 8.830243e+01 lineto -7.361659e+01 8.84478e+01 lineto -7.648341e+01 8.797386e+01 lineto -7.710045e+01 8.778013e+01 lineto -closepath -gsave -5.027402e-01 5.027402e-01 5.027402e-01 setrgbcolor -fill -grestore -newpath -7.710045e+01 8.778013e+01 moveto -7.407959e+01 8.830243e+01 lineto -7.361659e+01 8.84478e+01 lineto -7.648341e+01 8.797386e+01 lineto -7.710045e+01 8.778013e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.200538e+01 3.539403e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.218475e+01 3.492702e+00 lineto -6.200538e+01 3.539403e+00 lineto -closepath -gsave -5.024827e-01 5.024827e-01 5.024827e-01 setrgbcolor -fill -grestore -newpath -6.200538e+01 3.539403e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.218475e+01 3.492702e+00 lineto -6.200538e+01 3.539403e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.903343e+01 3.400251e+00 moveto -6.200538e+01 3.539403e+00 lineto -6.218475e+01 3.492702e+00 lineto -5.939082e+01 3.307202e+00 lineto -5.903343e+01 3.400251e+00 lineto -closepath -gsave -5.01196e-01 5.01196e-01 5.01196e-01 setrgbcolor -fill -grestore -newpath -5.903343e+01 3.400251e+00 moveto -6.200538e+01 3.539403e+00 lineto -6.218475e+01 3.492702e+00 lineto -5.939082e+01 3.307202e+00 lineto -5.903343e+01 3.400251e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.610666e+01 3.583599e+00 moveto -5.903343e+01 3.400251e+00 lineto -5.939082e+01 3.307202e+00 lineto -5.663935e+01 3.444906e+00 lineto -5.610666e+01 3.583599e+00 lineto -closepath -gsave -4.994429e-01 4.994429e-01 4.994429e-01 setrgbcolor -fill -grestore -newpath -5.610666e+01 3.583599e+00 moveto -5.903343e+01 3.400251e+00 lineto -5.939082e+01 3.307202e+00 lineto -5.663935e+01 3.444906e+00 lineto -5.610666e+01 3.583599e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.32472e+01 4.088057e+00 moveto -5.610666e+01 3.583599e+00 lineto -5.663935e+01 3.444906e+00 lineto -5.395117e+01 3.90477e+00 lineto -5.32472e+01 4.088057e+00 lineto -closepath -gsave -4.972532e-01 4.972532e-01 4.972532e-01 setrgbcolor -fill -grestore -newpath -5.32472e+01 4.088057e+00 moveto -5.610666e+01 3.583599e+00 lineto -5.663935e+01 3.444906e+00 lineto -5.395117e+01 3.90477e+00 lineto -5.32472e+01 4.088057e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.068454e+01 8.860039e+01 moveto -6.770946e+01 8.843048e+01 lineto -6.754717e+01 8.847273e+01 lineto -7.034405e+01 8.868904e+01 lineto -7.068454e+01 8.860039e+01 lineto -closepath -gsave -5.013393e-01 5.013393e-01 5.013393e-01 setrgbcolor -fill -grestore -newpath -7.068454e+01 8.860039e+01 moveto -6.770946e+01 8.843048e+01 lineto -6.754717e+01 8.847273e+01 lineto -7.034405e+01 8.868904e+01 lineto -7.068454e+01 8.860039e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.361659e+01 8.84478e+01 moveto -7.068454e+01 8.860039e+01 lineto -7.034405e+01 8.868904e+01 lineto -7.310048e+01 8.858218e+01 lineto -7.361659e+01 8.84478e+01 lineto -closepath -gsave -4.996296e-01 4.996296e-01 4.996296e-01 setrgbcolor -fill -grestore -newpath -7.361659e+01 8.84478e+01 moveto -7.068454e+01 8.860039e+01 lineto -7.034405e+01 8.868904e+01 lineto -7.310048e+01 8.858218e+01 lineto -7.361659e+01 8.84478e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.648341e+01 8.797386e+01 moveto -7.361659e+01 8.84478e+01 lineto -7.310048e+01 8.858218e+01 lineto -7.579558e+01 8.815294e+01 lineto -7.648341e+01 8.797386e+01 lineto -closepath -gsave -4.974801e-01 4.974801e-01 4.974801e-01 setrgbcolor -fill -grestore -newpath -7.648341e+01 8.797386e+01 moveto -7.361659e+01 8.84478e+01 lineto -7.310048e+01 8.858218e+01 lineto -7.579558e+01 8.815294e+01 lineto -7.648341e+01 8.797386e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.218475e+01 3.492702e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.238148e+01 3.450108e+00 lineto -6.218475e+01 3.492702e+00 lineto -closepath -gsave -5.01691e-01 5.01691e-01 5.01691e-01 setrgbcolor -fill -grestore -newpath -6.218475e+01 3.492702e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.238148e+01 3.450108e+00 lineto -6.218475e+01 3.492702e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.939082e+01 3.307202e+00 moveto -6.218475e+01 3.492702e+00 lineto -6.238148e+01 3.450108e+00 lineto -5.978279e+01 3.222337e+00 lineto -5.939082e+01 3.307202e+00 lineto -closepath -gsave -4.98859e-01 4.98859e-01 4.98859e-01 setrgbcolor -fill -grestore -newpath -5.939082e+01 3.307202e+00 moveto -6.218475e+01 3.492702e+00 lineto -6.238148e+01 3.450108e+00 lineto -5.978279e+01 3.222337e+00 lineto -5.939082e+01 3.307202e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.663935e+01 3.444906e+00 moveto -5.939082e+01 3.307202e+00 lineto -5.978279e+01 3.222337e+00 lineto -5.722359e+01 3.318412e+00 lineto -5.663935e+01 3.444906e+00 lineto -closepath -gsave -4.956325e-01 4.956325e-01 4.956325e-01 setrgbcolor -fill -grestore -newpath -5.663935e+01 3.444906e+00 moveto -5.939082e+01 3.307202e+00 lineto -5.978279e+01 3.222337e+00 lineto -5.722359e+01 3.318412e+00 lineto -5.663935e+01 3.444906e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.395117e+01 3.90477e+00 moveto -5.663935e+01 3.444906e+00 lineto -5.722359e+01 3.318412e+00 lineto -5.472326e+01 3.737606e+00 lineto -5.395117e+01 3.90477e+00 lineto -closepath -gsave -4.920642e-01 4.920642e-01 4.920642e-01 setrgbcolor -fill -grestore -newpath -5.395117e+01 3.90477e+00 moveto -5.663935e+01 3.444906e+00 lineto -5.722359e+01 3.318412e+00 lineto -5.472326e+01 3.737606e+00 lineto -5.395117e+01 3.90477e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.034405e+01 8.868904e+01 moveto -6.754717e+01 8.847273e+01 lineto -6.736917e+01 8.851127e+01 lineto -6.997061e+01 8.87699e+01 lineto -7.034405e+01 8.868904e+01 lineto -closepath -gsave -4.991471e-01 4.991471e-01 4.991471e-01 setrgbcolor -fill -grestore -newpath -7.034405e+01 8.868904e+01 moveto -6.754717e+01 8.847273e+01 lineto -6.736917e+01 8.851127e+01 lineto -6.997061e+01 8.87699e+01 lineto -7.034405e+01 8.868904e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.310048e+01 8.858218e+01 moveto -7.034405e+01 8.868904e+01 lineto -6.997061e+01 8.87699e+01 lineto -7.253442e+01 8.870473e+01 lineto -7.310048e+01 8.858218e+01 lineto -closepath -gsave -4.95956e-01 4.95956e-01 4.95956e-01 setrgbcolor -fill -grestore -newpath -7.310048e+01 8.858218e+01 moveto -7.034405e+01 8.868904e+01 lineto -6.997061e+01 8.87699e+01 lineto -7.253442e+01 8.870473e+01 lineto -7.310048e+01 8.858218e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.579558e+01 8.815294e+01 moveto -7.310048e+01 8.858218e+01 lineto -7.253442e+01 8.870473e+01 lineto -7.504119e+01 8.831628e+01 lineto -7.579558e+01 8.815294e+01 lineto -closepath -gsave -4.92418e-01 4.92418e-01 4.92418e-01 setrgbcolor -fill -grestore -newpath -7.579558e+01 8.815294e+01 moveto -7.310048e+01 8.858218e+01 lineto -7.253442e+01 8.870473e+01 lineto -7.504119e+01 8.831628e+01 lineto -7.579558e+01 8.815294e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.238148e+01 3.450108e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.259435e+01 3.411885e+00 lineto -6.238148e+01 3.450108e+00 lineto -closepath -gsave -5.009107e-01 5.009107e-01 5.009107e-01 setrgbcolor -fill -grestore -newpath -6.238148e+01 3.450108e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.259435e+01 3.411885e+00 lineto -6.238148e+01 3.450108e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.978279e+01 3.222337e+00 moveto -6.238148e+01 3.450108e+00 lineto -6.259435e+01 3.411885e+00 lineto -6.020692e+01 3.14618e+00 lineto -5.978279e+01 3.222337e+00 lineto -closepath -gsave -4.965794e-01 4.965794e-01 4.965794e-01 setrgbcolor -fill -grestore -newpath -5.978279e+01 3.222337e+00 moveto -6.238148e+01 3.450108e+00 lineto -6.259435e+01 3.411885e+00 lineto -6.020692e+01 3.14618e+00 lineto -5.978279e+01 3.222337e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.722359e+01 3.318412e+00 moveto -5.978279e+01 3.222337e+00 lineto -6.020692e+01 3.14618e+00 lineto -5.785577e+01 3.204898e+00 lineto -5.722359e+01 3.318412e+00 lineto -closepath -gsave -4.919545e-01 4.919545e-01 4.919545e-01 setrgbcolor -fill -grestore -newpath -5.722359e+01 3.318412e+00 moveto -5.978279e+01 3.222337e+00 lineto -6.020692e+01 3.14618e+00 lineto -5.785577e+01 3.204898e+00 lineto -5.722359e+01 3.318412e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.472326e+01 3.737606e+00 moveto -5.722359e+01 3.318412e+00 lineto -5.785577e+01 3.204898e+00 lineto -5.555871e+01 3.587594e+00 lineto -5.472326e+01 3.737606e+00 lineto -closepath -gsave -4.871086e-01 4.871086e-01 4.871086e-01 setrgbcolor -fill -grestore -newpath -5.472326e+01 3.737606e+00 moveto -5.722359e+01 3.318412e+00 lineto -5.785577e+01 3.204898e+00 lineto -5.555871e+01 3.587594e+00 lineto -5.472326e+01 3.737606e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.997061e+01 8.87699e+01 moveto -6.736917e+01 8.851127e+01 lineto -6.717657e+01 8.854585e+01 lineto -6.956652e+01 8.884245e+01 lineto -6.997061e+01 8.87699e+01 lineto -closepath -gsave -4.970066e-01 4.970066e-01 4.970066e-01 setrgbcolor -fill -grestore -newpath -6.997061e+01 8.87699e+01 moveto -6.736917e+01 8.851127e+01 lineto -6.717657e+01 8.854585e+01 lineto -6.956652e+01 8.884245e+01 lineto -6.997061e+01 8.87699e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.253442e+01 8.870473e+01 moveto -6.997061e+01 8.87699e+01 lineto -6.956652e+01 8.884245e+01 lineto -7.192191e+01 8.881471e+01 lineto -7.253442e+01 8.870473e+01 lineto -closepath -gsave -4.924066e-01 4.924066e-01 4.924066e-01 setrgbcolor -fill -grestore -newpath -7.253442e+01 8.870473e+01 moveto -6.997061e+01 8.87699e+01 lineto -6.956652e+01 8.884245e+01 lineto -7.192191e+01 8.881471e+01 lineto -7.253442e+01 8.870473e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.504119e+01 8.831628e+01 moveto -7.253442e+01 8.870473e+01 lineto -7.192191e+01 8.881471e+01 lineto -7.422489e+01 8.846285e+01 lineto -7.504119e+01 8.831628e+01 lineto -closepath -gsave -4.875786e-01 4.875786e-01 4.875786e-01 setrgbcolor -fill -grestore -newpath -7.504119e+01 8.831628e+01 moveto -7.253442e+01 8.870473e+01 lineto -7.192191e+01 8.881471e+01 lineto -7.422489e+01 8.846285e+01 lineto -7.504119e+01 8.831628e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.259435e+01 3.411885e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.282206e+01 3.378268e+00 lineto -6.259435e+01 3.411885e+00 lineto -closepath -gsave -5.001464e-01 5.001464e-01 5.001464e-01 setrgbcolor -fill -grestore -newpath -6.259435e+01 3.411885e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.282206e+01 3.378268e+00 lineto -6.259435e+01 3.411885e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.020692e+01 3.14618e+00 moveto -6.259435e+01 3.411885e+00 lineto -6.282206e+01 3.378268e+00 lineto -6.06606e+01 3.079201e+00 lineto -6.020692e+01 3.14618e+00 lineto -closepath -gsave -4.943697e-01 4.943697e-01 4.943697e-01 setrgbcolor -fill -grestore -newpath -6.020692e+01 3.14618e+00 moveto -6.259435e+01 3.411885e+00 lineto -6.282206e+01 3.378268e+00 lineto -6.06606e+01 3.079201e+00 lineto -6.020692e+01 3.14618e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.785577e+01 3.204898e+00 moveto -6.020692e+01 3.14618e+00 lineto -6.06606e+01 3.079201e+00 lineto -5.8532e+01 3.105063e+00 lineto -5.785577e+01 3.204898e+00 lineto -closepath -gsave -4.884269e-01 4.884269e-01 4.884269e-01 setrgbcolor -fill -grestore -newpath -5.785577e+01 3.204898e+00 moveto -6.020692e+01 3.14618e+00 lineto -6.06606e+01 3.079201e+00 lineto -5.8532e+01 3.105063e+00 lineto -5.785577e+01 3.204898e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.956652e+01 8.884245e+01 moveto -6.717657e+01 8.854585e+01 lineto -6.697055e+01 8.857627e+01 lineto -6.913429e+01 8.890627e+01 lineto -6.956652e+01 8.884245e+01 lineto -closepath -gsave -4.949296e-01 4.949296e-01 4.949296e-01 setrgbcolor -fill -grestore -newpath -6.956652e+01 8.884245e+01 moveto -6.717657e+01 8.854585e+01 lineto -6.697055e+01 8.857627e+01 lineto -6.913429e+01 8.890627e+01 lineto -6.956652e+01 8.884245e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.192191e+01 8.881471e+01 moveto -6.956652e+01 8.884245e+01 lineto -6.913429e+01 8.890627e+01 lineto -7.126672e+01 8.891144e+01 lineto -7.192191e+01 8.881471e+01 lineto -closepath -gsave -4.889988e-01 4.889988e-01 4.889988e-01 setrgbcolor -fill -grestore -newpath -7.192191e+01 8.881471e+01 moveto -6.956652e+01 8.884245e+01 lineto -6.913429e+01 8.890627e+01 lineto -7.126672e+01 8.891144e+01 lineto -7.192191e+01 8.881471e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.282206e+01 3.378268e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.306319e+01 3.349464e+00 lineto -6.282206e+01 3.378268e+00 lineto -closepath -gsave -4.994026e-01 4.994026e-01 4.994026e-01 setrgbcolor -fill -grestore -newpath -6.282206e+01 3.378268e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.306319e+01 3.349464e+00 lineto -6.282206e+01 3.378268e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.06606e+01 3.079201e+00 moveto -6.282206e+01 3.378268e+00 lineto -6.306319e+01 3.349464e+00 lineto -6.114104e+01 3.021811e+00 lineto -6.06606e+01 3.079201e+00 lineto -closepath -gsave -4.922413e-01 4.922413e-01 4.922413e-01 setrgbcolor -fill -grestore -newpath -6.06606e+01 3.079201e+00 moveto -6.282206e+01 3.378268e+00 lineto -6.306319e+01 3.349464e+00 lineto -6.114104e+01 3.021811e+00 lineto -6.06606e+01 3.079201e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.8532e+01 3.105063e+00 moveto -6.06606e+01 3.079201e+00 lineto -6.114104e+01 3.021811e+00 lineto -5.924811e+01 3.019522e+00 lineto -5.8532e+01 3.105063e+00 lineto -closepath -gsave -4.850651e-01 4.850651e-01 4.850651e-01 setrgbcolor -fill -grestore -newpath -5.8532e+01 3.105063e+00 moveto -6.06606e+01 3.079201e+00 lineto -6.114104e+01 3.021811e+00 lineto -5.924811e+01 3.019522e+00 lineto -5.8532e+01 3.105063e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.913429e+01 8.890627e+01 moveto -6.697055e+01 8.857627e+01 lineto -6.675238e+01 8.860233e+01 lineto -6.867656e+01 8.896094e+01 lineto -6.913429e+01 8.890627e+01 lineto -closepath -gsave -4.92927e-01 4.92927e-01 4.92927e-01 setrgbcolor -fill -grestore -newpath -6.913429e+01 8.890627e+01 moveto -6.697055e+01 8.857627e+01 lineto -6.675238e+01 8.860233e+01 lineto -6.867656e+01 8.896094e+01 lineto -6.913429e+01 8.890627e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.126672e+01 8.891144e+01 moveto -6.913429e+01 8.890627e+01 lineto -6.867656e+01 8.896094e+01 lineto -7.05729e+01 8.899432e+01 lineto -7.126672e+01 8.891144e+01 lineto -closepath -gsave -4.857477e-01 4.857477e-01 4.857477e-01 setrgbcolor -fill -grestore -newpath -7.126672e+01 8.891144e+01 moveto -6.913429e+01 8.890627e+01 lineto -6.867656e+01 8.896094e+01 lineto -7.05729e+01 8.899432e+01 lineto -7.126672e+01 8.891144e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.306319e+01 3.349464e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.331626e+01 3.325651e+00 lineto -6.306319e+01 3.349464e+00 lineto -closepath -gsave -4.986836e-01 4.986836e-01 4.986836e-01 setrgbcolor -fill -grestore -newpath -6.306319e+01 3.349464e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.331626e+01 3.325651e+00 lineto -6.306319e+01 3.349464e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.114104e+01 3.021811e+00 moveto -6.306319e+01 3.349464e+00 lineto -6.331626e+01 3.325651e+00 lineto -6.164527e+01 2.974366e+00 lineto -6.114104e+01 3.021811e+00 lineto -closepath -gsave -4.902045e-01 4.902045e-01 4.902045e-01 setrgbcolor -fill -grestore -newpath -6.114104e+01 3.021811e+00 moveto -6.306319e+01 3.349464e+00 lineto -6.331626e+01 3.325651e+00 lineto -6.164527e+01 2.974366e+00 lineto -6.114104e+01 3.021811e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.924811e+01 3.019522e+00 moveto -6.114104e+01 3.021811e+00 lineto -6.164527e+01 2.974366e+00 lineto -5.999967e+01 2.948803e+00 lineto -5.924811e+01 3.019522e+00 lineto -closepath -gsave -4.818819e-01 4.818819e-01 4.818819e-01 setrgbcolor -fill -grestore -newpath -5.924811e+01 3.019522e+00 moveto -6.114104e+01 3.021811e+00 lineto -6.164527e+01 2.974366e+00 lineto -5.999967e+01 2.948803e+00 lineto -5.924811e+01 3.019522e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.867656e+01 8.896094e+01 moveto -6.675238e+01 8.860233e+01 lineto -6.65234e+01 8.862388e+01 lineto -6.819616e+01 8.900615e+01 lineto -6.867656e+01 8.896094e+01 lineto -closepath -gsave -4.910088e-01 4.910088e-01 4.910088e-01 setrgbcolor -fill -grestore -newpath -6.867656e+01 8.896094e+01 moveto -6.675238e+01 8.860233e+01 lineto -6.65234e+01 8.862388e+01 lineto -6.819616e+01 8.900615e+01 lineto -6.867656e+01 8.896094e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.05729e+01 8.899432e+01 moveto -6.867656e+01 8.896094e+01 lineto -6.819616e+01 8.900615e+01 lineto -6.984472e+01 8.906284e+01 lineto -7.05729e+01 8.899432e+01 lineto -closepath -gsave -4.826663e-01 4.826663e-01 4.826663e-01 setrgbcolor -fill -grestore -newpath -7.05729e+01 8.899432e+01 moveto -6.867656e+01 8.896094e+01 lineto -6.819616e+01 8.900615e+01 lineto -6.984472e+01 8.906284e+01 lineto -7.05729e+01 8.899432e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.331626e+01 3.325651e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.357972e+01 3.306976e+00 lineto -6.331626e+01 3.325651e+00 lineto -closepath -gsave -4.979935e-01 4.979935e-01 4.979935e-01 setrgbcolor -fill -grestore -newpath -6.331626e+01 3.325651e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.357972e+01 3.306976e+00 lineto -6.331626e+01 3.325651e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.164527e+01 2.974366e+00 moveto -6.331626e+01 3.325651e+00 lineto -6.357972e+01 3.306976e+00 lineto -6.217018e+01 2.937157e+00 lineto -6.164527e+01 2.974366e+00 lineto -closepath -gsave -4.882689e-01 4.882689e-01 4.882689e-01 setrgbcolor -fill -grestore -newpath -6.164527e+01 2.974366e+00 moveto -6.331626e+01 3.325651e+00 lineto -6.357972e+01 3.306976e+00 lineto -6.217018e+01 2.937157e+00 lineto -6.164527e+01 2.974366e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.999967e+01 2.948803e+00 moveto -6.164527e+01 2.974366e+00 lineto -6.217018e+01 2.937157e+00 lineto -6.078207e+01 2.893343e+00 lineto -5.999967e+01 2.948803e+00 lineto -closepath -gsave -4.788883e-01 4.788883e-01 4.788883e-01 setrgbcolor -fill -grestore -newpath -5.999967e+01 2.948803e+00 moveto -6.164527e+01 2.974366e+00 lineto -6.217018e+01 2.937157e+00 lineto -6.078207e+01 2.893343e+00 lineto -5.999967e+01 2.948803e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.819616e+01 8.900615e+01 moveto -6.65234e+01 8.862388e+01 lineto -6.628504e+01 8.864077e+01 lineto -6.769606e+01 8.90416e+01 lineto -6.819616e+01 8.900615e+01 lineto -closepath -gsave -4.89184e-01 4.89184e-01 4.89184e-01 setrgbcolor -fill -grestore -newpath -6.819616e+01 8.900615e+01 moveto -6.65234e+01 8.862388e+01 lineto -6.628504e+01 8.864077e+01 lineto -6.769606e+01 8.90416e+01 lineto -6.819616e+01 8.900615e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.984472e+01 8.906284e+01 moveto -6.819616e+01 8.900615e+01 lineto -6.769606e+01 8.90416e+01 lineto -6.908667e+01 8.911657e+01 lineto -6.984472e+01 8.906284e+01 lineto -closepath -gsave -4.797654e-01 4.797654e-01 4.797654e-01 setrgbcolor -fill -grestore -newpath -6.984472e+01 8.906284e+01 moveto -6.819616e+01 8.900615e+01 lineto -6.769606e+01 8.90416e+01 lineto -6.908667e+01 8.911657e+01 lineto -6.984472e+01 8.906284e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.357972e+01 3.306976e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.385193e+01 3.293554e+00 lineto -6.357972e+01 3.306976e+00 lineto -closepath -gsave -4.973361e-01 4.973361e-01 4.973361e-01 setrgbcolor -fill -grestore -newpath -6.357972e+01 3.306976e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.385193e+01 3.293554e+00 lineto -6.357972e+01 3.306976e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.217018e+01 2.937157e+00 moveto -6.357972e+01 3.306976e+00 lineto -6.385193e+01 3.293554e+00 lineto -6.271254e+01 2.910414e+00 lineto -6.217018e+01 2.937157e+00 lineto -closepath -gsave -4.864427e-01 4.864427e-01 4.864427e-01 setrgbcolor -fill -grestore -newpath -6.217018e+01 2.937157e+00 moveto -6.357972e+01 3.306976e+00 lineto -6.385193e+01 3.293554e+00 lineto -6.271254e+01 2.910414e+00 lineto -6.217018e+01 2.937157e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.078207e+01 2.893343e+00 moveto -6.217018e+01 2.937157e+00 lineto -6.271254e+01 2.910414e+00 lineto -6.159048e+01 2.853482e+00 lineto -6.078207e+01 2.893343e+00 lineto -closepath -gsave -4.760927e-01 4.760927e-01 4.760927e-01 setrgbcolor -fill -grestore -newpath -6.078207e+01 2.893343e+00 moveto -6.217018e+01 2.937157e+00 lineto -6.271254e+01 2.910414e+00 lineto -6.159048e+01 2.853482e+00 lineto -6.078207e+01 2.893343e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.769606e+01 8.90416e+01 moveto -6.628504e+01 8.864077e+01 lineto -6.603875e+01 8.865292e+01 lineto -6.717934e+01 8.906707e+01 lineto -6.769606e+01 8.90416e+01 lineto -closepath -gsave -4.874608e-01 4.874608e-01 4.874608e-01 setrgbcolor -fill -grestore -newpath -6.769606e+01 8.90416e+01 moveto -6.628504e+01 8.864077e+01 lineto -6.603875e+01 8.865292e+01 lineto -6.717934e+01 8.906707e+01 lineto -6.769606e+01 8.90416e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.908667e+01 8.911657e+01 moveto -6.769606e+01 8.90416e+01 lineto -6.717934e+01 8.906707e+01 lineto -6.830342e+01 8.91552e+01 lineto -6.908667e+01 8.911657e+01 lineto -closepath -gsave -4.770537e-01 4.770537e-01 4.770537e-01 setrgbcolor -fill -grestore -newpath -6.908667e+01 8.911657e+01 moveto -6.769606e+01 8.90416e+01 lineto -6.717934e+01 8.906707e+01 lineto -6.830342e+01 8.91552e+01 lineto -6.908667e+01 8.911657e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.385193e+01 3.293554e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.413121e+01 3.285467e+00 lineto -6.385193e+01 3.293554e+00 lineto -closepath -gsave -4.96715e-01 4.96715e-01 4.96715e-01 setrgbcolor -fill -grestore -newpath -6.385193e+01 3.293554e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.413121e+01 3.285467e+00 lineto -6.385193e+01 3.293554e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.271254e+01 2.910414e+00 moveto -6.385193e+01 3.293554e+00 lineto -6.413121e+01 3.285467e+00 lineto -6.3269e+01 2.894302e+00 lineto -6.271254e+01 2.910414e+00 lineto -closepath -gsave -4.847334e-01 4.847334e-01 4.847334e-01 setrgbcolor -fill -grestore -newpath -6.271254e+01 2.910414e+00 moveto -6.385193e+01 3.293554e+00 lineto -6.413121e+01 3.285467e+00 lineto -6.3269e+01 2.894302e+00 lineto -6.271254e+01 2.910414e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.159048e+01 2.853482e+00 moveto -6.271254e+01 2.910414e+00 lineto -6.3269e+01 2.894302e+00 lineto -6.24199e+01 2.829466e+00 lineto -6.159048e+01 2.853482e+00 lineto -closepath -gsave -4.735019e-01 4.735019e-01 4.735019e-01 setrgbcolor -fill -grestore -newpath -6.159048e+01 2.853482e+00 moveto -6.271254e+01 2.910414e+00 lineto -6.3269e+01 2.894302e+00 lineto -6.24199e+01 2.829466e+00 lineto -6.159048e+01 2.853482e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.717934e+01 8.906707e+01 moveto -6.603875e+01 8.865292e+01 lineto -6.578606e+01 8.866023e+01 lineto -6.664918e+01 8.908242e+01 lineto -6.717934e+01 8.906707e+01 lineto -closepath -gsave -4.858464e-01 4.858464e-01 4.858464e-01 setrgbcolor -fill -grestore -newpath -6.717934e+01 8.906707e+01 moveto -6.603875e+01 8.865292e+01 lineto -6.578606e+01 8.866023e+01 lineto -6.664918e+01 8.908242e+01 lineto -6.717934e+01 8.906707e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.830342e+01 8.91552e+01 moveto -6.717934e+01 8.906707e+01 lineto -6.664918e+01 8.908242e+01 lineto -6.749981e+01 8.917846e+01 lineto -6.830342e+01 8.91552e+01 lineto -closepath -gsave -4.745382e-01 4.745382e-01 4.745382e-01 setrgbcolor -fill -grestore -newpath -6.830342e+01 8.91552e+01 moveto -6.717934e+01 8.906707e+01 lineto -6.664918e+01 8.908242e+01 lineto -6.749981e+01 8.917846e+01 lineto -6.830342e+01 8.91552e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.413121e+01 3.285467e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.441586e+01 3.282766e+00 lineto -6.413121e+01 3.285467e+00 lineto -closepath -gsave -4.961337e-01 4.961337e-01 4.961337e-01 setrgbcolor -fill -grestore -newpath -6.413121e+01 3.285467e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.441586e+01 3.282766e+00 lineto -6.413121e+01 3.285467e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.3269e+01 2.894302e+00 moveto -6.413121e+01 3.285467e+00 lineto -6.441586e+01 3.282766e+00 lineto -6.383614e+01 2.888921e+00 lineto -6.3269e+01 2.894302e+00 lineto -closepath -gsave -4.831474e-01 4.831474e-01 4.831474e-01 setrgbcolor -fill -grestore -newpath -6.3269e+01 2.894302e+00 moveto -6.413121e+01 3.285467e+00 lineto -6.441586e+01 3.282766e+00 lineto -6.383614e+01 2.888921e+00 lineto -6.3269e+01 2.894302e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.24199e+01 2.829466e+00 moveto -6.3269e+01 2.894302e+00 lineto -6.383614e+01 2.888921e+00 lineto -6.326523e+01 2.821445e+00 lineto -6.24199e+01 2.829466e+00 lineto -closepath -gsave -4.711211e-01 4.711211e-01 4.711211e-01 setrgbcolor -fill -grestore -newpath -6.24199e+01 2.829466e+00 moveto -6.3269e+01 2.894302e+00 lineto -6.383614e+01 2.888921e+00 lineto -6.326523e+01 2.821445e+00 lineto -6.24199e+01 2.829466e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.664918e+01 8.908242e+01 moveto -6.578606e+01 8.866023e+01 lineto -6.552852e+01 8.866268e+01 lineto -6.610885e+01 8.908755e+01 lineto -6.664918e+01 8.908242e+01 lineto -closepath -gsave -4.843473e-01 4.843473e-01 4.843473e-01 setrgbcolor -fill -grestore -newpath -6.664918e+01 8.908242e+01 moveto -6.578606e+01 8.866023e+01 lineto -6.552852e+01 8.866268e+01 lineto -6.610885e+01 8.908755e+01 lineto -6.664918e+01 8.908242e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.749981e+01 8.917846e+01 moveto -6.664918e+01 8.908242e+01 lineto -6.610885e+01 8.908755e+01 lineto -6.668079e+01 8.918624e+01 lineto -6.749981e+01 8.917846e+01 lineto -closepath -gsave -4.722243e-01 4.722243e-01 4.722243e-01 setrgbcolor -fill -grestore -newpath -6.749981e+01 8.917846e+01 moveto -6.664918e+01 8.908242e+01 lineto -6.610885e+01 8.908755e+01 lineto -6.668079e+01 8.918624e+01 lineto -6.749981e+01 8.917846e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.441586e+01 3.282766e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.47041e+01 3.285467e+00 lineto -6.441586e+01 3.282766e+00 lineto -closepath -gsave -4.955952e-01 4.955952e-01 4.955952e-01 setrgbcolor -fill -grestore -newpath -6.441586e+01 3.282766e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.47041e+01 3.285467e+00 lineto -6.441586e+01 3.282766e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.383614e+01 2.888921e+00 moveto -6.441586e+01 3.282766e+00 lineto -6.47041e+01 3.285467e+00 lineto -6.441045e+01 2.894302e+00 lineto -6.383614e+01 2.888921e+00 lineto -closepath -gsave -4.816906e-01 4.816906e-01 4.816906e-01 setrgbcolor -fill -grestore -newpath -6.383614e+01 2.888921e+00 moveto -6.441586e+01 3.282766e+00 lineto -6.47041e+01 3.285467e+00 lineto -6.441045e+01 2.894302e+00 lineto -6.383614e+01 2.888921e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.326523e+01 2.821445e+00 moveto -6.383614e+01 2.888921e+00 lineto -6.441045e+01 2.894302e+00 lineto -6.412126e+01 2.829466e+00 lineto -6.326523e+01 2.821445e+00 lineto -closepath -gsave -4.689538e-01 4.689538e-01 4.689538e-01 setrgbcolor -fill -grestore -newpath -6.326523e+01 2.821445e+00 moveto -6.383614e+01 2.888921e+00 lineto -6.441045e+01 2.894302e+00 lineto -6.412126e+01 2.829466e+00 lineto -6.326523e+01 2.821445e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.610885e+01 8.908755e+01 moveto -6.552852e+01 8.866268e+01 lineto -6.526772e+01 8.866023e+01 lineto -6.556169e+01 8.908242e+01 lineto -6.610885e+01 8.908755e+01 lineto -closepath -gsave -4.829689e-01 4.829689e-01 4.829689e-01 setrgbcolor -fill -grestore -newpath -6.610885e+01 8.908755e+01 moveto -6.552852e+01 8.866268e+01 lineto -6.526772e+01 8.866023e+01 lineto -6.556169e+01 8.908242e+01 lineto -6.610885e+01 8.908755e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.668079e+01 8.918624e+01 moveto -6.610885e+01 8.908755e+01 lineto -6.556169e+01 8.908242e+01 lineto -6.58514e+01 8.917846e+01 lineto -6.668079e+01 8.918624e+01 lineto -closepath -gsave -4.70116e-01 4.70116e-01 4.70116e-01 setrgbcolor -fill -grestore -newpath -6.668079e+01 8.918624e+01 moveto -6.610885e+01 8.908755e+01 lineto -6.556169e+01 8.908242e+01 lineto -6.58514e+01 8.917846e+01 lineto -6.668079e+01 8.918624e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.47041e+01 3.285467e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.499417e+01 3.293554e+00 lineto -6.47041e+01 3.285467e+00 lineto -closepath -gsave -4.951024e-01 4.951024e-01 4.951024e-01 setrgbcolor -fill -grestore -newpath -6.47041e+01 3.285467e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.499417e+01 3.293554e+00 lineto -6.47041e+01 3.285467e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.441045e+01 2.894302e+00 moveto -6.47041e+01 3.285467e+00 lineto -6.499417e+01 3.293554e+00 lineto -6.498839e+01 2.910414e+00 lineto -6.441045e+01 2.894302e+00 lineto -closepath -gsave -4.803676e-01 4.803676e-01 4.803676e-01 setrgbcolor -fill -grestore -newpath -6.441045e+01 2.894302e+00 moveto -6.47041e+01 3.285467e+00 lineto -6.499417e+01 3.293554e+00 lineto -6.498839e+01 2.910414e+00 lineto -6.441045e+01 2.894302e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.412126e+01 2.829466e+00 moveto -6.441045e+01 2.894302e+00 lineto -6.498839e+01 2.910414e+00 lineto -6.49827e+01 2.853482e+00 lineto -6.412126e+01 2.829466e+00 lineto -closepath -gsave -4.670024e-01 4.670024e-01 4.670024e-01 setrgbcolor -fill -grestore -newpath -6.412126e+01 2.829466e+00 moveto -6.441045e+01 2.894302e+00 lineto -6.498839e+01 2.910414e+00 lineto -6.49827e+01 2.853482e+00 lineto -6.412126e+01 2.829466e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.556169e+01 8.908242e+01 moveto -6.526772e+01 8.866023e+01 lineto -6.500527e+01 8.865292e+01 lineto -6.501106e+01 8.906707e+01 lineto -6.556169e+01 8.908242e+01 lineto -closepath -gsave -4.817163e-01 4.817163e-01 4.817163e-01 setrgbcolor -fill -grestore -newpath -6.556169e+01 8.908242e+01 moveto -6.526772e+01 8.866023e+01 lineto -6.500527e+01 8.865292e+01 lineto -6.501106e+01 8.906707e+01 lineto -6.556169e+01 8.908242e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.58514e+01 8.917846e+01 moveto -6.556169e+01 8.908242e+01 lineto -6.501106e+01 8.906707e+01 lineto -6.501676e+01 8.91552e+01 lineto -6.58514e+01 8.917846e+01 lineto -closepath -gsave -4.682162e-01 4.682162e-01 4.682162e-01 setrgbcolor -fill -grestore -newpath -6.58514e+01 8.917846e+01 moveto -6.556169e+01 8.908242e+01 lineto -6.501106e+01 8.906707e+01 lineto -6.501676e+01 8.91552e+01 lineto -6.58514e+01 8.917846e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.499417e+01 3.293554e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.528428e+01 3.306976e+00 lineto -6.499417e+01 3.293554e+00 lineto -closepath -gsave -4.946579e-01 4.946579e-01 4.946579e-01 setrgbcolor -fill -grestore -newpath -6.499417e+01 3.293554e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.528428e+01 3.306976e+00 lineto -6.499417e+01 3.293554e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.498839e+01 2.910414e+00 moveto -6.499417e+01 3.293554e+00 lineto -6.528428e+01 3.306976e+00 lineto -6.556641e+01 2.937157e+00 lineto -6.498839e+01 2.910414e+00 lineto -closepath -gsave -4.791826e-01 4.791826e-01 4.791826e-01 setrgbcolor -fill -grestore -newpath -6.498839e+01 2.910414e+00 moveto -6.499417e+01 3.293554e+00 lineto -6.528428e+01 3.306976e+00 lineto -6.556641e+01 2.937157e+00 lineto -6.498839e+01 2.910414e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.49827e+01 2.853482e+00 moveto -6.498839e+01 2.910414e+00 lineto -6.556641e+01 2.937157e+00 lineto -6.584425e+01 2.893343e+00 lineto -6.49827e+01 2.853482e+00 lineto -closepath -gsave -4.652683e-01 4.652683e-01 4.652683e-01 setrgbcolor -fill -grestore -newpath -6.49827e+01 2.853482e+00 moveto -6.498839e+01 2.910414e+00 lineto -6.556641e+01 2.937157e+00 lineto -6.584425e+01 2.893343e+00 lineto -6.49827e+01 2.853482e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.501106e+01 8.906707e+01 moveto -6.500527e+01 8.865292e+01 lineto -6.474279e+01 8.864077e+01 lineto -6.446036e+01 8.90416e+01 lineto -6.501106e+01 8.906707e+01 lineto -closepath -gsave -4.805935e-01 4.805935e-01 4.805935e-01 setrgbcolor -fill -grestore -newpath -6.501106e+01 8.906707e+01 moveto -6.500527e+01 8.865292e+01 lineto -6.474279e+01 8.864077e+01 lineto -6.446036e+01 8.90416e+01 lineto -6.501106e+01 8.906707e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.501676e+01 8.91552e+01 moveto -6.501106e+01 8.906707e+01 lineto -6.446036e+01 8.90416e+01 lineto -6.418202e+01 8.911657e+01 lineto -6.501676e+01 8.91552e+01 lineto -closepath -gsave -4.665266e-01 4.665266e-01 4.665266e-01 setrgbcolor -fill -grestore -newpath -6.501676e+01 8.91552e+01 moveto -6.501106e+01 8.906707e+01 lineto -6.446036e+01 8.90416e+01 lineto -6.418202e+01 8.911657e+01 lineto -6.501676e+01 8.91552e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.528428e+01 3.306976e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.557263e+01 3.325651e+00 lineto -6.528428e+01 3.306976e+00 lineto -closepath -gsave -4.942639e-01 4.942639e-01 4.942639e-01 setrgbcolor -fill -grestore -newpath -6.528428e+01 3.306976e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.557263e+01 3.325651e+00 lineto -6.528428e+01 3.306976e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.556641e+01 2.937157e+00 moveto -6.528428e+01 3.306976e+00 lineto -6.557263e+01 3.325651e+00 lineto -6.614093e+01 2.974366e+00 lineto -6.556641e+01 2.937157e+00 lineto -closepath -gsave -4.78139e-01 4.78139e-01 4.78139e-01 setrgbcolor -fill -grestore -newpath -6.556641e+01 2.937157e+00 moveto -6.528428e+01 3.306976e+00 lineto -6.557263e+01 3.325651e+00 lineto -6.614093e+01 2.974366e+00 lineto -6.556641e+01 2.937157e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.584425e+01 2.893343e+00 moveto -6.556641e+01 2.937157e+00 lineto -6.614093e+01 2.974366e+00 lineto -6.67006e+01 2.948803e+00 lineto -6.584425e+01 2.893343e+00 lineto -closepath -gsave -4.637522e-01 4.637522e-01 4.637522e-01 setrgbcolor -fill -grestore -newpath -6.584425e+01 2.893343e+00 moveto -6.556641e+01 2.937157e+00 lineto -6.614093e+01 2.974366e+00 lineto -6.67006e+01 2.948803e+00 lineto -6.584425e+01 2.893343e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.446036e+01 8.90416e+01 moveto -6.474279e+01 8.864077e+01 lineto -6.448189e+01 8.862388e+01 lineto -6.3913e+01 8.900615e+01 lineto -6.446036e+01 8.90416e+01 lineto -closepath -gsave -4.796041e-01 4.796041e-01 4.796041e-01 setrgbcolor -fill -grestore -newpath -6.446036e+01 8.90416e+01 moveto -6.474279e+01 8.864077e+01 lineto -6.448189e+01 8.862388e+01 lineto -6.3913e+01 8.900615e+01 lineto -6.446036e+01 8.90416e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.418202e+01 8.911657e+01 moveto -6.446036e+01 8.90416e+01 lineto -6.3913e+01 8.900615e+01 lineto -6.335233e+01 8.906284e+01 lineto -6.418202e+01 8.911657e+01 lineto -closepath -gsave -4.650483e-01 4.650483e-01 4.650483e-01 setrgbcolor -fill -grestore -newpath -6.418202e+01 8.911657e+01 moveto -6.446036e+01 8.90416e+01 lineto -6.3913e+01 8.900615e+01 lineto -6.335233e+01 8.906284e+01 lineto -6.418202e+01 8.911657e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.557263e+01 3.325651e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.585746e+01 3.349464e+00 lineto -6.557263e+01 3.325651e+00 lineto -closepath -gsave -4.939224e-01 4.939224e-01 4.939224e-01 setrgbcolor -fill -grestore -newpath -6.557263e+01 3.325651e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.585746e+01 3.349464e+00 lineto -6.557263e+01 3.325651e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.614093e+01 2.974366e+00 moveto -6.557263e+01 3.325651e+00 lineto -6.585746e+01 3.349464e+00 lineto -6.670842e+01 3.021811e+00 lineto -6.614093e+01 2.974366e+00 lineto -closepath -gsave -4.772398e-01 4.772398e-01 4.772398e-01 setrgbcolor -fill -grestore -newpath -6.614093e+01 2.974366e+00 moveto -6.557263e+01 3.325651e+00 lineto -6.585746e+01 3.349464e+00 lineto -6.670842e+01 3.021811e+00 lineto -6.614093e+01 2.974366e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.67006e+01 2.948803e+00 moveto -6.614093e+01 2.974366e+00 lineto -6.670842e+01 3.021811e+00 lineto -6.754646e+01 3.019522e+00 lineto -6.67006e+01 2.948803e+00 lineto -closepath -gsave -4.624541e-01 4.624541e-01 4.624541e-01 setrgbcolor -fill -grestore -newpath -6.67006e+01 2.948803e+00 moveto -6.614093e+01 2.974366e+00 lineto -6.670842e+01 3.021811e+00 lineto -6.754646e+01 3.019522e+00 lineto -6.67006e+01 2.948803e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.3913e+01 8.900615e+01 moveto -6.448189e+01 8.862388e+01 lineto -6.422419e+01 8.860233e+01 lineto -6.337233e+01 8.896094e+01 lineto -6.3913e+01 8.900615e+01 lineto -closepath -gsave -4.787511e-01 4.787511e-01 4.787511e-01 setrgbcolor -fill -grestore -newpath -6.3913e+01 8.900615e+01 moveto -6.448189e+01 8.862388e+01 lineto -6.422419e+01 8.860233e+01 lineto -6.337233e+01 8.896094e+01 lineto -6.3913e+01 8.900615e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.335233e+01 8.906284e+01 moveto -6.3913e+01 8.900615e+01 lineto -6.337233e+01 8.896094e+01 lineto -6.253279e+01 8.899432e+01 lineto -6.335233e+01 8.906284e+01 lineto -closepath -gsave -4.637818e-01 4.637818e-01 4.637818e-01 setrgbcolor -fill -grestore -newpath -6.335233e+01 8.906284e+01 moveto -6.3913e+01 8.900615e+01 lineto -6.337233e+01 8.896094e+01 lineto -6.253279e+01 8.899432e+01 lineto -6.335233e+01 8.906284e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.585746e+01 3.349464e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.613699e+01 3.378268e+00 lineto -6.585746e+01 3.349464e+00 lineto -closepath -gsave -4.936353e-01 4.936353e-01 4.936353e-01 setrgbcolor -fill -grestore -newpath -6.585746e+01 3.349464e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.613699e+01 3.378268e+00 lineto -6.585746e+01 3.349464e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.670842e+01 3.021811e+00 moveto -6.585746e+01 3.349464e+00 lineto -6.613699e+01 3.378268e+00 lineto -6.726538e+01 3.079201e+00 lineto -6.670842e+01 3.021811e+00 lineto -closepath -gsave -4.764871e-01 4.764871e-01 4.764871e-01 setrgbcolor -fill -grestore -newpath -6.670842e+01 3.021811e+00 moveto -6.585746e+01 3.349464e+00 lineto -6.613699e+01 3.378268e+00 lineto -6.726538e+01 3.079201e+00 lineto -6.670842e+01 3.021811e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.754646e+01 3.019522e+00 moveto -6.670842e+01 3.021811e+00 lineto -6.726538e+01 3.079201e+00 lineto -6.837662e+01 3.105063e+00 lineto -6.754646e+01 3.019522e+00 lineto -closepath -gsave -4.613737e-01 4.613737e-01 4.613737e-01 setrgbcolor -fill -grestore -newpath -6.754646e+01 3.019522e+00 moveto -6.670842e+01 3.021811e+00 lineto -6.726538e+01 3.079201e+00 lineto -6.837662e+01 3.105063e+00 lineto -6.754646e+01 3.019522e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.337233e+01 8.896094e+01 moveto -6.422419e+01 8.860233e+01 lineto -6.397128e+01 8.857627e+01 lineto -6.28417e+01 8.890627e+01 lineto -6.337233e+01 8.896094e+01 lineto -closepath -gsave -4.780368e-01 4.780368e-01 4.780368e-01 setrgbcolor -fill -grestore -newpath -6.337233e+01 8.896094e+01 moveto -6.422419e+01 8.860233e+01 lineto -6.397128e+01 8.857627e+01 lineto -6.28417e+01 8.890627e+01 lineto -6.337233e+01 8.896094e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.253279e+01 8.899432e+01 moveto -6.337233e+01 8.896094e+01 lineto -6.28417e+01 8.890627e+01 lineto -6.172846e+01 8.891144e+01 lineto -6.253279e+01 8.899432e+01 lineto -closepath -gsave -4.62727e-01 4.62727e-01 4.62727e-01 setrgbcolor -fill -grestore -newpath -6.253279e+01 8.899432e+01 moveto -6.337233e+01 8.896094e+01 lineto -6.28417e+01 8.890627e+01 lineto -6.172846e+01 8.891144e+01 lineto -6.253279e+01 8.899432e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.613699e+01 3.378268e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.640952e+01 3.411885e+00 lineto -6.613699e+01 3.378268e+00 lineto -closepath -gsave -4.934038e-01 4.934038e-01 4.934038e-01 setrgbcolor -fill -grestore -newpath -6.613699e+01 3.378268e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.640952e+01 3.411885e+00 lineto -6.613699e+01 3.378268e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.726538e+01 3.079201e+00 moveto -6.613699e+01 3.378268e+00 lineto -6.640952e+01 3.411885e+00 lineto -6.780837e+01 3.14618e+00 lineto -6.726538e+01 3.079201e+00 lineto -closepath -gsave -4.75883e-01 4.75883e-01 4.75883e-01 setrgbcolor -fill -grestore -newpath -6.726538e+01 3.079201e+00 moveto -6.613699e+01 3.378268e+00 lineto -6.640952e+01 3.411885e+00 lineto -6.780837e+01 3.14618e+00 lineto -6.726538e+01 3.079201e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.837662e+01 3.105063e+00 moveto -6.726538e+01 3.079201e+00 lineto -6.780837e+01 3.14618e+00 lineto -6.918596e+01 3.204898e+00 lineto -6.837662e+01 3.105063e+00 lineto -closepath -gsave -4.605104e-01 4.605104e-01 4.605104e-01 setrgbcolor -fill -grestore -newpath -6.837662e+01 3.105063e+00 moveto -6.726538e+01 3.079201e+00 lineto -6.780837e+01 3.14618e+00 lineto -6.918596e+01 3.204898e+00 lineto -6.837662e+01 3.105063e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.28417e+01 8.890627e+01 moveto -6.397128e+01 8.857627e+01 lineto -6.37247e+01 8.854585e+01 lineto -6.232437e+01 8.884245e+01 lineto -6.28417e+01 8.890627e+01 lineto -closepath -gsave -4.774631e-01 4.774631e-01 4.774631e-01 setrgbcolor -fill -grestore -newpath -6.28417e+01 8.890627e+01 moveto -6.397128e+01 8.857627e+01 lineto -6.37247e+01 8.854585e+01 lineto -6.232437e+01 8.884245e+01 lineto -6.28417e+01 8.890627e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.172846e+01 8.891144e+01 moveto -6.28417e+01 8.890627e+01 lineto -6.232437e+01 8.884245e+01 lineto -6.09443e+01 8.881471e+01 lineto -6.172846e+01 8.891144e+01 lineto -closepath -gsave -4.618838e-01 4.618838e-01 4.618838e-01 setrgbcolor -fill -grestore -newpath -6.172846e+01 8.891144e+01 moveto -6.28417e+01 8.890627e+01 lineto -6.232437e+01 8.884245e+01 lineto -6.09443e+01 8.881471e+01 lineto -6.172846e+01 8.891144e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.640952e+01 3.411885e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.667336e+01 3.450108e+00 lineto -6.640952e+01 3.411885e+00 lineto -closepath -gsave -4.932292e-01 4.932292e-01 4.932292e-01 setrgbcolor -fill -grestore -newpath -6.640952e+01 3.411885e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.667336e+01 3.450108e+00 lineto -6.640952e+01 3.411885e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.780837e+01 3.14618e+00 moveto -6.640952e+01 3.411885e+00 lineto -6.667336e+01 3.450108e+00 lineto -6.833405e+01 3.222337e+00 lineto -6.780837e+01 3.14618e+00 lineto -closepath -gsave -4.754287e-01 4.754287e-01 4.754287e-01 setrgbcolor -fill -grestore -newpath -6.780837e+01 3.14618e+00 moveto -6.640952e+01 3.411885e+00 lineto -6.667336e+01 3.450108e+00 lineto -6.833405e+01 3.222337e+00 lineto -6.780837e+01 3.14618e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.918596e+01 3.204898e+00 moveto -6.780837e+01 3.14618e+00 lineto -6.833405e+01 3.222337e+00 lineto -6.996949e+01 3.318412e+00 lineto -6.918596e+01 3.204898e+00 lineto -closepath -gsave -4.598636e-01 4.598636e-01 4.598636e-01 setrgbcolor -fill -grestore -newpath -6.918596e+01 3.204898e+00 moveto -6.780837e+01 3.14618e+00 lineto -6.833405e+01 3.222337e+00 lineto -6.996949e+01 3.318412e+00 lineto -6.918596e+01 3.204898e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.232437e+01 8.884245e+01 moveto -6.37247e+01 8.854585e+01 lineto -6.348599e+01 8.851127e+01 lineto -6.182355e+01 8.87699e+01 lineto -6.232437e+01 8.884245e+01 lineto -closepath -gsave -4.770316e-01 4.770316e-01 4.770316e-01 setrgbcolor -fill -grestore -newpath -6.232437e+01 8.884245e+01 moveto -6.37247e+01 8.854585e+01 lineto -6.348599e+01 8.851127e+01 lineto -6.182355e+01 8.87699e+01 lineto -6.232437e+01 8.884245e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.09443e+01 8.881471e+01 moveto -6.232437e+01 8.884245e+01 lineto -6.182355e+01 8.87699e+01 lineto -6.018515e+01 8.870473e+01 lineto -6.09443e+01 8.881471e+01 lineto -closepath -gsave -4.612519e-01 4.612519e-01 4.612519e-01 setrgbcolor -fill -grestore -newpath -6.09443e+01 8.881471e+01 moveto -6.232437e+01 8.884245e+01 lineto -6.182355e+01 8.87699e+01 lineto -6.018515e+01 8.870473e+01 lineto -6.09443e+01 8.881471e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.667336e+01 3.450108e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.692688e+01 3.492702e+00 lineto -6.667336e+01 3.450108e+00 lineto -closepath -gsave -4.931123e-01 4.931123e-01 4.931123e-01 setrgbcolor -fill -grestore -newpath -6.667336e+01 3.450108e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.692688e+01 3.492702e+00 lineto -6.667336e+01 3.450108e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.833405e+01 3.222337e+00 moveto -6.667336e+01 3.450108e+00 lineto -6.692688e+01 3.492702e+00 lineto -6.883917e+01 3.307202e+00 lineto -6.833405e+01 3.222337e+00 lineto -closepath -gsave -4.751252e-01 4.751252e-01 4.751252e-01 setrgbcolor -fill -grestore -newpath -6.833405e+01 3.222337e+00 moveto -6.667336e+01 3.450108e+00 lineto -6.692688e+01 3.492702e+00 lineto -6.883917e+01 3.307202e+00 lineto -6.833405e+01 3.222337e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.996949e+01 3.318412e+00 moveto -6.833405e+01 3.222337e+00 lineto -6.883917e+01 3.307202e+00 lineto -7.072239e+01 3.444906e+00 lineto -6.996949e+01 3.318412e+00 lineto -closepath -gsave -4.594328e-01 4.594328e-01 4.594328e-01 setrgbcolor -fill -grestore -newpath -6.996949e+01 3.318412e+00 moveto -6.833405e+01 3.222337e+00 lineto -6.883917e+01 3.307202e+00 lineto -7.072239e+01 3.444906e+00 lineto -6.996949e+01 3.318412e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.182355e+01 8.87699e+01 moveto -6.348599e+01 8.851127e+01 lineto -6.325661e+01 8.847273e+01 lineto -6.13423e+01 8.868904e+01 lineto -6.182355e+01 8.87699e+01 lineto -closepath -gsave -4.767434e-01 4.767434e-01 4.767434e-01 setrgbcolor -fill -grestore -newpath -6.182355e+01 8.87699e+01 moveto -6.348599e+01 8.851127e+01 lineto -6.325661e+01 8.847273e+01 lineto -6.13423e+01 8.868904e+01 lineto -6.182355e+01 8.87699e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.018515e+01 8.870473e+01 moveto -6.182355e+01 8.87699e+01 lineto -6.13423e+01 8.868904e+01 lineto -5.945568e+01 8.858218e+01 lineto -6.018515e+01 8.870473e+01 lineto -closepath -gsave -4.608308e-01 4.608308e-01 4.608308e-01 setrgbcolor -fill -grestore -newpath -6.018515e+01 8.870473e+01 moveto -6.182355e+01 8.87699e+01 lineto -6.13423e+01 8.868904e+01 lineto -5.945568e+01 8.858218e+01 lineto -6.018515e+01 8.870473e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.692688e+01 3.492702e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.716852e+01 3.539403e+00 lineto -6.692688e+01 3.492702e+00 lineto -closepath -gsave -4.930537e-01 4.930537e-01 4.930537e-01 setrgbcolor -fill -grestore -newpath -6.692688e+01 3.492702e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.716852e+01 3.539403e+00 lineto -6.692688e+01 3.492702e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.883917e+01 3.307202e+00 moveto -6.692688e+01 3.492702e+00 lineto -6.716852e+01 3.539403e+00 lineto -6.932062e+01 3.400251e+00 lineto -6.883917e+01 3.307202e+00 lineto -closepath -gsave -4.749734e-01 4.749734e-01 4.749734e-01 setrgbcolor -fill -grestore -newpath -6.883917e+01 3.307202e+00 moveto -6.692688e+01 3.492702e+00 lineto -6.716852e+01 3.539403e+00 lineto -6.932062e+01 3.400251e+00 lineto -6.883917e+01 3.307202e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.072239e+01 3.444906e+00 moveto -6.883917e+01 3.307202e+00 lineto -6.932062e+01 3.400251e+00 lineto -7.144001e+01 3.583599e+00 lineto -7.072239e+01 3.444906e+00 lineto -closepath -gsave -4.592175e-01 4.592175e-01 4.592175e-01 setrgbcolor -fill -grestore -newpath -7.072239e+01 3.444906e+00 moveto -6.883917e+01 3.307202e+00 lineto -6.932062e+01 3.400251e+00 lineto -7.144001e+01 3.583599e+00 lineto -7.072239e+01 3.444906e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.13423e+01 8.868904e+01 moveto -6.325661e+01 8.847273e+01 lineto -6.303798e+01 8.843048e+01 lineto -6.088361e+01 8.860039e+01 lineto -6.13423e+01 8.868904e+01 lineto -closepath -gsave -4.765991e-01 4.765991e-01 4.765991e-01 setrgbcolor -fill -grestore -newpath -6.13423e+01 8.868904e+01 moveto -6.325661e+01 8.847273e+01 lineto -6.303798e+01 8.843048e+01 lineto -6.088361e+01 8.860039e+01 lineto -6.13423e+01 8.868904e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.945568e+01 8.858218e+01 moveto -6.13423e+01 8.868904e+01 lineto -6.088361e+01 8.860039e+01 lineto -5.87604e+01 8.84478e+01 lineto -5.945568e+01 8.858218e+01 lineto -closepath -gsave -4.606204e-01 4.606204e-01 4.606204e-01 setrgbcolor -fill -grestore -newpath -5.945568e+01 8.858218e+01 moveto -6.13423e+01 8.868904e+01 lineto -6.088361e+01 8.860039e+01 lineto -5.87604e+01 8.84478e+01 lineto -5.945568e+01 8.858218e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.716852e+01 3.539403e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.739679e+01 3.589924e+00 lineto -6.716852e+01 3.539403e+00 lineto -closepath -gsave -4.930537e-01 4.930537e-01 4.930537e-01 setrgbcolor -fill -grestore -newpath -6.716852e+01 3.539403e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.739679e+01 3.589924e+00 lineto -6.716852e+01 3.539403e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.932062e+01 3.400251e+00 moveto -6.716852e+01 3.539403e+00 lineto -6.739679e+01 3.589924e+00 lineto -6.977543e+01 3.500912e+00 lineto -6.932062e+01 3.400251e+00 lineto -closepath -gsave -4.749734e-01 4.749734e-01 4.749734e-01 setrgbcolor -fill -grestore -newpath -6.932062e+01 3.400251e+00 moveto -6.716852e+01 3.539403e+00 lineto -6.739679e+01 3.589924e+00 lineto -6.977543e+01 3.500912e+00 lineto -6.932062e+01 3.400251e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.144001e+01 3.583599e+00 moveto -6.932062e+01 3.400251e+00 lineto -6.977543e+01 3.500912e+00 lineto -7.211792e+01 3.733636e+00 lineto -7.144001e+01 3.583599e+00 lineto -closepath -gsave -4.592175e-01 4.592175e-01 4.592175e-01 setrgbcolor -fill -grestore -newpath -7.144001e+01 3.583599e+00 moveto -6.932062e+01 3.400251e+00 lineto -6.977543e+01 3.500912e+00 lineto -7.211792e+01 3.733636e+00 lineto -7.144001e+01 3.583599e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.088361e+01 8.860039e+01 moveto -6.303798e+01 8.843048e+01 lineto -6.283145e+01 8.838477e+01 lineto -6.045029e+01 8.850449e+01 lineto -6.088361e+01 8.860039e+01 lineto -closepath -gsave -4.765991e-01 4.765991e-01 4.765991e-01 setrgbcolor -fill -grestore -newpath -6.088361e+01 8.860039e+01 moveto -6.303798e+01 8.843048e+01 lineto -6.283145e+01 8.838477e+01 lineto -6.045029e+01 8.850449e+01 lineto -6.088361e+01 8.860039e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.87604e+01 8.84478e+01 moveto -6.088361e+01 8.860039e+01 lineto -6.045029e+01 8.850449e+01 lineto -5.810358e+01 8.830243e+01 lineto -5.87604e+01 8.84478e+01 lineto -closepath -gsave -4.606204e-01 4.606204e-01 4.606204e-01 setrgbcolor -fill -grestore -newpath -5.87604e+01 8.84478e+01 moveto -6.088361e+01 8.860039e+01 lineto -6.045029e+01 8.850449e+01 lineto -5.810358e+01 8.830243e+01 lineto -5.87604e+01 8.84478e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.739679e+01 3.589924e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.761028e+01 3.643954e+00 lineto -6.739679e+01 3.589924e+00 lineto -closepath -gsave -4.931123e-01 4.931123e-01 4.931123e-01 setrgbcolor -fill -grestore -newpath -6.739679e+01 3.589924e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.761028e+01 3.643954e+00 lineto -6.739679e+01 3.589924e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.977543e+01 3.500912e+00 moveto -6.739679e+01 3.589924e+00 lineto -6.761028e+01 3.643954e+00 lineto -7.02008e+01 3.608562e+00 lineto -6.977543e+01 3.500912e+00 lineto -closepath -gsave -4.751252e-01 4.751252e-01 4.751252e-01 setrgbcolor -fill -grestore -newpath -6.977543e+01 3.500912e+00 moveto -6.739679e+01 3.589924e+00 lineto -6.761028e+01 3.643954e+00 lineto -7.02008e+01 3.608562e+00 lineto -6.977543e+01 3.500912e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.211792e+01 3.733636e+00 moveto -6.977543e+01 3.500912e+00 lineto -7.02008e+01 3.608562e+00 lineto -7.275195e+01 3.894092e+00 lineto -7.211792e+01 3.733636e+00 lineto -closepath -gsave -4.594328e-01 4.594328e-01 4.594328e-01 setrgbcolor -fill -grestore -newpath -7.211792e+01 3.733636e+00 moveto -6.977543e+01 3.500912e+00 lineto -7.02008e+01 3.608562e+00 lineto -7.275195e+01 3.894092e+00 lineto -7.211792e+01 3.733636e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.440652e+01 4.286335e+00 moveto -7.211792e+01 3.733636e+00 lineto -7.275195e+01 3.894092e+00 lineto -7.524441e+01 4.498382e+00 lineto -7.440652e+01 4.286335e+00 lineto -closepath -gsave -4.460304e-01 4.460304e-01 4.460304e-01 setrgbcolor -fill -grestore -newpath -7.440652e+01 4.286335e+00 moveto -7.211792e+01 3.733636e+00 lineto -7.275195e+01 3.894092e+00 lineto -7.524441e+01 4.498382e+00 lineto -7.440652e+01 4.286335e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.045029e+01 8.850449e+01 moveto -6.283145e+01 8.838477e+01 lineto -6.263828e+01 8.833588e+01 lineto -6.004503e+01 8.840193e+01 lineto -6.045029e+01 8.850449e+01 lineto -closepath -gsave -4.767434e-01 4.767434e-01 4.767434e-01 setrgbcolor -fill -grestore -newpath -6.045029e+01 8.850449e+01 moveto -6.283145e+01 8.838477e+01 lineto -6.263828e+01 8.833588e+01 lineto -6.004503e+01 8.840193e+01 lineto -6.045029e+01 8.850449e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.810358e+01 8.830243e+01 moveto -6.045029e+01 8.850449e+01 lineto -6.004503e+01 8.840193e+01 lineto -5.748929e+01 8.814697e+01 lineto -5.810358e+01 8.830243e+01 lineto -closepath -gsave -4.608308e-01 4.608308e-01 4.608308e-01 setrgbcolor -fill -grestore -newpath -5.810358e+01 8.830243e+01 moveto -6.045029e+01 8.850449e+01 lineto -6.004503e+01 8.840193e+01 lineto -5.748929e+01 8.814697e+01 lineto -5.810358e+01 8.830243e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.580908e+01 8.778013e+01 moveto -5.810358e+01 8.830243e+01 lineto -5.748929e+01 8.814697e+01 lineto -5.49904e+01 8.757294e+01 lineto -5.580908e+01 8.778013e+01 lineto -closepath -gsave -4.472123e-01 4.472123e-01 4.472123e-01 setrgbcolor -fill -grestore -newpath -5.580908e+01 8.778013e+01 moveto -5.810358e+01 8.830243e+01 lineto -5.748929e+01 8.814697e+01 lineto -5.49904e+01 8.757294e+01 lineto -5.580908e+01 8.778013e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.761028e+01 3.643954e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.780768e+01 3.701159e+00 lineto -6.761028e+01 3.643954e+00 lineto -closepath -gsave -4.932292e-01 4.932292e-01 4.932292e-01 setrgbcolor -fill -grestore -newpath -6.761028e+01 3.643954e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.780768e+01 3.701159e+00 lineto -6.761028e+01 3.643954e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.02008e+01 3.608562e+00 moveto -6.761028e+01 3.643954e+00 lineto -6.780768e+01 3.701159e+00 lineto -7.05941e+01 3.722539e+00 lineto -7.02008e+01 3.608562e+00 lineto -closepath -gsave -4.754287e-01 4.754287e-01 4.754287e-01 setrgbcolor -fill -grestore -newpath -7.02008e+01 3.608562e+00 moveto -6.761028e+01 3.643954e+00 lineto -6.780768e+01 3.701159e+00 lineto -7.05941e+01 3.722539e+00 lineto -7.02008e+01 3.608562e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.275195e+01 3.894092e+00 moveto -7.02008e+01 3.608562e+00 lineto -7.05941e+01 3.722539e+00 lineto -7.333818e+01 4.063978e+00 lineto -7.275195e+01 3.894092e+00 lineto -closepath -gsave -4.598636e-01 4.598636e-01 4.598636e-01 setrgbcolor -fill -grestore -newpath -7.275195e+01 3.894092e+00 moveto -7.02008e+01 3.608562e+00 lineto -7.05941e+01 3.722539e+00 lineto -7.333818e+01 4.063978e+00 lineto -7.275195e+01 3.894092e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.524441e+01 4.498382e+00 moveto -7.275195e+01 3.894092e+00 lineto -7.333818e+01 4.063978e+00 lineto -7.601913e+01 4.722891e+00 lineto -7.524441e+01 4.498382e+00 lineto -closepath -gsave -4.465358e-01 4.465358e-01 4.465358e-01 setrgbcolor -fill -grestore -newpath -7.524441e+01 4.498382e+00 moveto -7.275195e+01 3.894092e+00 lineto -7.333818e+01 4.063978e+00 lineto -7.601913e+01 4.722891e+00 lineto -7.524441e+01 4.498382e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.004503e+01 8.840193e+01 moveto -6.263828e+01 8.833588e+01 lineto -6.245968e+01 8.828413e+01 lineto -5.967031e+01 8.829334e+01 lineto -6.004503e+01 8.840193e+01 lineto -closepath -gsave -4.770316e-01 4.770316e-01 4.770316e-01 setrgbcolor -fill -grestore -newpath -6.004503e+01 8.840193e+01 moveto -6.263828e+01 8.833588e+01 lineto -6.245968e+01 8.828413e+01 lineto -5.967031e+01 8.829334e+01 lineto -6.004503e+01 8.840193e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.748929e+01 8.814697e+01 moveto -6.004503e+01 8.840193e+01 lineto -5.967031e+01 8.829334e+01 lineto -5.692129e+01 8.798237e+01 lineto -5.748929e+01 8.814697e+01 lineto -closepath -gsave -4.612519e-01 4.612519e-01 4.612519e-01 setrgbcolor -fill -grestore -newpath -5.748929e+01 8.814697e+01 moveto -6.004503e+01 8.840193e+01 lineto -5.967031e+01 8.829334e+01 lineto -5.692129e+01 8.798237e+01 lineto -5.748929e+01 8.814697e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.49904e+01 8.757294e+01 moveto -5.748929e+01 8.814697e+01 lineto -5.692129e+01 8.798237e+01 lineto -5.423343e+01 8.735357e+01 lineto -5.49904e+01 8.757294e+01 lineto -closepath -gsave -4.477127e-01 4.477127e-01 4.477127e-01 setrgbcolor -fill -grestore -newpath -5.49904e+01 8.757294e+01 moveto -5.748929e+01 8.814697e+01 lineto -5.692129e+01 8.798237e+01 lineto -5.423343e+01 8.735357e+01 lineto -5.49904e+01 8.757294e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.780768e+01 3.701159e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.798777e+01 3.761187e+00 lineto -6.780768e+01 3.701159e+00 lineto -closepath -gsave -4.934038e-01 4.934038e-01 4.934038e-01 setrgbcolor -fill -grestore -newpath -6.780768e+01 3.701159e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.798777e+01 3.761187e+00 lineto -6.780768e+01 3.701159e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.05941e+01 3.722539e+00 moveto -6.780768e+01 3.701159e+00 lineto -6.798777e+01 3.761187e+00 lineto -7.095292e+01 3.84214e+00 lineto -7.05941e+01 3.722539e+00 lineto -closepath -gsave -4.75883e-01 4.75883e-01 4.75883e-01 setrgbcolor -fill -grestore -newpath -7.05941e+01 3.722539e+00 moveto -6.780768e+01 3.701159e+00 lineto -6.798777e+01 3.761187e+00 lineto -7.095292e+01 3.84214e+00 lineto -7.05941e+01 3.722539e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.333818e+01 4.063978e+00 moveto -7.05941e+01 3.722539e+00 lineto -7.095292e+01 3.84214e+00 lineto -7.387301e+01 4.242247e+00 lineto -7.333818e+01 4.063978e+00 lineto -closepath -gsave -4.605104e-01 4.605104e-01 4.605104e-01 setrgbcolor -fill -grestore -newpath -7.333818e+01 4.063978e+00 moveto -7.05941e+01 3.722539e+00 lineto -7.095292e+01 3.84214e+00 lineto -7.387301e+01 4.242247e+00 lineto -7.333818e+01 4.063978e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.601913e+01 4.722891e+00 moveto -7.333818e+01 4.063978e+00 lineto -7.387301e+01 4.242247e+00 lineto -7.672592e+01 4.958478e+00 lineto -7.601913e+01 4.722891e+00 lineto -closepath -gsave -4.472969e-01 4.472969e-01 4.472969e-01 setrgbcolor -fill -grestore -newpath -7.601913e+01 4.722891e+00 moveto -7.333818e+01 4.063978e+00 lineto -7.387301e+01 4.242247e+00 lineto -7.672592e+01 4.958478e+00 lineto -7.601913e+01 4.722891e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.967031e+01 8.829334e+01 moveto -6.245968e+01 8.828413e+01 lineto -6.229674e+01 8.822981e+01 lineto -5.932846e+01 8.817939e+01 lineto -5.967031e+01 8.829334e+01 lineto -closepath -gsave -4.774631e-01 4.774631e-01 4.774631e-01 setrgbcolor -fill -grestore -newpath -5.967031e+01 8.829334e+01 moveto -6.245968e+01 8.828413e+01 lineto -6.229674e+01 8.822981e+01 lineto -5.932846e+01 8.817939e+01 lineto -5.967031e+01 8.829334e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.692129e+01 8.798237e+01 moveto -5.967031e+01 8.829334e+01 lineto -5.932846e+01 8.817939e+01 lineto -5.640311e+01 8.780965e+01 lineto -5.692129e+01 8.798237e+01 lineto -closepath -gsave -4.618838e-01 4.618838e-01 4.618838e-01 setrgbcolor -fill -grestore -newpath -5.692129e+01 8.798237e+01 moveto -5.967031e+01 8.829334e+01 lineto -5.932846e+01 8.817939e+01 lineto -5.640311e+01 8.780965e+01 lineto -5.692129e+01 8.798237e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.423343e+01 8.735357e+01 moveto -5.692129e+01 8.798237e+01 lineto -5.640311e+01 8.780965e+01 lineto -5.354285e+01 8.712339e+01 lineto -5.423343e+01 8.735357e+01 lineto -closepath -gsave -4.484659e-01 4.484659e-01 4.484659e-01 setrgbcolor -fill -grestore -newpath -5.423343e+01 8.735357e+01 moveto -5.692129e+01 8.798237e+01 lineto -5.640311e+01 8.780965e+01 lineto -5.354285e+01 8.712339e+01 lineto -5.423343e+01 8.735357e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.798777e+01 3.761187e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.814944e+01 3.823667e+00 lineto -6.798777e+01 3.761187e+00 lineto -closepath -gsave -4.936353e-01 4.936353e-01 4.936353e-01 setrgbcolor -fill -grestore -newpath -6.798777e+01 3.761187e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.814944e+01 3.823667e+00 lineto -6.798777e+01 3.761187e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.095292e+01 3.84214e+00 moveto -6.798777e+01 3.761187e+00 lineto -6.814944e+01 3.823667e+00 lineto -7.127504e+01 3.966627e+00 lineto -7.095292e+01 3.84214e+00 lineto -closepath -gsave -4.764871e-01 4.764871e-01 4.764871e-01 setrgbcolor -fill -grestore -newpath -7.095292e+01 3.84214e+00 moveto -6.798777e+01 3.761187e+00 lineto -6.814944e+01 3.823667e+00 lineto -7.127504e+01 3.966627e+00 lineto -7.095292e+01 3.84214e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.387301e+01 4.242247e+00 moveto -7.095292e+01 3.84214e+00 lineto -7.127504e+01 3.966627e+00 lineto -7.435313e+01 4.427799e+00 lineto -7.387301e+01 4.242247e+00 lineto -closepath -gsave -4.613737e-01 4.613737e-01 4.613737e-01 setrgbcolor -fill -grestore -newpath -7.387301e+01 4.242247e+00 moveto -7.095292e+01 3.84214e+00 lineto -7.127504e+01 3.966627e+00 lineto -7.435313e+01 4.427799e+00 lineto -7.387301e+01 4.242247e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.672592e+01 4.958478e+00 moveto -7.387301e+01 4.242247e+00 lineto -7.435313e+01 4.427799e+00 lineto -7.736041e+01 5.20369e+00 lineto -7.672592e+01 4.958478e+00 lineto -closepath -gsave -4.483171e-01 4.483171e-01 4.483171e-01 setrgbcolor -fill -grestore -newpath -7.672592e+01 4.958478e+00 moveto -7.387301e+01 4.242247e+00 lineto -7.435313e+01 4.427799e+00 lineto -7.736041e+01 5.20369e+00 lineto -7.672592e+01 4.958478e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.949006e+01 5.985412e+00 moveto -7.672592e+01 4.958478e+00 lineto -7.736041e+01 5.20369e+00 lineto -8.027412e+01 6.288427e+00 lineto -7.949006e+01 5.985412e+00 lineto -closepath -gsave -4.372689e-01 4.372689e-01 4.372689e-01 setrgbcolor -fill -grestore -newpath -7.949006e+01 5.985412e+00 moveto -7.672592e+01 4.958478e+00 lineto -7.736041e+01 5.20369e+00 lineto -8.027412e+01 6.288427e+00 lineto -7.949006e+01 5.985412e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.932846e+01 8.817939e+01 moveto -6.229674e+01 8.822981e+01 lineto -6.215047e+01 8.817328e+01 lineto -5.902157e+01 8.806079e+01 lineto -5.932846e+01 8.817939e+01 lineto -closepath -gsave -4.780368e-01 4.780368e-01 4.780368e-01 setrgbcolor -fill -grestore -newpath -5.932846e+01 8.817939e+01 moveto -6.229674e+01 8.822981e+01 lineto -6.215047e+01 8.817328e+01 lineto -5.902157e+01 8.806079e+01 lineto -5.932846e+01 8.817939e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.640311e+01 8.780965e+01 moveto -5.932846e+01 8.817939e+01 lineto -5.902157e+01 8.806079e+01 lineto -5.593793e+01 8.762987e+01 lineto -5.640311e+01 8.780965e+01 lineto -closepath -gsave -4.62727e-01 4.62727e-01 4.62727e-01 setrgbcolor -fill -grestore -newpath -5.640311e+01 8.780965e+01 moveto -5.932846e+01 8.817939e+01 lineto -5.902157e+01 8.806079e+01 lineto -5.593793e+01 8.762987e+01 lineto -5.640311e+01 8.780965e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.354285e+01 8.712339e+01 moveto -5.640311e+01 8.780965e+01 lineto -5.593793e+01 8.762987e+01 lineto -5.29229e+01 8.68838e+01 lineto -5.354285e+01 8.712339e+01 lineto -closepath -gsave -4.494752e-01 4.494752e-01 4.494752e-01 setrgbcolor -fill -grestore -newpath -5.354285e+01 8.712339e+01 moveto -5.640311e+01 8.780965e+01 lineto -5.593793e+01 8.762987e+01 lineto -5.29229e+01 8.68838e+01 lineto -5.354285e+01 8.712339e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.814944e+01 3.823667e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.829169e+01 3.888215e+00 lineto -6.814944e+01 3.823667e+00 lineto -closepath -gsave -4.939224e-01 4.939224e-01 4.939224e-01 setrgbcolor -fill -grestore -newpath -6.814944e+01 3.823667e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.829169e+01 3.888215e+00 lineto -6.814944e+01 3.823667e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.127504e+01 3.966627e+00 moveto -6.814944e+01 3.823667e+00 lineto -6.829169e+01 3.888215e+00 lineto -7.155846e+01 4.095234e+00 lineto -7.127504e+01 3.966627e+00 lineto -closepath -gsave -4.772398e-01 4.772398e-01 4.772398e-01 setrgbcolor -fill -grestore -newpath -7.127504e+01 3.966627e+00 moveto -6.814944e+01 3.823667e+00 lineto -6.829169e+01 3.888215e+00 lineto -7.155846e+01 4.095234e+00 lineto -7.127504e+01 3.966627e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.435313e+01 4.427799e+00 moveto -7.127504e+01 3.966627e+00 lineto -7.155846e+01 4.095234e+00 lineto -7.477558e+01 4.61949e+00 lineto -7.435313e+01 4.427799e+00 lineto -closepath -gsave -4.624541e-01 4.624541e-01 4.624541e-01 setrgbcolor -fill -grestore -newpath -7.435313e+01 4.427799e+00 moveto -7.127504e+01 3.966627e+00 lineto -7.155846e+01 4.095234e+00 lineto -7.477558e+01 4.61949e+00 lineto -7.435313e+01 4.427799e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.736041e+01 5.20369e+00 moveto -7.435313e+01 4.427799e+00 lineto -7.477558e+01 4.61949e+00 lineto -7.79187e+01 5.457016e+00 lineto -7.736041e+01 5.20369e+00 lineto -closepath -gsave -4.496007e-01 4.496007e-01 4.496007e-01 setrgbcolor -fill -grestore -newpath -7.736041e+01 5.20369e+00 moveto -7.435313e+01 4.427799e+00 lineto -7.477558e+01 4.61949e+00 lineto -7.79187e+01 5.457016e+00 lineto -7.736041e+01 5.20369e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.027412e+01 6.288427e+00 moveto -7.736041e+01 5.20369e+00 lineto -7.79187e+01 5.457016e+00 lineto -8.096401e+01 6.601469e+00 lineto -8.027412e+01 6.288427e+00 lineto -closepath -gsave -4.386474e-01 4.386474e-01 4.386474e-01 setrgbcolor -fill -grestore -newpath -8.027412e+01 6.288427e+00 moveto -7.736041e+01 5.20369e+00 lineto -7.79187e+01 5.457016e+00 lineto -8.096401e+01 6.601469e+00 lineto -8.027412e+01 6.288427e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.902157e+01 8.806079e+01 moveto -6.215047e+01 8.817328e+01 lineto -6.202176e+01 8.811488e+01 lineto -5.875154e+01 8.793826e+01 lineto -5.902157e+01 8.806079e+01 lineto -closepath -gsave -4.787511e-01 4.787511e-01 4.787511e-01 setrgbcolor -fill -grestore -newpath -5.902157e+01 8.806079e+01 moveto -6.215047e+01 8.817328e+01 lineto -6.202176e+01 8.811488e+01 lineto -5.875154e+01 8.793826e+01 lineto -5.902157e+01 8.806079e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.593793e+01 8.762987e+01 moveto -5.902157e+01 8.806079e+01 lineto -5.875154e+01 8.793826e+01 lineto -5.552862e+01 8.744414e+01 lineto -5.593793e+01 8.762987e+01 lineto -closepath -gsave -4.637818e-01 4.637818e-01 4.637818e-01 setrgbcolor -fill -grestore -newpath -5.593793e+01 8.762987e+01 moveto -5.902157e+01 8.806079e+01 lineto -5.875154e+01 8.793826e+01 lineto -5.552862e+01 8.744414e+01 lineto -5.593793e+01 8.762987e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.29229e+01 8.68838e+01 moveto -5.593793e+01 8.762987e+01 lineto -5.552862e+01 8.744414e+01 lineto -5.237741e+01 8.663628e+01 lineto -5.29229e+01 8.68838e+01 lineto -closepath -gsave -4.507443e-01 4.507443e-01 4.507443e-01 setrgbcolor -fill -grestore -newpath -5.29229e+01 8.68838e+01 moveto -5.593793e+01 8.762987e+01 lineto -5.552862e+01 8.744414e+01 lineto -5.237741e+01 8.663628e+01 lineto -5.29229e+01 8.68838e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.829169e+01 3.888215e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.841365e+01 3.954431e+00 lineto -6.829169e+01 3.888215e+00 lineto -closepath -gsave -4.942639e-01 4.942639e-01 4.942639e-01 setrgbcolor -fill -grestore -newpath -6.829169e+01 3.888215e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.841365e+01 3.954431e+00 lineto -6.829169e+01 3.888215e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.155846e+01 4.095234e+00 moveto -6.829169e+01 3.888215e+00 lineto -6.841365e+01 3.954431e+00 lineto -7.180145e+01 4.227166e+00 lineto -7.155846e+01 4.095234e+00 lineto -closepath -gsave -4.78139e-01 4.78139e-01 4.78139e-01 setrgbcolor -fill -grestore -newpath -7.155846e+01 4.095234e+00 moveto -6.829169e+01 3.888215e+00 lineto -6.841365e+01 3.954431e+00 lineto -7.180145e+01 4.227166e+00 lineto -7.155846e+01 4.095234e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.477558e+01 4.61949e+00 moveto -7.155846e+01 4.095234e+00 lineto -7.180145e+01 4.227166e+00 lineto -7.513777e+01 4.81614e+00 lineto -7.477558e+01 4.61949e+00 lineto -closepath -gsave -4.637522e-01 4.637522e-01 4.637522e-01 setrgbcolor -fill -grestore -newpath -7.477558e+01 4.61949e+00 moveto -7.155846e+01 4.095234e+00 lineto -7.180145e+01 4.227166e+00 lineto -7.513777e+01 4.81614e+00 lineto -7.477558e+01 4.61949e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.79187e+01 5.457016e+00 moveto -7.477558e+01 4.61949e+00 lineto -7.513777e+01 4.81614e+00 lineto -7.839734e+01 5.716893e+00 lineto -7.79187e+01 5.457016e+00 lineto -closepath -gsave -4.511527e-01 4.511527e-01 4.511527e-01 setrgbcolor -fill -grestore -newpath -7.79187e+01 5.457016e+00 moveto -7.477558e+01 4.61949e+00 lineto -7.513777e+01 4.81614e+00 lineto -7.839734e+01 5.716893e+00 lineto -7.79187e+01 5.457016e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.096401e+01 6.601469e+00 moveto -7.79187e+01 5.457016e+00 lineto -7.839734e+01 5.716893e+00 lineto -8.155548e+01 6.922607e+00 lineto -8.096401e+01 6.601469e+00 lineto -closepath -gsave -4.403265e-01 4.403265e-01 4.403265e-01 setrgbcolor -fill -grestore -newpath -8.096401e+01 6.601469e+00 moveto -7.79187e+01 5.457016e+00 lineto -7.839734e+01 5.716893e+00 lineto -8.155548e+01 6.922607e+00 lineto -8.096401e+01 6.601469e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.388847e+01 8.044187e+00 moveto -8.096401e+01 6.601469e+00 lineto -8.155548e+01 6.922607e+00 lineto -8.458829e+01 8.424154e+00 lineto -8.388847e+01 8.044187e+00 lineto -closepath -gsave -4.312051e-01 4.312051e-01 4.312051e-01 setrgbcolor -fill -grestore -newpath -8.388847e+01 8.044187e+00 moveto -8.096401e+01 6.601469e+00 lineto -8.155548e+01 6.922607e+00 lineto -8.458829e+01 8.424154e+00 lineto -8.388847e+01 8.044187e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.875154e+01 8.793826e+01 moveto -6.202176e+01 8.811488e+01 lineto -6.191142e+01 8.805497e+01 lineto -5.852003e+01 8.781256e+01 lineto -5.875154e+01 8.793826e+01 lineto -closepath -gsave -4.796041e-01 4.796041e-01 4.796041e-01 setrgbcolor -fill -grestore -newpath -5.875154e+01 8.793826e+01 moveto -6.202176e+01 8.811488e+01 lineto -6.191142e+01 8.805497e+01 lineto -5.852003e+01 8.781256e+01 lineto -5.875154e+01 8.793826e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.552862e+01 8.744414e+01 moveto -5.875154e+01 8.793826e+01 lineto -5.852003e+01 8.781256e+01 lineto -5.517771e+01 8.725361e+01 lineto -5.552862e+01 8.744414e+01 lineto -closepath -gsave -4.650483e-01 4.650483e-01 4.650483e-01 setrgbcolor -fill -grestore -newpath -5.552862e+01 8.744414e+01 moveto -5.875154e+01 8.793826e+01 lineto -5.852003e+01 8.781256e+01 lineto -5.517771e+01 8.725361e+01 lineto -5.552862e+01 8.744414e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.237741e+01 8.663628e+01 moveto -5.552862e+01 8.744414e+01 lineto -5.517771e+01 8.725361e+01 lineto -5.190974e+01 8.638236e+01 lineto -5.237741e+01 8.663628e+01 lineto -closepath -gsave -4.522779e-01 4.522779e-01 4.522779e-01 setrgbcolor -fill -grestore -newpath -5.237741e+01 8.663628e+01 moveto -5.552862e+01 8.744414e+01 lineto -5.517771e+01 8.725361e+01 lineto -5.190974e+01 8.638236e+01 lineto -5.237741e+01 8.663628e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.841365e+01 3.954431e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.851456e+01 4.021909e+00 lineto -6.841365e+01 3.954431e+00 lineto -closepath -gsave -4.946579e-01 4.946579e-01 4.946579e-01 setrgbcolor -fill -grestore -newpath -6.841365e+01 3.954431e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.851456e+01 4.021909e+00 lineto -6.841365e+01 3.954431e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.180145e+01 4.227166e+00 moveto -6.841365e+01 3.954431e+00 lineto -6.851456e+01 4.021909e+00 lineto -7.200251e+01 4.361611e+00 lineto -7.180145e+01 4.227166e+00 lineto -closepath -gsave -4.791826e-01 4.791826e-01 4.791826e-01 setrgbcolor -fill -grestore -newpath -7.180145e+01 4.227166e+00 moveto -6.841365e+01 3.954431e+00 lineto -6.851456e+01 4.021909e+00 lineto -7.200251e+01 4.361611e+00 lineto -7.180145e+01 4.227166e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.513777e+01 4.81614e+00 moveto -7.180145e+01 4.227166e+00 lineto -7.200251e+01 4.361611e+00 lineto -7.543745e+01 5.016534e+00 lineto -7.513777e+01 4.81614e+00 lineto -closepath -gsave -4.652683e-01 4.652683e-01 4.652683e-01 setrgbcolor -fill -grestore -newpath -7.513777e+01 4.81614e+00 moveto -7.180145e+01 4.227166e+00 lineto -7.200251e+01 4.361611e+00 lineto -7.543745e+01 5.016534e+00 lineto -7.513777e+01 4.81614e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.839734e+01 5.716893e+00 moveto -7.513777e+01 4.81614e+00 lineto -7.543745e+01 5.016534e+00 lineto -7.879338e+01 5.98172e+00 lineto -7.839734e+01 5.716893e+00 lineto -closepath -gsave -4.529786e-01 4.529786e-01 4.529786e-01 setrgbcolor -fill -grestore -newpath -7.839734e+01 5.716893e+00 moveto -7.513777e+01 4.81614e+00 lineto -7.543745e+01 5.016534e+00 lineto -7.879338e+01 5.98172e+00 lineto -7.839734e+01 5.716893e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.155548e+01 6.922607e+00 moveto -7.839734e+01 5.716893e+00 lineto -7.879338e+01 5.98172e+00 lineto -8.204488e+01 7.249861e+00 lineto -8.155548e+01 6.922607e+00 lineto -closepath -gsave -4.423183e-01 4.423183e-01 4.423183e-01 setrgbcolor -fill -grestore -newpath -8.155548e+01 6.922607e+00 moveto -7.839734e+01 5.716893e+00 lineto -7.879338e+01 5.98172e+00 lineto -8.204488e+01 7.249861e+00 lineto -8.155548e+01 6.922607e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.458829e+01 8.424154e+00 moveto -8.155548e+01 6.922607e+00 lineto -8.204488e+01 7.249861e+00 lineto -8.516734e+01 8.811358e+00 lineto -8.458829e+01 8.424154e+00 lineto -closepath -gsave -4.332411e-01 4.332411e-01 4.332411e-01 setrgbcolor -fill -grestore -newpath -8.458829e+01 8.424154e+00 moveto -8.155548e+01 6.922607e+00 lineto -8.204488e+01 7.249861e+00 lineto -8.516734e+01 8.811358e+00 lineto -8.458829e+01 8.424154e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.747281e+01 1.021017e+01 moveto -8.458829e+01 8.424154e+00 lineto -8.516734e+01 8.811358e+00 lineto -8.813713e+01 1.065439e+01 lineto -8.747281e+01 1.021017e+01 lineto -closepath -gsave -4.256579e-01 4.256579e-01 4.256579e-01 setrgbcolor -fill -grestore -newpath -8.747281e+01 1.021017e+01 moveto -8.458829e+01 8.424154e+00 lineto -8.516734e+01 8.811358e+00 lineto -8.813713e+01 1.065439e+01 lineto -8.747281e+01 1.021017e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.852003e+01 8.781256e+01 moveto -6.191142e+01 8.805497e+01 lineto -6.182011e+01 8.799392e+01 lineto -5.832848e+01 8.768447e+01 lineto -5.852003e+01 8.781256e+01 lineto -closepath -gsave -4.805935e-01 4.805935e-01 4.805935e-01 setrgbcolor -fill -grestore -newpath -5.852003e+01 8.781256e+01 moveto -6.191142e+01 8.805497e+01 lineto -6.182011e+01 8.799392e+01 lineto -5.832848e+01 8.768447e+01 lineto -5.852003e+01 8.781256e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.517771e+01 8.725361e+01 moveto -5.852003e+01 8.781256e+01 lineto -5.832848e+01 8.768447e+01 lineto -5.488735e+01 8.705945e+01 lineto -5.517771e+01 8.725361e+01 lineto -closepath -gsave -4.665266e-01 4.665266e-01 4.665266e-01 setrgbcolor -fill -grestore -newpath -5.517771e+01 8.725361e+01 moveto -5.852003e+01 8.781256e+01 lineto -5.832848e+01 8.768447e+01 lineto -5.488735e+01 8.705945e+01 lineto -5.517771e+01 8.725361e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.190974e+01 8.638236e+01 moveto -5.517771e+01 8.725361e+01 lineto -5.488735e+01 8.705945e+01 lineto -5.152278e+01 8.61236e+01 lineto -5.190974e+01 8.638236e+01 lineto -closepath -gsave -4.540807e-01 4.540807e-01 4.540807e-01 setrgbcolor -fill -grestore -newpath -5.190974e+01 8.638236e+01 moveto -5.517771e+01 8.725361e+01 lineto -5.488735e+01 8.705945e+01 lineto -5.152278e+01 8.61236e+01 lineto -5.190974e+01 8.638236e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.851456e+01 4.021909e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.85938e+01 4.090232e+00 lineto -6.851456e+01 4.021909e+00 lineto -closepath -gsave -4.951024e-01 4.951024e-01 4.951024e-01 setrgbcolor -fill -grestore -newpath -6.851456e+01 4.021909e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.85938e+01 4.090232e+00 lineto -6.851456e+01 4.021909e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.200251e+01 4.361611e+00 moveto -6.851456e+01 4.021909e+00 lineto -6.85938e+01 4.090232e+00 lineto -7.21604e+01 4.49774e+00 lineto -7.200251e+01 4.361611e+00 lineto -closepath -gsave -4.803676e-01 4.803676e-01 4.803676e-01 setrgbcolor -fill -grestore -newpath -7.200251e+01 4.361611e+00 moveto -6.851456e+01 4.021909e+00 lineto -6.85938e+01 4.090232e+00 lineto -7.21604e+01 4.49774e+00 lineto -7.200251e+01 4.361611e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.543745e+01 5.016534e+00 moveto -7.200251e+01 4.361611e+00 lineto -7.21604e+01 4.49774e+00 lineto -7.567278e+01 5.219438e+00 lineto -7.543745e+01 5.016534e+00 lineto -closepath -gsave -4.670024e-01 4.670024e-01 4.670024e-01 setrgbcolor -fill -grestore -newpath -7.543745e+01 5.016534e+00 moveto -7.200251e+01 4.361611e+00 lineto -7.21604e+01 4.49774e+00 lineto -7.567278e+01 5.219438e+00 lineto -7.543745e+01 5.016534e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.879338e+01 5.98172e+00 moveto -7.543745e+01 5.016534e+00 lineto -7.567278e+01 5.219438e+00 lineto -7.910438e+01 6.249863e+00 lineto -7.879338e+01 5.98172e+00 lineto -closepath -gsave -4.550839e-01 4.550839e-01 4.550839e-01 setrgbcolor -fill -grestore -newpath -7.879338e+01 5.98172e+00 moveto -7.543745e+01 5.016534e+00 lineto -7.567278e+01 5.219438e+00 lineto -7.910438e+01 6.249863e+00 lineto -7.879338e+01 5.98172e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.204488e+01 7.249861e+00 moveto -7.879338e+01 5.98172e+00 lineto -7.910438e+01 6.249863e+00 lineto -8.242919e+01 7.581214e+00 lineto -8.204488e+01 7.249861e+00 lineto -closepath -gsave -4.446361e-01 4.446361e-01 4.446361e-01 setrgbcolor -fill -grestore -newpath -8.204488e+01 7.249861e+00 moveto -7.879338e+01 5.98172e+00 lineto -7.910438e+01 6.249863e+00 lineto -8.242919e+01 7.581214e+00 lineto -8.204488e+01 7.249861e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.516734e+01 8.811358e+00 moveto -8.204488e+01 7.249861e+00 lineto -8.242919e+01 7.581214e+00 lineto -8.562206e+01 9.203411e+00 lineto -8.516734e+01 8.811358e+00 lineto -closepath -gsave -4.356351e-01 4.356351e-01 4.356351e-01 setrgbcolor -fill -grestore -newpath -8.516734e+01 8.811358e+00 moveto -8.204488e+01 7.249861e+00 lineto -8.242919e+01 7.581214e+00 lineto -8.562206e+01 9.203411e+00 lineto -8.516734e+01 8.811358e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.813713e+01 1.065439e+01 moveto -8.516734e+01 8.811358e+00 lineto -8.562206e+01 9.203411e+00 lineto -8.865881e+01 1.110418e+01 lineto -8.813713e+01 1.065439e+01 lineto -closepath -gsave -4.280168e-01 4.280168e-01 4.280168e-01 setrgbcolor -fill -grestore -newpath -8.813713e+01 1.065439e+01 moveto -8.516734e+01 8.811358e+00 lineto -8.562206e+01 9.203411e+00 lineto -8.865881e+01 1.110418e+01 lineto -8.813713e+01 1.065439e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.093176e+01 1.2765e+01 moveto -8.813713e+01 1.065439e+01 lineto -8.865881e+01 1.110418e+01 lineto -9.151645e+01 1.326912e+01 lineto -9.093176e+01 1.2765e+01 lineto -closepath -gsave -4.216847e-01 4.216847e-01 4.216847e-01 setrgbcolor -fill -grestore -newpath -9.093176e+01 1.2765e+01 moveto -8.813713e+01 1.065439e+01 lineto -8.865881e+01 1.110418e+01 lineto -9.151645e+01 1.326912e+01 lineto -9.093176e+01 1.2765e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.832848e+01 8.768447e+01 moveto -6.182011e+01 8.799392e+01 lineto -6.174842e+01 8.79321e+01 lineto -5.817806e+01 8.755478e+01 lineto -5.832848e+01 8.768447e+01 lineto -closepath -gsave -4.817163e-01 4.817163e-01 4.817163e-01 setrgbcolor -fill -grestore -newpath -5.832848e+01 8.768447e+01 moveto -6.182011e+01 8.799392e+01 lineto -6.174842e+01 8.79321e+01 lineto -5.817806e+01 8.755478e+01 lineto -5.832848e+01 8.768447e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.488735e+01 8.705945e+01 moveto -5.832848e+01 8.768447e+01 lineto -5.817806e+01 8.755478e+01 lineto -5.465934e+01 8.686286e+01 lineto -5.488735e+01 8.705945e+01 lineto -closepath -gsave -4.682162e-01 4.682162e-01 4.682162e-01 setrgbcolor -fill -grestore -newpath -5.488735e+01 8.705945e+01 moveto -5.832848e+01 8.768447e+01 lineto -5.817806e+01 8.755478e+01 lineto -5.465934e+01 8.686286e+01 lineto -5.488735e+01 8.705945e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.152278e+01 8.61236e+01 moveto -5.488735e+01 8.705945e+01 lineto -5.465934e+01 8.686286e+01 lineto -5.121891e+01 8.58616e+01 lineto -5.152278e+01 8.61236e+01 lineto -closepath -gsave -4.561579e-01 4.561579e-01 4.561579e-01 setrgbcolor -fill -grestore -newpath -5.152278e+01 8.61236e+01 moveto -5.488735e+01 8.705945e+01 lineto -5.465934e+01 8.686286e+01 lineto -5.121891e+01 8.58616e+01 lineto -5.152278e+01 8.61236e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.85938e+01 4.090232e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.865089e+01 4.158979e+00 lineto -6.85938e+01 4.090232e+00 lineto -closepath -gsave -4.955952e-01 4.955952e-01 4.955952e-01 setrgbcolor -fill -grestore -newpath -6.85938e+01 4.090232e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.865089e+01 4.158979e+00 lineto -6.85938e+01 4.090232e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.21604e+01 4.49774e+00 moveto -6.85938e+01 4.090232e+00 lineto -6.865089e+01 4.158979e+00 lineto -7.227414e+01 4.634713e+00 lineto -7.21604e+01 4.49774e+00 lineto -closepath -gsave -4.816906e-01 4.816906e-01 4.816906e-01 setrgbcolor -fill -grestore -newpath -7.21604e+01 4.49774e+00 moveto -6.85938e+01 4.090232e+00 lineto -6.865089e+01 4.158979e+00 lineto -7.227414e+01 4.634713e+00 lineto -7.21604e+01 4.49774e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.567278e+01 5.219438e+00 moveto -7.21604e+01 4.49774e+00 lineto -7.227414e+01 4.634713e+00 lineto -7.584232e+01 5.423601e+00 lineto -7.567278e+01 5.219438e+00 lineto -closepath -gsave -4.689538e-01 4.689538e-01 4.689538e-01 setrgbcolor -fill -grestore -newpath -7.567278e+01 5.219438e+00 moveto -7.21604e+01 4.49774e+00 lineto -7.227414e+01 4.634713e+00 lineto -7.584232e+01 5.423601e+00 lineto -7.567278e+01 5.219438e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.910438e+01 6.249863e+00 moveto -7.567278e+01 5.219438e+00 lineto -7.584232e+01 5.423601e+00 lineto -7.932842e+01 6.51967e+00 lineto -7.910438e+01 6.249863e+00 lineto -closepath -gsave -4.574742e-01 4.574742e-01 4.574742e-01 setrgbcolor -fill -grestore -newpath -7.910438e+01 6.249863e+00 moveto -7.567278e+01 5.219438e+00 lineto -7.584232e+01 5.423601e+00 lineto -7.932842e+01 6.51967e+00 lineto -7.910438e+01 6.249863e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.242919e+01 7.581214e+00 moveto -7.910438e+01 6.249863e+00 lineto -7.932842e+01 6.51967e+00 lineto -8.270604e+01 7.914622e+00 lineto -8.242919e+01 7.581214e+00 lineto -closepath -gsave -4.472938e-01 4.472938e-01 4.472938e-01 setrgbcolor -fill -grestore -newpath -8.242919e+01 7.581214e+00 moveto -7.910438e+01 6.249863e+00 lineto -7.932842e+01 6.51967e+00 lineto -8.270604e+01 7.914622e+00 lineto -8.242919e+01 7.581214e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.562206e+01 9.203411e+00 moveto -8.242919e+01 7.581214e+00 lineto -8.270604e+01 7.914622e+00 lineto -8.594963e+01 9.597897e+00 lineto -8.562206e+01 9.203411e+00 lineto -closepath -gsave -4.38411e-01 4.38411e-01 4.38411e-01 setrgbcolor -fill -grestore -newpath -8.562206e+01 9.203411e+00 moveto -8.242919e+01 7.581214e+00 lineto -8.270604e+01 7.914622e+00 lineto -8.594963e+01 9.597897e+00 lineto -8.562206e+01 9.203411e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.865881e+01 1.110418e+01 moveto -8.562206e+01 9.203411e+00 lineto -8.594963e+01 9.597897e+00 lineto -8.903461e+01 1.155675e+01 lineto -8.865881e+01 1.110418e+01 lineto -closepath -gsave -4.307864e-01 4.307864e-01 4.307864e-01 setrgbcolor -fill -grestore -newpath -8.865881e+01 1.110418e+01 moveto -8.562206e+01 9.203411e+00 lineto -8.594963e+01 9.597897e+00 lineto -8.903461e+01 1.155675e+01 lineto -8.865881e+01 1.110418e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.151645e+01 1.326912e+01 moveto -8.865881e+01 1.110418e+01 lineto -8.903461e+01 1.155675e+01 lineto -9.193765e+01 1.377636e+01 lineto -9.151645e+01 1.326912e+01 lineto -closepath -gsave -4.243497e-01 4.243497e-01 4.243497e-01 setrgbcolor -fill -grestore -newpath -9.151645e+01 1.326912e+01 moveto -8.865881e+01 1.110418e+01 lineto -8.903461e+01 1.155675e+01 lineto -9.193765e+01 1.377636e+01 lineto -9.151645e+01 1.326912e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.417335e+01 1.568184e+01 moveto -9.151645e+01 1.326912e+01 lineto -9.193765e+01 1.377636e+01 lineto -9.463675e+01 1.623991e+01 lineto -9.417335e+01 1.568184e+01 lineto -closepath -gsave -4.190066e-01 4.190066e-01 4.190066e-01 setrgbcolor -fill -grestore -newpath -9.417335e+01 1.568184e+01 moveto -9.151645e+01 1.326912e+01 lineto -9.193765e+01 1.377636e+01 lineto -9.463675e+01 1.623991e+01 lineto -9.417335e+01 1.568184e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.660939e+01 1.832409e+01 moveto -9.417335e+01 1.568184e+01 lineto -9.463675e+01 1.623991e+01 lineto -9.711149e+01 1.892876e+01 lineto -9.660939e+01 1.832409e+01 lineto -closepath -gsave -4.146468e-01 4.146468e-01 4.146468e-01 setrgbcolor -fill -grestore -newpath -9.660939e+01 1.832409e+01 moveto -9.417335e+01 1.568184e+01 lineto -9.463675e+01 1.623991e+01 lineto -9.711149e+01 1.892876e+01 lineto -9.660939e+01 1.832409e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.817806e+01 8.755478e+01 moveto -6.174842e+01 8.79321e+01 lineto -6.169677e+01 8.78699e+01 lineto -5.806969e+01 8.742428e+01 lineto -5.817806e+01 8.755478e+01 lineto -closepath -gsave -4.829689e-01 4.829689e-01 4.829689e-01 setrgbcolor -fill -grestore -newpath -5.817806e+01 8.755478e+01 moveto -6.174842e+01 8.79321e+01 lineto -6.169677e+01 8.78699e+01 lineto -5.806969e+01 8.742428e+01 lineto -5.817806e+01 8.755478e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.465934e+01 8.686286e+01 moveto -5.817806e+01 8.755478e+01 lineto -5.806969e+01 8.742428e+01 lineto -5.449508e+01 8.666506e+01 lineto -5.465934e+01 8.686286e+01 lineto -closepath -gsave -4.70116e-01 4.70116e-01 4.70116e-01 setrgbcolor -fill -grestore -newpath -5.465934e+01 8.686286e+01 moveto -5.817806e+01 8.755478e+01 lineto -5.806969e+01 8.742428e+01 lineto -5.449508e+01 8.666506e+01 lineto -5.465934e+01 8.686286e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.121891e+01 8.58616e+01 moveto -5.465934e+01 8.686286e+01 lineto -5.449508e+01 8.666506e+01 lineto -5.1e+01 8.559798e+01 lineto -5.121891e+01 8.58616e+01 lineto -closepath -gsave -4.58514e-01 4.58514e-01 4.58514e-01 setrgbcolor -fill -grestore -newpath -5.121891e+01 8.58616e+01 moveto -5.465934e+01 8.686286e+01 lineto -5.449508e+01 8.666506e+01 lineto -5.1e+01 8.559798e+01 lineto -5.121891e+01 8.58616e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.865089e+01 4.158979e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.868546e+01 4.227726e+00 lineto -6.865089e+01 4.158979e+00 lineto -closepath -gsave -4.961337e-01 4.961337e-01 4.961337e-01 setrgbcolor -fill -grestore -newpath -6.865089e+01 4.158979e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.868546e+01 4.227726e+00 lineto -6.865089e+01 4.158979e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.227414e+01 4.634713e+00 moveto -6.865089e+01 4.158979e+00 lineto -6.868546e+01 4.227726e+00 lineto -7.234303e+01 4.771687e+00 lineto -7.227414e+01 4.634713e+00 lineto -closepath -gsave -4.831474e-01 4.831474e-01 4.831474e-01 setrgbcolor -fill -grestore -newpath -7.227414e+01 4.634713e+00 moveto -6.865089e+01 4.158979e+00 lineto -6.868546e+01 4.227726e+00 lineto -7.234303e+01 4.771687e+00 lineto -7.227414e+01 4.634713e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.584232e+01 5.423601e+00 moveto -7.227414e+01 4.634713e+00 lineto -7.234303e+01 4.771687e+00 lineto -7.5945e+01 5.627764e+00 lineto -7.584232e+01 5.423601e+00 lineto -closepath -gsave -4.711211e-01 4.711211e-01 4.711211e-01 setrgbcolor -fill -grestore -newpath -7.584232e+01 5.423601e+00 moveto -7.227414e+01 4.634713e+00 lineto -7.234303e+01 4.771687e+00 lineto -7.5945e+01 5.627764e+00 lineto -7.584232e+01 5.423601e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.932842e+01 6.51967e+00 moveto -7.584232e+01 5.423601e+00 lineto -7.5945e+01 5.627764e+00 lineto -7.946412e+01 6.789476e+00 lineto -7.932842e+01 6.51967e+00 lineto -closepath -gsave -4.601543e-01 4.601543e-01 4.601543e-01 setrgbcolor -fill -grestore -newpath -7.932842e+01 6.51967e+00 moveto -7.584232e+01 5.423601e+00 lineto -7.5945e+01 5.627764e+00 lineto -7.946412e+01 6.789476e+00 lineto -7.932842e+01 6.51967e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.270604e+01 7.914622e+00 moveto -7.932842e+01 6.51967e+00 lineto -7.946412e+01 6.789476e+00 lineto -8.287373e+01 8.24803e+00 lineto -8.270604e+01 7.914622e+00 lineto -closepath -gsave -4.503052e-01 4.503052e-01 4.503052e-01 setrgbcolor -fill -grestore -newpath -8.270604e+01 7.914622e+00 moveto -7.932842e+01 6.51967e+00 lineto -7.946412e+01 6.789476e+00 lineto -8.287373e+01 8.24803e+00 lineto -8.270604e+01 7.914622e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.594963e+01 9.597897e+00 moveto -8.270604e+01 7.914622e+00 lineto -8.287373e+01 8.24803e+00 lineto -8.614804e+01 9.992382e+00 lineto -8.594963e+01 9.597897e+00 lineto -closepath -gsave -4.415932e-01 4.415932e-01 4.415932e-01 setrgbcolor -fill -grestore -newpath -8.594963e+01 9.597897e+00 moveto -8.270604e+01 7.914622e+00 lineto -8.287373e+01 8.24803e+00 lineto -8.614804e+01 9.992382e+00 lineto -8.594963e+01 9.597897e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.903461e+01 1.155675e+01 moveto -8.594963e+01 9.597897e+00 lineto -8.614804e+01 9.992382e+00 lineto -8.926224e+01 1.200933e+01 lineto -8.903461e+01 1.155675e+01 lineto -closepath -gsave -4.340031e-01 4.340031e-01 4.340031e-01 setrgbcolor -fill -grestore -newpath -8.903461e+01 1.155675e+01 moveto -8.594963e+01 9.597897e+00 lineto -8.614804e+01 9.992382e+00 lineto -8.926224e+01 1.200933e+01 lineto -8.903461e+01 1.155675e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.193765e+01 1.377636e+01 moveto -8.903461e+01 1.155675e+01 lineto -8.926224e+01 1.200933e+01 lineto -9.219277e+01 1.42836e+01 lineto -9.193765e+01 1.377636e+01 lineto -closepath -gsave -4.274902e-01 4.274902e-01 4.274902e-01 setrgbcolor -fill -grestore -newpath -9.193765e+01 1.377636e+01 moveto -8.903461e+01 1.155675e+01 lineto -8.926224e+01 1.200933e+01 lineto -9.219277e+01 1.42836e+01 lineto -9.193765e+01 1.377636e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.463675e+01 1.623991e+01 moveto -9.193765e+01 1.377636e+01 lineto -9.219277e+01 1.42836e+01 lineto -9.491743e+01 1.679798e+01 lineto -9.463675e+01 1.623991e+01 lineto -closepath -gsave -4.219862e-01 4.219862e-01 4.219862e-01 setrgbcolor -fill -grestore -newpath -9.463675e+01 1.623991e+01 moveto -9.193765e+01 1.377636e+01 lineto -9.219277e+01 1.42836e+01 lineto -9.491743e+01 1.679798e+01 lineto -9.463675e+01 1.623991e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.711149e+01 1.892876e+01 moveto -9.463675e+01 1.623991e+01 lineto -9.491743e+01 1.679798e+01 lineto -9.741561e+01 1.953342e+01 lineto -9.711149e+01 1.892876e+01 lineto -closepath -gsave -4.174057e-01 4.174057e-01 4.174057e-01 setrgbcolor -fill -grestore -newpath -9.711149e+01 1.892876e+01 moveto -9.463675e+01 1.623991e+01 lineto -9.491743e+01 1.679798e+01 lineto -9.741561e+01 1.953342e+01 lineto -9.711149e+01 1.892876e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.934314e+01 2.182255e+01 moveto -9.711149e+01 1.892876e+01 lineto -9.741561e+01 1.953342e+01 lineto -9.966839e+01 2.246924e+01 lineto -9.934314e+01 2.182255e+01 lineto -closepath -gsave -4.136517e-01 4.136517e-01 4.136517e-01 setrgbcolor -fill -grestore -newpath -9.934314e+01 2.182255e+01 moveto -9.711149e+01 1.892876e+01 lineto -9.741561e+01 1.953342e+01 lineto -9.966839e+01 2.246924e+01 lineto -9.934314e+01 2.182255e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.013148e+02 2.489938e+01 moveto -9.934314e+01 2.182255e+01 lineto -9.966839e+01 2.246924e+01 lineto -1.016587e+02 2.558319e+01 lineto -1.013148e+02 2.489938e+01 lineto -closepath -gsave -4.106222e-01 4.106222e-01 4.106222e-01 setrgbcolor -fill -grestore -newpath -1.013148e+02 2.489938e+01 moveto -9.934314e+01 2.182255e+01 lineto -9.966839e+01 2.246924e+01 lineto -1.016587e+02 2.558319e+01 lineto -1.013148e+02 2.489938e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.030115e+02 2.813594e+01 moveto -1.013148e+02 2.489938e+01 lineto -1.016587e+02 2.558319e+01 lineto -1.033715e+02 2.88517e+01 lineto -1.030115e+02 2.813594e+01 lineto -closepath -gsave -4.082145e-01 4.082145e-01 4.082145e-01 setrgbcolor -fill -grestore -newpath -1.030115e+02 2.813594e+01 moveto -1.013148e+02 2.489938e+01 lineto -1.016587e+02 2.558319e+01 lineto -1.033715e+02 2.88517e+01 lineto -1.030115e+02 2.813594e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.806969e+01 8.742428e+01 moveto -6.169677e+01 8.78699e+01 lineto -6.166548e+01 8.78077e+01 lineto -5.800406e+01 8.729378e+01 lineto -5.806969e+01 8.742428e+01 lineto -closepath -gsave -4.843473e-01 4.843473e-01 4.843473e-01 setrgbcolor -fill -grestore -newpath -5.806969e+01 8.742428e+01 moveto -6.169677e+01 8.78699e+01 lineto -6.166548e+01 8.78077e+01 lineto -5.800406e+01 8.729378e+01 lineto -5.806969e+01 8.742428e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.449508e+01 8.666506e+01 moveto -5.806969e+01 8.742428e+01 lineto -5.800406e+01 8.729378e+01 lineto -5.439559e+01 8.646725e+01 lineto -5.449508e+01 8.666506e+01 lineto -closepath -gsave -4.722243e-01 4.722243e-01 4.722243e-01 setrgbcolor -fill -grestore -newpath -5.449508e+01 8.666506e+01 moveto -5.806969e+01 8.742428e+01 lineto -5.800406e+01 8.729378e+01 lineto -5.439559e+01 8.646725e+01 lineto -5.449508e+01 8.666506e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.1e+01 8.559798e+01 moveto -5.449508e+01 8.666506e+01 lineto -5.439559e+01 8.646725e+01 lineto -5.086741e+01 8.533436e+01 lineto -5.1e+01 8.559798e+01 lineto -closepath -gsave -4.611532e-01 4.611532e-01 4.611532e-01 setrgbcolor -fill -grestore -newpath -5.1e+01 8.559798e+01 moveto -5.449508e+01 8.666506e+01 lineto -5.439559e+01 8.646725e+01 lineto -5.086741e+01 8.533436e+01 lineto -5.1e+01 8.559798e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.868546e+01 4.227726e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.869732e+01 4.296049e+00 lineto -6.868546e+01 4.227726e+00 lineto -closepath -gsave -4.96715e-01 4.96715e-01 4.96715e-01 setrgbcolor -fill -grestore -newpath -6.868546e+01 4.227726e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.869732e+01 4.296049e+00 lineto -6.868546e+01 4.227726e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.234303e+01 4.771687e+00 moveto -6.868546e+01 4.227726e+00 lineto -6.869732e+01 4.296049e+00 lineto -7.236665e+01 4.907815e+00 lineto -7.234303e+01 4.771687e+00 lineto -closepath -gsave -4.847334e-01 4.847334e-01 4.847334e-01 setrgbcolor -fill -grestore -newpath -7.234303e+01 4.771687e+00 moveto -6.868546e+01 4.227726e+00 lineto -6.869732e+01 4.296049e+00 lineto -7.236665e+01 4.907815e+00 lineto -7.234303e+01 4.771687e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.5945e+01 5.627764e+00 moveto -7.234303e+01 4.771687e+00 lineto -7.236665e+01 4.907815e+00 lineto -7.598021e+01 5.830668e+00 lineto -7.5945e+01 5.627764e+00 lineto -closepath -gsave -4.735019e-01 4.735019e-01 4.735019e-01 setrgbcolor -fill -grestore -newpath -7.5945e+01 5.627764e+00 moveto -7.234303e+01 4.771687e+00 lineto -7.236665e+01 4.907815e+00 lineto -7.598021e+01 5.830668e+00 lineto -7.5945e+01 5.627764e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.946412e+01 6.789476e+00 moveto -7.5945e+01 5.627764e+00 lineto -7.598021e+01 5.830668e+00 lineto -7.951064e+01 7.057619e+00 lineto -7.946412e+01 6.789476e+00 lineto -closepath -gsave -4.631279e-01 4.631279e-01 4.631279e-01 setrgbcolor -fill -grestore -newpath -7.946412e+01 6.789476e+00 moveto -7.5945e+01 5.627764e+00 lineto -7.598021e+01 5.830668e+00 lineto -7.951064e+01 7.057619e+00 lineto -7.946412e+01 6.789476e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.287373e+01 8.24803e+00 moveto -7.946412e+01 6.789476e+00 lineto -7.951064e+01 7.057619e+00 lineto -8.293123e+01 8.579382e+00 lineto -8.287373e+01 8.24803e+00 lineto -closepath -gsave -4.536833e-01 4.536833e-01 4.536833e-01 setrgbcolor -fill -grestore -newpath -8.287373e+01 8.24803e+00 moveto -7.946412e+01 6.789476e+00 lineto -7.951064e+01 7.057619e+00 lineto -8.293123e+01 8.579382e+00 lineto -8.287373e+01 8.24803e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.614804e+01 9.992382e+00 moveto -8.287373e+01 8.24803e+00 lineto -8.293123e+01 8.579382e+00 lineto -8.621606e+01 1.038444e+01 lineto -8.614804e+01 9.992382e+00 lineto -closepath -gsave -4.452064e-01 4.452064e-01 4.452064e-01 setrgbcolor -fill -grestore -newpath -8.614804e+01 9.992382e+00 moveto -8.287373e+01 8.24803e+00 lineto -8.293123e+01 8.579382e+00 lineto -8.621606e+01 1.038444e+01 lineto -8.614804e+01 9.992382e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.926224e+01 1.200933e+01 moveto -8.614804e+01 9.992382e+00 lineto -8.621606e+01 1.038444e+01 lineto -8.934028e+01 1.245911e+01 lineto -8.926224e+01 1.200933e+01 lineto -closepath -gsave -4.377042e-01 4.377042e-01 4.377042e-01 setrgbcolor -fill -grestore -newpath -8.926224e+01 1.200933e+01 moveto -8.614804e+01 9.992382e+00 lineto -8.621606e+01 1.038444e+01 lineto -8.934028e+01 1.245911e+01 lineto -8.926224e+01 1.200933e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.219277e+01 1.42836e+01 moveto -8.926224e+01 1.200933e+01 lineto -8.934028e+01 1.245911e+01 lineto -9.228024e+01 1.478771e+01 lineto -9.219277e+01 1.42836e+01 lineto -closepath -gsave -4.311568e-01 4.311568e-01 4.311568e-01 setrgbcolor -fill -grestore -newpath -9.219277e+01 1.42836e+01 moveto -8.926224e+01 1.200933e+01 lineto -8.934028e+01 1.245911e+01 lineto -9.228024e+01 1.478771e+01 lineto -9.219277e+01 1.42836e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.491743e+01 1.679798e+01 moveto -9.219277e+01 1.42836e+01 lineto -9.228024e+01 1.478771e+01 lineto -9.501367e+01 1.73526e+01 lineto -9.491743e+01 1.679798e+01 lineto -closepath -gsave -4.255213e-01 4.255213e-01 4.255213e-01 setrgbcolor -fill -grestore -newpath -9.491743e+01 1.679798e+01 moveto -9.219277e+01 1.42836e+01 lineto -9.228024e+01 1.478771e+01 lineto -9.501367e+01 1.73526e+01 lineto -9.491743e+01 1.679798e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.741561e+01 1.953342e+01 moveto -9.491743e+01 1.679798e+01 lineto -9.501367e+01 1.73526e+01 lineto -9.751988e+01 2.013436e+01 lineto -9.741561e+01 1.953342e+01 lineto -closepath -gsave -4.207372e-01 4.207372e-01 4.207372e-01 setrgbcolor -fill -grestore -newpath -9.741561e+01 1.953342e+01 moveto -9.491743e+01 1.679798e+01 lineto -9.501367e+01 1.73526e+01 lineto -9.751988e+01 2.013436e+01 lineto -9.741561e+01 1.953342e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.966839e+01 2.246924e+01 moveto -9.741561e+01 1.953342e+01 lineto -9.751988e+01 2.013436e+01 lineto -9.977991e+01 2.311194e+01 lineto -9.966839e+01 2.246924e+01 lineto -closepath -gsave -4.167309e-01 4.167309e-01 4.167309e-01 setrgbcolor -fill -grestore -newpath -9.966839e+01 2.246924e+01 moveto -9.741561e+01 1.953342e+01 lineto -9.751988e+01 2.013436e+01 lineto -9.977991e+01 2.311194e+01 lineto -9.966839e+01 2.246924e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.016587e+02 2.558319e+01 moveto -9.966839e+01 2.246924e+01 lineto -9.977991e+01 2.311194e+01 lineto -1.017766e+02 2.626279e+01 lineto -1.016587e+02 2.558319e+01 lineto -closepath -gsave -4.134214e-01 4.134214e-01 4.134214e-01 setrgbcolor -fill -grestore -newpath -1.016587e+02 2.558319e+01 moveto -9.966839e+01 2.246924e+01 lineto -9.977991e+01 2.311194e+01 lineto -1.017766e+02 2.626279e+01 lineto -1.016587e+02 2.558319e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.033715e+02 2.88517e+01 moveto -1.016587e+02 2.558319e+01 lineto -1.017766e+02 2.626279e+01 lineto -1.034949e+02 2.956306e+01 lineto -1.033715e+02 2.88517e+01 lineto -closepath -gsave -4.107238e-01 4.107238e-01 4.107238e-01 setrgbcolor -fill -grestore -newpath -1.033715e+02 2.88517e+01 moveto -1.016587e+02 2.558319e+01 lineto -1.017766e+02 2.626279e+01 lineto -1.034949e+02 2.956306e+01 lineto -1.033715e+02 2.88517e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.047938e+02 3.225004e+01 moveto -1.033715e+02 2.88517e+01 lineto -1.034949e+02 2.956306e+01 lineto -1.049218e+02 3.298776e+01 lineto -1.047938e+02 3.225004e+01 lineto -closepath -gsave -4.085542e-01 4.085542e-01 4.085542e-01 setrgbcolor -fill -grestore -newpath -1.047938e+02 3.225004e+01 moveto -1.033715e+02 2.88517e+01 lineto -1.034949e+02 2.956306e+01 lineto -1.049218e+02 3.298776e+01 lineto -1.047938e+02 3.225004e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.059149e+02 3.575247e+01 moveto -1.047938e+02 3.225004e+01 lineto -1.049218e+02 3.298776e+01 lineto -1.060465e+02 3.651097e+01 lineto -1.059149e+02 3.575247e+01 lineto -closepath -gsave -4.06832e-01 4.06832e-01 4.06832e-01 setrgbcolor -fill -grestore -newpath -1.059149e+02 3.575247e+01 moveto -1.047938e+02 3.225004e+01 lineto -1.049218e+02 3.298776e+01 lineto -1.060465e+02 3.651097e+01 lineto -1.059149e+02 3.575247e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.067262e+02 3.933248e+01 moveto -1.059149e+02 3.575247e+01 lineto -1.060465e+02 3.651097e+01 lineto -1.068604e+02 4.010602e+01 lineto -1.067262e+02 3.933248e+01 lineto -closepath -gsave -4.054832e-01 4.054832e-01 4.054832e-01 setrgbcolor -fill -grestore -newpath -1.067262e+02 3.933248e+01 moveto -1.059149e+02 3.575247e+01 lineto -1.060465e+02 3.651097e+01 lineto -1.068604e+02 4.010602e+01 lineto -1.067262e+02 3.933248e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.800406e+01 8.729378e+01 moveto -6.166548e+01 8.78077e+01 lineto -6.165476e+01 8.774588e+01 lineto -5.798155e+01 8.716409e+01 lineto -5.800406e+01 8.729378e+01 lineto -closepath -gsave -4.858464e-01 4.858464e-01 4.858464e-01 setrgbcolor -fill -grestore -newpath -5.800406e+01 8.729378e+01 moveto -6.166548e+01 8.78077e+01 lineto -6.165476e+01 8.774588e+01 lineto -5.798155e+01 8.716409e+01 lineto -5.800406e+01 8.729378e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.439559e+01 8.646725e+01 moveto -5.800406e+01 8.729378e+01 lineto -5.798155e+01 8.716409e+01 lineto -5.436148e+01 8.627066e+01 lineto -5.439559e+01 8.646725e+01 lineto -closepath -gsave -4.745382e-01 4.745382e-01 4.745382e-01 setrgbcolor -fill -grestore -newpath -5.439559e+01 8.646725e+01 moveto -5.800406e+01 8.729378e+01 lineto -5.798155e+01 8.716409e+01 lineto -5.436148e+01 8.627066e+01 lineto -5.439559e+01 8.646725e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.086741e+01 8.533436e+01 moveto -5.439559e+01 8.646725e+01 lineto -5.436148e+01 8.627066e+01 lineto -5.082195e+01 8.507236e+01 lineto -5.086741e+01 8.533436e+01 lineto -closepath -gsave -4.640787e-01 4.640787e-01 4.640787e-01 setrgbcolor -fill -grestore -newpath -5.086741e+01 8.533436e+01 moveto -5.439559e+01 8.646725e+01 lineto -5.436148e+01 8.627066e+01 lineto -5.082195e+01 8.507236e+01 lineto -5.086741e+01 8.533436e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.869732e+01 4.296049e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.868638e+01 4.363527e+00 lineto -6.869732e+01 4.296049e+00 lineto -closepath -gsave -4.973361e-01 4.973361e-01 4.973361e-01 setrgbcolor -fill -grestore -newpath -6.869732e+01 4.296049e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.868638e+01 4.363527e+00 lineto -6.869732e+01 4.296049e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.236665e+01 4.907815e+00 moveto -6.869732e+01 4.296049e+00 lineto -6.868638e+01 4.363527e+00 lineto -7.234485e+01 5.042261e+00 lineto -7.236665e+01 4.907815e+00 lineto -closepath -gsave -4.864427e-01 4.864427e-01 4.864427e-01 setrgbcolor -fill -grestore -newpath -7.236665e+01 4.907815e+00 moveto -6.869732e+01 4.296049e+00 lineto -6.868638e+01 4.363527e+00 lineto -7.234485e+01 5.042261e+00 lineto -7.236665e+01 4.907815e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.598021e+01 5.830668e+00 moveto -7.236665e+01 4.907815e+00 lineto -7.234485e+01 5.042261e+00 lineto -7.594772e+01 6.031062e+00 lineto -7.598021e+01 5.830668e+00 lineto -closepath -gsave -4.760927e-01 4.760927e-01 4.760927e-01 setrgbcolor -fill -grestore -newpath -7.598021e+01 5.830668e+00 moveto -7.236665e+01 4.907815e+00 lineto -7.234485e+01 5.042261e+00 lineto -7.594772e+01 6.031062e+00 lineto -7.598021e+01 5.830668e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.951064e+01 7.057619e+00 moveto -7.598021e+01 5.830668e+00 lineto -7.594772e+01 6.031062e+00 lineto -7.946771e+01 7.322446e+00 lineto -7.951064e+01 7.057619e+00 lineto -closepath -gsave -4.663976e-01 4.663976e-01 4.663976e-01 setrgbcolor -fill -grestore -newpath -7.951064e+01 7.057619e+00 moveto -7.598021e+01 5.830668e+00 lineto -7.594772e+01 6.031062e+00 lineto -7.946771e+01 7.322446e+00 lineto -7.951064e+01 7.057619e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.293123e+01 8.579382e+00 moveto -7.951064e+01 7.057619e+00 lineto -7.946771e+01 7.322446e+00 lineto -8.287817e+01 8.906636e+00 lineto -8.293123e+01 8.579382e+00 lineto -closepath -gsave -4.574399e-01 4.574399e-01 4.574399e-01 setrgbcolor -fill -grestore -newpath -8.293123e+01 8.579382e+00 moveto -7.951064e+01 7.057619e+00 lineto -7.946771e+01 7.322446e+00 lineto -8.287817e+01 8.906636e+00 lineto -8.293123e+01 8.579382e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.621606e+01 1.038444e+01 moveto -8.293123e+01 8.579382e+00 lineto -8.287817e+01 8.906636e+00 lineto -8.615328e+01 1.077164e+01 lineto -8.621606e+01 1.038444e+01 lineto -closepath -gsave -4.492739e-01 4.492739e-01 4.492739e-01 setrgbcolor -fill -grestore -newpath -8.621606e+01 1.038444e+01 moveto -8.293123e+01 8.579382e+00 lineto -8.287817e+01 8.906636e+00 lineto -8.615328e+01 1.077164e+01 lineto -8.621606e+01 1.038444e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.934028e+01 1.245911e+01 moveto -8.621606e+01 1.038444e+01 lineto -8.615328e+01 1.077164e+01 lineto -8.926826e+01 1.290334e+01 lineto -8.934028e+01 1.245911e+01 lineto -closepath -gsave -4.419268e-01 4.419268e-01 4.419268e-01 setrgbcolor -fill -grestore -newpath -8.934028e+01 1.245911e+01 moveto -8.621606e+01 1.038444e+01 lineto -8.615328e+01 1.077164e+01 lineto -8.926826e+01 1.290334e+01 lineto -8.934028e+01 1.245911e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.228024e+01 1.478771e+01 moveto -8.934028e+01 1.245911e+01 lineto -8.926826e+01 1.290334e+01 lineto -9.219951e+01 1.528559e+01 lineto -9.228024e+01 1.478771e+01 lineto -closepath -gsave -4.35401e-01 4.35401e-01 4.35401e-01 setrgbcolor -fill -grestore -newpath -9.228024e+01 1.478771e+01 moveto -8.934028e+01 1.245911e+01 lineto -8.926826e+01 1.290334e+01 lineto -9.219951e+01 1.528559e+01 lineto -9.228024e+01 1.478771e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.501367e+01 1.73526e+01 moveto -9.228024e+01 1.478771e+01 lineto -9.219951e+01 1.528559e+01 lineto -9.492486e+01 1.790036e+01 lineto -9.501367e+01 1.73526e+01 lineto -closepath -gsave -4.29678e-01 4.29678e-01 4.29678e-01 setrgbcolor -fill -grestore -newpath -9.501367e+01 1.73526e+01 moveto -9.228024e+01 1.478771e+01 lineto -9.219951e+01 1.528559e+01 lineto -9.492486e+01 1.790036e+01 lineto -9.501367e+01 1.73526e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.751988e+01 2.013436e+01 moveto -9.501367e+01 1.73526e+01 lineto -9.492486e+01 1.790036e+01 lineto -9.742365e+01 2.072787e+01 lineto -9.751988e+01 2.013436e+01 lineto -closepath -gsave -4.247214e-01 4.247214e-01 4.247214e-01 setrgbcolor -fill -grestore -newpath -9.751988e+01 2.013436e+01 moveto -9.501367e+01 1.73526e+01 lineto -9.492486e+01 1.790036e+01 lineto -9.742365e+01 2.072787e+01 lineto -9.751988e+01 2.013436e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.977991e+01 2.311194e+01 moveto -9.751988e+01 2.013436e+01 lineto -9.742365e+01 2.072787e+01 lineto -9.967699e+01 2.374669e+01 lineto -9.977991e+01 2.311194e+01 lineto -closepath -gsave -4.204812e-01 4.204812e-01 4.204812e-01 setrgbcolor -fill -grestore -newpath -9.977991e+01 2.311194e+01 moveto -9.751988e+01 2.013436e+01 lineto -9.742365e+01 2.072787e+01 lineto -9.967699e+01 2.374669e+01 lineto -9.977991e+01 2.311194e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.017766e+02 2.626279e+01 moveto -9.977991e+01 2.311194e+01 lineto -9.967699e+01 2.374669e+01 lineto -1.016678e+02 2.693398e+01 lineto -1.017766e+02 2.626279e+01 lineto -closepath -gsave -4.168977e-01 4.168977e-01 4.168977e-01 setrgbcolor -fill -grestore -newpath -1.017766e+02 2.626279e+01 moveto -9.977991e+01 2.311194e+01 lineto -9.967699e+01 2.374669e+01 lineto -1.016678e+02 2.693398e+01 lineto -1.017766e+02 2.626279e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.034949e+02 2.956306e+01 moveto -1.017766e+02 2.626279e+01 lineto -1.016678e+02 2.693398e+01 lineto -1.03381e+02 3.026561e+01 lineto -1.034949e+02 2.956306e+01 lineto -closepath -gsave -4.139052e-01 4.139052e-01 4.139052e-01 setrgbcolor -fill -grestore -newpath -1.034949e+02 2.956306e+01 moveto -1.017766e+02 2.626279e+01 lineto -1.016678e+02 2.693398e+01 lineto -1.03381e+02 3.026561e+01 lineto -1.034949e+02 2.956306e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.049218e+02 3.298776e+01 moveto -1.034949e+02 2.956306e+01 lineto -1.03381e+02 3.026561e+01 lineto -1.048037e+02 3.371635e+01 lineto -1.049218e+02 3.298776e+01 lineto -closepath -gsave -4.114356e-01 4.114356e-01 4.114356e-01 setrgbcolor -fill -grestore -newpath -1.049218e+02 3.298776e+01 moveto -1.034949e+02 2.956306e+01 lineto -1.03381e+02 3.026561e+01 lineto -1.048037e+02 3.371635e+01 lineto -1.049218e+02 3.298776e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.060465e+02 3.651097e+01 moveto -1.049218e+02 3.298776e+01 lineto -1.048037e+02 3.371635e+01 lineto -1.05925e+02 3.726009e+01 lineto -1.060465e+02 3.651097e+01 lineto -closepath -gsave -4.094215e-01 4.094215e-01 4.094215e-01 setrgbcolor -fill -grestore -newpath -1.060465e+02 3.651097e+01 moveto -1.049218e+02 3.298776e+01 lineto -1.048037e+02 3.371635e+01 lineto -1.05925e+02 3.726009e+01 lineto -1.060465e+02 3.651097e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.068604e+02 4.010602e+01 moveto -1.060465e+02 3.651097e+01 lineto -1.05925e+02 3.726009e+01 lineto -1.067365e+02 4.086999e+01 lineto -1.068604e+02 4.010602e+01 lineto -closepath -gsave -4.077984e-01 4.077984e-01 4.077984e-01 setrgbcolor -fill -grestore -newpath -1.068604e+02 4.010602e+01 moveto -1.060465e+02 3.651097e+01 lineto -1.05925e+02 3.726009e+01 lineto -1.067365e+02 4.086999e+01 lineto -1.068604e+02 4.010602e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.073574e+02 4.374569e+01 moveto -1.068604e+02 4.010602e+01 lineto -1.067365e+02 4.086999e+01 lineto -1.072321e+02 4.451873e+01 lineto -1.073574e+02 4.374569e+01 lineto -closepath -gsave -4.06507e-01 4.06507e-01 4.06507e-01 setrgbcolor -fill -grestore -newpath -1.073574e+02 4.374569e+01 moveto -1.068604e+02 4.010602e+01 lineto -1.067365e+02 4.086999e+01 lineto -1.072321e+02 4.451873e+01 lineto -1.073574e+02 4.374569e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.075338e+02 4.740242e+01 moveto -1.073574e+02 4.374569e+01 lineto -1.072321e+02 4.451873e+01 lineto -1.074079e+02 4.817868e+01 lineto -1.075338e+02 4.740242e+01 lineto -closepath -gsave -4.05494e-01 4.05494e-01 4.05494e-01 setrgbcolor -fill -grestore -newpath -1.075338e+02 4.740242e+01 moveto -1.073574e+02 4.374569e+01 lineto -1.072321e+02 4.451873e+01 lineto -1.074079e+02 4.817868e+01 lineto -1.075338e+02 4.740242e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.073881e+02 5.104854e+01 moveto -1.075338e+02 4.740242e+01 lineto -1.074079e+02 4.817868e+01 lineto -1.072627e+02 5.182214e+01 lineto -1.073881e+02 5.104854e+01 lineto -closepath -gsave -4.047133e-01 4.047133e-01 4.047133e-01 setrgbcolor -fill -grestore -newpath -1.073881e+02 5.104854e+01 moveto -1.075338e+02 4.740242e+01 lineto -1.074079e+02 4.817868e+01 lineto -1.072627e+02 5.182214e+01 lineto -1.073881e+02 5.104854e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.069216e+02 5.465643e+01 moveto -1.073881e+02 5.104854e+01 lineto -1.072627e+02 5.182214e+01 lineto -1.067975e+02 5.542152e+01 lineto -1.069216e+02 5.465643e+01 lineto -closepath -gsave -4.041263e-01 4.041263e-01 4.041263e-01 setrgbcolor -fill -grestore -newpath -1.069216e+02 5.465643e+01 moveto -1.073881e+02 5.104854e+01 lineto -1.072627e+02 5.182214e+01 lineto -1.067975e+02 5.542152e+01 lineto -1.069216e+02 5.465643e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.798155e+01 8.716409e+01 moveto -6.165476e+01 8.774588e+01 lineto -6.166466e+01 8.768483e+01 lineto -5.800232e+01 8.703599e+01 lineto -5.798155e+01 8.716409e+01 lineto -closepath -gsave -4.874608e-01 4.874608e-01 4.874608e-01 setrgbcolor -fill -grestore -newpath -5.798155e+01 8.716409e+01 moveto -6.165476e+01 8.774588e+01 lineto -6.166466e+01 8.768483e+01 lineto -5.800232e+01 8.703599e+01 lineto -5.798155e+01 8.716409e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.436148e+01 8.627066e+01 moveto -5.798155e+01 8.716409e+01 lineto -5.800232e+01 8.703599e+01 lineto -5.439296e+01 8.60765e+01 lineto -5.436148e+01 8.627066e+01 lineto -closepath -gsave -4.770537e-01 4.770537e-01 4.770537e-01 setrgbcolor -fill -grestore -newpath -5.436148e+01 8.627066e+01 moveto -5.798155e+01 8.716409e+01 lineto -5.800232e+01 8.703599e+01 lineto -5.439296e+01 8.60765e+01 lineto -5.436148e+01 8.627066e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.082195e+01 8.507236e+01 moveto -5.436148e+01 8.627066e+01 lineto -5.439296e+01 8.60765e+01 lineto -5.08639e+01 8.48136e+01 lineto -5.082195e+01 8.507236e+01 lineto -closepath -gsave -4.67292e-01 4.67292e-01 4.67292e-01 setrgbcolor -fill -grestore -newpath -5.082195e+01 8.507236e+01 moveto -5.436148e+01 8.627066e+01 lineto -5.439296e+01 8.60765e+01 lineto -5.08639e+01 8.48136e+01 lineto -5.082195e+01 8.507236e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.868638e+01 4.363527e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.865271e+01 4.429744e+00 lineto -6.868638e+01 4.363527e+00 lineto -closepath -gsave -4.979935e-01 4.979935e-01 4.979935e-01 setrgbcolor -fill -grestore -newpath -6.868638e+01 4.363527e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.865271e+01 4.429744e+00 lineto -6.868638e+01 4.363527e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.234485e+01 5.042261e+00 moveto -6.868638e+01 4.363527e+00 lineto -6.865271e+01 4.429744e+00 lineto -7.227777e+01 5.174193e+00 lineto -7.234485e+01 5.042261e+00 lineto -closepath -gsave -4.882689e-01 4.882689e-01 4.882689e-01 setrgbcolor -fill -grestore -newpath -7.234485e+01 5.042261e+00 moveto -6.868638e+01 4.363527e+00 lineto -6.865271e+01 4.429744e+00 lineto -7.227777e+01 5.174193e+00 lineto -7.234485e+01 5.042261e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.594772e+01 6.031062e+00 moveto -7.234485e+01 5.042261e+00 lineto -7.227777e+01 5.174193e+00 lineto -7.584773e+01 6.227711e+00 lineto -7.594772e+01 6.031062e+00 lineto -closepath -gsave -4.788883e-01 4.788883e-01 4.788883e-01 setrgbcolor -fill -grestore -newpath -7.594772e+01 6.031062e+00 moveto -7.234485e+01 5.042261e+00 lineto -7.227777e+01 5.174193e+00 lineto -7.584773e+01 6.227711e+00 lineto -7.594772e+01 6.031062e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.946771e+01 7.322446e+00 moveto -7.594772e+01 6.031062e+00 lineto -7.584773e+01 6.227711e+00 lineto -7.933557e+01 7.582323e+00 lineto -7.946771e+01 7.322446e+00 lineto -closepath -gsave -4.699637e-01 4.699637e-01 4.699637e-01 setrgbcolor -fill -grestore -newpath -7.946771e+01 7.322446e+00 moveto -7.594772e+01 6.031062e+00 lineto -7.584773e+01 6.227711e+00 lineto -7.933557e+01 7.582323e+00 lineto -7.946771e+01 7.322446e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.287817e+01 8.906636e+00 moveto -7.946771e+01 7.322446e+00 lineto -7.933557e+01 7.582323e+00 lineto -8.271488e+01 9.227774e+00 lineto -8.287817e+01 8.906636e+00 lineto -closepath -gsave -4.615846e-01 4.615846e-01 4.615846e-01 setrgbcolor -fill -grestore -newpath -8.287817e+01 8.906636e+00 moveto -7.946771e+01 7.322446e+00 lineto -7.933557e+01 7.582323e+00 lineto -8.271488e+01 9.227774e+00 lineto -8.287817e+01 8.906636e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.615328e+01 1.077164e+01 moveto -8.287817e+01 8.906636e+00 lineto -8.271488e+01 9.227774e+00 lineto -8.596009e+01 1.115161e+01 lineto -8.615328e+01 1.077164e+01 lineto -closepath -gsave -4.538175e-01 4.538175e-01 4.538175e-01 setrgbcolor -fill -grestore -newpath -8.615328e+01 1.077164e+01 moveto -8.287817e+01 8.906636e+00 lineto -8.271488e+01 9.227774e+00 lineto -8.596009e+01 1.115161e+01 lineto -8.615328e+01 1.077164e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.926826e+01 1.290334e+01 moveto -8.615328e+01 1.077164e+01 lineto -8.596009e+01 1.115161e+01 lineto -8.904661e+01 1.333926e+01 lineto -8.926826e+01 1.290334e+01 lineto -closepath -gsave -4.467063e-01 4.467063e-01 4.467063e-01 setrgbcolor -fill -grestore -newpath -8.926826e+01 1.290334e+01 moveto -8.615328e+01 1.077164e+01 lineto -8.596009e+01 1.115161e+01 lineto -8.904661e+01 1.333926e+01 lineto -8.926826e+01 1.290334e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.219951e+01 1.528559e+01 moveto -8.926826e+01 1.290334e+01 lineto -8.904661e+01 1.333926e+01 lineto -9.19511e+01 1.577416e+01 lineto -9.219951e+01 1.528559e+01 lineto -closepath -gsave -4.402737e-01 4.402737e-01 4.402737e-01 setrgbcolor -fill -grestore -newpath -9.219951e+01 1.528559e+01 moveto -8.926826e+01 1.290334e+01 lineto -8.904661e+01 1.333926e+01 lineto -9.19511e+01 1.577416e+01 lineto -9.219951e+01 1.528559e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.492486e+01 1.790036e+01 moveto -9.219951e+01 1.528559e+01 lineto -9.19511e+01 1.577416e+01 lineto -9.465155e+01 1.843789e+01 lineto -9.492486e+01 1.790036e+01 lineto -closepath -gsave -4.34523e-01 4.34523e-01 4.34523e-01 setrgbcolor -fill -grestore -newpath -9.492486e+01 1.790036e+01 moveto -9.219951e+01 1.528559e+01 lineto -9.19511e+01 1.577416e+01 lineto -9.465155e+01 1.843789e+01 lineto -9.492486e+01 1.790036e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.742365e+01 2.072787e+01 moveto -9.492486e+01 1.790036e+01 lineto -9.465155e+01 1.843789e+01 lineto -9.712752e+01 2.131028e+01 lineto -9.742365e+01 2.072787e+01 lineto -closepath -gsave -4.294408e-01 4.294408e-01 4.294408e-01 setrgbcolor -fill -grestore -newpath -9.742365e+01 2.072787e+01 moveto -9.492486e+01 1.790036e+01 lineto -9.465155e+01 1.843789e+01 lineto -9.712752e+01 2.131028e+01 lineto -9.742365e+01 2.072787e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.967699e+01 2.374669e+01 moveto -9.742365e+01 2.072787e+01 lineto -9.712752e+01 2.131028e+01 lineto -9.936028e+01 2.436958e+01 lineto -9.967699e+01 2.374669e+01 lineto -closepath -gsave -4.249997e-01 4.249997e-01 4.249997e-01 setrgbcolor -fill -grestore -newpath -9.967699e+01 2.374669e+01 moveto -9.742365e+01 2.072787e+01 lineto -9.712752e+01 2.131028e+01 lineto -9.936028e+01 2.436958e+01 lineto -9.967699e+01 2.374669e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.016678e+02 2.693398e+01 moveto -9.967699e+01 2.374669e+01 lineto -9.936028e+01 2.436958e+01 lineto -1.013329e+02 2.759263e+01 lineto -1.016678e+02 2.693398e+01 lineto -closepath -gsave -4.211616e-01 4.211616e-01 4.211616e-01 setrgbcolor -fill -grestore -newpath -1.016678e+02 2.693398e+01 moveto -9.967699e+01 2.374669e+01 lineto -9.936028e+01 2.436958e+01 lineto -1.013329e+02 2.759263e+01 lineto -1.016678e+02 2.693398e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.03381e+02 3.026561e+01 moveto -1.016678e+02 2.693398e+01 lineto -1.013329e+02 2.759263e+01 lineto -1.030305e+02 3.095503e+01 lineto -1.03381e+02 3.026561e+01 lineto -closepath -gsave -4.178803e-01 4.178803e-01 4.178803e-01 setrgbcolor -fill -grestore -newpath -1.03381e+02 3.026561e+01 moveto -1.016678e+02 2.693398e+01 lineto -1.013329e+02 2.759263e+01 lineto -1.030305e+02 3.095503e+01 lineto -1.03381e+02 3.026561e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.048037e+02 3.371635e+01 moveto -1.03381e+02 3.026561e+01 lineto -1.030305e+02 3.095503e+01 lineto -1.044402e+02 3.443133e+01 lineto -1.048037e+02 3.371635e+01 lineto -closepath -gsave -4.151052e-01 4.151052e-01 4.151052e-01 setrgbcolor -fill -grestore -newpath -1.048037e+02 3.371635e+01 moveto -1.03381e+02 3.026561e+01 lineto -1.030305e+02 3.095503e+01 lineto -1.044402e+02 3.443133e+01 lineto -1.048037e+02 3.371635e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.05925e+02 3.726009e+01 moveto -1.048037e+02 3.371635e+01 lineto -1.044402e+02 3.443133e+01 lineto -1.055513e+02 3.799521e+01 lineto -1.05925e+02 3.726009e+01 lineto -closepath -gsave -4.127831e-01 4.127831e-01 4.127831e-01 setrgbcolor -fill -grestore -newpath -1.05925e+02 3.726009e+01 moveto -1.048037e+02 3.371635e+01 lineto -1.044402e+02 3.443133e+01 lineto -1.055513e+02 3.799521e+01 lineto -1.05925e+02 3.726009e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.067365e+02 4.086999e+01 moveto -1.05925e+02 3.726009e+01 lineto -1.055513e+02 3.799521e+01 lineto -1.063554e+02 4.161969e+01 lineto -1.067365e+02 4.086999e+01 lineto -closepath -gsave -4.108613e-01 4.108613e-01 4.108613e-01 setrgbcolor -fill -grestore -newpath -1.067365e+02 4.086999e+01 moveto -1.05925e+02 3.726009e+01 lineto -1.055513e+02 3.799521e+01 lineto -1.063554e+02 4.161969e+01 lineto -1.067365e+02 4.086999e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.072321e+02 4.451873e+01 moveto -1.067365e+02 4.086999e+01 lineto -1.063554e+02 4.161969e+01 lineto -1.068464e+02 4.527733e+01 lineto -1.072321e+02 4.451873e+01 lineto -closepath -gsave -4.09289e-01 4.09289e-01 4.09289e-01 setrgbcolor -fill -grestore -newpath -1.072321e+02 4.451873e+01 moveto -1.067365e+02 4.086999e+01 lineto -1.063554e+02 4.161969e+01 lineto -1.068464e+02 4.527733e+01 lineto -1.072321e+02 4.451873e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.074079e+02 4.817868e+01 moveto -1.072321e+02 4.451873e+01 lineto -1.068464e+02 4.527733e+01 lineto -1.070206e+02 4.894044e+01 lineto -1.074079e+02 4.817868e+01 lineto -closepath -gsave -4.080192e-01 4.080192e-01 4.080192e-01 setrgbcolor -fill -grestore -newpath -1.074079e+02 4.817868e+01 moveto -1.072321e+02 4.451873e+01 lineto -1.068464e+02 4.527733e+01 lineto -1.070206e+02 4.894044e+01 lineto -1.074079e+02 4.817868e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.072627e+02 5.182214e+01 moveto -1.074079e+02 4.817868e+01 lineto -1.070206e+02 4.894044e+01 lineto -1.068767e+02 5.258129e+01 lineto -1.072627e+02 5.182214e+01 lineto -closepath -gsave -4.070095e-01 4.070095e-01 4.070095e-01 setrgbcolor -fill -grestore -newpath -1.072627e+02 5.182214e+01 moveto -1.074079e+02 4.817868e+01 lineto -1.070206e+02 4.894044e+01 lineto -1.068767e+02 5.258129e+01 lineto -1.072627e+02 5.182214e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.067975e+02 5.542152e+01 moveto -1.072627e+02 5.182214e+01 lineto -1.068767e+02 5.258129e+01 lineto -1.064158e+02 5.617232e+01 lineto -1.067975e+02 5.542152e+01 lineto -closepath -gsave -4.062232e-01 4.062232e-01 4.062232e-01 setrgbcolor -fill -grestore -newpath -1.067975e+02 5.542152e+01 moveto -1.072627e+02 5.182214e+01 lineto -1.068767e+02 5.258129e+01 lineto -1.064158e+02 5.617232e+01 lineto -1.067975e+02 5.542152e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.06016e+02 5.894958e+01 moveto -1.067975e+02 5.542152e+01 lineto -1.064158e+02 5.617232e+01 lineto -1.056414e+02 5.968633e+01 lineto -1.06016e+02 5.894958e+01 lineto -closepath -gsave -4.056294e-01 4.056294e-01 4.056294e-01 setrgbcolor -fill -grestore -newpath -1.06016e+02 5.894958e+01 moveto -1.067975e+02 5.542152e+01 lineto -1.064158e+02 5.617232e+01 lineto -1.056414e+02 5.968633e+01 lineto -1.06016e+02 5.894958e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.049239e+02 6.237961e+01 moveto -1.06016e+02 5.894958e+01 lineto -1.056414e+02 5.968633e+01 lineto -1.045592e+02 6.309674e+01 lineto -1.049239e+02 6.237961e+01 lineto -closepath -gsave -4.052032e-01 4.052032e-01 4.052032e-01 setrgbcolor -fill -grestore -newpath -1.049239e+02 6.237961e+01 moveto -1.06016e+02 5.894958e+01 lineto -1.056414e+02 5.968633e+01 lineto -1.045592e+02 6.309674e+01 lineto -1.049239e+02 6.237961e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.035295e+02 6.568563e+01 moveto -1.049239e+02 6.237961e+01 lineto -1.045592e+02 6.309674e+01 lineto -1.031776e+02 6.637772e+01 lineto -1.035295e+02 6.568563e+01 lineto -closepath -gsave -4.049261e-01 4.049261e-01 4.049261e-01 setrgbcolor -fill -grestore -newpath -1.035295e+02 6.568563e+01 moveto -1.049239e+02 6.237961e+01 lineto -1.045592e+02 6.309674e+01 lineto -1.031776e+02 6.637772e+01 lineto -1.035295e+02 6.568563e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.800232e+01 8.703599e+01 moveto -6.166466e+01 8.768483e+01 lineto -6.169512e+01 8.762492e+01 lineto -5.806623e+01 8.69103e+01 lineto -5.800232e+01 8.703599e+01 lineto -closepath -gsave -4.89184e-01 4.89184e-01 4.89184e-01 setrgbcolor -fill -grestore -newpath -5.800232e+01 8.703599e+01 moveto -6.166466e+01 8.768483e+01 lineto -6.169512e+01 8.762492e+01 lineto -5.806623e+01 8.69103e+01 lineto -5.800232e+01 8.703599e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.439296e+01 8.60765e+01 moveto -5.800232e+01 8.703599e+01 lineto -5.806623e+01 8.69103e+01 lineto -5.448984e+01 8.588597e+01 lineto -5.439296e+01 8.60765e+01 lineto -closepath -gsave -4.797654e-01 4.797654e-01 4.797654e-01 setrgbcolor -fill -grestore -newpath -5.439296e+01 8.60765e+01 moveto -5.800232e+01 8.703599e+01 lineto -5.806623e+01 8.69103e+01 lineto -5.448984e+01 8.588597e+01 lineto -5.439296e+01 8.60765e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.08639e+01 8.48136e+01 moveto -5.439296e+01 8.60765e+01 lineto -5.448984e+01 8.588597e+01 lineto -5.099301e+01 8.455968e+01 lineto -5.08639e+01 8.48136e+01 lineto -closepath -gsave -4.707931e-01 4.707931e-01 4.707931e-01 setrgbcolor -fill -grestore -newpath -5.08639e+01 8.48136e+01 moveto -5.439296e+01 8.60765e+01 lineto -5.448984e+01 8.588597e+01 lineto -5.099301e+01 8.455968e+01 lineto -5.08639e+01 8.48136e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.865271e+01 4.429744e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.859652e+01 4.494291e+00 lineto -6.865271e+01 4.429744e+00 lineto -closepath -gsave -4.986836e-01 4.986836e-01 4.986836e-01 setrgbcolor -fill -grestore -newpath -6.865271e+01 4.429744e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.859652e+01 4.494291e+00 lineto -6.865271e+01 4.429744e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.227777e+01 5.174193e+00 moveto -6.865271e+01 4.429744e+00 lineto -6.859652e+01 4.494291e+00 lineto -7.216582e+01 5.302799e+00 lineto -7.227777e+01 5.174193e+00 lineto -closepath -gsave -4.902045e-01 4.902045e-01 4.902045e-01 setrgbcolor -fill -grestore -newpath -7.227777e+01 5.174193e+00 moveto -6.865271e+01 4.429744e+00 lineto -6.859652e+01 4.494291e+00 lineto -7.216582e+01 5.302799e+00 lineto -7.227777e+01 5.174193e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.584773e+01 6.227711e+00 moveto -7.227777e+01 5.174193e+00 lineto -7.216582e+01 5.302799e+00 lineto -7.568086e+01 6.419403e+00 lineto -7.584773e+01 6.227711e+00 lineto -closepath -gsave -4.818819e-01 4.818819e-01 4.818819e-01 setrgbcolor -fill -grestore -newpath -7.584773e+01 6.227711e+00 moveto -7.227777e+01 5.174193e+00 lineto -7.216582e+01 5.302799e+00 lineto -7.568086e+01 6.419403e+00 lineto -7.584773e+01 6.227711e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.933557e+01 7.582323e+00 moveto -7.584773e+01 6.227711e+00 lineto -7.568086e+01 6.419403e+00 lineto -7.911505e+01 7.835649e+00 lineto -7.933557e+01 7.582323e+00 lineto -closepath -gsave -4.738243e-01 4.738243e-01 4.738243e-01 setrgbcolor -fill -grestore -newpath -7.933557e+01 7.582323e+00 moveto -7.584773e+01 6.227711e+00 lineto -7.568086e+01 6.419403e+00 lineto -7.911505e+01 7.835649e+00 lineto -7.933557e+01 7.582323e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.271488e+01 9.227774e+00 moveto -7.933557e+01 7.582323e+00 lineto -7.911505e+01 7.835649e+00 lineto -8.244238e+01 9.540816e+00 lineto -8.271488e+01 9.227774e+00 lineto -closepath -gsave -4.661238e-01 4.661238e-01 4.661238e-01 setrgbcolor -fill -grestore -newpath -8.271488e+01 9.227774e+00 moveto -7.933557e+01 7.582323e+00 lineto -7.911505e+01 7.835649e+00 lineto -8.244238e+01 9.540816e+00 lineto -8.271488e+01 9.227774e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.596009e+01 1.115161e+01 moveto -8.271488e+01 9.227774e+00 lineto -8.244238e+01 9.540816e+00 lineto -8.563766e+01 1.152199e+01 lineto -8.596009e+01 1.115161e+01 lineto -closepath -gsave -4.588552e-01 4.588552e-01 4.588552e-01 setrgbcolor -fill -grestore -newpath -8.596009e+01 1.115161e+01 moveto -8.271488e+01 9.227774e+00 lineto -8.244238e+01 9.540816e+00 lineto -8.563766e+01 1.152199e+01 lineto -8.596009e+01 1.115161e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.904661e+01 1.333926e+01 moveto -8.596009e+01 1.115161e+01 lineto -8.563766e+01 1.152199e+01 lineto -8.867671e+01 1.376419e+01 lineto -8.904661e+01 1.333926e+01 lineto -closepath -gsave -4.520751e-01 4.520751e-01 4.520751e-01 setrgbcolor -fill -grestore -newpath -8.904661e+01 1.333926e+01 moveto -8.596009e+01 1.115161e+01 lineto -8.563766e+01 1.152199e+01 lineto -8.867671e+01 1.376419e+01 lineto -8.904661e+01 1.333926e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.19511e+01 1.577416e+01 moveto -8.904661e+01 1.333926e+01 lineto -8.867671e+01 1.376419e+01 lineto -9.153652e+01 1.625042e+01 lineto -9.19511e+01 1.577416e+01 lineto -closepath -gsave -4.45823e-01 4.45823e-01 4.45823e-01 setrgbcolor -fill -grestore -newpath -9.19511e+01 1.577416e+01 moveto -8.904661e+01 1.333926e+01 lineto -8.867671e+01 1.376419e+01 lineto -9.153652e+01 1.625042e+01 lineto -9.19511e+01 1.577416e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.465155e+01 1.843789e+01 moveto -9.19511e+01 1.577416e+01 lineto -9.153652e+01 1.625042e+01 lineto -9.419543e+01 1.896187e+01 lineto -9.465155e+01 1.843789e+01 lineto -closepath -gsave -4.401212e-01 4.401212e-01 4.401212e-01 setrgbcolor -fill -grestore -newpath -9.465155e+01 1.843789e+01 moveto -9.19511e+01 1.577416e+01 lineto -9.153652e+01 1.625042e+01 lineto -9.419543e+01 1.896187e+01 lineto -9.465155e+01 1.843789e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.712752e+01 2.131028e+01 moveto -9.465155e+01 1.843789e+01 lineto -9.419543e+01 1.896187e+01 lineto -9.663332e+01 2.187801e+01 lineto -9.712752e+01 2.131028e+01 lineto -closepath -gsave -4.349772e-01 4.349772e-01 4.349772e-01 setrgbcolor -fill -grestore -newpath -9.712752e+01 2.131028e+01 moveto -9.465155e+01 1.843789e+01 lineto -9.419543e+01 1.896187e+01 lineto -9.663332e+01 2.187801e+01 lineto -9.712752e+01 2.131028e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.936028e+01 2.436958e+01 moveto -9.712752e+01 2.131028e+01 lineto -9.663332e+01 2.187801e+01 lineto -9.883173e+01 2.497676e+01 lineto -9.936028e+01 2.436958e+01 lineto -closepath -gsave -4.303847e-01 4.303847e-01 4.303847e-01 setrgbcolor -fill -grestore -newpath -9.936028e+01 2.436958e+01 moveto -9.712752e+01 2.131028e+01 lineto -9.663332e+01 2.187801e+01 lineto -9.883173e+01 2.497676e+01 lineto -9.936028e+01 2.436958e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.013329e+02 2.759263e+01 moveto -9.936028e+01 2.436958e+01 lineto -9.883173e+01 2.497676e+01 lineto -1.00774e+02 2.823467e+01 lineto -1.013329e+02 2.759263e+01 lineto -closepath -gsave -4.263265e-01 4.263265e-01 4.263265e-01 setrgbcolor -fill -grestore -newpath -1.013329e+02 2.759263e+01 moveto -9.936028e+01 2.436958e+01 lineto -9.883173e+01 2.497676e+01 lineto -1.00774e+02 2.823467e+01 lineto -1.013329e+02 2.759263e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.030305e+02 3.095503e+01 moveto -1.013329e+02 2.759263e+01 lineto -1.00774e+02 2.823467e+01 lineto -1.024455e+02 3.162707e+01 lineto -1.030305e+02 3.095503e+01 lineto -closepath -gsave -4.227762e-01 4.227762e-01 4.227762e-01 setrgbcolor -fill -grestore -newpath -1.030305e+02 3.095503e+01 moveto -1.013329e+02 2.759263e+01 lineto -1.00774e+02 2.823467e+01 lineto -1.024455e+02 3.162707e+01 lineto -1.030305e+02 3.095503e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.044402e+02 3.443133e+01 moveto -1.030305e+02 3.095503e+01 lineto -1.024455e+02 3.162707e+01 lineto -1.038335e+02 3.512828e+01 lineto -1.044402e+02 3.443133e+01 lineto -closepath -gsave -4.19701e-01 4.19701e-01 4.19701e-01 setrgbcolor -fill -grestore -newpath -1.044402e+02 3.443133e+01 moveto -1.030305e+02 3.095503e+01 lineto -1.024455e+02 3.162707e+01 lineto -1.038335e+02 3.512828e+01 lineto -1.044402e+02 3.443133e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.055513e+02 3.799521e+01 moveto -1.044402e+02 3.443133e+01 lineto -1.038335e+02 3.512828e+01 lineto -1.049275e+02 3.871179e+01 lineto -1.055513e+02 3.799521e+01 lineto -closepath -gsave -4.170635e-01 4.170635e-01 4.170635e-01 setrgbcolor -fill -grestore -newpath -1.055513e+02 3.799521e+01 moveto -1.044402e+02 3.443133e+01 lineto -1.038335e+02 3.512828e+01 lineto -1.049275e+02 3.871179e+01 lineto -1.055513e+02 3.799521e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.063554e+02 4.161969e+01 moveto -1.055513e+02 3.799521e+01 lineto -1.049275e+02 3.871179e+01 lineto -1.057192e+02 4.235048e+01 lineto -1.063554e+02 4.161969e+01 lineto -closepath -gsave -4.148242e-01 4.148242e-01 4.148242e-01 setrgbcolor -fill -grestore -newpath -1.063554e+02 4.161969e+01 moveto -1.055513e+02 3.799521e+01 lineto -1.049275e+02 3.871179e+01 lineto -1.057192e+02 4.235048e+01 lineto -1.063554e+02 4.161969e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.068464e+02 4.527733e+01 moveto -1.063554e+02 4.161969e+01 lineto -1.057192e+02 4.235048e+01 lineto -1.062027e+02 4.60168e+01 lineto -1.068464e+02 4.527733e+01 lineto -closepath -gsave -4.129428e-01 4.129428e-01 4.129428e-01 setrgbcolor -fill -grestore -newpath -1.068464e+02 4.527733e+01 moveto -1.063554e+02 4.161969e+01 lineto -1.057192e+02 4.235048e+01 lineto -1.062027e+02 4.60168e+01 lineto -1.068464e+02 4.527733e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.070206e+02 4.894044e+01 moveto -1.068464e+02 4.527733e+01 lineto -1.062027e+02 4.60168e+01 lineto -1.063742e+02 4.968299e+01 lineto -1.070206e+02 4.894044e+01 lineto -closepath -gsave -4.113804e-01 4.113804e-01 4.113804e-01 setrgbcolor -fill -grestore -newpath -1.070206e+02 4.894044e+01 moveto -1.068464e+02 4.527733e+01 lineto -1.062027e+02 4.60168e+01 lineto -1.063742e+02 4.968299e+01 lineto -1.070206e+02 4.894044e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.068767e+02 5.258129e+01 moveto -1.070206e+02 4.894044e+01 lineto -1.063742e+02 4.968299e+01 lineto -1.062325e+02 5.33213e+01 lineto -1.068767e+02 5.258129e+01 lineto -closepath -gsave -4.101004e-01 4.101004e-01 4.101004e-01 setrgbcolor -fill -grestore -newpath -1.068767e+02 5.258129e+01 moveto -1.070206e+02 4.894044e+01 lineto -1.063742e+02 4.968299e+01 lineto -1.062325e+02 5.33213e+01 lineto -1.068767e+02 5.258129e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.064158e+02 5.617232e+01 moveto -1.068767e+02 5.258129e+01 lineto -1.062325e+02 5.33213e+01 lineto -1.057787e+02 5.690418e+01 lineto -1.064158e+02 5.617232e+01 lineto -closepath -gsave -4.090694e-01 4.090694e-01 4.090694e-01 setrgbcolor -fill -grestore -newpath -1.064158e+02 5.617232e+01 moveto -1.068767e+02 5.258129e+01 lineto -1.062325e+02 5.33213e+01 lineto -1.057787e+02 5.690418e+01 lineto -1.064158e+02 5.617232e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.056414e+02 5.968633e+01 moveto -1.064158e+02 5.617232e+01 lineto -1.057787e+02 5.690418e+01 lineto -1.050162e+02 6.040451e+01 lineto -1.056414e+02 5.968633e+01 lineto -closepath -gsave -4.082583e-01 4.082583e-01 4.082583e-01 setrgbcolor -fill -grestore -newpath -1.056414e+02 5.968633e+01 moveto -1.064158e+02 5.617232e+01 lineto -1.057787e+02 5.690418e+01 lineto -1.050162e+02 6.040451e+01 lineto -1.056414e+02 5.968633e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.045592e+02 6.309674e+01 moveto -1.056414e+02 5.968633e+01 lineto -1.050162e+02 6.040451e+01 lineto -1.039507e+02 6.37958e+01 lineto -1.045592e+02 6.309674e+01 lineto -closepath -gsave -4.076424e-01 4.076424e-01 4.076424e-01 setrgbcolor -fill -grestore -newpath -1.045592e+02 6.309674e+01 moveto -1.056414e+02 5.968633e+01 lineto -1.050162e+02 6.040451e+01 lineto -1.039507e+02 6.37958e+01 lineto -1.045592e+02 6.309674e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.031776e+02 6.637772e+01 moveto -1.045592e+02 6.309674e+01 lineto -1.039507e+02 6.37958e+01 lineto -1.025904e+02 6.705236e+01 lineto -1.031776e+02 6.637772e+01 lineto -closepath -gsave -4.072019e-01 4.072019e-01 4.072019e-01 setrgbcolor -fill -grestore -newpath -1.031776e+02 6.637772e+01 moveto -1.045592e+02 6.309674e+01 lineto -1.039507e+02 6.37958e+01 lineto -1.025904e+02 6.705236e+01 lineto -1.031776e+02 6.637772e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.01507e+02 6.950443e+01 moveto -1.031776e+02 6.637772e+01 lineto -1.025904e+02 6.705236e+01 lineto -1.009454e+02 7.014955e+01 lineto -1.01507e+02 6.950443e+01 lineto -closepath -gsave -4.069221e-01 4.069221e-01 4.069221e-01 setrgbcolor -fill -grestore -newpath -1.01507e+02 6.950443e+01 moveto -1.031776e+02 6.637772e+01 lineto -1.025904e+02 6.705236e+01 lineto -1.009454e+02 7.014955e+01 lineto -1.01507e+02 6.950443e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.956001e+01 7.24532e+01 moveto -1.01507e+02 6.950443e+01 lineto -1.009454e+02 7.014955e+01 lineto -9.902839e+01 7.306391e+01 lineto -9.956001e+01 7.24532e+01 lineto -closepath -gsave -4.067933e-01 4.067933e-01 4.067933e-01 setrgbcolor -fill -grestore -newpath -9.956001e+01 7.24532e+01 moveto -1.01507e+02 6.950443e+01 lineto -1.009454e+02 7.014955e+01 lineto -9.902839e+01 7.306391e+01 lineto -9.956001e+01 7.24532e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.735138e+01 7.52017e+01 moveto -9.956001e+01 7.24532e+01 lineto -9.902839e+01 7.306391e+01 lineto -9.685373e+01 7.577339e+01 lineto -9.735138e+01 7.52017e+01 lineto -closepath -gsave -4.068111e-01 4.068111e-01 4.068111e-01 setrgbcolor -fill -grestore -newpath -9.735138e+01 7.52017e+01 moveto -9.956001e+01 7.24532e+01 lineto -9.902839e+01 7.306391e+01 lineto -9.685373e+01 7.577339e+01 lineto -9.735138e+01 7.52017e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.806623e+01 8.69103e+01 moveto -6.169512e+01 8.762492e+01 lineto -6.174596e+01 8.756652e+01 lineto -5.817289e+01 8.678777e+01 lineto -5.806623e+01 8.69103e+01 lineto -closepath -gsave -4.910088e-01 4.910088e-01 4.910088e-01 setrgbcolor -fill -grestore -newpath -5.806623e+01 8.69103e+01 moveto -6.169512e+01 8.762492e+01 lineto -6.174596e+01 8.756652e+01 lineto -5.817289e+01 8.678777e+01 lineto -5.806623e+01 8.69103e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.448984e+01 8.588597e+01 moveto -5.806623e+01 8.69103e+01 lineto -5.817289e+01 8.678777e+01 lineto -5.465151e+01 8.570024e+01 lineto -5.448984e+01 8.588597e+01 lineto -closepath -gsave -4.826663e-01 4.826663e-01 4.826663e-01 setrgbcolor -fill -grestore -newpath -5.448984e+01 8.588597e+01 moveto -5.806623e+01 8.69103e+01 lineto -5.817289e+01 8.678777e+01 lineto -5.465151e+01 8.570024e+01 lineto -5.448984e+01 8.588597e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.099301e+01 8.455968e+01 moveto -5.448984e+01 8.588597e+01 lineto -5.465151e+01 8.570024e+01 lineto -5.120848e+01 8.431216e+01 lineto -5.099301e+01 8.455968e+01 lineto -closepath -gsave -4.745792e-01 4.745792e-01 4.745792e-01 setrgbcolor -fill -grestore -newpath -5.099301e+01 8.455968e+01 moveto -5.448984e+01 8.588597e+01 lineto -5.465151e+01 8.570024e+01 lineto -5.120848e+01 8.431216e+01 lineto -5.099301e+01 8.455968e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.859652e+01 4.494291e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.851816e+01 4.556772e+00 lineto -6.859652e+01 4.494291e+00 lineto -closepath -gsave -4.994026e-01 4.994026e-01 4.994026e-01 setrgbcolor -fill -grestore -newpath -6.859652e+01 4.494291e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.851816e+01 4.556772e+00 lineto -6.859652e+01 4.494291e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.216582e+01 5.302799e+00 moveto -6.859652e+01 4.494291e+00 lineto -6.851816e+01 4.556772e+00 lineto -7.200969e+01 5.427287e+00 lineto -7.216582e+01 5.302799e+00 lineto -closepath -gsave -4.922413e-01 4.922413e-01 4.922413e-01 setrgbcolor -fill -grestore -newpath -7.216582e+01 5.302799e+00 moveto -6.859652e+01 4.494291e+00 lineto -6.851816e+01 4.556772e+00 lineto -7.200969e+01 5.427287e+00 lineto -7.216582e+01 5.302799e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.568086e+01 6.419403e+00 moveto -7.216582e+01 5.302799e+00 lineto -7.200969e+01 5.427287e+00 lineto -7.544814e+01 6.604955e+00 lineto -7.568086e+01 6.419403e+00 lineto -closepath -gsave -4.850651e-01 4.850651e-01 4.850651e-01 setrgbcolor -fill -grestore -newpath -7.568086e+01 6.419403e+00 moveto -7.216582e+01 5.302799e+00 lineto -7.200969e+01 5.427287e+00 lineto -7.544814e+01 6.604955e+00 lineto -7.568086e+01 6.419403e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.911505e+01 7.835649e+00 moveto -7.568086e+01 6.419403e+00 lineto -7.544814e+01 6.604955e+00 lineto -7.880751e+01 8.080861e+00 lineto -7.911505e+01 7.835649e+00 lineto -closepath -gsave -4.779747e-01 4.779747e-01 4.779747e-01 setrgbcolor -fill -grestore -newpath -7.911505e+01 7.835649e+00 moveto -7.568086e+01 6.419403e+00 lineto -7.544814e+01 6.604955e+00 lineto -7.880751e+01 8.080861e+00 lineto -7.911505e+01 7.835649e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.244238e+01 9.540816e+00 moveto -7.911505e+01 7.835649e+00 lineto -7.880751e+01 8.080861e+00 lineto -8.206234e+01 9.843832e+00 lineto -8.244238e+01 9.540816e+00 lineto -closepath -gsave -4.710606e-01 4.710606e-01 4.710606e-01 setrgbcolor -fill -grestore -newpath -8.244238e+01 9.540816e+00 moveto -7.911505e+01 7.835649e+00 lineto -7.880751e+01 8.080861e+00 lineto -8.206234e+01 9.843832e+00 lineto -8.244238e+01 9.540816e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.563766e+01 1.152199e+01 moveto -8.244238e+01 9.540816e+00 lineto -8.206234e+01 9.843832e+00 lineto -8.5188e+01 1.188052e+01 lineto -8.563766e+01 1.152199e+01 lineto -closepath -gsave -4.644009e-01 4.644009e-01 4.644009e-01 setrgbcolor -fill -grestore -newpath -8.563766e+01 1.152199e+01 moveto -8.244238e+01 9.540816e+00 lineto -8.206234e+01 9.843832e+00 lineto -8.5188e+01 1.188052e+01 lineto -8.563766e+01 1.152199e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.867671e+01 1.376419e+01 moveto -8.563766e+01 1.152199e+01 lineto -8.5188e+01 1.188052e+01 lineto -8.816084e+01 1.417551e+01 lineto -8.867671e+01 1.376419e+01 lineto -closepath -gsave -4.580609e-01 4.580609e-01 4.580609e-01 setrgbcolor -fill -grestore -newpath -8.867671e+01 1.376419e+01 moveto -8.563766e+01 1.152199e+01 lineto -8.5188e+01 1.188052e+01 lineto -8.816084e+01 1.417551e+01 lineto -8.867671e+01 1.376419e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.153652e+01 1.625042e+01 moveto -8.867671e+01 1.376419e+01 lineto -8.816084e+01 1.417551e+01 lineto -9.095833e+01 1.671142e+01 lineto -9.153652e+01 1.625042e+01 lineto -closepath -gsave -4.520923e-01 4.520923e-01 4.520923e-01 setrgbcolor -fill -grestore -newpath -9.153652e+01 1.625042e+01 moveto -8.867671e+01 1.376419e+01 lineto -8.816084e+01 1.417551e+01 lineto -9.095833e+01 1.671142e+01 lineto -9.153652e+01 1.625042e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.419543e+01 1.896187e+01 moveto -9.153652e+01 1.625042e+01 lineto -9.095833e+01 1.671142e+01 lineto -9.355931e+01 1.946906e+01 lineto -9.419543e+01 1.896187e+01 lineto -closepath -gsave -4.465332e-01 4.465332e-01 4.465332e-01 setrgbcolor -fill -grestore -newpath -9.419543e+01 1.896187e+01 moveto -9.153652e+01 1.625042e+01 lineto -9.095833e+01 1.671142e+01 lineto -9.355931e+01 1.946906e+01 lineto -9.419543e+01 1.896187e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.663332e+01 2.187801e+01 moveto -9.419543e+01 1.896187e+01 lineto -9.355931e+01 1.946906e+01 lineto -9.594408e+01 2.242755e+01 lineto -9.663332e+01 2.187801e+01 lineto -closepath -gsave -4.414088e-01 4.414088e-01 4.414088e-01 setrgbcolor -fill -grestore -newpath -9.663332e+01 2.187801e+01 moveto -9.419543e+01 1.896187e+01 lineto -9.355931e+01 1.946906e+01 lineto -9.594408e+01 2.242755e+01 lineto -9.663332e+01 2.187801e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.883173e+01 2.497676e+01 moveto -9.663332e+01 2.187801e+01 lineto -9.594408e+01 2.242755e+01 lineto -9.809459e+01 2.55645e+01 lineto -9.883173e+01 2.497676e+01 lineto -closepath -gsave -4.36732e-01 4.36732e-01 4.36732e-01 setrgbcolor -fill -grestore -newpath -9.883173e+01 2.497676e+01 moveto -9.663332e+01 2.187801e+01 lineto -9.594408e+01 2.242755e+01 lineto -9.809459e+01 2.55645e+01 lineto -9.883173e+01 2.497676e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.00774e+02 2.823467e+01 moveto -9.883173e+01 2.497676e+01 lineto -9.809459e+01 2.55645e+01 lineto -9.999456e+01 2.885615e+01 lineto -1.00774e+02 2.823467e+01 lineto -closepath -gsave -4.325049e-01 4.325049e-01 4.325049e-01 setrgbcolor -fill -grestore -newpath -1.00774e+02 2.823467e+01 moveto -9.883173e+01 2.497676e+01 lineto -9.809459e+01 2.55645e+01 lineto -9.999456e+01 2.885615e+01 lineto -1.00774e+02 2.823467e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.024455e+02 3.162707e+01 moveto -1.00774e+02 2.823467e+01 lineto -9.999456e+01 2.885615e+01 lineto -1.016296e+02 3.227759e+01 lineto -1.024455e+02 3.162707e+01 lineto -closepath -gsave -4.287205e-01 4.287205e-01 4.287205e-01 setrgbcolor -fill -grestore -newpath -1.024455e+02 3.162707e+01 moveto -1.00774e+02 2.823467e+01 lineto -9.999456e+01 2.885615e+01 lineto -1.016296e+02 3.227759e+01 lineto -1.024455e+02 3.162707e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.038335e+02 3.512828e+01 moveto -1.024455e+02 3.162707e+01 lineto -1.016296e+02 3.227759e+01 lineto -1.029874e+02 3.580291e+01 lineto -1.038335e+02 3.512828e+01 lineto -closepath -gsave -4.253637e-01 4.253637e-01 4.253637e-01 setrgbcolor -fill -grestore -newpath -1.038335e+02 3.512828e+01 moveto -1.024455e+02 3.162707e+01 lineto -1.016296e+02 3.227759e+01 lineto -1.029874e+02 3.580291e+01 lineto -1.038335e+02 3.512828e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.049275e+02 3.871179e+01 moveto -1.038335e+02 3.512828e+01 lineto -1.029874e+02 3.580291e+01 lineto -1.040575e+02 3.940543e+01 lineto -1.049275e+02 3.871179e+01 lineto -closepath -gsave -4.224138e-01 4.224138e-01 4.224138e-01 setrgbcolor -fill -grestore -newpath -1.049275e+02 3.871179e+01 moveto -1.038335e+02 3.512828e+01 lineto -1.029874e+02 3.580291e+01 lineto -1.040575e+02 3.940543e+01 lineto -1.049275e+02 3.871179e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.057192e+02 4.235048e+01 moveto -1.049275e+02 3.871179e+01 lineto -1.040575e+02 3.940543e+01 lineto -1.04832e+02 4.305787e+01 lineto -1.057192e+02 4.235048e+01 lineto -closepath -gsave -4.198455e-01 4.198455e-01 4.198455e-01 setrgbcolor -fill -grestore -newpath -1.057192e+02 4.235048e+01 moveto -1.049275e+02 3.871179e+01 lineto -1.040575e+02 3.940543e+01 lineto -1.04832e+02 4.305787e+01 lineto -1.057192e+02 4.235048e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.062027e+02 4.60168e+01 moveto -1.057192e+02 4.235048e+01 lineto -1.04832e+02 4.305787e+01 lineto -1.053049e+02 4.673259e+01 lineto -1.062027e+02 4.60168e+01 lineto -closepath -gsave -4.176311e-01 4.176311e-01 4.176311e-01 setrgbcolor -fill -grestore -newpath -1.062027e+02 4.60168e+01 moveto -1.057192e+02 4.235048e+01 lineto -1.04832e+02 4.305787e+01 lineto -1.053049e+02 4.673259e+01 lineto -1.062027e+02 4.60168e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.063742e+02 4.968299e+01 moveto -1.062027e+02 4.60168e+01 lineto -1.053049e+02 4.673259e+01 lineto -1.054727e+02 5.040176e+01 lineto -1.063742e+02 4.968299e+01 lineto -closepath -gsave -4.157414e-01 4.157414e-01 4.157414e-01 setrgbcolor -fill -grestore -newpath -1.063742e+02 4.968299e+01 moveto -1.062027e+02 4.60168e+01 lineto -1.053049e+02 4.673259e+01 lineto -1.054727e+02 5.040176e+01 lineto -1.063742e+02 4.968299e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.062325e+02 5.33213e+01 moveto -1.063742e+02 4.968299e+01 lineto -1.054727e+02 5.040176e+01 lineto -1.053342e+02 5.40376e+01 lineto -1.062325e+02 5.33213e+01 lineto -closepath -gsave -4.141476e-01 4.141476e-01 4.141476e-01 setrgbcolor -fill -grestore -newpath -1.062325e+02 5.33213e+01 moveto -1.063742e+02 4.968299e+01 lineto -1.054727e+02 5.040176e+01 lineto -1.053342e+02 5.40376e+01 lineto -1.062325e+02 5.33213e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.057787e+02 5.690418e+01 moveto -1.062325e+02 5.33213e+01 lineto -1.053342e+02 5.40376e+01 lineto -1.048902e+02 5.76126e+01 lineto -1.057787e+02 5.690418e+01 lineto -closepath -gsave -4.128216e-01 4.128216e-01 4.128216e-01 setrgbcolor -fill -grestore -newpath -1.057787e+02 5.690418e+01 moveto -1.062325e+02 5.33213e+01 lineto -1.053342e+02 5.40376e+01 lineto -1.048902e+02 5.76126e+01 lineto -1.057787e+02 5.690418e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.050162e+02 6.040451e+01 moveto -1.057787e+02 5.690418e+01 lineto -1.048902e+02 5.76126e+01 lineto -1.041443e+02 6.109969e+01 lineto -1.050162e+02 6.040451e+01 lineto -closepath -gsave -4.117378e-01 4.117378e-01 4.117378e-01 setrgbcolor -fill -grestore -newpath -1.050162e+02 6.040451e+01 moveto -1.057787e+02 5.690418e+01 lineto -1.048902e+02 5.76126e+01 lineto -1.041443e+02 6.109969e+01 lineto -1.050162e+02 6.040451e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.039507e+02 6.37958e+01 moveto -1.050162e+02 6.040451e+01 lineto -1.041443e+02 6.109969e+01 lineto -1.03102e+02 6.447246e+01 lineto -1.039507e+02 6.37958e+01 lineto -closepath -gsave -4.108732e-01 4.108732e-01 4.108732e-01 setrgbcolor -fill -grestore -newpath -1.039507e+02 6.37958e+01 moveto -1.050162e+02 6.040451e+01 lineto -1.041443e+02 6.109969e+01 lineto -1.03102e+02 6.447246e+01 lineto -1.039507e+02 6.37958e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.025904e+02 6.705236e+01 moveto -1.039507e+02 6.37958e+01 lineto -1.03102e+02 6.447246e+01 lineto -1.017713e+02 6.770539e+01 lineto -1.025904e+02 6.705236e+01 lineto -closepath -gsave -4.10208e-01 4.10208e-01 4.10208e-01 setrgbcolor -fill -grestore -newpath -1.025904e+02 6.705236e+01 moveto -1.039507e+02 6.37958e+01 lineto -1.03102e+02 6.447246e+01 lineto -1.017713e+02 6.770539e+01 lineto -1.025904e+02 6.705236e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.009454e+02 7.014955e+01 moveto -1.025904e+02 6.705236e+01 lineto -1.017713e+02 6.770539e+01 lineto -1.001622e+02 7.0774e+01 lineto -1.009454e+02 7.014955e+01 lineto -closepath -gsave -4.097262e-01 4.097262e-01 4.097262e-01 setrgbcolor -fill -grestore -newpath -1.009454e+02 7.014955e+01 moveto -1.025904e+02 6.705236e+01 lineto -1.017713e+02 6.770539e+01 lineto -1.001622e+02 7.0774e+01 lineto -1.009454e+02 7.014955e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.902839e+01 7.306391e+01 moveto -1.009454e+02 7.014955e+01 lineto -1.001622e+02 7.0774e+01 lineto -9.828697e+01 7.365506e+01 lineto -9.902839e+01 7.306391e+01 lineto -closepath -gsave -4.094157e-01 4.094157e-01 4.094157e-01 setrgbcolor -fill -grestore -newpath -9.902839e+01 7.306391e+01 moveto -1.009454e+02 7.014955e+01 lineto -1.001622e+02 7.0774e+01 lineto -9.828697e+01 7.365506e+01 lineto -9.902839e+01 7.306391e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.685373e+01 7.577339e+01 moveto -9.902839e+01 7.306391e+01 lineto -9.828697e+01 7.365506e+01 lineto -9.615969e+01 7.632676e+01 lineto -9.685373e+01 7.577339e+01 lineto -closepath -gsave -4.092684e-01 4.092684e-01 4.092684e-01 setrgbcolor -fill -grestore -newpath -9.685373e+01 7.577339e+01 moveto -9.902839e+01 7.306391e+01 lineto -9.828697e+01 7.365506e+01 lineto -9.615969e+01 7.632676e+01 lineto -9.685373e+01 7.577339e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.443793e+01 7.825747e+01 moveto -9.685373e+01 7.577339e+01 lineto -9.615969e+01 7.632676e+01 lineto -9.379652e+01 7.876888e+01 lineto -9.443793e+01 7.825747e+01 lineto -closepath -gsave -4.092805e-01 4.092805e-01 4.092805e-01 setrgbcolor -fill -grestore -newpath -9.443793e+01 7.825747e+01 moveto -9.685373e+01 7.577339e+01 lineto -9.615969e+01 7.632676e+01 lineto -9.379652e+01 7.876888e+01 lineto -9.443793e+01 7.825747e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.179926e+01 8.049735e+01 moveto -9.443793e+01 7.825747e+01 lineto -9.379652e+01 7.876888e+01 lineto -9.121535e+01 8.096291e+01 lineto -9.179926e+01 8.049735e+01 lineto -closepath -gsave -4.094523e-01 4.094523e-01 4.094523e-01 setrgbcolor -fill -grestore -newpath -9.179926e+01 8.049735e+01 moveto -9.443793e+01 7.825747e+01 lineto -9.379652e+01 7.876888e+01 lineto -9.121535e+01 8.096291e+01 lineto -9.179926e+01 8.049735e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.817289e+01 8.678777e+01 moveto -6.174596e+01 8.756652e+01 lineto -6.181686e+01 8.750999e+01 lineto -5.832164e+01 8.666917e+01 lineto -5.817289e+01 8.678777e+01 lineto -closepath -gsave -4.92927e-01 4.92927e-01 4.92927e-01 setrgbcolor -fill -grestore -newpath -5.817289e+01 8.678777e+01 moveto -6.174596e+01 8.756652e+01 lineto -6.181686e+01 8.750999e+01 lineto -5.832164e+01 8.666917e+01 lineto -5.817289e+01 8.678777e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.465151e+01 8.570024e+01 moveto -5.817289e+01 8.678777e+01 lineto -5.832164e+01 8.666917e+01 lineto -5.487699e+01 8.552046e+01 lineto -5.465151e+01 8.570024e+01 lineto -closepath -gsave -4.857477e-01 4.857477e-01 4.857477e-01 setrgbcolor -fill -grestore -newpath -5.465151e+01 8.570024e+01 moveto -5.817289e+01 8.678777e+01 lineto -5.832164e+01 8.666917e+01 lineto -5.487699e+01 8.552046e+01 lineto -5.465151e+01 8.570024e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.120848e+01 8.431216e+01 moveto -5.465151e+01 8.570024e+01 lineto -5.487699e+01 8.552046e+01 lineto -5.150897e+01 8.407257e+01 lineto -5.120848e+01 8.431216e+01 lineto -closepath -gsave -4.786451e-01 4.786451e-01 4.786451e-01 setrgbcolor -fill -grestore -newpath -5.120848e+01 8.431216e+01 moveto -5.465151e+01 8.570024e+01 lineto -5.487699e+01 8.552046e+01 lineto -5.150897e+01 8.407257e+01 lineto -5.120848e+01 8.431216e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.851816e+01 4.556772e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.841811e+01 4.616799e+00 lineto -6.851816e+01 4.556772e+00 lineto -closepath -gsave -5.001464e-01 5.001464e-01 5.001464e-01 setrgbcolor -fill -grestore -newpath -6.851816e+01 4.556772e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.841811e+01 4.616799e+00 lineto -6.851816e+01 4.556772e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.200969e+01 5.427287e+00 moveto -6.851816e+01 4.556772e+00 lineto -6.841811e+01 4.616799e+00 lineto -7.181034e+01 5.546888e+00 lineto -7.200969e+01 5.427287e+00 lineto -closepath -gsave -4.943697e-01 4.943697e-01 4.943697e-01 setrgbcolor -fill -grestore -newpath -7.200969e+01 5.427287e+00 moveto -6.851816e+01 4.556772e+00 lineto -6.841811e+01 4.616799e+00 lineto -7.181034e+01 5.546888e+00 lineto -7.200969e+01 5.427287e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.544814e+01 6.604955e+00 moveto -7.200969e+01 5.427287e+00 lineto -7.181034e+01 5.546888e+00 lineto -7.515101e+01 6.783224e+00 lineto -7.544814e+01 6.604955e+00 lineto -closepath -gsave -4.884269e-01 4.884269e-01 4.884269e-01 setrgbcolor -fill -grestore -newpath -7.544814e+01 6.604955e+00 moveto -7.200969e+01 5.427287e+00 lineto -7.181034e+01 5.546888e+00 lineto -7.515101e+01 6.783224e+00 lineto -7.544814e+01 6.604955e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.880751e+01 8.080861e+00 moveto -7.544814e+01 6.604955e+00 lineto -7.515101e+01 6.783224e+00 lineto -7.841484e+01 8.316448e+00 lineto -7.880751e+01 8.080861e+00 lineto -closepath -gsave -4.824068e-01 4.824068e-01 4.824068e-01 setrgbcolor -fill -grestore -newpath -7.880751e+01 8.080861e+00 moveto -7.544814e+01 6.604955e+00 lineto -7.515101e+01 6.783224e+00 lineto -7.841484e+01 8.316448e+00 lineto -7.880751e+01 8.080861e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.206234e+01 9.843832e+00 moveto -7.880751e+01 8.080861e+00 lineto -7.841484e+01 8.316448e+00 lineto -8.15771e+01 1.013495e+01 lineto -8.206234e+01 9.843832e+00 lineto -closepath -gsave -4.763931e-01 4.763931e-01 4.763931e-01 setrgbcolor -fill -grestore -newpath -8.206234e+01 9.843832e+00 moveto -7.880751e+01 8.080861e+00 lineto -7.841484e+01 8.316448e+00 lineto -8.15771e+01 1.013495e+01 lineto -8.206234e+01 9.843832e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.5188e+01 1.188052e+01 moveto -8.206234e+01 9.843832e+00 lineto -8.15771e+01 1.013495e+01 lineto -8.461388e+01 1.222497e+01 lineto -8.5188e+01 1.188052e+01 lineto -closepath -gsave -4.704628e-01 4.704628e-01 4.704628e-01 setrgbcolor -fill -grestore -newpath -8.5188e+01 1.188052e+01 moveto -8.206234e+01 9.843832e+00 lineto -8.15771e+01 1.013495e+01 lineto -8.461388e+01 1.222497e+01 lineto -8.5188e+01 1.188052e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.816084e+01 1.417551e+01 moveto -8.5188e+01 1.188052e+01 lineto -8.461388e+01 1.222497e+01 lineto -8.750217e+01 1.457068e+01 lineto -8.816084e+01 1.417551e+01 lineto -closepath -gsave -4.646846e-01 4.646846e-01 4.646846e-01 setrgbcolor -fill -grestore -newpath -8.816084e+01 1.417551e+01 moveto -8.5188e+01 1.188052e+01 lineto -8.461388e+01 1.222497e+01 lineto -8.750217e+01 1.457068e+01 lineto -8.816084e+01 1.417551e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.095833e+01 1.671142e+01 moveto -8.816084e+01 1.417551e+01 lineto -8.750217e+01 1.457068e+01 lineto -9.02201e+01 1.715433e+01 lineto -9.095833e+01 1.671142e+01 lineto -closepath -gsave -4.591179e-01 4.591179e-01 4.591179e-01 setrgbcolor -fill -grestore -newpath -9.095833e+01 1.671142e+01 moveto -8.816084e+01 1.417551e+01 lineto -8.750217e+01 1.457068e+01 lineto -9.02201e+01 1.715433e+01 lineto -9.095833e+01 1.671142e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.355931e+01 1.946906e+01 moveto -9.095833e+01 1.671142e+01 lineto -9.02201e+01 1.715433e+01 lineto -9.274711e+01 1.995635e+01 lineto -9.355931e+01 1.946906e+01 lineto -closepath -gsave -4.538123e-01 4.538123e-01 4.538123e-01 setrgbcolor -fill -grestore -newpath -9.355931e+01 1.946906e+01 moveto -9.095833e+01 1.671142e+01 lineto -9.02201e+01 1.715433e+01 lineto -9.274711e+01 1.995635e+01 lineto -9.355931e+01 1.946906e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.594408e+01 2.242755e+01 moveto -9.355931e+01 1.946906e+01 lineto -9.274711e+01 1.995635e+01 lineto -9.506406e+01 2.295553e+01 lineto -9.594408e+01 2.242755e+01 lineto -closepath -gsave -4.488069e-01 4.488069e-01 4.488069e-01 setrgbcolor -fill -grestore -newpath -9.594408e+01 2.242755e+01 moveto -9.355931e+01 1.946906e+01 lineto -9.274711e+01 1.995635e+01 lineto -9.506406e+01 2.295553e+01 lineto -9.594408e+01 2.242755e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.809459e+01 2.55645e+01 moveto -9.594408e+01 2.242755e+01 lineto -9.506406e+01 2.295553e+01 lineto -9.715341e+01 2.612917e+01 lineto -9.809459e+01 2.55645e+01 lineto -closepath -gsave -4.441309e-01 4.441309e-01 4.441309e-01 setrgbcolor -fill -grestore -newpath -9.809459e+01 2.55645e+01 moveto -9.594408e+01 2.242755e+01 lineto -9.506406e+01 2.295553e+01 lineto -9.715341e+01 2.612917e+01 lineto -9.809459e+01 2.55645e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.999456e+01 2.885615e+01 moveto -9.809459e+01 2.55645e+01 lineto -9.715341e+01 2.612917e+01 lineto -9.899935e+01 2.945324e+01 lineto -9.999456e+01 2.885615e+01 lineto -closepath -gsave -4.398039e-01 4.398039e-01 4.398039e-01 setrgbcolor -fill -grestore -newpath -9.999456e+01 2.885615e+01 moveto -9.809459e+01 2.55645e+01 lineto -9.715341e+01 2.612917e+01 lineto -9.899935e+01 2.945324e+01 lineto -9.999456e+01 2.885615e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.016296e+02 3.227759e+01 moveto -9.999456e+01 2.885615e+01 lineto -9.899935e+01 2.945324e+01 lineto -1.005879e+02 3.290257e+01 lineto -1.016296e+02 3.227759e+01 lineto -closepath -gsave -4.358363e-01 4.358363e-01 4.358363e-01 setrgbcolor -fill -grestore -newpath -1.016296e+02 3.227759e+01 moveto -9.999456e+01 2.885615e+01 lineto -9.899935e+01 2.945324e+01 lineto -1.005879e+02 3.290257e+01 lineto -1.016296e+02 3.227759e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.029874e+02 3.580291e+01 moveto -1.016296e+02 3.227759e+01 lineto -1.005879e+02 3.290257e+01 lineto -1.01907e+02 3.645106e+01 lineto -1.029874e+02 3.580291e+01 lineto -closepath -gsave -4.322308e-01 4.322308e-01 4.322308e-01 setrgbcolor -fill -grestore -newpath -1.029874e+02 3.580291e+01 moveto -1.016296e+02 3.227759e+01 lineto -1.005879e+02 3.290257e+01 lineto -1.01907e+02 3.645106e+01 lineto -1.029874e+02 3.580291e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.040575e+02 3.940543e+01 moveto -1.029874e+02 3.580291e+01 lineto -1.01907e+02 3.645106e+01 lineto -1.029468e+02 4.007184e+01 lineto -1.040575e+02 3.940543e+01 lineto -closepath -gsave -4.289831e-01 4.289831e-01 4.289831e-01 setrgbcolor -fill -grestore -newpath -1.040575e+02 3.940543e+01 moveto -1.029874e+02 3.580291e+01 lineto -1.01907e+02 3.645106e+01 lineto -1.029468e+02 4.007184e+01 lineto -1.040575e+02 3.940543e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.04832e+02 4.305787e+01 moveto -1.040575e+02 3.940543e+01 lineto -1.029468e+02 4.007184e+01 lineto -1.036992e+02 4.37375e+01 lineto -1.04832e+02 4.305787e+01 lineto -closepath -gsave -4.260835e-01 4.260835e-01 4.260835e-01 setrgbcolor -fill -grestore -newpath -1.04832e+02 4.305787e+01 moveto -1.040575e+02 3.940543e+01 lineto -1.029468e+02 4.007184e+01 lineto -1.036992e+02 4.37375e+01 lineto -1.04832e+02 4.305787e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.053049e+02 4.673259e+01 moveto -1.04832e+02 4.305787e+01 lineto -1.036992e+02 4.37375e+01 lineto -1.041587e+02 4.742028e+01 lineto -1.053049e+02 4.673259e+01 lineto -closepath -gsave -4.235177e-01 4.235177e-01 4.235177e-01 setrgbcolor -fill -grestore -newpath -1.053049e+02 4.673259e+01 moveto -1.04832e+02 4.305787e+01 lineto -1.036992e+02 4.37375e+01 lineto -1.041587e+02 4.742028e+01 lineto -1.053049e+02 4.673259e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.054727e+02 5.040176e+01 moveto -1.053049e+02 4.673259e+01 lineto -1.041587e+02 4.742028e+01 lineto -1.043217e+02 5.109231e+01 lineto -1.054727e+02 5.040176e+01 lineto -closepath -gsave -4.212682e-01 4.212682e-01 4.212682e-01 setrgbcolor -fill -grestore -newpath -1.054727e+02 5.040176e+01 moveto -1.053049e+02 4.673259e+01 lineto -1.041587e+02 4.742028e+01 lineto -1.043217e+02 5.109231e+01 lineto -1.054727e+02 5.040176e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.053342e+02 5.40376e+01 moveto -1.054727e+02 5.040176e+01 lineto -1.043217e+02 5.109231e+01 lineto -1.041871e+02 5.47258e+01 lineto -1.053342e+02 5.40376e+01 lineto -closepath -gsave -4.193157e-01 4.193157e-01 4.193157e-01 setrgbcolor -fill -grestore -newpath -1.053342e+02 5.40376e+01 moveto -1.054727e+02 5.040176e+01 lineto -1.043217e+02 5.109231e+01 lineto -1.041871e+02 5.47258e+01 lineto -1.053342e+02 5.40376e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.048902e+02 5.76126e+01 moveto -1.053342e+02 5.40376e+01 lineto -1.041871e+02 5.47258e+01 lineto -1.037558e+02 5.829322e+01 lineto -1.048902e+02 5.76126e+01 lineto -closepath -gsave -4.176399e-01 4.176399e-01 4.176399e-01 setrgbcolor -fill -grestore -newpath -1.048902e+02 5.76126e+01 moveto -1.053342e+02 5.40376e+01 lineto -1.041871e+02 5.47258e+01 lineto -1.037558e+02 5.829322e+01 lineto -1.048902e+02 5.76126e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.041443e+02 6.109969e+01 moveto -1.048902e+02 5.76126e+01 lineto -1.037558e+02 5.829322e+01 lineto -1.030311e+02 6.176758e+01 lineto -1.041443e+02 6.109969e+01 lineto -closepath -gsave -4.162204e-01 4.162204e-01 4.162204e-01 setrgbcolor -fill -grestore -newpath -1.041443e+02 6.109969e+01 moveto -1.048902e+02 5.76126e+01 lineto -1.037558e+02 5.829322e+01 lineto -1.030311e+02 6.176758e+01 lineto -1.041443e+02 6.109969e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.03102e+02 6.447246e+01 moveto -1.041443e+02 6.109969e+01 lineto -1.030311e+02 6.176758e+01 lineto -1.020185e+02 6.512257e+01 lineto -1.03102e+02 6.447246e+01 lineto -closepath -gsave -4.150378e-01 4.150378e-01 4.150378e-01 setrgbcolor -fill -grestore -newpath -1.03102e+02 6.447246e+01 moveto -1.041443e+02 6.109969e+01 lineto -1.030311e+02 6.176758e+01 lineto -1.020185e+02 6.512257e+01 lineto -1.03102e+02 6.447246e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.017713e+02 6.770539e+01 moveto -1.03102e+02 6.447246e+01 lineto -1.020185e+02 6.512257e+01 lineto -1.007256e+02 6.833279e+01 lineto -1.017713e+02 6.770539e+01 lineto -closepath -gsave -4.140742e-01 4.140742e-01 4.140742e-01 setrgbcolor -fill -grestore -newpath -1.017713e+02 6.770539e+01 moveto -1.03102e+02 6.447246e+01 lineto -1.020185e+02 6.512257e+01 lineto -1.007256e+02 6.833279e+01 lineto -1.017713e+02 6.770539e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.001622e+02 7.0774e+01 moveto -1.017713e+02 6.770539e+01 lineto -1.007256e+02 6.833279e+01 lineto -9.916227e+01 7.137395e+01 lineto -1.001622e+02 7.0774e+01 lineto -closepath -gsave -4.133138e-01 4.133138e-01 4.133138e-01 setrgbcolor -fill -grestore -newpath -1.001622e+02 7.0774e+01 moveto -1.017713e+02 6.770539e+01 lineto -1.007256e+02 6.833279e+01 lineto -9.916227e+01 7.137395e+01 lineto -1.001622e+02 7.0774e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.828697e+01 7.365506e+01 moveto -1.001622e+02 7.0774e+01 lineto -9.916227e+01 7.137395e+01 lineto -9.734032e+01 7.422301e+01 lineto -9.828697e+01 7.365506e+01 lineto -closepath -gsave -4.127431e-01 4.127431e-01 4.127431e-01 setrgbcolor -fill -grestore -newpath -9.828697e+01 7.365506e+01 moveto -1.001622e+02 7.0774e+01 lineto -9.916227e+01 7.137395e+01 lineto -9.734032e+01 7.422301e+01 lineto -9.828697e+01 7.365506e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.615969e+01 7.632676e+01 moveto -9.828697e+01 7.365506e+01 lineto -9.734032e+01 7.422301e+01 lineto -9.527354e+01 7.685842e+01 lineto -9.615969e+01 7.632676e+01 lineto -closepath -gsave -4.123518e-01 4.123518e-01 4.123518e-01 setrgbcolor -fill -grestore -newpath -9.615969e+01 7.632676e+01 moveto -9.828697e+01 7.365506e+01 lineto -9.734032e+01 7.422301e+01 lineto -9.527354e+01 7.685842e+01 lineto -9.615969e+01 7.632676e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.379652e+01 7.876888e+01 moveto -9.615969e+01 7.632676e+01 lineto -9.527354e+01 7.685842e+01 lineto -9.297758e+01 7.926021e+01 lineto -9.379652e+01 7.876888e+01 lineto -closepath -gsave -4.121322e-01 4.121322e-01 4.121322e-01 setrgbcolor -fill -grestore -newpath -9.379652e+01 7.876888e+01 moveto -9.615969e+01 7.632676e+01 lineto -9.527354e+01 7.685842e+01 lineto -9.297758e+01 7.926021e+01 lineto -9.379652e+01 7.876888e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.121535e+01 8.096291e+01 moveto -9.379652e+01 7.876888e+01 lineto -9.297758e+01 7.926021e+01 lineto -9.046981e+01 8.141021e+01 lineto -9.121535e+01 8.096291e+01 lineto -closepath -gsave -4.120802e-01 4.120802e-01 4.120802e-01 setrgbcolor -fill -grestore -newpath -9.121535e+01 8.096291e+01 moveto -9.379652e+01 7.876888e+01 lineto -9.297758e+01 7.926021e+01 lineto -9.046981e+01 8.141021e+01 lineto -9.121535e+01 8.096291e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.843572e+01 8.289227e+01 moveto -9.121535e+01 8.096291e+01 lineto -9.046981e+01 8.141021e+01 lineto -8.776923e+01 8.329213e+01 lineto -8.843572e+01 8.289227e+01 lineto -closepath -gsave -4.121949e-01 4.121949e-01 4.121949e-01 setrgbcolor -fill -grestore -newpath -8.843572e+01 8.289227e+01 moveto -9.121535e+01 8.096291e+01 lineto -9.046981e+01 8.141021e+01 lineto -8.776923e+01 8.329213e+01 lineto -8.843572e+01 8.289227e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.832164e+01 8.666917e+01 moveto -6.181686e+01 8.750999e+01 lineto -6.190738e+01 8.745568e+01 lineto -5.851157e+01 8.655522e+01 lineto -5.832164e+01 8.666917e+01 lineto -closepath -gsave -4.949296e-01 4.949296e-01 4.949296e-01 setrgbcolor -fill -grestore -newpath -5.832164e+01 8.666917e+01 moveto -6.181686e+01 8.750999e+01 lineto -6.190738e+01 8.745568e+01 lineto -5.851157e+01 8.655522e+01 lineto -5.832164e+01 8.666917e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.487699e+01 8.552046e+01 moveto -5.832164e+01 8.666917e+01 lineto -5.851157e+01 8.655522e+01 lineto -5.516488e+01 8.534774e+01 lineto -5.487699e+01 8.552046e+01 lineto -closepath -gsave -4.889988e-01 4.889988e-01 4.889988e-01 setrgbcolor -fill -grestore -newpath -5.487699e+01 8.552046e+01 moveto -5.832164e+01 8.666917e+01 lineto -5.851157e+01 8.655522e+01 lineto -5.516488e+01 8.534774e+01 lineto -5.487699e+01 8.552046e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.150897e+01 8.407257e+01 moveto -5.487699e+01 8.552046e+01 lineto -5.516488e+01 8.534774e+01 lineto -5.189264e+01 8.384238e+01 lineto -5.150897e+01 8.407257e+01 lineto -closepath -gsave -4.829823e-01 4.829823e-01 4.829823e-01 setrgbcolor -fill -grestore -newpath -5.150897e+01 8.407257e+01 moveto -5.487699e+01 8.552046e+01 lineto -5.516488e+01 8.534774e+01 lineto -5.189264e+01 8.384238e+01 lineto -5.150897e+01 8.407257e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.841811e+01 4.616799e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.829698e+01 4.674004e+00 lineto -6.841811e+01 4.616799e+00 lineto -closepath -gsave -5.009107e-01 5.009107e-01 5.009107e-01 setrgbcolor -fill -grestore -newpath -6.841811e+01 4.616799e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.829698e+01 4.674004e+00 lineto -6.841811e+01 4.616799e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.181034e+01 5.546888e+00 moveto -6.841811e+01 4.616799e+00 lineto -6.829698e+01 4.674004e+00 lineto -7.1569e+01 5.660865e+00 lineto -7.181034e+01 5.546888e+00 lineto -closepath -gsave -4.965794e-01 4.965794e-01 4.965794e-01 setrgbcolor -fill -grestore -newpath -7.181034e+01 5.546888e+00 moveto -6.841811e+01 4.616799e+00 lineto -6.829698e+01 4.674004e+00 lineto -7.1569e+01 5.660865e+00 lineto -7.181034e+01 5.546888e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.515101e+01 6.783224e+00 moveto -7.181034e+01 5.546888e+00 lineto -7.1569e+01 5.660865e+00 lineto -7.479129e+01 6.95311e+00 lineto -7.515101e+01 6.783224e+00 lineto -closepath -gsave -4.919545e-01 4.919545e-01 4.919545e-01 setrgbcolor -fill -grestore -newpath -7.515101e+01 6.783224e+00 moveto -7.181034e+01 5.546888e+00 lineto -7.1569e+01 5.660865e+00 lineto -7.479129e+01 6.95311e+00 lineto -7.515101e+01 6.783224e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.841484e+01 8.316448e+00 moveto -7.515101e+01 6.783224e+00 lineto -7.479129e+01 6.95311e+00 lineto -7.793946e+01 8.540957e+00 lineto -7.841484e+01 8.316448e+00 lineto -closepath -gsave -4.871086e-01 4.871086e-01 4.871086e-01 setrgbcolor -fill -grestore -newpath -7.841484e+01 8.316448e+00 moveto -7.515101e+01 6.783224e+00 lineto -7.479129e+01 6.95311e+00 lineto -7.793946e+01 8.540957e+00 lineto -7.841484e+01 8.316448e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.15771e+01 1.013495e+01 moveto -7.841484e+01 8.316448e+00 lineto -7.793946e+01 8.540957e+00 lineto -8.098967e+01 1.041239e+01 lineto -8.15771e+01 1.013495e+01 lineto -closepath -gsave -4.821143e-01 4.821143e-01 4.821143e-01 setrgbcolor -fill -grestore -newpath -8.15771e+01 1.013495e+01 moveto -7.841484e+01 8.316448e+00 lineto -7.793946e+01 8.540957e+00 lineto -8.098967e+01 1.041239e+01 lineto -8.15771e+01 1.013495e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.461388e+01 1.222497e+01 moveto -8.15771e+01 1.013495e+01 lineto -8.098967e+01 1.041239e+01 lineto -8.391883e+01 1.255323e+01 lineto -8.461388e+01 1.222497e+01 lineto -closepath -gsave -4.77042e-01 4.77042e-01 4.77042e-01 setrgbcolor -fill -grestore -newpath -8.461388e+01 1.222497e+01 moveto -8.15771e+01 1.013495e+01 lineto -8.098967e+01 1.041239e+01 lineto -8.391883e+01 1.255323e+01 lineto -8.461388e+01 1.222497e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.750217e+01 1.457068e+01 moveto -8.461388e+01 1.222497e+01 lineto -8.391883e+01 1.255323e+01 lineto -8.670476e+01 1.494728e+01 lineto -8.750217e+01 1.457068e+01 lineto -closepath -gsave -4.719587e-01 4.719587e-01 4.719587e-01 setrgbcolor -fill -grestore -newpath -8.750217e+01 1.457068e+01 moveto -8.461388e+01 1.222497e+01 lineto -8.391883e+01 1.255323e+01 lineto -8.670476e+01 1.494728e+01 lineto -8.750217e+01 1.457068e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.02201e+01 1.715433e+01 moveto -8.750217e+01 1.457068e+01 lineto -8.670476e+01 1.494728e+01 lineto -8.932638e+01 1.757641e+01 lineto -9.02201e+01 1.715433e+01 lineto -closepath -gsave -4.669265e-01 4.669265e-01 4.669265e-01 setrgbcolor -fill -grestore -newpath -9.02201e+01 1.715433e+01 moveto -8.750217e+01 1.457068e+01 lineto -8.670476e+01 1.494728e+01 lineto -8.932638e+01 1.757641e+01 lineto -9.02201e+01 1.715433e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.274711e+01 1.995635e+01 moveto -9.02201e+01 1.715433e+01 lineto -8.932638e+01 1.757641e+01 lineto -9.176384e+01 2.042072e+01 lineto -9.274711e+01 1.995635e+01 lineto -closepath -gsave -4.620012e-01 4.620012e-01 4.620012e-01 setrgbcolor -fill -grestore -newpath -9.274711e+01 1.995635e+01 moveto -9.02201e+01 1.715433e+01 lineto -8.932638e+01 1.757641e+01 lineto -9.176384e+01 2.042072e+01 lineto -9.274711e+01 1.995635e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.506406e+01 2.295553e+01 moveto -9.274711e+01 1.995635e+01 lineto -9.176384e+01 2.042072e+01 lineto -9.399869e+01 2.345868e+01 lineto -9.506406e+01 2.295553e+01 lineto -closepath -gsave -4.572318e-01 4.572318e-01 4.572318e-01 setrgbcolor -fill -grestore -newpath -9.506406e+01 2.295553e+01 moveto -9.274711e+01 1.995635e+01 lineto -9.176384e+01 2.042072e+01 lineto -9.399869e+01 2.345868e+01 lineto -9.506406e+01 2.295553e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.715341e+01 2.612917e+01 moveto -9.506406e+01 2.295553e+01 lineto -9.399869e+01 2.345868e+01 lineto -9.6014e+01 2.666728e+01 lineto -9.715341e+01 2.612917e+01 lineto -closepath -gsave -4.5266e-01 4.5266e-01 4.5266e-01 setrgbcolor -fill -grestore -newpath -9.715341e+01 2.612917e+01 moveto -9.506406e+01 2.295553e+01 lineto -9.399869e+01 2.345868e+01 lineto -9.6014e+01 2.666728e+01 lineto -9.715341e+01 2.612917e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.899935e+01 2.945324e+01 moveto -9.715341e+01 2.612917e+01 lineto -9.6014e+01 2.666728e+01 lineto -9.779453e+01 3.002225e+01 lineto -9.899935e+01 2.945324e+01 lineto -closepath -gsave -4.483196e-01 4.483196e-01 4.483196e-01 setrgbcolor -fill -grestore -newpath -9.899935e+01 2.945324e+01 moveto -9.715341e+01 2.612917e+01 lineto -9.6014e+01 2.666728e+01 lineto -9.779453e+01 3.002225e+01 lineto -9.899935e+01 2.945324e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.005879e+02 3.290257e+01 moveto -9.899935e+01 2.945324e+01 lineto -9.779453e+01 3.002225e+01 lineto -9.932678e+01 3.349817e+01 lineto -1.005879e+02 3.290257e+01 lineto -closepath -gsave -4.442367e-01 4.442367e-01 4.442367e-01 setrgbcolor -fill -grestore -newpath -1.005879e+02 3.290257e+01 moveto -9.899935e+01 2.945324e+01 lineto -9.779453e+01 3.002225e+01 lineto -9.932678e+01 3.349817e+01 lineto -1.005879e+02 3.290257e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.01907e+02 3.645106e+01 moveto -1.005879e+02 3.290257e+01 lineto -9.932678e+01 3.349817e+01 lineto -1.005992e+02 3.706873e+01 lineto -1.01907e+02 3.645106e+01 lineto -closepath -gsave -4.404304e-01 4.404304e-01 4.404304e-01 setrgbcolor -fill -grestore -newpath -1.01907e+02 3.645106e+01 moveto -1.005879e+02 3.290257e+01 lineto -9.932678e+01 3.349817e+01 lineto -1.005992e+02 3.706873e+01 lineto -1.01907e+02 3.645106e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.029468e+02 4.007184e+01 moveto -1.01907e+02 3.645106e+01 lineto -1.005992e+02 3.706873e+01 lineto -1.016021e+02 4.070691e+01 lineto -1.029468e+02 4.007184e+01 lineto -closepath -gsave -4.369126e-01 4.369126e-01 4.369126e-01 setrgbcolor -fill -grestore -newpath -1.029468e+02 4.007184e+01 moveto -1.01907e+02 3.645106e+01 lineto -1.005992e+02 3.706873e+01 lineto -1.016021e+02 4.070691e+01 lineto -1.029468e+02 4.007184e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.036992e+02 4.37375e+01 moveto -1.029468e+02 4.007184e+01 lineto -1.016021e+02 4.070691e+01 lineto -1.023278e+02 4.438516e+01 lineto -1.036992e+02 4.37375e+01 lineto -closepath -gsave -4.336891e-01 4.336891e-01 4.336891e-01 setrgbcolor -fill -grestore -newpath -1.036992e+02 4.37375e+01 moveto -1.029468e+02 4.007184e+01 lineto -1.016021e+02 4.070691e+01 lineto -1.023278e+02 4.438516e+01 lineto -1.036992e+02 4.37375e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.041587e+02 4.742028e+01 moveto -1.036992e+02 4.37375e+01 lineto -1.023278e+02 4.438516e+01 lineto -1.02771e+02 4.807564e+01 lineto -1.041587e+02 4.742028e+01 lineto -closepath -gsave -4.307601e-01 4.307601e-01 4.307601e-01 setrgbcolor -fill -grestore -newpath -1.041587e+02 4.742028e+01 moveto -1.036992e+02 4.37375e+01 lineto -1.023278e+02 4.438516e+01 lineto -1.02771e+02 4.807564e+01 lineto -1.041587e+02 4.742028e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.043217e+02 5.109231e+01 moveto -1.041587e+02 4.742028e+01 lineto -1.02771e+02 4.807564e+01 lineto -1.029283e+02 5.17504e+01 lineto -1.043217e+02 5.109231e+01 lineto -closepath -gsave -4.281214e-01 4.281214e-01 4.281214e-01 setrgbcolor -fill -grestore -newpath -1.043217e+02 5.109231e+01 moveto -1.041587e+02 4.742028e+01 lineto -1.02771e+02 4.807564e+01 lineto -1.029283e+02 5.17504e+01 lineto -1.043217e+02 5.109231e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.041871e+02 5.47258e+01 moveto -1.043217e+02 5.109231e+01 lineto -1.029283e+02 5.17504e+01 lineto -1.027984e+02 5.538163e+01 lineto -1.041871e+02 5.47258e+01 lineto -closepath -gsave -4.257652e-01 4.257652e-01 4.257652e-01 setrgbcolor -fill -grestore -newpath -1.041871e+02 5.47258e+01 moveto -1.043217e+02 5.109231e+01 lineto -1.029283e+02 5.17504e+01 lineto -1.027984e+02 5.538163e+01 lineto -1.041871e+02 5.47258e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.037558e+02 5.829322e+01 moveto -1.041871e+02 5.47258e+01 lineto -1.027984e+02 5.538163e+01 lineto -1.023824e+02 5.894183e+01 lineto -1.037558e+02 5.829322e+01 lineto -closepath -gsave -4.236807e-01 4.236807e-01 4.236807e-01 setrgbcolor -fill -grestore -newpath -1.037558e+02 5.829322e+01 moveto -1.041871e+02 5.47258e+01 lineto -1.027984e+02 5.538163e+01 lineto -1.023824e+02 5.894183e+01 lineto -1.037558e+02 5.829322e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.030311e+02 6.176758e+01 moveto -1.037558e+02 5.829322e+01 lineto -1.023824e+02 5.894183e+01 lineto -1.016834e+02 6.240406e+01 lineto -1.030311e+02 6.176758e+01 lineto -closepath -gsave -4.218554e-01 4.218554e-01 4.218554e-01 setrgbcolor -fill -grestore -newpath -1.030311e+02 6.176758e+01 moveto -1.037558e+02 5.829322e+01 lineto -1.023824e+02 5.894183e+01 lineto -1.016834e+02 6.240406e+01 lineto -1.030311e+02 6.176758e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.020185e+02 6.512257e+01 moveto -1.030311e+02 6.176758e+01 lineto -1.016834e+02 6.240406e+01 lineto -1.007066e+02 6.574211e+01 lineto -1.020185e+02 6.512257e+01 lineto -closepath -gsave -4.202757e-01 4.202757e-01 4.202757e-01 setrgbcolor -fill -grestore -newpath -1.020185e+02 6.512257e+01 moveto -1.030311e+02 6.176758e+01 lineto -1.016834e+02 6.240406e+01 lineto -1.007066e+02 6.574211e+01 lineto -1.020185e+02 6.512257e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.007256e+02 6.833279e+01 moveto -1.020185e+02 6.512257e+01 lineto -1.007066e+02 6.574211e+01 lineto -9.945959e+01 6.893069e+01 lineto -1.007256e+02 6.833279e+01 lineto -closepath -gsave -4.189277e-01 4.189277e-01 4.189277e-01 setrgbcolor -fill -grestore -newpath -1.007256e+02 6.833279e+01 moveto -1.020185e+02 6.512257e+01 lineto -1.007066e+02 6.574211e+01 lineto -9.945959e+01 6.893069e+01 lineto -1.007256e+02 6.833279e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.916227e+01 7.137395e+01 moveto -1.007256e+02 6.833279e+01 lineto -9.945959e+01 6.893069e+01 lineto -9.795167e+01 7.194569e+01 lineto -9.916227e+01 7.137395e+01 lineto -closepath -gsave -4.177978e-01 4.177978e-01 4.177978e-01 setrgbcolor -fill -grestore -newpath -9.916227e+01 7.137395e+01 moveto -1.007256e+02 6.833279e+01 lineto -9.945959e+01 6.893069e+01 lineto -9.795167e+01 7.194569e+01 lineto -9.916227e+01 7.137395e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.734032e+01 7.422301e+01 moveto -9.916227e+01 7.137395e+01 lineto -9.795167e+01 7.194569e+01 lineto -9.619428e+01 7.476426e+01 lineto -9.734032e+01 7.422301e+01 lineto -closepath -gsave -4.168734e-01 4.168734e-01 4.168734e-01 setrgbcolor -fill -grestore -newpath -9.734032e+01 7.422301e+01 moveto -9.916227e+01 7.137395e+01 lineto -9.795167e+01 7.194569e+01 lineto -9.619428e+01 7.476426e+01 lineto -9.734032e+01 7.422301e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.527354e+01 7.685842e+01 moveto -9.734032e+01 7.422301e+01 lineto -9.619428e+01 7.476426e+01 lineto -9.420074e+01 7.736507e+01 lineto -9.527354e+01 7.685842e+01 lineto -closepath -gsave -4.161432e-01 4.161432e-01 4.161432e-01 setrgbcolor -fill -grestore -newpath -9.527354e+01 7.685842e+01 moveto -9.734032e+01 7.422301e+01 lineto -9.619428e+01 7.476426e+01 lineto -9.420074e+01 7.736507e+01 lineto -9.527354e+01 7.685842e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.297758e+01 7.926021e+01 moveto -9.527354e+01 7.685842e+01 lineto -9.420074e+01 7.736507e+01 lineto -9.198614e+01 7.972844e+01 lineto -9.297758e+01 7.926021e+01 lineto -closepath -gsave -4.155977e-01 4.155977e-01 4.155977e-01 setrgbcolor -fill -grestore -newpath -9.297758e+01 7.926021e+01 moveto -9.527354e+01 7.685842e+01 lineto -9.420074e+01 7.736507e+01 lineto -9.198614e+01 7.972844e+01 lineto -9.297758e+01 7.926021e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.046981e+01 8.141021e+01 moveto -9.297758e+01 7.926021e+01 lineto -9.198614e+01 7.972844e+01 lineto -8.956725e+01 8.183647e+01 lineto -9.046981e+01 8.141021e+01 lineto -closepath -gsave -4.152293e-01 4.152293e-01 4.152293e-01 setrgbcolor -fill -grestore -newpath -9.046981e+01 8.141021e+01 moveto -9.297758e+01 7.926021e+01 lineto -9.198614e+01 7.972844e+01 lineto -8.956725e+01 8.183647e+01 lineto -9.046981e+01 8.141021e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.776923e+01 8.329213e+01 moveto -9.046981e+01 8.141021e+01 lineto -8.956725e+01 8.183647e+01 lineto -8.696236e+01 8.36732e+01 lineto -8.776923e+01 8.329213e+01 lineto -closepath -gsave -4.150328e-01 4.150328e-01 4.150328e-01 setrgbcolor -fill -grestore -newpath -8.776923e+01 8.329213e+01 moveto -9.046981e+01 8.141021e+01 lineto -8.956725e+01 8.183647e+01 lineto -8.696236e+01 8.36732e+01 lineto -8.776923e+01 8.329213e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.489628e+01 8.489174e+01 moveto -8.776923e+01 8.329213e+01 lineto -8.696236e+01 8.36732e+01 lineto -8.419122e+01 8.522472e+01 lineto -8.489628e+01 8.489174e+01 lineto -closepath -gsave -4.150055e-01 4.150055e-01 4.150055e-01 setrgbcolor -fill -grestore -newpath -8.489628e+01 8.489174e+01 moveto -8.776923e+01 8.329213e+01 lineto -8.696236e+01 8.36732e+01 lineto -8.419122e+01 8.522472e+01 lineto -8.489628e+01 8.489174e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.851157e+01 8.655522e+01 moveto -6.190738e+01 8.745568e+01 lineto -6.201697e+01 8.740392e+01 lineto -5.87415e+01 8.644663e+01 lineto -5.851157e+01 8.655522e+01 lineto -closepath -gsave -4.970066e-01 4.970066e-01 4.970066e-01 setrgbcolor -fill -grestore -newpath -5.851157e+01 8.655522e+01 moveto -6.190738e+01 8.745568e+01 lineto -6.201697e+01 8.740392e+01 lineto -5.87415e+01 8.644663e+01 lineto -5.851157e+01 8.655522e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.516488e+01 8.534774e+01 moveto -5.851157e+01 8.655522e+01 lineto -5.87415e+01 8.644663e+01 lineto -5.55134e+01 8.518314e+01 lineto -5.516488e+01 8.534774e+01 lineto -closepath -gsave -4.924066e-01 4.924066e-01 4.924066e-01 setrgbcolor -fill -grestore -newpath -5.516488e+01 8.534774e+01 moveto -5.851157e+01 8.655522e+01 lineto -5.87415e+01 8.644663e+01 lineto -5.55134e+01 8.518314e+01 lineto -5.516488e+01 8.534774e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.189264e+01 8.384238e+01 moveto -5.516488e+01 8.534774e+01 lineto -5.55134e+01 8.518314e+01 lineto -5.235712e+01 8.362302e+01 lineto -5.189264e+01 8.384238e+01 lineto -closepath -gsave -4.875786e-01 4.875786e-01 4.875786e-01 setrgbcolor -fill -grestore -newpath -5.189264e+01 8.384238e+01 moveto -5.516488e+01 8.534774e+01 lineto -5.55134e+01 8.518314e+01 lineto -5.235712e+01 8.362302e+01 lineto -5.189264e+01 8.384238e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.829698e+01 4.674004e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.815553e+01 4.728034e+00 lineto -6.829698e+01 4.674004e+00 lineto -closepath -gsave -5.01691e-01 5.01691e-01 5.01691e-01 setrgbcolor -fill -grestore -newpath -6.829698e+01 4.674004e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.815553e+01 4.728034e+00 lineto -6.829698e+01 4.674004e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.1569e+01 5.660865e+00 moveto -6.829698e+01 4.674004e+00 lineto -6.815553e+01 4.728034e+00 lineto -7.128716e+01 5.768515e+00 lineto -7.1569e+01 5.660865e+00 lineto -closepath -gsave -4.98859e-01 4.98859e-01 4.98859e-01 setrgbcolor -fill -grestore -newpath -7.1569e+01 5.660865e+00 moveto -6.829698e+01 4.674004e+00 lineto -6.815553e+01 4.728034e+00 lineto -7.128716e+01 5.768515e+00 lineto -7.1569e+01 5.660865e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.479129e+01 6.95311e+00 moveto -7.1569e+01 5.660865e+00 lineto -7.128716e+01 5.768515e+00 lineto -7.437121e+01 7.113566e+00 lineto -7.479129e+01 6.95311e+00 lineto -closepath -gsave -4.956325e-01 4.956325e-01 4.956325e-01 setrgbcolor -fill -grestore -newpath -7.479129e+01 6.95311e+00 moveto -7.1569e+01 5.660865e+00 lineto -7.128716e+01 5.768515e+00 lineto -7.437121e+01 7.113566e+00 lineto -7.479129e+01 6.95311e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.793946e+01 8.540957e+00 moveto -7.479129e+01 6.95311e+00 lineto -7.437121e+01 7.113566e+00 lineto -7.73843e+01 8.753004e+00 lineto -7.793946e+01 8.540957e+00 lineto -closepath -gsave -4.920642e-01 4.920642e-01 4.920642e-01 setrgbcolor -fill -grestore -newpath -7.793946e+01 8.540957e+00 moveto -7.479129e+01 6.95311e+00 lineto -7.437121e+01 7.113566e+00 lineto -7.73843e+01 8.753004e+00 lineto -7.793946e+01 8.540957e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.098967e+01 1.041239e+01 moveto -7.793946e+01 8.540957e+00 lineto -7.73843e+01 8.753004e+00 lineto -8.030365e+01 1.067442e+01 lineto -8.098967e+01 1.041239e+01 lineto -closepath -gsave -4.88211e-01 4.88211e-01 4.88211e-01 setrgbcolor -fill -grestore -newpath -8.098967e+01 1.041239e+01 moveto -7.793946e+01 8.540957e+00 lineto -7.73843e+01 8.753004e+00 lineto -8.030365e+01 1.067442e+01 lineto -8.098967e+01 1.041239e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.391883e+01 1.255323e+01 moveto -8.098967e+01 1.041239e+01 lineto -8.030365e+01 1.067442e+01 lineto -8.310713e+01 1.286326e+01 lineto -8.391883e+01 1.255323e+01 lineto -closepath -gsave -4.841317e-01 4.841317e-01 4.841317e-01 setrgbcolor -fill -grestore -newpath -8.391883e+01 1.255323e+01 moveto -8.098967e+01 1.041239e+01 lineto -8.030365e+01 1.067442e+01 lineto -8.310713e+01 1.286326e+01 lineto -8.391883e+01 1.255323e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.670476e+01 1.494728e+01 moveto -8.391883e+01 1.255323e+01 lineto -8.310713e+01 1.286326e+01 lineto -8.577354e+01 1.530297e+01 lineto -8.670476e+01 1.494728e+01 lineto -closepath -gsave -4.79886e-01 4.79886e-01 4.79886e-01 setrgbcolor -fill -grestore -newpath -8.670476e+01 1.494728e+01 moveto -8.391883e+01 1.255323e+01 lineto -8.310713e+01 1.286326e+01 lineto -8.577354e+01 1.530297e+01 lineto -8.670476e+01 1.494728e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.932638e+01 1.757641e+01 moveto -8.670476e+01 1.494728e+01 lineto -8.577354e+01 1.530297e+01 lineto -8.828268e+01 1.797506e+01 lineto -8.932638e+01 1.757641e+01 lineto -closepath -gsave -4.755329e-01 4.755329e-01 4.755329e-01 setrgbcolor -fill -grestore -newpath -8.932638e+01 1.757641e+01 moveto -8.670476e+01 1.494728e+01 lineto -8.577354e+01 1.530297e+01 lineto -8.828268e+01 1.797506e+01 lineto -8.932638e+01 1.757641e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.176384e+01 2.042072e+01 moveto -8.932638e+01 1.757641e+01 lineto -8.828268e+01 1.797506e+01 lineto -9.061557e+01 2.085932e+01 lineto -9.176384e+01 2.042072e+01 lineto -closepath -gsave -4.711294e-01 4.711294e-01 4.711294e-01 setrgbcolor -fill -grestore -newpath -9.176384e+01 2.042072e+01 moveto -8.932638e+01 1.757641e+01 lineto -8.828268e+01 1.797506e+01 lineto -9.061557e+01 2.085932e+01 lineto -9.176384e+01 2.042072e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.399869e+01 2.345868e+01 moveto -9.176384e+01 2.042072e+01 lineto -9.061557e+01 2.085932e+01 lineto -9.275453e+01 2.39339e+01 lineto -9.399869e+01 2.345868e+01 lineto -closepath -gsave -4.667292e-01 4.667292e-01 4.667292e-01 setrgbcolor -fill -grestore -newpath -9.399869e+01 2.345868e+01 moveto -9.176384e+01 2.042072e+01 lineto -9.061557e+01 2.085932e+01 lineto -9.275453e+01 2.39339e+01 lineto -9.399869e+01 2.345868e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.6014e+01 2.666728e+01 moveto -9.399869e+01 2.345868e+01 lineto -9.275453e+01 2.39339e+01 lineto -9.468338e+01 2.717553e+01 lineto -9.6014e+01 2.666728e+01 lineto -closepath -gsave -4.62382e-01 4.62382e-01 4.62382e-01 setrgbcolor -fill -grestore -newpath -9.6014e+01 2.666728e+01 moveto -9.399869e+01 2.345868e+01 lineto -9.275453e+01 2.39339e+01 lineto -9.468338e+01 2.717553e+01 lineto -9.6014e+01 2.666728e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.779453e+01 3.002225e+01 moveto -9.6014e+01 2.666728e+01 lineto -9.468338e+01 2.717553e+01 lineto -9.638751e+01 3.055967e+01 lineto -9.779453e+01 3.002225e+01 lineto -closepath -gsave -4.581321e-01 4.581321e-01 4.581321e-01 setrgbcolor -fill -grestore -newpath -9.779453e+01 3.002225e+01 moveto -9.6014e+01 2.666728e+01 lineto -9.468338e+01 2.717553e+01 lineto -9.638751e+01 3.055967e+01 lineto -9.779453e+01 3.002225e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.932678e+01 3.349817e+01 moveto -9.779453e+01 3.002225e+01 lineto -9.638751e+01 3.055967e+01 lineto -9.785402e+01 3.40607e+01 lineto -9.932678e+01 3.349817e+01 lineto -closepath -gsave -4.540188e-01 4.540188e-01 4.540188e-01 setrgbcolor -fill -grestore -newpath -9.932678e+01 3.349817e+01 moveto -9.779453e+01 3.002225e+01 lineto -9.638751e+01 3.055967e+01 lineto -9.785402e+01 3.40607e+01 lineto -9.932678e+01 3.349817e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.005992e+02 3.706873e+01 moveto -9.932678e+01 3.349817e+01 lineto -9.785402e+01 3.40607e+01 lineto -9.907182e+01 3.765212e+01 lineto -1.005992e+02 3.706873e+01 lineto -closepath -gsave -4.500749e-01 4.500749e-01 4.500749e-01 setrgbcolor -fill -grestore -newpath -1.005992e+02 3.706873e+01 moveto -9.932678e+01 3.349817e+01 lineto -9.785402e+01 3.40607e+01 lineto -9.907182e+01 3.765212e+01 lineto -1.005992e+02 3.706873e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.016021e+02 4.070691e+01 moveto -1.005992e+02 3.706873e+01 lineto -9.907182e+01 3.765212e+01 lineto -1.000317e+02 4.130673e+01 lineto -1.016021e+02 4.070691e+01 lineto -closepath -gsave -4.463277e-01 4.463277e-01 4.463277e-01 setrgbcolor -fill -grestore -newpath -1.016021e+02 4.070691e+01 moveto -1.005992e+02 3.706873e+01 lineto -9.907182e+01 3.765212e+01 lineto -1.000317e+02 4.130673e+01 lineto -1.016021e+02 4.070691e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.023278e+02 4.438516e+01 moveto -1.016021e+02 4.070691e+01 lineto -1.000317e+02 4.130673e+01 lineto -1.007263e+02 4.499688e+01 lineto -1.023278e+02 4.438516e+01 lineto -closepath -gsave -4.427981e-01 4.427981e-01 4.427981e-01 setrgbcolor -fill -grestore -newpath -1.023278e+02 4.438516e+01 moveto -1.016021e+02 4.070691e+01 lineto -1.000317e+02 4.130673e+01 lineto -1.007263e+02 4.499688e+01 lineto -1.023278e+02 4.438516e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.02771e+02 4.807564e+01 moveto -1.023278e+02 4.438516e+01 lineto -1.007263e+02 4.499688e+01 lineto -1.011505e+02 4.869461e+01 lineto -1.02771e+02 4.807564e+01 lineto -closepath -gsave -4.395017e-01 4.395017e-01 4.395017e-01 setrgbcolor -fill -grestore -newpath -1.02771e+02 4.807564e+01 moveto -1.023278e+02 4.438516e+01 lineto -1.007263e+02 4.499688e+01 lineto -1.011505e+02 4.869461e+01 lineto -1.02771e+02 4.807564e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.029283e+02 5.17504e+01 moveto -1.02771e+02 4.807564e+01 lineto -1.011505e+02 4.869461e+01 lineto -1.01301e+02 5.237195e+01 lineto -1.029283e+02 5.17504e+01 lineto -closepath -gsave -4.364485e-01 4.364485e-01 4.364485e-01 setrgbcolor -fill -grestore -newpath -1.029283e+02 5.17504e+01 moveto -1.02771e+02 4.807564e+01 lineto -1.011505e+02 4.869461e+01 lineto -1.01301e+02 5.237195e+01 lineto -1.029283e+02 5.17504e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.027984e+02 5.538163e+01 moveto -1.029283e+02 5.17504e+01 lineto -1.01301e+02 5.237195e+01 lineto -1.011767e+02 5.600105e+01 lineto -1.027984e+02 5.538163e+01 lineto -closepath -gsave -4.336438e-01 4.336438e-01 4.336438e-01 setrgbcolor -fill -grestore -newpath -1.027984e+02 5.538163e+01 moveto -1.029283e+02 5.17504e+01 lineto -1.01301e+02 5.237195e+01 lineto -1.011767e+02 5.600105e+01 lineto -1.027984e+02 5.538163e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.023824e+02 5.894183e+01 moveto -1.027984e+02 5.538163e+01 lineto -1.011767e+02 5.600105e+01 lineto -1.007785e+02 5.955444e+01 lineto -1.023824e+02 5.894183e+01 lineto -closepath -gsave -4.310889e-01 4.310889e-01 4.310889e-01 setrgbcolor -fill -grestore -newpath -1.023824e+02 5.894183e+01 moveto -1.027984e+02 5.538163e+01 lineto -1.011767e+02 5.600105e+01 lineto -1.007785e+02 5.955444e+01 lineto -1.023824e+02 5.894183e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.016834e+02 6.240406e+01 moveto -1.023824e+02 5.894183e+01 lineto -1.007785e+02 5.955444e+01 lineto -1.001095e+02 6.300522e+01 lineto -1.016834e+02 6.240406e+01 lineto -closepath -gsave -4.287814e-01 4.287814e-01 4.287814e-01 setrgbcolor -fill -grestore -newpath -1.016834e+02 6.240406e+01 moveto -1.023824e+02 5.894183e+01 lineto -1.007785e+02 5.955444e+01 lineto -1.001095e+02 6.300522e+01 lineto -1.016834e+02 6.240406e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.007066e+02 6.574211e+01 moveto -1.016834e+02 6.240406e+01 lineto -1.001095e+02 6.300522e+01 lineto -9.917468e+01 6.632725e+01 lineto -1.007066e+02 6.574211e+01 lineto -closepath -gsave -4.267163e-01 4.267163e-01 4.267163e-01 setrgbcolor -fill -grestore -newpath -1.007066e+02 6.574211e+01 moveto -1.016834e+02 6.240406e+01 lineto -1.001095e+02 6.300522e+01 lineto -9.917468e+01 6.632725e+01 lineto -1.007066e+02 6.574211e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.945959e+01 6.893069e+01 moveto -1.007066e+02 6.574211e+01 lineto -9.917468e+01 6.632725e+01 lineto -9.798114e+01 6.949541e+01 lineto -9.945959e+01 6.893069e+01 lineto -closepath -gsave -4.248863e-01 4.248863e-01 4.248863e-01 setrgbcolor -fill -grestore -newpath -9.945959e+01 6.893069e+01 moveto -1.007066e+02 6.574211e+01 lineto -9.917468e+01 6.632725e+01 lineto -9.798114e+01 6.949541e+01 lineto -9.945959e+01 6.893069e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.795167e+01 7.194569e+01 moveto -9.945959e+01 6.893069e+01 lineto -9.798114e+01 6.949541e+01 lineto -9.653791e+01 7.248569e+01 lineto -9.795167e+01 7.194569e+01 lineto -closepath -gsave -4.232828e-01 4.232828e-01 4.232828e-01 setrgbcolor -fill -grestore -newpath -9.795167e+01 7.194569e+01 moveto -9.945959e+01 6.893069e+01 lineto -9.798114e+01 6.949541e+01 lineto -9.653791e+01 7.248569e+01 lineto -9.795167e+01 7.194569e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.619428e+01 7.476426e+01 moveto -9.795167e+01 7.194569e+01 lineto -9.653791e+01 7.248569e+01 lineto -9.485592e+01 7.527546e+01 lineto -9.619428e+01 7.476426e+01 lineto -closepath -gsave -4.218964e-01 4.218964e-01 4.218964e-01 setrgbcolor -fill -grestore -newpath -9.619428e+01 7.476426e+01 moveto -9.795167e+01 7.194569e+01 lineto -9.653791e+01 7.248569e+01 lineto -9.485592e+01 7.527546e+01 lineto -9.619428e+01 7.476426e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.420074e+01 7.736507e+01 moveto -9.619428e+01 7.476426e+01 lineto -9.485592e+01 7.527546e+01 lineto -9.294792e+01 7.78436e+01 lineto -9.420074e+01 7.736507e+01 lineto -closepath -gsave -4.207174e-01 4.207174e-01 4.207174e-01 setrgbcolor -fill -grestore -newpath -9.420074e+01 7.736507e+01 moveto -9.619428e+01 7.476426e+01 lineto -9.485592e+01 7.527546e+01 lineto -9.294792e+01 7.78436e+01 lineto -9.420074e+01 7.736507e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.198614e+01 7.972844e+01 moveto -9.420074e+01 7.736507e+01 lineto -9.294792e+01 7.78436e+01 lineto -9.082833e+01 8.017068e+01 lineto -9.198614e+01 7.972844e+01 lineto -closepath -gsave -4.197363e-01 4.197363e-01 4.197363e-01 setrgbcolor -fill -grestore -newpath -9.198614e+01 7.972844e+01 moveto -9.420074e+01 7.736507e+01 lineto -9.294792e+01 7.78436e+01 lineto -9.082833e+01 8.017068e+01 lineto -9.198614e+01 7.972844e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.956725e+01 8.183647e+01 moveto -9.198614e+01 7.972844e+01 lineto -9.082833e+01 8.017068e+01 lineto -8.851321e+01 8.223907e+01 lineto -8.956725e+01 8.183647e+01 lineto -closepath -gsave -4.189446e-01 4.189446e-01 4.189446e-01 setrgbcolor -fill -grestore -newpath -8.956725e+01 8.183647e+01 moveto -9.198614e+01 7.972844e+01 lineto -9.082833e+01 8.017068e+01 lineto -8.851321e+01 8.223907e+01 lineto -8.956725e+01 8.183647e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.696236e+01 8.36732e+01 moveto -8.956725e+01 8.183647e+01 lineto -8.851321e+01 8.223907e+01 lineto -8.602009e+01 8.403311e+01 lineto -8.696236e+01 8.36732e+01 lineto -closepath -gsave -4.183346e-01 4.183346e-01 4.183346e-01 setrgbcolor -fill -grestore -newpath -8.696236e+01 8.36732e+01 moveto -8.956725e+01 8.183647e+01 lineto -8.851321e+01 8.223907e+01 lineto -8.602009e+01 8.403311e+01 lineto -8.696236e+01 8.36732e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.419122e+01 8.522472e+01 moveto -8.696236e+01 8.36732e+01 lineto -8.602009e+01 8.403311e+01 lineto -8.336784e+01 8.553922e+01 lineto -8.419122e+01 8.522472e+01 lineto -closepath -gsave -4.179001e-01 4.179001e-01 4.179001e-01 setrgbcolor -fill -grestore -newpath -8.419122e+01 8.522472e+01 moveto -8.696236e+01 8.36732e+01 lineto -8.602009e+01 8.403311e+01 lineto -8.336784e+01 8.553922e+01 lineto -8.419122e+01 8.522472e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.127478e+01 8.64793e+01 moveto -8.419122e+01 8.522472e+01 lineto -8.336784e+01 8.553922e+01 lineto -8.057653e+01 8.674601e+01 lineto -8.127478e+01 8.64793e+01 lineto -closepath -gsave -4.176364e-01 4.176364e-01 4.176364e-01 setrgbcolor -fill -grestore -newpath -8.127478e+01 8.64793e+01 moveto -8.419122e+01 8.522472e+01 lineto -8.336784e+01 8.553922e+01 lineto -8.057653e+01 8.674601e+01 lineto -8.127478e+01 8.64793e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.87415e+01 8.644663e+01 moveto -6.201697e+01 8.740392e+01 lineto -6.214496e+01 8.735503e+01 lineto -5.901001e+01 8.634407e+01 lineto -5.87415e+01 8.644663e+01 lineto -closepath -gsave -4.991471e-01 4.991471e-01 4.991471e-01 setrgbcolor -fill -grestore -newpath -5.87415e+01 8.644663e+01 moveto -6.201697e+01 8.740392e+01 lineto -6.214496e+01 8.735503e+01 lineto -5.901001e+01 8.634407e+01 lineto -5.87415e+01 8.644663e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.55134e+01 8.518314e+01 moveto -5.87415e+01 8.644663e+01 lineto -5.901001e+01 8.634407e+01 lineto -5.592041e+01 8.502768e+01 lineto -5.55134e+01 8.518314e+01 lineto -closepath -gsave -4.95956e-01 4.95956e-01 4.95956e-01 setrgbcolor -fill -grestore -newpath -5.55134e+01 8.518314e+01 moveto -5.87415e+01 8.644663e+01 lineto -5.901001e+01 8.634407e+01 lineto -5.592041e+01 8.502768e+01 lineto -5.55134e+01 8.518314e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.235712e+01 8.362302e+01 moveto -5.55134e+01 8.518314e+01 lineto -5.592041e+01 8.502768e+01 lineto -5.289955e+01 8.341583e+01 lineto -5.235712e+01 8.362302e+01 lineto -closepath -gsave -4.92418e-01 4.92418e-01 4.92418e-01 setrgbcolor -fill -grestore -newpath -5.235712e+01 8.362302e+01 moveto -5.55134e+01 8.518314e+01 lineto -5.592041e+01 8.502768e+01 lineto -5.289955e+01 8.341583e+01 lineto -5.235712e+01 8.362302e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.815553e+01 4.728034e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.799462e+01 4.778555e+00 lineto -6.815553e+01 4.728034e+00 lineto -closepath -gsave -5.024827e-01 5.024827e-01 5.024827e-01 setrgbcolor -fill -grestore -newpath -6.815553e+01 4.728034e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.799462e+01 4.778555e+00 lineto -6.815553e+01 4.728034e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.128716e+01 5.768515e+00 moveto -6.815553e+01 4.728034e+00 lineto -6.799462e+01 4.778555e+00 lineto -7.096657e+01 5.869175e+00 lineto -7.128716e+01 5.768515e+00 lineto -closepath -gsave -5.01196e-01 5.01196e-01 5.01196e-01 setrgbcolor -fill -grestore -newpath -7.128716e+01 5.768515e+00 moveto -6.815553e+01 4.728034e+00 lineto -6.799462e+01 4.778555e+00 lineto -7.096657e+01 5.869175e+00 lineto -7.128716e+01 5.768515e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.437121e+01 7.113566e+00 moveto -7.128716e+01 5.768515e+00 lineto -7.096657e+01 5.869175e+00 lineto -7.389334e+01 7.263603e+00 lineto -7.437121e+01 7.113566e+00 lineto -closepath -gsave -4.994429e-01 4.994429e-01 4.994429e-01 setrgbcolor -fill -grestore -newpath -7.437121e+01 7.113566e+00 moveto -7.128716e+01 5.768515e+00 lineto -7.096657e+01 5.869175e+00 lineto -7.389334e+01 7.263603e+00 lineto -7.437121e+01 7.113566e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.73843e+01 8.753004e+00 moveto -7.437121e+01 7.113566e+00 lineto -7.389334e+01 7.263603e+00 lineto -7.67528e+01 8.951282e+00 lineto -7.73843e+01 8.753004e+00 lineto -closepath -gsave -4.972532e-01 4.972532e-01 4.972532e-01 setrgbcolor -fill -grestore -newpath -7.73843e+01 8.753004e+00 moveto -7.437121e+01 7.113566e+00 lineto -7.389334e+01 7.263603e+00 lineto -7.67528e+01 8.951282e+00 lineto -7.73843e+01 8.753004e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.030365e+01 1.067442e+01 moveto -7.73843e+01 8.753004e+00 lineto -7.67528e+01 8.951282e+00 lineto -7.952327e+01 1.091944e+01 lineto -8.030365e+01 1.067442e+01 lineto -closepath -gsave -4.946634e-01 4.946634e-01 4.946634e-01 setrgbcolor -fill -grestore -newpath -8.030365e+01 1.067442e+01 moveto -7.73843e+01 8.753004e+00 lineto -7.67528e+01 8.951282e+00 lineto -7.952327e+01 1.091944e+01 lineto -8.030365e+01 1.067442e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.310713e+01 1.286326e+01 moveto -8.030365e+01 1.067442e+01 lineto -7.952327e+01 1.091944e+01 lineto -8.21838e+01 1.315317e+01 lineto -8.310713e+01 1.286326e+01 lineto -closepath -gsave -4.917157e-01 4.917157e-01 4.917157e-01 setrgbcolor -fill -grestore -newpath -8.310713e+01 1.286326e+01 moveto -8.030365e+01 1.067442e+01 lineto -7.952327e+01 1.091944e+01 lineto -8.21838e+01 1.315317e+01 lineto -8.310713e+01 1.286326e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.577354e+01 1.530297e+01 moveto -8.310713e+01 1.286326e+01 lineto -8.21838e+01 1.315317e+01 lineto -8.471424e+01 1.563556e+01 lineto -8.577354e+01 1.530297e+01 lineto -closepath -gsave -4.884571e-01 4.884571e-01 4.884571e-01 setrgbcolor -fill -grestore -newpath -8.577354e+01 1.530297e+01 moveto -8.310713e+01 1.286326e+01 lineto -8.21838e+01 1.315317e+01 lineto -8.471424e+01 1.563556e+01 lineto -8.577354e+01 1.530297e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.828268e+01 1.797506e+01 moveto -8.577354e+01 1.530297e+01 lineto -8.471424e+01 1.563556e+01 lineto -8.709544e+01 1.834783e+01 lineto -8.828268e+01 1.797506e+01 lineto -closepath -gsave -4.849377e-01 4.849377e-01 4.849377e-01 setrgbcolor -fill -grestore -newpath -8.828268e+01 1.797506e+01 moveto -8.577354e+01 1.530297e+01 lineto -8.471424e+01 1.563556e+01 lineto -8.709544e+01 1.834783e+01 lineto -8.828268e+01 1.797506e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.061557e+01 2.085932e+01 moveto -8.828268e+01 1.797506e+01 lineto -8.709544e+01 1.834783e+01 lineto -8.930936e+01 2.126943e+01 lineto -9.061557e+01 2.085932e+01 lineto -closepath -gsave -4.812097e-01 4.812097e-01 4.812097e-01 setrgbcolor -fill -grestore -newpath -9.061557e+01 2.085932e+01 moveto -8.828268e+01 1.797506e+01 lineto -8.709544e+01 1.834783e+01 lineto -8.930936e+01 2.126943e+01 lineto -9.061557e+01 2.085932e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.275453e+01 2.39339e+01 moveto -9.061557e+01 2.085932e+01 lineto -8.930936e+01 2.126943e+01 lineto -9.133925e+01 2.437826e+01 lineto -9.275453e+01 2.39339e+01 lineto -closepath -gsave -4.773261e-01 4.773261e-01 4.773261e-01 setrgbcolor -fill -grestore -newpath -9.275453e+01 2.39339e+01 moveto -9.061557e+01 2.085932e+01 lineto -8.930936e+01 2.126943e+01 lineto -9.133925e+01 2.437826e+01 lineto -9.275453e+01 2.39339e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.468338e+01 2.717553e+01 moveto -9.275453e+01 2.39339e+01 lineto -9.133925e+01 2.437826e+01 lineto -9.316975e+01 2.765077e+01 lineto -9.468338e+01 2.717553e+01 lineto -closepath -gsave -4.733393e-01 4.733393e-01 4.733393e-01 setrgbcolor -fill -grestore -newpath -9.468338e+01 2.717553e+01 moveto -9.275453e+01 2.39339e+01 lineto -9.133925e+01 2.437826e+01 lineto -9.316975e+01 2.765077e+01 lineto -9.468338e+01 2.717553e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.638751e+01 3.055967e+01 moveto -9.468338e+01 2.717553e+01 lineto -9.316975e+01 2.765077e+01 lineto -9.478698e+01 3.10622e+01 lineto -9.638751e+01 3.055967e+01 lineto -closepath -gsave -4.693001e-01 4.693001e-01 4.693001e-01 setrgbcolor -fill -grestore -newpath -9.638751e+01 3.055967e+01 moveto -9.468338e+01 2.717553e+01 lineto -9.316975e+01 2.765077e+01 lineto -9.478698e+01 3.10622e+01 lineto -9.638751e+01 3.055967e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.785402e+01 3.40607e+01 moveto -9.638751e+01 3.055967e+01 lineto -9.478698e+01 3.10622e+01 lineto -9.617871e+01 3.458671e+01 lineto -9.785402e+01 3.40607e+01 lineto -closepath -gsave -4.652566e-01 4.652566e-01 4.652566e-01 setrgbcolor -fill -grestore -newpath -9.785402e+01 3.40607e+01 moveto -9.638751e+01 3.055967e+01 lineto -9.478698e+01 3.10622e+01 lineto -9.617871e+01 3.458671e+01 lineto -9.785402e+01 3.40607e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.907182e+01 3.765212e+01 moveto -9.785402e+01 3.40607e+01 lineto -9.617871e+01 3.458671e+01 lineto -9.733441e+01 3.819762e+01 lineto -9.907182e+01 3.765212e+01 lineto -closepath -gsave -4.612532e-01 4.612532e-01 4.612532e-01 setrgbcolor -fill -grestore -newpath -9.907182e+01 3.765212e+01 moveto -9.785402e+01 3.40607e+01 lineto -9.617871e+01 3.458671e+01 lineto -9.733441e+01 3.819762e+01 lineto -9.907182e+01 3.765212e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.000317e+02 4.130673e+01 moveto -9.907182e+01 3.765212e+01 lineto -9.733441e+01 3.819762e+01 lineto -9.824532e+01 4.18676e+01 lineto -1.000317e+02 4.130673e+01 lineto -closepath -gsave -4.573303e-01 4.573303e-01 4.573303e-01 setrgbcolor -fill -grestore -newpath -1.000317e+02 4.130673e+01 moveto -9.907182e+01 3.765212e+01 lineto -9.733441e+01 3.819762e+01 lineto -9.824532e+01 4.18676e+01 lineto -1.000317e+02 4.130673e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.007263e+02 4.499688e+01 moveto -1.000317e+02 4.130673e+01 lineto -9.824532e+01 4.18676e+01 lineto -9.890455e+01 4.556887e+01 lineto -1.007263e+02 4.499688e+01 lineto -closepath -gsave -4.535235e-01 4.535235e-01 4.535235e-01 setrgbcolor -fill -grestore -newpath -1.007263e+02 4.499688e+01 moveto -1.000317e+02 4.130673e+01 lineto -9.824532e+01 4.18676e+01 lineto -9.890455e+01 4.556887e+01 lineto -1.007263e+02 4.499688e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.011505e+02 4.869461e+01 moveto -1.007263e+02 4.499688e+01 lineto -9.890455e+01 4.556887e+01 lineto -9.930711e+01 4.92734e+01 lineto -1.011505e+02 4.869461e+01 lineto -closepath -gsave -4.498633e-01 4.498633e-01 4.498633e-01 setrgbcolor -fill -grestore -newpath -1.011505e+02 4.869461e+01 moveto -1.007263e+02 4.499688e+01 lineto -9.890455e+01 4.556887e+01 lineto -9.930711e+01 4.92734e+01 lineto -1.011505e+02 4.869461e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.01301e+02 5.237195e+01 moveto -1.011505e+02 4.869461e+01 lineto -9.930711e+01 4.92734e+01 lineto -9.944995e+01 5.295315e+01 lineto -1.01301e+02 5.237195e+01 lineto -closepath -gsave -4.46375e-01 4.46375e-01 4.46375e-01 setrgbcolor -fill -grestore -newpath -1.01301e+02 5.237195e+01 moveto -1.011505e+02 4.869461e+01 lineto -9.930711e+01 4.92734e+01 lineto -9.944995e+01 5.295315e+01 lineto -1.01301e+02 5.237195e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.011767e+02 5.600105e+01 moveto -1.01301e+02 5.237195e+01 lineto -9.944995e+01 5.295315e+01 lineto -9.933198e+01 5.658026e+01 lineto -1.011767e+02 5.600105e+01 lineto -closepath -gsave -4.430787e-01 4.430787e-01 4.430787e-01 setrgbcolor -fill -grestore -newpath -1.011767e+02 5.600105e+01 moveto -1.01301e+02 5.237195e+01 lineto -9.944995e+01 5.295315e+01 lineto -9.933198e+01 5.658026e+01 lineto -1.011767e+02 5.600105e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.007785e+02 5.955444e+01 moveto -1.011767e+02 5.600105e+01 lineto -9.933198e+01 5.658026e+01 lineto -9.895411e+01 6.012727e+01 lineto -1.007785e+02 5.955444e+01 lineto -closepath -gsave -4.399898e-01 4.399898e-01 4.399898e-01 setrgbcolor -fill -grestore -newpath -1.007785e+02 5.955444e+01 moveto -1.011767e+02 5.600105e+01 lineto -9.933198e+01 5.658026e+01 lineto -9.895411e+01 6.012727e+01 lineto -1.007785e+02 5.955444e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.001095e+02 6.300522e+01 moveto -1.007785e+02 5.955444e+01 lineto -9.895411e+01 6.012727e+01 lineto -9.831919e+01 6.356733e+01 lineto -1.001095e+02 6.300522e+01 lineto -closepath -gsave -4.371187e-01 4.371187e-01 4.371187e-01 setrgbcolor -fill -grestore -newpath -1.001095e+02 6.300522e+01 moveto -1.007785e+02 5.955444e+01 lineto -9.895411e+01 6.012727e+01 lineto -9.831919e+01 6.356733e+01 lineto -1.001095e+02 6.300522e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.917468e+01 6.632725e+01 moveto -1.001095e+02 6.300522e+01 lineto -9.831919e+01 6.356733e+01 lineto -9.743203e+01 6.687441e+01 lineto -9.917468e+01 6.632725e+01 lineto -closepath -gsave -4.344719e-01 4.344719e-01 4.344719e-01 setrgbcolor -fill -grestore -newpath -9.917468e+01 6.632725e+01 moveto -1.001095e+02 6.300522e+01 lineto -9.831919e+01 6.356733e+01 lineto -9.743203e+01 6.687441e+01 lineto -9.917468e+01 6.632725e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.798114e+01 6.949541e+01 moveto -9.917468e+01 6.632725e+01 lineto -9.743203e+01 6.687441e+01 lineto -9.629934e+01 7.002345e+01 lineto -9.798114e+01 6.949541e+01 lineto -closepath -gsave -4.320521e-01 4.320521e-01 4.320521e-01 setrgbcolor -fill -grestore -newpath -9.798114e+01 6.949541e+01 moveto -9.917468e+01 6.632725e+01 lineto -9.743203e+01 6.687441e+01 lineto -9.629934e+01 7.002345e+01 lineto -9.798114e+01 6.949541e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.653791e+01 7.248569e+01 moveto -9.798114e+01 6.949541e+01 lineto -9.629934e+01 7.002345e+01 lineto -9.492971e+01 7.299062e+01 lineto -9.653791e+01 7.248569e+01 lineto -closepath -gsave -4.298586e-01 4.298586e-01 4.298586e-01 setrgbcolor -fill -grestore -newpath -9.653791e+01 7.248569e+01 moveto -9.798114e+01 6.949541e+01 lineto -9.629934e+01 7.002345e+01 lineto -9.492971e+01 7.299062e+01 lineto -9.653791e+01 7.248569e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.485592e+01 7.527546e+01 moveto -9.653791e+01 7.248569e+01 lineto -9.492971e+01 7.299062e+01 lineto -9.333349e+01 7.575347e+01 lineto -9.485592e+01 7.527546e+01 lineto -closepath -gsave -4.278886e-01 4.278886e-01 4.278886e-01 setrgbcolor -fill -grestore -newpath -9.485592e+01 7.527546e+01 moveto -9.653791e+01 7.248569e+01 lineto -9.492971e+01 7.299062e+01 lineto -9.333349e+01 7.575347e+01 lineto -9.485592e+01 7.527546e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.294792e+01 7.78436e+01 moveto -9.485592e+01 7.527546e+01 lineto -9.333349e+01 7.575347e+01 lineto -9.152278e+01 7.829106e+01 lineto -9.294792e+01 7.78436e+01 lineto -closepath -gsave -4.26137e-01 4.26137e-01 4.26137e-01 setrgbcolor -fill -grestore -newpath -9.294792e+01 7.78436e+01 moveto -9.485592e+01 7.527546e+01 lineto -9.333349e+01 7.575347e+01 lineto -9.152278e+01 7.829106e+01 lineto -9.294792e+01 7.78436e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.082833e+01 8.017068e+01 moveto -9.294792e+01 7.78436e+01 lineto -9.152278e+01 7.829106e+01 lineto -8.951128e+01 8.05842e+01 lineto -9.082833e+01 8.017068e+01 lineto -closepath -gsave -4.245975e-01 4.245975e-01 4.245975e-01 setrgbcolor -fill -grestore -newpath -9.082833e+01 8.017068e+01 moveto -9.294792e+01 7.78436e+01 lineto -9.152278e+01 7.829106e+01 lineto -8.951128e+01 8.05842e+01 lineto -9.082833e+01 8.017068e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.851321e+01 8.223907e+01 moveto -9.082833e+01 8.017068e+01 lineto -8.951128e+01 8.05842e+01 lineto -8.731421e+01 8.261552e+01 lineto -8.851321e+01 8.223907e+01 lineto -closepath -gsave -4.232626e-01 4.232626e-01 4.232626e-01 setrgbcolor -fill -grestore -newpath -8.851321e+01 8.223907e+01 moveto -9.082833e+01 8.017068e+01 lineto -8.951128e+01 8.05842e+01 lineto -8.731421e+01 8.261552e+01 lineto -8.851321e+01 8.223907e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.602009e+01 8.403311e+01 moveto -8.851321e+01 8.223907e+01 lineto -8.731421e+01 8.261552e+01 lineto -8.494822e+01 8.436965e+01 lineto -8.602009e+01 8.403311e+01 lineto -closepath -gsave -4.22125e-01 4.22125e-01 4.22125e-01 setrgbcolor -fill -grestore -newpath -8.602009e+01 8.403311e+01 moveto -8.851321e+01 8.223907e+01 lineto -8.731421e+01 8.261552e+01 lineto -8.494822e+01 8.436965e+01 lineto -8.602009e+01 8.403311e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.336784e+01 8.553922e+01 moveto -8.602009e+01 8.403311e+01 lineto -8.494822e+01 8.436965e+01 lineto -8.243121e+01 8.58333e+01 lineto -8.336784e+01 8.553922e+01 lineto -closepath -gsave -4.21177e-01 4.21177e-01 4.21177e-01 setrgbcolor -fill -grestore -newpath -8.336784e+01 8.553922e+01 moveto -8.602009e+01 8.403311e+01 lineto -8.494822e+01 8.436965e+01 lineto -8.243121e+01 8.58333e+01 lineto -8.336784e+01 8.553922e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.057653e+01 8.674601e+01 moveto -8.336784e+01 8.553922e+01 lineto -8.243121e+01 8.58333e+01 lineto -7.978224e+01 8.699539e+01 lineto -8.057653e+01 8.674601e+01 lineto -closepath -gsave -4.204117e-01 4.204117e-01 4.204117e-01 setrgbcolor -fill -grestore -newpath -8.057653e+01 8.674601e+01 moveto -8.336784e+01 8.553922e+01 lineto -8.243121e+01 8.58333e+01 lineto -7.978224e+01 8.699539e+01 lineto -8.057653e+01 8.674601e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.901001e+01 8.634407e+01 moveto -6.214496e+01 8.735503e+01 lineto -6.229054e+01 8.730932e+01 lineto -5.931546e+01 8.624817e+01 lineto -5.901001e+01 8.634407e+01 lineto -closepath -gsave -5.013393e-01 5.013393e-01 5.013393e-01 setrgbcolor -fill -grestore -newpath -5.901001e+01 8.634407e+01 moveto -6.214496e+01 8.735503e+01 lineto -6.229054e+01 8.730932e+01 lineto -5.931546e+01 8.624817e+01 lineto -5.901001e+01 8.634407e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.592041e+01 8.502768e+01 moveto -5.901001e+01 8.634407e+01 lineto -5.931546e+01 8.624817e+01 lineto -5.638341e+01 8.488231e+01 lineto -5.592041e+01 8.502768e+01 lineto -closepath -gsave -4.996296e-01 4.996296e-01 4.996296e-01 setrgbcolor -fill -grestore -newpath -5.592041e+01 8.502768e+01 moveto -5.901001e+01 8.634407e+01 lineto -5.931546e+01 8.624817e+01 lineto -5.638341e+01 8.488231e+01 lineto -5.592041e+01 8.502768e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.289955e+01 8.341583e+01 moveto -5.592041e+01 8.502768e+01 lineto -5.638341e+01 8.488231e+01 lineto -5.351659e+01 8.32221e+01 lineto -5.289955e+01 8.341583e+01 lineto -closepath -gsave -4.974801e-01 4.974801e-01 4.974801e-01 setrgbcolor -fill -grestore -newpath -5.289955e+01 8.341583e+01 moveto -5.592041e+01 8.502768e+01 lineto -5.638341e+01 8.488231e+01 lineto -5.351659e+01 8.32221e+01 lineto -5.289955e+01 8.341583e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.799462e+01 4.778555e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.781525e+01 4.825257e+00 lineto -6.799462e+01 4.778555e+00 lineto -closepath -gsave -5.03281e-01 5.03281e-01 5.03281e-01 setrgbcolor -fill -grestore -newpath -6.799462e+01 4.778555e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.781525e+01 4.825257e+00 lineto -6.799462e+01 4.778555e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.096657e+01 5.869175e+00 moveto -6.799462e+01 4.778555e+00 lineto -6.781525e+01 4.825257e+00 lineto -7.060918e+01 5.962225e+00 lineto -7.096657e+01 5.869175e+00 lineto -closepath -gsave -5.035769e-01 5.035769e-01 5.035769e-01 setrgbcolor -fill -grestore -newpath -7.096657e+01 5.869175e+00 moveto -6.799462e+01 4.778555e+00 lineto -6.781525e+01 4.825257e+00 lineto -7.060918e+01 5.962225e+00 lineto -7.096657e+01 5.869175e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.389334e+01 7.263603e+00 moveto -7.096657e+01 5.869175e+00 lineto -7.060918e+01 5.962225e+00 lineto -7.336065e+01 7.402296e+00 lineto -7.389334e+01 7.263603e+00 lineto -closepath -gsave -5.033656e-01 5.033656e-01 5.033656e-01 setrgbcolor -fill -grestore -newpath -7.389334e+01 7.263603e+00 moveto -7.096657e+01 5.869175e+00 lineto -7.060918e+01 5.962225e+00 lineto -7.336065e+01 7.402296e+00 lineto -7.389334e+01 7.263603e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.67528e+01 8.951282e+00 moveto -7.389334e+01 7.263603e+00 lineto -7.336065e+01 7.402296e+00 lineto -7.604883e+01 9.134569e+00 lineto -7.67528e+01 8.951282e+00 lineto -closepath -gsave -5.026505e-01 5.026505e-01 5.026505e-01 setrgbcolor -fill -grestore -newpath -7.67528e+01 8.951282e+00 moveto -7.389334e+01 7.263603e+00 lineto -7.336065e+01 7.402296e+00 lineto -7.604883e+01 9.134569e+00 lineto -7.67528e+01 8.951282e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.952327e+01 1.091944e+01 moveto -7.67528e+01 8.951282e+00 lineto -7.604883e+01 9.134569e+00 lineto -7.865336e+01 1.114593e+01 lineto -7.952327e+01 1.091944e+01 lineto -closepath -gsave -5.014444e-01 5.014444e-01 5.014444e-01 setrgbcolor -fill -grestore -newpath -7.952327e+01 1.091944e+01 moveto -7.67528e+01 8.951282e+00 lineto -7.604883e+01 9.134569e+00 lineto -7.865336e+01 1.114593e+01 lineto -7.952327e+01 1.091944e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.21838e+01 1.315317e+01 moveto -7.952327e+01 1.091944e+01 lineto -7.865336e+01 1.114593e+01 lineto -8.115453e+01 1.342115e+01 lineto -8.21838e+01 1.315317e+01 lineto -closepath -gsave -4.997679e-01 4.997679e-01 4.997679e-01 setrgbcolor -fill -grestore -newpath -8.21838e+01 1.315317e+01 moveto -7.952327e+01 1.091944e+01 lineto -7.865336e+01 1.114593e+01 lineto -8.115453e+01 1.342115e+01 lineto -8.21838e+01 1.315317e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.471424e+01 1.563556e+01 moveto -8.21838e+01 1.315317e+01 lineto -8.115453e+01 1.342115e+01 lineto -8.35334e+01 1.594301e+01 lineto -8.471424e+01 1.563556e+01 lineto -closepath -gsave -4.976496e-01 4.976496e-01 4.976496e-01 setrgbcolor -fill -grestore -newpath -8.471424e+01 1.563556e+01 moveto -8.21838e+01 1.315317e+01 lineto -8.115453e+01 1.342115e+01 lineto -8.35334e+01 1.594301e+01 lineto -8.471424e+01 1.563556e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.709544e+01 1.834783e+01 moveto -8.471424e+01 1.563556e+01 lineto -8.35334e+01 1.594301e+01 lineto -8.577197e+01 1.869241e+01 lineto -8.709544e+01 1.834783e+01 lineto -closepath -gsave -4.95125e-01 4.95125e-01 4.95125e-01 setrgbcolor -fill -grestore -newpath -8.709544e+01 1.834783e+01 moveto -8.471424e+01 1.563556e+01 lineto -8.35334e+01 1.594301e+01 lineto -8.577197e+01 1.869241e+01 lineto -8.709544e+01 1.834783e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.930936e+01 2.126943e+01 moveto -8.709544e+01 1.834783e+01 lineto -8.577197e+01 1.869241e+01 lineto -8.785328e+01 2.164854e+01 lineto -8.930936e+01 2.126943e+01 lineto -closepath -gsave -4.922354e-01 4.922354e-01 4.922354e-01 setrgbcolor -fill -grestore -newpath -8.930936e+01 2.126943e+01 moveto -8.709544e+01 1.834783e+01 lineto -8.577197e+01 1.869241e+01 lineto -8.785328e+01 2.164854e+01 lineto -8.930936e+01 2.126943e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.133925e+01 2.437826e+01 moveto -8.930936e+01 2.126943e+01 lineto -8.785328e+01 2.164854e+01 lineto -8.976159e+01 2.478902e+01 lineto -9.133925e+01 2.437826e+01 lineto -closepath -gsave -4.890271e-01 4.890271e-01 4.890271e-01 setrgbcolor -fill -grestore -newpath -9.133925e+01 2.437826e+01 moveto -8.930936e+01 2.126943e+01 lineto -8.785328e+01 2.164854e+01 lineto -8.976159e+01 2.478902e+01 lineto -9.133925e+01 2.437826e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.316975e+01 2.765077e+01 moveto -9.133925e+01 2.437826e+01 lineto -8.976159e+01 2.478902e+01 lineto -9.148244e+01 2.809008e+01 lineto -9.316975e+01 2.765077e+01 lineto -closepath -gsave -4.855496e-01 4.855496e-01 4.855496e-01 setrgbcolor -fill -grestore -newpath -9.316975e+01 2.765077e+01 moveto -9.133925e+01 2.437826e+01 lineto -8.976159e+01 2.478902e+01 lineto -9.148244e+01 2.809008e+01 lineto -9.316975e+01 2.765077e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.478698e+01 3.10622e+01 moveto -9.316975e+01 2.765077e+01 lineto -9.148244e+01 2.809008e+01 lineto -9.30028e+01 3.152673e+01 lineto -9.478698e+01 3.10622e+01 lineto -closepath -gsave -4.818548e-01 4.818548e-01 4.818548e-01 setrgbcolor -fill -grestore -newpath -9.478698e+01 3.10622e+01 moveto -9.316975e+01 2.765077e+01 lineto -9.148244e+01 2.809008e+01 lineto -9.30028e+01 3.152673e+01 lineto -9.478698e+01 3.10622e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.617871e+01 3.458671e+01 moveto -9.478698e+01 3.10622e+01 lineto -9.30028e+01 3.152673e+01 lineto -9.431117e+01 3.507295e+01 lineto -9.617871e+01 3.458671e+01 lineto -closepath -gsave -4.779955e-01 4.779955e-01 4.779955e-01 setrgbcolor -fill -grestore -newpath -9.617871e+01 3.458671e+01 moveto -9.478698e+01 3.10622e+01 lineto -9.30028e+01 3.152673e+01 lineto -9.431117e+01 3.507295e+01 lineto -9.617871e+01 3.458671e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.733441e+01 3.819762e+01 moveto -9.617871e+01 3.458671e+01 lineto -9.431117e+01 3.507295e+01 lineto -9.539765e+01 3.870188e+01 lineto -9.733441e+01 3.819762e+01 lineto -closepath -gsave -4.740242e-01 4.740242e-01 4.740242e-01 setrgbcolor -fill -grestore -newpath -9.733441e+01 3.819762e+01 moveto -9.617871e+01 3.458671e+01 lineto -9.431117e+01 3.507295e+01 lineto -9.539765e+01 3.870188e+01 lineto -9.733441e+01 3.819762e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.824532e+01 4.18676e+01 moveto -9.733441e+01 3.819762e+01 lineto -9.539765e+01 3.870188e+01 lineto -9.6254e+01 4.238607e+01 lineto -9.824532e+01 4.18676e+01 lineto -closepath -gsave -4.699918e-01 4.699918e-01 4.699918e-01 setrgbcolor -fill -grestore -newpath -9.824532e+01 4.18676e+01 moveto -9.733441e+01 3.819762e+01 lineto -9.539765e+01 3.870188e+01 lineto -9.6254e+01 4.238607e+01 lineto -9.824532e+01 4.18676e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.890455e+01 4.556887e+01 moveto -9.824532e+01 4.18676e+01 lineto -9.6254e+01 4.238607e+01 lineto -9.687374e+01 4.609762e+01 lineto -9.890455e+01 4.556887e+01 lineto -closepath -gsave -4.65947e-01 4.65947e-01 4.65947e-01 setrgbcolor -fill -grestore -newpath -9.890455e+01 4.556887e+01 moveto -9.824532e+01 4.18676e+01 lineto -9.6254e+01 4.238607e+01 lineto -9.687374e+01 4.609762e+01 lineto -9.890455e+01 4.556887e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.930711e+01 4.92734e+01 moveto -9.890455e+01 4.556887e+01 lineto -9.687374e+01 4.609762e+01 lineto -9.725219e+01 4.980842e+01 lineto -9.930711e+01 4.92734e+01 lineto -closepath -gsave -4.619348e-01 4.619348e-01 4.619348e-01 setrgbcolor -fill -grestore -newpath -9.930711e+01 4.92734e+01 moveto -9.890455e+01 4.556887e+01 lineto -9.687374e+01 4.609762e+01 lineto -9.725219e+01 4.980842e+01 lineto -9.930711e+01 4.92734e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.944995e+01 5.295315e+01 moveto -9.930711e+01 4.92734e+01 lineto -9.725219e+01 4.980842e+01 lineto -9.738647e+01 5.34904e+01 lineto -9.944995e+01 5.295315e+01 lineto -closepath -gsave -4.579962e-01 4.579962e-01 4.579962e-01 setrgbcolor -fill -grestore -newpath -9.944995e+01 5.295315e+01 moveto -9.930711e+01 4.92734e+01 lineto -9.725219e+01 4.980842e+01 lineto -9.738647e+01 5.34904e+01 lineto -9.944995e+01 5.295315e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.933198e+01 5.658026e+01 moveto -9.944995e+01 5.295315e+01 lineto -9.738647e+01 5.34904e+01 lineto -9.727557e+01 5.711567e+01 lineto -9.933198e+01 5.658026e+01 lineto -closepath -gsave -4.541676e-01 4.541676e-01 4.541676e-01 setrgbcolor -fill -grestore -newpath -9.933198e+01 5.658026e+01 moveto -9.944995e+01 5.295315e+01 lineto -9.738647e+01 5.34904e+01 lineto -9.727557e+01 5.711567e+01 lineto -9.933198e+01 5.658026e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.895411e+01 6.012727e+01 moveto -9.933198e+01 5.658026e+01 lineto -9.727557e+01 5.711567e+01 lineto -9.692033e+01 6.065679e+01 lineto -9.895411e+01 6.012727e+01 lineto -closepath -gsave -4.504804e-01 4.504804e-01 4.504804e-01 setrgbcolor -fill -grestore -newpath -9.895411e+01 6.012727e+01 moveto -9.933198e+01 5.658026e+01 lineto -9.727557e+01 5.711567e+01 lineto -9.692033e+01 6.065679e+01 lineto -9.895411e+01 6.012727e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.831919e+01 6.356733e+01 moveto -9.895411e+01 6.012727e+01 lineto -9.692033e+01 6.065679e+01 lineto -9.632344e+01 6.408695e+01 lineto -9.831919e+01 6.356733e+01 lineto -closepath -gsave -4.469609e-01 4.469609e-01 4.469609e-01 setrgbcolor -fill -grestore -newpath -9.831919e+01 6.356733e+01 moveto -9.895411e+01 6.012727e+01 lineto -9.692033e+01 6.065679e+01 lineto -9.632344e+01 6.408695e+01 lineto -9.831919e+01 6.356733e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.743203e+01 6.687441e+01 moveto -9.831919e+01 6.356733e+01 lineto -9.632344e+01 6.408695e+01 lineto -9.548942e+01 6.738019e+01 lineto -9.743203e+01 6.687441e+01 lineto -closepath -gsave -4.436301e-01 4.436301e-01 4.436301e-01 setrgbcolor -fill -grestore -newpath -9.743203e+01 6.687441e+01 moveto -9.831919e+01 6.356733e+01 lineto -9.632344e+01 6.408695e+01 lineto -9.548942e+01 6.738019e+01 lineto -9.743203e+01 6.687441e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.629934e+01 7.002345e+01 moveto -9.743203e+01 6.687441e+01 lineto -9.548942e+01 6.738019e+01 lineto -9.442458e+01 7.051156e+01 lineto -9.629934e+01 7.002345e+01 lineto -closepath -gsave -4.405042e-01 4.405042e-01 4.405042e-01 setrgbcolor -fill -grestore -newpath -9.629934e+01 7.002345e+01 moveto -9.743203e+01 6.687441e+01 lineto -9.548942e+01 6.738019e+01 lineto -9.442458e+01 7.051156e+01 lineto -9.629934e+01 7.002345e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.492971e+01 7.299062e+01 moveto -9.629934e+01 7.002345e+01 lineto -9.442458e+01 7.051156e+01 lineto -9.313698e+01 7.345738e+01 lineto -9.492971e+01 7.299062e+01 lineto -closepath -gsave -4.375946e-01 4.375946e-01 4.375946e-01 setrgbcolor -fill -grestore -newpath -9.492971e+01 7.299062e+01 moveto -9.629934e+01 7.002345e+01 lineto -9.442458e+01 7.051156e+01 lineto -9.313698e+01 7.345738e+01 lineto -9.492971e+01 7.299062e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.333349e+01 7.575347e+01 moveto -9.492971e+01 7.299062e+01 lineto -9.313698e+01 7.345738e+01 lineto -9.163638e+01 7.619533e+01 lineto -9.333349e+01 7.575347e+01 lineto -closepath -gsave -4.349083e-01 4.349083e-01 4.349083e-01 setrgbcolor -fill -grestore -newpath -9.333349e+01 7.575347e+01 moveto -9.492971e+01 7.299062e+01 lineto -9.313698e+01 7.345738e+01 lineto -9.163638e+01 7.619533e+01 lineto -9.333349e+01 7.575347e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.152278e+01 7.829106e+01 moveto -9.333349e+01 7.575347e+01 lineto -9.163638e+01 7.619533e+01 lineto -8.993412e+01 7.870469e+01 lineto -9.152278e+01 7.829106e+01 lineto -closepath -gsave -4.324488e-01 4.324488e-01 4.324488e-01 setrgbcolor -fill -grestore -newpath -9.152278e+01 7.829106e+01 moveto -9.333349e+01 7.575347e+01 lineto -9.163638e+01 7.619533e+01 lineto -8.993412e+01 7.870469e+01 lineto -9.152278e+01 7.829106e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.951128e+01 8.05842e+01 moveto -9.152278e+01 7.829106e+01 lineto -8.993412e+01 7.870469e+01 lineto -8.80431e+01 8.096646e+01 lineto -8.951128e+01 8.05842e+01 lineto -closepath -gsave -4.302161e-01 4.302161e-01 4.302161e-01 setrgbcolor -fill -grestore -newpath -8.951128e+01 8.05842e+01 moveto -9.152278e+01 7.829106e+01 lineto -8.993412e+01 7.870469e+01 lineto -8.80431e+01 8.096646e+01 lineto -8.951128e+01 8.05842e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.731421e+01 8.261552e+01 moveto -8.951128e+01 8.05842e+01 lineto -8.80431e+01 8.096646e+01 lineto -8.597764e+01 8.296352e+01 lineto -8.731421e+01 8.261552e+01 lineto -closepath -gsave -4.282076e-01 4.282076e-01 4.282076e-01 setrgbcolor -fill -grestore -newpath -8.731421e+01 8.261552e+01 moveto -8.951128e+01 8.05842e+01 lineto -8.80431e+01 8.096646e+01 lineto -8.597764e+01 8.296352e+01 lineto -8.731421e+01 8.261552e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.494822e+01 8.436965e+01 moveto -8.731421e+01 8.261552e+01 lineto -8.597764e+01 8.296352e+01 lineto -8.375337e+01 8.468074e+01 lineto -8.494822e+01 8.436965e+01 lineto -closepath -gsave -4.264187e-01 4.264187e-01 4.264187e-01 setrgbcolor -fill -grestore -newpath -8.494822e+01 8.436965e+01 moveto -8.731421e+01 8.261552e+01 lineto -8.597764e+01 8.296352e+01 lineto -8.375337e+01 8.468074e+01 lineto -8.494822e+01 8.436965e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.243121e+01 8.58333e+01 moveto -8.494822e+01 8.436965e+01 lineto -8.375337e+01 8.468074e+01 lineto -8.138712e+01 8.610514e+01 lineto -8.243121e+01 8.58333e+01 lineto -closepath -gsave -4.24843e-01 4.24843e-01 4.24843e-01 setrgbcolor -fill -grestore -newpath -8.243121e+01 8.58333e+01 moveto -8.494822e+01 8.436965e+01 lineto -8.375337e+01 8.468074e+01 lineto -8.138712e+01 8.610514e+01 lineto -8.243121e+01 8.58333e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.978224e+01 8.699539e+01 moveto -8.243121e+01 8.58333e+01 lineto -8.138712e+01 8.610514e+01 lineto -7.889682e+01 8.722593e+01 lineto -7.978224e+01 8.699539e+01 lineto -closepath -gsave -4.234736e-01 4.234736e-01 4.234736e-01 setrgbcolor -fill -grestore -newpath -7.978224e+01 8.699539e+01 moveto -8.243121e+01 8.58333e+01 lineto -8.138712e+01 8.610514e+01 lineto -7.889682e+01 8.722593e+01 lineto -7.978224e+01 8.699539e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.702137e+01 8.784714e+01 moveto -7.978224e+01 8.699539e+01 lineto -7.889682e+01 8.722593e+01 lineto -7.630131e+01 8.803461e+01 lineto -7.702137e+01 8.784714e+01 lineto -closepath -gsave -4.223028e-01 4.223028e-01 4.223028e-01 setrgbcolor -fill -grestore -newpath -7.702137e+01 8.784714e+01 moveto -7.978224e+01 8.699539e+01 lineto -7.889682e+01 8.722593e+01 lineto -7.630131e+01 8.803461e+01 lineto -7.702137e+01 8.784714e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.931546e+01 8.624817e+01 moveto -6.229054e+01 8.730932e+01 lineto -6.245283e+01 8.726707e+01 lineto -5.965595e+01 8.615952e+01 lineto -5.931546e+01 8.624817e+01 lineto -closepath -gsave -5.035706e-01 5.035706e-01 5.035706e-01 setrgbcolor -fill -grestore -newpath -5.931546e+01 8.624817e+01 moveto -6.229054e+01 8.730932e+01 lineto -6.245283e+01 8.726707e+01 lineto -5.965595e+01 8.615952e+01 lineto -5.931546e+01 8.624817e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.638341e+01 8.488231e+01 moveto -5.931546e+01 8.624817e+01 lineto -5.965595e+01 8.615952e+01 lineto -5.689952e+01 8.474793e+01 lineto -5.638341e+01 8.488231e+01 lineto -closepath -gsave -5.034076e-01 5.034076e-01 5.034076e-01 setrgbcolor -fill -grestore -newpath -5.638341e+01 8.488231e+01 moveto -5.931546e+01 8.624817e+01 lineto -5.965595e+01 8.615952e+01 lineto -5.689952e+01 8.474793e+01 lineto -5.638341e+01 8.488231e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.351659e+01 8.32221e+01 moveto -5.638341e+01 8.488231e+01 lineto -5.689952e+01 8.474793e+01 lineto -5.420442e+01 8.304302e+01 lineto -5.351659e+01 8.32221e+01 lineto -closepath -gsave -5.027402e-01 5.027402e-01 5.027402e-01 setrgbcolor -fill -grestore -newpath -5.351659e+01 8.32221e+01 moveto -5.638341e+01 8.488231e+01 lineto -5.689952e+01 8.474793e+01 lineto -5.420442e+01 8.304302e+01 lineto -5.351659e+01 8.32221e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.781525e+01 4.825257e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.761852e+01 4.86785e+00 lineto -6.781525e+01 4.825257e+00 lineto -closepath -gsave -5.040809e-01 5.040809e-01 5.040809e-01 setrgbcolor -fill -grestore -newpath -6.781525e+01 4.825257e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.761852e+01 4.86785e+00 lineto -6.781525e+01 4.825257e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.060918e+01 5.962225e+00 moveto -6.781525e+01 4.825257e+00 lineto -6.761852e+01 4.86785e+00 lineto -7.021721e+01 6.047089e+00 lineto -7.060918e+01 5.962225e+00 lineto -closepath -gsave -5.059874e-01 5.059874e-01 5.059874e-01 setrgbcolor -fill -grestore -newpath -7.060918e+01 5.962225e+00 moveto -6.781525e+01 4.825257e+00 lineto -6.761852e+01 4.86785e+00 lineto -7.021721e+01 6.047089e+00 lineto -7.060918e+01 5.962225e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.336065e+01 7.402296e+00 moveto -7.060918e+01 5.962225e+00 lineto -7.021721e+01 6.047089e+00 lineto -7.277641e+01 7.528789e+00 lineto -7.336065e+01 7.402296e+00 lineto -closepath -gsave -5.073774e-01 5.073774e-01 5.073774e-01 setrgbcolor -fill -grestore -newpath -7.336065e+01 7.402296e+00 moveto -7.060918e+01 5.962225e+00 lineto -7.021721e+01 6.047089e+00 lineto -7.277641e+01 7.528789e+00 lineto -7.336065e+01 7.402296e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.604883e+01 9.134569e+00 moveto -7.336065e+01 7.402296e+00 lineto -7.277641e+01 7.528789e+00 lineto -7.527674e+01 9.301733e+00 lineto -7.604883e+01 9.134569e+00 lineto -closepath -gsave -5.082264e-01 5.082264e-01 5.082264e-01 setrgbcolor -fill -grestore -newpath -7.604883e+01 9.134569e+00 moveto -7.336065e+01 7.402296e+00 lineto -7.277641e+01 7.528789e+00 lineto -7.527674e+01 9.301733e+00 lineto -7.604883e+01 9.134569e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.865336e+01 1.114593e+01 moveto -7.604883e+01 9.134569e+00 lineto -7.527674e+01 9.301733e+00 lineto -7.769927e+01 1.13525e+01 lineto -7.865336e+01 1.114593e+01 lineto -closepath -gsave -5.085193e-01 5.085193e-01 5.085193e-01 setrgbcolor -fill -grestore -newpath -7.865336e+01 1.114593e+01 moveto -7.604883e+01 9.134569e+00 lineto -7.527674e+01 9.301733e+00 lineto -7.769927e+01 1.13525e+01 lineto -7.865336e+01 1.114593e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.115453e+01 1.342115e+01 moveto -7.865336e+01 1.114593e+01 lineto -7.769927e+01 1.13525e+01 lineto -8.002566e+01 1.366556e+01 lineto -8.115453e+01 1.342115e+01 lineto -closepath -gsave -5.082511e-01 5.082511e-01 5.082511e-01 setrgbcolor -fill -grestore -newpath -8.115453e+01 1.342115e+01 moveto -7.865336e+01 1.114593e+01 lineto -7.769927e+01 1.13525e+01 lineto -8.002566e+01 1.366556e+01 lineto -8.115453e+01 1.342115e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.35334e+01 1.594301e+01 moveto -8.115453e+01 1.342115e+01 lineto -8.002566e+01 1.366556e+01 lineto -8.22383e+01 1.622341e+01 lineto -8.35334e+01 1.594301e+01 lineto -closepath -gsave -5.074266e-01 5.074266e-01 5.074266e-01 setrgbcolor -fill -grestore -newpath -8.35334e+01 1.594301e+01 moveto -8.115453e+01 1.342115e+01 lineto -8.002566e+01 1.366556e+01 lineto -8.22383e+01 1.622341e+01 lineto -8.35334e+01 1.594301e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.577197e+01 1.869241e+01 moveto -8.35334e+01 1.594301e+01 lineto -8.22383e+01 1.622341e+01 lineto -8.432043e+01 1.900668e+01 lineto -8.577197e+01 1.869241e+01 lineto -closepath -gsave -5.060609e-01 5.060609e-01 5.060609e-01 setrgbcolor -fill -grestore -newpath -8.577197e+01 1.869241e+01 moveto -8.35334e+01 1.594301e+01 lineto -8.22383e+01 1.622341e+01 lineto -8.432043e+01 1.900668e+01 lineto -8.577197e+01 1.869241e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.785328e+01 2.164854e+01 moveto -8.577197e+01 1.869241e+01 lineto -8.432043e+01 1.900668e+01 lineto -8.625631e+01 2.19943e+01 lineto -8.785328e+01 2.164854e+01 lineto -closepath -gsave -5.041781e-01 5.041781e-01 5.041781e-01 setrgbcolor -fill -grestore -newpath -8.785328e+01 2.164854e+01 moveto -8.577197e+01 1.869241e+01 lineto -8.432043e+01 1.900668e+01 lineto -8.625631e+01 2.19943e+01 lineto -8.785328e+01 2.164854e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.976159e+01 2.478902e+01 moveto -8.785328e+01 2.164854e+01 lineto -8.625631e+01 2.19943e+01 lineto -8.803126e+01 2.516366e+01 lineto -8.976159e+01 2.478902e+01 lineto -closepath -gsave -5.018114e-01 5.018114e-01 5.018114e-01 setrgbcolor -fill -grestore -newpath -8.976159e+01 2.478902e+01 moveto -8.785328e+01 2.164854e+01 lineto -8.625631e+01 2.19943e+01 lineto -8.803126e+01 2.516366e+01 lineto -8.976159e+01 2.478902e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.148244e+01 2.809008e+01 moveto -8.976159e+01 2.478902e+01 lineto -8.803126e+01 2.516366e+01 lineto -8.963186e+01 2.849075e+01 lineto -9.148244e+01 2.809008e+01 lineto -closepath -gsave -4.990015e-01 4.990015e-01 4.990015e-01 setrgbcolor -fill -grestore -newpath -9.148244e+01 2.809008e+01 moveto -8.976159e+01 2.478902e+01 lineto -8.803126e+01 2.516366e+01 lineto -8.963186e+01 2.849075e+01 lineto -9.148244e+01 2.809008e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.30028e+01 3.152673e+01 moveto -9.148244e+01 2.809008e+01 lineto -8.963186e+01 2.849075e+01 lineto -9.104598e+01 3.19504e+01 lineto -9.30028e+01 3.152673e+01 lineto -closepath -gsave -4.957956e-01 4.957956e-01 4.957956e-01 setrgbcolor -fill -grestore -newpath -9.30028e+01 3.152673e+01 moveto -9.148244e+01 2.809008e+01 lineto -8.963186e+01 2.849075e+01 lineto -9.104598e+01 3.19504e+01 lineto -9.30028e+01 3.152673e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.431117e+01 3.507295e+01 moveto -9.30028e+01 3.152673e+01 lineto -9.104598e+01 3.19504e+01 lineto -9.226292e+01 3.551641e+01 lineto -9.431117e+01 3.507295e+01 lineto -closepath -gsave -4.922464e-01 4.922464e-01 4.922464e-01 setrgbcolor -fill -grestore -newpath -9.431117e+01 3.507295e+01 moveto -9.30028e+01 3.152673e+01 lineto -9.104598e+01 3.19504e+01 lineto -9.226292e+01 3.551641e+01 lineto -9.431117e+01 3.507295e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.539765e+01 3.870188e+01 moveto -9.431117e+01 3.507295e+01 lineto -9.226292e+01 3.551641e+01 lineto -9.327347e+01 3.916179e+01 lineto -9.539765e+01 3.870188e+01 lineto -closepath -gsave -4.884101e-01 4.884101e-01 4.884101e-01 setrgbcolor -fill -grestore -newpath -9.539765e+01 3.870188e+01 moveto -9.431117e+01 3.507295e+01 lineto -9.226292e+01 3.551641e+01 lineto -9.327347e+01 3.916179e+01 lineto -9.539765e+01 3.870188e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.6254e+01 4.238607e+01 moveto -9.539765e+01 3.870188e+01 lineto -9.327347e+01 3.916179e+01 lineto -9.406998e+01 4.285893e+01 lineto -9.6254e+01 4.238607e+01 lineto -closepath -gsave -4.843453e-01 4.843453e-01 4.843453e-01 setrgbcolor -fill -grestore -newpath -9.6254e+01 4.238607e+01 moveto -9.539765e+01 3.870188e+01 lineto -9.327347e+01 3.916179e+01 lineto -9.406998e+01 4.285893e+01 lineto -9.6254e+01 4.238607e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.687374e+01 4.609762e+01 moveto -9.6254e+01 4.238607e+01 lineto -9.406998e+01 4.285893e+01 lineto -9.464642e+01 4.657985e+01 lineto -9.687374e+01 4.609762e+01 lineto -closepath -gsave -4.801112e-01 4.801112e-01 4.801112e-01 setrgbcolor -fill -grestore -newpath -9.687374e+01 4.609762e+01 moveto -9.6254e+01 4.238607e+01 lineto -9.406998e+01 4.285893e+01 lineto -9.464642e+01 4.657985e+01 lineto -9.687374e+01 4.609762e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.725219e+01 4.980842e+01 moveto -9.687374e+01 4.609762e+01 lineto -9.464642e+01 4.657985e+01 lineto -9.499842e+01 5.029639e+01 lineto -9.725219e+01 4.980842e+01 lineto -closepath -gsave -4.757666e-01 4.757666e-01 4.757666e-01 setrgbcolor -fill -grestore -newpath -9.725219e+01 4.980842e+01 moveto -9.687374e+01 4.609762e+01 lineto -9.464642e+01 4.657985e+01 lineto -9.499842e+01 5.029639e+01 lineto -9.725219e+01 4.980842e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.738647e+01 5.34904e+01 moveto -9.725219e+01 4.980842e+01 lineto -9.499842e+01 5.029639e+01 lineto -9.512332e+01 5.398039e+01 lineto -9.738647e+01 5.34904e+01 lineto -closepath -gsave -4.713684e-01 4.713684e-01 4.713684e-01 setrgbcolor -fill -grestore -newpath -9.738647e+01 5.34904e+01 moveto -9.725219e+01 4.980842e+01 lineto -9.499842e+01 5.029639e+01 lineto -9.512332e+01 5.398039e+01 lineto -9.738647e+01 5.34904e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.727557e+01 5.711567e+01 moveto -9.738647e+01 5.34904e+01 lineto -9.512332e+01 5.398039e+01 lineto -9.502017e+01 5.760399e+01 lineto -9.727557e+01 5.711567e+01 lineto -closepath -gsave -4.669702e-01 4.669702e-01 4.669702e-01 setrgbcolor -fill -grestore -newpath -9.727557e+01 5.711567e+01 moveto -9.738647e+01 5.34904e+01 lineto -9.512332e+01 5.398039e+01 lineto -9.502017e+01 5.760399e+01 lineto -9.727557e+01 5.711567e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.692033e+01 6.065679e+01 moveto -9.727557e+01 5.711567e+01 lineto -9.502017e+01 5.760399e+01 lineto -9.468975e+01 6.113973e+01 lineto -9.692033e+01 6.065679e+01 lineto -closepath -gsave -4.626215e-01 4.626215e-01 4.626215e-01 setrgbcolor -fill -grestore -newpath -9.692033e+01 6.065679e+01 moveto -9.727557e+01 5.711567e+01 lineto -9.502017e+01 5.760399e+01 lineto -9.468975e+01 6.113973e+01 lineto -9.692033e+01 6.065679e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.632344e+01 6.408695e+01 moveto -9.692033e+01 6.065679e+01 lineto -9.468975e+01 6.113973e+01 lineto -9.413457e+01 6.456086e+01 lineto -9.632344e+01 6.408695e+01 lineto -closepath -gsave -4.583672e-01 4.583672e-01 4.583672e-01 setrgbcolor -fill -grestore -newpath -9.632344e+01 6.408695e+01 moveto -9.692033e+01 6.065679e+01 lineto -9.468975e+01 6.113973e+01 lineto -9.413457e+01 6.456086e+01 lineto -9.632344e+01 6.408695e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.548942e+01 6.738019e+01 moveto -9.632344e+01 6.408695e+01 lineto -9.413457e+01 6.456086e+01 lineto -9.335883e+01 6.784148e+01 lineto -9.548942e+01 6.738019e+01 lineto -closepath -gsave -4.542464e-01 4.542464e-01 4.542464e-01 setrgbcolor -fill -grestore -newpath -9.548942e+01 6.738019e+01 moveto -9.632344e+01 6.408695e+01 lineto -9.413457e+01 6.456086e+01 lineto -9.335883e+01 6.784148e+01 lineto -9.548942e+01 6.738019e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.442458e+01 7.051156e+01 moveto -9.548942e+01 6.738019e+01 lineto -9.335883e+01 6.784148e+01 lineto -9.23684e+01 7.095675e+01 lineto -9.442458e+01 7.051156e+01 lineto -closepath -gsave -4.502927e-01 4.502927e-01 4.502927e-01 setrgbcolor -fill -grestore -newpath -9.442458e+01 7.051156e+01 moveto -9.548942e+01 6.738019e+01 lineto -9.335883e+01 6.784148e+01 lineto -9.23684e+01 7.095675e+01 lineto -9.442458e+01 7.051156e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.313698e+01 7.345738e+01 moveto -9.442458e+01 7.051156e+01 lineto -9.23684e+01 7.095675e+01 lineto -9.117078e+01 7.388308e+01 lineto -9.313698e+01 7.345738e+01 lineto -closepath -gsave -4.465334e-01 4.465334e-01 4.465334e-01 setrgbcolor -fill -grestore -newpath -9.313698e+01 7.345738e+01 moveto -9.442458e+01 7.051156e+01 lineto -9.23684e+01 7.095675e+01 lineto -9.117078e+01 7.388308e+01 lineto -9.313698e+01 7.345738e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.163638e+01 7.619533e+01 moveto -9.313698e+01 7.345738e+01 lineto -9.117078e+01 7.388308e+01 lineto -8.977504e+01 7.659833e+01 lineto -9.163638e+01 7.619533e+01 lineto -closepath -gsave -4.429902e-01 4.429902e-01 4.429902e-01 setrgbcolor -fill -grestore -newpath -9.163638e+01 7.619533e+01 moveto -9.313698e+01 7.345738e+01 lineto -9.117078e+01 7.388308e+01 lineto -8.977504e+01 7.659833e+01 lineto -9.163638e+01 7.619533e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.993412e+01 7.870469e+01 moveto -9.163638e+01 7.619533e+01 lineto -8.977504e+01 7.659833e+01 lineto -8.819174e+01 7.908193e+01 lineto -8.993412e+01 7.870469e+01 lineto -closepath -gsave -4.396789e-01 4.396789e-01 4.396789e-01 setrgbcolor -fill -grestore -newpath -8.993412e+01 7.870469e+01 moveto -9.163638e+01 7.619533e+01 lineto -8.977504e+01 7.659833e+01 lineto -8.819174e+01 7.908193e+01 lineto -8.993412e+01 7.870469e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.80431e+01 8.096646e+01 moveto -8.993412e+01 7.870469e+01 lineto -8.819174e+01 7.908193e+01 lineto -8.643286e+01 8.131509e+01 lineto -8.80431e+01 8.096646e+01 lineto -closepath -gsave -4.366102e-01 4.366102e-01 4.366102e-01 setrgbcolor -fill -grestore -newpath -8.80431e+01 8.096646e+01 moveto -8.993412e+01 7.870469e+01 lineto -8.819174e+01 7.908193e+01 lineto -8.643286e+01 8.131509e+01 lineto -8.80431e+01 8.096646e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.597764e+01 8.296352e+01 moveto -8.80431e+01 8.096646e+01 lineto -8.643286e+01 8.131509e+01 lineto -8.451173e+01 8.32809e+01 lineto -8.597764e+01 8.296352e+01 lineto -closepath -gsave -4.337897e-01 4.337897e-01 4.337897e-01 setrgbcolor -fill -grestore -newpath -8.597764e+01 8.296352e+01 moveto -8.80431e+01 8.096646e+01 lineto -8.643286e+01 8.131509e+01 lineto -8.451173e+01 8.32809e+01 lineto -8.597764e+01 8.296352e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.375337e+01 8.468074e+01 moveto -8.597764e+01 8.296352e+01 lineto -8.451173e+01 8.32809e+01 lineto -8.244289e+01 8.496447e+01 lineto -8.375337e+01 8.468074e+01 lineto -closepath -gsave -4.312191e-01 4.312191e-01 4.312191e-01 setrgbcolor -fill -grestore -newpath -8.375337e+01 8.468074e+01 moveto -8.597764e+01 8.296352e+01 lineto -8.451173e+01 8.32809e+01 lineto -8.244289e+01 8.496447e+01 lineto -8.375337e+01 8.468074e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.138712e+01 8.610514e+01 moveto -8.375337e+01 8.468074e+01 lineto -8.244289e+01 8.496447e+01 lineto -8.0242e+01 8.635307e+01 lineto -8.138712e+01 8.610514e+01 lineto -closepath -gsave -4.288964e-01 4.288964e-01 4.288964e-01 setrgbcolor -fill -grestore -newpath -8.138712e+01 8.610514e+01 moveto -8.375337e+01 8.468074e+01 lineto -8.244289e+01 8.496447e+01 lineto -8.0242e+01 8.635307e+01 lineto -8.138712e+01 8.610514e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.889682e+01 8.722593e+01 moveto -8.138712e+01 8.610514e+01 lineto -8.0242e+01 8.635307e+01 lineto -7.792572e+01 8.743618e+01 lineto -7.889682e+01 8.722593e+01 lineto -closepath -gsave -4.268166e-01 4.268166e-01 4.268166e-01 setrgbcolor -fill -grestore -newpath -7.889682e+01 8.722593e+01 moveto -8.138712e+01 8.610514e+01 lineto -8.0242e+01 8.635307e+01 lineto -7.792572e+01 8.743618e+01 lineto -7.889682e+01 8.722593e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.630131e+01 8.803461e+01 moveto -7.889682e+01 8.722593e+01 lineto -7.792572e+01 8.743618e+01 lineto -7.551158e+01 8.82056e+01 lineto -7.630131e+01 8.803461e+01 lineto -closepath -gsave -4.249729e-01 4.249729e-01 4.249729e-01 setrgbcolor -fill -grestore -newpath -7.630131e+01 8.803461e+01 moveto -7.889682e+01 8.722593e+01 lineto -7.792572e+01 8.743618e+01 lineto -7.551158e+01 8.82056e+01 lineto -7.630131e+01 8.803461e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.965595e+01 8.615952e+01 moveto -6.245283e+01 8.726707e+01 lineto -6.263083e+01 8.722853e+01 lineto -6.002939e+01 8.607866e+01 lineto -5.965595e+01 8.615952e+01 lineto -closepath -gsave -5.058273e-01 5.058273e-01 5.058273e-01 setrgbcolor -fill -grestore -newpath -5.965595e+01 8.615952e+01 moveto -6.245283e+01 8.726707e+01 lineto -6.263083e+01 8.722853e+01 lineto -6.002939e+01 8.607866e+01 lineto -5.965595e+01 8.615952e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.689952e+01 8.474793e+01 moveto -5.965595e+01 8.615952e+01 lineto -6.002939e+01 8.607866e+01 lineto -5.746558e+01 8.462538e+01 lineto -5.689952e+01 8.474793e+01 lineto -closepath -gsave -5.072678e-01 5.072678e-01 5.072678e-01 setrgbcolor -fill -grestore -newpath -5.689952e+01 8.474793e+01 moveto -5.965595e+01 8.615952e+01 lineto -6.002939e+01 8.607866e+01 lineto -5.746558e+01 8.462538e+01 lineto -5.689952e+01 8.474793e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.420442e+01 8.304302e+01 moveto -5.689952e+01 8.474793e+01 lineto -5.746558e+01 8.462538e+01 lineto -5.495881e+01 8.287968e+01 lineto -5.420442e+01 8.304302e+01 lineto -closepath -gsave -5.081692e-01 5.081692e-01 5.081692e-01 setrgbcolor -fill -grestore -newpath -5.420442e+01 8.304302e+01 moveto -5.689952e+01 8.474793e+01 lineto -5.746558e+01 8.462538e+01 lineto -5.495881e+01 8.287968e+01 lineto -5.420442e+01 8.304302e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.761852e+01 4.86785e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.740565e+01 4.906074e+00 lineto -6.761852e+01 4.86785e+00 lineto -closepath -gsave -5.048774e-01 5.048774e-01 5.048774e-01 setrgbcolor -fill -grestore -newpath -6.761852e+01 4.86785e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.740565e+01 4.906074e+00 lineto -6.761852e+01 4.86785e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.021721e+01 6.047089e+00 moveto -6.761852e+01 4.86785e+00 lineto -6.740565e+01 4.906074e+00 lineto -6.979308e+01 6.123246e+00 lineto -7.021721e+01 6.047089e+00 lineto -closepath -gsave -5.084122e-01 5.084122e-01 5.084122e-01 setrgbcolor -fill -grestore -newpath -7.021721e+01 6.047089e+00 moveto -6.761852e+01 4.86785e+00 lineto -6.740565e+01 4.906074e+00 lineto -6.979308e+01 6.123246e+00 lineto -7.021721e+01 6.047089e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.277641e+01 7.528789e+00 moveto -7.021721e+01 6.047089e+00 lineto -6.979308e+01 6.123246e+00 lineto -7.214423e+01 7.642304e+00 lineto -7.277641e+01 7.528789e+00 lineto -closepath -gsave -5.114532e-01 5.114532e-01 5.114532e-01 setrgbcolor -fill -grestore -newpath -7.277641e+01 7.528789e+00 moveto -7.021721e+01 6.047089e+00 lineto -6.979308e+01 6.123246e+00 lineto -7.214423e+01 7.642304e+00 lineto -7.277641e+01 7.528789e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.527674e+01 9.301733e+00 moveto -7.277641e+01 7.528789e+00 lineto -7.214423e+01 7.642304e+00 lineto -7.444129e+01 9.451745e+00 lineto -7.527674e+01 9.301733e+00 lineto -closepath -gsave -5.139463e-01 5.139463e-01 5.139463e-01 setrgbcolor -fill -grestore -newpath -7.527674e+01 9.301733e+00 moveto -7.277641e+01 7.528789e+00 lineto -7.214423e+01 7.642304e+00 lineto -7.444129e+01 9.451745e+00 lineto -7.527674e+01 9.301733e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.769927e+01 1.13525e+01 moveto -7.527674e+01 9.301733e+00 lineto -7.444129e+01 9.451745e+00 lineto -7.666688e+01 1.153787e+01 lineto -7.769927e+01 1.13525e+01 lineto -closepath -gsave -5.158458e-01 5.158458e-01 5.158458e-01 setrgbcolor -fill -grestore -newpath -7.769927e+01 1.13525e+01 moveto -7.527674e+01 9.301733e+00 lineto -7.444129e+01 9.451745e+00 lineto -7.666688e+01 1.153787e+01 lineto -7.769927e+01 1.13525e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.002566e+01 1.366556e+01 moveto -7.769927e+01 1.13525e+01 lineto -7.666688e+01 1.153787e+01 lineto -7.880415e+01 1.38849e+01 lineto -8.002566e+01 1.366556e+01 lineto -closepath -gsave -5.17117e-01 5.17117e-01 5.17117e-01 setrgbcolor -fill -grestore -newpath -8.002566e+01 1.366556e+01 moveto -7.769927e+01 1.13525e+01 lineto -7.666688e+01 1.153787e+01 lineto -7.880415e+01 1.38849e+01 lineto -8.002566e+01 1.366556e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.22383e+01 1.622341e+01 moveto -8.002566e+01 1.366556e+01 lineto -7.880415e+01 1.38849e+01 lineto -8.083691e+01 1.647504e+01 lineto -8.22383e+01 1.622341e+01 lineto -closepath -gsave -5.177361e-01 5.177361e-01 5.177361e-01 setrgbcolor -fill -grestore -newpath -8.22383e+01 1.622341e+01 moveto -8.002566e+01 1.366556e+01 lineto -7.880415e+01 1.38849e+01 lineto -8.083691e+01 1.647504e+01 lineto -8.22383e+01 1.622341e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.432043e+01 1.900668e+01 moveto -8.22383e+01 1.622341e+01 lineto -8.083691e+01 1.647504e+01 lineto -8.274978e+01 1.928871e+01 lineto -8.432043e+01 1.900668e+01 lineto -closepath -gsave -5.176918e-01 5.176918e-01 5.176918e-01 setrgbcolor -fill -grestore -newpath -8.432043e+01 1.900668e+01 moveto -8.22383e+01 1.622341e+01 lineto -8.083691e+01 1.647504e+01 lineto -8.274978e+01 1.928871e+01 lineto -8.432043e+01 1.900668e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.625631e+01 2.19943e+01 moveto -8.432043e+01 1.900668e+01 lineto -8.274978e+01 1.928871e+01 lineto -8.452828e+01 2.230459e+01 lineto -8.625631e+01 2.19943e+01 lineto -closepath -gsave -5.169852e-01 5.169852e-01 5.169852e-01 setrgbcolor -fill -grestore -newpath -8.625631e+01 2.19943e+01 moveto -8.432043e+01 1.900668e+01 lineto -8.274978e+01 1.928871e+01 lineto -8.452828e+01 2.230459e+01 lineto -8.625631e+01 2.19943e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.803126e+01 2.516366e+01 moveto -8.625631e+01 2.19943e+01 lineto -8.452828e+01 2.230459e+01 lineto -8.615894e+01 2.549985e+01 lineto -8.803126e+01 2.516366e+01 lineto -closepath -gsave -5.156298e-01 5.156298e-01 5.156298e-01 setrgbcolor -fill -grestore -newpath -8.803126e+01 2.516366e+01 moveto -8.625631e+01 2.19943e+01 lineto -8.452828e+01 2.230459e+01 lineto -8.615894e+01 2.549985e+01 lineto -8.803126e+01 2.516366e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.963186e+01 2.849075e+01 moveto -8.803126e+01 2.516366e+01 lineto -8.615894e+01 2.549985e+01 lineto -8.762941e+01 2.885031e+01 lineto -8.963186e+01 2.849075e+01 lineto -closepath -gsave -5.13651e-01 5.13651e-01 5.13651e-01 setrgbcolor -fill -grestore -newpath -8.963186e+01 2.849075e+01 moveto -8.803126e+01 2.516366e+01 lineto -8.615894e+01 2.549985e+01 lineto -8.762941e+01 2.885031e+01 lineto -8.963186e+01 2.849075e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.104598e+01 3.19504e+01 moveto -8.963186e+01 2.849075e+01 lineto -8.762941e+01 2.885031e+01 lineto -8.892857e+01 3.23306e+01 lineto -9.104598e+01 3.19504e+01 lineto -closepath -gsave -5.110857e-01 5.110857e-01 5.110857e-01 setrgbcolor -fill -grestore -newpath -9.104598e+01 3.19504e+01 moveto -8.963186e+01 2.849075e+01 lineto -8.762941e+01 2.885031e+01 lineto -8.892857e+01 3.23306e+01 lineto -9.104598e+01 3.19504e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.226292e+01 3.551641e+01 moveto -9.104598e+01 3.19504e+01 lineto -8.892857e+01 3.23306e+01 lineto -9.004659e+01 3.591438e+01 lineto -9.226292e+01 3.551641e+01 lineto -closepath -gsave -5.079805e-01 5.079805e-01 5.079805e-01 setrgbcolor -fill -grestore -newpath -9.226292e+01 3.551641e+01 moveto -9.104598e+01 3.19504e+01 lineto -8.892857e+01 3.23306e+01 lineto -9.004659e+01 3.591438e+01 lineto -9.226292e+01 3.551641e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.327347e+01 3.916179e+01 moveto -9.226292e+01 3.551641e+01 lineto -9.004659e+01 3.591438e+01 lineto -9.097498e+01 3.95745e+01 lineto -9.327347e+01 3.916179e+01 lineto -closepath -gsave -5.043909e-01 5.043909e-01 5.043909e-01 setrgbcolor -fill -grestore -newpath -9.327347e+01 3.916179e+01 moveto -9.226292e+01 3.551641e+01 lineto -9.004659e+01 3.591438e+01 lineto -9.097498e+01 3.95745e+01 lineto -9.327347e+01 3.916179e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.406998e+01 4.285893e+01 moveto -9.327347e+01 3.916179e+01 lineto -9.097498e+01 3.95745e+01 lineto -9.170674e+01 4.328327e+01 lineto -9.406998e+01 4.285893e+01 lineto -closepath -gsave -5.003793e-01 5.003793e-01 5.003793e-01 setrgbcolor -fill -grestore -newpath -9.406998e+01 4.285893e+01 moveto -9.327347e+01 3.916179e+01 lineto -9.097498e+01 3.95745e+01 lineto -9.170674e+01 4.328327e+01 lineto -9.406998e+01 4.285893e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.464642e+01 4.657985e+01 moveto -9.406998e+01 4.285893e+01 lineto -9.170674e+01 4.328327e+01 lineto -9.223631e+01 4.701261e+01 lineto -9.464642e+01 4.657985e+01 lineto -closepath -gsave -4.960131e-01 4.960131e-01 4.960131e-01 setrgbcolor -fill -grestore -newpath -9.464642e+01 4.657985e+01 moveto -9.406998e+01 4.285893e+01 lineto -9.170674e+01 4.328327e+01 lineto -9.223631e+01 4.701261e+01 lineto -9.464642e+01 4.657985e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.499842e+01 5.029639e+01 moveto -9.464642e+01 4.657985e+01 lineto -9.223631e+01 4.701261e+01 lineto -9.25597e+01 5.073428e+01 lineto -9.499842e+01 5.029639e+01 lineto -closepath -gsave -4.913633e-01 4.913633e-01 4.913633e-01 setrgbcolor -fill -grestore -newpath -9.499842e+01 5.029639e+01 moveto -9.464642e+01 4.657985e+01 lineto -9.223631e+01 4.701261e+01 lineto -9.25597e+01 5.073428e+01 lineto -9.499842e+01 5.029639e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.512332e+01 5.398039e+01 moveto -9.499842e+01 5.029639e+01 lineto -9.25597e+01 5.073428e+01 lineto -9.267444e+01 5.442011e+01 lineto -9.512332e+01 5.398039e+01 lineto -closepath -gsave -4.865021e-01 4.865021e-01 4.865021e-01 setrgbcolor -fill -grestore -newpath -9.512332e+01 5.398039e+01 moveto -9.499842e+01 5.029639e+01 lineto -9.25597e+01 5.073428e+01 lineto -9.267444e+01 5.442011e+01 lineto -9.512332e+01 5.398039e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.502017e+01 5.760399e+01 moveto -9.512332e+01 5.398039e+01 lineto -9.267444e+01 5.442011e+01 lineto -9.257968e+01 5.80422e+01 lineto -9.502017e+01 5.760399e+01 lineto -closepath -gsave -4.815012e-01 4.815012e-01 4.815012e-01 setrgbcolor -fill -grestore -newpath -9.502017e+01 5.760399e+01 moveto -9.512332e+01 5.398039e+01 lineto -9.267444e+01 5.442011e+01 lineto -9.257968e+01 5.80422e+01 lineto -9.502017e+01 5.760399e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.468975e+01 6.113973e+01 moveto -9.502017e+01 5.760399e+01 lineto -9.257968e+01 5.80422e+01 lineto -9.227613e+01 6.157312e+01 lineto -9.468975e+01 6.113973e+01 lineto -closepath -gsave -4.764305e-01 4.764305e-01 4.764305e-01 setrgbcolor -fill -grestore -newpath -9.468975e+01 6.113973e+01 moveto -9.502017e+01 5.760399e+01 lineto -9.257968e+01 5.80422e+01 lineto -9.227613e+01 6.157312e+01 lineto -9.468975e+01 6.113973e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.413457e+01 6.456086e+01 moveto -9.468975e+01 6.113973e+01 lineto -9.227613e+01 6.157312e+01 lineto -9.176608e+01 6.498615e+01 lineto -9.413457e+01 6.456086e+01 lineto -closepath -gsave -4.713557e-01 4.713557e-01 4.713557e-01 setrgbcolor -fill -grestore -newpath -9.413457e+01 6.456086e+01 moveto -9.468975e+01 6.113973e+01 lineto -9.227613e+01 6.157312e+01 lineto -9.176608e+01 6.498615e+01 lineto -9.413457e+01 6.456086e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.335883e+01 6.784148e+01 moveto -9.413457e+01 6.456086e+01 lineto -9.176608e+01 6.498615e+01 lineto -9.10534e+01 6.825544e+01 lineto -9.335883e+01 6.784148e+01 lineto -closepath -gsave -4.66338e-01 4.66338e-01 4.66338e-01 setrgbcolor -fill -grestore -newpath -9.335883e+01 6.784148e+01 moveto -9.413457e+01 6.456086e+01 lineto -9.176608e+01 6.498615e+01 lineto -9.10534e+01 6.825544e+01 lineto -9.335883e+01 6.784148e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.23684e+01 7.095675e+01 moveto -9.335883e+01 6.784148e+01 lineto -9.10534e+01 6.825544e+01 lineto -9.014349e+01 7.135625e+01 lineto -9.23684e+01 7.095675e+01 lineto -closepath -gsave -4.614322e-01 4.614322e-01 4.614322e-01 setrgbcolor -fill -grestore -newpath -9.23684e+01 7.095675e+01 moveto -9.335883e+01 6.784148e+01 lineto -9.10534e+01 6.825544e+01 lineto -9.014349e+01 7.135625e+01 lineto -9.23684e+01 7.095675e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.117078e+01 7.388308e+01 moveto -9.23684e+01 7.095675e+01 lineto -9.014349e+01 7.135625e+01 lineto -8.904323e+01 7.42651e+01 lineto -9.117078e+01 7.388308e+01 lineto -closepath -gsave -4.566863e-01 4.566863e-01 4.566863e-01 setrgbcolor -fill -grestore -newpath -9.117078e+01 7.388308e+01 moveto -9.23684e+01 7.095675e+01 lineto -9.014349e+01 7.135625e+01 lineto -8.904323e+01 7.42651e+01 lineto -9.117078e+01 7.388308e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.977504e+01 7.659833e+01 moveto -9.117078e+01 7.388308e+01 lineto -8.904323e+01 7.42651e+01 lineto -8.776095e+01 7.695998e+01 lineto -8.977504e+01 7.659833e+01 lineto -closepath -gsave -4.52141e-01 4.52141e-01 4.52141e-01 setrgbcolor -fill -grestore -newpath -8.977504e+01 7.659833e+01 moveto -9.117078e+01 7.388308e+01 lineto -8.904323e+01 7.42651e+01 lineto -8.776095e+01 7.695998e+01 lineto -8.977504e+01 7.659833e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.819174e+01 7.908193e+01 moveto -8.977504e+01 7.659833e+01 lineto -8.776095e+01 7.695998e+01 lineto -8.630637e+01 7.942047e+01 lineto -8.819174e+01 7.908193e+01 lineto -closepath -gsave -4.478294e-01 4.478294e-01 4.478294e-01 setrgbcolor -fill -grestore -newpath -8.819174e+01 7.908193e+01 moveto -8.977504e+01 7.659833e+01 lineto -8.776095e+01 7.695998e+01 lineto -8.630637e+01 7.942047e+01 lineto -8.819174e+01 7.908193e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.643286e+01 8.131509e+01 moveto -8.819174e+01 7.908193e+01 lineto -8.630637e+01 7.942047e+01 lineto -8.469048e+01 8.162795e+01 lineto -8.643286e+01 8.131509e+01 lineto -closepath -gsave -4.43777e-01 4.43777e-01 4.43777e-01 setrgbcolor -fill -grestore -newpath -8.643286e+01 8.131509e+01 moveto -8.819174e+01 7.908193e+01 lineto -8.630637e+01 7.942047e+01 lineto -8.469048e+01 8.162795e+01 lineto -8.643286e+01 8.131509e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.451173e+01 8.32809e+01 moveto -8.643286e+01 8.131509e+01 lineto -8.469048e+01 8.162795e+01 lineto -8.292553e+01 8.356572e+01 lineto -8.451173e+01 8.32809e+01 lineto -closepath -gsave -4.400022e-01 4.400022e-01 4.400022e-01 setrgbcolor -fill -grestore -newpath -8.451173e+01 8.32809e+01 moveto -8.643286e+01 8.131509e+01 lineto -8.469048e+01 8.162795e+01 lineto -8.292553e+01 8.356572e+01 lineto -8.451173e+01 8.32809e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.244289e+01 8.496447e+01 moveto -8.451173e+01 8.32809e+01 lineto -8.292553e+01 8.356572e+01 lineto -8.102487e+01 8.521909e+01 lineto -8.244289e+01 8.496447e+01 lineto -closepath -gsave -4.365163e-01 4.365163e-01 4.365163e-01 setrgbcolor -fill -grestore -newpath -8.244289e+01 8.496447e+01 moveto -8.451173e+01 8.32809e+01 lineto -8.292553e+01 8.356572e+01 lineto -8.102487e+01 8.521909e+01 lineto -8.244289e+01 8.496447e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.0242e+01 8.635307e+01 moveto -8.244289e+01 8.496447e+01 lineto -8.102487e+01 8.521909e+01 lineto -7.90029e+01 8.657556e+01 lineto -8.0242e+01 8.635307e+01 lineto -closepath -gsave -4.333248e-01 4.333248e-01 4.333248e-01 setrgbcolor -fill -grestore -newpath -8.0242e+01 8.635307e+01 moveto -8.244289e+01 8.496447e+01 lineto -8.102487e+01 8.521909e+01 lineto -7.90029e+01 8.657556e+01 lineto -8.0242e+01 8.635307e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.792572e+01 8.743618e+01 moveto -8.0242e+01 8.635307e+01 lineto -7.90029e+01 8.657556e+01 lineto -7.687492e+01 8.762486e+01 lineto -7.792572e+01 8.743618e+01 lineto -closepath -gsave -4.304277e-01 4.304277e-01 4.304277e-01 setrgbcolor -fill -grestore -newpath -7.792572e+01 8.743618e+01 moveto -8.0242e+01 8.635307e+01 lineto -7.90029e+01 8.657556e+01 lineto -7.687492e+01 8.762486e+01 lineto -7.792572e+01 8.743618e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.551158e+01 8.82056e+01 moveto -7.792572e+01 8.743618e+01 lineto -7.687492e+01 8.762486e+01 lineto -7.465704e+01 8.835904e+01 lineto -7.551158e+01 8.82056e+01 lineto -closepath -gsave -4.278204e-01 4.278204e-01 4.278204e-01 setrgbcolor -fill -grestore -newpath -7.551158e+01 8.82056e+01 moveto -7.792572e+01 8.743618e+01 lineto -7.687492e+01 8.762486e+01 lineto -7.465704e+01 8.835904e+01 lineto -7.551158e+01 8.82056e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.301787e+01 8.86555e+01 moveto -7.551158e+01 8.82056e+01 lineto -7.465704e+01 8.835904e+01 lineto -7.236606e+01 8.877254e+01 lineto -7.301787e+01 8.86555e+01 lineto -closepath -gsave -4.254948e-01 4.254948e-01 4.254948e-01 setrgbcolor -fill -grestore -newpath -7.301787e+01 8.86555e+01 moveto -7.551158e+01 8.82056e+01 lineto -7.465704e+01 8.835904e+01 lineto -7.236606e+01 8.877254e+01 lineto -7.301787e+01 8.86555e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.002939e+01 8.607866e+01 moveto -6.263083e+01 8.722853e+01 lineto -6.282343e+01 8.719395e+01 lineto -6.043348e+01 8.60061e+01 lineto -6.002939e+01 8.607866e+01 lineto -closepath -gsave -5.080952e-01 5.080952e-01 5.080952e-01 setrgbcolor -fill -grestore -newpath -6.002939e+01 8.607866e+01 moveto -6.263083e+01 8.722853e+01 lineto -6.282343e+01 8.719395e+01 lineto -6.043348e+01 8.60061e+01 lineto -6.002939e+01 8.607866e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.746558e+01 8.462538e+01 moveto -6.002939e+01 8.607866e+01 lineto -6.043348e+01 8.60061e+01 lineto -5.807809e+01 8.45154e+01 lineto -5.746558e+01 8.462538e+01 lineto -closepath -gsave -5.111859e-01 5.111859e-01 5.111859e-01 setrgbcolor -fill -grestore -newpath -5.746558e+01 8.462538e+01 moveto -6.002939e+01 8.607866e+01 lineto -6.043348e+01 8.60061e+01 lineto -5.807809e+01 8.45154e+01 lineto -5.746558e+01 8.462538e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.495881e+01 8.287968e+01 moveto -5.746558e+01 8.462538e+01 lineto -5.807809e+01 8.45154e+01 lineto -5.577511e+01 8.273311e+01 lineto -5.495881e+01 8.287968e+01 lineto -closepath -gsave -5.137333e-01 5.137333e-01 5.137333e-01 setrgbcolor -fill -grestore -newpath -5.495881e+01 8.287968e+01 moveto -5.746558e+01 8.462538e+01 lineto -5.807809e+01 8.45154e+01 lineto -5.577511e+01 8.273311e+01 lineto -5.495881e+01 8.287968e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.740565e+01 4.906074e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.717794e+01 4.939691e+00 lineto -6.740565e+01 4.906074e+00 lineto -closepath -gsave -5.056656e-01 5.056656e-01 5.056656e-01 setrgbcolor -fill -grestore -newpath -6.740565e+01 4.906074e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.717794e+01 4.939691e+00 lineto -6.740565e+01 4.906074e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.979308e+01 6.123246e+00 moveto -6.740565e+01 4.906074e+00 lineto -6.717794e+01 4.939691e+00 lineto -6.93394e+01 6.190226e+00 lineto -6.979308e+01 6.123246e+00 lineto -closepath -gsave -5.108352e-01 5.108352e-01 5.108352e-01 setrgbcolor -fill -grestore -newpath -6.979308e+01 6.123246e+00 moveto -6.740565e+01 4.906074e+00 lineto -6.717794e+01 4.939691e+00 lineto -6.93394e+01 6.190226e+00 lineto -6.979308e+01 6.123246e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.214423e+01 7.642304e+00 moveto -6.979308e+01 6.123246e+00 lineto -6.93394e+01 6.190226e+00 lineto -7.1468e+01 7.742139e+00 lineto -7.214423e+01 7.642304e+00 lineto -closepath -gsave -5.155653e-01 5.155653e-01 5.155653e-01 setrgbcolor -fill -grestore -newpath -7.214423e+01 7.642304e+00 moveto -6.979308e+01 6.123246e+00 lineto -6.93394e+01 6.190226e+00 lineto -7.1468e+01 7.742139e+00 lineto -7.214423e+01 7.642304e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.444129e+01 9.451745e+00 moveto -7.214423e+01 7.642304e+00 lineto -7.1468e+01 7.742139e+00 lineto -7.354764e+01 9.58368e+00 lineto -7.444129e+01 9.451745e+00 lineto -closepath -gsave -5.197708e-01 5.197708e-01 5.197708e-01 setrgbcolor -fill -grestore -newpath -7.444129e+01 9.451745e+00 moveto -7.214423e+01 7.642304e+00 lineto -7.1468e+01 7.742139e+00 lineto -7.354764e+01 9.58368e+00 lineto -7.444129e+01 9.451745e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.666688e+01 1.153787e+01 moveto -7.444129e+01 9.451745e+00 lineto -7.354764e+01 9.58368e+00 lineto -7.556257e+01 1.170091e+01 lineto -7.666688e+01 1.153787e+01 lineto -closepath -gsave -5.233738e-01 5.233738e-01 5.233738e-01 setrgbcolor -fill -grestore -newpath -7.666688e+01 1.153787e+01 moveto -7.444129e+01 9.451745e+00 lineto -7.354764e+01 9.58368e+00 lineto -7.556257e+01 1.170091e+01 lineto -7.666688e+01 1.153787e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.880415e+01 1.38849e+01 moveto -7.666688e+01 1.153787e+01 lineto -7.556257e+01 1.170091e+01 lineto -7.749753e+01 1.40778e+01 lineto -7.880415e+01 1.38849e+01 lineto -closepath -gsave -5.263058e-01 5.263058e-01 5.263058e-01 setrgbcolor -fill -grestore -newpath -7.880415e+01 1.38849e+01 moveto -7.666688e+01 1.153787e+01 lineto -7.556257e+01 1.170091e+01 lineto -7.749753e+01 1.40778e+01 lineto -7.880415e+01 1.38849e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.083691e+01 1.647504e+01 moveto -7.880415e+01 1.38849e+01 lineto -7.749753e+01 1.40778e+01 lineto -7.933789e+01 1.669635e+01 lineto -8.083691e+01 1.647504e+01 lineto -closepath -gsave -5.285102e-01 5.285102e-01 5.285102e-01 setrgbcolor -fill -grestore -newpath -8.083691e+01 1.647504e+01 moveto -7.880415e+01 1.38849e+01 lineto -7.749753e+01 1.40778e+01 lineto -7.933789e+01 1.669635e+01 lineto -8.083691e+01 1.647504e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.274978e+01 1.928871e+01 moveto -8.083691e+01 1.647504e+01 lineto -7.933789e+01 1.669635e+01 lineto -8.10697e+01 1.953675e+01 lineto -8.274978e+01 1.928871e+01 lineto -closepath -gsave -5.29944e-01 5.29944e-01 5.29944e-01 setrgbcolor -fill -grestore -newpath -8.274978e+01 1.928871e+01 moveto -8.083691e+01 1.647504e+01 lineto -7.933789e+01 1.669635e+01 lineto -8.10697e+01 1.953675e+01 lineto -8.274978e+01 1.928871e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.452828e+01 2.230459e+01 moveto -8.274978e+01 1.928871e+01 lineto -8.10697e+01 1.953675e+01 lineto -8.267985e+01 2.257748e+01 lineto -8.452828e+01 2.230459e+01 lineto -closepath -gsave -5.30579e-01 5.30579e-01 5.30579e-01 setrgbcolor -fill -grestore -newpath -8.452828e+01 2.230459e+01 moveto -8.274978e+01 1.928871e+01 lineto -8.10697e+01 1.953675e+01 lineto -8.267985e+01 2.257748e+01 lineto -8.452828e+01 2.230459e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.615894e+01 2.549985e+01 moveto -8.452828e+01 2.230459e+01 lineto -8.267985e+01 2.257748e+01 lineto -8.415616e+01 2.579553e+01 lineto -8.615894e+01 2.549985e+01 lineto -closepath -gsave -5.304028e-01 5.304028e-01 5.304028e-01 setrgbcolor -fill -grestore -newpath -8.615894e+01 2.549985e+01 moveto -8.452828e+01 2.230459e+01 lineto -8.267985e+01 2.257748e+01 lineto -8.415616e+01 2.579553e+01 lineto -8.615894e+01 2.549985e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.762941e+01 2.885031e+01 moveto -8.615894e+01 2.549985e+01 lineto -8.415616e+01 2.579553e+01 lineto -8.548745e+01 2.916654e+01 lineto -8.762941e+01 2.885031e+01 lineto -closepath -gsave -5.294194e-01 5.294194e-01 5.294194e-01 setrgbcolor -fill -grestore -newpath -8.762941e+01 2.885031e+01 moveto -8.615894e+01 2.549985e+01 lineto -8.415616e+01 2.579553e+01 lineto -8.548745e+01 2.916654e+01 lineto -8.762941e+01 2.885031e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.892857e+01 3.23306e+01 moveto -8.762941e+01 2.885031e+01 lineto -8.548745e+01 2.916654e+01 lineto -8.666364e+01 3.266499e+01 lineto -8.892857e+01 3.23306e+01 lineto -closepath -gsave -5.276485e-01 5.276485e-01 5.276485e-01 setrgbcolor -fill -grestore -newpath -8.892857e+01 3.23306e+01 moveto -8.762941e+01 2.885031e+01 lineto -8.548745e+01 2.916654e+01 lineto -8.666364e+01 3.266499e+01 lineto -8.892857e+01 3.23306e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.004659e+01 3.591438e+01 moveto -8.892857e+01 3.23306e+01 lineto -8.666364e+01 3.266499e+01 lineto -8.767583e+01 3.626438e+01 lineto -9.004659e+01 3.591438e+01 lineto -closepath -gsave -5.251254e-01 5.251254e-01 5.251254e-01 setrgbcolor -fill -grestore -newpath -9.004659e+01 3.591438e+01 moveto -8.892857e+01 3.23306e+01 lineto -8.666364e+01 3.266499e+01 lineto -8.767583e+01 3.626438e+01 lineto -9.004659e+01 3.591438e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.097498e+01 3.95745e+01 moveto -9.004659e+01 3.591438e+01 lineto -8.767583e+01 3.626438e+01 lineto -8.851635e+01 3.993748e+01 lineto -9.097498e+01 3.95745e+01 lineto -closepath -gsave -5.218996e-01 5.218996e-01 5.218996e-01 setrgbcolor -fill -grestore -newpath -9.097498e+01 3.95745e+01 moveto -9.004659e+01 3.591438e+01 lineto -8.767583e+01 3.626438e+01 lineto -8.851635e+01 3.993748e+01 lineto -9.097498e+01 3.95745e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.170674e+01 4.328327e+01 moveto -9.097498e+01 3.95745e+01 lineto -8.851635e+01 3.993748e+01 lineto -8.917884e+01 4.365648e+01 lineto -9.170674e+01 4.328327e+01 lineto -closepath -gsave -5.18033e-01 5.18033e-01 5.18033e-01 setrgbcolor -fill -grestore -newpath -9.170674e+01 4.328327e+01 moveto -9.097498e+01 3.95745e+01 lineto -8.851635e+01 3.993748e+01 lineto -8.917884e+01 4.365648e+01 lineto -9.170674e+01 4.328327e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.223631e+01 4.701261e+01 moveto -9.170674e+01 4.328327e+01 lineto -8.917884e+01 4.365648e+01 lineto -8.965829e+01 4.739322e+01 lineto -9.223631e+01 4.701261e+01 lineto -closepath -gsave -5.135984e-01 5.135984e-01 5.135984e-01 setrgbcolor -fill -grestore -newpath -9.223631e+01 4.701261e+01 moveto -9.170674e+01 4.328327e+01 lineto -8.917884e+01 4.365648e+01 lineto -8.965829e+01 4.739322e+01 lineto -9.223631e+01 4.701261e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.25597e+01 5.073428e+01 moveto -9.223631e+01 4.701261e+01 lineto -8.965829e+01 4.739322e+01 lineto -8.995107e+01 5.111941e+01 lineto -9.25597e+01 5.073428e+01 lineto -closepath -gsave -5.086767e-01 5.086767e-01 5.086767e-01 setrgbcolor -fill -grestore -newpath -9.25597e+01 5.073428e+01 moveto -9.223631e+01 4.701261e+01 lineto -8.965829e+01 4.739322e+01 lineto -8.995107e+01 5.111941e+01 lineto -9.25597e+01 5.073428e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.267444e+01 5.442011e+01 moveto -9.25597e+01 5.073428e+01 lineto -8.995107e+01 5.111941e+01 lineto -9.005495e+01 5.480684e+01 lineto -9.267444e+01 5.442011e+01 lineto -closepath -gsave -5.033551e-01 5.033551e-01 5.033551e-01 setrgbcolor -fill -grestore -newpath -9.267444e+01 5.442011e+01 moveto -9.25597e+01 5.073428e+01 lineto -8.995107e+01 5.111941e+01 lineto -9.005495e+01 5.480684e+01 lineto -9.267444e+01 5.442011e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.257968e+01 5.80422e+01 moveto -9.267444e+01 5.442011e+01 lineto -9.005495e+01 5.480684e+01 lineto -8.996916e+01 5.84276e+01 lineto -9.257968e+01 5.80422e+01 lineto -closepath -gsave -4.97724e-01 4.97724e-01 4.97724e-01 setrgbcolor -fill -grestore -newpath -9.257968e+01 5.80422e+01 moveto -9.267444e+01 5.442011e+01 lineto -9.005495e+01 5.480684e+01 lineto -8.996916e+01 5.84276e+01 lineto -9.257968e+01 5.80422e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.227613e+01 6.157312e+01 moveto -9.257968e+01 5.80422e+01 lineto -8.996916e+01 5.84276e+01 lineto -8.969433e+01 6.195428e+01 lineto -9.227613e+01 6.157312e+01 lineto -closepath -gsave -4.918747e-01 4.918747e-01 4.918747e-01 setrgbcolor -fill -grestore -newpath -9.227613e+01 6.157312e+01 moveto -9.257968e+01 5.80422e+01 lineto -8.996916e+01 5.84276e+01 lineto -8.969433e+01 6.195428e+01 lineto -9.227613e+01 6.157312e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.176608e+01 6.498615e+01 moveto -9.227613e+01 6.157312e+01 lineto -8.969433e+01 6.195428e+01 lineto -8.923257e+01 6.536018e+01 lineto -9.176608e+01 6.498615e+01 lineto -closepath -gsave -4.858973e-01 4.858973e-01 4.858973e-01 setrgbcolor -fill -grestore -newpath -9.176608e+01 6.498615e+01 moveto -9.227613e+01 6.157312e+01 lineto -8.969433e+01 6.195428e+01 lineto -8.923257e+01 6.536018e+01 lineto -9.176608e+01 6.498615e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.10534e+01 6.825544e+01 moveto -9.176608e+01 6.498615e+01 lineto -8.923257e+01 6.536018e+01 lineto -8.858735e+01 6.861952e+01 lineto -9.10534e+01 6.825544e+01 lineto -closepath -gsave -4.798779e-01 4.798779e-01 4.798779e-01 setrgbcolor -fill -grestore -newpath -9.10534e+01 6.825544e+01 moveto -9.176608e+01 6.498615e+01 lineto -8.923257e+01 6.536018e+01 lineto -8.858735e+01 6.861952e+01 lineto -9.10534e+01 6.825544e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.014349e+01 7.135625e+01 moveto -9.10534e+01 6.825544e+01 lineto -8.858735e+01 6.861952e+01 lineto -8.776356e+01 7.170761e+01 lineto -9.014349e+01 7.135625e+01 lineto -closepath -gsave -4.738971e-01 4.738971e-01 4.738971e-01 setrgbcolor -fill -grestore -newpath -9.014349e+01 7.135625e+01 moveto -9.10534e+01 6.825544e+01 lineto -8.858735e+01 6.861952e+01 lineto -8.776356e+01 7.170761e+01 lineto -9.014349e+01 7.135625e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.904323e+01 7.42651e+01 moveto -9.014349e+01 7.135625e+01 lineto -8.776356e+01 7.170761e+01 lineto -8.676745e+01 7.460109e+01 lineto -8.904323e+01 7.42651e+01 lineto -closepath -gsave -4.680281e-01 4.680281e-01 4.680281e-01 setrgbcolor -fill -grestore -newpath -8.904323e+01 7.42651e+01 moveto -9.014349e+01 7.135625e+01 lineto -8.776356e+01 7.170761e+01 lineto -8.676745e+01 7.460109e+01 lineto -8.904323e+01 7.42651e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.776095e+01 7.695998e+01 moveto -8.904323e+01 7.42651e+01 lineto -8.676745e+01 7.460109e+01 lineto -8.560654e+01 7.727804e+01 lineto -8.776095e+01 7.695998e+01 lineto -closepath -gsave -4.623356e-01 4.623356e-01 4.623356e-01 setrgbcolor -fill -grestore -newpath -8.776095e+01 7.695998e+01 moveto -8.904323e+01 7.42651e+01 lineto -8.676745e+01 7.460109e+01 lineto -8.560654e+01 7.727804e+01 lineto -8.776095e+01 7.695998e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.630637e+01 7.942047e+01 moveto -8.776095e+01 7.695998e+01 lineto -8.560654e+01 7.727804e+01 lineto -8.428964e+01 7.971821e+01 lineto -8.630637e+01 7.942047e+01 lineto -closepath -gsave -4.568749e-01 4.568749e-01 4.568749e-01 setrgbcolor -fill -grestore -newpath -8.630637e+01 7.942047e+01 moveto -8.776095e+01 7.695998e+01 lineto -8.560654e+01 7.727804e+01 lineto -8.428964e+01 7.971821e+01 lineto -8.630637e+01 7.942047e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.469048e+01 8.162795e+01 moveto -8.630637e+01 7.942047e+01 lineto -8.428964e+01 7.971821e+01 lineto -8.28267e+01 8.190311e+01 lineto -8.469048e+01 8.162795e+01 lineto -closepath -gsave -4.516912e-01 4.516912e-01 4.516912e-01 setrgbcolor -fill -grestore -newpath -8.469048e+01 8.162795e+01 moveto -8.630637e+01 7.942047e+01 lineto -8.428964e+01 7.971821e+01 lineto -8.28267e+01 8.190311e+01 lineto -8.469048e+01 8.162795e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.292553e+01 8.356572e+01 moveto -8.469048e+01 8.162795e+01 lineto -8.28267e+01 8.190311e+01 lineto -8.122881e+01 8.381621e+01 lineto -8.292553e+01 8.356572e+01 lineto -closepath -gsave -4.468197e-01 4.468197e-01 4.468197e-01 setrgbcolor -fill -grestore -newpath -8.292553e+01 8.356572e+01 moveto -8.469048e+01 8.162795e+01 lineto -8.28267e+01 8.190311e+01 lineto -8.122881e+01 8.381621e+01 lineto -8.292553e+01 8.356572e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.102487e+01 8.521909e+01 moveto -8.292553e+01 8.356572e+01 lineto -8.122881e+01 8.381621e+01 lineto -7.950806e+01 8.544303e+01 lineto -8.102487e+01 8.521909e+01 lineto -closepath -gsave -4.422858e-01 4.422858e-01 4.422858e-01 setrgbcolor -fill -grestore -newpath -8.102487e+01 8.521909e+01 moveto -8.292553e+01 8.356572e+01 lineto -8.122881e+01 8.381621e+01 lineto -7.950806e+01 8.544303e+01 lineto -8.102487e+01 8.521909e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.90029e+01 8.657556e+01 moveto -8.102487e+01 8.521909e+01 lineto -7.950806e+01 8.544303e+01 lineto -7.767747e+01 8.677124e+01 lineto -7.90029e+01 8.657556e+01 lineto -closepath -gsave -4.381053e-01 4.381053e-01 4.381053e-01 setrgbcolor -fill -grestore -newpath -7.90029e+01 8.657556e+01 moveto -8.102487e+01 8.521909e+01 lineto -7.950806e+01 8.544303e+01 lineto -7.767747e+01 8.677124e+01 lineto -7.90029e+01 8.657556e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.687492e+01 8.762486e+01 moveto -7.90029e+01 8.657556e+01 lineto -7.767747e+01 8.677124e+01 lineto -7.575091e+01 8.77908e+01 lineto -7.687492e+01 8.762486e+01 lineto -closepath -gsave -4.342859e-01 4.342859e-01 4.342859e-01 setrgbcolor -fill -grestore -newpath -7.687492e+01 8.762486e+01 moveto -7.90029e+01 8.657556e+01 lineto -7.767747e+01 8.677124e+01 lineto -7.575091e+01 8.77908e+01 lineto -7.687492e+01 8.762486e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.465704e+01 8.835904e+01 moveto -7.687492e+01 8.762486e+01 lineto -7.575091e+01 8.77908e+01 lineto -7.374297e+01 8.849399e+01 lineto -7.465704e+01 8.835904e+01 lineto -closepath -gsave -4.308275e-01 4.308275e-01 4.308275e-01 setrgbcolor -fill -grestore -newpath -7.465704e+01 8.835904e+01 moveto -7.687492e+01 8.762486e+01 lineto -7.575091e+01 8.77908e+01 lineto -7.374297e+01 8.849399e+01 lineto -7.465704e+01 8.835904e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.236606e+01 8.877254e+01 moveto -7.465704e+01 8.835904e+01 lineto -7.374297e+01 8.849399e+01 lineto -7.166883e+01 8.887547e+01 lineto -7.236606e+01 8.877254e+01 lineto -closepath -gsave -4.277235e-01 4.277235e-01 4.277235e-01 setrgbcolor -fill -grestore -newpath -7.236606e+01 8.877254e+01 moveto -7.465704e+01 8.835904e+01 lineto -7.374297e+01 8.849399e+01 lineto -7.166883e+01 8.887547e+01 lineto -7.236606e+01 8.877254e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.043348e+01 8.60061e+01 moveto -6.282343e+01 8.719395e+01 lineto -6.302945e+01 8.716353e+01 lineto -6.086571e+01 8.594229e+01 lineto -6.043348e+01 8.60061e+01 lineto -closepath -gsave -5.103594e-01 5.103594e-01 5.103594e-01 setrgbcolor -fill -grestore -newpath -6.043348e+01 8.60061e+01 moveto -6.282343e+01 8.719395e+01 lineto -6.302945e+01 8.716353e+01 lineto -6.086571e+01 8.594229e+01 lineto -6.043348e+01 8.60061e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.807809e+01 8.45154e+01 moveto -6.043348e+01 8.60061e+01 lineto -6.086571e+01 8.594229e+01 lineto -5.873328e+01 8.441867e+01 lineto -5.807809e+01 8.45154e+01 lineto -closepath -gsave -5.151352e-01 5.151352e-01 5.151352e-01 setrgbcolor -fill -grestore -newpath -5.807809e+01 8.45154e+01 moveto -6.043348e+01 8.60061e+01 lineto -6.086571e+01 8.594229e+01 lineto -5.873328e+01 8.441867e+01 lineto -5.807809e+01 8.45154e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.577511e+01 8.273311e+01 moveto -5.807809e+01 8.45154e+01 lineto -5.873328e+01 8.441867e+01 lineto -5.664828e+01 8.26042e+01 lineto -5.577511e+01 8.273311e+01 lineto -closepath -gsave -5.193943e-01 5.193943e-01 5.193943e-01 setrgbcolor -fill -grestore -newpath -5.577511e+01 8.273311e+01 moveto -5.807809e+01 8.45154e+01 lineto -5.873328e+01 8.441867e+01 lineto -5.664828e+01 8.26042e+01 lineto -5.577511e+01 8.273311e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.717794e+01 4.939691e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.693681e+01 4.968494e+00 lineto -6.717794e+01 4.939691e+00 lineto -closepath -gsave -5.064403e-01 5.064403e-01 5.064403e-01 setrgbcolor -fill -grestore -newpath -6.717794e+01 4.939691e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.693681e+01 4.968494e+00 lineto -6.717794e+01 4.939691e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.93394e+01 6.190226e+00 moveto -6.717794e+01 4.939691e+00 lineto -6.693681e+01 4.968494e+00 lineto -6.885896e+01 6.247616e+00 lineto -6.93394e+01 6.190226e+00 lineto -closepath -gsave -5.132397e-01 5.132397e-01 5.132397e-01 setrgbcolor -fill -grestore -newpath -6.93394e+01 6.190226e+00 moveto -6.717794e+01 4.939691e+00 lineto -6.693681e+01 4.968494e+00 lineto -6.885896e+01 6.247616e+00 lineto -6.93394e+01 6.190226e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.1468e+01 7.742139e+00 moveto -6.93394e+01 6.190226e+00 lineto -6.885896e+01 6.247616e+00 lineto -7.075189e+01 7.82768e+00 lineto -7.1468e+01 7.742139e+00 lineto -closepath -gsave -5.196839e-01 5.196839e-01 5.196839e-01 setrgbcolor -fill -grestore -newpath -7.1468e+01 7.742139e+00 moveto -6.93394e+01 6.190226e+00 lineto -6.885896e+01 6.247616e+00 lineto -7.075189e+01 7.82768e+00 lineto -7.1468e+01 7.742139e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.354764e+01 9.58368e+00 moveto -7.1468e+01 7.742139e+00 lineto -7.075189e+01 7.82768e+00 lineto -7.260128e+01 9.696725e+00 lineto -7.354764e+01 9.58368e+00 lineto -closepath -gsave -5.256566e-01 5.256566e-01 5.256566e-01 setrgbcolor -fill -grestore -newpath -7.354764e+01 9.58368e+00 moveto -7.1468e+01 7.742139e+00 lineto -7.075189e+01 7.82768e+00 lineto -7.260128e+01 9.696725e+00 lineto -7.354764e+01 9.58368e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.556257e+01 1.170091e+01 moveto -7.354764e+01 9.58368e+00 lineto -7.260128e+01 9.696725e+00 lineto -7.439313e+01 1.18406e+01 lineto -7.556257e+01 1.170091e+01 lineto -closepath -gsave -5.310455e-01 5.310455e-01 5.310455e-01 setrgbcolor -fill -grestore -newpath -7.556257e+01 1.170091e+01 moveto -7.354764e+01 9.58368e+00 lineto -7.260128e+01 9.696725e+00 lineto -7.439313e+01 1.18406e+01 lineto -7.556257e+01 1.170091e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.749753e+01 1.40778e+01 moveto -7.556257e+01 1.170091e+01 lineto -7.439313e+01 1.18406e+01 lineto -7.611386e+01 1.424308e+01 lineto -7.749753e+01 1.40778e+01 lineto -closepath -gsave -5.357462e-01 5.357462e-01 5.357462e-01 setrgbcolor -fill -grestore -newpath -7.749753e+01 1.40778e+01 moveto -7.556257e+01 1.170091e+01 lineto -7.439313e+01 1.18406e+01 lineto -7.611386e+01 1.424308e+01 lineto -7.749753e+01 1.40778e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.933789e+01 1.669635e+01 moveto -7.749753e+01 1.40778e+01 lineto -7.611386e+01 1.424308e+01 lineto -7.775046e+01 1.688597e+01 lineto -7.933789e+01 1.669635e+01 lineto -closepath -gsave -5.396652e-01 5.396652e-01 5.396652e-01 setrgbcolor -fill -grestore -newpath -7.933789e+01 1.669635e+01 moveto -7.749753e+01 1.40778e+01 lineto -7.611386e+01 1.424308e+01 lineto -7.775046e+01 1.688597e+01 lineto -7.933789e+01 1.669635e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.10697e+01 1.953675e+01 moveto -7.933789e+01 1.669635e+01 lineto -7.775046e+01 1.688597e+01 lineto -7.929053e+01 1.974927e+01 lineto -8.10697e+01 1.953675e+01 lineto -closepath -gsave -5.427227e-01 5.427227e-01 5.427227e-01 setrgbcolor -fill -grestore -newpath -8.10697e+01 1.953675e+01 moveto -7.933789e+01 1.669635e+01 lineto -7.775046e+01 1.688597e+01 lineto -7.929053e+01 1.974927e+01 lineto -8.10697e+01 1.953675e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.267985e+01 2.257748e+01 moveto -8.10697e+01 1.953675e+01 lineto -7.929053e+01 1.974927e+01 lineto -8.072242e+01 2.28113e+01 lineto -8.267985e+01 2.257748e+01 lineto -closepath -gsave -5.448557e-01 5.448557e-01 5.448557e-01 setrgbcolor -fill -grestore -newpath -8.267985e+01 2.257748e+01 moveto -8.10697e+01 1.953675e+01 lineto -7.929053e+01 1.974927e+01 lineto -8.072242e+01 2.28113e+01 lineto -8.267985e+01 2.257748e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.415616e+01 2.579553e+01 moveto -8.267985e+01 2.257748e+01 lineto -8.072242e+01 2.28113e+01 lineto -8.203528e+01 2.604888e+01 lineto -8.415616e+01 2.579553e+01 lineto -closepath -gsave -5.460199e-01 5.460199e-01 5.460199e-01 setrgbcolor -fill -grestore -newpath -8.415616e+01 2.579553e+01 moveto -8.267985e+01 2.257748e+01 lineto -8.072242e+01 2.28113e+01 lineto -8.203528e+01 2.604888e+01 lineto -8.415616e+01 2.579553e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.548745e+01 2.916654e+01 moveto -8.415616e+01 2.579553e+01 lineto -8.203528e+01 2.604888e+01 lineto -8.321918e+01 2.943749e+01 lineto -8.548745e+01 2.916654e+01 lineto -closepath -gsave -5.461911e-01 5.461911e-01 5.461911e-01 setrgbcolor -fill -grestore -newpath -8.548745e+01 2.916654e+01 moveto -8.415616e+01 2.579553e+01 lineto -8.203528e+01 2.604888e+01 lineto -8.321918e+01 2.943749e+01 lineto -8.548745e+01 2.916654e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.666364e+01 3.266499e+01 moveto -8.548745e+01 2.916654e+01 lineto -8.321918e+01 2.943749e+01 lineto -8.426514e+01 3.295149e+01 lineto -8.666364e+01 3.266499e+01 lineto -closepath -gsave -5.453661e-01 5.453661e-01 5.453661e-01 setrgbcolor -fill -grestore -newpath -8.666364e+01 3.266499e+01 moveto -8.548745e+01 2.916654e+01 lineto -8.321918e+01 2.943749e+01 lineto -8.426514e+01 3.295149e+01 lineto -8.666364e+01 3.266499e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.767583e+01 3.626438e+01 moveto -8.666364e+01 3.266499e+01 lineto -8.426514e+01 3.295149e+01 lineto -8.516527e+01 3.656428e+01 lineto -8.767583e+01 3.626438e+01 lineto -closepath -gsave -5.435627e-01 5.435627e-01 5.435627e-01 setrgbcolor -fill -grestore -newpath -8.767583e+01 3.626438e+01 moveto -8.666364e+01 3.266499e+01 lineto -8.426514e+01 3.295149e+01 lineto -8.516527e+01 3.656428e+01 lineto -8.767583e+01 3.626438e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.851635e+01 3.993748e+01 moveto -8.767583e+01 3.626438e+01 lineto -8.516527e+01 3.656428e+01 lineto -8.591273e+01 4.024849e+01 lineto -8.851635e+01 3.993748e+01 lineto -closepath -gsave -5.408191e-01 5.408191e-01 5.408191e-01 setrgbcolor -fill -grestore -newpath -8.851635e+01 3.993748e+01 moveto -8.767583e+01 3.626438e+01 lineto -8.516527e+01 3.656428e+01 lineto -8.591273e+01 4.024849e+01 lineto -8.851635e+01 3.993748e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.917884e+01 4.365648e+01 moveto -8.851635e+01 3.993748e+01 lineto -8.591273e+01 4.024849e+01 lineto -8.650188e+01 4.397625e+01 lineto -8.917884e+01 4.365648e+01 lineto -closepath -gsave -5.371924e-01 5.371924e-01 5.371924e-01 setrgbcolor -fill -grestore -newpath -8.917884e+01 4.365648e+01 moveto -8.851635e+01 3.993748e+01 lineto -8.591273e+01 4.024849e+01 lineto -8.650188e+01 4.397625e+01 lineto -8.917884e+01 4.365648e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.965829e+01 4.739322e+01 moveto -8.917884e+01 4.365648e+01 lineto -8.650188e+01 4.397625e+01 lineto -8.692824e+01 4.771933e+01 lineto -8.965829e+01 4.739322e+01 lineto -closepath -gsave -5.327572e-01 5.327572e-01 5.327572e-01 setrgbcolor -fill -grestore -newpath -8.965829e+01 4.739322e+01 moveto -8.917884e+01 4.365648e+01 lineto -8.650188e+01 4.397625e+01 lineto -8.692824e+01 4.771933e+01 lineto -8.965829e+01 4.739322e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.995107e+01 5.111941e+01 moveto -8.965829e+01 4.739322e+01 lineto -8.692824e+01 4.771933e+01 lineto -8.71886e+01 5.144939e+01 lineto -8.995107e+01 5.111941e+01 lineto -closepath -gsave -5.276024e-01 5.276024e-01 5.276024e-01 setrgbcolor -fill -grestore -newpath -8.995107e+01 5.111941e+01 moveto -8.965829e+01 4.739322e+01 lineto -8.692824e+01 4.771933e+01 lineto -8.71886e+01 5.144939e+01 lineto -8.995107e+01 5.111941e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.005495e+01 5.480684e+01 moveto -8.995107e+01 5.111941e+01 lineto -8.71886e+01 5.144939e+01 lineto -8.728098e+01 5.51382e+01 lineto -9.005495e+01 5.480684e+01 lineto -closepath -gsave -5.218288e-01 5.218288e-01 5.218288e-01 setrgbcolor -fill -grestore -newpath -9.005495e+01 5.480684e+01 moveto -8.995107e+01 5.111941e+01 lineto -8.71886e+01 5.144939e+01 lineto -8.728098e+01 5.51382e+01 lineto -9.005495e+01 5.480684e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.996916e+01 5.84276e+01 moveto -9.005495e+01 5.480684e+01 lineto -8.728098e+01 5.51382e+01 lineto -8.720469e+01 5.875783e+01 lineto -8.996916e+01 5.84276e+01 lineto -closepath -gsave -5.155458e-01 5.155458e-01 5.155458e-01 setrgbcolor -fill -grestore -newpath -8.996916e+01 5.84276e+01 moveto -9.005495e+01 5.480684e+01 lineto -8.728098e+01 5.51382e+01 lineto -8.720469e+01 5.875783e+01 lineto -8.996916e+01 5.84276e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.969433e+01 6.195428e+01 moveto -8.996916e+01 5.84276e+01 lineto -8.720469e+01 5.875783e+01 lineto -8.696029e+01 6.228087e+01 lineto -8.969433e+01 6.195428e+01 lineto -closepath -gsave -5.088678e-01 5.088678e-01 5.088678e-01 setrgbcolor -fill -grestore -newpath -8.969433e+01 6.195428e+01 moveto -8.996916e+01 5.84276e+01 lineto -8.720469e+01 5.875783e+01 lineto -8.696029e+01 6.228087e+01 lineto -8.969433e+01 6.195428e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.923257e+01 6.536018e+01 moveto -8.969433e+01 6.195428e+01 lineto -8.696029e+01 6.228087e+01 lineto -8.654965e+01 6.568066e+01 lineto -8.923257e+01 6.536018e+01 lineto -closepath -gsave -5.019114e-01 5.019114e-01 5.019114e-01 setrgbcolor -fill -grestore -newpath -8.923257e+01 6.536018e+01 moveto -8.969433e+01 6.195428e+01 lineto -8.696029e+01 6.228087e+01 lineto -8.654965e+01 6.568066e+01 lineto -8.923257e+01 6.536018e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.858735e+01 6.861952e+01 moveto -8.923257e+01 6.536018e+01 lineto -8.654965e+01 6.568066e+01 lineto -8.597587e+01 6.893147e+01 lineto -8.858735e+01 6.861952e+01 lineto -closepath -gsave -4.947913e-01 4.947913e-01 4.947913e-01 setrgbcolor -fill -grestore -newpath -8.858735e+01 6.861952e+01 moveto -8.923257e+01 6.536018e+01 lineto -8.654965e+01 6.568066e+01 lineto -8.597587e+01 6.893147e+01 lineto -8.858735e+01 6.861952e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.776356e+01 7.170761e+01 moveto -8.858735e+01 6.861952e+01 lineto -8.597587e+01 6.893147e+01 lineto -8.524329e+01 7.200867e+01 lineto -8.776356e+01 7.170761e+01 lineto -closepath -gsave -4.876179e-01 4.876179e-01 4.876179e-01 setrgbcolor -fill -grestore -newpath -8.776356e+01 7.170761e+01 moveto -8.858735e+01 6.861952e+01 lineto -8.597587e+01 6.893147e+01 lineto -8.524329e+01 7.200867e+01 lineto -8.776356e+01 7.170761e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.676745e+01 7.460109e+01 moveto -8.776356e+01 7.170761e+01 lineto -8.524329e+01 7.200867e+01 lineto -8.435746e+01 7.488897e+01 lineto -8.676745e+01 7.460109e+01 lineto -closepath -gsave -4.804945e-01 4.804945e-01 4.804945e-01 setrgbcolor -fill -grestore -newpath -8.676745e+01 7.460109e+01 moveto -8.776356e+01 7.170761e+01 lineto -8.524329e+01 7.200867e+01 lineto -8.435746e+01 7.488897e+01 lineto -8.676745e+01 7.460109e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.560654e+01 7.727804e+01 moveto -8.676745e+01 7.460109e+01 lineto -8.435746e+01 7.488897e+01 lineto -8.332508e+01 7.755057e+01 lineto -8.560654e+01 7.727804e+01 lineto -closepath -gsave -4.735146e-01 4.735146e-01 4.735146e-01 setrgbcolor -fill -grestore -newpath -8.560654e+01 7.727804e+01 moveto -8.676745e+01 7.460109e+01 lineto -8.435746e+01 7.488897e+01 lineto -8.332508e+01 7.755057e+01 lineto -8.560654e+01 7.727804e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.428964e+01 7.971821e+01 moveto -8.560654e+01 7.727804e+01 lineto -8.332508e+01 7.755057e+01 lineto -8.215398e+01 7.997332e+01 lineto -8.428964e+01 7.971821e+01 lineto -closepath -gsave -4.667608e-01 4.667608e-01 4.667608e-01 setrgbcolor -fill -grestore -newpath -8.428964e+01 7.971821e+01 moveto -8.560654e+01 7.727804e+01 lineto -8.332508e+01 7.755057e+01 lineto -8.215398e+01 7.997332e+01 lineto -8.428964e+01 7.971821e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.28267e+01 8.190311e+01 moveto -8.428964e+01 7.971821e+01 lineto -8.215398e+01 7.997332e+01 lineto -8.085301e+01 8.213887e+01 lineto -8.28267e+01 8.190311e+01 lineto -closepath -gsave -4.603028e-01 4.603028e-01 4.603028e-01 setrgbcolor -fill -grestore -newpath -8.28267e+01 8.190311e+01 moveto -8.428964e+01 7.971821e+01 lineto -8.215398e+01 7.997332e+01 lineto -8.085301e+01 8.213887e+01 lineto -8.28267e+01 8.190311e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.122881e+01 8.381621e+01 moveto -8.28267e+01 8.190311e+01 lineto -8.085301e+01 8.213887e+01 lineto -7.943203e+01 8.403084e+01 lineto -8.122881e+01 8.381621e+01 lineto -closepath -gsave -4.541974e-01 4.541974e-01 4.541974e-01 setrgbcolor -fill -grestore -newpath -8.122881e+01 8.381621e+01 moveto -8.28267e+01 8.190311e+01 lineto -8.085301e+01 8.213887e+01 lineto -7.943203e+01 8.403084e+01 lineto -8.122881e+01 8.381621e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.950806e+01 8.544303e+01 moveto -8.122881e+01 8.381621e+01 lineto -7.943203e+01 8.403084e+01 lineto -7.790179e+01 8.56349e+01 lineto -7.950806e+01 8.544303e+01 lineto -closepath -gsave -4.484875e-01 4.484875e-01 4.484875e-01 setrgbcolor -fill -grestore -newpath -7.950806e+01 8.544303e+01 moveto -8.122881e+01 8.381621e+01 lineto -7.943203e+01 8.403084e+01 lineto -7.790179e+01 8.56349e+01 lineto -7.950806e+01 8.544303e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.767747e+01 8.677124e+01 moveto -7.950806e+01 8.544303e+01 lineto -7.790179e+01 8.56349e+01 lineto -7.627388e+01 8.693891e+01 lineto -7.767747e+01 8.677124e+01 lineto -closepath -gsave -4.432033e-01 4.432033e-01 4.432033e-01 setrgbcolor -fill -grestore -newpath -7.767747e+01 8.677124e+01 moveto -7.950806e+01 8.544303e+01 lineto -7.790179e+01 8.56349e+01 lineto -7.627388e+01 8.693891e+01 lineto -7.767747e+01 8.677124e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.575091e+01 8.77908e+01 moveto -7.767747e+01 8.677124e+01 lineto -7.627388e+01 8.693891e+01 lineto -7.456062e+01 8.793299e+01 lineto -7.575091e+01 8.77908e+01 lineto -closepath -gsave -4.383624e-01 4.383624e-01 4.383624e-01 setrgbcolor -fill -grestore -newpath -7.575091e+01 8.77908e+01 moveto -7.767747e+01 8.677124e+01 lineto -7.627388e+01 8.693891e+01 lineto -7.456062e+01 8.793299e+01 lineto -7.575091e+01 8.77908e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.374297e+01 8.849399e+01 moveto -7.575091e+01 8.77908e+01 lineto -7.456062e+01 8.793299e+01 lineto -7.277499e+01 8.860961e+01 lineto -7.374297e+01 8.849399e+01 lineto -closepath -gsave -4.33971e-01 4.33971e-01 4.33971e-01 setrgbcolor -fill -grestore -newpath -7.374297e+01 8.849399e+01 moveto -7.575091e+01 8.77908e+01 lineto -7.456062e+01 8.793299e+01 lineto -7.277499e+01 8.860961e+01 lineto -7.374297e+01 8.849399e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.166883e+01 8.887547e+01 moveto -7.374297e+01 8.849399e+01 lineto -7.277499e+01 8.860961e+01 lineto -7.093049e+01 8.896367e+01 lineto -7.166883e+01 8.887547e+01 lineto -closepath -gsave -4.300256e-01 4.300256e-01 4.300256e-01 setrgbcolor -fill -grestore -newpath -7.166883e+01 8.887547e+01 moveto -7.374297e+01 8.849399e+01 lineto -7.277499e+01 8.860961e+01 lineto -7.093049e+01 8.896367e+01 lineto -7.166883e+01 8.887547e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.086571e+01 8.594229e+01 moveto -6.302945e+01 8.716353e+01 lineto -6.324762e+01 8.713747e+01 lineto -6.132344e+01 8.588761e+01 lineto -6.086571e+01 8.594229e+01 lineto -closepath -gsave -5.126043e-01 5.126043e-01 5.126043e-01 setrgbcolor -fill -grestore -newpath -6.086571e+01 8.594229e+01 moveto -6.302945e+01 8.716353e+01 lineto -6.324762e+01 8.713747e+01 lineto -6.132344e+01 8.588761e+01 lineto -6.086571e+01 8.594229e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.873328e+01 8.441867e+01 moveto -6.086571e+01 8.594229e+01 lineto -6.132344e+01 8.588761e+01 lineto -5.94271e+01 8.433579e+01 lineto -5.873328e+01 8.441867e+01 lineto -closepath -gsave -5.190875e-01 5.190875e-01 5.190875e-01 setrgbcolor -fill -grestore -newpath -5.873328e+01 8.441867e+01 moveto -6.086571e+01 8.594229e+01 lineto -6.132344e+01 8.588761e+01 lineto -5.94271e+01 8.433579e+01 lineto -5.873328e+01 8.441867e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.664828e+01 8.26042e+01 moveto -5.873328e+01 8.441867e+01 lineto -5.94271e+01 8.433579e+01 lineto -5.757294e+01 8.249374e+01 lineto -5.664828e+01 8.26042e+01 lineto -closepath -gsave -5.251101e-01 5.251101e-01 5.251101e-01 setrgbcolor -fill -grestore -newpath -5.664828e+01 8.26042e+01 moveto -5.873328e+01 8.441867e+01 lineto -5.94271e+01 8.433579e+01 lineto -5.757294e+01 8.249374e+01 lineto -5.664828e+01 8.26042e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.693681e+01 4.968494e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.668374e+01 4.992307e+00 lineto -6.693681e+01 4.968494e+00 lineto -closepath -gsave -5.071964e-01 5.071964e-01 5.071964e-01 setrgbcolor -fill -grestore -newpath -6.693681e+01 4.968494e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.668374e+01 4.992307e+00 lineto -6.693681e+01 4.968494e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.885896e+01 6.247616e+00 moveto -6.693681e+01 4.968494e+00 lineto -6.668374e+01 4.992307e+00 lineto -6.835473e+01 6.295061e+00 lineto -6.885896e+01 6.247616e+00 lineto -closepath -gsave -5.156086e-01 5.156086e-01 5.156086e-01 setrgbcolor -fill -grestore -newpath -6.885896e+01 6.247616e+00 moveto -6.693681e+01 4.968494e+00 lineto -6.668374e+01 4.992307e+00 lineto -6.835473e+01 6.295061e+00 lineto -6.885896e+01 6.247616e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.075189e+01 7.82768e+00 moveto -6.885896e+01 6.247616e+00 lineto -6.835473e+01 6.295061e+00 lineto -7.000033e+01 7.898398e+00 lineto -7.075189e+01 7.82768e+00 lineto -closepath -gsave -5.237774e-01 5.237774e-01 5.237774e-01 setrgbcolor -fill -grestore -newpath -7.075189e+01 7.82768e+00 moveto -6.885896e+01 6.247616e+00 lineto -6.835473e+01 6.295061e+00 lineto -7.000033e+01 7.898398e+00 lineto -7.075189e+01 7.82768e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.260128e+01 9.696725e+00 moveto -7.075189e+01 7.82768e+00 lineto -7.000033e+01 7.898398e+00 lineto -7.160807e+01 9.790182e+00 lineto -7.260128e+01 9.696725e+00 lineto -closepath -gsave -5.315557e-01 5.315557e-01 5.315557e-01 setrgbcolor -fill -grestore -newpath -7.260128e+01 9.696725e+00 moveto -7.075189e+01 7.82768e+00 lineto -7.000033e+01 7.898398e+00 lineto -7.160807e+01 9.790182e+00 lineto -7.260128e+01 9.696725e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.439313e+01 1.18406e+01 moveto -7.260128e+01 9.696725e+00 lineto -7.160807e+01 9.790182e+00 lineto -7.316578e+01 1.195609e+01 lineto -7.439313e+01 1.18406e+01 lineto -closepath -gsave -5.387964e-01 5.387964e-01 5.387964e-01 setrgbcolor -fill -grestore -newpath -7.439313e+01 1.18406e+01 moveto -7.260128e+01 9.696725e+00 lineto -7.160807e+01 9.790182e+00 lineto -7.316578e+01 1.195609e+01 lineto -7.439313e+01 1.18406e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.611386e+01 1.424308e+01 moveto -7.439313e+01 1.18406e+01 lineto -7.316578e+01 1.195609e+01 lineto -7.466168e+01 1.437972e+01 lineto -7.611386e+01 1.424308e+01 lineto -closepath -gsave -5.453564e-01 5.453564e-01 5.453564e-01 setrgbcolor -fill -grestore -newpath -7.611386e+01 1.424308e+01 moveto -7.439313e+01 1.18406e+01 lineto -7.316578e+01 1.195609e+01 lineto -7.466168e+01 1.437972e+01 lineto -7.611386e+01 1.424308e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.775046e+01 1.688597e+01 moveto -7.611386e+01 1.424308e+01 lineto -7.466168e+01 1.437972e+01 lineto -7.608443e+01 1.704274e+01 lineto -7.775046e+01 1.688597e+01 lineto -closepath -gsave -5.511021e-01 5.511021e-01 5.511021e-01 setrgbcolor -fill -grestore -newpath -7.775046e+01 1.688597e+01 moveto -7.611386e+01 1.424308e+01 lineto -7.466168e+01 1.437972e+01 lineto -7.608443e+01 1.704274e+01 lineto -7.775046e+01 1.688597e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.929053e+01 1.974927e+01 moveto -7.775046e+01 1.688597e+01 lineto -7.608443e+01 1.704274e+01 lineto -7.742327e+01 1.992497e+01 lineto -7.929053e+01 1.974927e+01 lineto -closepath -gsave -5.559129e-01 5.559129e-01 5.559129e-01 setrgbcolor -fill -grestore -newpath -7.929053e+01 1.974927e+01 moveto -7.775046e+01 1.688597e+01 lineto -7.608443e+01 1.704274e+01 lineto -7.742327e+01 1.992497e+01 lineto -7.929053e+01 1.974927e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.072242e+01 2.28113e+01 moveto -7.929053e+01 1.974927e+01 lineto -7.742327e+01 1.992497e+01 lineto -7.866806e+01 2.30046e+01 lineto -8.072242e+01 2.28113e+01 lineto -closepath -gsave -5.596859e-01 5.596859e-01 5.596859e-01 setrgbcolor -fill -grestore -newpath -8.072242e+01 2.28113e+01 moveto -7.929053e+01 1.974927e+01 lineto -7.742327e+01 1.992497e+01 lineto -7.866806e+01 2.30046e+01 lineto -8.072242e+01 2.28113e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.203528e+01 2.604888e+01 moveto -8.072242e+01 2.28113e+01 lineto -7.866806e+01 2.30046e+01 lineto -7.980937e+01 2.625832e+01 lineto -8.203528e+01 2.604888e+01 lineto -closepath -gsave -5.62339e-01 5.62339e-01 5.62339e-01 setrgbcolor -fill -grestore -newpath -8.203528e+01 2.604888e+01 moveto -8.072242e+01 2.28113e+01 lineto -7.866806e+01 2.30046e+01 lineto -7.980937e+01 2.625832e+01 lineto -8.203528e+01 2.604888e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.321918e+01 2.943749e+01 moveto -8.203528e+01 2.604888e+01 lineto -7.980937e+01 2.625832e+01 lineto -8.083857e+01 2.966149e+01 lineto -8.321918e+01 2.943749e+01 lineto -closepath -gsave -5.638139e-01 5.638139e-01 5.638139e-01 setrgbcolor -fill -grestore -newpath -8.321918e+01 2.943749e+01 moveto -8.203528e+01 2.604888e+01 lineto -7.980937e+01 2.625832e+01 lineto -8.083857e+01 2.966149e+01 lineto -8.321918e+01 2.943749e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.426514e+01 3.295149e+01 moveto -8.321918e+01 2.943749e+01 lineto -8.083857e+01 2.966149e+01 lineto -8.174787e+01 3.318835e+01 lineto -8.426514e+01 3.295149e+01 lineto -closepath -gsave -5.640783e-01 5.640783e-01 5.640783e-01 setrgbcolor -fill -grestore -newpath -8.426514e+01 3.295149e+01 moveto -8.321918e+01 2.943749e+01 lineto -8.083857e+01 2.966149e+01 lineto -8.174787e+01 3.318835e+01 lineto -8.426514e+01 3.295149e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.516527e+01 3.656428e+01 moveto -8.426514e+01 3.295149e+01 lineto -8.174787e+01 3.318835e+01 lineto -8.253038e+01 3.68122e+01 lineto -8.516527e+01 3.656428e+01 lineto -closepath -gsave -5.631267e-01 5.631267e-01 5.631267e-01 setrgbcolor -fill -grestore -newpath -8.516527e+01 3.656428e+01 moveto -8.426514e+01 3.295149e+01 lineto -8.174787e+01 3.318835e+01 lineto -8.253038e+01 3.68122e+01 lineto -8.516527e+01 3.656428e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.591273e+01 4.024849e+01 moveto -8.516527e+01 3.656428e+01 lineto -8.253038e+01 3.68122e+01 lineto -8.318018e+01 4.050561e+01 lineto -8.591273e+01 4.024849e+01 lineto -closepath -gsave -5.609808e-01 5.609808e-01 5.609808e-01 setrgbcolor -fill -grestore -newpath -8.591273e+01 4.024849e+01 moveto -8.516527e+01 3.656428e+01 lineto -8.253038e+01 3.68122e+01 lineto -8.318018e+01 4.050561e+01 lineto -8.591273e+01 4.024849e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.650188e+01 4.397625e+01 moveto -8.591273e+01 4.024849e+01 lineto -8.318018e+01 4.050561e+01 lineto -8.369234e+01 4.424061e+01 lineto -8.650188e+01 4.397625e+01 lineto -closepath -gsave -5.576885e-01 5.576885e-01 5.576885e-01 setrgbcolor -fill -grestore -newpath -8.650188e+01 4.397625e+01 moveto -8.591273e+01 4.024849e+01 lineto -8.318018e+01 4.050561e+01 lineto -8.369234e+01 4.424061e+01 lineto -8.650188e+01 4.397625e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.692824e+01 4.771933e+01 moveto -8.650188e+01 4.397625e+01 lineto -8.369234e+01 4.424061e+01 lineto -8.4063e+01 4.798893e+01 lineto -8.692824e+01 4.771933e+01 lineto -closepath -gsave -5.533223e-01 5.533223e-01 5.533223e-01 setrgbcolor -fill -grestore -newpath -8.692824e+01 4.771933e+01 moveto -8.650188e+01 4.397625e+01 lineto -8.369234e+01 4.424061e+01 lineto -8.4063e+01 4.798893e+01 lineto -8.692824e+01 4.771933e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.71886e+01 5.144939e+01 moveto -8.692824e+01 4.771933e+01 lineto -8.4063e+01 4.798893e+01 lineto -8.428934e+01 5.17222e+01 lineto -8.71886e+01 5.144939e+01 lineto -closepath -gsave -5.479767e-01 5.479767e-01 5.479767e-01 setrgbcolor -fill -grestore -newpath -8.71886e+01 5.144939e+01 moveto -8.692824e+01 4.771933e+01 lineto -8.4063e+01 4.798893e+01 lineto -8.428934e+01 5.17222e+01 lineto -8.71886e+01 5.144939e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.728098e+01 5.51382e+01 moveto -8.71886e+01 5.144939e+01 lineto -8.428934e+01 5.17222e+01 lineto -8.436965e+01 5.541214e+01 lineto -8.728098e+01 5.51382e+01 lineto -closepath -gsave -5.41765e-01 5.41765e-01 5.41765e-01 setrgbcolor -fill -grestore -newpath -8.728098e+01 5.51382e+01 moveto -8.71886e+01 5.144939e+01 lineto -8.428934e+01 5.17222e+01 lineto -8.436965e+01 5.541214e+01 lineto -8.728098e+01 5.51382e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.720469e+01 5.875783e+01 moveto -8.728098e+01 5.51382e+01 lineto -8.436965e+01 5.541214e+01 lineto -8.430332e+01 5.903083e+01 lineto -8.720469e+01 5.875783e+01 lineto -closepath -gsave -5.348153e-01 5.348153e-01 5.348153e-01 setrgbcolor -fill -grestore -newpath -8.720469e+01 5.875783e+01 moveto -8.728098e+01 5.51382e+01 lineto -8.436965e+01 5.541214e+01 lineto -8.430332e+01 5.903083e+01 lineto -8.720469e+01 5.875783e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.696029e+01 6.228087e+01 moveto -8.720469e+01 5.875783e+01 lineto -8.430332e+01 5.903083e+01 lineto -8.409086e+01 6.255087e+01 lineto -8.696029e+01 6.228087e+01 lineto -closepath -gsave -5.272663e-01 5.272663e-01 5.272663e-01 setrgbcolor -fill -grestore -newpath -8.696029e+01 6.228087e+01 moveto -8.720469e+01 5.875783e+01 lineto -8.430332e+01 5.903083e+01 lineto -8.409086e+01 6.255087e+01 lineto -8.696029e+01 6.228087e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.654965e+01 6.568066e+01 moveto -8.696029e+01 6.228087e+01 lineto -8.409086e+01 6.255087e+01 lineto -8.373387e+01 6.594561e+01 lineto -8.654965e+01 6.568066e+01 lineto -closepath -gsave -5.192633e-01 5.192633e-01 5.192633e-01 setrgbcolor -fill -grestore -newpath -8.654965e+01 6.568066e+01 moveto -8.696029e+01 6.228087e+01 lineto -8.409086e+01 6.255087e+01 lineto -8.373387e+01 6.594561e+01 lineto -8.654965e+01 6.568066e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.597587e+01 6.893147e+01 moveto -8.654965e+01 6.568066e+01 lineto -8.373387e+01 6.594561e+01 lineto -8.323506e+01 6.918936e+01 lineto -8.597587e+01 6.893147e+01 lineto -closepath -gsave -5.109528e-01 5.109528e-01 5.109528e-01 setrgbcolor -fill -grestore -newpath -8.597587e+01 6.893147e+01 moveto -8.654965e+01 6.568066e+01 lineto -8.373387e+01 6.594561e+01 lineto -8.323506e+01 6.918936e+01 lineto -8.597587e+01 6.893147e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.524329e+01 7.200867e+01 moveto -8.597587e+01 6.893147e+01 lineto -8.323506e+01 6.918936e+01 lineto -8.259821e+01 7.225755e+01 lineto -8.524329e+01 7.200867e+01 lineto -closepath -gsave -5.024791e-01 5.024791e-01 5.024791e-01 setrgbcolor -fill -grestore -newpath -8.524329e+01 7.200867e+01 moveto -8.597587e+01 6.893147e+01 lineto -8.323506e+01 6.918936e+01 lineto -8.259821e+01 7.225755e+01 lineto -8.524329e+01 7.200867e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.435746e+01 7.488897e+01 moveto -8.524329e+01 7.200867e+01 lineto -8.259821e+01 7.225755e+01 lineto -8.182812e+01 7.512697e+01 lineto -8.435746e+01 7.488897e+01 lineto -closepath -gsave -4.939798e-01 4.939798e-01 4.939798e-01 setrgbcolor -fill -grestore -newpath -8.435746e+01 7.488897e+01 moveto -8.524329e+01 7.200867e+01 lineto -8.259821e+01 7.225755e+01 lineto -8.182812e+01 7.512697e+01 lineto -8.435746e+01 7.488897e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.332508e+01 7.755057e+01 moveto -8.435746e+01 7.488897e+01 lineto -8.182812e+01 7.512697e+01 lineto -8.093064e+01 7.777587e+01 lineto -8.332508e+01 7.755057e+01 lineto -closepath -gsave -4.855825e-01 4.855825e-01 4.855825e-01 setrgbcolor -fill -grestore -newpath -8.332508e+01 7.755057e+01 moveto -8.435746e+01 7.488897e+01 lineto -8.182812e+01 7.512697e+01 lineto -8.093064e+01 7.777587e+01 lineto -8.332508e+01 7.755057e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.215398e+01 7.997332e+01 moveto -8.332508e+01 7.755057e+01 lineto -8.093064e+01 7.777587e+01 lineto -7.991256e+01 8.018422e+01 lineto -8.215398e+01 7.997332e+01 lineto -closepath -gsave -4.774016e-01 4.774016e-01 4.774016e-01 setrgbcolor -fill -grestore -newpath -8.215398e+01 7.997332e+01 moveto -8.332508e+01 7.755057e+01 lineto -8.093064e+01 7.777587e+01 lineto -7.991256e+01 8.018422e+01 lineto -8.215398e+01 7.997332e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.085301e+01 8.213887e+01 moveto -8.215398e+01 7.997332e+01 lineto -7.991256e+01 8.018422e+01 lineto -7.878158e+01 8.233378e+01 lineto -8.085301e+01 8.213887e+01 lineto -closepath -gsave -4.695364e-01 4.695364e-01 4.695364e-01 setrgbcolor -fill -grestore -newpath -8.085301e+01 8.213887e+01 moveto -8.215398e+01 7.997332e+01 lineto -7.991256e+01 8.018422e+01 lineto -7.878158e+01 8.233378e+01 lineto -8.085301e+01 8.213887e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.943203e+01 8.403084e+01 moveto -8.085301e+01 8.213887e+01 lineto -7.878158e+01 8.233378e+01 lineto -7.754627e+01 8.420828e+01 lineto -7.943203e+01 8.403084e+01 lineto -closepath -gsave -4.620695e-01 4.620695e-01 4.620695e-01 setrgbcolor -fill -grestore -newpath -7.943203e+01 8.403084e+01 moveto -8.085301e+01 8.213887e+01 lineto -7.878158e+01 8.233378e+01 lineto -7.754627e+01 8.420828e+01 lineto -7.943203e+01 8.403084e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.790179e+01 8.56349e+01 moveto -7.943203e+01 8.403084e+01 lineto -7.754627e+01 8.420828e+01 lineto -7.621598e+01 8.579353e+01 lineto -7.790179e+01 8.56349e+01 lineto -closepath -gsave -4.550657e-01 4.550657e-01 4.550657e-01 setrgbcolor -fill -grestore -newpath -7.790179e+01 8.56349e+01 moveto -7.943203e+01 8.403084e+01 lineto -7.754627e+01 8.420828e+01 lineto -7.621598e+01 8.579353e+01 lineto -7.790179e+01 8.56349e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.627388e+01 8.693891e+01 moveto -7.790179e+01 8.56349e+01 lineto -7.621598e+01 8.579353e+01 lineto -7.480078e+01 8.707752e+01 lineto -7.627388e+01 8.693891e+01 lineto -closepath -gsave -4.485725e-01 4.485725e-01 4.485725e-01 setrgbcolor -fill -grestore -newpath -7.627388e+01 8.693891e+01 moveto -7.790179e+01 8.56349e+01 lineto -7.621598e+01 8.579353e+01 lineto -7.480078e+01 8.707752e+01 lineto -7.627388e+01 8.693891e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.456062e+01 8.793299e+01 moveto -7.627388e+01 8.693891e+01 lineto -7.480078e+01 8.707752e+01 lineto -7.331139e+01 8.805053e+01 lineto -7.456062e+01 8.793299e+01 lineto -closepath -gsave -4.4262e-01 4.4262e-01 4.4262e-01 setrgbcolor -fill -grestore -newpath -7.456062e+01 8.793299e+01 moveto -7.627388e+01 8.693891e+01 lineto -7.480078e+01 8.707752e+01 lineto -7.331139e+01 8.805053e+01 lineto -7.456062e+01 8.793299e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.277499e+01 8.860961e+01 moveto -7.456062e+01 8.793299e+01 lineto -7.331139e+01 8.805053e+01 lineto -7.175907e+01 8.870521e+01 lineto -7.277499e+01 8.860961e+01 lineto -closepath -gsave -4.372226e-01 4.372226e-01 4.372226e-01 setrgbcolor -fill -grestore -newpath -7.277499e+01 8.860961e+01 moveto -7.456062e+01 8.793299e+01 lineto -7.331139e+01 8.805053e+01 lineto -7.175907e+01 8.870521e+01 lineto -7.277499e+01 8.860961e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.093049e+01 8.896367e+01 moveto -7.277499e+01 8.860961e+01 lineto -7.175907e+01 8.870521e+01 lineto -7.015558e+01 8.903658e+01 lineto -7.093049e+01 8.896367e+01 lineto -closepath -gsave -4.323805e-01 4.323805e-01 4.323805e-01 setrgbcolor -fill -grestore -newpath -7.093049e+01 8.896367e+01 moveto -7.277499e+01 8.860961e+01 lineto -7.175907e+01 8.870521e+01 lineto -7.015558e+01 8.903658e+01 lineto -7.093049e+01 8.896367e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.132344e+01 8.588761e+01 moveto -6.324762e+01 8.713747e+01 lineto -6.34766e+01 8.711593e+01 lineto -6.180384e+01 8.584241e+01 lineto -6.132344e+01 8.588761e+01 lineto -closepath -gsave -5.14814e-01 5.14814e-01 5.14814e-01 setrgbcolor -fill -grestore -newpath -6.132344e+01 8.588761e+01 moveto -6.324762e+01 8.713747e+01 lineto -6.34766e+01 8.711593e+01 lineto -6.180384e+01 8.584241e+01 lineto -6.132344e+01 8.588761e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.94271e+01 8.433579e+01 moveto -6.132344e+01 8.588761e+01 lineto -6.180384e+01 8.584241e+01 lineto -6.015528e+01 8.426727e+01 lineto -5.94271e+01 8.433579e+01 lineto -closepath -gsave -5.230124e-01 5.230124e-01 5.230124e-01 setrgbcolor -fill -grestore -newpath -5.94271e+01 8.433579e+01 moveto -6.132344e+01 8.588761e+01 lineto -6.180384e+01 8.584241e+01 lineto -6.015528e+01 8.426727e+01 lineto -5.94271e+01 8.433579e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.757294e+01 8.249374e+01 moveto -5.94271e+01 8.433579e+01 lineto -6.015528e+01 8.426727e+01 lineto -5.85434e+01 8.240243e+01 lineto -5.757294e+01 8.249374e+01 lineto -closepath -gsave -5.308343e-01 5.308343e-01 5.308343e-01 setrgbcolor -fill -grestore -newpath -5.757294e+01 8.249374e+01 moveto -5.94271e+01 8.433579e+01 lineto -6.015528e+01 8.426727e+01 lineto -5.85434e+01 8.240243e+01 lineto -5.757294e+01 8.249374e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.668374e+01 4.992307e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.642028e+01 5.010982e+00 lineto -6.668374e+01 4.992307e+00 lineto -closepath -gsave -5.079291e-01 5.079291e-01 5.079291e-01 setrgbcolor -fill -grestore -newpath -6.668374e+01 4.992307e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.642028e+01 5.010982e+00 lineto -6.668374e+01 4.992307e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.835473e+01 6.295061e+00 moveto -6.668374e+01 4.992307e+00 lineto -6.642028e+01 5.010982e+00 lineto -6.782982e+01 6.33227e+00 lineto -6.835473e+01 6.295061e+00 lineto -closepath -gsave -5.179243e-01 5.179243e-01 5.179243e-01 setrgbcolor -fill -grestore -newpath -6.835473e+01 6.295061e+00 moveto -6.668374e+01 4.992307e+00 lineto -6.642028e+01 5.010982e+00 lineto -6.782982e+01 6.33227e+00 lineto -6.835473e+01 6.295061e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.000033e+01 7.898398e+00 moveto -6.835473e+01 6.295061e+00 lineto -6.782982e+01 6.33227e+00 lineto -6.921793e+01 7.953859e+00 lineto -7.000033e+01 7.898398e+00 lineto -closepath -gsave -5.278127e-01 5.278127e-01 5.278127e-01 setrgbcolor -fill -grestore -newpath -7.000033e+01 7.898398e+00 moveto -6.835473e+01 6.295061e+00 lineto -6.782982e+01 6.33227e+00 lineto -6.921793e+01 7.953859e+00 lineto -7.000033e+01 7.898398e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.160807e+01 9.790182e+00 moveto -7.000033e+01 7.898398e+00 lineto -6.921793e+01 7.953859e+00 lineto -7.057411e+01 9.863474e+00 lineto -7.160807e+01 9.790182e+00 lineto -closepath -gsave -5.374172e-01 5.374172e-01 5.374172e-01 setrgbcolor -fill -grestore -newpath -7.160807e+01 9.790182e+00 moveto -7.000033e+01 7.898398e+00 lineto -6.921793e+01 7.953859e+00 lineto -7.057411e+01 9.863474e+00 lineto -7.160807e+01 9.790182e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.316578e+01 1.195609e+01 moveto -7.160807e+01 9.790182e+00 lineto -7.057411e+01 9.863474e+00 lineto -7.188809e+01 1.204666e+01 lineto -7.316578e+01 1.195609e+01 lineto -closepath -gsave -5.465553e-01 5.465553e-01 5.465553e-01 setrgbcolor -fill -grestore -newpath -7.316578e+01 1.195609e+01 moveto -7.160807e+01 9.790182e+00 lineto -7.057411e+01 9.863474e+00 lineto -7.188809e+01 1.204666e+01 lineto -7.316578e+01 1.195609e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.466168e+01 1.437972e+01 moveto -7.316578e+01 1.195609e+01 lineto -7.188809e+01 1.204666e+01 lineto -7.314992e+01 1.448689e+01 lineto -7.466168e+01 1.437972e+01 lineto -closepath -gsave -5.550444e-01 5.550444e-01 5.550444e-01 setrgbcolor -fill -grestore -newpath -7.466168e+01 1.437972e+01 moveto -7.316578e+01 1.195609e+01 lineto -7.188809e+01 1.204666e+01 lineto -7.314992e+01 1.448689e+01 lineto -7.466168e+01 1.437972e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.608443e+01 1.704274e+01 moveto -7.466168e+01 1.437972e+01 lineto -7.314992e+01 1.448689e+01 lineto -7.435005e+01 1.716568e+01 lineto -7.608443e+01 1.704274e+01 lineto -closepath -gsave -5.627078e-01 5.627078e-01 5.627078e-01 setrgbcolor -fill -grestore -newpath -7.608443e+01 1.704274e+01 moveto -7.466168e+01 1.437972e+01 lineto -7.314992e+01 1.448689e+01 lineto -7.435005e+01 1.716568e+01 lineto -7.608443e+01 1.704274e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.742327e+01 1.992497e+01 moveto -7.608443e+01 1.704274e+01 lineto -7.435005e+01 1.716568e+01 lineto -7.547941e+01 2.006276e+01 lineto -7.742327e+01 1.992497e+01 lineto -closepath -gsave -5.693807e-01 5.693807e-01 5.693807e-01 setrgbcolor -fill -grestore -newpath -7.742327e+01 1.992497e+01 moveto -7.608443e+01 1.704274e+01 lineto -7.435005e+01 1.716568e+01 lineto -7.547941e+01 2.006276e+01 lineto -7.742327e+01 1.992497e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.866806e+01 2.30046e+01 moveto -7.742327e+01 1.992497e+01 lineto -7.547941e+01 2.006276e+01 lineto -7.652942e+01 2.31562e+01 lineto -7.866806e+01 2.30046e+01 lineto -closepath -gsave -5.749156e-01 5.749156e-01 5.749156e-01 setrgbcolor -fill -grestore -newpath -7.866806e+01 2.30046e+01 moveto -7.742327e+01 1.992497e+01 lineto -7.547941e+01 2.006276e+01 lineto -7.652942e+01 2.31562e+01 lineto -7.866806e+01 2.30046e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.980937e+01 2.625832e+01 moveto -7.866806e+01 2.30046e+01 lineto -7.652942e+01 2.31562e+01 lineto -7.749216e+01 2.642258e+01 lineto -7.980937e+01 2.625832e+01 lineto -closepath -gsave -5.791878e-01 5.791878e-01 5.791878e-01 setrgbcolor -fill -grestore -newpath -7.980937e+01 2.625832e+01 moveto -7.866806e+01 2.30046e+01 lineto -7.652942e+01 2.31562e+01 lineto -7.749216e+01 2.642258e+01 lineto -7.980937e+01 2.625832e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.083857e+01 2.966149e+01 moveto -7.980937e+01 2.625832e+01 lineto -7.749216e+01 2.642258e+01 lineto -7.836032e+01 2.983717e+01 lineto -8.083857e+01 2.966149e+01 lineto -closepath -gsave -5.820994e-01 5.820994e-01 5.820994e-01 setrgbcolor -fill -grestore -newpath -8.083857e+01 2.966149e+01 moveto -7.980937e+01 2.625832e+01 lineto -7.749216e+01 2.642258e+01 lineto -7.836032e+01 2.983717e+01 lineto -8.083857e+01 2.966149e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.174787e+01 3.318835e+01 moveto -8.083857e+01 2.966149e+01 lineto -7.836032e+01 2.983717e+01 lineto -7.912734e+01 3.337411e+01 lineto -8.174787e+01 3.318835e+01 lineto -closepath -gsave -5.835833e-01 5.835833e-01 5.835833e-01 setrgbcolor -fill -grestore -newpath -8.174787e+01 3.318835e+01 moveto -8.083857e+01 2.966149e+01 lineto -7.836032e+01 2.983717e+01 lineto -7.912734e+01 3.337411e+01 lineto -8.174787e+01 3.318835e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.253038e+01 3.68122e+01 moveto -8.174787e+01 3.318835e+01 lineto -7.912734e+01 3.337411e+01 lineto -7.978741e+01 3.700664e+01 lineto -8.253038e+01 3.68122e+01 lineto -closepath -gsave -5.836053e-01 5.836053e-01 5.836053e-01 setrgbcolor -fill -grestore -newpath -8.253038e+01 3.68122e+01 moveto -8.174787e+01 3.318835e+01 lineto -7.912734e+01 3.337411e+01 lineto -7.978741e+01 3.700664e+01 lineto -8.253038e+01 3.68122e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.318018e+01 4.050561e+01 moveto -8.253038e+01 3.68122e+01 lineto -7.978741e+01 3.700664e+01 lineto -8.033554e+01 4.070726e+01 lineto -8.318018e+01 4.050561e+01 lineto -closepath -gsave -5.821654e-01 5.821654e-01 5.821654e-01 setrgbcolor -fill -grestore -newpath -8.318018e+01 4.050561e+01 moveto -8.253038e+01 3.68122e+01 lineto -7.978741e+01 3.700664e+01 lineto -8.033554e+01 4.070726e+01 lineto -8.318018e+01 4.050561e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.369234e+01 4.424061e+01 moveto -8.318018e+01 4.050561e+01 lineto -8.033554e+01 4.070726e+01 lineto -8.076756e+01 4.444794e+01 lineto -8.369234e+01 4.424061e+01 lineto -closepath -gsave -5.792977e-01 5.792977e-01 5.792977e-01 setrgbcolor -fill -grestore -newpath -8.369234e+01 4.424061e+01 moveto -8.318018e+01 4.050561e+01 lineto -8.033554e+01 4.070726e+01 lineto -8.076756e+01 4.444794e+01 lineto -8.369234e+01 4.424061e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.4063e+01 4.798893e+01 moveto -8.369234e+01 4.424061e+01 lineto -8.076756e+01 4.444794e+01 lineto -8.108022e+01 4.820037e+01 lineto -8.4063e+01 4.798893e+01 lineto -closepath -gsave -5.750692e-01 5.750692e-01 5.750692e-01 setrgbcolor -fill -grestore -newpath -8.4063e+01 4.798893e+01 moveto -8.369234e+01 4.424061e+01 lineto -8.076756e+01 4.444794e+01 lineto -8.108022e+01 4.820037e+01 lineto -8.4063e+01 4.798893e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.428934e+01 5.17222e+01 moveto -8.4063e+01 4.798893e+01 lineto -8.108022e+01 4.820037e+01 lineto -8.127115e+01 5.193614e+01 lineto -8.428934e+01 5.17222e+01 lineto -closepath -gsave -5.695772e-01 5.695772e-01 5.695772e-01 setrgbcolor -fill -grestore -newpath -8.428934e+01 5.17222e+01 moveto -8.4063e+01 4.798893e+01 lineto -8.108022e+01 4.820037e+01 lineto -8.127115e+01 5.193614e+01 lineto -8.428934e+01 5.17222e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.436965e+01 5.541214e+01 moveto -8.428934e+01 5.17222e+01 lineto -8.127115e+01 5.193614e+01 lineto -8.133889e+01 5.562698e+01 lineto -8.436965e+01 5.541214e+01 lineto -closepath -gsave -5.629461e-01 5.629461e-01 5.629461e-01 setrgbcolor -fill -grestore -newpath -8.436965e+01 5.541214e+01 moveto -8.428934e+01 5.17222e+01 lineto -8.127115e+01 5.193614e+01 lineto -8.133889e+01 5.562698e+01 lineto -8.436965e+01 5.541214e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.430332e+01 5.903083e+01 moveto -8.436965e+01 5.541214e+01 lineto -8.133889e+01 5.562698e+01 lineto -8.128294e+01 5.924493e+01 lineto -8.430332e+01 5.903083e+01 lineto -closepath -gsave -5.553223e-01 5.553223e-01 5.553223e-01 setrgbcolor -fill -grestore -newpath -8.430332e+01 5.903083e+01 moveto -8.436965e+01 5.541214e+01 lineto -8.133889e+01 5.562698e+01 lineto -8.128294e+01 5.924493e+01 lineto -8.430332e+01 5.903083e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.409086e+01 6.255087e+01 moveto -8.430332e+01 5.903083e+01 lineto -8.128294e+01 5.924493e+01 lineto -8.110373e+01 6.276262e+01 lineto -8.409086e+01 6.255087e+01 lineto -closepath -gsave -5.468697e-01 5.468697e-01 5.468697e-01 setrgbcolor -fill -grestore -newpath -8.409086e+01 6.255087e+01 moveto -8.430332e+01 5.903083e+01 lineto -8.128294e+01 5.924493e+01 lineto -8.110373e+01 6.276262e+01 lineto -8.409086e+01 6.255087e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.373387e+01 6.594561e+01 moveto -8.409086e+01 6.255087e+01 lineto -8.110373e+01 6.276262e+01 lineto -8.08026e+01 6.61534e+01 lineto -8.373387e+01 6.594561e+01 lineto -closepath -gsave -5.377639e-01 5.377639e-01 5.377639e-01 setrgbcolor -fill -grestore -newpath -8.373387e+01 6.594561e+01 moveto -8.409086e+01 6.255087e+01 lineto -8.110373e+01 6.276262e+01 lineto -8.08026e+01 6.61534e+01 lineto -8.373387e+01 6.594561e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.323506e+01 6.918936e+01 moveto -8.373387e+01 6.594561e+01 lineto -8.08026e+01 6.61534e+01 lineto -8.038183e+01 6.939161e+01 lineto -8.323506e+01 6.918936e+01 lineto -closepath -gsave -5.281864e-01 5.281864e-01 5.281864e-01 setrgbcolor -fill -grestore -newpath -8.323506e+01 6.918936e+01 moveto -8.373387e+01 6.594561e+01 lineto -8.08026e+01 6.61534e+01 lineto -8.038183e+01 6.939161e+01 lineto -8.323506e+01 6.918936e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.259821e+01 7.225755e+01 moveto -8.323506e+01 6.918936e+01 lineto -8.038183e+01 6.939161e+01 lineto -7.984463e+01 7.245274e+01 lineto -8.259821e+01 7.225755e+01 lineto -closepath -gsave -5.183187e-01 5.183187e-01 5.183187e-01 setrgbcolor -fill -grestore -newpath -8.259821e+01 7.225755e+01 moveto -8.323506e+01 6.918936e+01 lineto -8.038183e+01 6.939161e+01 lineto -7.984463e+01 7.245274e+01 lineto -8.259821e+01 7.225755e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.182812e+01 7.512697e+01 moveto -8.259821e+01 7.225755e+01 lineto -7.984463e+01 7.245274e+01 lineto -7.919504e+01 7.531361e+01 lineto -8.182812e+01 7.512697e+01 lineto -closepath -gsave -5.08337e-01 5.08337e-01 5.08337e-01 setrgbcolor -fill -grestore -newpath -8.182812e+01 7.512697e+01 moveto -8.259821e+01 7.225755e+01 lineto -7.984463e+01 7.245274e+01 lineto -7.919504e+01 7.531361e+01 lineto -8.182812e+01 7.512697e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.093064e+01 7.777587e+01 moveto -8.182812e+01 7.512697e+01 lineto -7.919504e+01 7.531361e+01 lineto -7.843798e+01 7.795257e+01 lineto -8.093064e+01 7.777587e+01 lineto -closepath -gsave -4.984074e-01 4.984074e-01 4.984074e-01 setrgbcolor -fill -grestore -newpath -8.093064e+01 7.777587e+01 moveto -8.182812e+01 7.512697e+01 lineto -7.919504e+01 7.531361e+01 lineto -7.843798e+01 7.795257e+01 lineto -8.093064e+01 7.777587e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.991256e+01 8.018422e+01 moveto -8.093064e+01 7.777587e+01 lineto -7.843798e+01 7.795257e+01 lineto -7.75792e+01 8.034962e+01 lineto -7.991256e+01 8.018422e+01 lineto -closepath -gsave -4.88681e-01 4.88681e-01 4.88681e-01 setrgbcolor -fill -grestore -newpath -7.991256e+01 8.018422e+01 moveto -8.093064e+01 7.777587e+01 lineto -7.843798e+01 7.795257e+01 lineto -7.75792e+01 8.034962e+01 lineto -7.991256e+01 8.018422e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.878158e+01 8.233378e+01 moveto -7.991256e+01 8.018422e+01 lineto -7.75792e+01 8.034962e+01 lineto -7.662519e+01 8.248664e+01 lineto -7.878158e+01 8.233378e+01 lineto -closepath -gsave -4.792911e-01 4.792911e-01 4.792911e-01 setrgbcolor -fill -grestore -newpath -7.878158e+01 8.233378e+01 moveto -7.991256e+01 8.018422e+01 lineto -7.75792e+01 8.034962e+01 lineto -7.662519e+01 8.248664e+01 lineto -7.878158e+01 8.233378e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.754627e+01 8.420828e+01 moveto -7.878158e+01 8.233378e+01 lineto -7.662519e+01 8.248664e+01 lineto -7.558317e+01 8.434744e+01 lineto -7.754627e+01 8.420828e+01 lineto -closepath -gsave -4.703504e-01 4.703504e-01 4.703504e-01 setrgbcolor -fill -grestore -newpath -7.754627e+01 8.420828e+01 moveto -7.878158e+01 8.233378e+01 lineto -7.662519e+01 8.248664e+01 lineto -7.558317e+01 8.434744e+01 lineto -7.754627e+01 8.420828e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.621598e+01 8.579353e+01 moveto -7.754627e+01 8.420828e+01 lineto -7.558317e+01 8.434744e+01 lineto -7.446103e+01 8.591793e+01 lineto -7.621598e+01 8.579353e+01 lineto -closepath -gsave -4.619492e-01 4.619492e-01 4.619492e-01 setrgbcolor -fill -grestore -newpath -7.621598e+01 8.579353e+01 moveto -7.754627e+01 8.420828e+01 lineto -7.558317e+01 8.434744e+01 lineto -7.446103e+01 8.591793e+01 lineto -7.621598e+01 8.579353e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.480078e+01 8.707752e+01 moveto -7.621598e+01 8.579353e+01 lineto -7.446103e+01 8.591793e+01 lineto -7.326726e+01 8.718622e+01 lineto -7.480078e+01 8.707752e+01 lineto -closepath -gsave -4.541553e-01 4.541553e-01 4.541553e-01 setrgbcolor -fill -grestore -newpath -7.480078e+01 8.707752e+01 moveto -7.621598e+01 8.579353e+01 lineto -7.446103e+01 8.591793e+01 lineto -7.326726e+01 8.718622e+01 lineto -7.480078e+01 8.707752e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.331139e+01 8.805053e+01 moveto -7.480078e+01 8.707752e+01 lineto -7.326726e+01 8.718622e+01 lineto -7.201091e+01 8.814272e+01 lineto -7.331139e+01 8.805053e+01 lineto -closepath -gsave -4.470138e-01 4.470138e-01 4.470138e-01 setrgbcolor -fill -grestore -newpath -7.331139e+01 8.805053e+01 moveto -7.480078e+01 8.707752e+01 lineto -7.326726e+01 8.718622e+01 lineto -7.201091e+01 8.814272e+01 lineto -7.331139e+01 8.805053e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.175907e+01 8.870521e+01 moveto -7.331139e+01 8.805053e+01 lineto -7.201091e+01 8.814272e+01 lineto -7.070148e+01 8.878017e+01 lineto -7.175907e+01 8.870521e+01 lineto -closepath -gsave -4.40549e-01 4.40549e-01 4.40549e-01 setrgbcolor -fill -grestore -newpath -7.175907e+01 8.870521e+01 moveto -7.331139e+01 8.805053e+01 lineto -7.201091e+01 8.814272e+01 lineto -7.070148e+01 8.878017e+01 lineto -7.175907e+01 8.870521e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.015558e+01 8.903658e+01 moveto -7.175907e+01 8.870521e+01 lineto -7.070148e+01 8.878017e+01 lineto -6.934889e+01 8.909377e+01 lineto -7.015558e+01 8.903658e+01 lineto -closepath -gsave -4.347653e-01 4.347653e-01 4.347653e-01 setrgbcolor -fill -grestore -newpath -7.015558e+01 8.903658e+01 moveto -7.175907e+01 8.870521e+01 lineto -7.070148e+01 8.878017e+01 lineto -6.934889e+01 8.909377e+01 lineto -7.015558e+01 8.903658e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.180384e+01 8.584241e+01 moveto -6.34766e+01 8.711593e+01 lineto -6.371496e+01 8.709903e+01 lineto -6.230394e+01 8.580696e+01 lineto -6.180384e+01 8.584241e+01 lineto -closepath -gsave -5.169723e-01 5.169723e-01 5.169723e-01 setrgbcolor -fill -grestore -newpath -6.180384e+01 8.584241e+01 moveto -6.34766e+01 8.711593e+01 lineto -6.371496e+01 8.709903e+01 lineto -6.230394e+01 8.580696e+01 lineto -6.180384e+01 8.584241e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.015528e+01 8.426727e+01 moveto -6.180384e+01 8.584241e+01 lineto -6.230394e+01 8.580696e+01 lineto -6.091333e+01 8.421354e+01 lineto -6.015528e+01 8.426727e+01 lineto -closepath -gsave -5.268784e-01 5.268784e-01 5.268784e-01 setrgbcolor -fill -grestore -newpath -6.015528e+01 8.426727e+01 moveto -6.180384e+01 8.584241e+01 lineto -6.230394e+01 8.580696e+01 lineto -6.091333e+01 8.421354e+01 lineto -6.015528e+01 8.426727e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.85434e+01 8.240243e+01 moveto -6.015528e+01 8.426727e+01 lineto -6.091333e+01 8.421354e+01 lineto -5.955366e+01 8.233082e+01 lineto -5.85434e+01 8.240243e+01 lineto -closepath -gsave -5.365178e-01 5.365178e-01 5.365178e-01 setrgbcolor -fill -grestore -newpath -5.85434e+01 8.240243e+01 moveto -6.015528e+01 8.426727e+01 lineto -6.091333e+01 8.421354e+01 lineto -5.955366e+01 8.233082e+01 lineto -5.85434e+01 8.240243e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.642028e+01 5.010982e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.614807e+01 5.024405e+00 lineto -6.642028e+01 5.010982e+00 lineto -closepath -gsave -5.086333e-01 5.086333e-01 5.086333e-01 setrgbcolor -fill -grestore -newpath -6.642028e+01 5.010982e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.614807e+01 5.024405e+00 lineto -6.642028e+01 5.010982e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.782982e+01 6.33227e+00 moveto -6.642028e+01 5.010982e+00 lineto -6.614807e+01 5.024405e+00 lineto -6.728746e+01 6.359012e+00 lineto -6.782982e+01 6.33227e+00 lineto -closepath -gsave -5.20169e-01 5.20169e-01 5.20169e-01 setrgbcolor -fill -grestore -newpath -6.782982e+01 6.33227e+00 moveto -6.642028e+01 5.010982e+00 lineto -6.614807e+01 5.024405e+00 lineto -6.728746e+01 6.359012e+00 lineto -6.782982e+01 6.33227e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.921793e+01 7.953859e+00 moveto -6.782982e+01 6.33227e+00 lineto -6.728746e+01 6.359012e+00 lineto -6.840952e+01 7.99372e+00 lineto -6.921793e+01 7.953859e+00 lineto -closepath -gsave -5.317554e-01 5.317554e-01 5.317554e-01 setrgbcolor -fill -grestore -newpath -6.921793e+01 7.953859e+00 moveto -6.782982e+01 6.33227e+00 lineto -6.728746e+01 6.359012e+00 lineto -6.840952e+01 7.99372e+00 lineto -6.921793e+01 7.953859e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.057411e+01 9.863474e+00 moveto -6.921793e+01 7.953859e+00 lineto -6.840952e+01 7.99372e+00 lineto -6.950578e+01 9.916152e+00 lineto -7.057411e+01 9.863474e+00 lineto -closepath -gsave -5.431869e-01 5.431869e-01 5.431869e-01 setrgbcolor -fill -grestore -newpath -7.057411e+01 9.863474e+00 moveto -6.921793e+01 7.953859e+00 lineto -6.840952e+01 7.99372e+00 lineto -6.950578e+01 9.916152e+00 lineto -7.057411e+01 9.863474e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.188809e+01 1.204666e+01 moveto -7.057411e+01 9.863474e+00 lineto -6.950578e+01 9.916152e+00 lineto -7.056792e+01 1.211175e+01 lineto -7.188809e+01 1.204666e+01 lineto -closepath -gsave -5.542459e-01 5.542459e-01 5.542459e-01 setrgbcolor -fill -grestore -newpath -7.188809e+01 1.204666e+01 moveto -7.057411e+01 9.863474e+00 lineto -6.950578e+01 9.916152e+00 lineto -7.056792e+01 1.211175e+01 lineto -7.188809e+01 1.204666e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.314992e+01 1.448689e+01 moveto -7.188809e+01 1.204666e+01 lineto -7.056792e+01 1.211175e+01 lineto -7.158792e+01 1.456391e+01 lineto -7.314992e+01 1.448689e+01 lineto -closepath -gsave -5.647094e-01 5.647094e-01 5.647094e-01 setrgbcolor -fill -grestore -newpath -7.314992e+01 1.448689e+01 moveto -7.188809e+01 1.204666e+01 lineto -7.056792e+01 1.211175e+01 lineto -7.158792e+01 1.456391e+01 lineto -7.314992e+01 1.448689e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.435005e+01 1.716568e+01 moveto -7.314992e+01 1.448689e+01 lineto -7.158792e+01 1.456391e+01 lineto -7.255804e+01 1.725404e+01 lineto -7.435005e+01 1.716568e+01 lineto -closepath -gsave -5.743562e-01 5.743562e-01 5.743562e-01 setrgbcolor -fill -grestore -newpath -7.435005e+01 1.716568e+01 moveto -7.314992e+01 1.448689e+01 lineto -7.158792e+01 1.456391e+01 lineto -7.255804e+01 1.725404e+01 lineto -7.435005e+01 1.716568e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.547941e+01 2.006276e+01 moveto -7.435005e+01 1.716568e+01 lineto -7.255804e+01 1.725404e+01 lineto -7.347094e+01 2.01618e+01 lineto -7.547941e+01 2.006276e+01 lineto -closepath -gsave -5.829743e-01 5.829743e-01 5.829743e-01 setrgbcolor -fill -grestore -newpath -7.547941e+01 2.006276e+01 moveto -7.435005e+01 1.716568e+01 lineto -7.255804e+01 1.725404e+01 lineto -7.347094e+01 2.01618e+01 lineto -7.547941e+01 2.006276e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.652942e+01 2.31562e+01 moveto -7.547941e+01 2.006276e+01 lineto -7.347094e+01 2.01618e+01 lineto -7.431971e+01 2.326516e+01 lineto -7.652942e+01 2.31562e+01 lineto -closepath -gsave -5.903682e-01 5.903682e-01 5.903682e-01 setrgbcolor -fill -grestore -newpath -7.652942e+01 2.31562e+01 moveto -7.547941e+01 2.006276e+01 lineto -7.347094e+01 2.01618e+01 lineto -7.431971e+01 2.326516e+01 lineto -7.652942e+01 2.31562e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.749216e+01 2.642258e+01 moveto -7.652942e+01 2.31562e+01 lineto -7.431971e+01 2.326516e+01 lineto -7.509793e+01 2.654063e+01 lineto -7.749216e+01 2.642258e+01 lineto -closepath -gsave -5.963661e-01 5.963661e-01 5.963661e-01 setrgbcolor -fill -grestore -newpath -7.749216e+01 2.642258e+01 moveto -7.652942e+01 2.31562e+01 lineto -7.431971e+01 2.326516e+01 lineto -7.509793e+01 2.654063e+01 lineto -7.749216e+01 2.642258e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.836032e+01 2.983717e+01 moveto -7.749216e+01 2.642258e+01 lineto -7.509793e+01 2.654063e+01 lineto -7.57997e+01 2.996343e+01 lineto -7.836032e+01 2.983717e+01 lineto -closepath -gsave -6.008259e-01 6.008259e-01 6.008259e-01 setrgbcolor -fill -grestore -newpath -7.836032e+01 2.983717e+01 moveto -7.749216e+01 2.642258e+01 lineto -7.509793e+01 2.654063e+01 lineto -7.57997e+01 2.996343e+01 lineto -7.836032e+01 2.983717e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.912734e+01 3.337411e+01 moveto -7.836032e+01 2.983717e+01 lineto -7.57997e+01 2.996343e+01 lineto -7.641971e+01 3.350762e+01 lineto -7.912734e+01 3.337411e+01 lineto -closepath -gsave -6.036406e-01 6.036406e-01 6.036406e-01 setrgbcolor -fill -grestore -newpath -7.912734e+01 3.337411e+01 moveto -7.836032e+01 2.983717e+01 lineto -7.57997e+01 2.996343e+01 lineto -7.641971e+01 3.350762e+01 lineto -7.912734e+01 3.337411e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.978741e+01 3.700664e+01 moveto -7.912734e+01 3.337411e+01 lineto -7.641971e+01 3.350762e+01 lineto -7.695328e+01 3.714639e+01 lineto -7.978741e+01 3.700664e+01 lineto -closepath -gsave -6.047424e-01 6.047424e-01 6.047424e-01 setrgbcolor -fill -grestore -newpath -7.978741e+01 3.700664e+01 moveto -7.912734e+01 3.337411e+01 lineto -7.641971e+01 3.350762e+01 lineto -7.695328e+01 3.714639e+01 lineto -7.978741e+01 3.700664e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.033554e+01 4.070726e+01 moveto -7.978741e+01 3.700664e+01 lineto -7.695328e+01 3.714639e+01 lineto -7.739635e+01 4.085218e+01 lineto -8.033554e+01 4.070726e+01 lineto -closepath -gsave -6.041049e-01 6.041049e-01 6.041049e-01 setrgbcolor -fill -grestore -newpath -8.033554e+01 4.070726e+01 moveto -7.978741e+01 3.700664e+01 lineto -7.695328e+01 3.714639e+01 lineto -7.739635e+01 4.085218e+01 lineto -8.033554e+01 4.070726e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.076756e+01 4.444794e+01 moveto -8.033554e+01 4.070726e+01 lineto -7.739635e+01 4.085218e+01 lineto -7.774557e+01 4.459695e+01 lineto -8.076756e+01 4.444794e+01 lineto -closepath -gsave -6.017442e-01 6.017442e-01 6.017442e-01 setrgbcolor -fill -grestore -newpath -8.076756e+01 4.444794e+01 moveto -8.033554e+01 4.070726e+01 lineto -7.739635e+01 4.085218e+01 lineto -7.774557e+01 4.459695e+01 lineto -8.076756e+01 4.444794e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.108022e+01 4.820037e+01 moveto -8.076756e+01 4.444794e+01 lineto -7.774557e+01 4.459695e+01 lineto -7.799831e+01 4.835233e+01 lineto -8.108022e+01 4.820037e+01 lineto -closepath -gsave -5.977183e-01 5.977183e-01 5.977183e-01 setrgbcolor -fill -grestore -newpath -8.108022e+01 4.820037e+01 moveto -8.076756e+01 4.444794e+01 lineto -7.774557e+01 4.459695e+01 lineto -7.799831e+01 4.835233e+01 lineto -8.108022e+01 4.820037e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.127115e+01 5.193614e+01 moveto -8.108022e+01 4.820037e+01 lineto -7.799831e+01 4.835233e+01 lineto -7.815264e+01 5.208991e+01 lineto -8.127115e+01 5.193614e+01 lineto -closepath -gsave -5.921247e-01 5.921247e-01 5.921247e-01 setrgbcolor -fill -grestore -newpath -8.127115e+01 5.193614e+01 moveto -8.108022e+01 4.820037e+01 lineto -7.799831e+01 4.835233e+01 lineto -7.815264e+01 5.208991e+01 lineto -8.127115e+01 5.193614e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.133889e+01 5.562698e+01 moveto -8.127115e+01 5.193614e+01 lineto -7.815264e+01 5.208991e+01 lineto -7.82074e+01 5.578139e+01 lineto -8.133889e+01 5.562698e+01 lineto -closepath -gsave -5.850971e-01 5.850971e-01 5.850971e-01 setrgbcolor -fill -grestore -newpath -8.133889e+01 5.562698e+01 moveto -8.127115e+01 5.193614e+01 lineto -7.815264e+01 5.208991e+01 lineto -7.82074e+01 5.578139e+01 lineto -8.133889e+01 5.562698e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.128294e+01 5.924493e+01 moveto -8.133889e+01 5.562698e+01 lineto -7.82074e+01 5.578139e+01 lineto -7.816217e+01 5.939881e+01 lineto -8.128294e+01 5.924493e+01 lineto -closepath -gsave -5.767997e-01 5.767997e-01 5.767997e-01 setrgbcolor -fill -grestore -newpath -8.128294e+01 5.924493e+01 moveto -8.133889e+01 5.562698e+01 lineto -7.82074e+01 5.578139e+01 lineto -7.816217e+01 5.939881e+01 lineto -8.128294e+01 5.924493e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.110373e+01 6.276262e+01 moveto -8.128294e+01 5.924493e+01 lineto -7.816217e+01 5.939881e+01 lineto -7.801731e+01 6.29148e+01 lineto -8.110373e+01 6.276262e+01 lineto -closepath -gsave -5.67422e-01 5.67422e-01 5.67422e-01 setrgbcolor -fill -grestore -newpath -8.110373e+01 6.276262e+01 moveto -8.128294e+01 5.924493e+01 lineto -7.816217e+01 5.939881e+01 lineto -7.801731e+01 6.29148e+01 lineto -8.110373e+01 6.276262e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.08026e+01 6.61534e+01 moveto -8.110373e+01 6.276262e+01 lineto -7.801731e+01 6.29148e+01 lineto -7.777389e+01 6.630274e+01 lineto -8.08026e+01 6.61534e+01 lineto -closepath -gsave -5.571716e-01 5.571716e-01 5.571716e-01 setrgbcolor -fill -grestore -newpath -8.08026e+01 6.61534e+01 moveto -8.110373e+01 6.276262e+01 lineto -7.801731e+01 6.29148e+01 lineto -7.777389e+01 6.630274e+01 lineto -8.08026e+01 6.61534e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.038183e+01 6.939161e+01 moveto -8.08026e+01 6.61534e+01 lineto -7.777389e+01 6.630274e+01 lineto -7.743377e+01 6.953698e+01 lineto -8.038183e+01 6.939161e+01 lineto -closepath -gsave -5.462668e-01 5.462668e-01 5.462668e-01 setrgbcolor -fill -grestore -newpath -8.038183e+01 6.939161e+01 moveto -8.08026e+01 6.61534e+01 lineto -7.777389e+01 6.630274e+01 lineto -7.743377e+01 6.953698e+01 lineto -8.038183e+01 6.939161e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.984463e+01 7.245274e+01 moveto -8.038183e+01 6.939161e+01 lineto -7.743377e+01 6.953698e+01 lineto -7.699952e+01 7.259303e+01 lineto -7.984463e+01 7.245274e+01 lineto -closepath -gsave -5.349298e-01 5.349298e-01 5.349298e-01 setrgbcolor -fill -grestore -newpath -7.984463e+01 7.245274e+01 moveto -8.038183e+01 6.939161e+01 lineto -7.743377e+01 6.953698e+01 lineto -7.699952e+01 7.259303e+01 lineto -7.984463e+01 7.245274e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.919504e+01 7.531361e+01 moveto -7.984463e+01 7.245274e+01 lineto -7.699952e+01 7.259303e+01 lineto -7.647443e+01 7.544776e+01 lineto -7.919504e+01 7.531361e+01 lineto -closepath -gsave -5.23379e-01 5.23379e-01 5.23379e-01 setrgbcolor -fill -grestore -newpath -7.919504e+01 7.531361e+01 moveto -7.984463e+01 7.245274e+01 lineto -7.699952e+01 7.259303e+01 lineto -7.647443e+01 7.544776e+01 lineto -7.919504e+01 7.531361e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.843798e+01 7.795257e+01 moveto -7.919504e+01 7.531361e+01 lineto -7.647443e+01 7.544776e+01 lineto -7.586248e+01 7.807956e+01 lineto -7.843798e+01 7.795257e+01 lineto -closepath -gsave -5.118228e-01 5.118228e-01 5.118228e-01 setrgbcolor -fill -grestore -newpath -7.843798e+01 7.795257e+01 moveto -7.919504e+01 7.531361e+01 lineto -7.647443e+01 7.544776e+01 lineto -7.586248e+01 7.807956e+01 lineto -7.843798e+01 7.795257e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.75792e+01 8.034962e+01 moveto -7.843798e+01 7.795257e+01 lineto -7.586248e+01 7.807956e+01 lineto -7.516829e+01 8.04685e+01 lineto -7.75792e+01 8.034962e+01 lineto -closepath -gsave -5.004533e-01 5.004533e-01 5.004533e-01 setrgbcolor -fill -grestore -newpath -7.75792e+01 8.034962e+01 moveto -7.843798e+01 7.795257e+01 lineto -7.586248e+01 7.807956e+01 lineto -7.516829e+01 8.04685e+01 lineto -7.75792e+01 8.034962e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.662519e+01 8.248664e+01 moveto -7.75792e+01 8.034962e+01 lineto -7.516829e+01 8.04685e+01 lineto -7.439712e+01 8.25965e+01 lineto -7.662519e+01 8.248664e+01 lineto -closepath -gsave -4.894419e-01 4.894419e-01 4.894419e-01 setrgbcolor -fill -grestore -newpath -7.662519e+01 8.248664e+01 moveto -7.75792e+01 8.034962e+01 lineto -7.516829e+01 8.04685e+01 lineto -7.439712e+01 8.25965e+01 lineto -7.662519e+01 8.248664e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.558317e+01 8.434744e+01 moveto -7.662519e+01 8.248664e+01 lineto -7.439712e+01 8.25965e+01 lineto -7.355481e+01 8.444745e+01 lineto -7.558317e+01 8.434744e+01 lineto -closepath -gsave -4.78935e-01 4.78935e-01 4.78935e-01 setrgbcolor -fill -grestore -newpath -7.558317e+01 8.434744e+01 moveto -7.662519e+01 8.248664e+01 lineto -7.439712e+01 8.25965e+01 lineto -7.355481e+01 8.444745e+01 lineto -7.558317e+01 8.434744e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.446103e+01 8.591793e+01 moveto -7.558317e+01 8.434744e+01 lineto -7.355481e+01 8.444745e+01 lineto -7.264774e+01 8.600734e+01 lineto -7.446103e+01 8.591793e+01 lineto -closepath -gsave -4.690519e-01 4.690519e-01 4.690519e-01 setrgbcolor -fill -grestore -newpath -7.446103e+01 8.591793e+01 moveto -7.558317e+01 8.434744e+01 lineto -7.355481e+01 8.444745e+01 lineto -7.264774e+01 8.600734e+01 lineto -7.446103e+01 8.591793e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.326726e+01 8.718622e+01 moveto -7.446103e+01 8.591793e+01 lineto -7.264774e+01 8.600734e+01 lineto -7.168277e+01 8.726435e+01 lineto -7.326726e+01 8.718622e+01 lineto -closepath -gsave -4.598834e-01 4.598834e-01 4.598834e-01 setrgbcolor -fill -grestore -newpath -7.326726e+01 8.718622e+01 moveto -7.446103e+01 8.591793e+01 lineto -7.264774e+01 8.600734e+01 lineto -7.168277e+01 8.726435e+01 lineto -7.326726e+01 8.718622e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.201091e+01 8.814272e+01 moveto -7.326726e+01 8.718622e+01 lineto -7.168277e+01 8.726435e+01 lineto -7.066721e+01 8.820897e+01 lineto -7.201091e+01 8.814272e+01 lineto -closepath -gsave -4.514919e-01 4.514919e-01 4.514919e-01 setrgbcolor -fill -grestore -newpath -7.201091e+01 8.814272e+01 moveto -7.326726e+01 8.718622e+01 lineto -7.168277e+01 8.726435e+01 lineto -7.066721e+01 8.820897e+01 lineto -7.201091e+01 8.814272e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.070148e+01 8.878017e+01 moveto -7.201091e+01 8.814272e+01 lineto -7.066721e+01 8.820897e+01 lineto -6.960874e+01 8.883405e+01 lineto -7.070148e+01 8.878017e+01 lineto -closepath -gsave -4.439123e-01 4.439123e-01 4.439123e-01 setrgbcolor -fill -grestore -newpath -7.070148e+01 8.878017e+01 moveto -7.201091e+01 8.814272e+01 lineto -7.066721e+01 8.820897e+01 lineto -6.960874e+01 8.883405e+01 lineto -7.070148e+01 8.878017e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.934889e+01 8.909377e+01 moveto -7.070148e+01 8.878017e+01 lineto -6.960874e+01 8.883405e+01 lineto -6.851539e+01 8.913486e+01 lineto -6.934889e+01 8.909377e+01 lineto -closepath -gsave -4.371545e-01 4.371545e-01 4.371545e-01 setrgbcolor -fill -grestore -newpath -6.934889e+01 8.909377e+01 moveto -7.070148e+01 8.878017e+01 lineto -6.960874e+01 8.883405e+01 lineto -6.851539e+01 8.913486e+01 lineto -6.934889e+01 8.909377e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.230394e+01 8.580696e+01 moveto -6.371496e+01 8.709903e+01 lineto -6.396125e+01 8.708689e+01 lineto -6.282066e+01 8.578148e+01 lineto -6.230394e+01 8.580696e+01 lineto -closepath -gsave -5.190628e-01 5.190628e-01 5.190628e-01 setrgbcolor -fill -grestore -newpath -6.230394e+01 8.580696e+01 moveto -6.371496e+01 8.709903e+01 lineto -6.396125e+01 8.708689e+01 lineto -6.282066e+01 8.578148e+01 lineto -6.230394e+01 8.580696e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.091333e+01 8.421354e+01 moveto -6.230394e+01 8.580696e+01 lineto -6.282066e+01 8.578148e+01 lineto -6.169658e+01 8.417492e+01 lineto -6.091333e+01 8.421354e+01 lineto -closepath -gsave -5.30653e-01 5.30653e-01 5.30653e-01 setrgbcolor -fill -grestore -newpath -6.091333e+01 8.421354e+01 moveto -6.230394e+01 8.580696e+01 lineto -6.282066e+01 8.578148e+01 lineto -6.169658e+01 8.417492e+01 lineto -6.091333e+01 8.421354e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.955366e+01 8.233082e+01 moveto -6.091333e+01 8.421354e+01 lineto -6.169658e+01 8.417492e+01 lineto -6.05975e+01 8.227935e+01 lineto -5.955366e+01 8.233082e+01 lineto -closepath -gsave -5.421085e-01 5.421085e-01 5.421085e-01 setrgbcolor -fill -grestore -newpath -5.955366e+01 8.233082e+01 moveto -6.091333e+01 8.421354e+01 lineto -6.169658e+01 8.417492e+01 lineto -6.05975e+01 8.227935e+01 lineto -5.955366e+01 8.233082e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.614807e+01 5.024405e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.586879e+01 5.032491e+00 lineto -6.614807e+01 5.024405e+00 lineto -closepath -gsave -5.093043e-01 5.093043e-01 5.093043e-01 setrgbcolor -fill -grestore -newpath -6.614807e+01 5.024405e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.586879e+01 5.032491e+00 lineto -6.614807e+01 5.024405e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.728746e+01 6.359012e+00 moveto -6.614807e+01 5.024405e+00 lineto -6.586879e+01 5.032491e+00 lineto -6.6731e+01 6.375124e+00 lineto -6.728746e+01 6.359012e+00 lineto -closepath -gsave -5.223251e-01 5.223251e-01 5.223251e-01 setrgbcolor -fill -grestore -newpath -6.728746e+01 6.359012e+00 moveto -6.614807e+01 5.024405e+00 lineto -6.586879e+01 5.032491e+00 lineto -6.6731e+01 6.375124e+00 lineto -6.728746e+01 6.359012e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.840952e+01 7.99372e+00 moveto -6.728746e+01 6.359012e+00 lineto -6.6731e+01 6.375124e+00 lineto -6.75801e+01 8.017735e+00 lineto -6.840952e+01 7.99372e+00 lineto -closepath -gsave -5.355706e-01 5.355706e-01 5.355706e-01 setrgbcolor -fill -grestore -newpath -6.840952e+01 7.99372e+00 moveto -6.728746e+01 6.359012e+00 lineto -6.6731e+01 6.375124e+00 lineto -6.75801e+01 8.017735e+00 lineto -6.840952e+01 7.99372e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.950578e+01 9.916152e+00 moveto -6.840952e+01 7.99372e+00 lineto -6.75801e+01 8.017735e+00 lineto -6.840967e+01 9.947889e+00 lineto -6.950578e+01 9.916152e+00 lineto -closepath -gsave -5.488086e-01 5.488086e-01 5.488086e-01 setrgbcolor -fill -grestore -newpath -6.950578e+01 9.916152e+00 moveto -6.840952e+01 7.99372e+00 lineto -6.75801e+01 8.017735e+00 lineto -6.840967e+01 9.947889e+00 lineto -6.950578e+01 9.916152e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.056792e+01 1.211175e+01 moveto -6.950578e+01 9.916152e+00 lineto -6.840967e+01 9.947889e+00 lineto -6.921343e+01 1.215097e+01 lineto -7.056792e+01 1.211175e+01 lineto -closepath -gsave -5.617874e-01 5.617874e-01 5.617874e-01 setrgbcolor -fill -grestore -newpath -7.056792e+01 1.211175e+01 moveto -6.950578e+01 9.916152e+00 lineto -6.840967e+01 9.947889e+00 lineto -6.921343e+01 1.215097e+01 lineto -7.056792e+01 1.211175e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.158792e+01 1.456391e+01 moveto -7.056792e+01 1.211175e+01 lineto -6.921343e+01 1.215097e+01 lineto -6.99853e+01 1.461031e+01 lineto -7.158792e+01 1.456391e+01 lineto -closepath -gsave -5.742436e-01 5.742436e-01 5.742436e-01 setrgbcolor -fill -grestore -newpath -7.158792e+01 1.456391e+01 moveto -7.056792e+01 1.211175e+01 lineto -6.921343e+01 1.215097e+01 lineto -6.99853e+01 1.461031e+01 lineto -7.158792e+01 1.456391e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.255804e+01 1.725404e+01 moveto -7.158792e+01 1.456391e+01 lineto -6.99853e+01 1.461031e+01 lineto -7.071942e+01 1.730728e+01 lineto -7.255804e+01 1.725404e+01 lineto -closepath -gsave -5.859106e-01 5.859106e-01 5.859106e-01 setrgbcolor -fill -grestore -newpath -7.255804e+01 1.725404e+01 moveto -7.158792e+01 1.456391e+01 lineto -6.99853e+01 1.461031e+01 lineto -7.071942e+01 1.730728e+01 lineto -7.255804e+01 1.725404e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.347094e+01 2.01618e+01 moveto -7.255804e+01 1.725404e+01 lineto -7.071942e+01 1.730728e+01 lineto -7.141024e+01 2.022146e+01 lineto -7.347094e+01 2.01618e+01 lineto -closepath -gsave -5.965272e-01 5.965272e-01 5.965272e-01 setrgbcolor -fill -grestore -newpath -7.347094e+01 2.01618e+01 moveto -7.255804e+01 1.725404e+01 lineto -7.071942e+01 1.730728e+01 lineto -7.141024e+01 2.022146e+01 lineto -7.347094e+01 2.01618e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.431971e+01 2.326516e+01 moveto -7.347094e+01 2.01618e+01 lineto -7.141024e+01 2.022146e+01 lineto -7.205254e+01 2.33308e+01 lineto -7.431971e+01 2.326516e+01 lineto -closepath -gsave -6.058474e-01 6.058474e-01 6.058474e-01 setrgbcolor -fill -grestore -newpath -7.431971e+01 2.326516e+01 moveto -7.347094e+01 2.01618e+01 lineto -7.141024e+01 2.022146e+01 lineto -7.205254e+01 2.33308e+01 lineto -7.431971e+01 2.326516e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.509793e+01 2.654063e+01 moveto -7.431971e+01 2.326516e+01 lineto -7.205254e+01 2.33308e+01 lineto -7.264144e+01 2.661176e+01 lineto -7.509793e+01 2.654063e+01 lineto -closepath -gsave -6.136489e-01 6.136489e-01 6.136489e-01 setrgbcolor -fill -grestore -newpath -7.509793e+01 2.654063e+01 moveto -7.431971e+01 2.326516e+01 lineto -7.205254e+01 2.33308e+01 lineto -7.264144e+01 2.661176e+01 lineto -7.509793e+01 2.654063e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.57997e+01 2.996343e+01 moveto -7.509793e+01 2.654063e+01 lineto -7.264144e+01 2.661176e+01 lineto -7.317249e+01 3.003949e+01 lineto -7.57997e+01 2.996343e+01 lineto -closepath -gsave -6.197417e-01 6.197417e-01 6.197417e-01 setrgbcolor -fill -grestore -newpath -7.57997e+01 2.996343e+01 moveto -7.509793e+01 2.654063e+01 lineto -7.264144e+01 2.661176e+01 lineto -7.317249e+01 3.003949e+01 lineto -7.57997e+01 2.996343e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.641971e+01 3.350762e+01 moveto -7.57997e+01 2.996343e+01 lineto -7.317249e+01 3.003949e+01 lineto -7.364168e+01 3.358806e+01 lineto -7.641971e+01 3.350762e+01 lineto -closepath -gsave -6.239748e-01 6.239748e-01 6.239748e-01 setrgbcolor -fill -grestore -newpath -7.641971e+01 3.350762e+01 moveto -7.57997e+01 2.996343e+01 lineto -7.317249e+01 3.003949e+01 lineto -7.364168e+01 3.358806e+01 lineto -7.641971e+01 3.350762e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.695328e+01 3.714639e+01 moveto -7.641971e+01 3.350762e+01 lineto -7.364168e+01 3.358806e+01 lineto -7.404544e+01 3.723058e+01 lineto -7.695328e+01 3.714639e+01 lineto -closepath -gsave -6.262423e-01 6.262423e-01 6.262423e-01 setrgbcolor -fill -grestore -newpath -7.695328e+01 3.714639e+01 moveto -7.641971e+01 3.350762e+01 lineto -7.364168e+01 3.358806e+01 lineto -7.404544e+01 3.723058e+01 lineto -7.695328e+01 3.714639e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.739635e+01 4.085218e+01 moveto -7.695328e+01 3.714639e+01 lineto -7.404544e+01 3.723058e+01 lineto -7.438073e+01 4.09395e+01 lineto -7.739635e+01 4.085218e+01 lineto -closepath -gsave -6.264875e-01 6.264875e-01 6.264875e-01 setrgbcolor -fill -grestore -newpath -7.739635e+01 4.085218e+01 moveto -7.695328e+01 3.714639e+01 lineto -7.404544e+01 3.723058e+01 lineto -7.438073e+01 4.09395e+01 lineto -7.739635e+01 4.085218e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.774557e+01 4.459695e+01 moveto -7.739635e+01 4.085218e+01 lineto -7.438073e+01 4.09395e+01 lineto -7.4645e+01 4.468672e+01 lineto -7.774557e+01 4.459695e+01 lineto -closepath -gsave -6.247048e-01 6.247048e-01 6.247048e-01 setrgbcolor -fill -grestore -newpath -7.774557e+01 4.459695e+01 moveto -7.739635e+01 4.085218e+01 lineto -7.438073e+01 4.09395e+01 lineto -7.4645e+01 4.468672e+01 lineto -7.774557e+01 4.459695e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.799831e+01 4.835233e+01 moveto -7.774557e+01 4.459695e+01 lineto -7.4645e+01 4.468672e+01 lineto -7.483625e+01 4.844389e+01 lineto -7.799831e+01 4.835233e+01 lineto -closepath -gsave -6.209398e-01 6.209398e-01 6.209398e-01 setrgbcolor -fill -grestore -newpath -7.799831e+01 4.835233e+01 moveto -7.774557e+01 4.459695e+01 lineto -7.4645e+01 4.468672e+01 lineto -7.483625e+01 4.844389e+01 lineto -7.799831e+01 4.835233e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.815264e+01 5.208991e+01 moveto -7.799831e+01 4.835233e+01 lineto -7.483625e+01 4.844389e+01 lineto -7.495304e+01 5.218255e+01 lineto -7.815264e+01 5.208991e+01 lineto -closepath -gsave -6.152879e-01 6.152879e-01 6.152879e-01 setrgbcolor -fill -grestore -newpath -7.815264e+01 5.208991e+01 moveto -7.799831e+01 4.835233e+01 lineto -7.483625e+01 4.844389e+01 lineto -7.495304e+01 5.218255e+01 lineto -7.815264e+01 5.208991e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.82074e+01 5.578139e+01 moveto -7.815264e+01 5.208991e+01 lineto -7.495304e+01 5.218255e+01 lineto -7.499448e+01 5.587441e+01 lineto -7.82074e+01 5.578139e+01 lineto -closepath -gsave -6.078902e-01 6.078902e-01 6.078902e-01 setrgbcolor -fill -grestore -newpath -7.82074e+01 5.578139e+01 moveto -7.815264e+01 5.208991e+01 lineto -7.495304e+01 5.218255e+01 lineto -7.499448e+01 5.587441e+01 lineto -7.82074e+01 5.578139e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.816217e+01 5.939881e+01 moveto -7.82074e+01 5.578139e+01 lineto -7.499448e+01 5.587441e+01 lineto -7.496026e+01 5.949152e+01 lineto -7.816217e+01 5.939881e+01 lineto -closepath -gsave -5.98928e-01 5.98928e-01 5.98928e-01 setrgbcolor -fill -grestore -newpath -7.816217e+01 5.939881e+01 moveto -7.82074e+01 5.578139e+01 lineto -7.499448e+01 5.587441e+01 lineto -7.496026e+01 5.949152e+01 lineto -7.816217e+01 5.939881e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.801731e+01 6.29148e+01 moveto -7.816217e+01 5.939881e+01 lineto -7.496026e+01 5.949152e+01 lineto -7.485063e+01 6.300649e+01 lineto -7.801731e+01 6.29148e+01 lineto -closepath -gsave -5.886164e-01 5.886164e-01 5.886164e-01 setrgbcolor -fill -grestore -newpath -7.801731e+01 6.29148e+01 moveto -7.816217e+01 5.939881e+01 lineto -7.496026e+01 5.949152e+01 lineto -7.485063e+01 6.300649e+01 lineto -7.801731e+01 6.29148e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.777389e+01 6.630274e+01 moveto -7.801731e+01 6.29148e+01 lineto -7.485063e+01 6.300649e+01 lineto -7.466643e+01 6.639271e+01 lineto -7.777389e+01 6.630274e+01 lineto -closepath -gsave -5.771958e-01 5.771958e-01 5.771958e-01 setrgbcolor -fill -grestore -newpath -7.777389e+01 6.630274e+01 moveto -7.801731e+01 6.29148e+01 lineto -7.485063e+01 6.300649e+01 lineto -7.466643e+01 6.639271e+01 lineto -7.777389e+01 6.630274e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.743377e+01 6.953698e+01 moveto -7.777389e+01 6.630274e+01 lineto -7.466643e+01 6.639271e+01 lineto -7.440905e+01 6.962456e+01 lineto -7.743377e+01 6.953698e+01 lineto -closepath -gsave -5.649234e-01 5.649234e-01 5.649234e-01 setrgbcolor -fill -grestore -newpath -7.743377e+01 6.953698e+01 moveto -7.777389e+01 6.630274e+01 lineto -7.466643e+01 6.639271e+01 lineto -7.440905e+01 6.962456e+01 lineto -7.743377e+01 6.953698e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.699952e+01 7.259303e+01 moveto -7.743377e+01 6.953698e+01 lineto -7.440905e+01 6.962456e+01 lineto -7.408044e+01 7.267755e+01 lineto -7.699952e+01 7.259303e+01 lineto -closepath -gsave -5.520641e-01 5.520641e-01 5.520641e-01 setrgbcolor -fill -grestore -newpath -7.699952e+01 7.259303e+01 moveto -7.743377e+01 6.953698e+01 lineto -7.440905e+01 6.962456e+01 lineto -7.408044e+01 7.267755e+01 lineto -7.699952e+01 7.259303e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.647443e+01 7.544776e+01 moveto -7.699952e+01 7.259303e+01 lineto -7.408044e+01 7.267755e+01 lineto -7.368309e+01 7.552858e+01 lineto -7.647443e+01 7.544776e+01 lineto -closepath -gsave -5.388817e-01 5.388817e-01 5.388817e-01 setrgbcolor -fill -grestore -newpath -7.647443e+01 7.544776e+01 moveto -7.699952e+01 7.259303e+01 lineto -7.408044e+01 7.267755e+01 lineto -7.368309e+01 7.552858e+01 lineto -7.647443e+01 7.544776e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.586248e+01 7.807956e+01 moveto -7.647443e+01 7.544776e+01 lineto -7.368309e+01 7.552858e+01 lineto -7.322e+01 7.815607e+01 lineto -7.586248e+01 7.807956e+01 lineto -closepath -gsave -5.2563e-01 5.2563e-01 5.2563e-01 setrgbcolor -fill -grestore -newpath -7.586248e+01 7.807956e+01 moveto -7.647443e+01 7.544776e+01 lineto -7.368309e+01 7.552858e+01 lineto -7.322e+01 7.815607e+01 lineto -7.586248e+01 7.807956e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.516829e+01 8.04685e+01 moveto -7.586248e+01 7.807956e+01 lineto -7.322e+01 7.815607e+01 lineto -7.269468e+01 8.054012e+01 lineto -7.516829e+01 8.04685e+01 lineto -closepath -gsave -5.125457e-01 5.125457e-01 5.125457e-01 setrgbcolor -fill -grestore -newpath -7.516829e+01 8.04685e+01 moveto -7.586248e+01 7.807956e+01 lineto -7.322e+01 7.815607e+01 lineto -7.269468e+01 8.054012e+01 lineto -7.516829e+01 8.04685e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.439712e+01 8.25965e+01 moveto -7.516829e+01 8.04685e+01 lineto -7.269468e+01 8.054012e+01 lineto -7.211111e+01 8.266269e+01 lineto -7.439712e+01 8.25965e+01 lineto -closepath -gsave -4.998414e-01 4.998414e-01 4.998414e-01 setrgbcolor -fill -grestore -newpath -7.439712e+01 8.25965e+01 moveto -7.516829e+01 8.04685e+01 lineto -7.269468e+01 8.054012e+01 lineto -7.211111e+01 8.266269e+01 lineto -7.439712e+01 8.25965e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.355481e+01 8.444745e+01 moveto -7.439712e+01 8.25965e+01 lineto -7.211111e+01 8.266269e+01 lineto -7.147371e+01 8.450771e+01 lineto -7.355481e+01 8.444745e+01 lineto -closepath -gsave -4.877007e-01 4.877007e-01 4.877007e-01 setrgbcolor -fill -grestore -newpath -7.355481e+01 8.444745e+01 moveto -7.439712e+01 8.25965e+01 lineto -7.211111e+01 8.266269e+01 lineto -7.147371e+01 8.450771e+01 lineto -7.355481e+01 8.444745e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.264774e+01 8.600734e+01 moveto -7.355481e+01 8.444745e+01 lineto -7.147371e+01 8.450771e+01 lineto -7.07873e+01 8.606121e+01 lineto -7.264774e+01 8.600734e+01 lineto -closepath -gsave -4.762746e-01 4.762746e-01 4.762746e-01 setrgbcolor -fill -grestore -newpath -7.264774e+01 8.600734e+01 moveto -7.355481e+01 8.444745e+01 lineto -7.147371e+01 8.450771e+01 lineto -7.07873e+01 8.606121e+01 lineto -7.264774e+01 8.600734e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.168277e+01 8.726435e+01 moveto -7.264774e+01 8.600734e+01 lineto -7.07873e+01 8.606121e+01 lineto -7.005707e+01 8.731142e+01 lineto -7.168277e+01 8.726435e+01 lineto -closepath -gsave -4.656791e-01 4.656791e-01 4.656791e-01 setrgbcolor -fill -grestore -newpath -7.168277e+01 8.726435e+01 moveto -7.264774e+01 8.600734e+01 lineto -7.07873e+01 8.606121e+01 lineto -7.005707e+01 8.731142e+01 lineto -7.168277e+01 8.726435e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.066721e+01 8.820897e+01 moveto -7.168277e+01 8.726435e+01 lineto -7.005707e+01 8.731142e+01 lineto -6.928857e+01 8.824889e+01 lineto -7.066721e+01 8.820897e+01 lineto -closepath -gsave -4.559955e-01 4.559955e-01 4.559955e-01 setrgbcolor -fill -grestore -newpath -7.066721e+01 8.820897e+01 moveto -7.168277e+01 8.726435e+01 lineto -7.005707e+01 8.731142e+01 lineto -6.928857e+01 8.824889e+01 lineto -7.066721e+01 8.820897e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.960874e+01 8.883405e+01 moveto -7.066721e+01 8.820897e+01 lineto -6.928857e+01 8.824889e+01 lineto -6.848759e+01 8.886652e+01 lineto -6.960874e+01 8.883405e+01 lineto -closepath -gsave -4.472708e-01 4.472708e-01 4.472708e-01 setrgbcolor -fill -grestore -newpath -6.960874e+01 8.883405e+01 moveto -7.066721e+01 8.820897e+01 lineto -6.928857e+01 8.824889e+01 lineto -6.848759e+01 8.886652e+01 lineto -6.960874e+01 8.883405e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.851539e+01 8.913486e+01 moveto -6.960874e+01 8.883405e+01 lineto -6.848759e+01 8.886652e+01 lineto -6.766021e+01 8.915963e+01 lineto -6.851539e+01 8.913486e+01 lineto -closepath -gsave -4.395203e-01 4.395203e-01 4.395203e-01 setrgbcolor -fill -grestore -newpath -6.851539e+01 8.913486e+01 moveto -6.960874e+01 8.883405e+01 lineto -6.848759e+01 8.886652e+01 lineto -6.766021e+01 8.915963e+01 lineto -6.851539e+01 8.913486e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.282066e+01 8.578148e+01 moveto -6.396125e+01 8.708689e+01 lineto -6.421394e+01 8.707957e+01 lineto -6.335082e+01 8.576613e+01 lineto -6.282066e+01 8.578148e+01 lineto -closepath -gsave -5.210693e-01 5.210693e-01 5.210693e-01 setrgbcolor -fill -grestore -newpath -6.282066e+01 8.578148e+01 moveto -6.396125e+01 8.708689e+01 lineto -6.421394e+01 8.707957e+01 lineto -6.335082e+01 8.576613e+01 lineto -6.282066e+01 8.578148e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.169658e+01 8.417492e+01 moveto -6.282066e+01 8.578148e+01 lineto -6.335082e+01 8.576613e+01 lineto -6.250019e+01 8.415165e+01 lineto -6.169658e+01 8.417492e+01 lineto -closepath -gsave -5.34303e-01 5.34303e-01 5.34303e-01 setrgbcolor -fill -grestore -newpath -6.169658e+01 8.417492e+01 moveto -6.282066e+01 8.578148e+01 lineto -6.335082e+01 8.576613e+01 lineto -6.250019e+01 8.415165e+01 lineto -6.169658e+01 8.417492e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.05975e+01 8.227935e+01 moveto -6.169658e+01 8.417492e+01 lineto -6.250019e+01 8.415165e+01 lineto -6.166848e+01 8.224834e+01 lineto -6.05975e+01 8.227935e+01 lineto -closepath -gsave -5.475524e-01 5.475524e-01 5.475524e-01 setrgbcolor -fill -grestore -newpath -6.05975e+01 8.227935e+01 moveto -6.169658e+01 8.417492e+01 lineto -6.250019e+01 8.415165e+01 lineto -6.166848e+01 8.224834e+01 lineto -6.05975e+01 8.227935e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.586879e+01 5.032491e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.558414e+01 5.035192e+00 lineto -6.586879e+01 5.032491e+00 lineto -closepath -gsave -5.099375e-01 5.099375e-01 5.099375e-01 setrgbcolor -fill -grestore -newpath -6.586879e+01 5.032491e+00 moveto -6.5e+01 4.0e+00 lineto -6.5e+01 4.0e+00 lineto -6.558414e+01 5.035192e+00 lineto -6.586879e+01 5.032491e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.6731e+01 6.375124e+00 moveto -6.586879e+01 5.032491e+00 lineto -6.558414e+01 5.035192e+00 lineto -6.616386e+01 6.380506e+00 lineto -6.6731e+01 6.375124e+00 lineto -closepath -gsave -5.24375e-01 5.24375e-01 5.24375e-01 setrgbcolor -fill -grestore -newpath -6.6731e+01 6.375124e+00 moveto -6.586879e+01 5.032491e+00 lineto -6.558414e+01 5.035192e+00 lineto -6.616386e+01 6.380506e+00 lineto -6.6731e+01 6.375124e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.75801e+01 8.017735e+00 moveto -6.6731e+01 6.375124e+00 lineto -6.616386e+01 6.380506e+00 lineto -6.673477e+01 8.025757e+00 lineto -6.75801e+01 8.017735e+00 lineto -closepath -gsave -5.392231e-01 5.392231e-01 5.392231e-01 setrgbcolor -fill -grestore -newpath -6.75801e+01 8.017735e+00 moveto -6.6731e+01 6.375124e+00 lineto -6.616386e+01 6.380506e+00 lineto -6.673477e+01 8.025757e+00 lineto -6.75801e+01 8.017735e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.840967e+01 9.947889e+00 moveto -6.75801e+01 8.017735e+00 lineto -6.673477e+01 8.025757e+00 lineto -6.729255e+01 9.958489e+00 lineto -6.840967e+01 9.947889e+00 lineto -closepath -gsave -5.542249e-01 5.542249e-01 5.542249e-01 setrgbcolor -fill -grestore -newpath -6.840967e+01 9.947889e+00 moveto -6.75801e+01 8.017735e+00 lineto -6.673477e+01 8.025757e+00 lineto -6.729255e+01 9.958489e+00 lineto -6.840967e+01 9.947889e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.921343e+01 1.215097e+01 moveto -6.840967e+01 9.947889e+00 lineto -6.729255e+01 9.958489e+00 lineto -6.783297e+01 1.216407e+01 lineto -6.921343e+01 1.215097e+01 lineto -closepath -gsave -5.690963e-01 5.690963e-01 5.690963e-01 setrgbcolor -fill -grestore -newpath -6.921343e+01 1.215097e+01 moveto -6.840967e+01 9.947889e+00 lineto -6.729255e+01 9.958489e+00 lineto -6.783297e+01 1.216407e+01 lineto -6.921343e+01 1.215097e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.99853e+01 1.461031e+01 moveto -6.921343e+01 1.215097e+01 lineto -6.783297e+01 1.216407e+01 lineto -6.835194e+01 1.462581e+01 lineto -6.99853e+01 1.461031e+01 lineto -closepath -gsave -5.83534e-01 5.83534e-01 5.83534e-01 setrgbcolor -fill -grestore -newpath -6.99853e+01 1.461031e+01 moveto -6.921343e+01 1.215097e+01 lineto -6.783297e+01 1.216407e+01 lineto -6.835194e+01 1.462581e+01 lineto -6.99853e+01 1.461031e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.071942e+01 1.730728e+01 moveto -6.99853e+01 1.461031e+01 lineto -6.835194e+01 1.462581e+01 lineto -6.884554e+01 1.732506e+01 lineto -7.071942e+01 1.730728e+01 lineto -closepath -gsave -5.972259e-01 5.972259e-01 5.972259e-01 setrgbcolor -fill -grestore -newpath -7.071942e+01 1.730728e+01 moveto -6.99853e+01 1.461031e+01 lineto -6.835194e+01 1.462581e+01 lineto -6.884554e+01 1.732506e+01 lineto -7.071942e+01 1.730728e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.141024e+01 2.022146e+01 moveto -7.071942e+01 1.730728e+01 lineto -6.884554e+01 1.732506e+01 lineto -6.931002e+01 2.024139e+01 lineto -7.141024e+01 2.022146e+01 lineto -closepath -gsave -6.09861e-01 6.09861e-01 6.09861e-01 setrgbcolor -fill -grestore -newpath -7.141024e+01 2.022146e+01 moveto -7.071942e+01 1.730728e+01 lineto -6.884554e+01 1.732506e+01 lineto -6.931002e+01 2.024139e+01 lineto -7.141024e+01 2.022146e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.205254e+01 2.33308e+01 moveto -7.141024e+01 2.022146e+01 lineto -6.931002e+01 2.024139e+01 lineto -6.974188e+01 2.335273e+01 lineto -7.205254e+01 2.33308e+01 lineto -closepath -gsave -6.211411e-01 6.211411e-01 6.211411e-01 setrgbcolor -fill -grestore -newpath -7.205254e+01 2.33308e+01 moveto -7.141024e+01 2.022146e+01 lineto -6.931002e+01 2.024139e+01 lineto -6.974188e+01 2.335273e+01 lineto -7.205254e+01 2.33308e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.264144e+01 2.661176e+01 moveto -7.205254e+01 2.33308e+01 lineto -6.974188e+01 2.335273e+01 lineto -7.013784e+01 2.663552e+01 lineto -7.264144e+01 2.661176e+01 lineto -closepath -gsave -6.307912e-01 6.307912e-01 6.307912e-01 setrgbcolor -fill -grestore -newpath -7.264144e+01 2.661176e+01 moveto -7.205254e+01 2.33308e+01 lineto -6.974188e+01 2.335273e+01 lineto -7.013784e+01 2.663552e+01 lineto -7.264144e+01 2.661176e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.317249e+01 3.003949e+01 moveto -7.264144e+01 2.661176e+01 lineto -7.013784e+01 2.663552e+01 lineto -7.04949e+01 3.00649e+01 lineto -7.317249e+01 3.003949e+01 lineto -closepath -gsave -6.385705e-01 6.385705e-01 6.385705e-01 setrgbcolor -fill -grestore -newpath -7.317249e+01 3.003949e+01 moveto -7.264144e+01 2.661176e+01 lineto -7.013784e+01 2.663552e+01 lineto -7.04949e+01 3.00649e+01 lineto -7.317249e+01 3.003949e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.364168e+01 3.358806e+01 moveto -7.317249e+01 3.003949e+01 lineto -7.04949e+01 3.00649e+01 lineto -7.081037e+01 3.361492e+01 lineto -7.364168e+01 3.358806e+01 lineto -closepath -gsave -6.442811e-01 6.442811e-01 6.442811e-01 setrgbcolor -fill -grestore -newpath -7.364168e+01 3.358806e+01 moveto -7.317249e+01 3.003949e+01 lineto -7.04949e+01 3.00649e+01 lineto -7.081037e+01 3.361492e+01 lineto -7.364168e+01 3.358806e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.404544e+01 3.723058e+01 moveto -7.364168e+01 3.358806e+01 lineto -7.081037e+01 3.361492e+01 lineto -7.108184e+01 3.72587e+01 lineto -7.404544e+01 3.723058e+01 lineto -closepath -gsave -6.477758e-01 6.477758e-01 6.477758e-01 setrgbcolor -fill -grestore -newpath -7.404544e+01 3.723058e+01 moveto -7.364168e+01 3.358806e+01 lineto -7.081037e+01 3.361492e+01 lineto -7.108184e+01 3.72587e+01 lineto -7.404544e+01 3.723058e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.438073e+01 4.09395e+01 moveto -7.404544e+01 3.723058e+01 lineto -7.108184e+01 3.72587e+01 lineto -7.130728e+01 4.096866e+01 lineto -7.438073e+01 4.09395e+01 lineto -closepath -gsave -6.489641e-01 6.489641e-01 6.489641e-01 setrgbcolor -fill -grestore -newpath -7.438073e+01 4.09395e+01 moveto -7.404544e+01 3.723058e+01 lineto -7.108184e+01 3.72587e+01 lineto -7.130728e+01 4.096866e+01 lineto -7.438073e+01 4.09395e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.4645e+01 4.468672e+01 moveto -7.438073e+01 4.09395e+01 lineto -7.130728e+01 4.096866e+01 lineto -7.148496e+01 4.471671e+01 lineto -7.4645e+01 4.468672e+01 lineto -closepath -gsave -6.478155e-01 6.478155e-01 6.478155e-01 setrgbcolor -fill -grestore -newpath -7.4645e+01 4.468672e+01 moveto -7.438073e+01 4.09395e+01 lineto -7.130728e+01 4.096866e+01 lineto -7.148496e+01 4.471671e+01 lineto -7.4645e+01 4.468672e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.483625e+01 4.844389e+01 moveto -7.4645e+01 4.468672e+01 lineto -7.148496e+01 4.471671e+01 lineto -7.161356e+01 4.847447e+01 lineto -7.483625e+01 4.844389e+01 lineto -closepath -gsave -6.443608e-01 6.443608e-01 6.443608e-01 setrgbcolor -fill -grestore -newpath -7.483625e+01 4.844389e+01 moveto -7.4645e+01 4.468672e+01 lineto -7.148496e+01 4.471671e+01 lineto -7.161356e+01 4.847447e+01 lineto -7.483625e+01 4.844389e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.495304e+01 5.218255e+01 moveto -7.483625e+01 4.844389e+01 lineto -7.161356e+01 4.847447e+01 lineto -7.169208e+01 5.22135e+01 lineto -7.495304e+01 5.218255e+01 lineto -closepath -gsave -6.386906e-01 6.386906e-01 6.386906e-01 setrgbcolor -fill -grestore -newpath -7.495304e+01 5.218255e+01 moveto -7.483625e+01 4.844389e+01 lineto -7.161356e+01 4.847447e+01 lineto -7.169208e+01 5.22135e+01 lineto -7.495304e+01 5.218255e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.499448e+01 5.587441e+01 moveto -7.495304e+01 5.218255e+01 lineto -7.169208e+01 5.22135e+01 lineto -7.171994e+01 5.590549e+01 lineto -7.499448e+01 5.587441e+01 lineto -closepath -gsave -6.30952e-01 6.30952e-01 6.30952e-01 setrgbcolor -fill -grestore -newpath -7.499448e+01 5.587441e+01 moveto -7.495304e+01 5.218255e+01 lineto -7.169208e+01 5.22135e+01 lineto -7.171994e+01 5.590549e+01 lineto -7.499448e+01 5.587441e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.496026e+01 5.949152e+01 moveto -7.499448e+01 5.587441e+01 lineto -7.171994e+01 5.590549e+01 lineto -7.169693e+01 5.952249e+01 lineto -7.496026e+01 5.949152e+01 lineto -closepath -gsave -6.213423e-01 6.213423e-01 6.213423e-01 setrgbcolor -fill -grestore -newpath -7.496026e+01 5.949152e+01 moveto -7.499448e+01 5.587441e+01 lineto -7.171994e+01 5.590549e+01 lineto -7.169693e+01 5.952249e+01 lineto -7.496026e+01 5.949152e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.485063e+01 6.300649e+01 moveto -7.496026e+01 5.949152e+01 lineto -7.169693e+01 5.952249e+01 lineto -7.162322e+01 6.303712e+01 lineto -7.485063e+01 6.300649e+01 lineto -closepath -gsave -6.101017e-01 6.101017e-01 6.101017e-01 setrgbcolor -fill -grestore -newpath -7.485063e+01 6.300649e+01 moveto -7.496026e+01 5.949152e+01 lineto -7.169693e+01 5.952249e+01 lineto -7.162322e+01 6.303712e+01 lineto -7.485063e+01 6.300649e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.466643e+01 6.639271e+01 moveto -7.485063e+01 6.300649e+01 lineto -7.162322e+01 6.303712e+01 lineto -7.149937e+01 6.642277e+01 lineto -7.466643e+01 6.639271e+01 lineto -closepath -gsave -5.975039e-01 5.975039e-01 5.975039e-01 setrgbcolor -fill -grestore -newpath -7.466643e+01 6.639271e+01 moveto -7.485063e+01 6.300649e+01 lineto -7.162322e+01 6.303712e+01 lineto -7.149937e+01 6.642277e+01 lineto -7.466643e+01 6.639271e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.440905e+01 6.962456e+01 moveto -7.466643e+01 6.639271e+01 lineto -7.149937e+01 6.642277e+01 lineto -7.132632e+01 6.965381e+01 lineto -7.440905e+01 6.962456e+01 lineto -closepath -gsave -5.83846e-01 5.83846e-01 5.83846e-01 setrgbcolor -fill -grestore -newpath -7.440905e+01 6.962456e+01 moveto -7.466643e+01 6.639271e+01 lineto -7.149937e+01 6.642277e+01 lineto -7.132632e+01 6.965381e+01 lineto -7.440905e+01 6.962456e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.408044e+01 7.267755e+01 moveto -7.440905e+01 6.962456e+01 lineto -7.132632e+01 6.965381e+01 lineto -7.110537e+01 7.270578e+01 lineto -7.408044e+01 7.267755e+01 lineto -closepath -gsave -5.694373e-01 5.694373e-01 5.694373e-01 setrgbcolor -fill -grestore -newpath -7.408044e+01 7.267755e+01 moveto -7.440905e+01 6.962456e+01 lineto -7.132632e+01 6.965381e+01 lineto -7.110537e+01 7.270578e+01 lineto -7.408044e+01 7.267755e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.368309e+01 7.552858e+01 moveto -7.408044e+01 7.267755e+01 lineto -7.110537e+01 7.270578e+01 lineto -7.083821e+01 7.555558e+01 lineto -7.368309e+01 7.552858e+01 lineto -closepath -gsave -5.545889e-01 5.545889e-01 5.545889e-01 setrgbcolor -fill -grestore -newpath -7.368309e+01 7.552858e+01 moveto -7.408044e+01 7.267755e+01 lineto -7.110537e+01 7.270578e+01 lineto -7.083821e+01 7.555558e+01 lineto -7.368309e+01 7.552858e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.322e+01 7.815607e+01 moveto -7.368309e+01 7.552858e+01 lineto -7.083821e+01 7.555558e+01 lineto -7.052684e+01 7.818163e+01 lineto -7.322e+01 7.815607e+01 lineto -closepath -gsave -5.396026e-01 5.396026e-01 5.396026e-01 setrgbcolor -fill -grestore -newpath -7.322e+01 7.815607e+01 moveto -7.368309e+01 7.552858e+01 lineto -7.083821e+01 7.555558e+01 lineto -7.052684e+01 7.818163e+01 lineto -7.322e+01 7.815607e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.269468e+01 8.054012e+01 moveto -7.322e+01 7.815607e+01 lineto -7.052684e+01 7.818163e+01 lineto -7.017364e+01 8.056405e+01 lineto -7.269468e+01 8.054012e+01 lineto -closepath -gsave -5.247619e-01 5.247619e-01 5.247619e-01 setrgbcolor -fill -grestore -newpath -7.269468e+01 8.054012e+01 moveto -7.322e+01 7.815607e+01 lineto -7.052684e+01 7.818163e+01 lineto -7.017364e+01 8.056405e+01 lineto -7.269468e+01 8.054012e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.211111e+01 8.266269e+01 moveto -7.269468e+01 8.054012e+01 lineto -7.017364e+01 8.056405e+01 lineto -6.978127e+01 8.26848e+01 lineto -7.211111e+01 8.266269e+01 lineto -closepath -gsave -5.103234e-01 5.103234e-01 5.103234e-01 setrgbcolor -fill -grestore -newpath -7.211111e+01 8.266269e+01 moveto -7.269468e+01 8.054012e+01 lineto -7.017364e+01 8.056405e+01 lineto -6.978127e+01 8.26848e+01 lineto -7.211111e+01 8.266269e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.147371e+01 8.450771e+01 moveto -7.211111e+01 8.266269e+01 lineto -6.978127e+01 8.26848e+01 lineto -6.93527e+01 8.452784e+01 lineto -7.147371e+01 8.450771e+01 lineto -closepath -gsave -4.965101e-01 4.965101e-01 4.965101e-01 setrgbcolor -fill -grestore -newpath -7.147371e+01 8.450771e+01 moveto -7.211111e+01 8.266269e+01 lineto -6.978127e+01 8.26848e+01 lineto -6.93527e+01 8.452784e+01 lineto -7.147371e+01 8.450771e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.07873e+01 8.606121e+01 moveto -7.147371e+01 8.450771e+01 lineto -6.93527e+01 8.452784e+01 lineto -6.889118e+01 8.60792e+01 lineto -7.07873e+01 8.606121e+01 lineto -closepath -gsave -4.835068e-01 4.835068e-01 4.835068e-01 setrgbcolor -fill -grestore -newpath -7.07873e+01 8.606121e+01 moveto -7.147371e+01 8.450771e+01 lineto -6.93527e+01 8.452784e+01 lineto -6.889118e+01 8.60792e+01 lineto -7.07873e+01 8.606121e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.005707e+01 8.731142e+01 moveto -7.07873e+01 8.606121e+01 lineto -6.889118e+01 8.60792e+01 lineto -6.84002e+01 8.732714e+01 lineto -7.005707e+01 8.731142e+01 lineto -closepath -gsave -4.714568e-01 4.714568e-01 4.714568e-01 setrgbcolor -fill -grestore -newpath -7.005707e+01 8.731142e+01 moveto -7.07873e+01 8.606121e+01 lineto -6.889118e+01 8.60792e+01 lineto -6.84002e+01 8.732714e+01 lineto -7.005707e+01 8.731142e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.928857e+01 8.824889e+01 moveto -7.005707e+01 8.731142e+01 lineto -6.84002e+01 8.732714e+01 lineto -6.788348e+01 8.826222e+01 lineto -6.928857e+01 8.824889e+01 lineto -closepath -gsave -4.604612e-01 4.604612e-01 4.604612e-01 setrgbcolor -fill -grestore -newpath -6.928857e+01 8.824889e+01 moveto -7.005707e+01 8.731142e+01 lineto -6.84002e+01 8.732714e+01 lineto -6.788348e+01 8.826222e+01 lineto -6.928857e+01 8.824889e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.848759e+01 8.886652e+01 moveto -6.928857e+01 8.824889e+01 lineto -6.788348e+01 8.826222e+01 lineto -6.734493e+01 8.887736e+01 lineto -6.848759e+01 8.886652e+01 lineto -closepath -gsave -4.505797e-01 4.505797e-01 4.505797e-01 setrgbcolor -fill -grestore -newpath -6.848759e+01 8.886652e+01 moveto -6.928857e+01 8.824889e+01 lineto -6.788348e+01 8.826222e+01 lineto -6.734493e+01 8.887736e+01 lineto -6.848759e+01 8.886652e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.766021e+01 8.915963e+01 moveto -6.848759e+01 8.886652e+01 lineto -6.734493e+01 8.887736e+01 lineto -6.678863e+01 8.91679e+01 lineto -6.766021e+01 8.915963e+01 lineto -closepath -gsave -4.418336e-01 4.418336e-01 4.418336e-01 setrgbcolor -fill -grestore -newpath -6.766021e+01 8.915963e+01 moveto -6.848759e+01 8.886652e+01 lineto -6.734493e+01 8.887736e+01 lineto -6.678863e+01 8.91679e+01 lineto -6.766021e+01 8.915963e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.335082e+01 8.576613e+01 moveto -6.421394e+01 8.707957e+01 lineto -6.447148e+01 8.707713e+01 lineto -6.389115e+01 8.5761e+01 lineto -6.335082e+01 8.576613e+01 lineto -closepath -gsave -5.229756e-01 5.229756e-01 5.229756e-01 setrgbcolor -fill -grestore -newpath -6.335082e+01 8.576613e+01 moveto -6.421394e+01 8.707957e+01 lineto -6.447148e+01 8.707713e+01 lineto -6.389115e+01 8.5761e+01 lineto -6.335082e+01 8.576613e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.250019e+01 8.415165e+01 moveto -6.335082e+01 8.576613e+01 lineto -6.389115e+01 8.5761e+01 lineto -6.331921e+01 8.414388e+01 lineto -6.250019e+01 8.415165e+01 lineto -closepath -gsave -5.377951e-01 5.377951e-01 5.377951e-01 setrgbcolor -fill -grestore -newpath -6.250019e+01 8.415165e+01 moveto -6.335082e+01 8.576613e+01 lineto -6.389115e+01 8.5761e+01 lineto -6.331921e+01 8.414388e+01 lineto -6.250019e+01 8.415165e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.166848e+01 8.224834e+01 moveto -6.250019e+01 8.415165e+01 lineto -6.331921e+01 8.414388e+01 lineto -6.276e+01 8.223798e+01 lineto -6.166848e+01 8.224834e+01 lineto -closepath -gsave -5.527942e-01 5.527942e-01 5.527942e-01 setrgbcolor -fill -grestore -newpath -6.166848e+01 8.224834e+01 moveto -6.250019e+01 8.415165e+01 lineto -6.331921e+01 8.414388e+01 lineto -6.276e+01 8.223798e+01 lineto -6.166848e+01 8.224834e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -1 setlinewidth -newpath -1.0e-01 setlinewidth -newpath -6.621879e+01 8.913163e+01 moveto -6.678863e+01 8.91679e+01 lineto -6.590603e+01 8.915963e+01 lineto -6.561738e+01 8.9126e+01 lineto -6.621879e+01 8.913163e+01 lineto -closepath -gsave -4.67803e-01 4.67803e-01 4.67803e-01 setrgbcolor -fill -grestore -newpath -6.563973e+01 8.876884e+01 moveto -6.621879e+01 8.913163e+01 lineto -6.561738e+01 8.9126e+01 lineto -6.532405e+01 8.876589e+01 lineto -6.563973e+01 8.876884e+01 lineto -closepath -gsave -4.804229e-01 4.804229e-01 4.804229e-01 setrgbcolor -fill -grestore -newpath -6.505582e+01 8.808228e+01 moveto -6.563973e+01 8.876884e+01 lineto -6.532405e+01 8.876589e+01 lineto -6.502827e+01 8.808202e+01 lineto -6.505582e+01 8.808228e+01 lineto -closepath -gsave -4.942213e-01 4.942213e-01 4.942213e-01 setrgbcolor -fill -grestore -newpath -6.447148e+01 8.707713e+01 moveto -6.505582e+01 8.808228e+01 lineto -6.502827e+01 8.808202e+01 lineto -6.473228e+01 8.707957e+01 lineto -6.447148e+01 8.707713e+01 lineto -closepath -gsave -5.090638e-01 5.090638e-01 5.090638e-01 setrgbcolor -fill -grestore -newpath -6.561738e+01 8.9126e+01 moveto -6.590603e+01 8.915963e+01 lineto -6.501784e+01 8.913486e+01 lineto -6.501215e+01 8.910912e+01 lineto -6.561738e+01 8.9126e+01 lineto -closepath -gsave -4.658018e-01 4.658018e-01 4.658018e-01 setrgbcolor -fill -grestore -newpath -6.532405e+01 8.876589e+01 moveto -6.561738e+01 8.9126e+01 lineto -6.501215e+01 8.910912e+01 lineto -6.500638e+01 8.875703e+01 lineto -6.532405e+01 8.876589e+01 lineto -closepath -gsave -4.790313e-01 4.790313e-01 4.790313e-01 setrgbcolor -fill -grestore -newpath -6.502827e+01 8.808202e+01 moveto -6.532405e+01 8.876589e+01 lineto -6.500638e+01 8.875703e+01 lineto -6.500056e+01 8.808124e+01 lineto -6.502827e+01 8.808202e+01 lineto -closepath -gsave -4.936404e-01 4.936404e-01 4.936404e-01 setrgbcolor -fill -grestore -newpath -6.473228e+01 8.707957e+01 moveto -6.502827e+01 8.808202e+01 lineto -6.500056e+01 8.808124e+01 lineto -6.499473e+01 8.708689e+01 lineto -6.473228e+01 8.707957e+01 lineto -closepath -gsave -5.095006e-01 5.095006e-01 5.095006e-01 setrgbcolor -fill -grestore -newpath -6.501215e+01 8.910912e+01 moveto -6.501784e+01 8.913486e+01 lineto -6.412954e+01 8.909377e+01 lineto -6.440686e+01 8.908112e+01 lineto -6.501215e+01 8.910912e+01 lineto -closepath -gsave -4.640249e-01 4.640249e-01 4.640249e-01 setrgbcolor -fill -grestore -newpath -6.500638e+01 8.875703e+01 moveto -6.501215e+01 8.910912e+01 lineto -6.440686e+01 8.908112e+01 lineto -6.468867e+01 8.874233e+01 lineto -6.500638e+01 8.875703e+01 lineto -closepath -gsave -4.777858e-01 4.777858e-01 4.777858e-01 setrgbcolor -fill -grestore -newpath -6.500056e+01 8.808124e+01 moveto -6.500638e+01 8.875703e+01 lineto -6.468867e+01 8.874233e+01 lineto -6.497284e+01 8.807996e+01 lineto -6.500056e+01 8.808124e+01 lineto -closepath -gsave -4.931166e-01 4.931166e-01 4.931166e-01 setrgbcolor -fill -grestore -newpath -6.499473e+01 8.708689e+01 moveto -6.500056e+01 8.808124e+01 lineto -6.497284e+01 8.807996e+01 lineto -6.525721e+01 8.709903e+01 lineto -6.499473e+01 8.708689e+01 lineto -closepath -gsave -5.098969e-01 5.098969e-01 5.098969e-01 setrgbcolor -fill -grestore -newpath -6.440686e+01 8.908112e+01 moveto -6.412954e+01 8.909377e+01 lineto -6.32466e+01 8.903658e+01 lineto -6.380522e+01 8.904215e+01 lineto -6.440686e+01 8.908112e+01 lineto -closepath -gsave -4.624724e-01 4.624724e-01 4.624724e-01 setrgbcolor -fill -grestore -newpath -6.468867e+01 8.874233e+01 moveto -6.440686e+01 8.908112e+01 lineto -6.380522e+01 8.904215e+01 lineto -6.437288e+01 8.872188e+01 lineto -6.468867e+01 8.874233e+01 lineto -closepath -gsave -4.766897e-01 4.766897e-01 4.766897e-01 setrgbcolor -fill -grestore -newpath -6.497284e+01 8.807996e+01 moveto -6.468867e+01 8.874233e+01 lineto -6.437288e+01 8.872188e+01 lineto -6.494528e+01 8.807818e+01 lineto -6.497284e+01 8.807996e+01 lineto -closepath -gsave -4.926527e-01 4.926527e-01 4.926527e-01 setrgbcolor -fill -grestore -newpath -6.525721e+01 8.709903e+01 moveto -6.497284e+01 8.807996e+01 lineto -6.494528e+01 8.807818e+01 lineto -6.551811e+01 8.711593e+01 lineto -6.525721e+01 8.709903e+01 lineto -closepath -gsave -5.102499e-01 5.102499e-01 5.102499e-01 setrgbcolor -fill -grestore -newpath -6.380522e+01 8.904215e+01 moveto -6.32466e+01 8.903658e+01 lineto -6.237448e+01 8.896367e+01 lineto -6.321094e+01 8.899247e+01 lineto -6.380522e+01 8.904215e+01 lineto -closepath -gsave -4.611441e-01 4.611441e-01 4.611441e-01 setrgbcolor -fill -grestore -newpath -6.437288e+01 8.872188e+01 moveto -6.380522e+01 8.904215e+01 lineto -6.321094e+01 8.899247e+01 lineto -6.406095e+01 8.86958e+01 lineto -6.437288e+01 8.872188e+01 lineto -closepath -gsave -4.757457e-01 4.757457e-01 4.757457e-01 setrgbcolor -fill -grestore -newpath -6.494528e+01 8.807818e+01 moveto -6.437288e+01 8.872188e+01 lineto -6.406095e+01 8.86958e+01 lineto -6.491807e+01 8.80759e+01 lineto -6.494528e+01 8.807818e+01 lineto -closepath -gsave -4.922509e-01 4.922509e-01 4.922509e-01 setrgbcolor -fill -grestore -newpath -6.551811e+01 8.711593e+01 moveto -6.494528e+01 8.807818e+01 lineto -6.491807e+01 8.80759e+01 lineto -6.577581e+01 8.713747e+01 lineto -6.551811e+01 8.711593e+01 lineto -closepath -gsave -5.105573e-01 5.105573e-01 5.105573e-01 setrgbcolor -fill -grestore -newpath -6.321094e+01 8.899247e+01 moveto -6.237448e+01 8.896367e+01 lineto -6.151854e+01 8.887547e+01 lineto -6.26277e+01 8.893237e+01 lineto -6.321094e+01 8.899247e+01 lineto -closepath -gsave -4.600392e-01 4.600392e-01 4.600392e-01 setrgbcolor -fill -grestore -newpath -6.406095e+01 8.86958e+01 moveto -6.321094e+01 8.899247e+01 lineto -6.26277e+01 8.893237e+01 lineto -6.375481e+01 8.866425e+01 lineto -6.406095e+01 8.86958e+01 lineto -closepath -gsave -4.749561e-01 4.749561e-01 4.749561e-01 setrgbcolor -fill -grestore -newpath -6.491807e+01 8.80759e+01 moveto -6.406095e+01 8.86958e+01 lineto -6.375481e+01 8.866425e+01 lineto -6.489136e+01 8.807315e+01 lineto -6.491807e+01 8.80759e+01 lineto -closepath -gsave -4.919131e-01 4.919131e-01 4.919131e-01 setrgbcolor -fill -grestore -newpath -6.577581e+01 8.713747e+01 moveto -6.491807e+01 8.80759e+01 lineto -6.489136e+01 8.807315e+01 lineto -6.602872e+01 8.716353e+01 lineto -6.577581e+01 8.713747e+01 lineto -closepath -gsave -5.108168e-01 5.108168e-01 5.108168e-01 setrgbcolor -fill -grestore -newpath -6.26277e+01 8.893237e+01 moveto -6.151854e+01 8.887547e+01 lineto -6.068407e+01 8.877254e+01 lineto -6.205908e+01 8.886223e+01 lineto -6.26277e+01 8.893237e+01 lineto -closepath -gsave -4.591567e-01 4.591567e-01 4.591567e-01 setrgbcolor -fill -grestore -newpath -6.375481e+01 8.866425e+01 moveto -6.26277e+01 8.893237e+01 lineto -6.205908e+01 8.886223e+01 lineto -6.345636e+01 8.862744e+01 lineto -6.375481e+01 8.866425e+01 lineto -closepath -gsave -4.743224e-01 4.743224e-01 4.743224e-01 setrgbcolor -fill -grestore -newpath -6.489136e+01 8.807315e+01 moveto -6.375481e+01 8.866425e+01 lineto -6.345636e+01 8.862744e+01 lineto -6.486532e+01 8.806994e+01 lineto -6.489136e+01 8.807315e+01 lineto -closepath -gsave -4.916409e-01 4.916409e-01 4.916409e-01 setrgbcolor -fill -grestore -newpath -6.602872e+01 8.716353e+01 moveto -6.489136e+01 8.807315e+01 lineto -6.486532e+01 8.806994e+01 lineto -6.62753e+01 8.719395e+01 lineto -6.602872e+01 8.716353e+01 lineto -closepath -gsave -5.110267e-01 5.110267e-01 5.110267e-01 setrgbcolor -fill -grestore -newpath -6.205908e+01 8.886223e+01 moveto -6.068407e+01 8.877254e+01 lineto -5.98762e+01 8.86555e+01 lineto -6.150859e+01 8.878248e+01 lineto -6.205908e+01 8.886223e+01 lineto -closepath -gsave -4.584958e-01 4.584958e-01 4.584958e-01 setrgbcolor -fill -grestore -newpath -6.345636e+01 8.862744e+01 moveto -6.205908e+01 8.886223e+01 lineto -6.150859e+01 8.878248e+01 lineto -6.316741e+01 8.858558e+01 lineto -6.345636e+01 8.862744e+01 lineto -closepath -gsave -4.738461e-01 4.738461e-01 4.738461e-01 setrgbcolor -fill -grestore -newpath -6.486532e+01 8.806994e+01 moveto -6.345636e+01 8.862744e+01 lineto -6.316741e+01 8.858558e+01 lineto -6.484011e+01 8.806629e+01 lineto -6.486532e+01 8.806994e+01 lineto -closepath -gsave -4.914357e-01 4.914357e-01 4.914357e-01 setrgbcolor -fill -grestore -newpath -6.62753e+01 8.719395e+01 moveto -6.486532e+01 8.806994e+01 lineto -6.484011e+01 8.806629e+01 lineto -6.651401e+01 8.722853e+01 lineto -6.62753e+01 8.719395e+01 lineto -closepath -gsave -5.111855e-01 5.111855e-01 5.111855e-01 setrgbcolor -fill -grestore -newpath -6.150859e+01 8.878248e+01 moveto -5.98762e+01 8.86555e+01 lineto -5.909993e+01 8.852508e+01 lineto -6.097963e+01 8.869361e+01 lineto -6.150859e+01 8.878248e+01 lineto -closepath -gsave -4.580557e-01 4.580557e-01 4.580557e-01 setrgbcolor -fill -grestore -newpath -6.316741e+01 8.858558e+01 moveto -6.150859e+01 8.878248e+01 lineto -6.097963e+01 8.869361e+01 lineto -6.288977e+01 8.853893e+01 lineto -6.316741e+01 8.858558e+01 lineto -closepath -gsave -4.735281e-01 4.735281e-01 4.735281e-01 setrgbcolor -fill -grestore -newpath -6.484011e+01 8.806629e+01 moveto -6.316741e+01 8.858558e+01 lineto -6.288977e+01 8.853893e+01 lineto -6.481588e+01 8.806222e+01 lineto -6.484011e+01 8.806629e+01 lineto -closepath -gsave -4.912983e-01 4.912983e-01 4.912983e-01 setrgbcolor -fill -grestore -newpath -6.651401e+01 8.722853e+01 moveto -6.484011e+01 8.806629e+01 lineto -6.481588e+01 8.806222e+01 lineto -6.674339e+01 8.726707e+01 lineto -6.651401e+01 8.722853e+01 lineto -closepath -gsave -5.112919e-01 5.112919e-01 5.112919e-01 setrgbcolor -fill -grestore -newpath -6.097963e+01 8.869361e+01 moveto -5.909993e+01 8.852508e+01 lineto -5.836003e+01 8.838208e+01 lineto -6.047546e+01 8.859617e+01 lineto -6.097963e+01 8.869361e+01 lineto -closepath -gsave -4.578358e-01 4.578358e-01 4.578358e-01 setrgbcolor -fill -grestore -newpath -6.288977e+01 8.853893e+01 moveto -6.097963e+01 8.869361e+01 lineto -6.047546e+01 8.859617e+01 lineto -6.262514e+01 8.848779e+01 lineto -6.288977e+01 8.853893e+01 lineto -closepath -gsave -4.733689e-01 4.733689e-01 4.733689e-01 setrgbcolor -fill -grestore -newpath -6.481588e+01 8.806222e+01 moveto -6.288977e+01 8.853893e+01 lineto -6.262514e+01 8.848779e+01 lineto -6.479279e+01 8.805775e+01 lineto -6.481588e+01 8.806222e+01 lineto -closepath -gsave -4.912294e-01 4.912294e-01 4.912294e-01 setrgbcolor -fill -grestore -newpath -6.674339e+01 8.726707e+01 moveto -6.481588e+01 8.806222e+01 lineto -6.479279e+01 8.805775e+01 lineto -6.696202e+01 8.730932e+01 lineto -6.674339e+01 8.726707e+01 lineto -closepath -gsave -5.113453e-01 5.113453e-01 5.113453e-01 setrgbcolor -fill -grestore -newpath -6.047546e+01 8.859617e+01 moveto -5.836003e+01 8.838208e+01 lineto -5.766107e+01 8.822738e+01 lineto -5.999918e+01 8.849076e+01 lineto -6.047546e+01 8.859617e+01 lineto -closepath -gsave -4.578358e-01 4.578358e-01 4.578358e-01 setrgbcolor -fill -grestore -newpath -6.262514e+01 8.848779e+01 moveto -6.047546e+01 8.859617e+01 lineto -5.999918e+01 8.849076e+01 lineto -6.237514e+01 8.843246e+01 lineto -6.262514e+01 8.848779e+01 lineto -closepath -gsave -4.733689e-01 4.733689e-01 4.733689e-01 setrgbcolor -fill -grestore -newpath -6.479279e+01 8.805775e+01 moveto -6.262514e+01 8.848779e+01 lineto -6.237514e+01 8.843246e+01 lineto -6.477098e+01 8.805293e+01 lineto -6.479279e+01 8.805775e+01 lineto -closepath -gsave -4.912294e-01 4.912294e-01 4.912294e-01 setrgbcolor -fill -grestore -newpath -6.696202e+01 8.730932e+01 moveto -6.479279e+01 8.805775e+01 lineto -6.477098e+01 8.805293e+01 lineto -6.716855e+01 8.735503e+01 lineto -6.696202e+01 8.730932e+01 lineto -closepath -gsave -5.113453e-01 5.113453e-01 5.113453e-01 setrgbcolor -fill -grestore -newpath -5.999918e+01 8.849076e+01 moveto -5.766107e+01 8.822738e+01 lineto -5.700736e+01 8.806194e+01 lineto -5.955373e+01 8.837802e+01 lineto -5.999918e+01 8.849076e+01 lineto -closepath -gsave -4.580557e-01 4.580557e-01 4.580557e-01 setrgbcolor -fill -grestore -newpath -6.237514e+01 8.843246e+01 moveto -5.999918e+01 8.849076e+01 lineto -5.955373e+01 8.837802e+01 lineto -6.214134e+01 8.837329e+01 lineto -6.237514e+01 8.843246e+01 lineto -closepath -gsave -4.735281e-01 4.735281e-01 4.735281e-01 setrgbcolor -fill -grestore -newpath -6.477098e+01 8.805293e+01 moveto -6.237514e+01 8.843246e+01 lineto -6.214134e+01 8.837329e+01 lineto -6.475058e+01 8.804776e+01 lineto -6.477098e+01 8.805293e+01 lineto -closepath -gsave -4.912983e-01 4.912983e-01 4.912983e-01 setrgbcolor -fill -grestore -newpath -6.716855e+01 8.735503e+01 moveto -6.477098e+01 8.805293e+01 lineto -6.475058e+01 8.804776e+01 lineto -6.736172e+01 8.740392e+01 lineto -6.716855e+01 8.735503e+01 lineto -closepath -gsave -5.112919e-01 5.112919e-01 5.112919e-01 setrgbcolor -fill -grestore -newpath -5.700736e+01 8.806194e+01 moveto -5.452149e+01 8.742743e+01 lineto -5.372906e+01 8.71978e+01 lineto -5.640292e+01 8.788678e+01 lineto -5.700736e+01 8.806194e+01 lineto -closepath -gsave -4.453787e-01 4.453787e-01 4.453787e-01 setrgbcolor -fill -grestore -newpath -5.955373e+01 8.837802e+01 moveto -5.700736e+01 8.806194e+01 lineto -5.640292e+01 8.788678e+01 lineto -5.914186e+01 8.825867e+01 lineto -5.955373e+01 8.837802e+01 lineto -closepath -gsave -4.584958e-01 4.584958e-01 4.584958e-01 setrgbcolor -fill -grestore -newpath -6.214134e+01 8.837329e+01 moveto -5.955373e+01 8.837802e+01 lineto -5.914186e+01 8.825867e+01 lineto -6.192515e+01 8.831064e+01 lineto -6.214134e+01 8.837329e+01 lineto -closepath -gsave -4.738461e-01 4.738461e-01 4.738461e-01 setrgbcolor -fill -grestore -newpath -6.475058e+01 8.804776e+01 moveto -6.214134e+01 8.837329e+01 lineto -6.192515e+01 8.831064e+01 lineto -6.473172e+01 8.80423e+01 lineto -6.475058e+01 8.804776e+01 lineto -closepath -gsave -4.914357e-01 4.914357e-01 4.914357e-01 setrgbcolor -fill -grestore -newpath -6.736172e+01 8.740392e+01 moveto -6.475058e+01 8.804776e+01 lineto -6.473172e+01 8.80423e+01 lineto -6.754032e+01 8.745568e+01 lineto -6.736172e+01 8.740392e+01 lineto -closepath -gsave -5.111855e-01 5.111855e-01 5.111855e-01 setrgbcolor -fill -grestore -newpath -5.640292e+01 8.788678e+01 moveto -5.372906e+01 8.71978e+01 lineto -5.300613e+01 8.695682e+01 lineto -5.585149e+01 8.770298e+01 lineto -5.640292e+01 8.788678e+01 lineto -closepath -gsave -4.46147e-01 4.46147e-01 4.46147e-01 setrgbcolor -fill -grestore -newpath -5.914186e+01 8.825867e+01 moveto -5.640292e+01 8.788678e+01 lineto -5.585149e+01 8.770298e+01 lineto -5.876611e+01 8.813342e+01 lineto -5.914186e+01 8.825867e+01 lineto -closepath -gsave -4.591567e-01 4.591567e-01 4.591567e-01 setrgbcolor -fill -grestore -newpath -6.192515e+01 8.831064e+01 moveto -5.914186e+01 8.825867e+01 lineto -5.876611e+01 8.813342e+01 lineto -6.172793e+01 8.82449e+01 lineto -6.192515e+01 8.831064e+01 lineto -closepath -gsave -4.743224e-01 4.743224e-01 4.743224e-01 setrgbcolor -fill -grestore -newpath -6.473172e+01 8.80423e+01 moveto -6.192515e+01 8.831064e+01 lineto -6.172793e+01 8.82449e+01 lineto -6.471451e+01 8.803656e+01 lineto -6.473172e+01 8.80423e+01 lineto -closepath -gsave -4.916409e-01 4.916409e-01 4.916409e-01 setrgbcolor -fill -grestore -newpath -6.754032e+01 8.745568e+01 moveto -6.473172e+01 8.80423e+01 lineto -6.471451e+01 8.803656e+01 lineto -6.770326e+01 8.750999e+01 lineto -6.754032e+01 8.745568e+01 lineto -closepath -gsave -5.110267e-01 5.110267e-01 5.110267e-01 setrgbcolor -fill -grestore -newpath -5.300613e+01 8.695682e+01 moveto -5.025156e+01 8.590061e+01 lineto -4.945352e+01 8.559219e+01 lineto -5.235713e+01 8.670601e+01 lineto -5.300613e+01 8.695682e+01 lineto -closepath -gsave -4.36316e-01 4.36316e-01 4.36316e-01 setrgbcolor -fill -grestore -newpath -5.585149e+01 8.770298e+01 moveto -5.300613e+01 8.695682e+01 lineto -5.235713e+01 8.670601e+01 lineto -5.535646e+01 8.751167e+01 lineto -5.585149e+01 8.770298e+01 lineto -closepath -gsave -4.471774e-01 4.471774e-01 4.471774e-01 setrgbcolor -fill -grestore -newpath -5.876611e+01 8.813342e+01 moveto -5.585149e+01 8.770298e+01 lineto -5.535646e+01 8.751167e+01 lineto -5.842879e+01 8.800306e+01 lineto -5.876611e+01 8.813342e+01 lineto -closepath -gsave -4.600392e-01 4.600392e-01 4.600392e-01 setrgbcolor -fill -grestore -newpath -6.172793e+01 8.82449e+01 moveto -5.876611e+01 8.813342e+01 lineto -5.842879e+01 8.800306e+01 lineto -6.155087e+01 8.817647e+01 lineto -6.172793e+01 8.82449e+01 lineto -closepath -gsave -4.749561e-01 4.749561e-01 4.749561e-01 setrgbcolor -fill -grestore -newpath -6.471451e+01 8.803656e+01 moveto -6.172793e+01 8.82449e+01 lineto -6.155087e+01 8.817647e+01 lineto -6.469906e+01 8.803059e+01 lineto -6.471451e+01 8.803656e+01 lineto -closepath -gsave -4.919131e-01 4.919131e-01 4.919131e-01 setrgbcolor -fill -grestore -newpath -6.770326e+01 8.750999e+01 moveto -6.471451e+01 8.803656e+01 lineto -6.469906e+01 8.803059e+01 lineto -6.784953e+01 8.756652e+01 lineto -6.770326e+01 8.750999e+01 lineto -closepath -gsave -5.108168e-01 5.108168e-01 5.108168e-01 setrgbcolor -fill -grestore -newpath -5.235713e+01 8.670601e+01 moveto -4.945352e+01 8.559219e+01 lineto -4.875133e+01 8.527357e+01 lineto -5.178609e+01 8.644689e+01 lineto -5.235713e+01 8.670601e+01 lineto -closepath -gsave -4.376986e-01 4.376986e-01 4.376986e-01 setrgbcolor -fill -grestore -newpath -5.535646e+01 8.751167e+01 moveto -5.235713e+01 8.670601e+01 lineto -5.178609e+01 8.644689e+01 lineto -5.492089e+01 8.731402e+01 lineto -5.535646e+01 8.751167e+01 lineto -closepath -gsave -4.484744e-01 4.484744e-01 4.484744e-01 setrgbcolor -fill -grestore -newpath -5.842879e+01 8.800306e+01 moveto -5.535646e+01 8.751167e+01 lineto -5.492089e+01 8.731402e+01 lineto -5.813199e+01 8.786838e+01 lineto -5.842879e+01 8.800306e+01 lineto -closepath -gsave -4.611441e-01 4.611441e-01 4.611441e-01 setrgbcolor -fill -grestore -newpath -6.155087e+01 8.817647e+01 moveto -5.842879e+01 8.800306e+01 lineto -5.813199e+01 8.786838e+01 lineto -6.139509e+01 8.810578e+01 lineto -6.155087e+01 8.817647e+01 lineto -closepath -gsave -4.757457e-01 4.757457e-01 4.757457e-01 setrgbcolor -fill -grestore -newpath -6.469906e+01 8.803059e+01 moveto -6.155087e+01 8.817647e+01 lineto -6.139509e+01 8.810578e+01 lineto -6.468547e+01 8.802442e+01 lineto -6.469906e+01 8.803059e+01 lineto -closepath -gsave -4.922509e-01 4.922509e-01 4.922509e-01 setrgbcolor -fill -grestore -newpath -6.784953e+01 8.756652e+01 moveto -6.469906e+01 8.803059e+01 lineto -6.468547e+01 8.802442e+01 lineto -6.797824e+01 8.762492e+01 lineto -6.784953e+01 8.756652e+01 lineto -closepath -gsave -5.105573e-01 5.105573e-01 5.105573e-01 setrgbcolor -fill -grestore -newpath -4.875133e+01 8.527357e+01 moveto -4.583957e+01 8.380292e+01 lineto -4.512968e+01 8.341748e+01 lineto -4.814931e+01 8.49467e+01 lineto -4.875133e+01 8.527357e+01 lineto -closepath -gsave -4.304199e-01 4.304199e-01 4.304199e-01 setrgbcolor -fill -grestore -newpath -5.178609e+01 8.644689e+01 moveto -4.875133e+01 8.527357e+01 lineto -4.814931e+01 8.49467e+01 lineto -5.129651e+01 8.618108e+01 lineto -5.178609e+01 8.644689e+01 lineto -closepath -gsave -4.393839e-01 4.393839e-01 4.393839e-01 setrgbcolor -fill -grestore -newpath -5.492089e+01 8.731402e+01 moveto -5.178609e+01 8.644689e+01 lineto -5.129651e+01 8.618108e+01 lineto -5.454746e+01 8.711127e+01 lineto -5.492089e+01 8.731402e+01 lineto -closepath -gsave -4.500437e-01 4.500437e-01 4.500437e-01 setrgbcolor -fill -grestore -newpath -5.813199e+01 8.786838e+01 moveto -5.492089e+01 8.731402e+01 lineto -5.454746e+01 8.711127e+01 lineto -5.787753e+01 8.773022e+01 lineto -5.813199e+01 8.786838e+01 lineto -closepath -gsave -4.624724e-01 4.624724e-01 4.624724e-01 setrgbcolor -fill -grestore -newpath -6.139509e+01 8.810578e+01 moveto -5.813199e+01 8.786838e+01 lineto -5.787753e+01 8.773022e+01 lineto -6.126152e+01 8.803327e+01 lineto -6.139509e+01 8.810578e+01 lineto -closepath -gsave -4.766897e-01 4.766897e-01 4.766897e-01 setrgbcolor -fill -grestore -newpath -6.468547e+01 8.802442e+01 moveto -6.139509e+01 8.810578e+01 lineto -6.126152e+01 8.803327e+01 lineto -6.467382e+01 8.80181e+01 lineto -6.468547e+01 8.802442e+01 lineto -closepath -gsave -4.926527e-01 4.926527e-01 4.926527e-01 setrgbcolor -fill -grestore -newpath -6.797824e+01 8.762492e+01 moveto -6.468547e+01 8.802442e+01 lineto -6.467382e+01 8.80181e+01 lineto -6.808858e+01 8.768483e+01 lineto -6.797824e+01 8.762492e+01 lineto -closepath -gsave -5.102499e-01 5.102499e-01 5.102499e-01 setrgbcolor -fill -grestore -newpath -4.512968e+01 8.341748e+01 moveto -4.226047e+01 8.1605e+01 lineto -4.158826e+01 8.11555e+01 lineto -4.454229e+01 8.30247e+01 lineto -4.512968e+01 8.341748e+01 lineto -closepath -gsave -4.250081e-01 4.250081e-01 4.250081e-01 setrgbcolor -fill -grestore -newpath -4.814931e+01 8.49467e+01 moveto -4.512968e+01 8.341748e+01 lineto -4.454229e+01 8.30247e+01 lineto -4.765119e+01 8.461361e+01 lineto -4.814931e+01 8.49467e+01 lineto -closepath -gsave -4.324546e-01 4.324546e-01 4.324546e-01 setrgbcolor -fill -grestore -newpath -5.129651e+01 8.618108e+01 moveto -4.814931e+01 8.49467e+01 lineto -4.765119e+01 8.461361e+01 lineto -5.089142e+01 8.59102e+01 lineto -5.129651e+01 8.618108e+01 lineto -closepath -gsave -4.413848e-01 4.413848e-01 4.413848e-01 setrgbcolor -fill -grestore -newpath -5.454746e+01 8.711127e+01 moveto -5.129651e+01 8.618108e+01 lineto -5.089142e+01 8.59102e+01 lineto -5.423847e+01 8.690465e+01 lineto -5.454746e+01 8.711127e+01 lineto -closepath -gsave -4.518913e-01 4.518913e-01 4.518913e-01 setrgbcolor -fill -grestore -newpath -5.787753e+01 8.773022e+01 moveto -5.454746e+01 8.711127e+01 lineto -5.423847e+01 8.690465e+01 lineto -5.766698e+01 8.758943e+01 lineto -5.787753e+01 8.773022e+01 lineto -closepath -gsave -4.640249e-01 4.640249e-01 4.640249e-01 setrgbcolor -fill -grestore -newpath -6.126152e+01 8.803327e+01 moveto -5.787753e+01 8.773022e+01 lineto -5.766698e+01 8.758943e+01 lineto -6.115101e+01 8.795937e+01 lineto -6.126152e+01 8.803327e+01 lineto -closepath -gsave -4.777858e-01 4.777858e-01 4.777858e-01 setrgbcolor -fill -grestore -newpath -6.467382e+01 8.80181e+01 moveto -6.126152e+01 8.803327e+01 lineto -6.115101e+01 8.795937e+01 lineto -6.466418e+01 8.801165e+01 lineto -6.467382e+01 8.80181e+01 lineto -closepath -gsave -4.931166e-01 4.931166e-01 4.931166e-01 setrgbcolor -fill -grestore -newpath -6.808858e+01 8.768483e+01 moveto -6.467382e+01 8.80181e+01 lineto -6.466418e+01 8.801165e+01 lineto -6.817989e+01 8.774588e+01 lineto -6.808858e+01 8.768483e+01 lineto -closepath -gsave -5.098969e-01 5.098969e-01 5.098969e-01 setrgbcolor -fill -grestore -newpath -4.158826e+01 8.11555e+01 moveto -3.881148e+01 7.902016e+01 lineto -3.8221e+01 7.851105e+01 lineto -4.10604e+01 8.070038e+01 lineto -4.158826e+01 8.11555e+01 lineto -closepath -gsave -4.211434e-01 4.211434e-01 4.211434e-01 setrgbcolor -fill -grestore -newpath -4.454229e+01 8.30247e+01 moveto -4.158826e+01 8.11555e+01 lineto -4.10604e+01 8.070038e+01 lineto -4.408103e+01 8.262701e+01 lineto -4.454229e+01 8.30247e+01 lineto -closepath -gsave -4.273587e-01 4.273587e-01 4.273587e-01 setrgbcolor -fill -grestore -newpath -4.765119e+01 8.461361e+01 moveto -4.454229e+01 8.30247e+01 lineto -4.408103e+01 8.262701e+01 lineto -4.726002e+01 8.427635e+01 lineto -4.765119e+01 8.461361e+01 lineto -closepath -gsave -4.348497e-01 4.348497e-01 4.348497e-01 setrgbcolor -fill -grestore -newpath -5.089142e+01 8.59102e+01 moveto -4.765119e+01 8.461361e+01 lineto -4.726002e+01 8.427635e+01 lineto -5.057332e+01 8.563593e+01 lineto -5.089142e+01 8.59102e+01 lineto -closepath -gsave -4.437154e-01 4.437154e-01 4.437154e-01 setrgbcolor -fill -grestore -newpath -5.423847e+01 8.690465e+01 moveto -5.089142e+01 8.59102e+01 lineto -5.057332e+01 8.563593e+01 lineto -5.399583e+01 8.669545e+01 lineto -5.423847e+01 8.690465e+01 lineto -closepath -gsave -4.540234e-01 4.540234e-01 4.540234e-01 setrgbcolor -fill -grestore -newpath -5.766698e+01 8.758943e+01 moveto -5.423847e+01 8.690465e+01 lineto -5.399583e+01 8.669545e+01 lineto -5.750164e+01 8.744688e+01 lineto -5.766698e+01 8.758943e+01 lineto -closepath -gsave -4.658018e-01 4.658018e-01 4.658018e-01 setrgbcolor -fill -grestore -newpath -6.115101e+01 8.795937e+01 moveto -5.766698e+01 8.758943e+01 lineto -5.750164e+01 8.744688e+01 lineto -6.106423e+01 8.788454e+01 lineto -6.115101e+01 8.795937e+01 lineto -closepath -gsave -4.790313e-01 4.790313e-01 4.790313e-01 setrgbcolor -fill -grestore -newpath -6.466418e+01 8.801165e+01 moveto -6.115101e+01 8.795937e+01 lineto -6.106423e+01 8.788454e+01 lineto -6.46566e+01 8.800512e+01 lineto -6.466418e+01 8.801165e+01 lineto -closepath -gsave -4.936404e-01 4.936404e-01 4.936404e-01 setrgbcolor -fill -grestore -newpath -6.817989e+01 8.774588e+01 moveto -6.466418e+01 8.801165e+01 lineto -6.46566e+01 8.800512e+01 lineto -6.825158e+01 8.78077e+01 lineto -6.817989e+01 8.774588e+01 lineto -closepath -gsave -5.095006e-01 5.095006e-01 5.095006e-01 setrgbcolor -fill -grestore -newpath -3.558434e+01 7.60756e+01 moveto -3.317036e+01 7.341247e+01 lineto -3.266476e+01 7.280359e+01 lineto -3.511708e+01 7.55129e+01 lineto -3.558434e+01 7.60756e+01 lineto -closepath -gsave -4.142778e-01 4.142778e-01 4.142778e-01 setrgbcolor -fill -grestore -newpath -3.8221e+01 7.851105e+01 moveto -3.558434e+01 7.60756e+01 lineto -3.511708e+01 7.55129e+01 lineto -3.779563e+01 7.799879e+01 lineto -3.8221e+01 7.851105e+01 lineto -closepath -gsave -4.1855e-01 4.1855e-01 4.1855e-01 setrgbcolor -fill -grestore -newpath -4.10604e+01 8.070038e+01 moveto -3.8221e+01 7.851105e+01 lineto -3.779563e+01 7.799879e+01 lineto -4.068013e+01 8.024243e+01 lineto -4.10604e+01 8.070038e+01 lineto -closepath -gsave -4.237942e-01 4.237942e-01 4.237942e-01 setrgbcolor -fill -grestore -newpath -4.408103e+01 8.262701e+01 moveto -4.10604e+01 8.070038e+01 lineto -4.068013e+01 8.024243e+01 lineto -4.374874e+01 8.222684e+01 lineto -4.408103e+01 8.262701e+01 lineto -closepath -gsave -4.301222e-01 4.301222e-01 4.301222e-01 setrgbcolor -fill -grestore -newpath -4.726002e+01 8.427635e+01 moveto -4.408103e+01 8.262701e+01 lineto -4.374874e+01 8.222684e+01 lineto -4.697823e+01 8.3937e+01 lineto -4.726002e+01 8.427635e+01 lineto -closepath -gsave -4.376299e-01 4.376299e-01 4.376299e-01 setrgbcolor -fill -grestore -newpath -5.057332e+01 8.563593e+01 moveto -4.726002e+01 8.427635e+01 lineto -4.697823e+01 8.3937e+01 lineto -5.034416e+01 8.535996e+01 lineto -5.057332e+01 8.563593e+01 lineto -closepath -gsave -4.463905e-01 4.463905e-01 4.463905e-01 setrgbcolor -fill -grestore -newpath -5.399583e+01 8.669545e+01 moveto -5.057332e+01 8.563593e+01 lineto -5.034416e+01 8.535996e+01 lineto -5.382103e+01 8.648494e+01 lineto -5.399583e+01 8.669545e+01 lineto -closepath -gsave -4.564463e-01 4.564463e-01 4.564463e-01 setrgbcolor -fill -grestore -newpath -5.750164e+01 8.744688e+01 moveto -5.399583e+01 8.669545e+01 lineto -5.382103e+01 8.648494e+01 lineto -5.738254e+01 8.730344e+01 lineto -5.750164e+01 8.744688e+01 lineto -closepath -gsave -4.67803e-01 4.67803e-01 4.67803e-01 setrgbcolor -fill -grestore -newpath -6.106423e+01 8.788454e+01 moveto -5.750164e+01 8.744688e+01 lineto -5.738254e+01 8.730344e+01 lineto -6.100171e+01 8.780925e+01 lineto -6.106423e+01 8.788454e+01 lineto -closepath -gsave -4.804229e-01 4.804229e-01 4.804229e-01 setrgbcolor -fill -grestore -newpath -6.46566e+01 8.800512e+01 moveto -6.106423e+01 8.788454e+01 lineto -6.100171e+01 8.780925e+01 lineto -6.465115e+01 8.799855e+01 lineto -6.46566e+01 8.800512e+01 lineto -closepath -gsave -4.942213e-01 4.942213e-01 4.942213e-01 setrgbcolor -fill -grestore -newpath -6.825158e+01 8.78077e+01 moveto -6.46566e+01 8.800512e+01 lineto -6.465115e+01 8.799855e+01 lineto -6.830323e+01 8.78699e+01 lineto -6.825158e+01 8.78077e+01 lineto -closepath -gsave -5.090638e-01 5.090638e-01 5.090638e-01 setrgbcolor -fill -grestore -newpath -2.851121e+01 6.679827e+01 moveto -2.684142e+01 6.354772e+01 lineto -2.648002e+01 6.282919e+01 lineto -2.816563e+01 6.611118e+01 lineto -2.851121e+01 6.679827e+01 lineto -closepath -gsave -4.080136e-01 4.080136e-01 4.080136e-01 setrgbcolor -fill -grestore -newpath -3.045723e+01 6.989136e+01 moveto -2.851121e+01 6.679827e+01 lineto -2.816563e+01 6.611118e+01 lineto -3.013009e+01 6.924092e+01 lineto -3.045723e+01 6.989136e+01 lineto -closepath -gsave -4.103672e-01 4.103672e-01 4.103672e-01 setrgbcolor -fill -grestore -newpath -3.266476e+01 7.280359e+01 moveto -3.045723e+01 6.989136e+01 lineto -3.013009e+01 6.924092e+01 lineto -3.235852e+01 7.219471e+01 lineto -3.266476e+01 7.280359e+01 lineto -closepath -gsave -4.13333e-01 4.13333e-01 4.13333e-01 setrgbcolor -fill -grestore -newpath -3.511708e+01 7.55129e+01 moveto -3.266476e+01 7.280359e+01 lineto -3.235852e+01 7.219471e+01 lineto -3.483407e+01 7.49502e+01 lineto -3.511708e+01 7.55129e+01 lineto -closepath -gsave -4.170133e-01 4.170133e-01 4.170133e-01 setrgbcolor -fill -grestore -newpath -3.779563e+01 7.799879e+01 moveto -3.511708e+01 7.55129e+01 lineto -3.483407e+01 7.49502e+01 lineto -3.753799e+01 7.748653e+01 lineto -3.779563e+01 7.799879e+01 lineto -closepath -gsave -4.215107e-01 4.215107e-01 4.215107e-01 setrgbcolor -fill -grestore -newpath -4.068013e+01 8.024243e+01 moveto -3.779563e+01 7.799879e+01 lineto -3.753799e+01 7.748653e+01 lineto -4.04498e+01 7.978448e+01 lineto -4.068013e+01 8.024243e+01 lineto -closepath -gsave -4.269226e-01 4.269226e-01 4.269226e-01 setrgbcolor -fill -grestore -newpath -4.374874e+01 8.222684e+01 moveto -4.068013e+01 8.024243e+01 lineto -4.04498e+01 7.978448e+01 lineto -4.354748e+01 8.182668e+01 lineto -4.374874e+01 8.222684e+01 lineto -closepath -gsave -4.33336e-01 4.33336e-01 4.33336e-01 setrgbcolor -fill -grestore -newpath -4.697823e+01 8.3937e+01 moveto -4.374874e+01 8.222684e+01 lineto -4.354748e+01 8.182668e+01 lineto -4.680755e+01 8.359765e+01 lineto -4.697823e+01 8.3937e+01 lineto -closepath -gsave -4.40821e-01 4.40821e-01 4.40821e-01 setrgbcolor -fill -grestore -newpath -5.034416e+01 8.535996e+01 moveto -4.697823e+01 8.3937e+01 lineto -4.680755e+01 8.359765e+01 lineto -5.020535e+01 8.508399e+01 lineto -5.034416e+01 8.535996e+01 lineto -closepath -gsave -4.494247e-01 4.494247e-01 4.494247e-01 setrgbcolor -fill -grestore -newpath -5.382103e+01 8.648494e+01 moveto -5.034416e+01 8.535996e+01 lineto -5.020535e+01 8.508399e+01 lineto -5.371516e+01 8.627444e+01 lineto -5.382103e+01 8.648494e+01 lineto -closepath -gsave -4.591655e-01 4.591655e-01 4.591655e-01 setrgbcolor -fill -grestore -newpath -5.738254e+01 8.730344e+01 moveto -5.382103e+01 8.648494e+01 lineto -5.371516e+01 8.627444e+01 lineto -5.731039e+01 8.716e+01 lineto -5.738254e+01 8.730344e+01 lineto -closepath -gsave -4.700275e-01 4.700275e-01 4.700275e-01 setrgbcolor -fill -grestore -newpath -6.100171e+01 8.780925e+01 moveto -5.738254e+01 8.730344e+01 lineto -5.731039e+01 8.716e+01 lineto -6.096384e+01 8.773396e+01 lineto -6.100171e+01 8.780925e+01 lineto -closepath -gsave -4.819564e-01 4.819564e-01 4.819564e-01 setrgbcolor -fill -grestore -newpath -6.465115e+01 8.799855e+01 moveto -6.100171e+01 8.780925e+01 lineto -6.096384e+01 8.773396e+01 lineto -6.464785e+01 8.799198e+01 lineto -6.465115e+01 8.799855e+01 lineto -closepath -gsave -4.948565e-01 4.948565e-01 4.948565e-01 setrgbcolor -fill -grestore -newpath -6.830323e+01 8.78699e+01 moveto -6.465115e+01 8.799855e+01 lineto -6.464785e+01 8.799198e+01 lineto -6.833452e+01 8.79321e+01 lineto -6.830323e+01 8.78699e+01 lineto -closepath -gsave -5.085896e-01 5.085896e-01 5.085896e-01 setrgbcolor -fill -grestore -newpath -2.399421e+01 5.590881e+01 moveto -2.321282e+01 5.232281e+01 lineto -2.30784e+01 5.154813e+01 lineto -2.386231e+01 5.514862e+01 lineto -2.399421e+01 5.590881e+01 lineto -closepath -gsave -4.053715e-01 4.053715e-01 4.053715e-01 setrgbcolor -fill -grestore -newpath -2.508603e+01 5.941979e+01 moveto -2.399421e+01 5.590881e+01 lineto -2.386231e+01 5.514862e+01 lineto -2.495765e+01 5.867985e+01 lineto -2.508603e+01 5.941979e+01 lineto -closepath -gsave -4.066883e-01 4.066883e-01 4.066883e-01 setrgbcolor -fill -grestore -newpath -2.648002e+01 6.282919e+01 moveto -2.508603e+01 5.941979e+01 lineto -2.495765e+01 5.867985e+01 lineto -2.635612e+01 6.211508e+01 lineto -2.648002e+01 6.282919e+01 lineto -closepath -gsave -4.083717e-01 4.083717e-01 4.083717e-01 setrgbcolor -fill -grestore -newpath -2.816563e+01 6.611118e+01 moveto -2.648002e+01 6.282919e+01 lineto -2.635612e+01 6.211508e+01 lineto -2.804715e+01 6.542832e+01 lineto -2.816563e+01 6.611118e+01 lineto -closepath -gsave -4.104953e-01 4.104953e-01 4.104953e-01 setrgbcolor -fill -grestore -newpath -3.013009e+01 6.924092e+01 moveto -2.816563e+01 6.611118e+01 lineto -2.804715e+01 6.542832e+01 lineto -3.001792e+01 6.859448e+01 lineto -3.013009e+01 6.924092e+01 lineto -closepath -gsave -4.131389e-01 4.131389e-01 4.131389e-01 setrgbcolor -fill -grestore -newpath -3.235852e+01 7.219471e+01 moveto -3.013009e+01 6.924092e+01 lineto -3.001792e+01 6.859448e+01 lineto -3.225353e+01 7.158959e+01 lineto -3.235852e+01 7.219471e+01 lineto -closepath -gsave -4.163863e-01 4.163863e-01 4.163863e-01 setrgbcolor -fill -grestore -newpath -3.483407e+01 7.49502e+01 moveto -3.235852e+01 7.219471e+01 lineto -3.225353e+01 7.158959e+01 lineto -3.473704e+01 7.439097e+01 lineto -3.483407e+01 7.49502e+01 lineto -closepath -gsave -4.203225e-01 4.203225e-01 4.203225e-01 setrgbcolor -fill -grestore -newpath -3.753799e+01 7.748653e+01 moveto -3.483407e+01 7.49502e+01 lineto -3.473704e+01 7.439097e+01 lineto -3.744965e+01 7.697742e+01 lineto -3.753799e+01 7.748653e+01 lineto -closepath -gsave -4.250291e-01 4.250291e-01 4.250291e-01 setrgbcolor -fill -grestore -newpath -4.04498e+01 7.978448e+01 moveto -3.753799e+01 7.748653e+01 lineto -3.744965e+01 7.697742e+01 lineto -4.037083e+01 7.932936e+01 lineto -4.04498e+01 7.978448e+01 lineto -closepath -gsave -4.305805e-01 4.305805e-01 4.305805e-01 setrgbcolor -fill -grestore -newpath -4.354748e+01 8.182668e+01 moveto -4.04498e+01 7.978448e+01 lineto -4.037083e+01 7.932936e+01 lineto -4.347847e+01 8.142898e+01 lineto -4.354748e+01 8.182668e+01 lineto -closepath -gsave -4.370387e-01 4.370387e-01 4.370387e-01 setrgbcolor -fill -grestore -newpath -4.680755e+01 8.359765e+01 moveto -4.354748e+01 8.182668e+01 lineto -4.347847e+01 8.142898e+01 lineto -4.674903e+01 8.326038e+01 lineto -4.680755e+01 8.359765e+01 lineto -closepath -gsave -4.444485e-01 4.444485e-01 4.444485e-01 setrgbcolor -fill -grestore -newpath -5.020535e+01 8.508399e+01 moveto -4.680755e+01 8.359765e+01 lineto -4.674903e+01 8.326038e+01 lineto -5.015777e+01 8.480971e+01 lineto -5.020535e+01 8.508399e+01 lineto -closepath -gsave -4.528323e-01 4.528323e-01 4.528323e-01 setrgbcolor -fill -grestore -newpath -5.371516e+01 8.627444e+01 moveto -5.020535e+01 8.508399e+01 lineto -5.015777e+01 8.480971e+01 lineto -5.367886e+01 8.606524e+01 lineto -5.371516e+01 8.627444e+01 lineto -closepath -gsave -4.621856e-01 4.621856e-01 4.621856e-01 setrgbcolor -fill -grestore -newpath -5.731039e+01 8.716e+01 moveto -5.371516e+01 8.627444e+01 lineto -5.367886e+01 8.606524e+01 lineto -5.728566e+01 8.701745e+01 lineto -5.731039e+01 8.716e+01 lineto -closepath -gsave -4.724735e-01 4.724735e-01 4.724735e-01 setrgbcolor -fill -grestore -newpath -6.096384e+01 8.773396e+01 moveto -5.731039e+01 8.716e+01 lineto -5.728566e+01 8.701745e+01 lineto -6.095086e+01 8.765914e+01 lineto -6.096384e+01 8.773396e+01 lineto -closepath -gsave -4.836272e-01 4.836272e-01 4.836272e-01 setrgbcolor -fill -grestore -newpath -6.464785e+01 8.799198e+01 moveto -6.096384e+01 8.773396e+01 lineto -6.095086e+01 8.765914e+01 lineto -6.464671e+01 8.798545e+01 lineto -6.464785e+01 8.799198e+01 lineto -closepath -gsave -4.955428e-01 4.955428e-01 4.955428e-01 setrgbcolor -fill -grestore -newpath -6.833452e+01 8.79321e+01 moveto -6.464785e+01 8.799198e+01 lineto -6.464671e+01 8.798545e+01 lineto -6.834524e+01 8.799392e+01 lineto -6.833452e+01 8.79321e+01 lineto -closepath -gsave -5.080812e-01 5.080812e-01 5.080812e-01 setrgbcolor -fill -grestore -newpath -2.264257e+01 4.060507e+01 moveto -2.313959e+01 3.700225e+01 lineto -2.326346e+01 3.623828e+01 lineto -2.276791e+01 3.983203e+01 lineto -2.264257e+01 4.060507e+01 lineto -closepath -gsave -4.040792e-01 4.040792e-01 4.040792e-01 setrgbcolor -fill -grestore -newpath -2.246622e+01 4.424873e+01 moveto -2.264257e+01 4.060507e+01 lineto -2.276791e+01 3.983203e+01 lineto -2.259208e+01 4.347246e+01 lineto -2.246622e+01 4.424873e+01 lineto -closepath -gsave -4.046495e-01 4.046495e-01 4.046495e-01 setrgbcolor -fill -grestore -newpath -2.261186e+01 4.790564e+01 moveto -2.246622e+01 4.424873e+01 lineto -2.259208e+01 4.347246e+01 lineto -2.273729e+01 4.713204e+01 lineto -2.261186e+01 4.790564e+01 lineto -closepath -gsave -4.054102e-01 4.054102e-01 4.054102e-01 setrgbcolor -fill -grestore -newpath -2.30784e+01 5.154813e+01 moveto -2.261186e+01 4.790564e+01 lineto -2.273729e+01 4.713204e+01 lineto -2.320245e+01 5.078304e+01 lineto -2.30784e+01 5.154813e+01 lineto -closepath -gsave -4.063991e-01 4.063991e-01 4.063991e-01 setrgbcolor -fill -grestore -newpath -2.386231e+01 5.514862e+01 moveto -2.30784e+01 5.154813e+01 lineto -2.320245e+01 5.078304e+01 lineto -2.398404e+01 5.439784e+01 lineto -2.386231e+01 5.514862e+01 lineto -closepath -gsave -4.076618e-01 4.076618e-01 4.076618e-01 setrgbcolor -fill -grestore -newpath -2.495765e+01 5.867985e+01 moveto -2.386231e+01 5.514862e+01 lineto -2.398404e+01 5.439784e+01 lineto -2.507613e+01 5.794906e+01 lineto -2.495765e+01 5.867985e+01 lineto -closepath -gsave -4.092507e-01 4.092507e-01 4.092507e-01 setrgbcolor -fill -grestore -newpath -2.635612e+01 6.211508e+01 moveto -2.495765e+01 5.867985e+01 lineto -2.507613e+01 5.794906e+01 lineto -2.647047e+01 6.140981e+01 lineto -2.635612e+01 6.211508e+01 lineto -closepath -gsave -4.112247e-01 4.112247e-01 4.112247e-01 setrgbcolor -fill -grestore -newpath -2.804715e+01 6.542832e+01 moveto -2.635612e+01 6.211508e+01 lineto -2.647047e+01 6.140981e+01 lineto -2.815649e+01 6.475391e+01 lineto -2.804715e+01 6.542832e+01 lineto -closepath -gsave -4.13648e-01 4.13648e-01 4.13648e-01 setrgbcolor -fill -grestore -newpath -3.001792e+01 6.859448e+01 moveto -2.804715e+01 6.542832e+01 lineto -2.815649e+01 6.475391e+01 lineto -3.012144e+01 6.795604e+01 lineto -3.001792e+01 6.859448e+01 lineto -closepath -gsave -4.165877e-01 4.165877e-01 4.165877e-01 setrgbcolor -fill -grestore -newpath -3.225353e+01 7.158959e+01 moveto -3.001792e+01 6.859448e+01 lineto -3.012144e+01 6.795604e+01 lineto -3.235043e+01 7.099195e+01 lineto -3.225353e+01 7.158959e+01 lineto -closepath -gsave -4.201119e-01 4.201119e-01 4.201119e-01 setrgbcolor -fill -grestore -newpath -3.473704e+01 7.439097e+01 moveto -3.225353e+01 7.158959e+01 lineto -3.235043e+01 7.099195e+01 lineto -3.482659e+01 7.383866e+01 lineto -3.473704e+01 7.439097e+01 lineto -closepath -gsave -4.242867e-01 4.242867e-01 4.242867e-01 setrgbcolor -fill -grestore -newpath -3.744965e+01 7.697742e+01 moveto -3.473704e+01 7.439097e+01 lineto -3.482659e+01 7.383866e+01 lineto -3.753118e+01 7.647461e+01 lineto -3.744965e+01 7.697742e+01 lineto -closepath -gsave -4.291726e-01 4.291726e-01 4.291726e-01 setrgbcolor -fill -grestore -newpath -4.037083e+01 7.932936e+01 moveto -3.744965e+01 7.697742e+01 lineto -3.753118e+01 7.647461e+01 lineto -4.044371e+01 7.887986e+01 lineto -4.037083e+01 7.932936e+01 lineto -closepath -gsave -4.348207e-01 4.348207e-01 4.348207e-01 setrgbcolor -fill -grestore -newpath -4.347847e+01 8.142898e+01 moveto -4.037083e+01 7.932936e+01 lineto -4.044371e+01 7.887986e+01 lineto -4.354215e+01 8.10362e+01 lineto -4.347847e+01 8.142898e+01 lineto -closepath -gsave -4.412687e-01 4.412687e-01 4.412687e-01 setrgbcolor -fill -grestore -newpath -4.674903e+01 8.326038e+01 moveto -4.347847e+01 8.142898e+01 lineto -4.354215e+01 8.10362e+01 lineto -4.680304e+01 8.29273e+01 lineto -4.674903e+01 8.326038e+01 lineto -closepath -gsave -4.485372e-01 4.485372e-01 4.485372e-01 setrgbcolor -fill -grestore -newpath -5.015777e+01 8.480971e+01 moveto -4.674903e+01 8.326038e+01 lineto -4.680304e+01 8.29273e+01 lineto -5.020168e+01 8.453884e+01 lineto -5.015777e+01 8.480971e+01 lineto -closepath -gsave -4.566258e-01 4.566258e-01 4.566258e-01 setrgbcolor -fill -grestore -newpath -5.367886e+01 8.606524e+01 moveto -5.015777e+01 8.480971e+01 lineto -5.020168e+01 8.453884e+01 lineto -5.371236e+01 8.585862e+01 lineto -5.367886e+01 8.606524e+01 lineto -closepath -gsave -4.655098e-01 4.655098e-01 4.655098e-01 setrgbcolor -fill -grestore -newpath -5.728566e+01 8.701745e+01 moveto -5.367886e+01 8.606524e+01 lineto -5.371236e+01 8.585862e+01 lineto -5.730849e+01 8.687666e+01 lineto -5.728566e+01 8.701745e+01 lineto -closepath -gsave -4.751377e-01 4.751377e-01 4.751377e-01 setrgbcolor -fill -grestore -newpath -6.095086e+01 8.765914e+01 moveto -5.728566e+01 8.701745e+01 lineto -5.730849e+01 8.687666e+01 lineto -6.096284e+01 8.758524e+01 lineto -6.095086e+01 8.765914e+01 lineto -closepath -gsave -4.854295e-01 4.854295e-01 4.854295e-01 setrgbcolor -fill -grestore -newpath -6.464671e+01 8.798545e+01 moveto -6.095086e+01 8.765914e+01 lineto -6.096284e+01 8.758524e+01 lineto -6.464776e+01 8.797901e+01 lineto -6.464671e+01 8.798545e+01 lineto -closepath -gsave -4.962766e-01 4.962766e-01 4.962766e-01 setrgbcolor -fill -grestore -newpath -6.834524e+01 8.799392e+01 moveto -6.464671e+01 8.798545e+01 lineto -6.464776e+01 8.797901e+01 lineto -6.833534e+01 8.805497e+01 lineto -6.834524e+01 8.799392e+01 lineto -closepath -gsave -5.075421e-01 5.075421e-01 5.075421e-01 setrgbcolor -fill -grestore -newpath -2.51963e+01 2.929914e+01 moveto -2.661897e+01 2.600627e+01 lineto -2.696951e+01 2.531685e+01 lineto -2.555984e+01 2.858416e+01 lineto -2.51963e+01 2.929914e+01 lineto -closepath -gsave -4.049069e-01 4.049069e-01 4.049069e-01 setrgbcolor -fill -grestore -newpath -2.407497e+01 3.271844e+01 moveto -2.51963e+01 2.929914e+01 lineto -2.555984e+01 2.858416e+01 lineto -2.444874e+01 3.198332e+01 lineto -2.407497e+01 3.271844e+01 lineto -closepath -gsave -4.051705e-01 4.051705e-01 4.051705e-01 setrgbcolor -fill -grestore -newpath -2.326346e+01 3.623828e+01 moveto -2.407497e+01 3.271844e+01 lineto -2.444874e+01 3.198332e+01 lineto -2.364464e+01 3.548858e+01 lineto -2.326346e+01 3.623828e+01 lineto -closepath -gsave -4.055818e-01 4.055818e-01 4.055818e-01 setrgbcolor -fill -grestore -newpath -2.276791e+01 3.983203e+01 moveto -2.326346e+01 3.623828e+01 lineto -2.364464e+01 3.548858e+01 lineto -2.315362e+01 3.907343e+01 lineto -2.276791e+01 3.983203e+01 lineto -closepath -gsave -4.061587e-01 4.061587e-01 4.061587e-01 setrgbcolor -fill -grestore -newpath -2.259208e+01 4.347246e+01 moveto -2.276791e+01 3.983203e+01 lineto -2.315362e+01 3.907343e+01 lineto -2.297939e+01 4.271071e+01 lineto -2.259208e+01 4.347246e+01 lineto -closepath -gsave -4.069254e-01 4.069254e-01 4.069254e-01 setrgbcolor -fill -grestore -newpath -2.273729e+01 4.713204e+01 moveto -2.259208e+01 4.347246e+01 lineto -2.297939e+01 4.271071e+01 lineto -2.312328e+01 4.637289e+01 lineto -2.273729e+01 4.713204e+01 lineto -closepath -gsave -4.079122e-01 4.079122e-01 4.079122e-01 setrgbcolor -fill -grestore -newpath -2.320245e+01 5.078304e+01 moveto -2.273729e+01 4.713204e+01 lineto -2.312328e+01 4.637289e+01 lineto -2.358419e+01 5.003225e+01 lineto -2.320245e+01 5.078304e+01 lineto -closepath -gsave -4.091554e-01 4.091554e-01 4.091554e-01 setrgbcolor -fill -grestore -newpath -2.398404e+01 5.439784e+01 moveto -2.320245e+01 5.078304e+01 lineto -2.358419e+01 5.003225e+01 lineto -2.435864e+01 5.366108e+01 lineto -2.398404e+01 5.439784e+01 lineto -closepath -gsave -4.106969e-01 4.106969e-01 4.106969e-01 setrgbcolor -fill -grestore -newpath -2.507613e+01 5.794906e+01 moveto -2.398404e+01 5.439784e+01 lineto -2.435864e+01 5.366108e+01 lineto -2.544076e+01 5.723192e+01 lineto -2.507613e+01 5.794906e+01 lineto -closepath -gsave -4.125832e-01 4.125832e-01 4.125832e-01 setrgbcolor -fill -grestore -newpath -2.647047e+01 6.140981e+01 moveto -2.507613e+01 5.794906e+01 lineto -2.544076e+01 5.723192e+01 lineto -2.682237e+01 6.071772e+01 lineto -2.647047e+01 6.140981e+01 lineto -closepath -gsave -4.148649e-01 4.148649e-01 4.148649e-01 setrgbcolor -fill -grestore -newpath -2.815649e+01 6.475391e+01 moveto -2.647047e+01 6.140981e+01 lineto -2.682237e+01 6.071772e+01 lineto -2.849299e+01 6.409211e+01 lineto -2.815649e+01 6.475391e+01 lineto -closepath -gsave -4.175945e-01 4.175945e-01 4.175945e-01 setrgbcolor -fill -grestore -newpath -3.012144e+01 6.795604e+01 moveto -2.815649e+01 6.475391e+01 lineto -2.849299e+01 6.409211e+01 lineto -3.043999e+01 6.732953e+01 lineto -3.012144e+01 6.795604e+01 lineto -closepath -gsave -4.208252e-01 4.208252e-01 4.208252e-01 setrgbcolor -fill -grestore -newpath -3.235043e+01 7.099195e+01 moveto -3.012144e+01 6.795604e+01 lineto -3.043999e+01 6.732953e+01 lineto -3.264862e+01 7.040548e+01 lineto -3.235043e+01 7.099195e+01 lineto -closepath -gsave -4.246081e-01 4.246081e-01 4.246081e-01 setrgbcolor -fill -grestore -newpath -3.482659e+01 7.383866e+01 moveto -3.235043e+01 7.099195e+01 lineto -3.264862e+01 7.040548e+01 lineto -3.510217e+01 7.329666e+01 lineto -3.482659e+01 7.383866e+01 lineto -closepath -gsave -4.289899e-01 4.289899e-01 4.289899e-01 setrgbcolor -fill -grestore -newpath -3.753118e+01 7.647461e+01 moveto -3.482659e+01 7.383866e+01 lineto -3.510217e+01 7.329666e+01 lineto -3.778205e+01 7.59812e+01 lineto -3.753118e+01 7.647461e+01 lineto -closepath -gsave -4.340095e-01 4.340095e-01 4.340095e-01 setrgbcolor -fill -grestore -newpath -4.044371e+01 7.887986e+01 moveto -3.753118e+01 7.647461e+01 lineto -3.778205e+01 7.59812e+01 lineto -4.066799e+01 7.843877e+01 lineto -4.044371e+01 7.887986e+01 lineto -closepath -gsave -4.396955e-01 4.396955e-01 4.396955e-01 setrgbcolor -fill -grestore -newpath -4.354215e+01 8.10362e+01 moveto -4.044371e+01 7.887986e+01 lineto -4.066799e+01 7.843877e+01 lineto -4.373813e+01 8.065076e+01 lineto -4.354215e+01 8.10362e+01 lineto -closepath -gsave -4.460629e-01 4.460629e-01 4.460629e-01 setrgbcolor -fill -grestore -newpath -4.680304e+01 8.29273e+01 moveto -4.354215e+01 8.10362e+01 lineto -4.373813e+01 8.065076e+01 lineto -4.696924e+01 8.260043e+01 lineto -4.680304e+01 8.29273e+01 lineto -closepath -gsave -4.5311e-01 4.5311e-01 4.5311e-01 setrgbcolor -fill -grestore -newpath -5.020168e+01 8.453884e+01 moveto -4.680304e+01 8.29273e+01 lineto -4.696924e+01 8.260043e+01 lineto -5.033684e+01 8.427302e+01 lineto -5.020168e+01 8.453884e+01 lineto -closepath -gsave -4.608161e-01 4.608161e-01 4.608161e-01 setrgbcolor -fill -grestore -newpath -5.371236e+01 8.585862e+01 moveto -5.020168e+01 8.453884e+01 lineto -5.033684e+01 8.427302e+01 lineto -5.381545e+01 8.565587e+01 lineto -5.371236e+01 8.585862e+01 lineto -closepath -gsave -4.691393e-01 4.691393e-01 4.691393e-01 setrgbcolor -fill -grestore -newpath -5.730849e+01 8.687666e+01 moveto -5.371236e+01 8.585862e+01 lineto -5.381545e+01 8.565587e+01 lineto -5.737873e+01 8.67385e+01 lineto -5.730849e+01 8.687666e+01 lineto -closepath -gsave -4.780153e-01 4.780153e-01 4.780153e-01 setrgbcolor -fill -grestore -newpath -6.096284e+01 8.758524e+01 moveto -5.730849e+01 8.687666e+01 lineto -5.737873e+01 8.67385e+01 lineto -6.099971e+01 8.751272e+01 lineto -6.096284e+01 8.758524e+01 lineto -closepath -gsave -4.873569e-01 4.873569e-01 4.873569e-01 setrgbcolor -fill -grestore -newpath -6.464776e+01 8.797901e+01 moveto -6.096284e+01 8.758524e+01 lineto -6.099971e+01 8.751272e+01 lineto -6.465098e+01 8.797268e+01 lineto -6.464776e+01 8.797901e+01 lineto -closepath -gsave -4.970541e-01 4.970541e-01 4.970541e-01 setrgbcolor -fill -grestore -newpath -6.833534e+01 8.805497e+01 moveto -6.464776e+01 8.797901e+01 lineto -6.465098e+01 8.797268e+01 lineto -6.830488e+01 8.811488e+01 lineto -6.833534e+01 8.805497e+01 lineto -closepath -gsave -5.069758e-01 5.069758e-01 5.069758e-01 setrgbcolor -fill -grestore -newpath -3.063972e+01 1.927552e+01 moveto -3.287248e+01 1.654724e+01 lineto -3.336668e+01 1.597951e+01 lineto -3.116827e+01 1.866834e+01 lineto -3.063972e+01 1.927552e+01 lineto -closepath -gsave -4.068204e-01 4.068204e-01 4.068204e-01 setrgbcolor -fill -grestore -newpath -2.866709e+01 2.220612e+01 moveto -3.063972e+01 1.927552e+01 lineto -3.116827e+01 1.866834e+01 lineto -2.922598e+01 2.156408e+01 lineto -2.866709e+01 2.220612e+01 lineto -closepath -gsave -4.067887e-01 4.067887e-01 4.067887e-01 setrgbcolor -fill -grestore -newpath -2.696951e+01 2.531685e+01 moveto -2.866709e+01 2.220612e+01 lineto -2.922598e+01 2.156408e+01 lineto -2.755452e+01 2.464481e+01 lineto -2.696951e+01 2.531685e+01 lineto -closepath -gsave -4.069034e-01 4.069034e-01 4.069034e-01 setrgbcolor -fill -grestore -newpath -2.555984e+01 2.858416e+01 moveto -2.696951e+01 2.531685e+01 lineto -2.755452e+01 2.464481e+01 lineto -2.616653e+01 2.788721e+01 lineto -2.555984e+01 2.858416e+01 lineto -closepath -gsave -4.071685e-01 4.071685e-01 4.071685e-01 setrgbcolor -fill -grestore -newpath -2.444874e+01 3.198332e+01 moveto -2.555984e+01 2.858416e+01 lineto -2.616653e+01 2.788721e+01 lineto -2.507253e+01 3.126673e+01 lineto -2.444874e+01 3.198332e+01 lineto -closepath -gsave -4.075931e-01 4.075931e-01 4.075931e-01 setrgbcolor -fill -grestore -newpath -2.364464e+01 3.548858e+01 moveto -2.444874e+01 3.198332e+01 lineto -2.507253e+01 3.126673e+01 lineto -2.42808e+01 3.475779e+01 lineto -2.364464e+01 3.548858e+01 lineto -closepath -gsave -4.081915e-01 4.081915e-01 4.081915e-01 setrgbcolor -fill -grestore -newpath -2.315362e+01 3.907343e+01 moveto -2.364464e+01 3.548858e+01 lineto -2.42808e+01 3.475779e+01 lineto -2.379733e+01 3.833396e+01 lineto -2.315362e+01 3.907343e+01 lineto -closepath -gsave -4.089829e-01 4.089829e-01 4.089829e-01 setrgbcolor -fill -grestore -newpath -2.297939e+01 4.271071e+01 moveto -2.315362e+01 3.907343e+01 lineto -2.379733e+01 3.833396e+01 lineto -2.362578e+01 4.196816e+01 lineto -2.297939e+01 4.271071e+01 lineto -closepath -gsave -4.099917e-01 4.099917e-01 4.099917e-01 setrgbcolor -fill -grestore -newpath -2.312328e+01 4.637289e+01 moveto -2.297939e+01 4.271071e+01 lineto -2.362578e+01 4.196816e+01 lineto -2.376746e+01 4.563288e+01 lineto -2.312328e+01 4.637289e+01 lineto -closepath -gsave -4.112466e-01 4.112466e-01 4.112466e-01 setrgbcolor -fill -grestore -newpath -2.358419e+01 5.003225e+01 moveto -2.312328e+01 4.637289e+01 lineto -2.376746e+01 4.563288e+01 lineto -2.422128e+01 4.930039e+01 lineto -2.358419e+01 5.003225e+01 lineto -closepath -gsave -4.127805e-01 4.127805e-01 4.127805e-01 setrgbcolor -fill -grestore -newpath -2.435864e+01 5.366108e+01 moveto -2.358419e+01 5.003225e+01 lineto -2.422128e+01 4.930039e+01 lineto -2.498382e+01 5.294291e+01 lineto -2.435864e+01 5.366108e+01 lineto -closepath -gsave -4.146298e-01 4.146298e-01 4.146298e-01 setrgbcolor -fill -grestore -newpath -2.544076e+01 5.723192e+01 moveto -2.435864e+01 5.366108e+01 lineto -2.498382e+01 5.294291e+01 lineto -2.604929e+01 5.653286e+01 lineto -2.544076e+01 5.723192e+01 lineto -closepath -gsave -4.168333e-01 4.168333e-01 4.168333e-01 setrgbcolor -fill -grestore -newpath -2.682237e+01 6.071772e+01 moveto -2.544076e+01 5.723192e+01 lineto -2.604929e+01 5.653286e+01 lineto -2.740964e+01 6.004308e+01 lineto -2.682237e+01 6.071772e+01 lineto -closepath -gsave -4.19431e-01 4.19431e-01 4.19431e-01 setrgbcolor -fill -grestore -newpath -2.849299e+01 6.409211e+01 moveto -2.682237e+01 6.071772e+01 lineto -2.740964e+01 6.004308e+01 lineto -2.905457e+01 6.344699e+01 lineto -2.849299e+01 6.409211e+01 lineto -closepath -gsave -4.224628e-01 4.224628e-01 4.224628e-01 setrgbcolor -fill -grestore -newpath -3.043999e+01 6.732953e+01 moveto -2.849299e+01 6.409211e+01 lineto -2.905457e+01 6.344699e+01 lineto -3.097161e+01 6.671882e+01 lineto -3.043999e+01 6.732953e+01 lineto -closepath -gsave -4.259662e-01 4.259662e-01 4.259662e-01 setrgbcolor -fill -grestore -newpath -3.264862e+01 7.040548e+01 moveto -3.043999e+01 6.732953e+01 lineto -3.097161e+01 6.671882e+01 lineto -3.314627e+01 6.983379e+01 lineto -3.264862e+01 7.040548e+01 lineto -closepath -gsave -4.299747e-01 4.299747e-01 4.299747e-01 setrgbcolor -fill -grestore -newpath -3.510217e+01 7.329666e+01 moveto -3.264862e+01 7.040548e+01 lineto -3.314627e+01 6.983379e+01 lineto -3.556207e+01 7.276833e+01 lineto -3.510217e+01 7.329666e+01 lineto -closepath -gsave -4.345153e-01 4.345153e-01 4.345153e-01 setrgbcolor -fill -grestore -newpath -3.778205e+01 7.59812e+01 moveto -3.510217e+01 7.329666e+01 lineto -3.556207e+01 7.276833e+01 lineto -3.820074e+01 7.550023e+01 lineto -3.778205e+01 7.59812e+01 lineto -closepath -gsave -4.396063e-01 4.396063e-01 4.396063e-01 setrgbcolor -fill -grestore -newpath -4.066799e+01 7.843877e+01 moveto -3.778205e+01 7.59812e+01 lineto -3.820074e+01 7.550023e+01 lineto -4.104228e+01 7.80088e+01 lineto -4.066799e+01 7.843877e+01 lineto -closepath -gsave -4.452549e-01 4.452549e-01 4.452549e-01 setrgbcolor -fill -grestore -newpath -4.373813e+01 8.065076e+01 moveto -4.066799e+01 7.843877e+01 lineto -4.104228e+01 7.80088e+01 lineto -4.40652e+01 8.027504e+01 lineto -4.373813e+01 8.065076e+01 lineto -closepath -gsave -4.514552e-01 4.514552e-01 4.514552e-01 setrgbcolor -fill -grestore -newpath -4.696924e+01 8.260043e+01 moveto -4.373813e+01 8.065076e+01 lineto -4.40652e+01 8.027504e+01 lineto -4.72466e+01 8.228181e+01 lineto -4.696924e+01 8.260043e+01 lineto -closepath -gsave -4.581863e-01 4.581863e-01 4.581863e-01 setrgbcolor -fill -grestore -newpath -5.033684e+01 8.427302e+01 moveto -4.696924e+01 8.260043e+01 lineto -4.72466e+01 8.228181e+01 lineto -5.05624e+01 8.401391e+01 lineto -5.033684e+01 8.427302e+01 lineto -closepath -gsave -4.654105e-01 4.654105e-01 4.654105e-01 setrgbcolor -fill -grestore -newpath -5.381545e+01 8.565587e+01 moveto -5.033684e+01 8.427302e+01 lineto -5.05624e+01 8.401391e+01 lineto -5.39875e+01 8.545822e+01 lineto -5.381545e+01 8.565587e+01 lineto -closepath -gsave -4.730727e-01 4.730727e-01 4.730727e-01 setrgbcolor -fill -grestore -newpath -5.737873e+01 8.67385e+01 moveto -5.381545e+01 8.565587e+01 lineto -5.39875e+01 8.545822e+01 lineto -5.749597e+01 8.660382e+01 lineto -5.737873e+01 8.67385e+01 lineto -closepath -gsave -4.811e-01 4.811e-01 4.811e-01 setrgbcolor -fill -grestore -newpath -6.099971e+01 8.751272e+01 moveto -5.737873e+01 8.67385e+01 lineto -5.749597e+01 8.660382e+01 lineto -6.106125e+01 8.744203e+01 lineto -6.099971e+01 8.751272e+01 lineto -closepath -gsave -4.894017e-01 4.894017e-01 4.894017e-01 setrgbcolor -fill -grestore -newpath -6.465098e+01 8.797268e+01 moveto -6.099971e+01 8.751272e+01 lineto -6.106125e+01 8.744203e+01 lineto -6.465634e+01 8.796651e+01 lineto -6.465098e+01 8.797268e+01 lineto -closepath -gsave -4.978709e-01 4.978709e-01 4.978709e-01 setrgbcolor -fill -grestore -newpath -6.830488e+01 8.811488e+01 moveto -6.465098e+01 8.797268e+01 lineto -6.465634e+01 8.796651e+01 lineto -6.825404e+01 8.817328e+01 lineto -6.830488e+01 8.811488e+01 lineto -closepath -gsave -5.063862e-01 5.063862e-01 5.063862e-01 setrgbcolor -fill -grestore -newpath -3.580457e+01 1.351795e+01 moveto -3.846348e+01 1.13023e+01 lineto -3.904167e+01 1.084129e+01 lineto -3.644069e+01 1.301076e+01 lineto -3.580457e+01 1.351795e+01 lineto -closepath -gsave -4.094772e-01 4.094772e-01 4.094772e-01 setrgbcolor -fill -grestore -newpath -3.336668e+01 1.597951e+01 moveto -3.580457e+01 1.351795e+01 lineto -3.644069e+01 1.301076e+01 lineto -3.405592e+01 1.542996e+01 lineto -3.336668e+01 1.597951e+01 lineto -closepath -gsave -4.0929e-01 4.0929e-01 4.0929e-01 setrgbcolor -fill -grestore -newpath -3.116827e+01 1.866834e+01 moveto -3.336668e+01 1.597951e+01 lineto -3.405592e+01 1.542996e+01 lineto -3.190541e+01 1.80806e+01 lineto -3.116827e+01 1.866834e+01 lineto -closepath -gsave -4.092627e-01 4.092627e-01 4.092627e-01 setrgbcolor -fill -grestore -newpath -2.922598e+01 2.156408e+01 moveto -3.116827e+01 1.866834e+01 lineto -3.190541e+01 1.80806e+01 lineto -3.000544e+01 2.09426e+01 lineto -2.922598e+01 2.156408e+01 lineto -closepath -gsave -4.093947e-01 4.093947e-01 4.093947e-01 setrgbcolor -fill -grestore -newpath -2.755452e+01 2.464481e+01 moveto -2.922598e+01 2.156408e+01 lineto -3.000544e+01 2.09426e+01 lineto -2.837039e+01 2.399429e+01 lineto -2.755452e+01 2.464481e+01 lineto -closepath -gsave -4.096894e-01 4.096894e-01 4.096894e-01 setrgbcolor -fill -grestore -newpath -2.616653e+01 2.788721e+01 moveto -2.755452e+01 2.464481e+01 lineto -2.837039e+01 2.399429e+01 lineto -2.701265e+01 2.721258e+01 lineto -2.616653e+01 2.788721e+01 lineto -closepath -gsave -4.101543e-01 4.101543e-01 4.101543e-01 setrgbcolor -fill -grestore -newpath -2.507253e+01 3.126673e+01 moveto -2.616653e+01 2.788721e+01 lineto -2.701265e+01 2.721258e+01 lineto -2.594248e+01 3.057309e+01 lineto -2.507253e+01 3.126673e+01 lineto -closepath -gsave -4.108014e-01 4.108014e-01 4.108014e-01 setrgbcolor -fill -grestore -newpath -2.42808e+01 3.475779e+01 moveto -2.507253e+01 3.126673e+01 lineto -2.594248e+01 3.057309e+01 lineto -2.5168e+01 3.40504e+01 lineto -2.42808e+01 3.475779e+01 lineto -closepath -gsave -4.116462e-01 4.116462e-01 4.116462e-01 setrgbcolor -fill -grestore -newpath -2.379733e+01 3.833396e+01 moveto -2.42808e+01 3.475779e+01 lineto -2.5168e+01 3.40504e+01 lineto -2.469507e+01 3.761817e+01 lineto -2.379733e+01 3.833396e+01 lineto -closepath -gsave -4.127081e-01 4.127081e-01 4.127081e-01 setrgbcolor -fill -grestore -newpath -2.362578e+01 4.196816e+01 moveto -2.379733e+01 3.833396e+01 lineto -2.469507e+01 3.761817e+01 lineto -2.452726e+01 4.124939e+01 lineto -2.362578e+01 4.196816e+01 lineto -closepath -gsave -4.140099e-01 4.140099e-01 4.140099e-01 setrgbcolor -fill -grestore -newpath -2.376746e+01 4.563288e+01 moveto -2.362578e+01 4.196816e+01 lineto -2.452726e+01 4.124939e+01 lineto -2.466585e+01 4.491657e+01 lineto -2.376746e+01 4.563288e+01 lineto -closepath -gsave -4.15577e-01 4.15577e-01 4.15577e-01 setrgbcolor -fill -grestore -newpath -2.422128e+01 4.930039e+01 moveto -2.376746e+01 4.563288e+01 lineto -2.466585e+01 4.491657e+01 lineto -2.510978e+01 4.859196e+01 lineto -2.422128e+01 4.930039e+01 lineto -closepath -gsave -4.174372e-01 4.174372e-01 4.174372e-01 setrgbcolor -fill -grestore -newpath -2.498382e+01 5.294291e+01 moveto -2.422128e+01 4.930039e+01 lineto -2.510978e+01 4.859196e+01 lineto -2.58557e+01 5.224773e+01 lineto -2.498382e+01 5.294291e+01 lineto -closepath -gsave -4.196194e-01 4.196194e-01 4.196194e-01 setrgbcolor -fill -grestore -newpath -2.604929e+01 5.653286e+01 moveto -2.498382e+01 5.294291e+01 lineto -2.58557e+01 5.224773e+01 lineto -2.689796e+01 5.58562e+01 lineto -2.604929e+01 5.653286e+01 lineto -closepath -gsave -4.221526e-01 4.221526e-01 4.221526e-01 setrgbcolor -fill -grestore -newpath -2.740964e+01 6.004308e+01 moveto -2.604929e+01 5.653286e+01 lineto -2.689796e+01 5.58562e+01 lineto -2.822867e+01 5.939005e+01 lineto -2.740964e+01 6.004308e+01 lineto -closepath -gsave -4.25065e-01 4.25065e-01 4.25065e-01 setrgbcolor -fill -grestore -newpath -2.905457e+01 6.344699e+01 moveto -2.740964e+01 6.004308e+01 lineto -2.822867e+01 5.939005e+01 lineto -2.983776e+01 6.282253e+01 lineto -2.905457e+01 6.344699e+01 lineto -closepath -gsave -4.28382e-01 4.28382e-01 4.28382e-01 setrgbcolor -fill -grestore -newpath -3.097161e+01 6.671882e+01 moveto -2.905457e+01 6.344699e+01 lineto -2.983776e+01 6.282253e+01 lineto -3.171303e+01 6.612766e+01 lineto -3.097161e+01 6.671882e+01 lineto -closepath -gsave -4.321249e-01 4.321249e-01 4.321249e-01 setrgbcolor -fill -grestore -newpath -3.314627e+01 6.983379e+01 moveto -3.097161e+01 6.671882e+01 lineto -3.171303e+01 6.612766e+01 lineto -3.384031e+01 6.928042e+01 lineto -3.314627e+01 6.983379e+01 lineto -closepath -gsave -4.363092e-01 4.363092e-01 4.363092e-01 setrgbcolor -fill -grestore -newpath -3.556207e+01 7.276833e+01 moveto -3.314627e+01 6.983379e+01 lineto -3.384031e+01 6.928042e+01 lineto -3.620348e+01 7.225693e+01 lineto -3.556207e+01 7.276833e+01 lineto -closepath -gsave -4.40943e-01 4.40943e-01 4.40943e-01 setrgbcolor -fill -grestore -newpath -3.820074e+01 7.550023e+01 moveto -3.556207e+01 7.276833e+01 lineto -3.620348e+01 7.225693e+01 lineto -3.878465e+01 7.503466e+01 lineto -3.820074e+01 7.550023e+01 lineto -closepath -gsave -4.460252e-01 4.460252e-01 4.460252e-01 setrgbcolor -fill -grestore -newpath -4.104228e+01 7.80088e+01 moveto -3.820074e+01 7.550023e+01 lineto -3.878465e+01 7.503466e+01 lineto -4.156428e+01 7.759259e+01 lineto -4.104228e+01 7.80088e+01 lineto -closepath -gsave -4.515436e-01 4.515436e-01 4.515436e-01 setrgbcolor -fill -grestore -newpath -4.40652e+01 8.027504e+01 moveto -4.104228e+01 7.80088e+01 lineto -4.156428e+01 7.759259e+01 lineto -4.452133e+01 7.991135e+01 lineto -4.40652e+01 8.027504e+01 lineto -closepath -gsave -4.574746e-01 4.574746e-01 4.574746e-01 setrgbcolor -fill -grestore -newpath -4.72466e+01 8.228181e+01 moveto -4.40652e+01 8.027504e+01 lineto -4.452133e+01 7.991135e+01 lineto -4.763341e+01 8.197339e+01 lineto -4.72466e+01 8.228181e+01 lineto -closepath -gsave -4.637811e-01 4.637811e-01 4.637811e-01 setrgbcolor -fill -grestore -newpath -5.05624e+01 8.401391e+01 moveto -4.72466e+01 8.228181e+01 lineto -4.763341e+01 8.197339e+01 lineto -5.087697e+01 8.376309e+01 lineto -5.05624e+01 8.401391e+01 lineto -closepath -gsave -4.704129e-01 4.704129e-01 4.704129e-01 setrgbcolor -fill -grestore -newpath -5.39875e+01 8.545822e+01 moveto -5.05624e+01 8.401391e+01 lineto -5.087697e+01 8.376309e+01 lineto -5.422744e+01 8.526691e+01 lineto -5.39875e+01 8.545822e+01 lineto -closepath -gsave -4.77306e-01 4.77306e-01 4.77306e-01 setrgbcolor -fill -grestore -newpath -5.749597e+01 8.660382e+01 moveto -5.39875e+01 8.545822e+01 lineto -5.422744e+01 8.526691e+01 lineto -5.765947e+01 8.647346e+01 lineto -5.749597e+01 8.660382e+01 lineto -closepath -gsave -4.843832e-01 4.843832e-01 4.843832e-01 setrgbcolor -fill -grestore -newpath -6.106125e+01 8.744203e+01 moveto -5.749597e+01 8.660382e+01 lineto -5.765947e+01 8.647346e+01 lineto -6.114707e+01 8.737361e+01 lineto -6.106125e+01 8.744203e+01 lineto -closepath -gsave -4.915554e-01 4.915554e-01 4.915554e-01 setrgbcolor -fill -grestore -newpath -6.465634e+01 8.796651e+01 moveto -6.106125e+01 8.744203e+01 lineto -6.114707e+01 8.737361e+01 lineto -6.466383e+01 8.796054e+01 lineto -6.465634e+01 8.796651e+01 lineto -closepath -gsave -4.987228e-01 4.987228e-01 4.987228e-01 setrgbcolor -fill -grestore -newpath -6.825404e+01 8.817328e+01 moveto -6.465634e+01 8.796651e+01 lineto -6.466383e+01 8.796054e+01 lineto -6.818314e+01 8.822981e+01 lineto -6.825404e+01 8.817328e+01 lineto -closepath -gsave -5.057771e-01 5.057771e-01 5.057771e-01 setrgbcolor -fill -grestore -newpath -3.904167e+01 1.084129e+01 moveto -4.183916e+01 8.937995e+00 lineto -4.249783e+01 8.54282e+00 lineto -3.97799e+01 1.039839e+01 lineto -3.904167e+01 1.084129e+01 lineto -closepath -gsave -4.122146e-01 4.122146e-01 4.122146e-01 setrgbcolor -fill -grestore -newpath -3.644069e+01 1.301076e+01 moveto -3.904167e+01 1.084129e+01 lineto -3.97799e+01 1.039839e+01 lineto -3.725289e+01 1.252347e+01 lineto -3.644069e+01 1.301076e+01 lineto -closepath -gsave -4.12084e-01 4.12084e-01 4.12084e-01 setrgbcolor -fill -grestore -newpath -3.405592e+01 1.542996e+01 moveto -3.644069e+01 1.301076e+01 lineto -3.725289e+01 1.252347e+01 lineto -3.493594e+01 1.490199e+01 lineto -3.405592e+01 1.542996e+01 lineto -closepath -gsave -4.121201e-01 4.121201e-01 4.121201e-01 setrgbcolor -fill -grestore -newpath -3.190541e+01 1.80806e+01 moveto -3.405592e+01 1.542996e+01 lineto -3.493594e+01 1.490199e+01 lineto -3.284659e+01 1.751593e+01 lineto -3.190541e+01 1.80806e+01 lineto -closepath -gsave -4.123235e-01 4.123235e-01 4.123235e-01 setrgbcolor -fill -grestore -newpath -3.000544e+01 2.09426e+01 moveto -3.190541e+01 1.80806e+01 lineto -3.284659e+01 1.751593e+01 lineto -3.100065e+01 2.034551e+01 lineto -3.000544e+01 2.09426e+01 lineto -closepath -gsave -4.126982e-01 4.126982e-01 4.126982e-01 setrgbcolor -fill -grestore -newpath -2.837039e+01 2.399429e+01 moveto -3.000544e+01 2.09426e+01 lineto -3.100065e+01 2.034551e+01 lineto -2.94121e+01 2.336931e+01 lineto -2.837039e+01 2.399429e+01 lineto -closepath -gsave -4.132513e-01 4.132513e-01 4.132513e-01 setrgbcolor -fill -grestore -newpath -2.701265e+01 2.721258e+01 moveto -2.837039e+01 2.399429e+01 lineto -2.94121e+01 2.336931e+01 lineto -2.809297e+01 2.656443e+01 lineto -2.701265e+01 2.721258e+01 lineto -closepath -gsave -4.139931e-01 4.139931e-01 4.139931e-01 setrgbcolor -fill -grestore -newpath -2.594248e+01 3.057309e+01 moveto -2.701265e+01 2.721258e+01 lineto -2.809297e+01 2.656443e+01 lineto -2.705324e+01 2.990669e+01 lineto -2.594248e+01 3.057309e+01 lineto -closepath -gsave -4.149367e-01 4.149367e-01 4.149367e-01 setrgbcolor -fill -grestore -newpath -2.5168e+01 3.40504e+01 moveto -2.594248e+01 3.057309e+01 lineto -2.705324e+01 2.990669e+01 lineto -2.630078e+01 3.337078e+01 lineto -2.5168e+01 3.40504e+01 lineto -closepath -gsave -4.160976e-01 4.160976e-01 4.160976e-01 setrgbcolor -fill -grestore -newpath -2.469507e+01 3.761817e+01 moveto -2.5168e+01 3.40504e+01 lineto -2.630078e+01 3.337078e+01 lineto -2.58413e+01 3.693047e+01 lineto -2.469507e+01 3.761817e+01 lineto -closepath -gsave -4.174937e-01 4.174937e-01 4.174937e-01 setrgbcolor -fill -grestore -newpath -2.452726e+01 4.124939e+01 moveto -2.469507e+01 3.761817e+01 lineto -2.58413e+01 3.693047e+01 lineto -2.567826e+01 4.055883e+01 lineto -2.452726e+01 4.124939e+01 lineto -closepath -gsave -4.191442e-01 4.191442e-01 4.191442e-01 setrgbcolor -fill -grestore -newpath -2.466585e+01 4.491657e+01 moveto -2.452726e+01 4.124939e+01 lineto -2.567826e+01 4.055883e+01 lineto -2.581291e+01 4.422838e+01 lineto -2.466585e+01 4.491657e+01 lineto -closepath -gsave -4.210694e-01 4.210694e-01 4.210694e-01 setrgbcolor -fill -grestore -newpath -2.510978e+01 4.859196e+01 moveto -2.466585e+01 4.491657e+01 lineto -2.581291e+01 4.422838e+01 lineto -2.624422e+01 4.791135e+01 lineto -2.510978e+01 4.859196e+01 lineto -closepath -gsave -4.232896e-01 4.232896e-01 4.232896e-01 setrgbcolor -fill -grestore -newpath -2.58557e+01 5.224773e+01 moveto -2.510978e+01 4.859196e+01 lineto -2.624422e+01 4.791135e+01 lineto -2.696893e+01 5.157984e+01 lineto -2.58557e+01 5.224773e+01 lineto -closepath -gsave -4.258245e-01 4.258245e-01 4.258245e-01 setrgbcolor -fill -grestore -newpath -2.689796e+01 5.58562e+01 moveto -2.58557e+01 5.224773e+01 lineto -2.696893e+01 5.157984e+01 lineto -2.798154e+01 5.520609e+01 lineto -2.689796e+01 5.58562e+01 lineto -closepath -gsave -4.286916e-01 4.286916e-01 4.286916e-01 setrgbcolor -fill -grestore -newpath -2.822867e+01 5.939005e+01 moveto -2.689796e+01 5.58562e+01 lineto -2.798154e+01 5.520609e+01 lineto -2.927441e+01 5.876265e+01 lineto -2.822867e+01 5.939005e+01 lineto -closepath -gsave -4.319055e-01 4.319055e-01 4.319055e-01 setrgbcolor -fill -grestore -newpath -2.983776e+01 6.282253e+01 moveto -2.822867e+01 5.939005e+01 lineto -2.927441e+01 5.876265e+01 lineto -3.083773e+01 6.222259e+01 lineto -2.983776e+01 6.282253e+01 lineto -closepath -gsave -4.354766e-01 4.354766e-01 4.354766e-01 setrgbcolor -fill -grestore -newpath -3.171303e+01 6.612766e+01 moveto -2.983776e+01 6.282253e+01 lineto -3.083773e+01 6.222259e+01 lineto -3.265968e+01 6.555971e+01 lineto -3.171303e+01 6.612766e+01 lineto -closepath -gsave -4.394096e-01 4.394096e-01 4.394096e-01 setrgbcolor -fill -grestore -newpath -3.384031e+01 6.928042e+01 moveto -3.171303e+01 6.612766e+01 lineto -3.265968e+01 6.555971e+01 lineto -3.472646e+01 6.874876e+01 lineto -3.384031e+01 6.928042e+01 lineto -closepath -gsave -4.437027e-01 4.437027e-01 4.437027e-01 setrgbcolor -fill -grestore -newpath -3.620348e+01 7.225693e+01 moveto -3.384031e+01 6.928042e+01 lineto -3.472646e+01 6.874876e+01 lineto -3.702242e+01 7.176559e+01 lineto -3.620348e+01 7.225693e+01 lineto -closepath -gsave -4.483461e-01 4.483461e-01 4.483461e-01 setrgbcolor -fill -grestore -newpath -3.878465e+01 7.503466e+01 moveto -3.620348e+01 7.225693e+01 lineto -3.702242e+01 7.176559e+01 lineto -3.953019e+01 7.458737e+01 lineto -3.878465e+01 7.503466e+01 lineto -closepath -gsave -4.533211e-01 4.533211e-01 4.533211e-01 setrgbcolor -fill -grestore -newpath -4.156428e+01 7.759259e+01 moveto -3.878465e+01 7.503466e+01 lineto -3.953019e+01 7.458737e+01 lineto -4.223077e+01 7.719273e+01 lineto -4.156428e+01 7.759259e+01 lineto -closepath -gsave -4.585996e-01 4.585996e-01 4.585996e-01 setrgbcolor -fill -grestore -newpath -4.452133e+01 7.991135e+01 moveto -4.156428e+01 7.759259e+01 lineto -4.223077e+01 7.719273e+01 lineto -4.510372e+01 7.956194e+01 lineto -4.452133e+01 7.991135e+01 lineto -closepath -gsave -4.641433e-01 4.641433e-01 4.641433e-01 setrgbcolor -fill -grestore -newpath -4.763341e+01 8.197339e+01 moveto -4.452133e+01 7.991135e+01 lineto -4.510372e+01 7.956194e+01 lineto -4.81273e+01 8.167708e+01 lineto -4.763341e+01 8.197339e+01 lineto -closepath -gsave -4.699037e-01 4.699037e-01 4.699037e-01 setrgbcolor -fill -grestore -newpath -5.087697e+01 8.376309e+01 moveto -4.763341e+01 8.197339e+01 lineto -4.81273e+01 8.167708e+01 lineto -5.127861e+01 8.352212e+01 lineto -5.087697e+01 8.376309e+01 lineto -closepath -gsave -4.758224e-01 4.758224e-01 4.758224e-01 setrgbcolor -fill -grestore -newpath -5.422744e+01 8.526691e+01 moveto -5.087697e+01 8.376309e+01 lineto -5.127861e+01 8.352212e+01 lineto -5.45338e+01 8.50831e+01 lineto -5.422744e+01 8.526691e+01 lineto -closepath -gsave -4.818313e-01 4.818313e-01 4.818313e-01 setrgbcolor -fill -grestore -newpath -5.765947e+01 8.647346e+01 moveto -5.422744e+01 8.526691e+01 lineto -5.45338e+01 8.50831e+01 lineto -5.786823e+01 8.634821e+01 lineto -5.765947e+01 8.647346e+01 lineto -closepath -gsave -4.878544e-01 4.878544e-01 4.878544e-01 setrgbcolor -fill -grestore -newpath -6.114707e+01 8.737361e+01 moveto -5.765947e+01 8.647346e+01 lineto -5.786823e+01 8.634821e+01 lineto -6.125664e+01 8.730787e+01 lineto -6.114707e+01 8.737361e+01 lineto -closepath -gsave -4.938083e-01 4.938083e-01 4.938083e-01 setrgbcolor -fill -grestore -newpath -6.466383e+01 8.796054e+01 moveto -6.114707e+01 8.737361e+01 lineto -6.125664e+01 8.730787e+01 lineto -6.467339e+01 8.795481e+01 lineto -6.466383e+01 8.796054e+01 lineto -closepath -gsave -4.996048e-01 4.996048e-01 4.996048e-01 setrgbcolor -fill -grestore -newpath -6.818314e+01 8.822981e+01 moveto -6.466383e+01 8.796054e+01 lineto -6.467339e+01 8.795481e+01 lineto -6.809262e+01 8.828413e+01 lineto -6.818314e+01 8.822981e+01 lineto -closepath -gsave -5.051525e-01 5.051525e-01 5.051525e-01 setrgbcolor -fill -grestore -newpath -4.249783e+01 8.54282e+00 moveto -4.538612e+01 6.970821e+00 lineto -4.608117e+01 6.642565e+00 lineto -4.329524e+01 8.166226e+00 lineto -4.249783e+01 8.54282e+00 lineto -closepath -gsave -4.150117e-01 4.150117e-01 4.150117e-01 setrgbcolor -fill -grestore -newpath -3.97799e+01 1.039839e+01 moveto -4.249783e+01 8.54282e+00 lineto -4.329524e+01 8.166226e+00 lineto -4.067362e+01 9.976305e+00 lineto -3.97799e+01 1.039839e+01 lineto -closepath -gsave -4.150229e-01 4.150229e-01 4.150229e-01 setrgbcolor -fill -grestore -newpath -3.725289e+01 1.252347e+01 moveto -3.97799e+01 1.039839e+01 lineto -4.067362e+01 9.976305e+00 lineto -3.823616e+01 1.20591e+01 lineto -3.725289e+01 1.252347e+01 lineto -closepath -gsave -4.152032e-01 4.152032e-01 4.152032e-01 setrgbcolor -fill -grestore -newpath -3.493594e+01 1.490199e+01 moveto -3.725289e+01 1.252347e+01 lineto -3.823616e+01 1.20591e+01 lineto -3.600131e+01 1.439884e+01 lineto -3.493594e+01 1.490199e+01 lineto -closepath -gsave -4.155549e-01 4.155549e-01 4.155549e-01 setrgbcolor -fill -grestore -newpath -3.284659e+01 1.751593e+01 moveto -3.493594e+01 1.490199e+01 lineto -3.600131e+01 1.439884e+01 lineto -3.3986e+01 1.697782e+01 lineto -3.284659e+01 1.751593e+01 lineto -closepath -gsave -4.160833e-01 4.160833e-01 4.160833e-01 setrgbcolor -fill -grestore -newpath -3.100065e+01 2.034551e+01 moveto -3.284659e+01 1.751593e+01 lineto -3.3986e+01 1.697782e+01 lineto -3.220547e+01 1.97765e+01 lineto -3.100065e+01 2.034551e+01 lineto -closepath -gsave -4.167955e-01 4.167955e-01 4.167955e-01 setrgbcolor -fill -grestore -newpath -2.94121e+01 2.336931e+01 moveto -3.100065e+01 2.034551e+01 lineto -3.220547e+01 1.97765e+01 lineto -3.067322e+01 2.277371e+01 lineto -2.94121e+01 2.336931e+01 lineto -closepath -gsave -4.177009e-01 4.177009e-01 4.177009e-01 setrgbcolor -fill -grestore -newpath -2.809297e+01 2.656443e+01 moveto -2.94121e+01 2.336931e+01 lineto -3.067322e+01 2.277371e+01 lineto -2.940083e+01 2.594676e+01 lineto -2.809297e+01 2.656443e+01 lineto -closepath -gsave -4.188107e-01 4.188107e-01 4.188107e-01 setrgbcolor -fill -grestore -newpath -2.705324e+01 2.990669e+01 moveto -2.809297e+01 2.656443e+01 lineto -2.940083e+01 2.594676e+01 lineto -2.839795e+01 2.927161e+01 lineto -2.705324e+01 2.990669e+01 lineto -closepath -gsave -4.201373e-01 4.201373e-01 4.201373e-01 setrgbcolor -fill -grestore -newpath -2.630078e+01 3.337078e+01 moveto -2.705324e+01 2.990669e+01 lineto -2.839795e+01 2.927161e+01 lineto -2.767216e+01 3.272311e+01 lineto -2.630078e+01 3.337078e+01 lineto -closepath -gsave -4.216942e-01 4.216942e-01 4.216942e-01 setrgbcolor -fill -grestore -newpath -2.58413e+01 3.693047e+01 moveto -2.630078e+01 3.337078e+01 lineto -2.767216e+01 3.272311e+01 lineto -2.722896e+01 3.627512e+01 lineto -2.58413e+01 3.693047e+01 lineto -closepath -gsave -4.234955e-01 4.234955e-01 4.234955e-01 setrgbcolor -fill -grestore -newpath -2.567826e+01 4.055883e+01 moveto -2.58413e+01 3.693047e+01 lineto -2.722896e+01 3.627512e+01 lineto -2.70717e+01 3.990075e+01 lineto -2.567826e+01 4.055883e+01 lineto -closepath -gsave -4.255547e-01 4.255547e-01 4.255547e-01 setrgbcolor -fill -grestore -newpath -2.581291e+01 4.422838e+01 moveto -2.567826e+01 4.055883e+01 lineto -2.70717e+01 3.990075e+01 lineto -2.720157e+01 4.357255e+01 lineto -2.581291e+01 4.422838e+01 lineto -closepath -gsave -4.278845e-01 4.278845e-01 4.278845e-01 setrgbcolor -fill -grestore -newpath -2.624422e+01 4.791135e+01 moveto -2.581291e+01 4.422838e+01 lineto -2.720157e+01 4.357255e+01 lineto -2.76176e+01 4.726273e+01 lineto -2.624422e+01 4.791135e+01 lineto -closepath -gsave -4.304958e-01 4.304958e-01 4.304958e-01 setrgbcolor -fill -grestore -newpath -2.696893e+01 5.157984e+01 moveto -2.624422e+01 4.791135e+01 lineto -2.76176e+01 4.726273e+01 lineto -2.831662e+01 5.094336e+01 lineto -2.696893e+01 5.157984e+01 lineto -closepath -gsave -4.333969e-01 4.333969e-01 4.333969e-01 setrgbcolor -fill -grestore -newpath -2.798154e+01 5.520609e+01 moveto -2.696893e+01 5.157984e+01 lineto -2.831662e+01 5.094336e+01 lineto -2.929336e+01 5.458655e+01 lineto -2.798154e+01 5.520609e+01 lineto -closepath -gsave -4.365923e-01 4.365923e-01 4.365923e-01 setrgbcolor -fill -grestore -newpath -2.927441e+01 5.876265e+01 moveto -2.798154e+01 5.520609e+01 lineto -2.929336e+01 5.458655e+01 lineto -3.054041e+01 5.816475e+01 lineto -2.927441e+01 5.876265e+01 lineto -closepath -gsave -4.400821e-01 4.400821e-01 4.400821e-01 setrgbcolor -fill -grestore -newpath -3.083773e+01 6.222259e+01 moveto -2.927441e+01 5.876265e+01 lineto -3.054041e+01 5.816475e+01 lineto -3.204833e+01 6.165085e+01 lineto -3.083773e+01 6.222259e+01 lineto -closepath -gsave -4.438613e-01 4.438613e-01 4.438613e-01 setrgbcolor -fill -grestore -newpath -3.265968e+01 6.555971e+01 moveto -3.083773e+01 6.222259e+01 lineto -3.204833e+01 6.165085e+01 lineto -3.380572e+01 6.501847e+01 lineto -3.265968e+01 6.555971e+01 lineto -closepath -gsave -4.479184e-01 4.479184e-01 4.479184e-01 setrgbcolor -fill -grestore -newpath -3.472646e+01 6.874876e+01 moveto -3.265968e+01 6.555971e+01 lineto -3.380572e+01 6.501847e+01 lineto -3.579926e+01 6.824211e+01 lineto -3.472646e+01 6.874876e+01 lineto -closepath -gsave -4.522353e-01 4.522353e-01 4.522353e-01 setrgbcolor -fill -grestore -newpath -3.702242e+01 7.176559e+01 moveto -3.472646e+01 6.874876e+01 lineto -3.579926e+01 6.824211e+01 lineto -3.801386e+01 7.129737e+01 lineto -3.702242e+01 7.176559e+01 lineto -closepath -gsave -4.567864e-01 4.567864e-01 4.567864e-01 setrgbcolor -fill -grestore -newpath -3.953019e+01 7.458737e+01 moveto -3.702242e+01 7.176559e+01 lineto -3.801386e+01 7.129737e+01 lineto -4.043275e+01 7.416111e+01 lineto -3.953019e+01 7.458737e+01 lineto -closepath -gsave -4.615386e-01 4.615386e-01 4.615386e-01 setrgbcolor -fill -grestore -newpath -4.223077e+01 7.719273e+01 moveto -3.953019e+01 7.458737e+01 lineto -4.043275e+01 7.416111e+01 lineto -4.303764e+01 7.681166e+01 lineto -4.223077e+01 7.719273e+01 lineto -closepath -gsave -4.66451e-01 4.66451e-01 4.66451e-01 setrgbcolor -fill -grestore -newpath -4.510372e+01 7.956194e+01 moveto -4.223077e+01 7.719273e+01 lineto -4.303764e+01 7.681166e+01 lineto -4.580878e+01 7.922896e+01 lineto -4.510372e+01 7.956194e+01 lineto -closepath -gsave -4.714754e-01 4.714754e-01 4.714754e-01 setrgbcolor -fill -grestore -newpath -4.81273e+01 8.167708e+01 moveto -4.510372e+01 7.956194e+01 lineto -4.580878e+01 7.922896e+01 lineto -4.872522e+01 8.13947e+01 lineto -4.81273e+01 8.167708e+01 lineto -closepath -gsave -4.765563e-01 4.765563e-01 4.765563e-01 setrgbcolor -fill -grestore -newpath -5.127861e+01 8.352212e+01 moveto -4.81273e+01 8.167708e+01 lineto -4.872522e+01 8.13947e+01 lineto -5.176486e+01 8.329248e+01 lineto -5.127861e+01 8.352212e+01 lineto -closepath -gsave -4.816325e-01 4.816325e-01 4.816325e-01 setrgbcolor -fill -grestore -newpath -5.45338e+01 8.50831e+01 moveto -5.127861e+01 8.352212e+01 lineto -5.176486e+01 8.329248e+01 lineto -5.490469e+01 8.490794e+01 lineto -5.45338e+01 8.50831e+01 lineto -closepath -gsave -4.866373e-01 4.866373e-01 4.866373e-01 setrgbcolor -fill -grestore -newpath -5.786823e+01 8.634821e+01 moveto -5.45338e+01 8.50831e+01 lineto -5.490469e+01 8.490794e+01 lineto -5.812095e+01 8.622886e+01 lineto -5.786823e+01 8.634821e+01 lineto -closepath -gsave -4.915004e-01 4.915004e-01 4.915004e-01 setrgbcolor -fill -grestore -newpath -6.125664e+01 8.730787e+01 moveto -5.786823e+01 8.634821e+01 lineto -5.812095e+01 8.622886e+01 lineto -6.138929e+01 8.724522e+01 lineto -6.125664e+01 8.730787e+01 lineto -closepath -gsave -4.961496e-01 4.961496e-01 4.961496e-01 setrgbcolor -fill -grestore -newpath -6.467339e+01 8.795481e+01 moveto -6.125664e+01 8.730787e+01 lineto -6.138929e+01 8.724522e+01 lineto -6.468497e+01 8.794934e+01 lineto -6.467339e+01 8.795481e+01 lineto -closepath -gsave -5.00512e-01 5.00512e-01 5.00512e-01 setrgbcolor -fill -grestore -newpath -6.809262e+01 8.828413e+01 moveto -6.467339e+01 8.795481e+01 lineto -6.468497e+01 8.794934e+01 lineto -6.798303e+01 8.833588e+01 lineto -6.809262e+01 8.828413e+01 lineto -closepath -gsave -5.045165e-01 5.045165e-01 5.045165e-01 setrgbcolor -fill -grestore -newpath -4.608117e+01 6.642565e+00 moveto -4.901033e+01 5.416857e+00 lineto -4.969635e+01 5.154824e+00 lineto -4.689287e+01 6.33253e+00 lineto -4.608117e+01 6.642565e+00 lineto -closepath -gsave -4.176201e-01 4.176201e-01 4.176201e-01 setrgbcolor -fill -grestore -newpath -4.329524e+01 8.166226e+00 moveto -4.608117e+01 6.642565e+00 lineto -4.689287e+01 6.33253e+00 lineto -4.422646e+01 7.810536e+00 lineto -4.329524e+01 8.166226e+00 lineto -closepath -gsave -4.178676e-01 4.178676e-01 4.178676e-01 setrgbcolor -fill -grestore -newpath -4.067362e+01 9.976305e+00 moveto -4.329524e+01 8.166226e+00 lineto -4.422646e+01 7.810536e+00 lineto -4.171732e+01 9.577653e+00 lineto -4.067362e+01 9.976305e+00 lineto -closepath -gsave -4.182857e-01 4.182857e-01 4.182857e-01 setrgbcolor -fill -grestore -newpath -3.823616e+01 1.20591e+01 moveto -4.067362e+01 9.976305e+00 lineto -4.171732e+01 9.577653e+00 lineto -3.938443e+01 1.16205e+01 lineto -3.823616e+01 1.20591e+01 lineto -closepath -gsave -4.188787e-01 4.188787e-01 4.188787e-01 setrgbcolor -fill -grestore -newpath -3.600131e+01 1.439884e+01 moveto -3.823616e+01 1.20591e+01 lineto -3.938443e+01 1.16205e+01 lineto -3.724547e+01 1.392362e+01 lineto -3.600131e+01 1.439884e+01 lineto -closepath -gsave -4.196527e-01 4.196527e-01 4.196527e-01 setrgbcolor -fill -grestore -newpath -3.3986e+01 1.697782e+01 moveto -3.600131e+01 1.439884e+01 lineto -3.724547e+01 1.392362e+01 lineto -3.531662e+01 1.646957e+01 lineto -3.3986e+01 1.697782e+01 lineto -closepath -gsave -4.206153e-01 4.206153e-01 4.206153e-01 setrgbcolor -fill -grestore -newpath -3.220547e+01 1.97765e+01 moveto -3.3986e+01 1.697782e+01 lineto -3.531662e+01 1.646957e+01 lineto -3.361249e+01 1.923908e+01 lineto -3.220547e+01 1.97765e+01 lineto -closepath -gsave -4.217751e-01 4.217751e-01 4.217751e-01 setrgbcolor -fill -grestore -newpath -3.067322e+01 2.277371e+01 moveto -3.220547e+01 1.97765e+01 lineto -3.361249e+01 1.923908e+01 lineto -3.214598e+01 2.221118e+01 lineto -3.067322e+01 2.277371e+01 lineto -closepath -gsave -4.231413e-01 4.231413e-01 4.231413e-01 setrgbcolor -fill -grestore -newpath -2.940083e+01 2.594676e+01 moveto -3.067322e+01 2.277371e+01 lineto -3.214598e+01 2.221118e+01 lineto -3.092818e+01 2.536337e+01 lineto -2.940083e+01 2.594676e+01 lineto -closepath -gsave -4.247236e-01 4.247236e-01 4.247236e-01 setrgbcolor -fill -grestore -newpath -2.839795e+01 2.927161e+01 moveto -2.940083e+01 2.594676e+01 lineto -3.092818e+01 2.536337e+01 lineto -2.996832e+01 2.867179e+01 lineto -2.839795e+01 2.927161e+01 lineto -closepath -gsave -4.265316e-01 4.265316e-01 4.265316e-01 setrgbcolor -fill -grestore -newpath -2.767216e+01 3.272311e+01 moveto -2.839795e+01 2.927161e+01 lineto -2.996832e+01 2.867179e+01 lineto -2.927367e+01 3.21114e+01 lineto -2.767216e+01 3.272311e+01 lineto -closepath -gsave -4.28574e-01 4.28574e-01 4.28574e-01 setrgbcolor -fill -grestore -newpath -2.722896e+01 3.627512e+01 moveto -2.767216e+01 3.272311e+01 lineto -2.927367e+01 3.21114e+01 lineto -2.884948e+01 3.565614e+01 lineto -2.722896e+01 3.627512e+01 lineto -closepath -gsave -4.308581e-01 4.308581e-01 4.308581e-01 setrgbcolor -fill -grestore -newpath -2.70717e+01 3.990075e+01 moveto -2.722896e+01 3.627512e+01 lineto -2.884948e+01 3.565614e+01 lineto -2.869897e+01 3.927919e+01 lineto -2.70717e+01 3.990075e+01 lineto -closepath -gsave -4.333892e-01 4.333892e-01 4.333892e-01 setrgbcolor -fill -grestore -newpath -2.720157e+01 4.357255e+01 moveto -2.70717e+01 3.990075e+01 lineto -2.869897e+01 3.927919e+01 lineto -2.882327e+01 4.295313e+01 lineto -2.720157e+01 4.357255e+01 lineto -closepath -gsave -4.3617e-01 4.3617e-01 4.3617e-01 setrgbcolor -fill -grestore -newpath -2.76176e+01 4.726273e+01 moveto -2.720157e+01 4.357255e+01 lineto -2.882327e+01 4.295313e+01 lineto -2.922145e+01 4.665012e+01 lineto -2.76176e+01 4.726273e+01 lineto -closepath -gsave -4.391997e-01 4.391997e-01 4.391997e-01 setrgbcolor -fill -grestore -newpath -2.831662e+01 5.094336e+01 moveto -2.76176e+01 4.726273e+01 lineto -2.922145e+01 4.665012e+01 lineto -2.989049e+01 5.03422e+01 lineto -2.831662e+01 5.094336e+01 lineto -closepath -gsave -4.424733e-01 4.424733e-01 4.424733e-01 setrgbcolor -fill -grestore -newpath -2.929336e+01 5.458655e+01 moveto -2.831662e+01 5.094336e+01 lineto -2.989049e+01 5.03422e+01 lineto -3.082532e+01 5.400141e+01 lineto -2.929336e+01 5.458655e+01 lineto -closepath -gsave -4.459812e-01 4.459812e-01 4.459812e-01 setrgbcolor -fill -grestore -newpath -3.054041e+01 5.816475e+01 moveto -2.929336e+01 5.458655e+01 lineto -3.082532e+01 5.400141e+01 lineto -3.201886e+01 5.760004e+01 lineto -3.054041e+01 5.816475e+01 lineto -closepath -gsave -4.497085e-01 4.497085e-01 4.497085e-01 setrgbcolor -fill -grestore -newpath -3.204833e+01 6.165085e+01 moveto -3.054041e+01 5.816475e+01 lineto -3.201886e+01 5.760004e+01 lineto -3.346209e+01 6.111085e+01 lineto -3.204833e+01 6.165085e+01 lineto -closepath -gsave -4.536346e-01 4.536346e-01 4.536346e-01 setrgbcolor -fill -grestore -newpath -3.380572e+01 6.501847e+01 moveto -3.204833e+01 6.165085e+01 lineto -3.346209e+01 6.111085e+01 lineto -3.514408e+01 6.450727e+01 lineto -3.380572e+01 6.501847e+01 lineto -closepath -gsave -4.577331e-01 4.577331e-01 4.577331e-01 setrgbcolor -fill -grestore -newpath -3.579926e+01 6.824211e+01 moveto -3.380572e+01 6.501847e+01 lineto -3.514408e+01 6.450727e+01 lineto -3.705208e+01 6.776358e+01 lineto -3.579926e+01 6.824211e+01 lineto -closepath -gsave -4.619715e-01 4.619715e-01 4.619715e-01 setrgbcolor -fill -grestore -newpath -3.801386e+01 7.129737e+01 moveto -3.579926e+01 6.824211e+01 lineto -3.705208e+01 6.776358e+01 lineto -3.917167e+01 7.085513e+01 lineto -3.801386e+01 7.129737e+01 lineto -closepath -gsave -4.663113e-01 4.663113e-01 4.663113e-01 setrgbcolor -fill -grestore -newpath -4.043275e+01 7.416111e+01 moveto -3.801386e+01 7.129737e+01 lineto -3.917167e+01 7.085513e+01 lineto -4.148679e+01 7.375851e+01 lineto -4.043275e+01 7.416111e+01 lineto -closepath -gsave -4.707085e-01 4.707085e-01 4.707085e-01 setrgbcolor -fill -grestore -newpath -4.303764e+01 7.681166e+01 moveto -4.043275e+01 7.416111e+01 lineto -4.148679e+01 7.375851e+01 lineto -4.397991e+01 7.645175e+01 lineto -4.303764e+01 7.681166e+01 lineto -closepath -gsave -4.75114e-01 4.75114e-01 4.75114e-01 setrgbcolor -fill -grestore -newpath -4.580878e+01 7.922896e+01 moveto -4.303764e+01 7.681166e+01 lineto -4.397991e+01 7.645175e+01 lineto -4.663216e+01 7.891446e+01 lineto -4.580878e+01 7.922896e+01 lineto -closepath -gsave -4.794743e-01 4.794743e-01 4.794743e-01 setrgbcolor -fill -grestore -newpath -4.872522e+01 8.13947e+01 moveto -4.580878e+01 7.922896e+01 lineto -4.663216e+01 7.891446e+01 lineto -4.942347e+01 8.112799e+01 lineto -4.872522e+01 8.13947e+01 lineto -closepath -gsave -4.837327e-01 4.837327e-01 4.837327e-01 setrgbcolor -fill -grestore -newpath -5.176486e+01 8.329248e+01 moveto -4.872522e+01 8.13947e+01 lineto -4.942347e+01 8.112799e+01 lineto -5.23327e+01 8.307559e+01 lineto -5.176486e+01 8.329248e+01 lineto -closepath -gsave -4.878305e-01 4.878305e-01 4.878305e-01 setrgbcolor -fill -grestore -newpath -5.490469e+01 8.490794e+01 moveto -5.176486e+01 8.329248e+01 lineto -5.23327e+01 8.307559e+01 lineto -5.533782e+01 8.474251e+01 lineto -5.490469e+01 8.490794e+01 lineto -closepath -gsave -4.917079e-01 4.917079e-01 4.917079e-01 setrgbcolor -fill -grestore -newpath -5.812095e+01 8.622886e+01 moveto -5.490469e+01 8.490794e+01 lineto -5.533782e+01 8.474251e+01 lineto -5.841609e+01 8.611613e+01 lineto -5.812095e+01 8.622886e+01 lineto -closepath -gsave -4.953058e-01 4.953058e-01 4.953058e-01 setrgbcolor -fill -grestore -newpath -6.138929e+01 8.724522e+01 moveto -5.812095e+01 8.622886e+01 lineto -5.841609e+01 8.611613e+01 lineto -6.154421e+01 8.718605e+01 lineto -6.138929e+01 8.724522e+01 lineto -closepath -gsave -4.985673e-01 4.985673e-01 4.985673e-01 setrgbcolor -fill -grestore -newpath -6.468497e+01 8.794934e+01 moveto -6.138929e+01 8.724522e+01 lineto -6.154421e+01 8.718605e+01 lineto -6.469848e+01 8.794418e+01 lineto -6.468497e+01 8.794934e+01 lineto -closepath -gsave -5.014392e-01 5.014392e-01 5.014392e-01 setrgbcolor -fill -grestore -newpath -6.798303e+01 8.833588e+01 moveto -6.468497e+01 8.794934e+01 lineto -6.469848e+01 8.794418e+01 lineto -6.785504e+01 8.838477e+01 lineto -6.798303e+01 8.833588e+01 lineto -closepath -gsave -5.038731e-01 5.038731e-01 5.038731e-01 setrgbcolor -fill -grestore -newpath -4.689287e+01 6.33253e+00 moveto -4.969635e+01 5.154824e+00 lineto -5.047673e+01 4.909806e+00 lineto -4.78162e+01 6.042627e+00 lineto -4.689287e+01 6.33253e+00 lineto -closepath -gsave -4.20348e-01 4.20348e-01 4.20348e-01 setrgbcolor -fill -grestore -newpath -4.422646e+01 7.810536e+00 moveto -4.689287e+01 6.33253e+00 lineto -4.78162e+01 6.042627e+00 lineto -4.528576e+01 7.477943e+00 lineto -4.422646e+01 7.810536e+00 lineto -closepath -gsave -4.210962e-01 4.210962e-01 4.210962e-01 setrgbcolor -fill -grestore -newpath -4.171732e+01 9.577653e+00 moveto -4.422646e+01 7.810536e+00 lineto -4.528576e+01 7.477943e+00 lineto -4.290456e+01 9.204887e+00 lineto -4.171732e+01 9.577653e+00 lineto -closepath -gsave -4.220264e-01 4.220264e-01 4.220264e-01 setrgbcolor -fill -grestore -newpath -3.938443e+01 1.16205e+01 moveto -4.171732e+01 9.577653e+00 lineto -4.290456e+01 9.204887e+00 lineto -4.069064e+01 1.121039e+01 lineto -3.938443e+01 1.16205e+01 lineto -closepath -gsave -4.231457e-01 4.231457e-01 4.231457e-01 setrgbcolor -fill -grestore -newpath -3.724547e+01 1.392362e+01 moveto -3.938443e+01 1.16205e+01 lineto -4.069064e+01 1.121039e+01 lineto -3.866075e+01 1.347926e+01 lineto -3.724547e+01 1.392362e+01 lineto -closepath -gsave -4.244613e-01 4.244613e-01 4.244613e-01 setrgbcolor -fill -grestore -newpath -3.531662e+01 1.646957e+01 moveto -3.724547e+01 1.392362e+01 lineto -3.866075e+01 1.347926e+01 lineto -3.683025e+01 1.599433e+01 lineto -3.531662e+01 1.646957e+01 lineto -closepath -gsave -4.259811e-01 4.259811e-01 4.259811e-01 setrgbcolor -fill -grestore -newpath -3.361249e+01 1.923908e+01 moveto -3.531662e+01 1.646957e+01 lineto -3.683025e+01 1.599433e+01 lineto -3.521302e+01 1.873655e+01 lineto -3.361249e+01 1.923908e+01 lineto -closepath -gsave -4.277121e-01 4.277121e-01 4.277121e-01 setrgbcolor -fill -grestore -newpath -3.214598e+01 2.221118e+01 moveto -3.361249e+01 1.923908e+01 lineto -3.521302e+01 1.873655e+01 lineto -3.382129e+01 2.168517e+01 lineto -3.214598e+01 2.221118e+01 lineto -closepath -gsave -4.296611e-01 4.296611e-01 4.296611e-01 setrgbcolor -fill -grestore -newpath -3.092818e+01 2.536337e+01 moveto -3.214598e+01 2.221118e+01 lineto -3.382129e+01 2.168517e+01 lineto -3.266559e+01 2.481787e+01 lineto -3.092818e+01 2.536337e+01 lineto -closepath -gsave -4.31833e-01 4.31833e-01 4.31833e-01 setrgbcolor -fill -grestore -newpath -2.996832e+01 2.867179e+01 moveto -3.092818e+01 2.536337e+01 lineto -3.266559e+01 2.481787e+01 lineto -3.175468e+01 2.811092e+01 lineto -2.996832e+01 2.867179e+01 lineto -closepath -gsave -4.342312e-01 4.342312e-01 4.342312e-01 setrgbcolor -fill -grestore -newpath -2.927367e+01 3.21114e+01 moveto -2.996832e+01 2.867179e+01 lineto -3.175468e+01 2.811092e+01 lineto -3.109545e+01 3.15394e+01 lineto -2.927367e+01 3.21114e+01 lineto -closepath -gsave -4.368564e-01 4.368564e-01 4.368564e-01 setrgbcolor -fill -grestore -newpath -2.884948e+01 3.565614e+01 moveto -2.927367e+01 3.21114e+01 lineto -3.109545e+01 3.15394e+01 lineto -3.069289e+01 3.507736e+01 lineto -2.884948e+01 3.565614e+01 lineto -closepath -gsave -4.397063e-01 4.397063e-01 4.397063e-01 setrgbcolor -fill -grestore -newpath -2.869897e+01 3.927919e+01 moveto -2.884948e+01 3.565614e+01 lineto -3.069289e+01 3.507736e+01 lineto -3.055005e+01 3.8698e+01 lineto -2.869897e+01 3.927919e+01 lineto -closepath -gsave -4.427748e-01 4.427748e-01 4.427748e-01 setrgbcolor -fill -grestore -newpath -2.882327e+01 4.295313e+01 moveto -2.869897e+01 3.927919e+01 lineto -3.055005e+01 3.8698e+01 lineto -3.066802e+01 4.237392e+01 lineto -2.882327e+01 4.295313e+01 lineto -closepath -gsave -4.460519e-01 4.460519e-01 4.460519e-01 setrgbcolor -fill -grestore -newpath -2.922145e+01 4.665012e+01 moveto -2.882327e+01 4.295313e+01 lineto -3.066802e+01 4.237392e+01 lineto -3.104589e+01 4.607729e+01 lineto -2.922145e+01 4.665012e+01 lineto -closepath -gsave -4.495226e-01 4.495226e-01 4.495226e-01 setrgbcolor -fill -grestore -newpath -2.989049e+01 5.03422e+01 moveto -2.922145e+01 4.665012e+01 lineto -3.104589e+01 4.607729e+01 lineto -3.168081e+01 4.978008e+01 lineto -2.989049e+01 5.03422e+01 lineto -closepath -gsave -4.531675e-01 4.531675e-01 4.531675e-01 setrgbcolor -fill -grestore -newpath -3.082532e+01 5.400141e+01 moveto -2.989049e+01 5.03422e+01 lineto -3.168081e+01 4.978008e+01 lineto -3.256797e+01 5.345426e+01 lineto -3.082532e+01 5.400141e+01 lineto -closepath -gsave -4.569615e-01 4.569615e-01 4.569615e-01 setrgbcolor -fill -grestore -newpath -3.201886e+01 5.760004e+01 moveto -3.082532e+01 5.400141e+01 lineto -3.256797e+01 5.345426e+01 lineto -3.370066e+01 5.707199e+01 lineto -3.201886e+01 5.760004e+01 lineto -closepath -gsave -4.608748e-01 4.608748e-01 4.608748e-01 setrgbcolor -fill -grestore -newpath -3.346209e+01 6.111085e+01 moveto -3.201886e+01 5.760004e+01 lineto -3.370066e+01 5.707199e+01 lineto -3.507029e+01 6.060591e+01 lineto -3.346209e+01 6.111085e+01 lineto -closepath -gsave -4.648721e-01 4.648721e-01 4.648721e-01 setrgbcolor -fill -grestore -newpath -3.514408e+01 6.450727e+01 moveto -3.346209e+01 6.111085e+01 lineto -3.507029e+01 6.060591e+01 lineto -3.666651e+01 6.402926e+01 lineto -3.514408e+01 6.450727e+01 lineto -closepath -gsave -4.689137e-01 4.689137e-01 4.689137e-01 setrgbcolor -fill -grestore -newpath -3.705208e+01 6.776358e+01 moveto -3.514408e+01 6.450727e+01 lineto -3.666651e+01 6.402926e+01 lineto -3.847722e+01 6.731612e+01 lineto -3.705208e+01 6.776358e+01 lineto -closepath -gsave -4.729553e-01 4.729553e-01 4.729553e-01 setrgbcolor -fill -grestore -newpath -3.917167e+01 7.085513e+01 moveto -3.705208e+01 6.776358e+01 lineto -3.847722e+01 6.731612e+01 lineto -4.048872e+01 7.04416e+01 lineto -3.917167e+01 7.085513e+01 lineto -closepath -gsave -4.769493e-01 4.769493e-01 4.769493e-01 setrgbcolor -fill -grestore -newpath -4.148679e+01 7.375851e+01 moveto -3.917167e+01 7.085513e+01 lineto -4.048872e+01 7.04416e+01 lineto -4.268579e+01 7.338205e+01 lineto -4.148679e+01 7.375851e+01 lineto -closepath -gsave -4.808449e-01 4.808449e-01 4.808449e-01 setrgbcolor -fill -grestore -newpath -4.397991e+01 7.645175e+01 moveto -4.148679e+01 7.375851e+01 lineto -4.268579e+01 7.338205e+01 lineto -4.505178e+01 7.611521e+01 lineto -4.397991e+01 7.645175e+01 lineto -closepath -gsave -4.845901e-01 4.845901e-01 4.845901e-01 setrgbcolor -fill -grestore -newpath -4.663216e+01 7.891446e+01 moveto -4.397991e+01 7.645175e+01 lineto -4.505178e+01 7.611521e+01 lineto -4.756879e+01 7.862038e+01 lineto -4.663216e+01 7.891446e+01 lineto -closepath -gsave -4.881316e-01 4.881316e-01 4.881316e-01 setrgbcolor -fill -grestore -newpath -4.942347e+01 8.112799e+01 moveto -4.663216e+01 7.891446e+01 lineto -4.756879e+01 7.862038e+01 lineto -5.021776e+01 8.08786e+01 lineto -4.942347e+01 8.112799e+01 lineto -closepath -gsave -4.914174e-01 4.914174e-01 4.914174e-01 setrgbcolor -fill -grestore -newpath -5.23327e+01 8.307559e+01 moveto -4.942347e+01 8.112799e+01 lineto -5.021776e+01 8.08786e+01 lineto -5.297863e+01 8.287278e+01 lineto -5.23327e+01 8.307559e+01 lineto -closepath -gsave -4.943968e-01 4.943968e-01 4.943968e-01 setrgbcolor -fill -grestore -newpath -5.533782e+01 8.474251e+01 moveto -5.23327e+01 8.307559e+01 lineto -5.297863e+01 8.287278e+01 lineto -5.583052e+01 8.458781e+01 lineto -5.533782e+01 8.474251e+01 lineto -closepath -gsave -4.970227e-01 4.970227e-01 4.970227e-01 setrgbcolor -fill -grestore -newpath -5.841609e+01 8.611613e+01 moveto -5.533782e+01 8.474251e+01 lineto -5.583052e+01 8.458781e+01 lineto -5.875182e+01 8.601071e+01 lineto -5.841609e+01 8.611613e+01 lineto -closepath -gsave -4.992523e-01 4.992523e-01 4.992523e-01 setrgbcolor -fill -grestore -newpath -6.154421e+01 8.718605e+01 moveto -5.841609e+01 8.611613e+01 lineto -5.875182e+01 8.601071e+01 lineto -6.172043e+01 8.713072e+01 lineto -6.154421e+01 8.718605e+01 lineto -closepath -gsave -5.010484e-01 5.010484e-01 5.010484e-01 setrgbcolor -fill -grestore -newpath -6.469848e+01 8.794418e+01 moveto -6.154421e+01 8.718605e+01 lineto -6.172043e+01 8.713072e+01 lineto -6.471386e+01 8.793935e+01 lineto -6.469848e+01 8.794418e+01 lineto -closepath -gsave -5.023807e-01 5.023807e-01 5.023807e-01 setrgbcolor -fill -grestore -newpath -6.785504e+01 8.838477e+01 moveto -6.469848e+01 8.794418e+01 lineto -6.471386e+01 8.793935e+01 lineto -6.770946e+01 8.843048e+01 lineto -6.785504e+01 8.838477e+01 lineto -closepath -gsave -5.032263e-01 5.032263e-01 5.032263e-01 setrgbcolor -fill -grestore -newpath -5.047673e+01 4.909806e+00 moveto -5.32472e+01 4.088057e+00 lineto -5.395117e+01 3.90477e+00 lineto -5.134664e+01 4.683314e+00 lineto -5.047673e+01 4.909806e+00 lineto -closepath -gsave -4.222012e-01 4.222012e-01 4.222012e-01 setrgbcolor -fill -grestore -newpath -4.78162e+01 6.042627e+00 moveto -5.047673e+01 4.909806e+00 lineto -5.134664e+01 4.683314e+00 lineto -4.884547e+01 5.774644e+00 lineto -4.78162e+01 6.042627e+00 lineto -closepath -gsave -4.233534e-01 4.233534e-01 4.233534e-01 setrgbcolor -fill -grestore -newpath -4.528576e+01 7.477943e+00 moveto -4.78162e+01 6.042627e+00 lineto -4.884547e+01 5.774644e+00 lineto -4.64666e+01 7.170497e+00 lineto -4.528576e+01 7.477943e+00 lineto -closepath -gsave -4.247036e-01 4.247036e-01 4.247036e-01 setrgbcolor -fill -grestore -newpath -4.290456e+01 9.204887e+00 moveto -4.528576e+01 7.477943e+00 lineto -4.64666e+01 7.170497e+00 lineto -4.422803e+01 8.860306e+00 lineto -4.290456e+01 9.204887e+00 lineto -closepath -gsave -4.262592e-01 4.262592e-01 4.262592e-01 setrgbcolor -fill -grestore -newpath -4.069064e+01 1.121039e+01 moveto -4.290456e+01 9.204887e+00 lineto -4.422803e+01 8.860306e+00 lineto -4.214672e+01 1.083128e+01 lineto -4.069064e+01 1.121039e+01 lineto -closepath -gsave -4.280275e-01 4.280275e-01 4.280275e-01 setrgbcolor -fill -grestore -newpath -3.866075e+01 1.347926e+01 moveto -4.069064e+01 1.121039e+01 lineto -4.214672e+01 1.083128e+01 lineto -4.023841e+01 1.306849e+01 lineto -3.866075e+01 1.347926e+01 lineto -closepath -gsave -4.300148e-01 4.300148e-01 4.300148e-01 setrgbcolor -fill -grestore -newpath -3.683025e+01 1.599433e+01 moveto -3.866075e+01 1.347926e+01 lineto -4.023841e+01 1.306849e+01 lineto -3.851756e+01 1.555502e+01 lineto -3.683025e+01 1.599433e+01 lineto -closepath -gsave -4.32226e-01 4.32226e-01 4.32226e-01 setrgbcolor -fill -grestore -newpath -3.521302e+01 1.873655e+01 moveto -3.683025e+01 1.599433e+01 lineto -3.851756e+01 1.555502e+01 lineto -3.69972e+01 1.827202e+01 lineto -3.521302e+01 1.873655e+01 lineto -closepath -gsave -4.346638e-01 4.346638e-01 4.346638e-01 setrgbcolor -fill -grestore -newpath -3.382129e+01 2.168517e+01 moveto -3.521302e+01 1.873655e+01 lineto -3.69972e+01 1.827202e+01 lineto -3.568883e+01 2.119894e+01 lineto -3.382129e+01 2.168517e+01 lineto -closepath -gsave -4.373285e-01 4.373285e-01 4.373285e-01 setrgbcolor -fill -grestore -newpath -3.266559e+01 2.481787e+01 moveto -3.382129e+01 2.168517e+01 lineto -3.568883e+01 2.119894e+01 lineto -3.460235e+01 2.431361e+01 lineto -3.266559e+01 2.481787e+01 lineto -closepath -gsave -4.402171e-01 4.402171e-01 4.402171e-01 setrgbcolor -fill -grestore -newpath -3.175468e+01 2.811092e+01 moveto -3.266559e+01 2.481787e+01 lineto -3.460235e+01 2.431361e+01 lineto -3.3746e+01 2.759246e+01 lineto -3.175468e+01 2.811092e+01 lineto -closepath -gsave -4.433227e-01 4.433227e-01 4.433227e-01 setrgbcolor -fill -grestore -newpath -3.109545e+01 3.15394e+01 moveto -3.175468e+01 2.811092e+01 lineto -3.3746e+01 2.759246e+01 lineto -3.312626e+01 3.101066e+01 lineto -3.109545e+01 3.15394e+01 lineto -closepath -gsave -4.466346e-01 4.466346e-01 4.466346e-01 setrgbcolor -fill -grestore -newpath -3.069289e+01 3.507736e+01 moveto -3.109545e+01 3.15394e+01 lineto -3.312626e+01 3.101066e+01 lineto -3.274781e+01 3.454233e+01 lineto -3.069289e+01 3.507736e+01 lineto -closepath -gsave -4.501369e-01 4.501369e-01 4.501369e-01 setrgbcolor -fill -grestore -newpath -3.055005e+01 3.8698e+01 moveto -3.069289e+01 3.507736e+01 lineto -3.274781e+01 3.454233e+01 lineto -3.261353e+01 3.816075e+01 lineto -3.055005e+01 3.8698e+01 lineto -closepath -gsave -4.538091e-01 4.538091e-01 4.538091e-01 setrgbcolor -fill -grestore -newpath -3.066802e+01 4.237392e+01 moveto -3.055005e+01 3.8698e+01 lineto -3.261353e+01 3.816075e+01 lineto -3.272443e+01 4.183851e+01 lineto -3.066802e+01 4.237392e+01 lineto -closepath -gsave -4.576255e-01 4.576255e-01 4.576255e-01 setrgbcolor -fill -grestore -newpath -3.104589e+01 4.607729e+01 moveto -3.066802e+01 4.237392e+01 lineto -3.272443e+01 4.183851e+01 lineto -3.307967e+01 4.554778e+01 lineto -3.104589e+01 4.607729e+01 lineto -closepath -gsave -4.615551e-01 4.615551e-01 4.615551e-01 setrgbcolor -fill -grestore -newpath -3.168081e+01 4.978008e+01 moveto -3.104589e+01 4.607729e+01 lineto -3.307967e+01 4.554778e+01 lineto -3.367656e+01 4.926047e+01 lineto -3.168081e+01 4.978008e+01 lineto -closepath -gsave -4.65562e-01 4.65562e-01 4.65562e-01 setrgbcolor -fill -grestore -newpath -3.256797e+01 5.345426e+01 moveto -3.168081e+01 4.978008e+01 lineto -3.367656e+01 4.926047e+01 lineto -3.451058e+01 5.294847e+01 lineto -3.256797e+01 5.345426e+01 lineto -closepath -gsave -4.696056e-01 4.696056e-01 4.696056e-01 setrgbcolor -fill -grestore -newpath -3.370066e+01 5.707199e+01 moveto -3.256797e+01 5.345426e+01 lineto -3.451058e+01 5.294847e+01 lineto -3.557542e+01 5.658388e+01 lineto -3.370066e+01 5.707199e+01 lineto -closepath -gsave -4.736412e-01 4.736412e-01 4.736412e-01 setrgbcolor -fill -grestore -newpath -3.507029e+01 6.060591e+01 moveto -3.370066e+01 5.707199e+01 lineto -3.557542e+01 5.658388e+01 lineto -3.686302e+01 6.013916e+01 lineto -3.507029e+01 6.060591e+01 lineto -closepath -gsave -4.776205e-01 4.776205e-01 4.776205e-01 setrgbcolor -fill -grestore -newpath -3.666651e+01 6.402926e+01 moveto -3.507029e+01 6.060591e+01 lineto -3.686302e+01 6.013916e+01 lineto -3.836362e+01 6.35874e+01 lineto -3.666651e+01 6.402926e+01 lineto -closepath -gsave -4.814928e-01 4.814928e-01 4.814928e-01 setrgbcolor -fill -grestore -newpath -3.847722e+01 6.731612e+01 moveto -3.666651e+01 6.402926e+01 lineto -3.836362e+01 6.35874e+01 lineto -4.006588e+01 6.690249e+01 lineto -3.847722e+01 6.731612e+01 lineto -closepath -gsave -4.852056e-01 4.852056e-01 4.852056e-01 setrgbcolor -fill -grestore -newpath -4.048872e+01 7.04416e+01 moveto -3.847722e+01 6.731612e+01 lineto -4.006588e+01 6.690249e+01 lineto -4.19569e+01 7.005935e+01 lineto -4.048872e+01 7.04416e+01 lineto -closepath -gsave -4.887061e-01 4.887061e-01 4.887061e-01 setrgbcolor -fill -grestore -newpath -4.268579e+01 7.338205e+01 moveto -4.048872e+01 7.04416e+01 lineto -4.19569e+01 7.005935e+01 lineto -4.402236e+01 7.303406e+01 lineto -4.268579e+01 7.338205e+01 lineto -closepath -gsave -4.919423e-01 4.919423e-01 4.919423e-01 setrgbcolor -fill -grestore -newpath -4.505178e+01 7.611521e+01 moveto -4.268579e+01 7.338205e+01 lineto -4.402236e+01 7.303406e+01 lineto -4.624663e+01 7.580412e+01 lineto -4.505178e+01 7.611521e+01 lineto -closepath -gsave -4.948643e-01 4.948643e-01 4.948643e-01 setrgbcolor -fill -grestore -newpath -4.756879e+01 7.862038e+01 moveto -4.505178e+01 7.611521e+01 lineto -4.624663e+01 7.580412e+01 lineto -4.861288e+01 7.834854e+01 lineto -4.756879e+01 7.862038e+01 lineto -closepath -gsave -4.974256e-01 4.974256e-01 4.974256e-01 setrgbcolor -fill -grestore -newpath -5.021776e+01 8.08786e+01 moveto -4.756879e+01 7.862038e+01 lineto -4.861288e+01 7.834854e+01 lineto -5.110318e+01 8.064807e+01 lineto -5.021776e+01 8.08786e+01 lineto -closepath -gsave -4.995843e-01 4.995843e-01 4.995843e-01 setrgbcolor -fill -grestore -newpath -5.297863e+01 8.287278e+01 moveto -5.021776e+01 8.08786e+01 lineto -5.110318e+01 8.064807e+01 lineto -5.369869e+01 8.26853e+01 lineto -5.297863e+01 8.287278e+01 lineto -closepath -gsave -5.013043e-01 5.013043e-01 5.013043e-01 setrgbcolor -fill -grestore -newpath -5.583052e+01 8.458781e+01 moveto -5.297863e+01 8.287278e+01 lineto -5.369869e+01 8.26853e+01 lineto -5.637975e+01 8.444481e+01 lineto -5.583052e+01 8.458781e+01 lineto -closepath -gsave -5.025564e-01 5.025564e-01 5.025564e-01 setrgbcolor -fill -grestore -newpath -5.875182e+01 8.601071e+01 moveto -5.583052e+01 8.458781e+01 lineto -5.637975e+01 8.444481e+01 lineto -5.912607e+01 8.591327e+01 lineto -5.875182e+01 8.601071e+01 lineto -closepath -gsave -5.033189e-01 5.033189e-01 5.033189e-01 setrgbcolor -fill -grestore -newpath -6.172043e+01 8.713072e+01 moveto -5.875182e+01 8.601071e+01 lineto -5.912607e+01 8.591327e+01 lineto -6.191687e+01 8.707958e+01 lineto -6.172043e+01 8.713072e+01 lineto -closepath -gsave -5.035787e-01 5.035787e-01 5.035787e-01 setrgbcolor -fill -grestore -newpath -6.471386e+01 8.793935e+01 moveto -6.172043e+01 8.713072e+01 lineto -6.191687e+01 8.707958e+01 lineto -6.4731e+01 8.793489e+01 lineto -6.471386e+01 8.793935e+01 lineto -closepath -gsave -5.03331e-01 5.03331e-01 5.03331e-01 setrgbcolor -fill -grestore -newpath -6.770946e+01 8.843048e+01 moveto -6.471386e+01 8.793935e+01 lineto -6.4731e+01 8.793489e+01 lineto -6.754717e+01 8.847273e+01 lineto -6.770946e+01 8.843048e+01 lineto -closepath -gsave -5.025803e-01 5.025803e-01 5.025803e-01 setrgbcolor -fill -grestore -newpath -5.134664e+01 4.683314e+00 moveto -5.395117e+01 3.90477e+00 lineto -5.472326e+01 3.737606e+00 lineto -5.230073e+01 4.476744e+00 lineto -5.134664e+01 4.683314e+00 lineto -closepath -gsave -4.24809e-01 4.24809e-01 4.24809e-01 setrgbcolor -fill -grestore -newpath -4.884547e+01 5.774644e+00 moveto -5.134664e+01 4.683314e+00 lineto -5.230073e+01 4.476744e+00 lineto -4.997434e+01 5.530232e+00 lineto -4.884547e+01 5.774644e+00 lineto -closepath -gsave -4.266306e-01 4.266306e-01 4.266306e-01 setrgbcolor -fill -grestore -newpath -4.64666e+01 7.170497e+00 moveto -4.884547e+01 5.774644e+00 lineto -4.997434e+01 5.530232e+00 lineto -4.77617e+01 6.890093e+00 lineto -4.64666e+01 7.170497e+00 lineto -closepath -gsave -4.286875e-01 4.286875e-01 4.286875e-01 setrgbcolor -fill -grestore -newpath -4.422803e+01 8.860306e+00 moveto -4.64666e+01 7.170497e+00 lineto -4.77617e+01 6.890093e+00 lineto -4.567957e+01 8.546034e+00 lineto -4.422803e+01 8.860306e+00 lineto -closepath -gsave -4.309868e-01 4.309868e-01 4.309868e-01 setrgbcolor -fill -grestore -newpath -4.214672e+01 1.083128e+01 moveto -4.422803e+01 8.860306e+00 lineto -4.567957e+01 8.546034e+00 lineto -4.374369e+01 1.048552e+01 lineto -4.214672e+01 1.083128e+01 lineto -closepath -gsave -4.335336e-01 4.335336e-01 4.335336e-01 setrgbcolor -fill -grestore -newpath -4.023841e+01 1.306849e+01 moveto -4.214672e+01 1.083128e+01 lineto -4.374369e+01 1.048552e+01 lineto -4.196874e+01 1.269386e+01 lineto -4.023841e+01 1.306849e+01 lineto -closepath -gsave -4.363303e-01 4.363303e-01 4.363303e-01 setrgbcolor -fill -grestore -newpath -3.851756e+01 1.555502e+01 moveto -4.023841e+01 1.306849e+01 lineto -4.196874e+01 1.269386e+01 lineto -4.036814e+01 1.515435e+01 lineto -3.851756e+01 1.555502e+01 lineto -closepath -gsave -4.393755e-01 4.393755e-01 4.393755e-01 setrgbcolor -fill -grestore -newpath -3.69972e+01 1.827202e+01 moveto -3.851756e+01 1.555502e+01 lineto -4.036814e+01 1.515435e+01 lineto -3.895402e+01 1.784835e+01 lineto -3.69972e+01 1.827202e+01 lineto -closepath -gsave -4.42664e-01 4.42664e-01 4.42664e-01 setrgbcolor -fill -grestore -newpath -3.568883e+01 2.119894e+01 moveto -3.69972e+01 1.827202e+01 lineto -3.895402e+01 1.784835e+01 lineto -3.773708e+01 2.075547e+01 lineto -3.568883e+01 2.119894e+01 lineto -closepath -gsave -4.461857e-01 4.461857e-01 4.461857e-01 setrgbcolor -fill -grestore -newpath -3.460235e+01 2.431361e+01 moveto -3.568883e+01 2.119894e+01 lineto -3.773708e+01 2.075547e+01 lineto -3.672653e+01 2.38537e+01 lineto -3.460235e+01 2.431361e+01 lineto -closepath -gsave -4.499251e-01 4.499251e-01 4.499251e-01 setrgbcolor -fill -grestore -newpath -3.3746e+01 2.759246e+01 moveto -3.460235e+01 2.431361e+01 lineto -3.672653e+01 2.38537e+01 lineto -3.593002e+01 2.711959e+01 lineto -3.3746e+01 2.759246e+01 lineto -closepath -gsave -4.538614e-01 4.538614e-01 4.538614e-01 setrgbcolor -fill -grestore -newpath -3.312626e+01 3.101066e+01 moveto -3.3746e+01 2.759246e+01 lineto -3.593002e+01 2.711959e+01 lineto -3.535358e+01 3.052842e+01 lineto -3.312626e+01 3.101066e+01 lineto -closepath -gsave -4.579676e-01 4.579676e-01 4.579676e-01 setrgbcolor -fill -grestore -newpath -3.274781e+01 3.454233e+01 moveto -3.312626e+01 3.101066e+01 lineto -3.535358e+01 3.052842e+01 lineto -3.500158e+01 3.405437e+01 lineto -3.274781e+01 3.454233e+01 lineto -closepath -gsave -4.622108e-01 4.622108e-01 4.622108e-01 setrgbcolor -fill -grestore -newpath -3.261353e+01 3.816075e+01 moveto -3.274781e+01 3.454233e+01 lineto -3.500158e+01 3.405437e+01 lineto -3.487668e+01 3.767075e+01 lineto -3.261353e+01 3.816075e+01 lineto -closepath -gsave -4.665523e-01 4.665523e-01 4.665523e-01 setrgbcolor -fill -grestore -newpath -3.272443e+01 4.183851e+01 moveto -3.261353e+01 3.816075e+01 lineto -3.487668e+01 3.767075e+01 lineto -3.497983e+01 4.135019e+01 lineto -3.272443e+01 4.183851e+01 lineto -closepath -gsave -4.709479e-01 4.709479e-01 4.709479e-01 setrgbcolor -fill -grestore -newpath -3.307967e+01 4.554778e+01 moveto -3.272443e+01 4.183851e+01 lineto -3.497983e+01 4.135019e+01 lineto -3.531025e+01 4.506483e+01 lineto -3.307967e+01 4.554778e+01 lineto -closepath -gsave -4.753484e-01 4.753484e-01 4.753484e-01 setrgbcolor -fill -grestore -newpath -3.367656e+01 4.926047e+01 moveto -3.307967e+01 4.554778e+01 lineto -3.531025e+01 4.506483e+01 lineto -3.586543e+01 4.878655e+01 lineto -3.367656e+01 4.926047e+01 lineto -closepath -gsave -4.797004e-01 4.797004e-01 4.797004e-01 setrgbcolor -fill -grestore -newpath -3.451058e+01 5.294847e+01 moveto -3.367656e+01 4.926047e+01 lineto -3.586543e+01 4.878655e+01 lineto -3.664117e+01 5.248718e+01 lineto -3.451058e+01 5.294847e+01 lineto -closepath -gsave -4.839476e-01 4.839476e-01 4.839476e-01 setrgbcolor -fill -grestore -newpath -3.557542e+01 5.658388e+01 moveto -3.451058e+01 5.294847e+01 lineto -3.664117e+01 5.248718e+01 lineto -3.76316e+01 5.613869e+01 lineto -3.557542e+01 5.658388e+01 lineto -closepath -gsave -4.880311e-01 4.880311e-01 4.880311e-01 setrgbcolor -fill -grestore -newpath -3.686302e+01 6.013916e+01 moveto -3.557542e+01 5.658388e+01 lineto -3.76316e+01 5.613869e+01 lineto -3.882922e+01 5.971346e+01 lineto -3.686302e+01 6.013916e+01 lineto -closepath -gsave -4.918918e-01 4.918918e-01 4.918918e-01 setrgbcolor -fill -grestore -newpath -3.836362e+01 6.35874e+01 moveto -3.686302e+01 6.013916e+01 lineto -3.882922e+01 5.971346e+01 lineto -4.022496e+01 6.31844e+01 lineto -3.836362e+01 6.35874e+01 lineto -closepath -gsave -4.954709e-01 4.954709e-01 4.954709e-01 setrgbcolor -fill -grestore -newpath -4.006588e+01 6.690249e+01 moveto -3.836362e+01 6.35874e+01 lineto -4.022496e+01 6.31844e+01 lineto -4.180826e+01 6.652525e+01 lineto -4.006588e+01 6.690249e+01 lineto -closepath -gsave -4.987118e-01 4.987118e-01 4.987118e-01 setrgbcolor -fill -grestore -newpath -4.19569e+01 7.005935e+01 moveto -4.006588e+01 6.690249e+01 lineto -4.180826e+01 6.652525e+01 lineto -4.356714e+01 6.971071e+01 lineto -4.19569e+01 7.005935e+01 lineto -closepath -gsave -5.015617e-01 5.015617e-01 5.015617e-01 setrgbcolor -fill -grestore -newpath -4.402236e+01 7.303406e+01 moveto -4.19569e+01 7.005935e+01 lineto -4.356714e+01 6.971071e+01 lineto -4.548827e+01 7.271668e+01 lineto -4.402236e+01 7.303406e+01 lineto -closepath -gsave -5.039725e-01 5.039725e-01 5.039725e-01 setrgbcolor -fill -grestore -newpath -4.624663e+01 7.580412e+01 moveto -4.402236e+01 7.303406e+01 lineto -4.548827e+01 7.271668e+01 lineto -4.755711e+01 7.552038e+01 lineto -4.624663e+01 7.580412e+01 lineto -closepath -gsave -5.05903e-01 5.05903e-01 5.05903e-01 setrgbcolor -fill -grestore -newpath -4.861288e+01 7.834854e+01 moveto -4.624663e+01 7.580412e+01 lineto -4.755711e+01 7.552038e+01 lineto -4.9758e+01 7.810061e+01 lineto -4.861288e+01 7.834854e+01 lineto -closepath -gsave -5.073193e-01 5.073193e-01 5.073193e-01 setrgbcolor -fill -grestore -newpath -5.110318e+01 8.064807e+01 moveto -4.861288e+01 7.834854e+01 lineto -4.9758e+01 7.810061e+01 lineto -5.207428e+01 8.043782e+01 lineto -5.110318e+01 8.064807e+01 lineto -closepath -gsave -5.081962e-01 5.081962e-01 5.081962e-01 setrgbcolor -fill -grestore -newpath -5.369869e+01 8.26853e+01 moveto -5.110318e+01 8.064807e+01 lineto -5.207428e+01 8.043782e+01 lineto -5.448842e+01 8.251432e+01 lineto -5.369869e+01 8.26853e+01 lineto -closepath -gsave -5.085179e-01 5.085179e-01 5.085179e-01 setrgbcolor -fill -grestore -newpath -5.637975e+01 8.444481e+01 moveto -5.369869e+01 8.26853e+01 lineto -5.448842e+01 8.251432e+01 lineto -5.698213e+01 8.431439e+01 lineto -5.637975e+01 8.444481e+01 lineto -closepath -gsave -5.082785e-01 5.082785e-01 5.082785e-01 setrgbcolor -fill -grestore -newpath -5.912607e+01 8.591327e+01 moveto -5.637975e+01 8.444481e+01 lineto -5.698213e+01 8.431439e+01 lineto -5.953654e+01 8.58244e+01 lineto -5.912607e+01 8.591327e+01 lineto -closepath -gsave -5.074821e-01 5.074821e-01 5.074821e-01 setrgbcolor -fill -grestore -newpath -6.191687e+01 8.707958e+01 moveto -5.912607e+01 8.591327e+01 lineto -5.953654e+01 8.58244e+01 lineto -6.213231e+01 8.703293e+01 lineto -6.191687e+01 8.707958e+01 lineto -closepath -gsave -5.061428e-01 5.061428e-01 5.061428e-01 setrgbcolor -fill -grestore -newpath -6.4731e+01 8.793489e+01 moveto -6.191687e+01 8.707958e+01 lineto -6.213231e+01 8.703293e+01 lineto -6.47498e+01 8.793082e+01 lineto -6.4731e+01 8.793489e+01 lineto -closepath -gsave -5.042842e-01 5.042842e-01 5.042842e-01 setrgbcolor -fill -grestore -newpath -6.754717e+01 8.847273e+01 moveto -6.4731e+01 8.793489e+01 lineto -6.47498e+01 8.793082e+01 lineto -6.736917e+01 8.851127e+01 lineto -6.754717e+01 8.847273e+01 lineto -closepath -gsave -5.019389e-01 5.019389e-01 5.019389e-01 setrgbcolor -fill -grestore -newpath -5.230073e+01 4.476744e+00 moveto -5.472326e+01 3.737606e+00 lineto -5.555871e+01 3.587594e+00 lineto -5.333312e+01 4.29137e+00 lineto -5.230073e+01 4.476744e+00 lineto -closepath -gsave -4.275864e-01 4.275864e-01 4.275864e-01 setrgbcolor -fill -grestore -newpath -4.997434e+01 5.530232e+00 moveto -5.230073e+01 4.476744e+00 lineto -5.333312e+01 4.29137e+00 lineto -5.119585e+01 5.310898e+00 lineto -4.997434e+01 5.530232e+00 lineto -closepath -gsave -4.301665e-01 4.301665e-01 4.301665e-01 setrgbcolor -fill -grestore -newpath -4.77617e+01 6.890093e+00 moveto -4.997434e+01 5.530232e+00 lineto -5.119585e+01 5.310898e+00 lineto -4.916309e+01 6.638461e+00 lineto -4.77617e+01 6.890093e+00 lineto -closepath -gsave -4.330357e-01 4.330357e-01 4.330357e-01 setrgbcolor -fill -grestore -newpath -4.567957e+01 8.546034e+00 moveto -4.77617e+01 6.890093e+00 lineto -4.916309e+01 6.638461e+00 lineto -4.725022e+01 8.264008e+00 lineto -4.567957e+01 8.546034e+00 lineto -closepath -gsave -4.36199e-01 4.36199e-01 4.36199e-01 setrgbcolor -fill -grestore -newpath -4.374369e+01 1.048552e+01 moveto -4.567957e+01 8.546034e+00 lineto -4.725022e+01 8.264008e+00 lineto -4.547172e+01 1.017523e+01 lineto -4.374369e+01 1.048552e+01 lineto -closepath -gsave -4.396569e-01 4.396569e-01 4.396569e-01 setrgbcolor -fill -grestore -newpath -4.196874e+01 1.269386e+01 moveto -4.374369e+01 1.048552e+01 lineto -4.547172e+01 1.017523e+01 lineto -4.384106e+01 1.235767e+01 lineto -4.196874e+01 1.269386e+01 lineto -closepath -gsave -4.434046e-01 4.434046e-01 4.434046e-01 setrgbcolor -fill -grestore -newpath -4.036814e+01 1.515435e+01 moveto -4.196874e+01 1.269386e+01 lineto -4.384106e+01 1.235767e+01 lineto -4.237059e+01 1.479479e+01 lineto -4.036814e+01 1.515435e+01 lineto -closepath -gsave -4.474311e-01 4.474311e-01 4.474311e-01 setrgbcolor -fill -grestore -newpath -3.895402e+01 1.784835e+01 moveto -4.036814e+01 1.515435e+01 lineto -4.237059e+01 1.479479e+01 lineto -4.107143e+01 1.746815e+01 lineto -3.895402e+01 1.784835e+01 lineto -closepath -gsave -4.51719e-01 4.51719e-01 4.51719e-01 setrgbcolor -fill -grestore -newpath -3.773708e+01 2.075547e+01 moveto -3.895402e+01 1.784835e+01 lineto -4.107143e+01 1.746815e+01 lineto -3.995341e+01 2.035751e+01 lineto -3.773708e+01 2.075547e+01 lineto -closepath -gsave -4.562433e-01 4.562433e-01 4.562433e-01 setrgbcolor -fill -grestore -newpath -3.672653e+01 2.38537e+01 moveto -3.773708e+01 2.075547e+01 lineto -3.995341e+01 2.035751e+01 lineto -3.902502e+01 2.344099e+01 lineto -3.672653e+01 2.38537e+01 lineto -closepath -gsave -4.609717e-01 4.609717e-01 4.609717e-01 setrgbcolor -fill -grestore -newpath -3.593002e+01 2.711959e+01 moveto -3.672653e+01 2.38537e+01 lineto -3.902502e+01 2.344099e+01 lineto -3.829326e+01 2.669525e+01 lineto -3.593002e+01 2.711959e+01 lineto -closepath -gsave -4.658642e-01 4.658642e-01 4.658642e-01 setrgbcolor -fill -grestore -newpath -3.535358e+01 3.052842e+01 moveto -3.593002e+01 2.711959e+01 lineto -3.829326e+01 2.669525e+01 lineto -3.776369e+01 3.009566e+01 lineto -3.535358e+01 3.052842e+01 lineto -closepath -gsave -4.708735e-01 4.708735e-01 4.708735e-01 setrgbcolor -fill -grestore -newpath -3.500158e+01 3.405437e+01 moveto -3.535358e+01 3.052842e+01 lineto -3.776369e+01 3.009566e+01 lineto -3.74403e+01 3.361647e+01 lineto -3.500158e+01 3.405437e+01 lineto -closepath -gsave -4.759453e-01 4.759453e-01 4.759453e-01 setrgbcolor -fill -grestore -newpath -3.487668e+01 3.767075e+01 moveto -3.500158e+01 3.405437e+01 lineto -3.74403e+01 3.361647e+01 lineto -3.732556e+01 3.723103e+01 lineto -3.487668e+01 3.767075e+01 lineto -closepath -gsave -4.810193e-01 4.810193e-01 4.810193e-01 setrgbcolor -fill -grestore -newpath -3.497983e+01 4.135019e+01 moveto -3.487668e+01 3.767075e+01 lineto -3.732556e+01 3.723103e+01 lineto -3.742032e+01 4.091198e+01 lineto -3.497983e+01 4.135019e+01 lineto -closepath -gsave -4.860297e-01 4.860297e-01 4.860297e-01 setrgbcolor -fill -grestore -newpath -3.531025e+01 4.506483e+01 moveto -3.497983e+01 4.135019e+01 lineto -3.742032e+01 4.091198e+01 lineto -3.772387e+01 4.463145e+01 lineto -3.531025e+01 4.506483e+01 lineto -closepath -gsave -4.909074e-01 4.909074e-01 4.909074e-01 setrgbcolor -fill -grestore -newpath -3.586543e+01 4.878655e+01 moveto -3.531025e+01 4.506483e+01 lineto -3.772387e+01 4.463145e+01 lineto -3.823392e+01 4.836127e+01 lineto -3.586543e+01 4.878655e+01 lineto -closepath -gsave -4.955805e-01 4.955805e-01 4.955805e-01 setrgbcolor -fill -grestore -newpath -3.664117e+01 5.248718e+01 moveto -3.586543e+01 4.878655e+01 lineto -3.823392e+01 4.836127e+01 lineto -3.89466e+01 5.207322e+01 lineto -3.664117e+01 5.248718e+01 lineto -closepath -gsave -4.999768e-01 4.999768e-01 4.999768e-01 setrgbcolor -fill -grestore -newpath -3.76316e+01 5.613869e+01 moveto -3.664117e+01 5.248718e+01 lineto -3.89466e+01 5.207322e+01 lineto -3.985651e+01 5.573919e+01 lineto -3.76316e+01 5.613869e+01 lineto -closepath -gsave -5.040253e-01 5.040253e-01 5.040253e-01 setrgbcolor -fill -grestore -newpath -3.882922e+01 5.971346e+01 moveto -3.76316e+01 5.613869e+01 lineto -3.985651e+01 5.573919e+01 lineto -4.095677e+01 5.933143e+01 lineto -3.882922e+01 5.971346e+01 lineto -closepath -gsave -5.076579e-01 5.076579e-01 5.076579e-01 setrgbcolor -fill -grestore -newpath -4.022496e+01 6.31844e+01 moveto -3.882922e+01 5.971346e+01 lineto -4.095677e+01 5.933143e+01 lineto -4.223905e+01 6.282275e+01 lineto -4.022496e+01 6.31844e+01 lineto -closepath -gsave -5.108118e-01 5.108118e-01 5.108118e-01 setrgbcolor -fill -grestore -newpath -4.180826e+01 6.652525e+01 moveto -4.022496e+01 6.31844e+01 lineto -4.223905e+01 6.282275e+01 lineto -4.369363e+01 6.618671e+01 lineto -4.180826e+01 6.652525e+01 lineto -closepath -gsave -5.134308e-01 5.134308e-01 5.134308e-01 setrgbcolor -fill -grestore -newpath -4.356714e+01 6.971071e+01 moveto -4.180826e+01 6.652525e+01 lineto -4.369363e+01 6.618671e+01 lineto -4.530952e+01 6.939785e+01 lineto -4.356714e+01 6.971071e+01 lineto -closepath -gsave -5.154673e-01 5.154673e-01 5.154673e-01 setrgbcolor -fill -grestore -newpath -4.548827e+01 7.271668e+01 moveto -4.356714e+01 6.971071e+01 lineto -4.530952e+01 6.939785e+01 lineto -4.707447e+01 7.243186e+01 lineto -4.548827e+01 7.271668e+01 lineto -closepath -gsave -5.168835e-01 5.168835e-01 5.168835e-01 setrgbcolor -fill -grestore -newpath -4.755711e+01 7.552038e+01 moveto -4.548827e+01 7.271668e+01 lineto -4.707447e+01 7.243186e+01 lineto -4.897513e+01 7.526577e+01 lineto -4.755711e+01 7.552038e+01 lineto -closepath -gsave -5.176529e-01 5.176529e-01 5.176529e-01 setrgbcolor -fill -grestore -newpath -4.9758e+01 7.810061e+01 moveto -4.755711e+01 7.552038e+01 lineto -4.897513e+01 7.526577e+01 lineto -5.09971e+01 7.787812e+01 lineto -4.9758e+01 7.810061e+01 lineto -closepath -gsave -5.177606e-01 5.177606e-01 5.177606e-01 setrgbcolor -fill -grestore -newpath -5.207428e+01 8.043782e+01 moveto -4.9758e+01 7.810061e+01 lineto -5.09971e+01 7.787812e+01 lineto -5.312508e+01 8.024914e+01 lineto -5.207428e+01 8.043782e+01 lineto -closepath -gsave -5.172045e-01 5.172045e-01 5.172045e-01 setrgbcolor -fill -grestore -newpath -5.448842e+01 8.251432e+01 moveto -5.207428e+01 8.043782e+01 lineto -5.312508e+01 8.024914e+01 lineto -5.534296e+01 8.236088e+01 lineto -5.448842e+01 8.251432e+01 lineto -closepath -gsave -5.159947e-01 5.159947e-01 5.159947e-01 setrgbcolor -fill -grestore -newpath -5.698213e+01 8.431439e+01 moveto -5.448842e+01 8.251432e+01 lineto -5.534296e+01 8.236088e+01 lineto -5.763394e+01 8.419735e+01 lineto -5.698213e+01 8.431439e+01 lineto -closepath -gsave -5.141538e-01 5.141538e-01 5.141538e-01 setrgbcolor -fill -grestore -newpath -5.953654e+01 8.58244e+01 moveto -5.698213e+01 8.431439e+01 lineto -5.763394e+01 8.419735e+01 lineto -5.998069e+01 8.574465e+01 lineto -5.953654e+01 8.58244e+01 lineto -closepath -gsave -5.117156e-01 5.117156e-01 5.117156e-01 setrgbcolor -fill -grestore -newpath -6.213231e+01 8.703293e+01 moveto -5.953654e+01 8.58244e+01 lineto -5.998069e+01 8.574465e+01 lineto -6.236544e+01 8.699107e+01 lineto -6.213231e+01 8.703293e+01 lineto -closepath -gsave -5.087246e-01 5.087246e-01 5.087246e-01 setrgbcolor -fill -grestore -newpath -6.47498e+01 8.793082e+01 moveto -6.213231e+01 8.703293e+01 lineto -6.236544e+01 8.699107e+01 lineto -6.477014e+01 8.792716e+01 lineto -6.47498e+01 8.793082e+01 lineto -closepath -gsave -5.052344e-01 5.052344e-01 5.052344e-01 setrgbcolor -fill -grestore -newpath -6.736917e+01 8.851127e+01 moveto -6.47498e+01 8.793082e+01 lineto -6.477014e+01 8.792716e+01 lineto -6.717657e+01 8.854585e+01 lineto -6.736917e+01 8.851127e+01 lineto -closepath -gsave -5.013061e-01 5.013061e-01 5.013061e-01 setrgbcolor -fill -grestore -newpath -5.555871e+01 3.587594e+00 moveto -5.785577e+01 3.204898e+00 lineto -5.8532e+01 3.105063e+00 lineto -5.645236e+01 3.455659e+00 lineto -5.555871e+01 3.587594e+00 lineto -closepath -gsave -4.274455e-01 4.274455e-01 4.274455e-01 setrgbcolor -fill -grestore -newpath -5.333312e+01 4.29137e+00 moveto -5.555871e+01 3.587594e+00 lineto -5.645236e+01 3.455659e+00 lineto -5.443743e+01 4.128334e+00 lineto -5.333312e+01 4.29137e+00 lineto -closepath -gsave -4.305161e-01 4.305161e-01 4.305161e-01 setrgbcolor -fill -grestore -newpath -5.119585e+01 5.310898e+00 moveto -5.333312e+01 4.29137e+00 lineto -5.443743e+01 4.128334e+00 lineto -5.250247e+01 5.117996e+00 lineto -5.119585e+01 5.310898e+00 lineto -closepath -gsave -4.339403e-01 4.339403e-01 4.339403e-01 setrgbcolor -fill -grestore -newpath -4.916309e+01 6.638461e+00 moveto -5.119585e+01 5.310898e+00 lineto -5.250247e+01 5.117996e+00 lineto -5.066211e+01 6.417152e+00 lineto -4.916309e+01 6.638461e+00 lineto -closepath -gsave -4.377252e-01 4.377252e-01 4.377252e-01 setrgbcolor -fill -grestore -newpath -4.725022e+01 8.264008e+00 moveto -4.916309e+01 6.638461e+00 lineto -5.066211e+01 6.417152e+00 lineto -4.89303e+01 8.015969e+00 lineto -4.725022e+01 8.264008e+00 lineto -closepath -gsave -4.418714e-01 4.418714e-01 4.418714e-01 setrgbcolor -fill -grestore -newpath -4.547172e+01 1.017523e+01 moveto -4.725022e+01 8.264008e+00 lineto -4.89303e+01 8.015969e+00 lineto -4.732015e+01 9.902341e+00 lineto -4.547172e+01 1.017523e+01 lineto -closepath -gsave -4.463722e-01 4.463722e-01 4.463722e-01 setrgbcolor -fill -grestore -newpath -4.384106e+01 1.235767e+01 moveto -4.547172e+01 1.017523e+01 lineto -4.732015e+01 9.902341e+00 lineto -4.584384e+01 1.206199e+01 lineto -4.384106e+01 1.235767e+01 lineto -closepath -gsave -4.512124e-01 4.512124e-01 4.512124e-01 setrgbcolor -fill -grestore -newpath -4.237059e+01 1.479479e+01 moveto -4.384106e+01 1.235767e+01 lineto -4.584384e+01 1.206199e+01 lineto -4.451255e+01 1.447856e+01 lineto -4.237059e+01 1.479479e+01 lineto -closepath -gsave -4.563676e-01 4.563676e-01 4.563676e-01 setrgbcolor -fill -grestore -newpath -4.107143e+01 1.746815e+01 moveto -4.237059e+01 1.479479e+01 lineto -4.451255e+01 1.447856e+01 lineto -4.333636e+01 1.713376e+01 lineto -4.107143e+01 1.746815e+01 lineto -closepath -gsave -4.618037e-01 4.618037e-01 4.618037e-01 setrgbcolor -fill -grestore -newpath -3.995341e+01 2.035751e+01 moveto -4.107143e+01 1.746815e+01 lineto -4.333636e+01 1.713376e+01 lineto -4.232417e+01 2.00075e+01 lineto -3.995341e+01 2.035751e+01 lineto -closepath -gsave -4.674763e-01 4.674763e-01 4.674763e-01 setrgbcolor -fill -grestore -newpath -3.902502e+01 2.344099e+01 moveto -3.995341e+01 2.035751e+01 lineto -4.232417e+01 2.00075e+01 lineto -4.148365e+01 2.307801e+01 lineto -3.902502e+01 2.344099e+01 lineto -closepath -gsave -4.733311e-01 4.733311e-01 4.733311e-01 setrgbcolor -fill -grestore -newpath -3.829326e+01 2.669525e+01 moveto -3.902502e+01 2.344099e+01 lineto -4.148365e+01 2.307801e+01 lineto -4.082116e+01 2.632205e+01 lineto -3.829326e+01 2.669525e+01 lineto -closepath -gsave -4.793043e-01 4.793043e-01 4.793043e-01 setrgbcolor -fill -grestore -newpath -3.776369e+01 3.009566e+01 moveto -3.829326e+01 2.669525e+01 lineto -4.082116e+01 2.632205e+01 lineto -4.034171e+01 2.971505e+01 lineto -3.776369e+01 3.009566e+01 lineto -closepath -gsave -4.853234e-01 4.853234e-01 4.853234e-01 setrgbcolor -fill -grestore -newpath -3.74403e+01 3.361647e+01 moveto -3.776369e+01 3.009566e+01 lineto -4.034171e+01 2.971505e+01 lineto -4.004893e+01 3.323135e+01 lineto -3.74403e+01 3.361647e+01 lineto -closepath -gsave -4.913084e-01 4.913084e-01 4.913084e-01 setrgbcolor -fill -grestore -newpath -3.732556e+01 3.723103e+01 moveto -3.74403e+01 3.361647e+01 lineto -4.004893e+01 3.323135e+01 lineto -3.994505e+01 3.684431e+01 lineto -3.732556e+01 3.723103e+01 lineto -closepath -gsave -4.971738e-01 4.971738e-01 4.971738e-01 setrgbcolor -fill -grestore -newpath -3.742032e+01 4.091198e+01 moveto -3.732556e+01 3.723103e+01 lineto -3.994505e+01 3.684431e+01 lineto -4.003084e+01 4.052658e+01 lineto -3.742032e+01 4.091198e+01 lineto -closepath -gsave -5.028296e-01 5.028296e-01 5.028296e-01 setrgbcolor -fill -grestore -newpath -3.772387e+01 4.463145e+01 moveto -3.742032e+01 4.091198e+01 lineto -4.003084e+01 4.052658e+01 lineto -4.030567e+01 4.425028e+01 lineto -3.772387e+01 4.463145e+01 lineto -closepath -gsave -5.081847e-01 5.081847e-01 5.081847e-01 setrgbcolor -fill -grestore -newpath -3.823392e+01 4.836127e+01 moveto -3.772387e+01 4.463145e+01 lineto -4.030567e+01 4.425028e+01 lineto -4.076743e+01 4.798723e+01 lineto -3.823392e+01 4.836127e+01 lineto -closepath -gsave -5.131484e-01 5.131484e-01 5.131484e-01 setrgbcolor -fill -grestore -newpath -3.89466e+01 5.207322e+01 moveto -3.823392e+01 4.836127e+01 lineto -4.076743e+01 4.798723e+01 lineto -4.141265e+01 5.170914e+01 lineto -3.89466e+01 5.207322e+01 lineto -closepath -gsave -5.176331e-01 5.176331e-01 5.176331e-01 setrgbcolor -fill -grestore -newpath -3.985651e+01 5.573919e+01 moveto -3.89466e+01 5.207322e+01 lineto -4.141265e+01 5.170914e+01 lineto -4.223644e+01 5.538783e+01 lineto -3.985651e+01 5.573919e+01 lineto -closepath -gsave -5.215572e-01 5.215572e-01 5.215572e-01 setrgbcolor -fill -grestore -newpath -4.095677e+01 5.933143e+01 moveto -3.985651e+01 5.573919e+01 lineto -4.223644e+01 5.538783e+01 lineto -4.323255e+01 5.899545e+01 lineto -4.095677e+01 5.933143e+01 lineto -closepath -gsave -5.24847e-01 5.24847e-01 5.24847e-01 setrgbcolor -fill -grestore -newpath -4.223905e+01 6.282275e+01 moveto -4.095677e+01 5.933143e+01 lineto -4.323255e+01 5.899545e+01 lineto -4.439346e+01 6.250468e+01 lineto -4.223905e+01 6.282275e+01 lineto -closepath -gsave -5.274395e-01 5.274395e-01 5.274395e-01 setrgbcolor -fill -grestore -newpath -4.369363e+01 6.618671e+01 moveto -4.223905e+01 6.282275e+01 lineto -4.439346e+01 6.250468e+01 lineto -4.571036e+01 6.588897e+01 lineto -4.369363e+01 6.618671e+01 lineto -closepath -gsave -5.292839e-01 5.292839e-01 5.292839e-01 setrgbcolor -fill -grestore -newpath -4.530952e+01 6.939785e+01 moveto -4.369363e+01 6.618671e+01 lineto -4.571036e+01 6.588897e+01 lineto -4.71733e+01 6.912269e+01 lineto -4.530952e+01 6.939785e+01 lineto -closepath -gsave -5.303436e-01 5.303436e-01 5.303436e-01 setrgbcolor -fill -grestore -newpath -4.707447e+01 7.243186e+01 moveto -4.530952e+01 6.939785e+01 lineto -4.71733e+01 6.912269e+01 lineto -4.877119e+01 7.218136e+01 lineto -4.707447e+01 7.243186e+01 lineto -closepath -gsave -5.305972e-01 5.305972e-01 5.305972e-01 setrgbcolor -fill -grestore -newpath -4.897513e+01 7.526577e+01 moveto -4.707447e+01 7.243186e+01 lineto -4.877119e+01 7.218136e+01 lineto -5.049194e+01 7.504183e+01 lineto -4.897513e+01 7.526577e+01 lineto -closepath -gsave -5.300394e-01 5.300394e-01 5.300394e-01 setrgbcolor -fill -grestore -newpath -5.09971e+01 7.787812e+01 moveto -4.897513e+01 7.526577e+01 lineto -5.049194e+01 7.504183e+01 lineto -5.232253e+01 7.768244e+01 lineto -5.09971e+01 7.787812e+01 lineto -closepath -gsave -5.286808e-01 5.286808e-01 5.286808e-01 setrgbcolor -fill -grestore -newpath -5.312508e+01 8.024914e+01 moveto -5.09971e+01 7.787812e+01 lineto -5.232253e+01 7.768244e+01 lineto -5.424909e+01 8.00832e+01 lineto -5.312508e+01 8.024914e+01 lineto -closepath -gsave -5.265483e-01 5.265483e-01 5.265483e-01 setrgbcolor -fill -grestore -newpath -5.534296e+01 8.236088e+01 moveto -5.312508e+01 8.024914e+01 lineto -5.424909e+01 8.00832e+01 lineto -5.625703e+01 8.222593e+01 lineto -5.534296e+01 8.236088e+01 lineto -closepath -gsave -5.236835e-01 5.236835e-01 5.236835e-01 setrgbcolor -fill -grestore -newpath -5.763394e+01 8.419735e+01 moveto -5.534296e+01 8.236088e+01 lineto -5.625703e+01 8.222593e+01 lineto -5.833117e+01 8.409442e+01 lineto -5.763394e+01 8.419735e+01 lineto -closepath -gsave -5.201419e-01 5.201419e-01 5.201419e-01 setrgbcolor -fill -grestore -newpath -5.998069e+01 8.574465e+01 moveto -5.763394e+01 8.419735e+01 lineto -5.833117e+01 8.409442e+01 lineto -6.045579e+01 8.567451e+01 lineto -5.998069e+01 8.574465e+01 lineto -closepath -gsave -5.159906e-01 5.159906e-01 5.159906e-01 setrgbcolor -fill -grestore -newpath -6.236544e+01 8.699107e+01 moveto -5.998069e+01 8.574465e+01 lineto -6.045579e+01 8.567451e+01 lineto -6.261481e+01 8.695425e+01 lineto -6.236544e+01 8.699107e+01 lineto -closepath -gsave -5.113069e-01 5.113069e-01 5.113069e-01 setrgbcolor -fill -grestore -newpath -6.477014e+01 8.792716e+01 moveto -6.236544e+01 8.699107e+01 lineto -6.261481e+01 8.695425e+01 lineto -6.479189e+01 8.792395e+01 lineto -6.477014e+01 8.792716e+01 lineto -closepath -gsave -5.061754e-01 5.061754e-01 5.061754e-01 setrgbcolor -fill -grestore -newpath -6.717657e+01 8.854585e+01 moveto -6.477014e+01 8.792716e+01 lineto -6.479189e+01 8.792395e+01 lineto -6.697055e+01 8.857627e+01 lineto -6.717657e+01 8.854585e+01 lineto -closepath -gsave -5.006857e-01 5.006857e-01 5.006857e-01 setrgbcolor -fill -grestore -newpath -7.422489e+01 8.846285e+01 moveto -7.192191e+01 8.881471e+01 lineto -7.126672e+01 8.891144e+01 lineto -7.335172e+01 8.859176e+01 lineto -7.422489e+01 8.846285e+01 lineto -closepath -gsave -4.271705e-01 4.271705e-01 4.271705e-01 setrgbcolor -fill -grestore -newpath -5.645236e+01 3.455659e+00 moveto -5.8532e+01 3.105063e+00 lineto -5.924811e+01 3.019522e+00 lineto -5.739872e+01 3.342614e+00 lineto -5.645236e+01 3.455659e+00 lineto -closepath -gsave -4.29672e-01 4.29672e-01 4.29672e-01 setrgbcolor -fill -grestore -newpath -5.443743e+01 4.128334e+00 moveto -5.645236e+01 3.455659e+00 lineto -5.739872e+01 3.342614e+00 lineto -5.560687e+01 3.988641e+00 lineto -5.443743e+01 4.128334e+00 lineto -closepath -gsave -4.335754e-01 4.335754e-01 4.335754e-01 setrgbcolor -fill -grestore -newpath -5.250247e+01 5.117996e+00 moveto -5.443743e+01 4.128334e+00 lineto -5.560687e+01 3.988641e+00 lineto -5.388614e+01 4.952713e+00 lineto -5.250247e+01 5.117996e+00 lineto -closepath -gsave -4.379239e-01 4.379239e-01 4.379239e-01 setrgbcolor -fill -grestore -newpath -5.066211e+01 6.417152e+00 moveto -5.250247e+01 5.117996e+00 lineto -5.388614e+01 4.952713e+00 lineto -5.224954e+01 6.227531e+00 lineto -5.066211e+01 6.417152e+00 lineto -closepath -gsave -4.42722e-01 4.42722e-01 4.42722e-01 setrgbcolor -fill -grestore -newpath -4.89303e+01 8.015969e+00 moveto -5.066211e+01 6.417152e+00 lineto -5.224954e+01 6.227531e+00 lineto -5.070947e+01 7.803443e+00 lineto -4.89303e+01 8.015969e+00 lineto -closepath -gsave -4.479645e-01 4.479645e-01 4.479645e-01 setrgbcolor -fill -grestore -newpath -4.732015e+01 9.902341e+00 moveto -4.89303e+01 8.015969e+00 lineto -5.070947e+01 7.803443e+00 lineto -4.927758e+01 9.668521e+00 lineto -4.732015e+01 9.902341e+00 lineto -closepath -gsave -4.536348e-01 4.536348e-01 4.536348e-01 setrgbcolor -fill -grestore -newpath -4.584384e+01 1.206199e+01 moveto -4.732015e+01 9.902341e+00 lineto -4.927758e+01 9.668521e+00 lineto -4.796472e+01 1.180864e+01 lineto -4.584384e+01 1.206199e+01 lineto -closepath -gsave -4.597042e-01 4.597042e-01 4.597042e-01 setrgbcolor -fill -grestore -newpath -4.451255e+01 1.447856e+01 moveto -4.584384e+01 1.206199e+01 lineto -4.796472e+01 1.180864e+01 lineto -4.678082e+01 1.420761e+01 lineto -4.451255e+01 1.447856e+01 lineto -closepath -gsave -4.661307e-01 4.661307e-01 4.661307e-01 setrgbcolor -fill -grestore -newpath -4.333636e+01 1.713376e+01 moveto -4.451255e+01 1.447856e+01 lineto -4.678082e+01 1.420761e+01 lineto -4.573486e+01 1.684726e+01 lineto -4.333636e+01 1.713376e+01 lineto -closepath -gsave -4.728591e-01 4.728591e-01 4.728591e-01 setrgbcolor -fill -grestore -newpath -4.232417e+01 2.00075e+01 moveto -4.333636e+01 1.713376e+01 lineto -4.573486e+01 1.684726e+01 lineto -4.483473e+01 1.970761e+01 lineto -4.232417e+01 2.00075e+01 lineto -closepath -gsave -4.798208e-01 4.798208e-01 4.798208e-01 setrgbcolor -fill -grestore -newpath -4.148365e+01 2.307801e+01 moveto -4.232417e+01 2.00075e+01 lineto -4.483473e+01 1.970761e+01 lineto -4.408727e+01 2.2767e+01 lineto -4.148365e+01 2.307801e+01 lineto -closepath -gsave -4.869344e-01 4.869344e-01 4.869344e-01 setrgbcolor -fill -grestore -newpath -4.082116e+01 2.632205e+01 moveto -4.148365e+01 2.307801e+01 lineto -4.408727e+01 2.2767e+01 lineto -4.349812e+01 2.600228e+01 lineto -4.082116e+01 2.632205e+01 lineto -closepath -gsave -4.941073e-01 4.941073e-01 4.941073e-01 setrgbcolor -fill -grestore -newpath -4.034171e+01 2.971505e+01 moveto -4.082116e+01 2.632205e+01 lineto -4.349812e+01 2.600228e+01 lineto -4.307176e+01 2.938894e+01 lineto -4.034171e+01 2.971505e+01 lineto -closepath -gsave -5.012372e-01 5.012372e-01 5.012372e-01 setrgbcolor -fill -grestore -newpath -4.004893e+01 3.323135e+01 moveto -4.034171e+01 2.971505e+01 lineto -4.307176e+01 2.938894e+01 lineto -4.28114e+01 3.290136e+01 lineto -4.004893e+01 3.323135e+01 lineto -closepath -gsave -5.082142e-01 5.082142e-01 5.082142e-01 setrgbcolor -fill -grestore -newpath -3.994505e+01 3.684431e+01 moveto -4.004893e+01 3.323135e+01 lineto -4.28114e+01 3.290136e+01 lineto -4.271902e+01 3.651295e+01 lineto -3.994505e+01 3.684431e+01 lineto -closepath -gsave -5.149237e-01 5.149237e-01 5.149237e-01 setrgbcolor -fill -grestore -newpath -4.003084e+01 4.052658e+01 moveto -3.994505e+01 3.684431e+01 lineto -4.271902e+01 3.651295e+01 lineto -4.279531e+01 4.019635e+01 lineto -4.003084e+01 4.052658e+01 lineto -closepath -gsave -5.212494e-01 5.212494e-01 5.212494e-01 setrgbcolor -fill -grestore -newpath -4.030567e+01 4.425028e+01 moveto -4.003084e+01 4.052658e+01 lineto -4.279531e+01 4.019635e+01 lineto -4.303971e+01 4.392369e+01 lineto -4.030567e+01 4.425028e+01 lineto -closepath -gsave -5.270764e-01 5.270764e-01 5.270764e-01 setrgbcolor -fill -grestore -newpath -4.076743e+01 4.798723e+01 moveto -4.030567e+01 4.425028e+01 lineto -4.303971e+01 4.392369e+01 lineto -4.345035e+01 4.766675e+01 lineto -4.076743e+01 4.798723e+01 lineto -closepath -gsave -5.322948e-01 5.322948e-01 5.322948e-01 setrgbcolor -fill -grestore -newpath -4.141265e+01 5.170914e+01 moveto -4.076743e+01 4.798723e+01 lineto -4.345035e+01 4.766675e+01 lineto -4.402413e+01 5.139719e+01 lineto -4.141265e+01 5.170914e+01 lineto -closepath -gsave -5.368028e-01 5.368028e-01 5.368028e-01 setrgbcolor -fill -grestore -newpath -4.223644e+01 5.538783e+01 moveto -4.141265e+01 5.170914e+01 lineto -4.402413e+01 5.139719e+01 lineto -4.475671e+01 5.508678e+01 lineto -4.223644e+01 5.538783e+01 lineto -closepath -gsave -5.4051e-01 5.4051e-01 5.4051e-01 setrgbcolor -fill -grestore -newpath -4.323255e+01 5.899545e+01 moveto -4.223644e+01 5.538783e+01 lineto -4.475671e+01 5.508678e+01 lineto -4.564254e+01 5.870757e+01 lineto -4.323255e+01 5.899545e+01 lineto -closepath -gsave -5.433407e-01 5.433407e-01 5.433407e-01 setrgbcolor -fill -grestore -newpath -4.439346e+01 6.250468e+01 moveto -4.323255e+01 5.899545e+01 lineto -4.564254e+01 5.870757e+01 lineto -4.667492e+01 6.223216e+01 lineto -4.439346e+01 6.250468e+01 lineto -closepath -gsave -5.452358e-01 5.452358e-01 5.452358e-01 setrgbcolor -fill -grestore -newpath -4.571036e+01 6.588897e+01 moveto -4.439346e+01 6.250468e+01 lineto -4.667492e+01 6.223216e+01 lineto -4.784602e+01 6.563386e+01 lineto -4.571036e+01 6.588897e+01 lineto -closepath -gsave -5.461553e-01 5.461553e-01 5.461553e-01 setrgbcolor -fill -grestore -newpath -4.71733e+01 6.912269e+01 moveto -4.571036e+01 6.588897e+01 lineto -4.784602e+01 6.563386e+01 lineto -4.914699e+01 6.888693e+01 lineto -4.71733e+01 6.912269e+01 lineto -closepath -gsave -5.460793e-01 5.460793e-01 5.460793e-01 setrgbcolor -fill -grestore -newpath -4.877119e+01 7.218136e+01 moveto -4.71733e+01 6.912269e+01 lineto -4.914699e+01 6.888693e+01 lineto -5.056797e+01 7.196673e+01 lineto -4.877119e+01 7.218136e+01 lineto -closepath -gsave -5.450091e-01 5.450091e-01 5.450091e-01 setrgbcolor -fill -grestore -newpath -5.049194e+01 7.504183e+01 moveto -4.877119e+01 7.218136e+01 lineto -5.056797e+01 7.196673e+01 lineto -5.209821e+01 7.484996e+01 lineto -5.049194e+01 7.504183e+01 lineto -closepath -gsave -5.42967e-01 5.42967e-01 5.42967e-01 setrgbcolor -fill -grestore -newpath -5.232253e+01 7.768244e+01 moveto -5.049194e+01 7.504183e+01 lineto -5.209821e+01 7.484996e+01 lineto -5.372612e+01 7.751478e+01 lineto -5.232253e+01 7.768244e+01 lineto -closepath -gsave -5.399953e-01 5.399953e-01 5.399953e-01 setrgbcolor -fill -grestore -newpath -5.424909e+01 8.00832e+01 moveto -5.232253e+01 7.768244e+01 lineto -5.372612e+01 7.751478e+01 lineto -5.543938e+01 7.994101e+01 lineto -5.424909e+01 8.00832e+01 lineto -closepath -gsave -5.361554e-01 5.361554e-01 5.361554e-01 setrgbcolor -fill -grestore -newpath -5.625703e+01 8.222593e+01 moveto -5.424909e+01 8.00832e+01 lineto -5.543938e+01 7.994101e+01 lineto -5.722501e+01 8.21103e+01 lineto -5.625703e+01 8.222593e+01 lineto -closepath -gsave -5.315254e-01 5.315254e-01 5.315254e-01 setrgbcolor -fill -grestore -newpath -5.833117e+01 8.409442e+01 moveto -5.625703e+01 8.222593e+01 lineto -5.722501e+01 8.21103e+01 lineto -5.906951e+01 8.400622e+01 lineto -5.833117e+01 8.409442e+01 lineto -closepath -gsave -5.261978e-01 5.261978e-01 5.261978e-01 setrgbcolor -fill -grestore -newpath -6.045579e+01 8.567451e+01 moveto -5.833117e+01 8.409442e+01 lineto -5.906951e+01 8.400622e+01 lineto -6.09589e+01 8.561441e+01 lineto -6.045579e+01 8.567451e+01 lineto -closepath -gsave -5.202761e-01 5.202761e-01 5.202761e-01 setrgbcolor -fill -grestore -newpath -6.261481e+01 8.695425e+01 moveto -6.045579e+01 8.567451e+01 lineto -6.09589e+01 8.561441e+01 lineto -6.287889e+01 8.692271e+01 lineto -6.261481e+01 8.695425e+01 lineto -closepath -gsave -5.138719e-01 5.138719e-01 5.138719e-01 setrgbcolor -fill -grestore -newpath -6.479189e+01 8.792395e+01 moveto -6.261481e+01 8.695425e+01 lineto -6.287889e+01 8.692271e+01 lineto -6.481493e+01 8.79212e+01 lineto -6.479189e+01 8.792395e+01 lineto -closepath -gsave -5.071013e-01 5.071013e-01 5.071013e-01 setrgbcolor -fill -grestore -newpath -6.697055e+01 8.857627e+01 moveto -6.479189e+01 8.792395e+01 lineto -6.481493e+01 8.79212e+01 lineto -6.675238e+01 8.860233e+01 lineto -6.697055e+01 8.857627e+01 lineto -closepath -gsave -5.000813e-01 5.000813e-01 5.000813e-01 setrgbcolor -fill -grestore -newpath -7.335172e+01 8.859176e+01 moveto -7.126672e+01 8.891144e+01 lineto -7.05729e+01 8.899432e+01 lineto -7.242706e+01 8.870221e+01 lineto -7.335172e+01 8.859176e+01 lineto -closepath -gsave -4.293223e-01 4.293223e-01 4.293223e-01 setrgbcolor -fill -grestore -newpath -5.739872e+01 3.342614e+00 moveto -5.924811e+01 3.019522e+00 lineto -5.999967e+01 2.948803e+00 lineto -5.839193e+01 3.249157e+00 lineto -5.739872e+01 3.342614e+00 lineto -closepath -gsave -4.319471e-01 4.319471e-01 4.319471e-01 setrgbcolor -fill -grestore -newpath -5.560687e+01 3.988641e+00 moveto -5.739872e+01 3.342614e+00 lineto -5.839193e+01 3.249157e+00 lineto -5.683422e+01 3.873154e+00 lineto -5.560687e+01 3.988641e+00 lineto -closepath -gsave -4.367366e-01 4.367366e-01 4.367366e-01 setrgbcolor -fill -grestore -newpath -5.388614e+01 4.952713e+00 moveto -5.560687e+01 3.988641e+00 lineto -5.683422e+01 3.873154e+00 lineto -5.533832e+01 4.81607e+00 lineto -5.388614e+01 4.952713e+00 lineto -closepath -gsave -4.420808e-01 4.420808e-01 4.420808e-01 setrgbcolor -fill -grestore -newpath -5.224954e+01 6.227531e+00 moveto -5.388614e+01 4.952713e+00 lineto -5.533832e+01 4.81607e+00 lineto -5.391557e+01 6.070766e+00 lineto -5.224954e+01 6.227531e+00 lineto -closepath -gsave -4.479807e-01 4.479807e-01 4.479807e-01 setrgbcolor -fill -grestore -newpath -5.070947e+01 7.803443e+00 moveto -5.224954e+01 6.227531e+00 lineto -5.391557e+01 6.070766e+00 lineto -5.257673e+01 7.627743e+00 lineto -5.070947e+01 7.803443e+00 lineto -closepath -gsave -4.544234e-01 4.544234e-01 4.544234e-01 setrgbcolor -fill -grestore -newpath -4.927758e+01 9.668521e+00 moveto -5.070947e+01 7.803443e+00 lineto -5.257673e+01 7.627743e+00 lineto -5.133194e+01 9.475216e+00 lineto -4.927758e+01 9.668521e+00 lineto -closepath -gsave -4.613802e-01 4.613802e-01 4.613802e-01 setrgbcolor -fill -grestore -newpath -4.796472e+01 1.180864e+01 moveto -4.927758e+01 9.668521e+00 lineto -5.133194e+01 9.475216e+00 lineto -5.019063e+01 1.15992e+01 lineto -4.796472e+01 1.180864e+01 lineto -closepath -gsave -4.688055e-01 4.688055e-01 4.688055e-01 setrgbcolor -fill -grestore -newpath -4.678082e+01 1.420761e+01 moveto -4.796472e+01 1.180864e+01 lineto -5.019063e+01 1.15992e+01 lineto -4.916143e+01 1.398361e+01 lineto -4.678082e+01 1.420761e+01 lineto -closepath -gsave -4.766359e-01 4.766359e-01 4.766359e-01 setrgbcolor -fill -grestore -newpath -4.573486e+01 1.684726e+01 moveto -4.678082e+01 1.420761e+01 lineto -4.916143e+01 1.398361e+01 lineto -4.825213e+01 1.66104e+01 lineto -4.573486e+01 1.684726e+01 lineto -closepath -gsave -4.847907e-01 4.847907e-01 4.847907e-01 setrgbcolor -fill -grestore -newpath -4.483473e+01 1.970761e+01 moveto -4.573486e+01 1.684726e+01 lineto -4.825213e+01 1.66104e+01 lineto -4.746962e+01 1.945968e+01 lineto -4.483473e+01 1.970761e+01 lineto -closepath -gsave -4.931721e-01 4.931721e-01 4.931721e-01 setrgbcolor -fill -grestore -newpath -4.408727e+01 2.2767e+01 moveto -4.483473e+01 1.970761e+01 lineto -4.746962e+01 1.945968e+01 lineto -4.681982e+01 2.250988e+01 lineto -4.408727e+01 2.2767e+01 lineto -closepath -gsave -5.01667e-01 5.01667e-01 5.01667e-01 setrgbcolor -fill -grestore -newpath -4.349812e+01 2.600228e+01 moveto -4.408727e+01 2.2767e+01 lineto -4.681982e+01 2.250988e+01 lineto -4.630766e+01 2.573791e+01 lineto -4.349812e+01 2.600228e+01 lineto -closepath -gsave -5.10149e-01 5.10149e-01 5.10149e-01 setrgbcolor -fill -grestore -newpath -4.307176e+01 2.938894e+01 moveto -4.349812e+01 2.600228e+01 lineto -4.630766e+01 2.573791e+01 lineto -4.5937e+01 2.911934e+01 lineto -4.307176e+01 2.938894e+01 lineto -closepath -gsave -5.184812e-01 5.184812e-01 5.184812e-01 setrgbcolor -fill -grestore -newpath -4.28114e+01 3.290136e+01 moveto -4.307176e+01 2.938894e+01 lineto -4.5937e+01 2.911934e+01 lineto -4.571066e+01 3.262856e+01 lineto -4.28114e+01 3.290136e+01 lineto -closepath -gsave -5.265199e-01 5.265199e-01 5.265199e-01 setrgbcolor -fill -grestore -newpath -4.271902e+01 3.651295e+01 moveto -4.28114e+01 3.290136e+01 lineto -4.571066e+01 3.262856e+01 lineto -4.563035e+01 3.623901e+01 lineto -4.271902e+01 3.651295e+01 lineto -closepath -gsave -5.341185e-01 5.341185e-01 5.341185e-01 setrgbcolor -fill -grestore -newpath -4.279531e+01 4.019635e+01 moveto -4.271902e+01 3.651295e+01 lineto -4.563035e+01 3.623901e+01 lineto -4.569668e+01 3.992335e+01 lineto -4.279531e+01 4.019635e+01 lineto -closepath -gsave -5.411315e-01 5.411315e-01 5.411315e-01 setrgbcolor -fill -grestore -newpath -4.303971e+01 4.392369e+01 moveto -4.279531e+01 4.019635e+01 lineto -4.569668e+01 3.992335e+01 lineto -4.590914e+01 4.365369e+01 lineto -4.303971e+01 4.392369e+01 lineto -closepath -gsave -5.474194e-01 5.474194e-01 5.474194e-01 setrgbcolor -fill -grestore -newpath -4.345035e+01 4.766675e+01 moveto -4.303971e+01 4.392369e+01 lineto -4.590914e+01 4.365369e+01 lineto -4.626613e+01 4.74018e+01 lineto -4.345035e+01 4.766675e+01 lineto -closepath -gsave -5.528528e-01 5.528528e-01 5.528528e-01 setrgbcolor -fill -grestore -newpath -4.402413e+01 5.139719e+01 moveto -4.345035e+01 4.766675e+01 lineto -4.626613e+01 4.74018e+01 lineto -4.676494e+01 5.11393e+01 lineto -4.402413e+01 5.139719e+01 lineto -closepath -gsave -5.573169e-01 5.573169e-01 5.573169e-01 setrgbcolor -fill -grestore -newpath -4.475671e+01 5.508678e+01 moveto -4.402413e+01 5.139719e+01 lineto -4.676494e+01 5.11393e+01 lineto -4.740179e+01 5.483789e+01 lineto -4.475671e+01 5.508678e+01 lineto -closepath -gsave -5.607151e-01 5.607151e-01 5.607151e-01 setrgbcolor -fill -grestore -newpath -4.564254e+01 5.870757e+01 moveto -4.475671e+01 5.508678e+01 lineto -4.740179e+01 5.483789e+01 lineto -4.817188e+01 5.846957e+01 lineto -4.564254e+01 5.870757e+01 lineto -closepath -gsave -5.629729e-01 5.629729e-01 5.629729e-01 setrgbcolor -fill -grestore -newpath -4.667492e+01 6.223216e+01 moveto -4.564254e+01 5.870757e+01 lineto -4.817188e+01 5.846957e+01 lineto -4.906936e+01 6.200685e+01 lineto -4.667492e+01 6.223216e+01 lineto -closepath -gsave -5.640398e-01 5.640398e-01 5.640398e-01 setrgbcolor -fill -grestore -newpath -4.784602e+01 6.563386e+01 moveto -4.667492e+01 6.223216e+01 lineto -4.906936e+01 6.200685e+01 lineto -5.008744e+01 6.542296e+01 lineto -4.784602e+01 6.563386e+01 lineto -closepath -gsave -5.638917e-01 5.638917e-01 5.638917e-01 setrgbcolor -fill -grestore -newpath -4.914699e+01 6.888693e+01 moveto -4.784602e+01 6.563386e+01 lineto -5.008744e+01 6.542296e+01 lineto -5.121842e+01 6.869202e+01 lineto -4.914699e+01 6.888693e+01 lineto -closepath -gsave -5.625313e-01 5.625313e-01 5.625313e-01 setrgbcolor -fill -grestore -newpath -5.056797e+01 7.196673e+01 moveto -4.914699e+01 6.888693e+01 lineto -5.121842e+01 6.869202e+01 lineto -5.245373e+01 7.178929e+01 lineto -5.056797e+01 7.196673e+01 lineto -closepath -gsave -5.599885e-01 5.599885e-01 5.599885e-01 setrgbcolor -fill -grestore -newpath -5.209821e+01 7.484996e+01 moveto -5.056797e+01 7.196673e+01 lineto -5.245373e+01 7.178929e+01 lineto -5.378402e+01 7.469133e+01 lineto -5.209821e+01 7.484996e+01 lineto -closepath -gsave -5.563193e-01 5.563193e-01 5.563193e-01 setrgbcolor -fill -grestore -newpath -5.372612e+01 7.751478e+01 moveto -5.209821e+01 7.484996e+01 lineto -5.378402e+01 7.469133e+01 lineto -5.519922e+01 7.737617e+01 lineto -5.372612e+01 7.751478e+01 lineto -closepath -gsave -5.516033e-01 5.516033e-01 5.516033e-01 setrgbcolor -fill -grestore -newpath -5.543938e+01 7.994101e+01 moveto -5.372612e+01 7.751478e+01 lineto -5.519922e+01 7.737617e+01 lineto -5.668861e+01 7.982347e+01 lineto -5.543938e+01 7.994101e+01 lineto -closepath -gsave -5.459419e-01 5.459419e-01 5.459419e-01 setrgbcolor -fill -grestore -newpath -5.722501e+01 8.21103e+01 moveto -5.543938e+01 7.994101e+01 lineto -5.668861e+01 7.982347e+01 lineto -5.824093e+01 8.201471e+01 lineto -5.722501e+01 8.21103e+01 lineto -closepath -gsave -5.39454e-01 5.39454e-01 5.39454e-01 setrgbcolor -fill -grestore -newpath -5.906951e+01 8.400622e+01 moveto -5.722501e+01 8.21103e+01 lineto -5.824093e+01 8.201471e+01 lineto -5.984442e+01 8.39333e+01 lineto -5.906951e+01 8.400622e+01 lineto -closepath -gsave -5.322722e-01 5.322722e-01 5.322722e-01 setrgbcolor -fill -grestore -newpath -6.09589e+01 8.561441e+01 moveto -5.906951e+01 8.400622e+01 lineto -5.984442e+01 8.39333e+01 lineto -6.148693e+01 8.556473e+01 lineto -6.09589e+01 8.561441e+01 lineto -closepath -gsave -5.245389e-01 5.245389e-01 5.245389e-01 setrgbcolor -fill -grestore -newpath -6.287889e+01 8.692271e+01 moveto -6.09589e+01 8.561441e+01 lineto -6.148693e+01 8.556473e+01 lineto -6.315604e+01 8.689663e+01 lineto -6.287889e+01 8.692271e+01 lineto -closepath -gsave -5.16401e-01 5.16401e-01 5.16401e-01 setrgbcolor -fill -grestore -newpath -6.481493e+01 8.79212e+01 moveto -6.287889e+01 8.692271e+01 lineto -6.315604e+01 8.689663e+01 lineto -6.483912e+01 8.791892e+01 lineto -6.481493e+01 8.79212e+01 lineto -closepath -gsave -5.080058e-01 5.080058e-01 5.080058e-01 setrgbcolor -fill -grestore -newpath -6.675238e+01 8.860233e+01 moveto -6.481493e+01 8.79212e+01 lineto -6.483912e+01 8.791892e+01 lineto -6.65234e+01 8.862388e+01 lineto -6.675238e+01 8.860233e+01 lineto -closepath -gsave -4.994966e-01 4.994966e-01 4.994966e-01 setrgbcolor -fill -grestore -newpath -7.242706e+01 8.870221e+01 moveto -7.05729e+01 8.899432e+01 lineto -6.984472e+01 8.906284e+01 lineto -7.14566e+01 8.879353e+01 lineto -7.242706e+01 8.870221e+01 lineto -closepath -gsave -4.315186e-01 4.315186e-01 4.315186e-01 setrgbcolor -fill -grestore -newpath -5.839193e+01 3.249157e+00 moveto -5.999967e+01 2.948803e+00 lineto -6.078207e+01 2.893343e+00 lineto -5.942589e+01 3.175865e+00 lineto -5.839193e+01 3.249157e+00 lineto -closepath -gsave -4.342487e-01 4.342487e-01 4.342487e-01 setrgbcolor -fill -grestore -newpath -5.683422e+01 3.873154e+00 moveto -5.839193e+01 3.249157e+00 lineto -5.942589e+01 3.175865e+00 lineto -5.811191e+01 3.782584e+00 lineto -5.683422e+01 3.873154e+00 lineto -closepath -gsave -4.399677e-01 4.399677e-01 4.399677e-01 setrgbcolor -fill -grestore -newpath -5.533832e+01 4.81607e+00 moveto -5.683422e+01 3.873154e+00 lineto -5.811191e+01 3.782584e+00 lineto -5.685008e+01 4.708908e+00 lineto -5.533832e+01 4.81607e+00 lineto -closepath -gsave -4.463675e-01 4.463675e-01 4.463675e-01 setrgbcolor -fill -grestore -newpath -5.391557e+01 6.070766e+00 moveto -5.533832e+01 4.81607e+00 lineto -5.685008e+01 4.708908e+00 lineto -5.564995e+01 5.947823e+00 lineto -5.391557e+01 6.070766e+00 lineto -closepath -gsave -4.53445e-01 4.53445e-01 4.53445e-01 setrgbcolor -fill -grestore -newpath -5.257673e+01 7.627743e+00 moveto -5.391557e+01 6.070766e+00 lineto -5.564995e+01 5.947823e+00 lineto -5.452059e+01 7.489951e+00 lineto -5.257673e+01 7.627743e+00 lineto -closepath -gsave -4.611783e-01 4.611783e-01 4.611783e-01 setrgbcolor -fill -grestore -newpath -5.133194e+01 9.475216e+00 moveto -5.257673e+01 7.627743e+00 lineto -5.452059e+01 7.489951e+00 lineto -5.347058e+01 9.323617e+00 lineto -5.133194e+01 9.475216e+00 lineto -closepath -gsave -4.695241e-01 4.695241e-01 4.695241e-01 setrgbcolor -fill -grestore -newpath -5.019063e+01 1.15992e+01 moveto -5.133194e+01 9.475216e+00 lineto -5.347058e+01 9.323617e+00 lineto -5.250784e+01 1.143494e+01 lineto -5.019063e+01 1.15992e+01 lineto -closepath -gsave -4.784169e-01 4.784169e-01 4.784169e-01 setrgbcolor -fill -grestore -newpath -4.916143e+01 1.398361e+01 moveto -5.019063e+01 1.15992e+01 lineto -5.250784e+01 1.143494e+01 lineto -5.163968e+01 1.380793e+01 lineto -4.916143e+01 1.398361e+01 lineto -closepath -gsave -4.877684e-01 4.877684e-01 4.877684e-01 setrgbcolor -fill -grestore -newpath -4.825213e+01 1.66104e+01 moveto -4.916143e+01 1.398361e+01 lineto -5.163968e+01 1.380793e+01 lineto -5.087266e+01 1.642464e+01 lineto -4.825213e+01 1.66104e+01 lineto -closepath -gsave -4.974681e-01 4.974681e-01 4.974681e-01 setrgbcolor -fill -grestore -newpath -4.746962e+01 1.945968e+01 moveto -4.825213e+01 1.66104e+01 lineto -5.087266e+01 1.642464e+01 lineto -5.021259e+01 1.926524e+01 lineto -4.746962e+01 1.945968e+01 lineto -closepath -gsave -5.073847e-01 5.073847e-01 5.073847e-01 setrgbcolor -fill -grestore -newpath -4.681982e+01 2.250988e+01 moveto -4.746962e+01 1.945968e+01 lineto -5.021259e+01 1.926524e+01 lineto -4.966446e+01 2.230824e+01 lineto -4.681982e+01 2.250988e+01 lineto -closepath -gsave -5.173683e-01 5.173683e-01 5.173683e-01 setrgbcolor -fill -grestore -newpath -4.630766e+01 2.573791e+01 moveto -4.681982e+01 2.250988e+01 lineto -4.966446e+01 2.230824e+01 lineto -4.923244e+01 2.553059e+01 lineto -4.630766e+01 2.573791e+01 lineto -closepath -gsave -5.272544e-01 5.272544e-01 5.272544e-01 setrgbcolor -fill -grestore -newpath -4.5937e+01 2.911934e+01 moveto -4.630766e+01 2.573791e+01 lineto -4.923244e+01 2.553059e+01 lineto -4.891978e+01 2.89079e+01 lineto -4.5937e+01 2.911934e+01 lineto -closepath -gsave -5.368674e-01 5.368674e-01 5.368674e-01 setrgbcolor -fill -grestore -newpath -4.571066e+01 3.262856e+01 moveto -4.5937e+01 2.911934e+01 lineto -4.891978e+01 2.89079e+01 lineto -4.872885e+01 3.241461e+01 lineto -4.571066e+01 3.262856e+01 lineto -closepath -gsave -5.460261e-01 5.460261e-01 5.460261e-01 setrgbcolor -fill -grestore -newpath -4.563035e+01 3.623901e+01 moveto -4.571066e+01 3.262856e+01 lineto -4.872885e+01 3.241461e+01 lineto -4.866111e+01 3.602417e+01 lineto -4.563035e+01 3.623901e+01 lineto -closepath -gsave -5.545487e-01 5.545487e-01 5.545487e-01 setrgbcolor -fill -grestore -newpath -4.569668e+01 3.992335e+01 moveto -4.563035e+01 3.623901e+01 lineto -4.866111e+01 3.602417e+01 lineto -4.871706e+01 3.970925e+01 lineto -4.569668e+01 3.992335e+01 lineto -closepath -gsave -5.622589e-01 5.622589e-01 5.622589e-01 setrgbcolor -fill -grestore -newpath -4.590914e+01 4.365369e+01 moveto -4.569668e+01 3.992335e+01 lineto -4.871706e+01 3.970925e+01 lineto -4.889627e+01 4.344195e+01 lineto -4.590914e+01 4.365369e+01 lineto -closepath -gsave -5.689914e-01 5.689914e-01 5.689914e-01 setrgbcolor -fill -grestore -newpath -4.626613e+01 4.74018e+01 moveto -4.590914e+01 4.365369e+01 lineto -4.889627e+01 4.344195e+01 lineto -4.91974e+01 4.719402e+01 lineto -4.626613e+01 4.74018e+01 lineto -closepath -gsave -5.745978e-01 5.745978e-01 5.745978e-01 setrgbcolor -fill -grestore -newpath -4.676494e+01 5.11393e+01 moveto -4.626613e+01 4.74018e+01 lineto -4.91974e+01 4.719402e+01 lineto -4.961817e+01 5.093705e+01 lineto -4.676494e+01 5.11393e+01 lineto -closepath -gsave -5.789516e-01 5.789516e-01 5.789516e-01 setrgbcolor -fill -grestore -newpath -4.740179e+01 5.483789e+01 moveto -4.676494e+01 5.11393e+01 lineto -4.961817e+01 5.093705e+01 lineto -5.015537e+01 5.46427e+01 lineto -4.740179e+01 5.483789e+01 lineto -closepath -gsave -5.819525e-01 5.819525e-01 5.819525e-01 setrgbcolor -fill -grestore -newpath -4.817188e+01 5.846957e+01 moveto -4.740179e+01 5.483789e+01 lineto -5.015537e+01 5.46427e+01 lineto -5.080496e+01 5.828292e+01 lineto -4.817188e+01 5.846957e+01 lineto -closepath -gsave -5.835307e-01 5.835307e-01 5.835307e-01 setrgbcolor -fill -grestore -newpath -4.906936e+01 6.200685e+01 moveto -4.817188e+01 5.846957e+01 lineto -5.080496e+01 5.828292e+01 lineto -5.156202e+01 6.183016e+01 lineto -4.906936e+01 6.200685e+01 lineto -closepath -gsave -5.836488e-01 5.836488e-01 5.836488e-01 setrgbcolor -fill -grestore -newpath -5.008744e+01 6.542296e+01 moveto -4.906936e+01 6.200685e+01 lineto -5.156202e+01 6.183016e+01 lineto -5.24208e+01 6.525756e+01 lineto -5.008744e+01 6.542296e+01 lineto -closepath -gsave -5.823034e-01 5.823034e-01 5.823034e-01 setrgbcolor -fill -grestore -newpath -5.121842e+01 6.869202e+01 moveto -5.008744e+01 6.542296e+01 lineto -5.24208e+01 6.525756e+01 lineto -5.337481e+01 6.853916e+01 lineto -5.121842e+01 6.869202e+01 lineto -closepath -gsave -5.795257e-01 5.795257e-01 5.795257e-01 setrgbcolor -fill -grestore -newpath -5.245373e+01 7.178929e+01 moveto -5.121842e+01 6.869202e+01 lineto -5.337481e+01 6.853916e+01 lineto -5.441683e+01 7.165014e+01 lineto -5.245373e+01 7.178929e+01 lineto -closepath -gsave -5.753796e-01 5.753796e-01 5.753796e-01 setrgbcolor -fill -grestore -newpath -5.378402e+01 7.469133e+01 moveto -5.245373e+01 7.178929e+01 lineto -5.441683e+01 7.165014e+01 lineto -5.553897e+01 7.456693e+01 lineto -5.378402e+01 7.469133e+01 lineto -closepath -gsave -5.699602e-01 5.699602e-01 5.699602e-01 setrgbcolor -fill -grestore -newpath -5.519922e+01 7.737617e+01 moveto -5.378402e+01 7.469133e+01 lineto -5.553897e+01 7.456693e+01 lineto -5.673274e+01 7.726746e+01 lineto -5.519922e+01 7.737617e+01 lineto -closepath -gsave -5.633898e-01 5.633898e-01 5.633898e-01 setrgbcolor -fill -grestore -newpath -5.668861e+01 7.982347e+01 moveto -5.519922e+01 7.737617e+01 lineto -5.673274e+01 7.726746e+01 lineto -5.798909e+01 7.973128e+01 lineto -5.668861e+01 7.982347e+01 lineto -closepath -gsave -5.55814e-01 5.55814e-01 5.55814e-01 setrgbcolor -fill -grestore -newpath -5.824093e+01 8.201471e+01 moveto -5.668861e+01 7.982347e+01 lineto -5.798909e+01 7.973128e+01 lineto -5.929852e+01 8.193974e+01 lineto -5.824093e+01 8.201471e+01 lineto -closepath -gsave -5.473963e-01 5.473963e-01 5.473963e-01 setrgbcolor -fill -grestore -newpath -5.984442e+01 8.39333e+01 moveto -5.824093e+01 8.201471e+01 lineto -5.929852e+01 8.193974e+01 lineto -6.065111e+01 8.387612e+01 lineto -5.984442e+01 8.39333e+01 lineto -closepath -gsave -5.383123e-01 5.383123e-01 5.383123e-01 setrgbcolor -fill -grestore -newpath -6.148693e+01 8.556473e+01 moveto -5.984442e+01 8.39333e+01 lineto -6.065111e+01 8.387612e+01 lineto -6.203662e+01 8.552576e+01 lineto -6.148693e+01 8.556473e+01 lineto -closepath -gsave -5.287444e-01 5.287444e-01 5.287444e-01 setrgbcolor -fill -grestore -newpath -6.315604e+01 8.689663e+01 moveto -6.148693e+01 8.556473e+01 lineto -6.203662e+01 8.552576e+01 lineto -6.344457e+01 8.687618e+01 lineto -6.315604e+01 8.689663e+01 lineto -closepath -gsave -5.188753e-01 5.188753e-01 5.188753e-01 setrgbcolor -fill -grestore -newpath -6.483912e+01 8.791892e+01 moveto -6.315604e+01 8.689663e+01 lineto -6.344457e+01 8.687618e+01 lineto -6.486429e+01 8.791714e+01 lineto -6.483912e+01 8.791892e+01 lineto -closepath -gsave -5.088829e-01 5.088829e-01 5.088829e-01 setrgbcolor -fill -grestore -newpath -6.65234e+01 8.862388e+01 moveto -6.483912e+01 8.791892e+01 lineto -6.486429e+01 8.791714e+01 lineto -6.628504e+01 8.864077e+01 lineto -6.65234e+01 8.862388e+01 lineto -closepath -gsave -4.989348e-01 4.989348e-01 4.989348e-01 setrgbcolor -fill -grestore -newpath -7.14566e+01 8.879353e+01 moveto -6.984472e+01 8.906284e+01 lineto -6.908667e+01 8.911657e+01 lineto -7.044634e+01 8.886514e+01 lineto -7.14566e+01 8.879353e+01 lineto -closepath -gsave -4.337381e-01 4.337381e-01 4.337381e-01 setrgbcolor -fill -grestore -newpath -5.942589e+01 3.175865e+00 moveto -6.078207e+01 2.893343e+00 lineto -6.159048e+01 2.853482e+00 lineto -6.049422e+01 3.123187e+00 lineto -5.942589e+01 3.175865e+00 lineto -closepath -gsave -4.365522e-01 4.365522e-01 4.365522e-01 setrgbcolor -fill -grestore -newpath -5.811191e+01 3.782584e+00 moveto -5.942589e+01 3.175865e+00 lineto -6.049422e+01 3.123187e+00 lineto -5.943208e+01 3.717489e+00 lineto -5.811191e+01 3.782584e+00 lineto -closepath -gsave -4.43232e-01 4.43232e-01 4.43232e-01 setrgbcolor -fill -grestore -newpath -5.685008e+01 4.708908e+00 moveto -5.811191e+01 3.782584e+00 lineto -5.943208e+01 3.717489e+00 lineto -5.841208e+01 4.631888e+00 lineto -5.685008e+01 4.708908e+00 lineto -closepath -gsave -4.507331e-01 4.507331e-01 4.507331e-01 setrgbcolor -fill -grestore -newpath -5.564995e+01 5.947823e+00 moveto -5.685008e+01 4.708908e+00 lineto -5.841208e+01 4.631888e+00 lineto -5.744196e+01 5.859462e+00 lineto -5.564995e+01 5.947823e+00 lineto -closepath -gsave -4.590483e-01 4.590483e-01 4.590483e-01 setrgbcolor -fill -grestore -newpath -5.452059e+01 7.489951e+00 moveto -5.564995e+01 5.947823e+00 lineto -5.744196e+01 5.859462e+00 lineto -5.652906e+01 7.390917e+00 lineto -5.452059e+01 7.489951e+00 lineto -closepath -gsave -4.681449e-01 4.681449e-01 4.681449e-01 setrgbcolor -fill -grestore -newpath -5.347058e+01 9.323617e+00 moveto -5.452059e+01 7.489951e+00 lineto -5.652906e+01 7.390917e+00 lineto -5.568029e+01 9.21466e+00 lineto -5.347058e+01 9.323617e+00 lineto -closepath -gsave -4.779632e-01 4.779632e-01 4.779632e-01 setrgbcolor -fill -grestore -newpath -5.250784e+01 1.143494e+01 moveto -5.347058e+01 9.323617e+00 lineto -5.568029e+01 9.21466e+00 lineto -5.490207e+01 1.131688e+01 lineto -5.250784e+01 1.143494e+01 lineto -closepath -gsave -4.884153e-01 4.884153e-01 4.884153e-01 setrgbcolor -fill -grestore -newpath -5.163968e+01 1.380793e+01 moveto -5.250784e+01 1.143494e+01 lineto -5.490207e+01 1.131688e+01 lineto -5.42003e+01 1.368168e+01 lineto -5.163968e+01 1.380793e+01 lineto -closepath -gsave -4.993845e-01 4.993845e-01 4.993845e-01 setrgbcolor -fill -grestore -newpath -5.087266e+01 1.642464e+01 moveto -5.163968e+01 1.380793e+01 lineto -5.42003e+01 1.368168e+01 lineto -5.358029e+01 1.629113e+01 lineto -5.087266e+01 1.642464e+01 lineto -closepath -gsave -5.107268e-01 5.107268e-01 5.107268e-01 setrgbcolor -fill -grestore -newpath -5.021259e+01 1.926524e+01 moveto -5.087266e+01 1.642464e+01 lineto -5.358029e+01 1.629113e+01 lineto -5.304672e+01 1.912549e+01 lineto -5.021259e+01 1.926524e+01 lineto -closepath -gsave -5.222732e-01 5.222732e-01 5.222732e-01 setrgbcolor -fill -grestore -newpath -4.966446e+01 2.230824e+01 moveto -5.021259e+01 1.926524e+01 lineto -5.304672e+01 1.912549e+01 lineto -5.260365e+01 2.216331e+01 lineto -4.966446e+01 2.230824e+01 lineto -closepath -gsave -5.338333e-01 5.338333e-01 5.338333e-01 setrgbcolor -fill -grestore -newpath -4.923244e+01 2.553059e+01 moveto -4.966446e+01 2.230824e+01 lineto -5.260365e+01 2.216331e+01 lineto -5.225443e+01 2.538158e+01 lineto -4.923244e+01 2.553059e+01 lineto -closepath -gsave -5.452001e-01 5.452001e-01 5.452001e-01 setrgbcolor -fill -grestore -newpath -4.891978e+01 2.89079e+01 moveto -4.923244e+01 2.553059e+01 lineto -5.225443e+01 2.538158e+01 lineto -5.200169e+01 2.875594e+01 lineto -4.891978e+01 2.89079e+01 lineto -closepath -gsave -5.561557e-01 5.561557e-01 5.561557e-01 setrgbcolor -fill -grestore -newpath -4.872885e+01 3.241461e+01 moveto -4.891978e+01 2.89079e+01 lineto -5.200169e+01 2.875594e+01 lineto -5.184736e+01 3.226084e+01 lineto -4.872885e+01 3.241461e+01 lineto -closepath -gsave -5.664781e-01 5.664781e-01 5.664781e-01 setrgbcolor -fill -grestore -newpath -4.866111e+01 3.602417e+01 moveto -4.872885e+01 3.241461e+01 lineto -5.184736e+01 3.226084e+01 lineto -5.17926e+01 3.586976e+01 lineto -4.866111e+01 3.602417e+01 lineto -closepath -gsave -5.759482e-01 5.759482e-01 5.759482e-01 setrgbcolor -fill -grestore -newpath -4.871706e+01 3.970925e+01 moveto -4.866111e+01 3.602417e+01 lineto -5.17926e+01 3.586976e+01 lineto -5.183783e+01 3.955537e+01 lineto -4.871706e+01 3.970925e+01 lineto -closepath -gsave -5.843572e-01 5.843572e-01 5.843572e-01 setrgbcolor -fill -grestore -newpath -4.889627e+01 4.344195e+01 moveto -4.871706e+01 3.970925e+01 lineto -5.183783e+01 3.955537e+01 lineto -5.198269e+01 4.328976e+01 lineto -4.889627e+01 4.344195e+01 lineto -closepath -gsave -5.915136e-01 5.915136e-01 5.915136e-01 setrgbcolor -fill -grestore -newpath -4.91974e+01 4.719402e+01 moveto -4.889627e+01 4.344195e+01 lineto -5.198269e+01 4.328976e+01 lineto -5.222611e+01 4.704468e+01 lineto -4.91974e+01 4.719402e+01 lineto -closepath -gsave -5.972503e-01 5.972503e-01 5.972503e-01 setrgbcolor -fill -grestore -newpath -4.961817e+01 5.093705e+01 moveto -4.91974e+01 4.719402e+01 lineto -5.222611e+01 4.704468e+01 lineto -5.256623e+01 5.079168e+01 lineto -4.961817e+01 5.093705e+01 lineto -closepath -gsave -6.014306e-01 6.014306e-01 6.014306e-01 setrgbcolor -fill -grestore -newpath -5.015537e+01 5.46427e+01 moveto -4.961817e+01 5.093705e+01 lineto -5.256623e+01 5.079168e+01 lineto -5.300048e+01 5.450241e+01 lineto -5.015537e+01 5.46427e+01 lineto -closepath -gsave -6.039534e-01 6.039534e-01 6.039534e-01 setrgbcolor -fill -grestore -newpath -5.080496e+01 5.828292e+01 moveto -5.015537e+01 5.46427e+01 lineto -5.300048e+01 5.450241e+01 lineto -5.352557e+01 5.814877e+01 lineto -5.080496e+01 5.828292e+01 lineto -closepath -gsave -6.047567e-01 6.047567e-01 6.047567e-01 setrgbcolor -fill -grestore -newpath -5.156202e+01 6.183016e+01 moveto -5.080496e+01 5.828292e+01 lineto -5.352557e+01 5.814877e+01 lineto -5.413752e+01 6.170317e+01 lineto -5.156202e+01 6.183016e+01 lineto -closepath -gsave -6.038205e-01 6.038205e-01 6.038205e-01 setrgbcolor -fill -grestore -newpath -5.24208e+01 6.525756e+01 moveto -5.156202e+01 6.183016e+01 lineto -5.413752e+01 6.170317e+01 lineto -5.483171e+01 6.513868e+01 lineto -5.24208e+01 6.525756e+01 lineto -closepath -gsave -6.011669e-01 6.011669e-01 6.011669e-01 setrgbcolor -fill -grestore -newpath -5.337481e+01 6.853916e+01 moveto -5.24208e+01 6.525756e+01 lineto -5.483171e+01 6.513868e+01 lineto -5.560288e+01 6.84293e+01 lineto -5.337481e+01 6.853916e+01 lineto -closepath -gsave -5.9686e-01 5.9686e-01 5.9686e-01 setrgbcolor -fill -grestore -newpath -5.441683e+01 7.165014e+01 moveto -5.337481e+01 6.853916e+01 lineto -5.560288e+01 6.84293e+01 lineto -5.644519e+01 7.155012e+01 lineto -5.441683e+01 7.165014e+01 lineto -closepath -gsave -5.910033e-01 5.910033e-01 5.910033e-01 setrgbcolor -fill -grestore -newpath -5.553897e+01 7.456693e+01 moveto -5.441683e+01 7.165014e+01 lineto -5.644519e+01 7.155012e+01 lineto -5.735226e+01 7.447752e+01 lineto -5.553897e+01 7.456693e+01 lineto -closepath -gsave -5.837357e-01 5.837357e-01 5.837357e-01 setrgbcolor -fill -grestore -newpath -5.673274e+01 7.726746e+01 moveto -5.553897e+01 7.456693e+01 lineto -5.735226e+01 7.447752e+01 lineto -5.831723e+01 7.718933e+01 lineto -5.673274e+01 7.726746e+01 lineto -closepath -gsave -5.752263e-01 5.752263e-01 5.752263e-01 setrgbcolor -fill -grestore -newpath -5.798909e+01 7.973128e+01 moveto -5.673274e+01 7.726746e+01 lineto -5.831723e+01 7.718933e+01 lineto -5.933279e+01 7.966503e+01 lineto -5.798909e+01 7.973128e+01 lineto -closepath -gsave -5.656687e-01 5.656687e-01 5.656687e-01 setrgbcolor -fill -grestore -newpath -5.929852e+01 8.193974e+01 moveto -5.798909e+01 7.973128e+01 lineto -5.933279e+01 7.966503e+01 lineto -6.039126e+01 8.188586e+01 lineto -5.929852e+01 8.193974e+01 lineto -closepath -gsave -5.552736e-01 5.552736e-01 5.552736e-01 setrgbcolor -fill -grestore -newpath -6.065111e+01 8.387612e+01 moveto -5.929852e+01 8.193974e+01 lineto -6.039126e+01 8.188586e+01 lineto -6.148461e+01 8.383502e+01 lineto -6.065111e+01 8.387612e+01 lineto -closepath -gsave -5.442618e-01 5.442618e-01 5.442618e-01 setrgbcolor -fill -grestore -newpath -6.203662e+01 8.552576e+01 moveto -6.065111e+01 8.387612e+01 lineto -6.148461e+01 8.383502e+01 lineto -6.260458e+01 8.549776e+01 lineto -6.203662e+01 8.552576e+01 lineto -closepath -gsave -5.328564e-01 5.328564e-01 5.328564e-01 setrgbcolor -fill -grestore -newpath -6.344457e+01 8.687618e+01 moveto -6.203662e+01 8.552576e+01 lineto -6.260458e+01 8.549776e+01 lineto -6.374268e+01 8.686148e+01 lineto -6.344457e+01 8.687618e+01 lineto -closepath -gsave -5.212757e-01 5.212757e-01 5.212757e-01 setrgbcolor -fill -grestore -newpath -6.486429e+01 8.791714e+01 moveto -6.344457e+01 8.687618e+01 lineto -6.374268e+01 8.686148e+01 lineto -6.48903e+01 8.791586e+01 lineto -6.486429e+01 8.791714e+01 lineto -closepath -gsave -5.097267e-01 5.097267e-01 5.097267e-01 setrgbcolor -fill -grestore -newpath -6.628504e+01 8.864077e+01 moveto -6.486429e+01 8.791714e+01 lineto -6.48903e+01 8.791586e+01 lineto -6.603875e+01 8.865292e+01 lineto -6.628504e+01 8.864077e+01 lineto -closepath -gsave -4.983992e-01 4.983992e-01 4.983992e-01 setrgbcolor -fill -grestore -newpath -7.044634e+01 8.886514e+01 moveto -6.908667e+01 8.911657e+01 lineto -6.830342e+01 8.91552e+01 lineto -6.94025e+01 8.891661e+01 lineto -7.044634e+01 8.886514e+01 lineto -closepath -gsave -4.359573e-01 4.359573e-01 4.359573e-01 setrgbcolor -fill -grestore -newpath -6.049422e+01 3.123187e+00 moveto -6.159048e+01 2.853482e+00 lineto -6.24199e+01 2.829466e+00 lineto -6.159033e+01 3.09145e+00 lineto -6.049422e+01 3.123187e+00 lineto -closepath -gsave -4.388313e-01 4.388313e-01 4.388313e-01 setrgbcolor -fill -grestore -newpath -5.943208e+01 3.717489e+00 moveto -6.049422e+01 3.123187e+00 lineto -6.159033e+01 3.09145e+00 lineto -6.078657e+01 3.678271e+00 lineto -5.943208e+01 3.717489e+00 lineto -closepath -gsave -4.464891e-01 4.464891e-01 4.464891e-01 setrgbcolor -fill -grestore -newpath -5.841208e+01 4.631888e+00 moveto -5.943208e+01 3.717489e+00 lineto -6.078657e+01 3.678271e+00 lineto -6.00147e+01 4.585486e+00 lineto -5.841208e+01 4.631888e+00 lineto -closepath -gsave -4.551211e-01 4.551211e-01 4.551211e-01 setrgbcolor -fill -grestore -newpath -5.744196e+01 5.859462e+00 moveto -5.841208e+01 4.631888e+00 lineto -6.00147e+01 4.585486e+00 lineto -5.928058e+01 5.806226e+00 lineto -5.744196e+01 5.859462e+00 lineto -closepath -gsave -4.647146e-01 4.647146e-01 4.647146e-01 setrgbcolor -fill -grestore -newpath -5.652906e+01 7.390917e+00 moveto -5.744196e+01 5.859462e+00 lineto -5.928058e+01 5.806226e+00 lineto -5.858976e+01 7.331251e+00 lineto -5.652906e+01 7.390917e+00 lineto -closepath -gsave -4.75226e-01 4.75226e-01 4.75226e-01 setrgbcolor -fill -grestore -newpath -5.568029e+01 9.21466e+00 moveto -5.652906e+01 7.390917e+00 lineto -5.858976e+01 7.331251e+00 lineto -5.794746e+01 9.149016e+00 lineto -5.568029e+01 9.21466e+00 lineto -closepath -gsave -4.865774e-01 4.865774e-01 4.865774e-01 setrgbcolor -fill -grestore -newpath -5.490207e+01 1.131688e+01 moveto -5.568029e+01 9.21466e+00 lineto -5.794746e+01 9.149016e+00 lineto -5.735856e+01 1.124576e+01 lineto -5.490207e+01 1.131688e+01 lineto -closepath -gsave -4.986558e-01 4.986558e-01 4.986558e-01 setrgbcolor -fill -grestore -newpath -5.42003e+01 1.368168e+01 moveto -5.490207e+01 1.131688e+01 lineto -5.735856e+01 1.124576e+01 lineto -5.682751e+01 1.360561e+01 lineto -5.42003e+01 1.368168e+01 lineto -closepath -gsave -5.113138e-01 5.113138e-01 5.113138e-01 setrgbcolor -fill -grestore -newpath -5.358029e+01 1.629113e+01 moveto -5.42003e+01 1.368168e+01 lineto -5.682751e+01 1.360561e+01 lineto -5.635832e+01 1.621069e+01 lineto -5.358029e+01 1.629113e+01 lineto -closepath -gsave -5.243706e-01 5.243706e-01 5.243706e-01 setrgbcolor -fill -grestore -newpath -5.304672e+01 1.912549e+01 moveto -5.358029e+01 1.629113e+01 lineto -5.635832e+01 1.621069e+01 lineto -5.595456e+01 1.90413e+01 lineto -5.304672e+01 1.912549e+01 lineto -closepath -gsave -5.376161e-01 5.376161e-01 5.376161e-01 setrgbcolor -fill -grestore -newpath -5.260365e+01 2.216331e+01 moveto -5.304672e+01 1.912549e+01 lineto -5.595456e+01 1.90413e+01 lineto -5.561927e+01 2.207599e+01 lineto -5.260365e+01 2.216331e+01 lineto -closepath -gsave -5.508159e-01 5.508159e-01 5.508159e-01 setrgbcolor -fill -grestore -newpath -5.225443e+01 2.538158e+01 moveto -5.260365e+01 2.216331e+01 lineto -5.561927e+01 2.207599e+01 lineto -5.5355e+01 2.52918e+01 lineto -5.225443e+01 2.538158e+01 lineto -closepath -gsave -5.637173e-01 5.637173e-01 5.637173e-01 setrgbcolor -fill -grestore -newpath -5.200169e+01 2.875594e+01 moveto -5.225443e+01 2.538158e+01 lineto -5.5355e+01 2.52918e+01 lineto -5.516375e+01 2.866438e+01 lineto -5.200169e+01 2.875594e+01 lineto -closepath -gsave -5.760572e-01 5.760572e-01 5.760572e-01 setrgbcolor -fill -grestore -newpath -5.184736e+01 3.226084e+01 moveto -5.200169e+01 2.875594e+01 lineto -5.516375e+01 2.866438e+01 lineto -5.504696e+01 3.21682e+01 lineto -5.184736e+01 3.226084e+01 lineto -closepath -gsave -5.875704e-01 5.875704e-01 5.875704e-01 setrgbcolor -fill -grestore -newpath -5.17926e+01 3.586976e+01 moveto -5.184736e+01 3.226084e+01 lineto -5.504696e+01 3.21682e+01 lineto -5.500552e+01 3.577673e+01 lineto -5.17926e+01 3.586976e+01 lineto -closepath -gsave -5.979986e-01 5.979986e-01 5.979986e-01 setrgbcolor -fill -grestore -newpath -5.183783e+01 3.955537e+01 moveto -5.17926e+01 3.586976e+01 lineto -5.500552e+01 3.577673e+01 lineto -5.503974e+01 3.946266e+01 lineto -5.183783e+01 3.955537e+01 lineto -closepath -gsave -6.070993e-01 6.070993e-01 6.070993e-01 setrgbcolor -fill -grestore -newpath -5.198269e+01 4.328976e+01 moveto -5.183783e+01 3.955537e+01 lineto -5.503974e+01 3.946266e+01 lineto -5.514937e+01 4.319808e+01 lineto -5.198269e+01 4.328976e+01 lineto -closepath -gsave -6.146547e-01 6.146547e-01 6.146547e-01 setrgbcolor -fill -grestore -newpath -5.222611e+01 4.704468e+01 moveto -5.198269e+01 4.328976e+01 lineto -5.514937e+01 4.319808e+01 lineto -5.533357e+01 4.69547e+01 lineto -5.222611e+01 4.704468e+01 lineto -closepath -gsave -6.2048e-01 6.2048e-01 6.2048e-01 setrgbcolor -fill -grestore -newpath -5.256623e+01 5.079168e+01 moveto -5.222611e+01 4.704468e+01 lineto -5.533357e+01 4.69547e+01 lineto -5.559095e+01 5.07041e+01 lineto -5.256623e+01 5.079168e+01 lineto -closepath -gsave -6.244299e-01 6.244299e-01 6.244299e-01 setrgbcolor -fill -grestore -newpath -5.300048e+01 5.450241e+01 moveto -5.256623e+01 5.079168e+01 lineto -5.559095e+01 5.07041e+01 lineto -5.591956e+01 5.441789e+01 lineto -5.300048e+01 5.450241e+01 lineto -closepath -gsave -6.264046e-01 6.264046e-01 6.264046e-01 setrgbcolor -fill -grestore -newpath -5.352557e+01 5.814877e+01 moveto -5.300048e+01 5.450241e+01 lineto -5.591956e+01 5.441789e+01 lineto -5.631691e+01 5.806795e+01 lineto -5.352557e+01 5.814877e+01 lineto -closepath -gsave -6.263535e-01 6.263535e-01 6.263535e-01 setrgbcolor -fill -grestore -newpath -5.413752e+01 6.170317e+01 moveto -5.352557e+01 5.814877e+01 lineto -5.631691e+01 5.806795e+01 lineto -5.678e+01 6.162666e+01 lineto -5.413752e+01 6.170317e+01 lineto -closepath -gsave -6.242773e-01 6.242773e-01 6.242773e-01 setrgbcolor -fill -grestore -newpath -5.483171e+01 6.513868e+01 moveto -5.413752e+01 6.170317e+01 lineto -5.678e+01 6.162666e+01 lineto -5.730532e+01 6.506706e+01 lineto -5.483171e+01 6.513868e+01 lineto -closepath -gsave -6.20228e-01 6.20228e-01 6.20228e-01 setrgbcolor -fill -grestore -newpath -5.560288e+01 6.84293e+01 moveto -5.483171e+01 6.513868e+01 lineto -5.730532e+01 6.506706e+01 lineto -5.788889e+01 6.836311e+01 lineto -5.560288e+01 6.84293e+01 lineto -closepath -gsave -6.143068e-01 6.143068e-01 6.143068e-01 setrgbcolor -fill -grestore -newpath -5.644519e+01 7.155012e+01 moveto -5.560288e+01 6.84293e+01 lineto -5.788889e+01 6.836311e+01 lineto -5.852629e+01 7.148987e+01 lineto -5.644519e+01 7.155012e+01 lineto -closepath -gsave -6.066607e-01 6.066607e-01 6.066607e-01 setrgbcolor -fill -grestore -newpath -5.735226e+01 7.447752e+01 moveto -5.644519e+01 7.155012e+01 lineto -5.852629e+01 7.148987e+01 lineto -5.92127e+01 7.442365e+01 lineto -5.735226e+01 7.447752e+01 lineto -closepath -gsave -5.974763e-01 5.974763e-01 5.974763e-01 setrgbcolor -fill -grestore -newpath -5.831723e+01 7.718933e+01 moveto -5.735226e+01 7.447752e+01 lineto -5.92127e+01 7.442365e+01 lineto -5.994293e+01 7.714226e+01 lineto -5.831723e+01 7.718933e+01 lineto -closepath -gsave -5.869731e-01 5.869731e-01 5.869731e-01 setrgbcolor -fill -grestore -newpath -5.933279e+01 7.966503e+01 moveto -5.831723e+01 7.718933e+01 lineto -5.994293e+01 7.714226e+01 lineto -6.071143e+01 7.962511e+01 lineto -5.933279e+01 7.966503e+01 lineto -closepath -gsave -5.753953e-01 5.753953e-01 5.753953e-01 setrgbcolor -fill -grestore -newpath -6.039126e+01 8.188586e+01 moveto -5.933279e+01 7.966503e+01 lineto -6.071143e+01 7.962511e+01 lineto -6.151241e+01 8.18534e+01 lineto -6.039126e+01 8.188586e+01 lineto -closepath -gsave -5.630029e-01 5.630029e-01 5.630029e-01 setrgbcolor -fill -grestore -newpath -6.148461e+01 8.383502e+01 moveto -6.039126e+01 8.188586e+01 lineto -6.151241e+01 8.18534e+01 lineto -6.233979e+01 8.381026e+01 lineto -6.148461e+01 8.383502e+01 lineto -closepath -gsave -5.500625e-01 5.500625e-01 5.500625e-01 setrgbcolor -fill -grestore -newpath -6.260458e+01 8.549776e+01 moveto -6.148461e+01 8.383502e+01 lineto -6.233979e+01 8.381026e+01 lineto -6.31873e+01 8.548089e+01 lineto -6.260458e+01 8.549776e+01 lineto -closepath -gsave -5.368381e-01 5.368381e-01 5.368381e-01 setrgbcolor -fill -grestore -newpath -6.374268e+01 8.686148e+01 moveto -6.260458e+01 8.549776e+01 lineto -6.31873e+01 8.548089e+01 lineto -6.404854e+01 8.685262e+01 lineto -6.374268e+01 8.686148e+01 lineto -closepath -gsave -5.235829e-01 5.235829e-01 5.235829e-01 setrgbcolor -fill -grestore -newpath -6.48903e+01 8.791586e+01 moveto -6.374268e+01 8.686148e+01 lineto -6.404854e+01 8.685262e+01 lineto -6.491699e+01 8.791509e+01 lineto -6.48903e+01 8.791586e+01 lineto -closepath -gsave -5.105313e-01 5.105313e-01 5.105313e-01 setrgbcolor -fill -grestore -newpath -6.603875e+01 8.865292e+01 moveto -6.48903e+01 8.791586e+01 lineto -6.491699e+01 8.791509e+01 lineto -6.578606e+01 8.866023e+01 lineto -6.603875e+01 8.865292e+01 lineto -closepath -gsave -4.978927e-01 4.978927e-01 4.978927e-01 setrgbcolor -fill -grestore -newpath -6.94025e+01 8.891661e+01 moveto -6.830342e+01 8.91552e+01 lineto -6.749981e+01 8.917846e+01 lineto -6.833152e+01 8.894762e+01 lineto -6.94025e+01 8.891661e+01 lineto -closepath -gsave -4.381511e-01 4.381511e-01 4.381511e-01 setrgbcolor -fill -grestore -newpath -6.159033e+01 3.09145e+00 moveto -6.24199e+01 2.829466e+00 lineto -6.326523e+01 2.821445e+00 lineto -6.270745e+01 3.08085e+00 lineto -6.159033e+01 3.09145e+00 lineto -closepath -gsave -4.41058e-01 4.41058e-01 4.41058e-01 setrgbcolor -fill -grestore -newpath -6.078657e+01 3.678271e+00 moveto -6.159033e+01 3.09145e+00 lineto -6.270745e+01 3.08085e+00 lineto -6.216703e+01 3.665171e+00 lineto -6.078657e+01 3.678271e+00 lineto -closepath -gsave -4.49696e-01 4.49696e-01 4.49696e-01 setrgbcolor -fill -grestore -newpath -6.00147e+01 4.585486e+00 moveto -6.078657e+01 3.678271e+00 lineto -6.216703e+01 3.665171e+00 lineto -6.164806e+01 4.569986e+00 lineto -6.00147e+01 4.585486e+00 lineto -closepath -gsave -4.594695e-01 4.594695e-01 4.594695e-01 setrgbcolor -fill -grestore -newpath -5.928058e+01 5.806226e+00 moveto -6.00147e+01 4.585486e+00 lineto -6.164806e+01 4.569986e+00 lineto -6.115446e+01 5.788445e+00 lineto -5.928058e+01 5.806226e+00 lineto -closepath -gsave -4.703607e-01 4.703607e-01 4.703607e-01 setrgbcolor -fill -grestore -newpath -5.858976e+01 7.331251e+00 moveto -5.928058e+01 5.806226e+00 lineto -6.115446e+01 5.788445e+00 lineto -6.068998e+01 7.311322e+00 lineto -5.858976e+01 7.331251e+00 lineto -closepath -gsave -4.823138e-01 4.823138e-01 4.823138e-01 setrgbcolor -fill -grestore -newpath -5.794746e+01 9.149016e+00 moveto -5.858976e+01 7.331251e+00 lineto -6.068998e+01 7.311322e+00 lineto -6.025812e+01 9.12709e+00 lineto -5.794746e+01 9.149016e+00 lineto -closepath -gsave -4.952317e-01 4.952317e-01 4.952317e-01 setrgbcolor -fill -grestore -newpath -5.735856e+01 1.124576e+01 moveto -5.794746e+01 9.149016e+00 lineto -6.025812e+01 9.12709e+00 lineto -5.986216e+01 1.1222e+01 lineto -5.735856e+01 1.124576e+01 lineto -closepath -gsave -5.089749e-01 5.089749e-01 5.089749e-01 setrgbcolor -fill -grestore -newpath -5.682751e+01 1.360561e+01 moveto -5.735856e+01 1.124576e+01 lineto -5.986216e+01 1.1222e+01 lineto -5.95051e+01 1.35802e+01 lineto -5.682751e+01 1.360561e+01 lineto -closepath -gsave -5.233628e-01 5.233628e-01 5.233628e-01 setrgbcolor -fill -grestore -newpath -5.635832e+01 1.621069e+01 moveto -5.682751e+01 1.360561e+01 lineto -5.95051e+01 1.35802e+01 lineto -5.918963e+01 1.618383e+01 lineto -5.635832e+01 1.621069e+01 lineto -closepath -gsave -5.381757e-01 5.381757e-01 5.381757e-01 setrgbcolor -fill -grestore -newpath -5.595456e+01 1.90413e+01 moveto -5.635832e+01 1.621069e+01 lineto -5.918963e+01 1.618383e+01 lineto -5.891816e+01 1.901318e+01 lineto -5.595456e+01 1.90413e+01 lineto -closepath -gsave -5.5316e-01 5.5316e-01 5.5316e-01 setrgbcolor -fill -grestore -newpath -5.561927e+01 2.207599e+01 moveto -5.595456e+01 1.90413e+01 lineto -5.891816e+01 1.901318e+01 lineto -5.869272e+01 2.204683e+01 lineto -5.561927e+01 2.207599e+01 lineto -closepath -gsave -5.680344e-01 5.680344e-01 5.680344e-01 setrgbcolor -fill -grestore -newpath -5.5355e+01 2.52918e+01 moveto -5.561927e+01 2.207599e+01 lineto -5.869272e+01 2.204683e+01 lineto -5.851504e+01 2.526182e+01 lineto -5.5355e+01 2.52918e+01 lineto -closepath -gsave -5.824984e-01 5.824984e-01 5.824984e-01 setrgbcolor -fill -grestore -newpath -5.516375e+01 2.866438e+01 moveto -5.5355e+01 2.52918e+01 lineto -5.851504e+01 2.526182e+01 lineto -5.838644e+01 2.86338e+01 lineto -5.516375e+01 2.866438e+01 lineto -closepath -gsave -5.962414e-01 5.962414e-01 5.962414e-01 setrgbcolor -fill -grestore -newpath -5.504696e+01 3.21682e+01 moveto -5.516375e+01 2.866438e+01 lineto -5.838644e+01 2.86338e+01 lineto -5.830792e+01 3.213726e+01 lineto -5.504696e+01 3.21682e+01 lineto -closepath -gsave -6.089535e-01 6.089535e-01 6.089535e-01 setrgbcolor -fill -grestore -newpath -5.500552e+01 3.577673e+01 moveto -5.504696e+01 3.21682e+01 lineto -5.830792e+01 3.213726e+01 lineto -5.828006e+01 3.574566e+01 lineto -5.500552e+01 3.577673e+01 lineto -closepath -gsave -6.203358e-01 6.203358e-01 6.203358e-01 setrgbcolor -fill -grestore -newpath -5.503974e+01 3.946266e+01 moveto -5.500552e+01 3.577673e+01 lineto -5.828006e+01 3.574566e+01 lineto -5.830307e+01 3.943169e+01 lineto -5.503974e+01 3.946266e+01 lineto -closepath -gsave -6.301122e-01 6.301122e-01 6.301122e-01 setrgbcolor -fill -grestore -newpath -5.514937e+01 4.319808e+01 moveto -5.503974e+01 3.946266e+01 lineto -5.830307e+01 3.943169e+01 lineto -5.837678e+01 4.316745e+01 lineto -5.514937e+01 4.319808e+01 lineto -closepath -gsave -6.380387e-01 6.380387e-01 6.380387e-01 setrgbcolor -fill -grestore -newpath -5.533357e+01 4.69547e+01 moveto -5.514937e+01 4.319808e+01 lineto -5.837678e+01 4.316745e+01 lineto -5.850063e+01 4.692465e+01 lineto -5.533357e+01 4.69547e+01 lineto -closepath -gsave -6.439134e-01 6.439134e-01 6.439134e-01 setrgbcolor -fill -grestore -newpath -5.559095e+01 5.07041e+01 moveto -5.533357e+01 4.69547e+01 lineto -5.850063e+01 4.692465e+01 lineto -5.867368e+01 5.067485e+01 lineto -5.559095e+01 5.07041e+01 lineto -closepath -gsave -6.475844e-01 6.475844e-01 6.475844e-01 setrgbcolor -fill -grestore -newpath -5.591956e+01 5.441789e+01 moveto -5.559095e+01 5.07041e+01 lineto -5.867368e+01 5.067485e+01 lineto -5.889463e+01 5.438966e+01 lineto -5.591956e+01 5.441789e+01 lineto -closepath -gsave -6.489553e-01 6.489553e-01 6.489553e-01 setrgbcolor -fill -grestore -newpath -5.631691e+01 5.806795e+01 moveto -5.591956e+01 5.441789e+01 lineto -5.889463e+01 5.438966e+01 lineto -5.916179e+01 5.804096e+01 lineto -5.631691e+01 5.806795e+01 lineto -closepath -gsave -6.479897e-01 6.479897e-01 6.479897e-01 setrgbcolor -fill -grestore -newpath -5.678e+01 6.162666e+01 moveto -5.631691e+01 5.806795e+01 lineto -5.916179e+01 5.804096e+01 lineto -5.947316e+01 6.16011e+01 lineto -5.678e+01 6.162666e+01 lineto -closepath -gsave -6.447121e-01 6.447121e-01 6.447121e-01 setrgbcolor -fill -grestore -newpath -5.730532e+01 6.506706e+01 moveto -5.678e+01 6.162666e+01 lineto -5.947316e+01 6.16011e+01 lineto -5.982636e+01 6.504313e+01 lineto -5.730532e+01 6.506706e+01 lineto -closepath -gsave -6.392075e-01 6.392075e-01 6.392075e-01 setrgbcolor -fill -grestore -newpath -5.788889e+01 6.836311e+01 moveto -5.730532e+01 6.506706e+01 lineto -5.982636e+01 6.504313e+01 lineto -6.021873e+01 6.8341e+01 lineto -5.788889e+01 6.836311e+01 lineto -closepath -gsave -6.316179e-01 6.316179e-01 6.316179e-01 setrgbcolor -fill -grestore -newpath -5.852629e+01 7.148987e+01 moveto -5.788889e+01 6.836311e+01 lineto -6.021873e+01 6.8341e+01 lineto -6.06473e+01 7.146974e+01 lineto -5.852629e+01 7.148987e+01 lineto -closepath -gsave -6.221364e-01 6.221364e-01 6.221364e-01 setrgbcolor -fill -grestore -newpath -5.92127e+01 7.442365e+01 moveto -5.852629e+01 7.148987e+01 lineto -6.06473e+01 7.146974e+01 lineto -6.110882e+01 7.440566e+01 lineto -5.92127e+01 7.442365e+01 lineto -closepath -gsave -6.110005e-01 6.110005e-01 6.110005e-01 setrgbcolor -fill -grestore -newpath -5.994293e+01 7.714226e+01 moveto -5.92127e+01 7.442365e+01 lineto -6.110882e+01 7.440566e+01 lineto -6.15998e+01 7.712654e+01 lineto -5.994293e+01 7.714226e+01 lineto -closepath -gsave -5.984821e-01 5.984821e-01 5.984821e-01 setrgbcolor -fill -grestore -newpath -6.071143e+01 7.962511e+01 moveto -5.994293e+01 7.714226e+01 lineto -6.15998e+01 7.712654e+01 lineto -6.211652e+01 7.961177e+01 lineto -6.071143e+01 7.962511e+01 lineto -closepath -gsave -5.848778e-01 5.848778e-01 5.848778e-01 setrgbcolor -fill -grestore -newpath -6.151241e+01 8.18534e+01 moveto -6.071143e+01 7.962511e+01 lineto -6.211652e+01 7.961177e+01 lineto -6.265507e+01 8.184256e+01 lineto -6.151241e+01 8.18534e+01 lineto -closepath -gsave -5.704977e-01 5.704977e-01 5.704977e-01 setrgbcolor -fill -grestore -newpath -6.233979e+01 8.381026e+01 moveto -6.151241e+01 8.18534e+01 lineto -6.265507e+01 8.184256e+01 lineto -6.321137e+01 8.380199e+01 lineto -6.233979e+01 8.381026e+01 lineto -closepath -gsave -5.556544e-01 5.556544e-01 5.556544e-01 setrgbcolor -fill -grestore -newpath -6.31873e+01 8.548089e+01 moveto -6.233979e+01 8.381026e+01 lineto -6.321137e+01 8.380199e+01 lineto -6.378121e+01 8.547525e+01 lineto -6.31873e+01 8.548089e+01 lineto -closepath -gsave -5.406524e-01 5.406524e-01 5.406524e-01 setrgbcolor -fill -grestore -newpath -6.404854e+01 8.685262e+01 moveto -6.31873e+01 8.548089e+01 lineto -6.378121e+01 8.547525e+01 lineto -6.436027e+01 8.684966e+01 lineto -6.404854e+01 8.685262e+01 lineto -closepath -gsave -5.25778e-01 5.25778e-01 5.25778e-01 setrgbcolor -fill -grestore -newpath -6.491699e+01 8.791509e+01 moveto -6.404854e+01 8.685262e+01 lineto -6.436027e+01 8.684966e+01 lineto -6.494418e+01 8.791483e+01 lineto -6.491699e+01 8.791509e+01 lineto -closepath -gsave -5.112912e-01 5.112912e-01 5.112912e-01 setrgbcolor -fill -grestore -newpath -6.578606e+01 8.866023e+01 moveto -6.491699e+01 8.791509e+01 lineto -6.494418e+01 8.791483e+01 lineto -6.552852e+01 8.866268e+01 lineto -6.578606e+01 8.866023e+01 lineto -closepath -gsave -4.974183e-01 4.974183e-01 4.974183e-01 setrgbcolor -fill -grestore -newpath -6.833152e+01 8.894762e+01 moveto -6.749981e+01 8.917846e+01 lineto -6.668079e+01 8.918624e+01 lineto -6.724e+01 8.895798e+01 lineto -6.833152e+01 8.894762e+01 lineto -closepath -gsave -4.402927e-01 4.402927e-01 4.402927e-01 setrgbcolor -fill -grestore -newpath -6.270745e+01 3.08085e+00 moveto -6.326523e+01 2.821445e+00 lineto -6.412126e+01 2.829466e+00 lineto -6.383872e+01 3.09145e+00 lineto -6.270745e+01 3.08085e+00 lineto -closepath -gsave -4.432036e-01 4.432036e-01 4.432036e-01 setrgbcolor -fill -grestore -newpath -6.216703e+01 3.665171e+00 moveto -6.270745e+01 3.08085e+00 lineto -6.383872e+01 3.09145e+00 lineto -6.356497e+01 3.678271e+00 lineto -6.216703e+01 3.665171e+00 lineto -closepath -gsave -4.528075e-01 4.528075e-01 4.528075e-01 setrgbcolor -fill -grestore -newpath -6.164806e+01 4.569986e+00 moveto -6.216703e+01 3.665171e+00 lineto -6.356497e+01 3.678271e+00 lineto -6.330208e+01 4.585486e+00 lineto -6.164806e+01 4.569986e+00 lineto -closepath -gsave -4.637129e-01 4.637129e-01 4.637129e-01 setrgbcolor -fill -grestore -newpath -6.115446e+01 5.788445e+00 moveto -6.164806e+01 4.569986e+00 lineto -6.330208e+01 4.585486e+00 lineto -6.305205e+01 5.806226e+00 lineto -6.115446e+01 5.788445e+00 lineto -closepath -gsave -4.758972e-01 4.758972e-01 4.758972e-01 setrgbcolor -fill -grestore -newpath -6.068998e+01 7.311322e+00 moveto -6.115446e+01 5.788445e+00 lineto -6.305205e+01 5.806226e+00 lineto -6.281677e+01 7.331251e+00 lineto -6.068998e+01 7.311322e+00 lineto -closepath -gsave -4.89292e-01 4.89292e-01 4.89292e-01 setrgbcolor -fill -grestore -newpath -6.025812e+01 9.12709e+00 moveto -6.068998e+01 7.311322e+00 lineto -6.281677e+01 7.331251e+00 lineto -6.259801e+01 9.149016e+00 lineto -6.025812e+01 9.12709e+00 lineto -closepath -gsave -5.0378e-01 5.0378e-01 5.0378e-01 setrgbcolor -fill -grestore -newpath -5.986216e+01 1.1222e+01 moveto -6.025812e+01 9.12709e+00 lineto -6.259801e+01 9.149016e+00 lineto -6.239744e+01 1.124576e+01 lineto -5.986216e+01 1.1222e+01 lineto -closepath -gsave -5.191944e-01 5.191944e-01 5.191944e-01 setrgbcolor -fill -grestore -newpath -5.95051e+01 1.35802e+01 moveto -5.986216e+01 1.1222e+01 lineto -6.239744e+01 1.124576e+01 lineto -6.221657e+01 1.360561e+01 lineto -5.95051e+01 1.35802e+01 lineto -closepath -gsave -5.353201e-01 5.353201e-01 5.353201e-01 setrgbcolor -fill -grestore -newpath -5.918963e+01 1.618383e+01 moveto -5.95051e+01 1.35802e+01 lineto -6.221657e+01 1.360561e+01 lineto -6.205677e+01 1.621069e+01 lineto -5.918963e+01 1.618383e+01 lineto -closepath -gsave -5.518969e-01 5.518969e-01 5.518969e-01 setrgbcolor -fill -grestore -newpath -5.891816e+01 1.901318e+01 moveto -5.918963e+01 1.618383e+01 lineto -6.205677e+01 1.621069e+01 lineto -6.191925e+01 1.90413e+01 lineto -5.891816e+01 1.901318e+01 lineto -closepath -gsave -5.686261e-01 5.686261e-01 5.686261e-01 setrgbcolor -fill -grestore -newpath -5.869272e+01 2.204683e+01 moveto -5.891816e+01 1.901318e+01 lineto -6.191925e+01 1.90413e+01 lineto -6.180506e+01 2.207599e+01 lineto -5.869272e+01 2.204683e+01 lineto -closepath -gsave -5.851785e-01 5.851785e-01 5.851785e-01 setrgbcolor -fill -grestore -newpath -5.851504e+01 2.526182e+01 moveto -5.869272e+01 2.204683e+01 lineto -6.180506e+01 2.207599e+01 lineto -6.171505e+01 2.52918e+01 lineto -5.851504e+01 2.526182e+01 lineto -closepath -gsave -6.01204e-01 6.01204e-01 6.01204e-01 setrgbcolor -fill -grestore -newpath -5.838644e+01 2.86338e+01 moveto -5.851504e+01 2.526182e+01 lineto -6.171505e+01 2.52918e+01 lineto -6.164992e+01 2.866438e+01 lineto -5.838644e+01 2.86338e+01 lineto -closepath -gsave -6.163437e-01 6.163437e-01 6.163437e-01 setrgbcolor -fill -grestore -newpath -5.830792e+01 3.213726e+01 moveto -5.838644e+01 2.86338e+01 lineto -6.164992e+01 2.866438e+01 lineto -6.161014e+01 3.21682e+01 lineto -5.830792e+01 3.213726e+01 lineto -closepath -gsave -6.30242e-01 6.30242e-01 6.30242e-01 setrgbcolor -fill -grestore -newpath -5.828006e+01 3.574566e+01 moveto -5.830792e+01 3.213726e+01 lineto -6.161014e+01 3.21682e+01 lineto -6.159603e+01 3.577673e+01 lineto -5.828006e+01 3.574566e+01 lineto -closepath -gsave -6.425597e-01 6.425597e-01 6.425597e-01 setrgbcolor -fill -grestore -newpath -5.830307e+01 3.943169e+01 moveto -5.828006e+01 3.574566e+01 lineto -6.159603e+01 3.577673e+01 lineto -6.160768e+01 3.946266e+01 lineto -5.830307e+01 3.943169e+01 lineto -closepath -gsave -6.529866e-01 6.529866e-01 6.529866e-01 setrgbcolor -fill -grestore -newpath -5.837678e+01 4.316745e+01 moveto -5.830307e+01 3.943169e+01 lineto -6.160768e+01 3.946266e+01 lineto -6.164502e+01 4.319808e+01 lineto -5.837678e+01 4.316745e+01 lineto -closepath -gsave -6.612535e-01 6.612535e-01 6.612535e-01 setrgbcolor -fill -grestore -newpath -5.850063e+01 4.692465e+01 moveto -5.837678e+01 4.316745e+01 lineto -6.164502e+01 4.319808e+01 lineto -6.170776e+01 4.69547e+01 lineto -5.850063e+01 4.692465e+01 lineto -closepath -gsave -6.671427e-01 6.671427e-01 6.671427e-01 setrgbcolor -fill -grestore -newpath -5.867368e+01 5.067485e+01 moveto -5.850063e+01 4.692465e+01 lineto -6.170776e+01 4.69547e+01 lineto -6.179542e+01 5.07041e+01 lineto -5.867368e+01 5.067485e+01 lineto -closepath -gsave -6.704969e-01 6.704969e-01 6.704969e-01 setrgbcolor -fill -grestore -newpath -5.889463e+01 5.438966e+01 moveto -5.867368e+01 5.067485e+01 lineto -6.179542e+01 5.07041e+01 lineto -6.190734e+01 5.441789e+01 lineto -5.889463e+01 5.438966e+01 lineto -closepath -gsave -6.712254e-01 6.712254e-01 6.712254e-01 setrgbcolor -fill -grestore -newpath -5.916179e+01 5.804096e+01 moveto -5.889463e+01 5.438966e+01 lineto -6.190734e+01 5.441789e+01 lineto -6.204267e+01 5.806795e+01 lineto -5.916179e+01 5.804096e+01 lineto -closepath -gsave -6.693078e-01 6.693078e-01 6.693078e-01 setrgbcolor -fill -grestore -newpath -5.947316e+01 6.16011e+01 moveto -5.916179e+01 5.804096e+01 lineto -6.204267e+01 5.806795e+01 lineto -6.220039e+01 6.162666e+01 lineto -5.947316e+01 6.16011e+01 lineto -closepath -gsave -6.647951e-01 6.647951e-01 6.647951e-01 setrgbcolor -fill -grestore -newpath -5.982636e+01 6.504313e+01 moveto -5.947316e+01 6.16011e+01 lineto -6.220039e+01 6.162666e+01 lineto -6.23793e+01 6.506706e+01 lineto -5.982636e+01 6.504313e+01 lineto -closepath -gsave -6.578076e-01 6.578076e-01 6.578076e-01 setrgbcolor -fill -grestore -newpath -6.021873e+01 6.8341e+01 moveto -5.982636e+01 6.504313e+01 lineto -6.23793e+01 6.506706e+01 lineto -6.257806e+01 6.836311e+01 lineto -6.021873e+01 6.8341e+01 lineto -closepath -gsave -6.485298e-01 6.485298e-01 6.485298e-01 setrgbcolor -fill -grestore -newpath -6.06473e+01 7.146974e+01 moveto -6.021873e+01 6.8341e+01 lineto -6.257806e+01 6.836311e+01 lineto -6.279515e+01 7.148987e+01 lineto -6.06473e+01 7.146974e+01 lineto -closepath -gsave -6.372036e-01 6.372036e-01 6.372036e-01 setrgbcolor -fill -grestore -newpath -6.110882e+01 7.440566e+01 moveto -6.06473e+01 7.146974e+01 lineto -6.279515e+01 7.148987e+01 lineto -6.302893e+01 7.442365e+01 lineto -6.110882e+01 7.440566e+01 lineto -closepath -gsave -6.241183e-01 6.241183e-01 6.241183e-01 setrgbcolor -fill -grestore -newpath -6.15998e+01 7.712654e+01 moveto -6.110882e+01 7.440566e+01 lineto -6.302893e+01 7.442365e+01 lineto -6.327763e+01 7.714226e+01 lineto -6.15998e+01 7.712654e+01 lineto -closepath -gsave -6.095996e-01 6.095996e-01 6.095996e-01 setrgbcolor -fill -grestore -newpath -6.211652e+01 7.961177e+01 moveto -6.15998e+01 7.712654e+01 lineto -6.327763e+01 7.714226e+01 lineto -6.353938e+01 7.962511e+01 lineto -6.211652e+01 7.961177e+01 lineto -closepath -gsave -5.939968e-01 5.939968e-01 5.939968e-01 setrgbcolor -fill -grestore -newpath -6.265507e+01 8.184256e+01 moveto -6.211652e+01 7.961177e+01 lineto -6.353938e+01 7.962511e+01 lineto -6.381218e+01 8.18534e+01 lineto -6.265507e+01 8.184256e+01 lineto -closepath -gsave -5.776701e-01 5.776701e-01 5.776701e-01 setrgbcolor -fill -grestore -newpath -6.321137e+01 8.380199e+01 moveto -6.265507e+01 8.184256e+01 lineto -6.381218e+01 8.18534e+01 lineto -6.409397e+01 8.381026e+01 lineto -6.321137e+01 8.380199e+01 lineto -closepath -gsave -5.609775e-01 5.609775e-01 5.609775e-01 setrgbcolor -fill -grestore -newpath -6.378121e+01 8.547525e+01 moveto -6.321137e+01 8.380199e+01 lineto -6.409397e+01 8.381026e+01 lineto -6.438262e+01 8.548089e+01 lineto -6.378121e+01 8.547525e+01 lineto -closepath -gsave -5.442623e-01 5.442623e-01 5.442623e-01 setrgbcolor -fill -grestore -newpath -6.436027e+01 8.684966e+01 moveto -6.378121e+01 8.547525e+01 lineto -6.438262e+01 8.548089e+01 lineto -6.467595e+01 8.685262e+01 lineto -6.436027e+01 8.684966e+01 lineto -closepath -gsave -5.278425e-01 5.278425e-01 5.278425e-01 setrgbcolor -fill -grestore -newpath -6.494418e+01 8.791483e+01 moveto -6.436027e+01 8.684966e+01 lineto -6.467595e+01 8.685262e+01 lineto -6.497173e+01 8.791509e+01 lineto -6.494418e+01 8.791483e+01 lineto -closepath -gsave -5.12001e-01 5.12001e-01 5.12001e-01 setrgbcolor -fill -grestore -newpath -6.552852e+01 8.866268e+01 moveto -6.494418e+01 8.791483e+01 lineto -6.497173e+01 8.791509e+01 lineto -6.526772e+01 8.866023e+01 lineto -6.552852e+01 8.866268e+01 lineto -closepath -gsave -4.969786e-01 4.969786e-01 4.969786e-01 setrgbcolor -fill -grestore -newpath -6.724e+01 8.895798e+01 moveto -6.668079e+01 8.918624e+01 lineto -6.58514e+01 8.917846e+01 lineto -6.613467e+01 8.894762e+01 lineto -6.724e+01 8.895798e+01 lineto -closepath -gsave -4.423547e-01 4.423547e-01 4.423547e-01 setrgbcolor -fill -grestore -newpath -6.383872e+01 3.09145e+00 moveto -6.412126e+01 2.829466e+00 lineto -6.49827e+01 2.853482e+00 lineto -6.497714e+01 3.123187e+00 lineto -6.383872e+01 3.09145e+00 lineto -closepath -gsave -4.452389e-01 4.452389e-01 4.452389e-01 setrgbcolor -fill -grestore -newpath -6.356497e+01 3.678271e+00 moveto -6.383872e+01 3.09145e+00 lineto -6.497714e+01 3.123187e+00 lineto -6.497175e+01 3.717489e+00 lineto -6.356497e+01 3.678271e+00 lineto -closepath -gsave -4.557773e-01 4.557773e-01 4.557773e-01 setrgbcolor -fill -grestore -newpath -6.330208e+01 4.585486e+00 moveto -6.356497e+01 3.678271e+00 lineto -6.497175e+01 3.717489e+00 lineto -6.496657e+01 4.631888e+00 lineto -6.330208e+01 4.585486e+00 lineto -closepath -gsave -4.67784e-01 4.67784e-01 4.67784e-01 setrgbcolor -fill -grestore -newpath -6.305205e+01 5.806226e+00 moveto -6.330208e+01 4.585486e+00 lineto -6.496657e+01 4.631888e+00 lineto -6.496165e+01 5.859462e+00 lineto -6.305205e+01 5.806226e+00 lineto -closepath -gsave -4.812315e-01 4.812315e-01 4.812315e-01 setrgbcolor -fill -grestore -newpath -6.281677e+01 7.331251e+00 moveto -6.305205e+01 5.806226e+00 lineto -6.496165e+01 5.859462e+00 lineto -6.495702e+01 7.390917e+00 lineto -6.281677e+01 7.331251e+00 lineto -closepath -gsave -4.960389e-01 4.960389e-01 4.960389e-01 setrgbcolor -fill -grestore -newpath -6.259801e+01 9.149016e+00 moveto -6.281677e+01 7.331251e+00 lineto -6.495702e+01 7.390917e+00 lineto -6.495271e+01 9.21466e+00 lineto -6.259801e+01 9.149016e+00 lineto -closepath -gsave -5.120686e-01 5.120686e-01 5.120686e-01 setrgbcolor -fill -grestore -newpath -6.239744e+01 1.124576e+01 moveto -6.259801e+01 9.149016e+00 lineto -6.495271e+01 9.21466e+00 lineto -6.494876e+01 1.131688e+01 lineto -6.239744e+01 1.124576e+01 lineto -closepath -gsave -5.291262e-01 5.291262e-01 5.291262e-01 setrgbcolor -fill -grestore -newpath -6.221657e+01 1.360561e+01 moveto -6.239744e+01 1.124576e+01 lineto -6.494876e+01 1.131688e+01 lineto -6.49452e+01 1.368168e+01 lineto -6.221657e+01 1.360561e+01 lineto -closepath -gsave -5.469614e-01 5.469614e-01 5.469614e-01 setrgbcolor -fill -grestore -newpath -6.205677e+01 1.621069e+01 moveto -6.221657e+01 1.360561e+01 lineto -6.49452e+01 1.368168e+01 lineto -6.494205e+01 1.629113e+01 lineto -6.205677e+01 1.621069e+01 lineto -closepath -gsave -5.652734e-01 5.652734e-01 5.652734e-01 setrgbcolor -fill -grestore -newpath -6.191925e+01 1.90413e+01 moveto -6.205677e+01 1.621069e+01 lineto -6.494205e+01 1.629113e+01 lineto -6.493935e+01 1.912549e+01 lineto -6.191925e+01 1.90413e+01 lineto -closepath -gsave -5.837181e-01 5.837181e-01 5.837181e-01 setrgbcolor -fill -grestore -newpath -6.180506e+01 2.207599e+01 moveto -6.191925e+01 1.90413e+01 lineto -6.493935e+01 1.912549e+01 lineto -6.49371e+01 2.216331e+01 lineto -6.180506e+01 2.207599e+01 lineto -closepath -gsave -6.019176e-01 6.019176e-01 6.019176e-01 setrgbcolor -fill -grestore -newpath -6.171505e+01 2.52918e+01 moveto -6.180506e+01 2.207599e+01 lineto -6.49371e+01 2.216331e+01 lineto -6.493533e+01 2.538158e+01 lineto -6.171505e+01 2.52918e+01 lineto -closepath -gsave -6.194726e-01 6.194726e-01 6.194726e-01 setrgbcolor -fill -grestore -newpath -6.164992e+01 2.866438e+01 moveto -6.171505e+01 2.52918e+01 lineto -6.493533e+01 2.538158e+01 lineto -6.493404e+01 2.875594e+01 lineto -6.164992e+01 2.866438e+01 lineto -closepath -gsave -6.359757e-01 6.359757e-01 6.359757e-01 setrgbcolor -fill -grestore -newpath -6.161014e+01 3.21682e+01 moveto -6.164992e+01 2.866438e+01 lineto -6.493404e+01 2.875594e+01 lineto -6.493326e+01 3.226084e+01 lineto -6.161014e+01 3.21682e+01 lineto -closepath -gsave -6.510261e-01 6.510261e-01 6.510261e-01 setrgbcolor -fill -grestore -newpath -6.159603e+01 3.577673e+01 moveto -6.161014e+01 3.21682e+01 lineto -6.493326e+01 3.226084e+01 lineto -6.493298e+01 3.586976e+01 lineto -6.159603e+01 3.577673e+01 lineto -closepath -gsave -6.642445e-01 6.642445e-01 6.642445e-01 setrgbcolor -fill -grestore -newpath -6.160768e+01 3.946266e+01 moveto -6.159603e+01 3.577673e+01 lineto -6.493298e+01 3.586976e+01 lineto -6.493321e+01 3.955537e+01 lineto -6.160768e+01 3.946266e+01 lineto -closepath -gsave -6.752878e-01 6.752878e-01 6.752878e-01 setrgbcolor -fill -grestore -newpath -6.164502e+01 4.319808e+01 moveto -6.160768e+01 3.946266e+01 lineto -6.493321e+01 3.955537e+01 lineto -6.493395e+01 4.328976e+01 lineto -6.164502e+01 4.319808e+01 lineto -closepath -gsave -6.838625e-01 6.838625e-01 6.838625e-01 setrgbcolor -fill -grestore -newpath -6.170776e+01 4.69547e+01 moveto -6.164502e+01 4.319808e+01 lineto -6.493395e+01 4.328976e+01 lineto -6.493518e+01 4.704468e+01 lineto -6.170776e+01 4.69547e+01 lineto -closepath -gsave -6.897365e-01 6.897365e-01 6.897365e-01 setrgbcolor -fill -grestore -newpath -6.179542e+01 5.07041e+01 moveto -6.170776e+01 4.69547e+01 lineto -6.493518e+01 4.704468e+01 lineto -6.493691e+01 5.079168e+01 lineto -6.179542e+01 5.07041e+01 lineto -closepath -gsave -6.927486e-01 6.927486e-01 6.927486e-01 setrgbcolor -fill -grestore -newpath -6.190734e+01 5.441789e+01 moveto -6.179542e+01 5.07041e+01 lineto -6.493691e+01 5.079168e+01 lineto -6.493911e+01 5.450241e+01 lineto -6.190734e+01 5.441789e+01 lineto -closepath -gsave -6.928151e-01 6.928151e-01 6.928151e-01 setrgbcolor -fill -grestore -newpath -6.204267e+01 5.806795e+01 moveto -6.190734e+01 5.441789e+01 lineto -6.493911e+01 5.450241e+01 lineto -6.494178e+01 5.814877e+01 lineto -6.204267e+01 5.806795e+01 lineto -closepath -gsave -6.899335e-01 6.899335e-01 6.899335e-01 setrgbcolor -fill -grestore -newpath -6.220039e+01 6.162666e+01 moveto -6.204267e+01 5.806795e+01 lineto -6.494178e+01 5.814877e+01 lineto -6.494488e+01 6.170317e+01 lineto -6.220039e+01 6.162666e+01 lineto -closepath -gsave -6.841824e-01 6.841824e-01 6.841824e-01 setrgbcolor -fill -grestore -newpath -6.23793e+01 6.506706e+01 moveto -6.220039e+01 6.162666e+01 lineto -6.494488e+01 6.170317e+01 lineto -6.49484e+01 6.513868e+01 lineto -6.23793e+01 6.506706e+01 lineto -closepath -gsave -6.757185e-01 6.757185e-01 6.757185e-01 setrgbcolor -fill -grestore -newpath -6.257806e+01 6.836311e+01 moveto -6.23793e+01 6.506706e+01 lineto -6.49484e+01 6.513868e+01 lineto -6.495232e+01 6.84293e+01 lineto -6.257806e+01 6.836311e+01 lineto -closepath -gsave -6.647704e-01 6.647704e-01 6.647704e-01 setrgbcolor -fill -grestore -newpath -6.279515e+01 7.148987e+01 moveto -6.257806e+01 6.836311e+01 lineto -6.495232e+01 6.84293e+01 lineto -6.495659e+01 7.155012e+01 lineto -6.279515e+01 7.148987e+01 lineto -closepath -gsave -6.516288e-01 6.516288e-01 6.516288e-01 setrgbcolor -fill -grestore -newpath -6.302893e+01 7.442365e+01 moveto -6.279515e+01 7.148987e+01 lineto -6.495659e+01 7.155012e+01 lineto -6.496119e+01 7.447752e+01 lineto -6.302893e+01 7.442365e+01 lineto -closepath -gsave -6.366355e-01 6.366355e-01 6.366355e-01 setrgbcolor -fill -grestore -newpath -6.327763e+01 7.714226e+01 moveto -6.302893e+01 7.442365e+01 lineto -6.496119e+01 7.447752e+01 lineto -6.496609e+01 7.718933e+01 lineto -6.327763e+01 7.714226e+01 lineto -closepath -gsave -6.201694e-01 6.201694e-01 6.201694e-01 setrgbcolor -fill -grestore -newpath -6.353938e+01 7.962511e+01 moveto -6.327763e+01 7.714226e+01 lineto -6.496609e+01 7.718933e+01 lineto -6.497124e+01 7.966503e+01 lineto -6.353938e+01 7.962511e+01 lineto -closepath -gsave -6.026321e-01 6.026321e-01 6.026321e-01 setrgbcolor -fill -grestore -newpath -6.381218e+01 8.18534e+01 moveto -6.353938e+01 7.962511e+01 lineto -6.497124e+01 7.966503e+01 lineto -6.497661e+01 8.188586e+01 lineto -6.381218e+01 8.18534e+01 lineto -closepath -gsave -5.844325e-01 5.844325e-01 5.844325e-01 setrgbcolor -fill -grestore -newpath -6.409397e+01 8.381026e+01 moveto -6.381218e+01 8.18534e+01 lineto -6.497661e+01 8.188586e+01 lineto -6.498216e+01 8.383502e+01 lineto -6.409397e+01 8.381026e+01 lineto -closepath -gsave -5.659722e-01 5.659722e-01 5.659722e-01 setrgbcolor -fill -grestore -newpath -6.438262e+01 8.548089e+01 moveto -6.409397e+01 8.381026e+01 lineto -6.498216e+01 8.383502e+01 lineto -6.498785e+01 8.549776e+01 lineto -6.438262e+01 8.548089e+01 lineto -closepath -gsave -5.476318e-01 5.476318e-01 5.476318e-01 setrgbcolor -fill -grestore -newpath -6.467595e+01 8.685262e+01 moveto -6.438262e+01 8.548089e+01 lineto -6.498785e+01 8.549776e+01 lineto -6.499362e+01 8.686148e+01 lineto -6.467595e+01 8.685262e+01 lineto -closepath -gsave -5.297584e-01 5.297584e-01 5.297584e-01 setrgbcolor -fill -grestore -newpath -6.497173e+01 8.791509e+01 moveto -6.467595e+01 8.685262e+01 lineto -6.499362e+01 8.686148e+01 lineto -6.499944e+01 8.791586e+01 lineto -6.497173e+01 8.791509e+01 lineto -closepath -gsave -5.126555e-01 5.126555e-01 5.126555e-01 setrgbcolor -fill -grestore -newpath -6.526772e+01 8.866023e+01 moveto -6.497173e+01 8.791509e+01 lineto -6.499944e+01 8.791586e+01 lineto -6.500527e+01 8.865292e+01 lineto -6.526772e+01 8.866023e+01 lineto -closepath -gsave -4.965758e-01 4.965758e-01 4.965758e-01 setrgbcolor -fill -grestore -newpath -6.613467e+01 8.894762e+01 moveto -6.58514e+01 8.917846e+01 lineto -6.501676e+01 8.91552e+01 lineto -6.502234e+01 8.891661e+01 lineto -6.613467e+01 8.894762e+01 lineto -closepath -gsave -4.443096e-01 4.443096e-01 4.443096e-01 setrgbcolor -fill -grestore -newpath -6.497714e+01 3.123187e+00 moveto -6.49827e+01 2.853482e+00 lineto -6.584425e+01 2.893343e+00 lineto -6.61157e+01 3.175865e+00 lineto -6.497714e+01 3.123187e+00 lineto -closepath -gsave -4.471352e-01 4.471352e-01 4.471352e-01 setrgbcolor -fill -grestore -newpath -6.497175e+01 3.717489e+00 moveto -6.497714e+01 3.123187e+00 lineto -6.61157e+01 3.175865e+00 lineto -6.63787e+01 3.782584e+00 lineto -6.497175e+01 3.717489e+00 lineto -closepath -gsave -4.585593e-01 4.585593e-01 4.585593e-01 setrgbcolor -fill -grestore -newpath -6.496657e+01 4.631888e+00 moveto -6.497175e+01 3.717489e+00 lineto -6.63787e+01 3.782584e+00 lineto -6.663127e+01 4.708908e+00 lineto -6.496657e+01 4.631888e+00 lineto -closepath -gsave -4.716149e-01 4.716149e-01 4.716149e-01 setrgbcolor -fill -grestore -newpath -6.496165e+01 5.859462e+00 moveto -6.496657e+01 4.631888e+00 lineto -6.663127e+01 4.708908e+00 lineto -6.687148e+01 5.947823e+00 lineto -6.496165e+01 5.859462e+00 lineto -closepath -gsave -4.862698e-01 4.862698e-01 4.862698e-01 setrgbcolor -fill -grestore -newpath -6.495702e+01 7.390917e+00 moveto -6.496165e+01 5.859462e+00 lineto -6.687148e+01 5.947823e+00 lineto -6.709753e+01 7.489951e+00 lineto -6.495702e+01 7.390917e+00 lineto -closepath -gsave -5.024308e-01 5.024308e-01 5.024308e-01 setrgbcolor -fill -grestore -newpath -6.495271e+01 9.21466e+00 moveto -6.495702e+01 7.390917e+00 lineto -6.709753e+01 7.489951e+00 lineto -6.73077e+01 9.323617e+00 lineto -6.495271e+01 9.21466e+00 lineto -closepath -gsave -5.199407e-01 5.199407e-01 5.199407e-01 setrgbcolor -fill -grestore -newpath -6.494876e+01 1.131688e+01 moveto -6.495271e+01 9.21466e+00 lineto -6.73077e+01 9.323617e+00 lineto -6.75004e+01 1.143494e+01 lineto -6.494876e+01 1.131688e+01 lineto -closepath -gsave -5.385774e-01 5.385774e-01 5.385774e-01 setrgbcolor -fill -grestore -newpath -6.49452e+01 1.368168e+01 moveto -6.494876e+01 1.131688e+01 lineto -6.75004e+01 1.143494e+01 lineto -6.767417e+01 1.380793e+01 lineto -6.49452e+01 1.368168e+01 lineto -closepath -gsave -5.580566e-01 5.580566e-01 5.580566e-01 setrgbcolor -fill -grestore -newpath -6.494205e+01 1.629113e+01 moveto -6.49452e+01 1.368168e+01 lineto -6.767417e+01 1.380793e+01 lineto -6.782769e+01 1.642464e+01 lineto -6.494205e+01 1.629113e+01 lineto -closepath -gsave -5.780372e-01 5.780372e-01 5.780372e-01 setrgbcolor -fill -grestore -newpath -6.493935e+01 1.912549e+01 moveto -6.494205e+01 1.629113e+01 lineto -6.782769e+01 1.642464e+01 lineto -6.795981e+01 1.926524e+01 lineto -6.493935e+01 1.912549e+01 lineto -closepath -gsave -5.981305e-01 5.981305e-01 5.981305e-01 setrgbcolor -fill -grestore -newpath -6.49371e+01 2.216331e+01 moveto -6.493935e+01 1.912549e+01 lineto -6.795981e+01 1.926524e+01 lineto -6.806952e+01 2.230824e+01 lineto -6.49371e+01 2.216331e+01 lineto -closepath -gsave -6.179111e-01 6.179111e-01 6.179111e-01 setrgbcolor -fill -grestore -newpath -6.493533e+01 2.538158e+01 moveto -6.49371e+01 2.216331e+01 lineto -6.806952e+01 2.230824e+01 lineto -6.8156e+01 2.553059e+01 lineto -6.493533e+01 2.538158e+01 lineto -closepath -gsave -6.369314e-01 6.369314e-01 6.369314e-01 setrgbcolor -fill -grestore -newpath -6.493404e+01 2.875594e+01 moveto -6.493533e+01 2.538158e+01 lineto -6.8156e+01 2.553059e+01 lineto -6.821858e+01 2.89079e+01 lineto -6.493404e+01 2.875594e+01 lineto -closepath -gsave -6.547369e-01 6.547369e-01 6.547369e-01 setrgbcolor -fill -grestore -newpath -6.493326e+01 3.226084e+01 moveto -6.493404e+01 2.875594e+01 lineto -6.821858e+01 2.89079e+01 lineto -6.825679e+01 3.241461e+01 lineto -6.493326e+01 3.226084e+01 lineto -closepath -gsave -6.708829e-01 6.708829e-01 6.708829e-01 setrgbcolor -fill -grestore -newpath -6.493298e+01 3.586976e+01 moveto -6.493326e+01 3.226084e+01 lineto -6.825679e+01 3.241461e+01 lineto -6.827035e+01 3.602417e+01 lineto -6.493298e+01 3.586976e+01 lineto -closepath -gsave -6.849517e-01 6.849517e-01 6.849517e-01 setrgbcolor -fill -grestore -newpath -6.493321e+01 3.955537e+01 moveto -6.493298e+01 3.586976e+01 lineto -6.827035e+01 3.602417e+01 lineto -6.825915e+01 3.970925e+01 lineto -6.493321e+01 3.955537e+01 lineto -closepath -gsave -6.965686e-01 6.965686e-01 6.965686e-01 setrgbcolor -fill -grestore -newpath -6.493395e+01 4.328976e+01 moveto -6.493321e+01 3.955537e+01 lineto -6.825915e+01 3.970925e+01 lineto -6.822328e+01 4.344195e+01 lineto -6.493395e+01 4.328976e+01 lineto -closepath -gsave -7.054173e-01 7.054173e-01 7.054173e-01 setrgbcolor -fill -grestore -newpath -6.493518e+01 4.704468e+01 moveto -6.493395e+01 4.328976e+01 lineto -6.822328e+01 4.344195e+01 lineto -6.816301e+01 4.719402e+01 lineto -6.493518e+01 4.704468e+01 lineto -closepath -gsave -7.112527e-01 7.112527e-01 7.112527e-01 setrgbcolor -fill -grestore -newpath -6.493691e+01 5.079168e+01 moveto -6.493518e+01 4.704468e+01 lineto -6.816301e+01 4.719402e+01 lineto -6.807879e+01 5.093705e+01 lineto -6.493691e+01 5.079168e+01 lineto -closepath -gsave -7.13911e-01 7.13911e-01 7.13911e-01 setrgbcolor -fill -grestore -newpath -6.493911e+01 5.450241e+01 moveto -6.493691e+01 5.079168e+01 lineto -6.807879e+01 5.093705e+01 lineto -6.797126e+01 5.46427e+01 lineto -6.493911e+01 5.450241e+01 lineto -closepath -gsave -7.133167e-01 7.133167e-01 7.133167e-01 setrgbcolor -fill -grestore -newpath -6.494178e+01 5.814877e+01 moveto -6.493911e+01 5.450241e+01 lineto -6.797126e+01 5.46427e+01 lineto -6.784124e+01 5.828292e+01 lineto -6.494178e+01 5.814877e+01 lineto -closepath -gsave -7.094857e-01 7.094857e-01 7.094857e-01 setrgbcolor -fill -grestore -newpath -6.494488e+01 6.170317e+01 moveto -6.494178e+01 5.814877e+01 lineto -6.784124e+01 5.828292e+01 lineto -6.768971e+01 6.183016e+01 lineto -6.494488e+01 6.170317e+01 lineto -closepath -gsave -7.025248e-01 7.025248e-01 7.025248e-01 setrgbcolor -fill -grestore -newpath -6.49484e+01 6.513868e+01 moveto -6.494488e+01 6.170317e+01 lineto -6.768971e+01 6.183016e+01 lineto -6.751782e+01 6.525756e+01 lineto -6.49484e+01 6.513868e+01 lineto -closepath -gsave -6.926275e-01 6.926275e-01 6.926275e-01 setrgbcolor -fill -grestore -newpath -6.495232e+01 6.84293e+01 moveto -6.49484e+01 6.513868e+01 lineto -6.751782e+01 6.525756e+01 lineto -6.732687e+01 6.853916e+01 lineto -6.495232e+01 6.84293e+01 lineto -closepath -gsave -6.800656e-01 6.800656e-01 6.800656e-01 setrgbcolor -fill -grestore -newpath -6.495659e+01 7.155012e+01 moveto -6.495232e+01 6.84293e+01 lineto -6.732687e+01 6.853916e+01 lineto -6.71183e+01 7.165014e+01 lineto -6.495659e+01 7.155012e+01 lineto -closepath -gsave -6.651784e-01 6.651784e-01 6.651784e-01 setrgbcolor -fill -grestore -newpath -6.496119e+01 7.447752e+01 moveto -6.495659e+01 7.155012e+01 lineto -6.71183e+01 7.165014e+01 lineto -6.68937e+01 7.456693e+01 lineto -6.496119e+01 7.447752e+01 lineto -closepath -gsave -6.483585e-01 6.483585e-01 6.483585e-01 setrgbcolor -fill -grestore -newpath -6.496609e+01 7.718933e+01 moveto -6.496119e+01 7.447752e+01 lineto -6.68937e+01 7.456693e+01 lineto -6.665475e+01 7.726746e+01 lineto -6.496609e+01 7.718933e+01 lineto -closepath -gsave -6.300368e-01 6.300368e-01 6.300368e-01 setrgbcolor -fill -grestore -newpath -6.497124e+01 7.966503e+01 moveto -6.496609e+01 7.718933e+01 lineto -6.665475e+01 7.726746e+01 lineto -6.640329e+01 7.973128e+01 lineto -6.497124e+01 7.966503e+01 lineto -closepath -gsave -6.10665e-01 6.10665e-01 6.10665e-01 setrgbcolor -fill -grestore -newpath -6.497661e+01 8.188586e+01 moveto -6.497124e+01 7.966503e+01 lineto -6.640329e+01 7.973128e+01 lineto -6.614119e+01 8.193974e+01 lineto -6.497661e+01 8.188586e+01 lineto -closepath -gsave -5.906987e-01 5.906987e-01 5.906987e-01 setrgbcolor -fill -grestore -newpath -6.498216e+01 8.383502e+01 moveto -6.497661e+01 8.188586e+01 lineto -6.614119e+01 8.193974e+01 lineto -6.587046e+01 8.387612e+01 lineto -6.498216e+01 8.383502e+01 lineto -closepath -gsave -5.705808e-01 5.705808e-01 5.705808e-01 setrgbcolor -fill -grestore -newpath -6.498785e+01 8.549776e+01 moveto -6.498216e+01 8.383502e+01 lineto -6.587046e+01 8.387612e+01 lineto -6.559314e+01 8.552576e+01 lineto -6.498785e+01 8.549776e+01 lineto -closepath -gsave -5.507263e-01 5.507263e-01 5.507263e-01 setrgbcolor -fill -grestore -newpath -6.499362e+01 8.686148e+01 moveto -6.498785e+01 8.549776e+01 lineto -6.559314e+01 8.552576e+01 lineto -6.531133e+01 8.687618e+01 lineto -6.499362e+01 8.686148e+01 lineto -closepath -gsave -5.315088e-01 5.315088e-01 5.315088e-01 setrgbcolor -fill -grestore -newpath -6.499944e+01 8.791586e+01 moveto -6.499362e+01 8.686148e+01 lineto -6.531133e+01 8.687618e+01 lineto -6.502716e+01 8.791714e+01 lineto -6.499944e+01 8.791586e+01 lineto -closepath -gsave -5.1325e-01 5.1325e-01 5.1325e-01 setrgbcolor -fill -grestore -newpath -6.500527e+01 8.865292e+01 moveto -6.499944e+01 8.791586e+01 lineto -6.502716e+01 8.791714e+01 lineto -6.474279e+01 8.864077e+01 lineto -6.500527e+01 8.865292e+01 lineto -closepath -gsave -4.962123e-01 4.962123e-01 4.962123e-01 setrgbcolor -fill -grestore -newpath -6.502234e+01 8.891661e+01 moveto -6.501676e+01 8.91552e+01 lineto -6.418202e+01 8.911657e+01 lineto -6.390987e+01 8.886514e+01 lineto -6.502234e+01 8.891661e+01 lineto -closepath -gsave -4.461299e-01 4.461299e-01 4.461299e-01 setrgbcolor -fill -grestore -newpath -6.61157e+01 3.175865e+00 moveto -6.584425e+01 2.893343e+00 lineto -6.67006e+01 2.948803e+00 lineto -6.724738e+01 3.249157e+00 lineto -6.61157e+01 3.175865e+00 lineto -closepath -gsave -4.488648e-01 4.488648e-01 4.488648e-01 setrgbcolor -fill -grestore -newpath -6.63787e+01 3.782584e+00 moveto -6.61157e+01 3.175865e+00 lineto -6.724738e+01 3.249157e+00 lineto -6.777716e+01 3.873154e+00 lineto -6.63787e+01 3.782584e+00 lineto -closepath -gsave -4.611086e-01 4.611086e-01 4.611086e-01 setrgbcolor -fill -grestore -newpath -6.663127e+01 4.708908e+00 moveto -6.63787e+01 3.782584e+00 lineto -6.777716e+01 3.873154e+00 lineto -6.828591e+01 4.81607e+00 lineto -6.663127e+01 4.708908e+00 lineto -closepath -gsave -4.751391e-01 4.751391e-01 4.751391e-01 setrgbcolor -fill -grestore -newpath -6.687148e+01 5.947823e+00 moveto -6.663127e+01 4.708908e+00 lineto -6.828591e+01 4.81607e+00 lineto -6.876978e+01 6.070766e+00 lineto -6.687148e+01 5.947823e+00 lineto -closepath -gsave -4.909197e-01 4.909197e-01 4.909197e-01 setrgbcolor -fill -grestore -newpath -6.709753e+01 7.489951e+00 moveto -6.687148e+01 5.947823e+00 lineto -6.876978e+01 6.070766e+00 lineto -6.922511e+01 7.627743e+00 lineto -6.709753e+01 7.489951e+00 lineto -closepath -gsave -5.083456e-01 5.083456e-01 5.083456e-01 setrgbcolor -fill -grestore -newpath -6.73077e+01 9.323617e+00 moveto -6.709753e+01 7.489951e+00 lineto -6.922511e+01 7.627743e+00 lineto -6.964846e+01 9.475216e+00 lineto -6.73077e+01 9.323617e+00 lineto -closepath -gsave -5.272406e-01 5.272406e-01 5.272406e-01 setrgbcolor -fill -grestore -newpath -6.75004e+01 1.143494e+01 moveto -6.73077e+01 9.323617e+00 lineto -6.964846e+01 9.475216e+00 lineto -7.003662e+01 1.15992e+01 lineto -6.75004e+01 1.143494e+01 lineto -closepath -gsave -5.473566e-01 5.473566e-01 5.473566e-01 setrgbcolor -fill -grestore -newpath -6.767417e+01 1.380793e+01 moveto -6.75004e+01 1.143494e+01 lineto -7.003662e+01 1.15992e+01 lineto -7.038665e+01 1.398361e+01 lineto -6.767417e+01 1.380793e+01 lineto -closepath -gsave -5.683765e-01 5.683765e-01 5.683765e-01 setrgbcolor -fill -grestore -newpath -6.782769e+01 1.642464e+01 moveto -6.767417e+01 1.380793e+01 lineto -7.038665e+01 1.398361e+01 lineto -7.06959e+01 1.66104e+01 lineto -6.782769e+01 1.642464e+01 lineto -closepath -gsave -5.899208e-01 5.899208e-01 5.899208e-01 setrgbcolor -fill -grestore -newpath -6.795981e+01 1.926524e+01 moveto -6.782769e+01 1.642464e+01 lineto -7.06959e+01 1.66104e+01 lineto -7.096203e+01 1.945968e+01 lineto -6.795981e+01 1.926524e+01 lineto -closepath -gsave -6.115583e-01 6.115583e-01 6.115583e-01 setrgbcolor -fill -grestore -newpath -6.806952e+01 2.230824e+01 moveto -6.795981e+01 1.926524e+01 lineto -7.096203e+01 1.945968e+01 lineto -7.118302e+01 2.250988e+01 lineto -6.806952e+01 2.230824e+01 lineto -closepath -gsave -6.328184e-01 6.328184e-01 6.328184e-01 setrgbcolor -fill -grestore -newpath -6.8156e+01 2.553059e+01 moveto -6.806952e+01 2.230824e+01 lineto -7.118302e+01 2.250988e+01 lineto -7.135721e+01 2.573791e+01 lineto -6.8156e+01 2.553059e+01 lineto -closepath -gsave -6.532077e-01 6.532077e-01 6.532077e-01 setrgbcolor -fill -grestore -newpath -6.821858e+01 2.89079e+01 moveto -6.8156e+01 2.553059e+01 lineto -7.135721e+01 2.573791e+01 lineto -7.148327e+01 2.911934e+01 lineto -6.821858e+01 2.89079e+01 lineto -closepath -gsave -6.722269e-01 6.722269e-01 6.722269e-01 setrgbcolor -fill -grestore -newpath -6.825679e+01 3.241461e+01 moveto -6.821858e+01 2.89079e+01 lineto -7.148327e+01 2.911934e+01 lineto -7.156024e+01 3.262856e+01 lineto -6.825679e+01 3.241461e+01 lineto -closepath -gsave -6.893901e-01 6.893901e-01 6.893901e-01 setrgbcolor -fill -grestore -newpath -6.827035e+01 3.602417e+01 moveto -6.825679e+01 3.241461e+01 lineto -7.156024e+01 3.262856e+01 lineto -7.158756e+01 3.623901e+01 lineto -6.827035e+01 3.602417e+01 lineto -closepath -gsave -7.042433e-01 7.042433e-01 7.042433e-01 setrgbcolor -fill -grestore -newpath -6.825915e+01 3.970925e+01 moveto -6.827035e+01 3.602417e+01 lineto -7.158756e+01 3.623901e+01 lineto -7.1565e+01 3.992335e+01 lineto -6.825915e+01 3.970925e+01 lineto -closepath -gsave -7.163826e-01 7.163826e-01 7.163826e-01 setrgbcolor -fill -grestore -newpath -6.822328e+01 4.344195e+01 moveto -6.825915e+01 3.970925e+01 lineto -7.1565e+01 3.992335e+01 lineto -7.149274e+01 4.365369e+01 lineto -6.822328e+01 4.344195e+01 lineto -closepath -gsave -7.254708e-01 7.254708e-01 7.254708e-01 setrgbcolor -fill -grestore -newpath -6.816301e+01 4.719402e+01 moveto -6.822328e+01 4.344195e+01 lineto -7.149274e+01 4.365369e+01 lineto -7.137133e+01 4.74018e+01 lineto -6.816301e+01 4.719402e+01 lineto -closepath -gsave -7.312511e-01 7.312511e-01 7.312511e-01 setrgbcolor -fill -grestore -newpath -6.807879e+01 5.093705e+01 moveto -6.816301e+01 4.719402e+01 lineto -7.137133e+01 4.74018e+01 lineto -7.120169e+01 5.11393e+01 lineto -6.807879e+01 5.093705e+01 lineto -closepath -gsave -7.335583e-01 7.335583e-01 7.335583e-01 setrgbcolor -fill -grestore -newpath -6.797126e+01 5.46427e+01 moveto -6.807879e+01 5.093705e+01 lineto -7.120169e+01 5.11393e+01 lineto -7.09851e+01 5.483789e+01 lineto -6.797126e+01 5.46427e+01 lineto -closepath -gsave -7.323256e-01 7.323256e-01 7.323256e-01 setrgbcolor -fill -grestore -newpath -6.784124e+01 5.828292e+01 moveto -6.797126e+01 5.46427e+01 lineto -7.09851e+01 5.483789e+01 lineto -7.072319e+01 5.846957e+01 lineto -6.784124e+01 5.828292e+01 lineto -closepath -gsave -7.275874e-01 7.275874e-01 7.275874e-01 setrgbcolor -fill -grestore -newpath -6.768971e+01 6.183016e+01 moveto -6.784124e+01 5.828292e+01 lineto -7.072319e+01 5.846957e+01 lineto -7.041796e+01 6.200685e+01 lineto -6.768971e+01 6.183016e+01 lineto -closepath -gsave -7.194782e-01 7.194782e-01 7.194782e-01 setrgbcolor -fill -grestore -newpath -6.751782e+01 6.525756e+01 moveto -6.768971e+01 6.183016e+01 lineto -7.041796e+01 6.200685e+01 lineto -7.007172e+01 6.542296e+01 lineto -6.751782e+01 6.525756e+01 lineto -closepath -gsave -7.082269e-01 7.082269e-01 7.082269e-01 setrgbcolor -fill -grestore -newpath -6.732687e+01 6.853916e+01 moveto -6.751782e+01 6.525756e+01 lineto -7.007172e+01 6.542296e+01 lineto -6.968707e+01 6.869202e+01 lineto -6.732687e+01 6.853916e+01 lineto -closepath -gsave -6.941469e-01 6.941469e-01 6.941469e-01 setrgbcolor -fill -grestore -newpath -6.71183e+01 7.165014e+01 moveto -6.732687e+01 6.853916e+01 lineto -6.968707e+01 6.869202e+01 lineto -6.926695e+01 7.178929e+01 lineto -6.71183e+01 7.165014e+01 lineto -closepath -gsave -6.776239e-01 6.776239e-01 6.776239e-01 setrgbcolor -fill -grestore -newpath -6.68937e+01 7.456693e+01 moveto -6.71183e+01 7.165014e+01 lineto -6.926695e+01 7.178929e+01 lineto -6.881452e+01 7.469133e+01 lineto -6.68937e+01 7.456693e+01 lineto -closepath -gsave -6.590991e-01 6.590991e-01 6.590991e-01 setrgbcolor -fill -grestore -newpath -6.665475e+01 7.726746e+01 moveto -6.68937e+01 7.456693e+01 lineto -6.881452e+01 7.469133e+01 lineto -6.833322e+01 7.737617e+01 lineto -6.665475e+01 7.726746e+01 lineto -closepath -gsave -6.39052e-01 6.39052e-01 6.39052e-01 setrgbcolor -fill -grestore -newpath -6.640329e+01 7.973128e+01 moveto -6.665475e+01 7.726746e+01 lineto -6.833322e+01 7.737617e+01 lineto -6.782668e+01 7.982347e+01 lineto -6.640329e+01 7.973128e+01 lineto -closepath -gsave -6.179816e-01 6.179816e-01 6.179816e-01 setrgbcolor -fill -grestore -newpath -6.614119e+01 8.193974e+01 moveto -6.640329e+01 7.973128e+01 lineto -6.782668e+01 7.982347e+01 lineto -6.729874e+01 8.201471e+01 lineto -6.614119e+01 8.193974e+01 lineto -closepath -gsave -5.963868e-01 5.963868e-01 5.963868e-01 setrgbcolor -fill -grestore -newpath -6.587046e+01 8.387612e+01 moveto -6.614119e+01 8.193974e+01 lineto -6.729874e+01 8.201471e+01 lineto -6.67534e+01 8.39333e+01 lineto -6.587046e+01 8.387612e+01 lineto -closepath -gsave -5.747485e-01 5.747485e-01 5.747485e-01 setrgbcolor -fill -grestore -newpath -6.559314e+01 8.552576e+01 moveto -6.587046e+01 8.387612e+01 lineto -6.67534e+01 8.39333e+01 lineto -6.619478e+01 8.556473e+01 lineto -6.559314e+01 8.552576e+01 lineto -closepath -gsave -5.535131e-01 5.535131e-01 5.535131e-01 setrgbcolor -fill -grestore -newpath -6.531133e+01 8.687618e+01 moveto -6.559314e+01 8.552576e+01 lineto -6.619478e+01 8.556473e+01 lineto -6.562712e+01 8.689663e+01 lineto -6.531133e+01 8.687618e+01 lineto -closepath -gsave -5.330779e-01 5.330779e-01 5.330779e-01 setrgbcolor -fill -grestore -newpath -6.502716e+01 8.791714e+01 moveto -6.531133e+01 8.687618e+01 lineto -6.562712e+01 8.689663e+01 lineto -6.505472e+01 8.791892e+01 lineto -6.502716e+01 8.791714e+01 lineto -closepath -gsave -5.137803e-01 5.137803e-01 5.137803e-01 setrgbcolor -fill -grestore -newpath -6.474279e+01 8.864077e+01 moveto -6.502716e+01 8.791714e+01 lineto -6.505472e+01 8.791892e+01 lineto -6.448189e+01 8.862388e+01 lineto -6.474279e+01 8.864077e+01 lineto -closepath -gsave -4.958899e-01 4.958899e-01 4.958899e-01 setrgbcolor -fill -grestore -newpath -6.390987e+01 8.886514e+01 moveto -6.418202e+01 8.911657e+01 lineto -6.335233e+01 8.906284e+01 lineto -6.280413e+01 8.879353e+01 lineto -6.390987e+01 8.886514e+01 lineto -closepath -gsave -4.477893e-01 4.477893e-01 4.477893e-01 setrgbcolor -fill -grestore -newpath -6.724738e+01 3.249157e+00 moveto -6.67006e+01 2.948803e+00 lineto -6.754646e+01 3.019522e+00 lineto -6.836521e+01 3.342614e+00 lineto -6.724738e+01 3.249157e+00 lineto -closepath -gsave -4.504014e-01 4.504014e-01 4.504014e-01 setrgbcolor -fill -grestore -newpath -6.777716e+01 3.873154e+00 moveto -6.724738e+01 3.249157e+00 lineto -6.836521e+01 3.342614e+00 lineto -6.915849e+01 3.988641e+00 lineto -6.777716e+01 3.873154e+00 lineto -closepath -gsave -4.633828e-01 4.633828e-01 4.633828e-01 setrgbcolor -fill -grestore -newpath -6.828591e+01 4.81607e+00 moveto -6.777716e+01 3.873154e+00 lineto -6.915849e+01 3.988641e+00 lineto -6.992029e+01 4.952713e+00 lineto -6.828591e+01 4.81607e+00 lineto -closepath -gsave -4.782936e-01 4.782936e-01 4.782936e-01 setrgbcolor -fill -grestore -newpath -6.876978e+01 6.070766e+00 moveto -6.828591e+01 4.81607e+00 lineto -6.992029e+01 4.952713e+00 lineto -7.064483e+01 6.227531e+00 lineto -6.876978e+01 6.070766e+00 lineto -closepath -gsave -4.950931e-01 4.950931e-01 4.950931e-01 setrgbcolor -fill -grestore -newpath -6.922511e+01 7.627743e+00 moveto -6.876978e+01 6.070766e+00 lineto -7.064483e+01 6.227531e+00 lineto -7.132665e+01 7.803443e+00 lineto -6.922511e+01 7.627743e+00 lineto -closepath -gsave -5.136661e-01 5.136661e-01 5.136661e-01 setrgbcolor -fill -grestore -newpath -6.964846e+01 9.475216e+00 moveto -6.922511e+01 7.627743e+00 lineto -7.132665e+01 7.803443e+00 lineto -7.196057e+01 9.668521e+00 lineto -6.964846e+01 9.475216e+00 lineto -closepath -gsave -5.338189e-01 5.338189e-01 5.338189e-01 setrgbcolor -fill -grestore -newpath -7.003662e+01 1.15992e+01 moveto -6.964846e+01 9.475216e+00 lineto -7.196057e+01 9.668521e+00 lineto -7.254179e+01 1.180864e+01 lineto -7.003662e+01 1.15992e+01 lineto -closepath -gsave -5.552793e-01 5.552793e-01 5.552793e-01 setrgbcolor -fill -grestore -newpath -7.038665e+01 1.398361e+01 moveto -7.003662e+01 1.15992e+01 lineto -7.254179e+01 1.180864e+01 lineto -7.306592e+01 1.420761e+01 lineto -7.038665e+01 1.398361e+01 lineto -closepath -gsave -5.776999e-01 5.776999e-01 5.776999e-01 setrgbcolor -fill -grestore -newpath -7.06959e+01 1.66104e+01 moveto -7.038665e+01 1.398361e+01 lineto -7.306592e+01 1.420761e+01 lineto -7.352899e+01 1.684726e+01 lineto -7.06959e+01 1.66104e+01 lineto -closepath -gsave -6.00666e-01 6.00666e-01 6.00666e-01 setrgbcolor -fill -grestore -newpath -7.096203e+01 1.945968e+01 moveto -7.06959e+01 1.66104e+01 lineto -7.352899e+01 1.684726e+01 lineto -7.392749e+01 1.970761e+01 lineto -7.096203e+01 1.945968e+01 lineto -closepath -gsave -6.237068e-01 6.237068e-01 6.237068e-01 setrgbcolor -fill -grestore -newpath -7.118302e+01 2.250988e+01 moveto -7.096203e+01 1.945968e+01 lineto -7.392749e+01 1.970761e+01 lineto -7.42584e+01 2.2767e+01 lineto -7.118302e+01 2.250988e+01 lineto -closepath -gsave -6.463105e-01 6.463105e-01 6.463105e-01 setrgbcolor -fill -grestore -newpath -7.135721e+01 2.573791e+01 moveto -7.118302e+01 2.250988e+01 lineto -7.42584e+01 2.2767e+01 lineto -7.451923e+01 2.600228e+01 lineto -7.135721e+01 2.573791e+01 lineto -closepath -gsave -6.679411e-01 6.679411e-01 6.679411e-01 setrgbcolor -fill -grestore -newpath -7.148327e+01 2.911934e+01 moveto -7.135721e+01 2.573791e+01 lineto -7.451923e+01 2.600228e+01 lineto -7.470798e+01 2.938894e+01 lineto -7.148327e+01 2.911934e+01 lineto -closepath -gsave -6.880587e-01 6.880587e-01 6.880587e-01 setrgbcolor -fill -grestore -newpath -7.156024e+01 3.262856e+01 moveto -7.148327e+01 2.911934e+01 lineto -7.470798e+01 2.938894e+01 lineto -7.482325e+01 3.290136e+01 lineto -7.156024e+01 3.262856e+01 lineto -closepath -gsave -7.061394e-01 7.061394e-01 7.061394e-01 setrgbcolor -fill -grestore -newpath -7.158756e+01 3.623901e+01 moveto -7.156024e+01 3.262856e+01 lineto -7.482325e+01 3.290136e+01 lineto -7.486415e+01 3.651295e+01 lineto -7.158756e+01 3.623901e+01 lineto -closepath -gsave -7.216963e-01 7.216963e-01 7.216963e-01 setrgbcolor -fill -grestore -newpath -7.1565e+01 3.992335e+01 moveto -7.158756e+01 3.623901e+01 lineto -7.486415e+01 3.651295e+01 lineto -7.483037e+01 4.019635e+01 lineto -7.1565e+01 3.992335e+01 lineto -closepath -gsave -7.342991e-01 7.342991e-01 7.342991e-01 setrgbcolor -fill -grestore -newpath -7.149274e+01 4.365369e+01 moveto -7.1565e+01 3.992335e+01 lineto -7.483037e+01 4.019635e+01 lineto -7.472217e+01 4.392369e+01 lineto -7.149274e+01 4.365369e+01 lineto -closepath -gsave -7.435918e-01 7.435918e-01 7.435918e-01 setrgbcolor -fill -grestore -newpath -7.137133e+01 4.74018e+01 moveto -7.149274e+01 4.365369e+01 lineto -7.472217e+01 4.392369e+01 lineto -7.454038e+01 4.766675e+01 lineto -7.137133e+01 4.74018e+01 lineto -closepath -gsave -7.493078e-01 7.493078e-01 7.493078e-01 setrgbcolor -fill -grestore -newpath -7.120169e+01 5.11393e+01 moveto -7.137133e+01 4.74018e+01 lineto -7.454038e+01 4.766675e+01 lineto -7.428635e+01 5.139719e+01 lineto -7.120169e+01 5.11393e+01 lineto -closepath -gsave -7.512811e-01 7.512811e-01 7.512811e-01 setrgbcolor -fill -grestore -newpath -7.09851e+01 5.483789e+01 moveto -7.120169e+01 5.11393e+01 lineto -7.428635e+01 5.139719e+01 lineto -7.396203e+01 5.508678e+01 lineto -7.09851e+01 5.483789e+01 lineto -closepath -gsave -7.494536e-01 7.494536e-01 7.494536e-01 setrgbcolor -fill -grestore -newpath -7.072319e+01 5.846957e+01 moveto -7.09851e+01 5.483789e+01 lineto -7.396203e+01 5.508678e+01 lineto -7.356986e+01 5.870757e+01 lineto -7.072319e+01 5.846957e+01 lineto -closepath -gsave -7.438775e-01 7.438775e-01 7.438775e-01 setrgbcolor -fill -grestore -newpath -7.041796e+01 6.200685e+01 moveto -7.072319e+01 5.846957e+01 lineto -7.356986e+01 5.870757e+01 lineto -7.311281e+01 6.223216e+01 lineto -7.041796e+01 6.200685e+01 lineto -closepath -gsave -7.347132e-01 7.347132e-01 7.347132e-01 setrgbcolor -fill -grestore -newpath -7.007172e+01 6.542296e+01 moveto -7.041796e+01 6.200685e+01 lineto -7.311281e+01 6.223216e+01 lineto -7.259434e+01 6.563386e+01 lineto -7.007172e+01 6.542296e+01 lineto -closepath -gsave -7.222228e-01 7.222228e-01 7.222228e-01 setrgbcolor -fill -grestore -newpath -6.968707e+01 6.869202e+01 moveto -7.007172e+01 6.542296e+01 lineto -7.259434e+01 6.563386e+01 lineto -7.201838e+01 6.888693e+01 lineto -6.968707e+01 6.869202e+01 lineto -closepath -gsave -7.067586e-01 7.067586e-01 7.067586e-01 setrgbcolor -fill -grestore -newpath -6.926695e+01 7.178929e+01 moveto -6.968707e+01 6.869202e+01 lineto -7.201838e+01 6.888693e+01 lineto -7.138929e+01 7.196673e+01 lineto -6.926695e+01 7.178929e+01 lineto -closepath -gsave -6.887487e-01 6.887487e-01 6.887487e-01 setrgbcolor -fill -grestore -newpath -6.881452e+01 7.469133e+01 moveto -6.926695e+01 7.178929e+01 lineto -7.138929e+01 7.196673e+01 lineto -7.071183e+01 7.484996e+01 lineto -6.881452e+01 7.469133e+01 lineto -closepath -gsave -6.68679e-01 6.68679e-01 6.68679e-01 setrgbcolor -fill -grestore -newpath -6.833322e+01 7.737617e+01 moveto -6.881452e+01 7.469133e+01 lineto -7.071183e+01 7.484996e+01 lineto -6.999113e+01 7.751478e+01 lineto -6.833322e+01 7.737617e+01 lineto -closepath -gsave -6.470738e-01 6.470738e-01 6.470738e-01 setrgbcolor -fill -grestore -newpath -6.782668e+01 7.982347e+01 moveto -6.833322e+01 7.737617e+01 lineto -6.999113e+01 7.751478e+01 lineto -6.923264e+01 7.994101e+01 lineto -6.782668e+01 7.982347e+01 lineto -closepath -gsave -6.244747e-01 6.244747e-01 6.244747e-01 setrgbcolor -fill -grestore -newpath -6.729874e+01 8.201471e+01 moveto -6.782668e+01 7.982347e+01 lineto -6.923264e+01 7.994101e+01 lineto -6.844211e+01 8.21103e+01 lineto -6.729874e+01 8.201471e+01 lineto -closepath -gsave -6.014199e-01 6.014199e-01 6.014199e-01 setrgbcolor -fill -grestore -newpath -6.67534e+01 8.39333e+01 moveto -6.729874e+01 8.201471e+01 lineto -6.844211e+01 8.21103e+01 lineto -6.762552e+01 8.400622e+01 lineto -6.67534e+01 8.39333e+01 lineto -closepath -gsave -5.784244e-01 5.784244e-01 5.784244e-01 setrgbcolor -fill -grestore -newpath -6.619478e+01 8.556473e+01 moveto -6.67534e+01 8.39333e+01 lineto -6.762552e+01 8.400622e+01 lineto -6.678906e+01 8.561441e+01 lineto -6.619478e+01 8.556473e+01 lineto -closepath -gsave -5.559622e-01 5.559622e-01 5.559622e-01 setrgbcolor -fill -grestore -newpath -6.562712e+01 8.689663e+01 moveto -6.619478e+01 8.556473e+01 lineto -6.678906e+01 8.561441e+01 lineto -6.593905e+01 8.692271e+01 lineto -6.562712e+01 8.689663e+01 lineto -closepath -gsave -5.344514e-01 5.344514e-01 5.344514e-01 setrgbcolor -fill -grestore -newpath -6.505472e+01 8.791892e+01 moveto -6.562712e+01 8.689663e+01 lineto -6.593905e+01 8.692271e+01 lineto -6.508193e+01 8.79212e+01 lineto -6.505472e+01 8.791892e+01 lineto -closepath -gsave -5.142424e-01 5.142424e-01 5.142424e-01 setrgbcolor -fill -grestore -newpath -6.448189e+01 8.862388e+01 moveto -6.505472e+01 8.791892e+01 lineto -6.508193e+01 8.79212e+01 lineto -6.422419e+01 8.860233e+01 lineto -6.448189e+01 8.862388e+01 lineto -closepath -gsave -4.956103e-01 4.956103e-01 4.956103e-01 setrgbcolor -fill -grestore -newpath -6.280413e+01 8.879353e+01 moveto -6.335233e+01 8.906284e+01 lineto -6.253279e+01 8.899432e+01 lineto -6.171192e+01 8.870221e+01 lineto -6.280413e+01 8.879353e+01 lineto -closepath -gsave -4.49263e-01 4.49263e-01 4.49263e-01 setrgbcolor -fill -grestore -newpath -6.836521e+01 3.342614e+00 moveto -6.754646e+01 3.019522e+00 lineto -6.837662e+01 3.105063e+00 lineto -6.946229e+01 3.455659e+00 lineto -6.836521e+01 3.342614e+00 lineto -closepath -gsave -4.517215e-01 4.517215e-01 4.517215e-01 setrgbcolor -fill -grestore -newpath -6.915849e+01 3.988641e+00 moveto -6.836521e+01 3.342614e+00 lineto -6.946229e+01 3.455659e+00 lineto -7.051418e+01 4.128334e+00 lineto -6.915849e+01 3.988641e+00 lineto -closepath -gsave -4.653432e-01 4.653432e-01 4.653432e-01 setrgbcolor -fill -grestore -newpath -6.992029e+01 4.952713e+00 moveto -6.915849e+01 3.988641e+00 lineto -7.051418e+01 4.128334e+00 lineto -7.152433e+01 5.117996e+00 lineto -6.992029e+01 4.952713e+00 lineto -closepath -gsave -4.810202e-01 4.810202e-01 4.810202e-01 setrgbcolor -fill -grestore -newpath -7.064483e+01 6.227531e+00 moveto -6.992029e+01 4.952713e+00 lineto -7.152433e+01 5.117996e+00 lineto -7.248509e+01 6.417152e+00 lineto -7.064483e+01 6.227531e+00 lineto -closepath -gsave -4.987086e-01 4.987086e-01 4.987086e-01 setrgbcolor -fill -grestore -newpath -7.132665e+01 7.803443e+00 moveto -7.064483e+01 6.227531e+00 lineto -7.248509e+01 6.417152e+00 lineto -7.338918e+01 8.015969e+00 lineto -7.132665e+01 7.803443e+00 lineto -closepath -gsave -5.182839e-01 5.182839e-01 5.182839e-01 setrgbcolor -fill -grestore -newpath -7.196057e+01 9.668521e+00 moveto -7.132665e+01 7.803443e+00 lineto -7.338918e+01 8.015969e+00 lineto -7.422976e+01 9.902341e+00 lineto -7.196057e+01 9.668521e+00 lineto -closepath -gsave -5.39537e-01 5.39537e-01 5.39537e-01 setrgbcolor -fill -grestore -newpath -7.254179e+01 1.180864e+01 moveto -7.196057e+01 9.668521e+00 lineto -7.422976e+01 9.902341e+00 lineto -7.500046e+01 1.206199e+01 lineto -7.254179e+01 1.180864e+01 lineto -closepath -gsave -5.621741e-01 5.621741e-01 5.621741e-01 setrgbcolor -fill -grestore -newpath -7.306592e+01 1.420761e+01 moveto -7.254179e+01 1.180864e+01 lineto -7.500046e+01 1.206199e+01 lineto -7.569546e+01 1.447856e+01 lineto -7.306592e+01 1.420761e+01 lineto -closepath -gsave -5.858212e-01 5.858212e-01 5.858212e-01 setrgbcolor -fill -grestore -newpath -7.352899e+01 1.684726e+01 moveto -7.306592e+01 1.420761e+01 lineto -7.569546e+01 1.447856e+01 lineto -7.630949e+01 1.713376e+01 lineto -7.352899e+01 1.684726e+01 lineto -closepath -gsave -6.100321e-01 6.100321e-01 6.100321e-01 setrgbcolor -fill -grestore -newpath -7.392749e+01 1.970761e+01 moveto -7.352899e+01 1.684726e+01 lineto -7.630949e+01 1.713376e+01 lineto -7.683791e+01 2.00075e+01 lineto -7.392749e+01 1.970761e+01 lineto -closepath -gsave -6.343014e-01 6.343014e-01 6.343014e-01 setrgbcolor -fill -grestore -newpath -7.42584e+01 2.2767e+01 moveto -7.392749e+01 1.970761e+01 lineto -7.683791e+01 2.00075e+01 lineto -7.72767e+01 2.307801e+01 lineto -7.42584e+01 2.2767e+01 lineto -closepath -gsave -6.580802e-01 6.580802e-01 6.580802e-01 setrgbcolor -fill -grestore -newpath -7.451923e+01 2.600228e+01 moveto -7.42584e+01 2.2767e+01 lineto -7.72767e+01 2.307801e+01 lineto -7.762255e+01 2.632205e+01 lineto -7.451923e+01 2.600228e+01 lineto -closepath -gsave -6.807956e-01 6.807956e-01 6.807956e-01 setrgbcolor -fill -grestore -newpath -7.470798e+01 2.938894e+01 moveto -7.451923e+01 2.600228e+01 lineto -7.762255e+01 2.632205e+01 lineto -7.787285e+01 2.971505e+01 lineto -7.470798e+01 2.938894e+01 lineto -closepath -gsave -7.018712e-01 7.018712e-01 7.018712e-01 setrgbcolor -fill -grestore -newpath -7.482325e+01 3.290136e+01 moveto -7.470798e+01 2.938894e+01 lineto -7.787285e+01 2.971505e+01 lineto -7.802569e+01 3.323135e+01 lineto -7.482325e+01 3.290136e+01 lineto -closepath -gsave -7.2075e-01 7.2075e-01 7.2075e-01 setrgbcolor -fill -grestore -newpath -7.486415e+01 3.651295e+01 moveto -7.482325e+01 3.290136e+01 lineto -7.802569e+01 3.323135e+01 lineto -7.807992e+01 3.684431e+01 lineto -7.486415e+01 3.651295e+01 lineto -closepath -gsave -7.369164e-01 7.369164e-01 7.369164e-01 setrgbcolor -fill -grestore -newpath -7.483037e+01 4.019635e+01 moveto -7.486415e+01 3.651295e+01 lineto -7.807992e+01 3.684431e+01 lineto -7.803514e+01 4.052658e+01 lineto -7.483037e+01 4.019635e+01 lineto -closepath -gsave -7.499167e-01 7.499167e-01 7.499167e-01 setrgbcolor -fill -grestore -newpath -7.472217e+01 4.392369e+01 moveto -7.483037e+01 4.019635e+01 lineto -7.803514e+01 4.052658e+01 lineto -7.789167e+01 4.425028e+01 lineto -7.472217e+01 4.392369e+01 lineto -closepath -gsave -7.593791e-01 7.593791e-01 7.593791e-01 setrgbcolor -fill -grestore -newpath -7.454038e+01 4.766675e+01 moveto -7.472217e+01 4.392369e+01 lineto -7.789167e+01 4.425028e+01 lineto -7.76506e+01 4.798723e+01 lineto -7.454038e+01 4.766675e+01 lineto -closepath -gsave -7.650286e-01 7.650286e-01 7.650286e-01 setrgbcolor -fill -grestore -newpath -7.428635e+01 5.139719e+01 moveto -7.454038e+01 4.766675e+01 lineto -7.76506e+01 4.798723e+01 lineto -7.731376e+01 5.170914e+01 lineto -7.428635e+01 5.139719e+01 lineto -closepath -gsave -7.66699e-01 7.66699e-01 7.66699e-01 setrgbcolor -fill -grestore -newpath -7.396203e+01 5.508678e+01 moveto -7.428635e+01 5.139719e+01 lineto -7.731376e+01 5.170914e+01 lineto -7.688371e+01 5.538783e+01 lineto -7.396203e+01 5.508678e+01 lineto -closepath -gsave -7.643404e-01 7.643404e-01 7.643404e-01 setrgbcolor -fill -grestore -newpath -7.356986e+01 5.870757e+01 moveto -7.396203e+01 5.508678e+01 lineto -7.688371e+01 5.538783e+01 lineto -7.636369e+01 5.899545e+01 lineto -7.356986e+01 5.870757e+01 lineto -closepath -gsave -7.580212e-01 7.580212e-01 7.580212e-01 setrgbcolor -fill -grestore -newpath -7.311281e+01 6.223216e+01 moveto -7.356986e+01 5.870757e+01 lineto -7.636369e+01 5.899545e+01 lineto -7.575764e+01 6.250468e+01 lineto -7.311281e+01 6.223216e+01 lineto -closepath -gsave -7.479254e-01 7.479254e-01 7.479254e-01 setrgbcolor -fill -grestore -newpath -7.259434e+01 6.563386e+01 moveto -7.311281e+01 6.223216e+01 lineto -7.575764e+01 6.250468e+01 lineto -7.507015e+01 6.588897e+01 lineto -7.259434e+01 6.563386e+01 lineto -closepath -gsave -7.343444e-01 7.343444e-01 7.343444e-01 setrgbcolor -fill -grestore -newpath -7.201838e+01 6.888693e+01 moveto -7.259434e+01 6.563386e+01 lineto -7.507015e+01 6.588897e+01 lineto -7.430642e+01 6.912269e+01 lineto -7.201838e+01 6.888693e+01 lineto -closepath -gsave -7.176653e-01 7.176653e-01 7.176653e-01 setrgbcolor -fill -grestore -newpath -7.138929e+01 7.196673e+01 moveto -7.201838e+01 6.888693e+01 lineto -7.430642e+01 6.912269e+01 lineto -7.347224e+01 7.218136e+01 lineto -7.138929e+01 7.196673e+01 lineto -closepath -gsave -6.983538e-01 6.983538e-01 6.983538e-01 setrgbcolor -fill -grestore -newpath -7.071183e+01 7.484996e+01 moveto -7.138929e+01 7.196673e+01 lineto -7.347224e+01 7.218136e+01 lineto -7.257392e+01 7.504183e+01 lineto -7.071183e+01 7.484996e+01 lineto -closepath -gsave -6.769354e-01 6.769354e-01 6.769354e-01 setrgbcolor -fill -grestore -newpath -6.999113e+01 7.751478e+01 moveto -7.071183e+01 7.484996e+01 lineto -7.257392e+01 7.504183e+01 lineto -7.161827e+01 7.768244e+01 lineto -6.999113e+01 7.751478e+01 lineto -closepath -gsave -6.539735e-01 6.539735e-01 6.539735e-01 setrgbcolor -fill -grestore -newpath -6.923264e+01 7.994101e+01 moveto -6.999113e+01 7.751478e+01 lineto -7.161827e+01 7.768244e+01 lineto -7.061251e+01 8.00832e+01 lineto -6.923264e+01 7.994101e+01 lineto -closepath -gsave -6.300472e-01 6.300472e-01 6.300472e-01 setrgbcolor -fill -grestore -newpath -6.844211e+01 8.21103e+01 moveto -6.923264e+01 7.994101e+01 lineto -7.061251e+01 8.00832e+01 lineto -6.956426e+01 8.222593e+01 lineto -6.844211e+01 8.21103e+01 lineto -closepath -gsave -6.057287e-01 6.057287e-01 6.057287e-01 setrgbcolor -fill -grestore -newpath -6.762552e+01 8.400622e+01 moveto -6.844211e+01 8.21103e+01 lineto -6.956426e+01 8.222593e+01 lineto -6.848146e+01 8.409442e+01 lineto -6.762552e+01 8.400622e+01 lineto -closepath -gsave -5.815627e-01 5.815627e-01 5.815627e-01 setrgbcolor -fill -grestore -newpath -6.678906e+01 8.561441e+01 moveto -6.762552e+01 8.400622e+01 lineto -6.848146e+01 8.409442e+01 lineto -6.73723e+01 8.567451e+01 lineto -6.678906e+01 8.561441e+01 lineto -closepath -gsave -5.580468e-01 5.580468e-01 5.580468e-01 setrgbcolor -fill -grestore -newpath -6.593905e+01 8.692271e+01 moveto -6.678906e+01 8.561441e+01 lineto -6.73723e+01 8.567451e+01 lineto -6.624519e+01 8.695425e+01 lineto -6.593905e+01 8.692271e+01 lineto -closepath -gsave -5.356165e-01 5.356165e-01 5.356165e-01 setrgbcolor -fill -grestore -newpath -6.508193e+01 8.79212e+01 moveto -6.593905e+01 8.692271e+01 lineto -6.624519e+01 8.695425e+01 lineto -6.510864e+01 8.792395e+01 lineto -6.508193e+01 8.79212e+01 lineto -closepath -gsave -5.146329e-01 5.146329e-01 5.146329e-01 setrgbcolor -fill -grestore -newpath -6.422419e+01 8.860233e+01 moveto -6.508193e+01 8.79212e+01 lineto -6.510864e+01 8.792395e+01 lineto -6.397128e+01 8.857627e+01 lineto -6.422419e+01 8.860233e+01 lineto -closepath -gsave -4.953751e-01 4.953751e-01 4.953751e-01 setrgbcolor -fill -grestore -newpath -6.171192e+01 8.870221e+01 moveto -6.253279e+01 8.899432e+01 lineto -6.172846e+01 8.891144e+01 lineto -6.063999e+01 8.859176e+01 lineto -6.171192e+01 8.870221e+01 lineto -closepath -gsave -4.505285e-01 4.505285e-01 4.505285e-01 setrgbcolor -fill -grestore -newpath -6.946229e+01 3.455659e+00 moveto -6.837662e+01 3.105063e+00 lineto -6.918596e+01 3.204898e+00 lineto -7.053186e+01 3.587594e+00 lineto -6.946229e+01 3.455659e+00 lineto -closepath -gsave -4.528042e-01 4.528042e-01 4.528042e-01 setrgbcolor -fill -grestore -newpath -7.051418e+01 4.128334e+00 moveto -6.946229e+01 3.455659e+00 lineto -7.053186e+01 3.587594e+00 lineto -7.183588e+01 4.29137e+00 lineto -7.051418e+01 4.128334e+00 lineto -closepath -gsave -4.669553e-01 4.669553e-01 4.669553e-01 setrgbcolor -fill -grestore -newpath -7.152433e+01 5.117996e+00 moveto -7.051418e+01 4.128334e+00 lineto -7.183588e+01 4.29137e+00 lineto -7.308815e+01 5.310898e+00 lineto -7.152433e+01 5.117996e+00 lineto -closepath -gsave -4.832675e-01 4.832675e-01 4.832675e-01 setrgbcolor -fill -grestore -newpath -7.248509e+01 6.417152e+00 moveto -7.152433e+01 5.117996e+00 lineto -7.308815e+01 5.310898e+00 lineto -7.427919e+01 6.638461e+00 lineto -7.248509e+01 6.417152e+00 lineto -closepath -gsave -5.016942e-01 5.016942e-01 5.016942e-01 setrgbcolor -fill -grestore -newpath -7.338918e+01 8.015969e+00 moveto -7.248509e+01 6.417152e+00 lineto -7.427919e+01 6.638461e+00 lineto -7.539998e+01 8.264008e+00 lineto -7.338918e+01 8.015969e+00 lineto -closepath -gsave -5.221028e-01 5.221028e-01 5.221028e-01 setrgbcolor -fill -grestore -newpath -7.422976e+01 9.902341e+00 moveto -7.338918e+01 8.015969e+00 lineto -7.539998e+01 8.264008e+00 lineto -7.644204e+01 1.017523e+01 lineto -7.422976e+01 9.902341e+00 lineto -closepath -gsave -5.442715e-01 5.442715e-01 5.442715e-01 setrgbcolor -fill -grestore -newpath -7.500046e+01 1.206199e+01 moveto -7.422976e+01 9.902341e+00 lineto -7.644204e+01 1.017523e+01 lineto -7.739748e+01 1.235767e+01 lineto -7.500046e+01 1.206199e+01 lineto -closepath -gsave -5.678884e-01 5.678884e-01 5.678884e-01 setrgbcolor -fill -grestore -newpath -7.569546e+01 1.447856e+01 moveto -7.500046e+01 1.206199e+01 lineto -7.739748e+01 1.235767e+01 lineto -7.825907e+01 1.479479e+01 lineto -7.569546e+01 1.447856e+01 lineto -closepath -gsave -5.925569e-01 5.925569e-01 5.925569e-01 setrgbcolor -fill -grestore -newpath -7.630949e+01 1.713376e+01 moveto -7.569546e+01 1.447856e+01 lineto -7.825907e+01 1.479479e+01 lineto -7.902027e+01 1.746815e+01 lineto -7.630949e+01 1.713376e+01 lineto -closepath -gsave -6.178045e-01 6.178045e-01 6.178045e-01 setrgbcolor -fill -grestore -newpath -7.683791e+01 2.00075e+01 moveto -7.630949e+01 1.713376e+01 lineto -7.902027e+01 1.746815e+01 lineto -7.967534e+01 2.035751e+01 lineto -7.683791e+01 2.00075e+01 lineto -closepath -gsave -6.430966e-01 6.430966e-01 6.430966e-01 setrgbcolor -fill -grestore -newpath -7.72767e+01 2.307801e+01 moveto -7.683791e+01 2.00075e+01 lineto -7.967534e+01 2.035751e+01 lineto -8.021931e+01 2.344099e+01 lineto -7.72767e+01 2.307801e+01 lineto -closepath -gsave -6.678534e-01 6.678534e-01 6.678534e-01 setrgbcolor -fill -grestore -newpath -7.762255e+01 2.632205e+01 moveto -7.72767e+01 2.307801e+01 lineto -8.021931e+01 2.344099e+01 lineto -8.064806e+01 2.669525e+01 lineto -7.762255e+01 2.632205e+01 lineto -closepath -gsave -6.914705e-01 6.914705e-01 6.914705e-01 setrgbcolor -fill -grestore -newpath -7.787285e+01 2.971505e+01 moveto -7.762255e+01 2.632205e+01 lineto -8.064806e+01 2.669525e+01 lineto -8.095835e+01 3.009566e+01 lineto -7.787285e+01 2.971505e+01 lineto -closepath -gsave -7.133416e-01 7.133416e-01 7.133416e-01 setrgbcolor -fill -grestore -newpath -7.802569e+01 3.323135e+01 moveto -7.787285e+01 2.971505e+01 lineto -8.095835e+01 3.009566e+01 lineto -8.114783e+01 3.361647e+01 lineto -7.802569e+01 3.323135e+01 lineto -closepath -gsave -7.328817e-01 7.328817e-01 7.328817e-01 setrgbcolor -fill -grestore -newpath -7.807992e+01 3.684431e+01 moveto -7.802569e+01 3.323135e+01 lineto -8.114783e+01 3.361647e+01 lineto -8.121506e+01 3.723103e+01 lineto -7.807992e+01 3.684431e+01 lineto -closepath -gsave -7.495511e-01 7.495511e-01 7.495511e-01 setrgbcolor -fill -grestore -newpath -7.803514e+01 4.052658e+01 moveto -7.807992e+01 3.684431e+01 lineto -8.121506e+01 3.723103e+01 lineto -8.115953e+01 4.091198e+01 lineto -7.803514e+01 4.052658e+01 lineto -closepath -gsave -7.628772e-01 7.628772e-01 7.628772e-01 setrgbcolor -fill -grestore -newpath -7.789167e+01 4.425028e+01 moveto -7.803514e+01 4.052658e+01 lineto -8.115953e+01 4.091198e+01 lineto -8.098168e+01 4.463145e+01 lineto -7.789167e+01 4.425028e+01 lineto -closepath -gsave -7.724747e-01 7.724747e-01 7.724747e-01 setrgbcolor -fill -grestore -newpath -7.76506e+01 4.798723e+01 moveto -7.789167e+01 4.425028e+01 lineto -8.098168e+01 4.463145e+01 lineto -8.068283e+01 4.836127e+01 lineto -7.76506e+01 4.798723e+01 lineto -closepath -gsave -7.780619e-01 7.780619e-01 7.780619e-01 setrgbcolor -fill -grestore -newpath -7.731376e+01 5.170914e+01 moveto -7.76506e+01 4.798723e+01 lineto -8.068283e+01 4.836127e+01 lineto -8.026526e+01 5.207322e+01 lineto -7.731376e+01 5.170914e+01 lineto -closepath -gsave -7.794731e-01 7.794731e-01 7.794731e-01 setrgbcolor -fill -grestore -newpath -7.688371e+01 5.538783e+01 moveto -7.731376e+01 5.170914e+01 lineto -8.026526e+01 5.207322e+01 lineto -7.973212e+01 5.573919e+01 lineto -7.688371e+01 5.538783e+01 lineto -closepath -gsave -7.766654e-01 7.766654e-01 7.766654e-01 setrgbcolor -fill -grestore -newpath -7.636369e+01 5.899545e+01 moveto -7.688371e+01 5.538783e+01 lineto -7.973212e+01 5.573919e+01 lineto -7.908745e+01 5.933143e+01 lineto -7.636369e+01 5.899545e+01 lineto -closepath -gsave -7.697212e-01 7.697212e-01 7.697212e-01 setrgbcolor -fill -grestore -newpath -7.575764e+01 6.250468e+01 moveto -7.636369e+01 5.899545e+01 lineto -7.908745e+01 5.933143e+01 lineto -7.833614e+01 6.282275e+01 lineto -7.575764e+01 6.250468e+01 lineto -closepath -gsave -7.588444e-01 7.588444e-01 7.588444e-01 setrgbcolor -fill -grestore -newpath -7.507015e+01 6.588897e+01 moveto -7.575764e+01 6.250468e+01 lineto -7.833614e+01 6.282275e+01 lineto -7.748386e+01 6.618671e+01 lineto -7.507015e+01 6.588897e+01 lineto -closepath -gsave -7.443516e-01 7.443516e-01 7.443516e-01 setrgbcolor -fill -grestore -newpath -7.430642e+01 6.912269e+01 moveto -7.507015e+01 6.588897e+01 lineto -7.748386e+01 6.618671e+01 lineto -7.653708e+01 6.939785e+01 lineto -7.430642e+01 6.912269e+01 lineto -closepath -gsave -7.266588e-01 7.266588e-01 7.266588e-01 setrgbcolor -fill -grestore -newpath -7.347224e+01 7.218136e+01 moveto -7.430642e+01 6.912269e+01 lineto -7.653708e+01 6.939785e+01 lineto -7.550296e+01 7.243186e+01 lineto -7.347224e+01 7.218136e+01 lineto -closepath -gsave -7.062636e-01 7.062636e-01 7.062636e-01 setrgbcolor -fill -grestore -newpath -7.257392e+01 7.504183e+01 moveto -7.347224e+01 7.218136e+01 lineto -7.550296e+01 7.243186e+01 lineto -7.438932e+01 7.526577e+01 lineto -7.257392e+01 7.504183e+01 lineto -closepath -gsave -6.837245e-01 6.837245e-01 6.837245e-01 setrgbcolor -fill -grestore -newpath -7.161827e+01 7.768244e+01 moveto -7.257392e+01 7.504183e+01 lineto -7.438932e+01 7.526577e+01 lineto -7.32046e+01 7.787812e+01 lineto -7.161827e+01 7.768244e+01 lineto -closepath -gsave -6.596378e-01 6.596378e-01 6.596378e-01 setrgbcolor -fill -grestore -newpath -7.061251e+01 8.00832e+01 moveto -7.161827e+01 7.768244e+01 lineto -7.32046e+01 7.787812e+01 lineto -7.195777e+01 8.024914e+01 lineto -7.061251e+01 8.00832e+01 lineto -closepath -gsave -6.346136e-01 6.346136e-01 6.346136e-01 setrgbcolor -fill -grestore -newpath -6.956426e+01 8.222593e+01 moveto -7.061251e+01 8.00832e+01 lineto -7.195777e+01 8.024914e+01 lineto -7.065827e+01 8.236088e+01 lineto -6.956426e+01 8.222593e+01 lineto -closepath -gsave -6.092526e-01 6.092526e-01 6.092526e-01 setrgbcolor -fill -grestore -newpath -6.848146e+01 8.409442e+01 moveto -6.956426e+01 8.222593e+01 lineto -7.065827e+01 8.236088e+01 lineto -6.931593e+01 8.419735e+01 lineto -6.848146e+01 8.409442e+01 lineto -closepath -gsave -5.841235e-01 5.841235e-01 5.841235e-01 setrgbcolor -fill -grestore -newpath -6.73723e+01 8.567451e+01 moveto -6.848146e+01 8.409442e+01 lineto -6.931593e+01 8.419735e+01 lineto -6.794092e+01 8.574465e+01 lineto -6.73723e+01 8.567451e+01 lineto -closepath -gsave -5.597435e-01 5.597435e-01 5.597435e-01 setrgbcolor -fill -grestore -newpath -6.624519e+01 8.695425e+01 moveto -6.73723e+01 8.567451e+01 lineto -6.794092e+01 8.574465e+01 lineto -6.654364e+01 8.699107e+01 lineto -6.624519e+01 8.695425e+01 lineto -closepath -gsave -5.365621e-01 5.365621e-01 5.365621e-01 setrgbcolor -fill -grestore -newpath -6.510864e+01 8.792395e+01 moveto -6.624519e+01 8.695425e+01 lineto -6.654364e+01 8.699107e+01 lineto -6.513468e+01 8.792716e+01 lineto -6.510864e+01 8.792395e+01 lineto -closepath -gsave -5.149488e-01 5.149488e-01 5.149488e-01 setrgbcolor -fill -grestore -newpath -6.397128e+01 8.857627e+01 moveto -6.510864e+01 8.792395e+01 lineto -6.513468e+01 8.792716e+01 lineto -6.37247e+01 8.854585e+01 lineto -6.397128e+01 8.857627e+01 lineto -closepath -gsave -4.951854e-01 4.951854e-01 4.951854e-01 setrgbcolor -fill -grestore -newpath -6.063999e+01 8.859176e+01 moveto -6.172846e+01 8.891144e+01 lineto -6.09443e+01 8.881471e+01 lineto -5.959493e+01 8.846285e+01 lineto -6.063999e+01 8.859176e+01 lineto -closepath -gsave -4.515661e-01 4.515661e-01 4.515661e-01 setrgbcolor -fill -grestore -newpath -7.053186e+01 3.587594e+00 moveto -6.918596e+01 3.204898e+00 lineto -6.996949e+01 3.318412e+00 lineto -7.156732e+01 3.737606e+00 lineto -7.053186e+01 3.587594e+00 lineto -closepath -gsave -4.53632e-01 4.53632e-01 4.53632e-01 setrgbcolor -fill -grestore -newpath -7.183588e+01 4.29137e+00 moveto -7.053186e+01 3.587594e+00 lineto -7.156732e+01 3.737606e+00 lineto -7.311543e+01 4.476744e+00 lineto -7.183588e+01 4.29137e+00 lineto -closepath -gsave -4.681906e-01 4.681906e-01 4.681906e-01 setrgbcolor -fill -grestore -newpath -7.308815e+01 5.310898e+00 moveto -7.183588e+01 4.29137e+00 lineto -7.311543e+01 4.476744e+00 lineto -7.460211e+01 5.530232e+00 lineto -7.308815e+01 5.310898e+00 lineto -closepath -gsave -4.849926e-01 4.849926e-01 4.849926e-01 setrgbcolor -fill -grestore -newpath -7.427919e+01 6.638461e+00 moveto -7.308815e+01 5.310898e+00 lineto -7.460211e+01 5.530232e+00 lineto -7.601609e+01 6.890093e+00 lineto -7.427919e+01 6.638461e+00 lineto -closepath -gsave -5.039891e-01 5.039891e-01 5.039891e-01 setrgbcolor -fill -grestore -newpath -7.539998e+01 8.264008e+00 moveto -7.427919e+01 6.638461e+00 lineto -7.601609e+01 6.890093e+00 lineto -7.734667e+01 8.546034e+00 lineto -7.539998e+01 8.264008e+00 lineto -closepath -gsave -5.250417e-01 5.250417e-01 5.250417e-01 setrgbcolor -fill -grestore -newpath -7.644204e+01 1.017523e+01 moveto -7.539998e+01 8.264008e+00 lineto -7.734667e+01 8.546034e+00 lineto -7.858378e+01 1.048552e+01 lineto -7.644204e+01 1.017523e+01 lineto -closepath -gsave -5.479182e-01 5.479182e-01 5.479182e-01 setrgbcolor -fill -grestore -newpath -7.739748e+01 1.235767e+01 moveto -7.644204e+01 1.017523e+01 lineto -7.858378e+01 1.048552e+01 lineto -7.971806e+01 1.269386e+01 lineto -7.739748e+01 1.235767e+01 lineto -closepath -gsave -5.72293e-01 5.72293e-01 5.72293e-01 setrgbcolor -fill -grestore -newpath -7.825907e+01 1.479479e+01 moveto -7.739748e+01 1.235767e+01 lineto -7.971806e+01 1.269386e+01 lineto -8.074092e+01 1.515435e+01 lineto -7.825907e+01 1.479479e+01 lineto -closepath -gsave -5.977518e-01 5.977518e-01 5.977518e-01 setrgbcolor -fill -grestore -newpath -7.902027e+01 1.746815e+01 moveto -7.825907e+01 1.479479e+01 lineto -8.074092e+01 1.515435e+01 lineto -8.164461e+01 1.784835e+01 lineto -7.902027e+01 1.746815e+01 lineto -closepath -gsave -6.238017e-01 6.238017e-01 6.238017e-01 setrgbcolor -fill -grestore -newpath -7.967534e+01 2.035751e+01 moveto -7.902027e+01 1.746815e+01 lineto -8.164461e+01 1.784835e+01 lineto -8.242229e+01 2.075547e+01 lineto -7.967534e+01 2.035751e+01 lineto -closepath -gsave -6.498849e-01 6.498849e-01 6.498849e-01 setrgbcolor -fill -grestore -newpath -8.021931e+01 2.344099e+01 moveto -7.967534e+01 2.035751e+01 lineto -8.242229e+01 2.075547e+01 lineto -8.306808e+01 2.38537e+01 lineto -8.021931e+01 2.344099e+01 lineto -closepath -gsave -6.753979e-01 6.753979e-01 6.753979e-01 setrgbcolor -fill -grestore -newpath -8.064806e+01 2.669525e+01 moveto -8.021931e+01 2.344099e+01 lineto -8.306808e+01 2.38537e+01 lineto -8.357709e+01 2.711959e+01 lineto -8.064806e+01 2.669525e+01 lineto -closepath -gsave -6.997119e-01 6.997119e-01 6.997119e-01 setrgbcolor -fill -grestore -newpath -8.095835e+01 3.009566e+01 moveto -8.064806e+01 2.669525e+01 lineto -8.357709e+01 2.711959e+01 lineto -8.394546e+01 3.052842e+01 lineto -8.095835e+01 3.009566e+01 lineto -closepath -gsave -7.22197e-01 7.22197e-01 7.22197e-01 setrgbcolor -fill -grestore -newpath -8.114783e+01 3.361647e+01 moveto -8.095835e+01 3.009566e+01 lineto -8.394546e+01 3.052842e+01 lineto -8.41704e+01 3.405437e+01 lineto -8.114783e+01 3.361647e+01 lineto -closepath -gsave -7.422467e-01 7.422467e-01 7.422467e-01 setrgbcolor -fill -grestore -newpath -8.121506e+01 3.723103e+01 moveto -8.114783e+01 3.361647e+01 lineto -8.41704e+01 3.405437e+01 lineto -8.425022e+01 3.767075e+01 lineto -8.121506e+01 3.723103e+01 lineto -closepath -gsave -7.593026e-01 7.593026e-01 7.593026e-01 setrgbcolor -fill -grestore -newpath -8.115953e+01 4.091198e+01 moveto -8.121506e+01 3.723103e+01 lineto -8.425022e+01 3.767075e+01 lineto -8.41843e+01 4.135019e+01 lineto -8.115953e+01 4.091198e+01 lineto -closepath -gsave -7.728775e-01 7.728775e-01 7.728775e-01 setrgbcolor -fill -grestore -newpath -8.098168e+01 4.463145e+01 moveto -8.115953e+01 4.091198e+01 lineto -8.41843e+01 4.135019e+01 lineto -8.397315e+01 4.506483e+01 lineto -8.098168e+01 4.463145e+01 lineto -closepath -gsave -7.825759e-01 7.825759e-01 7.825759e-01 setrgbcolor -fill -grestore -newpath -8.068283e+01 4.836127e+01 moveto -8.098168e+01 4.463145e+01 lineto -8.397315e+01 4.506483e+01 lineto -8.361837e+01 4.878655e+01 lineto -8.068283e+01 4.836127e+01 lineto -closepath -gsave -7.88111e-01 7.88111e-01 7.88111e-01 setrgbcolor -fill -grestore -newpath -8.026526e+01 5.207322e+01 moveto -8.068283e+01 4.836127e+01 lineto -8.361837e+01 4.878655e+01 lineto -8.312263e+01 5.248718e+01 lineto -8.026526e+01 5.207322e+01 lineto -closepath -gsave -7.893175e-01 7.893175e-01 7.893175e-01 setrgbcolor -fill -grestore -newpath -7.973212e+01 5.573919e+01 moveto -8.026526e+01 5.207322e+01 lineto -8.312263e+01 5.248718e+01 lineto -8.24897e+01 5.613869e+01 lineto -7.973212e+01 5.573919e+01 lineto -closepath -gsave -7.861584e-01 7.861584e-01 7.861584e-01 setrgbcolor -fill -grestore -newpath -7.908745e+01 5.933143e+01 moveto -7.973212e+01 5.573919e+01 lineto -8.24897e+01 5.613869e+01 lineto -8.172437e+01 5.971346e+01 lineto -7.908745e+01 5.933143e+01 lineto -closepath -gsave -7.78727e-01 7.78727e-01 7.78727e-01 setrgbcolor -fill -grestore -newpath -7.833614e+01 6.282275e+01 moveto -7.908745e+01 5.933143e+01 lineto -8.172437e+01 5.971346e+01 lineto -8.083242e+01 6.31844e+01 lineto -7.833614e+01 6.282275e+01 lineto -closepath -gsave -7.672429e-01 7.672429e-01 7.672429e-01 setrgbcolor -fill -grestore -newpath -7.748386e+01 6.618671e+01 moveto -7.833614e+01 6.282275e+01 lineto -8.083242e+01 6.31844e+01 lineto -7.982061e+01 6.652525e+01 lineto -7.748386e+01 6.618671e+01 lineto -closepath -gsave -7.520424e-01 7.520424e-01 7.520424e-01 setrgbcolor -fill -grestore -newpath -7.653708e+01 6.939785e+01 moveto -7.748386e+01 6.618671e+01 lineto -7.982061e+01 6.652525e+01 lineto -7.869661e+01 6.971071e+01 lineto -7.653708e+01 6.939785e+01 lineto -closepath -gsave -7.335643e-01 7.335643e-01 7.335643e-01 setrgbcolor -fill -grestore -newpath -7.550296e+01 7.243186e+01 moveto -7.653708e+01 6.939785e+01 lineto -7.869661e+01 6.971071e+01 lineto -7.746892e+01 7.271668e+01 lineto -7.550296e+01 7.243186e+01 lineto -closepath -gsave -7.123308e-01 7.123308e-01 7.123308e-01 setrgbcolor -fill -grestore -newpath -7.438932e+01 7.526577e+01 moveto -7.550296e+01 7.243186e+01 lineto -7.746892e+01 7.271668e+01 lineto -7.614683e+01 7.552038e+01 lineto -7.438932e+01 7.526577e+01 lineto -closepath -gsave -6.889262e-01 6.889262e-01 6.889262e-01 setrgbcolor -fill -grestore -newpath -7.32046e+01 7.787812e+01 moveto -7.438932e+01 7.526577e+01 lineto -7.614683e+01 7.552038e+01 lineto -7.474036e+01 7.810061e+01 lineto -7.32046e+01 7.787812e+01 lineto -closepath -gsave -6.639722e-01 6.639722e-01 6.639722e-01 setrgbcolor -fill -grestore -newpath -7.195777e+01 8.024914e+01 moveto -7.32046e+01 7.787812e+01 lineto -7.474036e+01 7.810061e+01 lineto -7.326014e+01 8.043782e+01 lineto -7.195777e+01 8.024914e+01 lineto -closepath -gsave -6.381031e-01 6.381031e-01 6.381031e-01 setrgbcolor -fill -grestore -newpath -7.065827e+01 8.236088e+01 moveto -7.195777e+01 8.024914e+01 lineto -7.326014e+01 8.043782e+01 lineto -7.17174e+01 8.251432e+01 lineto -7.065827e+01 8.236088e+01 lineto -closepath -gsave -6.119412e-01 6.119412e-01 6.119412e-01 setrgbcolor -fill -grestore -newpath -6.931593e+01 8.419735e+01 moveto -7.065827e+01 8.236088e+01 lineto -7.17174e+01 8.251432e+01 lineto -7.01238e+01 8.431439e+01 lineto -6.931593e+01 8.419735e+01 lineto -closepath -gsave -5.86074e-01 5.86074e-01 5.86074e-01 setrgbcolor -fill -grestore -newpath -6.794092e+01 8.574465e+01 moveto -6.931593e+01 8.419735e+01 lineto -7.01238e+01 8.431439e+01 lineto -6.849141e+01 8.58244e+01 lineto -6.794092e+01 8.574465e+01 lineto -closepath -gsave -5.610334e-01 5.610334e-01 5.610334e-01 setrgbcolor -fill -grestore -newpath -6.654364e+01 8.699107e+01 moveto -6.794092e+01 8.574465e+01 lineto -6.849141e+01 8.58244e+01 lineto -6.683259e+01 8.703293e+01 lineto -6.654364e+01 8.699107e+01 lineto -closepath -gsave -5.372795e-01 5.372795e-01 5.372795e-01 setrgbcolor -fill -grestore -newpath -6.513468e+01 8.792716e+01 moveto -6.654364e+01 8.699107e+01 lineto -6.683259e+01 8.703293e+01 lineto -6.515989e+01 8.793082e+01 lineto -6.513468e+01 8.792716e+01 lineto -closepath -gsave -5.151879e-01 5.151879e-01 5.151879e-01 setrgbcolor -fill -grestore -newpath -6.37247e+01 8.854585e+01 moveto -6.513468e+01 8.792716e+01 lineto -6.515989e+01 8.793082e+01 lineto -6.348599e+01 8.851127e+01 lineto -6.37247e+01 8.854585e+01 lineto -closepath -gsave -4.950423e-01 4.950423e-01 4.950423e-01 setrgbcolor -fill -grestore -newpath -5.959493e+01 8.846285e+01 moveto -6.09443e+01 8.881471e+01 lineto -6.018515e+01 8.870473e+01 lineto -5.85832e+01 8.831628e+01 lineto -5.959493e+01 8.846285e+01 lineto -closepath -gsave -4.523593e-01 4.523593e-01 4.523593e-01 setrgbcolor -fill -grestore -newpath -7.156732e+01 3.737606e+00 moveto -6.996949e+01 3.318412e+00 lineto -7.072239e+01 3.444906e+00 lineto -7.25623e+01 3.90477e+00 lineto -7.156732e+01 3.737606e+00 lineto -closepath -gsave -4.541915e-01 4.541915e-01 4.541915e-01 setrgbcolor -fill -grestore -newpath -7.311543e+01 4.476744e+00 moveto -7.156732e+01 3.737606e+00 lineto -7.25623e+01 3.90477e+00 lineto -7.434495e+01 4.683314e+00 lineto -7.311543e+01 4.476744e+00 lineto -closepath -gsave -4.690268e-01 4.690268e-01 4.690268e-01 setrgbcolor -fill -grestore -newpath -7.460211e+01 5.530232e+00 moveto -7.311543e+01 4.476744e+00 lineto -7.434495e+01 4.683314e+00 lineto -7.605686e+01 5.774644e+00 lineto -7.460211e+01 5.530232e+00 lineto -closepath -gsave -4.861618e-01 4.861618e-01 4.861618e-01 setrgbcolor -fill -grestore -newpath -7.601609e+01 6.890093e+00 moveto -7.460211e+01 5.530232e+00 lineto -7.605686e+01 5.774644e+00 lineto -7.768506e+01 7.170497e+00 lineto -7.601609e+01 6.890093e+00 lineto -closepath -gsave -5.055461e-01 5.055461e-01 5.055461e-01 setrgbcolor -fill -grestore -newpath -7.734667e+01 8.546034e+00 moveto -7.601609e+01 6.890093e+00 lineto -7.768506e+01 7.170497e+00 lineto -7.921723e+01 8.860306e+00 lineto -7.734667e+01 8.546034e+00 lineto -closepath -gsave -5.270372e-01 5.270372e-01 5.270372e-01 setrgbcolor -fill -grestore -newpath -7.858378e+01 1.048552e+01 moveto -7.734667e+01 8.546034e+00 lineto -7.921723e+01 8.860306e+00 lineto -8.064178e+01 1.083128e+01 lineto -7.858378e+01 1.048552e+01 lineto -closepath -gsave -5.50396e-01 5.50396e-01 5.50396e-01 setrgbcolor -fill -grestore -newpath -7.971806e+01 1.269386e+01 moveto -7.858378e+01 1.048552e+01 lineto -8.064178e+01 1.083128e+01 lineto -8.19479e+01 1.306849e+01 lineto -7.971806e+01 1.269386e+01 lineto -closepath -gsave -5.752873e-01 5.752873e-01 5.752873e-01 setrgbcolor -fill -grestore -newpath -8.074092e+01 1.515435e+01 moveto -7.971806e+01 1.269386e+01 lineto -8.19479e+01 1.306849e+01 lineto -8.312573e+01 1.555502e+01 lineto -8.074092e+01 1.515435e+01 lineto -closepath -gsave -6.012848e-01 6.012848e-01 6.012848e-01 setrgbcolor -fill -grestore -newpath -8.164461e+01 1.784835e+01 moveto -8.074092e+01 1.515435e+01 lineto -8.312573e+01 1.555502e+01 lineto -8.416633e+01 1.827202e+01 lineto -8.164461e+01 1.784835e+01 lineto -closepath -gsave -6.278814e-01 6.278814e-01 6.278814e-01 setrgbcolor -fill -grestore -newpath -8.242229e+01 2.075547e+01 moveto -8.164461e+01 1.784835e+01 lineto -8.416633e+01 1.827202e+01 lineto -8.506184e+01 2.119894e+01 lineto -8.242229e+01 2.075547e+01 lineto -closepath -gsave -6.545039e-01 6.545039e-01 6.545039e-01 setrgbcolor -fill -grestore -newpath -8.306808e+01 2.38537e+01 moveto -8.242229e+01 2.075547e+01 lineto -8.506184e+01 2.119894e+01 lineto -8.580546e+01 2.431361e+01 lineto -8.306808e+01 2.38537e+01 lineto -closepath -gsave -6.80532e-01 6.80532e-01 6.80532e-01 setrgbcolor -fill -grestore -newpath -8.357709e+01 2.711959e+01 moveto -8.306808e+01 2.38537e+01 lineto -8.580546e+01 2.431361e+01 lineto -8.639159e+01 2.759246e+01 lineto -8.357709e+01 2.711959e+01 lineto -closepath -gsave -7.053205e-01 7.053205e-01 7.053205e-01 setrgbcolor -fill -grestore -newpath -8.394546e+01 3.052842e+01 moveto -8.357709e+01 2.711959e+01 lineto -8.639159e+01 2.759246e+01 lineto -8.681577e+01 3.101066e+01 lineto -8.394546e+01 3.052842e+01 lineto -closepath -gsave -7.282234e-01 7.282234e-01 7.282234e-01 setrgbcolor -fill -grestore -newpath -8.41704e+01 3.405437e+01 moveto -8.394546e+01 3.052842e+01 lineto -8.681577e+01 3.101066e+01 lineto -8.707479e+01 3.454233e+01 lineto -8.41704e+01 3.405437e+01 lineto -closepath -gsave -7.486195e-01 7.486195e-01 7.486195e-01 setrgbcolor -fill -grestore -newpath -8.425022e+01 3.767075e+01 moveto -8.41704e+01 3.405437e+01 lineto -8.707479e+01 3.454233e+01 lineto -8.71667e+01 3.816075e+01 lineto -8.425022e+01 3.767075e+01 lineto -closepath -gsave -7.659377e-01 7.659377e-01 7.659377e-01 setrgbcolor -fill -grestore -newpath -8.41843e+01 4.135019e+01 moveto -8.425022e+01 3.767075e+01 lineto -8.71667e+01 3.816075e+01 lineto -8.70908e+01 4.183851e+01 lineto -8.41843e+01 4.135019e+01 lineto -closepath -gsave -7.796806e-01 7.796806e-01 7.796806e-01 setrgbcolor -fill -grestore -newpath -8.397315e+01 4.506483e+01 moveto -8.41843e+01 4.135019e+01 lineto -8.70908e+01 4.183851e+01 lineto -8.684765e+01 4.554778e+01 lineto -8.397315e+01 4.506483e+01 lineto -closepath -gsave -7.89446e-01 7.89446e-01 7.89446e-01 setrgbcolor -fill -grestore -newpath -8.361837e+01 4.878655e+01 moveto -8.397315e+01 4.506483e+01 lineto -8.684765e+01 4.554778e+01 lineto -8.643912e+01 4.926047e+01 lineto -8.361837e+01 4.878655e+01 lineto -closepath -gsave -7.949437e-01 7.949437e-01 7.949437e-01 setrgbcolor -fill -grestore -newpath -8.312263e+01 5.248718e+01 moveto -8.361837e+01 4.878655e+01 lineto -8.643912e+01 4.926047e+01 lineto -8.586828e+01 5.294847e+01 lineto -8.312263e+01 5.248718e+01 lineto -closepath -gsave -7.960088e-01 7.960088e-01 7.960088e-01 setrgbcolor -fill -grestore -newpath -8.24897e+01 5.613869e+01 moveto -8.312263e+01 5.248718e+01 lineto -8.586828e+01 5.294847e+01 lineto -8.513946e+01 5.658388e+01 lineto -8.24897e+01 5.613869e+01 lineto -closepath -gsave -7.926082e-01 7.926082e-01 7.926082e-01 setrgbcolor -fill -grestore -newpath -8.172437e+01 5.971346e+01 moveto -8.24897e+01 5.613869e+01 lineto -8.513946e+01 5.658388e+01 lineto -8.425817e+01 6.013916e+01 lineto -8.172437e+01 5.971346e+01 lineto -closepath -gsave -7.84843e-01 7.84843e-01 7.84843e-01 setrgbcolor -fill -grestore -newpath -8.083242e+01 6.31844e+01 moveto -8.172437e+01 5.971346e+01 lineto -8.425817e+01 6.013916e+01 lineto -8.323109e+01 6.35874e+01 lineto -8.083242e+01 6.31844e+01 lineto -closepath -gsave -7.729436e-01 7.729436e-01 7.729436e-01 setrgbcolor -fill -grestore -newpath -7.982061e+01 6.652525e+01 moveto -8.083242e+01 6.31844e+01 lineto -8.323109e+01 6.35874e+01 lineto -8.206599e+01 6.690249e+01 lineto -7.982061e+01 6.652525e+01 lineto -closepath -gsave -7.572597e-01 7.572597e-01 7.572597e-01 setrgbcolor -fill -grestore -newpath -7.869661e+01 6.971071e+01 moveto -7.982061e+01 6.652525e+01 lineto -8.206599e+01 6.690249e+01 lineto -8.07717e+01 7.005935e+01 lineto -7.869661e+01 6.971071e+01 lineto -closepath -gsave -7.382457e-01 7.382457e-01 7.382457e-01 setrgbcolor -fill -grestore -newpath -7.746892e+01 7.271668e+01 moveto -7.869661e+01 6.971071e+01 lineto -8.07717e+01 7.005935e+01 lineto -7.9358e+01 7.303406e+01 lineto -7.746892e+01 7.271668e+01 lineto -closepath -gsave -7.164411e-01 7.164411e-01 7.164411e-01 setrgbcolor -fill -grestore -newpath -7.614683e+01 7.552038e+01 moveto -7.746892e+01 7.271668e+01 lineto -7.9358e+01 7.303406e+01 lineto -7.783562e+01 7.580412e+01 lineto -7.614683e+01 7.552038e+01 lineto -closepath -gsave -6.924473e-01 6.924473e-01 6.924473e-01 setrgbcolor -fill -grestore -newpath -7.474036e+01 7.810061e+01 moveto -7.614683e+01 7.552038e+01 lineto -7.783562e+01 7.580412e+01 lineto -7.621606e+01 7.834854e+01 lineto -7.474036e+01 7.810061e+01 lineto -closepath -gsave -6.669036e-01 6.669036e-01 6.669036e-01 setrgbcolor -fill -grestore -newpath -7.326014e+01 8.043782e+01 moveto -7.474036e+01 7.810061e+01 lineto -7.621606e+01 7.834854e+01 lineto -7.451158e+01 8.064807e+01 lineto -7.326014e+01 8.043782e+01 lineto -closepath -gsave -6.404607e-01 6.404607e-01 6.404607e-01 setrgbcolor -fill -grestore -newpath -7.17174e+01 8.251432e+01 moveto -7.326014e+01 8.043782e+01 lineto -7.451158e+01 8.064807e+01 lineto -7.273511e+01 8.26853e+01 lineto -7.17174e+01 8.251432e+01 lineto -closepath -gsave -6.137557e-01 6.137557e-01 6.137557e-01 setrgbcolor -fill -grestore -newpath -7.01238e+01 8.431439e+01 moveto -7.17174e+01 8.251432e+01 lineto -7.273511e+01 8.26853e+01 lineto -7.090007e+01 8.444481e+01 lineto -7.01238e+01 8.431439e+01 lineto -closepath -gsave -5.873887e-01 5.873887e-01 5.873887e-01 setrgbcolor -fill -grestore -newpath -6.849141e+01 8.58244e+01 moveto -7.01238e+01 8.431439e+01 lineto -7.090007e+01 8.444481e+01 lineto -6.902037e+01 8.591327e+01 lineto -6.849141e+01 8.58244e+01 lineto -closepath -gsave -5.619016e-01 5.619016e-01 5.619016e-01 setrgbcolor -fill -grestore -newpath -6.683259e+01 8.703293e+01 moveto -6.849141e+01 8.58244e+01 lineto -6.902037e+01 8.591327e+01 lineto -6.711023e+01 8.707958e+01 lineto -6.683259e+01 8.703293e+01 lineto -closepath -gsave -5.377616e-01 5.377616e-01 5.377616e-01 setrgbcolor -fill -grestore -newpath -6.515989e+01 8.793082e+01 moveto -6.683259e+01 8.703293e+01 lineto -6.711023e+01 8.707958e+01 lineto -6.518412e+01 8.793489e+01 lineto -6.515989e+01 8.793082e+01 lineto -closepath -gsave -5.153483e-01 5.153483e-01 5.153483e-01 setrgbcolor -fill -grestore -newpath -6.348599e+01 8.851127e+01 moveto -6.515989e+01 8.793082e+01 lineto -6.518412e+01 8.793489e+01 lineto -6.325661e+01 8.847273e+01 lineto -6.348599e+01 8.851127e+01 lineto -closepath -gsave -4.949465e-01 4.949465e-01 4.949465e-01 setrgbcolor -fill -grestore -newpath -5.85832e+01 8.831628e+01 moveto -6.018515e+01 8.870473e+01 lineto -5.945568e+01 8.858218e+01 lineto -5.761104e+01 8.815294e+01 lineto -5.85832e+01 8.831628e+01 lineto -closepath -gsave -4.528953e-01 4.528953e-01 4.528953e-01 setrgbcolor -fill -grestore -newpath -7.25623e+01 3.90477e+00 moveto -7.072239e+01 3.444906e+00 lineto -7.144001e+01 3.583599e+00 lineto -7.351064e+01 4.088057e+00 lineto -7.25623e+01 3.90477e+00 lineto -closepath -gsave -4.544736e-01 4.544736e-01 4.544736e-01 setrgbcolor -fill -grestore -newpath -7.434495e+01 4.683314e+00 moveto -7.25623e+01 3.90477e+00 lineto -7.351064e+01 4.088057e+00 lineto -7.551685e+01 4.909806e+00 lineto -7.434495e+01 4.683314e+00 lineto -closepath -gsave -4.694488e-01 4.694488e-01 4.694488e-01 setrgbcolor -fill -grestore -newpath -7.605686e+01 5.774644e+00 moveto -7.434495e+01 4.683314e+00 lineto -7.551685e+01 4.909806e+00 lineto -7.744344e+01 6.042627e+00 lineto -7.605686e+01 5.774644e+00 lineto -closepath -gsave -4.867522e-01 4.867522e-01 4.867522e-01 setrgbcolor -fill -grestore -newpath -7.768506e+01 7.170497e+00 moveto -7.605686e+01 5.774644e+00 lineto -7.744344e+01 6.042627e+00 lineto -7.927583e+01 7.477943e+00 lineto -7.768506e+01 7.170497e+00 lineto -closepath -gsave -5.063328e-01 5.063328e-01 5.063328e-01 setrgbcolor -fill -grestore -newpath -7.921723e+01 8.860306e+00 moveto -7.768506e+01 7.170497e+00 lineto -7.927583e+01 7.477943e+00 lineto -8.100015e+01 9.204887e+00 lineto -7.921723e+01 8.860306e+00 lineto -closepath -gsave -5.28046e-01 5.28046e-01 5.28046e-01 setrgbcolor -fill -grestore -newpath -8.064178e+01 1.083128e+01 moveto -7.921723e+01 8.860306e+00 lineto -8.100015e+01 9.204887e+00 lineto -8.260333e+01 1.121039e+01 lineto -8.064178e+01 1.083128e+01 lineto -closepath -gsave -5.516491e-01 5.516491e-01 5.516491e-01 setrgbcolor -fill -grestore -newpath -8.19479e+01 1.306849e+01 moveto -8.064178e+01 1.083128e+01 lineto -8.260333e+01 1.121039e+01 lineto -8.407325e+01 1.347926e+01 lineto -8.19479e+01 1.306849e+01 lineto -closepath -gsave -5.768021e-01 5.768021e-01 5.768021e-01 setrgbcolor -fill -grestore -newpath -8.312573e+01 1.555502e+01 moveto -8.19479e+01 1.306849e+01 lineto -8.407325e+01 1.347926e+01 lineto -8.539878e+01 1.599433e+01 lineto -8.312573e+01 1.555502e+01 lineto -closepath -gsave -6.030725e-01 6.030725e-01 6.030725e-01 setrgbcolor -fill -grestore -newpath -8.416633e+01 1.827202e+01 moveto -8.312573e+01 1.555502e+01 lineto -8.539878e+01 1.599433e+01 lineto -8.656988e+01 1.873655e+01 lineto -8.416633e+01 1.827202e+01 lineto -closepath -gsave -6.299461e-01 6.299461e-01 6.299461e-01 setrgbcolor -fill -grestore -newpath -8.506184e+01 2.119894e+01 moveto -8.416633e+01 1.827202e+01 lineto -8.656988e+01 1.873655e+01 lineto -8.757769e+01 2.168517e+01 lineto -8.506184e+01 2.119894e+01 lineto -closepath -gsave -6.568417e-01 6.568417e-01 6.568417e-01 setrgbcolor -fill -grestore -newpath -8.580546e+01 2.431361e+01 moveto -8.506184e+01 2.119894e+01 lineto -8.757769e+01 2.168517e+01 lineto -8.841457e+01 2.481787e+01 lineto -8.580546e+01 2.431361e+01 lineto -closepath -gsave -6.831309e-01 6.831309e-01 6.831309e-01 setrgbcolor -fill -grestore -newpath -8.639159e+01 2.759246e+01 moveto -8.580546e+01 2.431361e+01 lineto -8.841457e+01 2.481787e+01 lineto -8.90742e+01 2.811092e+01 lineto -8.639159e+01 2.759246e+01 lineto -closepath -gsave -7.081597e-01 7.081597e-01 7.081597e-01 setrgbcolor -fill -grestore -newpath -8.681577e+01 3.101066e+01 moveto -8.639159e+01 2.759246e+01 lineto -8.90742e+01 2.811092e+01 lineto -8.955157e+01 3.15394e+01 lineto -8.681577e+01 3.101066e+01 lineto -closepath -gsave -7.312741e-01 7.312741e-01 7.312741e-01 setrgbcolor -fill -grestore -newpath -8.707479e+01 3.454233e+01 moveto -8.681577e+01 3.101066e+01 lineto -8.955157e+01 3.15394e+01 lineto -8.984308e+01 3.507736e+01 lineto -8.707479e+01 3.454233e+01 lineto -closepath -gsave -7.518454e-01 7.518454e-01 7.518454e-01 setrgbcolor -fill -grestore -newpath -8.71667e+01 3.816075e+01 moveto -8.707479e+01 3.454233e+01 lineto -8.984308e+01 3.507736e+01 lineto -8.994651e+01 3.8698e+01 lineto -8.71667e+01 3.816075e+01 lineto -closepath -gsave -7.69296e-01 7.69296e-01 7.69296e-01 setrgbcolor -fill -grestore -newpath -8.70908e+01 4.183851e+01 moveto -8.71667e+01 3.816075e+01 lineto -8.994651e+01 3.8698e+01 lineto -8.986109e+01 4.237392e+01 lineto -8.70908e+01 4.183851e+01 lineto -closepath -gsave -7.831236e-01 7.831236e-01 7.831236e-01 setrgbcolor -fill -grestore -newpath -8.684765e+01 4.554778e+01 moveto -8.70908e+01 4.183851e+01 lineto -8.986109e+01 4.237392e+01 lineto -8.958746e+01 4.607729e+01 lineto -8.684765e+01 4.554778e+01 lineto -closepath -gsave -7.929224e-01 7.929224e-01 7.929224e-01 setrgbcolor -fill -grestore -newpath -8.643912e+01 4.926047e+01 moveto -8.684765e+01 4.554778e+01 lineto -8.958746e+01 4.607729e+01 lineto -8.912769e+01 4.978008e+01 lineto -8.643912e+01 4.926047e+01 lineto -closepath -gsave -7.984006e-01 7.984006e-01 7.984006e-01 setrgbcolor -fill -grestore -newpath -8.586828e+01 5.294847e+01 moveto -8.643912e+01 4.926047e+01 lineto -8.912769e+01 4.978008e+01 lineto -8.848526e+01 5.345426e+01 lineto -8.586828e+01 5.294847e+01 lineto -closepath -gsave -7.993934e-01 7.993934e-01 7.993934e-01 setrgbcolor -fill -grestore -newpath -8.513946e+01 5.658388e+01 moveto -8.586828e+01 5.294847e+01 lineto -8.848526e+01 5.345426e+01 lineto -8.766504e+01 5.707199e+01 lineto -8.513946e+01 5.658388e+01 lineto -closepath -gsave -7.9587e-01 7.9587e-01 7.9587e-01 setrgbcolor -fill -grestore -newpath -8.425817e+01 6.013916e+01 moveto -8.513946e+01 5.658388e+01 lineto -8.766504e+01 5.707199e+01 lineto -8.667324e+01 6.060591e+01 lineto -8.425817e+01 6.013916e+01 lineto -closepath -gsave -7.879351e-01 7.879351e-01 7.879351e-01 setrgbcolor -fill -grestore -newpath -8.323109e+01 6.35874e+01 moveto -8.425817e+01 6.013916e+01 lineto -8.667324e+01 6.060591e+01 lineto -8.551736e+01 6.402926e+01 lineto -8.323109e+01 6.35874e+01 lineto -closepath -gsave -7.758248e-01 7.758248e-01 7.758248e-01 setrgbcolor -fill -grestore -newpath -8.206599e+01 6.690249e+01 moveto -8.323109e+01 6.35874e+01 lineto -8.551736e+01 6.402926e+01 lineto -8.420615e+01 6.731612e+01 lineto -8.206599e+01 6.690249e+01 lineto -closepath -gsave -7.598957e-01 7.598957e-01 7.598957e-01 setrgbcolor -fill -grestore -newpath -8.07717e+01 7.005935e+01 moveto -8.206599e+01 6.690249e+01 lineto -8.420615e+01 6.731612e+01 lineto -8.274955e+01 7.04416e+01 lineto -8.07717e+01 7.005935e+01 lineto -closepath -gsave -7.406101e-01 7.406101e-01 7.406101e-01 setrgbcolor -fill -grestore -newpath -7.9358e+01 7.303406e+01 moveto -8.07717e+01 7.005935e+01 lineto -8.274955e+01 7.04416e+01 lineto -8.115857e+01 7.338205e+01 lineto -7.9358e+01 7.303406e+01 lineto -closepath -gsave -7.18516e-01 7.18516e-01 7.18516e-01 setrgbcolor -fill -grestore -newpath -7.783562e+01 7.580412e+01 moveto -7.9358e+01 7.303406e+01 lineto -8.115857e+01 7.338205e+01 lineto -7.944526e+01 7.611521e+01 lineto -7.783562e+01 7.580412e+01 lineto -closepath -gsave -6.94224e-01 6.94224e-01 6.94224e-01 setrgbcolor -fill -grestore -newpath -7.621606e+01 7.834854e+01 moveto -7.783562e+01 7.580412e+01 lineto -7.944526e+01 7.611521e+01 lineto -7.76226e+01 7.862038e+01 lineto -7.621606e+01 7.834854e+01 lineto -closepath -gsave -6.68382e-01 6.68382e-01 6.68382e-01 setrgbcolor -fill -grestore -newpath -7.451158e+01 8.064807e+01 moveto -7.621606e+01 7.834854e+01 lineto -7.76226e+01 7.862038e+01 lineto -7.570438e+01 8.08786e+01 lineto -7.451158e+01 8.064807e+01 lineto -closepath -gsave -6.416489e-01 6.416489e-01 6.416489e-01 setrgbcolor -fill -grestore -newpath -7.273511e+01 8.26853e+01 moveto -7.451158e+01 8.064807e+01 lineto -7.570438e+01 8.08786e+01 lineto -7.370513e+01 8.287278e+01 lineto -7.273511e+01 8.26853e+01 lineto -closepath -gsave -6.146696e-01 6.146696e-01 6.146696e-01 setrgbcolor -fill -grestore -newpath -7.090007e+01 8.444481e+01 moveto -7.273511e+01 8.26853e+01 lineto -7.370513e+01 8.287278e+01 lineto -7.163997e+01 8.458781e+01 lineto -7.090007e+01 8.444481e+01 lineto -closepath -gsave -5.880504e-01 5.880504e-01 5.880504e-01 setrgbcolor -fill -grestore -newpath -6.902037e+01 8.591327e+01 moveto -7.090007e+01 8.444481e+01 lineto -7.163997e+01 8.458781e+01 lineto -6.952454e+01 8.601071e+01 lineto -6.902037e+01 8.591327e+01 lineto -closepath -gsave -5.623382e-01 5.623382e-01 5.623382e-01 setrgbcolor -fill -grestore -newpath -6.711023e+01 8.707958e+01 moveto -6.902037e+01 8.591327e+01 lineto -6.952454e+01 8.601071e+01 lineto -6.737486e+01 8.713072e+01 lineto -6.711023e+01 8.707958e+01 lineto -closepath -gsave -5.380038e-01 5.380038e-01 5.380038e-01 setrgbcolor -fill -grestore -newpath -6.518412e+01 8.793489e+01 moveto -6.711023e+01 8.707958e+01 lineto -6.737486e+01 8.713072e+01 lineto -6.520721e+01 8.793935e+01 lineto -6.518412e+01 8.793489e+01 lineto -closepath -gsave -5.154288e-01 5.154288e-01 5.154288e-01 setrgbcolor -fill -grestore -newpath -6.325661e+01 8.847273e+01 moveto -6.518412e+01 8.793489e+01 lineto -6.520721e+01 8.793935e+01 lineto -6.303798e+01 8.843048e+01 lineto -6.325661e+01 8.847273e+01 lineto -closepath -gsave -4.948985e-01 4.948985e-01 4.948985e-01 setrgbcolor -fill -grestore -newpath -5.761104e+01 8.815294e+01 moveto -5.945568e+01 8.858218e+01 lineto -5.87604e+01 8.84478e+01 lineto -5.668442e+01 8.797386e+01 lineto -5.761104e+01 8.815294e+01 lineto -closepath -gsave -4.531656e-01 4.531656e-01 4.531656e-01 setrgbcolor -fill -grestore -newpath -7.351064e+01 4.088057e+00 moveto -7.144001e+01 3.583599e+00 lineto -7.211792e+01 3.733636e+00 lineto -7.440652e+01 4.286335e+00 lineto -7.351064e+01 4.088057e+00 lineto -closepath -gsave -4.544736e-01 4.544736e-01 4.544736e-01 setrgbcolor -fill -grestore -newpath -7.551685e+01 4.909806e+00 moveto -7.351064e+01 4.088057e+00 lineto -7.440652e+01 4.286335e+00 lineto -7.662392e+01 5.154824e+00 lineto -7.551685e+01 4.909806e+00 lineto -closepath -gsave -4.694488e-01 4.694488e-01 4.694488e-01 setrgbcolor -fill -grestore -newpath -7.744344e+01 6.042627e+00 moveto -7.551685e+01 4.909806e+00 lineto -7.662392e+01 5.154824e+00 lineto -7.875331e+01 6.33253e+00 lineto -7.744344e+01 6.042627e+00 lineto -closepath -gsave -4.867522e-01 4.867522e-01 4.867522e-01 setrgbcolor -fill -grestore -newpath -7.927583e+01 7.477943e+00 moveto -7.744344e+01 6.042627e+00 lineto -7.875331e+01 6.33253e+00 lineto -8.077859e+01 7.810536e+00 lineto -7.927583e+01 7.477943e+00 lineto -closepath -gsave -5.063328e-01 5.063328e-01 5.063328e-01 setrgbcolor -fill -grestore -newpath -8.100015e+01 9.204887e+00 moveto -7.927583e+01 7.477943e+00 lineto -8.077859e+01 7.810536e+00 lineto -8.268441e+01 9.577653e+00 lineto -8.100015e+01 9.204887e+00 lineto -closepath -gsave -5.28046e-01 5.28046e-01 5.28046e-01 setrgbcolor -fill -grestore -newpath -8.260333e+01 1.121039e+01 moveto -8.100015e+01 9.204887e+00 lineto -8.268441e+01 9.577653e+00 lineto -8.445636e+01 1.16205e+01 lineto -8.260333e+01 1.121039e+01 lineto -closepath -gsave -5.516491e-01 5.516491e-01 5.516491e-01 setrgbcolor -fill -grestore -newpath -8.407325e+01 1.347926e+01 moveto -8.260333e+01 1.121039e+01 lineto -8.445636e+01 1.16205e+01 lineto -8.608101e+01 1.392362e+01 lineto -8.407325e+01 1.347926e+01 lineto -closepath -gsave -5.768021e-01 5.768021e-01 5.768021e-01 setrgbcolor -fill -grestore -newpath -8.539878e+01 1.599433e+01 moveto -8.407325e+01 1.347926e+01 lineto -8.608101e+01 1.392362e+01 lineto -8.754607e+01 1.646957e+01 lineto -8.539878e+01 1.599433e+01 lineto -closepath -gsave -6.030725e-01 6.030725e-01 6.030725e-01 setrgbcolor -fill -grestore -newpath -8.656988e+01 1.873655e+01 moveto -8.539878e+01 1.599433e+01 lineto -8.754607e+01 1.646957e+01 lineto -8.884045e+01 1.923908e+01 lineto -8.656988e+01 1.873655e+01 lineto -closepath -gsave -6.299461e-01 6.299461e-01 6.299461e-01 setrgbcolor -fill -grestore -newpath -8.757769e+01 2.168517e+01 moveto -8.656988e+01 1.873655e+01 lineto -8.884045e+01 1.923908e+01 lineto -8.995434e+01 2.221118e+01 lineto -8.757769e+01 2.168517e+01 lineto -closepath -gsave -6.568417e-01 6.568417e-01 6.568417e-01 setrgbcolor -fill -grestore -newpath -8.841457e+01 2.481787e+01 moveto -8.757769e+01 2.168517e+01 lineto -8.995434e+01 2.221118e+01 lineto -9.087932e+01 2.536337e+01 lineto -8.841457e+01 2.481787e+01 lineto -closepath -gsave -6.831309e-01 6.831309e-01 6.831309e-01 setrgbcolor -fill -grestore -newpath -8.90742e+01 2.811092e+01 moveto -8.841457e+01 2.481787e+01 lineto -9.087932e+01 2.536337e+01 lineto -9.160838e+01 2.867179e+01 lineto -8.90742e+01 2.811092e+01 lineto -closepath -gsave -7.081597e-01 7.081597e-01 7.081597e-01 setrgbcolor -fill -grestore -newpath -8.955157e+01 3.15394e+01 moveto -8.90742e+01 2.811092e+01 lineto -9.160838e+01 2.867179e+01 lineto -9.213601e+01 3.21114e+01 lineto -8.955157e+01 3.15394e+01 lineto -closepath -gsave -7.312741e-01 7.312741e-01 7.312741e-01 setrgbcolor -fill -grestore -newpath -8.984308e+01 3.507736e+01 moveto -8.955157e+01 3.15394e+01 lineto -9.213601e+01 3.21114e+01 lineto -9.24582e+01 3.565614e+01 lineto -8.984308e+01 3.507736e+01 lineto -closepath -gsave -7.518454e-01 7.518454e-01 7.518454e-01 setrgbcolor -fill -grestore -newpath -8.994651e+01 3.8698e+01 moveto -8.984308e+01 3.507736e+01 lineto -9.24582e+01 3.565614e+01 lineto -9.257252e+01 3.927919e+01 lineto -8.994651e+01 3.8698e+01 lineto -closepath -gsave -7.69296e-01 7.69296e-01 7.69296e-01 setrgbcolor -fill -grestore -newpath -8.986109e+01 4.237392e+01 moveto -8.994651e+01 3.8698e+01 lineto -9.257252e+01 3.927919e+01 lineto -9.247811e+01 4.295313e+01 lineto -8.986109e+01 4.237392e+01 lineto -closepath -gsave -7.831236e-01 7.831236e-01 7.831236e-01 setrgbcolor -fill -grestore -newpath -8.958746e+01 4.607729e+01 moveto -8.986109e+01 4.237392e+01 lineto -9.247811e+01 4.295313e+01 lineto -9.217567e+01 4.665012e+01 lineto -8.958746e+01 4.607729e+01 lineto -closepath -gsave -7.929224e-01 7.929224e-01 7.929224e-01 setrgbcolor -fill -grestore -newpath -8.912769e+01 4.978008e+01 moveto -8.958746e+01 4.607729e+01 lineto -9.217567e+01 4.665012e+01 lineto -9.16675e+01 5.03422e+01 lineto -8.912769e+01 4.978008e+01 lineto -closepath -gsave -7.984006e-01 7.984006e-01 7.984006e-01 setrgbcolor -fill -grestore -newpath -8.848526e+01 5.345426e+01 moveto -8.912769e+01 4.978008e+01 lineto -9.16675e+01 5.03422e+01 lineto -9.095745e+01 5.400141e+01 lineto -8.848526e+01 5.345426e+01 lineto -closepath -gsave -7.993934e-01 7.993934e-01 7.993934e-01 setrgbcolor -fill -grestore -newpath -8.766504e+01 5.707199e+01 moveto -8.848526e+01 5.345426e+01 lineto -9.095745e+01 5.400141e+01 lineto -9.005089e+01 5.760004e+01 lineto -8.766504e+01 5.707199e+01 lineto -closepath -gsave -7.9587e-01 7.9587e-01 7.9587e-01 setrgbcolor -fill -grestore -newpath -8.667324e+01 6.060591e+01 moveto -8.766504e+01 5.707199e+01 lineto -9.005089e+01 5.760004e+01 lineto -8.895468e+01 6.111085e+01 lineto -8.667324e+01 6.060591e+01 lineto -closepath -gsave -7.879351e-01 7.879351e-01 7.879351e-01 setrgbcolor -fill -grestore -newpath -8.551736e+01 6.402926e+01 moveto -8.667324e+01 6.060591e+01 lineto -8.895468e+01 6.111085e+01 lineto -8.767713e+01 6.450727e+01 lineto -8.551736e+01 6.402926e+01 lineto -closepath -gsave -7.758248e-01 7.758248e-01 7.758248e-01 setrgbcolor -fill -grestore -newpath -8.420615e+01 6.731612e+01 moveto -8.551736e+01 6.402926e+01 lineto -8.767713e+01 6.450727e+01 lineto -8.62279e+01 6.776358e+01 lineto -8.420615e+01 6.731612e+01 lineto -closepath -gsave -7.598957e-01 7.598957e-01 7.598957e-01 setrgbcolor -fill -grestore -newpath -8.274955e+01 7.04416e+01 moveto -8.420615e+01 6.731612e+01 lineto -8.62279e+01 6.776358e+01 lineto -8.461796e+01 7.085513e+01 lineto -8.274955e+01 7.04416e+01 lineto -closepath -gsave -7.406101e-01 7.406101e-01 7.406101e-01 setrgbcolor -fill -grestore -newpath -8.115857e+01 7.338205e+01 moveto -8.274955e+01 7.04416e+01 lineto -8.461796e+01 7.085513e+01 lineto -8.285951e+01 7.375851e+01 lineto -8.115857e+01 7.338205e+01 lineto -closepath -gsave -7.18516e-01 7.18516e-01 7.18516e-01 setrgbcolor -fill -grestore -newpath -7.944526e+01 7.611521e+01 moveto -8.115857e+01 7.338205e+01 lineto -8.285951e+01 7.375851e+01 lineto -8.096585e+01 7.645175e+01 lineto -7.944526e+01 7.611521e+01 lineto -closepath -gsave -6.94224e-01 6.94224e-01 6.94224e-01 setrgbcolor -fill -grestore -newpath -7.76226e+01 7.862038e+01 moveto -7.944526e+01 7.611521e+01 lineto -8.096585e+01 7.645175e+01 lineto -7.895133e+01 7.891446e+01 lineto -7.76226e+01 7.862038e+01 lineto -closepath -gsave -6.68382e-01 6.68382e-01 6.68382e-01 setrgbcolor -fill -grestore -newpath -7.570438e+01 8.08786e+01 moveto -7.76226e+01 7.862038e+01 lineto -7.895133e+01 7.891446e+01 lineto -7.683119e+01 8.112799e+01 lineto -7.570438e+01 8.08786e+01 lineto -closepath -gsave -6.416489e-01 6.416489e-01 6.416489e-01 setrgbcolor -fill -grestore -newpath -7.370513e+01 8.287278e+01 moveto -7.570438e+01 8.08786e+01 lineto -7.683119e+01 8.112799e+01 lineto -7.462148e+01 8.307559e+01 lineto -7.370513e+01 8.287278e+01 lineto -closepath -gsave -6.146696e-01 6.146696e-01 6.146696e-01 setrgbcolor -fill -grestore -newpath -7.163997e+01 8.458781e+01 moveto -7.370513e+01 8.287278e+01 lineto -7.462148e+01 8.307559e+01 lineto -7.233893e+01 8.474251e+01 lineto -7.163997e+01 8.458781e+01 lineto -closepath -gsave -5.880504e-01 5.880504e-01 5.880504e-01 setrgbcolor -fill -grestore -newpath -6.952454e+01 8.601071e+01 moveto -7.163997e+01 8.458781e+01 lineto -7.233893e+01 8.474251e+01 lineto -7.000082e+01 8.611613e+01 lineto -6.952454e+01 8.601071e+01 lineto -closepath -gsave -5.623382e-01 5.623382e-01 5.623382e-01 setrgbcolor -fill -grestore -newpath -6.737486e+01 8.713072e+01 moveto -6.952454e+01 8.601071e+01 lineto -7.000082e+01 8.611613e+01 lineto -6.762486e+01 8.718605e+01 lineto -6.737486e+01 8.713072e+01 lineto -closepath -gsave -5.380038e-01 5.380038e-01 5.380038e-01 setrgbcolor -fill -grestore -newpath -6.520721e+01 8.793935e+01 moveto -6.737486e+01 8.713072e+01 lineto -6.762486e+01 8.718605e+01 lineto -6.522902e+01 8.794418e+01 lineto -6.520721e+01 8.793935e+01 lineto -closepath -gsave -5.154288e-01 5.154288e-01 5.154288e-01 setrgbcolor -fill -grestore -newpath -6.303798e+01 8.843048e+01 moveto -6.520721e+01 8.793935e+01 lineto -6.522902e+01 8.794418e+01 lineto -6.283145e+01 8.838477e+01 lineto -6.303798e+01 8.843048e+01 lineto -closepath -gsave -4.948985e-01 4.948985e-01 4.948985e-01 setrgbcolor -fill -grestore -newpath -5.668442e+01 8.797386e+01 moveto -5.87604e+01 8.84478e+01 lineto -5.810358e+01 8.830243e+01 lineto -5.580908e+01 8.778013e+01 lineto -5.668442e+01 8.797386e+01 lineto -closepath -gsave -4.531656e-01 4.531656e-01 4.531656e-01 setrgbcolor -fill -grestore -newpath -7.662392e+01 5.154824e+00 moveto -7.440652e+01 4.286335e+00 lineto -7.524441e+01 4.498382e+00 lineto -7.765931e+01 5.416857e+00 lineto -7.662392e+01 5.154824e+00 lineto -closepath -gsave -4.690268e-01 4.690268e-01 4.690268e-01 setrgbcolor -fill -grestore -newpath -7.875331e+01 6.33253e+00 moveto -7.662392e+01 5.154824e+00 lineto -7.765931e+01 5.416857e+00 lineto -7.997838e+01 6.642565e+00 lineto -7.875331e+01 6.33253e+00 lineto -closepath -gsave -4.861618e-01 4.861618e-01 4.861618e-01 setrgbcolor -fill -grestore -newpath -8.077859e+01 7.810536e+00 moveto -7.875331e+01 6.33253e+00 lineto -7.997838e+01 6.642565e+00 lineto -8.218406e+01 8.166226e+00 lineto -8.077859e+01 7.810536e+00 lineto -closepath -gsave -5.055461e-01 5.055461e-01 5.055461e-01 setrgbcolor -fill -grestore -newpath -8.268441e+01 9.577653e+00 moveto -8.077859e+01 7.810536e+00 lineto -8.218406e+01 8.166226e+00 lineto -8.425965e+01 9.976305e+00 lineto -8.268441e+01 9.577653e+00 lineto -closepath -gsave -5.270372e-01 5.270372e-01 5.270372e-01 setrgbcolor -fill -grestore -newpath -8.445636e+01 1.16205e+01 moveto -8.268441e+01 9.577653e+00 lineto -8.425965e+01 9.976305e+00 lineto -8.618943e+01 1.20591e+01 lineto -8.445636e+01 1.16205e+01 lineto -closepath -gsave -5.50396e-01 5.50396e-01 5.50396e-01 setrgbcolor -fill -grestore -newpath -8.608101e+01 1.392362e+01 moveto -8.445636e+01 1.16205e+01 lineto -8.618943e+01 1.20591e+01 lineto -8.79588e+01 1.439884e+01 lineto -8.608101e+01 1.392362e+01 lineto -closepath -gsave -5.752873e-01 5.752873e-01 5.752873e-01 setrgbcolor -fill -grestore -newpath -8.754607e+01 1.646957e+01 moveto -8.608101e+01 1.392362e+01 lineto -8.79588e+01 1.439884e+01 lineto -8.955436e+01 1.697782e+01 lineto -8.754607e+01 1.646957e+01 lineto -closepath -gsave -6.012848e-01 6.012848e-01 6.012848e-01 setrgbcolor -fill -grestore -newpath -8.884045e+01 1.923908e+01 moveto -8.754607e+01 1.646957e+01 lineto -8.955436e+01 1.697782e+01 lineto -9.096403e+01 1.97765e+01 lineto -8.884045e+01 1.923908e+01 lineto -closepath -gsave -6.278814e-01 6.278814e-01 6.278814e-01 setrgbcolor -fill -grestore -newpath -8.995434e+01 2.221118e+01 moveto -8.884045e+01 1.923908e+01 lineto -9.096403e+01 1.97765e+01 lineto -9.217715e+01 2.277371e+01 lineto -8.995434e+01 2.221118e+01 lineto -closepath -gsave -6.545039e-01 6.545039e-01 6.545039e-01 setrgbcolor -fill -grestore -newpath -9.087932e+01 2.536337e+01 moveto -8.995434e+01 2.221118e+01 lineto -9.217715e+01 2.277371e+01 lineto -9.318452e+01 2.594676e+01 lineto -9.087932e+01 2.536337e+01 lineto -closepath -gsave -6.80532e-01 6.80532e-01 6.80532e-01 setrgbcolor -fill -grestore -newpath -9.160838e+01 2.867179e+01 moveto -9.087932e+01 2.536337e+01 lineto -9.318452e+01 2.594676e+01 lineto -9.397852e+01 2.927161e+01 lineto -9.160838e+01 2.867179e+01 lineto -closepath -gsave -7.053205e-01 7.053205e-01 7.053205e-01 setrgbcolor -fill -grestore -newpath -9.213601e+01 3.21114e+01 moveto -9.160838e+01 2.867179e+01 lineto -9.397852e+01 2.927161e+01 lineto -9.455314e+01 3.272311e+01 lineto -9.213601e+01 3.21114e+01 lineto -closepath -gsave -7.282234e-01 7.282234e-01 7.282234e-01 setrgbcolor -fill -grestore -newpath -9.24582e+01 3.565614e+01 moveto -9.213601e+01 3.21114e+01 lineto -9.455314e+01 3.272311e+01 lineto -9.490403e+01 3.627512e+01 lineto -9.24582e+01 3.565614e+01 lineto -closepath -gsave -7.486195e-01 7.486195e-01 7.486195e-01 setrgbcolor -fill -grestore -newpath -9.257252e+01 3.927919e+01 moveto -9.24582e+01 3.565614e+01 lineto -9.490403e+01 3.627512e+01 lineto -9.502854e+01 3.990075e+01 lineto -9.257252e+01 3.927919e+01 lineto -closepath -gsave -7.659377e-01 7.659377e-01 7.659377e-01 setrgbcolor -fill -grestore -newpath -9.247811e+01 4.295313e+01 moveto -9.257252e+01 3.927919e+01 lineto -9.502854e+01 3.990075e+01 lineto -9.492571e+01 4.357255e+01 lineto -9.247811e+01 4.295313e+01 lineto -closepath -gsave -7.796806e-01 7.796806e-01 7.796806e-01 setrgbcolor -fill -grestore -newpath -9.217567e+01 4.665012e+01 moveto -9.247811e+01 4.295313e+01 lineto -9.492571e+01 4.357255e+01 lineto -9.459634e+01 4.726273e+01 lineto -9.217567e+01 4.665012e+01 lineto -closepath -gsave -7.89446e-01 7.89446e-01 7.89446e-01 setrgbcolor -fill -grestore -newpath -9.16675e+01 5.03422e+01 moveto -9.217567e+01 4.665012e+01 lineto -9.459634e+01 4.726273e+01 lineto -9.404291e+01 5.094336e+01 lineto -9.16675e+01 5.03422e+01 lineto -closepath -gsave -7.949437e-01 7.949437e-01 7.949437e-01 setrgbcolor -fill -grestore -newpath -9.095745e+01 5.400141e+01 moveto -9.16675e+01 5.03422e+01 lineto -9.404291e+01 5.094336e+01 lineto -9.326961e+01 5.458655e+01 lineto -9.095745e+01 5.400141e+01 lineto -closepath -gsave -7.960088e-01 7.960088e-01 7.960088e-01 setrgbcolor -fill -grestore -newpath -9.005089e+01 5.760004e+01 moveto -9.095745e+01 5.400141e+01 lineto -9.326961e+01 5.458655e+01 lineto -9.228229e+01 5.816475e+01 lineto -9.005089e+01 5.760004e+01 lineto -closepath -gsave -7.926082e-01 7.926082e-01 7.926082e-01 setrgbcolor -fill -grestore -newpath -8.895468e+01 6.111085e+01 moveto -9.005089e+01 5.760004e+01 lineto -9.228229e+01 5.816475e+01 lineto -9.108844e+01 6.165085e+01 lineto -8.895468e+01 6.111085e+01 lineto -closepath -gsave -7.84843e-01 7.84843e-01 7.84843e-01 setrgbcolor -fill -grestore -newpath -8.767713e+01 6.450727e+01 moveto -8.895468e+01 6.111085e+01 lineto -9.108844e+01 6.165085e+01 lineto -8.969709e+01 6.501847e+01 lineto -8.767713e+01 6.450727e+01 lineto -closepath -gsave -7.729436e-01 7.729436e-01 7.729436e-01 setrgbcolor -fill -grestore -newpath -8.62279e+01 6.776358e+01 moveto -8.767713e+01 6.450727e+01 lineto -8.969709e+01 6.501847e+01 lineto -8.811877e+01 6.824211e+01 lineto -8.62279e+01 6.776358e+01 lineto -closepath -gsave -7.572597e-01 7.572597e-01 7.572597e-01 setrgbcolor -fill -grestore -newpath -8.461796e+01 7.085513e+01 moveto -8.62279e+01 6.776358e+01 lineto -8.811877e+01 6.824211e+01 lineto -8.636543e+01 7.129737e+01 lineto -8.461796e+01 7.085513e+01 lineto -closepath -gsave -7.382457e-01 7.382457e-01 7.382457e-01 setrgbcolor -fill -grestore -newpath -8.285951e+01 7.375851e+01 moveto -8.461796e+01 7.085513e+01 lineto -8.636543e+01 7.129737e+01 lineto -8.445034e+01 7.416111e+01 lineto -8.285951e+01 7.375851e+01 lineto -closepath -gsave -7.164411e-01 7.164411e-01 7.164411e-01 setrgbcolor -fill -grestore -newpath -8.096585e+01 7.645175e+01 moveto -8.285951e+01 7.375851e+01 lineto -8.445034e+01 7.416111e+01 lineto -8.238801e+01 7.681166e+01 lineto -8.096585e+01 7.645175e+01 lineto -closepath -gsave -6.924473e-01 6.924473e-01 6.924473e-01 setrgbcolor -fill -grestore -newpath -7.895133e+01 7.891446e+01 moveto -8.096585e+01 7.645175e+01 lineto -8.238801e+01 7.681166e+01 lineto -8.019404e+01 7.922896e+01 lineto -7.895133e+01 7.891446e+01 lineto -closepath -gsave -6.669036e-01 6.669036e-01 6.669036e-01 setrgbcolor -fill -grestore -newpath -7.683119e+01 8.112799e+01 moveto -7.895133e+01 7.891446e+01 lineto -8.019404e+01 7.922896e+01 lineto -7.788505e+01 8.13947e+01 lineto -7.683119e+01 8.112799e+01 lineto -closepath -gsave -6.404607e-01 6.404607e-01 6.404607e-01 setrgbcolor -fill -grestore -newpath -7.462148e+01 8.307559e+01 moveto -7.683119e+01 8.112799e+01 lineto -7.788505e+01 8.13947e+01 lineto -7.547851e+01 8.329248e+01 lineto -7.462148e+01 8.307559e+01 lineto -closepath -gsave -6.137557e-01 6.137557e-01 6.137557e-01 setrgbcolor -fill -grestore -newpath -7.233893e+01 8.474251e+01 moveto -7.462148e+01 8.307559e+01 lineto -7.547851e+01 8.329248e+01 lineto -7.299264e+01 8.490794e+01 lineto -7.233893e+01 8.474251e+01 lineto -closepath -gsave -5.873887e-01 5.873887e-01 5.873887e-01 setrgbcolor -fill -grestore -newpath -7.000082e+01 8.611613e+01 moveto -7.233893e+01 8.474251e+01 lineto -7.299264e+01 8.490794e+01 lineto -7.044627e+01 8.622886e+01 lineto -7.000082e+01 8.611613e+01 lineto -closepath -gsave -5.619016e-01 5.619016e-01 5.619016e-01 setrgbcolor -fill -grestore -newpath -6.762486e+01 8.718605e+01 moveto -7.000082e+01 8.611613e+01 lineto -7.044627e+01 8.622886e+01 lineto -6.785866e+01 8.724522e+01 lineto -6.762486e+01 8.718605e+01 lineto -closepath -gsave -5.377616e-01 5.377616e-01 5.377616e-01 setrgbcolor -fill -grestore -newpath -6.522902e+01 8.794418e+01 moveto -6.762486e+01 8.718605e+01 lineto -6.785866e+01 8.724522e+01 lineto -6.524942e+01 8.794934e+01 lineto -6.522902e+01 8.794418e+01 lineto -closepath -gsave -5.153483e-01 5.153483e-01 5.153483e-01 setrgbcolor -fill -grestore -newpath -6.283145e+01 8.838477e+01 moveto -6.522902e+01 8.794418e+01 lineto -6.524942e+01 8.794934e+01 lineto -6.263828e+01 8.833588e+01 lineto -6.283145e+01 8.838477e+01 lineto -closepath -gsave -4.949465e-01 4.949465e-01 4.949465e-01 setrgbcolor -fill -grestore -newpath -7.765931e+01 5.416857e+00 moveto -7.524441e+01 4.498382e+00 lineto -7.601913e+01 4.722891e+00 lineto -7.861666e+01 5.69429e+00 lineto -7.765931e+01 5.416857e+00 lineto -closepath -gsave -4.681906e-01 4.681906e-01 4.681906e-01 setrgbcolor -fill -grestore -newpath -7.997838e+01 6.642565e+00 moveto -7.765931e+01 5.416857e+00 lineto -7.861666e+01 5.69429e+00 lineto -8.111111e+01 6.970821e+00 lineto -7.997838e+01 6.642565e+00 lineto -closepath -gsave -4.849926e-01 4.849926e-01 4.849926e-01 setrgbcolor -fill -grestore -newpath -8.218406e+01 8.166226e+00 moveto -7.997838e+01 6.642565e+00 lineto -8.111111e+01 6.970821e+00 lineto -8.348359e+01 8.54282e+00 lineto -8.218406e+01 8.166226e+00 lineto -closepath -gsave -5.039891e-01 5.039891e-01 5.039891e-01 setrgbcolor -fill -grestore -newpath -8.425965e+01 9.976305e+00 moveto -8.218406e+01 8.166226e+00 lineto -8.348359e+01 8.54282e+00 lineto -8.571614e+01 1.039839e+01 lineto -8.425965e+01 9.976305e+00 lineto -closepath -gsave -5.250417e-01 5.250417e-01 5.250417e-01 setrgbcolor -fill -grestore -newpath -8.618943e+01 1.20591e+01 moveto -8.425965e+01 9.976305e+00 lineto -8.571614e+01 1.039839e+01 lineto -8.779186e+01 1.252347e+01 lineto -8.618943e+01 1.20591e+01 lineto -closepath -gsave -5.479182e-01 5.479182e-01 5.479182e-01 setrgbcolor -fill -grestore -newpath -8.79588e+01 1.439884e+01 moveto -8.618943e+01 1.20591e+01 lineto -8.779186e+01 1.252347e+01 lineto -8.969503e+01 1.490199e+01 lineto -8.79588e+01 1.439884e+01 lineto -closepath -gsave -5.72293e-01 5.72293e-01 5.72293e-01 setrgbcolor -fill -grestore -newpath -8.955436e+01 1.697782e+01 moveto -8.79588e+01 1.439884e+01 lineto -8.969503e+01 1.490199e+01 lineto -9.141126e+01 1.751593e+01 lineto -8.955436e+01 1.697782e+01 lineto -closepath -gsave -5.977518e-01 5.977518e-01 5.977518e-01 setrgbcolor -fill -grestore -newpath -9.096403e+01 1.97765e+01 moveto -8.955436e+01 1.697782e+01 lineto -9.141126e+01 1.751593e+01 lineto -9.292754e+01 2.034551e+01 lineto -9.096403e+01 1.97765e+01 lineto -closepath -gsave -6.238017e-01 6.238017e-01 6.238017e-01 setrgbcolor -fill -grestore -newpath -9.217715e+01 2.277371e+01 moveto -9.096403e+01 1.97765e+01 lineto -9.292754e+01 2.034551e+01 lineto -9.423239e+01 2.336931e+01 lineto -9.217715e+01 2.277371e+01 lineto -closepath -gsave -6.498849e-01 6.498849e-01 6.498849e-01 setrgbcolor -fill -grestore -newpath -9.318452e+01 2.594676e+01 moveto -9.217715e+01 2.277371e+01 lineto -9.423239e+01 2.336931e+01 lineto -9.531594e+01 2.656443e+01 lineto -9.318452e+01 2.594676e+01 lineto -closepath -gsave -6.753979e-01 6.753979e-01 6.753979e-01 setrgbcolor -fill -grestore -newpath -9.397852e+01 2.927161e+01 moveto -9.318452e+01 2.594676e+01 lineto -9.531594e+01 2.656443e+01 lineto -9.616999e+01 2.990669e+01 lineto -9.397852e+01 2.927161e+01 lineto -closepath -gsave -6.997119e-01 6.997119e-01 6.997119e-01 setrgbcolor -fill -grestore -newpath -9.455314e+01 3.272311e+01 moveto -9.397852e+01 2.927161e+01 lineto -9.616999e+01 2.990669e+01 lineto -9.678807e+01 3.337078e+01 lineto -9.455314e+01 3.272311e+01 lineto -closepath -gsave -7.22197e-01 7.22197e-01 7.22197e-01 setrgbcolor -fill -grestore -newpath -9.490403e+01 3.627512e+01 moveto -9.455314e+01 3.272311e+01 lineto -9.678807e+01 3.337078e+01 lineto -9.71655e+01 3.693047e+01 lineto -9.490403e+01 3.627512e+01 lineto -closepath -gsave -7.422467e-01 7.422467e-01 7.422467e-01 setrgbcolor -fill -grestore -newpath -9.502854e+01 3.990075e+01 moveto -9.490403e+01 3.627512e+01 lineto -9.71655e+01 3.693047e+01 lineto -9.729942e+01 4.055883e+01 lineto -9.502854e+01 3.990075e+01 lineto -closepath -gsave -7.593026e-01 7.593026e-01 7.593026e-01 setrgbcolor -fill -grestore -newpath -9.492571e+01 4.357255e+01 moveto -9.502854e+01 3.990075e+01 lineto -9.729942e+01 4.055883e+01 lineto -9.718882e+01 4.422838e+01 lineto -9.492571e+01 4.357255e+01 lineto -closepath -gsave -7.728775e-01 7.728775e-01 7.728775e-01 setrgbcolor -fill -grestore -newpath -9.459634e+01 4.726273e+01 moveto -9.492571e+01 4.357255e+01 lineto -9.718882e+01 4.422838e+01 lineto -9.683453e+01 4.791135e+01 lineto -9.459634e+01 4.726273e+01 lineto -closepath -gsave -7.825759e-01 7.825759e-01 7.825759e-01 setrgbcolor -fill -grestore -newpath -9.404291e+01 5.094336e+01 moveto -9.459634e+01 4.726273e+01 lineto -9.683453e+01 4.791135e+01 lineto -9.623925e+01 5.157984e+01 lineto -9.404291e+01 5.094336e+01 lineto -closepath -gsave -7.88111e-01 7.88111e-01 7.88111e-01 setrgbcolor -fill -grestore -newpath -9.326961e+01 5.458655e+01 moveto -9.404291e+01 5.094336e+01 lineto -9.623925e+01 5.157984e+01 lineto -9.540747e+01 5.520609e+01 lineto -9.326961e+01 5.458655e+01 lineto -closepath -gsave -7.893175e-01 7.893175e-01 7.893175e-01 setrgbcolor -fill -grestore -newpath -9.228229e+01 5.816475e+01 moveto -9.326961e+01 5.458655e+01 lineto -9.540747e+01 5.520609e+01 lineto -9.434549e+01 5.876265e+01 lineto -9.228229e+01 5.816475e+01 lineto -closepath -gsave -7.861584e-01 7.861584e-01 7.861584e-01 setrgbcolor -fill -grestore -newpath -9.108844e+01 6.165085e+01 moveto -9.228229e+01 5.816475e+01 lineto -9.434549e+01 5.876265e+01 lineto -9.306136e+01 6.222259e+01 lineto -9.108844e+01 6.165085e+01 lineto -closepath -gsave -7.78727e-01 7.78727e-01 7.78727e-01 setrgbcolor -fill -grestore -newpath -8.969709e+01 6.501847e+01 moveto -9.108844e+01 6.165085e+01 lineto -9.306136e+01 6.222259e+01 lineto -9.156478e+01 6.555971e+01 lineto -8.969709e+01 6.501847e+01 lineto -closepath -gsave -7.672429e-01 7.672429e-01 7.672429e-01 setrgbcolor -fill -grestore -newpath -8.811877e+01 6.824211e+01 moveto -8.969709e+01 6.501847e+01 lineto -9.156478e+01 6.555971e+01 lineto -8.98671e+01 6.874876e+01 lineto -8.811877e+01 6.824211e+01 lineto -closepath -gsave -7.520424e-01 7.520424e-01 7.520424e-01 setrgbcolor -fill -grestore -newpath -8.636543e+01 7.129737e+01 moveto -8.811877e+01 6.824211e+01 lineto -8.98671e+01 6.874876e+01 lineto -8.798117e+01 7.176559e+01 lineto -8.636543e+01 7.129737e+01 lineto -closepath -gsave -7.335643e-01 7.335643e-01 7.335643e-01 setrgbcolor -fill -grestore -newpath -8.445034e+01 7.416111e+01 moveto -8.636543e+01 7.129737e+01 lineto -8.798117e+01 7.176559e+01 lineto -8.592126e+01 7.458737e+01 lineto -8.445034e+01 7.416111e+01 lineto -closepath -gsave -7.123308e-01 7.123308e-01 7.123308e-01 setrgbcolor -fill -grestore -newpath -8.238801e+01 7.681166e+01 moveto -8.445034e+01 7.416111e+01 lineto -8.592126e+01 7.458737e+01 lineto -8.370296e+01 7.719273e+01 lineto -8.238801e+01 7.681166e+01 lineto -closepath -gsave -6.889262e-01 6.889262e-01 6.889262e-01 setrgbcolor -fill -grestore -newpath -8.019404e+01 7.922896e+01 moveto -8.238801e+01 7.681166e+01 lineto -8.370296e+01 7.719273e+01 lineto -8.134308e+01 7.956194e+01 lineto -8.019404e+01 7.922896e+01 lineto -closepath -gsave -6.639722e-01 6.639722e-01 6.639722e-01 setrgbcolor -fill -grestore -newpath -7.788505e+01 8.13947e+01 moveto -8.019404e+01 7.922896e+01 lineto -8.134308e+01 7.956194e+01 lineto -7.885947e+01 8.167708e+01 lineto -7.788505e+01 8.13947e+01 lineto -closepath -gsave -6.381031e-01 6.381031e-01 6.381031e-01 setrgbcolor -fill -grestore -newpath -7.547851e+01 8.329248e+01 moveto -7.788505e+01 8.13947e+01 lineto -7.885947e+01 8.167708e+01 lineto -7.627094e+01 8.352212e+01 lineto -7.547851e+01 8.329248e+01 lineto -closepath -gsave -6.119412e-01 6.119412e-01 6.119412e-01 setrgbcolor -fill -grestore -newpath -7.299264e+01 8.490794e+01 moveto -7.547851e+01 8.329248e+01 lineto -7.627094e+01 8.352212e+01 lineto -7.359708e+01 8.50831e+01 lineto -7.299264e+01 8.490794e+01 lineto -closepath -gsave -5.86074e-01 5.86074e-01 5.86074e-01 setrgbcolor -fill -grestore -newpath -7.044627e+01 8.622886e+01 moveto -7.299264e+01 8.490794e+01 lineto -7.359708e+01 8.50831e+01 lineto -7.085814e+01 8.634821e+01 lineto -7.044627e+01 8.622886e+01 lineto -closepath -gsave -5.610334e-01 5.610334e-01 5.610334e-01 setrgbcolor -fill -grestore -newpath -6.785866e+01 8.724522e+01 moveto -7.044627e+01 8.622886e+01 lineto -7.085814e+01 8.634821e+01 lineto -6.807485e+01 8.730787e+01 lineto -6.785866e+01 8.724522e+01 lineto -closepath -gsave -5.372795e-01 5.372795e-01 5.372795e-01 setrgbcolor -fill -grestore -newpath -6.524942e+01 8.794934e+01 moveto -6.785866e+01 8.724522e+01 lineto -6.807485e+01 8.730787e+01 lineto -6.526828e+01 8.795481e+01 lineto -6.524942e+01 8.794934e+01 lineto -closepath -gsave -5.151879e-01 5.151879e-01 5.151879e-01 setrgbcolor -fill -grestore -newpath -6.263828e+01 8.833588e+01 moveto -6.524942e+01 8.794934e+01 lineto -6.526828e+01 8.795481e+01 lineto -6.245968e+01 8.828413e+01 lineto -6.263828e+01 8.833588e+01 lineto -closepath -gsave -4.950423e-01 4.950423e-01 4.950423e-01 setrgbcolor -fill -grestore -newpath -7.861666e+01 5.69429e+00 moveto -7.601913e+01 4.722891e+00 lineto -7.672592e+01 4.958478e+00 lineto -7.949006e+01 5.985412e+00 lineto -7.861666e+01 5.69429e+00 lineto -closepath -gsave -4.669553e-01 4.669553e-01 4.669553e-01 setrgbcolor -fill -grestore -newpath -8.111111e+01 6.970821e+00 moveto -7.861666e+01 5.69429e+00 lineto -7.949006e+01 5.985412e+00 lineto -8.214451e+01 7.315273e+00 lineto -8.111111e+01 6.970821e+00 lineto -closepath -gsave -4.832675e-01 4.832675e-01 4.832675e-01 setrgbcolor -fill -grestore -newpath -8.348359e+01 8.54282e+00 moveto -8.111111e+01 6.970821e+00 lineto -8.214451e+01 7.315273e+00 lineto -8.466916e+01 8.937995e+00 lineto -8.348359e+01 8.54282e+00 lineto -closepath -gsave -5.016942e-01 5.016942e-01 5.016942e-01 setrgbcolor -fill -grestore -newpath -8.571614e+01 1.039839e+01 moveto -8.348359e+01 8.54282e+00 lineto -8.466916e+01 8.937995e+00 lineto -8.704491e+01 1.084129e+01 lineto -8.571614e+01 1.039839e+01 lineto -closepath -gsave -5.221028e-01 5.221028e-01 5.221028e-01 setrgbcolor -fill -grestore -newpath -8.779186e+01 1.252347e+01 moveto -8.571614e+01 1.039839e+01 lineto -8.704491e+01 1.084129e+01 lineto -8.925377e+01 1.301076e+01 lineto -8.779186e+01 1.252347e+01 lineto -closepath -gsave -5.442715e-01 5.442715e-01 5.442715e-01 setrgbcolor -fill -grestore -newpath -8.969503e+01 1.490199e+01 moveto -8.779186e+01 1.252347e+01 lineto -8.925377e+01 1.301076e+01 lineto -9.127902e+01 1.542996e+01 lineto -8.969503e+01 1.490199e+01 lineto -closepath -gsave -5.678884e-01 5.678884e-01 5.678884e-01 setrgbcolor -fill -grestore -newpath -9.141126e+01 1.751593e+01 moveto -8.969503e+01 1.490199e+01 lineto -9.127902e+01 1.542996e+01 lineto -9.310532e+01 1.80806e+01 lineto -9.141126e+01 1.751593e+01 lineto -closepath -gsave -5.925569e-01 5.925569e-01 5.925569e-01 setrgbcolor -fill -grestore -newpath -9.292754e+01 2.034551e+01 moveto -9.141126e+01 1.751593e+01 lineto -9.310532e+01 1.80806e+01 lineto -9.471886e+01 2.09426e+01 lineto -9.292754e+01 2.034551e+01 lineto -closepath -gsave -6.178045e-01 6.178045e-01 6.178045e-01 setrgbcolor -fill -grestore -newpath -9.423239e+01 2.336931e+01 moveto -9.292754e+01 2.034551e+01 lineto -9.471886e+01 2.09426e+01 lineto -9.610741e+01 2.399429e+01 lineto -9.423239e+01 2.336931e+01 lineto -closepath -gsave -6.430966e-01 6.430966e-01 6.430966e-01 setrgbcolor -fill -grestore -newpath -9.531594e+01 2.656443e+01 moveto -9.423239e+01 2.336931e+01 lineto -9.610741e+01 2.399429e+01 lineto -9.726046e+01 2.721258e+01 lineto -9.531594e+01 2.656443e+01 lineto -closepath -gsave -6.678534e-01 6.678534e-01 6.678534e-01 setrgbcolor -fill -grestore -newpath -9.616999e+01 2.990669e+01 moveto -9.531594e+01 2.656443e+01 lineto -9.726046e+01 2.721258e+01 lineto -9.816929e+01 3.057309e+01 lineto -9.616999e+01 2.990669e+01 lineto -closepath -gsave -6.914705e-01 6.914705e-01 6.914705e-01 setrgbcolor -fill -grestore -newpath -9.678807e+01 3.337078e+01 moveto -9.616999e+01 2.990669e+01 lineto -9.816929e+01 3.057309e+01 lineto -9.882701e+01 3.40504e+01 lineto -9.678807e+01 3.337078e+01 lineto -closepath -gsave -7.133416e-01 7.133416e-01 7.133416e-01 setrgbcolor -fill -grestore -newpath -9.71655e+01 3.693047e+01 moveto -9.678807e+01 3.337078e+01 lineto -9.882701e+01 3.40504e+01 lineto -9.922865e+01 3.761817e+01 lineto -9.71655e+01 3.693047e+01 lineto -closepath -gsave -7.328817e-01 7.328817e-01 7.328817e-01 setrgbcolor -fill -grestore -newpath -9.729942e+01 4.055883e+01 moveto -9.71655e+01 3.693047e+01 lineto -9.922865e+01 3.761817e+01 lineto -9.937116e+01 4.124939e+01 lineto -9.729942e+01 4.055883e+01 lineto -closepath -gsave -7.495511e-01 7.495511e-01 7.495511e-01 setrgbcolor -fill -grestore -newpath -9.718882e+01 4.422838e+01 moveto -9.729942e+01 4.055883e+01 lineto -9.937116e+01 4.124939e+01 lineto -9.925347e+01 4.491657e+01 lineto -9.718882e+01 4.422838e+01 lineto -closepath -gsave -7.628772e-01 7.628772e-01 7.628772e-01 setrgbcolor -fill -grestore -newpath -9.683453e+01 4.791135e+01 moveto -9.718882e+01 4.422838e+01 lineto -9.925347e+01 4.491657e+01 lineto -9.887646e+01 4.859196e+01 lineto -9.683453e+01 4.791135e+01 lineto -closepath -gsave -7.724747e-01 7.724747e-01 7.724747e-01 setrgbcolor -fill -grestore -newpath -9.623925e+01 5.157984e+01 moveto -9.683453e+01 4.791135e+01 lineto -9.887646e+01 4.859196e+01 lineto -9.824299e+01 5.224773e+01 lineto -9.623925e+01 5.157984e+01 lineto -closepath -gsave -7.780619e-01 7.780619e-01 7.780619e-01 setrgbcolor -fill -grestore -newpath -9.540747e+01 5.520609e+01 moveto -9.623925e+01 5.157984e+01 lineto -9.824299e+01 5.224773e+01 lineto -9.735786e+01 5.58562e+01 lineto -9.540747e+01 5.520609e+01 lineto -closepath -gsave -7.794731e-01 7.794731e-01 7.794731e-01 setrgbcolor -fill -grestore -newpath -9.434549e+01 5.876265e+01 moveto -9.540747e+01 5.520609e+01 lineto -9.735786e+01 5.58562e+01 lineto -9.622777e+01 5.939005e+01 lineto -9.434549e+01 5.876265e+01 lineto -closepath -gsave -7.766654e-01 7.766654e-01 7.766654e-01 setrgbcolor -fill -grestore -newpath -9.306136e+01 6.222259e+01 moveto -9.434549e+01 5.876265e+01 lineto -9.622777e+01 5.939005e+01 lineto -9.486126e+01 6.282253e+01 lineto -9.306136e+01 6.222259e+01 lineto -closepath -gsave -7.697212e-01 7.697212e-01 7.697212e-01 setrgbcolor -fill -grestore -newpath -9.156478e+01 6.555971e+01 moveto -9.306136e+01 6.222259e+01 lineto -9.486126e+01 6.282253e+01 lineto -9.32687e+01 6.612766e+01 lineto -9.156478e+01 6.555971e+01 lineto -closepath -gsave -7.588444e-01 7.588444e-01 7.588444e-01 setrgbcolor -fill -grestore -newpath -8.98671e+01 6.874876e+01 moveto -9.156478e+01 6.555971e+01 lineto -9.32687e+01 6.612766e+01 lineto -9.146212e+01 6.928042e+01 lineto -8.98671e+01 6.874876e+01 lineto -closepath -gsave -7.443516e-01 7.443516e-01 7.443516e-01 setrgbcolor -fill -grestore -newpath -8.798117e+01 7.176559e+01 moveto -8.98671e+01 6.874876e+01 lineto -9.146212e+01 6.928042e+01 lineto -8.945522e+01 7.225693e+01 lineto -8.798117e+01 7.176559e+01 lineto -closepath -gsave -7.266588e-01 7.266588e-01 7.266588e-01 setrgbcolor -fill -grestore -newpath -8.592126e+01 7.458737e+01 moveto -8.798117e+01 7.176559e+01 lineto -8.945522e+01 7.225693e+01 lineto -8.726318e+01 7.503466e+01 lineto -8.592126e+01 7.458737e+01 lineto -closepath -gsave -7.062636e-01 7.062636e-01 7.062636e-01 setrgbcolor -fill -grestore -newpath -8.370296e+01 7.719273e+01 moveto -8.592126e+01 7.458737e+01 lineto -8.726318e+01 7.503466e+01 lineto -8.49026e+01 7.759259e+01 lineto -8.370296e+01 7.719273e+01 lineto -closepath -gsave -6.837245e-01 6.837245e-01 6.837245e-01 setrgbcolor -fill -grestore -newpath -8.134308e+01 7.956194e+01 moveto -8.370296e+01 7.719273e+01 lineto -8.49026e+01 7.759259e+01 lineto -8.239135e+01 7.991135e+01 lineto -8.134308e+01 7.956194e+01 lineto -closepath -gsave -6.596378e-01 6.596378e-01 6.596378e-01 setrgbcolor -fill -grestore -newpath -7.885947e+01 8.167708e+01 moveto -8.134308e+01 7.956194e+01 lineto -8.239135e+01 7.991135e+01 lineto -7.974844e+01 8.197339e+01 lineto -7.885947e+01 8.167708e+01 lineto -closepath -gsave -6.346136e-01 6.346136e-01 6.346136e-01 setrgbcolor -fill -grestore -newpath -7.627094e+01 8.352212e+01 moveto -7.885947e+01 8.167708e+01 lineto -7.974844e+01 8.197339e+01 lineto -7.699387e+01 8.376309e+01 lineto -7.627094e+01 8.352212e+01 lineto -closepath -gsave -6.092526e-01 6.092526e-01 6.092526e-01 setrgbcolor -fill -grestore -newpath -7.359708e+01 8.50831e+01 moveto -7.627094e+01 8.352212e+01 lineto -7.699387e+01 8.376309e+01 lineto -7.414851e+01 8.526691e+01 lineto -7.359708e+01 8.50831e+01 lineto -closepath -gsave -5.841235e-01 5.841235e-01 5.841235e-01 setrgbcolor -fill -grestore -newpath -7.085814e+01 8.634821e+01 moveto -7.359708e+01 8.50831e+01 lineto -7.414851e+01 8.526691e+01 lineto -7.123389e+01 8.647346e+01 lineto -7.085814e+01 8.634821e+01 lineto -closepath -gsave -5.597435e-01 5.597435e-01 5.597435e-01 setrgbcolor -fill -grestore -newpath -6.807485e+01 8.730787e+01 moveto -7.085814e+01 8.634821e+01 lineto -7.123389e+01 8.647346e+01 lineto -6.827207e+01 8.737361e+01 lineto -6.807485e+01 8.730787e+01 lineto -closepath -gsave -5.365621e-01 5.365621e-01 5.365621e-01 setrgbcolor -fill -grestore -newpath -6.526828e+01 8.795481e+01 moveto -6.807485e+01 8.730787e+01 lineto -6.827207e+01 8.737361e+01 lineto -6.528549e+01 8.796054e+01 lineto -6.526828e+01 8.795481e+01 lineto -closepath -gsave -5.149488e-01 5.149488e-01 5.149488e-01 setrgbcolor -fill -grestore -newpath -6.245968e+01 8.828413e+01 moveto -6.526828e+01 8.795481e+01 lineto -6.528549e+01 8.796054e+01 lineto -6.229674e+01 8.822981e+01 lineto -6.245968e+01 8.828413e+01 lineto -closepath -gsave -4.951854e-01 4.951854e-01 4.951854e-01 setrgbcolor -fill -grestore -newpath -8.214451e+01 7.315273e+00 moveto -7.949006e+01 5.985412e+00 lineto -8.027412e+01 6.288427e+00 lineto -8.30722e+01 7.673799e+00 lineto -8.214451e+01 7.315273e+00 lineto -closepath -gsave -4.810202e-01 4.810202e-01 4.810202e-01 setrgbcolor -fill -grestore -newpath -8.466916e+01 8.937995e+00 moveto -8.214451e+01 7.315273e+00 lineto -8.30722e+01 7.673799e+00 lineto -8.573346e+01 9.349316e+00 lineto -8.466916e+01 8.937995e+00 lineto -closepath -gsave -4.987086e-01 4.987086e-01 4.987086e-01 setrgbcolor -fill -grestore -newpath -8.704491e+01 1.084129e+01 moveto -8.466916e+01 8.937995e+00 lineto -8.573346e+01 9.349316e+00 lineto -8.823777e+01 1.13023e+01 lineto -8.704491e+01 1.084129e+01 lineto -closepath -gsave -5.182839e-01 5.182839e-01 5.182839e-01 setrgbcolor -fill -grestore -newpath -8.925377e+01 1.301076e+01 moveto -8.704491e+01 1.084129e+01 lineto -8.823777e+01 1.13023e+01 lineto -9.056615e+01 1.351795e+01 lineto -8.925377e+01 1.301076e+01 lineto -closepath -gsave -5.39537e-01 5.39537e-01 5.39537e-01 setrgbcolor -fill -grestore -newpath -9.127902e+01 1.542996e+01 moveto -8.925377e+01 1.301076e+01 lineto -9.056615e+01 1.351795e+01 lineto -9.270098e+01 1.597951e+01 lineto -9.127902e+01 1.542996e+01 lineto -closepath -gsave -5.621741e-01 5.621741e-01 5.621741e-01 setrgbcolor -fill -grestore -newpath -9.310532e+01 1.80806e+01 moveto -9.127902e+01 1.542996e+01 lineto -9.270098e+01 1.597951e+01 lineto -9.462611e+01 1.866834e+01 lineto -9.310532e+01 1.80806e+01 lineto -closepath -gsave -5.858212e-01 5.858212e-01 5.858212e-01 setrgbcolor -fill -grestore -newpath -9.471886e+01 2.09426e+01 moveto -9.310532e+01 1.80806e+01 lineto -9.462611e+01 1.866834e+01 lineto -9.632696e+01 2.156408e+01 lineto -9.471886e+01 2.09426e+01 lineto -closepath -gsave -6.100321e-01 6.100321e-01 6.100321e-01 setrgbcolor -fill -grestore -newpath -9.610741e+01 2.399429e+01 moveto -9.471886e+01 2.09426e+01 lineto -9.632696e+01 2.156408e+01 lineto -9.779064e+01 2.464481e+01 lineto -9.610741e+01 2.399429e+01 lineto -closepath -gsave -6.343014e-01 6.343014e-01 6.343014e-01 setrgbcolor -fill -grestore -newpath -9.726046e+01 2.721258e+01 moveto -9.610741e+01 2.399429e+01 lineto -9.779064e+01 2.464481e+01 lineto -9.900609e+01 2.788721e+01 lineto -9.726046e+01 2.721258e+01 lineto -closepath -gsave -6.580802e-01 6.580802e-01 6.580802e-01 setrgbcolor -fill -grestore -newpath -9.816929e+01 3.057309e+01 moveto -9.726046e+01 2.721258e+01 lineto -9.900609e+01 2.788721e+01 lineto -9.996409e+01 3.126673e+01 lineto -9.816929e+01 3.057309e+01 lineto -closepath -gsave -6.807956e-01 6.807956e-01 6.807956e-01 setrgbcolor -fill -grestore -newpath -9.882701e+01 3.40504e+01 moveto -9.816929e+01 3.057309e+01 lineto -9.996409e+01 3.126673e+01 lineto -1.006574e+02 3.475779e+01 lineto -9.882701e+01 3.40504e+01 lineto -closepath -gsave -7.018712e-01 7.018712e-01 7.018712e-01 setrgbcolor -fill -grestore -newpath -9.922865e+01 3.761817e+01 moveto -9.882701e+01 3.40504e+01 lineto -1.006574e+02 3.475779e+01 lineto -1.010808e+02 3.833396e+01 lineto -9.922865e+01 3.761817e+01 lineto -closepath -gsave -7.2075e-01 7.2075e-01 7.2075e-01 setrgbcolor -fill -grestore -newpath -9.937116e+01 4.124939e+01 moveto -9.922865e+01 3.761817e+01 lineto -1.010808e+02 3.833396e+01 lineto -1.01231e+02 4.196816e+01 lineto -9.937116e+01 4.124939e+01 lineto -closepath -gsave -7.369164e-01 7.369164e-01 7.369164e-01 setrgbcolor -fill -grestore -newpath -9.925347e+01 4.491657e+01 moveto -9.937116e+01 4.124939e+01 lineto -1.01231e+02 4.196816e+01 lineto -1.011069e+02 4.563288e+01 lineto -9.925347e+01 4.491657e+01 lineto -closepath -gsave -7.499167e-01 7.499167e-01 7.499167e-01 setrgbcolor -fill -grestore -newpath -9.887646e+01 4.859196e+01 moveto -9.925347e+01 4.491657e+01 lineto -1.011069e+02 4.563288e+01 lineto -1.007095e+02 4.930039e+01 lineto -9.887646e+01 4.859196e+01 lineto -closepath -gsave -7.593791e-01 7.593791e-01 7.593791e-01 setrgbcolor -fill -grestore -newpath -9.824299e+01 5.224773e+01 moveto -9.887646e+01 4.859196e+01 lineto -1.007095e+02 4.930039e+01 lineto -1.000418e+02 5.294291e+01 lineto -9.824299e+01 5.224773e+01 lineto -closepath -gsave -7.650286e-01 7.650286e-01 7.650286e-01 setrgbcolor -fill -grestore -newpath -9.735786e+01 5.58562e+01 moveto -9.824299e+01 5.224773e+01 lineto -1.000418e+02 5.294291e+01 lineto -9.910875e+01 5.653286e+01 lineto -9.735786e+01 5.58562e+01 lineto -closepath -gsave -7.66699e-01 7.66699e-01 7.66699e-01 setrgbcolor -fill -grestore -newpath -9.622777e+01 5.939005e+01 moveto -9.735786e+01 5.58562e+01 lineto -9.910875e+01 5.653286e+01 lineto -9.791751e+01 6.004308e+01 lineto -9.622777e+01 5.939005e+01 lineto -closepath -gsave -7.643404e-01 7.643404e-01 7.643404e-01 setrgbcolor -fill -grestore -newpath -9.486126e+01 6.282253e+01 moveto -9.622777e+01 5.939005e+01 lineto -9.791751e+01 6.004308e+01 lineto -9.647706e+01 6.344699e+01 lineto -9.486126e+01 6.282253e+01 lineto -closepath -gsave -7.580212e-01 7.580212e-01 7.580212e-01 setrgbcolor -fill -grestore -newpath -9.32687e+01 6.612766e+01 moveto -9.486126e+01 6.282253e+01 lineto -9.647706e+01 6.344699e+01 lineto -9.479832e+01 6.671882e+01 lineto -9.32687e+01 6.612766e+01 lineto -closepath -gsave -7.479254e-01 7.479254e-01 7.479254e-01 setrgbcolor -fill -grestore -newpath -9.146212e+01 6.928042e+01 moveto -9.32687e+01 6.612766e+01 lineto -9.479832e+01 6.671882e+01 lineto -9.2894e+01 6.983379e+01 lineto -9.146212e+01 6.928042e+01 lineto -closepath -gsave -7.343444e-01 7.343444e-01 7.343444e-01 setrgbcolor -fill -grestore -newpath -8.945522e+01 7.225693e+01 moveto -9.146212e+01 6.928042e+01 lineto -9.2894e+01 6.983379e+01 lineto -9.07785e+01 7.276833e+01 lineto -8.945522e+01 7.225693e+01 lineto -closepath -gsave -7.176653e-01 7.176653e-01 7.176653e-01 setrgbcolor -fill -grestore -newpath -8.726318e+01 7.503466e+01 moveto -8.945522e+01 7.225693e+01 lineto -9.07785e+01 7.276833e+01 lineto -8.846785e+01 7.550023e+01 lineto -8.726318e+01 7.503466e+01 lineto -closepath -gsave -6.983538e-01 6.983538e-01 6.983538e-01 setrgbcolor -fill -grestore -newpath -8.49026e+01 7.759259e+01 moveto -8.726318e+01 7.503466e+01 lineto -8.846785e+01 7.550023e+01 lineto -8.597954e+01 7.80088e+01 lineto -8.49026e+01 7.759259e+01 lineto -closepath -gsave -6.769354e-01 6.769354e-01 6.769354e-01 setrgbcolor -fill -grestore -newpath -8.239135e+01 7.991135e+01 moveto -8.49026e+01 7.759259e+01 lineto -8.597954e+01 7.80088e+01 lineto -8.33324e+01 8.027504e+01 lineto -8.239135e+01 7.991135e+01 lineto -closepath -gsave -6.539735e-01 6.539735e-01 6.539735e-01 setrgbcolor -fill -grestore -newpath -7.974844e+01 8.197339e+01 moveto -8.239135e+01 7.991135e+01 lineto -8.33324e+01 8.027504e+01 lineto -8.054648e+01 8.228181e+01 lineto -7.974844e+01 8.197339e+01 lineto -closepath -gsave -6.300472e-01 6.300472e-01 6.300472e-01 setrgbcolor -fill -grestore -newpath -7.699387e+01 8.376309e+01 moveto -7.974844e+01 8.197339e+01 lineto -8.054648e+01 8.228181e+01 lineto -7.764287e+01 8.401391e+01 lineto -7.699387e+01 8.376309e+01 lineto -closepath -gsave -6.057287e-01 6.057287e-01 6.057287e-01 setrgbcolor -fill -grestore -newpath -7.414851e+01 8.526691e+01 moveto -7.699387e+01 8.376309e+01 lineto -7.764287e+01 8.401391e+01 lineto -7.464354e+01 8.545822e+01 lineto -7.414851e+01 8.526691e+01 lineto -closepath -gsave -5.815627e-01 5.815627e-01 5.815627e-01 setrgbcolor -fill -grestore -newpath -7.123389e+01 8.647346e+01 moveto -7.414851e+01 8.526691e+01 lineto -7.464354e+01 8.545822e+01 lineto -7.157121e+01 8.660382e+01 lineto -7.123389e+01 8.647346e+01 lineto -closepath -gsave -5.580468e-01 5.580468e-01 5.580468e-01 setrgbcolor -fill -grestore -newpath -6.827207e+01 8.737361e+01 moveto -7.123389e+01 8.647346e+01 lineto -7.157121e+01 8.660382e+01 lineto -6.844913e+01 8.744203e+01 lineto -6.827207e+01 8.737361e+01 lineto -closepath -gsave -5.356165e-01 5.356165e-01 5.356165e-01 setrgbcolor -fill -grestore -newpath -6.528549e+01 8.796054e+01 moveto -6.827207e+01 8.737361e+01 lineto -6.844913e+01 8.744203e+01 lineto -6.530094e+01 8.796651e+01 lineto -6.528549e+01 8.796054e+01 lineto -closepath -gsave -5.146329e-01 5.146329e-01 5.146329e-01 setrgbcolor -fill -grestore -newpath -6.229674e+01 8.822981e+01 moveto -6.528549e+01 8.796054e+01 lineto -6.530094e+01 8.796651e+01 lineto -6.215047e+01 8.817328e+01 lineto -6.229674e+01 8.822981e+01 lineto -closepath -gsave -4.953751e-01 4.953751e-01 4.953751e-01 setrgbcolor -fill -grestore -newpath -8.30722e+01 7.673799e+00 moveto -8.027412e+01 6.288427e+00 lineto -8.096401e+01 6.601469e+00 lineto -8.388847e+01 8.044187e+00 lineto -8.30722e+01 7.673799e+00 lineto -closepath -gsave -4.782936e-01 4.782936e-01 4.782936e-01 setrgbcolor -fill -grestore -newpath -8.573346e+01 9.349316e+00 moveto -8.30722e+01 7.673799e+00 lineto -8.388847e+01 8.044187e+00 lineto -8.666994e+01 9.774247e+00 lineto -8.573346e+01 9.349316e+00 lineto -closepath -gsave -4.950931e-01 4.950931e-01 4.950931e-01 setrgbcolor -fill -grestore -newpath -8.823777e+01 1.13023e+01 moveto -8.573346e+01 9.349316e+00 lineto -8.666994e+01 9.774247e+00 lineto -8.928735e+01 1.177855e+01 lineto -8.823777e+01 1.13023e+01 lineto -closepath -gsave -5.136661e-01 5.136661e-01 5.136661e-01 setrgbcolor -fill -grestore -newpath -9.056615e+01 1.351795e+01 moveto -8.823777e+01 1.13023e+01 lineto -8.928735e+01 1.177855e+01 lineto -9.17209e+01 1.404193e+01 lineto -9.056615e+01 1.351795e+01 lineto -closepath -gsave -5.338189e-01 5.338189e-01 5.338189e-01 setrgbcolor -fill -grestore -newpath -9.270098e+01 1.597951e+01 moveto -9.056615e+01 1.351795e+01 lineto -9.17209e+01 1.404193e+01 lineto -9.395216e+01 1.654724e+01 lineto -9.270098e+01 1.597951e+01 lineto -closepath -gsave -5.552793e-01 5.552793e-01 5.552793e-01 setrgbcolor -fill -grestore -newpath -9.462611e+01 1.866834e+01 moveto -9.270098e+01 1.597951e+01 lineto -9.395216e+01 1.654724e+01 lineto -9.596424e+01 1.927552e+01 lineto -9.462611e+01 1.866834e+01 lineto -closepath -gsave -5.776999e-01 5.776999e-01 5.776999e-01 setrgbcolor -fill -grestore -newpath -9.632696e+01 2.156408e+01 moveto -9.462611e+01 1.866834e+01 lineto -9.596424e+01 1.927552e+01 lineto -9.774191e+01 2.220612e+01 lineto -9.632696e+01 2.156408e+01 lineto -closepath -gsave -6.00666e-01 6.00666e-01 6.00666e-01 setrgbcolor -fill -grestore -newpath -9.779064e+01 2.464481e+01 moveto -9.632696e+01 2.156408e+01 lineto -9.774191e+01 2.220612e+01 lineto -9.927171e+01 2.531685e+01 lineto -9.779064e+01 2.464481e+01 lineto -closepath -gsave -6.237068e-01 6.237068e-01 6.237068e-01 setrgbcolor -fill -grestore -newpath -9.900609e+01 2.788721e+01 moveto -9.779064e+01 2.464481e+01 lineto -9.927171e+01 2.531685e+01 lineto -1.005421e+02 2.858416e+01 lineto -9.900609e+01 2.788721e+01 lineto -closepath -gsave -6.463105e-01 6.463105e-01 6.463105e-01 setrgbcolor -fill -grestore -newpath -9.996409e+01 3.126673e+01 moveto -9.900609e+01 2.788721e+01 lineto -1.005421e+02 2.858416e+01 lineto -1.015433e+02 3.198332e+01 lineto -9.996409e+01 3.126673e+01 lineto -closepath -gsave -6.679411e-01 6.679411e-01 6.679411e-01 setrgbcolor -fill -grestore -newpath -1.006574e+02 3.475779e+01 moveto -9.996409e+01 3.126673e+01 lineto -1.015433e+02 3.198332e+01 lineto -1.02268e+02 3.548858e+01 lineto -1.006574e+02 3.475779e+01 lineto -closepath -gsave -6.880587e-01 6.880587e-01 6.880587e-01 setrgbcolor -fill -grestore -newpath -1.010808e+02 3.833396e+01 moveto -1.006574e+02 3.475779e+01 lineto -1.02268e+02 3.548858e+01 lineto -1.027104e+02 3.907343e+01 lineto -1.010808e+02 3.833396e+01 lineto -closepath -gsave -7.061394e-01 7.061394e-01 7.061394e-01 setrgbcolor -fill -grestore -newpath -1.01231e+02 4.196816e+01 moveto -1.010808e+02 3.833396e+01 lineto -1.027104e+02 3.907343e+01 lineto -1.028675e+02 4.271071e+01 lineto -1.01231e+02 4.196816e+01 lineto -closepath -gsave -7.216963e-01 7.216963e-01 7.216963e-01 setrgbcolor -fill -grestore -newpath -1.011069e+02 4.563288e+01 moveto -1.01231e+02 4.196816e+01 lineto -1.028675e+02 4.271071e+01 lineto -1.027378e+02 4.637289e+01 lineto -1.011069e+02 4.563288e+01 lineto -closepath -gsave -7.342991e-01 7.342991e-01 7.342991e-01 setrgbcolor -fill -grestore -newpath -1.007095e+02 4.930039e+01 moveto -1.011069e+02 4.563288e+01 lineto -1.027378e+02 4.637289e+01 lineto -1.023224e+02 5.003225e+01 lineto -1.007095e+02 4.930039e+01 lineto -closepath -gsave -7.435918e-01 7.435918e-01 7.435918e-01 setrgbcolor -fill -grestore -newpath -1.000418e+02 5.294291e+01 moveto -1.007095e+02 4.930039e+01 lineto -1.023224e+02 5.003225e+01 lineto -1.016245e+02 5.366108e+01 lineto -1.000418e+02 5.294291e+01 lineto -closepath -gsave -7.493078e-01 7.493078e-01 7.493078e-01 setrgbcolor -fill -grestore -newpath -9.910875e+01 5.653286e+01 moveto -1.000418e+02 5.294291e+01 lineto -1.016245e+02 5.366108e+01 lineto -1.006494e+02 5.723192e+01 lineto -9.910875e+01 5.653286e+01 lineto -closepath -gsave -7.512811e-01 7.512811e-01 7.512811e-01 setrgbcolor -fill -grestore -newpath -9.791751e+01 6.004308e+01 moveto -9.910875e+01 5.653286e+01 lineto -1.006494e+02 5.723192e+01 lineto -9.940431e+01 6.071772e+01 lineto -9.791751e+01 6.004308e+01 lineto -closepath -gsave -7.494536e-01 7.494536e-01 7.494536e-01 setrgbcolor -fill -grestore -newpath -9.647706e+01 6.344699e+01 moveto -9.791751e+01 6.004308e+01 lineto -9.940431e+01 6.071772e+01 lineto -9.78988e+01 6.409211e+01 lineto -9.647706e+01 6.344699e+01 lineto -closepath -gsave -7.438775e-01 7.438775e-01 7.438775e-01 setrgbcolor -fill -grestore -newpath -9.479832e+01 6.671882e+01 moveto -9.647706e+01 6.344699e+01 lineto -9.78988e+01 6.409211e+01 lineto -9.614424e+01 6.732953e+01 lineto -9.479832e+01 6.671882e+01 lineto -closepath -gsave -7.347132e-01 7.347132e-01 7.347132e-01 setrgbcolor -fill -grestore -newpath -9.2894e+01 6.983379e+01 moveto -9.479832e+01 6.671882e+01 lineto -9.614424e+01 6.732953e+01 lineto -9.41539e+01 7.040548e+01 lineto -9.2894e+01 6.983379e+01 lineto -closepath -gsave -7.222228e-01 7.222228e-01 7.222228e-01 setrgbcolor -fill -grestore -newpath -9.07785e+01 7.276833e+01 moveto -9.2894e+01 6.983379e+01 lineto -9.41539e+01 7.040548e+01 lineto -9.194285e+01 7.329666e+01 lineto -9.07785e+01 7.276833e+01 lineto -closepath -gsave -7.067586e-01 7.067586e-01 7.067586e-01 setrgbcolor -fill -grestore -newpath -8.846785e+01 7.550023e+01 moveto -9.07785e+01 7.276833e+01 lineto -9.194285e+01 7.329666e+01 lineto -8.952783e+01 7.59812e+01 lineto -8.846785e+01 7.550023e+01 lineto -closepath -gsave -6.887487e-01 6.887487e-01 6.887487e-01 setrgbcolor -fill -grestore -newpath -8.597954e+01 7.80088e+01 moveto -8.846785e+01 7.550023e+01 lineto -8.952783e+01 7.59812e+01 lineto -8.692713e+01 7.843877e+01 lineto -8.597954e+01 7.80088e+01 lineto -closepath -gsave -6.68679e-01 6.68679e-01 6.68679e-01 setrgbcolor -fill -grestore -newpath -8.33324e+01 8.027504e+01 moveto -8.597954e+01 7.80088e+01 lineto -8.692713e+01 7.843877e+01 lineto -8.416043e+01 8.065076e+01 lineto -8.33324e+01 8.027504e+01 lineto -closepath -gsave -6.470738e-01 6.470738e-01 6.470738e-01 setrgbcolor -fill -grestore -newpath -8.054648e+01 8.228181e+01 moveto -8.33324e+01 8.027504e+01 lineto -8.416043e+01 8.065076e+01 lineto -8.124867e+01 8.260043e+01 lineto -8.054648e+01 8.228181e+01 lineto -closepath -gsave -6.244747e-01 6.244747e-01 6.244747e-01 setrgbcolor -fill -grestore -newpath -7.764287e+01 8.401391e+01 moveto -8.054648e+01 8.228181e+01 lineto -8.124867e+01 8.260043e+01 lineto -7.821391e+01 8.427302e+01 lineto -7.764287e+01 8.401391e+01 lineto -closepath -gsave -6.014199e-01 6.014199e-01 6.014199e-01 setrgbcolor -fill -grestore -newpath -7.464354e+01 8.545822e+01 moveto -7.764287e+01 8.401391e+01 lineto -7.821391e+01 8.427302e+01 lineto -7.507911e+01 8.565587e+01 lineto -7.464354e+01 8.545822e+01 lineto -closepath -gsave -5.784244e-01 5.784244e-01 5.784244e-01 setrgbcolor -fill -grestore -newpath -7.157121e+01 8.660382e+01 moveto -7.464354e+01 8.545822e+01 lineto -7.507911e+01 8.565587e+01 lineto -7.186801e+01 8.67385e+01 lineto -7.157121e+01 8.660382e+01 lineto -closepath -gsave -5.559622e-01 5.559622e-01 5.559622e-01 setrgbcolor -fill -grestore -newpath -6.844913e+01 8.744203e+01 moveto -7.157121e+01 8.660382e+01 lineto -7.186801e+01 8.67385e+01 lineto -6.860491e+01 8.751272e+01 lineto -6.844913e+01 8.744203e+01 lineto -closepath -gsave -5.344514e-01 5.344514e-01 5.344514e-01 setrgbcolor -fill -grestore -newpath -6.530094e+01 8.796651e+01 moveto -6.844913e+01 8.744203e+01 lineto -6.860491e+01 8.751272e+01 lineto -6.531453e+01 8.797268e+01 lineto -6.530094e+01 8.796651e+01 lineto -closepath -gsave -5.142424e-01 5.142424e-01 5.142424e-01 setrgbcolor -fill -grestore -newpath -6.215047e+01 8.817328e+01 moveto -6.530094e+01 8.796651e+01 lineto -6.531453e+01 8.797268e+01 lineto -6.202176e+01 8.811488e+01 lineto -6.215047e+01 8.817328e+01 lineto -closepath -gsave -4.956103e-01 4.956103e-01 4.956103e-01 setrgbcolor -fill -grestore -newpath -8.666994e+01 9.774247e+00 moveto -8.388847e+01 8.044187e+00 lineto -8.458829e+01 8.424154e+00 lineto -8.747281e+01 1.021017e+01 lineto -8.666994e+01 9.774247e+00 lineto -closepath -gsave -4.909197e-01 4.909197e-01 4.909197e-01 setrgbcolor -fill -grestore -newpath -8.928735e+01 1.177855e+01 moveto -8.666994e+01 9.774247e+00 lineto -8.747281e+01 1.021017e+01 lineto -9.01872e+01 1.226712e+01 lineto -8.928735e+01 1.177855e+01 lineto -closepath -gsave -5.083456e-01 5.083456e-01 5.083456e-01 setrgbcolor -fill -grestore -newpath -9.17209e+01 1.404193e+01 moveto -8.928735e+01 1.177855e+01 lineto -9.01872e+01 1.226712e+01 lineto -9.271092e+01 1.457946e+01 lineto -9.17209e+01 1.404193e+01 lineto -closepath -gsave -5.272406e-01 5.272406e-01 5.272406e-01 setrgbcolor -fill -grestore -newpath -9.395216e+01 1.654724e+01 moveto -9.17209e+01 1.404193e+01 lineto -9.271092e+01 1.457946e+01 lineto -9.502484e+01 1.712965e+01 lineto -9.395216e+01 1.654724e+01 lineto -closepath -gsave -5.473566e-01 5.473566e-01 5.473566e-01 setrgbcolor -fill -grestore -newpath -9.596424e+01 1.927552e+01 moveto -9.395216e+01 1.654724e+01 lineto -9.502484e+01 1.712965e+01 lineto -9.711147e+01 1.989841e+01 lineto -9.596424e+01 1.927552e+01 lineto -closepath -gsave -5.683765e-01 5.683765e-01 5.683765e-01 setrgbcolor -fill -grestore -newpath -9.774191e+01 2.220612e+01 moveto -9.596424e+01 1.927552e+01 lineto -9.711147e+01 1.989841e+01 lineto -9.8955e+01 2.286477e+01 lineto -9.774191e+01 2.220612e+01 lineto -closepath -gsave -5.899208e-01 5.899208e-01 5.899208e-01 setrgbcolor -fill -grestore -newpath -9.927171e+01 2.531685e+01 moveto -9.774191e+01 2.220612e+01 lineto -9.8955e+01 2.286477e+01 lineto -1.005415e+02 2.600627e+01 lineto -9.927171e+01 2.531685e+01 lineto -closepath -gsave -6.115583e-01 6.115583e-01 6.115583e-01 setrgbcolor -fill -grestore -newpath -1.005421e+02 2.858416e+01 moveto -9.927171e+01 2.531685e+01 lineto -1.005415e+02 2.600627e+01 lineto -1.018589e+02 2.929914e+01 lineto -1.005421e+02 2.858416e+01 lineto -closepath -gsave -6.328184e-01 6.328184e-01 6.328184e-01 setrgbcolor -fill -grestore -newpath -1.015433e+02 3.198332e+01 moveto -1.005421e+02 2.858416e+01 lineto -1.018589e+02 2.929914e+01 lineto -1.028973e+02 3.271844e+01 lineto -1.015433e+02 3.198332e+01 lineto -closepath -gsave -6.532077e-01 6.532077e-01 6.532077e-01 setrgbcolor -fill -grestore -newpath -1.02268e+02 3.548858e+01 moveto -1.015433e+02 3.198332e+01 lineto -1.028973e+02 3.271844e+01 lineto -1.036487e+02 3.623828e+01 lineto -1.02268e+02 3.548858e+01 lineto -closepath -gsave -6.722269e-01 6.722269e-01 6.722269e-01 setrgbcolor -fill -grestore -newpath -1.027104e+02 3.907343e+01 moveto -1.02268e+02 3.548858e+01 lineto -1.036487e+02 3.623828e+01 lineto -1.041076e+02 3.983203e+01 lineto -1.027104e+02 3.907343e+01 lineto -closepath -gsave -6.893901e-01 6.893901e-01 6.893901e-01 setrgbcolor -fill -grestore -newpath -1.028675e+02 4.271071e+01 moveto -1.027104e+02 3.907343e+01 lineto -1.041076e+02 3.983203e+01 lineto -1.042704e+02 4.347246e+01 lineto -1.028675e+02 4.271071e+01 lineto -closepath -gsave -7.042433e-01 7.042433e-01 7.042433e-01 setrgbcolor -fill -grestore -newpath -1.027378e+02 4.637289e+01 moveto -1.028675e+02 4.271071e+01 lineto -1.042704e+02 4.347246e+01 lineto -1.04136e+02 4.713204e+01 lineto -1.027378e+02 4.637289e+01 lineto -closepath -gsave -7.163826e-01 7.163826e-01 7.163826e-01 setrgbcolor -fill -grestore -newpath -1.023224e+02 5.003225e+01 moveto -1.027378e+02 4.637289e+01 lineto -1.04136e+02 4.713204e+01 lineto -1.037052e+02 5.078304e+01 lineto -1.023224e+02 5.003225e+01 lineto -closepath -gsave -7.254708e-01 7.254708e-01 7.254708e-01 setrgbcolor -fill -grestore -newpath -1.016245e+02 5.366108e+01 moveto -1.023224e+02 5.003225e+01 lineto -1.037052e+02 5.078304e+01 lineto -1.029815e+02 5.439784e+01 lineto -1.016245e+02 5.366108e+01 lineto -closepath -gsave -7.312511e-01 7.312511e-01 7.312511e-01 setrgbcolor -fill -grestore -newpath -1.006494e+02 5.723192e+01 moveto -1.016245e+02 5.366108e+01 lineto -1.029815e+02 5.439784e+01 lineto -1.019702e+02 5.794906e+01 lineto -1.006494e+02 5.723192e+01 lineto -closepath -gsave -7.335583e-01 7.335583e-01 7.335583e-01 setrgbcolor -fill -grestore -newpath -9.940431e+01 6.071772e+01 moveto -1.006494e+02 5.723192e+01 lineto -1.019702e+02 5.794906e+01 lineto -1.00679e+02 6.140981e+01 lineto -9.940431e+01 6.071772e+01 lineto -closepath -gsave -7.323256e-01 7.323256e-01 7.323256e-01 setrgbcolor -fill -grestore -newpath -9.78988e+01 6.409211e+01 moveto -9.940431e+01 6.071772e+01 lineto -1.00679e+02 6.140981e+01 lineto -9.91177e+01 6.475391e+01 lineto -9.78988e+01 6.409211e+01 lineto -closepath -gsave -7.275874e-01 7.275874e-01 7.275874e-01 setrgbcolor -fill -grestore -newpath -9.614424e+01 6.732953e+01 moveto -9.78988e+01 6.409211e+01 lineto -9.91177e+01 6.475391e+01 lineto -9.729813e+01 6.795604e+01 lineto -9.614424e+01 6.732953e+01 lineto -closepath -gsave -7.194782e-01 7.194782e-01 7.194782e-01 setrgbcolor -fill -grestore -newpath -9.41539e+01 7.040548e+01 moveto -9.614424e+01 6.732953e+01 lineto -9.729813e+01 6.795604e+01 lineto -9.523405e+01 7.099195e+01 lineto -9.41539e+01 7.040548e+01 lineto -closepath -gsave -7.082269e-01 7.082269e-01 7.082269e-01 setrgbcolor -fill -grestore -newpath -9.194285e+01 7.329666e+01 moveto -9.41539e+01 7.040548e+01 lineto -9.523405e+01 7.099195e+01 lineto -9.294108e+01 7.383866e+01 lineto -9.194285e+01 7.329666e+01 lineto -closepath -gsave -6.941469e-01 6.941469e-01 6.941469e-01 setrgbcolor -fill -grestore -newpath -8.952783e+01 7.59812e+01 moveto -9.194285e+01 7.329666e+01 lineto -9.294108e+01 7.383866e+01 lineto -9.043659e+01 7.647461e+01 lineto -8.952783e+01 7.59812e+01 lineto -closepath -gsave -6.776239e-01 6.776239e-01 6.776239e-01 setrgbcolor -fill -grestore -newpath -8.692713e+01 7.843877e+01 moveto -8.952783e+01 7.59812e+01 lineto -9.043659e+01 7.647461e+01 lineto -8.773953e+01 7.887986e+01 lineto -8.692713e+01 7.843877e+01 lineto -closepath -gsave -6.590991e-01 6.590991e-01 6.590991e-01 setrgbcolor -fill -grestore -newpath -8.416043e+01 8.065076e+01 moveto -8.692713e+01 7.843877e+01 lineto -8.773953e+01 7.887986e+01 lineto -8.487032e+01 8.10362e+01 lineto -8.416043e+01 8.065076e+01 lineto -closepath -gsave -6.39052e-01 6.39052e-01 6.39052e-01 setrgbcolor -fill -grestore -newpath -8.124867e+01 8.260043e+01 moveto -8.416043e+01 8.065076e+01 lineto -8.487032e+01 8.10362e+01 lineto -8.185069e+01 8.29273e+01 lineto -8.124867e+01 8.260043e+01 lineto -closepath -gsave -6.179816e-01 6.179816e-01 6.179816e-01 setrgbcolor -fill -grestore -newpath -7.821391e+01 8.427302e+01 moveto -8.124867e+01 8.260043e+01 lineto -8.185069e+01 8.29273e+01 lineto -7.870349e+01 8.453884e+01 lineto -7.821391e+01 8.427302e+01 lineto -closepath -gsave -5.963868e-01 5.963868e-01 5.963868e-01 setrgbcolor -fill -grestore -newpath -7.507911e+01 8.565587e+01 moveto -7.821391e+01 8.427302e+01 lineto -7.870349e+01 8.453884e+01 lineto -7.545254e+01 8.585862e+01 lineto -7.507911e+01 8.565587e+01 lineto -closepath -gsave -5.747485e-01 5.747485e-01 5.747485e-01 setrgbcolor -fill -grestore -newpath -7.186801e+01 8.67385e+01 moveto -7.507911e+01 8.565587e+01 lineto -7.545254e+01 8.585862e+01 lineto -7.212247e+01 8.687666e+01 lineto -7.186801e+01 8.67385e+01 lineto -closepath -gsave -5.535131e-01 5.535131e-01 5.535131e-01 setrgbcolor -fill -grestore -newpath -6.860491e+01 8.751272e+01 moveto -7.186801e+01 8.67385e+01 lineto -7.212247e+01 8.687666e+01 lineto -6.873848e+01 8.758524e+01 lineto -6.860491e+01 8.751272e+01 lineto -closepath -gsave -5.330779e-01 5.330779e-01 5.330779e-01 setrgbcolor -fill -grestore -newpath -6.531453e+01 8.797268e+01 moveto -6.860491e+01 8.751272e+01 lineto -6.873848e+01 8.758524e+01 lineto -6.532618e+01 8.797901e+01 lineto -6.531453e+01 8.797268e+01 lineto -closepath -gsave -5.137803e-01 5.137803e-01 5.137803e-01 setrgbcolor -fill -grestore -newpath -6.202176e+01 8.811488e+01 moveto -6.531453e+01 8.797268e+01 lineto -6.532618e+01 8.797901e+01 lineto -6.191142e+01 8.805497e+01 lineto -6.202176e+01 8.811488e+01 lineto -closepath -gsave -4.958899e-01 4.958899e-01 4.958899e-01 setrgbcolor -fill -grestore -newpath -9.01872e+01 1.226712e+01 moveto -8.747281e+01 1.021017e+01 lineto -8.813713e+01 1.065439e+01 lineto -9.093176e+01 1.2765e+01 lineto -9.01872e+01 1.226712e+01 lineto -closepath -gsave -5.024308e-01 5.024308e-01 5.024308e-01 setrgbcolor -fill -grestore -newpath -9.271092e+01 1.457946e+01 moveto -9.01872e+01 1.226712e+01 lineto -9.093176e+01 1.2765e+01 lineto -9.353008e+01 1.512722e+01 lineto -9.271092e+01 1.457946e+01 lineto -closepath -gsave -5.199407e-01 5.199407e-01 5.199407e-01 setrgbcolor -fill -grestore -newpath -9.502484e+01 1.712965e+01 moveto -9.271092e+01 1.457946e+01 lineto -9.353008e+01 1.512722e+01 lineto -9.591241e+01 1.772316e+01 lineto -9.502484e+01 1.712965e+01 lineto -closepath -gsave -5.385774e-01 5.385774e-01 5.385774e-01 setrgbcolor -fill -grestore -newpath -9.711147e+01 1.989841e+01 moveto -9.502484e+01 1.712965e+01 lineto -9.591241e+01 1.772316e+01 lineto -9.806072e+01 2.053316e+01 lineto -9.711147e+01 1.989841e+01 lineto -closepath -gsave -5.580566e-01 5.580566e-01 5.580566e-01 setrgbcolor -fill -grestore -newpath -9.8955e+01 2.286477e+01 moveto -9.711147e+01 1.989841e+01 lineto -9.806072e+01 2.053316e+01 lineto -9.995875e+01 2.353596e+01 lineto -9.8955e+01 2.286477e+01 lineto -closepath -gsave -5.780372e-01 5.780372e-01 5.780372e-01 setrgbcolor -fill -grestore -newpath -1.005415e+02 2.600627e+01 moveto -9.8955e+01 2.286477e+01 lineto -9.995875e+01 2.353596e+01 lineto -1.015921e+02 2.670883e+01 lineto -1.005415e+02 2.600627e+01 lineto -closepath -gsave -5.981305e-01 5.981305e-01 5.981305e-01 setrgbcolor -fill -grestore -newpath -1.018589e+02 2.929914e+01 moveto -1.005415e+02 2.600627e+01 lineto -1.015921e+02 2.670883e+01 lineto -1.029485e+02 3.002773e+01 lineto -1.018589e+02 2.929914e+01 lineto -closepath -gsave -6.179111e-01 6.179111e-01 6.179111e-01 setrgbcolor -fill -grestore -newpath -1.028973e+02 3.271844e+01 moveto -1.018589e+02 2.929914e+01 lineto -1.029485e+02 3.002773e+01 lineto -1.040175e+02 3.346755e+01 lineto -1.028973e+02 3.271844e+01 lineto -closepath -gsave -6.369314e-01 6.369314e-01 6.369314e-01 setrgbcolor -fill -grestore -newpath -1.036487e+02 3.623828e+01 moveto -1.028973e+02 3.271844e+01 lineto -1.040175e+02 3.346755e+01 lineto -1.047912e+02 3.700225e+01 lineto -1.036487e+02 3.623828e+01 lineto -closepath -gsave -6.547369e-01 6.547369e-01 6.547369e-01 setrgbcolor -fill -grestore -newpath -1.041076e+02 3.983203e+01 moveto -1.036487e+02 3.623828e+01 lineto -1.047912e+02 3.700225e+01 lineto -1.052637e+02 4.060507e+01 lineto -1.041076e+02 3.983203e+01 lineto -closepath -gsave -6.708829e-01 6.708829e-01 6.708829e-01 setrgbcolor -fill -grestore -newpath -1.042704e+02 4.347246e+01 moveto -1.041076e+02 3.983203e+01 lineto -1.052637e+02 4.060507e+01 lineto -1.054313e+02 4.424873e+01 lineto -1.042704e+02 4.347246e+01 lineto -closepath -gsave -6.849517e-01 6.849517e-01 6.849517e-01 setrgbcolor -fill -grestore -newpath -1.04136e+02 4.713204e+01 moveto -1.042704e+02 4.347246e+01 lineto -1.054313e+02 4.424873e+01 lineto -1.052929e+02 4.790564e+01 lineto -1.04136e+02 4.713204e+01 lineto -closepath -gsave -6.965686e-01 6.965686e-01 6.965686e-01 setrgbcolor -fill -grestore -newpath -1.037052e+02 5.078304e+01 moveto -1.04136e+02 4.713204e+01 lineto -1.052929e+02 4.790564e+01 lineto -1.048494e+02 5.154813e+01 lineto -1.037052e+02 5.078304e+01 lineto -closepath -gsave -7.054173e-01 7.054173e-01 7.054173e-01 setrgbcolor -fill -grestore -newpath -1.029815e+02 5.439784e+01 moveto -1.037052e+02 5.078304e+01 lineto -1.048494e+02 5.154813e+01 lineto -1.041042e+02 5.514862e+01 lineto -1.029815e+02 5.439784e+01 lineto -closepath -gsave -7.112527e-01 7.112527e-01 7.112527e-01 setrgbcolor -fill -grestore -newpath -1.019702e+02 5.794906e+01 moveto -1.029815e+02 5.439784e+01 lineto -1.041042e+02 5.514862e+01 lineto -1.03063e+02 5.867985e+01 lineto -1.019702e+02 5.794906e+01 lineto -closepath -gsave -7.13911e-01 7.13911e-01 7.13911e-01 setrgbcolor -fill -grestore -newpath -1.00679e+02 6.140981e+01 moveto -1.019702e+02 5.794906e+01 lineto -1.03063e+02 5.867985e+01 lineto -1.017337e+02 6.211508e+01 lineto -1.00679e+02 6.140981e+01 lineto -closepath -gsave -7.133167e-01 7.133167e-01 7.133167e-01 setrgbcolor -fill -grestore -newpath -9.91177e+01 6.475391e+01 moveto -1.00679e+02 6.140981e+01 lineto -1.017337e+02 6.211508e+01 lineto -1.001263e+02 6.542832e+01 lineto -9.91177e+01 6.475391e+01 lineto -closepath -gsave -7.094857e-01 7.094857e-01 7.094857e-01 setrgbcolor -fill -grestore -newpath -9.729813e+01 6.795604e+01 moveto -9.91177e+01 6.475391e+01 lineto -1.001263e+02 6.542832e+01 lineto -9.82529e+01 6.859448e+01 lineto -9.729813e+01 6.795604e+01 lineto -closepath -gsave -7.025248e-01 7.025248e-01 7.025248e-01 setrgbcolor -fill -grestore -newpath -9.523405e+01 7.099195e+01 moveto -9.729813e+01 6.795604e+01 lineto -9.82529e+01 6.859448e+01 lineto -9.61278e+01 7.158959e+01 lineto -9.523405e+01 7.099195e+01 lineto -closepath -gsave -6.926275e-01 6.926275e-01 6.926275e-01 setrgbcolor -fill -grestore -newpath -9.294108e+01 7.383866e+01 moveto -9.523405e+01 7.099195e+01 lineto -9.61278e+01 7.158959e+01 lineto -9.376705e+01 7.439097e+01 lineto -9.294108e+01 7.383866e+01 lineto -closepath -gsave -6.800656e-01 6.800656e-01 6.800656e-01 setrgbcolor -fill -grestore -newpath -9.043659e+01 7.647461e+01 moveto -9.294108e+01 7.383866e+01 lineto -9.376705e+01 7.439097e+01 lineto -9.118852e+01 7.697742e+01 lineto -9.043659e+01 7.647461e+01 lineto -closepath -gsave -6.651784e-01 6.651784e-01 6.651784e-01 setrgbcolor -fill -grestore -newpath -8.773953e+01 7.887986e+01 moveto -9.043659e+01 7.647461e+01 lineto -9.118852e+01 7.697742e+01 lineto -8.841174e+01 7.932936e+01 lineto -8.773953e+01 7.887986e+01 lineto -closepath -gsave -6.483585e-01 6.483585e-01 6.483585e-01 setrgbcolor -fill -grestore -newpath -8.487032e+01 8.10362e+01 moveto -8.773953e+01 7.887986e+01 lineto -8.841174e+01 7.932936e+01 lineto -8.545771e+01 8.142898e+01 lineto -8.487032e+01 8.10362e+01 lineto -closepath -gsave -6.300368e-01 6.300368e-01 6.300368e-01 setrgbcolor -fill -grestore -newpath -8.185069e+01 8.29273e+01 moveto -8.487032e+01 8.10362e+01 lineto -8.545771e+01 8.142898e+01 lineto -8.234881e+01 8.326038e+01 lineto -8.185069e+01 8.29273e+01 lineto -closepath -gsave -6.10665e-01 6.10665e-01 6.10665e-01 setrgbcolor -fill -grestore -newpath -7.870349e+01 8.453884e+01 moveto -8.185069e+01 8.29273e+01 lineto -8.234881e+01 8.326038e+01 lineto -7.910858e+01 8.480971e+01 lineto -7.870349e+01 8.453884e+01 lineto -closepath -gsave -5.906987e-01 5.906987e-01 5.906987e-01 setrgbcolor -fill -grestore -newpath -7.545254e+01 8.585862e+01 moveto -7.870349e+01 8.453884e+01 lineto -7.910858e+01 8.480971e+01 lineto -7.576153e+01 8.606524e+01 lineto -7.545254e+01 8.585862e+01 lineto -closepath -gsave -5.705808e-01 5.705808e-01 5.705808e-01 setrgbcolor -fill -grestore -newpath -7.212247e+01 8.687666e+01 moveto -7.545254e+01 8.585862e+01 lineto -7.576153e+01 8.606524e+01 lineto -7.233302e+01 8.701745e+01 lineto -7.212247e+01 8.687666e+01 lineto -closepath -gsave -5.507263e-01 5.507263e-01 5.507263e-01 setrgbcolor -fill -grestore -newpath -6.873848e+01 8.758524e+01 moveto -7.212247e+01 8.687666e+01 lineto -7.233302e+01 8.701745e+01 lineto -6.884899e+01 8.765914e+01 lineto -6.873848e+01 8.758524e+01 lineto -closepath -gsave -5.315088e-01 5.315088e-01 5.315088e-01 setrgbcolor -fill -grestore -newpath -6.532618e+01 8.797901e+01 moveto -6.873848e+01 8.758524e+01 lineto -6.884899e+01 8.765914e+01 lineto -6.533582e+01 8.798545e+01 lineto -6.532618e+01 8.797901e+01 lineto -closepath -gsave -5.1325e-01 5.1325e-01 5.1325e-01 setrgbcolor -fill -grestore -newpath -6.191142e+01 8.805497e+01 moveto -6.532618e+01 8.797901e+01 lineto -6.533582e+01 8.798545e+01 lineto -6.182011e+01 8.799392e+01 lineto -6.191142e+01 8.805497e+01 lineto -closepath -gsave -4.962123e-01 4.962123e-01 4.962123e-01 setrgbcolor -fill -grestore -newpath -9.353008e+01 1.512722e+01 moveto -9.093176e+01 1.2765e+01 lineto -9.151645e+01 1.326912e+01 lineto -9.417335e+01 1.568184e+01 lineto -9.353008e+01 1.512722e+01 lineto -closepath -gsave -5.120686e-01 5.120686e-01 5.120686e-01 setrgbcolor -fill -grestore -newpath -9.591241e+01 1.772316e+01 moveto -9.353008e+01 1.512722e+01 lineto -9.417335e+01 1.568184e+01 lineto -9.660939e+01 1.832409e+01 lineto -9.591241e+01 1.772316e+01 lineto -closepath -gsave -5.291262e-01 5.291262e-01 5.291262e-01 setrgbcolor -fill -grestore -newpath -9.806072e+01 2.053316e+01 moveto -9.591241e+01 1.772316e+01 lineto -9.660939e+01 1.832409e+01 lineto -9.880614e+01 2.117586e+01 lineto -9.806072e+01 2.053316e+01 lineto -closepath -gsave -5.469614e-01 5.469614e-01 5.469614e-01 setrgbcolor -fill -grestore -newpath -9.995875e+01 2.353596e+01 moveto -9.806072e+01 2.053316e+01 lineto -9.880614e+01 2.117586e+01 lineto -1.00747e+02 2.421556e+01 lineto -9.995875e+01 2.353596e+01 lineto -closepath -gsave -5.652734e-01 5.652734e-01 5.652734e-01 setrgbcolor -fill -grestore -newpath -1.015921e+02 2.670883e+01 moveto -9.995875e+01 2.353596e+01 lineto -1.00747e+02 2.421556e+01 lineto -1.024172e+02 2.742018e+01 lineto -1.015921e+02 2.670883e+01 lineto -closepath -gsave -5.837181e-01 5.837181e-01 5.837181e-01 setrgbcolor -fill -grestore -newpath -1.029485e+02 3.002773e+01 moveto -1.015921e+02 2.670883e+01 lineto -1.024172e+02 2.742018e+01 lineto -1.038041e+02 3.076545e+01 lineto -1.029485e+02 3.002773e+01 lineto -closepath -gsave -6.019176e-01 6.019176e-01 6.019176e-01 setrgbcolor -fill -grestore -newpath -1.040175e+02 3.346755e+01 moveto -1.029485e+02 3.002773e+01 lineto -1.038041e+02 3.076545e+01 lineto -1.048973e+02 3.422606e+01 lineto -1.040175e+02 3.346755e+01 lineto -closepath -gsave -6.194726e-01 6.194726e-01 6.194726e-01 setrgbcolor -fill -grestore -newpath -1.047912e+02 3.700225e+01 moveto -1.040175e+02 3.346755e+01 lineto -1.048973e+02 3.422606e+01 lineto -1.056884e+02 3.77758e+01 lineto -1.047912e+02 3.700225e+01 lineto -closepath -gsave -6.359757e-01 6.359757e-01 6.359757e-01 setrgbcolor -fill -grestore -newpath -1.052637e+02 4.060507e+01 moveto -1.047912e+02 3.700225e+01 lineto -1.056884e+02 3.77758e+01 lineto -1.061715e+02 4.13878e+01 lineto -1.052637e+02 4.060507e+01 lineto -closepath -gsave -6.510261e-01 6.510261e-01 6.510261e-01 setrgbcolor -fill -grestore -newpath -1.054313e+02 4.424873e+01 moveto -1.052637e+02 4.060507e+01 lineto -1.061715e+02 4.13878e+01 lineto -1.063429e+02 4.503471e+01 lineto -1.054313e+02 4.424873e+01 lineto -closepath -gsave -6.642445e-01 6.642445e-01 6.642445e-01 setrgbcolor -fill -grestore -newpath -1.052929e+02 4.790564e+01 moveto -1.054313e+02 4.424873e+01 lineto -1.063429e+02 4.503471e+01 lineto -1.062014e+02 4.868894e+01 lineto -1.052929e+02 4.790564e+01 lineto -closepath -gsave -6.752878e-01 6.752878e-01 6.752878e-01 setrgbcolor -fill -grestore -newpath -1.048494e+02 5.154813e+01 moveto -1.052929e+02 4.790564e+01 lineto -1.062014e+02 4.868894e+01 lineto -1.057479e+02 5.232281e+01 lineto -1.048494e+02 5.154813e+01 lineto -closepath -gsave -6.838625e-01 6.838625e-01 6.838625e-01 setrgbcolor -fill -grestore -newpath -1.041042e+02 5.514862e+01 moveto -1.048494e+02 5.154813e+01 lineto -1.057479e+02 5.232281e+01 lineto -1.049859e+02 5.590881e+01 lineto -1.041042e+02 5.514862e+01 lineto -closepath -gsave -6.897365e-01 6.897365e-01 6.897365e-01 setrgbcolor -fill -grestore -newpath -1.03063e+02 5.867985e+01 moveto -1.041042e+02 5.514862e+01 lineto -1.049859e+02 5.590881e+01 lineto -1.039213e+02 5.941979e+01 lineto -1.03063e+02 5.867985e+01 lineto -closepath -gsave -6.927486e-01 6.927486e-01 6.927486e-01 setrgbcolor -fill -grestore -newpath -1.017337e+02 6.211508e+01 moveto -1.03063e+02 5.867985e+01 lineto -1.039213e+02 5.941979e+01 lineto -1.025619e+02 6.282919e+01 lineto -1.017337e+02 6.211508e+01 lineto -closepath -gsave -6.928151e-01 6.928151e-01 6.928151e-01 setrgbcolor -fill -grestore -newpath -1.001263e+02 6.542832e+01 moveto -1.017337e+02 6.211508e+01 lineto -1.025619e+02 6.282919e+01 lineto -1.009183e+02 6.611118e+01 lineto -1.001263e+02 6.542832e+01 lineto -closepath -gsave -6.899335e-01 6.899335e-01 6.899335e-01 setrgbcolor -fill -grestore -newpath -9.82529e+01 6.859448e+01 moveto -1.001263e+02 6.542832e+01 lineto -1.009183e+02 6.611118e+01 lineto -9.900265e+01 6.924092e+01 lineto -9.82529e+01 6.859448e+01 lineto -closepath -gsave -6.841824e-01 6.841824e-01 6.841824e-01 setrgbcolor -fill -grestore -newpath -9.61278e+01 7.158959e+01 moveto -9.82529e+01 6.859448e+01 lineto -9.900265e+01 6.924092e+01 lineto -9.682964e+01 7.219471e+01 lineto -9.61278e+01 7.158959e+01 lineto -closepath -gsave -6.757185e-01 6.757185e-01 6.757185e-01 setrgbcolor -fill -grestore -newpath -9.376705e+01 7.439097e+01 moveto -9.61278e+01 7.158959e+01 lineto -9.682964e+01 7.219471e+01 lineto -9.441566e+01 7.49502e+01 lineto -9.376705e+01 7.439097e+01 lineto -closepath -gsave -6.647704e-01 6.647704e-01 6.647704e-01 setrgbcolor -fill -grestore -newpath -9.118852e+01 7.697742e+01 moveto -9.376705e+01 7.439097e+01 lineto -9.441566e+01 7.49502e+01 lineto -9.1779e+01 7.748653e+01 lineto -9.118852e+01 7.697742e+01 lineto -closepath -gsave -6.516288e-01 6.516288e-01 6.516288e-01 setrgbcolor -fill -grestore -newpath -8.841174e+01 7.932936e+01 moveto -9.118852e+01 7.697742e+01 lineto -9.1779e+01 7.748653e+01 lineto -8.89396e+01 7.978448e+01 lineto -8.841174e+01 7.932936e+01 lineto -closepath -gsave -6.366355e-01 6.366355e-01 6.366355e-01 setrgbcolor -fill -grestore -newpath -8.545771e+01 8.142898e+01 moveto -8.841174e+01 7.932936e+01 lineto -8.89396e+01 7.978448e+01 lineto -8.591897e+01 8.182668e+01 lineto -8.545771e+01 8.142898e+01 lineto -closepath -gsave -6.201694e-01 6.201694e-01 6.201694e-01 setrgbcolor -fill -grestore -newpath -8.234881e+01 8.326038e+01 moveto -8.545771e+01 8.142898e+01 lineto -8.591897e+01 8.182668e+01 lineto -8.273998e+01 8.359765e+01 lineto -8.234881e+01 8.326038e+01 lineto -closepath -gsave -6.026321e-01 6.026321e-01 6.026321e-01 setrgbcolor -fill -grestore -newpath -7.910858e+01 8.480971e+01 moveto -8.234881e+01 8.326038e+01 lineto -8.273998e+01 8.359765e+01 lineto -7.942668e+01 8.508399e+01 lineto -7.910858e+01 8.480971e+01 lineto -closepath -gsave -5.844325e-01 5.844325e-01 5.844325e-01 setrgbcolor -fill -grestore -newpath -7.576153e+01 8.606524e+01 moveto -7.910858e+01 8.480971e+01 lineto -7.942668e+01 8.508399e+01 lineto -7.600417e+01 8.627444e+01 lineto -7.576153e+01 8.606524e+01 lineto -closepath -gsave -5.659722e-01 5.659722e-01 5.659722e-01 setrgbcolor -fill -grestore -newpath -7.233302e+01 8.701745e+01 moveto -7.576153e+01 8.606524e+01 lineto -7.600417e+01 8.627444e+01 lineto -7.249836e+01 8.716e+01 lineto -7.233302e+01 8.701745e+01 lineto -closepath -gsave -5.476318e-01 5.476318e-01 5.476318e-01 setrgbcolor -fill -grestore -newpath -6.884899e+01 8.765914e+01 moveto -7.233302e+01 8.701745e+01 lineto -7.249836e+01 8.716e+01 lineto -6.893577e+01 8.773396e+01 lineto -6.884899e+01 8.765914e+01 lineto -closepath -gsave -5.297584e-01 5.297584e-01 5.297584e-01 setrgbcolor -fill -grestore -newpath -6.533582e+01 8.798545e+01 moveto -6.884899e+01 8.765914e+01 lineto -6.893577e+01 8.773396e+01 lineto -6.53434e+01 8.799198e+01 lineto -6.533582e+01 8.798545e+01 lineto -closepath -gsave -5.126555e-01 5.126555e-01 5.126555e-01 setrgbcolor -fill -grestore -newpath -6.182011e+01 8.799392e+01 moveto -6.533582e+01 8.798545e+01 lineto -6.53434e+01 8.799198e+01 lineto -6.174842e+01 8.79321e+01 lineto -6.182011e+01 8.799392e+01 lineto -closepath -gsave -4.965758e-01 4.965758e-01 4.965758e-01 setrgbcolor -fill -grestore -newpath -9.880614e+01 2.117586e+01 moveto -9.660939e+01 1.832409e+01 lineto -9.711149e+01 1.892876e+01 lineto -9.934314e+01 2.182255e+01 lineto -9.880614e+01 2.117586e+01 lineto -closepath -gsave -5.353201e-01 5.353201e-01 5.353201e-01 setrgbcolor -fill -grestore -newpath -1.00747e+02 2.421556e+01 moveto -9.880614e+01 2.117586e+01 lineto -9.934314e+01 2.182255e+01 lineto -1.013148e+02 2.489938e+01 lineto -1.00747e+02 2.421556e+01 lineto -closepath -gsave -5.518969e-01 5.518969e-01 5.518969e-01 setrgbcolor -fill -grestore -newpath -1.024172e+02 2.742018e+01 moveto -1.00747e+02 2.421556e+01 lineto -1.013148e+02 2.489938e+01 lineto -1.030115e+02 2.813594e+01 lineto -1.024172e+02 2.742018e+01 lineto -closepath -gsave -5.686261e-01 5.686261e-01 5.686261e-01 setrgbcolor -fill -grestore -newpath -1.038041e+02 3.076545e+01 moveto -1.024172e+02 2.742018e+01 lineto -1.030115e+02 2.813594e+01 lineto -1.044205e+02 3.150775e+01 lineto -1.038041e+02 3.076545e+01 lineto -closepath -gsave -5.851785e-01 5.851785e-01 5.851785e-01 setrgbcolor -fill -grestore -newpath -1.048973e+02 3.422606e+01 moveto -1.038041e+02 3.076545e+01 lineto -1.044205e+02 3.150775e+01 lineto -1.05531e+02 3.498926e+01 lineto -1.048973e+02 3.422606e+01 lineto -closepath -gsave -6.01204e-01 6.01204e-01 6.01204e-01 setrgbcolor -fill -grestore -newpath -1.056884e+02 3.77758e+01 moveto -1.048973e+02 3.422606e+01 lineto -1.05531e+02 3.498926e+01 lineto -1.063347e+02 3.855414e+01 lineto -1.056884e+02 3.77758e+01 lineto -closepath -gsave -6.163437e-01 6.163437e-01 6.163437e-01 setrgbcolor -fill -grestore -newpath -1.061715e+02 4.13878e+01 moveto -1.056884e+02 3.77758e+01 lineto -1.063347e+02 3.855414e+01 lineto -1.068255e+02 4.217538e+01 lineto -1.061715e+02 4.13878e+01 lineto -closepath -gsave -6.30242e-01 6.30242e-01 6.30242e-01 setrgbcolor -fill -grestore -newpath -1.063429e+02 4.503471e+01 moveto -1.061715e+02 4.13878e+01 lineto -1.068255e+02 4.217538e+01 lineto -1.069996e+02 4.582557e+01 lineto -1.063429e+02 4.503471e+01 lineto -closepath -gsave -6.425597e-01 6.425597e-01 6.425597e-01 setrgbcolor -fill -grestore -newpath -1.062014e+02 4.868894e+01 moveto -1.063429e+02 4.503471e+01 lineto -1.069996e+02 4.582557e+01 lineto -1.068558e+02 4.947709e+01 lineto -1.062014e+02 4.868894e+01 lineto -closepath -gsave -6.529866e-01 6.529866e-01 6.529866e-01 setrgbcolor -fill -grestore -newpath -1.057479e+02 5.232281e+01 moveto -1.062014e+02 4.868894e+01 lineto -1.068558e+02 4.947709e+01 lineto -1.063951e+02 5.310228e+01 lineto -1.057479e+02 5.232281e+01 lineto -closepath -gsave -6.612535e-01 6.612535e-01 6.612535e-01 setrgbcolor -fill -grestore -newpath -1.049859e+02 5.590881e+01 moveto -1.057479e+02 5.232281e+01 lineto -1.063951e+02 5.310228e+01 lineto -1.056211e+02 5.667371e+01 lineto -1.049859e+02 5.590881e+01 lineto -closepath -gsave -6.671427e-01 6.671427e-01 6.671427e-01 setrgbcolor -fill -grestore -newpath -1.039213e+02 5.941979e+01 moveto -1.049859e+02 5.590881e+01 lineto -1.056211e+02 5.667371e+01 lineto -1.045395e+02 6.016433e+01 lineto -1.039213e+02 5.941979e+01 lineto -closepath -gsave -6.704969e-01 6.704969e-01 6.704969e-01 setrgbcolor -fill -grestore -newpath -1.025619e+02 6.282919e+01 moveto -1.039213e+02 5.941979e+01 lineto -1.045395e+02 6.016433e+01 lineto -1.031586e+02 6.354772e+01 lineto -1.025619e+02 6.282919e+01 lineto -closepath -gsave -6.712254e-01 6.712254e-01 6.712254e-01 setrgbcolor -fill -grestore -newpath -1.009183e+02 6.611118e+01 moveto -1.025619e+02 6.282919e+01 lineto -1.031586e+02 6.354772e+01 lineto -1.014888e+02 6.679827e+01 lineto -1.009183e+02 6.611118e+01 lineto -closepath -gsave -6.693078e-01 6.693078e-01 6.693078e-01 setrgbcolor -fill -grestore -newpath -9.900265e+01 6.924092e+01 moveto -1.009183e+02 6.611118e+01 lineto -1.014888e+02 6.679827e+01 lineto -9.954277e+01 6.989136e+01 lineto -9.900265e+01 6.924092e+01 lineto -closepath -gsave -6.647951e-01 6.647951e-01 6.647951e-01 setrgbcolor -fill -grestore -newpath -9.682964e+01 7.219471e+01 moveto -9.900265e+01 6.924092e+01 lineto -9.954277e+01 6.989136e+01 lineto -9.733524e+01 7.280359e+01 lineto -9.682964e+01 7.219471e+01 lineto -closepath -gsave -6.578076e-01 6.578076e-01 6.578076e-01 setrgbcolor -fill -grestore -newpath -9.441566e+01 7.49502e+01 moveto -9.682964e+01 7.219471e+01 lineto -9.733524e+01 7.280359e+01 lineto -9.488292e+01 7.55129e+01 lineto -9.441566e+01 7.49502e+01 lineto -closepath -gsave -6.485298e-01 6.485298e-01 6.485298e-01 setrgbcolor -fill -grestore -newpath -9.1779e+01 7.748653e+01 moveto -9.441566e+01 7.49502e+01 lineto -9.488292e+01 7.55129e+01 lineto -9.220437e+01 7.799879e+01 lineto -9.1779e+01 7.748653e+01 lineto -closepath -gsave -6.372036e-01 6.372036e-01 6.372036e-01 setrgbcolor -fill -grestore -newpath -8.89396e+01 7.978448e+01 moveto -9.1779e+01 7.748653e+01 lineto -9.220437e+01 7.799879e+01 lineto -8.931987e+01 8.024243e+01 lineto -8.89396e+01 7.978448e+01 lineto -closepath -gsave -6.241183e-01 6.241183e-01 6.241183e-01 setrgbcolor -fill -grestore -newpath -8.591897e+01 8.182668e+01 moveto -8.89396e+01 7.978448e+01 lineto -8.931987e+01 8.024243e+01 lineto -8.625126e+01 8.222684e+01 lineto -8.591897e+01 8.182668e+01 lineto -closepath -gsave -6.095996e-01 6.095996e-01 6.095996e-01 setrgbcolor -fill -grestore -newpath -8.273998e+01 8.359765e+01 moveto -8.591897e+01 8.182668e+01 lineto -8.625126e+01 8.222684e+01 lineto -8.302177e+01 8.3937e+01 lineto -8.273998e+01 8.359765e+01 lineto -closepath -gsave -5.939968e-01 5.939968e-01 5.939968e-01 setrgbcolor -fill -grestore -newpath -7.942668e+01 8.508399e+01 moveto -8.273998e+01 8.359765e+01 lineto -8.302177e+01 8.3937e+01 lineto -7.965584e+01 8.535996e+01 lineto -7.942668e+01 8.508399e+01 lineto -closepath -gsave -5.776701e-01 5.776701e-01 5.776701e-01 setrgbcolor -fill -grestore -newpath -7.600417e+01 8.627444e+01 moveto -7.942668e+01 8.508399e+01 lineto -7.965584e+01 8.535996e+01 lineto -7.617897e+01 8.648494e+01 lineto -7.600417e+01 8.627444e+01 lineto -closepath -gsave -5.609775e-01 5.609775e-01 5.609775e-01 setrgbcolor -fill -grestore -newpath -7.249836e+01 8.716e+01 moveto -7.600417e+01 8.627444e+01 lineto -7.617897e+01 8.648494e+01 lineto -7.261746e+01 8.730344e+01 lineto -7.249836e+01 8.716e+01 lineto -closepath -gsave -5.442623e-01 5.442623e-01 5.442623e-01 setrgbcolor -fill -grestore -newpath -6.893577e+01 8.773396e+01 moveto -7.249836e+01 8.716e+01 lineto -7.261746e+01 8.730344e+01 lineto -6.899829e+01 8.780925e+01 lineto -6.893577e+01 8.773396e+01 lineto -closepath -gsave -5.278425e-01 5.278425e-01 5.278425e-01 setrgbcolor -fill -grestore -newpath -6.53434e+01 8.799198e+01 moveto -6.893577e+01 8.773396e+01 lineto -6.899829e+01 8.780925e+01 lineto -6.534885e+01 8.799855e+01 lineto -6.53434e+01 8.799198e+01 lineto -closepath -gsave -5.12001e-01 5.12001e-01 5.12001e-01 setrgbcolor -fill -grestore -newpath -6.174842e+01 8.79321e+01 moveto -6.53434e+01 8.799198e+01 lineto -6.534885e+01 8.799855e+01 lineto -6.169677e+01 8.78699e+01 lineto -6.174842e+01 8.79321e+01 lineto -closepath -gsave -4.969786e-01 4.969786e-01 4.969786e-01 setrgbcolor -fill -grestore -newpath -1.044205e+02 3.150775e+01 moveto -1.030115e+02 2.813594e+01 lineto -1.033715e+02 2.88517e+01 lineto -1.047938e+02 3.225004e+01 lineto -1.044205e+02 3.150775e+01 lineto -closepath -gsave -5.680344e-01 5.680344e-01 5.680344e-01 setrgbcolor -fill -grestore -newpath -1.05531e+02 3.498926e+01 moveto -1.044205e+02 3.150775e+01 lineto -1.047938e+02 3.225004e+01 lineto -1.059149e+02 3.575247e+01 lineto -1.05531e+02 3.498926e+01 lineto -closepath -gsave -5.824984e-01 5.824984e-01 5.824984e-01 setrgbcolor -fill -grestore -newpath -1.063347e+02 3.855414e+01 moveto -1.05531e+02 3.498926e+01 lineto -1.059149e+02 3.575247e+01 lineto -1.067262e+02 3.933248e+01 lineto -1.063347e+02 3.855414e+01 lineto -closepath -gsave -5.962414e-01 5.962414e-01 5.962414e-01 setrgbcolor -fill -grestore -newpath -1.068255e+02 4.217538e+01 moveto -1.063347e+02 3.855414e+01 lineto -1.067262e+02 3.933248e+01 lineto -1.072216e+02 4.296296e+01 lineto -1.068255e+02 4.217538e+01 lineto -closepath -gsave -6.089535e-01 6.089535e-01 6.089535e-01 setrgbcolor -fill -grestore -newpath -1.069996e+02 4.582557e+01 moveto -1.068255e+02 4.217538e+01 lineto -1.072216e+02 4.296296e+01 lineto -1.073974e+02 4.661643e+01 lineto -1.069996e+02 4.582557e+01 lineto -closepath -gsave -6.203358e-01 6.203358e-01 6.203358e-01 setrgbcolor -fill -grestore -newpath -1.068558e+02 4.947709e+01 moveto -1.069996e+02 4.582557e+01 lineto -1.073974e+02 4.661643e+01 lineto -1.072522e+02 5.026524e+01 lineto -1.068558e+02 4.947709e+01 lineto -closepath -gsave -6.301122e-01 6.301122e-01 6.301122e-01 setrgbcolor -fill -grestore -newpath -1.063951e+02 5.310228e+01 moveto -1.068558e+02 4.947709e+01 lineto -1.072522e+02 5.026524e+01 lineto -1.067872e+02 5.388176e+01 lineto -1.063951e+02 5.310228e+01 lineto -closepath -gsave -6.380387e-01 6.380387e-01 6.380387e-01 setrgbcolor -fill -grestore -newpath -1.056211e+02 5.667371e+01 moveto -1.063951e+02 5.310228e+01 lineto -1.067872e+02 5.388176e+01 lineto -1.060058e+02 5.743861e+01 lineto -1.056211e+02 5.667371e+01 lineto -closepath -gsave -6.439134e-01 6.439134e-01 6.439134e-01 setrgbcolor -fill -grestore -newpath -1.045395e+02 6.016433e+01 moveto -1.056211e+02 5.667371e+01 lineto -1.060058e+02 5.743861e+01 lineto -1.04914e+02 6.090887e+01 lineto -1.045395e+02 6.016433e+01 lineto -closepath -gsave -6.475844e-01 6.475844e-01 6.475844e-01 setrgbcolor -fill -grestore -newpath -1.031586e+02 6.354772e+01 moveto -1.045395e+02 6.016433e+01 lineto -1.04914e+02 6.090887e+01 lineto -1.0352e+02 6.426625e+01 lineto -1.031586e+02 6.354772e+01 lineto -closepath -gsave -6.489553e-01 6.489553e-01 6.489553e-01 setrgbcolor -fill -grestore -newpath -1.014888e+02 6.679827e+01 moveto -1.031586e+02 6.354772e+01 lineto -1.0352e+02 6.426625e+01 lineto -1.018344e+02 6.748536e+01 lineto -1.014888e+02 6.679827e+01 lineto -closepath -gsave -6.479897e-01 6.479897e-01 6.479897e-01 setrgbcolor -fill -grestore -newpath -9.954277e+01 6.989136e+01 moveto -1.014888e+02 6.679827e+01 lineto -1.018344e+02 6.748536e+01 lineto -9.986991e+01 7.054181e+01 lineto -9.954277e+01 6.989136e+01 lineto -closepath -gsave -6.447121e-01 6.447121e-01 6.447121e-01 setrgbcolor -fill -grestore -newpath -9.733524e+01 7.280359e+01 moveto -9.954277e+01 6.989136e+01 lineto -9.986991e+01 7.054181e+01 lineto -9.764148e+01 7.341247e+01 lineto -9.733524e+01 7.280359e+01 lineto -closepath -gsave -6.392075e-01 6.392075e-01 6.392075e-01 setrgbcolor -fill -grestore -newpath -9.488292e+01 7.55129e+01 moveto -9.733524e+01 7.280359e+01 lineto -9.764148e+01 7.341247e+01 lineto -9.516593e+01 7.60756e+01 lineto -9.488292e+01 7.55129e+01 lineto -closepath -gsave -6.316179e-01 6.316179e-01 6.316179e-01 setrgbcolor -fill -grestore -newpath -9.220437e+01 7.799879e+01 moveto -9.488292e+01 7.55129e+01 lineto -9.516593e+01 7.60756e+01 lineto -9.246201e+01 7.851105e+01 lineto -9.220437e+01 7.799879e+01 lineto -closepath -gsave -6.221364e-01 6.221364e-01 6.221364e-01 setrgbcolor -fill -grestore -newpath -8.931987e+01 8.024243e+01 moveto -9.220437e+01 7.799879e+01 lineto -9.246201e+01 7.851105e+01 lineto -8.95502e+01 8.070038e+01 lineto -8.931987e+01 8.024243e+01 lineto -closepath -gsave -6.110005e-01 6.110005e-01 6.110005e-01 setrgbcolor -fill -grestore -newpath -8.625126e+01 8.222684e+01 moveto -8.931987e+01 8.024243e+01 lineto -8.95502e+01 8.070038e+01 lineto -8.645252e+01 8.262701e+01 lineto -8.625126e+01 8.222684e+01 lineto -closepath -gsave -5.984821e-01 5.984821e-01 5.984821e-01 setrgbcolor -fill -grestore -newpath -8.302177e+01 8.3937e+01 moveto -8.625126e+01 8.222684e+01 lineto -8.645252e+01 8.262701e+01 lineto -8.319245e+01 8.427635e+01 lineto -8.302177e+01 8.3937e+01 lineto -closepath -gsave -5.848778e-01 5.848778e-01 5.848778e-01 setrgbcolor -fill -grestore -newpath -7.965584e+01 8.535996e+01 moveto -8.302177e+01 8.3937e+01 lineto -8.319245e+01 8.427635e+01 lineto -7.979465e+01 8.563593e+01 lineto -7.965584e+01 8.535996e+01 lineto -closepath -gsave -5.704977e-01 5.704977e-01 5.704977e-01 setrgbcolor -fill -grestore -newpath -7.617897e+01 8.648494e+01 moveto -7.965584e+01 8.535996e+01 lineto -7.979465e+01 8.563593e+01 lineto -7.628484e+01 8.669545e+01 lineto -7.617897e+01 8.648494e+01 lineto -closepath -gsave -5.556544e-01 5.556544e-01 5.556544e-01 setrgbcolor -fill -grestore -newpath -7.261746e+01 8.730344e+01 moveto -7.617897e+01 8.648494e+01 lineto -7.628484e+01 8.669545e+01 lineto -7.268961e+01 8.744688e+01 lineto -7.261746e+01 8.730344e+01 lineto -closepath -gsave -5.406524e-01 5.406524e-01 5.406524e-01 setrgbcolor -fill -grestore -newpath -6.899829e+01 8.780925e+01 moveto -7.261746e+01 8.730344e+01 lineto -7.268961e+01 8.744688e+01 lineto -6.903616e+01 8.788454e+01 lineto -6.899829e+01 8.780925e+01 lineto -closepath -gsave -5.25778e-01 5.25778e-01 5.25778e-01 setrgbcolor -fill -grestore -newpath -6.534885e+01 8.799855e+01 moveto -6.899829e+01 8.780925e+01 lineto -6.903616e+01 8.788454e+01 lineto -6.535215e+01 8.800512e+01 lineto -6.534885e+01 8.799855e+01 lineto -closepath -gsave -5.112912e-01 5.112912e-01 5.112912e-01 setrgbcolor -fill -grestore -newpath -6.169677e+01 8.78699e+01 moveto -6.534885e+01 8.799855e+01 lineto -6.535215e+01 8.800512e+01 lineto -6.166548e+01 8.78077e+01 lineto -6.169677e+01 8.78699e+01 lineto -closepath -gsave -4.974183e-01 4.974183e-01 4.974183e-01 setrgbcolor -fill -grestore -newpath -1.072216e+02 4.296296e+01 moveto -1.067262e+02 3.933248e+01 lineto -1.068604e+02 4.010602e+01 lineto -1.073574e+02 4.374569e+01 lineto -1.072216e+02 4.296296e+01 lineto -closepath -gsave -5.875704e-01 5.875704e-01 5.875704e-01 setrgbcolor -fill -grestore -newpath -1.073974e+02 4.661643e+01 moveto -1.072216e+02 4.296296e+01 lineto -1.073574e+02 4.374569e+01 lineto -1.075338e+02 4.740242e+01 lineto -1.073974e+02 4.661643e+01 lineto -closepath -gsave -5.979986e-01 5.979986e-01 5.979986e-01 setrgbcolor -fill -grestore -newpath -1.072522e+02 5.026524e+01 moveto -1.073974e+02 4.661643e+01 lineto -1.075338e+02 4.740242e+01 lineto -1.073881e+02 5.104854e+01 lineto -1.072522e+02 5.026524e+01 lineto -closepath -gsave -6.070993e-01 6.070993e-01 6.070993e-01 setrgbcolor -fill -grestore -newpath -1.067872e+02 5.388176e+01 moveto -1.072522e+02 5.026524e+01 lineto -1.073881e+02 5.104854e+01 lineto -1.069216e+02 5.465643e+01 lineto -1.067872e+02 5.388176e+01 lineto -closepath -gsave -6.146547e-01 6.146547e-01 6.146547e-01 setrgbcolor -fill -grestore -newpath -1.060058e+02 5.743861e+01 moveto -1.067872e+02 5.388176e+01 lineto -1.069216e+02 5.465643e+01 lineto -1.061377e+02 5.81988e+01 lineto -1.060058e+02 5.743861e+01 lineto -closepath -gsave -6.2048e-01 6.2048e-01 6.2048e-01 setrgbcolor -fill -grestore -newpath -1.04914e+02 6.090887e+01 moveto -1.060058e+02 5.743861e+01 lineto -1.061377e+02 5.81988e+01 lineto -1.050424e+02 6.164881e+01 lineto -1.04914e+02 6.090887e+01 lineto -closepath -gsave -6.244299e-01 6.244299e-01 6.244299e-01 setrgbcolor -fill -grestore -newpath -1.0352e+02 6.426625e+01 moveto -1.04914e+02 6.090887e+01 lineto -1.050424e+02 6.164881e+01 lineto -1.036439e+02 6.498036e+01 lineto -1.0352e+02 6.426625e+01 lineto -closepath -gsave -6.264046e-01 6.264046e-01 6.264046e-01 setrgbcolor -fill -grestore -newpath -1.018344e+02 6.748536e+01 moveto -1.0352e+02 6.426625e+01 lineto -1.036439e+02 6.498036e+01 lineto -1.019529e+02 6.816821e+01 lineto -1.018344e+02 6.748536e+01 lineto -closepath -gsave -6.263535e-01 6.263535e-01 6.263535e-01 setrgbcolor -fill -grestore -newpath -9.986991e+01 7.054181e+01 moveto -1.018344e+02 6.748536e+01 lineto -1.019529e+02 6.816821e+01 lineto -9.998208e+01 7.118825e+01 lineto -9.986991e+01 7.054181e+01 lineto -closepath -gsave -6.242773e-01 6.242773e-01 6.242773e-01 setrgbcolor -fill -grestore -newpath -9.764148e+01 7.341247e+01 moveto -9.986991e+01 7.054181e+01 lineto -9.998208e+01 7.118825e+01 lineto -9.774647e+01 7.401759e+01 lineto -9.764148e+01 7.341247e+01 lineto -closepath -gsave -6.20228e-01 6.20228e-01 6.20228e-01 setrgbcolor -fill -grestore -newpath -9.516593e+01 7.60756e+01 moveto -9.764148e+01 7.341247e+01 lineto -9.774647e+01 7.401759e+01 lineto -9.526296e+01 7.663483e+01 lineto -9.516593e+01 7.60756e+01 lineto -closepath -gsave -6.143068e-01 6.143068e-01 6.143068e-01 setrgbcolor -fill -grestore -newpath -9.246201e+01 7.851105e+01 moveto -9.516593e+01 7.60756e+01 lineto -9.526296e+01 7.663483e+01 lineto -9.255035e+01 7.902016e+01 lineto -9.246201e+01 7.851105e+01 lineto -closepath -gsave -6.066607e-01 6.066607e-01 6.066607e-01 setrgbcolor -fill -grestore -newpath -8.95502e+01 8.070038e+01 moveto -9.246201e+01 7.851105e+01 lineto -9.255035e+01 7.902016e+01 lineto -8.962917e+01 8.11555e+01 lineto -8.95502e+01 8.070038e+01 lineto -closepath -gsave -5.974763e-01 5.974763e-01 5.974763e-01 setrgbcolor -fill -grestore -newpath -8.645252e+01 8.262701e+01 moveto -8.95502e+01 8.070038e+01 lineto -8.962917e+01 8.11555e+01 lineto -8.652153e+01 8.30247e+01 lineto -8.645252e+01 8.262701e+01 lineto -closepath -gsave -5.869731e-01 5.869731e-01 5.869731e-01 setrgbcolor -fill -grestore -newpath -8.319245e+01 8.427635e+01 moveto -8.645252e+01 8.262701e+01 lineto -8.652153e+01 8.30247e+01 lineto -8.325097e+01 8.461361e+01 lineto -8.319245e+01 8.427635e+01 lineto -closepath -gsave -5.753953e-01 5.753953e-01 5.753953e-01 setrgbcolor -fill -grestore -newpath -7.979465e+01 8.563593e+01 moveto -8.319245e+01 8.427635e+01 lineto -8.325097e+01 8.461361e+01 lineto -7.984223e+01 8.59102e+01 lineto -7.979465e+01 8.563593e+01 lineto -closepath -gsave -5.630029e-01 5.630029e-01 5.630029e-01 setrgbcolor -fill -grestore -newpath -7.628484e+01 8.669545e+01 moveto -7.979465e+01 8.563593e+01 lineto -7.984223e+01 8.59102e+01 lineto -7.632114e+01 8.690465e+01 lineto -7.628484e+01 8.669545e+01 lineto -closepath -gsave -5.500625e-01 5.500625e-01 5.500625e-01 setrgbcolor -fill -grestore -newpath -7.268961e+01 8.744688e+01 moveto -7.628484e+01 8.669545e+01 lineto -7.632114e+01 8.690465e+01 lineto -7.271434e+01 8.758943e+01 lineto -7.268961e+01 8.744688e+01 lineto -closepath -gsave -5.368381e-01 5.368381e-01 5.368381e-01 setrgbcolor -fill -grestore -newpath -6.903616e+01 8.788454e+01 moveto -7.268961e+01 8.744688e+01 lineto -7.271434e+01 8.758943e+01 lineto -6.904914e+01 8.795937e+01 lineto -6.903616e+01 8.788454e+01 lineto -closepath -gsave -5.235829e-01 5.235829e-01 5.235829e-01 setrgbcolor -fill -grestore -newpath -6.535215e+01 8.800512e+01 moveto -6.903616e+01 8.788454e+01 lineto -6.904914e+01 8.795937e+01 lineto -6.535329e+01 8.801165e+01 lineto -6.535215e+01 8.800512e+01 lineto -closepath -gsave -5.105313e-01 5.105313e-01 5.105313e-01 setrgbcolor -fill -grestore -newpath -6.166548e+01 8.78077e+01 moveto -6.535215e+01 8.800512e+01 lineto -6.535329e+01 8.801165e+01 lineto -6.165476e+01 8.774588e+01 lineto -6.166548e+01 8.78077e+01 lineto -closepath -gsave -4.978927e-01 4.978927e-01 4.978927e-01 setrgbcolor -fill -grestore -newpath -1.061377e+02 5.81988e+01 moveto -1.069216e+02 5.465643e+01 lineto -1.067975e+02 5.542152e+01 lineto -1.06016e+02 5.894958e+01 lineto -1.061377e+02 5.81988e+01 lineto -closepath -gsave -5.972503e-01 5.972503e-01 5.972503e-01 setrgbcolor -fill -grestore -newpath -1.050424e+02 6.164881e+01 moveto -1.061377e+02 5.81988e+01 lineto -1.06016e+02 5.894958e+01 lineto -1.049239e+02 6.237961e+01 lineto -1.050424e+02 6.164881e+01 lineto -closepath -gsave -6.014306e-01 6.014306e-01 6.014306e-01 setrgbcolor -fill -grestore -newpath -1.036439e+02 6.498036e+01 moveto -1.050424e+02 6.164881e+01 lineto -1.049239e+02 6.237961e+01 lineto -1.035295e+02 6.568563e+01 lineto -1.036439e+02 6.498036e+01 lineto -closepath -gsave -6.039534e-01 6.039534e-01 6.039534e-01 setrgbcolor -fill -grestore -newpath -1.019529e+02 6.816821e+01 moveto -1.036439e+02 6.498036e+01 lineto -1.035295e+02 6.568563e+01 lineto -1.018435e+02 6.884262e+01 lineto -1.019529e+02 6.816821e+01 lineto -closepath -gsave -6.047567e-01 6.047567e-01 6.047567e-01 setrgbcolor -fill -grestore -newpath -9.998208e+01 7.118825e+01 moveto -1.019529e+02 6.816821e+01 lineto -1.018435e+02 6.884262e+01 lineto -9.987856e+01 7.182669e+01 lineto -9.998208e+01 7.118825e+01 lineto -closepath -gsave -6.038205e-01 6.038205e-01 6.038205e-01 setrgbcolor -fill -grestore -newpath -9.774647e+01 7.401759e+01 moveto -9.998208e+01 7.118825e+01 lineto -9.987856e+01 7.182669e+01 lineto -9.764957e+01 7.461523e+01 lineto -9.774647e+01 7.401759e+01 lineto -closepath -gsave -6.011669e-01 6.011669e-01 6.011669e-01 setrgbcolor -fill -grestore -newpath -9.526296e+01 7.663483e+01 moveto -9.774647e+01 7.401759e+01 lineto -9.764957e+01 7.461523e+01 lineto -9.517341e+01 7.718715e+01 lineto -9.526296e+01 7.663483e+01 lineto -closepath -gsave -5.9686e-01 5.9686e-01 5.9686e-01 setrgbcolor -fill -grestore -newpath -9.255035e+01 7.902016e+01 moveto -9.526296e+01 7.663483e+01 lineto -9.517341e+01 7.718715e+01 lineto -9.246882e+01 7.952296e+01 lineto -9.255035e+01 7.902016e+01 lineto -closepath -gsave -5.910033e-01 5.910033e-01 5.910033e-01 setrgbcolor -fill -grestore -newpath -8.962917e+01 8.11555e+01 moveto -9.255035e+01 7.902016e+01 lineto -9.246882e+01 7.952296e+01 lineto -8.955629e+01 8.1605e+01 lineto -8.962917e+01 8.11555e+01 lineto -closepath -gsave -5.837357e-01 5.837357e-01 5.837357e-01 setrgbcolor -fill -grestore -newpath -8.652153e+01 8.30247e+01 moveto -8.962917e+01 8.11555e+01 lineto -8.955629e+01 8.1605e+01 lineto -8.645785e+01 8.341748e+01 lineto -8.652153e+01 8.30247e+01 lineto -closepath -gsave -5.752263e-01 5.752263e-01 5.752263e-01 setrgbcolor -fill -grestore -newpath -8.325097e+01 8.461361e+01 moveto -8.652153e+01 8.30247e+01 lineto -8.645785e+01 8.341748e+01 lineto -8.319696e+01 8.49467e+01 lineto -8.325097e+01 8.461361e+01 lineto -closepath -gsave -5.656687e-01 5.656687e-01 5.656687e-01 setrgbcolor -fill -grestore -newpath -7.984223e+01 8.59102e+01 moveto -8.325097e+01 8.461361e+01 lineto -8.319696e+01 8.49467e+01 lineto -7.979832e+01 8.618108e+01 lineto -7.984223e+01 8.59102e+01 lineto -closepath -gsave -5.552736e-01 5.552736e-01 5.552736e-01 setrgbcolor -fill -grestore -newpath -7.632114e+01 8.690465e+01 moveto -7.984223e+01 8.59102e+01 lineto -7.979832e+01 8.618108e+01 lineto -7.628764e+01 8.711127e+01 lineto -7.632114e+01 8.690465e+01 lineto -closepath -gsave -5.442618e-01 5.442618e-01 5.442618e-01 setrgbcolor -fill -grestore -newpath -7.271434e+01 8.758943e+01 moveto -7.632114e+01 8.690465e+01 lineto -7.628764e+01 8.711127e+01 lineto -7.269151e+01 8.773022e+01 lineto -7.271434e+01 8.758943e+01 lineto -closepath -gsave -5.328564e-01 5.328564e-01 5.328564e-01 setrgbcolor -fill -grestore -newpath -6.904914e+01 8.795937e+01 moveto -7.271434e+01 8.758943e+01 lineto -7.269151e+01 8.773022e+01 lineto -6.903716e+01 8.803327e+01 lineto -6.904914e+01 8.795937e+01 lineto -closepath -gsave -5.212757e-01 5.212757e-01 5.212757e-01 setrgbcolor -fill -grestore -newpath -6.535329e+01 8.801165e+01 moveto -6.904914e+01 8.795937e+01 lineto -6.903716e+01 8.803327e+01 lineto -6.535224e+01 8.80181e+01 lineto -6.535329e+01 8.801165e+01 lineto -closepath -gsave -5.097267e-01 5.097267e-01 5.097267e-01 setrgbcolor -fill -grestore -newpath -6.165476e+01 8.774588e+01 moveto -6.535329e+01 8.801165e+01 lineto -6.535224e+01 8.80181e+01 lineto -6.166466e+01 8.768483e+01 lineto -6.165476e+01 8.774588e+01 lineto -closepath -gsave -4.983992e-01 4.983992e-01 4.983992e-01 setrgbcolor -fill -grestore -newpath -1.018435e+02 6.884262e+01 moveto -1.035295e+02 6.568563e+01 lineto -1.031776e+02 6.637772e+01 lineto -1.01507e+02 6.950443e+01 lineto -1.018435e+02 6.884262e+01 lineto -closepath -gsave -5.835307e-01 5.835307e-01 5.835307e-01 setrgbcolor -fill -grestore -newpath -9.987856e+01 7.182669e+01 moveto -1.018435e+02 6.884262e+01 lineto -1.01507e+02 6.950443e+01 lineto -9.956001e+01 7.24532e+01 lineto -9.987856e+01 7.182669e+01 lineto -closepath -gsave -5.836488e-01 5.836488e-01 5.836488e-01 setrgbcolor -fill -grestore -newpath -9.764957e+01 7.461523e+01 moveto -9.987856e+01 7.182669e+01 lineto -9.956001e+01 7.24532e+01 lineto -9.735138e+01 7.52017e+01 lineto -9.764957e+01 7.461523e+01 lineto -closepath -gsave -5.823034e-01 5.823034e-01 5.823034e-01 setrgbcolor -fill -grestore -newpath -9.517341e+01 7.718715e+01 moveto -9.764957e+01 7.461523e+01 lineto -9.735138e+01 7.52017e+01 lineto -9.489783e+01 7.772914e+01 lineto -9.517341e+01 7.718715e+01 lineto -closepath -gsave -5.795257e-01 5.795257e-01 5.795257e-01 setrgbcolor -fill -grestore -newpath -9.246882e+01 7.952296e+01 moveto -9.517341e+01 7.718715e+01 lineto -9.489783e+01 7.772914e+01 lineto -9.221795e+01 8.001638e+01 lineto -9.246882e+01 7.952296e+01 lineto -closepath -gsave -5.753796e-01 5.753796e-01 5.753796e-01 setrgbcolor -fill -grestore -newpath -8.955629e+01 8.1605e+01 moveto -9.246882e+01 7.952296e+01 lineto -9.221795e+01 8.001638e+01 lineto -8.933201e+01 8.204609e+01 lineto -8.955629e+01 8.1605e+01 lineto -closepath -gsave -5.699602e-01 5.699602e-01 5.699602e-01 setrgbcolor -fill -grestore -newpath -8.645785e+01 8.341748e+01 moveto -8.955629e+01 8.1605e+01 lineto -8.933201e+01 8.204609e+01 lineto -8.626187e+01 8.380292e+01 lineto -8.645785e+01 8.341748e+01 lineto -closepath -gsave -5.633898e-01 5.633898e-01 5.633898e-01 setrgbcolor -fill -grestore -newpath -8.319696e+01 8.49467e+01 moveto -8.645785e+01 8.341748e+01 lineto -8.626187e+01 8.380292e+01 lineto -8.303076e+01 8.527357e+01 lineto -8.319696e+01 8.49467e+01 lineto -closepath -gsave -5.55814e-01 5.55814e-01 5.55814e-01 setrgbcolor -fill -grestore -newpath -7.979832e+01 8.618108e+01 moveto -8.319696e+01 8.49467e+01 lineto -8.303076e+01 8.527357e+01 lineto -7.966316e+01 8.644689e+01 lineto -7.979832e+01 8.618108e+01 lineto -closepath -gsave -5.473963e-01 5.473963e-01 5.473963e-01 setrgbcolor -fill -grestore -newpath -7.628764e+01 8.711127e+01 moveto -7.979832e+01 8.618108e+01 lineto -7.966316e+01 8.644689e+01 lineto -7.618455e+01 8.731402e+01 lineto -7.628764e+01 8.711127e+01 lineto -closepath -gsave -5.383123e-01 5.383123e-01 5.383123e-01 setrgbcolor -fill -grestore -newpath -7.269151e+01 8.773022e+01 moveto -7.628764e+01 8.711127e+01 lineto -7.618455e+01 8.731402e+01 lineto -7.262127e+01 8.786838e+01 lineto -7.269151e+01 8.773022e+01 lineto -closepath -gsave -5.287444e-01 5.287444e-01 5.287444e-01 setrgbcolor -fill -grestore -newpath -6.903716e+01 8.803327e+01 moveto -7.269151e+01 8.773022e+01 lineto -7.262127e+01 8.786838e+01 lineto -6.900029e+01 8.810578e+01 lineto -6.903716e+01 8.803327e+01 lineto -closepath -gsave -5.188753e-01 5.188753e-01 5.188753e-01 setrgbcolor -fill -grestore -newpath -6.535224e+01 8.80181e+01 moveto -6.903716e+01 8.803327e+01 lineto -6.900029e+01 8.810578e+01 lineto -6.534902e+01 8.802442e+01 lineto -6.535224e+01 8.80181e+01 lineto -closepath -gsave -5.088829e-01 5.088829e-01 5.088829e-01 setrgbcolor -fill -grestore -newpath -6.166466e+01 8.768483e+01 moveto -6.535224e+01 8.80181e+01 lineto -6.534902e+01 8.802442e+01 lineto -6.169512e+01 8.762492e+01 lineto -6.166466e+01 8.768483e+01 lineto -closepath -gsave -4.989348e-01 4.989348e-01 4.989348e-01 setrgbcolor -fill -grestore -newpath -9.489783e+01 7.772914e+01 moveto -9.735138e+01 7.52017e+01 lineto -9.685373e+01 7.577339e+01 lineto -9.443793e+01 7.825747e+01 lineto -9.489783e+01 7.772914e+01 lineto -closepath -gsave -5.625313e-01 5.625313e-01 5.625313e-01 setrgbcolor -fill -grestore -newpath -9.221795e+01 8.001638e+01 moveto -9.489783e+01 7.772914e+01 lineto -9.443793e+01 7.825747e+01 lineto -9.179926e+01 8.049735e+01 lineto -9.221795e+01 8.001638e+01 lineto -closepath -gsave -5.599885e-01 5.599885e-01 5.599885e-01 setrgbcolor -fill -grestore -newpath -8.933201e+01 8.204609e+01 moveto -9.221795e+01 8.001638e+01 lineto -9.179926e+01 8.049735e+01 lineto -8.895772e+01 8.247606e+01 lineto -8.933201e+01 8.204609e+01 lineto -closepath -gsave -5.563193e-01 5.563193e-01 5.563193e-01 setrgbcolor -fill -grestore -newpath -8.626187e+01 8.380292e+01 moveto -8.933201e+01 8.204609e+01 lineto -8.895772e+01 8.247606e+01 lineto -8.59348e+01 8.417864e+01 lineto -8.626187e+01 8.380292e+01 lineto -closepath -gsave -5.516033e-01 5.516033e-01 5.516033e-01 setrgbcolor -fill -grestore -newpath -8.303076e+01 8.527357e+01 moveto -8.626187e+01 8.380292e+01 lineto -8.59348e+01 8.417864e+01 lineto -8.27534e+01 8.559219e+01 lineto -8.303076e+01 8.527357e+01 lineto -closepath -gsave -5.459419e-01 5.459419e-01 5.459419e-01 setrgbcolor -fill -grestore -newpath -7.966316e+01 8.644689e+01 moveto -8.303076e+01 8.527357e+01 lineto -8.27534e+01 8.559219e+01 lineto -7.94376e+01 8.670601e+01 lineto -7.966316e+01 8.644689e+01 lineto -closepath -gsave -5.39454e-01 5.39454e-01 5.39454e-01 setrgbcolor -fill -grestore -newpath -7.618455e+01 8.731402e+01 moveto -7.966316e+01 8.644689e+01 lineto -7.94376e+01 8.670601e+01 lineto -7.60125e+01 8.751167e+01 lineto -7.618455e+01 8.731402e+01 lineto -closepath -gsave -5.322722e-01 5.322722e-01 5.322722e-01 setrgbcolor -fill -grestore -newpath -7.262127e+01 8.786838e+01 moveto -7.618455e+01 8.731402e+01 lineto -7.60125e+01 8.751167e+01 lineto -7.250403e+01 8.800306e+01 lineto -7.262127e+01 8.786838e+01 lineto -closepath -gsave -5.245389e-01 5.245389e-01 5.245389e-01 setrgbcolor -fill -grestore -newpath -6.900029e+01 8.810578e+01 moveto -7.262127e+01 8.786838e+01 lineto -7.250403e+01 8.800306e+01 lineto -6.893875e+01 8.817647e+01 lineto -6.900029e+01 8.810578e+01 lineto -closepath -gsave -5.16401e-01 5.16401e-01 5.16401e-01 setrgbcolor -fill -grestore -newpath -6.534902e+01 8.802442e+01 moveto -6.900029e+01 8.810578e+01 lineto -6.893875e+01 8.817647e+01 lineto -6.534366e+01 8.803059e+01 lineto -6.534902e+01 8.802442e+01 lineto -closepath -gsave -5.080058e-01 5.080058e-01 5.080058e-01 setrgbcolor -fill -grestore -newpath -6.169512e+01 8.762492e+01 moveto -6.534902e+01 8.802442e+01 lineto -6.534366e+01 8.803059e+01 lineto -6.174596e+01 8.756652e+01 lineto -6.169512e+01 8.762492e+01 lineto -closepath -gsave -4.994966e-01 4.994966e-01 4.994966e-01 setrgbcolor -fill -grestore -newpath -8.895772e+01 8.247606e+01 moveto -9.179926e+01 8.049735e+01 lineto -9.121535e+01 8.096291e+01 lineto -8.843572e+01 8.289227e+01 lineto -8.895772e+01 8.247606e+01 lineto -closepath -gsave -5.42967e-01 5.42967e-01 5.42967e-01 setrgbcolor -fill -grestore -newpath -8.59348e+01 8.417864e+01 moveto -8.895772e+01 8.247606e+01 lineto -8.843572e+01 8.289227e+01 lineto -8.547867e+01 8.454233e+01 lineto -8.59348e+01 8.417864e+01 lineto -closepath -gsave -5.399953e-01 5.399953e-01 5.399953e-01 setrgbcolor -fill -grestore -newpath -8.27534e+01 8.559219e+01 moveto -8.59348e+01 8.417864e+01 lineto -8.547867e+01 8.454233e+01 lineto -8.236659e+01 8.590061e+01 lineto -8.27534e+01 8.559219e+01 lineto -closepath -gsave -5.361554e-01 5.361554e-01 5.361554e-01 setrgbcolor -fill -grestore -newpath -7.94376e+01 8.670601e+01 moveto -8.27534e+01 8.559219e+01 lineto -8.236659e+01 8.590061e+01 lineto -7.912303e+01 8.695682e+01 lineto -7.94376e+01 8.670601e+01 lineto -closepath -gsave -5.315254e-01 5.315254e-01 5.315254e-01 setrgbcolor -fill -grestore -newpath -7.60125e+01 8.751167e+01 moveto -7.94376e+01 8.670601e+01 lineto -7.912303e+01 8.695682e+01 lineto -7.577256e+01 8.770298e+01 lineto -7.60125e+01 8.751167e+01 lineto -closepath -gsave -5.261978e-01 5.261978e-01 5.261978e-01 setrgbcolor -fill -grestore -newpath -7.250403e+01 8.800306e+01 moveto -7.60125e+01 8.751167e+01 lineto -7.577256e+01 8.770298e+01 lineto -7.234053e+01 8.813342e+01 lineto -7.250403e+01 8.800306e+01 lineto -closepath -gsave -5.202761e-01 5.202761e-01 5.202761e-01 setrgbcolor -fill -grestore -newpath -6.893875e+01 8.817647e+01 moveto -7.250403e+01 8.800306e+01 lineto -7.234053e+01 8.813342e+01 lineto -6.885293e+01 8.82449e+01 lineto -6.893875e+01 8.817647e+01 lineto -closepath -gsave -5.138719e-01 5.138719e-01 5.138719e-01 setrgbcolor -fill -grestore -newpath -6.534366e+01 8.803059e+01 moveto -6.893875e+01 8.817647e+01 lineto -6.885293e+01 8.82449e+01 lineto -6.533617e+01 8.803656e+01 lineto -6.534366e+01 8.803059e+01 lineto -closepath -gsave -5.071013e-01 5.071013e-01 5.071013e-01 setrgbcolor -fill -grestore -newpath -6.174596e+01 8.756652e+01 moveto -6.534366e+01 8.803059e+01 lineto -6.533617e+01 8.803656e+01 lineto -6.181686e+01 8.750999e+01 lineto -6.174596e+01 8.756652e+01 lineto -closepath -gsave -5.000813e-01 5.000813e-01 5.000813e-01 setrgbcolor -fill -grestore -newpath -8.547867e+01 8.454233e+01 moveto -8.843572e+01 8.289227e+01 lineto -8.776923e+01 8.329213e+01 lineto -8.489628e+01 8.489174e+01 lineto -8.547867e+01 8.454233e+01 lineto -closepath -gsave -5.286808e-01 5.286808e-01 5.286808e-01 setrgbcolor -fill -grestore -newpath -8.236659e+01 8.590061e+01 moveto -8.547867e+01 8.454233e+01 lineto -8.489628e+01 8.489174e+01 lineto -8.18727e+01 8.619692e+01 lineto -8.236659e+01 8.590061e+01 lineto -closepath -gsave -5.265483e-01 5.265483e-01 5.265483e-01 setrgbcolor -fill -grestore -newpath -7.912303e+01 8.695682e+01 moveto -8.236659e+01 8.590061e+01 lineto -8.18727e+01 8.619692e+01 lineto -7.872139e+01 8.71978e+01 lineto -7.912303e+01 8.695682e+01 lineto -closepath -gsave -5.236835e-01 5.236835e-01 5.236835e-01 setrgbcolor -fill -grestore -newpath -7.577256e+01 8.770298e+01 moveto -7.912303e+01 8.695682e+01 lineto -7.872139e+01 8.71978e+01 lineto -7.54662e+01 8.788678e+01 lineto -7.577256e+01 8.770298e+01 lineto -closepath -gsave -5.201419e-01 5.201419e-01 5.201419e-01 setrgbcolor -fill -grestore -newpath -7.234053e+01 8.813342e+01 moveto -7.577256e+01 8.770298e+01 lineto -7.54662e+01 8.788678e+01 lineto -7.213177e+01 8.825867e+01 lineto -7.234053e+01 8.813342e+01 lineto -closepath -gsave -5.159906e-01 5.159906e-01 5.159906e-01 setrgbcolor -fill -grestore -newpath -6.885293e+01 8.82449e+01 moveto -7.234053e+01 8.813342e+01 lineto -7.213177e+01 8.825867e+01 lineto -6.874336e+01 8.831064e+01 lineto -6.885293e+01 8.82449e+01 lineto -closepath -gsave -5.113069e-01 5.113069e-01 5.113069e-01 setrgbcolor -fill -grestore -newpath -6.533617e+01 8.803656e+01 moveto -6.885293e+01 8.82449e+01 lineto -6.874336e+01 8.831064e+01 lineto -6.532661e+01 8.80423e+01 lineto -6.533617e+01 8.803656e+01 lineto -closepath -gsave -5.061754e-01 5.061754e-01 5.061754e-01 setrgbcolor -fill -grestore -newpath -6.181686e+01 8.750999e+01 moveto -6.533617e+01 8.803656e+01 lineto -6.532661e+01 8.80423e+01 lineto -6.190738e+01 8.745568e+01 lineto -6.181686e+01 8.750999e+01 lineto -closepath -gsave -5.006857e-01 5.006857e-01 5.006857e-01 setrgbcolor -fill -grestore -newpath -8.18727e+01 8.619692e+01 moveto -8.489628e+01 8.489174e+01 lineto -8.419122e+01 8.522472e+01 lineto -8.127478e+01 8.64793e+01 lineto -8.18727e+01 8.619692e+01 lineto -closepath -gsave -5.172045e-01 5.172045e-01 5.172045e-01 setrgbcolor -fill -grestore -newpath -7.872139e+01 8.71978e+01 moveto -8.18727e+01 8.619692e+01 lineto -8.127478e+01 8.64793e+01 lineto -7.823514e+01 8.742743e+01 lineto -7.872139e+01 8.71978e+01 lineto -closepath -gsave -5.159947e-01 5.159947e-01 5.159947e-01 setrgbcolor -fill -grestore -newpath -7.54662e+01 8.788678e+01 moveto -7.872139e+01 8.71978e+01 lineto -7.823514e+01 8.742743e+01 lineto -7.509531e+01 8.806194e+01 lineto -7.54662e+01 8.788678e+01 lineto -closepath -gsave -5.141538e-01 5.141538e-01 5.141538e-01 setrgbcolor -fill -grestore -newpath -7.213177e+01 8.825867e+01 moveto -7.54662e+01 8.788678e+01 lineto -7.509531e+01 8.806194e+01 lineto -7.187905e+01 8.837802e+01 lineto -7.213177e+01 8.825867e+01 lineto -closepath -gsave -5.117156e-01 5.117156e-01 5.117156e-01 setrgbcolor -fill -grestore -newpath -6.874336e+01 8.831064e+01 moveto -7.213177e+01 8.825867e+01 lineto -7.187905e+01 8.837802e+01 lineto -6.861071e+01 8.837329e+01 lineto -6.874336e+01 8.831064e+01 lineto -closepath -gsave -5.087246e-01 5.087246e-01 5.087246e-01 setrgbcolor -fill -grestore -newpath -6.532661e+01 8.80423e+01 moveto -6.874336e+01 8.831064e+01 lineto -6.861071e+01 8.837329e+01 lineto -6.531503e+01 8.804776e+01 lineto -6.532661e+01 8.80423e+01 lineto -closepath -gsave -5.052344e-01 5.052344e-01 5.052344e-01 setrgbcolor -fill -grestore -newpath -6.190738e+01 8.745568e+01 moveto -6.532661e+01 8.80423e+01 lineto -6.531503e+01 8.804776e+01 lineto -6.201697e+01 8.740392e+01 lineto -6.190738e+01 8.745568e+01 lineto -closepath -gsave -5.013061e-01 5.013061e-01 5.013061e-01 setrgbcolor -fill -grestore -newpath -7.823514e+01 8.742743e+01 moveto -8.127478e+01 8.64793e+01 lineto -8.057653e+01 8.674601e+01 lineto -7.76673e+01 8.764433e+01 lineto -7.823514e+01 8.742743e+01 lineto -closepath -gsave -5.085179e-01 5.085179e-01 5.085179e-01 setrgbcolor -fill -grestore -newpath -7.509531e+01 8.806194e+01 moveto -7.823514e+01 8.742743e+01 lineto -7.76673e+01 8.764433e+01 lineto -7.466218e+01 8.822738e+01 lineto -7.509531e+01 8.806194e+01 lineto -closepath -gsave -5.082785e-01 5.082785e-01 5.082785e-01 setrgbcolor -fill -grestore -newpath -7.187905e+01 8.837802e+01 moveto -7.509531e+01 8.806194e+01 lineto -7.466218e+01 8.822738e+01 lineto -7.158391e+01 8.849076e+01 lineto -7.187905e+01 8.837802e+01 lineto -closepath -gsave -5.074821e-01 5.074821e-01 5.074821e-01 setrgbcolor -fill -grestore -newpath -6.861071e+01 8.837329e+01 moveto -7.187905e+01 8.837802e+01 lineto -7.158391e+01 8.849076e+01 lineto -6.845579e+01 8.843246e+01 lineto -6.861071e+01 8.837329e+01 lineto -closepath -gsave -5.061428e-01 5.061428e-01 5.061428e-01 setrgbcolor -fill -grestore -newpath -6.531503e+01 8.804776e+01 moveto -6.861071e+01 8.837329e+01 lineto -6.845579e+01 8.843246e+01 lineto -6.530152e+01 8.805293e+01 lineto -6.531503e+01 8.804776e+01 lineto -closepath -gsave -5.042842e-01 5.042842e-01 5.042842e-01 setrgbcolor -fill -grestore -newpath -6.201697e+01 8.740392e+01 moveto -6.531503e+01 8.804776e+01 lineto -6.530152e+01 8.805293e+01 lineto -6.214496e+01 8.735503e+01 lineto -6.201697e+01 8.740392e+01 lineto -closepath -gsave -5.019389e-01 5.019389e-01 5.019389e-01 setrgbcolor -fill -grestore -newpath -7.76673e+01 8.764433e+01 moveto -8.057653e+01 8.674601e+01 lineto -7.978224e+01 8.699539e+01 lineto -7.702137e+01 8.784714e+01 lineto -7.76673e+01 8.764433e+01 lineto -closepath -gsave -5.013043e-01 5.013043e-01 5.013043e-01 setrgbcolor -fill -grestore -newpath -7.466218e+01 8.822738e+01 moveto -7.76673e+01 8.764433e+01 lineto -7.702137e+01 8.784714e+01 lineto -7.416948e+01 8.838208e+01 lineto -7.466218e+01 8.822738e+01 lineto -closepath -gsave -5.025564e-01 5.025564e-01 5.025564e-01 setrgbcolor -fill -grestore -newpath -7.158391e+01 8.849076e+01 moveto -7.466218e+01 8.822738e+01 lineto -7.416948e+01 8.838208e+01 lineto -7.124818e+01 8.859617e+01 lineto -7.158391e+01 8.849076e+01 lineto -closepath -gsave -5.033189e-01 5.033189e-01 5.033189e-01 setrgbcolor -fill -grestore -newpath -6.845579e+01 8.843246e+01 moveto -7.158391e+01 8.849076e+01 lineto -7.124818e+01 8.859617e+01 lineto -6.827957e+01 8.848779e+01 lineto -6.845579e+01 8.843246e+01 lineto -closepath -gsave -5.035787e-01 5.035787e-01 5.035787e-01 setrgbcolor -fill -grestore -newpath -6.530152e+01 8.805293e+01 moveto -6.845579e+01 8.843246e+01 lineto -6.827957e+01 8.848779e+01 lineto -6.528614e+01 8.805775e+01 lineto -6.530152e+01 8.805293e+01 lineto -closepath -gsave -5.03331e-01 5.03331e-01 5.03331e-01 setrgbcolor -fill -grestore -newpath -6.214496e+01 8.735503e+01 moveto -6.530152e+01 8.805293e+01 lineto -6.528614e+01 8.805775e+01 lineto -6.229054e+01 8.730932e+01 lineto -6.214496e+01 8.735503e+01 lineto -closepath -gsave -5.025803e-01 5.025803e-01 5.025803e-01 setrgbcolor -fill -grestore -newpath -7.416948e+01 8.838208e+01 moveto -7.702137e+01 8.784714e+01 lineto -7.630131e+01 8.803461e+01 lineto -7.362025e+01 8.852508e+01 lineto -7.416948e+01 8.838208e+01 lineto -closepath -gsave -4.970227e-01 4.970227e-01 4.970227e-01 setrgbcolor -fill -grestore -newpath -7.124818e+01 8.859617e+01 moveto -7.416948e+01 8.838208e+01 lineto -7.362025e+01 8.852508e+01 lineto -7.087393e+01 8.869361e+01 lineto -7.124818e+01 8.859617e+01 lineto -closepath -gsave -4.992523e-01 4.992523e-01 4.992523e-01 setrgbcolor -fill -grestore -newpath -6.827957e+01 8.848779e+01 moveto -7.124818e+01 8.859617e+01 lineto -7.087393e+01 8.869361e+01 lineto -6.808313e+01 8.853893e+01 lineto -6.827957e+01 8.848779e+01 lineto -closepath -gsave -5.010484e-01 5.010484e-01 5.010484e-01 setrgbcolor -fill -grestore -newpath -6.528614e+01 8.805775e+01 moveto -6.827957e+01 8.848779e+01 lineto -6.808313e+01 8.853893e+01 lineto -6.5269e+01 8.806222e+01 lineto -6.528614e+01 8.805775e+01 lineto -closepath -gsave -5.023807e-01 5.023807e-01 5.023807e-01 setrgbcolor -fill -grestore -newpath -6.229054e+01 8.730932e+01 moveto -6.528614e+01 8.805775e+01 lineto -6.5269e+01 8.806222e+01 lineto -6.245283e+01 8.726707e+01 lineto -6.229054e+01 8.730932e+01 lineto -closepath -gsave -5.032263e-01 5.032263e-01 5.032263e-01 setrgbcolor -fill -grestore -newpath -7.362025e+01 8.852508e+01 moveto -7.630131e+01 8.803461e+01 lineto -7.551158e+01 8.82056e+01 lineto -7.301787e+01 8.86555e+01 lineto -7.362025e+01 8.852508e+01 lineto -closepath -gsave -4.917079e-01 4.917079e-01 4.917079e-01 setrgbcolor -fill -grestore -newpath -7.087393e+01 8.869361e+01 moveto -7.362025e+01 8.852508e+01 lineto -7.301787e+01 8.86555e+01 lineto -7.046346e+01 8.878248e+01 lineto -7.087393e+01 8.869361e+01 lineto -closepath -gsave -4.953058e-01 4.953058e-01 4.953058e-01 setrgbcolor -fill -grestore -newpath -6.808313e+01 8.853893e+01 moveto -7.087393e+01 8.869361e+01 lineto -7.046346e+01 8.878248e+01 lineto -6.786769e+01 8.858558e+01 lineto -6.808313e+01 8.853893e+01 lineto -closepath -gsave -4.985673e-01 4.985673e-01 4.985673e-01 setrgbcolor -fill -grestore -newpath -6.5269e+01 8.806222e+01 moveto -6.808313e+01 8.853893e+01 lineto -6.786769e+01 8.858558e+01 lineto -6.52502e+01 8.806629e+01 lineto -6.5269e+01 8.806222e+01 lineto -closepath -gsave -5.014392e-01 5.014392e-01 5.014392e-01 setrgbcolor -fill -grestore -newpath -6.245283e+01 8.726707e+01 moveto -6.5269e+01 8.806222e+01 lineto -6.52502e+01 8.806629e+01 lineto -6.263083e+01 8.722853e+01 lineto -6.245283e+01 8.726707e+01 lineto -closepath -gsave -5.038731e-01 5.038731e-01 5.038731e-01 setrgbcolor -fill -grestore -newpath -7.046346e+01 8.878248e+01 moveto -7.301787e+01 8.86555e+01 lineto -7.236606e+01 8.877254e+01 lineto -7.001931e+01 8.886223e+01 lineto -7.046346e+01 8.878248e+01 lineto -closepath -gsave -4.915004e-01 4.915004e-01 4.915004e-01 setrgbcolor -fill -grestore -newpath -6.786769e+01 8.858558e+01 moveto -7.046346e+01 8.878248e+01 lineto -7.001931e+01 8.886223e+01 lineto -6.763456e+01 8.862744e+01 lineto -6.786769e+01 8.858558e+01 lineto -closepath -gsave -4.961496e-01 4.961496e-01 4.961496e-01 setrgbcolor -fill -grestore -newpath -6.52502e+01 8.806629e+01 moveto -6.786769e+01 8.858558e+01 lineto -6.763456e+01 8.862744e+01 lineto -6.522986e+01 8.806994e+01 lineto -6.52502e+01 8.806629e+01 lineto -closepath -gsave -5.00512e-01 5.00512e-01 5.00512e-01 setrgbcolor -fill -grestore -newpath -6.263083e+01 8.722853e+01 moveto -6.52502e+01 8.806629e+01 lineto -6.522986e+01 8.806994e+01 lineto -6.282343e+01 8.719395e+01 lineto -6.263083e+01 8.722853e+01 lineto -closepath -gsave -5.045165e-01 5.045165e-01 5.045165e-01 setrgbcolor -fill -grestore -newpath -7.001931e+01 8.886223e+01 moveto -7.236606e+01 8.877254e+01 lineto -7.166883e+01 8.887547e+01 lineto -6.954421e+01 8.893237e+01 lineto -7.001931e+01 8.886223e+01 lineto -closepath -gsave -4.878544e-01 4.878544e-01 4.878544e-01 setrgbcolor -fill -grestore -newpath -6.763456e+01 8.862744e+01 moveto -7.001931e+01 8.886223e+01 lineto -6.954421e+01 8.893237e+01 lineto -6.738519e+01 8.866425e+01 lineto -6.763456e+01 8.862744e+01 lineto -closepath -gsave -4.938083e-01 4.938083e-01 4.938083e-01 setrgbcolor -fill -grestore -newpath -6.522986e+01 8.806994e+01 moveto -6.763456e+01 8.862744e+01 lineto -6.738519e+01 8.866425e+01 lineto -6.520811e+01 8.807315e+01 lineto -6.522986e+01 8.806994e+01 lineto -closepath -gsave -4.996048e-01 4.996048e-01 4.996048e-01 setrgbcolor -fill -grestore -newpath -6.282343e+01 8.719395e+01 moveto -6.522986e+01 8.806994e+01 lineto -6.520811e+01 8.807315e+01 lineto -6.302945e+01 8.716353e+01 lineto -6.282343e+01 8.719395e+01 lineto -closepath -gsave -5.051525e-01 5.051525e-01 5.051525e-01 setrgbcolor -fill -grestore -newpath -6.954421e+01 8.893237e+01 moveto -7.166883e+01 8.887547e+01 lineto -7.093049e+01 8.896367e+01 lineto -6.90411e+01 8.899247e+01 lineto -6.954421e+01 8.893237e+01 lineto -closepath -gsave -4.843832e-01 4.843832e-01 4.843832e-01 setrgbcolor -fill -grestore -newpath -6.738519e+01 8.866425e+01 moveto -6.954421e+01 8.893237e+01 lineto -6.90411e+01 8.899247e+01 lineto -6.712111e+01 8.86958e+01 lineto -6.738519e+01 8.866425e+01 lineto -closepath -gsave -4.915554e-01 4.915554e-01 4.915554e-01 setrgbcolor -fill -grestore -newpath -6.520811e+01 8.807315e+01 moveto -6.738519e+01 8.866425e+01 lineto -6.712111e+01 8.86958e+01 lineto -6.518507e+01 8.80759e+01 lineto -6.520811e+01 8.807315e+01 lineto -closepath -gsave -4.987228e-01 4.987228e-01 4.987228e-01 setrgbcolor -fill -grestore -newpath -6.302945e+01 8.716353e+01 moveto -6.520811e+01 8.807315e+01 lineto -6.518507e+01 8.80759e+01 lineto -6.324762e+01 8.713747e+01 lineto -6.302945e+01 8.716353e+01 lineto -closepath -gsave -5.057771e-01 5.057771e-01 5.057771e-01 setrgbcolor -fill -grestore -newpath -6.90411e+01 8.899247e+01 moveto -7.093049e+01 8.896367e+01 lineto -7.015558e+01 8.903658e+01 lineto -6.851307e+01 8.904215e+01 lineto -6.90411e+01 8.899247e+01 lineto -closepath -gsave -4.811e-01 4.811e-01 4.811e-01 setrgbcolor -fill -grestore -newpath -6.712111e+01 8.86958e+01 moveto -6.90411e+01 8.899247e+01 lineto -6.851307e+01 8.904215e+01 lineto -6.684396e+01 8.872188e+01 lineto -6.712111e+01 8.86958e+01 lineto -closepath -gsave -4.894017e-01 4.894017e-01 4.894017e-01 setrgbcolor -fill -grestore -newpath -6.518507e+01 8.80759e+01 moveto -6.712111e+01 8.86958e+01 lineto -6.684396e+01 8.872188e+01 lineto -6.516088e+01 8.807818e+01 lineto -6.518507e+01 8.80759e+01 lineto -closepath -gsave -4.978709e-01 4.978709e-01 4.978709e-01 setrgbcolor -fill -grestore -newpath -6.324762e+01 8.713747e+01 moveto -6.518507e+01 8.80759e+01 lineto -6.516088e+01 8.807818e+01 lineto -6.34766e+01 8.711593e+01 lineto -6.324762e+01 8.713747e+01 lineto -closepath -gsave -5.063862e-01 5.063862e-01 5.063862e-01 setrgbcolor -fill -grestore -newpath -6.851307e+01 8.904215e+01 moveto -7.015558e+01 8.903658e+01 lineto -6.934889e+01 8.909377e+01 lineto -6.796338e+01 8.908112e+01 lineto -6.851307e+01 8.904215e+01 lineto -closepath -gsave -4.780153e-01 4.780153e-01 4.780153e-01 setrgbcolor -fill -grestore -newpath -6.684396e+01 8.872188e+01 moveto -6.851307e+01 8.904215e+01 lineto -6.796338e+01 8.908112e+01 lineto -6.655543e+01 8.874233e+01 lineto -6.684396e+01 8.872188e+01 lineto -closepath -gsave -4.873569e-01 4.873569e-01 4.873569e-01 setrgbcolor -fill -grestore -newpath -6.516088e+01 8.807818e+01 moveto -6.684396e+01 8.872188e+01 lineto -6.655543e+01 8.874233e+01 lineto -6.513571e+01 8.807996e+01 lineto -6.516088e+01 8.807818e+01 lineto -closepath -gsave -4.970541e-01 4.970541e-01 4.970541e-01 setrgbcolor -fill -grestore -newpath -6.34766e+01 8.711593e+01 moveto -6.516088e+01 8.807818e+01 lineto -6.513571e+01 8.807996e+01 lineto -6.371496e+01 8.709903e+01 lineto -6.34766e+01 8.711593e+01 lineto -closepath -gsave -5.069758e-01 5.069758e-01 5.069758e-01 setrgbcolor -fill -grestore -newpath -6.796338e+01 8.908112e+01 moveto -6.934889e+01 8.909377e+01 lineto -6.851539e+01 8.913486e+01 lineto -6.739542e+01 8.910912e+01 lineto -6.796338e+01 8.908112e+01 lineto -closepath -gsave -4.751377e-01 4.751377e-01 4.751377e-01 setrgbcolor -fill -grestore -newpath -6.655543e+01 8.874233e+01 moveto -6.796338e+01 8.908112e+01 lineto -6.739542e+01 8.910912e+01 lineto -6.625732e+01 8.875703e+01 lineto -6.655543e+01 8.874233e+01 lineto -closepath -gsave -4.854295e-01 4.854295e-01 4.854295e-01 setrgbcolor -fill -grestore -newpath -6.513571e+01 8.807996e+01 moveto -6.655543e+01 8.874233e+01 lineto -6.625732e+01 8.875703e+01 lineto -6.51097e+01 8.808124e+01 lineto -6.513571e+01 8.807996e+01 lineto -closepath -gsave -4.962766e-01 4.962766e-01 4.962766e-01 setrgbcolor -fill -grestore -newpath -6.371496e+01 8.709903e+01 moveto -6.513571e+01 8.807996e+01 lineto -6.51097e+01 8.808124e+01 lineto -6.396125e+01 8.708689e+01 lineto -6.371496e+01 8.709903e+01 lineto -closepath -gsave -5.075421e-01 5.075421e-01 5.075421e-01 setrgbcolor -fill -grestore -newpath -6.739542e+01 8.910912e+01 moveto -6.851539e+01 8.913486e+01 lineto -6.766021e+01 8.915963e+01 lineto -6.68127e+01 8.9126e+01 lineto -6.739542e+01 8.910912e+01 lineto -closepath -gsave -4.724735e-01 4.724735e-01 4.724735e-01 setrgbcolor -fill -grestore -newpath -6.625732e+01 8.875703e+01 moveto -6.739542e+01 8.910912e+01 lineto -6.68127e+01 8.9126e+01 lineto -6.595146e+01 8.876589e+01 lineto -6.625732e+01 8.875703e+01 lineto -closepath -gsave -4.836272e-01 4.836272e-01 4.836272e-01 setrgbcolor -fill -grestore -newpath -6.51097e+01 8.808124e+01 moveto -6.625732e+01 8.875703e+01 lineto -6.595146e+01 8.876589e+01 lineto -6.508301e+01 8.808202e+01 lineto -6.51097e+01 8.808124e+01 lineto -closepath -gsave -4.955428e-01 4.955428e-01 4.955428e-01 setrgbcolor -fill -grestore -newpath -6.396125e+01 8.708689e+01 moveto -6.51097e+01 8.808124e+01 lineto -6.508301e+01 8.808202e+01 lineto -6.421394e+01 8.707957e+01 lineto -6.396125e+01 8.708689e+01 lineto -closepath -gsave -5.080812e-01 5.080812e-01 5.080812e-01 setrgbcolor -fill -grestore -newpath -6.68127e+01 8.9126e+01 moveto -6.766021e+01 8.915963e+01 lineto -6.678863e+01 8.91679e+01 lineto -6.621879e+01 8.913163e+01 lineto -6.68127e+01 8.9126e+01 lineto -closepath -gsave -4.700275e-01 4.700275e-01 4.700275e-01 setrgbcolor -fill -grestore -newpath -6.595146e+01 8.876589e+01 moveto -6.68127e+01 8.9126e+01 lineto -6.621879e+01 8.913163e+01 lineto -6.563973e+01 8.876884e+01 lineto -6.595146e+01 8.876589e+01 lineto -closepath -gsave -4.819564e-01 4.819564e-01 4.819564e-01 setrgbcolor -fill -grestore -newpath -6.508301e+01 8.808202e+01 moveto -6.595146e+01 8.876589e+01 lineto -6.563973e+01 8.876884e+01 lineto -6.505582e+01 8.808228e+01 lineto -6.508301e+01 8.808202e+01 lineto -closepath -gsave -4.948565e-01 4.948565e-01 4.948565e-01 setrgbcolor -fill -grestore -newpath -6.421394e+01 8.707957e+01 moveto -6.508301e+01 8.808202e+01 lineto -6.505582e+01 8.808228e+01 lineto -6.447148e+01 8.707713e+01 lineto -6.421394e+01 8.707957e+01 lineto -closepath -gsave -5.085896e-01 5.085896e-01 5.085896e-01 setrgbcolor -fill -grestore -1.0e-01 setlinewidth -newpath -7.917805e+01 8.89236e+01 moveto -7.917805e+01 8.61236e+01 lineto -7.91361e+01 8.638236e+01 lineto -7.91361e+01 8.918236e+01 lineto -7.917805e+01 8.89236e+01 lineto -closepath -gsave -4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor -fill -grestore -newpath -7.917805e+01 8.89236e+01 moveto -7.917805e+01 8.61236e+01 lineto -7.91361e+01 8.638236e+01 lineto -7.91361e+01 8.918236e+01 lineto -7.917805e+01 8.89236e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.917805e+01 9.17236e+01 moveto -7.917805e+01 8.89236e+01 lineto -7.91361e+01 8.918236e+01 lineto -7.91361e+01 9.198236e+01 lineto -7.917805e+01 9.17236e+01 lineto -closepath -gsave -4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor -fill -grestore -newpath -7.917805e+01 9.17236e+01 moveto -7.917805e+01 8.89236e+01 lineto -7.91361e+01 8.918236e+01 lineto -7.91361e+01 9.198236e+01 lineto -7.917805e+01 9.17236e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.917805e+01 9.45236e+01 moveto -7.917805e+01 9.17236e+01 lineto -7.91361e+01 9.198236e+01 lineto -7.91361e+01 9.478236e+01 lineto -7.917805e+01 9.45236e+01 lineto -closepath -gsave -4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor -fill -grestore -newpath -7.917805e+01 9.45236e+01 moveto -7.917805e+01 9.17236e+01 lineto -7.91361e+01 9.198236e+01 lineto -7.91361e+01 9.478236e+01 lineto -7.917805e+01 9.45236e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.917805e+01 9.73236e+01 moveto -7.917805e+01 9.45236e+01 lineto -7.91361e+01 9.478236e+01 lineto -7.91361e+01 9.758236e+01 lineto -7.917805e+01 9.73236e+01 lineto -closepath -gsave -4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor -fill -grestore -newpath -7.917805e+01 9.73236e+01 moveto -7.917805e+01 9.45236e+01 lineto -7.91361e+01 9.478236e+01 lineto -7.91361e+01 9.758236e+01 lineto -7.917805e+01 9.73236e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.917805e+01 1.001236e+02 moveto -7.917805e+01 9.73236e+01 lineto -7.91361e+01 9.758236e+01 lineto -7.91361e+01 1.003824e+02 lineto -7.917805e+01 1.001236e+02 lineto -closepath -gsave -4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor -fill -grestore -newpath -7.917805e+01 1.001236e+02 moveto -7.917805e+01 9.73236e+01 lineto -7.91361e+01 9.758236e+01 lineto -7.91361e+01 1.003824e+02 lineto -7.917805e+01 1.001236e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.917805e+01 1.029236e+02 moveto -7.917805e+01 1.001236e+02 lineto -7.91361e+01 1.003824e+02 lineto -7.91361e+01 1.031824e+02 lineto -7.917805e+01 1.029236e+02 lineto -closepath -gsave -4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor -fill -grestore -newpath -7.917805e+01 1.029236e+02 moveto -7.917805e+01 1.001236e+02 lineto -7.91361e+01 1.003824e+02 lineto -7.91361e+01 1.031824e+02 lineto -7.917805e+01 1.029236e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.917805e+01 1.057236e+02 moveto -7.917805e+01 1.029236e+02 lineto -7.91361e+01 1.031824e+02 lineto -7.91361e+01 1.059824e+02 lineto -7.917805e+01 1.057236e+02 lineto -closepath -gsave -4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor -fill -grestore -newpath -7.917805e+01 1.057236e+02 moveto -7.917805e+01 1.029236e+02 lineto -7.91361e+01 1.031824e+02 lineto -7.91361e+01 1.059824e+02 lineto -7.917805e+01 1.057236e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.917805e+01 1.085236e+02 moveto -7.917805e+01 1.057236e+02 lineto -7.91361e+01 1.059824e+02 lineto -7.91361e+01 1.087824e+02 lineto -7.917805e+01 1.085236e+02 lineto -closepath -gsave -4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor -fill -grestore -newpath -7.917805e+01 1.085236e+02 moveto -7.917805e+01 1.057236e+02 lineto -7.91361e+01 1.059824e+02 lineto -7.91361e+01 1.087824e+02 lineto -7.917805e+01 1.085236e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.917805e+01 1.113236e+02 moveto -7.917805e+01 1.085236e+02 lineto -7.91361e+01 1.087824e+02 lineto -7.91361e+01 1.115824e+02 lineto -7.917805e+01 1.113236e+02 lineto -closepath -gsave -4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor -fill -grestore -newpath -7.917805e+01 1.113236e+02 moveto -7.917805e+01 1.085236e+02 lineto -7.91361e+01 1.087824e+02 lineto -7.91361e+01 1.115824e+02 lineto -7.917805e+01 1.113236e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.917805e+01 1.141236e+02 moveto -7.917805e+01 1.113236e+02 lineto -7.91361e+01 1.115824e+02 lineto -7.91361e+01 1.143824e+02 lineto -7.917805e+01 1.141236e+02 lineto -closepath -gsave -4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor -fill -grestore -newpath -7.917805e+01 1.141236e+02 moveto -7.917805e+01 1.113236e+02 lineto -7.91361e+01 1.115824e+02 lineto -7.91361e+01 1.143824e+02 lineto -7.917805e+01 1.141236e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.91361e+01 8.918236e+01 moveto -7.91361e+01 8.638236e+01 lineto -7.900699e+01 8.663628e+01 lineto -7.900699e+01 8.943628e+01 lineto -7.91361e+01 8.918236e+01 lineto -closepath -gsave -4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor -fill -grestore -newpath -7.91361e+01 8.918236e+01 moveto -7.91361e+01 8.638236e+01 lineto -7.900699e+01 8.663628e+01 lineto -7.900699e+01 8.943628e+01 lineto -7.91361e+01 8.918236e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.91361e+01 9.198236e+01 moveto -7.91361e+01 8.918236e+01 lineto -7.900699e+01 8.943628e+01 lineto -7.900699e+01 9.223628e+01 lineto -7.91361e+01 9.198236e+01 lineto -closepath -gsave -4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor -fill -grestore -newpath -7.91361e+01 9.198236e+01 moveto -7.91361e+01 8.918236e+01 lineto -7.900699e+01 8.943628e+01 lineto -7.900699e+01 9.223628e+01 lineto -7.91361e+01 9.198236e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.91361e+01 9.478236e+01 moveto -7.91361e+01 9.198236e+01 lineto -7.900699e+01 9.223628e+01 lineto -7.900699e+01 9.503628e+01 lineto -7.91361e+01 9.478236e+01 lineto -closepath -gsave -4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor -fill -grestore -newpath -7.91361e+01 9.478236e+01 moveto -7.91361e+01 9.198236e+01 lineto -7.900699e+01 9.223628e+01 lineto -7.900699e+01 9.503628e+01 lineto -7.91361e+01 9.478236e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.91361e+01 9.758236e+01 moveto -7.91361e+01 9.478236e+01 lineto -7.900699e+01 9.503628e+01 lineto -7.900699e+01 9.783628e+01 lineto -7.91361e+01 9.758236e+01 lineto -closepath -gsave -4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor -fill -grestore -newpath -7.91361e+01 9.758236e+01 moveto -7.91361e+01 9.478236e+01 lineto -7.900699e+01 9.503628e+01 lineto -7.900699e+01 9.783628e+01 lineto -7.91361e+01 9.758236e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.91361e+01 1.003824e+02 moveto -7.91361e+01 9.758236e+01 lineto -7.900699e+01 9.783628e+01 lineto -7.900699e+01 1.006363e+02 lineto -7.91361e+01 1.003824e+02 lineto -closepath -gsave -4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor -fill -grestore -newpath -7.91361e+01 1.003824e+02 moveto -7.91361e+01 9.758236e+01 lineto -7.900699e+01 9.783628e+01 lineto -7.900699e+01 1.006363e+02 lineto -7.91361e+01 1.003824e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.91361e+01 1.031824e+02 moveto -7.91361e+01 1.003824e+02 lineto -7.900699e+01 1.006363e+02 lineto -7.900699e+01 1.034363e+02 lineto -7.91361e+01 1.031824e+02 lineto -closepath -gsave -4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor -fill -grestore -newpath -7.91361e+01 1.031824e+02 moveto -7.91361e+01 1.003824e+02 lineto -7.900699e+01 1.006363e+02 lineto -7.900699e+01 1.034363e+02 lineto -7.91361e+01 1.031824e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.91361e+01 1.059824e+02 moveto -7.91361e+01 1.031824e+02 lineto -7.900699e+01 1.034363e+02 lineto -7.900699e+01 1.062363e+02 lineto -7.91361e+01 1.059824e+02 lineto -closepath -gsave -4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor -fill -grestore -newpath -7.91361e+01 1.059824e+02 moveto -7.91361e+01 1.031824e+02 lineto -7.900699e+01 1.034363e+02 lineto -7.900699e+01 1.062363e+02 lineto -7.91361e+01 1.059824e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.91361e+01 1.087824e+02 moveto -7.91361e+01 1.059824e+02 lineto -7.900699e+01 1.062363e+02 lineto -7.900699e+01 1.090363e+02 lineto -7.91361e+01 1.087824e+02 lineto -closepath -gsave -4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor -fill -grestore -newpath -7.91361e+01 1.087824e+02 moveto -7.91361e+01 1.059824e+02 lineto -7.900699e+01 1.062363e+02 lineto -7.900699e+01 1.090363e+02 lineto -7.91361e+01 1.087824e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.91361e+01 1.115824e+02 moveto -7.91361e+01 1.087824e+02 lineto -7.900699e+01 1.090363e+02 lineto -7.900699e+01 1.118363e+02 lineto -7.91361e+01 1.115824e+02 lineto -closepath -gsave -4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor -fill -grestore -newpath -7.91361e+01 1.115824e+02 moveto -7.91361e+01 1.087824e+02 lineto -7.900699e+01 1.090363e+02 lineto -7.900699e+01 1.118363e+02 lineto -7.91361e+01 1.115824e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.91361e+01 1.143824e+02 moveto -7.91361e+01 1.115824e+02 lineto -7.900699e+01 1.118363e+02 lineto -7.900699e+01 1.146363e+02 lineto -7.91361e+01 1.143824e+02 lineto -closepath -gsave -4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor -fill -grestore -newpath -7.91361e+01 1.143824e+02 moveto -7.91361e+01 1.115824e+02 lineto -7.900699e+01 1.118363e+02 lineto -7.900699e+01 1.146363e+02 lineto -7.91361e+01 1.143824e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.900699e+01 8.943628e+01 moveto -7.900699e+01 8.663628e+01 lineto -7.879152e+01 8.68838e+01 lineto -7.879152e+01 8.96838e+01 lineto -7.900699e+01 8.943628e+01 lineto -closepath -gsave -4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor -fill -grestore -newpath -7.900699e+01 8.943628e+01 moveto -7.900699e+01 8.663628e+01 lineto -7.879152e+01 8.68838e+01 lineto -7.879152e+01 8.96838e+01 lineto -7.900699e+01 8.943628e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.900699e+01 9.223628e+01 moveto -7.900699e+01 8.943628e+01 lineto -7.879152e+01 8.96838e+01 lineto -7.879152e+01 9.24838e+01 lineto -7.900699e+01 9.223628e+01 lineto -closepath -gsave -4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor -fill -grestore -newpath -7.900699e+01 9.223628e+01 moveto -7.900699e+01 8.943628e+01 lineto -7.879152e+01 8.96838e+01 lineto -7.879152e+01 9.24838e+01 lineto -7.900699e+01 9.223628e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.900699e+01 9.503628e+01 moveto -7.900699e+01 9.223628e+01 lineto -7.879152e+01 9.24838e+01 lineto -7.879152e+01 9.52838e+01 lineto -7.900699e+01 9.503628e+01 lineto -closepath -gsave -4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor -fill -grestore -newpath -7.900699e+01 9.503628e+01 moveto -7.900699e+01 9.223628e+01 lineto -7.879152e+01 9.24838e+01 lineto -7.879152e+01 9.52838e+01 lineto -7.900699e+01 9.503628e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.900699e+01 9.783628e+01 moveto -7.900699e+01 9.503628e+01 lineto -7.879152e+01 9.52838e+01 lineto -7.879152e+01 9.80838e+01 lineto -7.900699e+01 9.783628e+01 lineto -closepath -gsave -4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor -fill -grestore -newpath -7.900699e+01 9.783628e+01 moveto -7.900699e+01 9.503628e+01 lineto -7.879152e+01 9.52838e+01 lineto -7.879152e+01 9.80838e+01 lineto -7.900699e+01 9.783628e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.900699e+01 1.006363e+02 moveto -7.900699e+01 9.783628e+01 lineto -7.879152e+01 9.80838e+01 lineto -7.879152e+01 1.008838e+02 lineto -7.900699e+01 1.006363e+02 lineto -closepath -gsave -4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor -fill -grestore -newpath -7.900699e+01 1.006363e+02 moveto -7.900699e+01 9.783628e+01 lineto -7.879152e+01 9.80838e+01 lineto -7.879152e+01 1.008838e+02 lineto -7.900699e+01 1.006363e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.900699e+01 1.034363e+02 moveto -7.900699e+01 1.006363e+02 lineto -7.879152e+01 1.008838e+02 lineto -7.879152e+01 1.036838e+02 lineto -7.900699e+01 1.034363e+02 lineto -closepath -gsave -4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor -fill -grestore -newpath -7.900699e+01 1.034363e+02 moveto -7.900699e+01 1.006363e+02 lineto -7.879152e+01 1.008838e+02 lineto -7.879152e+01 1.036838e+02 lineto -7.900699e+01 1.034363e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.900699e+01 1.062363e+02 moveto -7.900699e+01 1.034363e+02 lineto -7.879152e+01 1.036838e+02 lineto -7.879152e+01 1.064838e+02 lineto -7.900699e+01 1.062363e+02 lineto -closepath -gsave -4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor -fill -grestore -newpath -7.900699e+01 1.062363e+02 moveto -7.900699e+01 1.034363e+02 lineto -7.879152e+01 1.036838e+02 lineto -7.879152e+01 1.064838e+02 lineto -7.900699e+01 1.062363e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.900699e+01 1.090363e+02 moveto -7.900699e+01 1.062363e+02 lineto -7.879152e+01 1.064838e+02 lineto -7.879152e+01 1.092838e+02 lineto -7.900699e+01 1.090363e+02 lineto -closepath -gsave -4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor -fill -grestore -newpath -7.900699e+01 1.090363e+02 moveto -7.900699e+01 1.062363e+02 lineto -7.879152e+01 1.064838e+02 lineto -7.879152e+01 1.092838e+02 lineto -7.900699e+01 1.090363e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.900699e+01 1.118363e+02 moveto -7.900699e+01 1.090363e+02 lineto -7.879152e+01 1.092838e+02 lineto -7.879152e+01 1.120838e+02 lineto -7.900699e+01 1.118363e+02 lineto -closepath -gsave -4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor -fill -grestore -newpath -7.900699e+01 1.118363e+02 moveto -7.900699e+01 1.090363e+02 lineto -7.879152e+01 1.092838e+02 lineto -7.879152e+01 1.120838e+02 lineto -7.900699e+01 1.118363e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.900699e+01 1.146363e+02 moveto -7.900699e+01 1.118363e+02 lineto -7.879152e+01 1.120838e+02 lineto -7.879152e+01 1.148838e+02 lineto -7.900699e+01 1.146363e+02 lineto -closepath -gsave -4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor -fill -grestore -newpath -7.900699e+01 1.146363e+02 moveto -7.900699e+01 1.118363e+02 lineto -7.879152e+01 1.120838e+02 lineto -7.879152e+01 1.148838e+02 lineto -7.900699e+01 1.146363e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.879152e+01 8.96838e+01 moveto -7.879152e+01 8.68838e+01 lineto -7.849103e+01 8.712339e+01 lineto -7.849103e+01 8.992339e+01 lineto -7.879152e+01 8.96838e+01 lineto -closepath -gsave -4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor -fill -grestore -newpath -7.879152e+01 8.96838e+01 moveto -7.879152e+01 8.68838e+01 lineto -7.849103e+01 8.712339e+01 lineto -7.849103e+01 8.992339e+01 lineto -7.879152e+01 8.96838e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.879152e+01 9.24838e+01 moveto -7.879152e+01 8.96838e+01 lineto -7.849103e+01 8.992339e+01 lineto -7.849103e+01 9.272339e+01 lineto -7.879152e+01 9.24838e+01 lineto -closepath -gsave -4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor -fill -grestore -newpath -7.879152e+01 9.24838e+01 moveto -7.879152e+01 8.96838e+01 lineto -7.849103e+01 8.992339e+01 lineto -7.849103e+01 9.272339e+01 lineto -7.879152e+01 9.24838e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.879152e+01 9.52838e+01 moveto -7.879152e+01 9.24838e+01 lineto -7.849103e+01 9.272339e+01 lineto -7.849103e+01 9.552339e+01 lineto -7.879152e+01 9.52838e+01 lineto -closepath -gsave -4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor -fill -grestore -newpath -7.879152e+01 9.52838e+01 moveto -7.879152e+01 9.24838e+01 lineto -7.849103e+01 9.272339e+01 lineto -7.849103e+01 9.552339e+01 lineto -7.879152e+01 9.52838e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.879152e+01 9.80838e+01 moveto -7.879152e+01 9.52838e+01 lineto -7.849103e+01 9.552339e+01 lineto -7.849103e+01 9.832339e+01 lineto -7.879152e+01 9.80838e+01 lineto -closepath -gsave -4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor -fill -grestore -newpath -7.879152e+01 9.80838e+01 moveto -7.879152e+01 9.52838e+01 lineto -7.849103e+01 9.552339e+01 lineto -7.849103e+01 9.832339e+01 lineto -7.879152e+01 9.80838e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.879152e+01 1.008838e+02 moveto -7.879152e+01 9.80838e+01 lineto -7.849103e+01 9.832339e+01 lineto -7.849103e+01 1.011234e+02 lineto -7.879152e+01 1.008838e+02 lineto -closepath -gsave -4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor -fill -grestore -newpath -7.879152e+01 1.008838e+02 moveto -7.879152e+01 9.80838e+01 lineto -7.849103e+01 9.832339e+01 lineto -7.849103e+01 1.011234e+02 lineto -7.879152e+01 1.008838e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.879152e+01 1.036838e+02 moveto -7.879152e+01 1.008838e+02 lineto -7.849103e+01 1.011234e+02 lineto -7.849103e+01 1.039234e+02 lineto -7.879152e+01 1.036838e+02 lineto -closepath -gsave -4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor -fill -grestore -newpath -7.879152e+01 1.036838e+02 moveto -7.879152e+01 1.008838e+02 lineto -7.849103e+01 1.011234e+02 lineto -7.849103e+01 1.039234e+02 lineto -7.879152e+01 1.036838e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.879152e+01 1.064838e+02 moveto -7.879152e+01 1.036838e+02 lineto -7.849103e+01 1.039234e+02 lineto -7.849103e+01 1.067234e+02 lineto -7.879152e+01 1.064838e+02 lineto -closepath -gsave -4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor -fill -grestore -newpath -7.879152e+01 1.064838e+02 moveto -7.879152e+01 1.036838e+02 lineto -7.849103e+01 1.039234e+02 lineto -7.849103e+01 1.067234e+02 lineto -7.879152e+01 1.064838e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.879152e+01 1.092838e+02 moveto -7.879152e+01 1.064838e+02 lineto -7.849103e+01 1.067234e+02 lineto -7.849103e+01 1.095234e+02 lineto -7.879152e+01 1.092838e+02 lineto -closepath -gsave -4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor -fill -grestore -newpath -7.879152e+01 1.092838e+02 moveto -7.879152e+01 1.064838e+02 lineto -7.849103e+01 1.067234e+02 lineto -7.849103e+01 1.095234e+02 lineto -7.879152e+01 1.092838e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.879152e+01 1.120838e+02 moveto -7.879152e+01 1.092838e+02 lineto -7.849103e+01 1.095234e+02 lineto -7.849103e+01 1.123234e+02 lineto -7.879152e+01 1.120838e+02 lineto -closepath -gsave -4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor -fill -grestore -newpath -7.879152e+01 1.120838e+02 moveto -7.879152e+01 1.092838e+02 lineto -7.849103e+01 1.095234e+02 lineto -7.849103e+01 1.123234e+02 lineto -7.879152e+01 1.120838e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.879152e+01 1.148838e+02 moveto -7.879152e+01 1.120838e+02 lineto -7.849103e+01 1.123234e+02 lineto -7.849103e+01 1.151234e+02 lineto -7.879152e+01 1.148838e+02 lineto -closepath -gsave -4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor -fill -grestore -newpath -7.879152e+01 1.148838e+02 moveto -7.879152e+01 1.120838e+02 lineto -7.849103e+01 1.123234e+02 lineto -7.849103e+01 1.151234e+02 lineto -7.879152e+01 1.148838e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.849103e+01 8.992339e+01 moveto -7.849103e+01 8.712339e+01 lineto -7.810736e+01 8.735357e+01 lineto -7.810736e+01 9.015357e+01 lineto -7.849103e+01 8.992339e+01 lineto -closepath -gsave -4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor -fill -grestore -newpath -7.849103e+01 8.992339e+01 moveto -7.849103e+01 8.712339e+01 lineto -7.810736e+01 8.735357e+01 lineto -7.810736e+01 9.015357e+01 lineto -7.849103e+01 8.992339e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.849103e+01 9.272339e+01 moveto -7.849103e+01 8.992339e+01 lineto -7.810736e+01 9.015357e+01 lineto -7.810736e+01 9.295357e+01 lineto -7.849103e+01 9.272339e+01 lineto -closepath -gsave -4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor -fill -grestore -newpath -7.849103e+01 9.272339e+01 moveto -7.849103e+01 8.992339e+01 lineto -7.810736e+01 9.015357e+01 lineto -7.810736e+01 9.295357e+01 lineto -7.849103e+01 9.272339e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.849103e+01 9.552339e+01 moveto -7.849103e+01 9.272339e+01 lineto -7.810736e+01 9.295357e+01 lineto -7.810736e+01 9.575357e+01 lineto -7.849103e+01 9.552339e+01 lineto -closepath -gsave -4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor -fill -grestore -newpath -7.849103e+01 9.552339e+01 moveto -7.849103e+01 9.272339e+01 lineto -7.810736e+01 9.295357e+01 lineto -7.810736e+01 9.575357e+01 lineto -7.849103e+01 9.552339e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.849103e+01 9.832339e+01 moveto -7.849103e+01 9.552339e+01 lineto -7.810736e+01 9.575357e+01 lineto -7.810736e+01 9.855357e+01 lineto -7.849103e+01 9.832339e+01 lineto -closepath -gsave -4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor -fill -grestore -newpath -7.849103e+01 9.832339e+01 moveto -7.849103e+01 9.552339e+01 lineto -7.810736e+01 9.575357e+01 lineto -7.810736e+01 9.855357e+01 lineto -7.849103e+01 9.832339e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.849103e+01 1.011234e+02 moveto -7.849103e+01 9.832339e+01 lineto -7.810736e+01 9.855357e+01 lineto -7.810736e+01 1.013536e+02 lineto -7.849103e+01 1.011234e+02 lineto -closepath -gsave -4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor -fill -grestore -newpath -7.849103e+01 1.011234e+02 moveto -7.849103e+01 9.832339e+01 lineto -7.810736e+01 9.855357e+01 lineto -7.810736e+01 1.013536e+02 lineto -7.849103e+01 1.011234e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.849103e+01 1.039234e+02 moveto -7.849103e+01 1.011234e+02 lineto -7.810736e+01 1.013536e+02 lineto -7.810736e+01 1.041536e+02 lineto -7.849103e+01 1.039234e+02 lineto -closepath -gsave -4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor -fill -grestore -newpath -7.849103e+01 1.039234e+02 moveto -7.849103e+01 1.011234e+02 lineto -7.810736e+01 1.013536e+02 lineto -7.810736e+01 1.041536e+02 lineto -7.849103e+01 1.039234e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.849103e+01 1.067234e+02 moveto -7.849103e+01 1.039234e+02 lineto -7.810736e+01 1.041536e+02 lineto -7.810736e+01 1.069536e+02 lineto -7.849103e+01 1.067234e+02 lineto -closepath -gsave -4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor -fill -grestore -newpath -7.849103e+01 1.067234e+02 moveto -7.849103e+01 1.039234e+02 lineto -7.810736e+01 1.041536e+02 lineto -7.810736e+01 1.069536e+02 lineto -7.849103e+01 1.067234e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.849103e+01 1.095234e+02 moveto -7.849103e+01 1.067234e+02 lineto -7.810736e+01 1.069536e+02 lineto -7.810736e+01 1.097536e+02 lineto -7.849103e+01 1.095234e+02 lineto -closepath -gsave -4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor -fill -grestore -newpath -7.849103e+01 1.095234e+02 moveto -7.849103e+01 1.067234e+02 lineto -7.810736e+01 1.069536e+02 lineto -7.810736e+01 1.097536e+02 lineto -7.849103e+01 1.095234e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.849103e+01 1.123234e+02 moveto -7.849103e+01 1.095234e+02 lineto -7.810736e+01 1.097536e+02 lineto -7.810736e+01 1.125536e+02 lineto -7.849103e+01 1.123234e+02 lineto -closepath -gsave -4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor -fill -grestore -newpath -7.849103e+01 1.123234e+02 moveto -7.849103e+01 1.095234e+02 lineto -7.810736e+01 1.097536e+02 lineto -7.810736e+01 1.125536e+02 lineto -7.849103e+01 1.123234e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.849103e+01 1.151234e+02 moveto -7.849103e+01 1.123234e+02 lineto -7.810736e+01 1.125536e+02 lineto -7.810736e+01 1.153536e+02 lineto -7.849103e+01 1.151234e+02 lineto -closepath -gsave -4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor -fill -grestore -newpath -7.849103e+01 1.151234e+02 moveto -7.849103e+01 1.123234e+02 lineto -7.810736e+01 1.125536e+02 lineto -7.810736e+01 1.153536e+02 lineto -7.849103e+01 1.151234e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.810736e+01 9.015357e+01 moveto -7.810736e+01 8.735357e+01 lineto -7.764288e+01 8.757294e+01 lineto -7.764288e+01 9.037294e+01 lineto -7.810736e+01 9.015357e+01 lineto -closepath -gsave -4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor -fill -grestore -newpath -7.810736e+01 9.015357e+01 moveto -7.810736e+01 8.735357e+01 lineto -7.764288e+01 8.757294e+01 lineto -7.764288e+01 9.037294e+01 lineto -7.810736e+01 9.015357e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.810736e+01 9.295357e+01 moveto -7.810736e+01 9.015357e+01 lineto -7.764288e+01 9.037294e+01 lineto -7.764288e+01 9.317294e+01 lineto -7.810736e+01 9.295357e+01 lineto -closepath -gsave -4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor -fill -grestore -newpath -7.810736e+01 9.295357e+01 moveto -7.810736e+01 9.015357e+01 lineto -7.764288e+01 9.037294e+01 lineto -7.764288e+01 9.317294e+01 lineto -7.810736e+01 9.295357e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.810736e+01 9.575357e+01 moveto -7.810736e+01 9.295357e+01 lineto -7.764288e+01 9.317294e+01 lineto -7.764288e+01 9.597294e+01 lineto -7.810736e+01 9.575357e+01 lineto -closepath -gsave -4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor -fill -grestore -newpath -7.810736e+01 9.575357e+01 moveto -7.810736e+01 9.295357e+01 lineto -7.764288e+01 9.317294e+01 lineto -7.764288e+01 9.597294e+01 lineto -7.810736e+01 9.575357e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.810736e+01 9.855357e+01 moveto -7.810736e+01 9.575357e+01 lineto -7.764288e+01 9.597294e+01 lineto -7.764288e+01 9.877294e+01 lineto -7.810736e+01 9.855357e+01 lineto -closepath -gsave -4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor -fill -grestore -newpath -7.810736e+01 9.855357e+01 moveto -7.810736e+01 9.575357e+01 lineto -7.764288e+01 9.597294e+01 lineto -7.764288e+01 9.877294e+01 lineto -7.810736e+01 9.855357e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.810736e+01 1.013536e+02 moveto -7.810736e+01 9.855357e+01 lineto -7.764288e+01 9.877294e+01 lineto -7.764288e+01 1.015729e+02 lineto -7.810736e+01 1.013536e+02 lineto -closepath -gsave -4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor -fill -grestore -newpath -7.810736e+01 1.013536e+02 moveto -7.810736e+01 9.855357e+01 lineto -7.764288e+01 9.877294e+01 lineto -7.764288e+01 1.015729e+02 lineto -7.810736e+01 1.013536e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.810736e+01 1.041536e+02 moveto -7.810736e+01 1.013536e+02 lineto -7.764288e+01 1.015729e+02 lineto -7.764288e+01 1.043729e+02 lineto -7.810736e+01 1.041536e+02 lineto -closepath -gsave -4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor -fill -grestore -newpath -7.810736e+01 1.041536e+02 moveto -7.810736e+01 1.013536e+02 lineto -7.764288e+01 1.015729e+02 lineto -7.764288e+01 1.043729e+02 lineto -7.810736e+01 1.041536e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.810736e+01 1.069536e+02 moveto -7.810736e+01 1.041536e+02 lineto -7.764288e+01 1.043729e+02 lineto -7.764288e+01 1.071729e+02 lineto -7.810736e+01 1.069536e+02 lineto -closepath -gsave -4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor -fill -grestore -newpath -7.810736e+01 1.069536e+02 moveto -7.810736e+01 1.041536e+02 lineto -7.764288e+01 1.043729e+02 lineto -7.764288e+01 1.071729e+02 lineto -7.810736e+01 1.069536e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.810736e+01 1.097536e+02 moveto -7.810736e+01 1.069536e+02 lineto -7.764288e+01 1.071729e+02 lineto -7.764288e+01 1.099729e+02 lineto -7.810736e+01 1.097536e+02 lineto -closepath -gsave -4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor -fill -grestore -newpath -7.810736e+01 1.097536e+02 moveto -7.810736e+01 1.069536e+02 lineto -7.764288e+01 1.071729e+02 lineto -7.764288e+01 1.099729e+02 lineto -7.810736e+01 1.097536e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.810736e+01 1.125536e+02 moveto -7.810736e+01 1.097536e+02 lineto -7.764288e+01 1.099729e+02 lineto -7.764288e+01 1.127729e+02 lineto -7.810736e+01 1.125536e+02 lineto -closepath -gsave -4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor -fill -grestore -newpath -7.810736e+01 1.125536e+02 moveto -7.810736e+01 1.097536e+02 lineto -7.764288e+01 1.099729e+02 lineto -7.764288e+01 1.127729e+02 lineto -7.810736e+01 1.125536e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.810736e+01 1.153536e+02 moveto -7.810736e+01 1.125536e+02 lineto -7.764288e+01 1.127729e+02 lineto -7.764288e+01 1.155729e+02 lineto -7.810736e+01 1.153536e+02 lineto -closepath -gsave -4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor -fill -grestore -newpath -7.810736e+01 1.153536e+02 moveto -7.810736e+01 1.125536e+02 lineto -7.764288e+01 1.127729e+02 lineto -7.764288e+01 1.155729e+02 lineto -7.810736e+01 1.153536e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.764288e+01 9.037294e+01 moveto -7.764288e+01 8.757294e+01 lineto -7.710045e+01 8.778013e+01 lineto -7.710045e+01 9.058013e+01 lineto -7.764288e+01 9.037294e+01 lineto -closepath -gsave -4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor -fill -grestore -newpath -7.764288e+01 9.037294e+01 moveto -7.764288e+01 8.757294e+01 lineto -7.710045e+01 8.778013e+01 lineto -7.710045e+01 9.058013e+01 lineto -7.764288e+01 9.037294e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.764288e+01 9.317294e+01 moveto -7.764288e+01 9.037294e+01 lineto -7.710045e+01 9.058013e+01 lineto -7.710045e+01 9.338013e+01 lineto -7.764288e+01 9.317294e+01 lineto -closepath -gsave -4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor -fill -grestore -newpath -7.764288e+01 9.317294e+01 moveto -7.764288e+01 9.037294e+01 lineto -7.710045e+01 9.058013e+01 lineto -7.710045e+01 9.338013e+01 lineto -7.764288e+01 9.317294e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.764288e+01 9.597294e+01 moveto -7.764288e+01 9.317294e+01 lineto -7.710045e+01 9.338013e+01 lineto -7.710045e+01 9.618013e+01 lineto -7.764288e+01 9.597294e+01 lineto -closepath -gsave -4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor -fill -grestore -newpath -7.764288e+01 9.597294e+01 moveto -7.764288e+01 9.317294e+01 lineto -7.710045e+01 9.338013e+01 lineto -7.710045e+01 9.618013e+01 lineto -7.764288e+01 9.597294e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.764288e+01 9.877294e+01 moveto -7.764288e+01 9.597294e+01 lineto -7.710045e+01 9.618013e+01 lineto -7.710045e+01 9.898013e+01 lineto -7.764288e+01 9.877294e+01 lineto -closepath -gsave -4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor -fill -grestore -newpath -7.764288e+01 9.877294e+01 moveto -7.764288e+01 9.597294e+01 lineto -7.710045e+01 9.618013e+01 lineto -7.710045e+01 9.898013e+01 lineto -7.764288e+01 9.877294e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.764288e+01 1.015729e+02 moveto -7.764288e+01 9.877294e+01 lineto -7.710045e+01 9.898013e+01 lineto -7.710045e+01 1.017801e+02 lineto -7.764288e+01 1.015729e+02 lineto -closepath -gsave -4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor -fill -grestore -newpath -7.764288e+01 1.015729e+02 moveto -7.764288e+01 9.877294e+01 lineto -7.710045e+01 9.898013e+01 lineto -7.710045e+01 1.017801e+02 lineto -7.764288e+01 1.015729e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.764288e+01 1.043729e+02 moveto -7.764288e+01 1.015729e+02 lineto -7.710045e+01 1.017801e+02 lineto -7.710045e+01 1.045801e+02 lineto -7.764288e+01 1.043729e+02 lineto -closepath -gsave -4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor -fill -grestore -newpath -7.764288e+01 1.043729e+02 moveto -7.764288e+01 1.015729e+02 lineto -7.710045e+01 1.017801e+02 lineto -7.710045e+01 1.045801e+02 lineto -7.764288e+01 1.043729e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.764288e+01 1.071729e+02 moveto -7.764288e+01 1.043729e+02 lineto -7.710045e+01 1.045801e+02 lineto -7.710045e+01 1.073801e+02 lineto -7.764288e+01 1.071729e+02 lineto -closepath -gsave -4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor -fill -grestore -newpath -7.764288e+01 1.071729e+02 moveto -7.764288e+01 1.043729e+02 lineto -7.710045e+01 1.045801e+02 lineto -7.710045e+01 1.073801e+02 lineto -7.764288e+01 1.071729e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.764288e+01 1.099729e+02 moveto -7.764288e+01 1.071729e+02 lineto -7.710045e+01 1.073801e+02 lineto -7.710045e+01 1.101801e+02 lineto -7.764288e+01 1.099729e+02 lineto -closepath -gsave -4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor -fill -grestore -newpath -7.764288e+01 1.099729e+02 moveto -7.764288e+01 1.071729e+02 lineto -7.710045e+01 1.073801e+02 lineto -7.710045e+01 1.101801e+02 lineto -7.764288e+01 1.099729e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.764288e+01 1.127729e+02 moveto -7.764288e+01 1.099729e+02 lineto -7.710045e+01 1.101801e+02 lineto -7.710045e+01 1.129801e+02 lineto -7.764288e+01 1.127729e+02 lineto -closepath -gsave -4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor -fill -grestore -newpath -7.764288e+01 1.127729e+02 moveto -7.764288e+01 1.099729e+02 lineto -7.710045e+01 1.101801e+02 lineto -7.710045e+01 1.129801e+02 lineto -7.764288e+01 1.127729e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.764288e+01 1.155729e+02 moveto -7.764288e+01 1.127729e+02 lineto -7.710045e+01 1.129801e+02 lineto -7.710045e+01 1.157801e+02 lineto -7.764288e+01 1.155729e+02 lineto -closepath -gsave -4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor -fill -grestore -newpath -7.764288e+01 1.155729e+02 moveto -7.764288e+01 1.127729e+02 lineto -7.710045e+01 1.129801e+02 lineto -7.710045e+01 1.157801e+02 lineto -7.764288e+01 1.155729e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.710045e+01 9.058013e+01 moveto -7.710045e+01 8.778013e+01 lineto -7.648341e+01 8.797386e+01 lineto -7.648341e+01 9.077386e+01 lineto -7.710045e+01 9.058013e+01 lineto -closepath -gsave -4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor -fill -grestore -newpath -7.710045e+01 9.058013e+01 moveto -7.710045e+01 8.778013e+01 lineto -7.648341e+01 8.797386e+01 lineto -7.648341e+01 9.077386e+01 lineto -7.710045e+01 9.058013e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.710045e+01 9.338013e+01 moveto -7.710045e+01 9.058013e+01 lineto -7.648341e+01 9.077386e+01 lineto -7.648341e+01 9.357386e+01 lineto -7.710045e+01 9.338013e+01 lineto -closepath -gsave -4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor -fill -grestore -newpath -7.710045e+01 9.338013e+01 moveto -7.710045e+01 9.058013e+01 lineto -7.648341e+01 9.077386e+01 lineto -7.648341e+01 9.357386e+01 lineto -7.710045e+01 9.338013e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.710045e+01 9.618013e+01 moveto -7.710045e+01 9.338013e+01 lineto -7.648341e+01 9.357386e+01 lineto -7.648341e+01 9.637386e+01 lineto -7.710045e+01 9.618013e+01 lineto -closepath -gsave -4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor -fill -grestore -newpath -7.710045e+01 9.618013e+01 moveto -7.710045e+01 9.338013e+01 lineto -7.648341e+01 9.357386e+01 lineto -7.648341e+01 9.637386e+01 lineto -7.710045e+01 9.618013e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.710045e+01 9.898013e+01 moveto -7.710045e+01 9.618013e+01 lineto -7.648341e+01 9.637386e+01 lineto -7.648341e+01 9.917386e+01 lineto -7.710045e+01 9.898013e+01 lineto -closepath -gsave -4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor -fill -grestore -newpath -7.710045e+01 9.898013e+01 moveto -7.710045e+01 9.618013e+01 lineto -7.648341e+01 9.637386e+01 lineto -7.648341e+01 9.917386e+01 lineto -7.710045e+01 9.898013e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.710045e+01 1.017801e+02 moveto -7.710045e+01 9.898013e+01 lineto -7.648341e+01 9.917386e+01 lineto -7.648341e+01 1.019739e+02 lineto -7.710045e+01 1.017801e+02 lineto -closepath -gsave -4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor -fill -grestore -newpath -7.710045e+01 1.017801e+02 moveto -7.710045e+01 9.898013e+01 lineto -7.648341e+01 9.917386e+01 lineto -7.648341e+01 1.019739e+02 lineto -7.710045e+01 1.017801e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.710045e+01 1.045801e+02 moveto -7.710045e+01 1.017801e+02 lineto -7.648341e+01 1.019739e+02 lineto -7.648341e+01 1.047739e+02 lineto -7.710045e+01 1.045801e+02 lineto -closepath -gsave -4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor -fill -grestore -newpath -7.710045e+01 1.045801e+02 moveto -7.710045e+01 1.017801e+02 lineto -7.648341e+01 1.019739e+02 lineto -7.648341e+01 1.047739e+02 lineto -7.710045e+01 1.045801e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.710045e+01 1.073801e+02 moveto -7.710045e+01 1.045801e+02 lineto -7.648341e+01 1.047739e+02 lineto -7.648341e+01 1.075739e+02 lineto -7.710045e+01 1.073801e+02 lineto -closepath -gsave -4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor -fill -grestore -newpath -7.710045e+01 1.073801e+02 moveto -7.710045e+01 1.045801e+02 lineto -7.648341e+01 1.047739e+02 lineto -7.648341e+01 1.075739e+02 lineto -7.710045e+01 1.073801e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.710045e+01 1.101801e+02 moveto -7.710045e+01 1.073801e+02 lineto -7.648341e+01 1.075739e+02 lineto -7.648341e+01 1.103739e+02 lineto -7.710045e+01 1.101801e+02 lineto -closepath -gsave -4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor -fill -grestore -newpath -7.710045e+01 1.101801e+02 moveto -7.710045e+01 1.073801e+02 lineto -7.648341e+01 1.075739e+02 lineto -7.648341e+01 1.103739e+02 lineto -7.710045e+01 1.101801e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.710045e+01 1.129801e+02 moveto -7.710045e+01 1.101801e+02 lineto -7.648341e+01 1.103739e+02 lineto -7.648341e+01 1.131739e+02 lineto -7.710045e+01 1.129801e+02 lineto -closepath -gsave -4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor -fill -grestore -newpath -7.710045e+01 1.129801e+02 moveto -7.710045e+01 1.101801e+02 lineto -7.648341e+01 1.103739e+02 lineto -7.648341e+01 1.131739e+02 lineto -7.710045e+01 1.129801e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.710045e+01 1.157801e+02 moveto -7.710045e+01 1.129801e+02 lineto -7.648341e+01 1.131739e+02 lineto -7.648341e+01 1.159739e+02 lineto -7.710045e+01 1.157801e+02 lineto -closepath -gsave -4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor -fill -grestore -newpath -7.710045e+01 1.157801e+02 moveto -7.710045e+01 1.129801e+02 lineto -7.648341e+01 1.131739e+02 lineto -7.648341e+01 1.159739e+02 lineto -7.710045e+01 1.157801e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.648341e+01 9.077386e+01 moveto -7.648341e+01 8.797386e+01 lineto -7.579558e+01 8.815294e+01 lineto -7.579558e+01 9.095294e+01 lineto -7.648341e+01 9.077386e+01 lineto -closepath -gsave -4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor -fill -grestore -newpath -7.648341e+01 9.077386e+01 moveto -7.648341e+01 8.797386e+01 lineto -7.579558e+01 8.815294e+01 lineto -7.579558e+01 9.095294e+01 lineto -7.648341e+01 9.077386e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.648341e+01 9.357386e+01 moveto -7.648341e+01 9.077386e+01 lineto -7.579558e+01 9.095294e+01 lineto -7.579558e+01 9.375294e+01 lineto -7.648341e+01 9.357386e+01 lineto -closepath -gsave -4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor -fill -grestore -newpath -7.648341e+01 9.357386e+01 moveto -7.648341e+01 9.077386e+01 lineto -7.579558e+01 9.095294e+01 lineto -7.579558e+01 9.375294e+01 lineto -7.648341e+01 9.357386e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.648341e+01 9.637386e+01 moveto -7.648341e+01 9.357386e+01 lineto -7.579558e+01 9.375294e+01 lineto -7.579558e+01 9.655294e+01 lineto -7.648341e+01 9.637386e+01 lineto -closepath -gsave -4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor -fill -grestore -newpath -7.648341e+01 9.637386e+01 moveto -7.648341e+01 9.357386e+01 lineto -7.579558e+01 9.375294e+01 lineto -7.579558e+01 9.655294e+01 lineto -7.648341e+01 9.637386e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.648341e+01 9.917386e+01 moveto -7.648341e+01 9.637386e+01 lineto -7.579558e+01 9.655294e+01 lineto -7.579558e+01 9.935294e+01 lineto -7.648341e+01 9.917386e+01 lineto -closepath -gsave -4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor -fill -grestore -newpath -7.648341e+01 9.917386e+01 moveto -7.648341e+01 9.637386e+01 lineto -7.579558e+01 9.655294e+01 lineto -7.579558e+01 9.935294e+01 lineto -7.648341e+01 9.917386e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.648341e+01 1.019739e+02 moveto -7.648341e+01 9.917386e+01 lineto -7.579558e+01 9.935294e+01 lineto -7.579558e+01 1.021529e+02 lineto -7.648341e+01 1.019739e+02 lineto -closepath -gsave -4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor -fill -grestore -newpath -7.648341e+01 1.019739e+02 moveto -7.648341e+01 9.917386e+01 lineto -7.579558e+01 9.935294e+01 lineto -7.579558e+01 1.021529e+02 lineto -7.648341e+01 1.019739e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.648341e+01 1.047739e+02 moveto -7.648341e+01 1.019739e+02 lineto -7.579558e+01 1.021529e+02 lineto -7.579558e+01 1.049529e+02 lineto -7.648341e+01 1.047739e+02 lineto -closepath -gsave -4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor -fill -grestore -newpath -7.648341e+01 1.047739e+02 moveto -7.648341e+01 1.019739e+02 lineto -7.579558e+01 1.021529e+02 lineto -7.579558e+01 1.049529e+02 lineto -7.648341e+01 1.047739e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.648341e+01 1.075739e+02 moveto -7.648341e+01 1.047739e+02 lineto -7.579558e+01 1.049529e+02 lineto -7.579558e+01 1.077529e+02 lineto -7.648341e+01 1.075739e+02 lineto -closepath -gsave -4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor -fill -grestore -newpath -7.648341e+01 1.075739e+02 moveto -7.648341e+01 1.047739e+02 lineto -7.579558e+01 1.049529e+02 lineto -7.579558e+01 1.077529e+02 lineto -7.648341e+01 1.075739e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.648341e+01 1.103739e+02 moveto -7.648341e+01 1.075739e+02 lineto -7.579558e+01 1.077529e+02 lineto -7.579558e+01 1.105529e+02 lineto -7.648341e+01 1.103739e+02 lineto -closepath -gsave -4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor -fill -grestore -newpath -7.648341e+01 1.103739e+02 moveto -7.648341e+01 1.075739e+02 lineto -7.579558e+01 1.077529e+02 lineto -7.579558e+01 1.105529e+02 lineto -7.648341e+01 1.103739e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.648341e+01 1.131739e+02 moveto -7.648341e+01 1.103739e+02 lineto -7.579558e+01 1.105529e+02 lineto -7.579558e+01 1.133529e+02 lineto -7.648341e+01 1.131739e+02 lineto -closepath -gsave -4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor -fill -grestore -newpath -7.648341e+01 1.131739e+02 moveto -7.648341e+01 1.103739e+02 lineto -7.579558e+01 1.105529e+02 lineto -7.579558e+01 1.133529e+02 lineto -7.648341e+01 1.131739e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.648341e+01 1.159739e+02 moveto -7.648341e+01 1.131739e+02 lineto -7.579558e+01 1.133529e+02 lineto -7.579558e+01 1.161529e+02 lineto -7.648341e+01 1.159739e+02 lineto -closepath -gsave -4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor -fill -grestore -newpath -7.648341e+01 1.159739e+02 moveto -7.648341e+01 1.131739e+02 lineto -7.579558e+01 1.133529e+02 lineto -7.579558e+01 1.161529e+02 lineto -7.648341e+01 1.159739e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.579558e+01 9.095294e+01 moveto -7.579558e+01 8.815294e+01 lineto -7.504119e+01 8.831628e+01 lineto -7.504119e+01 9.111628e+01 lineto -7.579558e+01 9.095294e+01 lineto -closepath -gsave -4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor -fill -grestore -newpath -7.579558e+01 9.095294e+01 moveto -7.579558e+01 8.815294e+01 lineto -7.504119e+01 8.831628e+01 lineto -7.504119e+01 9.111628e+01 lineto -7.579558e+01 9.095294e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.579558e+01 9.375294e+01 moveto -7.579558e+01 9.095294e+01 lineto -7.504119e+01 9.111628e+01 lineto -7.504119e+01 9.391628e+01 lineto -7.579558e+01 9.375294e+01 lineto -closepath -gsave -4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor -fill -grestore -newpath -7.579558e+01 9.375294e+01 moveto -7.579558e+01 9.095294e+01 lineto -7.504119e+01 9.111628e+01 lineto -7.504119e+01 9.391628e+01 lineto -7.579558e+01 9.375294e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.579558e+01 9.655294e+01 moveto -7.579558e+01 9.375294e+01 lineto -7.504119e+01 9.391628e+01 lineto -7.504119e+01 9.671628e+01 lineto -7.579558e+01 9.655294e+01 lineto -closepath -gsave -4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor -fill -grestore -newpath -7.579558e+01 9.655294e+01 moveto -7.579558e+01 9.375294e+01 lineto -7.504119e+01 9.391628e+01 lineto -7.504119e+01 9.671628e+01 lineto -7.579558e+01 9.655294e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.579558e+01 9.935294e+01 moveto -7.579558e+01 9.655294e+01 lineto -7.504119e+01 9.671628e+01 lineto -7.504119e+01 9.951628e+01 lineto -7.579558e+01 9.935294e+01 lineto -closepath -gsave -4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor -fill -grestore -newpath -7.579558e+01 9.935294e+01 moveto -7.579558e+01 9.655294e+01 lineto -7.504119e+01 9.671628e+01 lineto -7.504119e+01 9.951628e+01 lineto -7.579558e+01 9.935294e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.579558e+01 1.021529e+02 moveto -7.579558e+01 9.935294e+01 lineto -7.504119e+01 9.951628e+01 lineto -7.504119e+01 1.023163e+02 lineto -7.579558e+01 1.021529e+02 lineto -closepath -gsave -4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor -fill -grestore -newpath -7.579558e+01 1.021529e+02 moveto -7.579558e+01 9.935294e+01 lineto -7.504119e+01 9.951628e+01 lineto -7.504119e+01 1.023163e+02 lineto -7.579558e+01 1.021529e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.579558e+01 1.049529e+02 moveto -7.579558e+01 1.021529e+02 lineto -7.504119e+01 1.023163e+02 lineto -7.504119e+01 1.051163e+02 lineto -7.579558e+01 1.049529e+02 lineto -closepath -gsave -4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor -fill -grestore -newpath -7.579558e+01 1.049529e+02 moveto -7.579558e+01 1.021529e+02 lineto -7.504119e+01 1.023163e+02 lineto -7.504119e+01 1.051163e+02 lineto -7.579558e+01 1.049529e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.579558e+01 1.077529e+02 moveto -7.579558e+01 1.049529e+02 lineto -7.504119e+01 1.051163e+02 lineto -7.504119e+01 1.079163e+02 lineto -7.579558e+01 1.077529e+02 lineto -closepath -gsave -4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor -fill -grestore -newpath -7.579558e+01 1.077529e+02 moveto -7.579558e+01 1.049529e+02 lineto -7.504119e+01 1.051163e+02 lineto -7.504119e+01 1.079163e+02 lineto -7.579558e+01 1.077529e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.579558e+01 1.105529e+02 moveto -7.579558e+01 1.077529e+02 lineto -7.504119e+01 1.079163e+02 lineto -7.504119e+01 1.107163e+02 lineto -7.579558e+01 1.105529e+02 lineto -closepath -gsave -4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor -fill -grestore -newpath -7.579558e+01 1.105529e+02 moveto -7.579558e+01 1.077529e+02 lineto -7.504119e+01 1.079163e+02 lineto -7.504119e+01 1.107163e+02 lineto -7.579558e+01 1.105529e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.579558e+01 1.133529e+02 moveto -7.579558e+01 1.105529e+02 lineto -7.504119e+01 1.107163e+02 lineto -7.504119e+01 1.135163e+02 lineto -7.579558e+01 1.133529e+02 lineto -closepath -gsave -4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor -fill -grestore -newpath -7.579558e+01 1.133529e+02 moveto -7.579558e+01 1.105529e+02 lineto -7.504119e+01 1.107163e+02 lineto -7.504119e+01 1.135163e+02 lineto -7.579558e+01 1.133529e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.579558e+01 1.161529e+02 moveto -7.579558e+01 1.133529e+02 lineto -7.504119e+01 1.135163e+02 lineto -7.504119e+01 1.163163e+02 lineto -7.579558e+01 1.161529e+02 lineto -closepath -gsave -4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor -fill -grestore -newpath -7.579558e+01 1.161529e+02 moveto -7.579558e+01 1.133529e+02 lineto -7.504119e+01 1.135163e+02 lineto -7.504119e+01 1.163163e+02 lineto -7.579558e+01 1.161529e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.504119e+01 9.111628e+01 moveto -7.504119e+01 8.831628e+01 lineto -7.422489e+01 8.846285e+01 lineto -7.422489e+01 9.126285e+01 lineto -7.504119e+01 9.111628e+01 lineto -closepath -gsave -4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor -fill -grestore -newpath -7.504119e+01 9.111628e+01 moveto -7.504119e+01 8.831628e+01 lineto -7.422489e+01 8.846285e+01 lineto -7.422489e+01 9.126285e+01 lineto -7.504119e+01 9.111628e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.504119e+01 9.391628e+01 moveto -7.504119e+01 9.111628e+01 lineto -7.422489e+01 9.126285e+01 lineto -7.422489e+01 9.406285e+01 lineto -7.504119e+01 9.391628e+01 lineto -closepath -gsave -4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor -fill -grestore -newpath -7.504119e+01 9.391628e+01 moveto -7.504119e+01 9.111628e+01 lineto -7.422489e+01 9.126285e+01 lineto -7.422489e+01 9.406285e+01 lineto -7.504119e+01 9.391628e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.504119e+01 9.671628e+01 moveto -7.504119e+01 9.391628e+01 lineto -7.422489e+01 9.406285e+01 lineto -7.422489e+01 9.686285e+01 lineto -7.504119e+01 9.671628e+01 lineto -closepath -gsave -4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor -fill -grestore -newpath -7.504119e+01 9.671628e+01 moveto -7.504119e+01 9.391628e+01 lineto -7.422489e+01 9.406285e+01 lineto -7.422489e+01 9.686285e+01 lineto -7.504119e+01 9.671628e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.504119e+01 9.951628e+01 moveto -7.504119e+01 9.671628e+01 lineto -7.422489e+01 9.686285e+01 lineto -7.422489e+01 9.966285e+01 lineto -7.504119e+01 9.951628e+01 lineto -closepath -gsave -4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor -fill -grestore -newpath -7.504119e+01 9.951628e+01 moveto -7.504119e+01 9.671628e+01 lineto -7.422489e+01 9.686285e+01 lineto -7.422489e+01 9.966285e+01 lineto -7.504119e+01 9.951628e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.504119e+01 1.023163e+02 moveto -7.504119e+01 9.951628e+01 lineto -7.422489e+01 9.966285e+01 lineto -7.422489e+01 1.024629e+02 lineto -7.504119e+01 1.023163e+02 lineto -closepath -gsave -4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor -fill -grestore -newpath -7.504119e+01 1.023163e+02 moveto -7.504119e+01 9.951628e+01 lineto -7.422489e+01 9.966285e+01 lineto -7.422489e+01 1.024629e+02 lineto -7.504119e+01 1.023163e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.504119e+01 1.051163e+02 moveto -7.504119e+01 1.023163e+02 lineto -7.422489e+01 1.024629e+02 lineto -7.422489e+01 1.052629e+02 lineto -7.504119e+01 1.051163e+02 lineto -closepath -gsave -4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor -fill -grestore -newpath -7.504119e+01 1.051163e+02 moveto -7.504119e+01 1.023163e+02 lineto -7.422489e+01 1.024629e+02 lineto -7.422489e+01 1.052629e+02 lineto -7.504119e+01 1.051163e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.504119e+01 1.079163e+02 moveto -7.504119e+01 1.051163e+02 lineto -7.422489e+01 1.052629e+02 lineto -7.422489e+01 1.080629e+02 lineto -7.504119e+01 1.079163e+02 lineto -closepath -gsave -4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor -fill -grestore -newpath -7.504119e+01 1.079163e+02 moveto -7.504119e+01 1.051163e+02 lineto -7.422489e+01 1.052629e+02 lineto -7.422489e+01 1.080629e+02 lineto -7.504119e+01 1.079163e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.504119e+01 1.107163e+02 moveto -7.504119e+01 1.079163e+02 lineto -7.422489e+01 1.080629e+02 lineto -7.422489e+01 1.108629e+02 lineto -7.504119e+01 1.107163e+02 lineto -closepath -gsave -4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor -fill -grestore -newpath -7.504119e+01 1.107163e+02 moveto -7.504119e+01 1.079163e+02 lineto -7.422489e+01 1.080629e+02 lineto -7.422489e+01 1.108629e+02 lineto -7.504119e+01 1.107163e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.504119e+01 1.135163e+02 moveto -7.504119e+01 1.107163e+02 lineto -7.422489e+01 1.108629e+02 lineto -7.422489e+01 1.136629e+02 lineto -7.504119e+01 1.135163e+02 lineto -closepath -gsave -4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor -fill -grestore -newpath -7.504119e+01 1.135163e+02 moveto -7.504119e+01 1.107163e+02 lineto -7.422489e+01 1.108629e+02 lineto -7.422489e+01 1.136629e+02 lineto -7.504119e+01 1.135163e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.504119e+01 1.163163e+02 moveto -7.504119e+01 1.135163e+02 lineto -7.422489e+01 1.136629e+02 lineto -7.422489e+01 1.164629e+02 lineto -7.504119e+01 1.163163e+02 lineto -closepath -gsave -4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor -fill -grestore -newpath -7.504119e+01 1.163163e+02 moveto -7.504119e+01 1.135163e+02 lineto -7.422489e+01 1.136629e+02 lineto -7.422489e+01 1.164629e+02 lineto -7.504119e+01 1.163163e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.422489e+01 9.126285e+01 moveto -7.422489e+01 8.846285e+01 lineto -7.335172e+01 8.859176e+01 lineto -7.335172e+01 9.139176e+01 lineto -7.422489e+01 9.126285e+01 lineto -closepath -gsave -5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor -fill -grestore -newpath -7.422489e+01 9.126285e+01 moveto -7.422489e+01 8.846285e+01 lineto -7.335172e+01 8.859176e+01 lineto -7.335172e+01 9.139176e+01 lineto -7.422489e+01 9.126285e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.422489e+01 9.406285e+01 moveto -7.422489e+01 9.126285e+01 lineto -7.335172e+01 9.139176e+01 lineto -7.335172e+01 9.419176e+01 lineto -7.422489e+01 9.406285e+01 lineto -closepath -gsave -5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor -fill -grestore -newpath -7.422489e+01 9.406285e+01 moveto -7.422489e+01 9.126285e+01 lineto -7.335172e+01 9.139176e+01 lineto -7.335172e+01 9.419176e+01 lineto -7.422489e+01 9.406285e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.422489e+01 9.686285e+01 moveto -7.422489e+01 9.406285e+01 lineto -7.335172e+01 9.419176e+01 lineto -7.335172e+01 9.699176e+01 lineto -7.422489e+01 9.686285e+01 lineto -closepath -gsave -5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor -fill -grestore -newpath -7.422489e+01 9.686285e+01 moveto -7.422489e+01 9.406285e+01 lineto -7.335172e+01 9.419176e+01 lineto -7.335172e+01 9.699176e+01 lineto -7.422489e+01 9.686285e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.422489e+01 9.966285e+01 moveto -7.422489e+01 9.686285e+01 lineto -7.335172e+01 9.699176e+01 lineto -7.335172e+01 9.979176e+01 lineto -7.422489e+01 9.966285e+01 lineto -closepath -gsave -5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor -fill -grestore -newpath -7.422489e+01 9.966285e+01 moveto -7.422489e+01 9.686285e+01 lineto -7.335172e+01 9.699176e+01 lineto -7.335172e+01 9.979176e+01 lineto -7.422489e+01 9.966285e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.422489e+01 1.024629e+02 moveto -7.422489e+01 9.966285e+01 lineto -7.335172e+01 9.979176e+01 lineto -7.335172e+01 1.025918e+02 lineto -7.422489e+01 1.024629e+02 lineto -closepath -gsave -5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor -fill -grestore -newpath -7.422489e+01 1.024629e+02 moveto -7.422489e+01 9.966285e+01 lineto -7.335172e+01 9.979176e+01 lineto -7.335172e+01 1.025918e+02 lineto -7.422489e+01 1.024629e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.422489e+01 1.052629e+02 moveto -7.422489e+01 1.024629e+02 lineto -7.335172e+01 1.025918e+02 lineto -7.335172e+01 1.053918e+02 lineto -7.422489e+01 1.052629e+02 lineto -closepath -gsave -5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor -fill -grestore -newpath -7.422489e+01 1.052629e+02 moveto -7.422489e+01 1.024629e+02 lineto -7.335172e+01 1.025918e+02 lineto -7.335172e+01 1.053918e+02 lineto -7.422489e+01 1.052629e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.422489e+01 1.080629e+02 moveto -7.422489e+01 1.052629e+02 lineto -7.335172e+01 1.053918e+02 lineto -7.335172e+01 1.081918e+02 lineto -7.422489e+01 1.080629e+02 lineto -closepath -gsave -5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor -fill -grestore -newpath -7.422489e+01 1.080629e+02 moveto -7.422489e+01 1.052629e+02 lineto -7.335172e+01 1.053918e+02 lineto -7.335172e+01 1.081918e+02 lineto -7.422489e+01 1.080629e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.422489e+01 1.108629e+02 moveto -7.422489e+01 1.080629e+02 lineto -7.335172e+01 1.081918e+02 lineto -7.335172e+01 1.109918e+02 lineto -7.422489e+01 1.108629e+02 lineto -closepath -gsave -5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor -fill -grestore -newpath -7.422489e+01 1.108629e+02 moveto -7.422489e+01 1.080629e+02 lineto -7.335172e+01 1.081918e+02 lineto -7.335172e+01 1.109918e+02 lineto -7.422489e+01 1.108629e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.422489e+01 1.136629e+02 moveto -7.422489e+01 1.108629e+02 lineto -7.335172e+01 1.109918e+02 lineto -7.335172e+01 1.137918e+02 lineto -7.422489e+01 1.136629e+02 lineto -closepath -gsave -5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor -fill -grestore -newpath -7.422489e+01 1.136629e+02 moveto -7.422489e+01 1.108629e+02 lineto -7.335172e+01 1.109918e+02 lineto -7.335172e+01 1.137918e+02 lineto -7.422489e+01 1.136629e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.422489e+01 1.164629e+02 moveto -7.422489e+01 1.136629e+02 lineto -7.335172e+01 1.137918e+02 lineto -7.335172e+01 1.165918e+02 lineto -7.422489e+01 1.164629e+02 lineto -closepath -gsave -5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor -fill -grestore -newpath -7.422489e+01 1.164629e+02 moveto -7.422489e+01 1.136629e+02 lineto -7.335172e+01 1.137918e+02 lineto -7.335172e+01 1.165918e+02 lineto -7.422489e+01 1.164629e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.335172e+01 9.139176e+01 moveto -7.335172e+01 8.859176e+01 lineto -7.242706e+01 8.870221e+01 lineto -7.242706e+01 9.150221e+01 lineto -7.335172e+01 9.139176e+01 lineto -closepath -gsave -5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor -fill -grestore -newpath -7.335172e+01 9.139176e+01 moveto -7.335172e+01 8.859176e+01 lineto -7.242706e+01 8.870221e+01 lineto -7.242706e+01 9.150221e+01 lineto -7.335172e+01 9.139176e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.335172e+01 9.419176e+01 moveto -7.335172e+01 9.139176e+01 lineto -7.242706e+01 9.150221e+01 lineto -7.242706e+01 9.430221e+01 lineto -7.335172e+01 9.419176e+01 lineto -closepath -gsave -5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor -fill -grestore -newpath -7.335172e+01 9.419176e+01 moveto -7.335172e+01 9.139176e+01 lineto -7.242706e+01 9.150221e+01 lineto -7.242706e+01 9.430221e+01 lineto -7.335172e+01 9.419176e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.335172e+01 9.699176e+01 moveto -7.335172e+01 9.419176e+01 lineto -7.242706e+01 9.430221e+01 lineto -7.242706e+01 9.710221e+01 lineto -7.335172e+01 9.699176e+01 lineto -closepath -gsave -5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor -fill -grestore -newpath -7.335172e+01 9.699176e+01 moveto -7.335172e+01 9.419176e+01 lineto -7.242706e+01 9.430221e+01 lineto -7.242706e+01 9.710221e+01 lineto -7.335172e+01 9.699176e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.335172e+01 9.979176e+01 moveto -7.335172e+01 9.699176e+01 lineto -7.242706e+01 9.710221e+01 lineto -7.242706e+01 9.990221e+01 lineto -7.335172e+01 9.979176e+01 lineto -closepath -gsave -5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor -fill -grestore -newpath -7.335172e+01 9.979176e+01 moveto -7.335172e+01 9.699176e+01 lineto -7.242706e+01 9.710221e+01 lineto -7.242706e+01 9.990221e+01 lineto -7.335172e+01 9.979176e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.335172e+01 1.025918e+02 moveto -7.335172e+01 9.979176e+01 lineto -7.242706e+01 9.990221e+01 lineto -7.242706e+01 1.027022e+02 lineto -7.335172e+01 1.025918e+02 lineto -closepath -gsave -5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor -fill -grestore -newpath -7.335172e+01 1.025918e+02 moveto -7.335172e+01 9.979176e+01 lineto -7.242706e+01 9.990221e+01 lineto -7.242706e+01 1.027022e+02 lineto -7.335172e+01 1.025918e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.335172e+01 1.053918e+02 moveto -7.335172e+01 1.025918e+02 lineto -7.242706e+01 1.027022e+02 lineto -7.242706e+01 1.055022e+02 lineto -7.335172e+01 1.053918e+02 lineto -closepath -gsave -5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor -fill -grestore -newpath -7.335172e+01 1.053918e+02 moveto -7.335172e+01 1.025918e+02 lineto -7.242706e+01 1.027022e+02 lineto -7.242706e+01 1.055022e+02 lineto -7.335172e+01 1.053918e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.335172e+01 1.081918e+02 moveto -7.335172e+01 1.053918e+02 lineto -7.242706e+01 1.055022e+02 lineto -7.242706e+01 1.083022e+02 lineto -7.335172e+01 1.081918e+02 lineto -closepath -gsave -5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor -fill -grestore -newpath -7.335172e+01 1.081918e+02 moveto -7.335172e+01 1.053918e+02 lineto -7.242706e+01 1.055022e+02 lineto -7.242706e+01 1.083022e+02 lineto -7.335172e+01 1.081918e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.335172e+01 1.109918e+02 moveto -7.335172e+01 1.081918e+02 lineto -7.242706e+01 1.083022e+02 lineto -7.242706e+01 1.111022e+02 lineto -7.335172e+01 1.109918e+02 lineto -closepath -gsave -5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor -fill -grestore -newpath -7.335172e+01 1.109918e+02 moveto -7.335172e+01 1.081918e+02 lineto -7.242706e+01 1.083022e+02 lineto -7.242706e+01 1.111022e+02 lineto -7.335172e+01 1.109918e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.335172e+01 1.137918e+02 moveto -7.335172e+01 1.109918e+02 lineto -7.242706e+01 1.111022e+02 lineto -7.242706e+01 1.139022e+02 lineto -7.335172e+01 1.137918e+02 lineto -closepath -gsave -5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor -fill -grestore -newpath -7.335172e+01 1.137918e+02 moveto -7.335172e+01 1.109918e+02 lineto -7.242706e+01 1.111022e+02 lineto -7.242706e+01 1.139022e+02 lineto -7.335172e+01 1.137918e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.335172e+01 1.165918e+02 moveto -7.335172e+01 1.137918e+02 lineto -7.242706e+01 1.139022e+02 lineto -7.242706e+01 1.167022e+02 lineto -7.335172e+01 1.165918e+02 lineto -closepath -gsave -5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor -fill -grestore -newpath -7.335172e+01 1.165918e+02 moveto -7.335172e+01 1.137918e+02 lineto -7.242706e+01 1.139022e+02 lineto -7.242706e+01 1.167022e+02 lineto -7.335172e+01 1.165918e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.242706e+01 9.150221e+01 moveto -7.242706e+01 8.870221e+01 lineto -7.14566e+01 8.879353e+01 lineto -7.14566e+01 9.159353e+01 lineto -7.242706e+01 9.150221e+01 lineto -closepath -gsave -5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor -fill -grestore -newpath -7.242706e+01 9.150221e+01 moveto -7.242706e+01 8.870221e+01 lineto -7.14566e+01 8.879353e+01 lineto -7.14566e+01 9.159353e+01 lineto -7.242706e+01 9.150221e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.242706e+01 9.430221e+01 moveto -7.242706e+01 9.150221e+01 lineto -7.14566e+01 9.159353e+01 lineto -7.14566e+01 9.439353e+01 lineto -7.242706e+01 9.430221e+01 lineto -closepath -gsave -5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor -fill -grestore -newpath -7.242706e+01 9.430221e+01 moveto -7.242706e+01 9.150221e+01 lineto -7.14566e+01 9.159353e+01 lineto -7.14566e+01 9.439353e+01 lineto -7.242706e+01 9.430221e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.242706e+01 9.710221e+01 moveto -7.242706e+01 9.430221e+01 lineto -7.14566e+01 9.439353e+01 lineto -7.14566e+01 9.719353e+01 lineto -7.242706e+01 9.710221e+01 lineto -closepath -gsave -5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor -fill -grestore -newpath -7.242706e+01 9.710221e+01 moveto -7.242706e+01 9.430221e+01 lineto -7.14566e+01 9.439353e+01 lineto -7.14566e+01 9.719353e+01 lineto -7.242706e+01 9.710221e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.242706e+01 9.990221e+01 moveto -7.242706e+01 9.710221e+01 lineto -7.14566e+01 9.719353e+01 lineto -7.14566e+01 9.999353e+01 lineto -7.242706e+01 9.990221e+01 lineto -closepath -gsave -5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor -fill -grestore -newpath -7.242706e+01 9.990221e+01 moveto -7.242706e+01 9.710221e+01 lineto -7.14566e+01 9.719353e+01 lineto -7.14566e+01 9.999353e+01 lineto -7.242706e+01 9.990221e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.242706e+01 1.027022e+02 moveto -7.242706e+01 9.990221e+01 lineto -7.14566e+01 9.999353e+01 lineto -7.14566e+01 1.027935e+02 lineto -7.242706e+01 1.027022e+02 lineto -closepath -gsave -5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor -fill -grestore -newpath -7.242706e+01 1.027022e+02 moveto -7.242706e+01 9.990221e+01 lineto -7.14566e+01 9.999353e+01 lineto -7.14566e+01 1.027935e+02 lineto -7.242706e+01 1.027022e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.242706e+01 1.055022e+02 moveto -7.242706e+01 1.027022e+02 lineto -7.14566e+01 1.027935e+02 lineto -7.14566e+01 1.055935e+02 lineto -7.242706e+01 1.055022e+02 lineto -closepath -gsave -5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor -fill -grestore -newpath -7.242706e+01 1.055022e+02 moveto -7.242706e+01 1.027022e+02 lineto -7.14566e+01 1.027935e+02 lineto -7.14566e+01 1.055935e+02 lineto -7.242706e+01 1.055022e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.242706e+01 1.083022e+02 moveto -7.242706e+01 1.055022e+02 lineto -7.14566e+01 1.055935e+02 lineto -7.14566e+01 1.083935e+02 lineto -7.242706e+01 1.083022e+02 lineto -closepath -gsave -5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor -fill -grestore -newpath -7.242706e+01 1.083022e+02 moveto -7.242706e+01 1.055022e+02 lineto -7.14566e+01 1.055935e+02 lineto -7.14566e+01 1.083935e+02 lineto -7.242706e+01 1.083022e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.242706e+01 1.111022e+02 moveto -7.242706e+01 1.083022e+02 lineto -7.14566e+01 1.083935e+02 lineto -7.14566e+01 1.111935e+02 lineto -7.242706e+01 1.111022e+02 lineto -closepath -gsave -5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor -fill -grestore -newpath -7.242706e+01 1.111022e+02 moveto -7.242706e+01 1.083022e+02 lineto -7.14566e+01 1.083935e+02 lineto -7.14566e+01 1.111935e+02 lineto -7.242706e+01 1.111022e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.242706e+01 1.139022e+02 moveto -7.242706e+01 1.111022e+02 lineto -7.14566e+01 1.111935e+02 lineto -7.14566e+01 1.139935e+02 lineto -7.242706e+01 1.139022e+02 lineto -closepath -gsave -5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor -fill -grestore -newpath -7.242706e+01 1.139022e+02 moveto -7.242706e+01 1.111022e+02 lineto -7.14566e+01 1.111935e+02 lineto -7.14566e+01 1.139935e+02 lineto -7.242706e+01 1.139022e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.242706e+01 1.167022e+02 moveto -7.242706e+01 1.139022e+02 lineto -7.14566e+01 1.139935e+02 lineto -7.14566e+01 1.167935e+02 lineto -7.242706e+01 1.167022e+02 lineto -closepath -gsave -5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor -fill -grestore -newpath -7.242706e+01 1.167022e+02 moveto -7.242706e+01 1.139022e+02 lineto -7.14566e+01 1.139935e+02 lineto -7.14566e+01 1.167935e+02 lineto -7.242706e+01 1.167022e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.14566e+01 9.159353e+01 moveto -7.14566e+01 8.879353e+01 lineto -7.044634e+01 8.886514e+01 lineto -7.044634e+01 9.166514e+01 lineto -7.14566e+01 9.159353e+01 lineto -closepath -gsave -5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor -fill -grestore -newpath -7.14566e+01 9.159353e+01 moveto -7.14566e+01 8.879353e+01 lineto -7.044634e+01 8.886514e+01 lineto -7.044634e+01 9.166514e+01 lineto -7.14566e+01 9.159353e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.14566e+01 9.439353e+01 moveto -7.14566e+01 9.159353e+01 lineto -7.044634e+01 9.166514e+01 lineto -7.044634e+01 9.446514e+01 lineto -7.14566e+01 9.439353e+01 lineto -closepath -gsave -5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor -fill -grestore -newpath -7.14566e+01 9.439353e+01 moveto -7.14566e+01 9.159353e+01 lineto -7.044634e+01 9.166514e+01 lineto -7.044634e+01 9.446514e+01 lineto -7.14566e+01 9.439353e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.14566e+01 9.719353e+01 moveto -7.14566e+01 9.439353e+01 lineto -7.044634e+01 9.446514e+01 lineto -7.044634e+01 9.726514e+01 lineto -7.14566e+01 9.719353e+01 lineto -closepath -gsave -5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor -fill -grestore -newpath -7.14566e+01 9.719353e+01 moveto -7.14566e+01 9.439353e+01 lineto -7.044634e+01 9.446514e+01 lineto -7.044634e+01 9.726514e+01 lineto -7.14566e+01 9.719353e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.14566e+01 9.999353e+01 moveto -7.14566e+01 9.719353e+01 lineto -7.044634e+01 9.726514e+01 lineto -7.044634e+01 1.000651e+02 lineto -7.14566e+01 9.999353e+01 lineto -closepath -gsave -5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor -fill -grestore -newpath -7.14566e+01 9.999353e+01 moveto -7.14566e+01 9.719353e+01 lineto -7.044634e+01 9.726514e+01 lineto -7.044634e+01 1.000651e+02 lineto -7.14566e+01 9.999353e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.14566e+01 1.027935e+02 moveto -7.14566e+01 9.999353e+01 lineto -7.044634e+01 1.000651e+02 lineto -7.044634e+01 1.028651e+02 lineto -7.14566e+01 1.027935e+02 lineto -closepath -gsave -5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor -fill -grestore -newpath -7.14566e+01 1.027935e+02 moveto -7.14566e+01 9.999353e+01 lineto -7.044634e+01 1.000651e+02 lineto -7.044634e+01 1.028651e+02 lineto -7.14566e+01 1.027935e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.14566e+01 1.055935e+02 moveto -7.14566e+01 1.027935e+02 lineto -7.044634e+01 1.028651e+02 lineto -7.044634e+01 1.056651e+02 lineto -7.14566e+01 1.055935e+02 lineto -closepath -gsave -5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor -fill -grestore -newpath -7.14566e+01 1.055935e+02 moveto -7.14566e+01 1.027935e+02 lineto -7.044634e+01 1.028651e+02 lineto -7.044634e+01 1.056651e+02 lineto -7.14566e+01 1.055935e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.14566e+01 1.083935e+02 moveto -7.14566e+01 1.055935e+02 lineto -7.044634e+01 1.056651e+02 lineto -7.044634e+01 1.084651e+02 lineto -7.14566e+01 1.083935e+02 lineto -closepath -gsave -5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor -fill -grestore -newpath -7.14566e+01 1.083935e+02 moveto -7.14566e+01 1.055935e+02 lineto -7.044634e+01 1.056651e+02 lineto -7.044634e+01 1.084651e+02 lineto -7.14566e+01 1.083935e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.14566e+01 1.111935e+02 moveto -7.14566e+01 1.083935e+02 lineto -7.044634e+01 1.084651e+02 lineto -7.044634e+01 1.112651e+02 lineto -7.14566e+01 1.111935e+02 lineto -closepath -gsave -5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor -fill -grestore -newpath -7.14566e+01 1.111935e+02 moveto -7.14566e+01 1.083935e+02 lineto -7.044634e+01 1.084651e+02 lineto -7.044634e+01 1.112651e+02 lineto -7.14566e+01 1.111935e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.14566e+01 1.139935e+02 moveto -7.14566e+01 1.111935e+02 lineto -7.044634e+01 1.112651e+02 lineto -7.044634e+01 1.140651e+02 lineto -7.14566e+01 1.139935e+02 lineto -closepath -gsave -5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor -fill -grestore -newpath -7.14566e+01 1.139935e+02 moveto -7.14566e+01 1.111935e+02 lineto -7.044634e+01 1.112651e+02 lineto -7.044634e+01 1.140651e+02 lineto -7.14566e+01 1.139935e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.14566e+01 1.167935e+02 moveto -7.14566e+01 1.139935e+02 lineto -7.044634e+01 1.140651e+02 lineto -7.044634e+01 1.168651e+02 lineto -7.14566e+01 1.167935e+02 lineto -closepath -gsave -5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor -fill -grestore -newpath -7.14566e+01 1.167935e+02 moveto -7.14566e+01 1.139935e+02 lineto -7.044634e+01 1.140651e+02 lineto -7.044634e+01 1.168651e+02 lineto -7.14566e+01 1.167935e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.044634e+01 9.166514e+01 moveto -7.044634e+01 8.886514e+01 lineto -6.94025e+01 8.891661e+01 lineto -6.94025e+01 9.171661e+01 lineto -7.044634e+01 9.166514e+01 lineto -closepath -gsave -5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor -fill -grestore -newpath -7.044634e+01 9.166514e+01 moveto -7.044634e+01 8.886514e+01 lineto -6.94025e+01 8.891661e+01 lineto -6.94025e+01 9.171661e+01 lineto -7.044634e+01 9.166514e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.044634e+01 9.446514e+01 moveto -7.044634e+01 9.166514e+01 lineto -6.94025e+01 9.171661e+01 lineto -6.94025e+01 9.451661e+01 lineto -7.044634e+01 9.446514e+01 lineto -closepath -gsave -5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor -fill -grestore -newpath -7.044634e+01 9.446514e+01 moveto -7.044634e+01 9.166514e+01 lineto -6.94025e+01 9.171661e+01 lineto -6.94025e+01 9.451661e+01 lineto -7.044634e+01 9.446514e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.044634e+01 9.726514e+01 moveto -7.044634e+01 9.446514e+01 lineto -6.94025e+01 9.451661e+01 lineto -6.94025e+01 9.731661e+01 lineto -7.044634e+01 9.726514e+01 lineto -closepath -gsave -5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor -fill -grestore -newpath -7.044634e+01 9.726514e+01 moveto -7.044634e+01 9.446514e+01 lineto -6.94025e+01 9.451661e+01 lineto -6.94025e+01 9.731661e+01 lineto -7.044634e+01 9.726514e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.044634e+01 1.000651e+02 moveto -7.044634e+01 9.726514e+01 lineto -6.94025e+01 9.731661e+01 lineto -6.94025e+01 1.001166e+02 lineto -7.044634e+01 1.000651e+02 lineto -closepath -gsave -5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor -fill -grestore -newpath -7.044634e+01 1.000651e+02 moveto -7.044634e+01 9.726514e+01 lineto -6.94025e+01 9.731661e+01 lineto -6.94025e+01 1.001166e+02 lineto -7.044634e+01 1.000651e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.044634e+01 1.028651e+02 moveto -7.044634e+01 1.000651e+02 lineto -6.94025e+01 1.001166e+02 lineto -6.94025e+01 1.029166e+02 lineto -7.044634e+01 1.028651e+02 lineto -closepath -gsave -5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor -fill -grestore -newpath -7.044634e+01 1.028651e+02 moveto -7.044634e+01 1.000651e+02 lineto -6.94025e+01 1.001166e+02 lineto -6.94025e+01 1.029166e+02 lineto -7.044634e+01 1.028651e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.044634e+01 1.056651e+02 moveto -7.044634e+01 1.028651e+02 lineto -6.94025e+01 1.029166e+02 lineto -6.94025e+01 1.057166e+02 lineto -7.044634e+01 1.056651e+02 lineto -closepath -gsave -5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor -fill -grestore -newpath -7.044634e+01 1.056651e+02 moveto -7.044634e+01 1.028651e+02 lineto -6.94025e+01 1.029166e+02 lineto -6.94025e+01 1.057166e+02 lineto -7.044634e+01 1.056651e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.044634e+01 1.084651e+02 moveto -7.044634e+01 1.056651e+02 lineto -6.94025e+01 1.057166e+02 lineto -6.94025e+01 1.085166e+02 lineto -7.044634e+01 1.084651e+02 lineto -closepath -gsave -5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor -fill -grestore -newpath -7.044634e+01 1.084651e+02 moveto -7.044634e+01 1.056651e+02 lineto -6.94025e+01 1.057166e+02 lineto -6.94025e+01 1.085166e+02 lineto -7.044634e+01 1.084651e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.044634e+01 1.112651e+02 moveto -7.044634e+01 1.084651e+02 lineto -6.94025e+01 1.085166e+02 lineto -6.94025e+01 1.113166e+02 lineto -7.044634e+01 1.112651e+02 lineto -closepath -gsave -5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor -fill -grestore -newpath -7.044634e+01 1.112651e+02 moveto -7.044634e+01 1.084651e+02 lineto -6.94025e+01 1.085166e+02 lineto -6.94025e+01 1.113166e+02 lineto -7.044634e+01 1.112651e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.044634e+01 1.140651e+02 moveto -7.044634e+01 1.112651e+02 lineto -6.94025e+01 1.113166e+02 lineto -6.94025e+01 1.141166e+02 lineto -7.044634e+01 1.140651e+02 lineto -closepath -gsave -5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor -fill -grestore -newpath -7.044634e+01 1.140651e+02 moveto -7.044634e+01 1.112651e+02 lineto -6.94025e+01 1.113166e+02 lineto -6.94025e+01 1.141166e+02 lineto -7.044634e+01 1.140651e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.044634e+01 1.168651e+02 moveto -7.044634e+01 1.140651e+02 lineto -6.94025e+01 1.141166e+02 lineto -6.94025e+01 1.169166e+02 lineto -7.044634e+01 1.168651e+02 lineto -closepath -gsave -5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor -fill -grestore -newpath -7.044634e+01 1.168651e+02 moveto -7.044634e+01 1.140651e+02 lineto -6.94025e+01 1.141166e+02 lineto -6.94025e+01 1.169166e+02 lineto -7.044634e+01 1.168651e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.94025e+01 9.171661e+01 moveto -6.94025e+01 8.891661e+01 lineto -6.833152e+01 8.894762e+01 lineto -6.833152e+01 9.174762e+01 lineto -6.94025e+01 9.171661e+01 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -6.94025e+01 9.171661e+01 moveto -6.94025e+01 8.891661e+01 lineto -6.833152e+01 8.894762e+01 lineto -6.833152e+01 9.174762e+01 lineto -6.94025e+01 9.171661e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.94025e+01 9.451661e+01 moveto -6.94025e+01 9.171661e+01 lineto -6.833152e+01 9.174762e+01 lineto -6.833152e+01 9.454762e+01 lineto -6.94025e+01 9.451661e+01 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -6.94025e+01 9.451661e+01 moveto -6.94025e+01 9.171661e+01 lineto -6.833152e+01 9.174762e+01 lineto -6.833152e+01 9.454762e+01 lineto -6.94025e+01 9.451661e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.94025e+01 9.731661e+01 moveto -6.94025e+01 9.451661e+01 lineto -6.833152e+01 9.454762e+01 lineto -6.833152e+01 9.734762e+01 lineto -6.94025e+01 9.731661e+01 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -6.94025e+01 9.731661e+01 moveto -6.94025e+01 9.451661e+01 lineto -6.833152e+01 9.454762e+01 lineto -6.833152e+01 9.734762e+01 lineto -6.94025e+01 9.731661e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.94025e+01 1.001166e+02 moveto -6.94025e+01 9.731661e+01 lineto -6.833152e+01 9.734762e+01 lineto -6.833152e+01 1.001476e+02 lineto -6.94025e+01 1.001166e+02 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -6.94025e+01 1.001166e+02 moveto -6.94025e+01 9.731661e+01 lineto -6.833152e+01 9.734762e+01 lineto -6.833152e+01 1.001476e+02 lineto -6.94025e+01 1.001166e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.94025e+01 1.029166e+02 moveto -6.94025e+01 1.001166e+02 lineto -6.833152e+01 1.001476e+02 lineto -6.833152e+01 1.029476e+02 lineto -6.94025e+01 1.029166e+02 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -6.94025e+01 1.029166e+02 moveto -6.94025e+01 1.001166e+02 lineto -6.833152e+01 1.001476e+02 lineto -6.833152e+01 1.029476e+02 lineto -6.94025e+01 1.029166e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.94025e+01 1.057166e+02 moveto -6.94025e+01 1.029166e+02 lineto -6.833152e+01 1.029476e+02 lineto -6.833152e+01 1.057476e+02 lineto -6.94025e+01 1.057166e+02 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -6.94025e+01 1.057166e+02 moveto -6.94025e+01 1.029166e+02 lineto -6.833152e+01 1.029476e+02 lineto -6.833152e+01 1.057476e+02 lineto -6.94025e+01 1.057166e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.94025e+01 1.085166e+02 moveto -6.94025e+01 1.057166e+02 lineto -6.833152e+01 1.057476e+02 lineto -6.833152e+01 1.085476e+02 lineto -6.94025e+01 1.085166e+02 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -6.94025e+01 1.085166e+02 moveto -6.94025e+01 1.057166e+02 lineto -6.833152e+01 1.057476e+02 lineto -6.833152e+01 1.085476e+02 lineto -6.94025e+01 1.085166e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.94025e+01 1.113166e+02 moveto -6.94025e+01 1.085166e+02 lineto -6.833152e+01 1.085476e+02 lineto -6.833152e+01 1.113476e+02 lineto -6.94025e+01 1.113166e+02 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -6.94025e+01 1.113166e+02 moveto -6.94025e+01 1.085166e+02 lineto -6.833152e+01 1.085476e+02 lineto -6.833152e+01 1.113476e+02 lineto -6.94025e+01 1.113166e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.94025e+01 1.141166e+02 moveto -6.94025e+01 1.113166e+02 lineto -6.833152e+01 1.113476e+02 lineto -6.833152e+01 1.141476e+02 lineto -6.94025e+01 1.141166e+02 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -6.94025e+01 1.141166e+02 moveto -6.94025e+01 1.113166e+02 lineto -6.833152e+01 1.113476e+02 lineto -6.833152e+01 1.141476e+02 lineto -6.94025e+01 1.141166e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.94025e+01 1.169166e+02 moveto -6.94025e+01 1.141166e+02 lineto -6.833152e+01 1.141476e+02 lineto -6.833152e+01 1.169476e+02 lineto -6.94025e+01 1.169166e+02 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -6.94025e+01 1.169166e+02 moveto -6.94025e+01 1.141166e+02 lineto -6.833152e+01 1.141476e+02 lineto -6.833152e+01 1.169476e+02 lineto -6.94025e+01 1.169166e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.833152e+01 9.174762e+01 moveto -6.833152e+01 8.894762e+01 lineto -6.724e+01 8.895798e+01 lineto -6.724e+01 9.175798e+01 lineto -6.833152e+01 9.174762e+01 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -6.833152e+01 9.174762e+01 moveto -6.833152e+01 8.894762e+01 lineto -6.724e+01 8.895798e+01 lineto -6.724e+01 9.175798e+01 lineto -6.833152e+01 9.174762e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.833152e+01 9.454762e+01 moveto -6.833152e+01 9.174762e+01 lineto -6.724e+01 9.175798e+01 lineto -6.724e+01 9.455798e+01 lineto -6.833152e+01 9.454762e+01 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -6.833152e+01 9.454762e+01 moveto -6.833152e+01 9.174762e+01 lineto -6.724e+01 9.175798e+01 lineto -6.724e+01 9.455798e+01 lineto -6.833152e+01 9.454762e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.833152e+01 9.734762e+01 moveto -6.833152e+01 9.454762e+01 lineto -6.724e+01 9.455798e+01 lineto -6.724e+01 9.735798e+01 lineto -6.833152e+01 9.734762e+01 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -6.833152e+01 9.734762e+01 moveto -6.833152e+01 9.454762e+01 lineto -6.724e+01 9.455798e+01 lineto -6.724e+01 9.735798e+01 lineto -6.833152e+01 9.734762e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.833152e+01 1.001476e+02 moveto -6.833152e+01 9.734762e+01 lineto -6.724e+01 9.735798e+01 lineto -6.724e+01 1.00158e+02 lineto -6.833152e+01 1.001476e+02 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -6.833152e+01 1.001476e+02 moveto -6.833152e+01 9.734762e+01 lineto -6.724e+01 9.735798e+01 lineto -6.724e+01 1.00158e+02 lineto -6.833152e+01 1.001476e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.833152e+01 1.029476e+02 moveto -6.833152e+01 1.001476e+02 lineto -6.724e+01 1.00158e+02 lineto -6.724e+01 1.02958e+02 lineto -6.833152e+01 1.029476e+02 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -6.833152e+01 1.029476e+02 moveto -6.833152e+01 1.001476e+02 lineto -6.724e+01 1.00158e+02 lineto -6.724e+01 1.02958e+02 lineto -6.833152e+01 1.029476e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.833152e+01 1.057476e+02 moveto -6.833152e+01 1.029476e+02 lineto -6.724e+01 1.02958e+02 lineto -6.724e+01 1.05758e+02 lineto -6.833152e+01 1.057476e+02 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -6.833152e+01 1.057476e+02 moveto -6.833152e+01 1.029476e+02 lineto -6.724e+01 1.02958e+02 lineto -6.724e+01 1.05758e+02 lineto -6.833152e+01 1.057476e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.833152e+01 1.085476e+02 moveto -6.833152e+01 1.057476e+02 lineto -6.724e+01 1.05758e+02 lineto -6.724e+01 1.08558e+02 lineto -6.833152e+01 1.085476e+02 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -6.833152e+01 1.085476e+02 moveto -6.833152e+01 1.057476e+02 lineto -6.724e+01 1.05758e+02 lineto -6.724e+01 1.08558e+02 lineto -6.833152e+01 1.085476e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.833152e+01 1.113476e+02 moveto -6.833152e+01 1.085476e+02 lineto -6.724e+01 1.08558e+02 lineto -6.724e+01 1.11358e+02 lineto -6.833152e+01 1.113476e+02 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -6.833152e+01 1.113476e+02 moveto -6.833152e+01 1.085476e+02 lineto -6.724e+01 1.08558e+02 lineto -6.724e+01 1.11358e+02 lineto -6.833152e+01 1.113476e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.833152e+01 1.141476e+02 moveto -6.833152e+01 1.113476e+02 lineto -6.724e+01 1.11358e+02 lineto -6.724e+01 1.14158e+02 lineto -6.833152e+01 1.141476e+02 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -6.833152e+01 1.141476e+02 moveto -6.833152e+01 1.113476e+02 lineto -6.724e+01 1.11358e+02 lineto -6.724e+01 1.14158e+02 lineto -6.833152e+01 1.141476e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.833152e+01 1.169476e+02 moveto -6.833152e+01 1.141476e+02 lineto -6.724e+01 1.14158e+02 lineto -6.724e+01 1.16958e+02 lineto -6.833152e+01 1.169476e+02 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -6.833152e+01 1.169476e+02 moveto -6.833152e+01 1.141476e+02 lineto -6.724e+01 1.14158e+02 lineto -6.724e+01 1.16958e+02 lineto -6.833152e+01 1.169476e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.724e+01 9.175798e+01 moveto -6.724e+01 8.895798e+01 lineto -6.613467e+01 8.894762e+01 lineto -6.613467e+01 9.174762e+01 lineto -6.724e+01 9.175798e+01 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -6.724e+01 9.175798e+01 moveto -6.724e+01 8.895798e+01 lineto -6.613467e+01 8.894762e+01 lineto -6.613467e+01 9.174762e+01 lineto -6.724e+01 9.175798e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.724e+01 9.455798e+01 moveto -6.724e+01 9.175798e+01 lineto -6.613467e+01 9.174762e+01 lineto -6.613467e+01 9.454762e+01 lineto -6.724e+01 9.455798e+01 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -6.724e+01 9.455798e+01 moveto -6.724e+01 9.175798e+01 lineto -6.613467e+01 9.174762e+01 lineto -6.613467e+01 9.454762e+01 lineto -6.724e+01 9.455798e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.724e+01 9.735798e+01 moveto -6.724e+01 9.455798e+01 lineto -6.613467e+01 9.454762e+01 lineto -6.613467e+01 9.734762e+01 lineto -6.724e+01 9.735798e+01 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -6.724e+01 9.735798e+01 moveto -6.724e+01 9.455798e+01 lineto -6.613467e+01 9.454762e+01 lineto -6.613467e+01 9.734762e+01 lineto -6.724e+01 9.735798e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.724e+01 1.00158e+02 moveto -6.724e+01 9.735798e+01 lineto -6.613467e+01 9.734762e+01 lineto -6.613467e+01 1.001476e+02 lineto -6.724e+01 1.00158e+02 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -6.724e+01 1.00158e+02 moveto -6.724e+01 9.735798e+01 lineto -6.613467e+01 9.734762e+01 lineto -6.613467e+01 1.001476e+02 lineto -6.724e+01 1.00158e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.724e+01 1.02958e+02 moveto -6.724e+01 1.00158e+02 lineto -6.613467e+01 1.001476e+02 lineto -6.613467e+01 1.029476e+02 lineto -6.724e+01 1.02958e+02 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -6.724e+01 1.02958e+02 moveto -6.724e+01 1.00158e+02 lineto -6.613467e+01 1.001476e+02 lineto -6.613467e+01 1.029476e+02 lineto -6.724e+01 1.02958e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.724e+01 1.05758e+02 moveto -6.724e+01 1.02958e+02 lineto -6.613467e+01 1.029476e+02 lineto -6.613467e+01 1.057476e+02 lineto -6.724e+01 1.05758e+02 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -6.724e+01 1.05758e+02 moveto -6.724e+01 1.02958e+02 lineto -6.613467e+01 1.029476e+02 lineto -6.613467e+01 1.057476e+02 lineto -6.724e+01 1.05758e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.724e+01 1.08558e+02 moveto -6.724e+01 1.05758e+02 lineto -6.613467e+01 1.057476e+02 lineto -6.613467e+01 1.085476e+02 lineto -6.724e+01 1.08558e+02 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -6.724e+01 1.08558e+02 moveto -6.724e+01 1.05758e+02 lineto -6.613467e+01 1.057476e+02 lineto -6.613467e+01 1.085476e+02 lineto -6.724e+01 1.08558e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.724e+01 1.11358e+02 moveto -6.724e+01 1.08558e+02 lineto -6.613467e+01 1.085476e+02 lineto -6.613467e+01 1.113476e+02 lineto -6.724e+01 1.11358e+02 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -6.724e+01 1.11358e+02 moveto -6.724e+01 1.08558e+02 lineto -6.613467e+01 1.085476e+02 lineto -6.613467e+01 1.113476e+02 lineto -6.724e+01 1.11358e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.724e+01 1.14158e+02 moveto -6.724e+01 1.11358e+02 lineto -6.613467e+01 1.113476e+02 lineto -6.613467e+01 1.141476e+02 lineto -6.724e+01 1.14158e+02 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -6.724e+01 1.14158e+02 moveto -6.724e+01 1.11358e+02 lineto -6.613467e+01 1.113476e+02 lineto -6.613467e+01 1.141476e+02 lineto -6.724e+01 1.14158e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.724e+01 1.16958e+02 moveto -6.724e+01 1.14158e+02 lineto -6.613467e+01 1.141476e+02 lineto -6.613467e+01 1.169476e+02 lineto -6.724e+01 1.16958e+02 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -6.724e+01 1.16958e+02 moveto -6.724e+01 1.14158e+02 lineto -6.613467e+01 1.141476e+02 lineto -6.613467e+01 1.169476e+02 lineto -6.724e+01 1.16958e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.613467e+01 9.174762e+01 moveto -6.613467e+01 8.894762e+01 lineto -6.502234e+01 8.891661e+01 lineto -6.502234e+01 9.171661e+01 lineto -6.613467e+01 9.174762e+01 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -6.613467e+01 9.174762e+01 moveto -6.613467e+01 8.894762e+01 lineto -6.502234e+01 8.891661e+01 lineto -6.502234e+01 9.171661e+01 lineto -6.613467e+01 9.174762e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.613467e+01 9.454762e+01 moveto -6.613467e+01 9.174762e+01 lineto -6.502234e+01 9.171661e+01 lineto -6.502234e+01 9.451661e+01 lineto -6.613467e+01 9.454762e+01 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -6.613467e+01 9.454762e+01 moveto -6.613467e+01 9.174762e+01 lineto -6.502234e+01 9.171661e+01 lineto -6.502234e+01 9.451661e+01 lineto -6.613467e+01 9.454762e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.613467e+01 9.734762e+01 moveto -6.613467e+01 9.454762e+01 lineto -6.502234e+01 9.451661e+01 lineto -6.502234e+01 9.731661e+01 lineto -6.613467e+01 9.734762e+01 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -6.613467e+01 9.734762e+01 moveto -6.613467e+01 9.454762e+01 lineto -6.502234e+01 9.451661e+01 lineto -6.502234e+01 9.731661e+01 lineto -6.613467e+01 9.734762e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.613467e+01 1.001476e+02 moveto -6.613467e+01 9.734762e+01 lineto -6.502234e+01 9.731661e+01 lineto -6.502234e+01 1.001166e+02 lineto -6.613467e+01 1.001476e+02 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -6.613467e+01 1.001476e+02 moveto -6.613467e+01 9.734762e+01 lineto -6.502234e+01 9.731661e+01 lineto -6.502234e+01 1.001166e+02 lineto -6.613467e+01 1.001476e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.613467e+01 1.029476e+02 moveto -6.613467e+01 1.001476e+02 lineto -6.502234e+01 1.001166e+02 lineto -6.502234e+01 1.029166e+02 lineto -6.613467e+01 1.029476e+02 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -6.613467e+01 1.029476e+02 moveto -6.613467e+01 1.001476e+02 lineto -6.502234e+01 1.001166e+02 lineto -6.502234e+01 1.029166e+02 lineto -6.613467e+01 1.029476e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.613467e+01 1.057476e+02 moveto -6.613467e+01 1.029476e+02 lineto -6.502234e+01 1.029166e+02 lineto -6.502234e+01 1.057166e+02 lineto -6.613467e+01 1.057476e+02 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -6.613467e+01 1.057476e+02 moveto -6.613467e+01 1.029476e+02 lineto -6.502234e+01 1.029166e+02 lineto -6.502234e+01 1.057166e+02 lineto -6.613467e+01 1.057476e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.613467e+01 1.085476e+02 moveto -6.613467e+01 1.057476e+02 lineto -6.502234e+01 1.057166e+02 lineto -6.502234e+01 1.085166e+02 lineto -6.613467e+01 1.085476e+02 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -6.613467e+01 1.085476e+02 moveto -6.613467e+01 1.057476e+02 lineto -6.502234e+01 1.057166e+02 lineto -6.502234e+01 1.085166e+02 lineto -6.613467e+01 1.085476e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.613467e+01 1.113476e+02 moveto -6.613467e+01 1.085476e+02 lineto -6.502234e+01 1.085166e+02 lineto -6.502234e+01 1.113166e+02 lineto -6.613467e+01 1.113476e+02 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -6.613467e+01 1.113476e+02 moveto -6.613467e+01 1.085476e+02 lineto -6.502234e+01 1.085166e+02 lineto -6.502234e+01 1.113166e+02 lineto -6.613467e+01 1.113476e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.613467e+01 1.141476e+02 moveto -6.613467e+01 1.113476e+02 lineto -6.502234e+01 1.113166e+02 lineto -6.502234e+01 1.141166e+02 lineto -6.613467e+01 1.141476e+02 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -6.613467e+01 1.141476e+02 moveto -6.613467e+01 1.113476e+02 lineto -6.502234e+01 1.113166e+02 lineto -6.502234e+01 1.141166e+02 lineto -6.613467e+01 1.141476e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.613467e+01 1.169476e+02 moveto -6.613467e+01 1.141476e+02 lineto -6.502234e+01 1.141166e+02 lineto -6.502234e+01 1.169166e+02 lineto -6.613467e+01 1.169476e+02 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -6.613467e+01 1.169476e+02 moveto -6.613467e+01 1.141476e+02 lineto -6.502234e+01 1.141166e+02 lineto -6.502234e+01 1.169166e+02 lineto -6.613467e+01 1.169476e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.502234e+01 9.171661e+01 moveto -6.502234e+01 8.891661e+01 lineto -6.390987e+01 8.886514e+01 lineto -6.390987e+01 9.166514e+01 lineto -6.502234e+01 9.171661e+01 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -6.502234e+01 9.171661e+01 moveto -6.502234e+01 8.891661e+01 lineto -6.390987e+01 8.886514e+01 lineto -6.390987e+01 9.166514e+01 lineto -6.502234e+01 9.171661e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.502234e+01 9.451661e+01 moveto -6.502234e+01 9.171661e+01 lineto -6.390987e+01 9.166514e+01 lineto -6.390987e+01 9.446514e+01 lineto -6.502234e+01 9.451661e+01 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -6.502234e+01 9.451661e+01 moveto -6.502234e+01 9.171661e+01 lineto -6.390987e+01 9.166514e+01 lineto -6.390987e+01 9.446514e+01 lineto -6.502234e+01 9.451661e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.502234e+01 9.731661e+01 moveto -6.502234e+01 9.451661e+01 lineto -6.390987e+01 9.446514e+01 lineto -6.390987e+01 9.726514e+01 lineto -6.502234e+01 9.731661e+01 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -6.502234e+01 9.731661e+01 moveto -6.502234e+01 9.451661e+01 lineto -6.390987e+01 9.446514e+01 lineto -6.390987e+01 9.726514e+01 lineto -6.502234e+01 9.731661e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.502234e+01 1.001166e+02 moveto -6.502234e+01 9.731661e+01 lineto -6.390987e+01 9.726514e+01 lineto -6.390987e+01 1.000651e+02 lineto -6.502234e+01 1.001166e+02 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -6.502234e+01 1.001166e+02 moveto -6.502234e+01 9.731661e+01 lineto -6.390987e+01 9.726514e+01 lineto -6.390987e+01 1.000651e+02 lineto -6.502234e+01 1.001166e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.502234e+01 1.029166e+02 moveto -6.502234e+01 1.001166e+02 lineto -6.390987e+01 1.000651e+02 lineto -6.390987e+01 1.028651e+02 lineto -6.502234e+01 1.029166e+02 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -6.502234e+01 1.029166e+02 moveto -6.502234e+01 1.001166e+02 lineto -6.390987e+01 1.000651e+02 lineto -6.390987e+01 1.028651e+02 lineto -6.502234e+01 1.029166e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.502234e+01 1.057166e+02 moveto -6.502234e+01 1.029166e+02 lineto -6.390987e+01 1.028651e+02 lineto -6.390987e+01 1.056651e+02 lineto -6.502234e+01 1.057166e+02 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -6.502234e+01 1.057166e+02 moveto -6.502234e+01 1.029166e+02 lineto -6.390987e+01 1.028651e+02 lineto -6.390987e+01 1.056651e+02 lineto -6.502234e+01 1.057166e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.502234e+01 1.085166e+02 moveto -6.502234e+01 1.057166e+02 lineto -6.390987e+01 1.056651e+02 lineto -6.390987e+01 1.084651e+02 lineto -6.502234e+01 1.085166e+02 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -6.502234e+01 1.085166e+02 moveto -6.502234e+01 1.057166e+02 lineto -6.390987e+01 1.056651e+02 lineto -6.390987e+01 1.084651e+02 lineto -6.502234e+01 1.085166e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.502234e+01 1.113166e+02 moveto -6.502234e+01 1.085166e+02 lineto -6.390987e+01 1.084651e+02 lineto -6.390987e+01 1.112651e+02 lineto -6.502234e+01 1.113166e+02 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -6.502234e+01 1.113166e+02 moveto -6.502234e+01 1.085166e+02 lineto -6.390987e+01 1.084651e+02 lineto -6.390987e+01 1.112651e+02 lineto -6.502234e+01 1.113166e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.502234e+01 1.141166e+02 moveto -6.502234e+01 1.113166e+02 lineto -6.390987e+01 1.112651e+02 lineto -6.390987e+01 1.140651e+02 lineto -6.502234e+01 1.141166e+02 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -6.502234e+01 1.141166e+02 moveto -6.502234e+01 1.113166e+02 lineto -6.390987e+01 1.112651e+02 lineto -6.390987e+01 1.140651e+02 lineto -6.502234e+01 1.141166e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.502234e+01 1.169166e+02 moveto -6.502234e+01 1.141166e+02 lineto -6.390987e+01 1.140651e+02 lineto -6.390987e+01 1.168651e+02 lineto -6.502234e+01 1.169166e+02 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -6.502234e+01 1.169166e+02 moveto -6.502234e+01 1.141166e+02 lineto -6.390987e+01 1.140651e+02 lineto -6.390987e+01 1.168651e+02 lineto -6.502234e+01 1.169166e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.390987e+01 9.166514e+01 moveto -6.390987e+01 8.886514e+01 lineto -6.280413e+01 8.879353e+01 lineto -6.280413e+01 9.159353e+01 lineto -6.390987e+01 9.166514e+01 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -6.390987e+01 9.166514e+01 moveto -6.390987e+01 8.886514e+01 lineto -6.280413e+01 8.879353e+01 lineto -6.280413e+01 9.159353e+01 lineto -6.390987e+01 9.166514e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.390987e+01 9.446514e+01 moveto -6.390987e+01 9.166514e+01 lineto -6.280413e+01 9.159353e+01 lineto -6.280413e+01 9.439353e+01 lineto -6.390987e+01 9.446514e+01 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -6.390987e+01 9.446514e+01 moveto -6.390987e+01 9.166514e+01 lineto -6.280413e+01 9.159353e+01 lineto -6.280413e+01 9.439353e+01 lineto -6.390987e+01 9.446514e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.390987e+01 9.726514e+01 moveto -6.390987e+01 9.446514e+01 lineto -6.280413e+01 9.439353e+01 lineto -6.280413e+01 9.719353e+01 lineto -6.390987e+01 9.726514e+01 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -6.390987e+01 9.726514e+01 moveto -6.390987e+01 9.446514e+01 lineto -6.280413e+01 9.439353e+01 lineto -6.280413e+01 9.719353e+01 lineto -6.390987e+01 9.726514e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.390987e+01 1.000651e+02 moveto -6.390987e+01 9.726514e+01 lineto -6.280413e+01 9.719353e+01 lineto -6.280413e+01 9.999353e+01 lineto -6.390987e+01 1.000651e+02 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -6.390987e+01 1.000651e+02 moveto -6.390987e+01 9.726514e+01 lineto -6.280413e+01 9.719353e+01 lineto -6.280413e+01 9.999353e+01 lineto -6.390987e+01 1.000651e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.390987e+01 1.028651e+02 moveto -6.390987e+01 1.000651e+02 lineto -6.280413e+01 9.999353e+01 lineto -6.280413e+01 1.027935e+02 lineto -6.390987e+01 1.028651e+02 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -6.390987e+01 1.028651e+02 moveto -6.390987e+01 1.000651e+02 lineto -6.280413e+01 9.999353e+01 lineto -6.280413e+01 1.027935e+02 lineto -6.390987e+01 1.028651e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.390987e+01 1.056651e+02 moveto -6.390987e+01 1.028651e+02 lineto -6.280413e+01 1.027935e+02 lineto -6.280413e+01 1.055935e+02 lineto -6.390987e+01 1.056651e+02 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -6.390987e+01 1.056651e+02 moveto -6.390987e+01 1.028651e+02 lineto -6.280413e+01 1.027935e+02 lineto -6.280413e+01 1.055935e+02 lineto -6.390987e+01 1.056651e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.390987e+01 1.084651e+02 moveto -6.390987e+01 1.056651e+02 lineto -6.280413e+01 1.055935e+02 lineto -6.280413e+01 1.083935e+02 lineto -6.390987e+01 1.084651e+02 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -6.390987e+01 1.084651e+02 moveto -6.390987e+01 1.056651e+02 lineto -6.280413e+01 1.055935e+02 lineto -6.280413e+01 1.083935e+02 lineto -6.390987e+01 1.084651e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.390987e+01 1.112651e+02 moveto -6.390987e+01 1.084651e+02 lineto -6.280413e+01 1.083935e+02 lineto -6.280413e+01 1.111935e+02 lineto -6.390987e+01 1.112651e+02 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -6.390987e+01 1.112651e+02 moveto -6.390987e+01 1.084651e+02 lineto -6.280413e+01 1.083935e+02 lineto -6.280413e+01 1.111935e+02 lineto -6.390987e+01 1.112651e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.390987e+01 1.140651e+02 moveto -6.390987e+01 1.112651e+02 lineto -6.280413e+01 1.111935e+02 lineto -6.280413e+01 1.139935e+02 lineto -6.390987e+01 1.140651e+02 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -6.390987e+01 1.140651e+02 moveto -6.390987e+01 1.112651e+02 lineto -6.280413e+01 1.111935e+02 lineto -6.280413e+01 1.139935e+02 lineto -6.390987e+01 1.140651e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.390987e+01 1.168651e+02 moveto -6.390987e+01 1.140651e+02 lineto -6.280413e+01 1.139935e+02 lineto -6.280413e+01 1.167935e+02 lineto -6.390987e+01 1.168651e+02 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -6.390987e+01 1.168651e+02 moveto -6.390987e+01 1.140651e+02 lineto -6.280413e+01 1.139935e+02 lineto -6.280413e+01 1.167935e+02 lineto -6.390987e+01 1.168651e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.280413e+01 9.159353e+01 moveto -6.280413e+01 8.879353e+01 lineto -6.171192e+01 8.870221e+01 lineto -6.171192e+01 9.150221e+01 lineto -6.280413e+01 9.159353e+01 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -6.280413e+01 9.159353e+01 moveto -6.280413e+01 8.879353e+01 lineto -6.171192e+01 8.870221e+01 lineto -6.171192e+01 9.150221e+01 lineto -6.280413e+01 9.159353e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.280413e+01 9.439353e+01 moveto -6.280413e+01 9.159353e+01 lineto -6.171192e+01 9.150221e+01 lineto -6.171192e+01 9.430221e+01 lineto -6.280413e+01 9.439353e+01 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -6.280413e+01 9.439353e+01 moveto -6.280413e+01 9.159353e+01 lineto -6.171192e+01 9.150221e+01 lineto -6.171192e+01 9.430221e+01 lineto -6.280413e+01 9.439353e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.280413e+01 9.719353e+01 moveto -6.280413e+01 9.439353e+01 lineto -6.171192e+01 9.430221e+01 lineto -6.171192e+01 9.710221e+01 lineto -6.280413e+01 9.719353e+01 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -6.280413e+01 9.719353e+01 moveto -6.280413e+01 9.439353e+01 lineto -6.171192e+01 9.430221e+01 lineto -6.171192e+01 9.710221e+01 lineto -6.280413e+01 9.719353e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.280413e+01 9.999353e+01 moveto -6.280413e+01 9.719353e+01 lineto -6.171192e+01 9.710221e+01 lineto -6.171192e+01 9.990221e+01 lineto -6.280413e+01 9.999353e+01 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -6.280413e+01 9.999353e+01 moveto -6.280413e+01 9.719353e+01 lineto -6.171192e+01 9.710221e+01 lineto -6.171192e+01 9.990221e+01 lineto -6.280413e+01 9.999353e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.280413e+01 1.027935e+02 moveto -6.280413e+01 9.999353e+01 lineto -6.171192e+01 9.990221e+01 lineto -6.171192e+01 1.027022e+02 lineto -6.280413e+01 1.027935e+02 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -6.280413e+01 1.027935e+02 moveto -6.280413e+01 9.999353e+01 lineto -6.171192e+01 9.990221e+01 lineto -6.171192e+01 1.027022e+02 lineto -6.280413e+01 1.027935e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.280413e+01 1.055935e+02 moveto -6.280413e+01 1.027935e+02 lineto -6.171192e+01 1.027022e+02 lineto -6.171192e+01 1.055022e+02 lineto -6.280413e+01 1.055935e+02 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -6.280413e+01 1.055935e+02 moveto -6.280413e+01 1.027935e+02 lineto -6.171192e+01 1.027022e+02 lineto -6.171192e+01 1.055022e+02 lineto -6.280413e+01 1.055935e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.280413e+01 1.083935e+02 moveto -6.280413e+01 1.055935e+02 lineto -6.171192e+01 1.055022e+02 lineto -6.171192e+01 1.083022e+02 lineto -6.280413e+01 1.083935e+02 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -6.280413e+01 1.083935e+02 moveto -6.280413e+01 1.055935e+02 lineto -6.171192e+01 1.055022e+02 lineto -6.171192e+01 1.083022e+02 lineto -6.280413e+01 1.083935e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.280413e+01 1.111935e+02 moveto -6.280413e+01 1.083935e+02 lineto -6.171192e+01 1.083022e+02 lineto -6.171192e+01 1.111022e+02 lineto -6.280413e+01 1.111935e+02 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -6.280413e+01 1.111935e+02 moveto -6.280413e+01 1.083935e+02 lineto -6.171192e+01 1.083022e+02 lineto -6.171192e+01 1.111022e+02 lineto -6.280413e+01 1.111935e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.280413e+01 1.139935e+02 moveto -6.280413e+01 1.111935e+02 lineto -6.171192e+01 1.111022e+02 lineto -6.171192e+01 1.139022e+02 lineto -6.280413e+01 1.139935e+02 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -6.280413e+01 1.139935e+02 moveto -6.280413e+01 1.111935e+02 lineto -6.171192e+01 1.111022e+02 lineto -6.171192e+01 1.139022e+02 lineto -6.280413e+01 1.139935e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.280413e+01 1.167935e+02 moveto -6.280413e+01 1.139935e+02 lineto -6.171192e+01 1.139022e+02 lineto -6.171192e+01 1.167022e+02 lineto -6.280413e+01 1.167935e+02 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -6.280413e+01 1.167935e+02 moveto -6.280413e+01 1.139935e+02 lineto -6.171192e+01 1.139022e+02 lineto -6.171192e+01 1.167022e+02 lineto -6.280413e+01 1.167935e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.171192e+01 9.150221e+01 moveto -6.171192e+01 8.870221e+01 lineto -6.063999e+01 8.859176e+01 lineto -6.063999e+01 9.139176e+01 lineto -6.171192e+01 9.150221e+01 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -6.171192e+01 9.150221e+01 moveto -6.171192e+01 8.870221e+01 lineto -6.063999e+01 8.859176e+01 lineto -6.063999e+01 9.139176e+01 lineto -6.171192e+01 9.150221e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.171192e+01 9.430221e+01 moveto -6.171192e+01 9.150221e+01 lineto -6.063999e+01 9.139176e+01 lineto -6.063999e+01 9.419176e+01 lineto -6.171192e+01 9.430221e+01 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -6.171192e+01 9.430221e+01 moveto -6.171192e+01 9.150221e+01 lineto -6.063999e+01 9.139176e+01 lineto -6.063999e+01 9.419176e+01 lineto -6.171192e+01 9.430221e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.171192e+01 9.710221e+01 moveto -6.171192e+01 9.430221e+01 lineto -6.063999e+01 9.419176e+01 lineto -6.063999e+01 9.699176e+01 lineto -6.171192e+01 9.710221e+01 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -6.171192e+01 9.710221e+01 moveto -6.171192e+01 9.430221e+01 lineto -6.063999e+01 9.419176e+01 lineto -6.063999e+01 9.699176e+01 lineto -6.171192e+01 9.710221e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.171192e+01 9.990221e+01 moveto -6.171192e+01 9.710221e+01 lineto -6.063999e+01 9.699176e+01 lineto -6.063999e+01 9.979176e+01 lineto -6.171192e+01 9.990221e+01 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -6.171192e+01 9.990221e+01 moveto -6.171192e+01 9.710221e+01 lineto -6.063999e+01 9.699176e+01 lineto -6.063999e+01 9.979176e+01 lineto -6.171192e+01 9.990221e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.171192e+01 1.027022e+02 moveto -6.171192e+01 9.990221e+01 lineto -6.063999e+01 9.979176e+01 lineto -6.063999e+01 1.025918e+02 lineto -6.171192e+01 1.027022e+02 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -6.171192e+01 1.027022e+02 moveto -6.171192e+01 9.990221e+01 lineto -6.063999e+01 9.979176e+01 lineto -6.063999e+01 1.025918e+02 lineto -6.171192e+01 1.027022e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.171192e+01 1.055022e+02 moveto -6.171192e+01 1.027022e+02 lineto -6.063999e+01 1.025918e+02 lineto -6.063999e+01 1.053918e+02 lineto -6.171192e+01 1.055022e+02 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -6.171192e+01 1.055022e+02 moveto -6.171192e+01 1.027022e+02 lineto -6.063999e+01 1.025918e+02 lineto -6.063999e+01 1.053918e+02 lineto -6.171192e+01 1.055022e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.171192e+01 1.083022e+02 moveto -6.171192e+01 1.055022e+02 lineto -6.063999e+01 1.053918e+02 lineto -6.063999e+01 1.081918e+02 lineto -6.171192e+01 1.083022e+02 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -6.171192e+01 1.083022e+02 moveto -6.171192e+01 1.055022e+02 lineto -6.063999e+01 1.053918e+02 lineto -6.063999e+01 1.081918e+02 lineto -6.171192e+01 1.083022e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.171192e+01 1.111022e+02 moveto -6.171192e+01 1.083022e+02 lineto -6.063999e+01 1.081918e+02 lineto -6.063999e+01 1.109918e+02 lineto -6.171192e+01 1.111022e+02 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -6.171192e+01 1.111022e+02 moveto -6.171192e+01 1.083022e+02 lineto -6.063999e+01 1.081918e+02 lineto -6.063999e+01 1.109918e+02 lineto -6.171192e+01 1.111022e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.171192e+01 1.139022e+02 moveto -6.171192e+01 1.111022e+02 lineto -6.063999e+01 1.109918e+02 lineto -6.063999e+01 1.137918e+02 lineto -6.171192e+01 1.139022e+02 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -6.171192e+01 1.139022e+02 moveto -6.171192e+01 1.111022e+02 lineto -6.063999e+01 1.109918e+02 lineto -6.063999e+01 1.137918e+02 lineto -6.171192e+01 1.139022e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.171192e+01 1.167022e+02 moveto -6.171192e+01 1.139022e+02 lineto -6.063999e+01 1.137918e+02 lineto -6.063999e+01 1.165918e+02 lineto -6.171192e+01 1.167022e+02 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -6.171192e+01 1.167022e+02 moveto -6.171192e+01 1.139022e+02 lineto -6.063999e+01 1.137918e+02 lineto -6.063999e+01 1.165918e+02 lineto -6.171192e+01 1.167022e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.063999e+01 9.139176e+01 moveto -6.063999e+01 8.859176e+01 lineto -5.959493e+01 8.846285e+01 lineto -5.959493e+01 9.126285e+01 lineto -6.063999e+01 9.139176e+01 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -6.063999e+01 9.139176e+01 moveto -6.063999e+01 8.859176e+01 lineto -5.959493e+01 8.846285e+01 lineto -5.959493e+01 9.126285e+01 lineto -6.063999e+01 9.139176e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.063999e+01 9.419176e+01 moveto -6.063999e+01 9.139176e+01 lineto -5.959493e+01 9.126285e+01 lineto -5.959493e+01 9.406285e+01 lineto -6.063999e+01 9.419176e+01 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -6.063999e+01 9.419176e+01 moveto -6.063999e+01 9.139176e+01 lineto -5.959493e+01 9.126285e+01 lineto -5.959493e+01 9.406285e+01 lineto -6.063999e+01 9.419176e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.063999e+01 9.699176e+01 moveto -6.063999e+01 9.419176e+01 lineto -5.959493e+01 9.406285e+01 lineto -5.959493e+01 9.686285e+01 lineto -6.063999e+01 9.699176e+01 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -6.063999e+01 9.699176e+01 moveto -6.063999e+01 9.419176e+01 lineto -5.959493e+01 9.406285e+01 lineto -5.959493e+01 9.686285e+01 lineto -6.063999e+01 9.699176e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.063999e+01 9.979176e+01 moveto -6.063999e+01 9.699176e+01 lineto -5.959493e+01 9.686285e+01 lineto -5.959493e+01 9.966285e+01 lineto -6.063999e+01 9.979176e+01 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -6.063999e+01 9.979176e+01 moveto -6.063999e+01 9.699176e+01 lineto -5.959493e+01 9.686285e+01 lineto -5.959493e+01 9.966285e+01 lineto -6.063999e+01 9.979176e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.063999e+01 1.025918e+02 moveto -6.063999e+01 9.979176e+01 lineto -5.959493e+01 9.966285e+01 lineto -5.959493e+01 1.024629e+02 lineto -6.063999e+01 1.025918e+02 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -6.063999e+01 1.025918e+02 moveto -6.063999e+01 9.979176e+01 lineto -5.959493e+01 9.966285e+01 lineto -5.959493e+01 1.024629e+02 lineto -6.063999e+01 1.025918e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.063999e+01 1.053918e+02 moveto -6.063999e+01 1.025918e+02 lineto -5.959493e+01 1.024629e+02 lineto -5.959493e+01 1.052629e+02 lineto -6.063999e+01 1.053918e+02 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -6.063999e+01 1.053918e+02 moveto -6.063999e+01 1.025918e+02 lineto -5.959493e+01 1.024629e+02 lineto -5.959493e+01 1.052629e+02 lineto -6.063999e+01 1.053918e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.063999e+01 1.081918e+02 moveto -6.063999e+01 1.053918e+02 lineto -5.959493e+01 1.052629e+02 lineto -5.959493e+01 1.080629e+02 lineto -6.063999e+01 1.081918e+02 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -6.063999e+01 1.081918e+02 moveto -6.063999e+01 1.053918e+02 lineto -5.959493e+01 1.052629e+02 lineto -5.959493e+01 1.080629e+02 lineto -6.063999e+01 1.081918e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.063999e+01 1.109918e+02 moveto -6.063999e+01 1.081918e+02 lineto -5.959493e+01 1.080629e+02 lineto -5.959493e+01 1.108629e+02 lineto -6.063999e+01 1.109918e+02 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -6.063999e+01 1.109918e+02 moveto -6.063999e+01 1.081918e+02 lineto -5.959493e+01 1.080629e+02 lineto -5.959493e+01 1.108629e+02 lineto -6.063999e+01 1.109918e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.063999e+01 1.137918e+02 moveto -6.063999e+01 1.109918e+02 lineto -5.959493e+01 1.108629e+02 lineto -5.959493e+01 1.136629e+02 lineto -6.063999e+01 1.137918e+02 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -6.063999e+01 1.137918e+02 moveto -6.063999e+01 1.109918e+02 lineto -5.959493e+01 1.108629e+02 lineto -5.959493e+01 1.136629e+02 lineto -6.063999e+01 1.137918e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.063999e+01 1.165918e+02 moveto -6.063999e+01 1.137918e+02 lineto -5.959493e+01 1.136629e+02 lineto -5.959493e+01 1.164629e+02 lineto -6.063999e+01 1.165918e+02 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -6.063999e+01 1.165918e+02 moveto -6.063999e+01 1.137918e+02 lineto -5.959493e+01 1.136629e+02 lineto -5.959493e+01 1.164629e+02 lineto -6.063999e+01 1.165918e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.959493e+01 9.126285e+01 moveto -5.959493e+01 8.846285e+01 lineto -5.85832e+01 8.831628e+01 lineto -5.85832e+01 9.111628e+01 lineto -5.959493e+01 9.126285e+01 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -5.959493e+01 9.126285e+01 moveto -5.959493e+01 8.846285e+01 lineto -5.85832e+01 8.831628e+01 lineto -5.85832e+01 9.111628e+01 lineto -5.959493e+01 9.126285e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.959493e+01 9.406285e+01 moveto -5.959493e+01 9.126285e+01 lineto -5.85832e+01 9.111628e+01 lineto -5.85832e+01 9.391628e+01 lineto -5.959493e+01 9.406285e+01 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -5.959493e+01 9.406285e+01 moveto -5.959493e+01 9.126285e+01 lineto -5.85832e+01 9.111628e+01 lineto -5.85832e+01 9.391628e+01 lineto -5.959493e+01 9.406285e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.959493e+01 9.686285e+01 moveto -5.959493e+01 9.406285e+01 lineto -5.85832e+01 9.391628e+01 lineto -5.85832e+01 9.671628e+01 lineto -5.959493e+01 9.686285e+01 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -5.959493e+01 9.686285e+01 moveto -5.959493e+01 9.406285e+01 lineto -5.85832e+01 9.391628e+01 lineto -5.85832e+01 9.671628e+01 lineto -5.959493e+01 9.686285e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.959493e+01 9.966285e+01 moveto -5.959493e+01 9.686285e+01 lineto -5.85832e+01 9.671628e+01 lineto -5.85832e+01 9.951628e+01 lineto -5.959493e+01 9.966285e+01 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -5.959493e+01 9.966285e+01 moveto -5.959493e+01 9.686285e+01 lineto -5.85832e+01 9.671628e+01 lineto -5.85832e+01 9.951628e+01 lineto -5.959493e+01 9.966285e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.959493e+01 1.024629e+02 moveto -5.959493e+01 9.966285e+01 lineto -5.85832e+01 9.951628e+01 lineto -5.85832e+01 1.023163e+02 lineto -5.959493e+01 1.024629e+02 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -5.959493e+01 1.024629e+02 moveto -5.959493e+01 9.966285e+01 lineto -5.85832e+01 9.951628e+01 lineto -5.85832e+01 1.023163e+02 lineto -5.959493e+01 1.024629e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.959493e+01 1.052629e+02 moveto -5.959493e+01 1.024629e+02 lineto -5.85832e+01 1.023163e+02 lineto -5.85832e+01 1.051163e+02 lineto -5.959493e+01 1.052629e+02 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -5.959493e+01 1.052629e+02 moveto -5.959493e+01 1.024629e+02 lineto -5.85832e+01 1.023163e+02 lineto -5.85832e+01 1.051163e+02 lineto -5.959493e+01 1.052629e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.959493e+01 1.080629e+02 moveto -5.959493e+01 1.052629e+02 lineto -5.85832e+01 1.051163e+02 lineto -5.85832e+01 1.079163e+02 lineto -5.959493e+01 1.080629e+02 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -5.959493e+01 1.080629e+02 moveto -5.959493e+01 1.052629e+02 lineto -5.85832e+01 1.051163e+02 lineto -5.85832e+01 1.079163e+02 lineto -5.959493e+01 1.080629e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.959493e+01 1.108629e+02 moveto -5.959493e+01 1.080629e+02 lineto -5.85832e+01 1.079163e+02 lineto -5.85832e+01 1.107163e+02 lineto -5.959493e+01 1.108629e+02 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -5.959493e+01 1.108629e+02 moveto -5.959493e+01 1.080629e+02 lineto -5.85832e+01 1.079163e+02 lineto -5.85832e+01 1.107163e+02 lineto -5.959493e+01 1.108629e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.959493e+01 1.136629e+02 moveto -5.959493e+01 1.108629e+02 lineto -5.85832e+01 1.107163e+02 lineto -5.85832e+01 1.135163e+02 lineto -5.959493e+01 1.136629e+02 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -5.959493e+01 1.136629e+02 moveto -5.959493e+01 1.108629e+02 lineto -5.85832e+01 1.107163e+02 lineto -5.85832e+01 1.135163e+02 lineto -5.959493e+01 1.136629e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.959493e+01 1.164629e+02 moveto -5.959493e+01 1.136629e+02 lineto -5.85832e+01 1.135163e+02 lineto -5.85832e+01 1.163163e+02 lineto -5.959493e+01 1.164629e+02 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -5.959493e+01 1.164629e+02 moveto -5.959493e+01 1.136629e+02 lineto -5.85832e+01 1.135163e+02 lineto -5.85832e+01 1.163163e+02 lineto -5.959493e+01 1.164629e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.85832e+01 9.111628e+01 moveto -5.85832e+01 8.831628e+01 lineto -5.761104e+01 8.815294e+01 lineto -5.761104e+01 9.095294e+01 lineto -5.85832e+01 9.111628e+01 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -5.85832e+01 9.111628e+01 moveto -5.85832e+01 8.831628e+01 lineto -5.761104e+01 8.815294e+01 lineto -5.761104e+01 9.095294e+01 lineto -5.85832e+01 9.111628e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.85832e+01 9.391628e+01 moveto -5.85832e+01 9.111628e+01 lineto -5.761104e+01 9.095294e+01 lineto -5.761104e+01 9.375294e+01 lineto -5.85832e+01 9.391628e+01 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -5.85832e+01 9.391628e+01 moveto -5.85832e+01 9.111628e+01 lineto -5.761104e+01 9.095294e+01 lineto -5.761104e+01 9.375294e+01 lineto -5.85832e+01 9.391628e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.85832e+01 9.671628e+01 moveto -5.85832e+01 9.391628e+01 lineto -5.761104e+01 9.375294e+01 lineto -5.761104e+01 9.655294e+01 lineto -5.85832e+01 9.671628e+01 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -5.85832e+01 9.671628e+01 moveto -5.85832e+01 9.391628e+01 lineto -5.761104e+01 9.375294e+01 lineto -5.761104e+01 9.655294e+01 lineto -5.85832e+01 9.671628e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.85832e+01 9.951628e+01 moveto -5.85832e+01 9.671628e+01 lineto -5.761104e+01 9.655294e+01 lineto -5.761104e+01 9.935294e+01 lineto -5.85832e+01 9.951628e+01 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -5.85832e+01 9.951628e+01 moveto -5.85832e+01 9.671628e+01 lineto -5.761104e+01 9.655294e+01 lineto -5.761104e+01 9.935294e+01 lineto -5.85832e+01 9.951628e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.85832e+01 1.023163e+02 moveto -5.85832e+01 9.951628e+01 lineto -5.761104e+01 9.935294e+01 lineto -5.761104e+01 1.021529e+02 lineto -5.85832e+01 1.023163e+02 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -5.85832e+01 1.023163e+02 moveto -5.85832e+01 9.951628e+01 lineto -5.761104e+01 9.935294e+01 lineto -5.761104e+01 1.021529e+02 lineto -5.85832e+01 1.023163e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.85832e+01 1.051163e+02 moveto -5.85832e+01 1.023163e+02 lineto -5.761104e+01 1.021529e+02 lineto -5.761104e+01 1.049529e+02 lineto -5.85832e+01 1.051163e+02 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -5.85832e+01 1.051163e+02 moveto -5.85832e+01 1.023163e+02 lineto -5.761104e+01 1.021529e+02 lineto -5.761104e+01 1.049529e+02 lineto -5.85832e+01 1.051163e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.85832e+01 1.079163e+02 moveto -5.85832e+01 1.051163e+02 lineto -5.761104e+01 1.049529e+02 lineto -5.761104e+01 1.077529e+02 lineto -5.85832e+01 1.079163e+02 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -5.85832e+01 1.079163e+02 moveto -5.85832e+01 1.051163e+02 lineto -5.761104e+01 1.049529e+02 lineto -5.761104e+01 1.077529e+02 lineto -5.85832e+01 1.079163e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.85832e+01 1.107163e+02 moveto -5.85832e+01 1.079163e+02 lineto -5.761104e+01 1.077529e+02 lineto -5.761104e+01 1.105529e+02 lineto -5.85832e+01 1.107163e+02 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -5.85832e+01 1.107163e+02 moveto -5.85832e+01 1.079163e+02 lineto -5.761104e+01 1.077529e+02 lineto -5.761104e+01 1.105529e+02 lineto -5.85832e+01 1.107163e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.85832e+01 1.135163e+02 moveto -5.85832e+01 1.107163e+02 lineto -5.761104e+01 1.105529e+02 lineto -5.761104e+01 1.133529e+02 lineto -5.85832e+01 1.135163e+02 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -5.85832e+01 1.135163e+02 moveto -5.85832e+01 1.107163e+02 lineto -5.761104e+01 1.105529e+02 lineto -5.761104e+01 1.133529e+02 lineto -5.85832e+01 1.135163e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.85832e+01 1.163163e+02 moveto -5.85832e+01 1.135163e+02 lineto -5.761104e+01 1.133529e+02 lineto -5.761104e+01 1.161529e+02 lineto -5.85832e+01 1.163163e+02 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -5.85832e+01 1.163163e+02 moveto -5.85832e+01 1.135163e+02 lineto -5.761104e+01 1.133529e+02 lineto -5.761104e+01 1.161529e+02 lineto -5.85832e+01 1.163163e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.761104e+01 9.095294e+01 moveto -5.761104e+01 8.815294e+01 lineto -5.668442e+01 8.797386e+01 lineto -5.668442e+01 9.077386e+01 lineto -5.761104e+01 9.095294e+01 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -5.761104e+01 9.095294e+01 moveto -5.761104e+01 8.815294e+01 lineto -5.668442e+01 8.797386e+01 lineto -5.668442e+01 9.077386e+01 lineto -5.761104e+01 9.095294e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.761104e+01 9.375294e+01 moveto -5.761104e+01 9.095294e+01 lineto -5.668442e+01 9.077386e+01 lineto -5.668442e+01 9.357386e+01 lineto -5.761104e+01 9.375294e+01 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -5.761104e+01 9.375294e+01 moveto -5.761104e+01 9.095294e+01 lineto -5.668442e+01 9.077386e+01 lineto -5.668442e+01 9.357386e+01 lineto -5.761104e+01 9.375294e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.761104e+01 9.655294e+01 moveto -5.761104e+01 9.375294e+01 lineto -5.668442e+01 9.357386e+01 lineto -5.668442e+01 9.637386e+01 lineto -5.761104e+01 9.655294e+01 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -5.761104e+01 9.655294e+01 moveto -5.761104e+01 9.375294e+01 lineto -5.668442e+01 9.357386e+01 lineto -5.668442e+01 9.637386e+01 lineto -5.761104e+01 9.655294e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.761104e+01 9.935294e+01 moveto -5.761104e+01 9.655294e+01 lineto -5.668442e+01 9.637386e+01 lineto -5.668442e+01 9.917386e+01 lineto -5.761104e+01 9.935294e+01 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -5.761104e+01 9.935294e+01 moveto -5.761104e+01 9.655294e+01 lineto -5.668442e+01 9.637386e+01 lineto -5.668442e+01 9.917386e+01 lineto -5.761104e+01 9.935294e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.761104e+01 1.021529e+02 moveto -5.761104e+01 9.935294e+01 lineto -5.668442e+01 9.917386e+01 lineto -5.668442e+01 1.019739e+02 lineto -5.761104e+01 1.021529e+02 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -5.761104e+01 1.021529e+02 moveto -5.761104e+01 9.935294e+01 lineto -5.668442e+01 9.917386e+01 lineto -5.668442e+01 1.019739e+02 lineto -5.761104e+01 1.021529e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.761104e+01 1.049529e+02 moveto -5.761104e+01 1.021529e+02 lineto -5.668442e+01 1.019739e+02 lineto -5.668442e+01 1.047739e+02 lineto -5.761104e+01 1.049529e+02 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -5.761104e+01 1.049529e+02 moveto -5.761104e+01 1.021529e+02 lineto -5.668442e+01 1.019739e+02 lineto -5.668442e+01 1.047739e+02 lineto -5.761104e+01 1.049529e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.761104e+01 1.077529e+02 moveto -5.761104e+01 1.049529e+02 lineto -5.668442e+01 1.047739e+02 lineto -5.668442e+01 1.075739e+02 lineto -5.761104e+01 1.077529e+02 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -5.761104e+01 1.077529e+02 moveto -5.761104e+01 1.049529e+02 lineto -5.668442e+01 1.047739e+02 lineto -5.668442e+01 1.075739e+02 lineto -5.761104e+01 1.077529e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.761104e+01 1.105529e+02 moveto -5.761104e+01 1.077529e+02 lineto -5.668442e+01 1.075739e+02 lineto -5.668442e+01 1.103739e+02 lineto -5.761104e+01 1.105529e+02 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -5.761104e+01 1.105529e+02 moveto -5.761104e+01 1.077529e+02 lineto -5.668442e+01 1.075739e+02 lineto -5.668442e+01 1.103739e+02 lineto -5.761104e+01 1.105529e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.761104e+01 1.133529e+02 moveto -5.761104e+01 1.105529e+02 lineto -5.668442e+01 1.103739e+02 lineto -5.668442e+01 1.131739e+02 lineto -5.761104e+01 1.133529e+02 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -5.761104e+01 1.133529e+02 moveto -5.761104e+01 1.105529e+02 lineto -5.668442e+01 1.103739e+02 lineto -5.668442e+01 1.131739e+02 lineto -5.761104e+01 1.133529e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.761104e+01 1.161529e+02 moveto -5.761104e+01 1.133529e+02 lineto -5.668442e+01 1.131739e+02 lineto -5.668442e+01 1.159739e+02 lineto -5.761104e+01 1.161529e+02 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -5.761104e+01 1.161529e+02 moveto -5.761104e+01 1.133529e+02 lineto -5.668442e+01 1.131739e+02 lineto -5.668442e+01 1.159739e+02 lineto -5.761104e+01 1.161529e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.668442e+01 9.077386e+01 moveto -5.668442e+01 8.797386e+01 lineto -5.580908e+01 8.778013e+01 lineto -5.580908e+01 9.058013e+01 lineto -5.668442e+01 9.077386e+01 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -5.668442e+01 9.077386e+01 moveto -5.668442e+01 8.797386e+01 lineto -5.580908e+01 8.778013e+01 lineto -5.580908e+01 9.058013e+01 lineto -5.668442e+01 9.077386e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.668442e+01 9.357386e+01 moveto -5.668442e+01 9.077386e+01 lineto -5.580908e+01 9.058013e+01 lineto -5.580908e+01 9.338013e+01 lineto -5.668442e+01 9.357386e+01 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -5.668442e+01 9.357386e+01 moveto -5.668442e+01 9.077386e+01 lineto -5.580908e+01 9.058013e+01 lineto -5.580908e+01 9.338013e+01 lineto -5.668442e+01 9.357386e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.668442e+01 9.637386e+01 moveto -5.668442e+01 9.357386e+01 lineto -5.580908e+01 9.338013e+01 lineto -5.580908e+01 9.618013e+01 lineto -5.668442e+01 9.637386e+01 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -5.668442e+01 9.637386e+01 moveto -5.668442e+01 9.357386e+01 lineto -5.580908e+01 9.338013e+01 lineto -5.580908e+01 9.618013e+01 lineto -5.668442e+01 9.637386e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.668442e+01 9.917386e+01 moveto -5.668442e+01 9.637386e+01 lineto -5.580908e+01 9.618013e+01 lineto -5.580908e+01 9.898013e+01 lineto -5.668442e+01 9.917386e+01 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -5.668442e+01 9.917386e+01 moveto -5.668442e+01 9.637386e+01 lineto -5.580908e+01 9.618013e+01 lineto -5.580908e+01 9.898013e+01 lineto -5.668442e+01 9.917386e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.668442e+01 1.019739e+02 moveto -5.668442e+01 9.917386e+01 lineto -5.580908e+01 9.898013e+01 lineto -5.580908e+01 1.017801e+02 lineto -5.668442e+01 1.019739e+02 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -5.668442e+01 1.019739e+02 moveto -5.668442e+01 9.917386e+01 lineto -5.580908e+01 9.898013e+01 lineto -5.580908e+01 1.017801e+02 lineto -5.668442e+01 1.019739e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.668442e+01 1.047739e+02 moveto -5.668442e+01 1.019739e+02 lineto -5.580908e+01 1.017801e+02 lineto -5.580908e+01 1.045801e+02 lineto -5.668442e+01 1.047739e+02 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -5.668442e+01 1.047739e+02 moveto -5.668442e+01 1.019739e+02 lineto -5.580908e+01 1.017801e+02 lineto -5.580908e+01 1.045801e+02 lineto -5.668442e+01 1.047739e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.668442e+01 1.075739e+02 moveto -5.668442e+01 1.047739e+02 lineto -5.580908e+01 1.045801e+02 lineto -5.580908e+01 1.073801e+02 lineto -5.668442e+01 1.075739e+02 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -5.668442e+01 1.075739e+02 moveto -5.668442e+01 1.047739e+02 lineto -5.580908e+01 1.045801e+02 lineto -5.580908e+01 1.073801e+02 lineto -5.668442e+01 1.075739e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.668442e+01 1.103739e+02 moveto -5.668442e+01 1.075739e+02 lineto -5.580908e+01 1.073801e+02 lineto -5.580908e+01 1.101801e+02 lineto -5.668442e+01 1.103739e+02 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -5.668442e+01 1.103739e+02 moveto -5.668442e+01 1.075739e+02 lineto -5.580908e+01 1.073801e+02 lineto -5.580908e+01 1.101801e+02 lineto -5.668442e+01 1.103739e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.668442e+01 1.131739e+02 moveto -5.668442e+01 1.103739e+02 lineto -5.580908e+01 1.101801e+02 lineto -5.580908e+01 1.129801e+02 lineto -5.668442e+01 1.131739e+02 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -5.668442e+01 1.131739e+02 moveto -5.668442e+01 1.103739e+02 lineto -5.580908e+01 1.101801e+02 lineto -5.580908e+01 1.129801e+02 lineto -5.668442e+01 1.131739e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.668442e+01 1.159739e+02 moveto -5.668442e+01 1.131739e+02 lineto -5.580908e+01 1.129801e+02 lineto -5.580908e+01 1.157801e+02 lineto -5.668442e+01 1.159739e+02 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -5.668442e+01 1.159739e+02 moveto -5.668442e+01 1.131739e+02 lineto -5.580908e+01 1.129801e+02 lineto -5.580908e+01 1.157801e+02 lineto -5.668442e+01 1.159739e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.580908e+01 9.058013e+01 moveto -5.580908e+01 8.778013e+01 lineto -5.49904e+01 8.757294e+01 lineto -5.49904e+01 9.037294e+01 lineto -5.580908e+01 9.058013e+01 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -5.580908e+01 9.058013e+01 moveto -5.580908e+01 8.778013e+01 lineto -5.49904e+01 8.757294e+01 lineto -5.49904e+01 9.037294e+01 lineto -5.580908e+01 9.058013e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.580908e+01 9.338013e+01 moveto -5.580908e+01 9.058013e+01 lineto -5.49904e+01 9.037294e+01 lineto -5.49904e+01 9.317294e+01 lineto -5.580908e+01 9.338013e+01 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -5.580908e+01 9.338013e+01 moveto -5.580908e+01 9.058013e+01 lineto -5.49904e+01 9.037294e+01 lineto -5.49904e+01 9.317294e+01 lineto -5.580908e+01 9.338013e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.580908e+01 9.618013e+01 moveto -5.580908e+01 9.338013e+01 lineto -5.49904e+01 9.317294e+01 lineto -5.49904e+01 9.597294e+01 lineto -5.580908e+01 9.618013e+01 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -5.580908e+01 9.618013e+01 moveto -5.580908e+01 9.338013e+01 lineto -5.49904e+01 9.317294e+01 lineto -5.49904e+01 9.597294e+01 lineto -5.580908e+01 9.618013e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.580908e+01 9.898013e+01 moveto -5.580908e+01 9.618013e+01 lineto -5.49904e+01 9.597294e+01 lineto -5.49904e+01 9.877294e+01 lineto -5.580908e+01 9.898013e+01 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -5.580908e+01 9.898013e+01 moveto -5.580908e+01 9.618013e+01 lineto -5.49904e+01 9.597294e+01 lineto -5.49904e+01 9.877294e+01 lineto -5.580908e+01 9.898013e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.580908e+01 1.017801e+02 moveto -5.580908e+01 9.898013e+01 lineto -5.49904e+01 9.877294e+01 lineto -5.49904e+01 1.015729e+02 lineto -5.580908e+01 1.017801e+02 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -5.580908e+01 1.017801e+02 moveto -5.580908e+01 9.898013e+01 lineto -5.49904e+01 9.877294e+01 lineto -5.49904e+01 1.015729e+02 lineto -5.580908e+01 1.017801e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.580908e+01 1.045801e+02 moveto -5.580908e+01 1.017801e+02 lineto -5.49904e+01 1.015729e+02 lineto -5.49904e+01 1.043729e+02 lineto -5.580908e+01 1.045801e+02 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -5.580908e+01 1.045801e+02 moveto -5.580908e+01 1.017801e+02 lineto -5.49904e+01 1.015729e+02 lineto -5.49904e+01 1.043729e+02 lineto -5.580908e+01 1.045801e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.580908e+01 1.073801e+02 moveto -5.580908e+01 1.045801e+02 lineto -5.49904e+01 1.043729e+02 lineto -5.49904e+01 1.071729e+02 lineto -5.580908e+01 1.073801e+02 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -5.580908e+01 1.073801e+02 moveto -5.580908e+01 1.045801e+02 lineto -5.49904e+01 1.043729e+02 lineto -5.49904e+01 1.071729e+02 lineto -5.580908e+01 1.073801e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.580908e+01 1.101801e+02 moveto -5.580908e+01 1.073801e+02 lineto -5.49904e+01 1.071729e+02 lineto -5.49904e+01 1.099729e+02 lineto -5.580908e+01 1.101801e+02 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -5.580908e+01 1.101801e+02 moveto -5.580908e+01 1.073801e+02 lineto -5.49904e+01 1.071729e+02 lineto -5.49904e+01 1.099729e+02 lineto -5.580908e+01 1.101801e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.580908e+01 1.129801e+02 moveto -5.580908e+01 1.101801e+02 lineto -5.49904e+01 1.099729e+02 lineto -5.49904e+01 1.127729e+02 lineto -5.580908e+01 1.129801e+02 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -5.580908e+01 1.129801e+02 moveto -5.580908e+01 1.101801e+02 lineto -5.49904e+01 1.099729e+02 lineto -5.49904e+01 1.127729e+02 lineto -5.580908e+01 1.129801e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.580908e+01 1.157801e+02 moveto -5.580908e+01 1.129801e+02 lineto -5.49904e+01 1.127729e+02 lineto -5.49904e+01 1.155729e+02 lineto -5.580908e+01 1.157801e+02 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -5.580908e+01 1.157801e+02 moveto -5.580908e+01 1.129801e+02 lineto -5.49904e+01 1.127729e+02 lineto -5.49904e+01 1.155729e+02 lineto -5.580908e+01 1.157801e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.49904e+01 9.037294e+01 moveto -5.49904e+01 8.757294e+01 lineto -5.423343e+01 8.735357e+01 lineto -5.423343e+01 9.015357e+01 lineto -5.49904e+01 9.037294e+01 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -5.49904e+01 9.037294e+01 moveto -5.49904e+01 8.757294e+01 lineto -5.423343e+01 8.735357e+01 lineto -5.423343e+01 9.015357e+01 lineto -5.49904e+01 9.037294e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.49904e+01 9.317294e+01 moveto -5.49904e+01 9.037294e+01 lineto -5.423343e+01 9.015357e+01 lineto -5.423343e+01 9.295357e+01 lineto -5.49904e+01 9.317294e+01 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -5.49904e+01 9.317294e+01 moveto -5.49904e+01 9.037294e+01 lineto -5.423343e+01 9.015357e+01 lineto -5.423343e+01 9.295357e+01 lineto -5.49904e+01 9.317294e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.49904e+01 9.597294e+01 moveto -5.49904e+01 9.317294e+01 lineto -5.423343e+01 9.295357e+01 lineto -5.423343e+01 9.575357e+01 lineto -5.49904e+01 9.597294e+01 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -5.49904e+01 9.597294e+01 moveto -5.49904e+01 9.317294e+01 lineto -5.423343e+01 9.295357e+01 lineto -5.423343e+01 9.575357e+01 lineto -5.49904e+01 9.597294e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.49904e+01 9.877294e+01 moveto -5.49904e+01 9.597294e+01 lineto -5.423343e+01 9.575357e+01 lineto -5.423343e+01 9.855357e+01 lineto -5.49904e+01 9.877294e+01 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -5.49904e+01 9.877294e+01 moveto -5.49904e+01 9.597294e+01 lineto -5.423343e+01 9.575357e+01 lineto -5.423343e+01 9.855357e+01 lineto -5.49904e+01 9.877294e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.49904e+01 1.015729e+02 moveto -5.49904e+01 9.877294e+01 lineto -5.423343e+01 9.855357e+01 lineto -5.423343e+01 1.013536e+02 lineto -5.49904e+01 1.015729e+02 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -5.49904e+01 1.015729e+02 moveto -5.49904e+01 9.877294e+01 lineto -5.423343e+01 9.855357e+01 lineto -5.423343e+01 1.013536e+02 lineto -5.49904e+01 1.015729e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.49904e+01 1.043729e+02 moveto -5.49904e+01 1.015729e+02 lineto -5.423343e+01 1.013536e+02 lineto -5.423343e+01 1.041536e+02 lineto -5.49904e+01 1.043729e+02 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -5.49904e+01 1.043729e+02 moveto -5.49904e+01 1.015729e+02 lineto -5.423343e+01 1.013536e+02 lineto -5.423343e+01 1.041536e+02 lineto -5.49904e+01 1.043729e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.49904e+01 1.071729e+02 moveto -5.49904e+01 1.043729e+02 lineto -5.423343e+01 1.041536e+02 lineto -5.423343e+01 1.069536e+02 lineto -5.49904e+01 1.071729e+02 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -5.49904e+01 1.071729e+02 moveto -5.49904e+01 1.043729e+02 lineto -5.423343e+01 1.041536e+02 lineto -5.423343e+01 1.069536e+02 lineto -5.49904e+01 1.071729e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.49904e+01 1.099729e+02 moveto -5.49904e+01 1.071729e+02 lineto -5.423343e+01 1.069536e+02 lineto -5.423343e+01 1.097536e+02 lineto -5.49904e+01 1.099729e+02 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -5.49904e+01 1.099729e+02 moveto -5.49904e+01 1.071729e+02 lineto -5.423343e+01 1.069536e+02 lineto -5.423343e+01 1.097536e+02 lineto -5.49904e+01 1.099729e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.49904e+01 1.127729e+02 moveto -5.49904e+01 1.099729e+02 lineto -5.423343e+01 1.097536e+02 lineto -5.423343e+01 1.125536e+02 lineto -5.49904e+01 1.127729e+02 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -5.49904e+01 1.127729e+02 moveto -5.49904e+01 1.099729e+02 lineto -5.423343e+01 1.097536e+02 lineto -5.423343e+01 1.125536e+02 lineto -5.49904e+01 1.127729e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.49904e+01 1.155729e+02 moveto -5.49904e+01 1.127729e+02 lineto -5.423343e+01 1.125536e+02 lineto -5.423343e+01 1.153536e+02 lineto -5.49904e+01 1.155729e+02 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -5.49904e+01 1.155729e+02 moveto -5.49904e+01 1.127729e+02 lineto -5.423343e+01 1.125536e+02 lineto -5.423343e+01 1.153536e+02 lineto -5.49904e+01 1.155729e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.423343e+01 9.015357e+01 moveto -5.423343e+01 8.735357e+01 lineto -5.354285e+01 8.712339e+01 lineto -5.354285e+01 8.992339e+01 lineto -5.423343e+01 9.015357e+01 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -5.423343e+01 9.015357e+01 moveto -5.423343e+01 8.735357e+01 lineto -5.354285e+01 8.712339e+01 lineto -5.354285e+01 8.992339e+01 lineto -5.423343e+01 9.015357e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.423343e+01 9.295357e+01 moveto -5.423343e+01 9.015357e+01 lineto -5.354285e+01 8.992339e+01 lineto -5.354285e+01 9.272339e+01 lineto -5.423343e+01 9.295357e+01 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -5.423343e+01 9.295357e+01 moveto -5.423343e+01 9.015357e+01 lineto -5.354285e+01 8.992339e+01 lineto -5.354285e+01 9.272339e+01 lineto -5.423343e+01 9.295357e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.423343e+01 9.575357e+01 moveto -5.423343e+01 9.295357e+01 lineto -5.354285e+01 9.272339e+01 lineto -5.354285e+01 9.552339e+01 lineto -5.423343e+01 9.575357e+01 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -5.423343e+01 9.575357e+01 moveto -5.423343e+01 9.295357e+01 lineto -5.354285e+01 9.272339e+01 lineto -5.354285e+01 9.552339e+01 lineto -5.423343e+01 9.575357e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.423343e+01 9.855357e+01 moveto -5.423343e+01 9.575357e+01 lineto -5.354285e+01 9.552339e+01 lineto -5.354285e+01 9.832339e+01 lineto -5.423343e+01 9.855357e+01 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -5.423343e+01 9.855357e+01 moveto -5.423343e+01 9.575357e+01 lineto -5.354285e+01 9.552339e+01 lineto -5.354285e+01 9.832339e+01 lineto -5.423343e+01 9.855357e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.423343e+01 1.013536e+02 moveto -5.423343e+01 9.855357e+01 lineto -5.354285e+01 9.832339e+01 lineto -5.354285e+01 1.011234e+02 lineto -5.423343e+01 1.013536e+02 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -5.423343e+01 1.013536e+02 moveto -5.423343e+01 9.855357e+01 lineto -5.354285e+01 9.832339e+01 lineto -5.354285e+01 1.011234e+02 lineto -5.423343e+01 1.013536e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.423343e+01 1.041536e+02 moveto -5.423343e+01 1.013536e+02 lineto -5.354285e+01 1.011234e+02 lineto -5.354285e+01 1.039234e+02 lineto -5.423343e+01 1.041536e+02 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -5.423343e+01 1.041536e+02 moveto -5.423343e+01 1.013536e+02 lineto -5.354285e+01 1.011234e+02 lineto -5.354285e+01 1.039234e+02 lineto -5.423343e+01 1.041536e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.423343e+01 1.069536e+02 moveto -5.423343e+01 1.041536e+02 lineto -5.354285e+01 1.039234e+02 lineto -5.354285e+01 1.067234e+02 lineto -5.423343e+01 1.069536e+02 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -5.423343e+01 1.069536e+02 moveto -5.423343e+01 1.041536e+02 lineto -5.354285e+01 1.039234e+02 lineto -5.354285e+01 1.067234e+02 lineto -5.423343e+01 1.069536e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.423343e+01 1.097536e+02 moveto -5.423343e+01 1.069536e+02 lineto -5.354285e+01 1.067234e+02 lineto -5.354285e+01 1.095234e+02 lineto -5.423343e+01 1.097536e+02 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -5.423343e+01 1.097536e+02 moveto -5.423343e+01 1.069536e+02 lineto -5.354285e+01 1.067234e+02 lineto -5.354285e+01 1.095234e+02 lineto -5.423343e+01 1.097536e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.423343e+01 1.125536e+02 moveto -5.423343e+01 1.097536e+02 lineto -5.354285e+01 1.095234e+02 lineto -5.354285e+01 1.123234e+02 lineto -5.423343e+01 1.125536e+02 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -5.423343e+01 1.125536e+02 moveto -5.423343e+01 1.097536e+02 lineto -5.354285e+01 1.095234e+02 lineto -5.354285e+01 1.123234e+02 lineto -5.423343e+01 1.125536e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.423343e+01 1.153536e+02 moveto -5.423343e+01 1.125536e+02 lineto -5.354285e+01 1.123234e+02 lineto -5.354285e+01 1.151234e+02 lineto -5.423343e+01 1.153536e+02 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -5.423343e+01 1.153536e+02 moveto -5.423343e+01 1.125536e+02 lineto -5.354285e+01 1.123234e+02 lineto -5.354285e+01 1.151234e+02 lineto -5.423343e+01 1.153536e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.354285e+01 8.992339e+01 moveto -5.354285e+01 8.712339e+01 lineto -5.29229e+01 8.68838e+01 lineto -5.29229e+01 8.96838e+01 lineto -5.354285e+01 8.992339e+01 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -5.354285e+01 8.992339e+01 moveto -5.354285e+01 8.712339e+01 lineto -5.29229e+01 8.68838e+01 lineto -5.29229e+01 8.96838e+01 lineto -5.354285e+01 8.992339e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.354285e+01 9.272339e+01 moveto -5.354285e+01 8.992339e+01 lineto -5.29229e+01 8.96838e+01 lineto -5.29229e+01 9.24838e+01 lineto -5.354285e+01 9.272339e+01 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -5.354285e+01 9.272339e+01 moveto -5.354285e+01 8.992339e+01 lineto -5.29229e+01 8.96838e+01 lineto -5.29229e+01 9.24838e+01 lineto -5.354285e+01 9.272339e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.354285e+01 9.552339e+01 moveto -5.354285e+01 9.272339e+01 lineto -5.29229e+01 9.24838e+01 lineto -5.29229e+01 9.52838e+01 lineto -5.354285e+01 9.552339e+01 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -5.354285e+01 9.552339e+01 moveto -5.354285e+01 9.272339e+01 lineto -5.29229e+01 9.24838e+01 lineto -5.29229e+01 9.52838e+01 lineto -5.354285e+01 9.552339e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.354285e+01 9.832339e+01 moveto -5.354285e+01 9.552339e+01 lineto -5.29229e+01 9.52838e+01 lineto -5.29229e+01 9.80838e+01 lineto -5.354285e+01 9.832339e+01 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -5.354285e+01 9.832339e+01 moveto -5.354285e+01 9.552339e+01 lineto -5.29229e+01 9.52838e+01 lineto -5.29229e+01 9.80838e+01 lineto -5.354285e+01 9.832339e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.354285e+01 1.011234e+02 moveto -5.354285e+01 9.832339e+01 lineto -5.29229e+01 9.80838e+01 lineto -5.29229e+01 1.008838e+02 lineto -5.354285e+01 1.011234e+02 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -5.354285e+01 1.011234e+02 moveto -5.354285e+01 9.832339e+01 lineto -5.29229e+01 9.80838e+01 lineto -5.29229e+01 1.008838e+02 lineto -5.354285e+01 1.011234e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.354285e+01 1.039234e+02 moveto -5.354285e+01 1.011234e+02 lineto -5.29229e+01 1.008838e+02 lineto -5.29229e+01 1.036838e+02 lineto -5.354285e+01 1.039234e+02 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -5.354285e+01 1.039234e+02 moveto -5.354285e+01 1.011234e+02 lineto -5.29229e+01 1.008838e+02 lineto -5.29229e+01 1.036838e+02 lineto -5.354285e+01 1.039234e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.354285e+01 1.067234e+02 moveto -5.354285e+01 1.039234e+02 lineto -5.29229e+01 1.036838e+02 lineto -5.29229e+01 1.064838e+02 lineto -5.354285e+01 1.067234e+02 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -5.354285e+01 1.067234e+02 moveto -5.354285e+01 1.039234e+02 lineto -5.29229e+01 1.036838e+02 lineto -5.29229e+01 1.064838e+02 lineto -5.354285e+01 1.067234e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.354285e+01 1.095234e+02 moveto -5.354285e+01 1.067234e+02 lineto -5.29229e+01 1.064838e+02 lineto -5.29229e+01 1.092838e+02 lineto -5.354285e+01 1.095234e+02 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -5.354285e+01 1.095234e+02 moveto -5.354285e+01 1.067234e+02 lineto -5.29229e+01 1.064838e+02 lineto -5.29229e+01 1.092838e+02 lineto -5.354285e+01 1.095234e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.354285e+01 1.123234e+02 moveto -5.354285e+01 1.095234e+02 lineto -5.29229e+01 1.092838e+02 lineto -5.29229e+01 1.120838e+02 lineto -5.354285e+01 1.123234e+02 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -5.354285e+01 1.123234e+02 moveto -5.354285e+01 1.095234e+02 lineto -5.29229e+01 1.092838e+02 lineto -5.29229e+01 1.120838e+02 lineto -5.354285e+01 1.123234e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.354285e+01 1.151234e+02 moveto -5.354285e+01 1.123234e+02 lineto -5.29229e+01 1.120838e+02 lineto -5.29229e+01 1.148838e+02 lineto -5.354285e+01 1.151234e+02 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -5.354285e+01 1.151234e+02 moveto -5.354285e+01 1.123234e+02 lineto -5.29229e+01 1.120838e+02 lineto -5.29229e+01 1.148838e+02 lineto -5.354285e+01 1.151234e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.29229e+01 8.96838e+01 moveto -5.29229e+01 8.68838e+01 lineto -5.237741e+01 8.663628e+01 lineto -5.237741e+01 8.943628e+01 lineto -5.29229e+01 8.96838e+01 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -5.29229e+01 8.96838e+01 moveto -5.29229e+01 8.68838e+01 lineto -5.237741e+01 8.663628e+01 lineto -5.237741e+01 8.943628e+01 lineto -5.29229e+01 8.96838e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.29229e+01 9.24838e+01 moveto -5.29229e+01 8.96838e+01 lineto -5.237741e+01 8.943628e+01 lineto -5.237741e+01 9.223628e+01 lineto -5.29229e+01 9.24838e+01 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -5.29229e+01 9.24838e+01 moveto -5.29229e+01 8.96838e+01 lineto -5.237741e+01 8.943628e+01 lineto -5.237741e+01 9.223628e+01 lineto -5.29229e+01 9.24838e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.29229e+01 9.52838e+01 moveto -5.29229e+01 9.24838e+01 lineto -5.237741e+01 9.223628e+01 lineto -5.237741e+01 9.503628e+01 lineto -5.29229e+01 9.52838e+01 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -5.29229e+01 9.52838e+01 moveto -5.29229e+01 9.24838e+01 lineto -5.237741e+01 9.223628e+01 lineto -5.237741e+01 9.503628e+01 lineto -5.29229e+01 9.52838e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.29229e+01 9.80838e+01 moveto -5.29229e+01 9.52838e+01 lineto -5.237741e+01 9.503628e+01 lineto -5.237741e+01 9.783628e+01 lineto -5.29229e+01 9.80838e+01 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -5.29229e+01 9.80838e+01 moveto -5.29229e+01 9.52838e+01 lineto -5.237741e+01 9.503628e+01 lineto -5.237741e+01 9.783628e+01 lineto -5.29229e+01 9.80838e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.29229e+01 1.008838e+02 moveto -5.29229e+01 9.80838e+01 lineto -5.237741e+01 9.783628e+01 lineto -5.237741e+01 1.006363e+02 lineto -5.29229e+01 1.008838e+02 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -5.29229e+01 1.008838e+02 moveto -5.29229e+01 9.80838e+01 lineto -5.237741e+01 9.783628e+01 lineto -5.237741e+01 1.006363e+02 lineto -5.29229e+01 1.008838e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.29229e+01 1.036838e+02 moveto -5.29229e+01 1.008838e+02 lineto -5.237741e+01 1.006363e+02 lineto -5.237741e+01 1.034363e+02 lineto -5.29229e+01 1.036838e+02 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -5.29229e+01 1.036838e+02 moveto -5.29229e+01 1.008838e+02 lineto -5.237741e+01 1.006363e+02 lineto -5.237741e+01 1.034363e+02 lineto -5.29229e+01 1.036838e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.29229e+01 1.064838e+02 moveto -5.29229e+01 1.036838e+02 lineto -5.237741e+01 1.034363e+02 lineto -5.237741e+01 1.062363e+02 lineto -5.29229e+01 1.064838e+02 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -5.29229e+01 1.064838e+02 moveto -5.29229e+01 1.036838e+02 lineto -5.237741e+01 1.034363e+02 lineto -5.237741e+01 1.062363e+02 lineto -5.29229e+01 1.064838e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.29229e+01 1.092838e+02 moveto -5.29229e+01 1.064838e+02 lineto -5.237741e+01 1.062363e+02 lineto -5.237741e+01 1.090363e+02 lineto -5.29229e+01 1.092838e+02 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -5.29229e+01 1.092838e+02 moveto -5.29229e+01 1.064838e+02 lineto -5.237741e+01 1.062363e+02 lineto -5.237741e+01 1.090363e+02 lineto -5.29229e+01 1.092838e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.29229e+01 1.120838e+02 moveto -5.29229e+01 1.092838e+02 lineto -5.237741e+01 1.090363e+02 lineto -5.237741e+01 1.118363e+02 lineto -5.29229e+01 1.120838e+02 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -5.29229e+01 1.120838e+02 moveto -5.29229e+01 1.092838e+02 lineto -5.237741e+01 1.090363e+02 lineto -5.237741e+01 1.118363e+02 lineto -5.29229e+01 1.120838e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.29229e+01 1.148838e+02 moveto -5.29229e+01 1.120838e+02 lineto -5.237741e+01 1.118363e+02 lineto -5.237741e+01 1.146363e+02 lineto -5.29229e+01 1.148838e+02 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -5.29229e+01 1.148838e+02 moveto -5.29229e+01 1.120838e+02 lineto -5.237741e+01 1.118363e+02 lineto -5.237741e+01 1.146363e+02 lineto -5.29229e+01 1.148838e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.237741e+01 8.943628e+01 moveto -5.237741e+01 8.663628e+01 lineto -5.190974e+01 8.638236e+01 lineto -5.190974e+01 8.918236e+01 lineto -5.237741e+01 8.943628e+01 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -5.237741e+01 8.943628e+01 moveto -5.237741e+01 8.663628e+01 lineto -5.190974e+01 8.638236e+01 lineto -5.190974e+01 8.918236e+01 lineto -5.237741e+01 8.943628e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.237741e+01 9.223628e+01 moveto -5.237741e+01 8.943628e+01 lineto -5.190974e+01 8.918236e+01 lineto -5.190974e+01 9.198236e+01 lineto -5.237741e+01 9.223628e+01 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -5.237741e+01 9.223628e+01 moveto -5.237741e+01 8.943628e+01 lineto -5.190974e+01 8.918236e+01 lineto -5.190974e+01 9.198236e+01 lineto -5.237741e+01 9.223628e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.237741e+01 9.503628e+01 moveto -5.237741e+01 9.223628e+01 lineto -5.190974e+01 9.198236e+01 lineto -5.190974e+01 9.478236e+01 lineto -5.237741e+01 9.503628e+01 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -5.237741e+01 9.503628e+01 moveto -5.237741e+01 9.223628e+01 lineto -5.190974e+01 9.198236e+01 lineto -5.190974e+01 9.478236e+01 lineto -5.237741e+01 9.503628e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.237741e+01 9.783628e+01 moveto -5.237741e+01 9.503628e+01 lineto -5.190974e+01 9.478236e+01 lineto -5.190974e+01 9.758236e+01 lineto -5.237741e+01 9.783628e+01 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -5.237741e+01 9.783628e+01 moveto -5.237741e+01 9.503628e+01 lineto -5.190974e+01 9.478236e+01 lineto -5.190974e+01 9.758236e+01 lineto -5.237741e+01 9.783628e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.237741e+01 1.006363e+02 moveto -5.237741e+01 9.783628e+01 lineto -5.190974e+01 9.758236e+01 lineto -5.190974e+01 1.003824e+02 lineto -5.237741e+01 1.006363e+02 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -5.237741e+01 1.006363e+02 moveto -5.237741e+01 9.783628e+01 lineto -5.190974e+01 9.758236e+01 lineto -5.190974e+01 1.003824e+02 lineto -5.237741e+01 1.006363e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.237741e+01 1.034363e+02 moveto -5.237741e+01 1.006363e+02 lineto -5.190974e+01 1.003824e+02 lineto -5.190974e+01 1.031824e+02 lineto -5.237741e+01 1.034363e+02 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -5.237741e+01 1.034363e+02 moveto -5.237741e+01 1.006363e+02 lineto -5.190974e+01 1.003824e+02 lineto -5.190974e+01 1.031824e+02 lineto -5.237741e+01 1.034363e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.237741e+01 1.062363e+02 moveto -5.237741e+01 1.034363e+02 lineto -5.190974e+01 1.031824e+02 lineto -5.190974e+01 1.059824e+02 lineto -5.237741e+01 1.062363e+02 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -5.237741e+01 1.062363e+02 moveto -5.237741e+01 1.034363e+02 lineto -5.190974e+01 1.031824e+02 lineto -5.190974e+01 1.059824e+02 lineto -5.237741e+01 1.062363e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.237741e+01 1.090363e+02 moveto -5.237741e+01 1.062363e+02 lineto -5.190974e+01 1.059824e+02 lineto -5.190974e+01 1.087824e+02 lineto -5.237741e+01 1.090363e+02 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -5.237741e+01 1.090363e+02 moveto -5.237741e+01 1.062363e+02 lineto -5.190974e+01 1.059824e+02 lineto -5.190974e+01 1.087824e+02 lineto -5.237741e+01 1.090363e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.237741e+01 1.118363e+02 moveto -5.237741e+01 1.090363e+02 lineto -5.190974e+01 1.087824e+02 lineto -5.190974e+01 1.115824e+02 lineto -5.237741e+01 1.118363e+02 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -5.237741e+01 1.118363e+02 moveto -5.237741e+01 1.090363e+02 lineto -5.190974e+01 1.087824e+02 lineto -5.190974e+01 1.115824e+02 lineto -5.237741e+01 1.118363e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.237741e+01 1.146363e+02 moveto -5.237741e+01 1.118363e+02 lineto -5.190974e+01 1.115824e+02 lineto -5.190974e+01 1.143824e+02 lineto -5.237741e+01 1.146363e+02 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -5.237741e+01 1.146363e+02 moveto -5.237741e+01 1.118363e+02 lineto -5.190974e+01 1.115824e+02 lineto -5.190974e+01 1.143824e+02 lineto -5.237741e+01 1.146363e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.190974e+01 8.918236e+01 moveto -5.190974e+01 8.638236e+01 lineto -5.152278e+01 8.61236e+01 lineto -5.152278e+01 8.89236e+01 lineto -5.190974e+01 8.918236e+01 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -5.190974e+01 8.918236e+01 moveto -5.190974e+01 8.638236e+01 lineto -5.152278e+01 8.61236e+01 lineto -5.152278e+01 8.89236e+01 lineto -5.190974e+01 8.918236e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.190974e+01 9.198236e+01 moveto -5.190974e+01 8.918236e+01 lineto -5.152278e+01 8.89236e+01 lineto -5.152278e+01 9.17236e+01 lineto -5.190974e+01 9.198236e+01 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -5.190974e+01 9.198236e+01 moveto -5.190974e+01 8.918236e+01 lineto -5.152278e+01 8.89236e+01 lineto -5.152278e+01 9.17236e+01 lineto -5.190974e+01 9.198236e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.190974e+01 9.478236e+01 moveto -5.190974e+01 9.198236e+01 lineto -5.152278e+01 9.17236e+01 lineto -5.152278e+01 9.45236e+01 lineto -5.190974e+01 9.478236e+01 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -5.190974e+01 9.478236e+01 moveto -5.190974e+01 9.198236e+01 lineto -5.152278e+01 9.17236e+01 lineto -5.152278e+01 9.45236e+01 lineto -5.190974e+01 9.478236e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.190974e+01 9.758236e+01 moveto -5.190974e+01 9.478236e+01 lineto -5.152278e+01 9.45236e+01 lineto -5.152278e+01 9.73236e+01 lineto -5.190974e+01 9.758236e+01 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -5.190974e+01 9.758236e+01 moveto -5.190974e+01 9.478236e+01 lineto -5.152278e+01 9.45236e+01 lineto -5.152278e+01 9.73236e+01 lineto -5.190974e+01 9.758236e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.190974e+01 1.003824e+02 moveto -5.190974e+01 9.758236e+01 lineto -5.152278e+01 9.73236e+01 lineto -5.152278e+01 1.001236e+02 lineto -5.190974e+01 1.003824e+02 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -5.190974e+01 1.003824e+02 moveto -5.190974e+01 9.758236e+01 lineto -5.152278e+01 9.73236e+01 lineto -5.152278e+01 1.001236e+02 lineto -5.190974e+01 1.003824e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.190974e+01 1.031824e+02 moveto -5.190974e+01 1.003824e+02 lineto -5.152278e+01 1.001236e+02 lineto -5.152278e+01 1.029236e+02 lineto -5.190974e+01 1.031824e+02 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -5.190974e+01 1.031824e+02 moveto -5.190974e+01 1.003824e+02 lineto -5.152278e+01 1.001236e+02 lineto -5.152278e+01 1.029236e+02 lineto -5.190974e+01 1.031824e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.190974e+01 1.059824e+02 moveto -5.190974e+01 1.031824e+02 lineto -5.152278e+01 1.029236e+02 lineto -5.152278e+01 1.057236e+02 lineto -5.190974e+01 1.059824e+02 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -5.190974e+01 1.059824e+02 moveto -5.190974e+01 1.031824e+02 lineto -5.152278e+01 1.029236e+02 lineto -5.152278e+01 1.057236e+02 lineto -5.190974e+01 1.059824e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.190974e+01 1.087824e+02 moveto -5.190974e+01 1.059824e+02 lineto -5.152278e+01 1.057236e+02 lineto -5.152278e+01 1.085236e+02 lineto -5.190974e+01 1.087824e+02 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -5.190974e+01 1.087824e+02 moveto -5.190974e+01 1.059824e+02 lineto -5.152278e+01 1.057236e+02 lineto -5.152278e+01 1.085236e+02 lineto -5.190974e+01 1.087824e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.190974e+01 1.115824e+02 moveto -5.190974e+01 1.087824e+02 lineto -5.152278e+01 1.085236e+02 lineto -5.152278e+01 1.113236e+02 lineto -5.190974e+01 1.115824e+02 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -5.190974e+01 1.115824e+02 moveto -5.190974e+01 1.087824e+02 lineto -5.152278e+01 1.085236e+02 lineto -5.152278e+01 1.113236e+02 lineto -5.190974e+01 1.115824e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.190974e+01 1.143824e+02 moveto -5.190974e+01 1.115824e+02 lineto -5.152278e+01 1.113236e+02 lineto -5.152278e+01 1.141236e+02 lineto -5.190974e+01 1.143824e+02 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -5.190974e+01 1.143824e+02 moveto -5.190974e+01 1.115824e+02 lineto -5.152278e+01 1.113236e+02 lineto -5.152278e+01 1.141236e+02 lineto -5.190974e+01 1.143824e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.152278e+01 8.89236e+01 moveto -5.152278e+01 8.61236e+01 lineto -5.121891e+01 8.58616e+01 lineto -5.121891e+01 8.86616e+01 lineto -5.152278e+01 8.89236e+01 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -5.152278e+01 8.89236e+01 moveto -5.152278e+01 8.61236e+01 lineto -5.121891e+01 8.58616e+01 lineto -5.121891e+01 8.86616e+01 lineto -5.152278e+01 8.89236e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.152278e+01 9.17236e+01 moveto -5.152278e+01 8.89236e+01 lineto -5.121891e+01 8.86616e+01 lineto -5.121891e+01 9.14616e+01 lineto -5.152278e+01 9.17236e+01 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -5.152278e+01 9.17236e+01 moveto -5.152278e+01 8.89236e+01 lineto -5.121891e+01 8.86616e+01 lineto -5.121891e+01 9.14616e+01 lineto -5.152278e+01 9.17236e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.152278e+01 9.45236e+01 moveto -5.152278e+01 9.17236e+01 lineto -5.121891e+01 9.14616e+01 lineto -5.121891e+01 9.42616e+01 lineto -5.152278e+01 9.45236e+01 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -5.152278e+01 9.45236e+01 moveto -5.152278e+01 9.17236e+01 lineto -5.121891e+01 9.14616e+01 lineto -5.121891e+01 9.42616e+01 lineto -5.152278e+01 9.45236e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.152278e+01 9.73236e+01 moveto -5.152278e+01 9.45236e+01 lineto -5.121891e+01 9.42616e+01 lineto -5.121891e+01 9.70616e+01 lineto -5.152278e+01 9.73236e+01 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -5.152278e+01 9.73236e+01 moveto -5.152278e+01 9.45236e+01 lineto -5.121891e+01 9.42616e+01 lineto -5.121891e+01 9.70616e+01 lineto -5.152278e+01 9.73236e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.152278e+01 1.001236e+02 moveto -5.152278e+01 9.73236e+01 lineto -5.121891e+01 9.70616e+01 lineto -5.121891e+01 9.98616e+01 lineto -5.152278e+01 1.001236e+02 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -5.152278e+01 1.001236e+02 moveto -5.152278e+01 9.73236e+01 lineto -5.121891e+01 9.70616e+01 lineto -5.121891e+01 9.98616e+01 lineto -5.152278e+01 1.001236e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.152278e+01 1.029236e+02 moveto -5.152278e+01 1.001236e+02 lineto -5.121891e+01 9.98616e+01 lineto -5.121891e+01 1.026616e+02 lineto -5.152278e+01 1.029236e+02 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -5.152278e+01 1.029236e+02 moveto -5.152278e+01 1.001236e+02 lineto -5.121891e+01 9.98616e+01 lineto -5.121891e+01 1.026616e+02 lineto -5.152278e+01 1.029236e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.152278e+01 1.057236e+02 moveto -5.152278e+01 1.029236e+02 lineto -5.121891e+01 1.026616e+02 lineto -5.121891e+01 1.054616e+02 lineto -5.152278e+01 1.057236e+02 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -5.152278e+01 1.057236e+02 moveto -5.152278e+01 1.029236e+02 lineto -5.121891e+01 1.026616e+02 lineto -5.121891e+01 1.054616e+02 lineto -5.152278e+01 1.057236e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.152278e+01 1.085236e+02 moveto -5.152278e+01 1.057236e+02 lineto -5.121891e+01 1.054616e+02 lineto -5.121891e+01 1.082616e+02 lineto -5.152278e+01 1.085236e+02 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -5.152278e+01 1.085236e+02 moveto -5.152278e+01 1.057236e+02 lineto -5.121891e+01 1.054616e+02 lineto -5.121891e+01 1.082616e+02 lineto -5.152278e+01 1.085236e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.152278e+01 1.113236e+02 moveto -5.152278e+01 1.085236e+02 lineto -5.121891e+01 1.082616e+02 lineto -5.121891e+01 1.110616e+02 lineto -5.152278e+01 1.113236e+02 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -5.152278e+01 1.113236e+02 moveto -5.152278e+01 1.085236e+02 lineto -5.121891e+01 1.082616e+02 lineto -5.121891e+01 1.110616e+02 lineto -5.152278e+01 1.113236e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.152278e+01 1.141236e+02 moveto -5.152278e+01 1.113236e+02 lineto -5.121891e+01 1.110616e+02 lineto -5.121891e+01 1.138616e+02 lineto -5.152278e+01 1.141236e+02 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -5.152278e+01 1.141236e+02 moveto -5.152278e+01 1.113236e+02 lineto -5.121891e+01 1.110616e+02 lineto -5.121891e+01 1.138616e+02 lineto -5.152278e+01 1.141236e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.121891e+01 8.86616e+01 moveto -5.121891e+01 8.58616e+01 lineto -5.1e+01 8.559798e+01 lineto -5.1e+01 8.839798e+01 lineto -5.121891e+01 8.86616e+01 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -5.121891e+01 8.86616e+01 moveto -5.121891e+01 8.58616e+01 lineto -5.1e+01 8.559798e+01 lineto -5.1e+01 8.839798e+01 lineto -5.121891e+01 8.86616e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.121891e+01 9.14616e+01 moveto -5.121891e+01 8.86616e+01 lineto -5.1e+01 8.839798e+01 lineto -5.1e+01 9.119798e+01 lineto -5.121891e+01 9.14616e+01 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -5.121891e+01 9.14616e+01 moveto -5.121891e+01 8.86616e+01 lineto -5.1e+01 8.839798e+01 lineto -5.1e+01 9.119798e+01 lineto -5.121891e+01 9.14616e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.121891e+01 9.42616e+01 moveto -5.121891e+01 9.14616e+01 lineto -5.1e+01 9.119798e+01 lineto -5.1e+01 9.399798e+01 lineto -5.121891e+01 9.42616e+01 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -5.121891e+01 9.42616e+01 moveto -5.121891e+01 9.14616e+01 lineto -5.1e+01 9.119798e+01 lineto -5.1e+01 9.399798e+01 lineto -5.121891e+01 9.42616e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.121891e+01 9.70616e+01 moveto -5.121891e+01 9.42616e+01 lineto -5.1e+01 9.399798e+01 lineto -5.1e+01 9.679798e+01 lineto -5.121891e+01 9.70616e+01 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -5.121891e+01 9.70616e+01 moveto -5.121891e+01 9.42616e+01 lineto -5.1e+01 9.399798e+01 lineto -5.1e+01 9.679798e+01 lineto -5.121891e+01 9.70616e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.121891e+01 9.98616e+01 moveto -5.121891e+01 9.70616e+01 lineto -5.1e+01 9.679798e+01 lineto -5.1e+01 9.959798e+01 lineto -5.121891e+01 9.98616e+01 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -5.121891e+01 9.98616e+01 moveto -5.121891e+01 9.70616e+01 lineto -5.1e+01 9.679798e+01 lineto -5.1e+01 9.959798e+01 lineto -5.121891e+01 9.98616e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.121891e+01 1.026616e+02 moveto -5.121891e+01 9.98616e+01 lineto -5.1e+01 9.959798e+01 lineto -5.1e+01 1.02398e+02 lineto -5.121891e+01 1.026616e+02 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -5.121891e+01 1.026616e+02 moveto -5.121891e+01 9.98616e+01 lineto -5.1e+01 9.959798e+01 lineto -5.1e+01 1.02398e+02 lineto -5.121891e+01 1.026616e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.121891e+01 1.054616e+02 moveto -5.121891e+01 1.026616e+02 lineto -5.1e+01 1.02398e+02 lineto -5.1e+01 1.05198e+02 lineto -5.121891e+01 1.054616e+02 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -5.121891e+01 1.054616e+02 moveto -5.121891e+01 1.026616e+02 lineto -5.1e+01 1.02398e+02 lineto -5.1e+01 1.05198e+02 lineto -5.121891e+01 1.054616e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.121891e+01 1.082616e+02 moveto -5.121891e+01 1.054616e+02 lineto -5.1e+01 1.05198e+02 lineto -5.1e+01 1.07998e+02 lineto -5.121891e+01 1.082616e+02 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -5.121891e+01 1.082616e+02 moveto -5.121891e+01 1.054616e+02 lineto -5.1e+01 1.05198e+02 lineto -5.1e+01 1.07998e+02 lineto -5.121891e+01 1.082616e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.121891e+01 1.110616e+02 moveto -5.121891e+01 1.082616e+02 lineto -5.1e+01 1.07998e+02 lineto -5.1e+01 1.10798e+02 lineto -5.121891e+01 1.110616e+02 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -5.121891e+01 1.110616e+02 moveto -5.121891e+01 1.082616e+02 lineto -5.1e+01 1.07998e+02 lineto -5.1e+01 1.10798e+02 lineto -5.121891e+01 1.110616e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.121891e+01 1.138616e+02 moveto -5.121891e+01 1.110616e+02 lineto -5.1e+01 1.10798e+02 lineto -5.1e+01 1.13598e+02 lineto -5.121891e+01 1.138616e+02 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -5.121891e+01 1.138616e+02 moveto -5.121891e+01 1.110616e+02 lineto -5.1e+01 1.10798e+02 lineto -5.1e+01 1.13598e+02 lineto -5.121891e+01 1.138616e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.1e+01 8.839798e+01 moveto -5.1e+01 8.559798e+01 lineto -5.086741e+01 8.533436e+01 lineto -5.086741e+01 8.813436e+01 lineto -5.1e+01 8.839798e+01 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -5.1e+01 8.839798e+01 moveto -5.1e+01 8.559798e+01 lineto -5.086741e+01 8.533436e+01 lineto -5.086741e+01 8.813436e+01 lineto -5.1e+01 8.839798e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.1e+01 9.119798e+01 moveto -5.1e+01 8.839798e+01 lineto -5.086741e+01 8.813436e+01 lineto -5.086741e+01 9.093436e+01 lineto -5.1e+01 9.119798e+01 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -5.1e+01 9.119798e+01 moveto -5.1e+01 8.839798e+01 lineto -5.086741e+01 8.813436e+01 lineto -5.086741e+01 9.093436e+01 lineto -5.1e+01 9.119798e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.1e+01 9.399798e+01 moveto -5.1e+01 9.119798e+01 lineto -5.086741e+01 9.093436e+01 lineto -5.086741e+01 9.373436e+01 lineto -5.1e+01 9.399798e+01 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -5.1e+01 9.399798e+01 moveto -5.1e+01 9.119798e+01 lineto -5.086741e+01 9.093436e+01 lineto -5.086741e+01 9.373436e+01 lineto -5.1e+01 9.399798e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.1e+01 9.679798e+01 moveto -5.1e+01 9.399798e+01 lineto -5.086741e+01 9.373436e+01 lineto -5.086741e+01 9.653436e+01 lineto -5.1e+01 9.679798e+01 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -5.1e+01 9.679798e+01 moveto -5.1e+01 9.399798e+01 lineto -5.086741e+01 9.373436e+01 lineto -5.086741e+01 9.653436e+01 lineto -5.1e+01 9.679798e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.1e+01 9.959798e+01 moveto -5.1e+01 9.679798e+01 lineto -5.086741e+01 9.653436e+01 lineto -5.086741e+01 9.933436e+01 lineto -5.1e+01 9.959798e+01 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -5.1e+01 9.959798e+01 moveto -5.1e+01 9.679798e+01 lineto -5.086741e+01 9.653436e+01 lineto -5.086741e+01 9.933436e+01 lineto -5.1e+01 9.959798e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.1e+01 1.02398e+02 moveto -5.1e+01 9.959798e+01 lineto -5.086741e+01 9.933436e+01 lineto -5.086741e+01 1.021344e+02 lineto -5.1e+01 1.02398e+02 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -5.1e+01 1.02398e+02 moveto -5.1e+01 9.959798e+01 lineto -5.086741e+01 9.933436e+01 lineto -5.086741e+01 1.021344e+02 lineto -5.1e+01 1.02398e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.1e+01 1.05198e+02 moveto -5.1e+01 1.02398e+02 lineto -5.086741e+01 1.021344e+02 lineto -5.086741e+01 1.049344e+02 lineto -5.1e+01 1.05198e+02 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -5.1e+01 1.05198e+02 moveto -5.1e+01 1.02398e+02 lineto -5.086741e+01 1.021344e+02 lineto -5.086741e+01 1.049344e+02 lineto -5.1e+01 1.05198e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.1e+01 1.07998e+02 moveto -5.1e+01 1.05198e+02 lineto -5.086741e+01 1.049344e+02 lineto -5.086741e+01 1.077344e+02 lineto -5.1e+01 1.07998e+02 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -5.1e+01 1.07998e+02 moveto -5.1e+01 1.05198e+02 lineto -5.086741e+01 1.049344e+02 lineto -5.086741e+01 1.077344e+02 lineto -5.1e+01 1.07998e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.1e+01 1.10798e+02 moveto -5.1e+01 1.07998e+02 lineto -5.086741e+01 1.077344e+02 lineto -5.086741e+01 1.105344e+02 lineto -5.1e+01 1.10798e+02 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -5.1e+01 1.10798e+02 moveto -5.1e+01 1.07998e+02 lineto -5.086741e+01 1.077344e+02 lineto -5.086741e+01 1.105344e+02 lineto -5.1e+01 1.10798e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.1e+01 1.13598e+02 moveto -5.1e+01 1.10798e+02 lineto -5.086741e+01 1.105344e+02 lineto -5.086741e+01 1.133344e+02 lineto -5.1e+01 1.13598e+02 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -5.1e+01 1.13598e+02 moveto -5.1e+01 1.10798e+02 lineto -5.086741e+01 1.105344e+02 lineto -5.086741e+01 1.133344e+02 lineto -5.1e+01 1.13598e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.086741e+01 8.813436e+01 moveto -5.086741e+01 8.533436e+01 lineto -5.082195e+01 8.507236e+01 lineto -5.082195e+01 8.787236e+01 lineto -5.086741e+01 8.813436e+01 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -5.086741e+01 8.813436e+01 moveto -5.086741e+01 8.533436e+01 lineto -5.082195e+01 8.507236e+01 lineto -5.082195e+01 8.787236e+01 lineto -5.086741e+01 8.813436e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.086741e+01 9.093436e+01 moveto -5.086741e+01 8.813436e+01 lineto -5.082195e+01 8.787236e+01 lineto -5.082195e+01 9.067236e+01 lineto -5.086741e+01 9.093436e+01 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -5.086741e+01 9.093436e+01 moveto -5.086741e+01 8.813436e+01 lineto -5.082195e+01 8.787236e+01 lineto -5.082195e+01 9.067236e+01 lineto -5.086741e+01 9.093436e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.086741e+01 9.373436e+01 moveto -5.086741e+01 9.093436e+01 lineto -5.082195e+01 9.067236e+01 lineto -5.082195e+01 9.347236e+01 lineto -5.086741e+01 9.373436e+01 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -5.086741e+01 9.373436e+01 moveto -5.086741e+01 9.093436e+01 lineto -5.082195e+01 9.067236e+01 lineto -5.082195e+01 9.347236e+01 lineto -5.086741e+01 9.373436e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.086741e+01 9.653436e+01 moveto -5.086741e+01 9.373436e+01 lineto -5.082195e+01 9.347236e+01 lineto -5.082195e+01 9.627236e+01 lineto -5.086741e+01 9.653436e+01 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -5.086741e+01 9.653436e+01 moveto -5.086741e+01 9.373436e+01 lineto -5.082195e+01 9.347236e+01 lineto -5.082195e+01 9.627236e+01 lineto -5.086741e+01 9.653436e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.086741e+01 9.933436e+01 moveto -5.086741e+01 9.653436e+01 lineto -5.082195e+01 9.627236e+01 lineto -5.082195e+01 9.907236e+01 lineto -5.086741e+01 9.933436e+01 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -5.086741e+01 9.933436e+01 moveto -5.086741e+01 9.653436e+01 lineto -5.082195e+01 9.627236e+01 lineto -5.082195e+01 9.907236e+01 lineto -5.086741e+01 9.933436e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.086741e+01 1.021344e+02 moveto -5.086741e+01 9.933436e+01 lineto -5.082195e+01 9.907236e+01 lineto -5.082195e+01 1.018724e+02 lineto -5.086741e+01 1.021344e+02 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -5.086741e+01 1.021344e+02 moveto -5.086741e+01 9.933436e+01 lineto -5.082195e+01 9.907236e+01 lineto -5.082195e+01 1.018724e+02 lineto -5.086741e+01 1.021344e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.086741e+01 1.049344e+02 moveto -5.086741e+01 1.021344e+02 lineto -5.082195e+01 1.018724e+02 lineto -5.082195e+01 1.046724e+02 lineto -5.086741e+01 1.049344e+02 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -5.086741e+01 1.049344e+02 moveto -5.086741e+01 1.021344e+02 lineto -5.082195e+01 1.018724e+02 lineto -5.082195e+01 1.046724e+02 lineto -5.086741e+01 1.049344e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.086741e+01 1.077344e+02 moveto -5.086741e+01 1.049344e+02 lineto -5.082195e+01 1.046724e+02 lineto -5.082195e+01 1.074724e+02 lineto -5.086741e+01 1.077344e+02 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -5.086741e+01 1.077344e+02 moveto -5.086741e+01 1.049344e+02 lineto -5.082195e+01 1.046724e+02 lineto -5.082195e+01 1.074724e+02 lineto -5.086741e+01 1.077344e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.086741e+01 1.105344e+02 moveto -5.086741e+01 1.077344e+02 lineto -5.082195e+01 1.074724e+02 lineto -5.082195e+01 1.102724e+02 lineto -5.086741e+01 1.105344e+02 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -5.086741e+01 1.105344e+02 moveto -5.086741e+01 1.077344e+02 lineto -5.082195e+01 1.074724e+02 lineto -5.082195e+01 1.102724e+02 lineto -5.086741e+01 1.105344e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.086741e+01 1.133344e+02 moveto -5.086741e+01 1.105344e+02 lineto -5.082195e+01 1.102724e+02 lineto -5.082195e+01 1.130724e+02 lineto -5.086741e+01 1.133344e+02 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -5.086741e+01 1.133344e+02 moveto -5.086741e+01 1.105344e+02 lineto -5.082195e+01 1.102724e+02 lineto -5.082195e+01 1.130724e+02 lineto -5.086741e+01 1.133344e+02 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -1.0e-01 setlinewidth -newpath -6.276e+01 8.503798e+01 moveto -6.276e+01 8.223798e+01 lineto -6.386533e+01 8.224834e+01 lineto -6.386533e+01 8.504834e+01 lineto -6.276e+01 8.503798e+01 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -6.276e+01 8.783798e+01 moveto -6.276e+01 8.503798e+01 lineto -6.386533e+01 8.504834e+01 lineto -6.386533e+01 8.784834e+01 lineto -6.276e+01 8.783798e+01 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -6.276e+01 9.063798e+01 moveto -6.276e+01 8.783798e+01 lineto -6.386533e+01 8.784834e+01 lineto -6.386533e+01 9.064834e+01 lineto -6.276e+01 9.063798e+01 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -6.276e+01 9.343798e+01 moveto -6.276e+01 9.063798e+01 lineto -6.386533e+01 9.064834e+01 lineto -6.386533e+01 9.344834e+01 lineto -6.276e+01 9.343798e+01 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -6.276e+01 9.623798e+01 moveto -6.276e+01 9.343798e+01 lineto -6.386533e+01 9.344834e+01 lineto -6.386533e+01 9.624834e+01 lineto -6.276e+01 9.623798e+01 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -6.276e+01 9.903798e+01 moveto -6.276e+01 9.623798e+01 lineto -6.386533e+01 9.624834e+01 lineto -6.386533e+01 9.904834e+01 lineto -6.276e+01 9.903798e+01 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -6.276e+01 1.01838e+02 moveto -6.276e+01 9.903798e+01 lineto -6.386533e+01 9.904834e+01 lineto -6.386533e+01 1.018483e+02 lineto -6.276e+01 1.01838e+02 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -6.276e+01 1.04638e+02 moveto -6.276e+01 1.01838e+02 lineto -6.386533e+01 1.018483e+02 lineto -6.386533e+01 1.046483e+02 lineto -6.276e+01 1.04638e+02 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -6.276e+01 1.07438e+02 moveto -6.276e+01 1.04638e+02 lineto -6.386533e+01 1.046483e+02 lineto -6.386533e+01 1.074483e+02 lineto -6.276e+01 1.07438e+02 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -6.276e+01 1.10238e+02 moveto -6.276e+01 1.07438e+02 lineto -6.386533e+01 1.074483e+02 lineto -6.386533e+01 1.102483e+02 lineto -6.276e+01 1.10238e+02 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -6.386533e+01 8.504834e+01 moveto -6.386533e+01 8.224834e+01 lineto -6.497766e+01 8.227935e+01 lineto -6.497766e+01 8.507935e+01 lineto -6.386533e+01 8.504834e+01 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -6.386533e+01 8.784834e+01 moveto -6.386533e+01 8.504834e+01 lineto -6.497766e+01 8.507935e+01 lineto -6.497766e+01 8.787935e+01 lineto -6.386533e+01 8.784834e+01 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -6.386533e+01 9.064834e+01 moveto -6.386533e+01 8.784834e+01 lineto -6.497766e+01 8.787935e+01 lineto -6.497766e+01 9.067935e+01 lineto -6.386533e+01 9.064834e+01 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -6.386533e+01 9.344834e+01 moveto -6.386533e+01 9.064834e+01 lineto -6.497766e+01 9.067935e+01 lineto -6.497766e+01 9.347935e+01 lineto -6.386533e+01 9.344834e+01 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -6.386533e+01 9.624834e+01 moveto -6.386533e+01 9.344834e+01 lineto -6.497766e+01 9.347935e+01 lineto -6.497766e+01 9.627935e+01 lineto -6.386533e+01 9.624834e+01 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -6.386533e+01 9.904834e+01 moveto -6.386533e+01 9.624834e+01 lineto -6.497766e+01 9.627935e+01 lineto -6.497766e+01 9.907935e+01 lineto -6.386533e+01 9.904834e+01 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -6.386533e+01 1.018483e+02 moveto -6.386533e+01 9.904834e+01 lineto -6.497766e+01 9.907935e+01 lineto -6.497766e+01 1.018793e+02 lineto -6.386533e+01 1.018483e+02 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -6.386533e+01 1.046483e+02 moveto -6.386533e+01 1.018483e+02 lineto -6.497766e+01 1.018793e+02 lineto -6.497766e+01 1.046793e+02 lineto -6.386533e+01 1.046483e+02 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -6.386533e+01 1.074483e+02 moveto -6.386533e+01 1.046483e+02 lineto -6.497766e+01 1.046793e+02 lineto -6.497766e+01 1.074793e+02 lineto -6.386533e+01 1.074483e+02 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -6.386533e+01 1.102483e+02 moveto -6.386533e+01 1.074483e+02 lineto -6.497766e+01 1.074793e+02 lineto -6.497766e+01 1.102793e+02 lineto -6.386533e+01 1.102483e+02 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -6.497766e+01 8.507935e+01 moveto -6.497766e+01 8.227935e+01 lineto -6.609013e+01 8.233082e+01 lineto -6.609013e+01 8.513082e+01 lineto -6.497766e+01 8.507935e+01 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -6.497766e+01 8.787935e+01 moveto -6.497766e+01 8.507935e+01 lineto -6.609013e+01 8.513082e+01 lineto -6.609013e+01 8.793082e+01 lineto -6.497766e+01 8.787935e+01 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -6.497766e+01 9.067935e+01 moveto -6.497766e+01 8.787935e+01 lineto -6.609013e+01 8.793082e+01 lineto -6.609013e+01 9.073082e+01 lineto -6.497766e+01 9.067935e+01 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -6.497766e+01 9.347935e+01 moveto -6.497766e+01 9.067935e+01 lineto -6.609013e+01 9.073082e+01 lineto -6.609013e+01 9.353082e+01 lineto -6.497766e+01 9.347935e+01 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -6.497766e+01 9.627935e+01 moveto -6.497766e+01 9.347935e+01 lineto -6.609013e+01 9.353082e+01 lineto -6.609013e+01 9.633082e+01 lineto -6.497766e+01 9.627935e+01 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -6.497766e+01 9.907935e+01 moveto -6.497766e+01 9.627935e+01 lineto -6.609013e+01 9.633082e+01 lineto -6.609013e+01 9.913082e+01 lineto -6.497766e+01 9.907935e+01 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -6.497766e+01 1.018793e+02 moveto -6.497766e+01 9.907935e+01 lineto -6.609013e+01 9.913082e+01 lineto -6.609013e+01 1.019308e+02 lineto -6.497766e+01 1.018793e+02 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -6.497766e+01 1.046793e+02 moveto -6.497766e+01 1.018793e+02 lineto -6.609013e+01 1.019308e+02 lineto -6.609013e+01 1.047308e+02 lineto -6.497766e+01 1.046793e+02 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -6.497766e+01 1.074793e+02 moveto -6.497766e+01 1.046793e+02 lineto -6.609013e+01 1.047308e+02 lineto -6.609013e+01 1.075308e+02 lineto -6.497766e+01 1.074793e+02 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -6.497766e+01 1.102793e+02 moveto -6.497766e+01 1.074793e+02 lineto -6.609013e+01 1.075308e+02 lineto -6.609013e+01 1.103308e+02 lineto -6.497766e+01 1.102793e+02 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -6.609013e+01 8.513082e+01 moveto -6.609013e+01 8.233082e+01 lineto -6.719587e+01 8.240243e+01 lineto -6.719587e+01 8.520243e+01 lineto -6.609013e+01 8.513082e+01 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -6.609013e+01 8.793082e+01 moveto -6.609013e+01 8.513082e+01 lineto -6.719587e+01 8.520243e+01 lineto -6.719587e+01 8.800243e+01 lineto -6.609013e+01 8.793082e+01 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -6.609013e+01 9.073082e+01 moveto -6.609013e+01 8.793082e+01 lineto -6.719587e+01 8.800243e+01 lineto -6.719587e+01 9.080243e+01 lineto -6.609013e+01 9.073082e+01 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -6.609013e+01 9.353082e+01 moveto -6.609013e+01 9.073082e+01 lineto -6.719587e+01 9.080243e+01 lineto -6.719587e+01 9.360243e+01 lineto -6.609013e+01 9.353082e+01 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -6.609013e+01 9.633082e+01 moveto -6.609013e+01 9.353082e+01 lineto -6.719587e+01 9.360243e+01 lineto -6.719587e+01 9.640243e+01 lineto -6.609013e+01 9.633082e+01 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -6.609013e+01 9.913082e+01 moveto -6.609013e+01 9.633082e+01 lineto -6.719587e+01 9.640243e+01 lineto -6.719587e+01 9.920243e+01 lineto -6.609013e+01 9.913082e+01 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -6.609013e+01 1.019308e+02 moveto -6.609013e+01 9.913082e+01 lineto -6.719587e+01 9.920243e+01 lineto -6.719587e+01 1.020024e+02 lineto -6.609013e+01 1.019308e+02 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -6.609013e+01 1.047308e+02 moveto -6.609013e+01 1.019308e+02 lineto -6.719587e+01 1.020024e+02 lineto -6.719587e+01 1.048024e+02 lineto -6.609013e+01 1.047308e+02 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -6.609013e+01 1.075308e+02 moveto -6.609013e+01 1.047308e+02 lineto -6.719587e+01 1.048024e+02 lineto -6.719587e+01 1.076024e+02 lineto -6.609013e+01 1.075308e+02 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -6.609013e+01 1.103308e+02 moveto -6.609013e+01 1.075308e+02 lineto -6.719587e+01 1.076024e+02 lineto -6.719587e+01 1.104024e+02 lineto -6.609013e+01 1.103308e+02 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -6.719587e+01 8.520243e+01 moveto -6.719587e+01 8.240243e+01 lineto -6.828808e+01 8.249374e+01 lineto -6.828808e+01 8.529374e+01 lineto -6.719587e+01 8.520243e+01 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -6.719587e+01 8.800243e+01 moveto -6.719587e+01 8.520243e+01 lineto -6.828808e+01 8.529374e+01 lineto -6.828808e+01 8.809374e+01 lineto -6.719587e+01 8.800243e+01 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -6.719587e+01 9.080243e+01 moveto -6.719587e+01 8.800243e+01 lineto -6.828808e+01 8.809374e+01 lineto -6.828808e+01 9.089374e+01 lineto -6.719587e+01 9.080243e+01 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -6.719587e+01 9.360243e+01 moveto -6.719587e+01 9.080243e+01 lineto -6.828808e+01 9.089374e+01 lineto -6.828808e+01 9.369374e+01 lineto -6.719587e+01 9.360243e+01 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -6.719587e+01 9.640243e+01 moveto -6.719587e+01 9.360243e+01 lineto -6.828808e+01 9.369374e+01 lineto -6.828808e+01 9.649374e+01 lineto -6.719587e+01 9.640243e+01 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -6.719587e+01 9.920243e+01 moveto -6.719587e+01 9.640243e+01 lineto -6.828808e+01 9.649374e+01 lineto -6.828808e+01 9.929374e+01 lineto -6.719587e+01 9.920243e+01 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -6.719587e+01 1.020024e+02 moveto -6.719587e+01 9.920243e+01 lineto -6.828808e+01 9.929374e+01 lineto -6.828808e+01 1.020937e+02 lineto -6.719587e+01 1.020024e+02 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -6.719587e+01 1.048024e+02 moveto -6.719587e+01 1.020024e+02 lineto -6.828808e+01 1.020937e+02 lineto -6.828808e+01 1.048937e+02 lineto -6.719587e+01 1.048024e+02 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -6.719587e+01 1.076024e+02 moveto -6.719587e+01 1.048024e+02 lineto -6.828808e+01 1.048937e+02 lineto -6.828808e+01 1.076937e+02 lineto -6.719587e+01 1.076024e+02 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -6.719587e+01 1.104024e+02 moveto -6.719587e+01 1.076024e+02 lineto -6.828808e+01 1.076937e+02 lineto -6.828808e+01 1.104937e+02 lineto -6.719587e+01 1.104024e+02 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -6.828808e+01 8.529374e+01 moveto -6.828808e+01 8.249374e+01 lineto -6.936001e+01 8.26042e+01 lineto -6.936001e+01 8.54042e+01 lineto -6.828808e+01 8.529374e+01 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -6.828808e+01 8.809374e+01 moveto -6.828808e+01 8.529374e+01 lineto -6.936001e+01 8.54042e+01 lineto -6.936001e+01 8.82042e+01 lineto -6.828808e+01 8.809374e+01 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -6.828808e+01 9.089374e+01 moveto -6.828808e+01 8.809374e+01 lineto -6.936001e+01 8.82042e+01 lineto -6.936001e+01 9.10042e+01 lineto -6.828808e+01 9.089374e+01 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -6.828808e+01 9.369374e+01 moveto -6.828808e+01 9.089374e+01 lineto -6.936001e+01 9.10042e+01 lineto -6.936001e+01 9.38042e+01 lineto -6.828808e+01 9.369374e+01 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -6.828808e+01 9.649374e+01 moveto -6.828808e+01 9.369374e+01 lineto -6.936001e+01 9.38042e+01 lineto -6.936001e+01 9.66042e+01 lineto -6.828808e+01 9.649374e+01 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -6.828808e+01 9.929374e+01 moveto -6.828808e+01 9.649374e+01 lineto -6.936001e+01 9.66042e+01 lineto -6.936001e+01 9.94042e+01 lineto -6.828808e+01 9.929374e+01 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -6.828808e+01 1.020937e+02 moveto -6.828808e+01 9.929374e+01 lineto -6.936001e+01 9.94042e+01 lineto -6.936001e+01 1.022042e+02 lineto -6.828808e+01 1.020937e+02 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -6.828808e+01 1.048937e+02 moveto -6.828808e+01 1.020937e+02 lineto -6.936001e+01 1.022042e+02 lineto -6.936001e+01 1.050042e+02 lineto -6.828808e+01 1.048937e+02 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -6.828808e+01 1.076937e+02 moveto -6.828808e+01 1.048937e+02 lineto -6.936001e+01 1.050042e+02 lineto -6.936001e+01 1.078042e+02 lineto -6.828808e+01 1.076937e+02 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -6.828808e+01 1.104937e+02 moveto -6.828808e+01 1.076937e+02 lineto -6.936001e+01 1.078042e+02 lineto -6.936001e+01 1.106042e+02 lineto -6.828808e+01 1.104937e+02 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -6.936001e+01 8.54042e+01 moveto -6.936001e+01 8.26042e+01 lineto -7.040507e+01 8.273311e+01 lineto -7.040507e+01 8.553311e+01 lineto -6.936001e+01 8.54042e+01 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -6.936001e+01 8.82042e+01 moveto -6.936001e+01 8.54042e+01 lineto -7.040507e+01 8.553311e+01 lineto -7.040507e+01 8.833311e+01 lineto -6.936001e+01 8.82042e+01 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -6.936001e+01 9.10042e+01 moveto -6.936001e+01 8.82042e+01 lineto -7.040507e+01 8.833311e+01 lineto -7.040507e+01 9.113311e+01 lineto -6.936001e+01 9.10042e+01 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -6.936001e+01 9.38042e+01 moveto -6.936001e+01 9.10042e+01 lineto -7.040507e+01 9.113311e+01 lineto -7.040507e+01 9.393311e+01 lineto -6.936001e+01 9.38042e+01 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -6.936001e+01 9.66042e+01 moveto -6.936001e+01 9.38042e+01 lineto -7.040507e+01 9.393311e+01 lineto -7.040507e+01 9.673311e+01 lineto -6.936001e+01 9.66042e+01 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -6.936001e+01 9.94042e+01 moveto -6.936001e+01 9.66042e+01 lineto -7.040507e+01 9.673311e+01 lineto -7.040507e+01 9.953311e+01 lineto -6.936001e+01 9.94042e+01 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -6.936001e+01 1.022042e+02 moveto -6.936001e+01 9.94042e+01 lineto -7.040507e+01 9.953311e+01 lineto -7.040507e+01 1.023331e+02 lineto -6.936001e+01 1.022042e+02 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -6.936001e+01 1.050042e+02 moveto -6.936001e+01 1.022042e+02 lineto -7.040507e+01 1.023331e+02 lineto -7.040507e+01 1.051331e+02 lineto -6.936001e+01 1.050042e+02 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -6.936001e+01 1.078042e+02 moveto -6.936001e+01 1.050042e+02 lineto -7.040507e+01 1.051331e+02 lineto -7.040507e+01 1.079331e+02 lineto -6.936001e+01 1.078042e+02 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -6.936001e+01 1.106042e+02 moveto -6.936001e+01 1.078042e+02 lineto -7.040507e+01 1.079331e+02 lineto -7.040507e+01 1.107331e+02 lineto -6.936001e+01 1.106042e+02 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -7.040507e+01 8.553311e+01 moveto -7.040507e+01 8.273311e+01 lineto -7.14168e+01 8.287968e+01 lineto -7.14168e+01 8.567968e+01 lineto -7.040507e+01 8.553311e+01 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -7.040507e+01 8.833311e+01 moveto -7.040507e+01 8.553311e+01 lineto -7.14168e+01 8.567968e+01 lineto -7.14168e+01 8.847968e+01 lineto -7.040507e+01 8.833311e+01 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -7.040507e+01 9.113311e+01 moveto -7.040507e+01 8.833311e+01 lineto -7.14168e+01 8.847968e+01 lineto -7.14168e+01 9.127968e+01 lineto -7.040507e+01 9.113311e+01 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -7.040507e+01 9.393311e+01 moveto -7.040507e+01 9.113311e+01 lineto -7.14168e+01 9.127968e+01 lineto -7.14168e+01 9.407968e+01 lineto -7.040507e+01 9.393311e+01 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -7.040507e+01 9.673311e+01 moveto -7.040507e+01 9.393311e+01 lineto -7.14168e+01 9.407968e+01 lineto -7.14168e+01 9.687968e+01 lineto -7.040507e+01 9.673311e+01 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -7.040507e+01 9.953311e+01 moveto -7.040507e+01 9.673311e+01 lineto -7.14168e+01 9.687968e+01 lineto -7.14168e+01 9.967968e+01 lineto -7.040507e+01 9.953311e+01 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -7.040507e+01 1.023331e+02 moveto -7.040507e+01 9.953311e+01 lineto -7.14168e+01 9.967968e+01 lineto -7.14168e+01 1.024797e+02 lineto -7.040507e+01 1.023331e+02 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -7.040507e+01 1.051331e+02 moveto -7.040507e+01 1.023331e+02 lineto -7.14168e+01 1.024797e+02 lineto -7.14168e+01 1.052797e+02 lineto -7.040507e+01 1.051331e+02 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -7.040507e+01 1.079331e+02 moveto -7.040507e+01 1.051331e+02 lineto -7.14168e+01 1.052797e+02 lineto -7.14168e+01 1.080797e+02 lineto -7.040507e+01 1.079331e+02 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -7.040507e+01 1.107331e+02 moveto -7.040507e+01 1.079331e+02 lineto -7.14168e+01 1.080797e+02 lineto -7.14168e+01 1.108797e+02 lineto -7.040507e+01 1.107331e+02 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -7.14168e+01 8.567968e+01 moveto -7.14168e+01 8.287968e+01 lineto -7.238896e+01 8.304302e+01 lineto -7.238896e+01 8.584302e+01 lineto -7.14168e+01 8.567968e+01 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -7.14168e+01 8.847968e+01 moveto -7.14168e+01 8.567968e+01 lineto -7.238896e+01 8.584302e+01 lineto -7.238896e+01 8.864302e+01 lineto -7.14168e+01 8.847968e+01 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -7.14168e+01 9.127968e+01 moveto -7.14168e+01 8.847968e+01 lineto -7.238896e+01 8.864302e+01 lineto -7.238896e+01 9.144302e+01 lineto -7.14168e+01 9.127968e+01 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -7.14168e+01 9.407968e+01 moveto -7.14168e+01 9.127968e+01 lineto -7.238896e+01 9.144302e+01 lineto -7.238896e+01 9.424302e+01 lineto -7.14168e+01 9.407968e+01 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -7.14168e+01 9.687968e+01 moveto -7.14168e+01 9.407968e+01 lineto -7.238896e+01 9.424302e+01 lineto -7.238896e+01 9.704302e+01 lineto -7.14168e+01 9.687968e+01 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -7.14168e+01 9.967968e+01 moveto -7.14168e+01 9.687968e+01 lineto -7.238896e+01 9.704302e+01 lineto -7.238896e+01 9.984302e+01 lineto -7.14168e+01 9.967968e+01 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -7.14168e+01 1.024797e+02 moveto -7.14168e+01 9.967968e+01 lineto -7.238896e+01 9.984302e+01 lineto -7.238896e+01 1.02643e+02 lineto -7.14168e+01 1.024797e+02 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -7.14168e+01 1.052797e+02 moveto -7.14168e+01 1.024797e+02 lineto -7.238896e+01 1.02643e+02 lineto -7.238896e+01 1.05443e+02 lineto -7.14168e+01 1.052797e+02 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -7.14168e+01 1.080797e+02 moveto -7.14168e+01 1.052797e+02 lineto -7.238896e+01 1.05443e+02 lineto -7.238896e+01 1.08243e+02 lineto -7.14168e+01 1.080797e+02 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -7.14168e+01 1.108797e+02 moveto -7.14168e+01 1.080797e+02 lineto -7.238896e+01 1.08243e+02 lineto -7.238896e+01 1.11043e+02 lineto -7.14168e+01 1.108797e+02 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -7.238896e+01 8.584302e+01 moveto -7.238896e+01 8.304302e+01 lineto -7.331558e+01 8.32221e+01 lineto -7.331558e+01 8.60221e+01 lineto -7.238896e+01 8.584302e+01 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -7.238896e+01 8.864302e+01 moveto -7.238896e+01 8.584302e+01 lineto -7.331558e+01 8.60221e+01 lineto -7.331558e+01 8.88221e+01 lineto -7.238896e+01 8.864302e+01 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -7.238896e+01 9.144302e+01 moveto -7.238896e+01 8.864302e+01 lineto -7.331558e+01 8.88221e+01 lineto -7.331558e+01 9.16221e+01 lineto -7.238896e+01 9.144302e+01 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -7.238896e+01 9.424302e+01 moveto -7.238896e+01 9.144302e+01 lineto -7.331558e+01 9.16221e+01 lineto -7.331558e+01 9.44221e+01 lineto -7.238896e+01 9.424302e+01 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -7.238896e+01 9.704302e+01 moveto -7.238896e+01 9.424302e+01 lineto -7.331558e+01 9.44221e+01 lineto -7.331558e+01 9.72221e+01 lineto -7.238896e+01 9.704302e+01 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -7.238896e+01 9.984302e+01 moveto -7.238896e+01 9.704302e+01 lineto -7.331558e+01 9.72221e+01 lineto -7.331558e+01 1.000221e+02 lineto -7.238896e+01 9.984302e+01 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -7.238896e+01 1.02643e+02 moveto -7.238896e+01 9.984302e+01 lineto -7.331558e+01 1.000221e+02 lineto -7.331558e+01 1.028221e+02 lineto -7.238896e+01 1.02643e+02 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -7.238896e+01 1.05443e+02 moveto -7.238896e+01 1.02643e+02 lineto -7.331558e+01 1.028221e+02 lineto -7.331558e+01 1.056221e+02 lineto -7.238896e+01 1.05443e+02 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -7.238896e+01 1.08243e+02 moveto -7.238896e+01 1.05443e+02 lineto -7.331558e+01 1.056221e+02 lineto -7.331558e+01 1.084221e+02 lineto -7.238896e+01 1.08243e+02 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -7.238896e+01 1.11043e+02 moveto -7.238896e+01 1.08243e+02 lineto -7.331558e+01 1.084221e+02 lineto -7.331558e+01 1.112221e+02 lineto -7.238896e+01 1.11043e+02 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -7.331558e+01 8.60221e+01 moveto -7.331558e+01 8.32221e+01 lineto -7.419092e+01 8.341583e+01 lineto -7.419092e+01 8.621583e+01 lineto -7.331558e+01 8.60221e+01 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -7.331558e+01 8.88221e+01 moveto -7.331558e+01 8.60221e+01 lineto -7.419092e+01 8.621583e+01 lineto -7.419092e+01 8.901583e+01 lineto -7.331558e+01 8.88221e+01 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -7.331558e+01 9.16221e+01 moveto -7.331558e+01 8.88221e+01 lineto -7.419092e+01 8.901583e+01 lineto -7.419092e+01 9.181583e+01 lineto -7.331558e+01 9.16221e+01 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -7.331558e+01 9.44221e+01 moveto -7.331558e+01 9.16221e+01 lineto -7.419092e+01 9.181583e+01 lineto -7.419092e+01 9.461583e+01 lineto -7.331558e+01 9.44221e+01 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -7.331558e+01 9.72221e+01 moveto -7.331558e+01 9.44221e+01 lineto -7.419092e+01 9.461583e+01 lineto -7.419092e+01 9.741583e+01 lineto -7.331558e+01 9.72221e+01 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -7.331558e+01 1.000221e+02 moveto -7.331558e+01 9.72221e+01 lineto -7.419092e+01 9.741583e+01 lineto -7.419092e+01 1.002158e+02 lineto -7.331558e+01 1.000221e+02 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -7.331558e+01 1.028221e+02 moveto -7.331558e+01 1.000221e+02 lineto -7.419092e+01 1.002158e+02 lineto -7.419092e+01 1.030158e+02 lineto -7.331558e+01 1.028221e+02 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -7.331558e+01 1.056221e+02 moveto -7.331558e+01 1.028221e+02 lineto -7.419092e+01 1.030158e+02 lineto -7.419092e+01 1.058158e+02 lineto -7.331558e+01 1.056221e+02 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -7.331558e+01 1.084221e+02 moveto -7.331558e+01 1.056221e+02 lineto -7.419092e+01 1.058158e+02 lineto -7.419092e+01 1.086158e+02 lineto -7.331558e+01 1.084221e+02 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -7.331558e+01 1.112221e+02 moveto -7.331558e+01 1.084221e+02 lineto -7.419092e+01 1.086158e+02 lineto -7.419092e+01 1.114158e+02 lineto -7.331558e+01 1.112221e+02 lineto -closepath -gsave -7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor -fill -grestore -newpath -7.419092e+01 8.621583e+01 moveto -7.419092e+01 8.341583e+01 lineto -7.50096e+01 8.362302e+01 lineto -7.50096e+01 8.642302e+01 lineto -7.419092e+01 8.621583e+01 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -7.419092e+01 8.901583e+01 moveto -7.419092e+01 8.621583e+01 lineto -7.50096e+01 8.642302e+01 lineto -7.50096e+01 8.922302e+01 lineto -7.419092e+01 8.901583e+01 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -7.419092e+01 9.181583e+01 moveto -7.419092e+01 8.901583e+01 lineto -7.50096e+01 8.922302e+01 lineto -7.50096e+01 9.202302e+01 lineto -7.419092e+01 9.181583e+01 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -7.419092e+01 9.461583e+01 moveto -7.419092e+01 9.181583e+01 lineto -7.50096e+01 9.202302e+01 lineto -7.50096e+01 9.482302e+01 lineto -7.419092e+01 9.461583e+01 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -7.419092e+01 9.741583e+01 moveto -7.419092e+01 9.461583e+01 lineto -7.50096e+01 9.482302e+01 lineto -7.50096e+01 9.762302e+01 lineto -7.419092e+01 9.741583e+01 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -7.419092e+01 1.002158e+02 moveto -7.419092e+01 9.741583e+01 lineto -7.50096e+01 9.762302e+01 lineto -7.50096e+01 1.00423e+02 lineto -7.419092e+01 1.002158e+02 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -7.419092e+01 1.030158e+02 moveto -7.419092e+01 1.002158e+02 lineto -7.50096e+01 1.00423e+02 lineto -7.50096e+01 1.03223e+02 lineto -7.419092e+01 1.030158e+02 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -7.419092e+01 1.058158e+02 moveto -7.419092e+01 1.030158e+02 lineto -7.50096e+01 1.03223e+02 lineto -7.50096e+01 1.06023e+02 lineto -7.419092e+01 1.058158e+02 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -7.419092e+01 1.086158e+02 moveto -7.419092e+01 1.058158e+02 lineto -7.50096e+01 1.06023e+02 lineto -7.50096e+01 1.08823e+02 lineto -7.419092e+01 1.086158e+02 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -7.419092e+01 1.114158e+02 moveto -7.419092e+01 1.086158e+02 lineto -7.50096e+01 1.08823e+02 lineto -7.50096e+01 1.11623e+02 lineto -7.419092e+01 1.114158e+02 lineto -closepath -gsave -7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor -fill -grestore -newpath -7.50096e+01 8.642302e+01 moveto -7.50096e+01 8.362302e+01 lineto -7.576657e+01 8.384238e+01 lineto -7.576657e+01 8.664238e+01 lineto -7.50096e+01 8.642302e+01 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -7.50096e+01 8.922302e+01 moveto -7.50096e+01 8.642302e+01 lineto -7.576657e+01 8.664238e+01 lineto -7.576657e+01 8.944238e+01 lineto -7.50096e+01 8.922302e+01 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -7.50096e+01 9.202302e+01 moveto -7.50096e+01 8.922302e+01 lineto -7.576657e+01 8.944238e+01 lineto -7.576657e+01 9.224238e+01 lineto -7.50096e+01 9.202302e+01 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -7.50096e+01 9.482302e+01 moveto -7.50096e+01 9.202302e+01 lineto -7.576657e+01 9.224238e+01 lineto -7.576657e+01 9.504238e+01 lineto -7.50096e+01 9.482302e+01 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -7.50096e+01 9.762302e+01 moveto -7.50096e+01 9.482302e+01 lineto -7.576657e+01 9.504238e+01 lineto -7.576657e+01 9.784238e+01 lineto -7.50096e+01 9.762302e+01 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -7.50096e+01 1.00423e+02 moveto -7.50096e+01 9.762302e+01 lineto -7.576657e+01 9.784238e+01 lineto -7.576657e+01 1.006424e+02 lineto -7.50096e+01 1.00423e+02 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -7.50096e+01 1.03223e+02 moveto -7.50096e+01 1.00423e+02 lineto -7.576657e+01 1.006424e+02 lineto -7.576657e+01 1.034424e+02 lineto -7.50096e+01 1.03223e+02 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -7.50096e+01 1.06023e+02 moveto -7.50096e+01 1.03223e+02 lineto -7.576657e+01 1.034424e+02 lineto -7.576657e+01 1.062424e+02 lineto -7.50096e+01 1.06023e+02 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -7.50096e+01 1.08823e+02 moveto -7.50096e+01 1.06023e+02 lineto -7.576657e+01 1.062424e+02 lineto -7.576657e+01 1.090424e+02 lineto -7.50096e+01 1.08823e+02 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -7.50096e+01 1.11623e+02 moveto -7.50096e+01 1.08823e+02 lineto -7.576657e+01 1.090424e+02 lineto -7.576657e+01 1.118424e+02 lineto -7.50096e+01 1.11623e+02 lineto -closepath -gsave -7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor -fill -grestore -newpath -7.576657e+01 8.664238e+01 moveto -7.576657e+01 8.384238e+01 lineto -7.645715e+01 8.407257e+01 lineto -7.645715e+01 8.687257e+01 lineto -7.576657e+01 8.664238e+01 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -7.576657e+01 8.944238e+01 moveto -7.576657e+01 8.664238e+01 lineto -7.645715e+01 8.687257e+01 lineto -7.645715e+01 8.967257e+01 lineto -7.576657e+01 8.944238e+01 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -7.576657e+01 9.224238e+01 moveto -7.576657e+01 8.944238e+01 lineto -7.645715e+01 8.967257e+01 lineto -7.645715e+01 9.247257e+01 lineto -7.576657e+01 9.224238e+01 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -7.576657e+01 9.504238e+01 moveto -7.576657e+01 9.224238e+01 lineto -7.645715e+01 9.247257e+01 lineto -7.645715e+01 9.527257e+01 lineto -7.576657e+01 9.504238e+01 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -7.576657e+01 9.784238e+01 moveto -7.576657e+01 9.504238e+01 lineto -7.645715e+01 9.527257e+01 lineto -7.645715e+01 9.807257e+01 lineto -7.576657e+01 9.784238e+01 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -7.576657e+01 1.006424e+02 moveto -7.576657e+01 9.784238e+01 lineto -7.645715e+01 9.807257e+01 lineto -7.645715e+01 1.008726e+02 lineto -7.576657e+01 1.006424e+02 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -7.576657e+01 1.034424e+02 moveto -7.576657e+01 1.006424e+02 lineto -7.645715e+01 1.008726e+02 lineto -7.645715e+01 1.036726e+02 lineto -7.576657e+01 1.034424e+02 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -7.576657e+01 1.062424e+02 moveto -7.576657e+01 1.034424e+02 lineto -7.645715e+01 1.036726e+02 lineto -7.645715e+01 1.064726e+02 lineto -7.576657e+01 1.062424e+02 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -7.576657e+01 1.090424e+02 moveto -7.576657e+01 1.062424e+02 lineto -7.645715e+01 1.064726e+02 lineto -7.645715e+01 1.092726e+02 lineto -7.576657e+01 1.090424e+02 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -7.576657e+01 1.118424e+02 moveto -7.576657e+01 1.090424e+02 lineto -7.645715e+01 1.092726e+02 lineto -7.645715e+01 1.120726e+02 lineto -7.576657e+01 1.118424e+02 lineto -closepath -gsave -7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor -fill -grestore -newpath -7.645715e+01 8.687257e+01 moveto -7.645715e+01 8.407257e+01 lineto -7.70771e+01 8.431216e+01 lineto -7.70771e+01 8.711216e+01 lineto -7.645715e+01 8.687257e+01 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -7.645715e+01 8.967257e+01 moveto -7.645715e+01 8.687257e+01 lineto -7.70771e+01 8.711216e+01 lineto -7.70771e+01 8.991216e+01 lineto -7.645715e+01 8.967257e+01 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -7.645715e+01 9.247257e+01 moveto -7.645715e+01 8.967257e+01 lineto -7.70771e+01 8.991216e+01 lineto -7.70771e+01 9.271216e+01 lineto -7.645715e+01 9.247257e+01 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -7.645715e+01 9.527257e+01 moveto -7.645715e+01 9.247257e+01 lineto -7.70771e+01 9.271216e+01 lineto -7.70771e+01 9.551216e+01 lineto -7.645715e+01 9.527257e+01 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -7.645715e+01 9.807257e+01 moveto -7.645715e+01 9.527257e+01 lineto -7.70771e+01 9.551216e+01 lineto -7.70771e+01 9.831216e+01 lineto -7.645715e+01 9.807257e+01 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -7.645715e+01 1.008726e+02 moveto -7.645715e+01 9.807257e+01 lineto -7.70771e+01 9.831216e+01 lineto -7.70771e+01 1.011122e+02 lineto -7.645715e+01 1.008726e+02 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -7.645715e+01 1.036726e+02 moveto -7.645715e+01 1.008726e+02 lineto -7.70771e+01 1.011122e+02 lineto -7.70771e+01 1.039122e+02 lineto -7.645715e+01 1.036726e+02 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -7.645715e+01 1.064726e+02 moveto -7.645715e+01 1.036726e+02 lineto -7.70771e+01 1.039122e+02 lineto -7.70771e+01 1.067122e+02 lineto -7.645715e+01 1.064726e+02 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -7.645715e+01 1.092726e+02 moveto -7.645715e+01 1.064726e+02 lineto -7.70771e+01 1.067122e+02 lineto -7.70771e+01 1.095122e+02 lineto -7.645715e+01 1.092726e+02 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -7.645715e+01 1.120726e+02 moveto -7.645715e+01 1.092726e+02 lineto -7.70771e+01 1.095122e+02 lineto -7.70771e+01 1.123122e+02 lineto -7.645715e+01 1.120726e+02 lineto -closepath -gsave -7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor -fill -grestore -newpath -7.70771e+01 8.711216e+01 moveto -7.70771e+01 8.431216e+01 lineto -7.762259e+01 8.455968e+01 lineto -7.762259e+01 8.735968e+01 lineto -7.70771e+01 8.711216e+01 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -7.70771e+01 8.991216e+01 moveto -7.70771e+01 8.711216e+01 lineto -7.762259e+01 8.735968e+01 lineto -7.762259e+01 9.015968e+01 lineto -7.70771e+01 8.991216e+01 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -7.70771e+01 9.271216e+01 moveto -7.70771e+01 8.991216e+01 lineto -7.762259e+01 9.015968e+01 lineto -7.762259e+01 9.295968e+01 lineto -7.70771e+01 9.271216e+01 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -7.70771e+01 9.551216e+01 moveto -7.70771e+01 9.271216e+01 lineto -7.762259e+01 9.295968e+01 lineto -7.762259e+01 9.575968e+01 lineto -7.70771e+01 9.551216e+01 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -7.70771e+01 9.831216e+01 moveto -7.70771e+01 9.551216e+01 lineto -7.762259e+01 9.575968e+01 lineto -7.762259e+01 9.855968e+01 lineto -7.70771e+01 9.831216e+01 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -7.70771e+01 1.011122e+02 moveto -7.70771e+01 9.831216e+01 lineto -7.762259e+01 9.855968e+01 lineto -7.762259e+01 1.013597e+02 lineto -7.70771e+01 1.011122e+02 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -7.70771e+01 1.039122e+02 moveto -7.70771e+01 1.011122e+02 lineto -7.762259e+01 1.013597e+02 lineto -7.762259e+01 1.041597e+02 lineto -7.70771e+01 1.039122e+02 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -7.70771e+01 1.067122e+02 moveto -7.70771e+01 1.039122e+02 lineto -7.762259e+01 1.041597e+02 lineto -7.762259e+01 1.069597e+02 lineto -7.70771e+01 1.067122e+02 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -7.70771e+01 1.095122e+02 moveto -7.70771e+01 1.067122e+02 lineto -7.762259e+01 1.069597e+02 lineto -7.762259e+01 1.097597e+02 lineto -7.70771e+01 1.095122e+02 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -7.70771e+01 1.123122e+02 moveto -7.70771e+01 1.095122e+02 lineto -7.762259e+01 1.097597e+02 lineto -7.762259e+01 1.125597e+02 lineto -7.70771e+01 1.123122e+02 lineto -closepath -gsave -7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor -fill -grestore -newpath -7.762259e+01 8.735968e+01 moveto -7.762259e+01 8.455968e+01 lineto -7.809026e+01 8.48136e+01 lineto -7.809026e+01 8.76136e+01 lineto -7.762259e+01 8.735968e+01 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -7.762259e+01 9.015968e+01 moveto -7.762259e+01 8.735968e+01 lineto -7.809026e+01 8.76136e+01 lineto -7.809026e+01 9.04136e+01 lineto -7.762259e+01 9.015968e+01 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -7.762259e+01 9.295968e+01 moveto -7.762259e+01 9.015968e+01 lineto -7.809026e+01 9.04136e+01 lineto -7.809026e+01 9.32136e+01 lineto -7.762259e+01 9.295968e+01 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -7.762259e+01 9.575968e+01 moveto -7.762259e+01 9.295968e+01 lineto -7.809026e+01 9.32136e+01 lineto -7.809026e+01 9.60136e+01 lineto -7.762259e+01 9.575968e+01 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -7.762259e+01 9.855968e+01 moveto -7.762259e+01 9.575968e+01 lineto -7.809026e+01 9.60136e+01 lineto -7.809026e+01 9.88136e+01 lineto -7.762259e+01 9.855968e+01 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -7.762259e+01 1.013597e+02 moveto -7.762259e+01 9.855968e+01 lineto -7.809026e+01 9.88136e+01 lineto -7.809026e+01 1.016136e+02 lineto -7.762259e+01 1.013597e+02 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -7.762259e+01 1.041597e+02 moveto -7.762259e+01 1.013597e+02 lineto -7.809026e+01 1.016136e+02 lineto -7.809026e+01 1.044136e+02 lineto -7.762259e+01 1.041597e+02 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -7.762259e+01 1.069597e+02 moveto -7.762259e+01 1.041597e+02 lineto -7.809026e+01 1.044136e+02 lineto -7.809026e+01 1.072136e+02 lineto -7.762259e+01 1.069597e+02 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -7.762259e+01 1.097597e+02 moveto -7.762259e+01 1.069597e+02 lineto -7.809026e+01 1.072136e+02 lineto -7.809026e+01 1.100136e+02 lineto -7.762259e+01 1.097597e+02 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -7.762259e+01 1.125597e+02 moveto -7.762259e+01 1.097597e+02 lineto -7.809026e+01 1.100136e+02 lineto -7.809026e+01 1.128136e+02 lineto -7.762259e+01 1.125597e+02 lineto -closepath -gsave -7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor -fill -grestore -newpath -7.809026e+01 8.76136e+01 moveto -7.809026e+01 8.48136e+01 lineto -7.847722e+01 8.507236e+01 lineto -7.847722e+01 8.787236e+01 lineto -7.809026e+01 8.76136e+01 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -7.809026e+01 9.04136e+01 moveto -7.809026e+01 8.76136e+01 lineto -7.847722e+01 8.787236e+01 lineto -7.847722e+01 9.067236e+01 lineto -7.809026e+01 9.04136e+01 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -7.809026e+01 9.32136e+01 moveto -7.809026e+01 9.04136e+01 lineto -7.847722e+01 9.067236e+01 lineto -7.847722e+01 9.347236e+01 lineto -7.809026e+01 9.32136e+01 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -7.809026e+01 9.60136e+01 moveto -7.809026e+01 9.32136e+01 lineto -7.847722e+01 9.347236e+01 lineto -7.847722e+01 9.627236e+01 lineto -7.809026e+01 9.60136e+01 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -7.809026e+01 9.88136e+01 moveto -7.809026e+01 9.60136e+01 lineto -7.847722e+01 9.627236e+01 lineto -7.847722e+01 9.907236e+01 lineto -7.809026e+01 9.88136e+01 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -7.809026e+01 1.016136e+02 moveto -7.809026e+01 9.88136e+01 lineto -7.847722e+01 9.907236e+01 lineto -7.847722e+01 1.018724e+02 lineto -7.809026e+01 1.016136e+02 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -7.809026e+01 1.044136e+02 moveto -7.809026e+01 1.016136e+02 lineto -7.847722e+01 1.018724e+02 lineto -7.847722e+01 1.046724e+02 lineto -7.809026e+01 1.044136e+02 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -7.809026e+01 1.072136e+02 moveto -7.809026e+01 1.044136e+02 lineto -7.847722e+01 1.046724e+02 lineto -7.847722e+01 1.074724e+02 lineto -7.809026e+01 1.072136e+02 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -7.809026e+01 1.100136e+02 moveto -7.809026e+01 1.072136e+02 lineto -7.847722e+01 1.074724e+02 lineto -7.847722e+01 1.102724e+02 lineto -7.809026e+01 1.100136e+02 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -7.809026e+01 1.128136e+02 moveto -7.809026e+01 1.100136e+02 lineto -7.847722e+01 1.102724e+02 lineto -7.847722e+01 1.130724e+02 lineto -7.809026e+01 1.128136e+02 lineto -closepath -gsave -6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor -fill -grestore -newpath -7.847722e+01 8.787236e+01 moveto -7.847722e+01 8.507236e+01 lineto -7.878109e+01 8.533436e+01 lineto -7.878109e+01 8.813436e+01 lineto -7.847722e+01 8.787236e+01 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -7.847722e+01 9.067236e+01 moveto -7.847722e+01 8.787236e+01 lineto -7.878109e+01 8.813436e+01 lineto -7.878109e+01 9.093436e+01 lineto -7.847722e+01 9.067236e+01 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -7.847722e+01 9.347236e+01 moveto -7.847722e+01 9.067236e+01 lineto -7.878109e+01 9.093436e+01 lineto -7.878109e+01 9.373436e+01 lineto -7.847722e+01 9.347236e+01 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -7.847722e+01 9.627236e+01 moveto -7.847722e+01 9.347236e+01 lineto -7.878109e+01 9.373436e+01 lineto -7.878109e+01 9.653436e+01 lineto -7.847722e+01 9.627236e+01 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -7.847722e+01 9.907236e+01 moveto -7.847722e+01 9.627236e+01 lineto -7.878109e+01 9.653436e+01 lineto -7.878109e+01 9.933436e+01 lineto -7.847722e+01 9.907236e+01 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -7.847722e+01 1.018724e+02 moveto -7.847722e+01 9.907236e+01 lineto -7.878109e+01 9.933436e+01 lineto -7.878109e+01 1.021344e+02 lineto -7.847722e+01 1.018724e+02 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -7.847722e+01 1.046724e+02 moveto -7.847722e+01 1.018724e+02 lineto -7.878109e+01 1.021344e+02 lineto -7.878109e+01 1.049344e+02 lineto -7.847722e+01 1.046724e+02 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -7.847722e+01 1.074724e+02 moveto -7.847722e+01 1.046724e+02 lineto -7.878109e+01 1.049344e+02 lineto -7.878109e+01 1.077344e+02 lineto -7.847722e+01 1.074724e+02 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -7.847722e+01 1.102724e+02 moveto -7.847722e+01 1.074724e+02 lineto -7.878109e+01 1.077344e+02 lineto -7.878109e+01 1.105344e+02 lineto -7.847722e+01 1.102724e+02 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -7.847722e+01 1.130724e+02 moveto -7.847722e+01 1.102724e+02 lineto -7.878109e+01 1.105344e+02 lineto -7.878109e+01 1.133344e+02 lineto -7.847722e+01 1.130724e+02 lineto -closepath -gsave -6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor -fill -grestore -newpath -7.878109e+01 8.813436e+01 moveto -7.878109e+01 8.533436e+01 lineto -7.9e+01 8.559798e+01 lineto -7.9e+01 8.839798e+01 lineto -7.878109e+01 8.813436e+01 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -7.878109e+01 9.093436e+01 moveto -7.878109e+01 8.813436e+01 lineto -7.9e+01 8.839798e+01 lineto -7.9e+01 9.119798e+01 lineto -7.878109e+01 9.093436e+01 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -7.878109e+01 9.373436e+01 moveto -7.878109e+01 9.093436e+01 lineto -7.9e+01 9.119798e+01 lineto -7.9e+01 9.399798e+01 lineto -7.878109e+01 9.373436e+01 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -7.878109e+01 9.653436e+01 moveto -7.878109e+01 9.373436e+01 lineto -7.9e+01 9.399798e+01 lineto -7.9e+01 9.679798e+01 lineto -7.878109e+01 9.653436e+01 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -7.878109e+01 9.933436e+01 moveto -7.878109e+01 9.653436e+01 lineto -7.9e+01 9.679798e+01 lineto -7.9e+01 9.959798e+01 lineto -7.878109e+01 9.933436e+01 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -7.878109e+01 1.021344e+02 moveto -7.878109e+01 9.933436e+01 lineto -7.9e+01 9.959798e+01 lineto -7.9e+01 1.02398e+02 lineto -7.878109e+01 1.021344e+02 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -7.878109e+01 1.049344e+02 moveto -7.878109e+01 1.021344e+02 lineto -7.9e+01 1.02398e+02 lineto -7.9e+01 1.05198e+02 lineto -7.878109e+01 1.049344e+02 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -7.878109e+01 1.077344e+02 moveto -7.878109e+01 1.049344e+02 lineto -7.9e+01 1.05198e+02 lineto -7.9e+01 1.07998e+02 lineto -7.878109e+01 1.077344e+02 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -7.878109e+01 1.105344e+02 moveto -7.878109e+01 1.077344e+02 lineto -7.9e+01 1.07998e+02 lineto -7.9e+01 1.10798e+02 lineto -7.878109e+01 1.105344e+02 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -7.878109e+01 1.133344e+02 moveto -7.878109e+01 1.105344e+02 lineto -7.9e+01 1.10798e+02 lineto -7.9e+01 1.13598e+02 lineto -7.878109e+01 1.133344e+02 lineto -closepath -gsave -6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor -fill -grestore -newpath -7.9e+01 8.839798e+01 moveto -7.9e+01 8.559798e+01 lineto -7.913259e+01 8.58616e+01 lineto -7.913259e+01 8.86616e+01 lineto -7.9e+01 8.839798e+01 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -7.9e+01 9.119798e+01 moveto -7.9e+01 8.839798e+01 lineto -7.913259e+01 8.86616e+01 lineto -7.913259e+01 9.14616e+01 lineto -7.9e+01 9.119798e+01 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -7.9e+01 9.399798e+01 moveto -7.9e+01 9.119798e+01 lineto -7.913259e+01 9.14616e+01 lineto -7.913259e+01 9.42616e+01 lineto -7.9e+01 9.399798e+01 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -7.9e+01 9.679798e+01 moveto -7.9e+01 9.399798e+01 lineto -7.913259e+01 9.42616e+01 lineto -7.913259e+01 9.70616e+01 lineto -7.9e+01 9.679798e+01 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -7.9e+01 9.959798e+01 moveto -7.9e+01 9.679798e+01 lineto -7.913259e+01 9.70616e+01 lineto -7.913259e+01 9.98616e+01 lineto -7.9e+01 9.959798e+01 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -7.9e+01 1.02398e+02 moveto -7.9e+01 9.959798e+01 lineto -7.913259e+01 9.98616e+01 lineto -7.913259e+01 1.026616e+02 lineto -7.9e+01 1.02398e+02 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -7.9e+01 1.05198e+02 moveto -7.9e+01 1.02398e+02 lineto -7.913259e+01 1.026616e+02 lineto -7.913259e+01 1.054616e+02 lineto -7.9e+01 1.05198e+02 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -7.9e+01 1.07998e+02 moveto -7.9e+01 1.05198e+02 lineto -7.913259e+01 1.054616e+02 lineto -7.913259e+01 1.082616e+02 lineto -7.9e+01 1.07998e+02 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -7.9e+01 1.10798e+02 moveto -7.9e+01 1.07998e+02 lineto -7.913259e+01 1.082616e+02 lineto -7.913259e+01 1.110616e+02 lineto -7.9e+01 1.10798e+02 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -7.9e+01 1.13598e+02 moveto -7.9e+01 1.10798e+02 lineto -7.913259e+01 1.110616e+02 lineto -7.913259e+01 1.138616e+02 lineto -7.9e+01 1.13598e+02 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -7.913259e+01 8.86616e+01 moveto -7.913259e+01 8.58616e+01 lineto -7.917805e+01 8.61236e+01 lineto -7.917805e+01 8.89236e+01 lineto -7.913259e+01 8.86616e+01 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -7.913259e+01 9.14616e+01 moveto -7.913259e+01 8.86616e+01 lineto -7.917805e+01 8.89236e+01 lineto -7.917805e+01 9.17236e+01 lineto -7.913259e+01 9.14616e+01 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -7.913259e+01 9.42616e+01 moveto -7.913259e+01 9.14616e+01 lineto -7.917805e+01 9.17236e+01 lineto -7.917805e+01 9.45236e+01 lineto -7.913259e+01 9.42616e+01 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -7.913259e+01 9.70616e+01 moveto -7.913259e+01 9.42616e+01 lineto -7.917805e+01 9.45236e+01 lineto -7.917805e+01 9.73236e+01 lineto -7.913259e+01 9.70616e+01 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -7.913259e+01 9.98616e+01 moveto -7.913259e+01 9.70616e+01 lineto -7.917805e+01 9.73236e+01 lineto -7.917805e+01 1.001236e+02 lineto -7.913259e+01 9.98616e+01 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -7.913259e+01 1.026616e+02 moveto -7.913259e+01 9.98616e+01 lineto -7.917805e+01 1.001236e+02 lineto -7.917805e+01 1.029236e+02 lineto -7.913259e+01 1.026616e+02 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -7.913259e+01 1.054616e+02 moveto -7.913259e+01 1.026616e+02 lineto -7.917805e+01 1.029236e+02 lineto -7.917805e+01 1.057236e+02 lineto -7.913259e+01 1.054616e+02 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -7.913259e+01 1.082616e+02 moveto -7.913259e+01 1.054616e+02 lineto -7.917805e+01 1.057236e+02 lineto -7.917805e+01 1.085236e+02 lineto -7.913259e+01 1.082616e+02 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -7.913259e+01 1.110616e+02 moveto -7.913259e+01 1.082616e+02 lineto -7.917805e+01 1.085236e+02 lineto -7.917805e+01 1.113236e+02 lineto -7.913259e+01 1.110616e+02 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -7.913259e+01 1.138616e+02 moveto -7.913259e+01 1.110616e+02 lineto -7.917805e+01 1.113236e+02 lineto -7.917805e+01 1.141236e+02 lineto -7.913259e+01 1.138616e+02 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -5.082195e+01 8.787236e+01 moveto -5.082195e+01 8.507236e+01 lineto -5.08639e+01 8.48136e+01 lineto -5.08639e+01 8.76136e+01 lineto -5.082195e+01 8.787236e+01 lineto -closepath -gsave -4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor -fill -grestore -newpath -5.082195e+01 9.067236e+01 moveto -5.082195e+01 8.787236e+01 lineto -5.08639e+01 8.76136e+01 lineto -5.08639e+01 9.04136e+01 lineto -5.082195e+01 9.067236e+01 lineto -closepath -gsave -4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor -fill -grestore -newpath -5.082195e+01 9.347236e+01 moveto -5.082195e+01 9.067236e+01 lineto -5.08639e+01 9.04136e+01 lineto -5.08639e+01 9.32136e+01 lineto -5.082195e+01 9.347236e+01 lineto -closepath -gsave -4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor -fill -grestore -newpath -5.082195e+01 9.627236e+01 moveto -5.082195e+01 9.347236e+01 lineto -5.08639e+01 9.32136e+01 lineto -5.08639e+01 9.60136e+01 lineto -5.082195e+01 9.627236e+01 lineto -closepath -gsave -4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor -fill -grestore -newpath -5.082195e+01 9.907236e+01 moveto -5.082195e+01 9.627236e+01 lineto -5.08639e+01 9.60136e+01 lineto -5.08639e+01 9.88136e+01 lineto -5.082195e+01 9.907236e+01 lineto -closepath -gsave -4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor -fill -grestore -newpath -5.082195e+01 1.018724e+02 moveto -5.082195e+01 9.907236e+01 lineto -5.08639e+01 9.88136e+01 lineto -5.08639e+01 1.016136e+02 lineto -5.082195e+01 1.018724e+02 lineto -closepath -gsave -4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor -fill -grestore -newpath -5.082195e+01 1.046724e+02 moveto -5.082195e+01 1.018724e+02 lineto -5.08639e+01 1.016136e+02 lineto -5.08639e+01 1.044136e+02 lineto -5.082195e+01 1.046724e+02 lineto -closepath -gsave -4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor -fill -grestore -newpath -5.082195e+01 1.074724e+02 moveto -5.082195e+01 1.046724e+02 lineto -5.08639e+01 1.044136e+02 lineto -5.08639e+01 1.072136e+02 lineto -5.082195e+01 1.074724e+02 lineto -closepath -gsave -4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor -fill -grestore -newpath -5.082195e+01 1.102724e+02 moveto -5.082195e+01 1.074724e+02 lineto -5.08639e+01 1.072136e+02 lineto -5.08639e+01 1.100136e+02 lineto -5.082195e+01 1.102724e+02 lineto -closepath -gsave -4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor -fill -grestore -newpath -5.082195e+01 1.130724e+02 moveto -5.082195e+01 1.102724e+02 lineto -5.08639e+01 1.100136e+02 lineto -5.08639e+01 1.128136e+02 lineto -5.082195e+01 1.130724e+02 lineto -closepath -gsave -4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor -fill -grestore -newpath -5.08639e+01 8.76136e+01 moveto -5.08639e+01 8.48136e+01 lineto -5.099301e+01 8.455968e+01 lineto -5.099301e+01 8.735968e+01 lineto -5.08639e+01 8.76136e+01 lineto -closepath -gsave -4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor -fill -grestore -newpath -5.08639e+01 9.04136e+01 moveto -5.08639e+01 8.76136e+01 lineto -5.099301e+01 8.735968e+01 lineto -5.099301e+01 9.015968e+01 lineto -5.08639e+01 9.04136e+01 lineto -closepath -gsave -4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor -fill -grestore -newpath -5.08639e+01 9.32136e+01 moveto -5.08639e+01 9.04136e+01 lineto -5.099301e+01 9.015968e+01 lineto -5.099301e+01 9.295968e+01 lineto -5.08639e+01 9.32136e+01 lineto -closepath -gsave -4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor -fill -grestore -newpath -5.08639e+01 9.60136e+01 moveto -5.08639e+01 9.32136e+01 lineto -5.099301e+01 9.295968e+01 lineto -5.099301e+01 9.575968e+01 lineto -5.08639e+01 9.60136e+01 lineto -closepath -gsave -4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor -fill -grestore -newpath -5.08639e+01 9.88136e+01 moveto -5.08639e+01 9.60136e+01 lineto -5.099301e+01 9.575968e+01 lineto -5.099301e+01 9.855968e+01 lineto -5.08639e+01 9.88136e+01 lineto -closepath -gsave -4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor -fill -grestore -newpath -5.08639e+01 1.016136e+02 moveto -5.08639e+01 9.88136e+01 lineto -5.099301e+01 9.855968e+01 lineto -5.099301e+01 1.013597e+02 lineto -5.08639e+01 1.016136e+02 lineto -closepath -gsave -4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor -fill -grestore -newpath -5.08639e+01 1.044136e+02 moveto -5.08639e+01 1.016136e+02 lineto -5.099301e+01 1.013597e+02 lineto -5.099301e+01 1.041597e+02 lineto -5.08639e+01 1.044136e+02 lineto -closepath -gsave -4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor -fill -grestore -newpath -5.08639e+01 1.072136e+02 moveto -5.08639e+01 1.044136e+02 lineto -5.099301e+01 1.041597e+02 lineto -5.099301e+01 1.069597e+02 lineto -5.08639e+01 1.072136e+02 lineto -closepath -gsave -4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor -fill -grestore -newpath -5.08639e+01 1.100136e+02 moveto -5.08639e+01 1.072136e+02 lineto -5.099301e+01 1.069597e+02 lineto -5.099301e+01 1.097597e+02 lineto -5.08639e+01 1.100136e+02 lineto -closepath -gsave -4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor -fill -grestore -newpath -5.08639e+01 1.128136e+02 moveto -5.08639e+01 1.100136e+02 lineto -5.099301e+01 1.097597e+02 lineto -5.099301e+01 1.125597e+02 lineto -5.08639e+01 1.128136e+02 lineto -closepath -gsave -4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor -fill -grestore -newpath -5.099301e+01 8.735968e+01 moveto -5.099301e+01 8.455968e+01 lineto -5.120848e+01 8.431216e+01 lineto -5.120848e+01 8.711216e+01 lineto -5.099301e+01 8.735968e+01 lineto -closepath -gsave -4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor -fill -grestore -newpath -5.099301e+01 9.015968e+01 moveto -5.099301e+01 8.735968e+01 lineto -5.120848e+01 8.711216e+01 lineto -5.120848e+01 8.991216e+01 lineto -5.099301e+01 9.015968e+01 lineto -closepath -gsave -4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor -fill -grestore -newpath -5.099301e+01 9.295968e+01 moveto -5.099301e+01 9.015968e+01 lineto -5.120848e+01 8.991216e+01 lineto -5.120848e+01 9.271216e+01 lineto -5.099301e+01 9.295968e+01 lineto -closepath -gsave -4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor -fill -grestore -newpath -5.099301e+01 9.575968e+01 moveto -5.099301e+01 9.295968e+01 lineto -5.120848e+01 9.271216e+01 lineto -5.120848e+01 9.551216e+01 lineto -5.099301e+01 9.575968e+01 lineto -closepath -gsave -4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor -fill -grestore -newpath -5.099301e+01 9.855968e+01 moveto -5.099301e+01 9.575968e+01 lineto -5.120848e+01 9.551216e+01 lineto -5.120848e+01 9.831216e+01 lineto -5.099301e+01 9.855968e+01 lineto -closepath -gsave -4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor -fill -grestore -newpath -5.099301e+01 1.013597e+02 moveto -5.099301e+01 9.855968e+01 lineto -5.120848e+01 9.831216e+01 lineto -5.120848e+01 1.011122e+02 lineto -5.099301e+01 1.013597e+02 lineto -closepath -gsave -4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor -fill -grestore -newpath -5.099301e+01 1.041597e+02 moveto -5.099301e+01 1.013597e+02 lineto -5.120848e+01 1.011122e+02 lineto -5.120848e+01 1.039122e+02 lineto -5.099301e+01 1.041597e+02 lineto -closepath -gsave -4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor -fill -grestore -newpath -5.099301e+01 1.069597e+02 moveto -5.099301e+01 1.041597e+02 lineto -5.120848e+01 1.039122e+02 lineto -5.120848e+01 1.067122e+02 lineto -5.099301e+01 1.069597e+02 lineto -closepath -gsave -4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor -fill -grestore -newpath -5.099301e+01 1.097597e+02 moveto -5.099301e+01 1.069597e+02 lineto -5.120848e+01 1.067122e+02 lineto -5.120848e+01 1.095122e+02 lineto -5.099301e+01 1.097597e+02 lineto -closepath -gsave -4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor -fill -grestore -newpath -5.099301e+01 1.125597e+02 moveto -5.099301e+01 1.097597e+02 lineto -5.120848e+01 1.095122e+02 lineto -5.120848e+01 1.123122e+02 lineto -5.099301e+01 1.125597e+02 lineto -closepath -gsave -4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor -fill -grestore -newpath -5.120848e+01 8.711216e+01 moveto -5.120848e+01 8.431216e+01 lineto -5.150897e+01 8.407257e+01 lineto -5.150897e+01 8.687257e+01 lineto -5.120848e+01 8.711216e+01 lineto -closepath -gsave -4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor -fill -grestore -newpath -5.120848e+01 8.991216e+01 moveto -5.120848e+01 8.711216e+01 lineto -5.150897e+01 8.687257e+01 lineto -5.150897e+01 8.967257e+01 lineto -5.120848e+01 8.991216e+01 lineto -closepath -gsave -4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor -fill -grestore -newpath -5.120848e+01 9.271216e+01 moveto -5.120848e+01 8.991216e+01 lineto -5.150897e+01 8.967257e+01 lineto -5.150897e+01 9.247257e+01 lineto -5.120848e+01 9.271216e+01 lineto -closepath -gsave -4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor -fill -grestore -newpath -5.120848e+01 9.551216e+01 moveto -5.120848e+01 9.271216e+01 lineto -5.150897e+01 9.247257e+01 lineto -5.150897e+01 9.527257e+01 lineto -5.120848e+01 9.551216e+01 lineto -closepath -gsave -4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor -fill -grestore -newpath -5.120848e+01 9.831216e+01 moveto -5.120848e+01 9.551216e+01 lineto -5.150897e+01 9.527257e+01 lineto -5.150897e+01 9.807257e+01 lineto -5.120848e+01 9.831216e+01 lineto -closepath -gsave -4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor -fill -grestore -newpath -5.120848e+01 1.011122e+02 moveto -5.120848e+01 9.831216e+01 lineto -5.150897e+01 9.807257e+01 lineto -5.150897e+01 1.008726e+02 lineto -5.120848e+01 1.011122e+02 lineto -closepath -gsave -4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor -fill -grestore -newpath -5.120848e+01 1.039122e+02 moveto -5.120848e+01 1.011122e+02 lineto -5.150897e+01 1.008726e+02 lineto -5.150897e+01 1.036726e+02 lineto -5.120848e+01 1.039122e+02 lineto -closepath -gsave -4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor -fill -grestore -newpath -5.120848e+01 1.067122e+02 moveto -5.120848e+01 1.039122e+02 lineto -5.150897e+01 1.036726e+02 lineto -5.150897e+01 1.064726e+02 lineto -5.120848e+01 1.067122e+02 lineto -closepath -gsave -4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor -fill -grestore -newpath -5.120848e+01 1.095122e+02 moveto -5.120848e+01 1.067122e+02 lineto -5.150897e+01 1.064726e+02 lineto -5.150897e+01 1.092726e+02 lineto -5.120848e+01 1.095122e+02 lineto -closepath -gsave -4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor -fill -grestore -newpath -5.120848e+01 1.123122e+02 moveto -5.120848e+01 1.095122e+02 lineto -5.150897e+01 1.092726e+02 lineto -5.150897e+01 1.120726e+02 lineto -5.120848e+01 1.123122e+02 lineto -closepath -gsave -4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor -fill -grestore -newpath -5.150897e+01 8.687257e+01 moveto -5.150897e+01 8.407257e+01 lineto -5.189264e+01 8.384238e+01 lineto -5.189264e+01 8.664238e+01 lineto -5.150897e+01 8.687257e+01 lineto -closepath -gsave -4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor -fill -grestore -newpath -5.150897e+01 8.967257e+01 moveto -5.150897e+01 8.687257e+01 lineto -5.189264e+01 8.664238e+01 lineto -5.189264e+01 8.944238e+01 lineto -5.150897e+01 8.967257e+01 lineto -closepath -gsave -4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor -fill -grestore -newpath -5.150897e+01 9.247257e+01 moveto -5.150897e+01 8.967257e+01 lineto -5.189264e+01 8.944238e+01 lineto -5.189264e+01 9.224238e+01 lineto -5.150897e+01 9.247257e+01 lineto -closepath -gsave -4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor -fill -grestore -newpath -5.150897e+01 9.527257e+01 moveto -5.150897e+01 9.247257e+01 lineto -5.189264e+01 9.224238e+01 lineto -5.189264e+01 9.504238e+01 lineto -5.150897e+01 9.527257e+01 lineto -closepath -gsave -4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor -fill -grestore -newpath -5.150897e+01 9.807257e+01 moveto -5.150897e+01 9.527257e+01 lineto -5.189264e+01 9.504238e+01 lineto -5.189264e+01 9.784238e+01 lineto -5.150897e+01 9.807257e+01 lineto -closepath -gsave -4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor -fill -grestore -newpath -5.150897e+01 1.008726e+02 moveto -5.150897e+01 9.807257e+01 lineto -5.189264e+01 9.784238e+01 lineto -5.189264e+01 1.006424e+02 lineto -5.150897e+01 1.008726e+02 lineto -closepath -gsave -4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor -fill -grestore -newpath -5.150897e+01 1.036726e+02 moveto -5.150897e+01 1.008726e+02 lineto -5.189264e+01 1.006424e+02 lineto -5.189264e+01 1.034424e+02 lineto -5.150897e+01 1.036726e+02 lineto -closepath -gsave -4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor -fill -grestore -newpath -5.150897e+01 1.064726e+02 moveto -5.150897e+01 1.036726e+02 lineto -5.189264e+01 1.034424e+02 lineto -5.189264e+01 1.062424e+02 lineto -5.150897e+01 1.064726e+02 lineto -closepath -gsave -4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor -fill -grestore -newpath -5.150897e+01 1.092726e+02 moveto -5.150897e+01 1.064726e+02 lineto -5.189264e+01 1.062424e+02 lineto -5.189264e+01 1.090424e+02 lineto -5.150897e+01 1.092726e+02 lineto -closepath -gsave -4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor -fill -grestore -newpath -5.150897e+01 1.120726e+02 moveto -5.150897e+01 1.092726e+02 lineto -5.189264e+01 1.090424e+02 lineto -5.189264e+01 1.118424e+02 lineto -5.150897e+01 1.120726e+02 lineto -closepath -gsave -4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor -fill -grestore -newpath -5.189264e+01 8.664238e+01 moveto -5.189264e+01 8.384238e+01 lineto -5.235712e+01 8.362302e+01 lineto -5.235712e+01 8.642302e+01 lineto -5.189264e+01 8.664238e+01 lineto -closepath -gsave -4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor -fill -grestore -newpath -5.189264e+01 8.944238e+01 moveto -5.189264e+01 8.664238e+01 lineto -5.235712e+01 8.642302e+01 lineto -5.235712e+01 8.922302e+01 lineto -5.189264e+01 8.944238e+01 lineto -closepath -gsave -4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor -fill -grestore -newpath -5.189264e+01 9.224238e+01 moveto -5.189264e+01 8.944238e+01 lineto -5.235712e+01 8.922302e+01 lineto -5.235712e+01 9.202302e+01 lineto -5.189264e+01 9.224238e+01 lineto -closepath -gsave -4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor -fill -grestore -newpath -5.189264e+01 9.504238e+01 moveto -5.189264e+01 9.224238e+01 lineto -5.235712e+01 9.202302e+01 lineto -5.235712e+01 9.482302e+01 lineto -5.189264e+01 9.504238e+01 lineto -closepath -gsave -4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor -fill -grestore -newpath -5.189264e+01 9.784238e+01 moveto -5.189264e+01 9.504238e+01 lineto -5.235712e+01 9.482302e+01 lineto -5.235712e+01 9.762302e+01 lineto -5.189264e+01 9.784238e+01 lineto -closepath -gsave -4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor -fill -grestore -newpath -5.189264e+01 1.006424e+02 moveto -5.189264e+01 9.784238e+01 lineto -5.235712e+01 9.762302e+01 lineto -5.235712e+01 1.00423e+02 lineto -5.189264e+01 1.006424e+02 lineto -closepath -gsave -4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor -fill -grestore -newpath -5.189264e+01 1.034424e+02 moveto -5.189264e+01 1.006424e+02 lineto -5.235712e+01 1.00423e+02 lineto -5.235712e+01 1.03223e+02 lineto -5.189264e+01 1.034424e+02 lineto -closepath -gsave -4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor -fill -grestore -newpath -5.189264e+01 1.062424e+02 moveto -5.189264e+01 1.034424e+02 lineto -5.235712e+01 1.03223e+02 lineto -5.235712e+01 1.06023e+02 lineto -5.189264e+01 1.062424e+02 lineto -closepath -gsave -4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor -fill -grestore -newpath -5.189264e+01 1.090424e+02 moveto -5.189264e+01 1.062424e+02 lineto -5.235712e+01 1.06023e+02 lineto -5.235712e+01 1.08823e+02 lineto -5.189264e+01 1.090424e+02 lineto -closepath -gsave -4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor -fill -grestore -newpath -5.189264e+01 1.118424e+02 moveto -5.189264e+01 1.090424e+02 lineto -5.235712e+01 1.08823e+02 lineto -5.235712e+01 1.11623e+02 lineto -5.189264e+01 1.118424e+02 lineto -closepath -gsave -4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor -fill -grestore -newpath -5.235712e+01 8.642302e+01 moveto -5.235712e+01 8.362302e+01 lineto -5.289955e+01 8.341583e+01 lineto -5.289955e+01 8.621583e+01 lineto -5.235712e+01 8.642302e+01 lineto -closepath -gsave -4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor -fill -grestore -newpath -5.235712e+01 8.922302e+01 moveto -5.235712e+01 8.642302e+01 lineto -5.289955e+01 8.621583e+01 lineto -5.289955e+01 8.901583e+01 lineto -5.235712e+01 8.922302e+01 lineto -closepath -gsave -4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor -fill -grestore -newpath -5.235712e+01 9.202302e+01 moveto -5.235712e+01 8.922302e+01 lineto -5.289955e+01 8.901583e+01 lineto -5.289955e+01 9.181583e+01 lineto -5.235712e+01 9.202302e+01 lineto -closepath -gsave -4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor -fill -grestore -newpath -5.235712e+01 9.482302e+01 moveto -5.235712e+01 9.202302e+01 lineto -5.289955e+01 9.181583e+01 lineto -5.289955e+01 9.461583e+01 lineto -5.235712e+01 9.482302e+01 lineto -closepath -gsave -4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor -fill -grestore -newpath -5.235712e+01 9.762302e+01 moveto -5.235712e+01 9.482302e+01 lineto -5.289955e+01 9.461583e+01 lineto -5.289955e+01 9.741583e+01 lineto -5.235712e+01 9.762302e+01 lineto -closepath -gsave -4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor -fill -grestore -newpath -5.235712e+01 1.00423e+02 moveto -5.235712e+01 9.762302e+01 lineto -5.289955e+01 9.741583e+01 lineto -5.289955e+01 1.002158e+02 lineto -5.235712e+01 1.00423e+02 lineto -closepath -gsave -4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor -fill -grestore -newpath -5.235712e+01 1.03223e+02 moveto -5.235712e+01 1.00423e+02 lineto -5.289955e+01 1.002158e+02 lineto -5.289955e+01 1.030158e+02 lineto -5.235712e+01 1.03223e+02 lineto -closepath -gsave -4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor -fill -grestore -newpath -5.235712e+01 1.06023e+02 moveto -5.235712e+01 1.03223e+02 lineto -5.289955e+01 1.030158e+02 lineto -5.289955e+01 1.058158e+02 lineto -5.235712e+01 1.06023e+02 lineto -closepath -gsave -4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor -fill -grestore -newpath -5.235712e+01 1.08823e+02 moveto -5.235712e+01 1.06023e+02 lineto -5.289955e+01 1.058158e+02 lineto -5.289955e+01 1.086158e+02 lineto -5.235712e+01 1.08823e+02 lineto -closepath -gsave -4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor -fill -grestore -newpath -5.235712e+01 1.11623e+02 moveto -5.235712e+01 1.08823e+02 lineto -5.289955e+01 1.086158e+02 lineto -5.289955e+01 1.114158e+02 lineto -5.235712e+01 1.11623e+02 lineto -closepath -gsave -4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor -fill -grestore -newpath -5.289955e+01 8.621583e+01 moveto -5.289955e+01 8.341583e+01 lineto -5.351659e+01 8.32221e+01 lineto -5.351659e+01 8.60221e+01 lineto -5.289955e+01 8.621583e+01 lineto -closepath -gsave -4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor -fill -grestore -newpath -5.289955e+01 8.901583e+01 moveto -5.289955e+01 8.621583e+01 lineto -5.351659e+01 8.60221e+01 lineto -5.351659e+01 8.88221e+01 lineto -5.289955e+01 8.901583e+01 lineto -closepath -gsave -4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor -fill -grestore -newpath -5.289955e+01 9.181583e+01 moveto -5.289955e+01 8.901583e+01 lineto -5.351659e+01 8.88221e+01 lineto -5.351659e+01 9.16221e+01 lineto -5.289955e+01 9.181583e+01 lineto -closepath -gsave -4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor -fill -grestore -newpath -5.289955e+01 9.461583e+01 moveto -5.289955e+01 9.181583e+01 lineto -5.351659e+01 9.16221e+01 lineto -5.351659e+01 9.44221e+01 lineto -5.289955e+01 9.461583e+01 lineto -closepath -gsave -4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor -fill -grestore -newpath -5.289955e+01 9.741583e+01 moveto -5.289955e+01 9.461583e+01 lineto -5.351659e+01 9.44221e+01 lineto -5.351659e+01 9.72221e+01 lineto -5.289955e+01 9.741583e+01 lineto -closepath -gsave -4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor -fill -grestore -newpath -5.289955e+01 1.002158e+02 moveto -5.289955e+01 9.741583e+01 lineto -5.351659e+01 9.72221e+01 lineto -5.351659e+01 1.000221e+02 lineto -5.289955e+01 1.002158e+02 lineto -closepath -gsave -4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor -fill -grestore -newpath -5.289955e+01 1.030158e+02 moveto -5.289955e+01 1.002158e+02 lineto -5.351659e+01 1.000221e+02 lineto -5.351659e+01 1.028221e+02 lineto -5.289955e+01 1.030158e+02 lineto -closepath -gsave -4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor -fill -grestore -newpath -5.289955e+01 1.058158e+02 moveto -5.289955e+01 1.030158e+02 lineto -5.351659e+01 1.028221e+02 lineto -5.351659e+01 1.056221e+02 lineto -5.289955e+01 1.058158e+02 lineto -closepath -gsave -4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor -fill -grestore -newpath -5.289955e+01 1.086158e+02 moveto -5.289955e+01 1.058158e+02 lineto -5.351659e+01 1.056221e+02 lineto -5.351659e+01 1.084221e+02 lineto -5.289955e+01 1.086158e+02 lineto -closepath -gsave -4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor -fill -grestore -newpath -5.289955e+01 1.114158e+02 moveto -5.289955e+01 1.086158e+02 lineto -5.351659e+01 1.084221e+02 lineto -5.351659e+01 1.112221e+02 lineto -5.289955e+01 1.114158e+02 lineto -closepath -gsave -4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor -fill -grestore -newpath -5.351659e+01 8.60221e+01 moveto -5.351659e+01 8.32221e+01 lineto -5.420442e+01 8.304302e+01 lineto -5.420442e+01 8.584302e+01 lineto -5.351659e+01 8.60221e+01 lineto -closepath -gsave -4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor -fill -grestore -newpath -5.351659e+01 8.88221e+01 moveto -5.351659e+01 8.60221e+01 lineto -5.420442e+01 8.584302e+01 lineto -5.420442e+01 8.864302e+01 lineto -5.351659e+01 8.88221e+01 lineto -closepath -gsave -4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor -fill -grestore -newpath -5.351659e+01 9.16221e+01 moveto -5.351659e+01 8.88221e+01 lineto -5.420442e+01 8.864302e+01 lineto -5.420442e+01 9.144302e+01 lineto -5.351659e+01 9.16221e+01 lineto -closepath -gsave -4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor -fill -grestore -newpath -5.351659e+01 9.44221e+01 moveto -5.351659e+01 9.16221e+01 lineto -5.420442e+01 9.144302e+01 lineto -5.420442e+01 9.424302e+01 lineto -5.351659e+01 9.44221e+01 lineto -closepath -gsave -4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor -fill -grestore -newpath -5.351659e+01 9.72221e+01 moveto -5.351659e+01 9.44221e+01 lineto -5.420442e+01 9.424302e+01 lineto -5.420442e+01 9.704302e+01 lineto -5.351659e+01 9.72221e+01 lineto -closepath -gsave -4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor -fill -grestore -newpath -5.351659e+01 1.000221e+02 moveto -5.351659e+01 9.72221e+01 lineto -5.420442e+01 9.704302e+01 lineto -5.420442e+01 9.984302e+01 lineto -5.351659e+01 1.000221e+02 lineto -closepath -gsave -4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor -fill -grestore -newpath -5.351659e+01 1.028221e+02 moveto -5.351659e+01 1.000221e+02 lineto -5.420442e+01 9.984302e+01 lineto -5.420442e+01 1.02643e+02 lineto -5.351659e+01 1.028221e+02 lineto -closepath -gsave -4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor -fill -grestore -newpath -5.351659e+01 1.056221e+02 moveto -5.351659e+01 1.028221e+02 lineto -5.420442e+01 1.02643e+02 lineto -5.420442e+01 1.05443e+02 lineto -5.351659e+01 1.056221e+02 lineto -closepath -gsave -4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor -fill -grestore -newpath -5.351659e+01 1.084221e+02 moveto -5.351659e+01 1.056221e+02 lineto -5.420442e+01 1.05443e+02 lineto -5.420442e+01 1.08243e+02 lineto -5.351659e+01 1.084221e+02 lineto -closepath -gsave -4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor -fill -grestore -newpath -5.351659e+01 1.112221e+02 moveto -5.351659e+01 1.084221e+02 lineto -5.420442e+01 1.08243e+02 lineto -5.420442e+01 1.11043e+02 lineto -5.351659e+01 1.112221e+02 lineto -closepath -gsave -4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor -fill -grestore -newpath -5.420442e+01 8.584302e+01 moveto -5.420442e+01 8.304302e+01 lineto -5.495881e+01 8.287968e+01 lineto -5.495881e+01 8.567968e+01 lineto -5.420442e+01 8.584302e+01 lineto -closepath -gsave -4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor -fill -grestore -newpath -5.420442e+01 8.864302e+01 moveto -5.420442e+01 8.584302e+01 lineto -5.495881e+01 8.567968e+01 lineto -5.495881e+01 8.847968e+01 lineto -5.420442e+01 8.864302e+01 lineto -closepath -gsave -4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor -fill -grestore -newpath -5.420442e+01 9.144302e+01 moveto -5.420442e+01 8.864302e+01 lineto -5.495881e+01 8.847968e+01 lineto -5.495881e+01 9.127968e+01 lineto -5.420442e+01 9.144302e+01 lineto -closepath -gsave -4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor -fill -grestore -newpath -5.420442e+01 9.424302e+01 moveto -5.420442e+01 9.144302e+01 lineto -5.495881e+01 9.127968e+01 lineto -5.495881e+01 9.407968e+01 lineto -5.420442e+01 9.424302e+01 lineto -closepath -gsave -4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor -fill -grestore -newpath -5.420442e+01 9.704302e+01 moveto -5.420442e+01 9.424302e+01 lineto -5.495881e+01 9.407968e+01 lineto -5.495881e+01 9.687968e+01 lineto -5.420442e+01 9.704302e+01 lineto -closepath -gsave -4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor -fill -grestore -newpath -5.420442e+01 9.984302e+01 moveto -5.420442e+01 9.704302e+01 lineto -5.495881e+01 9.687968e+01 lineto -5.495881e+01 9.967968e+01 lineto -5.420442e+01 9.984302e+01 lineto -closepath -gsave -4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor -fill -grestore -newpath -5.420442e+01 1.02643e+02 moveto -5.420442e+01 9.984302e+01 lineto -5.495881e+01 9.967968e+01 lineto -5.495881e+01 1.024797e+02 lineto -5.420442e+01 1.02643e+02 lineto -closepath -gsave -4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor -fill -grestore -newpath -5.420442e+01 1.05443e+02 moveto -5.420442e+01 1.02643e+02 lineto -5.495881e+01 1.024797e+02 lineto -5.495881e+01 1.052797e+02 lineto -5.420442e+01 1.05443e+02 lineto -closepath -gsave -4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor -fill -grestore -newpath -5.420442e+01 1.08243e+02 moveto -5.420442e+01 1.05443e+02 lineto -5.495881e+01 1.052797e+02 lineto -5.495881e+01 1.080797e+02 lineto -5.420442e+01 1.08243e+02 lineto -closepath -gsave -4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor -fill -grestore -newpath -5.420442e+01 1.11043e+02 moveto -5.420442e+01 1.08243e+02 lineto -5.495881e+01 1.080797e+02 lineto -5.495881e+01 1.108797e+02 lineto -5.420442e+01 1.11043e+02 lineto -closepath -gsave -4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor -fill -grestore -newpath -5.495881e+01 8.567968e+01 moveto -5.495881e+01 8.287968e+01 lineto -5.577511e+01 8.273311e+01 lineto -5.577511e+01 8.553311e+01 lineto -5.495881e+01 8.567968e+01 lineto -closepath -gsave -4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor -fill -grestore -newpath -5.495881e+01 8.847968e+01 moveto -5.495881e+01 8.567968e+01 lineto -5.577511e+01 8.553311e+01 lineto -5.577511e+01 8.833311e+01 lineto -5.495881e+01 8.847968e+01 lineto -closepath -gsave -4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor -fill -grestore -newpath -5.495881e+01 9.127968e+01 moveto -5.495881e+01 8.847968e+01 lineto -5.577511e+01 8.833311e+01 lineto -5.577511e+01 9.113311e+01 lineto -5.495881e+01 9.127968e+01 lineto -closepath -gsave -4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor -fill -grestore -newpath -5.495881e+01 9.407968e+01 moveto -5.495881e+01 9.127968e+01 lineto -5.577511e+01 9.113311e+01 lineto -5.577511e+01 9.393311e+01 lineto -5.495881e+01 9.407968e+01 lineto -closepath -gsave -4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor -fill -grestore -newpath -5.495881e+01 9.687968e+01 moveto -5.495881e+01 9.407968e+01 lineto -5.577511e+01 9.393311e+01 lineto -5.577511e+01 9.673311e+01 lineto -5.495881e+01 9.687968e+01 lineto -closepath -gsave -4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor -fill -grestore -newpath -5.495881e+01 9.967968e+01 moveto -5.495881e+01 9.687968e+01 lineto -5.577511e+01 9.673311e+01 lineto -5.577511e+01 9.953311e+01 lineto -5.495881e+01 9.967968e+01 lineto -closepath -gsave -4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor -fill -grestore -newpath -5.495881e+01 1.024797e+02 moveto -5.495881e+01 9.967968e+01 lineto -5.577511e+01 9.953311e+01 lineto -5.577511e+01 1.023331e+02 lineto -5.495881e+01 1.024797e+02 lineto -closepath -gsave -4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor -fill -grestore -newpath -5.495881e+01 1.052797e+02 moveto -5.495881e+01 1.024797e+02 lineto -5.577511e+01 1.023331e+02 lineto -5.577511e+01 1.051331e+02 lineto -5.495881e+01 1.052797e+02 lineto -closepath -gsave -4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor -fill -grestore -newpath -5.495881e+01 1.080797e+02 moveto -5.495881e+01 1.052797e+02 lineto -5.577511e+01 1.051331e+02 lineto -5.577511e+01 1.079331e+02 lineto -5.495881e+01 1.080797e+02 lineto -closepath -gsave -4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor -fill -grestore -newpath -5.495881e+01 1.108797e+02 moveto -5.495881e+01 1.080797e+02 lineto -5.577511e+01 1.079331e+02 lineto -5.577511e+01 1.107331e+02 lineto -5.495881e+01 1.108797e+02 lineto -closepath -gsave -4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor -fill -grestore -newpath -5.577511e+01 8.553311e+01 moveto -5.577511e+01 8.273311e+01 lineto -5.664828e+01 8.26042e+01 lineto -5.664828e+01 8.54042e+01 lineto -5.577511e+01 8.553311e+01 lineto -closepath -gsave -5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor -fill -grestore -newpath -5.577511e+01 8.833311e+01 moveto -5.577511e+01 8.553311e+01 lineto -5.664828e+01 8.54042e+01 lineto -5.664828e+01 8.82042e+01 lineto -5.577511e+01 8.833311e+01 lineto -closepath -gsave -5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor -fill -grestore -newpath -5.577511e+01 9.113311e+01 moveto -5.577511e+01 8.833311e+01 lineto -5.664828e+01 8.82042e+01 lineto -5.664828e+01 9.10042e+01 lineto -5.577511e+01 9.113311e+01 lineto -closepath -gsave -5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor -fill -grestore -newpath -5.577511e+01 9.393311e+01 moveto -5.577511e+01 9.113311e+01 lineto -5.664828e+01 9.10042e+01 lineto -5.664828e+01 9.38042e+01 lineto -5.577511e+01 9.393311e+01 lineto -closepath -gsave -5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor -fill -grestore -newpath -5.577511e+01 9.673311e+01 moveto -5.577511e+01 9.393311e+01 lineto -5.664828e+01 9.38042e+01 lineto -5.664828e+01 9.66042e+01 lineto -5.577511e+01 9.673311e+01 lineto -closepath -gsave -5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor -fill -grestore -newpath -5.577511e+01 9.953311e+01 moveto -5.577511e+01 9.673311e+01 lineto -5.664828e+01 9.66042e+01 lineto -5.664828e+01 9.94042e+01 lineto -5.577511e+01 9.953311e+01 lineto -closepath -gsave -5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor -fill -grestore -newpath -5.577511e+01 1.023331e+02 moveto -5.577511e+01 9.953311e+01 lineto -5.664828e+01 9.94042e+01 lineto -5.664828e+01 1.022042e+02 lineto -5.577511e+01 1.023331e+02 lineto -closepath -gsave -5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor -fill -grestore -newpath -5.577511e+01 1.051331e+02 moveto -5.577511e+01 1.023331e+02 lineto -5.664828e+01 1.022042e+02 lineto -5.664828e+01 1.050042e+02 lineto -5.577511e+01 1.051331e+02 lineto -closepath -gsave -5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor -fill -grestore -newpath -5.577511e+01 1.079331e+02 moveto -5.577511e+01 1.051331e+02 lineto -5.664828e+01 1.050042e+02 lineto -5.664828e+01 1.078042e+02 lineto -5.577511e+01 1.079331e+02 lineto -closepath -gsave -5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor -fill -grestore -newpath -5.577511e+01 1.107331e+02 moveto -5.577511e+01 1.079331e+02 lineto -5.664828e+01 1.078042e+02 lineto -5.664828e+01 1.106042e+02 lineto -5.577511e+01 1.107331e+02 lineto -closepath -gsave -5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor -fill -grestore -newpath -5.664828e+01 8.54042e+01 moveto -5.664828e+01 8.26042e+01 lineto -5.757294e+01 8.249374e+01 lineto -5.757294e+01 8.529374e+01 lineto -5.664828e+01 8.54042e+01 lineto -closepath -gsave -5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor -fill -grestore -newpath -5.664828e+01 8.82042e+01 moveto -5.664828e+01 8.54042e+01 lineto -5.757294e+01 8.529374e+01 lineto -5.757294e+01 8.809374e+01 lineto -5.664828e+01 8.82042e+01 lineto -closepath -gsave -5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor -fill -grestore -newpath -5.664828e+01 9.10042e+01 moveto -5.664828e+01 8.82042e+01 lineto -5.757294e+01 8.809374e+01 lineto -5.757294e+01 9.089374e+01 lineto -5.664828e+01 9.10042e+01 lineto -closepath -gsave -5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor -fill -grestore -newpath -5.664828e+01 9.38042e+01 moveto -5.664828e+01 9.10042e+01 lineto -5.757294e+01 9.089374e+01 lineto -5.757294e+01 9.369374e+01 lineto -5.664828e+01 9.38042e+01 lineto -closepath -gsave -5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor -fill -grestore -newpath -5.664828e+01 9.66042e+01 moveto -5.664828e+01 9.38042e+01 lineto -5.757294e+01 9.369374e+01 lineto -5.757294e+01 9.649374e+01 lineto -5.664828e+01 9.66042e+01 lineto -closepath -gsave -5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor -fill -grestore -newpath -5.664828e+01 9.94042e+01 moveto -5.664828e+01 9.66042e+01 lineto -5.757294e+01 9.649374e+01 lineto -5.757294e+01 9.929374e+01 lineto -5.664828e+01 9.94042e+01 lineto -closepath -gsave -5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor -fill -grestore -newpath -5.664828e+01 1.022042e+02 moveto -5.664828e+01 9.94042e+01 lineto -5.757294e+01 9.929374e+01 lineto -5.757294e+01 1.020937e+02 lineto -5.664828e+01 1.022042e+02 lineto -closepath -gsave -5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor -fill -grestore -newpath -5.664828e+01 1.050042e+02 moveto -5.664828e+01 1.022042e+02 lineto -5.757294e+01 1.020937e+02 lineto -5.757294e+01 1.048937e+02 lineto -5.664828e+01 1.050042e+02 lineto -closepath -gsave -5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor -fill -grestore -newpath -5.664828e+01 1.078042e+02 moveto -5.664828e+01 1.050042e+02 lineto -5.757294e+01 1.048937e+02 lineto -5.757294e+01 1.076937e+02 lineto -5.664828e+01 1.078042e+02 lineto -closepath -gsave -5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor -fill -grestore -newpath -5.664828e+01 1.106042e+02 moveto -5.664828e+01 1.078042e+02 lineto -5.757294e+01 1.076937e+02 lineto -5.757294e+01 1.104937e+02 lineto -5.664828e+01 1.106042e+02 lineto -closepath -gsave -5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor -fill -grestore -newpath -5.757294e+01 8.529374e+01 moveto -5.757294e+01 8.249374e+01 lineto -5.85434e+01 8.240243e+01 lineto -5.85434e+01 8.520243e+01 lineto -5.757294e+01 8.529374e+01 lineto -closepath -gsave -5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor -fill -grestore -newpath -5.757294e+01 8.809374e+01 moveto -5.757294e+01 8.529374e+01 lineto -5.85434e+01 8.520243e+01 lineto -5.85434e+01 8.800243e+01 lineto -5.757294e+01 8.809374e+01 lineto -closepath -gsave -5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor -fill -grestore -newpath -5.757294e+01 9.089374e+01 moveto -5.757294e+01 8.809374e+01 lineto -5.85434e+01 8.800243e+01 lineto -5.85434e+01 9.080243e+01 lineto -5.757294e+01 9.089374e+01 lineto -closepath -gsave -5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor -fill -grestore -newpath -5.757294e+01 9.369374e+01 moveto -5.757294e+01 9.089374e+01 lineto -5.85434e+01 9.080243e+01 lineto -5.85434e+01 9.360243e+01 lineto -5.757294e+01 9.369374e+01 lineto -closepath -gsave -5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor -fill -grestore -newpath -5.757294e+01 9.649374e+01 moveto -5.757294e+01 9.369374e+01 lineto -5.85434e+01 9.360243e+01 lineto -5.85434e+01 9.640243e+01 lineto -5.757294e+01 9.649374e+01 lineto -closepath -gsave -5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor -fill -grestore -newpath -5.757294e+01 9.929374e+01 moveto -5.757294e+01 9.649374e+01 lineto -5.85434e+01 9.640243e+01 lineto -5.85434e+01 9.920243e+01 lineto -5.757294e+01 9.929374e+01 lineto -closepath -gsave -5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor -fill -grestore -newpath -5.757294e+01 1.020937e+02 moveto -5.757294e+01 9.929374e+01 lineto -5.85434e+01 9.920243e+01 lineto -5.85434e+01 1.020024e+02 lineto -5.757294e+01 1.020937e+02 lineto -closepath -gsave -5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor -fill -grestore -newpath -5.757294e+01 1.048937e+02 moveto -5.757294e+01 1.020937e+02 lineto -5.85434e+01 1.020024e+02 lineto -5.85434e+01 1.048024e+02 lineto -5.757294e+01 1.048937e+02 lineto -closepath -gsave -5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor -fill -grestore -newpath -5.757294e+01 1.076937e+02 moveto -5.757294e+01 1.048937e+02 lineto -5.85434e+01 1.048024e+02 lineto -5.85434e+01 1.076024e+02 lineto -5.757294e+01 1.076937e+02 lineto -closepath -gsave -5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor -fill -grestore -newpath -5.757294e+01 1.104937e+02 moveto -5.757294e+01 1.076937e+02 lineto -5.85434e+01 1.076024e+02 lineto -5.85434e+01 1.104024e+02 lineto -5.757294e+01 1.104937e+02 lineto -closepath -gsave -5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor -fill -grestore -newpath -5.85434e+01 8.520243e+01 moveto -5.85434e+01 8.240243e+01 lineto -5.955366e+01 8.233082e+01 lineto -5.955366e+01 8.513082e+01 lineto -5.85434e+01 8.520243e+01 lineto -closepath -gsave -5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor -fill -grestore -newpath -5.85434e+01 8.800243e+01 moveto -5.85434e+01 8.520243e+01 lineto -5.955366e+01 8.513082e+01 lineto -5.955366e+01 8.793082e+01 lineto -5.85434e+01 8.800243e+01 lineto -closepath -gsave -5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor -fill -grestore -newpath -5.85434e+01 9.080243e+01 moveto -5.85434e+01 8.800243e+01 lineto -5.955366e+01 8.793082e+01 lineto -5.955366e+01 9.073082e+01 lineto -5.85434e+01 9.080243e+01 lineto -closepath -gsave -5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor -fill -grestore -newpath -5.85434e+01 9.360243e+01 moveto -5.85434e+01 9.080243e+01 lineto -5.955366e+01 9.073082e+01 lineto -5.955366e+01 9.353082e+01 lineto -5.85434e+01 9.360243e+01 lineto -closepath -gsave -5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor -fill -grestore -newpath -5.85434e+01 9.640243e+01 moveto -5.85434e+01 9.360243e+01 lineto -5.955366e+01 9.353082e+01 lineto -5.955366e+01 9.633082e+01 lineto -5.85434e+01 9.640243e+01 lineto -closepath -gsave -5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor -fill -grestore -newpath -5.85434e+01 9.920243e+01 moveto -5.85434e+01 9.640243e+01 lineto -5.955366e+01 9.633082e+01 lineto -5.955366e+01 9.913082e+01 lineto -5.85434e+01 9.920243e+01 lineto -closepath -gsave -5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor -fill -grestore -newpath -5.85434e+01 1.020024e+02 moveto -5.85434e+01 9.920243e+01 lineto -5.955366e+01 9.913082e+01 lineto -5.955366e+01 1.019308e+02 lineto -5.85434e+01 1.020024e+02 lineto -closepath -gsave -5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor -fill -grestore -newpath -5.85434e+01 1.048024e+02 moveto -5.85434e+01 1.020024e+02 lineto -5.955366e+01 1.019308e+02 lineto -5.955366e+01 1.047308e+02 lineto -5.85434e+01 1.048024e+02 lineto -closepath -gsave -5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor -fill -grestore -newpath -5.85434e+01 1.076024e+02 moveto -5.85434e+01 1.048024e+02 lineto -5.955366e+01 1.047308e+02 lineto -5.955366e+01 1.075308e+02 lineto -5.85434e+01 1.076024e+02 lineto -closepath -gsave -5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor -fill -grestore -newpath -5.85434e+01 1.104024e+02 moveto -5.85434e+01 1.076024e+02 lineto -5.955366e+01 1.075308e+02 lineto -5.955366e+01 1.103308e+02 lineto -5.85434e+01 1.104024e+02 lineto -closepath -gsave -5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor -fill -grestore -newpath -5.955366e+01 8.513082e+01 moveto -5.955366e+01 8.233082e+01 lineto -6.05975e+01 8.227935e+01 lineto -6.05975e+01 8.507935e+01 lineto -5.955366e+01 8.513082e+01 lineto -closepath -gsave -5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor -fill -grestore -newpath -5.955366e+01 8.793082e+01 moveto -5.955366e+01 8.513082e+01 lineto -6.05975e+01 8.507935e+01 lineto -6.05975e+01 8.787935e+01 lineto -5.955366e+01 8.793082e+01 lineto -closepath -gsave -5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor -fill -grestore -newpath -5.955366e+01 9.073082e+01 moveto -5.955366e+01 8.793082e+01 lineto -6.05975e+01 8.787935e+01 lineto -6.05975e+01 9.067935e+01 lineto -5.955366e+01 9.073082e+01 lineto -closepath -gsave -5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor -fill -grestore -newpath -5.955366e+01 9.353082e+01 moveto -5.955366e+01 9.073082e+01 lineto -6.05975e+01 9.067935e+01 lineto -6.05975e+01 9.347935e+01 lineto -5.955366e+01 9.353082e+01 lineto -closepath -gsave -5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor -fill -grestore -newpath -5.955366e+01 9.633082e+01 moveto -5.955366e+01 9.353082e+01 lineto -6.05975e+01 9.347935e+01 lineto -6.05975e+01 9.627935e+01 lineto -5.955366e+01 9.633082e+01 lineto -closepath -gsave -5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor -fill -grestore -newpath -5.955366e+01 9.913082e+01 moveto -5.955366e+01 9.633082e+01 lineto -6.05975e+01 9.627935e+01 lineto -6.05975e+01 9.907935e+01 lineto -5.955366e+01 9.913082e+01 lineto -closepath -gsave -5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor -fill -grestore -newpath -5.955366e+01 1.019308e+02 moveto -5.955366e+01 9.913082e+01 lineto -6.05975e+01 9.907935e+01 lineto -6.05975e+01 1.018793e+02 lineto -5.955366e+01 1.019308e+02 lineto -closepath -gsave -5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor -fill -grestore -newpath -5.955366e+01 1.047308e+02 moveto -5.955366e+01 1.019308e+02 lineto -6.05975e+01 1.018793e+02 lineto -6.05975e+01 1.046793e+02 lineto -5.955366e+01 1.047308e+02 lineto -closepath -gsave -5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor -fill -grestore -newpath -5.955366e+01 1.075308e+02 moveto -5.955366e+01 1.047308e+02 lineto -6.05975e+01 1.046793e+02 lineto -6.05975e+01 1.074793e+02 lineto -5.955366e+01 1.075308e+02 lineto -closepath -gsave -5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor -fill -grestore -newpath -5.955366e+01 1.103308e+02 moveto -5.955366e+01 1.075308e+02 lineto -6.05975e+01 1.074793e+02 lineto -6.05975e+01 1.102793e+02 lineto -5.955366e+01 1.103308e+02 lineto -closepath -gsave -5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor -fill -grestore -newpath -6.05975e+01 8.507935e+01 moveto -6.05975e+01 8.227935e+01 lineto -6.166848e+01 8.224834e+01 lineto -6.166848e+01 8.504834e+01 lineto -6.05975e+01 8.507935e+01 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -6.05975e+01 8.787935e+01 moveto -6.05975e+01 8.507935e+01 lineto -6.166848e+01 8.504834e+01 lineto -6.166848e+01 8.784834e+01 lineto -6.05975e+01 8.787935e+01 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -6.05975e+01 9.067935e+01 moveto -6.05975e+01 8.787935e+01 lineto -6.166848e+01 8.784834e+01 lineto -6.166848e+01 9.064834e+01 lineto -6.05975e+01 9.067935e+01 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -6.05975e+01 9.347935e+01 moveto -6.05975e+01 9.067935e+01 lineto -6.166848e+01 9.064834e+01 lineto -6.166848e+01 9.344834e+01 lineto -6.05975e+01 9.347935e+01 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -6.05975e+01 9.627935e+01 moveto -6.05975e+01 9.347935e+01 lineto -6.166848e+01 9.344834e+01 lineto -6.166848e+01 9.624834e+01 lineto -6.05975e+01 9.627935e+01 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -6.05975e+01 9.907935e+01 moveto -6.05975e+01 9.627935e+01 lineto -6.166848e+01 9.624834e+01 lineto -6.166848e+01 9.904834e+01 lineto -6.05975e+01 9.907935e+01 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -6.05975e+01 1.018793e+02 moveto -6.05975e+01 9.907935e+01 lineto -6.166848e+01 9.904834e+01 lineto -6.166848e+01 1.018483e+02 lineto -6.05975e+01 1.018793e+02 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -6.05975e+01 1.046793e+02 moveto -6.05975e+01 1.018793e+02 lineto -6.166848e+01 1.018483e+02 lineto -6.166848e+01 1.046483e+02 lineto -6.05975e+01 1.046793e+02 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -6.05975e+01 1.074793e+02 moveto -6.05975e+01 1.046793e+02 lineto -6.166848e+01 1.046483e+02 lineto -6.166848e+01 1.074483e+02 lineto -6.05975e+01 1.074793e+02 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -6.05975e+01 1.102793e+02 moveto -6.05975e+01 1.074793e+02 lineto -6.166848e+01 1.074483e+02 lineto -6.166848e+01 1.102483e+02 lineto -6.05975e+01 1.102793e+02 lineto -closepath -gsave -6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor -fill -grestore -newpath -6.166848e+01 8.504834e+01 moveto -6.166848e+01 8.224834e+01 lineto -6.276e+01 8.223798e+01 lineto -6.276e+01 8.503798e+01 lineto -6.166848e+01 8.504834e+01 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -6.166848e+01 8.784834e+01 moveto -6.166848e+01 8.504834e+01 lineto -6.276e+01 8.503798e+01 lineto -6.276e+01 8.783798e+01 lineto -6.166848e+01 8.784834e+01 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -6.166848e+01 9.064834e+01 moveto -6.166848e+01 8.784834e+01 lineto -6.276e+01 8.783798e+01 lineto -6.276e+01 9.063798e+01 lineto -6.166848e+01 9.064834e+01 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -6.166848e+01 9.344834e+01 moveto -6.166848e+01 9.064834e+01 lineto -6.276e+01 9.063798e+01 lineto -6.276e+01 9.343798e+01 lineto -6.166848e+01 9.344834e+01 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -6.166848e+01 9.624834e+01 moveto -6.166848e+01 9.344834e+01 lineto -6.276e+01 9.343798e+01 lineto -6.276e+01 9.623798e+01 lineto -6.166848e+01 9.624834e+01 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -6.166848e+01 9.904834e+01 moveto -6.166848e+01 9.624834e+01 lineto -6.276e+01 9.623798e+01 lineto -6.276e+01 9.903798e+01 lineto -6.166848e+01 9.904834e+01 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -6.166848e+01 1.018483e+02 moveto -6.166848e+01 9.904834e+01 lineto -6.276e+01 9.903798e+01 lineto -6.276e+01 1.01838e+02 lineto -6.166848e+01 1.018483e+02 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -6.166848e+01 1.046483e+02 moveto -6.166848e+01 1.018483e+02 lineto -6.276e+01 1.01838e+02 lineto -6.276e+01 1.04638e+02 lineto -6.166848e+01 1.046483e+02 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -6.166848e+01 1.074483e+02 moveto -6.166848e+01 1.046483e+02 lineto -6.276e+01 1.04638e+02 lineto -6.276e+01 1.07438e+02 lineto -6.166848e+01 1.074483e+02 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -newpath -6.166848e+01 1.102483e+02 moveto -6.166848e+01 1.074483e+02 lineto -6.276e+01 1.07438e+02 lineto -6.276e+01 1.10238e+02 lineto -6.166848e+01 1.102483e+02 lineto -closepath -gsave -6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor -fill -grestore -1.0e-01 setlinewidth -newpath -6.520742e+01 4.331148e+00 moveto -6.500067e+01 4.001008e+00 lineto -6.500034e+01 4.001005e+00 lineto -6.510507e+01 4.330188e+00 lineto -6.520742e+01 4.331148e+00 lineto -closepath -gsave -6.118407e-01 6.118407e-01 7.648009e-01 setrgbcolor -fill -grestore -newpath -6.520742e+01 4.331148e+00 moveto -6.500067e+01 4.001008e+00 lineto -6.500034e+01 4.001005e+00 lineto -6.510507e+01 4.330188e+00 lineto -6.520742e+01 4.331148e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.541398e+01 4.700739e+00 moveto -6.520742e+01 4.331148e+00 lineto -6.510507e+01 4.330188e+00 lineto -6.52097e+01 4.698825e+00 lineto -6.541398e+01 4.700739e+00 lineto -closepath -gsave -6.175332e-01 6.175332e-01 7.719165e-01 setrgbcolor -fill -grestore -newpath -6.541398e+01 4.700739e+00 moveto -6.520742e+01 4.331148e+00 lineto -6.510507e+01 4.330188e+00 lineto -6.52097e+01 4.698825e+00 lineto -6.541398e+01 4.700739e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.562014e+01 5.109434e+00 moveto -6.541398e+01 4.700739e+00 lineto -6.52097e+01 4.698825e+00 lineto -6.531413e+01 5.106566e+00 lineto -6.562014e+01 5.109434e+00 lineto -closepath -gsave -6.231705e-01 6.231705e-01 7.789631e-01 setrgbcolor -fill -grestore -newpath -6.562014e+01 5.109434e+00 moveto -6.541398e+01 4.700739e+00 lineto -6.52097e+01 4.698825e+00 lineto -6.531413e+01 5.106566e+00 lineto -6.562014e+01 5.109434e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.582572e+01 5.556844e+00 moveto -6.562014e+01 5.109434e+00 lineto -6.531413e+01 5.106566e+00 lineto -6.541827e+01 5.553026e+00 lineto -6.582572e+01 5.556844e+00 lineto -closepath -gsave -6.287439e-01 6.287439e-01 7.859299e-01 setrgbcolor -fill -grestore -newpath -6.582572e+01 5.556844e+00 moveto -6.562014e+01 5.109434e+00 lineto -6.531413e+01 5.106566e+00 lineto -6.541827e+01 5.553026e+00 lineto -6.582572e+01 5.556844e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.603051e+01 6.042546e+00 moveto -6.582572e+01 5.556844e+00 lineto -6.541827e+01 5.553026e+00 lineto -6.5522e+01 6.037781e+00 lineto -6.603051e+01 6.042546e+00 lineto -closepath -gsave -6.342453e-01 6.342453e-01 7.928067e-01 setrgbcolor -fill -grestore -newpath -6.603051e+01 6.042546e+00 moveto -6.582572e+01 5.556844e+00 lineto -6.541827e+01 5.553026e+00 lineto -6.5522e+01 6.037781e+00 lineto -6.603051e+01 6.042546e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.623433e+01 6.56608e+00 moveto -6.603051e+01 6.042546e+00 lineto -6.5522e+01 6.037781e+00 lineto -6.562525e+01 6.560372e+00 lineto -6.623433e+01 6.56608e+00 lineto -closepath -gsave -6.396666e-01 6.396666e-01 7.995833e-01 setrgbcolor -fill -grestore -newpath -6.623433e+01 6.56608e+00 moveto -6.603051e+01 6.042546e+00 lineto -6.5522e+01 6.037781e+00 lineto -6.562525e+01 6.560372e+00 lineto -6.623433e+01 6.56608e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.643698e+01 7.12695e+00 moveto -6.623433e+01 6.56608e+00 lineto -6.562525e+01 6.560372e+00 lineto -6.57279e+01 7.120306e+00 lineto -6.643698e+01 7.12695e+00 lineto -closepath -gsave -6.450001e-01 6.450001e-01 8.062501e-01 setrgbcolor -fill -grestore -newpath -6.643698e+01 7.12695e+00 moveto -6.623433e+01 6.56608e+00 lineto -6.562525e+01 6.560372e+00 lineto -6.57279e+01 7.120306e+00 lineto -6.643698e+01 7.12695e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.663827e+01 7.724626e+00 moveto -6.643698e+01 7.12695e+00 lineto -6.57279e+01 7.120306e+00 lineto -6.582986e+01 7.717051e+00 lineto -6.663827e+01 7.724626e+00 lineto -closepath -gsave -6.502382e-01 6.502382e-01 8.127977e-01 setrgbcolor -fill -grestore -newpath -6.663827e+01 7.724626e+00 moveto -6.643698e+01 7.12695e+00 lineto -6.57279e+01 7.120306e+00 lineto -6.582986e+01 7.717051e+00 lineto -6.663827e+01 7.724626e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.683801e+01 8.358541e+00 moveto -6.663827e+01 7.724626e+00 lineto -6.582986e+01 7.717051e+00 lineto -6.593104e+01 8.350042e+00 lineto -6.683801e+01 8.358541e+00 lineto -closepath -gsave -6.553737e-01 6.553737e-01 8.192172e-01 setrgbcolor -fill -grestore -newpath -6.683801e+01 8.358541e+00 moveto -6.663827e+01 7.724626e+00 lineto -6.582986e+01 7.717051e+00 lineto -6.593104e+01 8.350042e+00 lineto -6.683801e+01 8.358541e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.7036e+01 9.028096e+00 moveto -6.683801e+01 8.358541e+00 lineto -6.593104e+01 8.350042e+00 lineto -6.603133e+01 9.018681e+00 lineto -6.7036e+01 9.028096e+00 lineto -closepath -gsave -6.603998e-01 6.603998e-01 8.254998e-01 setrgbcolor -fill -grestore -newpath -6.7036e+01 9.028096e+00 moveto -6.683801e+01 8.358541e+00 lineto -6.593104e+01 8.350042e+00 lineto -6.603133e+01 9.018681e+00 lineto -6.7036e+01 9.028096e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.723208e+01 9.732656e+00 moveto -6.7036e+01 9.028096e+00 lineto -6.603133e+01 9.018681e+00 lineto -6.613065e+01 9.722335e+00 lineto -6.723208e+01 9.732656e+00 lineto -closepath -gsave -6.653099e-01 6.653099e-01 8.316373e-01 setrgbcolor -fill -grestore -newpath -6.723208e+01 9.732656e+00 moveto -6.7036e+01 9.028096e+00 lineto -6.603133e+01 9.018681e+00 lineto -6.613065e+01 9.722335e+00 lineto -6.723208e+01 9.732656e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.742603e+01 1.047155e+01 moveto -6.723208e+01 9.732656e+00 lineto -6.613065e+01 9.722335e+00 lineto -6.62289e+01 1.046034e+01 lineto -6.742603e+01 1.047155e+01 lineto -closepath -gsave -6.700977e-01 6.700977e-01 8.376221e-01 setrgbcolor -fill -grestore -newpath -6.742603e+01 1.047155e+01 moveto -6.723208e+01 9.732656e+00 lineto -6.613065e+01 9.722335e+00 lineto -6.62289e+01 1.046034e+01 lineto -6.742603e+01 1.047155e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.761769e+01 1.124409e+01 moveto -6.742603e+01 1.047155e+01 lineto -6.62289e+01 1.046034e+01 lineto -6.632599e+01 1.123199e+01 lineto -6.761769e+01 1.124409e+01 lineto -closepath -gsave -6.747572e-01 6.747572e-01 8.434465e-01 setrgbcolor -fill -grestore -newpath -6.761769e+01 1.124409e+01 moveto -6.742603e+01 1.047155e+01 lineto -6.62289e+01 1.046034e+01 lineto -6.632599e+01 1.123199e+01 lineto -6.761769e+01 1.124409e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.780687e+01 1.204954e+01 moveto -6.761769e+01 1.124409e+01 lineto -6.632599e+01 1.123199e+01 lineto -6.642182e+01 1.203656e+01 lineto -6.780687e+01 1.204954e+01 lineto -closepath -gsave -6.792829e-01 6.792829e-01 8.491037e-01 setrgbcolor -fill -grestore -newpath -6.780687e+01 1.204954e+01 moveto -6.761769e+01 1.124409e+01 lineto -6.632599e+01 1.123199e+01 lineto -6.642182e+01 1.203656e+01 lineto -6.780687e+01 1.204954e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.79934e+01 1.288712e+01 moveto -6.780687e+01 1.204954e+01 lineto -6.642182e+01 1.203656e+01 lineto -6.65163e+01 1.287328e+01 lineto -6.79934e+01 1.288712e+01 lineto -closepath -gsave -6.836696e-01 6.836696e-01 8.54587e-01 setrgbcolor -fill -grestore -newpath -6.79934e+01 1.288712e+01 moveto -6.780687e+01 1.204954e+01 lineto -6.642182e+01 1.203656e+01 lineto -6.65163e+01 1.287328e+01 lineto -6.79934e+01 1.288712e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.817709e+01 1.375606e+01 moveto -6.79934e+01 1.288712e+01 lineto -6.65163e+01 1.287328e+01 lineto -6.660935e+01 1.374137e+01 lineto -6.817709e+01 1.375606e+01 lineto -closepath -gsave -6.879123e-01 6.879123e-01 8.598904e-01 setrgbcolor -fill -grestore -newpath -6.817709e+01 1.375606e+01 moveto -6.79934e+01 1.288712e+01 lineto -6.65163e+01 1.287328e+01 lineto -6.660935e+01 1.374137e+01 lineto -6.817709e+01 1.375606e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.835777e+01 1.465553e+01 moveto -6.817709e+01 1.375606e+01 lineto -6.660935e+01 1.374137e+01 lineto -6.670087e+01 1.464001e+01 lineto -6.835777e+01 1.465553e+01 lineto -closepath -gsave -6.920064e-01 6.920064e-01 8.65008e-01 setrgbcolor -fill -grestore -newpath -6.835777e+01 1.465553e+01 moveto -6.817709e+01 1.375606e+01 lineto -6.660935e+01 1.374137e+01 lineto -6.670087e+01 1.464001e+01 lineto -6.835777e+01 1.465553e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.853527e+01 1.558468e+01 moveto -6.835777e+01 1.465553e+01 lineto -6.670087e+01 1.464001e+01 lineto -6.679078e+01 1.556833e+01 lineto -6.853527e+01 1.558468e+01 lineto -closepath -gsave -6.959476e-01 6.959476e-01 8.699345e-01 setrgbcolor -fill -grestore -newpath -6.853527e+01 1.558468e+01 moveto -6.835777e+01 1.465553e+01 lineto -6.670087e+01 1.464001e+01 lineto -6.679078e+01 1.556833e+01 lineto -6.853527e+01 1.558468e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.870943e+01 1.654262e+01 moveto -6.853527e+01 1.558468e+01 lineto -6.679078e+01 1.556833e+01 lineto -6.6879e+01 1.652547e+01 lineto -6.870943e+01 1.654262e+01 lineto -closepath -gsave -6.99732e-01 6.99732e-01 8.74665e-01 setrgbcolor -fill -grestore -newpath -6.870943e+01 1.654262e+01 moveto -6.853527e+01 1.558468e+01 lineto -6.679078e+01 1.556833e+01 lineto -6.6879e+01 1.652547e+01 lineto -6.870943e+01 1.654262e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.888007e+01 1.752846e+01 moveto -6.870943e+01 1.654262e+01 lineto -6.6879e+01 1.652547e+01 lineto -6.696544e+01 1.751052e+01 lineto -6.888007e+01 1.752846e+01 lineto -closepath -gsave -7.033559e-01 7.033559e-01 8.791949e-01 setrgbcolor -fill -grestore -newpath -6.888007e+01 1.752846e+01 moveto -6.870943e+01 1.654262e+01 lineto -6.6879e+01 1.652547e+01 lineto -6.696544e+01 1.751052e+01 lineto -6.888007e+01 1.752846e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.904704e+01 1.854125e+01 moveto -6.888007e+01 1.752846e+01 lineto -6.696544e+01 1.751052e+01 lineto -6.705002e+01 1.852254e+01 lineto -6.904704e+01 1.854125e+01 lineto -closepath -gsave -7.06816e-01 7.06816e-01 8.8352e-01 setrgbcolor -fill -grestore -newpath -6.904704e+01 1.854125e+01 moveto -6.888007e+01 1.752846e+01 lineto -6.696544e+01 1.751052e+01 lineto -6.705002e+01 1.852254e+01 lineto -6.904704e+01 1.854125e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.921017e+01 1.958004e+01 moveto -6.904704e+01 1.854125e+01 lineto -6.705002e+01 1.852254e+01 lineto -6.713266e+01 1.956057e+01 lineto -6.921017e+01 1.958004e+01 lineto -closepath -gsave -7.101093e-01 7.101093e-01 8.876366e-01 setrgbcolor -fill -grestore -newpath -6.921017e+01 1.958004e+01 moveto -6.904704e+01 1.854125e+01 lineto -6.705002e+01 1.852254e+01 lineto -6.713266e+01 1.956057e+01 lineto -6.921017e+01 1.958004e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.936933e+01 2.064384e+01 moveto -6.921017e+01 1.958004e+01 lineto -6.713266e+01 1.956057e+01 lineto -6.721327e+01 2.062364e+01 lineto -6.936933e+01 2.064384e+01 lineto -closepath -gsave -7.132329e-01 7.132329e-01 8.915412e-01 setrgbcolor -fill -grestore -newpath -6.936933e+01 2.064384e+01 moveto -6.921017e+01 1.958004e+01 lineto -6.713266e+01 1.956057e+01 lineto -6.721327e+01 2.062364e+01 lineto -6.936933e+01 2.064384e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.952434e+01 2.173166e+01 moveto -6.936933e+01 2.064384e+01 lineto -6.721327e+01 2.062364e+01 lineto -6.72918e+01 2.171074e+01 lineto -6.952434e+01 2.173166e+01 lineto -closepath -gsave -7.161844e-01 7.161844e-01 8.952305e-01 setrgbcolor -fill -grestore -newpath -6.952434e+01 2.173166e+01 moveto -6.936933e+01 2.064384e+01 lineto -6.721327e+01 2.062364e+01 lineto -6.72918e+01 2.171074e+01 lineto -6.952434e+01 2.173166e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.967507e+01 2.284245e+01 moveto -6.952434e+01 2.173166e+01 lineto -6.72918e+01 2.171074e+01 lineto -6.736815e+01 2.282083e+01 lineto -6.967507e+01 2.284245e+01 lineto -closepath -gsave -7.189615e-01 7.189615e-01 8.987018e-01 setrgbcolor -fill -grestore -newpath -6.967507e+01 2.284245e+01 moveto -6.952434e+01 2.173166e+01 lineto -6.72918e+01 2.171074e+01 lineto -6.736815e+01 2.282083e+01 lineto -6.967507e+01 2.284245e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.982138e+01 2.397516e+01 moveto -6.967507e+01 2.284245e+01 lineto -6.736815e+01 2.282083e+01 lineto -6.744226e+01 2.395287e+01 lineto -6.982138e+01 2.397516e+01 lineto -closepath -gsave -7.215621e-01 7.215621e-01 9.019526e-01 setrgbcolor -fill -grestore -newpath -6.982138e+01 2.397516e+01 moveto -6.967507e+01 2.284245e+01 lineto -6.736815e+01 2.282083e+01 lineto -6.744226e+01 2.395287e+01 lineto -6.982138e+01 2.397516e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.996311e+01 2.512873e+01 moveto -6.982138e+01 2.397516e+01 lineto -6.744226e+01 2.395287e+01 lineto -6.751406e+01 2.510578e+01 lineto -6.996311e+01 2.512873e+01 lineto -closepath -gsave -7.239845e-01 7.239845e-01 9.049806e-01 setrgbcolor -fill -grestore -newpath -6.996311e+01 2.512873e+01 moveto -6.982138e+01 2.397516e+01 lineto -6.744226e+01 2.395287e+01 lineto -6.751406e+01 2.510578e+01 lineto -6.996311e+01 2.512873e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.010016e+01 2.630206e+01 moveto -6.996311e+01 2.512873e+01 lineto -6.751406e+01 2.510578e+01 lineto -6.758347e+01 2.627848e+01 lineto -7.010016e+01 2.630206e+01 lineto -closepath -gsave -7.26227e-01 7.26227e-01 9.077838e-01 setrgbcolor -fill -grestore -newpath -7.010016e+01 2.630206e+01 moveto -6.996311e+01 2.512873e+01 lineto -6.751406e+01 2.510578e+01 lineto -6.758347e+01 2.627848e+01 lineto -7.010016e+01 2.630206e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.023237e+01 2.749404e+01 moveto -7.010016e+01 2.630206e+01 lineto -6.758347e+01 2.627848e+01 lineto -6.765044e+01 2.746984e+01 lineto -7.023237e+01 2.749404e+01 lineto -closepath -gsave -7.282883e-01 7.282883e-01 9.103604e-01 setrgbcolor -fill -grestore -newpath -7.023237e+01 2.749404e+01 moveto -7.010016e+01 2.630206e+01 lineto -6.758347e+01 2.627848e+01 lineto -6.765044e+01 2.746984e+01 lineto -7.023237e+01 2.749404e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.035962e+01 2.870354e+01 moveto -7.023237e+01 2.749404e+01 lineto -6.765044e+01 2.746984e+01 lineto -6.771491e+01 2.867876e+01 lineto -7.035962e+01 2.870354e+01 lineto -closepath -gsave -7.301671e-01 7.301671e-01 9.127089e-01 setrgbcolor -fill -grestore -newpath -7.035962e+01 2.870354e+01 moveto -7.023237e+01 2.749404e+01 lineto -6.765044e+01 2.746984e+01 lineto -6.771491e+01 2.867876e+01 lineto -7.035962e+01 2.870354e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.048181e+01 2.992942e+01 moveto -7.035962e+01 2.870354e+01 lineto -6.771491e+01 2.867876e+01 lineto -6.77768e+01 2.990407e+01 lineto -7.048181e+01 2.992942e+01 lineto -closepath -gsave -7.318623e-01 7.318623e-01 9.148279e-01 setrgbcolor -fill -grestore -newpath -7.048181e+01 2.992942e+01 moveto -7.035962e+01 2.870354e+01 lineto -6.771491e+01 2.867876e+01 lineto -6.77768e+01 2.990407e+01 lineto -7.048181e+01 2.992942e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.05988e+01 3.117051e+01 moveto -7.048181e+01 2.992942e+01 lineto -6.77768e+01 2.990407e+01 lineto -6.783606e+01 3.114462e+01 lineto -7.05988e+01 3.117051e+01 lineto -closepath -gsave -7.333731e-01 7.333731e-01 9.167164e-01 setrgbcolor -fill -grestore -newpath -7.05988e+01 3.117051e+01 moveto -7.048181e+01 2.992942e+01 lineto -6.77768e+01 2.990407e+01 lineto -6.783606e+01 3.114462e+01 lineto -7.05988e+01 3.117051e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.071049e+01 3.242565e+01 moveto -7.05988e+01 3.117051e+01 lineto -6.783606e+01 3.114462e+01 lineto -6.789264e+01 3.239924e+01 lineto -7.071049e+01 3.242565e+01 lineto -closepath -gsave -7.346986e-01 7.346986e-01 9.183733e-01 setrgbcolor -fill -grestore -newpath -7.071049e+01 3.242565e+01 moveto -7.05988e+01 3.117051e+01 lineto -6.783606e+01 3.114462e+01 lineto -6.789264e+01 3.239924e+01 lineto -7.071049e+01 3.242565e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.081678e+01 3.369363e+01 moveto -7.071049e+01 3.242565e+01 lineto -6.789264e+01 3.239924e+01 lineto -6.794648e+01 3.366674e+01 lineto -7.081678e+01 3.369363e+01 lineto -closepath -gsave -7.358382e-01 7.358382e-01 9.197978e-01 setrgbcolor -fill -grestore -newpath -7.081678e+01 3.369363e+01 moveto -7.071049e+01 3.242565e+01 lineto -6.789264e+01 3.239924e+01 lineto -6.794648e+01 3.366674e+01 lineto -7.081678e+01 3.369363e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.091755e+01 3.497327e+01 moveto -7.081678e+01 3.369363e+01 lineto -6.794648e+01 3.366674e+01 lineto -6.799752e+01 3.494591e+01 lineto -7.091755e+01 3.497327e+01 lineto -closepath -gsave -7.367914e-01 7.367914e-01 9.209893e-01 setrgbcolor -fill -grestore -newpath -7.091755e+01 3.497327e+01 moveto -7.081678e+01 3.369363e+01 lineto -6.794648e+01 3.366674e+01 lineto -6.799752e+01 3.494591e+01 lineto -7.091755e+01 3.497327e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.101273e+01 3.626335e+01 moveto -7.091755e+01 3.497327e+01 lineto -6.799752e+01 3.494591e+01 lineto -6.804573e+01 3.623555e+01 lineto -7.101273e+01 3.626335e+01 lineto -closepath -gsave -7.375577e-01 7.375577e-01 9.219472e-01 setrgbcolor -fill -grestore -newpath -7.101273e+01 3.626335e+01 moveto -7.091755e+01 3.497327e+01 lineto -6.799752e+01 3.494591e+01 lineto -6.804573e+01 3.623555e+01 lineto -7.101273e+01 3.626335e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.110221e+01 3.756265e+01 moveto -7.101273e+01 3.626335e+01 lineto -6.804573e+01 3.623555e+01 lineto -6.809106e+01 3.753443e+01 lineto -7.110221e+01 3.756265e+01 lineto -closepath -gsave -7.381369e-01 7.381369e-01 9.226711e-01 setrgbcolor -fill -grestore -newpath -7.110221e+01 3.756265e+01 moveto -7.101273e+01 3.626335e+01 lineto -6.804573e+01 3.623555e+01 lineto -6.809106e+01 3.753443e+01 lineto -7.110221e+01 3.756265e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.118591e+01 3.886993e+01 moveto -7.110221e+01 3.756265e+01 lineto -6.809106e+01 3.753443e+01 lineto -6.813346e+01 3.884133e+01 lineto -7.118591e+01 3.886993e+01 lineto -closepath -gsave -7.385285e-01 7.385285e-01 9.231607e-01 setrgbcolor -fill -grestore -newpath -7.118591e+01 3.886993e+01 moveto -7.110221e+01 3.756265e+01 lineto -6.809106e+01 3.753443e+01 lineto -6.813346e+01 3.884133e+01 lineto -7.118591e+01 3.886993e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.126376e+01 4.018397e+01 moveto -7.118591e+01 3.886993e+01 lineto -6.813346e+01 3.884133e+01 lineto -6.81729e+01 4.015501e+01 lineto -7.126376e+01 4.018397e+01 lineto -closepath -gsave -7.387326e-01 7.387326e-01 9.234157e-01 setrgbcolor -fill -grestore -newpath -7.126376e+01 4.018397e+01 moveto -7.118591e+01 3.886993e+01 lineto -6.813346e+01 3.884133e+01 lineto -6.81729e+01 4.015501e+01 lineto -7.126376e+01 4.018397e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.133568e+01 4.150352e+01 moveto -7.126376e+01 4.018397e+01 lineto -6.81729e+01 4.015501e+01 lineto -6.820932e+01 4.147422e+01 lineto -7.133568e+01 4.150352e+01 lineto -closepath -gsave -7.38749e-01 7.38749e-01 9.234362e-01 setrgbcolor -fill -grestore -newpath -7.133568e+01 4.150352e+01 moveto -7.126376e+01 4.018397e+01 lineto -6.81729e+01 4.015501e+01 lineto -6.820932e+01 4.147422e+01 lineto -7.133568e+01 4.150352e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.510507e+01 4.330188e+00 moveto -6.500034e+01 4.001005e+00 lineto -6.500001e+01 4.000996e+00 lineto -6.500207e+01 4.327317e+00 lineto -6.510507e+01 4.330188e+00 lineto -closepath -gsave -6.120417e-01 6.120417e-01 7.650522e-01 setrgbcolor -fill -grestore -newpath -6.510507e+01 4.330188e+00 moveto -6.500034e+01 4.001005e+00 lineto -6.500001e+01 4.000996e+00 lineto -6.500207e+01 4.327317e+00 lineto -6.510507e+01 4.330188e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.52097e+01 4.698825e+00 moveto -6.510507e+01 4.330188e+00 lineto -6.500207e+01 4.327317e+00 lineto -6.500413e+01 4.693094e+00 lineto -6.52097e+01 4.698825e+00 lineto -closepath -gsave -6.18136e-01 6.18136e-01 7.726701e-01 setrgbcolor -fill -grestore -newpath -6.52097e+01 4.698825e+00 moveto -6.510507e+01 4.330188e+00 lineto -6.500207e+01 4.327317e+00 lineto -6.500413e+01 4.693094e+00 lineto -6.52097e+01 4.698825e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.531413e+01 5.106566e+00 moveto -6.52097e+01 4.698825e+00 lineto -6.500413e+01 4.693094e+00 lineto -6.500618e+01 5.097981e+00 lineto -6.531413e+01 5.106566e+00 lineto -closepath -gsave -6.241773e-01 6.241773e-01 7.802216e-01 setrgbcolor -fill -grestore -newpath -6.531413e+01 5.106566e+00 moveto -6.52097e+01 4.698825e+00 lineto -6.500413e+01 4.693094e+00 lineto -6.500618e+01 5.097981e+00 lineto -6.531413e+01 5.106566e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.541827e+01 5.553026e+00 moveto -6.531413e+01 5.106566e+00 lineto -6.500618e+01 5.097981e+00 lineto -6.500823e+01 5.541595e+00 lineto -6.541827e+01 5.553026e+00 lineto -closepath -gsave -6.301561e-01 6.301561e-01 7.876951e-01 setrgbcolor -fill -grestore -newpath -6.541827e+01 5.553026e+00 moveto -6.531413e+01 5.106566e+00 lineto -6.500618e+01 5.097981e+00 lineto -6.500823e+01 5.541595e+00 lineto -6.541827e+01 5.553026e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.5522e+01 6.037781e+00 moveto -6.541827e+01 5.553026e+00 lineto -6.500823e+01 5.541595e+00 lineto -6.501028e+01 6.023515e+00 lineto -6.5522e+01 6.037781e+00 lineto -closepath -gsave -6.360631e-01 6.360631e-01 7.950789e-01 setrgbcolor -fill -grestore -newpath -6.5522e+01 6.037781e+00 moveto -6.541827e+01 5.553026e+00 lineto -6.500823e+01 5.541595e+00 lineto -6.501028e+01 6.023515e+00 lineto -6.5522e+01 6.037781e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.562525e+01 6.560372e+00 moveto -6.5522e+01 6.037781e+00 lineto -6.501028e+01 6.023515e+00 lineto -6.501231e+01 6.543285e+00 lineto -6.562525e+01 6.560372e+00 lineto -closepath -gsave -6.418895e-01 6.418895e-01 8.023619e-01 setrgbcolor -fill -grestore -newpath -6.562525e+01 6.560372e+00 moveto -6.5522e+01 6.037781e+00 lineto -6.501028e+01 6.023515e+00 lineto -6.501231e+01 6.543285e+00 lineto -6.562525e+01 6.560372e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.57279e+01 7.120306e+00 moveto -6.562525e+01 6.560372e+00 lineto -6.501231e+01 6.543285e+00 lineto -6.501433e+01 7.100413e+00 lineto -6.57279e+01 7.120306e+00 lineto -closepath -gsave -6.476266e-01 6.476266e-01 8.095332e-01 setrgbcolor -fill -grestore -newpath -6.57279e+01 7.120306e+00 moveto -6.562525e+01 6.560372e+00 lineto -6.501231e+01 6.543285e+00 lineto -6.501433e+01 7.100413e+00 lineto -6.57279e+01 7.120306e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.582986e+01 7.717051e+00 moveto -6.57279e+01 7.120306e+00 lineto -6.501433e+01 7.100413e+00 lineto -6.501634e+01 7.694371e+00 lineto -6.582986e+01 7.717051e+00 lineto -closepath -gsave -6.532661e-01 6.532661e-01 8.165826e-01 setrgbcolor -fill -grestore -newpath -6.582986e+01 7.717051e+00 moveto -6.57279e+01 7.120306e+00 lineto -6.501433e+01 7.100413e+00 lineto -6.501634e+01 7.694371e+00 lineto -6.582986e+01 7.717051e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.593104e+01 8.350042e+00 moveto -6.582986e+01 7.717051e+00 lineto -6.501634e+01 7.694371e+00 lineto -6.501833e+01 8.324598e+00 lineto -6.593104e+01 8.350042e+00 lineto -closepath -gsave -6.587999e-01 6.587999e-01 8.234999e-01 setrgbcolor -fill -grestore -newpath -6.593104e+01 8.350042e+00 moveto -6.582986e+01 7.717051e+00 lineto -6.501634e+01 7.694371e+00 lineto -6.501833e+01 8.324598e+00 lineto -6.593104e+01 8.350042e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.603133e+01 9.018681e+00 moveto -6.593104e+01 8.350042e+00 lineto -6.501833e+01 8.324598e+00 lineto -6.50203e+01 8.990496e+00 lineto -6.603133e+01 9.018681e+00 lineto -closepath -gsave -6.642204e-01 6.642204e-01 8.302756e-01 setrgbcolor -fill -grestore -newpath -6.603133e+01 9.018681e+00 moveto -6.593104e+01 8.350042e+00 lineto -6.501833e+01 8.324598e+00 lineto -6.50203e+01 8.990496e+00 lineto -6.603133e+01 9.018681e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.613065e+01 9.722335e+00 moveto -6.603133e+01 9.018681e+00 lineto -6.50203e+01 8.990496e+00 lineto -6.502226e+01 9.691435e+00 lineto -6.613065e+01 9.722335e+00 lineto -closepath -gsave -6.695204e-01 6.695204e-01 8.369005e-01 setrgbcolor -fill -grestore -newpath -6.613065e+01 9.722335e+00 moveto -6.603133e+01 9.018681e+00 lineto -6.50203e+01 8.990496e+00 lineto -6.502226e+01 9.691435e+00 lineto -6.613065e+01 9.722335e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.62289e+01 1.046034e+01 moveto -6.613065e+01 9.722335e+00 lineto -6.502226e+01 9.691435e+00 lineto -6.502419e+01 1.042675e+01 lineto -6.62289e+01 1.046034e+01 lineto -closepath -gsave -6.746929e-01 6.746929e-01 8.433661e-01 setrgbcolor -fill -grestore -newpath -6.62289e+01 1.046034e+01 moveto -6.613065e+01 9.722335e+00 lineto -6.502226e+01 9.691435e+00 lineto -6.502419e+01 1.042675e+01 lineto -6.62289e+01 1.046034e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.632599e+01 1.123199e+01 moveto -6.62289e+01 1.046034e+01 lineto -6.502419e+01 1.042675e+01 lineto -6.502611e+01 1.119575e+01 lineto -6.632599e+01 1.123199e+01 lineto -closepath -gsave -6.797314e-01 6.797314e-01 8.496642e-01 setrgbcolor -fill -grestore -newpath -6.632599e+01 1.123199e+01 moveto -6.62289e+01 1.046034e+01 lineto -6.502419e+01 1.042675e+01 lineto -6.502611e+01 1.119575e+01 lineto -6.632599e+01 1.123199e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.642182e+01 1.203656e+01 moveto -6.632599e+01 1.123199e+01 lineto -6.502611e+01 1.119575e+01 lineto -6.502799e+01 1.19977e+01 lineto -6.642182e+01 1.203656e+01 lineto -closepath -gsave -6.846297e-01 6.846297e-01 8.557871e-01 setrgbcolor -fill -grestore -newpath -6.642182e+01 1.203656e+01 moveto -6.632599e+01 1.123199e+01 lineto -6.502611e+01 1.119575e+01 lineto -6.502799e+01 1.19977e+01 lineto -6.642182e+01 1.203656e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.65163e+01 1.287328e+01 moveto -6.642182e+01 1.203656e+01 lineto -6.502799e+01 1.19977e+01 lineto -6.502985e+01 1.283184e+01 lineto -6.65163e+01 1.287328e+01 lineto -closepath -gsave -6.89382e-01 6.89382e-01 8.617275e-01 setrgbcolor -fill -grestore -newpath -6.65163e+01 1.287328e+01 moveto -6.642182e+01 1.203656e+01 lineto -6.502799e+01 1.19977e+01 lineto -6.502985e+01 1.283184e+01 lineto -6.65163e+01 1.287328e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.660935e+01 1.374137e+01 moveto -6.65163e+01 1.287328e+01 lineto -6.502985e+01 1.283184e+01 lineto -6.503168e+01 1.369739e+01 lineto -6.660935e+01 1.374137e+01 lineto -closepath -gsave -6.93983e-01 6.93983e-01 8.674787e-01 setrgbcolor -fill -grestore -newpath -6.660935e+01 1.374137e+01 moveto -6.65163e+01 1.287328e+01 lineto -6.502985e+01 1.283184e+01 lineto -6.503168e+01 1.369739e+01 lineto -6.660935e+01 1.374137e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.670087e+01 1.464001e+01 moveto -6.660935e+01 1.374137e+01 lineto -6.503168e+01 1.369739e+01 lineto -6.503349e+01 1.459352e+01 lineto -6.670087e+01 1.464001e+01 lineto -closepath -gsave -6.984276e-01 6.984276e-01 8.730345e-01 setrgbcolor -fill -grestore -newpath -6.670087e+01 1.464001e+01 moveto -6.660935e+01 1.374137e+01 lineto -6.503168e+01 1.369739e+01 lineto -6.503349e+01 1.459352e+01 lineto -6.670087e+01 1.464001e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.679078e+01 1.556833e+01 moveto -6.670087e+01 1.464001e+01 lineto -6.503349e+01 1.459352e+01 lineto -6.503526e+01 1.551939e+01 lineto -6.679078e+01 1.556833e+01 lineto -closepath -gsave -7.027113e-01 7.027113e-01 8.783891e-01 setrgbcolor -fill -grestore -newpath -6.679078e+01 1.556833e+01 moveto -6.670087e+01 1.464001e+01 lineto -6.503349e+01 1.459352e+01 lineto -6.503526e+01 1.551939e+01 lineto -6.679078e+01 1.556833e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.6879e+01 1.652547e+01 moveto -6.679078e+01 1.556833e+01 lineto -6.503526e+01 1.551939e+01 lineto -6.503699e+01 1.647412e+01 lineto -6.6879e+01 1.652547e+01 lineto -closepath -gsave -7.068297e-01 7.068297e-01 8.835371e-01 setrgbcolor -fill -grestore -newpath -6.6879e+01 1.652547e+01 moveto -6.679078e+01 1.556833e+01 lineto -6.503526e+01 1.551939e+01 lineto -6.503699e+01 1.647412e+01 lineto -6.6879e+01 1.652547e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.696544e+01 1.751052e+01 moveto -6.6879e+01 1.652547e+01 lineto -6.503699e+01 1.647412e+01 lineto -6.50387e+01 1.74568e+01 lineto -6.696544e+01 1.751052e+01 lineto -closepath -gsave -7.107789e-01 7.107789e-01 8.884737e-01 setrgbcolor -fill -grestore -newpath -6.696544e+01 1.751052e+01 moveto -6.6879e+01 1.652547e+01 lineto -6.503699e+01 1.647412e+01 lineto -6.50387e+01 1.74568e+01 lineto -6.696544e+01 1.751052e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.705002e+01 1.852254e+01 moveto -6.696544e+01 1.751052e+01 lineto -6.50387e+01 1.74568e+01 lineto -6.504036e+01 1.846651e+01 lineto -6.705002e+01 1.852254e+01 lineto -closepath -gsave -7.145555e-01 7.145555e-01 8.931944e-01 setrgbcolor -fill -grestore -newpath -6.705002e+01 1.852254e+01 moveto -6.696544e+01 1.751052e+01 lineto -6.50387e+01 1.74568e+01 lineto -6.504036e+01 1.846651e+01 lineto -6.705002e+01 1.852254e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.713266e+01 1.956057e+01 moveto -6.705002e+01 1.852254e+01 lineto -6.504036e+01 1.846651e+01 lineto -6.504199e+01 1.950229e+01 lineto -6.713266e+01 1.956057e+01 lineto -closepath -gsave -7.181561e-01 7.181561e-01 8.976951e-01 setrgbcolor -fill -grestore -newpath -6.713266e+01 1.956057e+01 moveto -6.705002e+01 1.852254e+01 lineto -6.504036e+01 1.846651e+01 lineto -6.504199e+01 1.950229e+01 lineto -6.713266e+01 1.956057e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.721327e+01 2.062364e+01 moveto -6.713266e+01 1.956057e+01 lineto -6.504199e+01 1.950229e+01 lineto -6.504358e+01 2.056315e+01 lineto -6.721327e+01 2.062364e+01 lineto -closepath -gsave -7.215779e-01 7.215779e-01 9.019723e-01 setrgbcolor -fill -grestore -newpath -6.721327e+01 2.062364e+01 moveto -6.713266e+01 1.956057e+01 lineto -6.504199e+01 1.950229e+01 lineto -6.504358e+01 2.056315e+01 lineto -6.721327e+01 2.062364e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.72918e+01 2.171074e+01 moveto -6.721327e+01 2.062364e+01 lineto -6.504358e+01 2.056315e+01 lineto -6.504512e+01 2.16481e+01 lineto -6.72918e+01 2.171074e+01 lineto -closepath -gsave -7.248181e-01 7.248181e-01 9.060227e-01 setrgbcolor -fill -grestore -newpath -6.72918e+01 2.171074e+01 moveto -6.721327e+01 2.062364e+01 lineto -6.504358e+01 2.056315e+01 lineto -6.504512e+01 2.16481e+01 lineto -6.72918e+01 2.171074e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.736815e+01 2.282083e+01 moveto -6.72918e+01 2.171074e+01 lineto -6.504512e+01 2.16481e+01 lineto -6.504662e+01 2.275611e+01 lineto -6.736815e+01 2.282083e+01 lineto -closepath -gsave -7.278746e-01 7.278746e-01 9.098433e-01 setrgbcolor -fill -grestore -newpath -6.736815e+01 2.282083e+01 moveto -6.72918e+01 2.171074e+01 lineto -6.504512e+01 2.16481e+01 lineto -6.504662e+01 2.275611e+01 lineto -6.736815e+01 2.282083e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.744226e+01 2.395287e+01 moveto -6.736815e+01 2.282083e+01 lineto -6.504662e+01 2.275611e+01 lineto -6.504808e+01 2.388612e+01 lineto -6.744226e+01 2.395287e+01 lineto -closepath -gsave -7.307452e-01 7.307452e-01 9.134316e-01 setrgbcolor -fill -grestore -newpath -6.744226e+01 2.395287e+01 moveto -6.736815e+01 2.282083e+01 lineto -6.504662e+01 2.275611e+01 lineto -6.504808e+01 2.388612e+01 lineto -6.744226e+01 2.395287e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.751406e+01 2.510578e+01 moveto -6.744226e+01 2.395287e+01 lineto -6.504808e+01 2.388612e+01 lineto -6.50495e+01 2.503707e+01 lineto -6.751406e+01 2.510578e+01 lineto -closepath -gsave -7.334282e-01 7.334282e-01 9.167852e-01 setrgbcolor -fill -grestore -newpath -6.751406e+01 2.510578e+01 moveto -6.744226e+01 2.395287e+01 lineto -6.504808e+01 2.388612e+01 lineto -6.50495e+01 2.503707e+01 lineto -6.751406e+01 2.510578e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.758347e+01 2.627848e+01 moveto -6.751406e+01 2.510578e+01 lineto -6.50495e+01 2.503707e+01 lineto -6.505086e+01 2.620787e+01 lineto -6.758347e+01 2.627848e+01 lineto -closepath -gsave -7.359218e-01 7.359218e-01 9.199023e-01 setrgbcolor -fill -grestore -newpath -6.758347e+01 2.627848e+01 moveto -6.751406e+01 2.510578e+01 lineto -6.50495e+01 2.503707e+01 lineto -6.505086e+01 2.620787e+01 lineto -6.758347e+01 2.627848e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.765044e+01 2.746984e+01 moveto -6.758347e+01 2.627848e+01 lineto -6.505086e+01 2.620787e+01 lineto -6.505218e+01 2.739741e+01 lineto -6.765044e+01 2.746984e+01 lineto -closepath -gsave -7.382248e-01 7.382248e-01 9.22781e-01 setrgbcolor -fill -grestore -newpath -6.765044e+01 2.746984e+01 moveto -6.758347e+01 2.627848e+01 lineto -6.505086e+01 2.620787e+01 lineto -6.505218e+01 2.739741e+01 lineto -6.765044e+01 2.746984e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.771491e+01 2.867876e+01 moveto -6.765044e+01 2.746984e+01 lineto -6.505218e+01 2.739741e+01 lineto -6.505345e+01 2.860456e+01 lineto -6.771491e+01 2.867876e+01 lineto -closepath -gsave -7.40336e-01 7.40336e-01 9.2542e-01 setrgbcolor -fill -grestore -newpath -6.771491e+01 2.867876e+01 moveto -6.765044e+01 2.746984e+01 lineto -6.505218e+01 2.739741e+01 lineto -6.505345e+01 2.860456e+01 lineto -6.771491e+01 2.867876e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.77768e+01 2.990407e+01 moveto -6.771491e+01 2.867876e+01 lineto -6.505345e+01 2.860456e+01 lineto -6.505467e+01 2.982818e+01 lineto -6.77768e+01 2.990407e+01 lineto -closepath -gsave -7.422542e-01 7.422542e-01 9.278178e-01 setrgbcolor -fill -grestore -newpath -6.77768e+01 2.990407e+01 moveto -6.771491e+01 2.867876e+01 lineto -6.505345e+01 2.860456e+01 lineto -6.505467e+01 2.982818e+01 lineto -6.77768e+01 2.990407e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.783606e+01 3.114462e+01 moveto -6.77768e+01 2.990407e+01 lineto -6.505467e+01 2.982818e+01 lineto -6.505584e+01 3.106712e+01 lineto -6.783606e+01 3.114462e+01 lineto -closepath -gsave -7.439788e-01 7.439788e-01 9.299735e-01 setrgbcolor -fill -grestore -newpath -6.783606e+01 3.114462e+01 moveto -6.77768e+01 2.990407e+01 lineto -6.505467e+01 2.982818e+01 lineto -6.505584e+01 3.106712e+01 lineto -6.783606e+01 3.114462e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.789264e+01 3.239924e+01 moveto -6.783606e+01 3.114462e+01 lineto -6.505584e+01 3.106712e+01 lineto -6.505695e+01 3.232019e+01 lineto -6.789264e+01 3.239924e+01 lineto -closepath -gsave -7.455089e-01 7.455089e-01 9.318861e-01 setrgbcolor -fill -grestore -newpath -6.789264e+01 3.239924e+01 moveto -6.783606e+01 3.114462e+01 lineto -6.505584e+01 3.106712e+01 lineto -6.505695e+01 3.232019e+01 lineto -6.789264e+01 3.239924e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.794648e+01 3.366674e+01 moveto -6.789264e+01 3.239924e+01 lineto -6.505695e+01 3.232019e+01 lineto -6.505801e+01 3.358621e+01 lineto -6.794648e+01 3.366674e+01 lineto -closepath -gsave -7.46844e-01 7.46844e-01 9.33555e-01 setrgbcolor -fill -grestore -newpath -6.794648e+01 3.366674e+01 moveto -6.789264e+01 3.239924e+01 lineto -6.505695e+01 3.232019e+01 lineto -6.505801e+01 3.358621e+01 lineto -6.794648e+01 3.366674e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.799752e+01 3.494591e+01 moveto -6.794648e+01 3.366674e+01 lineto -6.505801e+01 3.358621e+01 lineto -6.505902e+01 3.486399e+01 lineto -6.799752e+01 3.494591e+01 lineto -closepath -gsave -7.479835e-01 7.479835e-01 9.349794e-01 setrgbcolor -fill -grestore -newpath -6.799752e+01 3.494591e+01 moveto -6.794648e+01 3.366674e+01 lineto -6.505801e+01 3.358621e+01 lineto -6.505902e+01 3.486399e+01 lineto -6.799752e+01 3.494591e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.804573e+01 3.623555e+01 moveto -6.799752e+01 3.494591e+01 lineto -6.505902e+01 3.486399e+01 lineto -6.505996e+01 3.615231e+01 lineto -6.804573e+01 3.623555e+01 lineto -closepath -gsave -7.489271e-01 7.489271e-01 9.361589e-01 setrgbcolor -fill -grestore -newpath -6.804573e+01 3.623555e+01 moveto -6.799752e+01 3.494591e+01 lineto -6.505902e+01 3.486399e+01 lineto -6.505996e+01 3.615231e+01 lineto -6.804573e+01 3.623555e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.809106e+01 3.753443e+01 moveto -6.804573e+01 3.623555e+01 lineto -6.505996e+01 3.615231e+01 lineto -6.506086e+01 3.744996e+01 lineto -6.809106e+01 3.753443e+01 lineto -closepath -gsave -7.496745e-01 7.496745e-01 9.370931e-01 setrgbcolor -fill -grestore -newpath -6.809106e+01 3.753443e+01 moveto -6.804573e+01 3.623555e+01 lineto -6.505996e+01 3.615231e+01 lineto -6.506086e+01 3.744996e+01 lineto -6.809106e+01 3.753443e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.813346e+01 3.884133e+01 moveto -6.809106e+01 3.753443e+01 lineto -6.506086e+01 3.744996e+01 lineto -6.506169e+01 3.87557e+01 lineto -6.813346e+01 3.884133e+01 lineto -closepath -gsave -7.502254e-01 7.502254e-01 9.377818e-01 setrgbcolor -fill -grestore -newpath -6.813346e+01 3.884133e+01 moveto -6.809106e+01 3.753443e+01 lineto -6.506086e+01 3.744996e+01 lineto -6.506169e+01 3.87557e+01 lineto -6.813346e+01 3.884133e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.81729e+01 4.015501e+01 moveto -6.813346e+01 3.884133e+01 lineto -6.506169e+01 3.87557e+01 lineto -6.506247e+01 4.00683e+01 lineto -6.81729e+01 4.015501e+01 lineto -closepath -gsave -7.505798e-01 7.505798e-01 9.382247e-01 setrgbcolor -fill -grestore -newpath -6.81729e+01 4.015501e+01 moveto -6.813346e+01 3.884133e+01 lineto -6.506169e+01 3.87557e+01 lineto -6.506247e+01 4.00683e+01 lineto -6.81729e+01 4.015501e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.820932e+01 4.147422e+01 moveto -6.81729e+01 4.015501e+01 lineto -6.506247e+01 4.00683e+01 lineto -6.506319e+01 4.138651e+01 lineto -6.820932e+01 4.147422e+01 lineto -closepath -gsave -7.507374e-01 7.507374e-01 9.384218e-01 setrgbcolor -fill -grestore -newpath -6.820932e+01 4.147422e+01 moveto -6.81729e+01 4.015501e+01 lineto -6.506247e+01 4.00683e+01 lineto -6.506319e+01 4.138651e+01 lineto -6.820932e+01 4.147422e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.500207e+01 4.327317e+00 moveto -6.500001e+01 4.000996e+00 lineto -6.499967e+01 4.00098e+00 lineto -6.489905e+01 4.322551e+00 lineto -6.500207e+01 4.327317e+00 lineto -closepath -gsave -6.122237e-01 6.122237e-01 7.652796e-01 setrgbcolor -fill -grestore -newpath -6.500207e+01 4.327317e+00 moveto -6.500001e+01 4.000996e+00 lineto -6.499967e+01 4.00098e+00 lineto -6.489905e+01 4.322551e+00 lineto -6.500207e+01 4.327317e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.500413e+01 4.693094e+00 moveto -6.500207e+01 4.327317e+00 lineto -6.489905e+01 4.322551e+00 lineto -6.479853e+01 4.683582e+00 lineto -6.500413e+01 4.693094e+00 lineto -closepath -gsave -6.186818e-01 6.186818e-01 7.733523e-01 setrgbcolor -fill -grestore -newpath -6.500413e+01 4.693094e+00 moveto -6.500207e+01 4.327317e+00 lineto -6.489905e+01 4.322551e+00 lineto -6.479853e+01 4.683582e+00 lineto -6.500413e+01 4.693094e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.500618e+01 5.097981e+00 moveto -6.500413e+01 4.693094e+00 lineto -6.479853e+01 4.683582e+00 lineto -6.46982e+01 5.083732e+00 lineto -6.500618e+01 5.097981e+00 lineto -closepath -gsave -6.250891e-01 6.250891e-01 7.813613e-01 setrgbcolor -fill -grestore -newpath -6.500618e+01 5.097981e+00 moveto -6.500413e+01 4.693094e+00 lineto -6.479853e+01 4.683582e+00 lineto -6.46982e+01 5.083732e+00 lineto -6.500618e+01 5.097981e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.500823e+01 5.541595e+00 moveto -6.500618e+01 5.097981e+00 lineto -6.46982e+01 5.083732e+00 lineto -6.459815e+01 5.522622e+00 lineto -6.500823e+01 5.541595e+00 lineto -closepath -gsave -6.31435e-01 6.31435e-01 7.892937e-01 setrgbcolor -fill -grestore -newpath -6.500823e+01 5.541595e+00 moveto -6.500618e+01 5.097981e+00 lineto -6.46982e+01 5.083732e+00 lineto -6.459815e+01 5.522622e+00 lineto -6.500823e+01 5.541595e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.501028e+01 6.023515e+00 moveto -6.500823e+01 5.541595e+00 lineto -6.459815e+01 5.522622e+00 lineto -6.449849e+01 5.999836e+00 lineto -6.501028e+01 6.023515e+00 lineto -closepath -gsave -6.377095e-01 6.377095e-01 7.971369e-01 setrgbcolor -fill -grestore -newpath -6.501028e+01 6.023515e+00 moveto -6.500823e+01 5.541595e+00 lineto -6.459815e+01 5.522622e+00 lineto -6.449849e+01 5.999836e+00 lineto -6.501028e+01 6.023515e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.501231e+01 6.543285e+00 moveto -6.501028e+01 6.023515e+00 lineto -6.449849e+01 5.999836e+00 lineto -6.43993e+01 6.514923e+00 lineto -6.501231e+01 6.543285e+00 lineto -closepath -gsave -6.439028e-01 6.439028e-01 8.048785e-01 setrgbcolor -fill -grestore -newpath -6.501231e+01 6.543285e+00 moveto -6.501028e+01 6.023515e+00 lineto -6.449849e+01 5.999836e+00 lineto -6.43993e+01 6.514923e+00 lineto -6.501231e+01 6.543285e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.501433e+01 7.100413e+00 moveto -6.501231e+01 6.543285e+00 lineto -6.43993e+01 6.514923e+00 lineto -6.430067e+01 7.067394e+00 lineto -6.501433e+01 7.100413e+00 lineto -closepath -gsave -6.500054e-01 6.500054e-01 8.125067e-01 setrgbcolor -fill -grestore -newpath -6.501433e+01 7.100413e+00 moveto -6.501231e+01 6.543285e+00 lineto -6.43993e+01 6.514923e+00 lineto -6.430067e+01 7.067394e+00 lineto -6.501433e+01 7.100413e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.501634e+01 7.694371e+00 moveto -6.501433e+01 7.100413e+00 lineto -6.430067e+01 7.067394e+00 lineto -6.420271e+01 7.656728e+00 lineto -6.501634e+01 7.694371e+00 lineto -closepath -gsave -6.560081e-01 6.560081e-01 8.200101e-01 setrgbcolor -fill -grestore -newpath -6.501634e+01 7.694371e+00 moveto -6.501433e+01 7.100413e+00 lineto -6.430067e+01 7.067394e+00 lineto -6.420271e+01 7.656728e+00 lineto -6.501634e+01 7.694371e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.501833e+01 8.324598e+00 moveto -6.501634e+01 7.694371e+00 lineto -6.420271e+01 7.656728e+00 lineto -6.410551e+01 8.282365e+00 lineto -6.501833e+01 8.324598e+00 lineto -closepath -gsave -6.619022e-01 6.619022e-01 8.273777e-01 setrgbcolor -fill -grestore -newpath -6.501833e+01 8.324598e+00 moveto -6.501634e+01 7.694371e+00 lineto -6.420271e+01 7.656728e+00 lineto -6.410551e+01 8.282365e+00 lineto -6.501833e+01 8.324598e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.50203e+01 8.990496e+00 moveto -6.501833e+01 8.324598e+00 lineto -6.410551e+01 8.282365e+00 lineto -6.400915e+01 8.943713e+00 lineto -6.50203e+01 8.990496e+00 lineto -closepath -gsave -6.676792e-01 6.676792e-01 8.34599e-01 setrgbcolor -fill -grestore -newpath -6.50203e+01 8.990496e+00 moveto -6.501833e+01 8.324598e+00 lineto -6.410551e+01 8.282365e+00 lineto -6.400915e+01 8.943713e+00 lineto -6.50203e+01 8.990496e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.502226e+01 9.691435e+00 moveto -6.50203e+01 8.990496e+00 lineto -6.400915e+01 8.943713e+00 lineto -6.391373e+01 9.640147e+00 lineto -6.502226e+01 9.691435e+00 lineto -closepath -gsave -6.733313e-01 6.733313e-01 8.416641e-01 setrgbcolor -fill -grestore -newpath -6.502226e+01 9.691435e+00 moveto -6.50203e+01 8.990496e+00 lineto -6.400915e+01 8.943713e+00 lineto -6.391373e+01 9.640147e+00 lineto -6.502226e+01 9.691435e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.502419e+01 1.042675e+01 moveto -6.502226e+01 9.691435e+00 lineto -6.391373e+01 9.640147e+00 lineto -6.381934e+01 1.037101e+01 lineto -6.502419e+01 1.042675e+01 lineto -closepath -gsave -6.788509e-01 6.788509e-01 8.485636e-01 setrgbcolor -fill -grestore -newpath -6.502419e+01 1.042675e+01 moveto -6.502226e+01 9.691435e+00 lineto -6.391373e+01 9.640147e+00 lineto -6.381934e+01 1.037101e+01 lineto -6.502419e+01 1.042675e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.502611e+01 1.119575e+01 moveto -6.502419e+01 1.042675e+01 lineto -6.381934e+01 1.037101e+01 lineto -6.372606e+01 1.11356e+01 lineto -6.502611e+01 1.119575e+01 lineto -closepath -gsave -6.842308e-01 6.842308e-01 8.552885e-01 setrgbcolor -fill -grestore -newpath -6.502611e+01 1.119575e+01 moveto -6.502419e+01 1.042675e+01 lineto -6.381934e+01 1.037101e+01 lineto -6.372606e+01 1.11356e+01 lineto -6.502611e+01 1.119575e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.502799e+01 1.19977e+01 moveto -6.502611e+01 1.119575e+01 lineto -6.372606e+01 1.11356e+01 lineto -6.3634e+01 1.19332e+01 lineto -6.502799e+01 1.19977e+01 lineto -closepath -gsave -6.894644e-01 6.894644e-01 8.618305e-01 setrgbcolor -fill -grestore -newpath -6.502799e+01 1.19977e+01 moveto -6.502611e+01 1.119575e+01 lineto -6.372606e+01 1.11356e+01 lineto -6.3634e+01 1.19332e+01 lineto -6.502799e+01 1.19977e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.502985e+01 1.283184e+01 moveto -6.502799e+01 1.19977e+01 lineto -6.3634e+01 1.19332e+01 lineto -6.354322e+01 1.276306e+01 lineto -6.502985e+01 1.283184e+01 lineto -closepath -gsave -6.945454e-01 6.945454e-01 8.681817e-01 setrgbcolor -fill -grestore -newpath -6.502985e+01 1.283184e+01 moveto -6.502799e+01 1.19977e+01 lineto -6.3634e+01 1.19332e+01 lineto -6.354322e+01 1.276306e+01 lineto -6.502985e+01 1.283184e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.503168e+01 1.369739e+01 moveto -6.502985e+01 1.283184e+01 lineto -6.354322e+01 1.276306e+01 lineto -6.345383e+01 1.362439e+01 lineto -6.503168e+01 1.369739e+01 lineto -closepath -gsave -6.99468e-01 6.99468e-01 8.74335e-01 setrgbcolor -fill -grestore -newpath -6.503168e+01 1.369739e+01 moveto -6.502985e+01 1.283184e+01 lineto -6.354322e+01 1.276306e+01 lineto -6.345383e+01 1.362439e+01 lineto -6.503168e+01 1.369739e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.503349e+01 1.459352e+01 moveto -6.503168e+01 1.369739e+01 lineto -6.345383e+01 1.362439e+01 lineto -6.33659e+01 1.451637e+01 lineto -6.503349e+01 1.459352e+01 lineto -closepath -gsave -7.042268e-01 7.042268e-01 8.802835e-01 setrgbcolor -fill -grestore -newpath -6.503349e+01 1.459352e+01 moveto -6.503168e+01 1.369739e+01 lineto -6.345383e+01 1.362439e+01 lineto -6.33659e+01 1.451637e+01 lineto -6.503349e+01 1.459352e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.503526e+01 1.551939e+01 moveto -6.503349e+01 1.459352e+01 lineto -6.33659e+01 1.451637e+01 lineto -6.327951e+01 1.543816e+01 lineto -6.503526e+01 1.551939e+01 lineto -closepath -gsave -7.088169e-01 7.088169e-01 8.860211e-01 setrgbcolor -fill -grestore -newpath -6.503526e+01 1.551939e+01 moveto -6.503349e+01 1.459352e+01 lineto -6.33659e+01 1.451637e+01 lineto -6.327951e+01 1.543816e+01 lineto -6.503526e+01 1.551939e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.503699e+01 1.647412e+01 moveto -6.503526e+01 1.551939e+01 lineto -6.327951e+01 1.543816e+01 lineto -6.319476e+01 1.638889e+01 lineto -6.503699e+01 1.647412e+01 lineto -closepath -gsave -7.132337e-01 7.132337e-01 8.915422e-01 setrgbcolor -fill -grestore -newpath -6.503699e+01 1.647412e+01 moveto -6.503526e+01 1.551939e+01 lineto -6.327951e+01 1.543816e+01 lineto -6.319476e+01 1.638889e+01 lineto -6.503699e+01 1.647412e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.50387e+01 1.74568e+01 moveto -6.503699e+01 1.647412e+01 lineto -6.319476e+01 1.638889e+01 lineto -6.311171e+01 1.736765e+01 lineto -6.50387e+01 1.74568e+01 lineto -closepath -gsave -7.174732e-01 7.174732e-01 8.968415e-01 setrgbcolor -fill -grestore -newpath -6.50387e+01 1.74568e+01 moveto -6.503699e+01 1.647412e+01 lineto -6.319476e+01 1.638889e+01 lineto -6.311171e+01 1.736765e+01 lineto -6.50387e+01 1.74568e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.504036e+01 1.846651e+01 moveto -6.50387e+01 1.74568e+01 lineto -6.311171e+01 1.736765e+01 lineto -6.303045e+01 1.837352e+01 lineto -6.504036e+01 1.846651e+01 lineto -closepath -gsave -7.215315e-01 7.215315e-01 9.019144e-01 setrgbcolor -fill -grestore -newpath -6.504036e+01 1.846651e+01 moveto -6.50387e+01 1.74568e+01 lineto -6.311171e+01 1.736765e+01 lineto -6.303045e+01 1.837352e+01 lineto -6.504036e+01 1.846651e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.504199e+01 1.950229e+01 moveto -6.504036e+01 1.846651e+01 lineto -6.303045e+01 1.837352e+01 lineto -6.295106e+01 1.940555e+01 lineto -6.504199e+01 1.950229e+01 lineto -closepath -gsave -7.254053e-01 7.254053e-01 9.067566e-01 setrgbcolor -fill -grestore -newpath -6.504199e+01 1.950229e+01 moveto -6.504036e+01 1.846651e+01 lineto -6.303045e+01 1.837352e+01 lineto -6.295106e+01 1.940555e+01 lineto -6.504199e+01 1.950229e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.504358e+01 2.056315e+01 moveto -6.504199e+01 1.950229e+01 lineto -6.295106e+01 1.940555e+01 lineto -6.287361e+01 2.046276e+01 lineto -6.504358e+01 2.056315e+01 lineto -closepath -gsave -7.290916e-01 7.290916e-01 9.113645e-01 setrgbcolor -fill -grestore -newpath -6.504358e+01 2.056315e+01 moveto -6.504199e+01 1.950229e+01 lineto -6.295106e+01 1.940555e+01 lineto -6.287361e+01 2.046276e+01 lineto -6.504358e+01 2.056315e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.504512e+01 2.16481e+01 moveto -6.504358e+01 2.056315e+01 lineto -6.287361e+01 2.046276e+01 lineto -6.279817e+01 2.154414e+01 lineto -6.504512e+01 2.16481e+01 lineto -closepath -gsave -7.325877e-01 7.325877e-01 9.157347e-01 setrgbcolor -fill -grestore -newpath -6.504512e+01 2.16481e+01 moveto -6.504358e+01 2.056315e+01 lineto -6.287361e+01 2.046276e+01 lineto -6.279817e+01 2.154414e+01 lineto -6.504512e+01 2.16481e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.504662e+01 2.275611e+01 moveto -6.504512e+01 2.16481e+01 lineto -6.279817e+01 2.154414e+01 lineto -6.272481e+01 2.264869e+01 lineto -6.504662e+01 2.275611e+01 lineto -closepath -gsave -7.358913e-01 7.358913e-01 9.198642e-01 setrgbcolor -fill -grestore -newpath -6.504662e+01 2.275611e+01 moveto -6.504512e+01 2.16481e+01 lineto -6.279817e+01 2.154414e+01 lineto -6.272481e+01 2.264869e+01 lineto -6.504662e+01 2.275611e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.504808e+01 2.388612e+01 moveto -6.504662e+01 2.275611e+01 lineto -6.272481e+01 2.264869e+01 lineto -6.265361e+01 2.377534e+01 lineto -6.504808e+01 2.388612e+01 lineto -closepath -gsave -7.390003e-01 7.390003e-01 9.237504e-01 setrgbcolor -fill -grestore -newpath -6.504808e+01 2.388612e+01 moveto -6.504662e+01 2.275611e+01 lineto -6.272481e+01 2.264869e+01 lineto -6.265361e+01 2.377534e+01 lineto -6.504808e+01 2.388612e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.50495e+01 2.503707e+01 moveto -6.504808e+01 2.388612e+01 lineto -6.265361e+01 2.377534e+01 lineto -6.258463e+01 2.492303e+01 lineto -6.50495e+01 2.503707e+01 lineto -closepath -gsave -7.419129e-01 7.419129e-01 9.273912e-01 setrgbcolor -fill -grestore -newpath -6.50495e+01 2.503707e+01 moveto -6.504808e+01 2.388612e+01 lineto -6.265361e+01 2.377534e+01 lineto -6.258463e+01 2.492303e+01 lineto -6.50495e+01 2.503707e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.505086e+01 2.620787e+01 moveto -6.50495e+01 2.503707e+01 lineto -6.258463e+01 2.492303e+01 lineto -6.251794e+01 2.609068e+01 lineto -6.505086e+01 2.620787e+01 lineto -closepath -gsave -7.446276e-01 7.446276e-01 9.307845e-01 setrgbcolor -fill -grestore -newpath -6.505086e+01 2.620787e+01 moveto -6.50495e+01 2.503707e+01 lineto -6.258463e+01 2.492303e+01 lineto -6.251794e+01 2.609068e+01 lineto -6.505086e+01 2.620787e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.505218e+01 2.739741e+01 moveto -6.505086e+01 2.620787e+01 lineto -6.251794e+01 2.609068e+01 lineto -6.24536e+01 2.727718e+01 lineto -6.505218e+01 2.739741e+01 lineto -closepath -gsave -7.471431e-01 7.471431e-01 9.339289e-01 setrgbcolor -fill -grestore -newpath -6.505218e+01 2.739741e+01 moveto -6.505086e+01 2.620787e+01 lineto -6.251794e+01 2.609068e+01 lineto -6.24536e+01 2.727718e+01 lineto -6.505218e+01 2.739741e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.505345e+01 2.860456e+01 moveto -6.505218e+01 2.739741e+01 lineto -6.24536e+01 2.727718e+01 lineto -6.239167e+01 2.848141e+01 lineto -6.505345e+01 2.860456e+01 lineto -closepath -gsave -7.494582e-01 7.494582e-01 9.368228e-01 setrgbcolor -fill -grestore -newpath -6.505345e+01 2.860456e+01 moveto -6.505218e+01 2.739741e+01 lineto -6.24536e+01 2.727718e+01 lineto -6.239167e+01 2.848141e+01 lineto -6.505345e+01 2.860456e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.505467e+01 2.982818e+01 moveto -6.505345e+01 2.860456e+01 lineto -6.239167e+01 2.848141e+01 lineto -6.23322e+01 2.970222e+01 lineto -6.505467e+01 2.982818e+01 lineto -closepath -gsave -7.515721e-01 7.515721e-01 9.394652e-01 setrgbcolor -fill -grestore -newpath -6.505467e+01 2.982818e+01 moveto -6.505345e+01 2.860456e+01 lineto -6.239167e+01 2.848141e+01 lineto -6.23322e+01 2.970222e+01 lineto -6.505467e+01 2.982818e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.505584e+01 3.106712e+01 moveto -6.505467e+01 2.982818e+01 lineto -6.23322e+01 2.970222e+01 lineto -6.227527e+01 3.093847e+01 lineto -6.505584e+01 3.106712e+01 lineto -closepath -gsave -7.53484e-01 7.53484e-01 9.418551e-01 setrgbcolor -fill -grestore -newpath -6.505584e+01 3.106712e+01 moveto -6.505467e+01 2.982818e+01 lineto -6.23322e+01 2.970222e+01 lineto -6.227527e+01 3.093847e+01 lineto -6.505584e+01 3.106712e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.505695e+01 3.232019e+01 moveto -6.505584e+01 3.106712e+01 lineto -6.227527e+01 3.093847e+01 lineto -6.222091e+01 3.218897e+01 lineto -6.505695e+01 3.232019e+01 lineto -closepath -gsave -7.551933e-01 7.551933e-01 9.439917e-01 setrgbcolor -fill -grestore -newpath -6.505695e+01 3.232019e+01 moveto -6.505584e+01 3.106712e+01 lineto -6.227527e+01 3.093847e+01 lineto -6.222091e+01 3.218897e+01 lineto -6.505695e+01 3.232019e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.505801e+01 3.358621e+01 moveto -6.505695e+01 3.232019e+01 lineto -6.222091e+01 3.218897e+01 lineto -6.216919e+01 3.345256e+01 lineto -6.505801e+01 3.358621e+01 lineto -closepath -gsave -7.566995e-01 7.566995e-01 9.458744e-01 setrgbcolor -fill -grestore -newpath -6.505801e+01 3.358621e+01 moveto -6.505695e+01 3.232019e+01 lineto -6.222091e+01 3.218897e+01 lineto -6.216919e+01 3.345256e+01 lineto -6.505801e+01 3.358621e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.505902e+01 3.486399e+01 moveto -6.505801e+01 3.358621e+01 lineto -6.216919e+01 3.345256e+01 lineto -6.212014e+01 3.472802e+01 lineto -6.505902e+01 3.486399e+01 lineto -closepath -gsave -7.580023e-01 7.580023e-01 9.475028e-01 setrgbcolor -fill -grestore -newpath -6.505902e+01 3.486399e+01 moveto -6.505801e+01 3.358621e+01 lineto -6.216919e+01 3.345256e+01 lineto -6.212014e+01 3.472802e+01 lineto -6.505902e+01 3.486399e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.505996e+01 3.615231e+01 moveto -6.505902e+01 3.486399e+01 lineto -6.212014e+01 3.472802e+01 lineto -6.207382e+01 3.601415e+01 lineto -6.505996e+01 3.615231e+01 lineto -closepath -gsave -7.591012e-01 7.591012e-01 9.488765e-01 setrgbcolor -fill -grestore -newpath -6.505996e+01 3.615231e+01 moveto -6.505902e+01 3.486399e+01 lineto -6.212014e+01 3.472802e+01 lineto -6.207382e+01 3.601415e+01 lineto -6.505996e+01 3.615231e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.506086e+01 3.744996e+01 moveto -6.505996e+01 3.615231e+01 lineto -6.207382e+01 3.601415e+01 lineto -6.203028e+01 3.730974e+01 lineto -6.506086e+01 3.744996e+01 lineto -closepath -gsave -7.599961e-01 7.599961e-01 9.499952e-01 setrgbcolor -fill -grestore -newpath -6.506086e+01 3.744996e+01 moveto -6.505996e+01 3.615231e+01 lineto -6.207382e+01 3.601415e+01 lineto -6.203028e+01 3.730974e+01 lineto -6.506086e+01 3.744996e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.506169e+01 3.87557e+01 moveto -6.506086e+01 3.744996e+01 lineto -6.203028e+01 3.730974e+01 lineto -6.198954e+01 3.861356e+01 lineto -6.506169e+01 3.87557e+01 lineto -closepath -gsave -7.606869e-01 7.606869e-01 9.508586e-01 setrgbcolor -fill -grestore -newpath -6.506169e+01 3.87557e+01 moveto -6.506086e+01 3.744996e+01 lineto -6.203028e+01 3.730974e+01 lineto -6.198954e+01 3.861356e+01 lineto -6.506169e+01 3.87557e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.506247e+01 4.00683e+01 moveto -6.506169e+01 3.87557e+01 lineto -6.198954e+01 3.861356e+01 lineto -6.195166e+01 3.992437e+01 lineto -6.506247e+01 4.00683e+01 lineto -closepath -gsave -7.611734e-01 7.611734e-01 9.514667e-01 setrgbcolor -fill -grestore -newpath -6.506247e+01 4.00683e+01 moveto -6.506169e+01 3.87557e+01 lineto -6.198954e+01 3.861356e+01 lineto -6.195166e+01 3.992437e+01 lineto -6.506247e+01 4.00683e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.506319e+01 4.138651e+01 moveto -6.506247e+01 4.00683e+01 lineto -6.195166e+01 3.992437e+01 lineto -6.191666e+01 4.124093e+01 lineto -6.506319e+01 4.138651e+01 lineto -closepath -gsave -7.614555e-01 7.614555e-01 9.518194e-01 setrgbcolor -fill -grestore -newpath -6.506319e+01 4.138651e+01 moveto -6.506247e+01 4.00683e+01 lineto -6.195166e+01 3.992437e+01 lineto -6.191666e+01 4.124093e+01 lineto -6.506319e+01 4.138651e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.489905e+01 4.322551e+00 moveto -6.499967e+01 4.00098e+00 lineto -6.499934e+01 4.000959e+00 lineto -6.479666e+01 4.31592e+00 lineto -6.489905e+01 4.322551e+00 lineto -closepath -gsave -6.123855e-01 6.123855e-01 7.654819e-01 setrgbcolor -fill -grestore -newpath -6.489905e+01 4.322551e+00 moveto -6.499967e+01 4.00098e+00 lineto -6.499934e+01 4.000959e+00 lineto -6.479666e+01 4.31592e+00 lineto -6.489905e+01 4.322551e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.479853e+01 4.683582e+00 moveto -6.489905e+01 4.322551e+00 lineto -6.479666e+01 4.31592e+00 lineto -6.459418e+01 4.670347e+00 lineto -6.479853e+01 4.683582e+00 lineto -closepath -gsave -6.191672e-01 6.191672e-01 7.73959e-01 setrgbcolor -fill -grestore -newpath -6.479853e+01 4.683582e+00 moveto -6.489905e+01 4.322551e+00 lineto -6.479666e+01 4.31592e+00 lineto -6.459418e+01 4.670347e+00 lineto -6.479853e+01 4.683582e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.46982e+01 5.083732e+00 moveto -6.479853e+01 4.683582e+00 lineto -6.459418e+01 4.670347e+00 lineto -6.439208e+01 5.063906e+00 lineto -6.46982e+01 5.083732e+00 lineto -closepath -gsave -6.258999e-01 6.258999e-01 7.823749e-01 setrgbcolor -fill -grestore -newpath -6.46982e+01 5.083732e+00 moveto -6.479853e+01 4.683582e+00 lineto -6.459418e+01 4.670347e+00 lineto -6.439208e+01 5.063906e+00 lineto -6.46982e+01 5.083732e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.459815e+01 5.522622e+00 moveto -6.46982e+01 5.083732e+00 lineto -6.439208e+01 5.063906e+00 lineto -6.419055e+01 5.496224e+00 lineto -6.459815e+01 5.522622e+00 lineto -closepath -gsave -6.325725e-01 6.325725e-01 7.907156e-01 setrgbcolor -fill -grestore -newpath -6.459815e+01 5.522622e+00 moveto -6.46982e+01 5.083732e+00 lineto -6.439208e+01 5.063906e+00 lineto -6.419055e+01 5.496224e+00 lineto -6.459815e+01 5.522622e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.449849e+01 5.999836e+00 moveto -6.459815e+01 5.522622e+00 lineto -6.419055e+01 5.496224e+00 lineto -6.398979e+01 5.96689e+00 lineto -6.449849e+01 5.999836e+00 lineto -closepath -gsave -6.391739e-01 6.391739e-01 7.989674e-01 setrgbcolor -fill -grestore -newpath -6.449849e+01 5.999836e+00 moveto -6.459815e+01 5.522622e+00 lineto -6.419055e+01 5.496224e+00 lineto -6.398979e+01 5.96689e+00 lineto -6.449849e+01 5.999836e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.43993e+01 6.514923e+00 moveto -6.449849e+01 5.999836e+00 lineto -6.398979e+01 5.96689e+00 lineto -6.378999e+01 6.475461e+00 lineto -6.43993e+01 6.514923e+00 lineto -closepath -gsave -6.456936e-01 6.456936e-01 8.07117e-01 setrgbcolor -fill -grestore -newpath -6.43993e+01 6.514923e+00 moveto -6.449849e+01 5.999836e+00 lineto -6.398979e+01 5.96689e+00 lineto -6.378999e+01 6.475461e+00 lineto -6.43993e+01 6.514923e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.430067e+01 7.067394e+00 moveto -6.43993e+01 6.514923e+00 lineto -6.378999e+01 6.475461e+00 lineto -6.359133e+01 7.021454e+00 lineto -6.430067e+01 7.067394e+00 lineto -closepath -gsave -6.521211e-01 6.521211e-01 8.151514e-01 setrgbcolor -fill -grestore -newpath -6.430067e+01 7.067394e+00 moveto -6.43993e+01 6.514923e+00 lineto -6.378999e+01 6.475461e+00 lineto -6.359133e+01 7.021454e+00 lineto -6.430067e+01 7.067394e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.420271e+01 7.656728e+00 moveto -6.430067e+01 7.067394e+00 lineto -6.359133e+01 7.021454e+00 lineto -6.339401e+01 7.604352e+00 lineto -6.420271e+01 7.656728e+00 lineto -closepath -gsave -6.584466e-01 6.584466e-01 8.230583e-01 setrgbcolor -fill -grestore -newpath -6.420271e+01 7.656728e+00 moveto -6.430067e+01 7.067394e+00 lineto -6.359133e+01 7.021454e+00 lineto -6.339401e+01 7.604352e+00 lineto -6.420271e+01 7.656728e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.410551e+01 8.282365e+00 moveto -6.420271e+01 7.656728e+00 lineto -6.339401e+01 7.604352e+00 lineto -6.31982e+01 8.223604e+00 lineto -6.410551e+01 8.282365e+00 lineto -closepath -gsave -6.646607e-01 6.646607e-01 8.308258e-01 setrgbcolor -fill -grestore -newpath -6.410551e+01 8.282365e+00 moveto -6.420271e+01 7.656728e+00 lineto -6.339401e+01 7.604352e+00 lineto -6.31982e+01 8.223604e+00 lineto -6.410551e+01 8.282365e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.400915e+01 8.943713e+00 moveto -6.410551e+01 8.282365e+00 lineto -6.31982e+01 8.223604e+00 lineto -6.30041e+01 8.878622e+00 lineto -6.400915e+01 8.943713e+00 lineto -closepath -gsave -6.707541e-01 6.707541e-01 8.384427e-01 setrgbcolor -fill -grestore -newpath -6.400915e+01 8.943713e+00 moveto -6.410551e+01 8.282365e+00 lineto -6.31982e+01 8.223604e+00 lineto -6.30041e+01 8.878622e+00 lineto -6.400915e+01 8.943713e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.391373e+01 9.640147e+00 moveto -6.400915e+01 8.943713e+00 lineto -6.30041e+01 8.878622e+00 lineto -6.28119e+01 9.568788e+00 lineto -6.391373e+01 9.640147e+00 lineto -closepath -gsave -6.767184e-01 6.767184e-01 8.458981e-01 setrgbcolor -fill -grestore -newpath -6.391373e+01 9.640147e+00 moveto -6.400915e+01 8.943713e+00 lineto -6.30041e+01 8.878622e+00 lineto -6.28119e+01 9.568788e+00 lineto -6.391373e+01 9.640147e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.381934e+01 1.037101e+01 moveto -6.391373e+01 9.640147e+00 lineto -6.28119e+01 9.568788e+00 lineto -6.262176e+01 1.029345e+01 lineto -6.381934e+01 1.037101e+01 lineto -closepath -gsave -6.825455e-01 6.825455e-01 8.531818e-01 setrgbcolor -fill -grestore -newpath -6.381934e+01 1.037101e+01 moveto -6.391373e+01 9.640147e+00 lineto -6.28119e+01 9.568788e+00 lineto -6.262176e+01 1.029345e+01 lineto -6.381934e+01 1.037101e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.372606e+01 1.11356e+01 moveto -6.381934e+01 1.037101e+01 lineto -6.262176e+01 1.029345e+01 lineto -6.243388e+01 1.105191e+01 lineto -6.372606e+01 1.11356e+01 lineto -closepath -gsave -6.882275e-01 6.882275e-01 8.602844e-01 setrgbcolor -fill -grestore -newpath -6.372606e+01 1.11356e+01 moveto -6.381934e+01 1.037101e+01 lineto -6.262176e+01 1.029345e+01 lineto -6.243388e+01 1.105191e+01 lineto -6.372606e+01 1.11356e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.3634e+01 1.19332e+01 moveto -6.372606e+01 1.11356e+01 lineto -6.243388e+01 1.105191e+01 lineto -6.224842e+01 1.184347e+01 lineto -6.3634e+01 1.19332e+01 lineto -closepath -gsave -6.937574e-01 6.937574e-01 8.671968e-01 setrgbcolor -fill -grestore -newpath -6.3634e+01 1.19332e+01 moveto -6.372606e+01 1.11356e+01 lineto -6.243388e+01 1.105191e+01 lineto -6.224842e+01 1.184347e+01 lineto -6.3634e+01 1.19332e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.354322e+01 1.276306e+01 moveto -6.3634e+01 1.19332e+01 lineto -6.224842e+01 1.184347e+01 lineto -6.206557e+01 1.266736e+01 lineto -6.354322e+01 1.276306e+01 lineto -closepath -gsave -6.991285e-01 6.991285e-01 8.739107e-01 setrgbcolor -fill -grestore -newpath -6.354322e+01 1.276306e+01 moveto -6.3634e+01 1.19332e+01 lineto -6.224842e+01 1.184347e+01 lineto -6.206557e+01 1.266736e+01 lineto -6.354322e+01 1.276306e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.345383e+01 1.362439e+01 moveto -6.354322e+01 1.276306e+01 lineto -6.206557e+01 1.266736e+01 lineto -6.18855e+01 1.352282e+01 lineto -6.345383e+01 1.362439e+01 lineto -closepath -gsave -7.043346e-01 7.043346e-01 8.804183e-01 setrgbcolor -fill -grestore -newpath -6.345383e+01 1.362439e+01 moveto -6.354322e+01 1.276306e+01 lineto -6.206557e+01 1.266736e+01 lineto -6.18855e+01 1.352282e+01 lineto -6.345383e+01 1.362439e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.33659e+01 1.451637e+01 moveto -6.345383e+01 1.362439e+01 lineto -6.18855e+01 1.352282e+01 lineto -6.170838e+01 1.440902e+01 lineto -6.33659e+01 1.451637e+01 lineto -closepath -gsave -7.0937e-01 7.0937e-01 8.867125e-01 setrgbcolor -fill -grestore -newpath -6.33659e+01 1.451637e+01 moveto -6.345383e+01 1.362439e+01 lineto -6.18855e+01 1.352282e+01 lineto -6.170838e+01 1.440902e+01 lineto -6.33659e+01 1.451637e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.327951e+01 1.543816e+01 moveto -6.33659e+01 1.451637e+01 lineto -6.170838e+01 1.440902e+01 lineto -6.153438e+01 1.532514e+01 lineto -6.327951e+01 1.543816e+01 lineto -closepath -gsave -7.142294e-01 7.142294e-01 8.927867e-01 setrgbcolor -fill -grestore -newpath -6.327951e+01 1.543816e+01 moveto -6.33659e+01 1.451637e+01 lineto -6.170838e+01 1.440902e+01 lineto -6.153438e+01 1.532514e+01 lineto -6.327951e+01 1.543816e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.319476e+01 1.638889e+01 moveto -6.327951e+01 1.543816e+01 lineto -6.153438e+01 1.532514e+01 lineto -6.136365e+01 1.62703e+01 lineto -6.319476e+01 1.638889e+01 lineto -closepath -gsave -7.18908e-01 7.18908e-01 8.98635e-01 setrgbcolor -fill -grestore -newpath -6.319476e+01 1.638889e+01 moveto -6.327951e+01 1.543816e+01 lineto -6.153438e+01 1.532514e+01 lineto -6.136365e+01 1.62703e+01 lineto -6.319476e+01 1.638889e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.311171e+01 1.736765e+01 moveto -6.319476e+01 1.638889e+01 lineto -6.136365e+01 1.62703e+01 lineto -6.119637e+01 1.72436e+01 lineto -6.311171e+01 1.736765e+01 lineto -closepath -gsave -7.234016e-01 7.234016e-01 9.04252e-01 setrgbcolor -fill -grestore -newpath -6.311171e+01 1.736765e+01 moveto -6.319476e+01 1.638889e+01 lineto -6.136365e+01 1.62703e+01 lineto -6.119637e+01 1.72436e+01 lineto -6.311171e+01 1.736765e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.303045e+01 1.837352e+01 moveto -6.311171e+01 1.736765e+01 lineto -6.119637e+01 1.72436e+01 lineto -6.103269e+01 1.824414e+01 lineto -6.303045e+01 1.837352e+01 lineto -closepath -gsave -7.277063e-01 7.277063e-01 9.096328e-01 setrgbcolor -fill -grestore -newpath -6.303045e+01 1.837352e+01 moveto -6.311171e+01 1.736765e+01 lineto -6.119637e+01 1.72436e+01 lineto -6.103269e+01 1.824414e+01 lineto -6.303045e+01 1.837352e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.295106e+01 1.940555e+01 moveto -6.303045e+01 1.837352e+01 lineto -6.103269e+01 1.824414e+01 lineto -6.087277e+01 1.927095e+01 lineto -6.295106e+01 1.940555e+01 lineto -closepath -gsave -7.318185e-01 7.318185e-01 9.147731e-01 setrgbcolor -fill -grestore -newpath -6.295106e+01 1.940555e+01 moveto -6.303045e+01 1.837352e+01 lineto -6.103269e+01 1.824414e+01 lineto -6.087277e+01 1.927095e+01 lineto -6.295106e+01 1.940555e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.287361e+01 2.046276e+01 moveto -6.295106e+01 1.940555e+01 lineto -6.087277e+01 1.927095e+01 lineto -6.071675e+01 2.032307e+01 lineto -6.287361e+01 2.046276e+01 lineto -closepath -gsave -7.357352e-01 7.357352e-01 9.196691e-01 setrgbcolor -fill -grestore -newpath -6.287361e+01 2.046276e+01 moveto -6.295106e+01 1.940555e+01 lineto -6.087277e+01 1.927095e+01 lineto -6.071675e+01 2.032307e+01 lineto -6.287361e+01 2.046276e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.279817e+01 2.154414e+01 moveto -6.287361e+01 2.046276e+01 lineto -6.071675e+01 2.032307e+01 lineto -6.056479e+01 2.13995e+01 lineto -6.279817e+01 2.154414e+01 lineto -closepath -gsave -7.394538e-01 7.394538e-01 9.243173e-01 setrgbcolor -fill -grestore -newpath -6.279817e+01 2.154414e+01 moveto -6.287361e+01 2.046276e+01 lineto -6.071675e+01 2.032307e+01 lineto -6.056479e+01 2.13995e+01 lineto -6.279817e+01 2.154414e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.272481e+01 2.264869e+01 moveto -6.279817e+01 2.154414e+01 lineto -6.056479e+01 2.13995e+01 lineto -6.041703e+01 2.249922e+01 lineto -6.272481e+01 2.264869e+01 lineto -closepath -gsave -7.429719e-01 7.429719e-01 9.287149e-01 setrgbcolor -fill -grestore -newpath -6.272481e+01 2.264869e+01 moveto -6.279817e+01 2.154414e+01 lineto -6.056479e+01 2.13995e+01 lineto -6.041703e+01 2.249922e+01 lineto -6.272481e+01 2.264869e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.265361e+01 2.377534e+01 moveto -6.272481e+01 2.264869e+01 lineto -6.041703e+01 2.249922e+01 lineto -6.027361e+01 2.36212e+01 lineto -6.265361e+01 2.377534e+01 lineto -closepath -gsave -7.462874e-01 7.462874e-01 9.328593e-01 setrgbcolor -fill -grestore -newpath -6.265361e+01 2.377534e+01 moveto -6.272481e+01 2.264869e+01 lineto -6.041703e+01 2.249922e+01 lineto -6.027361e+01 2.36212e+01 lineto -6.265361e+01 2.377534e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.258463e+01 2.492303e+01 moveto -6.265361e+01 2.377534e+01 lineto -6.027361e+01 2.36212e+01 lineto -6.013466e+01 2.476436e+01 lineto -6.258463e+01 2.492303e+01 lineto -closepath -gsave -7.493987e-01 7.493987e-01 9.367484e-01 setrgbcolor -fill -grestore -newpath -6.258463e+01 2.492303e+01 moveto -6.265361e+01 2.377534e+01 lineto -6.027361e+01 2.36212e+01 lineto -6.013466e+01 2.476436e+01 lineto -6.258463e+01 2.492303e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.251794e+01 2.609068e+01 moveto -6.258463e+01 2.492303e+01 lineto -6.013466e+01 2.476436e+01 lineto -6.000032e+01 2.592763e+01 lineto -6.251794e+01 2.609068e+01 lineto -closepath -gsave -7.523043e-01 7.523043e-01 9.403804e-01 setrgbcolor -fill -grestore -newpath -6.251794e+01 2.609068e+01 moveto -6.258463e+01 2.492303e+01 lineto -6.013466e+01 2.476436e+01 lineto -6.000032e+01 2.592763e+01 lineto -6.251794e+01 2.609068e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.24536e+01 2.727718e+01 moveto -6.251794e+01 2.609068e+01 lineto -6.000032e+01 2.592763e+01 lineto -5.987071e+01 2.71099e+01 lineto -6.24536e+01 2.727718e+01 lineto -closepath -gsave -7.550031e-01 7.550031e-01 9.437538e-01 setrgbcolor -fill -grestore -newpath -6.24536e+01 2.727718e+01 moveto -6.251794e+01 2.609068e+01 lineto -6.000032e+01 2.592763e+01 lineto -5.987071e+01 2.71099e+01 lineto -6.24536e+01 2.727718e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.239167e+01 2.848141e+01 moveto -6.24536e+01 2.727718e+01 lineto -5.987071e+01 2.71099e+01 lineto -5.974596e+01 2.831006e+01 lineto -6.239167e+01 2.848141e+01 lineto -closepath -gsave -7.574939e-01 7.574939e-01 9.468674e-01 setrgbcolor -fill -grestore -newpath -6.239167e+01 2.848141e+01 moveto -6.24536e+01 2.727718e+01 lineto -5.987071e+01 2.71099e+01 lineto -5.974596e+01 2.831006e+01 lineto -6.239167e+01 2.848141e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.23322e+01 2.970222e+01 moveto -6.239167e+01 2.848141e+01 lineto -5.974596e+01 2.831006e+01 lineto -5.962619e+01 2.952697e+01 lineto -6.23322e+01 2.970222e+01 lineto -closepath -gsave -7.597761e-01 7.597761e-01 9.497201e-01 setrgbcolor -fill -grestore -newpath -6.23322e+01 2.970222e+01 moveto -6.239167e+01 2.848141e+01 lineto -5.974596e+01 2.831006e+01 lineto -5.962619e+01 2.952697e+01 lineto -6.23322e+01 2.970222e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.227527e+01 3.093847e+01 moveto -6.23322e+01 2.970222e+01 lineto -5.962619e+01 2.952697e+01 lineto -5.95115e+01 3.075948e+01 lineto -6.227527e+01 3.093847e+01 lineto -closepath -gsave -7.618491e-01 7.618491e-01 9.523113e-01 setrgbcolor -fill -grestore -newpath -6.227527e+01 3.093847e+01 moveto -6.23322e+01 2.970222e+01 lineto -5.962619e+01 2.952697e+01 lineto -5.95115e+01 3.075948e+01 lineto -6.227527e+01 3.093847e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.222091e+01 3.218897e+01 moveto -6.227527e+01 3.093847e+01 lineto -5.95115e+01 3.075948e+01 lineto -5.940201e+01 3.200641e+01 lineto -6.222091e+01 3.218897e+01 lineto -closepath -gsave -7.637123e-01 7.637123e-01 9.546403e-01 setrgbcolor -fill -grestore -newpath -6.222091e+01 3.218897e+01 moveto -6.227527e+01 3.093847e+01 lineto -5.95115e+01 3.075948e+01 lineto -5.940201e+01 3.200641e+01 lineto -6.222091e+01 3.218897e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.216919e+01 3.345256e+01 moveto -6.222091e+01 3.218897e+01 lineto -5.940201e+01 3.200641e+01 lineto -5.929782e+01 3.326659e+01 lineto -6.216919e+01 3.345256e+01 lineto -closepath -gsave -7.653654e-01 7.653654e-01 9.567068e-01 setrgbcolor -fill -grestore -newpath -6.216919e+01 3.345256e+01 moveto -6.222091e+01 3.218897e+01 lineto -5.940201e+01 3.200641e+01 lineto -5.929782e+01 3.326659e+01 lineto -6.216919e+01 3.345256e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.212014e+01 3.472802e+01 moveto -6.216919e+01 3.345256e+01 lineto -5.929782e+01 3.326659e+01 lineto -5.919902e+01 3.453883e+01 lineto -6.212014e+01 3.472802e+01 lineto -closepath -gsave -7.668082e-01 7.668082e-01 9.585103e-01 setrgbcolor -fill -grestore -newpath -6.212014e+01 3.472802e+01 moveto -6.216919e+01 3.345256e+01 lineto -5.929782e+01 3.326659e+01 lineto -5.919902e+01 3.453883e+01 lineto -6.212014e+01 3.472802e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.207382e+01 3.601415e+01 moveto -6.212014e+01 3.472802e+01 lineto -5.919902e+01 3.453883e+01 lineto -5.910573e+01 3.582193e+01 lineto -6.207382e+01 3.601415e+01 lineto -closepath -gsave -7.680405e-01 7.680405e-01 9.600507e-01 setrgbcolor -fill -grestore -newpath -6.207382e+01 3.601415e+01 moveto -6.212014e+01 3.472802e+01 lineto -5.919902e+01 3.453883e+01 lineto -5.910573e+01 3.582193e+01 lineto -6.207382e+01 3.601415e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.203028e+01 3.730974e+01 moveto -6.207382e+01 3.601415e+01 lineto -5.910573e+01 3.582193e+01 lineto -5.901801e+01 3.711465e+01 lineto -6.203028e+01 3.730974e+01 lineto -closepath -gsave -7.690622e-01 7.690622e-01 9.613278e-01 setrgbcolor -fill -grestore -newpath -6.203028e+01 3.730974e+01 moveto -6.207382e+01 3.601415e+01 lineto -5.910573e+01 3.582193e+01 lineto -5.901801e+01 3.711465e+01 lineto -6.203028e+01 3.730974e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.198954e+01 3.861356e+01 moveto -6.203028e+01 3.730974e+01 lineto -5.901801e+01 3.711465e+01 lineto -5.893595e+01 3.841579e+01 lineto -6.198954e+01 3.861356e+01 lineto -closepath -gsave -7.698732e-01 7.698732e-01 9.623416e-01 setrgbcolor -fill -grestore -newpath -6.198954e+01 3.861356e+01 moveto -6.203028e+01 3.730974e+01 lineto -5.901801e+01 3.711465e+01 lineto -5.893595e+01 3.841579e+01 lineto -6.198954e+01 3.861356e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.195166e+01 3.992437e+01 moveto -6.198954e+01 3.861356e+01 lineto -5.893595e+01 3.841579e+01 lineto -5.885964e+01 3.972412e+01 lineto -6.195166e+01 3.992437e+01 lineto -closepath -gsave -7.704736e-01 7.704736e-01 9.630919e-01 setrgbcolor -fill -grestore -newpath -6.195166e+01 3.992437e+01 moveto -6.198954e+01 3.861356e+01 lineto -5.893595e+01 3.841579e+01 lineto -5.885964e+01 3.972412e+01 lineto -6.195166e+01 3.992437e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.191666e+01 4.124093e+01 moveto -6.195166e+01 3.992437e+01 lineto -5.885964e+01 3.972412e+01 lineto -5.878914e+01 4.103838e+01 lineto -6.191666e+01 4.124093e+01 lineto -closepath -gsave -7.708632e-01 7.708632e-01 9.635789e-01 setrgbcolor -fill -grestore -newpath -6.191666e+01 4.124093e+01 moveto -6.195166e+01 3.992437e+01 lineto -5.885964e+01 3.972412e+01 lineto -5.878914e+01 4.103838e+01 lineto -6.191666e+01 4.124093e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.479666e+01 4.31592e+00 moveto -6.499934e+01 4.000959e+00 lineto -6.499901e+01 4.000931e+00 lineto -6.469552e+01 4.307464e+00 lineto -6.479666e+01 4.31592e+00 lineto -closepath -gsave -6.125261e-01 6.125261e-01 7.656576e-01 setrgbcolor -fill -grestore -newpath -6.479666e+01 4.31592e+00 moveto -6.499934e+01 4.000959e+00 lineto -6.499901e+01 4.000931e+00 lineto -6.469552e+01 4.307464e+00 lineto -6.479666e+01 4.31592e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.459418e+01 4.670347e+00 moveto -6.479666e+01 4.31592e+00 lineto -6.469552e+01 4.307464e+00 lineto -6.439232e+01 4.653471e+00 lineto -6.459418e+01 4.670347e+00 lineto -closepath -gsave -6.19589e-01 6.19589e-01 7.744862e-01 setrgbcolor -fill -grestore -newpath -6.459418e+01 4.670347e+00 moveto -6.479666e+01 4.31592e+00 lineto -6.469552e+01 4.307464e+00 lineto -6.439232e+01 4.653471e+00 lineto -6.459418e+01 4.670347e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.439208e+01 5.063906e+00 moveto -6.459418e+01 4.670347e+00 lineto -6.439232e+01 4.653471e+00 lineto -6.40897e+01 5.038626e+00 lineto -6.439208e+01 5.063906e+00 lineto -closepath -gsave -6.266048e-01 6.266048e-01 7.83256e-01 setrgbcolor -fill -grestore -newpath -6.439208e+01 5.063906e+00 moveto -6.459418e+01 4.670347e+00 lineto -6.439232e+01 4.653471e+00 lineto -6.40897e+01 5.038626e+00 lineto -6.439208e+01 5.063906e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.419055e+01 5.496224e+00 moveto -6.439208e+01 5.063906e+00 lineto -6.40897e+01 5.038626e+00 lineto -6.378794e+01 5.462563e+00 lineto -6.419055e+01 5.496224e+00 lineto -closepath -gsave -6.335614e-01 6.335614e-01 7.919517e-01 setrgbcolor -fill -grestore -newpath -6.419055e+01 5.496224e+00 moveto -6.439208e+01 5.063906e+00 lineto -6.40897e+01 5.038626e+00 lineto -6.378794e+01 5.462563e+00 lineto -6.419055e+01 5.496224e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.398979e+01 5.96689e+00 moveto -6.419055e+01 5.496224e+00 lineto -6.378794e+01 5.462563e+00 lineto -6.348732e+01 5.924881e+00 lineto -6.398979e+01 5.96689e+00 lineto -closepath -gsave -6.40447e-01 6.40447e-01 8.005588e-01 setrgbcolor -fill -grestore -newpath -6.398979e+01 5.96689e+00 moveto -6.419055e+01 5.496224e+00 lineto -6.378794e+01 5.462563e+00 lineto -6.348732e+01 5.924881e+00 lineto -6.398979e+01 5.96689e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.378999e+01 6.475461e+00 moveto -6.398979e+01 5.96689e+00 lineto -6.348732e+01 5.924881e+00 lineto -6.318814e+01 6.425143e+00 lineto -6.378999e+01 6.475461e+00 lineto -closepath -gsave -6.472503e-01 6.472503e-01 8.090629e-01 setrgbcolor -fill -grestore -newpath -6.378999e+01 6.475461e+00 moveto -6.398979e+01 5.96689e+00 lineto -6.348732e+01 5.924881e+00 lineto -6.318814e+01 6.425143e+00 lineto -6.378999e+01 6.475461e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.359133e+01 7.021454e+00 moveto -6.378999e+01 6.475461e+00 lineto -6.318814e+01 6.425143e+00 lineto -6.289067e+01 6.962875e+00 lineto -6.359133e+01 7.021454e+00 lineto -closepath -gsave -6.539602e-01 6.539602e-01 8.174503e-01 setrgbcolor -fill -grestore -newpath -6.359133e+01 7.021454e+00 moveto -6.378999e+01 6.475461e+00 lineto -6.318814e+01 6.425143e+00 lineto -6.289067e+01 6.962875e+00 lineto -6.359133e+01 7.021454e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.339401e+01 7.604352e+00 moveto -6.359133e+01 7.021454e+00 lineto -6.289067e+01 6.962875e+00 lineto -6.25952e+01 7.537567e+00 lineto -6.339401e+01 7.604352e+00 lineto -closepath -gsave -6.605661e-01 6.605661e-01 8.257077e-01 setrgbcolor -fill -grestore -newpath -6.339401e+01 7.604352e+00 moveto -6.359133e+01 7.021454e+00 lineto -6.289067e+01 6.962875e+00 lineto -6.25952e+01 7.537567e+00 lineto -6.339401e+01 7.604352e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.31982e+01 8.223604e+00 moveto -6.339401e+01 7.604352e+00 lineto -6.25952e+01 7.537567e+00 lineto -6.2302e+01 8.148676e+00 lineto -6.31982e+01 8.223604e+00 lineto -closepath -gsave -6.670579e-01 6.670579e-01 8.338224e-01 setrgbcolor -fill -grestore -newpath -6.31982e+01 8.223604e+00 moveto -6.339401e+01 7.604352e+00 lineto -6.25952e+01 7.537567e+00 lineto -6.2302e+01 8.148676e+00 lineto -6.31982e+01 8.223604e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.30041e+01 8.878622e+00 moveto -6.31982e+01 8.223604e+00 lineto -6.2302e+01 8.148676e+00 lineto -6.201136e+01 8.795623e+00 lineto -6.30041e+01 8.878622e+00 lineto -closepath -gsave -6.734258e-01 6.734258e-01 8.417823e-01 setrgbcolor -fill -grestore -newpath -6.30041e+01 8.878622e+00 moveto -6.31982e+01 8.223604e+00 lineto -6.2302e+01 8.148676e+00 lineto -6.201136e+01 8.795623e+00 lineto -6.30041e+01 8.878622e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.28119e+01 9.568788e+00 moveto -6.30041e+01 8.878622e+00 lineto -6.201136e+01 8.795623e+00 lineto -6.172356e+01 9.477796e+00 lineto -6.28119e+01 9.568788e+00 lineto -closepath -gsave -6.796607e-01 6.796607e-01 8.495759e-01 setrgbcolor -fill -grestore -newpath -6.28119e+01 9.568788e+00 moveto -6.30041e+01 8.878622e+00 lineto -6.201136e+01 8.795623e+00 lineto -6.172356e+01 9.477796e+00 lineto -6.28119e+01 9.568788e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.262176e+01 1.029345e+01 moveto -6.28119e+01 9.568788e+00 lineto -6.172356e+01 9.477796e+00 lineto -6.143885e+01 1.019455e+01 lineto -6.262176e+01 1.029345e+01 lineto -closepath -gsave -6.857539e-01 6.857539e-01 8.571924e-01 setrgbcolor -fill -grestore -newpath -6.262176e+01 1.029345e+01 moveto -6.28119e+01 9.568788e+00 lineto -6.172356e+01 9.477796e+00 lineto -6.143885e+01 1.019455e+01 lineto -6.262176e+01 1.029345e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.243388e+01 1.105191e+01 moveto -6.262176e+01 1.029345e+01 lineto -6.143885e+01 1.019455e+01 lineto -6.115751e+01 1.09452e+01 lineto -6.243388e+01 1.105191e+01 lineto -closepath -gsave -6.916973e-01 6.916973e-01 8.646217e-01 setrgbcolor -fill -grestore -newpath -6.243388e+01 1.105191e+01 moveto -6.262176e+01 1.029345e+01 lineto -6.143885e+01 1.019455e+01 lineto -6.115751e+01 1.09452e+01 lineto -6.243388e+01 1.105191e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.224842e+01 1.184347e+01 moveto -6.243388e+01 1.105191e+01 lineto -6.115751e+01 1.09452e+01 lineto -6.087981e+01 1.172904e+01 lineto -6.224842e+01 1.184347e+01 lineto -closepath -gsave -6.974833e-01 6.974833e-01 8.718541e-01 setrgbcolor -fill -grestore -newpath -6.224842e+01 1.184347e+01 moveto -6.243388e+01 1.105191e+01 lineto -6.115751e+01 1.09452e+01 lineto -6.087981e+01 1.172904e+01 lineto -6.224842e+01 1.184347e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.206557e+01 1.266736e+01 moveto -6.224842e+01 1.184347e+01 lineto -6.087981e+01 1.172904e+01 lineto -6.060602e+01 1.254534e+01 lineto -6.206557e+01 1.266736e+01 lineto -closepath -gsave -7.031047e-01 7.031047e-01 8.788809e-01 setrgbcolor -fill -grestore -newpath -6.206557e+01 1.266736e+01 moveto -6.224842e+01 1.184347e+01 lineto -6.087981e+01 1.172904e+01 lineto -6.060602e+01 1.254534e+01 lineto -6.206557e+01 1.266736e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.18855e+01 1.352282e+01 moveto -6.206557e+01 1.266736e+01 lineto -6.060602e+01 1.254534e+01 lineto -6.033638e+01 1.33933e+01 lineto -6.18855e+01 1.352282e+01 lineto -closepath -gsave -7.085551e-01 7.085551e-01 8.856938e-01 setrgbcolor -fill -grestore -newpath -6.18855e+01 1.352282e+01 moveto -6.206557e+01 1.266736e+01 lineto -6.060602e+01 1.254534e+01 lineto -6.033638e+01 1.33933e+01 lineto -6.18855e+01 1.352282e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.170838e+01 1.440902e+01 moveto -6.18855e+01 1.352282e+01 lineto -6.033638e+01 1.33933e+01 lineto -6.007116e+01 1.427214e+01 lineto -6.170838e+01 1.440902e+01 lineto -closepath -gsave -7.138284e-01 7.138284e-01 8.922854e-01 setrgbcolor -fill -grestore -newpath -6.170838e+01 1.440902e+01 moveto -6.18855e+01 1.352282e+01 lineto -6.033638e+01 1.33933e+01 lineto -6.007116e+01 1.427214e+01 lineto -6.170838e+01 1.440902e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.153438e+01 1.532514e+01 moveto -6.170838e+01 1.440902e+01 lineto -6.007116e+01 1.427214e+01 lineto -5.981061e+01 1.518102e+01 lineto -6.153438e+01 1.532514e+01 lineto -closepath -gsave -7.189191e-01 7.189191e-01 8.986489e-01 setrgbcolor -fill -grestore -newpath -6.153438e+01 1.532514e+01 moveto -6.170838e+01 1.440902e+01 lineto -6.007116e+01 1.427214e+01 lineto -5.981061e+01 1.518102e+01 lineto -6.153438e+01 1.532514e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.136365e+01 1.62703e+01 moveto -6.153438e+01 1.532514e+01 lineto -5.981061e+01 1.518102e+01 lineto -5.955496e+01 1.611908e+01 lineto -6.136365e+01 1.62703e+01 lineto -closepath -gsave -7.238223e-01 7.238223e-01 9.047779e-01 setrgbcolor -fill -grestore -newpath -6.136365e+01 1.62703e+01 moveto -6.153438e+01 1.532514e+01 lineto -5.981061e+01 1.518102e+01 lineto -5.955496e+01 1.611908e+01 lineto -6.136365e+01 1.62703e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.119637e+01 1.72436e+01 moveto -6.136365e+01 1.62703e+01 lineto -5.955496e+01 1.611908e+01 lineto -5.930448e+01 1.708543e+01 lineto -6.119637e+01 1.72436e+01 lineto -closepath -gsave -7.285335e-01 7.285335e-01 9.106669e-01 setrgbcolor -fill -grestore -newpath -6.119637e+01 1.72436e+01 moveto -6.136365e+01 1.62703e+01 lineto -5.955496e+01 1.611908e+01 lineto -5.930448e+01 1.708543e+01 lineto -6.119637e+01 1.72436e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.103269e+01 1.824414e+01 moveto -6.119637e+01 1.72436e+01 lineto -5.930448e+01 1.708543e+01 lineto -5.905939e+01 1.807916e+01 lineto -6.103269e+01 1.824414e+01 lineto -closepath -gsave -7.330487e-01 7.330487e-01 9.163109e-01 setrgbcolor -fill -grestore -newpath -6.103269e+01 1.824414e+01 moveto -6.119637e+01 1.72436e+01 lineto -5.930448e+01 1.708543e+01 lineto -5.905939e+01 1.807916e+01 lineto -6.103269e+01 1.824414e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.087277e+01 1.927095e+01 moveto -6.103269e+01 1.824414e+01 lineto -5.905939e+01 1.807916e+01 lineto -5.881992e+01 1.909932e+01 lineto -6.087277e+01 1.927095e+01 lineto -closepath -gsave -7.373644e-01 7.373644e-01 9.217055e-01 setrgbcolor -fill -grestore -newpath -6.087277e+01 1.927095e+01 moveto -6.103269e+01 1.824414e+01 lineto -5.905939e+01 1.807916e+01 lineto -5.881992e+01 1.909932e+01 lineto -6.087277e+01 1.927095e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.071675e+01 2.032307e+01 moveto -6.087277e+01 1.927095e+01 lineto -5.881992e+01 1.909932e+01 lineto -5.85863e+01 2.014495e+01 lineto -6.071675e+01 2.032307e+01 lineto -closepath -gsave -7.414775e-01 7.414775e-01 9.268469e-01 setrgbcolor -fill -grestore -newpath -6.071675e+01 2.032307e+01 moveto -6.087277e+01 1.927095e+01 lineto -5.881992e+01 1.909932e+01 lineto -5.85863e+01 2.014495e+01 lineto -6.071675e+01 2.032307e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.056479e+01 2.13995e+01 moveto -6.071675e+01 2.032307e+01 lineto -5.85863e+01 2.014495e+01 lineto -5.835876e+01 2.121506e+01 lineto -6.056479e+01 2.13995e+01 lineto -closepath -gsave -7.453852e-01 7.453852e-01 9.317315e-01 setrgbcolor -fill -grestore -newpath -6.056479e+01 2.13995e+01 moveto -6.071675e+01 2.032307e+01 lineto -5.85863e+01 2.014495e+01 lineto -5.835876e+01 2.121506e+01 lineto -6.056479e+01 2.13995e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.041703e+01 2.249922e+01 moveto -6.056479e+01 2.13995e+01 lineto -5.835876e+01 2.121506e+01 lineto -5.81375e+01 2.230864e+01 lineto -6.041703e+01 2.249922e+01 lineto -closepath -gsave -7.490853e-01 7.490853e-01 9.363567e-01 setrgbcolor -fill -grestore -newpath -6.041703e+01 2.249922e+01 moveto -6.056479e+01 2.13995e+01 lineto -5.835876e+01 2.121506e+01 lineto -5.81375e+01 2.230864e+01 lineto -6.041703e+01 2.249922e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.027361e+01 2.36212e+01 moveto -6.041703e+01 2.249922e+01 lineto -5.81375e+01 2.230864e+01 lineto -5.792274e+01 2.342465e+01 lineto -6.027361e+01 2.36212e+01 lineto -closepath -gsave -7.525759e-01 7.525759e-01 9.407199e-01 setrgbcolor -fill -grestore -newpath -6.027361e+01 2.36212e+01 moveto -6.041703e+01 2.249922e+01 lineto -5.81375e+01 2.230864e+01 lineto -5.792274e+01 2.342465e+01 lineto -6.027361e+01 2.36212e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.013466e+01 2.476436e+01 moveto -6.027361e+01 2.36212e+01 lineto -5.792274e+01 2.342465e+01 lineto -5.771468e+01 2.456204e+01 lineto -6.013466e+01 2.476436e+01 lineto -closepath -gsave -7.558552e-01 7.558552e-01 9.44819e-01 setrgbcolor -fill -grestore -newpath -6.013466e+01 2.476436e+01 moveto -6.027361e+01 2.36212e+01 lineto -5.792274e+01 2.342465e+01 lineto -5.771468e+01 2.456204e+01 lineto -6.013466e+01 2.476436e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.000032e+01 2.592763e+01 moveto -6.013466e+01 2.476436e+01 lineto -5.771468e+01 2.456204e+01 lineto -5.751352e+01 2.571972e+01 lineto -6.000032e+01 2.592763e+01 lineto -closepath -gsave -7.58922e-01 7.58922e-01 9.486526e-01 setrgbcolor -fill -grestore -newpath -6.000032e+01 2.592763e+01 moveto -6.013466e+01 2.476436e+01 lineto -5.771468e+01 2.456204e+01 lineto -5.751352e+01 2.571972e+01 lineto -6.000032e+01 2.592763e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.987071e+01 2.71099e+01 moveto -6.000032e+01 2.592763e+01 lineto -5.751352e+01 2.571972e+01 lineto -5.731945e+01 2.68966e+01 lineto -5.987071e+01 2.71099e+01 lineto -closepath -gsave -7.617753e-01 7.617753e-01 9.522191e-01 setrgbcolor -fill -grestore -newpath -5.987071e+01 2.71099e+01 moveto -6.000032e+01 2.592763e+01 lineto -5.751352e+01 2.571972e+01 lineto -5.731945e+01 2.68966e+01 lineto -5.987071e+01 2.71099e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.974596e+01 2.831006e+01 moveto -5.987071e+01 2.71099e+01 lineto -5.731945e+01 2.68966e+01 lineto -5.713265e+01 2.809158e+01 lineto -5.974596e+01 2.831006e+01 lineto -closepath -gsave -7.644141e-01 7.644141e-01 9.555176e-01 setrgbcolor -fill -grestore -newpath -5.974596e+01 2.831006e+01 moveto -5.987071e+01 2.71099e+01 lineto -5.731945e+01 2.68966e+01 lineto -5.713265e+01 2.809158e+01 lineto -5.974596e+01 2.831006e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.962619e+01 2.952697e+01 moveto -5.974596e+01 2.831006e+01 lineto -5.713265e+01 2.809158e+01 lineto -5.69533e+01 2.93035e+01 lineto -5.962619e+01 2.952697e+01 lineto -closepath -gsave -7.668378e-01 7.668378e-01 9.585473e-01 setrgbcolor -fill -grestore -newpath -5.962619e+01 2.952697e+01 moveto -5.974596e+01 2.831006e+01 lineto -5.713265e+01 2.809158e+01 lineto -5.69533e+01 2.93035e+01 lineto -5.962619e+01 2.952697e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.95115e+01 3.075948e+01 moveto -5.962619e+01 2.952697e+01 lineto -5.69533e+01 2.93035e+01 lineto -5.678157e+01 3.053124e+01 lineto -5.95115e+01 3.075948e+01 lineto -closepath -gsave -7.69046e-01 7.69046e-01 9.613076e-01 setrgbcolor -fill -grestore -newpath -5.95115e+01 3.075948e+01 moveto -5.962619e+01 2.952697e+01 lineto -5.69533e+01 2.93035e+01 lineto -5.678157e+01 3.053124e+01 lineto -5.95115e+01 3.075948e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.940201e+01 3.200641e+01 moveto -5.95115e+01 3.075948e+01 lineto -5.678157e+01 3.053124e+01 lineto -5.661762e+01 3.177362e+01 lineto -5.940201e+01 3.200641e+01 lineto -closepath -gsave -7.710385e-01 7.710385e-01 9.637981e-01 setrgbcolor -fill -grestore -newpath -5.940201e+01 3.200641e+01 moveto -5.95115e+01 3.075948e+01 lineto -5.678157e+01 3.053124e+01 lineto -5.661762e+01 3.177362e+01 lineto -5.940201e+01 3.200641e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.929782e+01 3.326659e+01 moveto -5.940201e+01 3.200641e+01 lineto -5.661762e+01 3.177362e+01 lineto -5.64616e+01 3.302947e+01 lineto -5.929782e+01 3.326659e+01 lineto -closepath -gsave -7.728149e-01 7.728149e-01 9.660186e-01 setrgbcolor -fill -grestore -newpath -5.929782e+01 3.326659e+01 moveto -5.940201e+01 3.200641e+01 lineto -5.661762e+01 3.177362e+01 lineto -5.64616e+01 3.302947e+01 lineto -5.929782e+01 3.326659e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.919902e+01 3.453883e+01 moveto -5.929782e+01 3.326659e+01 lineto -5.64616e+01 3.302947e+01 lineto -5.631367e+01 3.42976e+01 lineto -5.919902e+01 3.453883e+01 lineto -closepath -gsave -7.743752e-01 7.743752e-01 9.67969e-01 setrgbcolor -fill -grestore -newpath -5.919902e+01 3.453883e+01 moveto -5.929782e+01 3.326659e+01 lineto -5.64616e+01 3.302947e+01 lineto -5.631367e+01 3.42976e+01 lineto -5.919902e+01 3.453883e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.910573e+01 3.582193e+01 moveto -5.919902e+01 3.453883e+01 lineto -5.631367e+01 3.42976e+01 lineto -5.617397e+01 3.557681e+01 lineto -5.910573e+01 3.582193e+01 lineto -closepath -gsave -7.757194e-01 7.757194e-01 9.696493e-01 setrgbcolor -fill -grestore -newpath -5.910573e+01 3.582193e+01 moveto -5.919902e+01 3.453883e+01 lineto -5.631367e+01 3.42976e+01 lineto -5.617397e+01 3.557681e+01 lineto -5.910573e+01 3.582193e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.901801e+01 3.711465e+01 moveto -5.910573e+01 3.582193e+01 lineto -5.617397e+01 3.557681e+01 lineto -5.604262e+01 3.686589e+01 lineto -5.901801e+01 3.711465e+01 lineto -closepath -gsave -7.768475e-01 7.768475e-01 9.710594e-01 setrgbcolor -fill -grestore -newpath -5.901801e+01 3.711465e+01 moveto -5.910573e+01 3.582193e+01 lineto -5.617397e+01 3.557681e+01 lineto -5.604262e+01 3.686589e+01 lineto -5.901801e+01 3.711465e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.893595e+01 3.841579e+01 moveto -5.901801e+01 3.711465e+01 lineto -5.604262e+01 3.686589e+01 lineto -5.591975e+01 3.816362e+01 lineto -5.893595e+01 3.841579e+01 lineto -closepath -gsave -7.777596e-01 7.777596e-01 9.721994e-01 setrgbcolor -fill -grestore -newpath -5.893595e+01 3.841579e+01 moveto -5.901801e+01 3.711465e+01 lineto -5.604262e+01 3.686589e+01 lineto -5.591975e+01 3.816362e+01 lineto -5.893595e+01 3.841579e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.885964e+01 3.972412e+01 moveto -5.893595e+01 3.841579e+01 lineto -5.591975e+01 3.816362e+01 lineto -5.580548e+01 3.946877e+01 lineto -5.885964e+01 3.972412e+01 lineto -closepath -gsave -7.784556e-01 7.784556e-01 9.730695e-01 setrgbcolor -fill -grestore -newpath -5.885964e+01 3.972412e+01 moveto -5.893595e+01 3.841579e+01 lineto -5.591975e+01 3.816362e+01 lineto -5.580548e+01 3.946877e+01 lineto -5.885964e+01 3.972412e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.878914e+01 4.103838e+01 moveto -5.885964e+01 3.972412e+01 lineto -5.580548e+01 3.946877e+01 lineto -5.569991e+01 4.07801e+01 lineto -5.878914e+01 4.103838e+01 lineto -closepath -gsave -7.789358e-01 7.789358e-01 9.736697e-01 setrgbcolor -fill -grestore -newpath -5.878914e+01 4.103838e+01 moveto -5.885964e+01 3.972412e+01 lineto -5.580548e+01 3.946877e+01 lineto -5.569991e+01 4.07801e+01 lineto -5.878914e+01 4.103838e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.469552e+01 4.307464e+00 moveto -6.499901e+01 4.000931e+00 lineto -6.499869e+01 4.000898e+00 lineto -6.459626e+01 4.297236e+00 lineto -6.469552e+01 4.307464e+00 lineto -closepath -gsave -6.126446e-01 6.126446e-01 7.658058e-01 setrgbcolor -fill -grestore -newpath -6.469552e+01 4.307464e+00 moveto -6.499901e+01 4.000931e+00 lineto -6.499869e+01 4.000898e+00 lineto -6.459626e+01 4.297236e+00 lineto -6.469552e+01 4.307464e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.439232e+01 4.653471e+00 moveto -6.469552e+01 4.307464e+00 lineto -6.459626e+01 4.297236e+00 lineto -6.419422e+01 4.633058e+00 lineto -6.439232e+01 4.653471e+00 lineto -closepath -gsave -6.199446e-01 6.199446e-01 7.749308e-01 setrgbcolor -fill -grestore -newpath -6.439232e+01 4.653471e+00 moveto -6.469552e+01 4.307464e+00 lineto -6.459626e+01 4.297236e+00 lineto -6.419422e+01 4.633058e+00 lineto -6.439232e+01 4.653471e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.40897e+01 5.038626e+00 moveto -6.439232e+01 4.653471e+00 lineto -6.419422e+01 4.633058e+00 lineto -6.379294e+01 5.008047e+00 lineto -6.40897e+01 5.038626e+00 lineto -closepath -gsave -6.271991e-01 6.271991e-01 7.839989e-01 setrgbcolor -fill -grestore -newpath -6.40897e+01 5.038626e+00 moveto -6.439232e+01 4.653471e+00 lineto -6.419422e+01 4.633058e+00 lineto -6.379294e+01 5.008047e+00 lineto -6.40897e+01 5.038626e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.378794e+01 5.462563e+00 moveto -6.40897e+01 5.038626e+00 lineto -6.379294e+01 5.008047e+00 lineto -6.33928e+01 5.421847e+00 lineto -6.378794e+01 5.462563e+00 lineto -closepath -gsave -6.343953e-01 6.343953e-01 7.929941e-01 setrgbcolor -fill -grestore -newpath -6.378794e+01 5.462563e+00 moveto -6.40897e+01 5.038626e+00 lineto -6.379294e+01 5.008047e+00 lineto -6.33928e+01 5.421847e+00 lineto -6.378794e+01 5.462563e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.348732e+01 5.924881e+00 moveto -6.378794e+01 5.462563e+00 lineto -6.33928e+01 5.421847e+00 lineto -6.299418e+01 5.874067e+00 lineto -6.348732e+01 5.924881e+00 lineto -closepath -gsave -6.415206e-01 6.415206e-01 8.019008e-01 setrgbcolor -fill -grestore -newpath -6.348732e+01 5.924881e+00 moveto -6.378794e+01 5.462563e+00 lineto -6.33928e+01 5.421847e+00 lineto -6.299418e+01 5.874067e+00 lineto -6.348732e+01 5.924881e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.318814e+01 6.425143e+00 moveto -6.348732e+01 5.924881e+00 lineto -6.299418e+01 5.874067e+00 lineto -6.259746e+01 6.364279e+00 lineto -6.318814e+01 6.425143e+00 lineto -closepath -gsave -6.485631e-01 6.485631e-01 8.107039e-01 setrgbcolor -fill -grestore -newpath -6.318814e+01 6.425143e+00 moveto -6.348732e+01 5.924881e+00 lineto -6.299418e+01 5.874067e+00 lineto -6.259746e+01 6.364279e+00 lineto -6.318814e+01 6.425143e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.289067e+01 6.962875e+00 moveto -6.318814e+01 6.425143e+00 lineto -6.259746e+01 6.364279e+00 lineto -6.220301e+01 6.892018e+00 lineto -6.289067e+01 6.962875e+00 lineto -closepath -gsave -6.55511e-01 6.55511e-01 8.193888e-01 setrgbcolor -fill -grestore -newpath -6.289067e+01 6.962875e+00 moveto -6.318814e+01 6.425143e+00 lineto -6.259746e+01 6.364279e+00 lineto -6.220301e+01 6.892018e+00 lineto -6.289067e+01 6.962875e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.25952e+01 7.537567e+00 moveto -6.289067e+01 6.962875e+00 lineto -6.220301e+01 6.892018e+00 lineto -6.181122e+01 7.456785e+00 lineto -6.25952e+01 7.537567e+00 lineto -closepath -gsave -6.623531e-01 6.623531e-01 8.279414e-01 setrgbcolor -fill -grestore -newpath -6.25952e+01 7.537567e+00 moveto -6.289067e+01 6.962875e+00 lineto -6.220301e+01 6.892018e+00 lineto -6.181122e+01 7.456785e+00 lineto -6.25952e+01 7.537567e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.2302e+01 8.148676e+00 moveto -6.25952e+01 7.537567e+00 lineto -6.181122e+01 7.456785e+00 lineto -6.142244e+01 8.058045e+00 lineto -6.2302e+01 8.148676e+00 lineto -closepath -gsave -6.690788e-01 6.690788e-01 8.363484e-01 setrgbcolor -fill -grestore -newpath -6.2302e+01 8.148676e+00 moveto -6.25952e+01 7.537567e+00 lineto -6.181122e+01 7.456785e+00 lineto -6.142244e+01 8.058045e+00 lineto -6.2302e+01 8.148676e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.201136e+01 8.795623e+00 moveto -6.2302e+01 8.148676e+00 lineto -6.142244e+01 8.058045e+00 lineto -6.103705e+01 8.695229e+00 lineto -6.201136e+01 8.795623e+00 lineto -closepath -gsave -6.756776e-01 6.756776e-01 8.44597e-01 setrgbcolor -fill -grestore -newpath -6.201136e+01 8.795623e+00 moveto -6.2302e+01 8.148676e+00 lineto -6.142244e+01 8.058045e+00 lineto -6.103705e+01 8.695229e+00 lineto -6.201136e+01 8.795623e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.172356e+01 9.477796e+00 moveto -6.201136e+01 8.795623e+00 lineto -6.103705e+01 8.695229e+00 lineto -6.065541e+01 9.367733e+00 lineto -6.172356e+01 9.477796e+00 lineto -closepath -gsave -6.821401e-01 6.821401e-01 8.526751e-01 setrgbcolor -fill -grestore -newpath -6.172356e+01 9.477796e+00 moveto -6.201136e+01 8.795623e+00 lineto -6.103705e+01 8.695229e+00 lineto -6.065541e+01 9.367733e+00 lineto -6.172356e+01 9.477796e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.143885e+01 1.019455e+01 moveto -6.172356e+01 9.477796e+00 lineto -6.065541e+01 9.367733e+00 lineto -6.027789e+01 1.007492e+01 lineto -6.143885e+01 1.019455e+01 lineto -closepath -gsave -6.88457e-01 6.88457e-01 8.605712e-01 setrgbcolor -fill -grestore -newpath -6.143885e+01 1.019455e+01 moveto -6.172356e+01 9.477796e+00 lineto -6.065541e+01 9.367733e+00 lineto -6.027789e+01 1.007492e+01 lineto -6.143885e+01 1.019455e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.115751e+01 1.09452e+01 moveto -6.143885e+01 1.019455e+01 lineto -6.027789e+01 1.007492e+01 lineto -5.990484e+01 1.081612e+01 lineto -6.115751e+01 1.09452e+01 lineto -closepath -gsave -6.946197e-01 6.946197e-01 8.682746e-01 setrgbcolor -fill -grestore -newpath -6.115751e+01 1.09452e+01 moveto -6.143885e+01 1.019455e+01 lineto -6.027789e+01 1.007492e+01 lineto -5.990484e+01 1.081612e+01 lineto -6.115751e+01 1.09452e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.087981e+01 1.172904e+01 moveto -6.115751e+01 1.09452e+01 lineto -5.990484e+01 1.081612e+01 lineto -5.953661e+01 1.159064e+01 lineto -6.087981e+01 1.172904e+01 lineto -closepath -gsave -7.006203e-01 7.006203e-01 8.757754e-01 setrgbcolor -fill -grestore -newpath -6.087981e+01 1.172904e+01 moveto -6.115751e+01 1.09452e+01 lineto -5.990484e+01 1.081612e+01 lineto -5.953661e+01 1.159064e+01 lineto -6.087981e+01 1.172904e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.060602e+01 1.254534e+01 moveto -6.087981e+01 1.172904e+01 lineto -5.953661e+01 1.159064e+01 lineto -5.917355e+01 1.239773e+01 lineto -6.060602e+01 1.254534e+01 lineto -closepath -gsave -7.064513e-01 7.064513e-01 8.830642e-01 setrgbcolor -fill -grestore -newpath -6.060602e+01 1.254534e+01 moveto -6.087981e+01 1.172904e+01 lineto -5.953661e+01 1.159064e+01 lineto -5.917355e+01 1.239773e+01 lineto -6.060602e+01 1.254534e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.033638e+01 1.33933e+01 moveto -6.060602e+01 1.254534e+01 lineto -5.917355e+01 1.239773e+01 lineto -5.881601e+01 1.323664e+01 lineto -6.033638e+01 1.33933e+01 lineto -closepath -gsave -7.12106e-01 7.12106e-01 8.901325e-01 setrgbcolor -fill -grestore -newpath -6.033638e+01 1.33933e+01 moveto -6.060602e+01 1.254534e+01 lineto -5.917355e+01 1.239773e+01 lineto -5.881601e+01 1.323664e+01 lineto -6.033638e+01 1.33933e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.007116e+01 1.427214e+01 moveto -6.033638e+01 1.33933e+01 lineto -5.881601e+01 1.323664e+01 lineto -5.846433e+01 1.410657e+01 lineto -6.007116e+01 1.427214e+01 lineto -closepath -gsave -7.17578e-01 7.17578e-01 8.969726e-01 setrgbcolor -fill -grestore -newpath -6.007116e+01 1.427214e+01 moveto -6.033638e+01 1.33933e+01 lineto -5.881601e+01 1.323664e+01 lineto -5.846433e+01 1.410657e+01 lineto -6.007116e+01 1.427214e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.981061e+01 1.518102e+01 moveto -6.007116e+01 1.427214e+01 lineto -5.846433e+01 1.410657e+01 lineto -5.811883e+01 1.50067e+01 lineto -5.981061e+01 1.518102e+01 lineto -closepath -gsave -7.228617e-01 7.228617e-01 9.035772e-01 setrgbcolor -fill -grestore -newpath -5.981061e+01 1.518102e+01 moveto -6.007116e+01 1.427214e+01 lineto -5.846433e+01 1.410657e+01 lineto -5.811883e+01 1.50067e+01 lineto -5.981061e+01 1.518102e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.955496e+01 1.611908e+01 moveto -5.981061e+01 1.518102e+01 lineto -5.811883e+01 1.50067e+01 lineto -5.777985e+01 1.593617e+01 lineto -5.955496e+01 1.611908e+01 lineto -closepath -gsave -7.27952e-01 7.27952e-01 9.0994e-01 setrgbcolor -fill -grestore -newpath -5.955496e+01 1.611908e+01 moveto -5.981061e+01 1.518102e+01 lineto -5.811883e+01 1.50067e+01 lineto -5.777985e+01 1.593617e+01 lineto -5.955496e+01 1.611908e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.930448e+01 1.708543e+01 moveto -5.955496e+01 1.611908e+01 lineto -5.777985e+01 1.593617e+01 lineto -5.74477e+01 1.689411e+01 lineto -5.930448e+01 1.708543e+01 lineto -closepath -gsave -7.328442e-01 7.328442e-01 9.160552e-01 setrgbcolor -fill -grestore -newpath -5.930448e+01 1.708543e+01 moveto -5.955496e+01 1.611908e+01 lineto -5.777985e+01 1.593617e+01 lineto -5.74477e+01 1.689411e+01 lineto -5.930448e+01 1.708543e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.905939e+01 1.807916e+01 moveto -5.930448e+01 1.708543e+01 lineto -5.74477e+01 1.689411e+01 lineto -5.712271e+01 1.78796e+01 lineto -5.905939e+01 1.807916e+01 lineto -closepath -gsave -7.375342e-01 7.375342e-01 9.219177e-01 setrgbcolor -fill -grestore -newpath -5.905939e+01 1.807916e+01 moveto -5.930448e+01 1.708543e+01 lineto -5.74477e+01 1.689411e+01 lineto -5.712271e+01 1.78796e+01 lineto -5.905939e+01 1.807916e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.881992e+01 1.909932e+01 moveto -5.905939e+01 1.807916e+01 lineto -5.712271e+01 1.78796e+01 lineto -5.680517e+01 1.889172e+01 lineto -5.881992e+01 1.909932e+01 lineto -closepath -gsave -7.420185e-01 7.420185e-01 9.275231e-01 setrgbcolor -fill -grestore -newpath -5.881992e+01 1.909932e+01 moveto -5.905939e+01 1.807916e+01 lineto -5.712271e+01 1.78796e+01 lineto -5.680517e+01 1.889172e+01 lineto -5.881992e+01 1.909932e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.85863e+01 2.014495e+01 moveto -5.881992e+01 1.909932e+01 lineto -5.680517e+01 1.889172e+01 lineto -5.649539e+01 1.99295e+01 lineto -5.85863e+01 2.014495e+01 lineto -closepath -gsave -7.46294e-01 7.46294e-01 9.328675e-01 setrgbcolor -fill -grestore -newpath -5.85863e+01 2.014495e+01 moveto -5.881992e+01 1.909932e+01 lineto -5.680517e+01 1.889172e+01 lineto -5.649539e+01 1.99295e+01 lineto -5.85863e+01 2.014495e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.835876e+01 2.121506e+01 moveto -5.85863e+01 2.014495e+01 lineto -5.649539e+01 1.99295e+01 lineto -5.619367e+01 2.099197e+01 lineto -5.835876e+01 2.121506e+01 lineto -closepath -gsave -7.503579e-01 7.503579e-01 9.379474e-01 setrgbcolor -fill -grestore -newpath -5.835876e+01 2.121506e+01 moveto -5.85863e+01 2.014495e+01 lineto -5.649539e+01 1.99295e+01 lineto -5.619367e+01 2.099197e+01 lineto -5.835876e+01 2.121506e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.81375e+01 2.230864e+01 moveto -5.835876e+01 2.121506e+01 lineto -5.619367e+01 2.099197e+01 lineto -5.590028e+01 2.207812e+01 lineto -5.81375e+01 2.230864e+01 lineto -closepath -gsave -7.542082e-01 7.542082e-01 9.427602e-01 setrgbcolor -fill -grestore -newpath -5.81375e+01 2.230864e+01 moveto -5.835876e+01 2.121506e+01 lineto -5.619367e+01 2.099197e+01 lineto -5.590028e+01 2.207812e+01 lineto -5.81375e+01 2.230864e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.792274e+01 2.342465e+01 moveto -5.81375e+01 2.230864e+01 lineto -5.590028e+01 2.207812e+01 lineto -5.561551e+01 2.318691e+01 lineto -5.792274e+01 2.342465e+01 lineto -closepath -gsave -7.578428e-01 7.578428e-01 9.473034e-01 setrgbcolor -fill -grestore -newpath -5.792274e+01 2.342465e+01 moveto -5.81375e+01 2.230864e+01 lineto -5.590028e+01 2.207812e+01 lineto -5.561551e+01 2.318691e+01 lineto -5.792274e+01 2.342465e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.771468e+01 2.456204e+01 moveto -5.792274e+01 2.342465e+01 lineto -5.561551e+01 2.318691e+01 lineto -5.533962e+01 2.431731e+01 lineto -5.771468e+01 2.456204e+01 lineto -closepath -gsave -7.612602e-01 7.612602e-01 9.515752e-01 setrgbcolor -fill -grestore -newpath -5.771468e+01 2.456204e+01 moveto -5.792274e+01 2.342465e+01 lineto -5.561551e+01 2.318691e+01 lineto -5.533962e+01 2.431731e+01 lineto -5.771468e+01 2.456204e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.751352e+01 2.571972e+01 moveto -5.771468e+01 2.456204e+01 lineto -5.533962e+01 2.431731e+01 lineto -5.507288e+01 2.546823e+01 lineto -5.751352e+01 2.571972e+01 lineto -closepath -gsave -7.644593e-01 7.644593e-01 9.555741e-01 setrgbcolor -fill -grestore -newpath -5.751352e+01 2.571972e+01 moveto -5.771468e+01 2.456204e+01 lineto -5.533962e+01 2.431731e+01 lineto -5.507288e+01 2.546823e+01 lineto -5.751352e+01 2.571972e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.731945e+01 2.68966e+01 moveto -5.751352e+01 2.571972e+01 lineto -5.507288e+01 2.546823e+01 lineto -5.481554e+01 2.66386e+01 lineto -5.731945e+01 2.68966e+01 lineto -closepath -gsave -7.674391e-01 7.674391e-01 9.592988e-01 setrgbcolor -fill -grestore -newpath -5.731945e+01 2.68966e+01 moveto -5.751352e+01 2.571972e+01 lineto -5.507288e+01 2.546823e+01 lineto -5.481554e+01 2.66386e+01 lineto -5.731945e+01 2.68966e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.713265e+01 2.809158e+01 moveto -5.731945e+01 2.68966e+01 lineto -5.481554e+01 2.66386e+01 lineto -5.456785e+01 2.782729e+01 lineto -5.713265e+01 2.809158e+01 lineto -closepath -gsave -7.701989e-01 7.701989e-01 9.627486e-01 setrgbcolor -fill -grestore -newpath -5.713265e+01 2.809158e+01 moveto -5.731945e+01 2.68966e+01 lineto -5.481554e+01 2.66386e+01 lineto -5.456785e+01 2.782729e+01 lineto -5.713265e+01 2.809158e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.69533e+01 2.93035e+01 moveto -5.713265e+01 2.809158e+01 lineto -5.456785e+01 2.782729e+01 lineto -5.433003e+01 2.90332e+01 lineto -5.69533e+01 2.93035e+01 lineto -closepath -gsave -7.727383e-01 7.727383e-01 9.659228e-01 setrgbcolor -fill -grestore -newpath -5.69533e+01 2.93035e+01 moveto -5.713265e+01 2.809158e+01 lineto -5.456785e+01 2.782729e+01 lineto -5.433003e+01 2.90332e+01 lineto -5.69533e+01 2.93035e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.678157e+01 3.053124e+01 moveto -5.69533e+01 2.93035e+01 lineto -5.433003e+01 2.90332e+01 lineto -5.410231e+01 3.025516e+01 lineto -5.678157e+01 3.053124e+01 lineto -closepath -gsave -7.750569e-01 7.750569e-01 9.688212e-01 setrgbcolor -fill -grestore -newpath -5.678157e+01 3.053124e+01 moveto -5.69533e+01 2.93035e+01 lineto -5.433003e+01 2.90332e+01 lineto -5.410231e+01 3.025516e+01 lineto -5.678157e+01 3.053124e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.661762e+01 3.177362e+01 moveto -5.678157e+01 3.053124e+01 lineto -5.410231e+01 3.025516e+01 lineto -5.388491e+01 3.149204e+01 lineto -5.661762e+01 3.177362e+01 lineto -closepath -gsave -7.771547e-01 7.771547e-01 9.714434e-01 setrgbcolor -fill -grestore -newpath -5.661762e+01 3.177362e+01 moveto -5.678157e+01 3.053124e+01 lineto -5.410231e+01 3.025516e+01 lineto -5.388491e+01 3.149204e+01 lineto -5.661762e+01 3.177362e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.64616e+01 3.302947e+01 moveto -5.661762e+01 3.177362e+01 lineto -5.388491e+01 3.149204e+01 lineto -5.367803e+01 3.274265e+01 lineto -5.64616e+01 3.302947e+01 lineto -closepath -gsave -7.790316e-01 7.790316e-01 9.737895e-01 setrgbcolor -fill -grestore -newpath -5.64616e+01 3.302947e+01 moveto -5.661762e+01 3.177362e+01 lineto -5.388491e+01 3.149204e+01 lineto -5.367803e+01 3.274265e+01 lineto -5.64616e+01 3.302947e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.631367e+01 3.42976e+01 moveto -5.64616e+01 3.302947e+01 lineto -5.367803e+01 3.274265e+01 lineto -5.348187e+01 3.400581e+01 lineto -5.631367e+01 3.42976e+01 lineto -closepath -gsave -7.806877e-01 7.806877e-01 9.758596e-01 setrgbcolor -fill -grestore -newpath -5.631367e+01 3.42976e+01 moveto -5.64616e+01 3.302947e+01 lineto -5.367803e+01 3.274265e+01 lineto -5.348187e+01 3.400581e+01 lineto -5.631367e+01 3.42976e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.617397e+01 3.557681e+01 moveto -5.631367e+01 3.42976e+01 lineto -5.348187e+01 3.400581e+01 lineto -5.329662e+01 3.528033e+01 lineto -5.617397e+01 3.557681e+01 lineto -closepath -gsave -7.821231e-01 7.821231e-01 9.776539e-01 setrgbcolor -fill -grestore -newpath -5.617397e+01 3.557681e+01 moveto -5.631367e+01 3.42976e+01 lineto -5.348187e+01 3.400581e+01 lineto -5.329662e+01 3.528033e+01 lineto -5.617397e+01 3.557681e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.604262e+01 3.686589e+01 moveto -5.617397e+01 3.557681e+01 lineto -5.329662e+01 3.528033e+01 lineto -5.312245e+01 3.6565e+01 lineto -5.604262e+01 3.686589e+01 lineto -closepath -gsave -7.833379e-01 7.833379e-01 9.791724e-01 setrgbcolor -fill -grestore -newpath -5.604262e+01 3.686589e+01 moveto -5.617397e+01 3.557681e+01 lineto -5.329662e+01 3.528033e+01 lineto -5.312245e+01 3.6565e+01 lineto -5.604262e+01 3.686589e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.591975e+01 3.816362e+01 moveto -5.604262e+01 3.686589e+01 lineto -5.312245e+01 3.6565e+01 lineto -5.295953e+01 3.78586e+01 lineto -5.591975e+01 3.816362e+01 lineto -closepath -gsave -7.843324e-01 7.843324e-01 9.804155e-01 setrgbcolor -fill -grestore -newpath -5.591975e+01 3.816362e+01 moveto -5.604262e+01 3.686589e+01 lineto -5.312245e+01 3.6565e+01 lineto -5.295953e+01 3.78586e+01 lineto -5.591975e+01 3.816362e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.580548e+01 3.946877e+01 moveto -5.591975e+01 3.816362e+01 lineto -5.295953e+01 3.78586e+01 lineto -5.2808e+01 3.915991e+01 lineto -5.580548e+01 3.946877e+01 lineto -closepath -gsave -7.851067e-01 7.851067e-01 9.813834e-01 setrgbcolor -fill -grestore -newpath -5.580548e+01 3.946877e+01 moveto -5.591975e+01 3.816362e+01 lineto -5.295953e+01 3.78586e+01 lineto -5.2808e+01 3.915991e+01 lineto -5.580548e+01 3.946877e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.569991e+01 4.07801e+01 moveto -5.580548e+01 3.946877e+01 lineto -5.2808e+01 3.915991e+01 lineto -5.266802e+01 4.046769e+01 lineto -5.569991e+01 4.07801e+01 lineto -closepath -gsave -7.85661e-01 7.85661e-01 9.820762e-01 setrgbcolor -fill -grestore -newpath -5.569991e+01 4.07801e+01 moveto -5.580548e+01 3.946877e+01 lineto -5.2808e+01 3.915991e+01 lineto -5.266802e+01 4.046769e+01 lineto -5.569991e+01 4.07801e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.459626e+01 4.297236e+00 moveto -6.499869e+01 4.000898e+00 lineto -6.499838e+01 4.00086e+00 lineto -6.449949e+01 4.285299e+00 lineto -6.459626e+01 4.297236e+00 lineto -closepath -gsave -6.127403e-01 6.127403e-01 7.659254e-01 setrgbcolor -fill -grestore -newpath -6.459626e+01 4.297236e+00 moveto -6.499869e+01 4.000898e+00 lineto -6.499838e+01 4.00086e+00 lineto -6.449949e+01 4.285299e+00 lineto -6.459626e+01 4.297236e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.419422e+01 4.633058e+00 moveto -6.459626e+01 4.297236e+00 lineto -6.449949e+01 4.285299e+00 lineto -6.400108e+01 4.609234e+00 lineto -6.419422e+01 4.633058e+00 lineto -closepath -gsave -6.202319e-01 6.202319e-01 7.752899e-01 setrgbcolor -fill -grestore -newpath -6.419422e+01 4.633058e+00 moveto -6.459626e+01 4.297236e+00 lineto -6.449949e+01 4.285299e+00 lineto -6.400108e+01 4.609234e+00 lineto -6.419422e+01 4.633058e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.379294e+01 5.008047e+00 moveto -6.419422e+01 4.633058e+00 lineto -6.400108e+01 4.609234e+00 lineto -6.350361e+01 4.972358e+00 lineto -6.379294e+01 5.008047e+00 lineto -closepath -gsave -6.276792e-01 6.276792e-01 7.84599e-01 setrgbcolor -fill -grestore -newpath -6.379294e+01 5.008047e+00 moveto -6.419422e+01 4.633058e+00 lineto -6.400108e+01 4.609234e+00 lineto -6.350361e+01 4.972358e+00 lineto -6.379294e+01 5.008047e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.33928e+01 5.421847e+00 moveto -6.379294e+01 5.008047e+00 lineto -6.350361e+01 4.972358e+00 lineto -6.300756e+01 5.374327e+00 lineto -6.33928e+01 5.421847e+00 lineto -closepath -gsave -6.350689e-01 6.350689e-01 7.938361e-01 setrgbcolor -fill -grestore -newpath -6.33928e+01 5.421847e+00 moveto -6.379294e+01 5.008047e+00 lineto -6.350361e+01 4.972358e+00 lineto -6.300756e+01 5.374327e+00 lineto -6.33928e+01 5.421847e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.299418e+01 5.874067e+00 moveto -6.33928e+01 5.421847e+00 lineto -6.300756e+01 5.374327e+00 lineto -6.25134e+01 5.814762e+00 lineto -6.299418e+01 5.874067e+00 lineto -closepath -gsave -6.423878e-01 6.423878e-01 8.029848e-01 setrgbcolor -fill -grestore -newpath -6.299418e+01 5.874067e+00 moveto -6.33928e+01 5.421847e+00 lineto -6.300756e+01 5.374327e+00 lineto -6.25134e+01 5.814762e+00 lineto -6.299418e+01 5.874067e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.259746e+01 6.364279e+00 moveto -6.299418e+01 5.874067e+00 lineto -6.25134e+01 5.814762e+00 lineto -6.202159e+01 6.293244e+00 lineto -6.259746e+01 6.364279e+00 lineto -closepath -gsave -6.496235e-01 6.496235e-01 8.120294e-01 setrgbcolor -fill -grestore -newpath -6.259746e+01 6.364279e+00 moveto -6.299418e+01 5.874067e+00 lineto -6.25134e+01 5.814762e+00 lineto -6.202159e+01 6.293244e+00 lineto -6.259746e+01 6.364279e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.220301e+01 6.892018e+00 moveto -6.259746e+01 6.364279e+00 lineto -6.202159e+01 6.293244e+00 lineto -6.15326e+01 6.80932e+00 lineto -6.220301e+01 6.892018e+00 lineto -closepath -gsave -6.567636e-01 6.567636e-01 8.209545e-01 setrgbcolor -fill -grestore -newpath -6.220301e+01 6.892018e+00 moveto -6.259746e+01 6.364279e+00 lineto -6.202159e+01 6.293244e+00 lineto -6.15326e+01 6.80932e+00 lineto -6.220301e+01 6.892018e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.181122e+01 7.456785e+00 moveto -6.220301e+01 6.892018e+00 lineto -6.15326e+01 6.80932e+00 lineto -6.10469e+01 7.362503e+00 lineto -6.181122e+01 7.456785e+00 lineto -closepath -gsave -6.637964e-01 6.637964e-01 8.297455e-01 setrgbcolor -fill -grestore -newpath -6.181122e+01 7.456785e+00 moveto -6.220301e+01 6.892018e+00 lineto -6.15326e+01 6.80932e+00 lineto -6.10469e+01 7.362503e+00 lineto -6.181122e+01 7.456785e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.142244e+01 8.058045e+00 moveto -6.181122e+01 7.456785e+00 lineto -6.10469e+01 7.362503e+00 lineto -6.056493e+01 7.952269e+00 lineto -6.142244e+01 8.058045e+00 lineto -closepath -gsave -6.707106e-01 6.707106e-01 8.383883e-01 setrgbcolor -fill -grestore -newpath -6.142244e+01 8.058045e+00 moveto -6.181122e+01 7.456785e+00 lineto -6.10469e+01 7.362503e+00 lineto -6.056493e+01 7.952269e+00 lineto -6.142244e+01 8.058045e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.103705e+01 8.695229e+00 moveto -6.142244e+01 8.058045e+00 lineto -6.056493e+01 7.952269e+00 lineto -6.008717e+01 8.578058e+00 lineto -6.103705e+01 8.695229e+00 lineto -closepath -gsave -6.774957e-01 6.774957e-01 8.468697e-01 setrgbcolor -fill -grestore -newpath -6.103705e+01 8.695229e+00 moveto -6.142244e+01 8.058045e+00 lineto -6.056493e+01 7.952269e+00 lineto -6.008717e+01 8.578058e+00 lineto -6.103705e+01 8.695229e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.065541e+01 9.367733e+00 moveto -6.103705e+01 8.695229e+00 lineto -6.008717e+01 8.578058e+00 lineto -5.961406e+01 9.239278e+00 lineto -6.065541e+01 9.367733e+00 lineto -closepath -gsave -6.841415e-01 6.841415e-01 8.551769e-01 setrgbcolor -fill -grestore -newpath -6.065541e+01 9.367733e+00 moveto -6.103705e+01 8.695229e+00 lineto -6.008717e+01 8.578058e+00 lineto -5.961406e+01 9.239278e+00 lineto -6.065541e+01 9.367733e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.027789e+01 1.007492e+01 moveto -6.065541e+01 9.367733e+00 lineto -5.961406e+01 9.239278e+00 lineto -5.914604e+01 9.935305e+00 lineto -6.027789e+01 1.007492e+01 lineto -closepath -gsave -6.906384e-01 6.906384e-01 8.632981e-01 setrgbcolor -fill -grestore -newpath -6.027789e+01 1.007492e+01 moveto -6.065541e+01 9.367733e+00 lineto -5.961406e+01 9.239278e+00 lineto -5.914604e+01 9.935305e+00 lineto -6.027789e+01 1.007492e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.990484e+01 1.081612e+01 moveto -6.027789e+01 1.007492e+01 lineto -5.914604e+01 9.935305e+00 lineto -5.868357e+01 1.066548e+01 lineto -5.990484e+01 1.081612e+01 lineto -closepath -gsave -6.969776e-01 6.969776e-01 8.71222e-01 setrgbcolor -fill -grestore -newpath -5.990484e+01 1.081612e+01 moveto -6.027789e+01 1.007492e+01 lineto -5.914604e+01 9.935305e+00 lineto -5.868357e+01 1.066548e+01 lineto -5.990484e+01 1.081612e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.953661e+01 1.159064e+01 moveto -5.990484e+01 1.081612e+01 lineto -5.868357e+01 1.066548e+01 lineto -5.822708e+01 1.14291e+01 lineto -5.953661e+01 1.159064e+01 lineto -closepath -gsave -7.031507e-01 7.031507e-01 8.789384e-01 setrgbcolor -fill -grestore -newpath -5.953661e+01 1.159064e+01 moveto -5.990484e+01 1.081612e+01 lineto -5.868357e+01 1.066548e+01 lineto -5.822708e+01 1.14291e+01 lineto -5.953661e+01 1.159064e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.917355e+01 1.239773e+01 moveto -5.953661e+01 1.159064e+01 lineto -5.822708e+01 1.14291e+01 lineto -5.777701e+01 1.222546e+01 lineto -5.917355e+01 1.239773e+01 lineto -closepath -gsave -7.091501e-01 7.091501e-01 8.864376e-01 setrgbcolor -fill -grestore -newpath -5.917355e+01 1.239773e+01 moveto -5.953661e+01 1.159064e+01 lineto -5.822708e+01 1.14291e+01 lineto -5.777701e+01 1.222546e+01 lineto -5.917355e+01 1.239773e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.881601e+01 1.323664e+01 moveto -5.917355e+01 1.239773e+01 lineto -5.777701e+01 1.222546e+01 lineto -5.733377e+01 1.30538e+01 lineto -5.881601e+01 1.323664e+01 lineto -closepath -gsave -7.149686e-01 7.149686e-01 8.937108e-01 setrgbcolor -fill -grestore -newpath -5.881601e+01 1.323664e+01 moveto -5.917355e+01 1.239773e+01 lineto -5.777701e+01 1.222546e+01 lineto -5.733377e+01 1.30538e+01 lineto -5.881601e+01 1.323664e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.846433e+01 1.410657e+01 moveto -5.881601e+01 1.323664e+01 lineto -5.733377e+01 1.30538e+01 lineto -5.689779e+01 1.391333e+01 lineto -5.846433e+01 1.410657e+01 lineto -closepath -gsave -7.205998e-01 7.205998e-01 9.007498e-01 setrgbcolor -fill -grestore -newpath -5.846433e+01 1.410657e+01 moveto -5.881601e+01 1.323664e+01 lineto -5.733377e+01 1.30538e+01 lineto -5.689779e+01 1.391333e+01 lineto -5.846433e+01 1.410657e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.811883e+01 1.50067e+01 moveto -5.846433e+01 1.410657e+01 lineto -5.689779e+01 1.391333e+01 lineto -5.646948e+01 1.480324e+01 lineto -5.811883e+01 1.50067e+01 lineto -closepath -gsave -7.260379e-01 7.260379e-01 9.075474e-01 setrgbcolor -fill -grestore -newpath -5.811883e+01 1.50067e+01 moveto -5.846433e+01 1.410657e+01 lineto -5.689779e+01 1.391333e+01 lineto -5.646948e+01 1.480324e+01 lineto -5.811883e+01 1.50067e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.777985e+01 1.593617e+01 moveto -5.811883e+01 1.50067e+01 lineto -5.646948e+01 1.480324e+01 lineto -5.604925e+01 1.572269e+01 lineto -5.777985e+01 1.593617e+01 lineto -closepath -gsave -7.312775e-01 7.312775e-01 9.140969e-01 setrgbcolor -fill -grestore -newpath -5.777985e+01 1.593617e+01 moveto -5.811883e+01 1.50067e+01 lineto -5.646948e+01 1.480324e+01 lineto -5.604925e+01 1.572269e+01 lineto -5.777985e+01 1.593617e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.74477e+01 1.689411e+01 moveto -5.777985e+01 1.593617e+01 lineto -5.604925e+01 1.572269e+01 lineto -5.563749e+01 1.667081e+01 lineto -5.74477e+01 1.689411e+01 lineto -closepath -gsave -7.363141e-01 7.363141e-01 9.203926e-01 setrgbcolor -fill -grestore -newpath -5.74477e+01 1.689411e+01 moveto -5.777985e+01 1.593617e+01 lineto -5.604925e+01 1.572269e+01 lineto -5.563749e+01 1.667081e+01 lineto -5.74477e+01 1.689411e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.712271e+01 1.78796e+01 moveto -5.74477e+01 1.689411e+01 lineto -5.563749e+01 1.667081e+01 lineto -5.52346e+01 1.764669e+01 lineto -5.712271e+01 1.78796e+01 lineto -closepath -gsave -7.411434e-01 7.411434e-01 9.264292e-01 setrgbcolor -fill -grestore -newpath -5.712271e+01 1.78796e+01 moveto -5.74477e+01 1.689411e+01 lineto -5.563749e+01 1.667081e+01 lineto -5.52346e+01 1.764669e+01 lineto -5.712271e+01 1.78796e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.680517e+01 1.889172e+01 moveto -5.712271e+01 1.78796e+01 lineto -5.52346e+01 1.764669e+01 lineto -5.484095e+01 1.864942e+01 lineto -5.680517e+01 1.889172e+01 lineto -closepath -gsave -7.457618e-01 7.457618e-01 9.322022e-01 setrgbcolor -fill -grestore -newpath -5.680517e+01 1.889172e+01 moveto -5.712271e+01 1.78796e+01 lineto -5.52346e+01 1.764669e+01 lineto -5.484095e+01 1.864942e+01 lineto -5.680517e+01 1.889172e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.649539e+01 1.99295e+01 moveto -5.680517e+01 1.889172e+01 lineto -5.484095e+01 1.864942e+01 lineto -5.445692e+01 1.967805e+01 lineto -5.649539e+01 1.99295e+01 lineto -closepath -gsave -7.501663e-01 7.501663e-01 9.377078e-01 setrgbcolor -fill -grestore -newpath -5.649539e+01 1.99295e+01 moveto -5.680517e+01 1.889172e+01 lineto -5.484095e+01 1.864942e+01 lineto -5.445692e+01 1.967805e+01 lineto -5.649539e+01 1.99295e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.619367e+01 2.099197e+01 moveto -5.649539e+01 1.99295e+01 lineto -5.445692e+01 1.967805e+01 lineto -5.408288e+01 2.07316e+01 lineto -5.619367e+01 2.099197e+01 lineto -closepath -gsave -7.543541e-01 7.543541e-01 9.429427e-01 setrgbcolor -fill -grestore -newpath -5.619367e+01 2.099197e+01 moveto -5.649539e+01 1.99295e+01 lineto -5.445692e+01 1.967805e+01 lineto -5.408288e+01 2.07316e+01 lineto -5.619367e+01 2.099197e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.590028e+01 2.207812e+01 moveto -5.619367e+01 2.099197e+01 lineto -5.408288e+01 2.07316e+01 lineto -5.371917e+01 2.180907e+01 lineto -5.590028e+01 2.207812e+01 lineto -closepath -gsave -7.583232e-01 7.583232e-01 9.47904e-01 setrgbcolor -fill -grestore -newpath -5.590028e+01 2.207812e+01 moveto -5.619367e+01 2.099197e+01 lineto -5.408288e+01 2.07316e+01 lineto -5.371917e+01 2.180907e+01 lineto -5.590028e+01 2.207812e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.561551e+01 2.318691e+01 moveto -5.590028e+01 2.207812e+01 lineto -5.371917e+01 2.180907e+01 lineto -5.336614e+01 2.290945e+01 lineto -5.561551e+01 2.318691e+01 lineto -closepath -gsave -7.620716e-01 7.620716e-01 9.525896e-01 setrgbcolor -fill -grestore -newpath -5.561551e+01 2.318691e+01 moveto -5.590028e+01 2.207812e+01 lineto -5.371917e+01 2.180907e+01 lineto -5.336614e+01 2.290945e+01 lineto -5.561551e+01 2.318691e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.533962e+01 2.431731e+01 moveto -5.561551e+01 2.318691e+01 lineto -5.336614e+01 2.290945e+01 lineto -5.302412e+01 2.403168e+01 lineto -5.533962e+01 2.431731e+01 lineto -closepath -gsave -7.655981e-01 7.655981e-01 9.569976e-01 setrgbcolor -fill -grestore -newpath -5.533962e+01 2.431731e+01 moveto -5.561551e+01 2.318691e+01 lineto -5.336614e+01 2.290945e+01 lineto -5.302412e+01 2.403168e+01 lineto -5.533962e+01 2.431731e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.507288e+01 2.546823e+01 moveto -5.533962e+01 2.431731e+01 lineto -5.302412e+01 2.403168e+01 lineto -5.269345e+01 2.517472e+01 lineto -5.507288e+01 2.546823e+01 lineto -closepath -gsave -7.689014e-01 7.689014e-01 9.611268e-01 setrgbcolor -fill -grestore -newpath -5.507288e+01 2.546823e+01 moveto -5.533962e+01 2.431731e+01 lineto -5.302412e+01 2.403168e+01 lineto -5.269345e+01 2.517472e+01 lineto -5.507288e+01 2.546823e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.481554e+01 2.66386e+01 moveto -5.507288e+01 2.546823e+01 lineto -5.269345e+01 2.517472e+01 lineto -5.237443e+01 2.633748e+01 lineto -5.481554e+01 2.66386e+01 lineto -closepath -gsave -7.719808e-01 7.719808e-01 9.64976e-01 setrgbcolor -fill -grestore -newpath -5.481554e+01 2.66386e+01 moveto -5.507288e+01 2.546823e+01 lineto -5.269345e+01 2.517472e+01 lineto -5.237443e+01 2.633748e+01 lineto -5.481554e+01 2.66386e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.456785e+01 2.782729e+01 moveto -5.481554e+01 2.66386e+01 lineto -5.237443e+01 2.633748e+01 lineto -5.206736e+01 2.751885e+01 lineto -5.456785e+01 2.782729e+01 lineto -closepath -gsave -7.748358e-01 7.748358e-01 9.685447e-01 setrgbcolor -fill -grestore -newpath -5.456785e+01 2.782729e+01 moveto -5.481554e+01 2.66386e+01 lineto -5.237443e+01 2.633748e+01 lineto -5.206736e+01 2.751885e+01 lineto -5.456785e+01 2.782729e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.433003e+01 2.90332e+01 moveto -5.456785e+01 2.782729e+01 lineto -5.206736e+01 2.751885e+01 lineto -5.177253e+01 2.871772e+01 lineto -5.433003e+01 2.90332e+01 lineto -closepath -gsave -7.774659e-01 7.774659e-01 9.718324e-01 setrgbcolor -fill -grestore -newpath -5.433003e+01 2.90332e+01 moveto -5.456785e+01 2.782729e+01 lineto -5.206736e+01 2.751885e+01 lineto -5.177253e+01 2.871772e+01 lineto -5.433003e+01 2.90332e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.410231e+01 3.025516e+01 moveto -5.433003e+01 2.90332e+01 lineto -5.177253e+01 2.871772e+01 lineto -5.149023e+01 2.993296e+01 lineto -5.410231e+01 3.025516e+01 lineto -closepath -gsave -7.798712e-01 7.798712e-01 9.74839e-01 setrgbcolor -fill -grestore -newpath -5.410231e+01 3.025516e+01 moveto -5.433003e+01 2.90332e+01 lineto -5.177253e+01 2.871772e+01 lineto -5.149023e+01 2.993296e+01 lineto -5.410231e+01 3.025516e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.388491e+01 3.149204e+01 moveto -5.410231e+01 3.025516e+01 lineto -5.149023e+01 2.993296e+01 lineto -5.122072e+01 3.11634e+01 lineto -5.388491e+01 3.149204e+01 lineto -closepath -gsave -7.820516e-01 7.820516e-01 9.775645e-01 setrgbcolor -fill -grestore -newpath -5.388491e+01 3.149204e+01 moveto -5.410231e+01 3.025516e+01 lineto -5.149023e+01 2.993296e+01 lineto -5.122072e+01 3.11634e+01 lineto -5.388491e+01 3.149204e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.367803e+01 3.274265e+01 moveto -5.388491e+01 3.149204e+01 lineto -5.122072e+01 3.11634e+01 lineto -5.096426e+01 3.24079e+01 lineto -5.367803e+01 3.274265e+01 lineto -closepath -gsave -7.840072e-01 7.840072e-01 9.80009e-01 setrgbcolor -fill -grestore -newpath -5.367803e+01 3.274265e+01 moveto -5.388491e+01 3.149204e+01 lineto -5.122072e+01 3.11634e+01 lineto -5.096426e+01 3.24079e+01 lineto -5.367803e+01 3.274265e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.348187e+01 3.400581e+01 moveto -5.367803e+01 3.274265e+01 lineto -5.096426e+01 3.24079e+01 lineto -5.072109e+01 3.366526e+01 lineto -5.348187e+01 3.400581e+01 lineto -closepath -gsave -7.857382e-01 7.857382e-01 9.821728e-01 setrgbcolor -fill -grestore -newpath -5.348187e+01 3.400581e+01 moveto -5.367803e+01 3.274265e+01 lineto -5.096426e+01 3.24079e+01 lineto -5.072109e+01 3.366526e+01 lineto -5.348187e+01 3.400581e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.329662e+01 3.528033e+01 moveto -5.348187e+01 3.400581e+01 lineto -5.072109e+01 3.366526e+01 lineto -5.049143e+01 3.49343e+01 lineto -5.329662e+01 3.528033e+01 lineto -closepath -gsave -7.87245e-01 7.87245e-01 9.840562e-01 setrgbcolor -fill -grestore -newpath -5.329662e+01 3.528033e+01 moveto -5.348187e+01 3.400581e+01 lineto -5.072109e+01 3.366526e+01 lineto -5.049143e+01 3.49343e+01 lineto -5.329662e+01 3.528033e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.312245e+01 3.6565e+01 moveto -5.329662e+01 3.528033e+01 lineto -5.049143e+01 3.49343e+01 lineto -5.027552e+01 3.621382e+01 lineto -5.312245e+01 3.6565e+01 lineto -closepath -gsave -7.885277e-01 7.885277e-01 9.856597e-01 setrgbcolor -fill -grestore -newpath -5.312245e+01 3.6565e+01 moveto -5.329662e+01 3.528033e+01 lineto -5.049143e+01 3.49343e+01 lineto -5.027552e+01 3.621382e+01 lineto -5.312245e+01 3.6565e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.295953e+01 3.78586e+01 moveto -5.312245e+01 3.6565e+01 lineto -5.027552e+01 3.621382e+01 lineto -5.007354e+01 3.75026e+01 lineto -5.295953e+01 3.78586e+01 lineto -closepath -gsave -7.895868e-01 7.895868e-01 9.869835e-01 setrgbcolor -fill -grestore -newpath -5.295953e+01 3.78586e+01 moveto -5.312245e+01 3.6565e+01 lineto -5.027552e+01 3.621382e+01 lineto -5.007354e+01 3.75026e+01 lineto -5.295953e+01 3.78586e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.2808e+01 3.915991e+01 moveto -5.295953e+01 3.78586e+01 lineto -5.007354e+01 3.75026e+01 lineto -4.98857e+01 3.879943e+01 lineto -5.2808e+01 3.915991e+01 lineto -closepath -gsave -7.904225e-01 7.904225e-01 9.880281e-01 setrgbcolor -fill -grestore -newpath -5.2808e+01 3.915991e+01 moveto -5.295953e+01 3.78586e+01 lineto -5.007354e+01 3.75026e+01 lineto -4.98857e+01 3.879943e+01 lineto -5.2808e+01 3.915991e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.266802e+01 4.046769e+01 moveto -5.2808e+01 3.915991e+01 lineto -4.98857e+01 3.879943e+01 lineto -4.971216e+01 4.010308e+01 lineto -5.266802e+01 4.046769e+01 lineto -closepath -gsave -7.91035e-01 7.91035e-01 9.887937e-01 setrgbcolor -fill -grestore -newpath -5.266802e+01 4.046769e+01 moveto -5.2808e+01 3.915991e+01 lineto -4.98857e+01 3.879943e+01 lineto -4.971216e+01 4.010308e+01 lineto -5.266802e+01 4.046769e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.449949e+01 4.285299e+00 moveto -6.499838e+01 4.00086e+00 lineto -6.499807e+01 4.000816e+00 lineto -6.440581e+01 4.271726e+00 lineto -6.449949e+01 4.285299e+00 lineto -closepath -gsave -6.128126e-01 6.128126e-01 7.660158e-01 setrgbcolor -fill -grestore -newpath -6.449949e+01 4.285299e+00 moveto -6.499838e+01 4.00086e+00 lineto -6.499807e+01 4.000816e+00 lineto -6.440581e+01 4.271726e+00 lineto -6.449949e+01 4.285299e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.400108e+01 4.609234e+00 moveto -6.449949e+01 4.285299e+00 lineto -6.440581e+01 4.271726e+00 lineto -6.38141e+01 4.582145e+00 lineto -6.400108e+01 4.609234e+00 lineto -closepath -gsave -6.204489e-01 6.204489e-01 7.755611e-01 setrgbcolor -fill -grestore -newpath -6.400108e+01 4.609234e+00 moveto -6.449949e+01 4.285299e+00 lineto -6.440581e+01 4.271726e+00 lineto -6.38141e+01 4.582145e+00 lineto -6.400108e+01 4.609234e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.350361e+01 4.972358e+00 moveto -6.400108e+01 4.609234e+00 lineto -6.38141e+01 4.582145e+00 lineto -6.322352e+01 4.931779e+00 lineto -6.350361e+01 4.972358e+00 lineto -closepath -gsave -6.280419e-01 6.280419e-01 7.850524e-01 setrgbcolor -fill -grestore -newpath -6.350361e+01 4.972358e+00 moveto -6.400108e+01 4.609234e+00 lineto -6.38141e+01 4.582145e+00 lineto -6.322352e+01 4.931779e+00 lineto -6.350361e+01 4.972358e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.300756e+01 5.374327e+00 moveto -6.350361e+01 4.972358e+00 lineto -6.322352e+01 4.931779e+00 lineto -6.263462e+01 5.320297e+00 lineto -6.300756e+01 5.374327e+00 lineto -closepath -gsave -6.355779e-01 6.355779e-01 7.944723e-01 setrgbcolor -fill -grestore -newpath -6.300756e+01 5.374327e+00 moveto -6.350361e+01 4.972358e+00 lineto -6.322352e+01 4.931779e+00 lineto -6.263462e+01 5.320297e+00 lineto -6.300756e+01 5.374327e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.25134e+01 5.814762e+00 moveto -6.300756e+01 5.374327e+00 lineto -6.263462e+01 5.320297e+00 lineto -6.204795e+01 5.74733e+00 lineto -6.25134e+01 5.814762e+00 lineto -closepath -gsave -6.430432e-01 6.430432e-01 8.038039e-01 setrgbcolor -fill -grestore -newpath -6.25134e+01 5.814762e+00 moveto -6.300756e+01 5.374327e+00 lineto -6.263462e+01 5.320297e+00 lineto -6.204795e+01 5.74733e+00 lineto -6.25134e+01 5.814762e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.202159e+01 6.293244e+00 moveto -6.25134e+01 5.814762e+00 lineto -6.204795e+01 5.74733e+00 lineto -6.146409e+01 6.212476e+00 lineto -6.202159e+01 6.293244e+00 lineto -closepath -gsave -6.504247e-01 6.504247e-01 8.130309e-01 setrgbcolor -fill -grestore -newpath -6.202159e+01 6.293244e+00 moveto -6.25134e+01 5.814762e+00 lineto -6.204795e+01 5.74733e+00 lineto -6.146409e+01 6.212476e+00 lineto -6.202159e+01 6.293244e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.15326e+01 6.80932e+00 moveto -6.202159e+01 6.293244e+00 lineto -6.146409e+01 6.212476e+00 lineto -6.088357e+01 6.715292e+00 lineto -6.15326e+01 6.80932e+00 lineto -closepath -gsave -6.5771e-01 6.5771e-01 8.221375e-01 setrgbcolor -fill -grestore -newpath -6.15326e+01 6.80932e+00 moveto -6.202159e+01 6.293244e+00 lineto -6.146409e+01 6.212476e+00 lineto -6.088357e+01 6.715292e+00 lineto -6.15326e+01 6.80932e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.10469e+01 7.362503e+00 moveto -6.15326e+01 6.80932e+00 lineto -6.088357e+01 6.715292e+00 lineto -6.030695e+01 7.255304e+00 lineto -6.10469e+01 7.362503e+00 lineto -closepath -gsave -6.648868e-01 6.648868e-01 8.311084e-01 setrgbcolor -fill -grestore -newpath -6.10469e+01 7.362503e+00 moveto -6.15326e+01 6.80932e+00 lineto -6.088357e+01 6.715292e+00 lineto -6.030695e+01 7.255304e+00 lineto -6.10469e+01 7.362503e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.056493e+01 7.952269e+00 moveto -6.10469e+01 7.362503e+00 lineto -6.030695e+01 7.255304e+00 lineto -5.973477e+01 7.831999e+00 lineto -6.056493e+01 7.952269e+00 lineto -closepath -gsave -6.719434e-01 6.719434e-01 8.399293e-01 setrgbcolor -fill -grestore -newpath -6.056493e+01 7.952269e+00 moveto -6.10469e+01 7.362503e+00 lineto -6.030695e+01 7.255304e+00 lineto -5.973477e+01 7.831999e+00 lineto -6.056493e+01 7.952269e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.008717e+01 8.578058e+00 moveto -6.056493e+01 7.952269e+00 lineto -5.973477e+01 7.831999e+00 lineto -5.916758e+01 8.444832e+00 lineto -6.008717e+01 8.578058e+00 lineto -closepath -gsave -6.78869e-01 6.78869e-01 8.485863e-01 setrgbcolor -fill -grestore -newpath -6.008717e+01 8.578058e+00 moveto -6.056493e+01 7.952269e+00 lineto -5.973477e+01 7.831999e+00 lineto -5.916758e+01 8.444832e+00 lineto -6.008717e+01 8.578058e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.961406e+01 9.239278e+00 moveto -6.008717e+01 8.578058e+00 lineto -5.916758e+01 8.444832e+00 lineto -5.860591e+01 9.093223e+00 lineto -5.961406e+01 9.239278e+00 lineto -closepath -gsave -6.85653e-01 6.85653e-01 8.570663e-01 setrgbcolor -fill -grestore -newpath -5.961406e+01 9.239278e+00 moveto -6.008717e+01 8.578058e+00 lineto -5.916758e+01 8.444832e+00 lineto -5.860591e+01 9.093223e+00 lineto -5.961406e+01 9.239278e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.914604e+01 9.935305e+00 moveto -5.961406e+01 9.239278e+00 lineto -5.860591e+01 9.093223e+00 lineto -5.805029e+01 9.776558e+00 lineto -5.914604e+01 9.935305e+00 lineto -closepath -gsave -6.922856e-01 6.922856e-01 8.653571e-01 setrgbcolor -fill -grestore -newpath -5.914604e+01 9.935305e+00 moveto -5.961406e+01 9.239278e+00 lineto -5.860591e+01 9.093223e+00 lineto -5.805029e+01 9.776558e+00 lineto -5.914604e+01 9.935305e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.868357e+01 1.066548e+01 moveto -5.914604e+01 9.935305e+00 lineto -5.805029e+01 9.776558e+00 lineto -5.750125e+01 1.049419e+01 lineto -5.868357e+01 1.066548e+01 lineto -closepath -gsave -6.987577e-01 6.987577e-01 8.734471e-01 setrgbcolor -fill -grestore -newpath -5.868357e+01 1.066548e+01 moveto -5.914604e+01 9.935305e+00 lineto -5.805029e+01 9.776558e+00 lineto -5.750125e+01 1.049419e+01 lineto -5.868357e+01 1.066548e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.822708e+01 1.14291e+01 moveto -5.868357e+01 1.066548e+01 lineto -5.750125e+01 1.049419e+01 lineto -5.695932e+01 1.124544e+01 lineto -5.822708e+01 1.14291e+01 lineto -closepath -gsave -7.050606e-01 7.050606e-01 8.813258e-01 setrgbcolor -fill -grestore -newpath -5.822708e+01 1.14291e+01 moveto -5.868357e+01 1.066548e+01 lineto -5.750125e+01 1.049419e+01 lineto -5.695932e+01 1.124544e+01 lineto -5.822708e+01 1.14291e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.777701e+01 1.222546e+01 moveto -5.822708e+01 1.14291e+01 lineto -5.695932e+01 1.124544e+01 lineto -5.642499e+01 1.202959e+01 lineto -5.777701e+01 1.222546e+01 lineto -closepath -gsave -7.111865e-01 7.111865e-01 8.889831e-01 setrgbcolor -fill -grestore -newpath -5.777701e+01 1.222546e+01 moveto -5.822708e+01 1.14291e+01 lineto -5.695932e+01 1.124544e+01 lineto -5.642499e+01 1.202959e+01 lineto -5.777701e+01 1.222546e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.733377e+01 1.30538e+01 moveto -5.777701e+01 1.222546e+01 lineto -5.642499e+01 1.202959e+01 lineto -5.589879e+01 1.284591e+01 lineto -5.733377e+01 1.30538e+01 lineto -closepath -gsave -7.171281e-01 7.171281e-01 8.964101e-01 setrgbcolor -fill -grestore -newpath -5.733377e+01 1.30538e+01 moveto -5.777701e+01 1.222546e+01 lineto -5.642499e+01 1.202959e+01 lineto -5.589879e+01 1.284591e+01 lineto -5.733377e+01 1.30538e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.689779e+01 1.391333e+01 moveto -5.733377e+01 1.30538e+01 lineto -5.589879e+01 1.284591e+01 lineto -5.53812e+01 1.369362e+01 lineto -5.689779e+01 1.391333e+01 lineto -closepath -gsave -7.228788e-01 7.228788e-01 9.035984e-01 setrgbcolor -fill -grestore -newpath -5.689779e+01 1.391333e+01 moveto -5.733377e+01 1.30538e+01 lineto -5.589879e+01 1.284591e+01 lineto -5.53812e+01 1.369362e+01 lineto -5.689779e+01 1.391333e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.646948e+01 1.480324e+01 moveto -5.689779e+01 1.391333e+01 lineto -5.53812e+01 1.369362e+01 lineto -5.487272e+01 1.457192e+01 lineto -5.646948e+01 1.480324e+01 lineto -closepath -gsave -7.284325e-01 7.284325e-01 9.105407e-01 setrgbcolor -fill -grestore -newpath -5.646948e+01 1.480324e+01 moveto -5.689779e+01 1.391333e+01 lineto -5.53812e+01 1.369362e+01 lineto -5.487272e+01 1.457192e+01 lineto -5.646948e+01 1.480324e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.604925e+01 1.572269e+01 moveto -5.646948e+01 1.480324e+01 lineto -5.487272e+01 1.457192e+01 lineto -5.437383e+01 1.547997e+01 lineto -5.604925e+01 1.572269e+01 lineto -closepath -gsave -7.337841e-01 7.337841e-01 9.172301e-01 setrgbcolor -fill -grestore -newpath -5.604925e+01 1.572269e+01 moveto -5.646948e+01 1.480324e+01 lineto -5.487272e+01 1.457192e+01 lineto -5.437383e+01 1.547997e+01 lineto -5.604925e+01 1.572269e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.563749e+01 1.667081e+01 moveto -5.604925e+01 1.572269e+01 lineto -5.437383e+01 1.547997e+01 lineto -5.3885e+01 1.641692e+01 lineto -5.563749e+01 1.667081e+01 lineto -closepath -gsave -7.389286e-01 7.389286e-01 9.236607e-01 setrgbcolor -fill -grestore -newpath -5.563749e+01 1.667081e+01 moveto -5.604925e+01 1.572269e+01 lineto -5.437383e+01 1.547997e+01 lineto -5.3885e+01 1.641692e+01 lineto -5.563749e+01 1.667081e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.52346e+01 1.764669e+01 moveto -5.563749e+01 1.667081e+01 lineto -5.3885e+01 1.641692e+01 lineto -5.340669e+01 1.738188e+01 lineto -5.52346e+01 1.764669e+01 lineto -closepath -gsave -7.438619e-01 7.438619e-01 9.298274e-01 setrgbcolor -fill -grestore -newpath -5.52346e+01 1.764669e+01 moveto -5.563749e+01 1.667081e+01 lineto -5.3885e+01 1.641692e+01 lineto -5.340669e+01 1.738188e+01 lineto -5.52346e+01 1.764669e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.484095e+01 1.864942e+01 moveto -5.52346e+01 1.764669e+01 lineto -5.340669e+01 1.738188e+01 lineto -5.293936e+01 1.837393e+01 lineto -5.484095e+01 1.864942e+01 lineto -closepath -gsave -7.485804e-01 7.485804e-01 9.357255e-01 setrgbcolor -fill -grestore -newpath -5.484095e+01 1.864942e+01 moveto -5.52346e+01 1.764669e+01 lineto -5.340669e+01 1.738188e+01 lineto -5.293936e+01 1.837393e+01 lineto -5.484095e+01 1.864942e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.445692e+01 1.967805e+01 moveto -5.484095e+01 1.864942e+01 lineto -5.293936e+01 1.837393e+01 lineto -5.248345e+01 1.939214e+01 lineto -5.445692e+01 1.967805e+01 lineto -closepath -gsave -7.53081e-01 7.53081e-01 9.413512e-01 setrgbcolor -fill -grestore -newpath -5.445692e+01 1.967805e+01 moveto -5.484095e+01 1.864942e+01 lineto -5.293936e+01 1.837393e+01 lineto -5.248345e+01 1.939214e+01 lineto -5.445692e+01 1.967805e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.408288e+01 2.07316e+01 moveto -5.445692e+01 1.967805e+01 lineto -5.248345e+01 1.939214e+01 lineto -5.203939e+01 2.043555e+01 lineto -5.408288e+01 2.07316e+01 lineto -closepath -gsave -7.57361e-01 7.57361e-01 9.467013e-01 setrgbcolor -fill -grestore -newpath -5.408288e+01 2.07316e+01 moveto -5.445692e+01 1.967805e+01 lineto -5.248345e+01 1.939214e+01 lineto -5.203939e+01 2.043555e+01 lineto -5.408288e+01 2.07316e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.371917e+01 2.180907e+01 moveto -5.408288e+01 2.07316e+01 lineto -5.203939e+01 2.043555e+01 lineto -5.16076e+01 2.150316e+01 lineto -5.371917e+01 2.180907e+01 lineto -closepath -gsave -7.614184e-01 7.614184e-01 9.51773e-01 setrgbcolor -fill -grestore -newpath -5.371917e+01 2.180907e+01 moveto -5.408288e+01 2.07316e+01 lineto -5.203939e+01 2.043555e+01 lineto -5.16076e+01 2.150316e+01 lineto -5.371917e+01 2.180907e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.336614e+01 2.290945e+01 moveto -5.371917e+01 2.180907e+01 lineto -5.16076e+01 2.150316e+01 lineto -5.118849e+01 2.259396e+01 lineto -5.336614e+01 2.290945e+01 lineto -closepath -gsave -7.652513e-01 7.652513e-01 9.565642e-01 setrgbcolor -fill -grestore -newpath -5.336614e+01 2.290945e+01 moveto -5.371917e+01 2.180907e+01 lineto -5.16076e+01 2.150316e+01 lineto -5.118849e+01 2.259396e+01 lineto -5.336614e+01 2.290945e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.302412e+01 2.403168e+01 moveto -5.336614e+01 2.290945e+01 lineto -5.118849e+01 2.259396e+01 lineto -5.078246e+01 2.370692e+01 lineto -5.302412e+01 2.403168e+01 lineto -closepath -gsave -7.688586e-01 7.688586e-01 9.610732e-01 setrgbcolor -fill -grestore -newpath -5.302412e+01 2.403168e+01 moveto -5.336614e+01 2.290945e+01 lineto -5.118849e+01 2.259396e+01 lineto -5.078246e+01 2.370692e+01 lineto -5.302412e+01 2.403168e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.269345e+01 2.517472e+01 moveto -5.302412e+01 2.403168e+01 lineto -5.078246e+01 2.370692e+01 lineto -5.038989e+01 2.484099e+01 lineto -5.269345e+01 2.517472e+01 lineto -closepath -gsave -7.722391e-01 7.722391e-01 9.652988e-01 setrgbcolor -fill -grestore -newpath -5.269345e+01 2.517472e+01 moveto -5.302412e+01 2.403168e+01 lineto -5.078246e+01 2.370692e+01 lineto -5.038989e+01 2.484099e+01 lineto -5.269345e+01 2.517472e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.237443e+01 2.633748e+01 moveto -5.269345e+01 2.517472e+01 lineto -5.038989e+01 2.484099e+01 lineto -5.001115e+01 2.59951e+01 lineto -5.237443e+01 2.633748e+01 lineto -closepath -gsave -7.753921e-01 7.753921e-01 9.692401e-01 setrgbcolor -fill -grestore -newpath -5.237443e+01 2.633748e+01 moveto -5.269345e+01 2.517472e+01 lineto -5.038989e+01 2.484099e+01 lineto -5.001115e+01 2.59951e+01 lineto -5.237443e+01 2.633748e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.206736e+01 2.751885e+01 moveto -5.237443e+01 2.633748e+01 lineto -5.001115e+01 2.59951e+01 lineto -4.96466e+01 2.716815e+01 lineto -5.206736e+01 2.751885e+01 lineto -closepath -gsave -7.783173e-01 7.783173e-01 9.728966e-01 setrgbcolor -fill -grestore -newpath -5.206736e+01 2.751885e+01 moveto -5.237443e+01 2.633748e+01 lineto -5.001115e+01 2.59951e+01 lineto -4.96466e+01 2.716815e+01 lineto -5.206736e+01 2.751885e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.177253e+01 2.871772e+01 moveto -5.206736e+01 2.751885e+01 lineto -4.96466e+01 2.716815e+01 lineto -4.929659e+01 2.835902e+01 lineto -5.177253e+01 2.871772e+01 lineto -closepath -gsave -7.810145e-01 7.810145e-01 9.762681e-01 setrgbcolor -fill -grestore -newpath -5.177253e+01 2.871772e+01 moveto -5.206736e+01 2.751885e+01 lineto -4.96466e+01 2.716815e+01 lineto -4.929659e+01 2.835902e+01 lineto -5.177253e+01 2.871772e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.149023e+01 2.993296e+01 moveto -5.177253e+01 2.871772e+01 lineto -4.929659e+01 2.835902e+01 lineto -4.896145e+01 2.95666e+01 lineto -5.149023e+01 2.993296e+01 lineto -closepath -gsave -7.834836e-01 7.834836e-01 9.793545e-01 setrgbcolor -fill -grestore -newpath -5.149023e+01 2.993296e+01 moveto -5.177253e+01 2.871772e+01 lineto -4.929659e+01 2.835902e+01 lineto -4.896145e+01 2.95666e+01 lineto -5.149023e+01 2.993296e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.122072e+01 3.11634e+01 moveto -5.149023e+01 2.993296e+01 lineto -4.896145e+01 2.95666e+01 lineto -4.86415e+01 3.078974e+01 lineto -5.122072e+01 3.11634e+01 lineto -closepath -gsave -7.857248e-01 7.857248e-01 9.821559e-01 setrgbcolor -fill -grestore -newpath -5.122072e+01 3.11634e+01 moveto -5.149023e+01 2.993296e+01 lineto -4.896145e+01 2.95666e+01 lineto -4.86415e+01 3.078974e+01 lineto -5.122072e+01 3.11634e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.096426e+01 3.24079e+01 moveto -5.122072e+01 3.11634e+01 lineto -4.86415e+01 3.078974e+01 lineto -4.833703e+01 3.202728e+01 lineto -5.096426e+01 3.24079e+01 lineto -closepath -gsave -7.877383e-01 7.877383e-01 9.846729e-01 setrgbcolor -fill -grestore -newpath -5.096426e+01 3.24079e+01 moveto -5.122072e+01 3.11634e+01 lineto -4.86415e+01 3.078974e+01 lineto -4.833703e+01 3.202728e+01 lineto -5.096426e+01 3.24079e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.072109e+01 3.366526e+01 moveto -5.096426e+01 3.24079e+01 lineto -4.833703e+01 3.202728e+01 lineto -4.804834e+01 3.327804e+01 lineto -5.072109e+01 3.366526e+01 lineto -closepath -gsave -7.895245e-01 7.895245e-01 9.869056e-01 setrgbcolor -fill -grestore -newpath -5.072109e+01 3.366526e+01 moveto -5.096426e+01 3.24079e+01 lineto -4.833703e+01 3.202728e+01 lineto -4.804834e+01 3.327804e+01 lineto -5.072109e+01 3.366526e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.049143e+01 3.49343e+01 moveto -5.072109e+01 3.366526e+01 lineto -4.804834e+01 3.327804e+01 lineto -4.77757e+01 3.454086e+01 lineto -5.049143e+01 3.49343e+01 lineto -closepath -gsave -7.910838e-01 7.910838e-01 9.888547e-01 setrgbcolor -fill -grestore -newpath -5.049143e+01 3.49343e+01 moveto -5.072109e+01 3.366526e+01 lineto -4.804834e+01 3.327804e+01 lineto -4.77757e+01 3.454086e+01 lineto -5.049143e+01 3.49343e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.027552e+01 3.621382e+01 moveto -5.049143e+01 3.49343e+01 lineto -4.77757e+01 3.454086e+01 lineto -4.751936e+01 3.581452e+01 lineto -5.027552e+01 3.621382e+01 lineto -closepath -gsave -7.924166e-01 7.924166e-01 9.905207e-01 setrgbcolor -fill -grestore -newpath -5.027552e+01 3.621382e+01 moveto -5.049143e+01 3.49343e+01 lineto -4.77757e+01 3.454086e+01 lineto -4.751936e+01 3.581452e+01 lineto -5.027552e+01 3.621382e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.007354e+01 3.75026e+01 moveto -5.027552e+01 3.621382e+01 lineto -4.751936e+01 3.581452e+01 lineto -4.727958e+01 3.709783e+01 lineto -5.007354e+01 3.75026e+01 lineto -closepath -gsave -7.935232e-01 7.935232e-01 9.91904e-01 setrgbcolor -fill -grestore -newpath -5.007354e+01 3.75026e+01 moveto -5.027552e+01 3.621382e+01 lineto -4.751936e+01 3.581452e+01 lineto -4.727958e+01 3.709783e+01 lineto -5.007354e+01 3.75026e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.98857e+01 3.879943e+01 moveto -5.007354e+01 3.75026e+01 lineto -4.727958e+01 3.709783e+01 lineto -4.705658e+01 3.838956e+01 lineto -4.98857e+01 3.879943e+01 lineto -closepath -gsave -7.944041e-01 7.944041e-01 9.930052e-01 setrgbcolor -fill -grestore -newpath -4.98857e+01 3.879943e+01 moveto -5.007354e+01 3.75026e+01 lineto -4.727958e+01 3.709783e+01 lineto -4.705658e+01 3.838956e+01 lineto -4.98857e+01 3.879943e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.971216e+01 4.010308e+01 moveto -4.98857e+01 3.879943e+01 lineto -4.705658e+01 3.838956e+01 lineto -4.685056e+01 3.968851e+01 lineto -4.971216e+01 4.010308e+01 lineto -closepath -gsave -7.950596e-01 7.950596e-01 9.938245e-01 setrgbcolor -fill -grestore -newpath -4.971216e+01 4.010308e+01 moveto -4.98857e+01 3.879943e+01 lineto -4.705658e+01 3.838956e+01 lineto -4.685056e+01 3.968851e+01 lineto -4.971216e+01 4.010308e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.440581e+01 4.271726e+00 moveto -6.499807e+01 4.000816e+00 lineto -6.499778e+01 4.000767e+00 lineto -6.431578e+01 4.256601e+00 lineto -6.440581e+01 4.271726e+00 lineto -closepath -gsave -6.128611e-01 6.128611e-01 7.660763e-01 setrgbcolor -fill -grestore -newpath -6.440581e+01 4.271726e+00 moveto -6.499807e+01 4.000816e+00 lineto -6.499778e+01 4.000767e+00 lineto -6.431578e+01 4.256601e+00 lineto -6.440581e+01 4.271726e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.38141e+01 4.582145e+00 moveto -6.440581e+01 4.271726e+00 lineto -6.431578e+01 4.256601e+00 lineto -6.363443e+01 4.551959e+00 lineto -6.38141e+01 4.582145e+00 lineto -closepath -gsave -6.205944e-01 6.205944e-01 7.75743e-01 setrgbcolor -fill -grestore -newpath -6.38141e+01 4.582145e+00 moveto -6.440581e+01 4.271726e+00 lineto -6.431578e+01 4.256601e+00 lineto -6.363443e+01 4.551959e+00 lineto -6.38141e+01 4.582145e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.322352e+01 4.931779e+00 moveto -6.38141e+01 4.582145e+00 lineto -6.363443e+01 4.551959e+00 lineto -6.295437e+01 4.88656e+00 lineto -6.322352e+01 4.931779e+00 lineto -closepath -gsave -6.282851e-01 6.282851e-01 7.853563e-01 setrgbcolor -fill -grestore -newpath -6.322352e+01 4.931779e+00 moveto -6.38141e+01 4.582145e+00 lineto -6.363443e+01 4.551959e+00 lineto -6.295437e+01 4.88656e+00 lineto -6.322352e+01 4.931779e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.263462e+01 5.320297e+00 moveto -6.322352e+01 4.931779e+00 lineto -6.295437e+01 4.88656e+00 lineto -6.227625e+01 5.260088e+00 lineto -6.263462e+01 5.320297e+00 lineto -closepath -gsave -6.35919e-01 6.35919e-01 7.948988e-01 setrgbcolor -fill -grestore -newpath -6.263462e+01 5.320297e+00 moveto -6.322352e+01 4.931779e+00 lineto -6.295437e+01 4.88656e+00 lineto -6.227625e+01 5.260088e+00 lineto -6.263462e+01 5.320297e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.204795e+01 5.74733e+00 moveto -6.263462e+01 5.320297e+00 lineto -6.227625e+01 5.260088e+00 lineto -6.160071e+01 5.672189e+00 lineto -6.204795e+01 5.74733e+00 lineto -closepath -gsave -6.434824e-01 6.434824e-01 8.04353e-01 setrgbcolor -fill -grestore -newpath -6.204795e+01 5.74733e+00 moveto -6.263462e+01 5.320297e+00 lineto -6.227625e+01 5.260088e+00 lineto -6.160071e+01 5.672189e+00 lineto -6.204795e+01 5.74733e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.146409e+01 6.212476e+00 moveto -6.204795e+01 5.74733e+00 lineto -6.160071e+01 5.672189e+00 lineto -6.092838e+01 6.122473e+00 lineto -6.146409e+01 6.212476e+00 lineto -closepath -gsave -6.509618e-01 6.509618e-01 8.137022e-01 setrgbcolor -fill -grestore -newpath -6.146409e+01 6.212476e+00 moveto -6.204795e+01 5.74733e+00 lineto -6.160071e+01 5.672189e+00 lineto -6.092838e+01 6.122473e+00 lineto -6.146409e+01 6.212476e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.088357e+01 6.715292e+00 moveto -6.146409e+01 6.212476e+00 lineto -6.092838e+01 6.122473e+00 lineto -6.025991e+01 6.610512e+00 lineto -6.088357e+01 6.715292e+00 lineto -closepath -gsave -6.583443e-01 6.583443e-01 8.229303e-01 setrgbcolor -fill -grestore -newpath -6.088357e+01 6.715292e+00 moveto -6.146409e+01 6.212476e+00 lineto -6.092838e+01 6.122473e+00 lineto -6.025991e+01 6.610512e+00 lineto -6.088357e+01 6.715292e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.030695e+01 7.255304e+00 moveto -6.088357e+01 6.715292e+00 lineto -6.025991e+01 6.610512e+00 lineto -5.959593e+01 7.135847e+00 lineto -6.030695e+01 7.255304e+00 lineto -closepath -gsave -6.656175e-01 6.656175e-01 8.320218e-01 setrgbcolor -fill -grestore -newpath -6.030695e+01 7.255304e+00 moveto -6.088357e+01 6.715292e+00 lineto -6.025991e+01 6.610512e+00 lineto -5.959593e+01 7.135847e+00 lineto -6.030695e+01 7.255304e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.973477e+01 7.831999e+00 moveto -6.030695e+01 7.255304e+00 lineto -5.959593e+01 7.135847e+00 lineto -5.893707e+01 7.697978e+00 lineto -5.973477e+01 7.831999e+00 lineto -closepath -gsave -6.727695e-01 6.727695e-01 8.409619e-01 setrgbcolor -fill -grestore -newpath -5.973477e+01 7.831999e+00 moveto -6.030695e+01 7.255304e+00 lineto -5.959593e+01 7.135847e+00 lineto -5.893707e+01 7.697978e+00 lineto -5.973477e+01 7.831999e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.916758e+01 8.444832e+00 moveto -5.973477e+01 7.831999e+00 lineto -5.893707e+01 7.697978e+00 lineto -5.828394e+01 8.296374e+00 lineto -5.916758e+01 8.444832e+00 lineto -closepath -gsave -6.797891e-01 6.797891e-01 8.497364e-01 setrgbcolor -fill -grestore -newpath -5.916758e+01 8.444832e+00 moveto -5.973477e+01 7.831999e+00 lineto -5.893707e+01 7.697978e+00 lineto -5.828394e+01 8.296374e+00 lineto -5.916758e+01 8.444832e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.860591e+01 9.093223e+00 moveto -5.916758e+01 8.444832e+00 lineto -5.828394e+01 8.296374e+00 lineto -5.763718e+01 8.930468e+00 lineto -5.860591e+01 9.093223e+00 lineto -closepath -gsave -6.866657e-01 6.866657e-01 8.583321e-01 setrgbcolor -fill -grestore -newpath -5.860591e+01 9.093223e+00 moveto -5.916758e+01 8.444832e+00 lineto -5.828394e+01 8.296374e+00 lineto -5.763718e+01 8.930468e+00 lineto -5.860591e+01 9.093223e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.805029e+01 9.776558e+00 moveto -5.860591e+01 9.093223e+00 lineto -5.763718e+01 8.930468e+00 lineto -5.699738e+01 9.59966e+00 lineto -5.805029e+01 9.776558e+00 lineto -closepath -gsave -6.93389e-01 6.93389e-01 8.667363e-01 setrgbcolor -fill -grestore -newpath -5.805029e+01 9.776558e+00 moveto -5.860591e+01 9.093223e+00 lineto -5.763718e+01 8.930468e+00 lineto -5.699738e+01 9.59966e+00 lineto -5.805029e+01 9.776558e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.750125e+01 1.049419e+01 moveto -5.805029e+01 9.776558e+00 lineto -5.699738e+01 9.59966e+00 lineto -5.636517e+01 1.030332e+01 lineto -5.750125e+01 1.049419e+01 lineto -closepath -gsave -6.999499e-01 6.999499e-01 8.749374e-01 setrgbcolor -fill -grestore -newpath -5.750125e+01 1.049419e+01 moveto -5.805029e+01 9.776558e+00 lineto -5.699738e+01 9.59966e+00 lineto -5.636517e+01 1.030332e+01 lineto -5.750125e+01 1.049419e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.695932e+01 1.124544e+01 moveto -5.750125e+01 1.049419e+01 lineto -5.636517e+01 1.030332e+01 lineto -5.574112e+01 1.104077e+01 lineto -5.695932e+01 1.124544e+01 lineto -closepath -gsave -7.063396e-01 7.063396e-01 8.829245e-01 setrgbcolor -fill -grestore -newpath -5.695932e+01 1.124544e+01 moveto -5.750125e+01 1.049419e+01 lineto -5.636517e+01 1.030332e+01 lineto -5.574112e+01 1.104077e+01 lineto -5.695932e+01 1.124544e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.642499e+01 1.202959e+01 moveto -5.695932e+01 1.124544e+01 lineto -5.574112e+01 1.104077e+01 lineto -5.512585e+01 1.181132e+01 lineto -5.642499e+01 1.202959e+01 lineto -closepath -gsave -7.125499e-01 7.125499e-01 8.906874e-01 setrgbcolor -fill -grestore -newpath -5.642499e+01 1.202959e+01 moveto -5.695932e+01 1.124544e+01 lineto -5.574112e+01 1.104077e+01 lineto -5.512585e+01 1.181132e+01 lineto -5.642499e+01 1.202959e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.589879e+01 1.284591e+01 moveto -5.642499e+01 1.202959e+01 lineto -5.512585e+01 1.181132e+01 lineto -5.451992e+01 1.261425e+01 lineto -5.589879e+01 1.284591e+01 lineto -closepath -gsave -7.185736e-01 7.185736e-01 8.98217e-01 setrgbcolor -fill -grestore -newpath -5.589879e+01 1.284591e+01 moveto -5.642499e+01 1.202959e+01 lineto -5.512585e+01 1.181132e+01 lineto -5.451992e+01 1.261425e+01 lineto -5.589879e+01 1.284591e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.53812e+01 1.369362e+01 moveto -5.589879e+01 1.284591e+01 lineto -5.451992e+01 1.261425e+01 lineto -5.392392e+01 1.344878e+01 lineto -5.53812e+01 1.369362e+01 lineto -closepath -gsave -7.24404e-01 7.24404e-01 9.055049e-01 setrgbcolor -fill -grestore -newpath -5.53812e+01 1.369362e+01 moveto -5.589879e+01 1.284591e+01 lineto -5.451992e+01 1.261425e+01 lineto -5.392392e+01 1.344878e+01 lineto -5.53812e+01 1.369362e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.487272e+01 1.457192e+01 moveto -5.53812e+01 1.369362e+01 lineto -5.392392e+01 1.344878e+01 lineto -5.33384e+01 1.431414e+01 lineto -5.487272e+01 1.457192e+01 lineto -closepath -gsave -7.300348e-01 7.300348e-01 9.125435e-01 setrgbcolor -fill -grestore -newpath -5.487272e+01 1.457192e+01 moveto -5.53812e+01 1.369362e+01 lineto -5.392392e+01 1.344878e+01 lineto -5.33384e+01 1.431414e+01 lineto -5.487272e+01 1.457192e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.437383e+01 1.547997e+01 moveto -5.487272e+01 1.457192e+01 lineto -5.33384e+01 1.431414e+01 lineto -5.276393e+01 1.520949e+01 lineto -5.437383e+01 1.547997e+01 lineto -closepath -gsave -7.354608e-01 7.354608e-01 9.19326e-01 setrgbcolor -fill -grestore -newpath -5.437383e+01 1.547997e+01 moveto -5.487272e+01 1.457192e+01 lineto -5.33384e+01 1.431414e+01 lineto -5.276393e+01 1.520949e+01 lineto -5.437383e+01 1.547997e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.3885e+01 1.641692e+01 moveto -5.437383e+01 1.547997e+01 lineto -5.276393e+01 1.520949e+01 lineto -5.220104e+01 1.6134e+01 lineto -5.3885e+01 1.641692e+01 lineto -closepath -gsave -7.406771e-01 7.406771e-01 9.258464e-01 setrgbcolor -fill -grestore -newpath -5.3885e+01 1.641692e+01 moveto -5.437383e+01 1.547997e+01 lineto -5.276393e+01 1.520949e+01 lineto -5.220104e+01 1.6134e+01 lineto -5.3885e+01 1.641692e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.340669e+01 1.738188e+01 moveto -5.3885e+01 1.641692e+01 lineto -5.220104e+01 1.6134e+01 lineto -5.165026e+01 1.708678e+01 lineto -5.340669e+01 1.738188e+01 lineto -closepath -gsave -7.456796e-01 7.456796e-01 9.320995e-01 setrgbcolor -fill -grestore -newpath -5.340669e+01 1.738188e+01 moveto -5.3885e+01 1.641692e+01 lineto -5.220104e+01 1.6134e+01 lineto -5.165026e+01 1.708678e+01 lineto -5.340669e+01 1.738188e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.293936e+01 1.837393e+01 moveto -5.340669e+01 1.738188e+01 lineto -5.165026e+01 1.708678e+01 lineto -5.111213e+01 1.806694e+01 lineto -5.293936e+01 1.837393e+01 lineto -closepath -gsave -7.504645e-01 7.504645e-01 9.380806e-01 setrgbcolor -fill -grestore -newpath -5.293936e+01 1.837393e+01 moveto -5.340669e+01 1.738188e+01 lineto -5.165026e+01 1.708678e+01 lineto -5.111213e+01 1.806694e+01 lineto -5.293936e+01 1.837393e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.248345e+01 1.939214e+01 moveto -5.293936e+01 1.837393e+01 lineto -5.111213e+01 1.806694e+01 lineto -5.058715e+01 1.907355e+01 lineto -5.248345e+01 1.939214e+01 lineto -closepath -gsave -7.550288e-01 7.550288e-01 9.43786e-01 setrgbcolor -fill -grestore -newpath -5.248345e+01 1.939214e+01 moveto -5.293936e+01 1.837393e+01 lineto -5.111213e+01 1.806694e+01 lineto -5.058715e+01 1.907355e+01 lineto -5.248345e+01 1.939214e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.203939e+01 2.043555e+01 moveto -5.248345e+01 1.939214e+01 lineto -5.058715e+01 1.907355e+01 lineto -5.007581e+01 2.010565e+01 lineto -5.203939e+01 2.043555e+01 lineto -closepath -gsave -7.5937e-01 7.5937e-01 9.492124e-01 setrgbcolor -fill -grestore -newpath -5.203939e+01 2.043555e+01 moveto -5.248345e+01 1.939214e+01 lineto -5.058715e+01 1.907355e+01 lineto -5.007581e+01 2.010565e+01 lineto -5.203939e+01 2.043555e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.16076e+01 2.150316e+01 moveto -5.203939e+01 2.043555e+01 lineto -5.007581e+01 2.010565e+01 lineto -4.95786e+01 2.116227e+01 lineto -5.16076e+01 2.150316e+01 lineto -closepath -gsave -7.634858e-01 7.634858e-01 9.543572e-01 setrgbcolor -fill -grestore -newpath -5.16076e+01 2.150316e+01 moveto -5.203939e+01 2.043555e+01 lineto -5.007581e+01 2.010565e+01 lineto -4.95786e+01 2.116227e+01 lineto -5.16076e+01 2.150316e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.118849e+01 2.259396e+01 moveto -5.16076e+01 2.150316e+01 lineto -4.95786e+01 2.116227e+01 lineto -4.9096e+01 2.22424e+01 lineto -5.118849e+01 2.259396e+01 lineto -closepath -gsave -7.673746e-01 7.673746e-01 9.592183e-01 setrgbcolor -fill -grestore -newpath -5.118849e+01 2.259396e+01 moveto -5.16076e+01 2.150316e+01 lineto -4.95786e+01 2.116227e+01 lineto -4.9096e+01 2.22424e+01 lineto -5.118849e+01 2.259396e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.078246e+01 2.370692e+01 moveto -5.118849e+01 2.259396e+01 lineto -4.9096e+01 2.22424e+01 lineto -4.862845e+01 2.334503e+01 lineto -5.078246e+01 2.370692e+01 lineto -closepath -gsave -7.710352e-01 7.710352e-01 9.63794e-01 setrgbcolor -fill -grestore -newpath -5.078246e+01 2.370692e+01 moveto -5.118849e+01 2.259396e+01 lineto -4.9096e+01 2.22424e+01 lineto -4.862845e+01 2.334503e+01 lineto -5.078246e+01 2.370692e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.038989e+01 2.484099e+01 moveto -5.078246e+01 2.370692e+01 lineto -4.862845e+01 2.334503e+01 lineto -4.81764e+01 2.446911e+01 lineto -5.038989e+01 2.484099e+01 lineto -closepath -gsave -7.744666e-01 7.744666e-01 9.680833e-01 setrgbcolor -fill -grestore -newpath -5.038989e+01 2.484099e+01 moveto -5.078246e+01 2.370692e+01 lineto -4.862845e+01 2.334503e+01 lineto -4.81764e+01 2.446911e+01 lineto -5.038989e+01 2.484099e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.001115e+01 2.59951e+01 moveto -5.038989e+01 2.484099e+01 lineto -4.81764e+01 2.446911e+01 lineto -4.774028e+01 2.561357e+01 lineto -5.001115e+01 2.59951e+01 lineto -closepath -gsave -7.776682e-01 7.776682e-01 9.720853e-01 setrgbcolor -fill -grestore -newpath -5.001115e+01 2.59951e+01 moveto -5.038989e+01 2.484099e+01 lineto -4.81764e+01 2.446911e+01 lineto -4.774028e+01 2.561357e+01 lineto -5.001115e+01 2.59951e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.96466e+01 2.716815e+01 moveto -5.001115e+01 2.59951e+01 lineto -4.774028e+01 2.561357e+01 lineto -4.732051e+01 2.677734e+01 lineto -4.96466e+01 2.716815e+01 lineto -closepath -gsave -7.806397e-01 7.806397e-01 9.757996e-01 setrgbcolor -fill -grestore -newpath -4.96466e+01 2.716815e+01 moveto -5.001115e+01 2.59951e+01 lineto -4.774028e+01 2.561357e+01 lineto -4.732051e+01 2.677734e+01 lineto -4.96466e+01 2.716815e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.929659e+01 2.835902e+01 moveto -4.96466e+01 2.716815e+01 lineto -4.732051e+01 2.677734e+01 lineto -4.691747e+01 2.795931e+01 lineto -4.929659e+01 2.835902e+01 lineto -closepath -gsave -7.833809e-01 7.833809e-01 9.792262e-01 setrgbcolor -fill -grestore -newpath -4.929659e+01 2.835902e+01 moveto -4.96466e+01 2.716815e+01 lineto -4.732051e+01 2.677734e+01 lineto -4.691747e+01 2.795931e+01 lineto -4.929659e+01 2.835902e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.896145e+01 2.95666e+01 moveto -4.929659e+01 2.835902e+01 lineto -4.691747e+01 2.795931e+01 lineto -4.653155e+01 2.915835e+01 lineto -4.896145e+01 2.95666e+01 lineto -closepath -gsave -7.85892e-01 7.85892e-01 9.82365e-01 setrgbcolor -fill -grestore -newpath -4.896145e+01 2.95666e+01 moveto -4.929659e+01 2.835902e+01 lineto -4.691747e+01 2.795931e+01 lineto -4.653155e+01 2.915835e+01 lineto -4.896145e+01 2.95666e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.86415e+01 3.078974e+01 moveto -4.896145e+01 2.95666e+01 lineto -4.653155e+01 2.915835e+01 lineto -4.616312e+01 3.037335e+01 lineto -4.86415e+01 3.078974e+01 lineto -closepath -gsave -7.881732e-01 7.881732e-01 9.852165e-01 setrgbcolor -fill -grestore -newpath -4.86415e+01 3.078974e+01 moveto -4.896145e+01 2.95666e+01 lineto -4.653155e+01 2.915835e+01 lineto -4.616312e+01 3.037335e+01 lineto -4.86415e+01 3.078974e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.833703e+01 3.202728e+01 moveto -4.86415e+01 3.078974e+01 lineto -4.616312e+01 3.037335e+01 lineto -4.581253e+01 3.160314e+01 lineto -4.833703e+01 3.202728e+01 lineto -closepath -gsave -7.902248e-01 7.902248e-01 9.87781e-01 setrgbcolor -fill -grestore -newpath -4.833703e+01 3.202728e+01 moveto -4.86415e+01 3.078974e+01 lineto -4.616312e+01 3.037335e+01 lineto -4.581253e+01 3.160314e+01 lineto -4.833703e+01 3.202728e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.804834e+01 3.327804e+01 moveto -4.833703e+01 3.202728e+01 lineto -4.581253e+01 3.160314e+01 lineto -4.54801e+01 3.284656e+01 lineto -4.804834e+01 3.327804e+01 lineto -closepath -gsave -7.920472e-01 7.920472e-01 9.90059e-01 setrgbcolor -fill -grestore -newpath -4.804834e+01 3.327804e+01 moveto -4.833703e+01 3.202728e+01 lineto -4.581253e+01 3.160314e+01 lineto -4.54801e+01 3.284656e+01 lineto -4.804834e+01 3.327804e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.77757e+01 3.454086e+01 moveto -4.804834e+01 3.327804e+01 lineto -4.54801e+01 3.284656e+01 lineto -4.516615e+01 3.410243e+01 lineto -4.77757e+01 3.454086e+01 lineto -closepath -gsave -7.93641e-01 7.93641e-01 9.920513e-01 setrgbcolor -fill -grestore -newpath -4.77757e+01 3.454086e+01 moveto -4.804834e+01 3.327804e+01 lineto -4.54801e+01 3.284656e+01 lineto -4.516615e+01 3.410243e+01 lineto -4.77757e+01 3.454086e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.751936e+01 3.581452e+01 moveto -4.77757e+01 3.454086e+01 lineto -4.516615e+01 3.410243e+01 lineto -4.487098e+01 3.536957e+01 lineto -4.751936e+01 3.581452e+01 lineto -closepath -gsave -7.950067e-01 7.950067e-01 9.937583e-01 setrgbcolor -fill -grestore -newpath -4.751936e+01 3.581452e+01 moveto -4.77757e+01 3.454086e+01 lineto -4.516615e+01 3.410243e+01 lineto -4.487098e+01 3.536957e+01 lineto -4.751936e+01 3.581452e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.727958e+01 3.709783e+01 moveto -4.751936e+01 3.581452e+01 lineto -4.487098e+01 3.536957e+01 lineto -4.459487e+01 3.664677e+01 lineto -4.727958e+01 3.709783e+01 lineto -closepath -gsave -7.961446e-01 7.961446e-01 9.951807e-01 setrgbcolor -fill -grestore -newpath -4.727958e+01 3.709783e+01 moveto -4.751936e+01 3.581452e+01 lineto -4.487098e+01 3.536957e+01 lineto -4.459487e+01 3.664677e+01 lineto -4.727958e+01 3.709783e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.705658e+01 3.838956e+01 moveto -4.727958e+01 3.709783e+01 lineto -4.459487e+01 3.664677e+01 lineto -4.433808e+01 3.793283e+01 lineto -4.705658e+01 3.838956e+01 lineto -closepath -gsave -7.970552e-01 7.970552e-01 9.96319e-01 setrgbcolor -fill -grestore -newpath -4.705658e+01 3.838956e+01 moveto -4.727958e+01 3.709783e+01 lineto -4.459487e+01 3.664677e+01 lineto -4.433808e+01 3.793283e+01 lineto -4.705658e+01 3.838956e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.685056e+01 3.968851e+01 moveto -4.705658e+01 3.838956e+01 lineto -4.433808e+01 3.793283e+01 lineto -4.410086e+01 3.922653e+01 lineto -4.685056e+01 3.968851e+01 lineto -closepath -gsave -7.97739e-01 7.97739e-01 9.971737e-01 setrgbcolor -fill -grestore -newpath -4.685056e+01 3.968851e+01 moveto -4.705658e+01 3.838956e+01 lineto -4.433808e+01 3.793283e+01 lineto -4.410086e+01 3.922653e+01 lineto -4.685056e+01 3.968851e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.431578e+01 4.256601e+00 moveto -6.499778e+01 4.000767e+00 lineto -6.499751e+01 4.000713e+00 lineto -6.422998e+01 4.240018e+00 lineto -6.431578e+01 4.256601e+00 lineto -closepath -gsave -6.128854e-01 6.128854e-01 7.661067e-01 setrgbcolor -fill -grestore -newpath -6.431578e+01 4.256601e+00 moveto -6.499778e+01 4.000767e+00 lineto -6.499751e+01 4.000713e+00 lineto -6.422998e+01 4.240018e+00 lineto -6.431578e+01 4.256601e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.363443e+01 4.551959e+00 moveto -6.431578e+01 4.256601e+00 lineto -6.422998e+01 4.240018e+00 lineto -6.346318e+01 4.518862e+00 lineto -6.363443e+01 4.551959e+00 lineto -closepath -gsave -6.206673e-01 6.206673e-01 7.758342e-01 setrgbcolor -fill -grestore -newpath -6.363443e+01 4.551959e+00 moveto -6.431578e+01 4.256601e+00 lineto -6.422998e+01 4.240018e+00 lineto -6.346318e+01 4.518862e+00 lineto -6.363443e+01 4.551959e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.295437e+01 4.88656e+00 moveto -6.363443e+01 4.551959e+00 lineto -6.346318e+01 4.518862e+00 lineto -6.269784e+01 4.836981e+00 lineto -6.295437e+01 4.88656e+00 lineto -closepath -gsave -6.28407e-01 6.28407e-01 7.855088e-01 setrgbcolor -fill -grestore -newpath -6.295437e+01 4.88656e+00 moveto -6.363443e+01 4.551959e+00 lineto -6.346318e+01 4.518862e+00 lineto -6.269784e+01 4.836981e+00 lineto -6.295437e+01 4.88656e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.227625e+01 5.260088e+00 moveto -6.295437e+01 4.88656e+00 lineto -6.269784e+01 4.836981e+00 lineto -6.193468e+01 5.194073e+00 lineto -6.227625e+01 5.260088e+00 lineto -closepath -gsave -6.360901e-01 6.360901e-01 7.951127e-01 setrgbcolor -fill -grestore -newpath -6.227625e+01 5.260088e+00 moveto -6.295437e+01 4.88656e+00 lineto -6.269784e+01 4.836981e+00 lineto -6.193468e+01 5.194073e+00 lineto -6.227625e+01 5.260088e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.160071e+01 5.672189e+00 moveto -6.227625e+01 5.260088e+00 lineto -6.193468e+01 5.194073e+00 lineto -6.117442e+01 5.589801e+00 lineto -6.160071e+01 5.672189e+00 lineto -closepath -gsave -6.437027e-01 6.437027e-01 8.046283e-01 setrgbcolor -fill -grestore -newpath -6.160071e+01 5.672189e+00 moveto -6.227625e+01 5.260088e+00 lineto -6.193468e+01 5.194073e+00 lineto -6.117442e+01 5.589801e+00 lineto -6.160071e+01 5.672189e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.092838e+01 6.122473e+00 moveto -6.160071e+01 5.672189e+00 lineto -6.117442e+01 5.589801e+00 lineto -6.041778e+01 6.023789e+00 lineto -6.092838e+01 6.122473e+00 lineto -closepath -gsave -6.512311e-01 6.512311e-01 8.140389e-01 setrgbcolor -fill -grestore -newpath -6.092838e+01 6.122473e+00 moveto -6.160071e+01 5.672189e+00 lineto -6.117442e+01 5.589801e+00 lineto -6.041778e+01 6.023789e+00 lineto -6.092838e+01 6.122473e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.025991e+01 6.610512e+00 moveto -6.092838e+01 6.122473e+00 lineto -6.041778e+01 6.023789e+00 lineto -5.966548e+01 6.495628e+00 lineto -6.025991e+01 6.610512e+00 lineto -closepath -gsave -6.586624e-01 6.586624e-01 8.23328e-01 setrgbcolor -fill -grestore -newpath -6.025991e+01 6.610512e+00 moveto -6.092838e+01 6.122473e+00 lineto -6.041778e+01 6.023789e+00 lineto -5.966548e+01 6.495628e+00 lineto -6.025991e+01 6.610512e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.959593e+01 7.135847e+00 moveto -6.025991e+01 6.610512e+00 lineto -5.966548e+01 6.495628e+00 lineto -5.891824e+01 7.004869e+00 lineto -5.959593e+01 7.135847e+00 lineto -closepath -gsave -6.65984e-01 6.65984e-01 8.3248e-01 setrgbcolor -fill -grestore -newpath -5.959593e+01 7.135847e+00 moveto -6.025991e+01 6.610512e+00 lineto -5.966548e+01 6.495628e+00 lineto -5.891824e+01 7.004869e+00 lineto -5.959593e+01 7.135847e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.893707e+01 7.697978e+00 moveto -5.959593e+01 7.135847e+00 lineto -5.891824e+01 7.004869e+00 lineto -5.817675e+01 7.551032e+00 lineto -5.893707e+01 7.697978e+00 lineto -closepath -gsave -6.731838e-01 6.731838e-01 8.414798e-01 setrgbcolor -fill -grestore -newpath -5.893707e+01 7.697978e+00 moveto -5.959593e+01 7.135847e+00 lineto -5.891824e+01 7.004869e+00 lineto -5.817675e+01 7.551032e+00 lineto -5.893707e+01 7.697978e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.828394e+01 8.296374e+00 moveto -5.893707e+01 7.697978e+00 lineto -5.817675e+01 7.551032e+00 lineto -5.744172e+01 8.133598e+00 lineto -5.828394e+01 8.296374e+00 lineto -closepath -gsave -6.802506e-01 6.802506e-01 8.503132e-01 setrgbcolor -fill -grestore -newpath -5.828394e+01 8.296374e+00 moveto -5.893707e+01 7.697978e+00 lineto -5.817675e+01 7.551032e+00 lineto -5.744172e+01 8.133598e+00 lineto -5.828394e+01 8.296374e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.763718e+01 8.930468e+00 moveto -5.828394e+01 8.296374e+00 lineto -5.744172e+01 8.133598e+00 lineto -5.671384e+01 8.752016e+00 lineto -5.763718e+01 8.930468e+00 lineto -closepath -gsave -6.871735e-01 6.871735e-01 8.589668e-01 setrgbcolor -fill -grestore -newpath -5.763718e+01 8.930468e+00 moveto -5.828394e+01 8.296374e+00 lineto -5.744172e+01 8.133598e+00 lineto -5.671384e+01 8.752016e+00 lineto -5.763718e+01 8.930468e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.699738e+01 9.59966e+00 moveto -5.763718e+01 8.930468e+00 lineto -5.671384e+01 8.752016e+00 lineto -5.599382e+01 9.405702e+00 lineto -5.699738e+01 9.59966e+00 lineto -closepath -gsave -6.939423e-01 6.939423e-01 8.674279e-01 setrgbcolor -fill -grestore -newpath -5.699738e+01 9.59966e+00 moveto -5.763718e+01 8.930468e+00 lineto -5.671384e+01 8.752016e+00 lineto -5.599382e+01 9.405702e+00 lineto -5.699738e+01 9.59966e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.636517e+01 1.030332e+01 moveto -5.699738e+01 9.59966e+00 lineto -5.599382e+01 9.405702e+00 lineto -5.528232e+01 1.009403e+01 lineto -5.636517e+01 1.030332e+01 lineto -closepath -gsave -7.005477e-01 7.005477e-01 8.756846e-01 setrgbcolor -fill -grestore -newpath -5.636517e+01 1.030332e+01 moveto -5.699738e+01 9.59966e+00 lineto -5.599382e+01 9.405702e+00 lineto -5.528232e+01 1.009403e+01 lineto -5.636517e+01 1.030332e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.574112e+01 1.104077e+01 moveto -5.636517e+01 1.030332e+01 lineto -5.528232e+01 1.009403e+01 lineto -5.458002e+01 1.081636e+01 lineto -5.574112e+01 1.104077e+01 lineto -closepath -gsave -7.069807e-01 7.069807e-01 8.837259e-01 setrgbcolor -fill -grestore -newpath -5.574112e+01 1.104077e+01 moveto -5.636517e+01 1.030332e+01 lineto -5.528232e+01 1.009403e+01 lineto -5.458002e+01 1.081636e+01 lineto -5.574112e+01 1.104077e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.512585e+01 1.181132e+01 moveto -5.574112e+01 1.104077e+01 lineto -5.458002e+01 1.081636e+01 lineto -5.388758e+01 1.157201e+01 lineto -5.512585e+01 1.181132e+01 lineto -closepath -gsave -7.132334e-01 7.132334e-01 8.915417e-01 setrgbcolor -fill -grestore -newpath -5.512585e+01 1.181132e+01 moveto -5.574112e+01 1.104077e+01 lineto -5.458002e+01 1.081636e+01 lineto -5.388758e+01 1.157201e+01 lineto -5.512585e+01 1.181132e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.451992e+01 1.261425e+01 moveto -5.512585e+01 1.181132e+01 lineto -5.388758e+01 1.157201e+01 lineto -5.320567e+01 1.236024e+01 lineto -5.451992e+01 1.261425e+01 lineto -closepath -gsave -7.192982e-01 7.192982e-01 8.991227e-01 setrgbcolor -fill -grestore -newpath -5.451992e+01 1.261425e+01 moveto -5.512585e+01 1.181132e+01 lineto -5.388758e+01 1.157201e+01 lineto -5.320567e+01 1.236024e+01 lineto -5.451992e+01 1.261425e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.392392e+01 1.344878e+01 moveto -5.451992e+01 1.261425e+01 lineto -5.320567e+01 1.236024e+01 lineto -5.253492e+01 1.318033e+01 lineto -5.392392e+01 1.344878e+01 lineto -closepath -gsave -7.251683e-01 7.251683e-01 9.064604e-01 setrgbcolor -fill -grestore -newpath -5.392392e+01 1.344878e+01 moveto -5.451992e+01 1.261425e+01 lineto -5.320567e+01 1.236024e+01 lineto -5.253492e+01 1.318033e+01 lineto -5.392392e+01 1.344878e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.33384e+01 1.431414e+01 moveto -5.392392e+01 1.344878e+01 lineto -5.253492e+01 1.318033e+01 lineto -5.187598e+01 1.403149e+01 lineto -5.33384e+01 1.431414e+01 lineto -closepath -gsave -7.308377e-01 7.308377e-01 9.135471e-01 setrgbcolor -fill -grestore -newpath -5.33384e+01 1.431414e+01 moveto -5.392392e+01 1.344878e+01 lineto -5.253492e+01 1.318033e+01 lineto -5.187598e+01 1.403149e+01 lineto -5.33384e+01 1.431414e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.276393e+01 1.520949e+01 moveto -5.33384e+01 1.431414e+01 lineto -5.187598e+01 1.403149e+01 lineto -5.122946e+01 1.491293e+01 lineto -5.276393e+01 1.520949e+01 lineto -closepath -gsave -7.363009e-01 7.363009e-01 9.203761e-01 setrgbcolor -fill -grestore -newpath -5.276393e+01 1.520949e+01 moveto -5.33384e+01 1.431414e+01 lineto -5.187598e+01 1.403149e+01 lineto -5.122946e+01 1.491293e+01 lineto -5.276393e+01 1.520949e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.220104e+01 1.6134e+01 moveto -5.276393e+01 1.520949e+01 lineto -5.122946e+01 1.491293e+01 lineto -5.059598e+01 1.582379e+01 lineto -5.220104e+01 1.6134e+01 lineto -closepath -gsave -7.415531e-01 7.415531e-01 9.269413e-01 setrgbcolor -fill -grestore -newpath -5.220104e+01 1.6134e+01 moveto -5.276393e+01 1.520949e+01 lineto -5.122946e+01 1.491293e+01 lineto -5.059598e+01 1.582379e+01 lineto -5.220104e+01 1.6134e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.165026e+01 1.708678e+01 moveto -5.220104e+01 1.6134e+01 lineto -5.059598e+01 1.582379e+01 lineto -4.997614e+01 1.676323e+01 lineto -5.165026e+01 1.708678e+01 lineto -closepath -gsave -7.4659e-01 7.4659e-01 9.332375e-01 setrgbcolor -fill -grestore -newpath -5.165026e+01 1.708678e+01 moveto -5.220104e+01 1.6134e+01 lineto -5.059598e+01 1.582379e+01 lineto -4.997614e+01 1.676323e+01 lineto -5.165026e+01 1.708678e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.111213e+01 1.806694e+01 moveto -5.165026e+01 1.708678e+01 lineto -4.997614e+01 1.676323e+01 lineto -4.937052e+01 1.773034e+01 lineto -5.111213e+01 1.806694e+01 lineto -closepath -gsave -7.514081e-01 7.514081e-01 9.392601e-01 setrgbcolor -fill -grestore -newpath -5.111213e+01 1.806694e+01 moveto -5.165026e+01 1.708678e+01 lineto -4.997614e+01 1.676323e+01 lineto -4.937052e+01 1.773034e+01 lineto -5.111213e+01 1.806694e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.058715e+01 1.907355e+01 moveto -5.111213e+01 1.806694e+01 lineto -4.937052e+01 1.773034e+01 lineto -4.87797e+01 1.872423e+01 lineto -5.058715e+01 1.907355e+01 lineto -closepath -gsave -7.560041e-01 7.560041e-01 9.450052e-01 setrgbcolor -fill -grestore -newpath -5.058715e+01 1.907355e+01 moveto -5.111213e+01 1.806694e+01 lineto -4.937052e+01 1.773034e+01 lineto -4.87797e+01 1.872423e+01 lineto -5.058715e+01 1.907355e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.007581e+01 2.010565e+01 moveto -5.058715e+01 1.907355e+01 lineto -4.87797e+01 1.872423e+01 lineto -4.820424e+01 1.974393e+01 lineto -5.007581e+01 2.010565e+01 lineto -closepath -gsave -7.603757e-01 7.603757e-01 9.504696e-01 setrgbcolor -fill -grestore -newpath -5.007581e+01 2.010565e+01 moveto -5.058715e+01 1.907355e+01 lineto -4.87797e+01 1.872423e+01 lineto -4.820424e+01 1.974393e+01 lineto -5.007581e+01 2.010565e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.95786e+01 2.116227e+01 moveto -5.007581e+01 2.010565e+01 lineto -4.820424e+01 1.974393e+01 lineto -4.764468e+01 2.07885e+01 lineto -4.95786e+01 2.116227e+01 lineto -closepath -gsave -7.645206e-01 7.645206e-01 9.556507e-01 setrgbcolor -fill -grestore -newpath -4.95786e+01 2.116227e+01 moveto -5.007581e+01 2.010565e+01 lineto -4.820424e+01 1.974393e+01 lineto -4.764468e+01 2.07885e+01 lineto -4.95786e+01 2.116227e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.9096e+01 2.22424e+01 moveto -4.95786e+01 2.116227e+01 lineto -4.764468e+01 2.07885e+01 lineto -4.710156e+01 2.185694e+01 lineto -4.9096e+01 2.22424e+01 lineto -closepath -gsave -7.684372e-01 7.684372e-01 9.605465e-01 setrgbcolor -fill -grestore -newpath -4.9096e+01 2.22424e+01 moveto -4.95786e+01 2.116227e+01 lineto -4.764468e+01 2.07885e+01 lineto -4.710156e+01 2.185694e+01 lineto -4.9096e+01 2.22424e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.862845e+01 2.334503e+01 moveto -4.9096e+01 2.22424e+01 lineto -4.710156e+01 2.185694e+01 lineto -4.657538e+01 2.294824e+01 lineto -4.862845e+01 2.334503e+01 lineto -closepath -gsave -7.721243e-01 7.721243e-01 9.651554e-01 setrgbcolor -fill -grestore -newpath -4.862845e+01 2.334503e+01 moveto -4.9096e+01 2.22424e+01 lineto -4.710156e+01 2.185694e+01 lineto -4.657538e+01 2.294824e+01 lineto -4.862845e+01 2.334503e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.81764e+01 2.446911e+01 moveto -4.862845e+01 2.334503e+01 lineto -4.657538e+01 2.294824e+01 lineto -4.606664e+01 2.406136e+01 lineto -4.81764e+01 2.446911e+01 lineto -closepath -gsave -7.75581e-01 7.75581e-01 9.694763e-01 setrgbcolor -fill -grestore -newpath -4.81764e+01 2.446911e+01 moveto -4.862845e+01 2.334503e+01 lineto -4.657538e+01 2.294824e+01 lineto -4.606664e+01 2.406136e+01 lineto -4.81764e+01 2.446911e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.774028e+01 2.561357e+01 moveto -4.81764e+01 2.446911e+01 lineto -4.606664e+01 2.406136e+01 lineto -4.557583e+01 2.519525e+01 lineto -4.774028e+01 2.561357e+01 lineto -closepath -gsave -7.788067e-01 7.788067e-01 9.735084e-01 setrgbcolor -fill -grestore -newpath -4.774028e+01 2.561357e+01 moveto -4.81764e+01 2.446911e+01 lineto -4.606664e+01 2.406136e+01 lineto -4.557583e+01 2.519525e+01 lineto -4.774028e+01 2.561357e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.732051e+01 2.677734e+01 moveto -4.774028e+01 2.561357e+01 lineto -4.557583e+01 2.519525e+01 lineto -4.510341e+01 2.634884e+01 lineto -4.732051e+01 2.677734e+01 lineto -closepath -gsave -7.818012e-01 7.818012e-01 9.772515e-01 setrgbcolor -fill -grestore -newpath -4.732051e+01 2.677734e+01 moveto -4.774028e+01 2.561357e+01 lineto -4.557583e+01 2.519525e+01 lineto -4.510341e+01 2.634884e+01 lineto -4.732051e+01 2.677734e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.691747e+01 2.795931e+01 moveto -4.732051e+01 2.677734e+01 lineto -4.510341e+01 2.634884e+01 lineto -4.464983e+01 2.752104e+01 lineto -4.691747e+01 2.795931e+01 lineto -closepath -gsave -7.845643e-01 7.845643e-01 9.807053e-01 setrgbcolor -fill -grestore -newpath -4.691747e+01 2.795931e+01 moveto -4.732051e+01 2.677734e+01 lineto -4.510341e+01 2.634884e+01 lineto -4.464983e+01 2.752104e+01 lineto -4.691747e+01 2.795931e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.653155e+01 2.915835e+01 moveto -4.691747e+01 2.795931e+01 lineto -4.464983e+01 2.752104e+01 lineto -4.421552e+01 2.871074e+01 lineto -4.653155e+01 2.915835e+01 lineto -closepath -gsave -7.870962e-01 7.870962e-01 9.838702e-01 setrgbcolor -fill -grestore -newpath -4.653155e+01 2.915835e+01 moveto -4.691747e+01 2.795931e+01 lineto -4.464983e+01 2.752104e+01 lineto -4.421552e+01 2.871074e+01 lineto -4.653155e+01 2.915835e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.616312e+01 3.037335e+01 moveto -4.653155e+01 2.915835e+01 lineto -4.421552e+01 2.871074e+01 lineto -4.380089e+01 2.99168e+01 lineto -4.616312e+01 3.037335e+01 lineto -closepath -gsave -7.893971e-01 7.893971e-01 9.867464e-01 setrgbcolor -fill -grestore -newpath -4.616312e+01 3.037335e+01 moveto -4.653155e+01 2.915835e+01 lineto -4.421552e+01 2.871074e+01 lineto -4.380089e+01 2.99168e+01 lineto -4.616312e+01 3.037335e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.581253e+01 3.160314e+01 moveto -4.616312e+01 3.037335e+01 lineto -4.380089e+01 2.99168e+01 lineto -4.340632e+01 3.113809e+01 lineto -4.581253e+01 3.160314e+01 lineto -closepath -gsave -7.914676e-01 7.914676e-01 9.893345e-01 setrgbcolor -fill -grestore -newpath -4.581253e+01 3.160314e+01 moveto -4.616312e+01 3.037335e+01 lineto -4.380089e+01 2.99168e+01 lineto -4.340632e+01 3.113809e+01 lineto -4.581253e+01 3.160314e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.54801e+01 3.284656e+01 moveto -4.581253e+01 3.160314e+01 lineto -4.340632e+01 3.113809e+01 lineto -4.303221e+01 3.237346e+01 lineto -4.54801e+01 3.284656e+01 lineto -closepath -gsave -7.93308e-01 7.93308e-01 9.91635e-01 setrgbcolor -fill -grestore -newpath -4.54801e+01 3.284656e+01 moveto -4.581253e+01 3.160314e+01 lineto -4.340632e+01 3.113809e+01 lineto -4.303221e+01 3.237346e+01 lineto -4.54801e+01 3.284656e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.516615e+01 3.410243e+01 moveto -4.54801e+01 3.284656e+01 lineto -4.303221e+01 3.237346e+01 lineto -4.267889e+01 3.362172e+01 lineto -4.516615e+01 3.410243e+01 lineto -closepath -gsave -7.949189e-01 7.949189e-01 9.936486e-01 setrgbcolor -fill -grestore -newpath -4.516615e+01 3.410243e+01 moveto -4.54801e+01 3.284656e+01 lineto -4.303221e+01 3.237346e+01 lineto -4.267889e+01 3.362172e+01 lineto -4.516615e+01 3.410243e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.487098e+01 3.536957e+01 moveto -4.516615e+01 3.410243e+01 lineto -4.267889e+01 3.362172e+01 lineto -4.234671e+01 3.488171e+01 lineto -4.487098e+01 3.536957e+01 lineto -closepath -gsave -7.963008e-01 7.963008e-01 9.95376e-01 setrgbcolor -fill -grestore -newpath -4.487098e+01 3.536957e+01 moveto -4.516615e+01 3.410243e+01 lineto -4.267889e+01 3.362172e+01 lineto -4.234671e+01 3.488171e+01 lineto -4.487098e+01 3.536957e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.459487e+01 3.664677e+01 moveto -4.487098e+01 3.536957e+01 lineto -4.234671e+01 3.488171e+01 lineto -4.203597e+01 3.615222e+01 lineto -4.459487e+01 3.664677e+01 lineto -closepath -gsave -7.974542e-01 7.974542e-01 9.968178e-01 setrgbcolor -fill -grestore -newpath -4.459487e+01 3.664677e+01 moveto -4.487098e+01 3.536957e+01 lineto -4.234671e+01 3.488171e+01 lineto -4.203597e+01 3.615222e+01 lineto -4.459487e+01 3.664677e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.433808e+01 3.793283e+01 moveto -4.459487e+01 3.664677e+01 lineto -4.203597e+01 3.615222e+01 lineto -4.174698e+01 3.743205e+01 lineto -4.433808e+01 3.793283e+01 lineto -closepath -gsave -7.983796e-01 7.983796e-01 9.979745e-01 setrgbcolor -fill -grestore -newpath -4.433808e+01 3.793283e+01 moveto -4.459487e+01 3.664677e+01 lineto -4.203597e+01 3.615222e+01 lineto -4.174698e+01 3.743205e+01 lineto -4.433808e+01 3.793283e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.410086e+01 3.922653e+01 moveto -4.433808e+01 3.793283e+01 lineto -4.174698e+01 3.743205e+01 lineto -4.148e+01 3.872e+01 lineto -4.410086e+01 3.922653e+01 lineto -closepath -gsave -7.990774e-01 7.990774e-01 9.988468e-01 setrgbcolor -fill -grestore -newpath -4.410086e+01 3.922653e+01 moveto -4.433808e+01 3.793283e+01 lineto -4.174698e+01 3.743205e+01 lineto -4.148e+01 3.872e+01 lineto -4.410086e+01 3.922653e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.422998e+01 4.240018e+00 moveto -6.499751e+01 4.000713e+00 lineto -6.499724e+01 4.000655e+00 lineto -6.414892e+01 4.222079e+00 lineto -6.422998e+01 4.240018e+00 lineto -closepath -gsave -6.128854e-01 6.128854e-01 7.661067e-01 setrgbcolor -fill -grestore -newpath -6.422998e+01 4.240018e+00 moveto -6.499751e+01 4.000713e+00 lineto -6.499724e+01 4.000655e+00 lineto -6.414892e+01 4.222079e+00 lineto -6.422998e+01 4.240018e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.346318e+01 4.518862e+00 moveto -6.422998e+01 4.240018e+00 lineto -6.414892e+01 4.222079e+00 lineto -6.330141e+01 4.483058e+00 lineto -6.346318e+01 4.518862e+00 lineto -closepath -gsave -6.206673e-01 6.206673e-01 7.758342e-01 setrgbcolor -fill -grestore -newpath -6.346318e+01 4.518862e+00 moveto -6.422998e+01 4.240018e+00 lineto -6.414892e+01 4.222079e+00 lineto -6.330141e+01 4.483058e+00 lineto -6.346318e+01 4.518862e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.269784e+01 4.836981e+00 moveto -6.346318e+01 4.518862e+00 lineto -6.330141e+01 4.483058e+00 lineto -6.24555e+01 4.783346e+00 lineto -6.269784e+01 4.836981e+00 lineto -closepath -gsave -6.28407e-01 6.28407e-01 7.855088e-01 setrgbcolor -fill -grestore -newpath -6.269784e+01 4.836981e+00 moveto -6.346318e+01 4.518862e+00 lineto -6.330141e+01 4.483058e+00 lineto -6.24555e+01 4.783346e+00 lineto -6.269784e+01 4.836981e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.193468e+01 5.194073e+00 moveto -6.269784e+01 4.836981e+00 lineto -6.24555e+01 4.783346e+00 lineto -6.161201e+01 5.122658e+00 lineto -6.193468e+01 5.194073e+00 lineto -closepath -gsave -6.360901e-01 6.360901e-01 7.951127e-01 setrgbcolor -fill -grestore -newpath -6.193468e+01 5.194073e+00 moveto -6.269784e+01 4.836981e+00 lineto -6.24555e+01 4.783346e+00 lineto -6.161201e+01 5.122658e+00 lineto -6.193468e+01 5.194073e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.117442e+01 5.589801e+00 moveto -6.193468e+01 5.194073e+00 lineto -6.161201e+01 5.122658e+00 lineto -6.077172e+01 5.500674e+00 lineto -6.117442e+01 5.589801e+00 lineto -closepath -gsave -6.437027e-01 6.437027e-01 8.046283e-01 setrgbcolor -fill -grestore -newpath -6.117442e+01 5.589801e+00 moveto -6.193468e+01 5.194073e+00 lineto -6.161201e+01 5.122658e+00 lineto -6.077172e+01 5.500674e+00 lineto -6.117442e+01 5.589801e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.041778e+01 6.023789e+00 moveto -6.117442e+01 5.589801e+00 lineto -6.077172e+01 5.500674e+00 lineto -5.993543e+01 5.917034e+00 lineto -6.041778e+01 6.023789e+00 lineto -closepath -gsave -6.512311e-01 6.512311e-01 8.140389e-01 setrgbcolor -fill -grestore -newpath -6.041778e+01 6.023789e+00 moveto -6.117442e+01 5.589801e+00 lineto -6.077172e+01 5.500674e+00 lineto -5.993543e+01 5.917034e+00 lineto -6.041778e+01 6.023789e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.966548e+01 6.495628e+00 moveto -6.041778e+01 6.023789e+00 lineto -5.993543e+01 5.917034e+00 lineto -5.910394e+01 6.371346e+00 lineto -5.966548e+01 6.495628e+00 lineto -closepath -gsave -6.586624e-01 6.586624e-01 8.23328e-01 setrgbcolor -fill -grestore -newpath -5.966548e+01 6.495628e+00 moveto -6.041778e+01 6.023789e+00 lineto -5.993543e+01 5.917034e+00 lineto -5.910394e+01 6.371346e+00 lineto -5.966548e+01 6.495628e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.891824e+01 7.004869e+00 moveto -5.966548e+01 6.495628e+00 lineto -5.910394e+01 6.371346e+00 lineto -5.827804e+01 6.863178e+00 lineto -5.891824e+01 7.004869e+00 lineto -closepath -gsave -6.65984e-01 6.65984e-01 8.3248e-01 setrgbcolor -fill -grestore -newpath -5.891824e+01 7.004869e+00 moveto -5.966548e+01 6.495628e+00 lineto -5.910394e+01 6.371346e+00 lineto -5.827804e+01 6.863178e+00 lineto -5.891824e+01 7.004869e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.817675e+01 7.551032e+00 moveto -5.891824e+01 7.004869e+00 lineto -5.827804e+01 6.863178e+00 lineto -5.745849e+01 7.392066e+00 lineto -5.817675e+01 7.551032e+00 lineto -closepath -gsave -6.731838e-01 6.731838e-01 8.414798e-01 setrgbcolor -fill -grestore -newpath -5.817675e+01 7.551032e+00 moveto -5.891824e+01 7.004869e+00 lineto -5.827804e+01 6.863178e+00 lineto -5.745849e+01 7.392066e+00 lineto -5.817675e+01 7.551032e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.744172e+01 8.133598e+00 moveto -5.817675e+01 7.551032e+00 lineto -5.745849e+01 7.392066e+00 lineto -5.664609e+01 7.957508e+00 lineto -5.744172e+01 8.133598e+00 lineto -closepath -gsave -6.802506e-01 6.802506e-01 8.503132e-01 setrgbcolor -fill -grestore -newpath -5.744172e+01 8.133598e+00 moveto -5.817675e+01 7.551032e+00 lineto -5.745849e+01 7.392066e+00 lineto -5.664609e+01 7.957508e+00 lineto -5.744172e+01 8.133598e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.671384e+01 8.752016e+00 moveto -5.744172e+01 8.133598e+00 lineto -5.664609e+01 7.957508e+00 lineto -5.58416e+01 8.558968e+00 lineto -5.671384e+01 8.752016e+00 lineto -closepath -gsave -6.871735e-01 6.871735e-01 8.589668e-01 setrgbcolor -fill -grestore -newpath -5.671384e+01 8.752016e+00 moveto -5.744172e+01 8.133598e+00 lineto -5.664609e+01 7.957508e+00 lineto -5.58416e+01 8.558968e+00 lineto -5.671384e+01 8.752016e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.599382e+01 9.405702e+00 moveto -5.671384e+01 8.752016e+00 lineto -5.58416e+01 8.558968e+00 lineto -5.504577e+01 9.195879e+00 lineto -5.599382e+01 9.405702e+00 lineto -closepath -gsave -6.939423e-01 6.939423e-01 8.674279e-01 setrgbcolor -fill -grestore -newpath -5.599382e+01 9.405702e+00 moveto -5.671384e+01 8.752016e+00 lineto -5.58416e+01 8.558968e+00 lineto -5.504577e+01 9.195879e+00 lineto -5.599382e+01 9.405702e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.528232e+01 1.009403e+01 moveto -5.599382e+01 9.405702e+00 lineto -5.504577e+01 9.195879e+00 lineto -5.425938e+01 9.867636e+00 lineto -5.528232e+01 1.009403e+01 lineto -closepath -gsave -7.005477e-01 7.005477e-01 8.756846e-01 setrgbcolor -fill -grestore -newpath -5.528232e+01 1.009403e+01 moveto -5.599382e+01 9.405702e+00 lineto -5.504577e+01 9.195879e+00 lineto -5.425938e+01 9.867636e+00 lineto -5.528232e+01 1.009403e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.458002e+01 1.081636e+01 moveto -5.528232e+01 1.009403e+01 lineto -5.425938e+01 9.867636e+00 lineto -5.348315e+01 1.05736e+01 lineto -5.458002e+01 1.081636e+01 lineto -closepath -gsave -7.069807e-01 7.069807e-01 8.837259e-01 setrgbcolor -fill -grestore -newpath -5.458002e+01 1.081636e+01 moveto -5.528232e+01 1.009403e+01 lineto -5.425938e+01 9.867636e+00 lineto -5.348315e+01 1.05736e+01 lineto -5.458002e+01 1.081636e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.388758e+01 1.157201e+01 moveto -5.458002e+01 1.081636e+01 lineto -5.348315e+01 1.05736e+01 lineto -5.271783e+01 1.131311e+01 lineto -5.388758e+01 1.157201e+01 lineto -closepath -gsave -7.132334e-01 7.132334e-01 8.915417e-01 setrgbcolor -fill -grestore -newpath -5.388758e+01 1.157201e+01 moveto -5.458002e+01 1.081636e+01 lineto -5.348315e+01 1.05736e+01 lineto -5.271783e+01 1.131311e+01 lineto -5.388758e+01 1.157201e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.320567e+01 1.236024e+01 moveto -5.388758e+01 1.157201e+01 lineto -5.271783e+01 1.131311e+01 lineto -5.196413e+01 1.208546e+01 lineto -5.320567e+01 1.236024e+01 lineto -closepath -gsave -7.192982e-01 7.192982e-01 8.991227e-01 setrgbcolor -fill -grestore -newpath -5.320567e+01 1.236024e+01 moveto -5.388758e+01 1.157201e+01 lineto -5.271783e+01 1.131311e+01 lineto -5.196413e+01 1.208546e+01 lineto -5.320567e+01 1.236024e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.253492e+01 1.318033e+01 moveto -5.320567e+01 1.236024e+01 lineto -5.196413e+01 1.208546e+01 lineto -5.122278e+01 1.288993e+01 lineto -5.253492e+01 1.318033e+01 lineto -closepath -gsave -7.251683e-01 7.251683e-01 9.064604e-01 setrgbcolor -fill -grestore -newpath -5.253492e+01 1.318033e+01 moveto -5.320567e+01 1.236024e+01 lineto -5.196413e+01 1.208546e+01 lineto -5.122278e+01 1.288993e+01 lineto -5.253492e+01 1.318033e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.187598e+01 1.403149e+01 moveto -5.253492e+01 1.318033e+01 lineto -5.122278e+01 1.288993e+01 lineto -5.049447e+01 1.372574e+01 lineto -5.187598e+01 1.403149e+01 lineto -closepath -gsave -7.308377e-01 7.308377e-01 9.135471e-01 setrgbcolor -fill -grestore -newpath -5.187598e+01 1.403149e+01 moveto -5.253492e+01 1.318033e+01 lineto -5.122278e+01 1.288993e+01 lineto -5.049447e+01 1.372574e+01 lineto -5.187598e+01 1.403149e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.122946e+01 1.491293e+01 moveto -5.187598e+01 1.403149e+01 lineto -5.049447e+01 1.372574e+01 lineto -4.97799e+01 1.45921e+01 lineto -5.122946e+01 1.491293e+01 lineto -closepath -gsave -7.363009e-01 7.363009e-01 9.203761e-01 setrgbcolor -fill -grestore -newpath -5.122946e+01 1.491293e+01 moveto -5.187598e+01 1.403149e+01 lineto -5.049447e+01 1.372574e+01 lineto -4.97799e+01 1.45921e+01 lineto -5.122946e+01 1.491293e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.059598e+01 1.582379e+01 moveto -5.122946e+01 1.491293e+01 lineto -4.97799e+01 1.45921e+01 lineto -4.907973e+01 1.548821e+01 lineto -5.059598e+01 1.582379e+01 lineto -closepath -gsave -7.415531e-01 7.415531e-01 9.269413e-01 setrgbcolor -fill -grestore -newpath -5.059598e+01 1.582379e+01 moveto -5.122946e+01 1.491293e+01 lineto -4.97799e+01 1.45921e+01 lineto -4.907973e+01 1.548821e+01 lineto -5.059598e+01 1.582379e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.997614e+01 1.676323e+01 moveto -5.059598e+01 1.582379e+01 lineto -4.907973e+01 1.548821e+01 lineto -4.839464e+01 1.64132e+01 lineto -4.997614e+01 1.676323e+01 lineto -closepath -gsave -7.4659e-01 7.4659e-01 9.332375e-01 setrgbcolor -fill -grestore -newpath -4.997614e+01 1.676323e+01 moveto -5.059598e+01 1.582379e+01 lineto -4.907973e+01 1.548821e+01 lineto -4.839464e+01 1.64132e+01 lineto -4.997614e+01 1.676323e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.937052e+01 1.773034e+01 moveto -4.997614e+01 1.676323e+01 lineto -4.839464e+01 1.64132e+01 lineto -4.772528e+01 1.736621e+01 lineto -4.937052e+01 1.773034e+01 lineto -closepath -gsave -7.514081e-01 7.514081e-01 9.392601e-01 setrgbcolor -fill -grestore -newpath -4.937052e+01 1.773034e+01 moveto -4.997614e+01 1.676323e+01 lineto -4.839464e+01 1.64132e+01 lineto -4.772528e+01 1.736621e+01 lineto -4.937052e+01 1.773034e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.87797e+01 1.872423e+01 moveto -4.937052e+01 1.773034e+01 lineto -4.772528e+01 1.736621e+01 lineto -4.707226e+01 1.834633e+01 lineto -4.87797e+01 1.872423e+01 lineto -closepath -gsave -7.560041e-01 7.560041e-01 9.450052e-01 setrgbcolor -fill -grestore -newpath -4.87797e+01 1.872423e+01 moveto -4.937052e+01 1.773034e+01 lineto -4.772528e+01 1.736621e+01 lineto -4.707226e+01 1.834633e+01 lineto -4.87797e+01 1.872423e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.820424e+01 1.974393e+01 moveto -4.87797e+01 1.872423e+01 lineto -4.707226e+01 1.834633e+01 lineto -4.643623e+01 1.935263e+01 lineto -4.820424e+01 1.974393e+01 lineto -closepath -gsave -7.603757e-01 7.603757e-01 9.504696e-01 setrgbcolor -fill -grestore -newpath -4.820424e+01 1.974393e+01 moveto -4.87797e+01 1.872423e+01 lineto -4.707226e+01 1.834633e+01 lineto -4.643623e+01 1.935263e+01 lineto -4.820424e+01 1.974393e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.764468e+01 2.07885e+01 moveto -4.820424e+01 1.974393e+01 lineto -4.643623e+01 1.935263e+01 lineto -4.581777e+01 2.038416e+01 lineto -4.764468e+01 2.07885e+01 lineto -closepath -gsave -7.645206e-01 7.645206e-01 9.556507e-01 setrgbcolor -fill -grestore -newpath -4.764468e+01 2.07885e+01 moveto -4.820424e+01 1.974393e+01 lineto -4.643623e+01 1.935263e+01 lineto -4.581777e+01 2.038416e+01 lineto -4.764468e+01 2.07885e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.710156e+01 2.185694e+01 moveto -4.764468e+01 2.07885e+01 lineto -4.581777e+01 2.038416e+01 lineto -4.521747e+01 2.143995e+01 lineto -4.710156e+01 2.185694e+01 lineto -closepath -gsave -7.684372e-01 7.684372e-01 9.605465e-01 setrgbcolor -fill -grestore -newpath -4.710156e+01 2.185694e+01 moveto -4.764468e+01 2.07885e+01 lineto -4.581777e+01 2.038416e+01 lineto -4.521747e+01 2.143995e+01 lineto -4.710156e+01 2.185694e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.657538e+01 2.294824e+01 moveto -4.710156e+01 2.185694e+01 lineto -4.521747e+01 2.143995e+01 lineto -4.46359e+01 2.251899e+01 lineto -4.657538e+01 2.294824e+01 lineto -closepath -gsave -7.721243e-01 7.721243e-01 9.651554e-01 setrgbcolor -fill -grestore -newpath -4.657538e+01 2.294824e+01 moveto -4.710156e+01 2.185694e+01 lineto -4.521747e+01 2.143995e+01 lineto -4.46359e+01 2.251899e+01 lineto -4.657538e+01 2.294824e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.606664e+01 2.406136e+01 moveto -4.657538e+01 2.294824e+01 lineto -4.46359e+01 2.251899e+01 lineto -4.407361e+01 2.362026e+01 lineto -4.606664e+01 2.406136e+01 lineto -closepath -gsave -7.75581e-01 7.75581e-01 9.694763e-01 setrgbcolor -fill -grestore -newpath -4.606664e+01 2.406136e+01 moveto -4.657538e+01 2.294824e+01 lineto -4.46359e+01 2.251899e+01 lineto -4.407361e+01 2.362026e+01 lineto -4.606664e+01 2.406136e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.557583e+01 2.519525e+01 moveto -4.606664e+01 2.406136e+01 lineto -4.407361e+01 2.362026e+01 lineto -4.353113e+01 2.474271e+01 lineto -4.557583e+01 2.519525e+01 lineto -closepath -gsave -7.788067e-01 7.788067e-01 9.735084e-01 setrgbcolor -fill -grestore -newpath -4.557583e+01 2.519525e+01 moveto -4.606664e+01 2.406136e+01 lineto -4.407361e+01 2.362026e+01 lineto -4.353113e+01 2.474271e+01 lineto -4.557583e+01 2.519525e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.510341e+01 2.634884e+01 moveto -4.557583e+01 2.519525e+01 lineto -4.353113e+01 2.474271e+01 lineto -4.300899e+01 2.58853e+01 lineto -4.510341e+01 2.634884e+01 lineto -closepath -gsave -7.818012e-01 7.818012e-01 9.772515e-01 setrgbcolor -fill -grestore -newpath -4.510341e+01 2.634884e+01 moveto -4.557583e+01 2.519525e+01 lineto -4.353113e+01 2.474271e+01 lineto -4.300899e+01 2.58853e+01 lineto -4.510341e+01 2.634884e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.464983e+01 2.752104e+01 moveto -4.510341e+01 2.634884e+01 lineto -4.300899e+01 2.58853e+01 lineto -4.250766e+01 2.704693e+01 lineto -4.464983e+01 2.752104e+01 lineto -closepath -gsave -7.845643e-01 7.845643e-01 9.807053e-01 setrgbcolor -fill -grestore -newpath -4.464983e+01 2.752104e+01 moveto -4.510341e+01 2.634884e+01 lineto -4.300899e+01 2.58853e+01 lineto -4.250766e+01 2.704693e+01 lineto -4.464983e+01 2.752104e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.421552e+01 2.871074e+01 moveto -4.464983e+01 2.752104e+01 lineto -4.250766e+01 2.704693e+01 lineto -4.202763e+01 2.822651e+01 lineto -4.421552e+01 2.871074e+01 lineto -closepath -gsave -7.870962e-01 7.870962e-01 9.838702e-01 setrgbcolor -fill -grestore -newpath -4.421552e+01 2.871074e+01 moveto -4.464983e+01 2.752104e+01 lineto -4.250766e+01 2.704693e+01 lineto -4.202763e+01 2.822651e+01 lineto -4.421552e+01 2.871074e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.380089e+01 2.99168e+01 moveto -4.421552e+01 2.871074e+01 lineto -4.202763e+01 2.822651e+01 lineto -4.156935e+01 2.942291e+01 lineto -4.380089e+01 2.99168e+01 lineto -closepath -gsave -7.893971e-01 7.893971e-01 9.867464e-01 setrgbcolor -fill -grestore -newpath -4.380089e+01 2.99168e+01 moveto -4.421552e+01 2.871074e+01 lineto -4.202763e+01 2.822651e+01 lineto -4.156935e+01 2.942291e+01 lineto -4.380089e+01 2.99168e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.340632e+01 3.113809e+01 moveto -4.380089e+01 2.99168e+01 lineto -4.156935e+01 2.942291e+01 lineto -4.113325e+01 3.063501e+01 lineto -4.340632e+01 3.113809e+01 lineto -closepath -gsave -7.914676e-01 7.914676e-01 9.893345e-01 setrgbcolor -fill -grestore -newpath -4.340632e+01 3.113809e+01 moveto -4.380089e+01 2.99168e+01 lineto -4.156935e+01 2.942291e+01 lineto -4.113325e+01 3.063501e+01 lineto -4.340632e+01 3.113809e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.303221e+01 3.237346e+01 moveto -4.340632e+01 3.113809e+01 lineto -4.113325e+01 3.063501e+01 lineto -4.071975e+01 3.186166e+01 lineto -4.303221e+01 3.237346e+01 lineto -closepath -gsave -7.93308e-01 7.93308e-01 9.91635e-01 setrgbcolor -fill -grestore -newpath -4.303221e+01 3.237346e+01 moveto -4.340632e+01 3.113809e+01 lineto -4.113325e+01 3.063501e+01 lineto -4.071975e+01 3.186166e+01 lineto -4.303221e+01 3.237346e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.267889e+01 3.362172e+01 moveto -4.303221e+01 3.237346e+01 lineto -4.071975e+01 3.186166e+01 lineto -4.032924e+01 3.310169e+01 lineto -4.267889e+01 3.362172e+01 lineto -closepath -gsave -7.949189e-01 7.949189e-01 9.936486e-01 setrgbcolor -fill -grestore -newpath -4.267889e+01 3.362172e+01 moveto -4.303221e+01 3.237346e+01 lineto -4.071975e+01 3.186166e+01 lineto -4.032924e+01 3.310169e+01 lineto -4.267889e+01 3.362172e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.234671e+01 3.488171e+01 moveto -4.267889e+01 3.362172e+01 lineto -4.032924e+01 3.310169e+01 lineto -3.996209e+01 3.435394e+01 lineto -4.234671e+01 3.488171e+01 lineto -closepath -gsave -7.963008e-01 7.963008e-01 9.95376e-01 setrgbcolor -fill -grestore -newpath -4.234671e+01 3.488171e+01 moveto -4.267889e+01 3.362172e+01 lineto -4.032924e+01 3.310169e+01 lineto -3.996209e+01 3.435394e+01 lineto -4.234671e+01 3.488171e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.203597e+01 3.615222e+01 moveto -4.234671e+01 3.488171e+01 lineto -3.996209e+01 3.435394e+01 lineto -3.961865e+01 3.561721e+01 lineto -4.203597e+01 3.615222e+01 lineto -closepath -gsave -7.974542e-01 7.974542e-01 9.968178e-01 setrgbcolor -fill -grestore -newpath -4.203597e+01 3.615222e+01 moveto -4.234671e+01 3.488171e+01 lineto -3.996209e+01 3.435394e+01 lineto -3.961865e+01 3.561721e+01 lineto -4.203597e+01 3.615222e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.174698e+01 3.743205e+01 moveto -4.203597e+01 3.615222e+01 lineto -3.961865e+01 3.561721e+01 lineto -3.929923e+01 3.689031e+01 lineto -4.174698e+01 3.743205e+01 lineto -closepath -gsave -7.983796e-01 7.983796e-01 9.979745e-01 setrgbcolor -fill -grestore -newpath -4.174698e+01 3.743205e+01 moveto -4.203597e+01 3.615222e+01 lineto -3.961865e+01 3.561721e+01 lineto -3.929923e+01 3.689031e+01 lineto -4.174698e+01 3.743205e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.148e+01 3.872e+01 moveto -4.174698e+01 3.743205e+01 lineto -3.929923e+01 3.689031e+01 lineto -3.900415e+01 3.817204e+01 lineto -4.148e+01 3.872e+01 lineto -closepath -gsave -7.990774e-01 7.990774e-01 9.988468e-01 setrgbcolor -fill -grestore -newpath -4.148e+01 3.872e+01 moveto -4.174698e+01 3.743205e+01 lineto -3.929923e+01 3.689031e+01 lineto -3.900415e+01 3.817204e+01 lineto -4.148e+01 3.872e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.414892e+01 4.222079e+00 moveto -6.499724e+01 4.000655e+00 lineto -6.4997e+01 4.000593e+00 lineto -6.407311e+01 4.202893e+00 lineto -6.414892e+01 4.222079e+00 lineto -closepath -gsave -6.128611e-01 6.128611e-01 7.660763e-01 setrgbcolor -fill -grestore -newpath -6.414892e+01 4.222079e+00 moveto -6.499724e+01 4.000655e+00 lineto -6.4997e+01 4.000593e+00 lineto -6.407311e+01 4.202893e+00 lineto -6.414892e+01 4.222079e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.330141e+01 4.483058e+00 moveto -6.414892e+01 4.222079e+00 lineto -6.407311e+01 4.202893e+00 lineto -6.315011e+01 4.444767e+00 lineto -6.330141e+01 4.483058e+00 lineto -closepath -gsave -6.205944e-01 6.205944e-01 7.75743e-01 setrgbcolor -fill -grestore -newpath -6.330141e+01 4.483058e+00 moveto -6.414892e+01 4.222079e+00 lineto -6.407311e+01 4.202893e+00 lineto -6.315011e+01 4.444767e+00 lineto -6.330141e+01 4.483058e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.24555e+01 4.783346e+00 moveto -6.330141e+01 4.483058e+00 lineto -6.315011e+01 4.444767e+00 lineto -6.222885e+01 4.725987e+00 lineto -6.24555e+01 4.783346e+00 lineto -closepath -gsave -6.282851e-01 6.282851e-01 7.853563e-01 setrgbcolor -fill -grestore -newpath -6.24555e+01 4.783346e+00 moveto -6.330141e+01 4.483058e+00 lineto -6.315011e+01 4.444767e+00 lineto -6.222885e+01 4.725987e+00 lineto -6.24555e+01 4.783346e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.161201e+01 5.122658e+00 moveto -6.24555e+01 4.783346e+00 lineto -6.222885e+01 4.725987e+00 lineto -6.131022e+01 5.046284e+00 lineto -6.161201e+01 5.122658e+00 lineto -closepath -gsave -6.35919e-01 6.35919e-01 7.948988e-01 setrgbcolor -fill -grestore -newpath -6.161201e+01 5.122658e+00 moveto -6.24555e+01 4.783346e+00 lineto -6.222885e+01 4.725987e+00 lineto -6.131022e+01 5.046284e+00 lineto -6.161201e+01 5.122658e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.077172e+01 5.500674e+00 moveto -6.161201e+01 5.122658e+00 lineto -6.131022e+01 5.046284e+00 lineto -6.039509e+01 5.405358e+00 lineto -6.077172e+01 5.500674e+00 lineto -closepath -gsave -6.434824e-01 6.434824e-01 8.04353e-01 setrgbcolor -fill -grestore -newpath -6.077172e+01 5.500674e+00 moveto -6.161201e+01 5.122658e+00 lineto -6.131022e+01 5.046284e+00 lineto -6.039509e+01 5.405358e+00 lineto -6.077172e+01 5.500674e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.993543e+01 5.917034e+00 moveto -6.077172e+01 5.500674e+00 lineto -6.039509e+01 5.405358e+00 lineto -5.948431e+01 5.802866e+00 lineto -5.993543e+01 5.917034e+00 lineto -closepath -gsave -6.509618e-01 6.509618e-01 8.137022e-01 setrgbcolor -fill -grestore -newpath -5.993543e+01 5.917034e+00 moveto -6.077172e+01 5.500674e+00 lineto -6.039509e+01 5.405358e+00 lineto -5.948431e+01 5.802866e+00 lineto -5.993543e+01 5.917034e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.910394e+01 6.371346e+00 moveto -5.993543e+01 5.917034e+00 lineto -5.948431e+01 5.802866e+00 lineto -5.857875e+01 6.238434e+00 lineto -5.910394e+01 6.371346e+00 lineto -closepath -gsave -6.583443e-01 6.583443e-01 8.229303e-01 setrgbcolor -fill -grestore -newpath -5.910394e+01 6.371346e+00 moveto -5.993543e+01 5.917034e+00 lineto -5.948431e+01 5.802866e+00 lineto -5.857875e+01 6.238434e+00 lineto -5.910394e+01 6.371346e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.827804e+01 6.863178e+00 moveto -5.910394e+01 6.371346e+00 lineto -5.857875e+01 6.238434e+00 lineto -5.767928e+01 6.711648e+00 lineto -5.827804e+01 6.863178e+00 lineto -closepath -gsave -6.656175e-01 6.656175e-01 8.320218e-01 setrgbcolor -fill -grestore -newpath -5.827804e+01 6.863178e+00 moveto -5.910394e+01 6.371346e+00 lineto -5.857875e+01 6.238434e+00 lineto -5.767928e+01 6.711648e+00 lineto -5.827804e+01 6.863178e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.745849e+01 7.392066e+00 moveto -5.827804e+01 6.863178e+00 lineto -5.767928e+01 6.711648e+00 lineto -5.678673e+01 7.222061e+00 lineto -5.745849e+01 7.392066e+00 lineto -closepath -gsave -6.727695e-01 6.727695e-01 8.409619e-01 setrgbcolor -fill -grestore -newpath -5.745849e+01 7.392066e+00 moveto -5.827804e+01 6.863178e+00 lineto -5.767928e+01 6.711648e+00 lineto -5.678673e+01 7.222061e+00 lineto -5.745849e+01 7.392066e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.664609e+01 7.957508e+00 moveto -5.745849e+01 7.392066e+00 lineto -5.678673e+01 7.222061e+00 lineto -5.590197e+01 7.769189e+00 lineto -5.664609e+01 7.957508e+00 lineto -closepath -gsave -6.797891e-01 6.797891e-01 8.497364e-01 setrgbcolor -fill -grestore -newpath -5.664609e+01 7.957508e+00 moveto -5.745849e+01 7.392066e+00 lineto -5.678673e+01 7.222061e+00 lineto -5.590197e+01 7.769189e+00 lineto -5.664609e+01 7.957508e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.58416e+01 8.558968e+00 moveto -5.664609e+01 7.957508e+00 lineto -5.590197e+01 7.769189e+00 lineto -5.502581e+01 8.352514e+00 lineto -5.58416e+01 8.558968e+00 lineto -closepath -gsave -6.866657e-01 6.866657e-01 8.583321e-01 setrgbcolor -fill -grestore -newpath -5.58416e+01 8.558968e+00 moveto -5.664609e+01 7.957508e+00 lineto -5.590197e+01 7.769189e+00 lineto -5.502581e+01 8.352514e+00 lineto -5.58416e+01 8.558968e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.504577e+01 9.195879e+00 moveto -5.58416e+01 8.558968e+00 lineto -5.502581e+01 8.352514e+00 lineto -5.41591e+01 8.971485e+00 lineto -5.504577e+01 9.195879e+00 lineto -closepath -gsave -6.93389e-01 6.93389e-01 8.667363e-01 setrgbcolor -fill -grestore -newpath -5.504577e+01 9.195879e+00 moveto -5.58416e+01 8.558968e+00 lineto -5.502581e+01 8.352514e+00 lineto -5.41591e+01 8.971485e+00 lineto -5.504577e+01 9.195879e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.425938e+01 9.867636e+00 moveto -5.504577e+01 9.195879e+00 lineto -5.41591e+01 8.971485e+00 lineto -5.330266e+01 9.625514e+00 lineto -5.425938e+01 9.867636e+00 lineto -closepath -gsave -6.999499e-01 6.999499e-01 8.749374e-01 setrgbcolor -fill -grestore -newpath -5.425938e+01 9.867636e+00 moveto -5.504577e+01 9.195879e+00 lineto -5.41591e+01 8.971485e+00 lineto -5.330266e+01 9.625514e+00 lineto -5.425938e+01 9.867636e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.348315e+01 1.05736e+01 moveto -5.425938e+01 9.867636e+00 lineto -5.330266e+01 9.625514e+00 lineto -5.245729e+01 1.031398e+01 lineto -5.348315e+01 1.05736e+01 lineto -closepath -gsave -7.063396e-01 7.063396e-01 8.829245e-01 setrgbcolor -fill -grestore -newpath -5.348315e+01 1.05736e+01 moveto -5.425938e+01 9.867636e+00 lineto -5.330266e+01 9.625514e+00 lineto -5.245729e+01 1.031398e+01 lineto -5.348315e+01 1.05736e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.271783e+01 1.131311e+01 moveto -5.348315e+01 1.05736e+01 lineto -5.245729e+01 1.031398e+01 lineto -5.162379e+01 1.103624e+01 lineto -5.271783e+01 1.131311e+01 lineto -closepath -gsave -7.125499e-01 7.125499e-01 8.906874e-01 setrgbcolor -fill -grestore -newpath -5.271783e+01 1.131311e+01 moveto -5.348315e+01 1.05736e+01 lineto -5.245729e+01 1.031398e+01 lineto -5.162379e+01 1.103624e+01 lineto -5.271783e+01 1.131311e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.196413e+01 1.208546e+01 moveto -5.271783e+01 1.131311e+01 lineto -5.162379e+01 1.103624e+01 lineto -5.080296e+01 1.17916e+01 lineto -5.196413e+01 1.208546e+01 lineto -closepath -gsave -7.185736e-01 7.185736e-01 8.98217e-01 setrgbcolor -fill -grestore -newpath -5.196413e+01 1.208546e+01 moveto -5.271783e+01 1.131311e+01 lineto -5.162379e+01 1.103624e+01 lineto -5.080296e+01 1.17916e+01 lineto -5.196413e+01 1.208546e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.122278e+01 1.288993e+01 moveto -5.196413e+01 1.208546e+01 lineto -5.080296e+01 1.17916e+01 lineto -4.999558e+01 1.257935e+01 lineto -5.122278e+01 1.288993e+01 lineto -closepath -gsave -7.24404e-01 7.24404e-01 9.055049e-01 setrgbcolor -fill -grestore -newpath -5.122278e+01 1.288993e+01 moveto -5.196413e+01 1.208546e+01 lineto -5.080296e+01 1.17916e+01 lineto -4.999558e+01 1.257935e+01 lineto -5.122278e+01 1.288993e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.049447e+01 1.372574e+01 moveto -5.122278e+01 1.288993e+01 lineto -4.999558e+01 1.257935e+01 lineto -4.920239e+01 1.339874e+01 lineto -5.049447e+01 1.372574e+01 lineto -closepath -gsave -7.300348e-01 7.300348e-01 9.125435e-01 setrgbcolor -fill -grestore -newpath -5.049447e+01 1.372574e+01 moveto -5.122278e+01 1.288993e+01 lineto -4.999558e+01 1.257935e+01 lineto -4.920239e+01 1.339874e+01 lineto -5.049447e+01 1.372574e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.97799e+01 1.45921e+01 moveto -5.049447e+01 1.372574e+01 lineto -4.920239e+01 1.339874e+01 lineto -4.842417e+01 1.4249e+01 lineto -4.97799e+01 1.45921e+01 lineto -closepath -gsave -7.354608e-01 7.354608e-01 9.19326e-01 setrgbcolor -fill -grestore -newpath -4.97799e+01 1.45921e+01 moveto -5.049447e+01 1.372574e+01 lineto -4.920239e+01 1.339874e+01 lineto -4.842417e+01 1.4249e+01 lineto -4.97799e+01 1.45921e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.907973e+01 1.548821e+01 moveto -4.97799e+01 1.45921e+01 lineto -4.842417e+01 1.4249e+01 lineto -4.766164e+01 1.512933e+01 lineto -4.907973e+01 1.548821e+01 lineto -closepath -gsave -7.406771e-01 7.406771e-01 9.258464e-01 setrgbcolor -fill -grestore -newpath -4.907973e+01 1.548821e+01 moveto -4.97799e+01 1.45921e+01 lineto -4.842417e+01 1.4249e+01 lineto -4.766164e+01 1.512933e+01 lineto -4.907973e+01 1.548821e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.839464e+01 1.64132e+01 moveto -4.907973e+01 1.548821e+01 lineto -4.766164e+01 1.512933e+01 lineto -4.691553e+01 1.603888e+01 lineto -4.839464e+01 1.64132e+01 lineto -closepath -gsave -7.456796e-01 7.456796e-01 9.320995e-01 setrgbcolor -fill -grestore -newpath -4.839464e+01 1.64132e+01 moveto -4.907973e+01 1.548821e+01 lineto -4.766164e+01 1.512933e+01 lineto -4.691553e+01 1.603888e+01 lineto -4.839464e+01 1.64132e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.772528e+01 1.736621e+01 moveto -4.839464e+01 1.64132e+01 lineto -4.691553e+01 1.603888e+01 lineto -4.618653e+01 1.69768e+01 lineto -4.772528e+01 1.736621e+01 lineto -closepath -gsave -7.504645e-01 7.504645e-01 9.380806e-01 setrgbcolor -fill -grestore -newpath -4.772528e+01 1.736621e+01 moveto -4.839464e+01 1.64132e+01 lineto -4.691553e+01 1.603888e+01 lineto -4.618653e+01 1.69768e+01 lineto -4.772528e+01 1.736621e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.707226e+01 1.834633e+01 moveto -4.772528e+01 1.736621e+01 lineto -4.618653e+01 1.69768e+01 lineto -4.547536e+01 1.794219e+01 lineto -4.707226e+01 1.834633e+01 lineto -closepath -gsave -7.550288e-01 7.550288e-01 9.43786e-01 setrgbcolor -fill -grestore -newpath -4.707226e+01 1.834633e+01 moveto -4.772528e+01 1.736621e+01 lineto -4.618653e+01 1.69768e+01 lineto -4.547536e+01 1.794219e+01 lineto -4.707226e+01 1.834633e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.643623e+01 1.935263e+01 moveto -4.707226e+01 1.834633e+01 lineto -4.547536e+01 1.794219e+01 lineto -4.478266e+01 1.893416e+01 lineto -4.643623e+01 1.935263e+01 lineto -closepath -gsave -7.5937e-01 7.5937e-01 9.492124e-01 setrgbcolor -fill -grestore -newpath -4.643623e+01 1.935263e+01 moveto -4.707226e+01 1.834633e+01 lineto -4.547536e+01 1.794219e+01 lineto -4.478266e+01 1.893416e+01 lineto -4.643623e+01 1.935263e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.581777e+01 2.038416e+01 moveto -4.643623e+01 1.935263e+01 lineto -4.478266e+01 1.893416e+01 lineto -4.410911e+01 1.995175e+01 lineto -4.581777e+01 2.038416e+01 lineto -closepath -gsave -7.634858e-01 7.634858e-01 9.543572e-01 setrgbcolor -fill -grestore -newpath -4.581777e+01 2.038416e+01 moveto -4.643623e+01 1.935263e+01 lineto -4.478266e+01 1.893416e+01 lineto -4.410911e+01 1.995175e+01 lineto -4.581777e+01 2.038416e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.521747e+01 2.143995e+01 moveto -4.581777e+01 2.038416e+01 lineto -4.410911e+01 1.995175e+01 lineto -4.345534e+01 2.0994e+01 lineto -4.521747e+01 2.143995e+01 lineto -closepath -gsave -7.673746e-01 7.673746e-01 9.592183e-01 setrgbcolor -fill -grestore -newpath -4.521747e+01 2.143995e+01 moveto -4.581777e+01 2.038416e+01 lineto -4.410911e+01 1.995175e+01 lineto -4.345534e+01 2.0994e+01 lineto -4.521747e+01 2.143995e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.46359e+01 2.251899e+01 moveto -4.521747e+01 2.143995e+01 lineto -4.345534e+01 2.0994e+01 lineto -4.282197e+01 2.205993e+01 lineto -4.46359e+01 2.251899e+01 lineto -closepath -gsave -7.710352e-01 7.710352e-01 9.63794e-01 setrgbcolor -fill -grestore -newpath -4.46359e+01 2.251899e+01 moveto -4.521747e+01 2.143995e+01 lineto -4.345534e+01 2.0994e+01 lineto -4.282197e+01 2.205993e+01 lineto -4.46359e+01 2.251899e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.407361e+01 2.362026e+01 moveto -4.46359e+01 2.251899e+01 lineto -4.282197e+01 2.205993e+01 lineto -4.22096e+01 2.314852e+01 lineto -4.407361e+01 2.362026e+01 lineto -closepath -gsave -7.744666e-01 7.744666e-01 9.680833e-01 setrgbcolor -fill -grestore -newpath -4.407361e+01 2.362026e+01 moveto -4.46359e+01 2.251899e+01 lineto -4.282197e+01 2.205993e+01 lineto -4.22096e+01 2.314852e+01 lineto -4.407361e+01 2.362026e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.353113e+01 2.474271e+01 moveto -4.407361e+01 2.362026e+01 lineto -4.22096e+01 2.314852e+01 lineto -4.16188e+01 2.425875e+01 lineto -4.353113e+01 2.474271e+01 lineto -closepath -gsave -7.776682e-01 7.776682e-01 9.720853e-01 setrgbcolor -fill -grestore -newpath -4.353113e+01 2.474271e+01 moveto -4.407361e+01 2.362026e+01 lineto -4.22096e+01 2.314852e+01 lineto -4.16188e+01 2.425875e+01 lineto -4.353113e+01 2.474271e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.300899e+01 2.58853e+01 moveto -4.353113e+01 2.474271e+01 lineto -4.16188e+01 2.425875e+01 lineto -4.105014e+01 2.538957e+01 lineto -4.300899e+01 2.58853e+01 lineto -closepath -gsave -7.806397e-01 7.806397e-01 9.757996e-01 setrgbcolor -fill -grestore -newpath -4.300899e+01 2.58853e+01 moveto -4.353113e+01 2.474271e+01 lineto -4.16188e+01 2.425875e+01 lineto -4.105014e+01 2.538957e+01 lineto -4.300899e+01 2.58853e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.250766e+01 2.704693e+01 moveto -4.300899e+01 2.58853e+01 lineto -4.105014e+01 2.538957e+01 lineto -4.050416e+01 2.65399e+01 lineto -4.250766e+01 2.704693e+01 lineto -closepath -gsave -7.833809e-01 7.833809e-01 9.792262e-01 setrgbcolor -fill -grestore -newpath -4.250766e+01 2.704693e+01 moveto -4.300899e+01 2.58853e+01 lineto -4.105014e+01 2.538957e+01 lineto -4.050416e+01 2.65399e+01 lineto -4.250766e+01 2.704693e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.202763e+01 2.822651e+01 moveto -4.250766e+01 2.704693e+01 lineto -4.050416e+01 2.65399e+01 lineto -3.998137e+01 2.770865e+01 lineto -4.202763e+01 2.822651e+01 lineto -closepath -gsave -7.85892e-01 7.85892e-01 9.82365e-01 setrgbcolor -fill -grestore -newpath -4.202763e+01 2.822651e+01 moveto -4.250766e+01 2.704693e+01 lineto -4.050416e+01 2.65399e+01 lineto -3.998137e+01 2.770865e+01 lineto -4.202763e+01 2.822651e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.156935e+01 2.942291e+01 moveto -4.202763e+01 2.822651e+01 lineto -3.998137e+01 2.770865e+01 lineto -3.948227e+01 2.889472e+01 lineto -4.156935e+01 2.942291e+01 lineto -closepath -gsave -7.881732e-01 7.881732e-01 9.852165e-01 setrgbcolor -fill -grestore -newpath -4.156935e+01 2.942291e+01 moveto -4.202763e+01 2.822651e+01 lineto -3.998137e+01 2.770865e+01 lineto -3.948227e+01 2.889472e+01 lineto -4.156935e+01 2.942291e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.113325e+01 3.063501e+01 moveto -4.156935e+01 2.942291e+01 lineto -3.948227e+01 2.889472e+01 lineto -3.900733e+01 3.009699e+01 lineto -4.113325e+01 3.063501e+01 lineto -closepath -gsave -7.902248e-01 7.902248e-01 9.87781e-01 setrgbcolor -fill -grestore -newpath -4.113325e+01 3.063501e+01 moveto -4.156935e+01 2.942291e+01 lineto -3.948227e+01 2.889472e+01 lineto -3.900733e+01 3.009699e+01 lineto -4.113325e+01 3.063501e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.071975e+01 3.186166e+01 moveto -4.113325e+01 3.063501e+01 lineto -3.900733e+01 3.009699e+01 lineto -3.8557e+01 3.131432e+01 lineto -4.071975e+01 3.186166e+01 lineto -closepath -gsave -7.920472e-01 7.920472e-01 9.90059e-01 setrgbcolor -fill -grestore -newpath -4.071975e+01 3.186166e+01 moveto -4.113325e+01 3.063501e+01 lineto -3.900733e+01 3.009699e+01 lineto -3.8557e+01 3.131432e+01 lineto -4.071975e+01 3.186166e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.032924e+01 3.310169e+01 moveto -4.071975e+01 3.186166e+01 lineto -3.8557e+01 3.131432e+01 lineto -3.81317e+01 3.254555e+01 lineto -4.032924e+01 3.310169e+01 lineto -closepath -gsave -7.93641e-01 7.93641e-01 9.920513e-01 setrgbcolor -fill -grestore -newpath -4.032924e+01 3.310169e+01 moveto -4.071975e+01 3.186166e+01 lineto -3.8557e+01 3.131432e+01 lineto -3.81317e+01 3.254555e+01 lineto -4.032924e+01 3.310169e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.996209e+01 3.435394e+01 moveto -4.032924e+01 3.310169e+01 lineto -3.81317e+01 3.254555e+01 lineto -3.773185e+01 3.378952e+01 lineto -3.996209e+01 3.435394e+01 lineto -closepath -gsave -7.950067e-01 7.950067e-01 9.937583e-01 setrgbcolor -fill -grestore -newpath -3.996209e+01 3.435394e+01 moveto -4.032924e+01 3.310169e+01 lineto -3.81317e+01 3.254555e+01 lineto -3.773185e+01 3.378952e+01 lineto -3.996209e+01 3.435394e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.961865e+01 3.561721e+01 moveto -3.996209e+01 3.435394e+01 lineto -3.773185e+01 3.378952e+01 lineto -3.735781e+01 3.504505e+01 lineto -3.961865e+01 3.561721e+01 lineto -closepath -gsave -7.961446e-01 7.961446e-01 9.951807e-01 setrgbcolor -fill -grestore -newpath -3.961865e+01 3.561721e+01 moveto -3.996209e+01 3.435394e+01 lineto -3.773185e+01 3.378952e+01 lineto -3.735781e+01 3.504505e+01 lineto -3.961865e+01 3.561721e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.929923e+01 3.689031e+01 moveto -3.961865e+01 3.561721e+01 lineto -3.735781e+01 3.504505e+01 lineto -3.700994e+01 3.631095e+01 lineto -3.929923e+01 3.689031e+01 lineto -closepath -gsave -7.970552e-01 7.970552e-01 9.96319e-01 setrgbcolor -fill -grestore -newpath -3.929923e+01 3.689031e+01 moveto -3.961865e+01 3.561721e+01 lineto -3.735781e+01 3.504505e+01 lineto -3.700994e+01 3.631095e+01 lineto -3.929923e+01 3.689031e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.900415e+01 3.817204e+01 moveto -3.929923e+01 3.689031e+01 lineto -3.700994e+01 3.631095e+01 lineto -3.668858e+01 3.758603e+01 lineto -3.900415e+01 3.817204e+01 lineto -closepath -gsave -7.97739e-01 7.97739e-01 9.971737e-01 setrgbcolor -fill -grestore -newpath -3.900415e+01 3.817204e+01 moveto -3.929923e+01 3.689031e+01 lineto -3.700994e+01 3.631095e+01 lineto -3.668858e+01 3.758603e+01 lineto -3.900415e+01 3.817204e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.407311e+01 4.202893e+00 moveto -6.4997e+01 4.000593e+00 lineto -6.499677e+01 4.000527e+00 lineto -6.400302e+01 4.18258e+00 lineto -6.407311e+01 4.202893e+00 lineto -closepath -gsave -6.128126e-01 6.128126e-01 7.660158e-01 setrgbcolor -fill -grestore -newpath -6.407311e+01 4.202893e+00 moveto -6.4997e+01 4.000593e+00 lineto -6.499677e+01 4.000527e+00 lineto -6.400302e+01 4.18258e+00 lineto -6.407311e+01 4.202893e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.315011e+01 4.444767e+00 moveto -6.407311e+01 4.202893e+00 lineto -6.400302e+01 4.18258e+00 lineto -6.301021e+01 4.404226e+00 lineto -6.315011e+01 4.444767e+00 lineto -closepath -gsave -6.204489e-01 6.204489e-01 7.755611e-01 setrgbcolor -fill -grestore -newpath -6.315011e+01 4.444767e+00 moveto -6.407311e+01 4.202893e+00 lineto -6.400302e+01 4.18258e+00 lineto -6.301021e+01 4.404226e+00 lineto -6.315011e+01 4.444767e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.222885e+01 4.725987e+00 moveto -6.315011e+01 4.444767e+00 lineto -6.301021e+01 4.404226e+00 lineto -6.201929e+01 4.665256e+00 lineto -6.222885e+01 4.725987e+00 lineto -closepath -gsave -6.280419e-01 6.280419e-01 7.850524e-01 setrgbcolor -fill -grestore -newpath -6.222885e+01 4.725987e+00 moveto -6.315011e+01 4.444767e+00 lineto -6.301021e+01 4.404226e+00 lineto -6.201929e+01 4.665256e+00 lineto -6.222885e+01 4.725987e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.131022e+01 5.046284e+00 moveto -6.222885e+01 4.725987e+00 lineto -6.201929e+01 4.665256e+00 lineto -6.103119e+01 4.965422e+00 lineto -6.131022e+01 5.046284e+00 lineto -closepath -gsave -6.355779e-01 6.355779e-01 7.944723e-01 setrgbcolor -fill -grestore -newpath -6.131022e+01 5.046284e+00 moveto -6.222885e+01 4.725987e+00 lineto -6.201929e+01 4.665256e+00 lineto -6.103119e+01 4.965422e+00 lineto -6.131022e+01 5.046284e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.039509e+01 5.405358e+00 moveto -6.131022e+01 5.046284e+00 lineto -6.103119e+01 4.965422e+00 lineto -6.004684e+01 5.30444e+00 lineto -6.039509e+01 5.405358e+00 lineto -closepath -gsave -6.430432e-01 6.430432e-01 8.038039e-01 setrgbcolor -fill -grestore -newpath -6.039509e+01 5.405358e+00 moveto -6.131022e+01 5.046284e+00 lineto -6.103119e+01 4.965422e+00 lineto -6.004684e+01 5.30444e+00 lineto -6.039509e+01 5.405358e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.948431e+01 5.802866e+00 moveto -6.039509e+01 5.405358e+00 lineto -6.004684e+01 5.30444e+00 lineto -5.906719e+01 5.681988e+00 lineto -5.948431e+01 5.802866e+00 lineto -closepath -gsave -6.504247e-01 6.504247e-01 8.130309e-01 setrgbcolor -fill -grestore -newpath -5.948431e+01 5.802866e+00 moveto -6.039509e+01 5.405358e+00 lineto -6.004684e+01 5.30444e+00 lineto -5.906719e+01 5.681988e+00 lineto -5.948431e+01 5.802866e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.857875e+01 6.238434e+00 moveto -5.948431e+01 5.802866e+00 lineto -5.906719e+01 5.681988e+00 lineto -5.809315e+01 6.09771e+00 lineto -5.857875e+01 6.238434e+00 lineto -closepath -gsave -6.5771e-01 6.5771e-01 8.221375e-01 setrgbcolor -fill -grestore -newpath -5.857875e+01 6.238434e+00 moveto -5.948431e+01 5.802866e+00 lineto -5.906719e+01 5.681988e+00 lineto -5.809315e+01 6.09771e+00 lineto -5.857875e+01 6.238434e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.767928e+01 6.711648e+00 moveto -5.857875e+01 6.238434e+00 lineto -5.809315e+01 6.09771e+00 lineto -5.712566e+01 6.551212e+00 lineto -5.767928e+01 6.711648e+00 lineto -closepath -gsave -6.648868e-01 6.648868e-01 8.311084e-01 setrgbcolor -fill -grestore -newpath -5.767928e+01 6.711648e+00 moveto -5.857875e+01 6.238434e+00 lineto -5.809315e+01 6.09771e+00 lineto -5.712566e+01 6.551212e+00 lineto -5.767928e+01 6.711648e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.678673e+01 7.222061e+00 moveto -5.767928e+01 6.711648e+00 lineto -5.712566e+01 6.551212e+00 lineto -5.616561e+01 7.042065e+00 lineto -5.678673e+01 7.222061e+00 lineto -closepath -gsave -6.719434e-01 6.719434e-01 8.399293e-01 setrgbcolor -fill -grestore -newpath -5.678673e+01 7.222061e+00 moveto -5.767928e+01 6.711648e+00 lineto -5.712566e+01 6.551212e+00 lineto -5.616561e+01 7.042065e+00 lineto -5.678673e+01 7.222061e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.590197e+01 7.769189e+00 moveto -5.678673e+01 7.222061e+00 lineto -5.616561e+01 7.042065e+00 lineto -5.521394e+01 7.569803e+00 lineto -5.590197e+01 7.769189e+00 lineto -closepath -gsave -6.78869e-01 6.78869e-01 8.485863e-01 setrgbcolor -fill -grestore -newpath -5.590197e+01 7.769189e+00 moveto -5.678673e+01 7.222061e+00 lineto -5.616561e+01 7.042065e+00 lineto -5.521394e+01 7.569803e+00 lineto -5.590197e+01 7.769189e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.502581e+01 8.352514e+00 moveto -5.590197e+01 7.769189e+00 lineto -5.521394e+01 7.569803e+00 lineto -5.427153e+01 8.133927e+00 lineto -5.502581e+01 8.352514e+00 lineto -closepath -gsave -6.85653e-01 6.85653e-01 8.570663e-01 setrgbcolor -fill -grestore -newpath -5.502581e+01 8.352514e+00 moveto -5.590197e+01 7.769189e+00 lineto -5.521394e+01 7.569803e+00 lineto -5.427153e+01 8.133927e+00 lineto -5.502581e+01 8.352514e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.41591e+01 8.971485e+00 moveto -5.502581e+01 8.352514e+00 lineto -5.427153e+01 8.133927e+00 lineto -5.333927e+01 8.733904e+00 lineto -5.41591e+01 8.971485e+00 lineto -closepath -gsave -6.922856e-01 6.922856e-01 8.653571e-01 setrgbcolor -fill -grestore -newpath -5.41591e+01 8.971485e+00 moveto -5.502581e+01 8.352514e+00 lineto -5.427153e+01 8.133927e+00 lineto -5.333927e+01 8.733904e+00 lineto -5.41591e+01 8.971485e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.330266e+01 9.625514e+00 moveto -5.41591e+01 8.971485e+00 lineto -5.333927e+01 8.733904e+00 lineto -5.241806e+01 9.369164e+00 lineto -5.330266e+01 9.625514e+00 lineto -closepath -gsave -6.987577e-01 6.987577e-01 8.734471e-01 setrgbcolor -fill -grestore -newpath -5.330266e+01 9.625514e+00 moveto -5.41591e+01 8.971485e+00 lineto -5.333927e+01 8.733904e+00 lineto -5.241806e+01 9.369164e+00 lineto -5.330266e+01 9.625514e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.245729e+01 1.031398e+01 moveto -5.330266e+01 9.625514e+00 lineto -5.241806e+01 9.369164e+00 lineto -5.150876e+01 1.003911e+01 lineto -5.245729e+01 1.031398e+01 lineto -closepath -gsave -7.050606e-01 7.050606e-01 8.813258e-01 setrgbcolor -fill -grestore -newpath -5.245729e+01 1.031398e+01 moveto -5.330266e+01 9.625514e+00 lineto -5.241806e+01 9.369164e+00 lineto -5.150876e+01 1.003911e+01 lineto -5.245729e+01 1.031398e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.162379e+01 1.103624e+01 moveto -5.245729e+01 1.031398e+01 lineto -5.150876e+01 1.003911e+01 lineto -5.061223e+01 1.07431e+01 lineto -5.162379e+01 1.103624e+01 lineto -closepath -gsave -7.111865e-01 7.111865e-01 8.889831e-01 setrgbcolor -fill -grestore -newpath -5.162379e+01 1.103624e+01 moveto -5.245729e+01 1.031398e+01 lineto -5.150876e+01 1.003911e+01 lineto -5.061223e+01 1.07431e+01 lineto -5.162379e+01 1.103624e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.080296e+01 1.17916e+01 moveto -5.162379e+01 1.103624e+01 lineto -5.061223e+01 1.07431e+01 lineto -4.972933e+01 1.148047e+01 lineto -5.080296e+01 1.17916e+01 lineto -closepath -gsave -7.171281e-01 7.171281e-01 8.964101e-01 setrgbcolor -fill -grestore -newpath -5.080296e+01 1.17916e+01 moveto -5.162379e+01 1.103624e+01 lineto -5.061223e+01 1.07431e+01 lineto -4.972933e+01 1.148047e+01 lineto -5.080296e+01 1.17916e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.999558e+01 1.257935e+01 moveto -5.080296e+01 1.17916e+01 lineto -4.972933e+01 1.148047e+01 lineto -4.886088e+01 1.225052e+01 lineto -4.999558e+01 1.257935e+01 lineto -closepath -gsave -7.228788e-01 7.228788e-01 9.035984e-01 setrgbcolor -fill -grestore -newpath -4.999558e+01 1.257935e+01 moveto -5.080296e+01 1.17916e+01 lineto -4.972933e+01 1.148047e+01 lineto -4.886088e+01 1.225052e+01 lineto -4.999558e+01 1.257935e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.920239e+01 1.339874e+01 moveto -4.999558e+01 1.257935e+01 lineto -4.886088e+01 1.225052e+01 lineto -4.800772e+01 1.305254e+01 lineto -4.920239e+01 1.339874e+01 lineto -closepath -gsave -7.284325e-01 7.284325e-01 9.105407e-01 setrgbcolor -fill -grestore -newpath -4.920239e+01 1.339874e+01 moveto -4.999558e+01 1.257935e+01 lineto -4.886088e+01 1.225052e+01 lineto -4.800772e+01 1.305254e+01 lineto -4.920239e+01 1.339874e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.842417e+01 1.4249e+01 moveto -4.920239e+01 1.339874e+01 lineto -4.800772e+01 1.305254e+01 lineto -4.717064e+01 1.388574e+01 lineto -4.842417e+01 1.4249e+01 lineto -closepath -gsave -7.337841e-01 7.337841e-01 9.172301e-01 setrgbcolor -fill -grestore -newpath -4.842417e+01 1.4249e+01 moveto -4.920239e+01 1.339874e+01 lineto -4.800772e+01 1.305254e+01 lineto -4.717064e+01 1.388574e+01 lineto -4.842417e+01 1.4249e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.766164e+01 1.512933e+01 moveto -4.842417e+01 1.4249e+01 lineto -4.717064e+01 1.388574e+01 lineto -4.635044e+01 1.474935e+01 lineto -4.766164e+01 1.512933e+01 lineto -closepath -gsave -7.389286e-01 7.389286e-01 9.236607e-01 setrgbcolor -fill -grestore -newpath -4.766164e+01 1.512933e+01 moveto -4.842417e+01 1.4249e+01 lineto -4.717064e+01 1.388574e+01 lineto -4.635044e+01 1.474935e+01 lineto -4.766164e+01 1.512933e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.691553e+01 1.603888e+01 moveto -4.766164e+01 1.512933e+01 lineto -4.635044e+01 1.474935e+01 lineto -4.55479e+01 1.564255e+01 lineto -4.691553e+01 1.603888e+01 lineto -closepath -gsave -7.438619e-01 7.438619e-01 9.298274e-01 setrgbcolor -fill -grestore -newpath -4.691553e+01 1.603888e+01 moveto -4.766164e+01 1.512933e+01 lineto -4.635044e+01 1.474935e+01 lineto -4.55479e+01 1.564255e+01 lineto -4.691553e+01 1.603888e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.618653e+01 1.69768e+01 moveto -4.691553e+01 1.603888e+01 lineto -4.55479e+01 1.564255e+01 lineto -4.476378e+01 1.656449e+01 lineto -4.618653e+01 1.69768e+01 lineto -closepath -gsave -7.485804e-01 7.485804e-01 9.357255e-01 setrgbcolor -fill -grestore -newpath -4.618653e+01 1.69768e+01 moveto -4.691553e+01 1.603888e+01 lineto -4.55479e+01 1.564255e+01 lineto -4.476378e+01 1.656449e+01 lineto -4.618653e+01 1.69768e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.547536e+01 1.794219e+01 moveto -4.618653e+01 1.69768e+01 lineto -4.476378e+01 1.656449e+01 lineto -4.399882e+01 1.75143e+01 lineto -4.547536e+01 1.794219e+01 lineto -closepath -gsave -7.53081e-01 7.53081e-01 9.413512e-01 setrgbcolor -fill -grestore -newpath -4.547536e+01 1.794219e+01 moveto -4.618653e+01 1.69768e+01 lineto -4.476378e+01 1.656449e+01 lineto -4.399882e+01 1.75143e+01 lineto -4.547536e+01 1.794219e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.478266e+01 1.893416e+01 moveto -4.547536e+01 1.794219e+01 lineto -4.399882e+01 1.75143e+01 lineto -4.325375e+01 1.849109e+01 lineto -4.478266e+01 1.893416e+01 lineto -closepath -gsave -7.57361e-01 7.57361e-01 9.467013e-01 setrgbcolor -fill -grestore -newpath -4.478266e+01 1.893416e+01 moveto -4.547536e+01 1.794219e+01 lineto -4.399882e+01 1.75143e+01 lineto -4.325375e+01 1.849109e+01 lineto -4.478266e+01 1.893416e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.410911e+01 1.995175e+01 moveto -4.478266e+01 1.893416e+01 lineto -4.325375e+01 1.849109e+01 lineto -4.252926e+01 1.949392e+01 lineto -4.410911e+01 1.995175e+01 lineto -closepath -gsave -7.614184e-01 7.614184e-01 9.51773e-01 setrgbcolor -fill -grestore -newpath -4.410911e+01 1.995175e+01 moveto -4.478266e+01 1.893416e+01 lineto -4.325375e+01 1.849109e+01 lineto -4.252926e+01 1.949392e+01 lineto -4.410911e+01 1.995175e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.345534e+01 2.0994e+01 moveto -4.410911e+01 1.995175e+01 lineto -4.252926e+01 1.949392e+01 lineto -4.182605e+01 2.052184e+01 lineto -4.345534e+01 2.0994e+01 lineto -closepath -gsave -7.652513e-01 7.652513e-01 9.565642e-01 setrgbcolor -fill -grestore -newpath -4.345534e+01 2.0994e+01 moveto -4.410911e+01 1.995175e+01 lineto -4.252926e+01 1.949392e+01 lineto -4.182605e+01 2.052184e+01 lineto -4.345534e+01 2.0994e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.282197e+01 2.205993e+01 moveto -4.345534e+01 2.0994e+01 lineto -4.182605e+01 2.052184e+01 lineto -4.114478e+01 2.157389e+01 lineto -4.282197e+01 2.205993e+01 lineto -closepath -gsave -7.688586e-01 7.688586e-01 9.610732e-01 setrgbcolor -fill -grestore -newpath -4.282197e+01 2.205993e+01 moveto -4.345534e+01 2.0994e+01 lineto -4.182605e+01 2.052184e+01 lineto -4.114478e+01 2.157389e+01 lineto -4.282197e+01 2.205993e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.22096e+01 2.314852e+01 moveto -4.282197e+01 2.205993e+01 lineto -4.114478e+01 2.157389e+01 lineto -4.048609e+01 2.264906e+01 lineto -4.22096e+01 2.314852e+01 lineto -closepath -gsave -7.722391e-01 7.722391e-01 9.652988e-01 setrgbcolor -fill -grestore -newpath -4.22096e+01 2.314852e+01 moveto -4.282197e+01 2.205993e+01 lineto -4.114478e+01 2.157389e+01 lineto -4.048609e+01 2.264906e+01 lineto -4.22096e+01 2.314852e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.16188e+01 2.425875e+01 moveto -4.22096e+01 2.314852e+01 lineto -4.048609e+01 2.264906e+01 lineto -3.985062e+01 2.374635e+01 lineto -4.16188e+01 2.425875e+01 lineto -closepath -gsave -7.753921e-01 7.753921e-01 9.692401e-01 setrgbcolor -fill -grestore -newpath -4.16188e+01 2.425875e+01 moveto -4.22096e+01 2.314852e+01 lineto -4.048609e+01 2.264906e+01 lineto -3.985062e+01 2.374635e+01 lineto -4.16188e+01 2.425875e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.105014e+01 2.538957e+01 moveto -4.16188e+01 2.425875e+01 lineto -3.985062e+01 2.374635e+01 lineto -3.923896e+01 2.48647e+01 lineto -4.105014e+01 2.538957e+01 lineto -closepath -gsave -7.783173e-01 7.783173e-01 9.728966e-01 setrgbcolor -fill -grestore -newpath -4.105014e+01 2.538957e+01 moveto -4.16188e+01 2.425875e+01 lineto -3.985062e+01 2.374635e+01 lineto -3.923896e+01 2.48647e+01 lineto -4.105014e+01 2.538957e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.050416e+01 2.65399e+01 moveto -4.105014e+01 2.538957e+01 lineto -3.923896e+01 2.48647e+01 lineto -3.865168e+01 2.600306e+01 lineto -4.050416e+01 2.65399e+01 lineto -closepath -gsave -7.810145e-01 7.810145e-01 9.762681e-01 setrgbcolor -fill -grestore -newpath -4.050416e+01 2.65399e+01 moveto -4.105014e+01 2.538957e+01 lineto -3.923896e+01 2.48647e+01 lineto -3.865168e+01 2.600306e+01 lineto -4.050416e+01 2.65399e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.998137e+01 2.770865e+01 moveto -4.050416e+01 2.65399e+01 lineto -3.865168e+01 2.600306e+01 lineto -3.808936e+01 2.716036e+01 lineto -3.998137e+01 2.770865e+01 lineto -closepath -gsave -7.834836e-01 7.834836e-01 9.793545e-01 setrgbcolor -fill -grestore -newpath -3.998137e+01 2.770865e+01 moveto -4.050416e+01 2.65399e+01 lineto -3.865168e+01 2.600306e+01 lineto -3.808936e+01 2.716036e+01 lineto -3.998137e+01 2.770865e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.948227e+01 2.889472e+01 moveto -3.998137e+01 2.770865e+01 lineto -3.808936e+01 2.716036e+01 lineto -3.755251e+01 2.83355e+01 lineto -3.948227e+01 2.889472e+01 lineto -closepath -gsave -7.857248e-01 7.857248e-01 9.821559e-01 setrgbcolor -fill -grestore -newpath -3.948227e+01 2.889472e+01 moveto -3.998137e+01 2.770865e+01 lineto -3.808936e+01 2.716036e+01 lineto -3.755251e+01 2.83355e+01 lineto -3.948227e+01 2.889472e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.900733e+01 3.009699e+01 moveto -3.948227e+01 2.889472e+01 lineto -3.755251e+01 2.83355e+01 lineto -3.704166e+01 2.952736e+01 lineto -3.900733e+01 3.009699e+01 lineto -closepath -gsave -7.877383e-01 7.877383e-01 9.846729e-01 setrgbcolor -fill -grestore -newpath -3.900733e+01 3.009699e+01 moveto -3.948227e+01 2.889472e+01 lineto -3.755251e+01 2.83355e+01 lineto -3.704166e+01 2.952736e+01 lineto -3.900733e+01 3.009699e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.8557e+01 3.131432e+01 moveto -3.900733e+01 3.009699e+01 lineto -3.704166e+01 2.952736e+01 lineto -3.655727e+01 3.073481e+01 lineto -3.8557e+01 3.131432e+01 lineto -closepath -gsave -7.895245e-01 7.895245e-01 9.869056e-01 setrgbcolor -fill -grestore -newpath -3.8557e+01 3.131432e+01 moveto -3.900733e+01 3.009699e+01 lineto -3.704166e+01 2.952736e+01 lineto -3.655727e+01 3.073481e+01 lineto -3.8557e+01 3.131432e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.81317e+01 3.254555e+01 moveto -3.8557e+01 3.131432e+01 lineto -3.655727e+01 3.073481e+01 lineto -3.609981e+01 3.195672e+01 lineto -3.81317e+01 3.254555e+01 lineto -closepath -gsave -7.910838e-01 7.910838e-01 9.888547e-01 setrgbcolor -fill -grestore -newpath -3.81317e+01 3.254555e+01 moveto -3.8557e+01 3.131432e+01 lineto -3.655727e+01 3.073481e+01 lineto -3.609981e+01 3.195672e+01 lineto -3.81317e+01 3.254555e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.773185e+01 3.378952e+01 moveto -3.81317e+01 3.254555e+01 lineto -3.609981e+01 3.195672e+01 lineto -3.566972e+01 3.319193e+01 lineto -3.773185e+01 3.378952e+01 lineto -closepath -gsave -7.924166e-01 7.924166e-01 9.905207e-01 setrgbcolor -fill -grestore -newpath -3.773185e+01 3.378952e+01 moveto -3.81317e+01 3.254555e+01 lineto -3.609981e+01 3.195672e+01 lineto -3.566972e+01 3.319193e+01 lineto -3.773185e+01 3.378952e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.735781e+01 3.504505e+01 moveto -3.773185e+01 3.378952e+01 lineto -3.566972e+01 3.319193e+01 lineto -3.526739e+01 3.443926e+01 lineto -3.735781e+01 3.504505e+01 lineto -closepath -gsave -7.935232e-01 7.935232e-01 9.91904e-01 setrgbcolor -fill -grestore -newpath -3.735781e+01 3.504505e+01 moveto -3.773185e+01 3.378952e+01 lineto -3.566972e+01 3.319193e+01 lineto -3.526739e+01 3.443926e+01 lineto -3.735781e+01 3.504505e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.700994e+01 3.631095e+01 moveto -3.735781e+01 3.504505e+01 lineto -3.526739e+01 3.443926e+01 lineto -3.489322e+01 3.569754e+01 lineto -3.700994e+01 3.631095e+01 lineto -closepath -gsave -7.944041e-01 7.944041e-01 9.930052e-01 setrgbcolor -fill -grestore -newpath -3.700994e+01 3.631095e+01 moveto -3.735781e+01 3.504505e+01 lineto -3.526739e+01 3.443926e+01 lineto -3.489322e+01 3.569754e+01 lineto -3.700994e+01 3.631095e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.668858e+01 3.758603e+01 moveto -3.700994e+01 3.631095e+01 lineto -3.489322e+01 3.569754e+01 lineto -3.454755e+01 3.696557e+01 lineto -3.668858e+01 3.758603e+01 lineto -closepath -gsave -7.950596e-01 7.950596e-01 9.938245e-01 setrgbcolor -fill -grestore -newpath -3.668858e+01 3.758603e+01 moveto -3.700994e+01 3.631095e+01 lineto -3.489322e+01 3.569754e+01 lineto -3.454755e+01 3.696557e+01 lineto -3.668858e+01 3.758603e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.400302e+01 4.18258e+00 moveto -6.499677e+01 4.000527e+00 lineto -6.499656e+01 4.000458e+00 lineto -6.393907e+01 4.161265e+00 lineto -6.400302e+01 4.18258e+00 lineto -closepath -gsave -6.127403e-01 6.127403e-01 7.659254e-01 setrgbcolor -fill -grestore -newpath -6.400302e+01 4.18258e+00 moveto -6.499677e+01 4.000527e+00 lineto -6.499656e+01 4.000458e+00 lineto -6.393907e+01 4.161265e+00 lineto -6.400302e+01 4.18258e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.301021e+01 4.404226e+00 moveto -6.400302e+01 4.18258e+00 lineto -6.393907e+01 4.161265e+00 lineto -6.288258e+01 4.361685e+00 lineto -6.301021e+01 4.404226e+00 lineto -closepath -gsave -6.202319e-01 6.202319e-01 7.752899e-01 setrgbcolor -fill -grestore -newpath -6.301021e+01 4.404226e+00 moveto -6.400302e+01 4.18258e+00 lineto -6.393907e+01 4.161265e+00 lineto -6.288258e+01 4.361685e+00 lineto -6.301021e+01 4.404226e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.201929e+01 4.665256e+00 moveto -6.301021e+01 4.404226e+00 lineto -6.288258e+01 4.361685e+00 lineto -6.18281e+01 4.601529e+00 lineto -6.201929e+01 4.665256e+00 lineto -closepath -gsave -6.276792e-01 6.276792e-01 7.84599e-01 setrgbcolor -fill -grestore -newpath -6.201929e+01 4.665256e+00 moveto -6.301021e+01 4.404226e+00 lineto -6.288258e+01 4.361685e+00 lineto -6.18281e+01 4.601529e+00 lineto -6.201929e+01 4.665256e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.103119e+01 4.965422e+00 moveto -6.201929e+01 4.665256e+00 lineto -6.18281e+01 4.601529e+00 lineto -6.077662e+01 4.880569e+00 lineto -6.103119e+01 4.965422e+00 lineto -closepath -gsave -6.350689e-01 6.350689e-01 7.938361e-01 setrgbcolor -fill -grestore -newpath -6.103119e+01 4.965422e+00 moveto -6.201929e+01 4.665256e+00 lineto -6.18281e+01 4.601529e+00 lineto -6.077662e+01 4.880569e+00 lineto -6.103119e+01 4.965422e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.004684e+01 5.30444e+00 moveto -6.103119e+01 4.965422e+00 lineto -6.077662e+01 4.880569e+00 lineto -5.972914e+01 5.198542e+00 lineto -6.004684e+01 5.30444e+00 lineto -closepath -gsave -6.423878e-01 6.423878e-01 8.029848e-01 setrgbcolor -fill -grestore -newpath -6.004684e+01 5.30444e+00 moveto -6.103119e+01 4.965422e+00 lineto -6.077662e+01 4.880569e+00 lineto -5.972914e+01 5.198542e+00 lineto -6.004684e+01 5.30444e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.906719e+01 5.681988e+00 moveto -6.004684e+01 5.30444e+00 lineto -5.972914e+01 5.198542e+00 lineto -5.868665e+01 5.555146e+00 lineto -5.906719e+01 5.681988e+00 lineto -closepath -gsave -6.496235e-01 6.496235e-01 8.120294e-01 setrgbcolor -fill -grestore -newpath -5.906719e+01 5.681988e+00 moveto -6.004684e+01 5.30444e+00 lineto -5.972914e+01 5.198542e+00 lineto -5.868665e+01 5.555146e+00 lineto -5.906719e+01 5.681988e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.809315e+01 6.09771e+00 moveto -5.906719e+01 5.681988e+00 lineto -5.868665e+01 5.555146e+00 lineto -5.765014e+01 5.950043e+00 lineto -5.809315e+01 6.09771e+00 lineto -closepath -gsave -6.567636e-01 6.567636e-01 8.209545e-01 setrgbcolor -fill -grestore -newpath -5.809315e+01 6.09771e+00 moveto -5.906719e+01 5.681988e+00 lineto -5.868665e+01 5.555146e+00 lineto -5.765014e+01 5.950043e+00 lineto -5.809315e+01 6.09771e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.712566e+01 6.551212e+00 moveto -5.809315e+01 6.09771e+00 lineto -5.765014e+01 5.950043e+00 lineto -5.662058e+01 6.38286e+00 lineto -5.712566e+01 6.551212e+00 lineto -closepath -gsave -6.637964e-01 6.637964e-01 8.297455e-01 setrgbcolor -fill -grestore -newpath -5.712566e+01 6.551212e+00 moveto -5.809315e+01 6.09771e+00 lineto -5.765014e+01 5.950043e+00 lineto -5.662058e+01 6.38286e+00 lineto -5.712566e+01 6.551212e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.616561e+01 7.042065e+00 moveto -5.712566e+01 6.551212e+00 lineto -5.662058e+01 6.38286e+00 lineto -5.559896e+01 6.853187e+00 lineto -5.616561e+01 7.042065e+00 lineto -closepath -gsave -6.707106e-01 6.707106e-01 8.383883e-01 setrgbcolor -fill -grestore -newpath -5.616561e+01 7.042065e+00 moveto -5.712566e+01 6.551212e+00 lineto -5.662058e+01 6.38286e+00 lineto -5.559896e+01 6.853187e+00 lineto -5.616561e+01 7.042065e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.521394e+01 7.569803e+00 moveto -5.616561e+01 7.042065e+00 lineto -5.559896e+01 6.853187e+00 lineto -5.458624e+01 7.360579e+00 lineto -5.521394e+01 7.569803e+00 lineto -closepath -gsave -6.774957e-01 6.774957e-01 8.468697e-01 setrgbcolor -fill -grestore -newpath -5.521394e+01 7.569803e+00 moveto -5.616561e+01 7.042065e+00 lineto -5.559896e+01 6.853187e+00 lineto -5.458624e+01 7.360579e+00 lineto -5.521394e+01 7.569803e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.427153e+01 8.133927e+00 moveto -5.521394e+01 7.569803e+00 lineto -5.458624e+01 7.360579e+00 lineto -5.358338e+01 7.904555e+00 lineto -5.427153e+01 8.133927e+00 lineto -closepath -gsave -6.841415e-01 6.841415e-01 8.551769e-01 setrgbcolor -fill -grestore -newpath -5.427153e+01 8.133927e+00 moveto -5.521394e+01 7.569803e+00 lineto -5.458624e+01 7.360579e+00 lineto -5.358338e+01 7.904555e+00 lineto -5.427153e+01 8.133927e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.333927e+01 8.733904e+00 moveto -5.427153e+01 8.133927e+00 lineto -5.358338e+01 7.904555e+00 lineto -5.259133e+01 8.484599e+00 lineto -5.333927e+01 8.733904e+00 lineto -closepath -gsave -6.906384e-01 6.906384e-01 8.632981e-01 setrgbcolor -fill -grestore -newpath -5.333927e+01 8.733904e+00 moveto -5.427153e+01 8.133927e+00 lineto -5.358338e+01 7.904555e+00 lineto -5.259133e+01 8.484599e+00 lineto -5.333927e+01 8.733904e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.241806e+01 9.369164e+00 moveto -5.333927e+01 8.733904e+00 lineto -5.259133e+01 8.484599e+00 lineto -5.161103e+01 9.100164e+00 lineto -5.241806e+01 9.369164e+00 lineto -closepath -gsave -6.969776e-01 6.969776e-01 8.71222e-01 setrgbcolor -fill -grestore -newpath -5.241806e+01 9.369164e+00 moveto -5.333927e+01 8.733904e+00 lineto -5.259133e+01 8.484599e+00 lineto -5.161103e+01 9.100164e+00 lineto -5.241806e+01 9.369164e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.150876e+01 1.003911e+01 moveto -5.241806e+01 9.369164e+00 lineto -5.161103e+01 9.100164e+00 lineto -5.064341e+01 9.750666e+00 lineto -5.150876e+01 1.003911e+01 lineto -closepath -gsave -7.031507e-01 7.031507e-01 8.789384e-01 setrgbcolor -fill -grestore -newpath -5.150876e+01 1.003911e+01 moveto -5.241806e+01 9.369164e+00 lineto -5.161103e+01 9.100164e+00 lineto -5.064341e+01 9.750666e+00 lineto -5.150876e+01 1.003911e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.061223e+01 1.07431e+01 moveto -5.150876e+01 1.003911e+01 lineto -5.064341e+01 9.750666e+00 lineto -4.968937e+01 1.043549e+01 lineto -5.061223e+01 1.07431e+01 lineto -closepath -gsave -7.091501e-01 7.091501e-01 8.864376e-01 setrgbcolor -fill -grestore -newpath -5.061223e+01 1.07431e+01 moveto -5.150876e+01 1.003911e+01 lineto -5.064341e+01 9.750666e+00 lineto -4.968937e+01 1.043549e+01 lineto -5.061223e+01 1.07431e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.972933e+01 1.148047e+01 moveto -5.061223e+01 1.07431e+01 lineto -4.968937e+01 1.043549e+01 lineto -4.874984e+01 1.115399e+01 lineto -4.972933e+01 1.148047e+01 lineto -closepath -gsave -7.149686e-01 7.149686e-01 8.937108e-01 setrgbcolor -fill -grestore -newpath -4.972933e+01 1.148047e+01 moveto -5.061223e+01 1.07431e+01 lineto -4.968937e+01 1.043549e+01 lineto -4.874984e+01 1.115399e+01 lineto -4.972933e+01 1.148047e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.886088e+01 1.225052e+01 moveto -4.972933e+01 1.148047e+01 lineto -4.874984e+01 1.115399e+01 lineto -4.782569e+01 1.190547e+01 lineto -4.886088e+01 1.225052e+01 lineto -closepath -gsave -7.205998e-01 7.205998e-01 9.007498e-01 setrgbcolor -fill -grestore -newpath -4.886088e+01 1.225052e+01 moveto -4.972933e+01 1.148047e+01 lineto -4.874984e+01 1.115399e+01 lineto -4.782569e+01 1.190547e+01 lineto -4.886088e+01 1.225052e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.800772e+01 1.305254e+01 moveto -4.886088e+01 1.225052e+01 lineto -4.782569e+01 1.190547e+01 lineto -4.69178e+01 1.268924e+01 lineto -4.800772e+01 1.305254e+01 lineto -closepath -gsave -7.260379e-01 7.260379e-01 9.075474e-01 setrgbcolor -fill -grestore -newpath -4.800772e+01 1.305254e+01 moveto -4.886088e+01 1.225052e+01 lineto -4.782569e+01 1.190547e+01 lineto -4.69178e+01 1.268924e+01 lineto -4.800772e+01 1.305254e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.717064e+01 1.388574e+01 moveto -4.800772e+01 1.305254e+01 lineto -4.69178e+01 1.268924e+01 lineto -4.602703e+01 1.350455e+01 lineto -4.717064e+01 1.388574e+01 lineto -closepath -gsave -7.312775e-01 7.312775e-01 9.140969e-01 setrgbcolor -fill -grestore -newpath -4.717064e+01 1.388574e+01 moveto -4.800772e+01 1.305254e+01 lineto -4.69178e+01 1.268924e+01 lineto -4.602703e+01 1.350455e+01 lineto -4.717064e+01 1.388574e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.635044e+01 1.474935e+01 moveto -4.717064e+01 1.388574e+01 lineto -4.602703e+01 1.350455e+01 lineto -4.515423e+01 1.435063e+01 lineto -4.635044e+01 1.474935e+01 lineto -closepath -gsave -7.363141e-01 7.363141e-01 9.203926e-01 setrgbcolor -fill -grestore -newpath -4.635044e+01 1.474935e+01 moveto -4.717064e+01 1.388574e+01 lineto -4.602703e+01 1.350455e+01 lineto -4.515423e+01 1.435063e+01 lineto -4.635044e+01 1.474935e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.55479e+01 1.564255e+01 moveto -4.635044e+01 1.474935e+01 lineto -4.515423e+01 1.435063e+01 lineto -4.430021e+01 1.522667e+01 lineto -4.55479e+01 1.564255e+01 lineto -closepath -gsave -7.411434e-01 7.411434e-01 9.264292e-01 setrgbcolor -fill -grestore -newpath -4.55479e+01 1.564255e+01 moveto -4.635044e+01 1.474935e+01 lineto -4.515423e+01 1.435063e+01 lineto -4.430021e+01 1.522667e+01 lineto -4.55479e+01 1.564255e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.476378e+01 1.656449e+01 moveto -4.55479e+01 1.564255e+01 lineto -4.430021e+01 1.522667e+01 lineto -4.34658e+01 1.613185e+01 lineto -4.476378e+01 1.656449e+01 lineto -closepath -gsave -7.457618e-01 7.457618e-01 9.322022e-01 setrgbcolor -fill -grestore -newpath -4.476378e+01 1.656449e+01 moveto -4.55479e+01 1.564255e+01 lineto -4.430021e+01 1.522667e+01 lineto -4.34658e+01 1.613185e+01 lineto -4.476378e+01 1.656449e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.399882e+01 1.75143e+01 moveto -4.476378e+01 1.656449e+01 lineto -4.34658e+01 1.613185e+01 lineto -4.265177e+01 1.70653e+01 lineto -4.399882e+01 1.75143e+01 lineto -closepath -gsave -7.501663e-01 7.501663e-01 9.377078e-01 setrgbcolor -fill -grestore -newpath -4.399882e+01 1.75143e+01 moveto -4.476378e+01 1.656449e+01 lineto -4.34658e+01 1.613185e+01 lineto -4.265177e+01 1.70653e+01 lineto -4.399882e+01 1.75143e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.325375e+01 1.849109e+01 moveto -4.399882e+01 1.75143e+01 lineto -4.265177e+01 1.70653e+01 lineto -4.18589e+01 1.802616e+01 lineto -4.325375e+01 1.849109e+01 lineto -closepath -gsave -7.543541e-01 7.543541e-01 9.429427e-01 setrgbcolor -fill -grestore -newpath -4.325375e+01 1.849109e+01 moveto -4.399882e+01 1.75143e+01 lineto -4.265177e+01 1.70653e+01 lineto -4.18589e+01 1.802616e+01 lineto -4.325375e+01 1.849109e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.252926e+01 1.949392e+01 moveto -4.325375e+01 1.849109e+01 lineto -4.18589e+01 1.802616e+01 lineto -4.108794e+01 1.90135e+01 lineto -4.252926e+01 1.949392e+01 lineto -closepath -gsave -7.583232e-01 7.583232e-01 9.47904e-01 setrgbcolor -fill -grestore -newpath -4.252926e+01 1.949392e+01 moveto -4.325375e+01 1.849109e+01 lineto -4.18589e+01 1.802616e+01 lineto -4.108794e+01 1.90135e+01 lineto -4.252926e+01 1.949392e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.182605e+01 2.052184e+01 moveto -4.252926e+01 1.949392e+01 lineto -4.108794e+01 1.90135e+01 lineto -4.033963e+01 2.002639e+01 lineto -4.182605e+01 2.052184e+01 lineto -closepath -gsave -7.620716e-01 7.620716e-01 9.525896e-01 setrgbcolor -fill -grestore -newpath -4.182605e+01 2.052184e+01 moveto -4.252926e+01 1.949392e+01 lineto -4.108794e+01 1.90135e+01 lineto -4.033963e+01 2.002639e+01 lineto -4.182605e+01 2.052184e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.114478e+01 2.157389e+01 moveto -4.182605e+01 2.052184e+01 lineto -4.033963e+01 2.002639e+01 lineto -3.961466e+01 2.106387e+01 lineto -4.114478e+01 2.157389e+01 lineto -closepath -gsave -7.655981e-01 7.655981e-01 9.569976e-01 setrgbcolor -fill -grestore -newpath -4.114478e+01 2.157389e+01 moveto -4.182605e+01 2.052184e+01 lineto -4.033963e+01 2.002639e+01 lineto -3.961466e+01 2.106387e+01 lineto -4.114478e+01 2.157389e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.048609e+01 2.264906e+01 moveto -4.114478e+01 2.157389e+01 lineto -3.961466e+01 2.106387e+01 lineto -3.891373e+01 2.212496e+01 lineto -4.048609e+01 2.264906e+01 lineto -closepath -gsave -7.689014e-01 7.689014e-01 9.611268e-01 setrgbcolor -fill -grestore -newpath -4.048609e+01 2.264906e+01 moveto -4.114478e+01 2.157389e+01 lineto -3.961466e+01 2.106387e+01 lineto -3.891373e+01 2.212496e+01 lineto -4.048609e+01 2.264906e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.985062e+01 2.374635e+01 moveto -4.048609e+01 2.264906e+01 lineto -3.891373e+01 2.212496e+01 lineto -3.823749e+01 2.320866e+01 lineto -3.985062e+01 2.374635e+01 lineto -closepath -gsave -7.719808e-01 7.719808e-01 9.64976e-01 setrgbcolor -fill -grestore -newpath -3.985062e+01 2.374635e+01 moveto -4.048609e+01 2.264906e+01 lineto -3.891373e+01 2.212496e+01 lineto -3.823749e+01 2.320866e+01 lineto -3.985062e+01 2.374635e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.923896e+01 2.48647e+01 moveto -3.985062e+01 2.374635e+01 lineto -3.823749e+01 2.320866e+01 lineto -3.75866e+01 2.431393e+01 lineto -3.923896e+01 2.48647e+01 lineto -closepath -gsave -7.748358e-01 7.748358e-01 9.685447e-01 setrgbcolor -fill -grestore -newpath -3.923896e+01 2.48647e+01 moveto -3.985062e+01 2.374635e+01 lineto -3.823749e+01 2.320866e+01 lineto -3.75866e+01 2.431393e+01 lineto -3.923896e+01 2.48647e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.865168e+01 2.600306e+01 moveto -3.923896e+01 2.48647e+01 lineto -3.75866e+01 2.431393e+01 lineto -3.696165e+01 2.543974e+01 lineto -3.865168e+01 2.600306e+01 lineto -closepath -gsave -7.774659e-01 7.774659e-01 9.718324e-01 setrgbcolor -fill -grestore -newpath -3.865168e+01 2.600306e+01 moveto -3.923896e+01 2.48647e+01 lineto -3.75866e+01 2.431393e+01 lineto -3.696165e+01 2.543974e+01 lineto -3.865168e+01 2.600306e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.808936e+01 2.716036e+01 moveto -3.865168e+01 2.600306e+01 lineto -3.696165e+01 2.543974e+01 lineto -3.636326e+01 2.658502e+01 lineto -3.808936e+01 2.716036e+01 lineto -closepath -gsave -7.798712e-01 7.798712e-01 9.74839e-01 setrgbcolor -fill -grestore -newpath -3.808936e+01 2.716036e+01 moveto -3.865168e+01 2.600306e+01 lineto -3.696165e+01 2.543974e+01 lineto -3.636326e+01 2.658502e+01 lineto -3.808936e+01 2.716036e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.755251e+01 2.83355e+01 moveto -3.808936e+01 2.716036e+01 lineto -3.636326e+01 2.658502e+01 lineto -3.579198e+01 2.774867e+01 lineto -3.755251e+01 2.83355e+01 lineto -closepath -gsave -7.820516e-01 7.820516e-01 9.775645e-01 setrgbcolor -fill -grestore -newpath -3.755251e+01 2.83355e+01 moveto -3.808936e+01 2.716036e+01 lineto -3.636326e+01 2.658502e+01 lineto -3.579198e+01 2.774867e+01 lineto -3.755251e+01 2.83355e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.704166e+01 2.952736e+01 moveto -3.755251e+01 2.83355e+01 lineto -3.579198e+01 2.774867e+01 lineto -3.524836e+01 2.892961e+01 lineto -3.704166e+01 2.952736e+01 lineto -closepath -gsave -7.840072e-01 7.840072e-01 9.80009e-01 setrgbcolor -fill -grestore -newpath -3.704166e+01 2.952736e+01 moveto -3.755251e+01 2.83355e+01 lineto -3.579198e+01 2.774867e+01 lineto -3.524836e+01 2.892961e+01 lineto -3.704166e+01 2.952736e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.655727e+01 3.073481e+01 moveto -3.704166e+01 2.952736e+01 lineto -3.524836e+01 2.892961e+01 lineto -3.47329e+01 3.012671e+01 lineto -3.655727e+01 3.073481e+01 lineto -closepath -gsave -7.857382e-01 7.857382e-01 9.821728e-01 setrgbcolor -fill -grestore -newpath -3.655727e+01 3.073481e+01 moveto -3.704166e+01 2.952736e+01 lineto -3.524836e+01 2.892961e+01 lineto -3.47329e+01 3.012671e+01 lineto -3.655727e+01 3.073481e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.609981e+01 3.195672e+01 moveto -3.655727e+01 3.073481e+01 lineto -3.47329e+01 3.012671e+01 lineto -3.42461e+01 3.133884e+01 lineto -3.609981e+01 3.195672e+01 lineto -closepath -gsave -7.87245e-01 7.87245e-01 9.840562e-01 setrgbcolor -fill -grestore -newpath -3.609981e+01 3.195672e+01 moveto -3.655727e+01 3.073481e+01 lineto -3.47329e+01 3.012671e+01 lineto -3.42461e+01 3.133884e+01 lineto -3.609981e+01 3.195672e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.566972e+01 3.319193e+01 moveto -3.609981e+01 3.195672e+01 lineto -3.42461e+01 3.133884e+01 lineto -3.378842e+01 3.256485e+01 lineto -3.566972e+01 3.319193e+01 lineto -closepath -gsave -7.885277e-01 7.885277e-01 9.856597e-01 setrgbcolor -fill -grestore -newpath -3.566972e+01 3.319193e+01 moveto -3.609981e+01 3.195672e+01 lineto -3.42461e+01 3.133884e+01 lineto -3.378842e+01 3.256485e+01 lineto -3.566972e+01 3.319193e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.526739e+01 3.443926e+01 moveto -3.566972e+01 3.319193e+01 lineto -3.378842e+01 3.256485e+01 lineto -3.336029e+01 3.380358e+01 lineto -3.526739e+01 3.443926e+01 lineto -closepath -gsave -7.895868e-01 7.895868e-01 9.869835e-01 setrgbcolor -fill -grestore -newpath -3.526739e+01 3.443926e+01 moveto -3.566972e+01 3.319193e+01 lineto -3.378842e+01 3.256485e+01 lineto -3.336029e+01 3.380358e+01 lineto -3.526739e+01 3.443926e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.489322e+01 3.569754e+01 moveto -3.526739e+01 3.443926e+01 lineto -3.336029e+01 3.380358e+01 lineto -3.296212e+01 3.505386e+01 lineto -3.489322e+01 3.569754e+01 lineto -closepath -gsave -7.904225e-01 7.904225e-01 9.880281e-01 setrgbcolor -fill -grestore -newpath -3.489322e+01 3.569754e+01 moveto -3.526739e+01 3.443926e+01 lineto -3.336029e+01 3.380358e+01 lineto -3.296212e+01 3.505386e+01 lineto -3.489322e+01 3.569754e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.454755e+01 3.696557e+01 moveto -3.489322e+01 3.569754e+01 lineto -3.296212e+01 3.505386e+01 lineto -3.259428e+01 3.631451e+01 lineto -3.454755e+01 3.696557e+01 lineto -closepath -gsave -7.91035e-01 7.91035e-01 9.887937e-01 setrgbcolor -fill -grestore -newpath -3.454755e+01 3.696557e+01 moveto -3.489322e+01 3.569754e+01 lineto -3.296212e+01 3.505386e+01 lineto -3.259428e+01 3.631451e+01 lineto -3.454755e+01 3.696557e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.393907e+01 4.161265e+00 moveto -6.499656e+01 4.000458e+00 lineto -6.499638e+01 4.000386e+00 lineto -6.388166e+01 4.139079e+00 lineto -6.393907e+01 4.161265e+00 lineto -closepath -gsave -6.126446e-01 6.126446e-01 7.658058e-01 setrgbcolor -fill -grestore -newpath -6.393907e+01 4.161265e+00 moveto -6.499656e+01 4.000458e+00 lineto -6.499638e+01 4.000386e+00 lineto -6.388166e+01 4.139079e+00 lineto -6.393907e+01 4.161265e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.288258e+01 4.361685e+00 moveto -6.393907e+01 4.161265e+00 lineto -6.388166e+01 4.139079e+00 lineto -6.276801e+01 4.317406e+00 lineto -6.288258e+01 4.361685e+00 lineto -closepath -gsave -6.199446e-01 6.199446e-01 7.749308e-01 setrgbcolor -fill -grestore -newpath -6.288258e+01 4.361685e+00 moveto -6.393907e+01 4.161265e+00 lineto -6.388166e+01 4.139079e+00 lineto -6.276801e+01 4.317406e+00 lineto -6.288258e+01 4.361685e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.18281e+01 4.601529e+00 moveto -6.288258e+01 4.361685e+00 lineto -6.276801e+01 4.317406e+00 lineto -6.165647e+01 4.535198e+00 lineto -6.18281e+01 4.601529e+00 lineto -closepath -gsave -6.271991e-01 6.271991e-01 7.839989e-01 setrgbcolor -fill -grestore -newpath -6.18281e+01 4.601529e+00 moveto -6.288258e+01 4.361685e+00 lineto -6.276801e+01 4.317406e+00 lineto -6.165647e+01 4.535198e+00 lineto -6.18281e+01 4.601529e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.077662e+01 4.880569e+00 moveto -6.18281e+01 4.601529e+00 lineto -6.165647e+01 4.535198e+00 lineto -6.054809e+01 4.79225e+00 lineto -6.077662e+01 4.880569e+00 lineto -closepath -gsave -6.343953e-01 6.343953e-01 7.929941e-01 setrgbcolor -fill -grestore -newpath -6.077662e+01 4.880569e+00 moveto -6.18281e+01 4.601529e+00 lineto -6.165647e+01 4.535198e+00 lineto -6.054809e+01 4.79225e+00 lineto -6.077662e+01 4.880569e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.972914e+01 5.198542e+00 moveto -6.077662e+01 4.880569e+00 lineto -6.054809e+01 4.79225e+00 lineto -5.944393e+01 5.088318e+00 lineto -5.972914e+01 5.198542e+00 lineto -closepath -gsave -6.415206e-01 6.415206e-01 8.019008e-01 setrgbcolor -fill -grestore -newpath -5.972914e+01 5.198542e+00 moveto -6.077662e+01 4.880569e+00 lineto -6.054809e+01 4.79225e+00 lineto -5.944393e+01 5.088318e+00 lineto -5.972914e+01 5.198542e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.868665e+01 5.555146e+00 moveto -5.972914e+01 5.198542e+00 lineto -5.944393e+01 5.088318e+00 lineto -5.834503e+01 5.423121e+00 lineto -5.868665e+01 5.555146e+00 lineto -closepath -gsave -6.485631e-01 6.485631e-01 8.107039e-01 setrgbcolor -fill -grestore -newpath -5.868665e+01 5.555146e+00 moveto -5.972914e+01 5.198542e+00 lineto -5.944393e+01 5.088318e+00 lineto -5.834503e+01 5.423121e+00 lineto -5.868665e+01 5.555146e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.765014e+01 5.950043e+00 moveto -5.868665e+01 5.555146e+00 lineto -5.834503e+01 5.423121e+00 lineto -5.725243e+01 5.796343e+00 lineto -5.765014e+01 5.950043e+00 lineto -closepath -gsave -6.55511e-01 6.55511e-01 8.193888e-01 setrgbcolor -fill -grestore -newpath -5.765014e+01 5.950043e+00 moveto -5.868665e+01 5.555146e+00 lineto -5.834503e+01 5.423121e+00 lineto -5.725243e+01 5.796343e+00 lineto -5.765014e+01 5.950043e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.662058e+01 6.38286e+00 moveto -5.765014e+01 5.950043e+00 lineto -5.725243e+01 5.796343e+00 lineto -5.616717e+01 6.20763e+00 lineto -5.662058e+01 6.38286e+00 lineto -closepath -gsave -6.623531e-01 6.623531e-01 8.279414e-01 setrgbcolor -fill -grestore -newpath -5.662058e+01 6.38286e+00 moveto -5.765014e+01 5.950043e+00 lineto -5.725243e+01 5.796343e+00 lineto -5.616717e+01 6.20763e+00 lineto -5.662058e+01 6.38286e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.559896e+01 6.853187e+00 moveto -5.662058e+01 6.38286e+00 lineto -5.616717e+01 6.20763e+00 lineto -5.509027e+01 6.656593e+00 lineto -5.559896e+01 6.853187e+00 lineto -closepath -gsave -6.690788e-01 6.690788e-01 8.363484e-01 setrgbcolor -fill -grestore -newpath -5.559896e+01 6.853187e+00 moveto -5.662058e+01 6.38286e+00 lineto -5.616717e+01 6.20763e+00 lineto -5.509027e+01 6.656593e+00 lineto -5.559896e+01 6.853187e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.458624e+01 7.360579e+00 moveto -5.559896e+01 6.853187e+00 lineto -5.509027e+01 6.656593e+00 lineto -5.402275e+01 7.142807e+00 lineto -5.458624e+01 7.360579e+00 lineto -closepath -gsave -6.756776e-01 6.756776e-01 8.44597e-01 setrgbcolor -fill -grestore -newpath -5.458624e+01 7.360579e+00 moveto -5.559896e+01 6.853187e+00 lineto -5.509027e+01 6.656593e+00 lineto -5.402275e+01 7.142807e+00 lineto -5.458624e+01 7.360579e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.358338e+01 7.904555e+00 moveto -5.458624e+01 7.360579e+00 lineto -5.402275e+01 7.142807e+00 lineto -5.296563e+01 7.66581e+00 lineto -5.358338e+01 7.904555e+00 lineto -closepath -gsave -6.821401e-01 6.821401e-01 8.526751e-01 setrgbcolor -fill -grestore -newpath -5.358338e+01 7.904555e+00 moveto -5.458624e+01 7.360579e+00 lineto -5.402275e+01 7.142807e+00 lineto -5.296563e+01 7.66581e+00 lineto -5.358338e+01 7.904555e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.259133e+01 8.484599e+00 moveto -5.358338e+01 7.904555e+00 lineto -5.296563e+01 7.66581e+00 lineto -5.19199e+01 8.22511e+00 lineto -5.259133e+01 8.484599e+00 lineto -closepath -gsave -6.88457e-01 6.88457e-01 8.605712e-01 setrgbcolor -fill -grestore -newpath -5.259133e+01 8.484599e+00 moveto -5.358338e+01 7.904555e+00 lineto -5.296563e+01 7.66581e+00 lineto -5.19199e+01 8.22511e+00 lineto -5.259133e+01 8.484599e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.161103e+01 9.100164e+00 moveto -5.259133e+01 8.484599e+00 lineto -5.19199e+01 8.22511e+00 lineto -5.088655e+01 8.820174e+00 lineto -5.161103e+01 9.100164e+00 lineto -closepath -gsave -6.946197e-01 6.946197e-01 8.682746e-01 setrgbcolor -fill -grestore -newpath -5.161103e+01 9.100164e+00 moveto -5.259133e+01 8.484599e+00 lineto -5.19199e+01 8.22511e+00 lineto -5.088655e+01 8.820174e+00 lineto -5.161103e+01 9.100164e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.064341e+01 9.750666e+00 moveto -5.161103e+01 9.100164e+00 lineto -5.088655e+01 8.820174e+00 lineto -4.986657e+01 9.450441e+00 lineto -5.064341e+01 9.750666e+00 lineto -closepath -gsave -7.006203e-01 7.006203e-01 8.757754e-01 setrgbcolor -fill -grestore -newpath -5.064341e+01 9.750666e+00 moveto -5.161103e+01 9.100164e+00 lineto -5.088655e+01 8.820174e+00 lineto -4.986657e+01 9.450441e+00 lineto -5.064341e+01 9.750666e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.968937e+01 1.043549e+01 moveto -5.064341e+01 9.750666e+00 lineto -4.986657e+01 9.450441e+00 lineto -4.886091e+01 1.011531e+01 lineto -4.968937e+01 1.043549e+01 lineto -closepath -gsave -7.064513e-01 7.064513e-01 8.830642e-01 setrgbcolor -fill -grestore -newpath -4.968937e+01 1.043549e+01 moveto -5.064341e+01 9.750666e+00 lineto -4.986657e+01 9.450441e+00 lineto -4.886091e+01 1.011531e+01 lineto -4.968937e+01 1.043549e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.874984e+01 1.115399e+01 moveto -4.968937e+01 1.043549e+01 lineto -4.886091e+01 1.011531e+01 lineto -4.787054e+01 1.081416e+01 lineto -4.874984e+01 1.115399e+01 lineto -closepath -gsave -7.12106e-01 7.12106e-01 8.901325e-01 setrgbcolor -fill -grestore -newpath -4.874984e+01 1.115399e+01 moveto -4.968937e+01 1.043549e+01 lineto -4.886091e+01 1.011531e+01 lineto -4.787054e+01 1.081416e+01 lineto -4.874984e+01 1.115399e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.782569e+01 1.190547e+01 moveto -4.874984e+01 1.115399e+01 lineto -4.787054e+01 1.081416e+01 lineto -4.689638e+01 1.154632e+01 lineto -4.782569e+01 1.190547e+01 lineto -closepath -gsave -7.17578e-01 7.17578e-01 8.969726e-01 setrgbcolor -fill -grestore -newpath -4.782569e+01 1.190547e+01 moveto -4.874984e+01 1.115399e+01 lineto -4.787054e+01 1.081416e+01 lineto -4.689638e+01 1.154632e+01 lineto -4.782569e+01 1.190547e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.69178e+01 1.268924e+01 moveto -4.782569e+01 1.190547e+01 lineto -4.689638e+01 1.154632e+01 lineto -4.593937e+01 1.231111e+01 lineto -4.69178e+01 1.268924e+01 lineto -closepath -gsave -7.228617e-01 7.228617e-01 9.035772e-01 setrgbcolor -fill -grestore -newpath -4.69178e+01 1.268924e+01 moveto -4.782569e+01 1.190547e+01 lineto -4.689638e+01 1.154632e+01 lineto -4.593937e+01 1.231111e+01 lineto -4.69178e+01 1.268924e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.602703e+01 1.350455e+01 moveto -4.69178e+01 1.268924e+01 lineto -4.593937e+01 1.231111e+01 lineto -4.50004e+01 1.310779e+01 lineto -4.602703e+01 1.350455e+01 lineto -closepath -gsave -7.27952e-01 7.27952e-01 9.0994e-01 setrgbcolor -fill -grestore -newpath -4.602703e+01 1.350455e+01 moveto -4.69178e+01 1.268924e+01 lineto -4.593937e+01 1.231111e+01 lineto -4.50004e+01 1.310779e+01 lineto -4.602703e+01 1.350455e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.515423e+01 1.435063e+01 moveto -4.602703e+01 1.350455e+01 lineto -4.50004e+01 1.310779e+01 lineto -4.408037e+01 1.393561e+01 lineto -4.515423e+01 1.435063e+01 lineto -closepath -gsave -7.328442e-01 7.328442e-01 9.160552e-01 setrgbcolor -fill -grestore -newpath -4.515423e+01 1.435063e+01 moveto -4.602703e+01 1.350455e+01 lineto -4.50004e+01 1.310779e+01 lineto -4.408037e+01 1.393561e+01 lineto -4.515423e+01 1.435063e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.430021e+01 1.522667e+01 moveto -4.515423e+01 1.435063e+01 lineto -4.408037e+01 1.393561e+01 lineto -4.318014e+01 1.47938e+01 lineto -4.430021e+01 1.522667e+01 lineto -closepath -gsave -7.375342e-01 7.375342e-01 9.219177e-01 setrgbcolor -fill -grestore -newpath -4.430021e+01 1.522667e+01 moveto -4.515423e+01 1.435063e+01 lineto -4.408037e+01 1.393561e+01 lineto -4.318014e+01 1.47938e+01 lineto -4.430021e+01 1.522667e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.34658e+01 1.613185e+01 moveto -4.430021e+01 1.522667e+01 lineto -4.318014e+01 1.47938e+01 lineto -4.230057e+01 1.568152e+01 lineto -4.34658e+01 1.613185e+01 lineto -closepath -gsave -7.420185e-01 7.420185e-01 9.275231e-01 setrgbcolor -fill -grestore -newpath -4.34658e+01 1.613185e+01 moveto -4.430021e+01 1.522667e+01 lineto -4.318014e+01 1.47938e+01 lineto -4.230057e+01 1.568152e+01 lineto -4.34658e+01 1.613185e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.265177e+01 1.70653e+01 moveto -4.34658e+01 1.613185e+01 lineto -4.230057e+01 1.568152e+01 lineto -4.14425e+01 1.659796e+01 lineto -4.265177e+01 1.70653e+01 lineto -closepath -gsave -7.46294e-01 7.46294e-01 9.328675e-01 setrgbcolor -fill -grestore -newpath -4.265177e+01 1.70653e+01 moveto -4.34658e+01 1.613185e+01 lineto -4.230057e+01 1.568152e+01 lineto -4.14425e+01 1.659796e+01 lineto -4.265177e+01 1.70653e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.18589e+01 1.802616e+01 moveto -4.265177e+01 1.70653e+01 lineto -4.14425e+01 1.659796e+01 lineto -4.060673e+01 1.754223e+01 lineto -4.18589e+01 1.802616e+01 lineto -closepath -gsave -7.503579e-01 7.503579e-01 9.379474e-01 setrgbcolor -fill -grestore -newpath -4.18589e+01 1.802616e+01 moveto -4.265177e+01 1.70653e+01 lineto -4.14425e+01 1.659796e+01 lineto -4.060673e+01 1.754223e+01 lineto -4.18589e+01 1.802616e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.108794e+01 1.90135e+01 moveto -4.18589e+01 1.802616e+01 lineto -4.060673e+01 1.754223e+01 lineto -3.979406e+01 1.851345e+01 lineto -4.108794e+01 1.90135e+01 lineto -closepath -gsave -7.542082e-01 7.542082e-01 9.427602e-01 setrgbcolor -fill -grestore -newpath -4.108794e+01 1.90135e+01 moveto -4.18589e+01 1.802616e+01 lineto -4.060673e+01 1.754223e+01 lineto -3.979406e+01 1.851345e+01 lineto -4.108794e+01 1.90135e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.033963e+01 2.002639e+01 moveto -4.108794e+01 1.90135e+01 lineto -3.979406e+01 1.851345e+01 lineto -3.900525e+01 1.951069e+01 lineto -4.033963e+01 2.002639e+01 lineto -closepath -gsave -7.578428e-01 7.578428e-01 9.473034e-01 setrgbcolor -fill -grestore -newpath -4.033963e+01 2.002639e+01 moveto -4.108794e+01 1.90135e+01 lineto -3.979406e+01 1.851345e+01 lineto -3.900525e+01 1.951069e+01 lineto -4.033963e+01 2.002639e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.961466e+01 2.106387e+01 moveto -4.033963e+01 2.002639e+01 lineto -3.900525e+01 1.951069e+01 lineto -3.824105e+01 2.053301e+01 lineto -3.961466e+01 2.106387e+01 lineto -closepath -gsave -7.612602e-01 7.612602e-01 9.515752e-01 setrgbcolor -fill -grestore -newpath -3.961466e+01 2.106387e+01 moveto -4.033963e+01 2.002639e+01 lineto -3.900525e+01 1.951069e+01 lineto -3.824105e+01 2.053301e+01 lineto -3.961466e+01 2.106387e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.891373e+01 2.212496e+01 moveto -3.961466e+01 2.106387e+01 lineto -3.824105e+01 2.053301e+01 lineto -3.750219e+01 2.157944e+01 lineto -3.891373e+01 2.212496e+01 lineto -closepath -gsave -7.644593e-01 7.644593e-01 9.555741e-01 setrgbcolor -fill -grestore -newpath -3.891373e+01 2.212496e+01 moveto -3.961466e+01 2.106387e+01 lineto -3.824105e+01 2.053301e+01 lineto -3.750219e+01 2.157944e+01 lineto -3.891373e+01 2.212496e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.823749e+01 2.320866e+01 moveto -3.891373e+01 2.212496e+01 lineto -3.750219e+01 2.157944e+01 lineto -3.678936e+01 2.2649e+01 lineto -3.823749e+01 2.320866e+01 lineto -closepath -gsave -7.674391e-01 7.674391e-01 9.592988e-01 setrgbcolor -fill -grestore -newpath -3.823749e+01 2.320866e+01 moveto -3.891373e+01 2.212496e+01 lineto -3.750219e+01 2.157944e+01 lineto -3.678936e+01 2.2649e+01 lineto -3.823749e+01 2.320866e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.75866e+01 2.431393e+01 moveto -3.823749e+01 2.320866e+01 lineto -3.678936e+01 2.2649e+01 lineto -3.610325e+01 2.374066e+01 lineto -3.75866e+01 2.431393e+01 lineto -closepath -gsave -7.701989e-01 7.701989e-01 9.627486e-01 setrgbcolor -fill -grestore -newpath -3.75866e+01 2.431393e+01 moveto -3.823749e+01 2.320866e+01 lineto -3.678936e+01 2.2649e+01 lineto -3.610325e+01 2.374066e+01 lineto -3.75866e+01 2.431393e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.696165e+01 2.543974e+01 moveto -3.75866e+01 2.431393e+01 lineto -3.610325e+01 2.374066e+01 lineto -3.544449e+01 2.48534e+01 lineto -3.696165e+01 2.543974e+01 lineto -closepath -gsave -7.727383e-01 7.727383e-01 9.659228e-01 setrgbcolor -fill -grestore -newpath -3.696165e+01 2.543974e+01 moveto -3.75866e+01 2.431393e+01 lineto -3.610325e+01 2.374066e+01 lineto -3.544449e+01 2.48534e+01 lineto -3.696165e+01 2.543974e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.636326e+01 2.658502e+01 moveto -3.696165e+01 2.543974e+01 lineto -3.544449e+01 2.48534e+01 lineto -3.481372e+01 2.598617e+01 lineto -3.636326e+01 2.658502e+01 lineto -closepath -gsave -7.750569e-01 7.750569e-01 9.688212e-01 setrgbcolor -fill -grestore -newpath -3.636326e+01 2.658502e+01 moveto -3.696165e+01 2.543974e+01 lineto -3.544449e+01 2.48534e+01 lineto -3.481372e+01 2.598617e+01 lineto -3.636326e+01 2.658502e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.579198e+01 2.774867e+01 moveto -3.636326e+01 2.658502e+01 lineto -3.481372e+01 2.598617e+01 lineto -3.421153e+01 2.713788e+01 lineto -3.579198e+01 2.774867e+01 lineto -closepath -gsave -7.771547e-01 7.771547e-01 9.714434e-01 setrgbcolor -fill -grestore -newpath -3.579198e+01 2.774867e+01 moveto -3.636326e+01 2.658502e+01 lineto -3.481372e+01 2.598617e+01 lineto -3.421153e+01 2.713788e+01 lineto -3.579198e+01 2.774867e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.524836e+01 2.892961e+01 moveto -3.579198e+01 2.774867e+01 lineto -3.421153e+01 2.713788e+01 lineto -3.363849e+01 2.830745e+01 lineto -3.524836e+01 2.892961e+01 lineto -closepath -gsave -7.790316e-01 7.790316e-01 9.737895e-01 setrgbcolor -fill -grestore -newpath -3.524836e+01 2.892961e+01 moveto -3.579198e+01 2.774867e+01 lineto -3.421153e+01 2.713788e+01 lineto -3.363849e+01 2.830745e+01 lineto -3.524836e+01 2.892961e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.47329e+01 3.012671e+01 moveto -3.524836e+01 2.892961e+01 lineto -3.363849e+01 2.830745e+01 lineto -3.309514e+01 2.949377e+01 lineto -3.47329e+01 3.012671e+01 lineto -closepath -gsave -7.806877e-01 7.806877e-01 9.758596e-01 setrgbcolor -fill -grestore -newpath -3.47329e+01 3.012671e+01 moveto -3.524836e+01 2.892961e+01 lineto -3.363849e+01 2.830745e+01 lineto -3.309514e+01 2.949377e+01 lineto -3.47329e+01 3.012671e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.42461e+01 3.133884e+01 moveto -3.47329e+01 3.012671e+01 lineto -3.309514e+01 2.949377e+01 lineto -3.2582e+01 3.069572e+01 lineto -3.42461e+01 3.133884e+01 lineto -closepath -gsave -7.821231e-01 7.821231e-01 9.776539e-01 setrgbcolor -fill -grestore -newpath -3.42461e+01 3.133884e+01 moveto -3.47329e+01 3.012671e+01 lineto -3.309514e+01 2.949377e+01 lineto -3.2582e+01 3.069572e+01 lineto -3.42461e+01 3.133884e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.378842e+01 3.256485e+01 moveto -3.42461e+01 3.133884e+01 lineto -3.2582e+01 3.069572e+01 lineto -3.209955e+01 3.191216e+01 lineto -3.378842e+01 3.256485e+01 lineto -closepath -gsave -7.833379e-01 7.833379e-01 9.791724e-01 setrgbcolor -fill -grestore -newpath -3.378842e+01 3.256485e+01 moveto -3.42461e+01 3.133884e+01 lineto -3.2582e+01 3.069572e+01 lineto -3.209955e+01 3.191216e+01 lineto -3.378842e+01 3.256485e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.336029e+01 3.380358e+01 moveto -3.378842e+01 3.256485e+01 lineto -3.209955e+01 3.191216e+01 lineto -3.164826e+01 3.314193e+01 lineto -3.336029e+01 3.380358e+01 lineto -closepath -gsave -7.843324e-01 7.843324e-01 9.804155e-01 setrgbcolor -fill -grestore -newpath -3.336029e+01 3.380358e+01 moveto -3.378842e+01 3.256485e+01 lineto -3.209955e+01 3.191216e+01 lineto -3.164826e+01 3.314193e+01 lineto -3.336029e+01 3.380358e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.296212e+01 3.505386e+01 moveto -3.336029e+01 3.380358e+01 lineto -3.164826e+01 3.314193e+01 lineto -3.122854e+01 3.438389e+01 lineto -3.296212e+01 3.505386e+01 lineto -closepath -gsave -7.851067e-01 7.851067e-01 9.813834e-01 setrgbcolor -fill -grestore -newpath -3.296212e+01 3.505386e+01 moveto -3.336029e+01 3.380358e+01 lineto -3.164826e+01 3.314193e+01 lineto -3.122854e+01 3.438389e+01 lineto -3.296212e+01 3.505386e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.259428e+01 3.631451e+01 moveto -3.296212e+01 3.505386e+01 lineto -3.122854e+01 3.438389e+01 lineto -3.08408e+01 3.563684e+01 lineto -3.259428e+01 3.631451e+01 lineto -closepath -gsave -7.85661e-01 7.85661e-01 9.820762e-01 setrgbcolor -fill -grestore -newpath -3.259428e+01 3.631451e+01 moveto -3.296212e+01 3.505386e+01 lineto -3.122854e+01 3.438389e+01 lineto -3.08408e+01 3.563684e+01 lineto -3.259428e+01 3.631451e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.388166e+01 4.139079e+00 moveto -6.499638e+01 4.000386e+00 lineto -6.499621e+01 4.000312e+00 lineto -6.383115e+01 4.116158e+00 lineto -6.388166e+01 4.139079e+00 lineto -closepath -gsave -6.125261e-01 6.125261e-01 7.656576e-01 setrgbcolor -fill -grestore -newpath -6.388166e+01 4.139079e+00 moveto -6.499638e+01 4.000386e+00 lineto -6.499621e+01 4.000312e+00 lineto -6.383115e+01 4.116158e+00 lineto -6.388166e+01 4.139079e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.276801e+01 4.317406e+00 moveto -6.388166e+01 4.139079e+00 lineto -6.383115e+01 4.116158e+00 lineto -6.26672e+01 4.271661e+00 lineto -6.276801e+01 4.317406e+00 lineto -closepath -gsave -6.19589e-01 6.19589e-01 7.744862e-01 setrgbcolor -fill -grestore -newpath -6.276801e+01 4.317406e+00 moveto -6.388166e+01 4.139079e+00 lineto -6.383115e+01 4.116158e+00 lineto -6.26672e+01 4.271661e+00 lineto -6.276801e+01 4.317406e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.165647e+01 4.535198e+00 moveto -6.276801e+01 4.317406e+00 lineto -6.26672e+01 4.271661e+00 lineto -6.150545e+01 4.466673e+00 lineto -6.165647e+01 4.535198e+00 lineto -closepath -gsave -6.266048e-01 6.266048e-01 7.83256e-01 setrgbcolor -fill -grestore -newpath -6.165647e+01 4.535198e+00 moveto -6.276801e+01 4.317406e+00 lineto -6.26672e+01 4.271661e+00 lineto -6.150545e+01 4.466673e+00 lineto -6.165647e+01 4.535198e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.054809e+01 4.79225e+00 moveto -6.165647e+01 4.535198e+00 lineto -6.150545e+01 4.466673e+00 lineto -6.034701e+01 4.701009e+00 lineto -6.054809e+01 4.79225e+00 lineto -closepath -gsave -6.335614e-01 6.335614e-01 7.919517e-01 setrgbcolor -fill -grestore -newpath -6.054809e+01 4.79225e+00 moveto -6.165647e+01 4.535198e+00 lineto -6.150545e+01 4.466673e+00 lineto -6.034701e+01 4.701009e+00 lineto -6.054809e+01 4.79225e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.944393e+01 5.088318e+00 moveto -6.054809e+01 4.79225e+00 lineto -6.034701e+01 4.701009e+00 lineto -5.919298e+01 4.974447e+00 lineto -5.944393e+01 5.088318e+00 lineto -closepath -gsave -6.40447e-01 6.40447e-01 8.005588e-01 setrgbcolor -fill -grestore -newpath -5.944393e+01 5.088318e+00 moveto -6.054809e+01 4.79225e+00 lineto -6.034701e+01 4.701009e+00 lineto -5.919298e+01 4.974447e+00 lineto -5.944393e+01 5.088318e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.834503e+01 5.423121e+00 moveto -5.944393e+01 5.088318e+00 lineto -5.919298e+01 4.974447e+00 lineto -5.804444e+01 5.286728e+00 lineto -5.834503e+01 5.423121e+00 lineto -closepath -gsave -6.472503e-01 6.472503e-01 8.090629e-01 setrgbcolor -fill -grestore -newpath -5.834503e+01 5.423121e+00 moveto -5.944393e+01 5.088318e+00 lineto -5.919298e+01 4.974447e+00 lineto -5.804444e+01 5.286728e+00 lineto -5.834503e+01 5.423121e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.725243e+01 5.796343e+00 moveto -5.834503e+01 5.423121e+00 lineto -5.804444e+01 5.286728e+00 lineto -5.690249e+01 5.637557e+00 lineto -5.725243e+01 5.796343e+00 lineto -closepath -gsave -6.539602e-01 6.539602e-01 8.174503e-01 setrgbcolor -fill -grestore -newpath -5.725243e+01 5.796343e+00 moveto -5.834503e+01 5.423121e+00 lineto -5.804444e+01 5.286728e+00 lineto -5.690249e+01 5.637557e+00 lineto -5.725243e+01 5.796343e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.616717e+01 6.20763e+00 moveto -5.725243e+01 5.796343e+00 lineto -5.690249e+01 5.637557e+00 lineto -5.576821e+01 6.026602e+00 lineto -5.616717e+01 6.20763e+00 lineto -closepath -gsave -6.605661e-01 6.605661e-01 8.257077e-01 setrgbcolor -fill -grestore -newpath -5.616717e+01 6.20763e+00 moveto -5.725243e+01 5.796343e+00 lineto -5.690249e+01 5.637557e+00 lineto -5.576821e+01 6.026602e+00 lineto -5.616717e+01 6.20763e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.509027e+01 6.656593e+00 moveto -5.616717e+01 6.20763e+00 lineto -5.576821e+01 6.026602e+00 lineto -5.464267e+01 6.453494e+00 lineto -5.509027e+01 6.656593e+00 lineto -closepath -gsave -6.670579e-01 6.670579e-01 8.338224e-01 setrgbcolor -fill -grestore -newpath -5.509027e+01 6.656593e+00 moveto -5.616717e+01 6.20763e+00 lineto -5.576821e+01 6.026602e+00 lineto -5.464267e+01 6.453494e+00 lineto -5.509027e+01 6.656593e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.402275e+01 7.142807e+00 moveto -5.509027e+01 6.656593e+00 lineto -5.464267e+01 6.453494e+00 lineto -5.352694e+01 6.917829e+00 lineto -5.402275e+01 7.142807e+00 lineto -closepath -gsave -6.734258e-01 6.734258e-01 8.417823e-01 setrgbcolor -fill -grestore -newpath -5.402275e+01 7.142807e+00 moveto -5.509027e+01 6.656593e+00 lineto -5.464267e+01 6.453494e+00 lineto -5.352694e+01 6.917829e+00 lineto -5.402275e+01 7.142807e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.296563e+01 7.66581e+00 moveto -5.402275e+01 7.142807e+00 lineto -5.352694e+01 6.917829e+00 lineto -5.242206e+01 7.419167e+00 lineto -5.296563e+01 7.66581e+00 lineto -closepath -gsave -6.796607e-01 6.796607e-01 8.495759e-01 setrgbcolor -fill -grestore -newpath -5.296563e+01 7.66581e+00 moveto -5.402275e+01 7.142807e+00 lineto -5.352694e+01 6.917829e+00 lineto -5.242206e+01 7.419167e+00 lineto -5.296563e+01 7.66581e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.19199e+01 8.22511e+00 moveto -5.296563e+01 7.66581e+00 lineto -5.242206e+01 7.419167e+00 lineto -5.13291e+01 7.957034e+00 lineto -5.19199e+01 8.22511e+00 lineto -closepath -gsave -6.857539e-01 6.857539e-01 8.571924e-01 setrgbcolor -fill -grestore -newpath -5.19199e+01 8.22511e+00 moveto -5.296563e+01 7.66581e+00 lineto -5.242206e+01 7.419167e+00 lineto -5.13291e+01 7.957034e+00 lineto -5.19199e+01 8.22511e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.088655e+01 8.820174e+00 moveto -5.19199e+01 8.22511e+00 lineto -5.13291e+01 7.957034e+00 lineto -5.024908e+01 8.53092e+00 lineto -5.088655e+01 8.820174e+00 lineto -closepath -gsave -6.916973e-01 6.916973e-01 8.646217e-01 setrgbcolor -fill -grestore -newpath -5.088655e+01 8.820174e+00 moveto -5.19199e+01 8.22511e+00 lineto -5.13291e+01 7.957034e+00 lineto -5.024908e+01 8.53092e+00 lineto -5.088655e+01 8.820174e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.986657e+01 9.450441e+00 moveto -5.088655e+01 8.820174e+00 lineto -5.024908e+01 8.53092e+00 lineto -4.918303e+01 9.140283e+00 lineto -4.986657e+01 9.450441e+00 lineto -closepath -gsave -6.974833e-01 6.974833e-01 8.718541e-01 setrgbcolor -fill -grestore -newpath -4.986657e+01 9.450441e+00 moveto -5.088655e+01 8.820174e+00 lineto -5.024908e+01 8.53092e+00 lineto -4.918303e+01 9.140283e+00 lineto -4.986657e+01 9.450441e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.886091e+01 1.011531e+01 moveto -4.986657e+01 9.450441e+00 lineto -4.918303e+01 9.140283e+00 lineto -4.813195e+01 9.784544e+00 lineto -4.886091e+01 1.011531e+01 lineto -closepath -gsave -7.031047e-01 7.031047e-01 8.788809e-01 setrgbcolor -fill -grestore -newpath -4.886091e+01 1.011531e+01 moveto -4.986657e+01 9.450441e+00 lineto -4.918303e+01 9.140283e+00 lineto -4.813195e+01 9.784544e+00 lineto -4.886091e+01 1.011531e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.787054e+01 1.081416e+01 moveto -4.886091e+01 1.011531e+01 lineto -4.813195e+01 9.784544e+00 lineto -4.709684e+01 1.04631e+01 lineto -4.787054e+01 1.081416e+01 lineto -closepath -gsave -7.085551e-01 7.085551e-01 8.856938e-01 setrgbcolor -fill -grestore -newpath -4.787054e+01 1.081416e+01 moveto -4.886091e+01 1.011531e+01 lineto -4.813195e+01 9.784544e+00 lineto -4.709684e+01 1.04631e+01 lineto -4.787054e+01 1.081416e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.689638e+01 1.154632e+01 moveto -4.787054e+01 1.081416e+01 lineto -4.709684e+01 1.04631e+01 lineto -4.607869e+01 1.117529e+01 lineto -4.689638e+01 1.154632e+01 lineto -closepath -gsave -7.138284e-01 7.138284e-01 8.922854e-01 setrgbcolor -fill -grestore -newpath -4.689638e+01 1.154632e+01 moveto -4.787054e+01 1.081416e+01 lineto -4.709684e+01 1.04631e+01 lineto -4.607869e+01 1.117529e+01 lineto -4.689638e+01 1.154632e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.593937e+01 1.231111e+01 moveto -4.689638e+01 1.154632e+01 lineto -4.607869e+01 1.117529e+01 lineto -4.507845e+01 1.192046e+01 lineto -4.593937e+01 1.231111e+01 lineto -closepath -gsave -7.189191e-01 7.189191e-01 8.986489e-01 setrgbcolor -fill -grestore -newpath -4.593937e+01 1.231111e+01 moveto -4.689638e+01 1.154632e+01 lineto -4.607869e+01 1.117529e+01 lineto -4.507845e+01 1.192046e+01 lineto -4.593937e+01 1.231111e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.50004e+01 1.310779e+01 moveto -4.593937e+01 1.231111e+01 lineto -4.507845e+01 1.192046e+01 lineto -4.409707e+01 1.26979e+01 lineto -4.50004e+01 1.310779e+01 lineto -closepath -gsave -7.238223e-01 7.238223e-01 9.047779e-01 setrgbcolor -fill -grestore -newpath -4.50004e+01 1.310779e+01 moveto -4.593937e+01 1.231111e+01 lineto -4.507845e+01 1.192046e+01 lineto -4.409707e+01 1.26979e+01 lineto -4.50004e+01 1.310779e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.408037e+01 1.393561e+01 moveto -4.50004e+01 1.310779e+01 lineto -4.409707e+01 1.26979e+01 lineto -4.313548e+01 1.350687e+01 lineto -4.408037e+01 1.393561e+01 lineto -closepath -gsave -7.285335e-01 7.285335e-01 9.106669e-01 setrgbcolor -fill -grestore -newpath -4.408037e+01 1.393561e+01 moveto -4.50004e+01 1.310779e+01 lineto -4.409707e+01 1.26979e+01 lineto -4.313548e+01 1.350687e+01 lineto -4.408037e+01 1.393561e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.318014e+01 1.47938e+01 moveto -4.408037e+01 1.393561e+01 lineto -4.313548e+01 1.350687e+01 lineto -4.21946e+01 1.43466e+01 lineto -4.318014e+01 1.47938e+01 lineto -closepath -gsave -7.330487e-01 7.330487e-01 9.163109e-01 setrgbcolor -fill -grestore -newpath -4.318014e+01 1.47938e+01 moveto -4.408037e+01 1.393561e+01 lineto -4.313548e+01 1.350687e+01 lineto -4.21946e+01 1.43466e+01 lineto -4.318014e+01 1.47938e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.230057e+01 1.568152e+01 moveto -4.318014e+01 1.47938e+01 lineto -4.21946e+01 1.43466e+01 lineto -4.12753e+01 1.52163e+01 lineto -4.230057e+01 1.568152e+01 lineto -closepath -gsave -7.373644e-01 7.373644e-01 9.217055e-01 setrgbcolor -fill -grestore -newpath -4.230057e+01 1.568152e+01 moveto -4.318014e+01 1.47938e+01 lineto -4.21946e+01 1.43466e+01 lineto -4.12753e+01 1.52163e+01 lineto -4.230057e+01 1.568152e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.14425e+01 1.659796e+01 moveto -4.230057e+01 1.568152e+01 lineto -4.12753e+01 1.52163e+01 lineto -4.037847e+01 1.611515e+01 lineto -4.14425e+01 1.659796e+01 lineto -closepath -gsave -7.414775e-01 7.414775e-01 9.268469e-01 setrgbcolor -fill -grestore -newpath -4.14425e+01 1.659796e+01 moveto -4.230057e+01 1.568152e+01 lineto -4.12753e+01 1.52163e+01 lineto -4.037847e+01 1.611515e+01 lineto -4.14425e+01 1.659796e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.060673e+01 1.754223e+01 moveto -4.14425e+01 1.659796e+01 lineto -4.037847e+01 1.611515e+01 lineto -3.950495e+01 1.704229e+01 lineto -4.060673e+01 1.754223e+01 lineto -closepath -gsave -7.453852e-01 7.453852e-01 9.317315e-01 setrgbcolor -fill -grestore -newpath -4.060673e+01 1.754223e+01 moveto -4.14425e+01 1.659796e+01 lineto -4.037847e+01 1.611515e+01 lineto -3.950495e+01 1.704229e+01 lineto -4.060673e+01 1.754223e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.979406e+01 1.851345e+01 moveto -4.060673e+01 1.754223e+01 lineto -3.950495e+01 1.704229e+01 lineto -3.865557e+01 1.799685e+01 lineto -3.979406e+01 1.851345e+01 lineto -closepath -gsave -7.490853e-01 7.490853e-01 9.363567e-01 setrgbcolor -fill -grestore -newpath -3.979406e+01 1.851345e+01 moveto -4.060673e+01 1.754223e+01 lineto -3.950495e+01 1.704229e+01 lineto -3.865557e+01 1.799685e+01 lineto -3.979406e+01 1.851345e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.900525e+01 1.951069e+01 moveto -3.979406e+01 1.851345e+01 lineto -3.865557e+01 1.799685e+01 lineto -3.783113e+01 1.897793e+01 lineto -3.900525e+01 1.951069e+01 lineto -closepath -gsave -7.525759e-01 7.525759e-01 9.407199e-01 setrgbcolor -fill -grestore -newpath -3.900525e+01 1.951069e+01 moveto -3.979406e+01 1.851345e+01 lineto -3.865557e+01 1.799685e+01 lineto -3.783113e+01 1.897793e+01 lineto -3.900525e+01 1.951069e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.824105e+01 2.053301e+01 moveto -3.900525e+01 1.951069e+01 lineto -3.783113e+01 1.897793e+01 lineto -3.703242e+01 1.998459e+01 lineto -3.824105e+01 2.053301e+01 lineto -closepath -gsave -7.558552e-01 7.558552e-01 9.44819e-01 setrgbcolor -fill -grestore -newpath -3.824105e+01 2.053301e+01 moveto -3.900525e+01 1.951069e+01 lineto -3.783113e+01 1.897793e+01 lineto -3.703242e+01 1.998459e+01 lineto -3.824105e+01 2.053301e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.750219e+01 2.157944e+01 moveto -3.824105e+01 2.053301e+01 lineto -3.703242e+01 1.998459e+01 lineto -3.626019e+01 2.101588e+01 lineto -3.750219e+01 2.157944e+01 lineto -closepath -gsave -7.58922e-01 7.58922e-01 9.486526e-01 setrgbcolor -fill -grestore -newpath -3.750219e+01 2.157944e+01 moveto -3.824105e+01 2.053301e+01 lineto -3.703242e+01 1.998459e+01 lineto -3.626019e+01 2.101588e+01 lineto -3.750219e+01 2.157944e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.678936e+01 2.2649e+01 moveto -3.750219e+01 2.157944e+01 lineto -3.626019e+01 2.101588e+01 lineto -3.551516e+01 2.207082e+01 lineto -3.678936e+01 2.2649e+01 lineto -closepath -gsave -7.617753e-01 7.617753e-01 9.522191e-01 setrgbcolor -fill -grestore -newpath -3.678936e+01 2.2649e+01 moveto -3.750219e+01 2.157944e+01 lineto -3.626019e+01 2.101588e+01 lineto -3.551516e+01 2.207082e+01 lineto -3.678936e+01 2.2649e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.610325e+01 2.374066e+01 moveto -3.678936e+01 2.2649e+01 lineto -3.551516e+01 2.207082e+01 lineto -3.479806e+01 2.314843e+01 lineto -3.610325e+01 2.374066e+01 lineto -closepath -gsave -7.644141e-01 7.644141e-01 9.555176e-01 setrgbcolor -fill -grestore -newpath -3.610325e+01 2.374066e+01 moveto -3.678936e+01 2.2649e+01 lineto -3.551516e+01 2.207082e+01 lineto -3.479806e+01 2.314843e+01 lineto -3.610325e+01 2.374066e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.544449e+01 2.48534e+01 moveto -3.610325e+01 2.374066e+01 lineto -3.479806e+01 2.314843e+01 lineto -3.410955e+01 2.424767e+01 lineto -3.544449e+01 2.48534e+01 lineto -closepath -gsave -7.668378e-01 7.668378e-01 9.585473e-01 setrgbcolor -fill -grestore -newpath -3.544449e+01 2.48534e+01 moveto -3.610325e+01 2.374066e+01 lineto -3.479806e+01 2.314843e+01 lineto -3.410955e+01 2.424767e+01 lineto -3.544449e+01 2.48534e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.481372e+01 2.598617e+01 moveto -3.544449e+01 2.48534e+01 lineto -3.410955e+01 2.424767e+01 lineto -3.345029e+01 2.53675e+01 lineto -3.481372e+01 2.598617e+01 lineto -closepath -gsave -7.69046e-01 7.69046e-01 9.613076e-01 setrgbcolor -fill -grestore -newpath -3.481372e+01 2.598617e+01 moveto -3.544449e+01 2.48534e+01 lineto -3.410955e+01 2.424767e+01 lineto -3.345029e+01 2.53675e+01 lineto -3.481372e+01 2.598617e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.421153e+01 2.713788e+01 moveto -3.481372e+01 2.598617e+01 lineto -3.345029e+01 2.53675e+01 lineto -3.282089e+01 2.650687e+01 lineto -3.421153e+01 2.713788e+01 lineto -closepath -gsave -7.710385e-01 7.710385e-01 9.637981e-01 setrgbcolor -fill -grestore -newpath -3.421153e+01 2.713788e+01 moveto -3.481372e+01 2.598617e+01 lineto -3.345029e+01 2.53675e+01 lineto -3.282089e+01 2.650687e+01 lineto -3.421153e+01 2.713788e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.363849e+01 2.830745e+01 moveto -3.421153e+01 2.713788e+01 lineto -3.282089e+01 2.650687e+01 lineto -3.222197e+01 2.766469e+01 lineto -3.363849e+01 2.830745e+01 lineto -closepath -gsave -7.728149e-01 7.728149e-01 9.660186e-01 setrgbcolor -fill -grestore -newpath -3.363849e+01 2.830745e+01 moveto -3.421153e+01 2.713788e+01 lineto -3.282089e+01 2.650687e+01 lineto -3.222197e+01 2.766469e+01 lineto -3.363849e+01 2.830745e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.309514e+01 2.949377e+01 moveto -3.363849e+01 2.830745e+01 lineto -3.222197e+01 2.766469e+01 lineto -3.165408e+01 2.883988e+01 lineto -3.309514e+01 2.949377e+01 lineto -closepath -gsave -7.743752e-01 7.743752e-01 9.67969e-01 setrgbcolor -fill -grestore -newpath -3.309514e+01 2.949377e+01 moveto -3.363849e+01 2.830745e+01 lineto -3.222197e+01 2.766469e+01 lineto -3.165408e+01 2.883988e+01 lineto -3.309514e+01 2.949377e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.2582e+01 3.069572e+01 moveto -3.309514e+01 2.949377e+01 lineto -3.165408e+01 2.883988e+01 lineto -3.111776e+01 3.003131e+01 lineto -3.2582e+01 3.069572e+01 lineto -closepath -gsave -7.757194e-01 7.757194e-01 9.696493e-01 setrgbcolor -fill -grestore -newpath -3.2582e+01 3.069572e+01 moveto -3.309514e+01 2.949377e+01 lineto -3.165408e+01 2.883988e+01 lineto -3.111776e+01 3.003131e+01 lineto -3.2582e+01 3.069572e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.209955e+01 3.191216e+01 moveto -3.2582e+01 3.069572e+01 lineto -3.111776e+01 3.003131e+01 lineto -3.061353e+01 3.123786e+01 lineto -3.209955e+01 3.191216e+01 lineto -closepath -gsave -7.768475e-01 7.768475e-01 9.710594e-01 setrgbcolor -fill -grestore -newpath -3.209955e+01 3.191216e+01 moveto -3.2582e+01 3.069572e+01 lineto -3.111776e+01 3.003131e+01 lineto -3.061353e+01 3.123786e+01 lineto -3.209955e+01 3.191216e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.164826e+01 3.314193e+01 moveto -3.209955e+01 3.191216e+01 lineto -3.061353e+01 3.123786e+01 lineto -3.014185e+01 3.245839e+01 lineto -3.164826e+01 3.314193e+01 lineto -closepath -gsave -7.777596e-01 7.777596e-01 9.721994e-01 setrgbcolor -fill -grestore -newpath -3.164826e+01 3.314193e+01 moveto -3.209955e+01 3.191216e+01 lineto -3.061353e+01 3.123786e+01 lineto -3.014185e+01 3.245839e+01 lineto -3.164826e+01 3.314193e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.122854e+01 3.438389e+01 moveto -3.164826e+01 3.314193e+01 lineto -3.014185e+01 3.245839e+01 lineto -2.970317e+01 3.369174e+01 lineto -3.122854e+01 3.438389e+01 lineto -closepath -gsave -7.784556e-01 7.784556e-01 9.730695e-01 setrgbcolor -fill -grestore -newpath -3.122854e+01 3.438389e+01 moveto -3.164826e+01 3.314193e+01 lineto -3.014185e+01 3.245839e+01 lineto -2.970317e+01 3.369174e+01 lineto -3.122854e+01 3.438389e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.08408e+01 3.563684e+01 moveto -3.122854e+01 3.438389e+01 lineto -2.970317e+01 3.369174e+01 lineto -2.929792e+01 3.493675e+01 lineto -3.08408e+01 3.563684e+01 lineto -closepath -gsave -7.789358e-01 7.789358e-01 9.736697e-01 setrgbcolor -fill -grestore -newpath -3.08408e+01 3.563684e+01 moveto -3.122854e+01 3.438389e+01 lineto -2.970317e+01 3.369174e+01 lineto -2.929792e+01 3.493675e+01 lineto -3.08408e+01 3.563684e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.383115e+01 4.116158e+00 moveto -6.499621e+01 4.000312e+00 lineto -6.499607e+01 4.000236e+00 lineto -6.378785e+01 4.092645e+00 lineto -6.383115e+01 4.116158e+00 lineto -closepath -gsave -6.123855e-01 6.123855e-01 7.654819e-01 setrgbcolor -fill -grestore -newpath -6.383115e+01 4.116158e+00 moveto -6.499621e+01 4.000312e+00 lineto -6.499607e+01 4.000236e+00 lineto -6.378785e+01 4.092645e+00 lineto -6.383115e+01 4.116158e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.26672e+01 4.271661e+00 moveto -6.383115e+01 4.116158e+00 lineto -6.378785e+01 4.092645e+00 lineto -6.258077e+01 4.224734e+00 lineto -6.26672e+01 4.271661e+00 lineto -closepath -gsave -6.191672e-01 6.191672e-01 7.73959e-01 setrgbcolor -fill -grestore -newpath -6.26672e+01 4.271661e+00 moveto -6.383115e+01 4.116158e+00 lineto -6.378785e+01 4.092645e+00 lineto -6.258077e+01 4.224734e+00 lineto -6.26672e+01 4.271661e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.150545e+01 4.466673e+00 moveto -6.26672e+01 4.271661e+00 lineto -6.258077e+01 4.224734e+00 lineto -6.137598e+01 4.396375e+00 lineto -6.150545e+01 4.466673e+00 lineto -closepath -gsave -6.258999e-01 6.258999e-01 7.823749e-01 setrgbcolor -fill -grestore -newpath -6.150545e+01 4.466673e+00 moveto -6.26672e+01 4.271661e+00 lineto -6.258077e+01 4.224734e+00 lineto -6.137598e+01 4.396375e+00 lineto -6.150545e+01 4.466673e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.034701e+01 4.701009e+00 moveto -6.150545e+01 4.466673e+00 lineto -6.137598e+01 4.396375e+00 lineto -6.017462e+01 4.607407e+00 lineto -6.034701e+01 4.701009e+00 lineto -closepath -gsave -6.325725e-01 6.325725e-01 7.907156e-01 setrgbcolor -fill -grestore -newpath -6.034701e+01 4.701009e+00 moveto -6.150545e+01 4.466673e+00 lineto -6.137598e+01 4.396375e+00 lineto -6.017462e+01 4.607407e+00 lineto -6.034701e+01 4.701009e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.919298e+01 4.974447e+00 moveto -6.034701e+01 4.701009e+00 lineto -6.017462e+01 4.607407e+00 lineto -5.897783e+01 4.85763e+00 lineto -5.919298e+01 4.974447e+00 lineto -closepath -gsave -6.391739e-01 6.391739e-01 7.989674e-01 setrgbcolor -fill -grestore -newpath -5.919298e+01 4.974447e+00 moveto -6.034701e+01 4.701009e+00 lineto -6.017462e+01 4.607407e+00 lineto -5.897783e+01 4.85763e+00 lineto -5.919298e+01 4.974447e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.804444e+01 5.286728e+00 moveto -5.919298e+01 4.974447e+00 lineto -5.897783e+01 4.85763e+00 lineto -5.778674e+01 5.146808e+00 lineto -5.804444e+01 5.286728e+00 lineto -closepath -gsave -6.456936e-01 6.456936e-01 8.07117e-01 setrgbcolor -fill -grestore -newpath -5.804444e+01 5.286728e+00 moveto -5.919298e+01 4.974447e+00 lineto -5.897783e+01 4.85763e+00 lineto -5.778674e+01 5.146808e+00 lineto -5.804444e+01 5.286728e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.690249e+01 5.637557e+00 moveto -5.804444e+01 5.286728e+00 lineto -5.778674e+01 5.146808e+00 lineto -5.660248e+01 5.474665e+00 lineto -5.690249e+01 5.637557e+00 lineto -closepath -gsave -6.521211e-01 6.521211e-01 8.151514e-01 setrgbcolor -fill -grestore -newpath -5.690249e+01 5.637557e+00 moveto -5.804444e+01 5.286728e+00 lineto -5.778674e+01 5.146808e+00 lineto -5.660248e+01 5.474665e+00 lineto -5.690249e+01 5.637557e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.576821e+01 6.026602e+00 moveto -5.690249e+01 5.637557e+00 lineto -5.660248e+01 5.474665e+00 lineto -5.542617e+01 5.840892e+00 lineto -5.576821e+01 6.026602e+00 lineto -closepath -gsave -6.584466e-01 6.584466e-01 8.230583e-01 setrgbcolor -fill -grestore -newpath -5.576821e+01 6.026602e+00 moveto -5.690249e+01 5.637557e+00 lineto -5.660248e+01 5.474665e+00 lineto -5.542617e+01 5.840892e+00 lineto -5.576821e+01 6.026602e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.464267e+01 6.453494e+00 moveto -5.576821e+01 6.026602e+00 lineto -5.542617e+01 5.840892e+00 lineto -5.425893e+01 6.245142e+00 lineto -5.464267e+01 6.453494e+00 lineto -closepath -gsave -6.646607e-01 6.646607e-01 8.308258e-01 setrgbcolor -fill -grestore -newpath -5.464267e+01 6.453494e+00 moveto -5.576821e+01 6.026602e+00 lineto -5.542617e+01 5.840892e+00 lineto -5.425893e+01 6.245142e+00 lineto -5.464267e+01 6.453494e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.352694e+01 6.917829e+00 moveto -5.464267e+01 6.453494e+00 lineto -5.425893e+01 6.245142e+00 lineto -5.310186e+01 6.687032e+00 lineto -5.352694e+01 6.917829e+00 lineto -closepath -gsave -6.707541e-01 6.707541e-01 8.384427e-01 setrgbcolor -fill -grestore -newpath -5.352694e+01 6.917829e+00 moveto -5.464267e+01 6.453494e+00 lineto -5.425893e+01 6.245142e+00 lineto -5.310186e+01 6.687032e+00 lineto -5.352694e+01 6.917829e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.242206e+01 7.419167e+00 moveto -5.352694e+01 6.917829e+00 lineto -5.310186e+01 6.687032e+00 lineto -5.195605e+01 7.166145e+00 lineto -5.242206e+01 7.419167e+00 lineto -closepath -gsave -6.767184e-01 6.767184e-01 8.458981e-01 setrgbcolor -fill -grestore -newpath -5.242206e+01 7.419167e+00 moveto -5.352694e+01 6.917829e+00 lineto -5.310186e+01 6.687032e+00 lineto -5.195605e+01 7.166145e+00 lineto -5.242206e+01 7.419167e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.13291e+01 7.957034e+00 moveto -5.242206e+01 7.419167e+00 lineto -5.195605e+01 7.166145e+00 lineto -5.082259e+01 7.682025e+00 lineto -5.13291e+01 7.957034e+00 lineto -closepath -gsave -6.825455e-01 6.825455e-01 8.531818e-01 setrgbcolor -fill -grestore -newpath -5.13291e+01 7.957034e+00 moveto -5.242206e+01 7.419167e+00 lineto -5.195605e+01 7.166145e+00 lineto -5.082259e+01 7.682025e+00 lineto -5.13291e+01 7.957034e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.024908e+01 8.53092e+00 moveto -5.13291e+01 7.957034e+00 lineto -5.082259e+01 7.682025e+00 lineto -4.970256e+01 8.234185e+00 lineto -5.024908e+01 8.53092e+00 lineto -closepath -gsave -6.882275e-01 6.882275e-01 8.602844e-01 setrgbcolor -fill -grestore -newpath -5.024908e+01 8.53092e+00 moveto -5.13291e+01 7.957034e+00 lineto -5.082259e+01 7.682025e+00 lineto -4.970256e+01 8.234185e+00 lineto -5.024908e+01 8.53092e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.918303e+01 9.140283e+00 moveto -5.024908e+01 8.53092e+00 lineto -4.970256e+01 8.234185e+00 lineto -4.859701e+01 8.822103e+00 lineto -4.918303e+01 9.140283e+00 lineto -closepath -gsave -6.937574e-01 6.937574e-01 8.671968e-01 setrgbcolor -fill -grestore -newpath -4.918303e+01 9.140283e+00 moveto -5.024908e+01 8.53092e+00 lineto -4.970256e+01 8.234185e+00 lineto -4.859701e+01 8.822103e+00 lineto -4.918303e+01 9.140283e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.813195e+01 9.784544e+00 moveto -4.918303e+01 9.140283e+00 lineto -4.859701e+01 8.822103e+00 lineto -4.750699e+01 9.445221e+00 lineto -4.813195e+01 9.784544e+00 lineto -closepath -gsave -6.991285e-01 6.991285e-01 8.739107e-01 setrgbcolor -fill -grestore -newpath -4.813195e+01 9.784544e+00 moveto -4.918303e+01 9.140283e+00 lineto -4.859701e+01 8.822103e+00 lineto -4.750699e+01 9.445221e+00 lineto -4.813195e+01 9.784544e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.709684e+01 1.04631e+01 moveto -4.813195e+01 9.784544e+00 lineto -4.750699e+01 9.445221e+00 lineto -4.643353e+01 1.010295e+01 lineto -4.709684e+01 1.04631e+01 lineto -closepath -gsave -7.043346e-01 7.043346e-01 8.804183e-01 setrgbcolor -fill -grestore -newpath -4.709684e+01 1.04631e+01 moveto -4.813195e+01 9.784544e+00 lineto -4.750699e+01 9.445221e+00 lineto -4.643353e+01 1.010295e+01 lineto -4.709684e+01 1.04631e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.607869e+01 1.117529e+01 moveto -4.709684e+01 1.04631e+01 lineto -4.643353e+01 1.010295e+01 lineto -4.537765e+01 1.079466e+01 lineto -4.607869e+01 1.117529e+01 lineto -closepath -gsave -7.0937e-01 7.0937e-01 8.867125e-01 setrgbcolor -fill -grestore -newpath -4.607869e+01 1.117529e+01 moveto -4.709684e+01 1.04631e+01 lineto -4.643353e+01 1.010295e+01 lineto -4.537765e+01 1.079466e+01 lineto -4.607869e+01 1.117529e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.507845e+01 1.192046e+01 moveto -4.607869e+01 1.117529e+01 lineto -4.537765e+01 1.079466e+01 lineto -4.434035e+01 1.151971e+01 lineto -4.507845e+01 1.192046e+01 lineto -closepath -gsave -7.142294e-01 7.142294e-01 8.927867e-01 setrgbcolor -fill -grestore -newpath -4.507845e+01 1.192046e+01 moveto -4.607869e+01 1.117529e+01 lineto -4.537765e+01 1.079466e+01 lineto -4.434035e+01 1.151971e+01 lineto -4.507845e+01 1.192046e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.409707e+01 1.26979e+01 moveto -4.507845e+01 1.192046e+01 lineto -4.434035e+01 1.151971e+01 lineto -4.332261e+01 1.227741e+01 lineto -4.409707e+01 1.26979e+01 lineto -closepath -gsave -7.18908e-01 7.18908e-01 8.98635e-01 setrgbcolor -fill -grestore -newpath -4.409707e+01 1.26979e+01 moveto -4.507845e+01 1.192046e+01 lineto -4.434035e+01 1.151971e+01 lineto -4.332261e+01 1.227741e+01 lineto -4.409707e+01 1.26979e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.313548e+01 1.350687e+01 moveto -4.409707e+01 1.26979e+01 lineto -4.332261e+01 1.227741e+01 lineto -4.23254e+01 1.306703e+01 lineto -4.313548e+01 1.350687e+01 lineto -closepath -gsave -7.234016e-01 7.234016e-01 9.04252e-01 setrgbcolor -fill -grestore -newpath -4.313548e+01 1.350687e+01 moveto -4.409707e+01 1.26979e+01 lineto -4.332261e+01 1.227741e+01 lineto -4.23254e+01 1.306703e+01 lineto -4.313548e+01 1.350687e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.21946e+01 1.43466e+01 moveto -4.313548e+01 1.350687e+01 lineto -4.23254e+01 1.306703e+01 lineto -4.134965e+01 1.388784e+01 lineto -4.21946e+01 1.43466e+01 lineto -closepath -gsave -7.277063e-01 7.277063e-01 9.096328e-01 setrgbcolor -fill -grestore -newpath -4.21946e+01 1.43466e+01 moveto -4.313548e+01 1.350687e+01 lineto -4.23254e+01 1.306703e+01 lineto -4.134965e+01 1.388784e+01 lineto -4.21946e+01 1.43466e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.12753e+01 1.52163e+01 moveto -4.21946e+01 1.43466e+01 lineto -4.134965e+01 1.388784e+01 lineto -4.03963e+01 1.473905e+01 lineto -4.12753e+01 1.52163e+01 lineto -closepath -gsave -7.318185e-01 7.318185e-01 9.147731e-01 setrgbcolor -fill -grestore -newpath -4.12753e+01 1.52163e+01 moveto -4.21946e+01 1.43466e+01 lineto -4.134965e+01 1.388784e+01 lineto -4.03963e+01 1.473905e+01 lineto -4.12753e+01 1.52163e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.037847e+01 1.611515e+01 moveto -4.12753e+01 1.52163e+01 lineto -4.03963e+01 1.473905e+01 lineto -3.946624e+01 1.561985e+01 lineto -4.037847e+01 1.611515e+01 lineto -closepath -gsave -7.357352e-01 7.357352e-01 9.196691e-01 setrgbcolor -fill -grestore -newpath -4.037847e+01 1.611515e+01 moveto -4.12753e+01 1.52163e+01 lineto -4.03963e+01 1.473905e+01 lineto -3.946624e+01 1.561985e+01 lineto -4.037847e+01 1.611515e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.950495e+01 1.704229e+01 moveto -4.037847e+01 1.611515e+01 lineto -3.946624e+01 1.561985e+01 lineto -3.856036e+01 1.652942e+01 lineto -3.950495e+01 1.704229e+01 lineto -closepath -gsave -7.394538e-01 7.394538e-01 9.243173e-01 setrgbcolor -fill -grestore -newpath -3.950495e+01 1.704229e+01 moveto -4.037847e+01 1.611515e+01 lineto -3.946624e+01 1.561985e+01 lineto -3.856036e+01 1.652942e+01 lineto -3.950495e+01 1.704229e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.865557e+01 1.799685e+01 moveto -3.950495e+01 1.704229e+01 lineto -3.856036e+01 1.652942e+01 lineto -3.767951e+01 1.74669e+01 lineto -3.865557e+01 1.799685e+01 lineto -closepath -gsave -7.429719e-01 7.429719e-01 9.287149e-01 setrgbcolor -fill -grestore -newpath -3.865557e+01 1.799685e+01 moveto -3.950495e+01 1.704229e+01 lineto -3.856036e+01 1.652942e+01 lineto -3.767951e+01 1.74669e+01 lineto -3.865557e+01 1.799685e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.783113e+01 1.897793e+01 moveto -3.865557e+01 1.799685e+01 lineto -3.767951e+01 1.74669e+01 lineto -3.682452e+01 1.843139e+01 lineto -3.783113e+01 1.897793e+01 lineto -closepath -gsave -7.462874e-01 7.462874e-01 9.328593e-01 setrgbcolor -fill -grestore -newpath -3.783113e+01 1.897793e+01 moveto -3.865557e+01 1.799685e+01 lineto -3.767951e+01 1.74669e+01 lineto -3.682452e+01 1.843139e+01 lineto -3.783113e+01 1.897793e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.703242e+01 1.998459e+01 moveto -3.783113e+01 1.897793e+01 lineto -3.682452e+01 1.843139e+01 lineto -3.599622e+01 1.942198e+01 lineto -3.703242e+01 1.998459e+01 lineto -closepath -gsave -7.493987e-01 7.493987e-01 9.367484e-01 setrgbcolor -fill -grestore -newpath -3.703242e+01 1.998459e+01 moveto -3.783113e+01 1.897793e+01 lineto -3.682452e+01 1.843139e+01 lineto -3.599622e+01 1.942198e+01 lineto -3.703242e+01 1.998459e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.626019e+01 2.101588e+01 moveto -3.703242e+01 1.998459e+01 lineto -3.599622e+01 1.942198e+01 lineto -3.519537e+01 2.043774e+01 lineto -3.626019e+01 2.101588e+01 lineto -closepath -gsave -7.523043e-01 7.523043e-01 9.403804e-01 setrgbcolor -fill -grestore -newpath -3.626019e+01 2.101588e+01 moveto -3.703242e+01 1.998459e+01 lineto -3.599622e+01 1.942198e+01 lineto -3.519537e+01 2.043774e+01 lineto -3.626019e+01 2.101588e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.551516e+01 2.207082e+01 moveto -3.626019e+01 2.101588e+01 lineto -3.519537e+01 2.043774e+01 lineto -3.442275e+01 2.14777e+01 lineto -3.551516e+01 2.207082e+01 lineto -closepath -gsave -7.550031e-01 7.550031e-01 9.437538e-01 setrgbcolor -fill -grestore -newpath -3.551516e+01 2.207082e+01 moveto -3.626019e+01 2.101588e+01 lineto -3.519537e+01 2.043774e+01 lineto -3.442275e+01 2.14777e+01 lineto -3.551516e+01 2.207082e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.479806e+01 2.314843e+01 moveto -3.551516e+01 2.207082e+01 lineto -3.442275e+01 2.14777e+01 lineto -3.367907e+01 2.254087e+01 lineto -3.479806e+01 2.314843e+01 lineto -closepath -gsave -7.574939e-01 7.574939e-01 9.468674e-01 setrgbcolor -fill -grestore -newpath -3.479806e+01 2.314843e+01 moveto -3.551516e+01 2.207082e+01 lineto -3.442275e+01 2.14777e+01 lineto -3.367907e+01 2.254087e+01 lineto -3.479806e+01 2.314843e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.410955e+01 2.424767e+01 moveto -3.479806e+01 2.314843e+01 lineto -3.367907e+01 2.254087e+01 lineto -3.296505e+01 2.362626e+01 lineto -3.410955e+01 2.424767e+01 lineto -closepath -gsave -7.597761e-01 7.597761e-01 9.497201e-01 setrgbcolor -fill -grestore -newpath -3.410955e+01 2.424767e+01 moveto -3.479806e+01 2.314843e+01 lineto -3.367907e+01 2.254087e+01 lineto -3.296505e+01 2.362626e+01 lineto -3.410955e+01 2.424767e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.345029e+01 2.53675e+01 moveto -3.410955e+01 2.424767e+01 lineto -3.296505e+01 2.362626e+01 lineto -3.228137e+01 2.473283e+01 lineto -3.345029e+01 2.53675e+01 lineto -closepath -gsave -7.618491e-01 7.618491e-01 9.523113e-01 setrgbcolor -fill -grestore -newpath -3.345029e+01 2.53675e+01 moveto -3.410955e+01 2.424767e+01 lineto -3.296505e+01 2.362626e+01 lineto -3.228137e+01 2.473283e+01 lineto -3.345029e+01 2.53675e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.282089e+01 2.650687e+01 moveto -3.345029e+01 2.53675e+01 lineto -3.228137e+01 2.473283e+01 lineto -3.162866e+01 2.585954e+01 lineto -3.282089e+01 2.650687e+01 lineto -closepath -gsave -7.637123e-01 7.637123e-01 9.546403e-01 setrgbcolor -fill -grestore -newpath -3.282089e+01 2.650687e+01 moveto -3.345029e+01 2.53675e+01 lineto -3.228137e+01 2.473283e+01 lineto -3.162866e+01 2.585954e+01 lineto -3.282089e+01 2.650687e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.222197e+01 2.766469e+01 moveto -3.282089e+01 2.650687e+01 lineto -3.162866e+01 2.585954e+01 lineto -3.100754e+01 2.700532e+01 lineto -3.222197e+01 2.766469e+01 lineto -closepath -gsave -7.653654e-01 7.653654e-01 9.567068e-01 setrgbcolor -fill -grestore -newpath -3.222197e+01 2.766469e+01 moveto -3.282089e+01 2.650687e+01 lineto -3.162866e+01 2.585954e+01 lineto -3.100754e+01 2.700532e+01 lineto -3.222197e+01 2.766469e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.165408e+01 2.883988e+01 moveto -3.222197e+01 2.766469e+01 lineto -3.100754e+01 2.700532e+01 lineto -3.041861e+01 2.816908e+01 lineto -3.165408e+01 2.883988e+01 lineto -closepath -gsave -7.668082e-01 7.668082e-01 9.585103e-01 setrgbcolor -fill -grestore -newpath -3.165408e+01 2.883988e+01 moveto -3.222197e+01 2.766469e+01 lineto -3.100754e+01 2.700532e+01 lineto -3.041861e+01 2.816908e+01 lineto -3.165408e+01 2.883988e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.111776e+01 3.003131e+01 moveto -3.165408e+01 2.883988e+01 lineto -3.041861e+01 2.816908e+01 lineto -2.986242e+01 2.934973e+01 lineto -3.111776e+01 3.003131e+01 lineto -closepath -gsave -7.680405e-01 7.680405e-01 9.600507e-01 setrgbcolor -fill -grestore -newpath -3.111776e+01 3.003131e+01 moveto -3.165408e+01 2.883988e+01 lineto -3.041861e+01 2.816908e+01 lineto -2.986242e+01 2.934973e+01 lineto -3.111776e+01 3.003131e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.061353e+01 3.123786e+01 moveto -3.111776e+01 3.003131e+01 lineto -2.986242e+01 2.934973e+01 lineto -2.93395e+01 3.054613e+01 lineto -3.061353e+01 3.123786e+01 lineto -closepath -gsave -7.690622e-01 7.690622e-01 9.613278e-01 setrgbcolor -fill -grestore -newpath -3.061353e+01 3.123786e+01 moveto -3.111776e+01 3.003131e+01 lineto -2.986242e+01 2.934973e+01 lineto -2.93395e+01 3.054613e+01 lineto -3.061353e+01 3.123786e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.014185e+01 3.245839e+01 moveto -3.061353e+01 3.123786e+01 lineto -2.93395e+01 3.054613e+01 lineto -2.885035e+01 3.175717e+01 lineto -3.014185e+01 3.245839e+01 lineto -closepath -gsave -7.698732e-01 7.698732e-01 9.623416e-01 setrgbcolor -fill -grestore -newpath -3.014185e+01 3.245839e+01 moveto -3.061353e+01 3.123786e+01 lineto -2.93395e+01 3.054613e+01 lineto -2.885035e+01 3.175717e+01 lineto -3.014185e+01 3.245839e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.970317e+01 3.369174e+01 moveto -3.014185e+01 3.245839e+01 lineto -2.885035e+01 3.175717e+01 lineto -2.839542e+01 3.29817e+01 lineto -2.970317e+01 3.369174e+01 lineto -closepath -gsave -7.704736e-01 7.704736e-01 9.630919e-01 setrgbcolor -fill -grestore -newpath -2.970317e+01 3.369174e+01 moveto -3.014185e+01 3.245839e+01 lineto -2.885035e+01 3.175717e+01 lineto -2.839542e+01 3.29817e+01 lineto -2.970317e+01 3.369174e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.929792e+01 3.493675e+01 moveto -2.970317e+01 3.369174e+01 lineto -2.839542e+01 3.29817e+01 lineto -2.797515e+01 3.421855e+01 lineto -2.929792e+01 3.493675e+01 lineto -closepath -gsave -7.708632e-01 7.708632e-01 9.635789e-01 setrgbcolor -fill -grestore -newpath -2.929792e+01 3.493675e+01 moveto -2.970317e+01 3.369174e+01 lineto -2.839542e+01 3.29817e+01 lineto -2.797515e+01 3.421855e+01 lineto -2.929792e+01 3.493675e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.378785e+01 4.092645e+00 moveto -6.499607e+01 4.000236e+00 lineto -6.499596e+01 4.000158e+00 lineto -6.375201e+01 4.068685e+00 lineto -6.378785e+01 4.092645e+00 lineto -closepath -gsave -6.122237e-01 6.122237e-01 7.652796e-01 setrgbcolor -fill -grestore -newpath -6.378785e+01 4.092645e+00 moveto -6.499607e+01 4.000236e+00 lineto -6.499596e+01 4.000158e+00 lineto -6.375201e+01 4.068685e+00 lineto -6.378785e+01 4.092645e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.258077e+01 4.224734e+00 moveto -6.378785e+01 4.092645e+00 lineto -6.375201e+01 4.068685e+00 lineto -6.250925e+01 4.176912e+00 lineto -6.258077e+01 4.224734e+00 lineto -closepath -gsave -6.186818e-01 6.186818e-01 7.733523e-01 setrgbcolor -fill -grestore -newpath -6.258077e+01 4.224734e+00 moveto -6.378785e+01 4.092645e+00 lineto -6.375201e+01 4.068685e+00 lineto -6.250925e+01 4.176912e+00 lineto -6.258077e+01 4.224734e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.137598e+01 4.396375e+00 moveto -6.258077e+01 4.224734e+00 lineto -6.250925e+01 4.176912e+00 lineto -6.126885e+01 4.324739e+00 lineto -6.137598e+01 4.396375e+00 lineto -closepath -gsave -6.250891e-01 6.250891e-01 7.813613e-01 setrgbcolor -fill -grestore -newpath -6.137598e+01 4.396375e+00 moveto -6.258077e+01 4.224734e+00 lineto -6.250925e+01 4.176912e+00 lineto -6.126885e+01 4.324739e+00 lineto -6.137598e+01 4.396375e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.017462e+01 4.607407e+00 moveto -6.137598e+01 4.396375e+00 lineto -6.126885e+01 4.324739e+00 lineto -6.003197e+01 4.512024e+00 lineto -6.017462e+01 4.607407e+00 lineto -closepath -gsave -6.31435e-01 6.31435e-01 7.892937e-01 setrgbcolor -fill -grestore -newpath -6.017462e+01 4.607407e+00 moveto -6.137598e+01 4.396375e+00 lineto -6.126885e+01 4.324739e+00 lineto -6.003197e+01 4.512024e+00 lineto -6.017462e+01 4.607407e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.897783e+01 4.85763e+00 moveto -6.017462e+01 4.607407e+00 lineto -6.003197e+01 4.512024e+00 lineto -5.879981e+01 4.73859e+00 lineto -5.897783e+01 4.85763e+00 lineto -closepath -gsave -6.377095e-01 6.377095e-01 7.971369e-01 setrgbcolor -fill -grestore -newpath -5.897783e+01 4.85763e+00 moveto -6.017462e+01 4.607407e+00 lineto -6.003197e+01 4.512024e+00 lineto -5.879981e+01 4.73859e+00 lineto -5.897783e+01 4.85763e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.778674e+01 5.146808e+00 moveto -5.897783e+01 4.85763e+00 lineto -5.879981e+01 4.73859e+00 lineto -5.757351e+01 5.004222e+00 lineto -5.778674e+01 5.146808e+00 lineto -closepath -gsave -6.439028e-01 6.439028e-01 8.048785e-01 setrgbcolor -fill -grestore -newpath -5.778674e+01 5.146808e+00 moveto -5.897783e+01 4.85763e+00 lineto -5.879981e+01 4.73859e+00 lineto -5.757351e+01 5.004222e+00 lineto -5.778674e+01 5.146808e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.660248e+01 5.474665e+00 moveto -5.778674e+01 5.146808e+00 lineto -5.757351e+01 5.004222e+00 lineto -5.635424e+01 5.30867e+00 lineto -5.660248e+01 5.474665e+00 lineto -closepath -gsave -6.500054e-01 6.500054e-01 8.125067e-01 setrgbcolor -fill -grestore -newpath -5.660248e+01 5.474665e+00 moveto -5.778674e+01 5.146808e+00 lineto -5.757351e+01 5.004222e+00 lineto -5.635424e+01 5.30867e+00 lineto -5.660248e+01 5.474665e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.542617e+01 5.840892e+00 moveto -5.660248e+01 5.474665e+00 lineto -5.635424e+01 5.30867e+00 lineto -5.514316e+01 5.651645e+00 lineto -5.542617e+01 5.840892e+00 lineto -closepath -gsave -6.560081e-01 6.560081e-01 8.200101e-01 setrgbcolor -fill -grestore -newpath -5.542617e+01 5.840892e+00 moveto -5.660248e+01 5.474665e+00 lineto -5.635424e+01 5.30867e+00 lineto -5.514316e+01 5.651645e+00 lineto -5.542617e+01 5.840892e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.425893e+01 6.245142e+00 moveto -5.542617e+01 5.840892e+00 lineto -5.514316e+01 5.651645e+00 lineto -5.394141e+01 6.032822e+00 lineto -5.425893e+01 6.245142e+00 lineto -closepath -gsave -6.619022e-01 6.619022e-01 8.273777e-01 setrgbcolor -fill -grestore -newpath -5.425893e+01 6.245142e+00 moveto -5.542617e+01 5.840892e+00 lineto -5.514316e+01 5.651645e+00 lineto -5.394141e+01 6.032822e+00 lineto -5.425893e+01 6.245142e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.310186e+01 6.687032e+00 moveto -5.425893e+01 6.245142e+00 lineto -5.394141e+01 6.032822e+00 lineto -5.275014e+01 6.45184e+00 lineto -5.310186e+01 6.687032e+00 lineto -closepath -gsave -6.676792e-01 6.676792e-01 8.34599e-01 setrgbcolor -fill -grestore -newpath -5.310186e+01 6.687032e+00 moveto -5.425893e+01 6.245142e+00 lineto -5.394141e+01 6.032822e+00 lineto -5.275014e+01 6.45184e+00 lineto -5.310186e+01 6.687032e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.195605e+01 7.166145e+00 moveto -5.310186e+01 6.687032e+00 lineto -5.275014e+01 6.45184e+00 lineto -5.157046e+01 6.908303e+00 lineto -5.195605e+01 7.166145e+00 lineto -closepath -gsave -6.733313e-01 6.733313e-01 8.416641e-01 setrgbcolor -fill -grestore -newpath -5.195605e+01 7.166145e+00 moveto -5.310186e+01 6.687032e+00 lineto -5.275014e+01 6.45184e+00 lineto -5.157046e+01 6.908303e+00 lineto -5.195605e+01 7.166145e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.082259e+01 7.682025e+00 moveto -5.195605e+01 7.166145e+00 lineto -5.157046e+01 6.908303e+00 lineto -5.040349e+01 7.401779e+00 lineto -5.082259e+01 7.682025e+00 lineto -closepath -gsave -6.788509e-01 6.788509e-01 8.485636e-01 setrgbcolor -fill -grestore -newpath -5.082259e+01 7.682025e+00 moveto -5.195605e+01 7.166145e+00 lineto -5.157046e+01 6.908303e+00 lineto -5.040349e+01 7.401779e+00 lineto -5.082259e+01 7.682025e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.970256e+01 8.234185e+00 moveto -5.082259e+01 7.682025e+00 lineto -5.040349e+01 7.401779e+00 lineto -4.925035e+01 7.931799e+00 lineto -4.970256e+01 8.234185e+00 lineto -closepath -gsave -6.842308e-01 6.842308e-01 8.552885e-01 setrgbcolor -fill -grestore -newpath -4.970256e+01 8.234185e+00 moveto -5.082259e+01 7.682025e+00 lineto -5.040349e+01 7.401779e+00 lineto -4.925035e+01 7.931799e+00 lineto -4.970256e+01 8.234185e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.859701e+01 8.822103e+00 moveto -4.970256e+01 8.234185e+00 lineto -4.925035e+01 7.931799e+00 lineto -4.811212e+01 8.497863e+00 lineto -4.859701e+01 8.822103e+00 lineto -closepath -gsave -6.894644e-01 6.894644e-01 8.618305e-01 setrgbcolor -fill -grestore -newpath -4.859701e+01 8.822103e+00 moveto -4.970256e+01 8.234185e+00 lineto -4.925035e+01 7.931799e+00 lineto -4.811212e+01 8.497863e+00 lineto -4.859701e+01 8.822103e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.750699e+01 9.445221e+00 moveto -4.859701e+01 8.822103e+00 lineto -4.811212e+01 8.497863e+00 lineto -4.698988e+01 9.099434e+00 lineto -4.750699e+01 9.445221e+00 lineto -closepath -gsave -6.945454e-01 6.945454e-01 8.681817e-01 setrgbcolor -fill -grestore -newpath -4.750699e+01 9.445221e+00 moveto -4.859701e+01 8.822103e+00 lineto -4.811212e+01 8.497863e+00 lineto -4.698988e+01 9.099434e+00 lineto -4.750699e+01 9.445221e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.643353e+01 1.010295e+01 moveto -4.750699e+01 9.445221e+00 lineto -4.698988e+01 9.099434e+00 lineto -4.588469e+01 9.735943e+00 lineto -4.643353e+01 1.010295e+01 lineto -closepath -gsave -6.99468e-01 6.99468e-01 8.74335e-01 setrgbcolor -fill -grestore -newpath -4.643353e+01 1.010295e+01 moveto -4.750699e+01 9.445221e+00 lineto -4.698988e+01 9.099434e+00 lineto -4.588469e+01 9.735943e+00 lineto -4.643353e+01 1.010295e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.537765e+01 1.079466e+01 moveto -4.643353e+01 1.010295e+01 lineto -4.588469e+01 9.735943e+00 lineto -4.47976e+01 1.040679e+01 lineto -4.537765e+01 1.079466e+01 lineto -closepath -gsave -7.042268e-01 7.042268e-01 8.802835e-01 setrgbcolor -fill -grestore -newpath -4.537765e+01 1.079466e+01 moveto -4.643353e+01 1.010295e+01 lineto -4.588469e+01 9.735943e+00 lineto -4.47976e+01 1.040679e+01 lineto -4.537765e+01 1.079466e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.434035e+01 1.151971e+01 moveto -4.537765e+01 1.079466e+01 lineto -4.47976e+01 1.040679e+01 lineto -4.372963e+01 1.111133e+01 lineto -4.434035e+01 1.151971e+01 lineto -closepath -gsave -7.088169e-01 7.088169e-01 8.860211e-01 setrgbcolor -fill -grestore -newpath -4.434035e+01 1.151971e+01 moveto -4.537765e+01 1.079466e+01 lineto -4.47976e+01 1.040679e+01 lineto -4.372963e+01 1.111133e+01 lineto -4.434035e+01 1.151971e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.332261e+01 1.227741e+01 moveto -4.434035e+01 1.151971e+01 lineto -4.372963e+01 1.111133e+01 lineto -4.268181e+01 1.184891e+01 lineto -4.332261e+01 1.227741e+01 lineto -closepath -gsave -7.132337e-01 7.132337e-01 8.915422e-01 setrgbcolor -fill -grestore -newpath -4.332261e+01 1.227741e+01 moveto -4.434035e+01 1.151971e+01 lineto -4.372963e+01 1.111133e+01 lineto -4.268181e+01 1.184891e+01 lineto -4.332261e+01 1.227741e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.23254e+01 1.306703e+01 moveto -4.332261e+01 1.227741e+01 lineto -4.268181e+01 1.184891e+01 lineto -4.165511e+01 1.261882e+01 lineto -4.23254e+01 1.306703e+01 lineto -closepath -gsave -7.174732e-01 7.174732e-01 8.968415e-01 setrgbcolor -fill -grestore -newpath -4.23254e+01 1.306703e+01 moveto -4.332261e+01 1.227741e+01 lineto -4.268181e+01 1.184891e+01 lineto -4.165511e+01 1.261882e+01 lineto -4.23254e+01 1.306703e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.134965e+01 1.388784e+01 moveto -4.23254e+01 1.306703e+01 lineto -4.165511e+01 1.261882e+01 lineto -4.065052e+01 1.342034e+01 lineto -4.134965e+01 1.388784e+01 lineto -closepath -gsave -7.215315e-01 7.215315e-01 9.019144e-01 setrgbcolor -fill -grestore -newpath -4.134965e+01 1.388784e+01 moveto -4.23254e+01 1.306703e+01 lineto -4.165511e+01 1.261882e+01 lineto -4.065052e+01 1.342034e+01 lineto -4.134965e+01 1.388784e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.03963e+01 1.473905e+01 moveto -4.134965e+01 1.388784e+01 lineto -4.065052e+01 1.342034e+01 lineto -3.966899e+01 1.42527e+01 lineto -4.03963e+01 1.473905e+01 lineto -closepath -gsave -7.254053e-01 7.254053e-01 9.067566e-01 setrgbcolor -fill -grestore -newpath -4.03963e+01 1.473905e+01 moveto -4.134965e+01 1.388784e+01 lineto -4.065052e+01 1.342034e+01 lineto -3.966899e+01 1.42527e+01 lineto -4.03963e+01 1.473905e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.946624e+01 1.561985e+01 moveto -4.03963e+01 1.473905e+01 lineto -3.966899e+01 1.42527e+01 lineto -3.871143e+01 1.511512e+01 lineto -3.946624e+01 1.561985e+01 lineto -closepath -gsave -7.290916e-01 7.290916e-01 9.113645e-01 setrgbcolor -fill -grestore -newpath -3.946624e+01 1.561985e+01 moveto -4.03963e+01 1.473905e+01 lineto -3.966899e+01 1.42527e+01 lineto -3.871143e+01 1.511512e+01 lineto -3.946624e+01 1.561985e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.856036e+01 1.652942e+01 moveto -3.946624e+01 1.561985e+01 lineto -3.871143e+01 1.511512e+01 lineto -3.777877e+01 1.600679e+01 lineto -3.856036e+01 1.652942e+01 lineto -closepath -gsave -7.325877e-01 7.325877e-01 9.157347e-01 setrgbcolor -fill -grestore -newpath -3.856036e+01 1.652942e+01 moveto -3.946624e+01 1.561985e+01 lineto -3.871143e+01 1.511512e+01 lineto -3.777877e+01 1.600679e+01 lineto -3.856036e+01 1.652942e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.767951e+01 1.74669e+01 moveto -3.856036e+01 1.652942e+01 lineto -3.777877e+01 1.600679e+01 lineto -3.687188e+01 1.692685e+01 lineto -3.767951e+01 1.74669e+01 lineto -closepath -gsave -7.358913e-01 7.358913e-01 9.198642e-01 setrgbcolor -fill -grestore -newpath -3.767951e+01 1.74669e+01 moveto -3.856036e+01 1.652942e+01 lineto -3.777877e+01 1.600679e+01 lineto -3.687188e+01 1.692685e+01 lineto -3.767951e+01 1.74669e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.682452e+01 1.843139e+01 moveto -3.767951e+01 1.74669e+01 lineto -3.687188e+01 1.692685e+01 lineto -3.599163e+01 1.787444e+01 lineto -3.682452e+01 1.843139e+01 lineto -closepath -gsave -7.390003e-01 7.390003e-01 9.237504e-01 setrgbcolor -fill -grestore -newpath -3.682452e+01 1.843139e+01 moveto -3.767951e+01 1.74669e+01 lineto -3.687188e+01 1.692685e+01 lineto -3.599163e+01 1.787444e+01 lineto -3.682452e+01 1.843139e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.599622e+01 1.942198e+01 moveto -3.682452e+01 1.843139e+01 lineto -3.599163e+01 1.787444e+01 lineto -3.513884e+01 1.884866e+01 lineto -3.599622e+01 1.942198e+01 lineto -closepath -gsave -7.419129e-01 7.419129e-01 9.273912e-01 setrgbcolor -fill -grestore -newpath -3.599622e+01 1.942198e+01 moveto -3.682452e+01 1.843139e+01 lineto -3.599163e+01 1.787444e+01 lineto -3.513884e+01 1.884866e+01 lineto -3.599622e+01 1.942198e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.519537e+01 2.043774e+01 moveto -3.599622e+01 1.942198e+01 lineto -3.513884e+01 1.884866e+01 lineto -3.431432e+01 1.984859e+01 lineto -3.519537e+01 2.043774e+01 lineto -closepath -gsave -7.446276e-01 7.446276e-01 9.307845e-01 setrgbcolor -fill -grestore -newpath -3.519537e+01 2.043774e+01 moveto -3.599622e+01 1.942198e+01 lineto -3.513884e+01 1.884866e+01 lineto -3.431432e+01 1.984859e+01 lineto -3.519537e+01 2.043774e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.442275e+01 2.14777e+01 moveto -3.519537e+01 2.043774e+01 lineto -3.431432e+01 1.984859e+01 lineto -3.351885e+01 2.087327e+01 lineto -3.442275e+01 2.14777e+01 lineto -closepath -gsave -7.471431e-01 7.471431e-01 9.339289e-01 setrgbcolor -fill -grestore -newpath -3.442275e+01 2.14777e+01 moveto -3.519537e+01 2.043774e+01 lineto -3.431432e+01 1.984859e+01 lineto -3.351885e+01 2.087327e+01 lineto -3.442275e+01 2.14777e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.367907e+01 2.254087e+01 moveto -3.442275e+01 2.14777e+01 lineto -3.351885e+01 2.087327e+01 lineto -3.275319e+01 2.192175e+01 lineto -3.367907e+01 2.254087e+01 lineto -closepath -gsave -7.494582e-01 7.494582e-01 9.368228e-01 setrgbcolor -fill -grestore -newpath -3.367907e+01 2.254087e+01 moveto -3.442275e+01 2.14777e+01 lineto -3.351885e+01 2.087327e+01 lineto -3.275319e+01 2.192175e+01 lineto -3.367907e+01 2.254087e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.296505e+01 2.362626e+01 moveto -3.367907e+01 2.254087e+01 lineto -3.275319e+01 2.192175e+01 lineto -3.201807e+01 2.299302e+01 lineto -3.296505e+01 2.362626e+01 lineto -closepath -gsave -7.515721e-01 7.515721e-01 9.394652e-01 setrgbcolor -fill -grestore -newpath -3.296505e+01 2.362626e+01 moveto -3.367907e+01 2.254087e+01 lineto -3.275319e+01 2.192175e+01 lineto -3.201807e+01 2.299302e+01 lineto -3.296505e+01 2.362626e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.228137e+01 2.473283e+01 moveto -3.296505e+01 2.362626e+01 lineto -3.201807e+01 2.299302e+01 lineto -3.131417e+01 2.408608e+01 lineto -3.228137e+01 2.473283e+01 lineto -closepath -gsave -7.53484e-01 7.53484e-01 9.418551e-01 setrgbcolor -fill -grestore -newpath -3.228137e+01 2.473283e+01 moveto -3.296505e+01 2.362626e+01 lineto -3.201807e+01 2.299302e+01 lineto -3.131417e+01 2.408608e+01 lineto -3.228137e+01 2.473283e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.162866e+01 2.585954e+01 moveto -3.228137e+01 2.473283e+01 lineto -3.131417e+01 2.408608e+01 lineto -3.064216e+01 2.519989e+01 lineto -3.162866e+01 2.585954e+01 lineto -closepath -gsave -7.551933e-01 7.551933e-01 9.439917e-01 setrgbcolor -fill -grestore -newpath -3.162866e+01 2.585954e+01 moveto -3.228137e+01 2.473283e+01 lineto -3.131417e+01 2.408608e+01 lineto -3.064216e+01 2.519989e+01 lineto -3.162866e+01 2.585954e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.100754e+01 2.700532e+01 moveto -3.162866e+01 2.585954e+01 lineto -3.064216e+01 2.519989e+01 lineto -3.000269e+01 2.633339e+01 lineto -3.100754e+01 2.700532e+01 lineto -closepath -gsave -7.566995e-01 7.566995e-01 9.458744e-01 setrgbcolor -fill -grestore -newpath -3.100754e+01 2.700532e+01 moveto -3.162866e+01 2.585954e+01 lineto -3.064216e+01 2.519989e+01 lineto -3.000269e+01 2.633339e+01 lineto -3.100754e+01 2.700532e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.041861e+01 2.816908e+01 moveto -3.100754e+01 2.700532e+01 lineto -3.000269e+01 2.633339e+01 lineto -2.939635e+01 2.748551e+01 lineto -3.041861e+01 2.816908e+01 lineto -closepath -gsave -7.580023e-01 7.580023e-01 9.475028e-01 setrgbcolor -fill -grestore -newpath -3.041861e+01 2.816908e+01 moveto -3.100754e+01 2.700532e+01 lineto -3.000269e+01 2.633339e+01 lineto -2.939635e+01 2.748551e+01 lineto -3.041861e+01 2.816908e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.986242e+01 2.934973e+01 moveto -3.041861e+01 2.816908e+01 lineto -2.939635e+01 2.748551e+01 lineto -2.882372e+01 2.865516e+01 lineto -2.986242e+01 2.934973e+01 lineto -closepath -gsave -7.591012e-01 7.591012e-01 9.488765e-01 setrgbcolor -fill -grestore -newpath -2.986242e+01 2.934973e+01 moveto -3.041861e+01 2.816908e+01 lineto -2.939635e+01 2.748551e+01 lineto -2.882372e+01 2.865516e+01 lineto -2.986242e+01 2.934973e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.93395e+01 3.054613e+01 moveto -2.986242e+01 2.934973e+01 lineto -2.882372e+01 2.865516e+01 lineto -2.828534e+01 2.984123e+01 lineto -2.93395e+01 3.054613e+01 lineto -closepath -gsave -7.599961e-01 7.599961e-01 9.499952e-01 setrgbcolor -fill -grestore -newpath -2.93395e+01 3.054613e+01 moveto -2.986242e+01 2.934973e+01 lineto -2.882372e+01 2.865516e+01 lineto -2.828534e+01 2.984123e+01 lineto -2.93395e+01 3.054613e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.885035e+01 3.175717e+01 moveto -2.93395e+01 3.054613e+01 lineto -2.828534e+01 2.984123e+01 lineto -2.778173e+01 3.10426e+01 lineto -2.885035e+01 3.175717e+01 lineto -closepath -gsave -7.606869e-01 7.606869e-01 9.508586e-01 setrgbcolor -fill -grestore -newpath -2.885035e+01 3.175717e+01 moveto -2.93395e+01 3.054613e+01 lineto -2.828534e+01 2.984123e+01 lineto -2.778173e+01 3.10426e+01 lineto -2.885035e+01 3.175717e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.839542e+01 3.29817e+01 moveto -2.885035e+01 3.175717e+01 lineto -2.778173e+01 3.10426e+01 lineto -2.731335e+01 3.225813e+01 lineto -2.839542e+01 3.29817e+01 lineto -closepath -gsave -7.611734e-01 7.611734e-01 9.514667e-01 setrgbcolor -fill -grestore -newpath -2.839542e+01 3.29817e+01 moveto -2.885035e+01 3.175717e+01 lineto -2.778173e+01 3.10426e+01 lineto -2.731335e+01 3.225813e+01 lineto -2.839542e+01 3.29817e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.797515e+01 3.421855e+01 moveto -2.839542e+01 3.29817e+01 lineto -2.731335e+01 3.225813e+01 lineto -2.688066e+01 3.348668e+01 lineto -2.797515e+01 3.421855e+01 lineto -closepath -gsave -7.614555e-01 7.614555e-01 9.518194e-01 setrgbcolor -fill -grestore -newpath -2.797515e+01 3.421855e+01 moveto -2.839542e+01 3.29817e+01 lineto -2.731335e+01 3.225813e+01 lineto -2.688066e+01 3.348668e+01 lineto -2.797515e+01 3.421855e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.375201e+01 4.068685e+00 moveto -6.499596e+01 4.000158e+00 lineto -6.499587e+01 4.000079e+00 lineto -6.372387e+01 4.044424e+00 lineto -6.375201e+01 4.068685e+00 lineto -closepath -gsave -6.120417e-01 6.120417e-01 7.650522e-01 setrgbcolor -fill -grestore -newpath -6.375201e+01 4.068685e+00 moveto -6.499596e+01 4.000158e+00 lineto -6.499587e+01 4.000079e+00 lineto -6.372387e+01 4.044424e+00 lineto -6.375201e+01 4.068685e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.250925e+01 4.176912e+00 moveto -6.375201e+01 4.068685e+00 lineto -6.372387e+01 4.044424e+00 lineto -6.245309e+01 4.128492e+00 lineto -6.250925e+01 4.176912e+00 lineto -closepath -gsave -6.18136e-01 6.18136e-01 7.726701e-01 setrgbcolor -fill -grestore -newpath -6.250925e+01 4.176912e+00 moveto -6.375201e+01 4.068685e+00 lineto -6.372387e+01 4.044424e+00 lineto -6.245309e+01 4.128492e+00 lineto -6.250925e+01 4.176912e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.126885e+01 4.324739e+00 moveto -6.250925e+01 4.176912e+00 lineto -6.245309e+01 4.128492e+00 lineto -6.118472e+01 4.252205e+00 lineto -6.126885e+01 4.324739e+00 lineto -closepath -gsave -6.241773e-01 6.241773e-01 7.802216e-01 setrgbcolor -fill -grestore -newpath -6.126885e+01 4.324739e+00 moveto -6.250925e+01 4.176912e+00 lineto -6.245309e+01 4.128492e+00 lineto -6.118472e+01 4.252205e+00 lineto -6.126885e+01 4.324739e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.003197e+01 4.512024e+00 moveto -6.126885e+01 4.324739e+00 lineto -6.118472e+01 4.252205e+00 lineto -5.991996e+01 4.415445e+00 lineto -6.003197e+01 4.512024e+00 lineto -closepath -gsave -6.301561e-01 6.301561e-01 7.876951e-01 setrgbcolor -fill -grestore -newpath -6.003197e+01 4.512024e+00 moveto -6.126885e+01 4.324739e+00 lineto -6.118472e+01 4.252205e+00 lineto -5.991996e+01 4.415445e+00 lineto -6.003197e+01 4.512024e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.879981e+01 4.73859e+00 moveto -6.003197e+01 4.512024e+00 lineto -5.991996e+01 4.415445e+00 lineto -5.866001e+01 4.618058e+00 lineto -5.879981e+01 4.73859e+00 lineto -closepath -gsave -6.360631e-01 6.360631e-01 7.950789e-01 setrgbcolor -fill -grestore -newpath -5.879981e+01 4.73859e+00 moveto -6.003197e+01 4.512024e+00 lineto -5.991996e+01 4.415445e+00 lineto -5.866001e+01 4.618058e+00 lineto -5.879981e+01 4.73859e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.757351e+01 5.004222e+00 moveto -5.879981e+01 4.73859e+00 lineto -5.866001e+01 4.618058e+00 lineto -5.740606e+01 4.859851e+00 lineto -5.757351e+01 5.004222e+00 lineto -closepath -gsave -6.418895e-01 6.418895e-01 8.023619e-01 setrgbcolor -fill -grestore -newpath -5.757351e+01 5.004222e+00 moveto -5.879981e+01 4.73859e+00 lineto -5.866001e+01 4.618058e+00 lineto -5.740606e+01 4.859851e+00 lineto -5.757351e+01 5.004222e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.635424e+01 5.30867e+00 moveto -5.757351e+01 5.004222e+00 lineto -5.740606e+01 4.859851e+00 lineto -5.615931e+01 5.140597e+00 lineto -5.635424e+01 5.30867e+00 lineto -closepath -gsave -6.476266e-01 6.476266e-01 8.095332e-01 setrgbcolor -fill -grestore -newpath -5.635424e+01 5.30867e+00 moveto -5.757351e+01 5.004222e+00 lineto -5.740606e+01 4.859851e+00 lineto -5.615931e+01 5.140597e+00 lineto -5.635424e+01 5.30867e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.514316e+01 5.651645e+00 moveto -5.635424e+01 5.30867e+00 lineto -5.615931e+01 5.140597e+00 lineto -5.492092e+01 5.460028e+00 lineto -5.514316e+01 5.651645e+00 lineto -closepath -gsave -6.532661e-01 6.532661e-01 8.165826e-01 setrgbcolor -fill -grestore -newpath -5.514316e+01 5.651645e+00 moveto -5.635424e+01 5.30867e+00 lineto -5.615931e+01 5.140597e+00 lineto -5.492092e+01 5.460028e+00 lineto -5.514316e+01 5.651645e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.394141e+01 6.032822e+00 moveto -5.514316e+01 5.651645e+00 lineto -5.492092e+01 5.460028e+00 lineto -5.369208e+01 5.817843e+00 lineto -5.394141e+01 6.032822e+00 lineto -closepath -gsave -6.587999e-01 6.587999e-01 8.234999e-01 setrgbcolor -fill -grestore -newpath -5.394141e+01 6.032822e+00 moveto -5.514316e+01 5.651645e+00 lineto -5.492092e+01 5.460028e+00 lineto -5.369208e+01 5.817843e+00 lineto -5.394141e+01 6.032822e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.275014e+01 6.45184e+00 moveto -5.394141e+01 6.032822e+00 lineto -5.369208e+01 5.817843e+00 lineto -5.247394e+01 6.213703e+00 lineto -5.275014e+01 6.45184e+00 lineto -closepath -gsave -6.642204e-01 6.642204e-01 8.302756e-01 setrgbcolor -fill -grestore -newpath -5.275014e+01 6.45184e+00 moveto -5.394141e+01 6.032822e+00 lineto -5.369208e+01 5.817843e+00 lineto -5.247394e+01 6.213703e+00 lineto -5.275014e+01 6.45184e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.157046e+01 6.908303e+00 moveto -5.275014e+01 6.45184e+00 lineto -5.247394e+01 6.213703e+00 lineto -5.126766e+01 6.647233e+00 lineto -5.157046e+01 6.908303e+00 lineto -closepath -gsave -6.695204e-01 6.695204e-01 8.369005e-01 setrgbcolor -fill -grestore -newpath -5.157046e+01 6.908303e+00 moveto -5.275014e+01 6.45184e+00 lineto -5.247394e+01 6.213703e+00 lineto -5.126766e+01 6.647233e+00 lineto -5.157046e+01 6.908303e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.040349e+01 7.401779e+00 moveto -5.157046e+01 6.908303e+00 lineto -5.126766e+01 6.647233e+00 lineto -5.007439e+01 7.118023e+00 lineto -5.040349e+01 7.401779e+00 lineto -closepath -gsave -6.746929e-01 6.746929e-01 8.433661e-01 setrgbcolor -fill -grestore -newpath -5.040349e+01 7.401779e+00 moveto -5.157046e+01 6.908303e+00 lineto -5.126766e+01 6.647233e+00 lineto -5.007439e+01 7.118023e+00 lineto -5.040349e+01 7.401779e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.925035e+01 7.931799e+00 moveto -5.040349e+01 7.401779e+00 lineto -5.007439e+01 7.118023e+00 lineto -4.889524e+01 7.625626e+00 lineto -4.925035e+01 7.931799e+00 lineto -closepath -gsave -6.797314e-01 6.797314e-01 8.496642e-01 setrgbcolor -fill -grestore -newpath -4.925035e+01 7.931799e+00 moveto -5.040349e+01 7.401779e+00 lineto -5.007439e+01 7.118023e+00 lineto -4.889524e+01 7.625626e+00 lineto -4.925035e+01 7.931799e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.811212e+01 8.497863e+00 moveto -4.925035e+01 7.931799e+00 lineto -4.889524e+01 7.625626e+00 lineto -4.773135e+01 8.169563e+00 lineto -4.811212e+01 8.497863e+00 lineto -closepath -gsave -6.846297e-01 6.846297e-01 8.557871e-01 setrgbcolor -fill -grestore -newpath -4.811212e+01 8.497863e+00 moveto -4.925035e+01 7.931799e+00 lineto -4.889524e+01 7.625626e+00 lineto -4.773135e+01 8.169563e+00 lineto -4.811212e+01 8.497863e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.698988e+01 9.099434e+00 moveto -4.811212e+01 8.497863e+00 lineto -4.773135e+01 8.169563e+00 lineto -4.65838e+01 8.749318e+00 lineto -4.698988e+01 9.099434e+00 lineto -closepath -gsave -6.89382e-01 6.89382e-01 8.617275e-01 setrgbcolor -fill -grestore -newpath -4.698988e+01 9.099434e+00 moveto -4.811212e+01 8.497863e+00 lineto -4.773135e+01 8.169563e+00 lineto -4.65838e+01 8.749318e+00 lineto -4.698988e+01 9.099434e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.588469e+01 9.735943e+00 moveto -4.698988e+01 9.099434e+00 lineto -4.65838e+01 8.749318e+00 lineto -4.545369e+01 9.364342e+00 lineto -4.588469e+01 9.735943e+00 lineto -closepath -gsave -6.93983e-01 6.93983e-01 8.674787e-01 setrgbcolor -fill -grestore -newpath -4.588469e+01 9.735943e+00 moveto -4.698988e+01 9.099434e+00 lineto -4.65838e+01 8.749318e+00 lineto -4.545369e+01 9.364342e+00 lineto -4.588469e+01 9.735943e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.47976e+01 1.040679e+01 moveto -4.588469e+01 9.735943e+00 lineto -4.545369e+01 9.364342e+00 lineto -4.434209e+01 1.001405e+01 lineto -4.47976e+01 1.040679e+01 lineto -closepath -gsave -6.984276e-01 6.984276e-01 8.730345e-01 setrgbcolor -fill -grestore -newpath -4.47976e+01 1.040679e+01 moveto -4.588469e+01 9.735943e+00 lineto -4.545369e+01 9.364342e+00 lineto -4.434209e+01 1.001405e+01 lineto -4.47976e+01 1.040679e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.372963e+01 1.111133e+01 moveto -4.47976e+01 1.040679e+01 lineto -4.434209e+01 1.001405e+01 lineto -4.325005e+01 1.069784e+01 lineto -4.372963e+01 1.111133e+01 lineto -closepath -gsave -7.027113e-01 7.027113e-01 8.783891e-01 setrgbcolor -fill -grestore -newpath -4.372963e+01 1.111133e+01 moveto -4.47976e+01 1.040679e+01 lineto -4.434209e+01 1.001405e+01 lineto -4.325005e+01 1.069784e+01 lineto -4.372963e+01 1.111133e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.268181e+01 1.184891e+01 moveto -4.372963e+01 1.111133e+01 lineto -4.325005e+01 1.069784e+01 lineto -4.21786e+01 1.141504e+01 lineto -4.268181e+01 1.184891e+01 lineto -closepath -gsave -7.068297e-01 7.068297e-01 8.835371e-01 setrgbcolor -fill -grestore -newpath -4.268181e+01 1.184891e+01 moveto -4.372963e+01 1.111133e+01 lineto -4.325005e+01 1.069784e+01 lineto -4.21786e+01 1.141504e+01 lineto -4.268181e+01 1.184891e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.165511e+01 1.261882e+01 moveto -4.268181e+01 1.184891e+01 lineto -4.21786e+01 1.141504e+01 lineto -4.112876e+01 1.2165e+01 lineto -4.165511e+01 1.261882e+01 lineto -closepath -gsave -7.107789e-01 7.107789e-01 8.884737e-01 setrgbcolor -fill -grestore -newpath -4.165511e+01 1.261882e+01 moveto -4.268181e+01 1.184891e+01 lineto -4.21786e+01 1.141504e+01 lineto -4.112876e+01 1.2165e+01 lineto -4.165511e+01 1.261882e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.065052e+01 1.342034e+01 moveto -4.165511e+01 1.261882e+01 lineto -4.112876e+01 1.2165e+01 lineto -4.010152e+01 1.294698e+01 lineto -4.065052e+01 1.342034e+01 lineto -closepath -gsave -7.145555e-01 7.145555e-01 8.931944e-01 setrgbcolor -fill -grestore -newpath -4.065052e+01 1.342034e+01 moveto -4.165511e+01 1.261882e+01 lineto -4.112876e+01 1.2165e+01 lineto -4.010152e+01 1.294698e+01 lineto -4.065052e+01 1.342034e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.966899e+01 1.42527e+01 moveto -4.065052e+01 1.342034e+01 lineto -4.010152e+01 1.294698e+01 lineto -3.909785e+01 1.376027e+01 lineto -3.966899e+01 1.42527e+01 lineto -closepath -gsave -7.181561e-01 7.181561e-01 8.976951e-01 setrgbcolor -fill -grestore -newpath -3.966899e+01 1.42527e+01 moveto -4.065052e+01 1.342034e+01 lineto -4.010152e+01 1.294698e+01 lineto -3.909785e+01 1.376027e+01 lineto -3.966899e+01 1.42527e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.871143e+01 1.511512e+01 moveto -3.966899e+01 1.42527e+01 lineto -3.909785e+01 1.376027e+01 lineto -3.811871e+01 1.460408e+01 lineto -3.871143e+01 1.511512e+01 lineto -closepath -gsave -7.215779e-01 7.215779e-01 9.019723e-01 setrgbcolor -fill -grestore -newpath -3.871143e+01 1.511512e+01 moveto -3.966899e+01 1.42527e+01 lineto -3.909785e+01 1.376027e+01 lineto -3.811871e+01 1.460408e+01 lineto -3.871143e+01 1.511512e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.777877e+01 1.600679e+01 moveto -3.871143e+01 1.511512e+01 lineto -3.811871e+01 1.460408e+01 lineto -3.716502e+01 1.547761e+01 lineto -3.777877e+01 1.600679e+01 lineto -closepath -gsave -7.248181e-01 7.248181e-01 9.060227e-01 setrgbcolor -fill -grestore -newpath -3.777877e+01 1.600679e+01 moveto -3.871143e+01 1.511512e+01 lineto -3.811871e+01 1.460408e+01 lineto -3.716502e+01 1.547761e+01 lineto -3.777877e+01 1.600679e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.687188e+01 1.692685e+01 moveto -3.777877e+01 1.600679e+01 lineto -3.716502e+01 1.547761e+01 lineto -3.623768e+01 1.638004e+01 lineto -3.687188e+01 1.692685e+01 lineto -closepath -gsave -7.278746e-01 7.278746e-01 9.098433e-01 setrgbcolor -fill -grestore -newpath -3.687188e+01 1.692685e+01 moveto -3.777877e+01 1.600679e+01 lineto -3.716502e+01 1.547761e+01 lineto -3.623768e+01 1.638004e+01 lineto -3.687188e+01 1.692685e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.599163e+01 1.787444e+01 moveto -3.687188e+01 1.692685e+01 lineto -3.623768e+01 1.638004e+01 lineto -3.533758e+01 1.731052e+01 lineto -3.599163e+01 1.787444e+01 lineto -closepath -gsave -7.307452e-01 7.307452e-01 9.134316e-01 setrgbcolor -fill -grestore -newpath -3.599163e+01 1.787444e+01 moveto -3.687188e+01 1.692685e+01 lineto -3.623768e+01 1.638004e+01 lineto -3.533758e+01 1.731052e+01 lineto -3.599163e+01 1.787444e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.513884e+01 1.884866e+01 moveto -3.599163e+01 1.787444e+01 lineto -3.533758e+01 1.731052e+01 lineto -3.446556e+01 1.826816e+01 lineto -3.513884e+01 1.884866e+01 lineto -closepath -gsave -7.334282e-01 7.334282e-01 9.167852e-01 setrgbcolor -fill -grestore -newpath -3.513884e+01 1.884866e+01 moveto -3.599163e+01 1.787444e+01 lineto -3.533758e+01 1.731052e+01 lineto -3.446556e+01 1.826816e+01 lineto -3.513884e+01 1.884866e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.431432e+01 1.984859e+01 moveto -3.513884e+01 1.884866e+01 lineto -3.446556e+01 1.826816e+01 lineto -3.362245e+01 1.925206e+01 lineto -3.431432e+01 1.984859e+01 lineto -closepath -gsave -7.359218e-01 7.359218e-01 9.199023e-01 setrgbcolor -fill -grestore -newpath -3.431432e+01 1.984859e+01 moveto -3.513884e+01 1.884866e+01 lineto -3.446556e+01 1.826816e+01 lineto -3.362245e+01 1.925206e+01 lineto -3.431432e+01 1.984859e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.351885e+01 2.087327e+01 moveto -3.431432e+01 1.984859e+01 lineto -3.362245e+01 1.925206e+01 lineto -3.280905e+01 2.026128e+01 lineto -3.351885e+01 2.087327e+01 lineto -closepath -gsave -7.382248e-01 7.382248e-01 9.22781e-01 setrgbcolor -fill -grestore -newpath -3.351885e+01 2.087327e+01 moveto -3.431432e+01 1.984859e+01 lineto -3.362245e+01 1.925206e+01 lineto -3.280905e+01 2.026128e+01 lineto -3.351885e+01 2.087327e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.275319e+01 2.192175e+01 moveto -3.351885e+01 2.087327e+01 lineto -3.280905e+01 2.026128e+01 lineto -3.202613e+01 2.129487e+01 lineto -3.275319e+01 2.192175e+01 lineto -closepath -gsave -7.40336e-01 7.40336e-01 9.2542e-01 setrgbcolor -fill -grestore -newpath -3.275319e+01 2.192175e+01 moveto -3.351885e+01 2.087327e+01 lineto -3.280905e+01 2.026128e+01 lineto -3.202613e+01 2.129487e+01 lineto -3.275319e+01 2.192175e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.201807e+01 2.299302e+01 moveto -3.275319e+01 2.192175e+01 lineto -3.202613e+01 2.129487e+01 lineto -3.127442e+01 2.235186e+01 lineto -3.201807e+01 2.299302e+01 lineto -closepath -gsave -7.422542e-01 7.422542e-01 9.278178e-01 setrgbcolor -fill -grestore -newpath -3.201807e+01 2.299302e+01 moveto -3.275319e+01 2.192175e+01 lineto -3.202613e+01 2.129487e+01 lineto -3.127442e+01 2.235186e+01 lineto -3.201807e+01 2.299302e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.131417e+01 2.408608e+01 moveto -3.201807e+01 2.299302e+01 lineto -3.127442e+01 2.235186e+01 lineto -3.055465e+01 2.343123e+01 lineto -3.131417e+01 2.408608e+01 lineto -closepath -gsave -7.439788e-01 7.439788e-01 9.299735e-01 setrgbcolor -fill -grestore -newpath -3.131417e+01 2.408608e+01 moveto -3.201807e+01 2.299302e+01 lineto -3.127442e+01 2.235186e+01 lineto -3.055465e+01 2.343123e+01 lineto -3.131417e+01 2.408608e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.064216e+01 2.519989e+01 moveto -3.131417e+01 2.408608e+01 lineto -3.055465e+01 2.343123e+01 lineto -2.98675e+01 2.453197e+01 lineto -3.064216e+01 2.519989e+01 lineto -closepath -gsave -7.455089e-01 7.455089e-01 9.318861e-01 setrgbcolor -fill -grestore -newpath -3.064216e+01 2.519989e+01 moveto -3.131417e+01 2.408608e+01 lineto -3.055465e+01 2.343123e+01 lineto -2.98675e+01 2.453197e+01 lineto -3.064216e+01 2.519989e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.000269e+01 2.633339e+01 moveto -3.064216e+01 2.519989e+01 lineto -2.98675e+01 2.453197e+01 lineto -2.92136e+01 2.565304e+01 lineto -3.000269e+01 2.633339e+01 lineto -closepath -gsave -7.46844e-01 7.46844e-01 9.33555e-01 setrgbcolor -fill -grestore -newpath -3.000269e+01 2.633339e+01 moveto -3.064216e+01 2.519989e+01 lineto -2.98675e+01 2.453197e+01 lineto -2.92136e+01 2.565304e+01 lineto -3.000269e+01 2.633339e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.939635e+01 2.748551e+01 moveto -3.000269e+01 2.633339e+01 lineto -2.92136e+01 2.565304e+01 lineto -2.859359e+01 2.679337e+01 lineto -2.939635e+01 2.748551e+01 lineto -closepath -gsave -7.479835e-01 7.479835e-01 9.349794e-01 setrgbcolor -fill -grestore -newpath -2.939635e+01 2.748551e+01 moveto -3.000269e+01 2.633339e+01 lineto -2.92136e+01 2.565304e+01 lineto -2.859359e+01 2.679337e+01 lineto -2.939635e+01 2.748551e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.882372e+01 2.865516e+01 moveto -2.939635e+01 2.748551e+01 lineto -2.859359e+01 2.679337e+01 lineto -2.800805e+01 2.795189e+01 lineto -2.882372e+01 2.865516e+01 lineto -closepath -gsave -7.489271e-01 7.489271e-01 9.361589e-01 setrgbcolor -fill -grestore -newpath -2.882372e+01 2.865516e+01 moveto -2.939635e+01 2.748551e+01 lineto -2.859359e+01 2.679337e+01 lineto -2.800805e+01 2.795189e+01 lineto -2.882372e+01 2.865516e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.828534e+01 2.984123e+01 moveto -2.882372e+01 2.865516e+01 lineto -2.800805e+01 2.795189e+01 lineto -2.745754e+01 2.91275e+01 lineto -2.828534e+01 2.984123e+01 lineto -closepath -gsave -7.496745e-01 7.496745e-01 9.370931e-01 setrgbcolor -fill -grestore -newpath -2.828534e+01 2.984123e+01 moveto -2.882372e+01 2.865516e+01 lineto -2.800805e+01 2.795189e+01 lineto -2.745754e+01 2.91275e+01 lineto -2.828534e+01 2.984123e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.778173e+01 3.10426e+01 moveto -2.828534e+01 2.984123e+01 lineto -2.745754e+01 2.91275e+01 lineto -2.694257e+01 3.031908e+01 lineto -2.778173e+01 3.10426e+01 lineto -closepath -gsave -7.502254e-01 7.502254e-01 9.377818e-01 setrgbcolor -fill -grestore -newpath -2.778173e+01 3.10426e+01 moveto -2.828534e+01 2.984123e+01 lineto -2.745754e+01 2.91275e+01 lineto -2.694257e+01 3.031908e+01 lineto -2.778173e+01 3.10426e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.731335e+01 3.225813e+01 moveto -2.778173e+01 3.10426e+01 lineto -2.694257e+01 3.031908e+01 lineto -2.646363e+01 3.15255e+01 lineto -2.731335e+01 3.225813e+01 lineto -closepath -gsave -7.505798e-01 7.505798e-01 9.382247e-01 setrgbcolor -fill -grestore -newpath -2.731335e+01 3.225813e+01 moveto -2.778173e+01 3.10426e+01 lineto -2.694257e+01 3.031908e+01 lineto -2.646363e+01 3.15255e+01 lineto -2.731335e+01 3.225813e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.688066e+01 3.348668e+01 moveto -2.731335e+01 3.225813e+01 lineto -2.646363e+01 3.15255e+01 lineto -2.602118e+01 3.274564e+01 lineto -2.688066e+01 3.348668e+01 lineto -closepath -gsave -7.507374e-01 7.507374e-01 9.384218e-01 setrgbcolor -fill -grestore -newpath -2.688066e+01 3.348668e+01 moveto -2.731335e+01 3.225813e+01 lineto -2.646363e+01 3.15255e+01 lineto -2.602118e+01 3.274564e+01 lineto -2.688066e+01 3.348668e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.372387e+01 4.044424e+00 moveto -6.499587e+01 4.000079e+00 lineto -6.49958e+01 4.0e+00 lineto -6.37036e+01 4.020012e+00 lineto -6.372387e+01 4.044424e+00 lineto -closepath -gsave -6.118407e-01 6.118407e-01 7.648009e-01 setrgbcolor -fill -grestore -newpath -6.372387e+01 4.044424e+00 moveto -6.499587e+01 4.000079e+00 lineto -6.49958e+01 4.0e+00 lineto -6.37036e+01 4.020012e+00 lineto -6.372387e+01 4.044424e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.245309e+01 4.128492e+00 moveto -6.372387e+01 4.044424e+00 lineto -6.37036e+01 4.020012e+00 lineto -6.241263e+01 4.079772e+00 lineto -6.245309e+01 4.128492e+00 lineto -closepath -gsave -6.175332e-01 6.175332e-01 7.719165e-01 setrgbcolor -fill -grestore -newpath -6.245309e+01 4.128492e+00 moveto -6.372387e+01 4.044424e+00 lineto -6.37036e+01 4.020012e+00 lineto -6.241263e+01 4.079772e+00 lineto -6.245309e+01 4.128492e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.118472e+01 4.252205e+00 moveto -6.245309e+01 4.128492e+00 lineto -6.241263e+01 4.079772e+00 lineto -6.112412e+01 4.179221e+00 lineto -6.118472e+01 4.252205e+00 lineto -closepath -gsave -6.231705e-01 6.231705e-01 7.789631e-01 setrgbcolor -fill -grestore -newpath -6.118472e+01 4.252205e+00 moveto -6.245309e+01 4.128492e+00 lineto -6.241263e+01 4.079772e+00 lineto -6.112412e+01 4.179221e+00 lineto -6.118472e+01 4.252205e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.991996e+01 4.415445e+00 moveto -6.118472e+01 4.252205e+00 lineto -6.112412e+01 4.179221e+00 lineto -5.983927e+01 4.318268e+00 lineto -5.991996e+01 4.415445e+00 lineto -closepath -gsave -6.287439e-01 6.287439e-01 7.859299e-01 setrgbcolor -fill -grestore -newpath -5.991996e+01 4.415445e+00 moveto -6.118472e+01 4.252205e+00 lineto -6.112412e+01 4.179221e+00 lineto -5.983927e+01 4.318268e+00 lineto -5.991996e+01 4.415445e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.866001e+01 4.618058e+00 moveto -5.991996e+01 4.415445e+00 lineto -5.983927e+01 4.318268e+00 lineto -5.85593e+01 4.496778e+00 lineto -5.866001e+01 4.618058e+00 lineto -closepath -gsave -6.342453e-01 6.342453e-01 7.928067e-01 setrgbcolor -fill -grestore -newpath -5.866001e+01 4.618058e+00 moveto -5.991996e+01 4.415445e+00 lineto -5.983927e+01 4.318268e+00 lineto -5.85593e+01 4.496778e+00 lineto -5.866001e+01 4.618058e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.740606e+01 4.859851e+00 moveto -5.866001e+01 4.618058e+00 lineto -5.85593e+01 4.496778e+00 lineto -5.728544e+01 4.714585e+00 lineto -5.740606e+01 4.859851e+00 lineto -closepath -gsave -6.396666e-01 6.396666e-01 7.995833e-01 setrgbcolor -fill -grestore -newpath -5.740606e+01 4.859851e+00 moveto -5.866001e+01 4.618058e+00 lineto -5.85593e+01 4.496778e+00 lineto -5.728544e+01 4.714585e+00 lineto -5.740606e+01 4.859851e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.615931e+01 5.140597e+00 moveto -5.740606e+01 4.859851e+00 lineto -5.728544e+01 4.714585e+00 lineto -5.601888e+01 4.97148e+00 lineto -5.615931e+01 5.140597e+00 lineto -closepath -gsave -6.450001e-01 6.450001e-01 8.062501e-01 setrgbcolor -fill -grestore -newpath -5.615931e+01 5.140597e+00 moveto -5.740606e+01 4.859851e+00 lineto -5.728544e+01 4.714585e+00 lineto -5.601888e+01 4.97148e+00 lineto -5.615931e+01 5.140597e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.492092e+01 5.460028e+00 moveto -5.615931e+01 5.140597e+00 lineto -5.601888e+01 4.97148e+00 lineto -5.476082e+01 5.267222e+00 lineto -5.492092e+01 5.460028e+00 lineto -closepath -gsave -6.502382e-01 6.502382e-01 8.127977e-01 setrgbcolor -fill -grestore -newpath -5.492092e+01 5.460028e+00 moveto -5.615931e+01 5.140597e+00 lineto -5.601888e+01 4.97148e+00 lineto -5.476082e+01 5.267222e+00 lineto -5.492092e+01 5.460028e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.369208e+01 5.817843e+00 moveto -5.492092e+01 5.460028e+00 lineto -5.476082e+01 5.267222e+00 lineto -5.351246e+01 5.601531e+00 lineto -5.369208e+01 5.817843e+00 lineto -closepath -gsave -6.553737e-01 6.553737e-01 8.192172e-01 setrgbcolor -fill -grestore -newpath -5.369208e+01 5.817843e+00 moveto -5.492092e+01 5.460028e+00 lineto -5.476082e+01 5.267222e+00 lineto -5.351246e+01 5.601531e+00 lineto -5.369208e+01 5.817843e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.247394e+01 6.213703e+00 moveto -5.369208e+01 5.817843e+00 lineto -5.351246e+01 5.601531e+00 lineto -5.227497e+01 5.974088e+00 lineto -5.247394e+01 6.213703e+00 lineto -closepath -gsave -6.603998e-01 6.603998e-01 8.254998e-01 setrgbcolor -fill -grestore -newpath -5.247394e+01 6.213703e+00 moveto -5.369208e+01 5.817843e+00 lineto -5.351246e+01 5.601531e+00 lineto -5.227497e+01 5.974088e+00 lineto -5.247394e+01 6.213703e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.126766e+01 6.647233e+00 moveto -5.247394e+01 6.213703e+00 lineto -5.227497e+01 5.974088e+00 lineto -5.104953e+01 6.384543e+00 lineto -5.126766e+01 6.647233e+00 lineto -closepath -gsave -6.653099e-01 6.653099e-01 8.316373e-01 setrgbcolor -fill -grestore -newpath -5.126766e+01 6.647233e+00 moveto -5.247394e+01 6.213703e+00 lineto -5.227497e+01 5.974088e+00 lineto -5.104953e+01 6.384543e+00 lineto -5.126766e+01 6.647233e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.007439e+01 7.118023e+00 moveto -5.126766e+01 6.647233e+00 lineto -5.104953e+01 6.384543e+00 lineto -4.98373e+01 6.832506e+00 lineto -5.007439e+01 7.118023e+00 lineto -closepath -gsave -6.700977e-01 6.700977e-01 8.376221e-01 setrgbcolor -fill -grestore -newpath -5.007439e+01 7.118023e+00 moveto -5.126766e+01 6.647233e+00 lineto -5.104953e+01 6.384543e+00 lineto -4.98373e+01 6.832506e+00 lineto -5.007439e+01 7.118023e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.889524e+01 7.625626e+00 moveto -5.007439e+01 7.118023e+00 lineto -4.98373e+01 6.832506e+00 lineto -4.863943e+01 7.317554e+00 lineto -4.889524e+01 7.625626e+00 lineto -closepath -gsave -6.747572e-01 6.747572e-01 8.434465e-01 setrgbcolor -fill -grestore -newpath -4.889524e+01 7.625626e+00 moveto -5.007439e+01 7.118023e+00 lineto -4.98373e+01 6.832506e+00 lineto -4.863943e+01 7.317554e+00 lineto -4.889524e+01 7.625626e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.773135e+01 8.169563e+00 moveto -4.889524e+01 7.625626e+00 lineto -4.863943e+01 7.317554e+00 lineto -4.745704e+01 7.839226e+00 lineto -4.773135e+01 8.169563e+00 lineto -closepath -gsave -6.792829e-01 6.792829e-01 8.491037e-01 setrgbcolor -fill -grestore -newpath -4.773135e+01 8.169563e+00 moveto -4.889524e+01 7.625626e+00 lineto -4.863943e+01 7.317554e+00 lineto -4.745704e+01 7.839226e+00 lineto -4.773135e+01 8.169563e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.65838e+01 8.749318e+00 moveto -4.773135e+01 8.169563e+00 lineto -4.745704e+01 7.839226e+00 lineto -4.629127e+01 8.397029e+00 lineto -4.65838e+01 8.749318e+00 lineto -closepath -gsave -6.836696e-01 6.836696e-01 8.54587e-01 setrgbcolor -fill -grestore -newpath -4.65838e+01 8.749318e+00 moveto -4.773135e+01 8.169563e+00 lineto -4.745704e+01 7.839226e+00 lineto -4.629127e+01 8.397029e+00 lineto -4.65838e+01 8.749318e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.545369e+01 9.364342e+00 moveto -4.65838e+01 8.749318e+00 lineto -4.629127e+01 8.397029e+00 lineto -4.514321e+01 8.990435e+00 lineto -4.545369e+01 9.364342e+00 lineto -closepath -gsave -6.879123e-01 6.879123e-01 8.598904e-01 setrgbcolor -fill -grestore -newpath -4.545369e+01 9.364342e+00 moveto -4.65838e+01 8.749318e+00 lineto -4.629127e+01 8.397029e+00 lineto -4.514321e+01 8.990435e+00 lineto -4.545369e+01 9.364342e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.434209e+01 1.001405e+01 moveto -4.545369e+01 9.364342e+00 lineto -4.514321e+01 8.990435e+00 lineto -4.401395e+01 9.618882e+00 lineto -4.434209e+01 1.001405e+01 lineto -closepath -gsave -6.920064e-01 6.920064e-01 8.65008e-01 setrgbcolor -fill -grestore -newpath -4.434209e+01 1.001405e+01 moveto -4.545369e+01 9.364342e+00 lineto -4.514321e+01 8.990435e+00 lineto -4.401395e+01 9.618882e+00 lineto -4.434209e+01 1.001405e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.325005e+01 1.069784e+01 moveto -4.434209e+01 1.001405e+01 lineto -4.401395e+01 9.618882e+00 lineto -4.290456e+01 1.028177e+01 lineto -4.325005e+01 1.069784e+01 lineto -closepath -gsave -6.959476e-01 6.959476e-01 8.699345e-01 setrgbcolor -fill -grestore -newpath -4.325005e+01 1.069784e+01 moveto -4.434209e+01 1.001405e+01 lineto -4.401395e+01 9.618882e+00 lineto -4.290456e+01 1.028177e+01 lineto -4.325005e+01 1.069784e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.21786e+01 1.141504e+01 moveto -4.325005e+01 1.069784e+01 lineto -4.290456e+01 1.028177e+01 lineto -4.181609e+01 1.097849e+01 lineto -4.21786e+01 1.141504e+01 lineto -closepath -gsave -6.99732e-01 6.99732e-01 8.74665e-01 setrgbcolor -fill -grestore -newpath -4.21786e+01 1.141504e+01 moveto -4.325005e+01 1.069784e+01 lineto -4.290456e+01 1.028177e+01 lineto -4.181609e+01 1.097849e+01 lineto -4.21786e+01 1.141504e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.112876e+01 1.2165e+01 moveto -4.21786e+01 1.141504e+01 lineto -4.181609e+01 1.097849e+01 lineto -4.074957e+01 1.170836e+01 lineto -4.112876e+01 1.2165e+01 lineto -closepath -gsave -7.033559e-01 7.033559e-01 8.791949e-01 setrgbcolor -fill -grestore -newpath -4.112876e+01 1.2165e+01 moveto -4.21786e+01 1.141504e+01 lineto -4.181609e+01 1.097849e+01 lineto -4.074957e+01 1.170836e+01 lineto -4.112876e+01 1.2165e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.010152e+01 1.294698e+01 moveto -4.112876e+01 1.2165e+01 lineto -4.074957e+01 1.170836e+01 lineto -3.970602e+01 1.247069e+01 lineto -4.010152e+01 1.294698e+01 lineto -closepath -gsave -7.06816e-01 7.06816e-01 8.8352e-01 setrgbcolor -fill -grestore -newpath -4.010152e+01 1.294698e+01 moveto -4.112876e+01 1.2165e+01 lineto -4.074957e+01 1.170836e+01 lineto -3.970602e+01 1.247069e+01 lineto -4.010152e+01 1.294698e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.909785e+01 1.376027e+01 moveto -4.010152e+01 1.294698e+01 lineto -3.970602e+01 1.247069e+01 lineto -3.868641e+01 1.326478e+01 lineto -3.909785e+01 1.376027e+01 lineto -closepath -gsave -7.101093e-01 7.101093e-01 8.876366e-01 setrgbcolor -fill -grestore -newpath -3.909785e+01 1.376027e+01 moveto -4.010152e+01 1.294698e+01 lineto -3.970602e+01 1.247069e+01 lineto -3.868641e+01 1.326478e+01 lineto -3.909785e+01 1.376027e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.811871e+01 1.460408e+01 moveto -3.909785e+01 1.376027e+01 lineto -3.868641e+01 1.326478e+01 lineto -3.769171e+01 1.408985e+01 lineto -3.811871e+01 1.460408e+01 lineto -closepath -gsave -7.132329e-01 7.132329e-01 8.915412e-01 setrgbcolor -fill -grestore -newpath -3.811871e+01 1.460408e+01 moveto -3.909785e+01 1.376027e+01 lineto -3.868641e+01 1.326478e+01 lineto -3.769171e+01 1.408985e+01 lineto -3.811871e+01 1.460408e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.716502e+01 1.547761e+01 moveto -3.811871e+01 1.460408e+01 lineto -3.769171e+01 1.408985e+01 lineto -3.672287e+01 1.494515e+01 lineto -3.716502e+01 1.547761e+01 lineto -closepath -gsave -7.161844e-01 7.161844e-01 8.952305e-01 setrgbcolor -fill -grestore -newpath -3.716502e+01 1.547761e+01 moveto -3.811871e+01 1.460408e+01 lineto -3.769171e+01 1.408985e+01 lineto -3.672287e+01 1.494515e+01 lineto -3.716502e+01 1.547761e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.623768e+01 1.638004e+01 moveto -3.716502e+01 1.547761e+01 lineto -3.672287e+01 1.494515e+01 lineto -3.57808e+01 1.582984e+01 lineto -3.623768e+01 1.638004e+01 lineto -closepath -gsave -7.189615e-01 7.189615e-01 8.987018e-01 setrgbcolor -fill -grestore -newpath -3.623768e+01 1.638004e+01 moveto -3.716502e+01 1.547761e+01 lineto -3.672287e+01 1.494515e+01 lineto -3.57808e+01 1.582984e+01 lineto -3.623768e+01 1.638004e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.533758e+01 1.731052e+01 moveto -3.623768e+01 1.638004e+01 lineto -3.57808e+01 1.582984e+01 lineto -3.48664e+01 1.67431e+01 lineto -3.533758e+01 1.731052e+01 lineto -closepath -gsave -7.215621e-01 7.215621e-01 9.019526e-01 setrgbcolor -fill -grestore -newpath -3.533758e+01 1.731052e+01 moveto -3.623768e+01 1.638004e+01 lineto -3.57808e+01 1.582984e+01 lineto -3.48664e+01 1.67431e+01 lineto -3.533758e+01 1.731052e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.446556e+01 1.826816e+01 moveto -3.533758e+01 1.731052e+01 lineto -3.48664e+01 1.67431e+01 lineto -3.398053e+01 1.768406e+01 lineto -3.446556e+01 1.826816e+01 lineto -closepath -gsave -7.239845e-01 7.239845e-01 9.049806e-01 setrgbcolor -fill -grestore -newpath -3.446556e+01 1.826816e+01 moveto -3.533758e+01 1.731052e+01 lineto -3.48664e+01 1.67431e+01 lineto -3.398053e+01 1.768406e+01 lineto -3.446556e+01 1.826816e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.362245e+01 1.925206e+01 moveto -3.446556e+01 1.826816e+01 lineto -3.398053e+01 1.768406e+01 lineto -3.312403e+01 1.865183e+01 lineto -3.362245e+01 1.925206e+01 lineto -closepath -gsave -7.26227e-01 7.26227e-01 9.077838e-01 setrgbcolor -fill -grestore -newpath -3.362245e+01 1.925206e+01 moveto -3.446556e+01 1.826816e+01 lineto -3.398053e+01 1.768406e+01 lineto -3.312403e+01 1.865183e+01 lineto -3.362245e+01 1.925206e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.280905e+01 2.026128e+01 moveto -3.362245e+01 1.925206e+01 lineto -3.312403e+01 1.865183e+01 lineto -3.229771e+01 1.964549e+01 lineto -3.280905e+01 2.026128e+01 lineto -closepath -gsave -7.282883e-01 7.282883e-01 9.103604e-01 setrgbcolor -fill -grestore -newpath -3.280905e+01 2.026128e+01 moveto -3.362245e+01 1.925206e+01 lineto -3.312403e+01 1.865183e+01 lineto -3.229771e+01 1.964549e+01 lineto -3.280905e+01 2.026128e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.202613e+01 2.129487e+01 moveto -3.280905e+01 2.026128e+01 lineto -3.229771e+01 1.964549e+01 lineto -3.150235e+01 2.066411e+01 lineto -3.202613e+01 2.129487e+01 lineto -closepath -gsave -7.301671e-01 7.301671e-01 9.127089e-01 setrgbcolor -fill -grestore -newpath -3.202613e+01 2.129487e+01 moveto -3.280905e+01 2.026128e+01 lineto -3.229771e+01 1.964549e+01 lineto -3.150235e+01 2.066411e+01 lineto -3.202613e+01 2.129487e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.127442e+01 2.235186e+01 moveto -3.202613e+01 2.129487e+01 lineto -3.150235e+01 2.066411e+01 lineto -3.073871e+01 2.170671e+01 lineto -3.127442e+01 2.235186e+01 lineto -closepath -gsave -7.318623e-01 7.318623e-01 9.148279e-01 setrgbcolor -fill -grestore -newpath -3.127442e+01 2.235186e+01 moveto -3.202613e+01 2.129487e+01 lineto -3.150235e+01 2.066411e+01 lineto -3.073871e+01 2.170671e+01 lineto -3.127442e+01 2.235186e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.055465e+01 2.343123e+01 moveto -3.127442e+01 2.235186e+01 lineto -3.073871e+01 2.170671e+01 lineto -3.000751e+01 2.277231e+01 lineto -3.055465e+01 2.343123e+01 lineto -closepath -gsave -7.333731e-01 7.333731e-01 9.167164e-01 setrgbcolor -fill -grestore -newpath -3.055465e+01 2.343123e+01 moveto -3.127442e+01 2.235186e+01 lineto -3.073871e+01 2.170671e+01 lineto -3.000751e+01 2.277231e+01 lineto -3.055465e+01 2.343123e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.98675e+01 2.453197e+01 moveto -3.055465e+01 2.343123e+01 lineto -3.000751e+01 2.277231e+01 lineto -2.930943e+01 2.385991e+01 lineto -2.98675e+01 2.453197e+01 lineto -closepath -gsave -7.346986e-01 7.346986e-01 9.183733e-01 setrgbcolor -fill -grestore -newpath -2.98675e+01 2.453197e+01 moveto -3.055465e+01 2.343123e+01 lineto -3.000751e+01 2.277231e+01 lineto -2.930943e+01 2.385991e+01 lineto -2.98675e+01 2.453197e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.92136e+01 2.565304e+01 moveto -2.98675e+01 2.453197e+01 lineto -2.930943e+01 2.385991e+01 lineto -2.864515e+01 2.496847e+01 lineto -2.92136e+01 2.565304e+01 lineto -closepath -gsave -7.358382e-01 7.358382e-01 9.197978e-01 setrgbcolor -fill -grestore -newpath -2.92136e+01 2.565304e+01 moveto -2.98675e+01 2.453197e+01 lineto -2.930943e+01 2.385991e+01 lineto -2.864515e+01 2.496847e+01 lineto -2.92136e+01 2.565304e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.859359e+01 2.679337e+01 moveto -2.92136e+01 2.565304e+01 lineto -2.864515e+01 2.496847e+01 lineto -2.80153e+01 2.609694e+01 lineto -2.859359e+01 2.679337e+01 lineto -closepath -gsave -7.367914e-01 7.367914e-01 9.209893e-01 setrgbcolor -fill -grestore -newpath -2.859359e+01 2.679337e+01 moveto -2.92136e+01 2.565304e+01 lineto -2.864515e+01 2.496847e+01 lineto -2.80153e+01 2.609694e+01 lineto -2.859359e+01 2.679337e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.800805e+01 2.795189e+01 moveto -2.859359e+01 2.679337e+01 lineto -2.80153e+01 2.609694e+01 lineto -2.742045e+01 2.724426e+01 lineto -2.800805e+01 2.795189e+01 lineto -closepath -gsave -7.375577e-01 7.375577e-01 9.219472e-01 setrgbcolor -fill -grestore -newpath -2.800805e+01 2.795189e+01 moveto -2.859359e+01 2.679337e+01 lineto -2.80153e+01 2.609694e+01 lineto -2.742045e+01 2.724426e+01 lineto -2.800805e+01 2.795189e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.745754e+01 2.91275e+01 moveto -2.800805e+01 2.795189e+01 lineto -2.742045e+01 2.724426e+01 lineto -2.686119e+01 2.840934e+01 lineto -2.745754e+01 2.91275e+01 lineto -closepath -gsave -7.381369e-01 7.381369e-01 9.226711e-01 setrgbcolor -fill -grestore -newpath -2.745754e+01 2.91275e+01 moveto -2.800805e+01 2.795189e+01 lineto -2.742045e+01 2.724426e+01 lineto -2.686119e+01 2.840934e+01 lineto -2.745754e+01 2.91275e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.694257e+01 3.031908e+01 moveto -2.745754e+01 2.91275e+01 lineto -2.686119e+01 2.840934e+01 lineto -2.633804e+01 2.959107e+01 lineto -2.694257e+01 3.031908e+01 lineto -closepath -gsave -7.385285e-01 7.385285e-01 9.231607e-01 setrgbcolor -fill -grestore -newpath -2.694257e+01 3.031908e+01 moveto -2.745754e+01 2.91275e+01 lineto -2.686119e+01 2.840934e+01 lineto -2.633804e+01 2.959107e+01 lineto -2.694257e+01 3.031908e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.646363e+01 3.15255e+01 moveto -2.694257e+01 3.031908e+01 lineto -2.633804e+01 2.959107e+01 lineto -2.58515e+01 3.078833e+01 lineto -2.646363e+01 3.15255e+01 lineto -closepath -gsave -7.387326e-01 7.387326e-01 9.234157e-01 setrgbcolor -fill -grestore -newpath -2.646363e+01 3.15255e+01 moveto -2.694257e+01 3.031908e+01 lineto -2.633804e+01 2.959107e+01 lineto -2.58515e+01 3.078833e+01 lineto -2.646363e+01 3.15255e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.602118e+01 3.274564e+01 moveto -2.646363e+01 3.15255e+01 lineto -2.58515e+01 3.078833e+01 lineto -2.540202e+01 3.2e+01 lineto -2.602118e+01 3.274564e+01 lineto -closepath -gsave -7.38749e-01 7.38749e-01 9.234362e-01 setrgbcolor -fill -grestore -newpath -2.602118e+01 3.274564e+01 moveto -2.646363e+01 3.15255e+01 lineto -2.58515e+01 3.078833e+01 lineto -2.540202e+01 3.2e+01 lineto -2.602118e+01 3.274564e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.37036e+01 4.020012e+00 moveto -6.49958e+01 4.0e+00 lineto -6.499576e+01 3.999921e+00 lineto -6.369133e+01 3.995601e+00 lineto -6.37036e+01 4.020012e+00 lineto -closepath -gsave -6.116218e-01 6.116218e-01 7.645273e-01 setrgbcolor -fill -grestore -newpath -6.37036e+01 4.020012e+00 moveto -6.49958e+01 4.0e+00 lineto -6.499576e+01 3.999921e+00 lineto -6.369133e+01 3.995601e+00 lineto -6.37036e+01 4.020012e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.241263e+01 4.079772e+00 moveto -6.37036e+01 4.020012e+00 lineto -6.369133e+01 3.995601e+00 lineto -6.238813e+01 4.031051e+00 lineto -6.241263e+01 4.079772e+00 lineto -closepath -gsave -6.168772e-01 6.168772e-01 7.710965e-01 setrgbcolor -fill -grestore -newpath -6.241263e+01 4.079772e+00 moveto -6.37036e+01 4.020012e+00 lineto -6.369133e+01 3.995601e+00 lineto -6.238813e+01 4.031051e+00 lineto -6.241263e+01 4.079772e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.112412e+01 4.179221e+00 moveto -6.241263e+01 4.079772e+00 lineto -6.238813e+01 4.031051e+00 lineto -6.108741e+01 4.106238e+00 lineto -6.112412e+01 4.179221e+00 lineto -closepath -gsave -6.220749e-01 6.220749e-01 7.775937e-01 setrgbcolor -fill -grestore -newpath -6.112412e+01 4.179221e+00 moveto -6.241263e+01 4.079772e+00 lineto -6.238813e+01 4.031051e+00 lineto -6.108741e+01 4.106238e+00 lineto -6.112412e+01 4.179221e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.983927e+01 4.318268e+00 moveto -6.112412e+01 4.179221e+00 lineto -6.108741e+01 4.106238e+00 lineto -5.979039e+01 4.22109e+00 lineto -5.983927e+01 4.318268e+00 lineto -closepath -gsave -6.272076e-01 6.272076e-01 7.840095e-01 setrgbcolor -fill -grestore -newpath -5.983927e+01 4.318268e+00 moveto -6.112412e+01 4.179221e+00 lineto -6.108741e+01 4.106238e+00 lineto -5.979039e+01 4.22109e+00 lineto -5.983927e+01 4.318268e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.85593e+01 4.496778e+00 moveto -5.983927e+01 4.318268e+00 lineto -5.979039e+01 4.22109e+00 lineto -5.84983e+01 4.375499e+00 lineto -5.85593e+01 4.496778e+00 lineto -closepath -gsave -6.322678e-01 6.322678e-01 7.903348e-01 setrgbcolor -fill -grestore -newpath -5.85593e+01 4.496778e+00 moveto -5.983927e+01 4.318268e+00 lineto -5.979039e+01 4.22109e+00 lineto -5.84983e+01 4.375499e+00 lineto -5.85593e+01 4.496778e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.728544e+01 4.714585e+00 moveto -5.85593e+01 4.496778e+00 lineto -5.84983e+01 4.375499e+00 lineto -5.721237e+01 4.569318e+00 lineto -5.728544e+01 4.714585e+00 lineto -closepath -gsave -6.372485e-01 6.372485e-01 7.965607e-01 setrgbcolor -fill -grestore -newpath -5.728544e+01 4.714585e+00 moveto -5.85593e+01 4.496778e+00 lineto -5.84983e+01 4.375499e+00 lineto -5.721237e+01 4.569318e+00 lineto -5.728544e+01 4.714585e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.601888e+01 4.97148e+00 moveto -5.728544e+01 4.714585e+00 lineto -5.721237e+01 4.569318e+00 lineto -5.593382e+01 4.802364e+00 lineto -5.601888e+01 4.97148e+00 lineto -closepath -gsave -6.421428e-01 6.421428e-01 8.026785e-01 setrgbcolor -fill -grestore -newpath -5.601888e+01 4.97148e+00 moveto -5.728544e+01 4.714585e+00 lineto -5.721237e+01 4.569318e+00 lineto -5.593382e+01 4.802364e+00 lineto -5.601888e+01 4.97148e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.476082e+01 5.267222e+00 moveto -5.601888e+01 4.97148e+00 lineto -5.593382e+01 4.802364e+00 lineto -5.466385e+01 5.074417e+00 lineto -5.476082e+01 5.267222e+00 lineto -closepath -gsave -6.46944e-01 6.46944e-01 8.0868e-01 setrgbcolor -fill -grestore -newpath -5.476082e+01 5.267222e+00 moveto -5.601888e+01 4.97148e+00 lineto -5.593382e+01 4.802364e+00 lineto -5.466385e+01 5.074417e+00 lineto -5.476082e+01 5.267222e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.351246e+01 5.601531e+00 moveto -5.476082e+01 5.267222e+00 lineto -5.466385e+01 5.074417e+00 lineto -5.340366e+01 5.385218e+00 lineto -5.351246e+01 5.601531e+00 lineto -closepath -gsave -6.516458e-01 6.516458e-01 8.145572e-01 setrgbcolor -fill -grestore -newpath -5.351246e+01 5.601531e+00 moveto -5.476082e+01 5.267222e+00 lineto -5.466385e+01 5.074417e+00 lineto -5.340366e+01 5.385218e+00 lineto -5.351246e+01 5.601531e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.227497e+01 5.974088e+00 moveto -5.351246e+01 5.601531e+00 lineto -5.340366e+01 5.385218e+00 lineto -5.215445e+01 5.734474e+00 lineto -5.227497e+01 5.974088e+00 lineto -closepath -gsave -6.56242e-01 6.56242e-01 8.203024e-01 setrgbcolor -fill -grestore -newpath -5.227497e+01 5.974088e+00 moveto -5.351246e+01 5.601531e+00 lineto -5.340366e+01 5.385218e+00 lineto -5.215445e+01 5.734474e+00 lineto -5.227497e+01 5.974088e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.104953e+01 6.384543e+00 moveto -5.227497e+01 5.974088e+00 lineto -5.215445e+01 5.734474e+00 lineto -5.091741e+01 6.121853e+00 lineto -5.104953e+01 6.384543e+00 lineto -closepath -gsave -6.607267e-01 6.607267e-01 8.259084e-01 setrgbcolor -fill -grestore -newpath -5.104953e+01 6.384543e+00 moveto -5.227497e+01 5.974088e+00 lineto -5.215445e+01 5.734474e+00 lineto -5.091741e+01 6.121853e+00 lineto -5.104953e+01 6.384543e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.98373e+01 6.832506e+00 moveto -5.104953e+01 6.384543e+00 lineto -5.091741e+01 6.121853e+00 lineto -4.96937e+01 6.54699e+00 lineto -4.98373e+01 6.832506e+00 lineto -closepath -gsave -6.650944e-01 6.650944e-01 8.31368e-01 setrgbcolor -fill -grestore -newpath -4.98373e+01 6.832506e+00 moveto -5.104953e+01 6.384543e+00 lineto -5.091741e+01 6.121853e+00 lineto -4.96937e+01 6.54699e+00 lineto -4.98373e+01 6.832506e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.863943e+01 7.317554e+00 moveto -4.98373e+01 6.832506e+00 lineto -4.96937e+01 6.54699e+00 lineto -4.848448e+01 7.009481e+00 lineto -4.863943e+01 7.317554e+00 lineto -closepath -gsave -6.693398e-01 6.693398e-01 8.366748e-01 setrgbcolor -fill -grestore -newpath -4.863943e+01 7.317554e+00 moveto -4.98373e+01 6.832506e+00 lineto -4.96937e+01 6.54699e+00 lineto -4.848448e+01 7.009481e+00 lineto -4.863943e+01 7.317554e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.745704e+01 7.839226e+00 moveto -4.863943e+01 7.317554e+00 lineto -4.848448e+01 7.009481e+00 lineto -4.72909e+01 7.508889e+00 lineto -4.745704e+01 7.839226e+00 lineto -closepath -gsave -6.734579e-01 6.734579e-01 8.418224e-01 setrgbcolor -fill -grestore -newpath -4.745704e+01 7.839226e+00 moveto -4.863943e+01 7.317554e+00 lineto -4.848448e+01 7.009481e+00 lineto -4.72909e+01 7.508889e+00 lineto -4.745704e+01 7.839226e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.629127e+01 8.397029e+00 moveto -4.745704e+01 7.839226e+00 lineto -4.72909e+01 7.508889e+00 lineto -4.611408e+01 8.04474e+00 lineto -4.629127e+01 8.397029e+00 lineto -closepath -gsave -6.77444e-01 6.77444e-01 8.46805e-01 setrgbcolor -fill -grestore -newpath -4.629127e+01 8.397029e+00 moveto -4.745704e+01 7.839226e+00 lineto -4.72909e+01 7.508889e+00 lineto -4.611408e+01 8.04474e+00 lineto -4.629127e+01 8.397029e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.514321e+01 8.990435e+00 moveto -4.629127e+01 8.397029e+00 lineto -4.611408e+01 8.04474e+00 lineto -4.495515e+01 8.616528e+00 lineto -4.514321e+01 8.990435e+00 lineto -closepath -gsave -6.812936e-01 6.812936e-01 8.516169e-01 setrgbcolor -fill -grestore -newpath -4.514321e+01 8.990435e+00 moveto -4.629127e+01 8.397029e+00 lineto -4.611408e+01 8.04474e+00 lineto -4.495515e+01 8.616528e+00 lineto -4.514321e+01 8.990435e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.401395e+01 9.618882e+00 moveto -4.514321e+01 8.990435e+00 lineto -4.495515e+01 8.616528e+00 lineto -4.38152e+01 9.223711e+00 lineto -4.401395e+01 9.618882e+00 lineto -closepath -gsave -6.850025e-01 6.850025e-01 8.562531e-01 setrgbcolor -fill -grestore -newpath -4.401395e+01 9.618882e+00 moveto -4.514321e+01 8.990435e+00 lineto -4.495515e+01 8.616528e+00 lineto -4.38152e+01 9.223711e+00 lineto -4.401395e+01 9.618882e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.290456e+01 1.028177e+01 moveto -4.401395e+01 9.618882e+00 lineto -4.38152e+01 9.223711e+00 lineto -4.26953e+01 9.865714e+00 lineto -4.290456e+01 1.028177e+01 lineto -closepath -gsave -6.885669e-01 6.885669e-01 8.607086e-01 setrgbcolor -fill -grestore -newpath -4.290456e+01 1.028177e+01 moveto -4.401395e+01 9.618882e+00 lineto -4.38152e+01 9.223711e+00 lineto -4.26953e+01 9.865714e+00 lineto -4.290456e+01 1.028177e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.181609e+01 1.097849e+01 moveto -4.290456e+01 1.028177e+01 lineto -4.26953e+01 9.865714e+00 lineto -4.159652e+01 1.054193e+01 lineto -4.181609e+01 1.097849e+01 lineto -closepath -gsave -6.919832e-01 6.919832e-01 8.64979e-01 setrgbcolor -fill -grestore -newpath -4.181609e+01 1.097849e+01 moveto -4.290456e+01 1.028177e+01 lineto -4.26953e+01 9.865714e+00 lineto -4.159652e+01 1.054193e+01 lineto -4.181609e+01 1.097849e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.074957e+01 1.170836e+01 moveto -4.181609e+01 1.097849e+01 lineto -4.159652e+01 1.054193e+01 lineto -4.05199e+01 1.125172e+01 lineto -4.074957e+01 1.170836e+01 lineto -closepath -gsave -6.952481e-01 6.952481e-01 8.690601e-01 setrgbcolor -fill -grestore -newpath -4.074957e+01 1.170836e+01 moveto -4.181609e+01 1.097849e+01 lineto -4.159652e+01 1.054193e+01 lineto -4.05199e+01 1.125172e+01 lineto -4.074957e+01 1.170836e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.970602e+01 1.247069e+01 moveto -4.074957e+01 1.170836e+01 lineto -4.05199e+01 1.125172e+01 lineto -3.946646e+01 1.19944e+01 lineto -3.970602e+01 1.247069e+01 lineto -closepath -gsave -6.983584e-01 6.983584e-01 8.72948e-01 setrgbcolor -fill -grestore -newpath -3.970602e+01 1.247069e+01 moveto -4.074957e+01 1.170836e+01 lineto -4.05199e+01 1.125172e+01 lineto -3.946646e+01 1.19944e+01 lineto -3.970602e+01 1.247069e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.868641e+01 1.326478e+01 moveto -3.970602e+01 1.247069e+01 lineto -3.946646e+01 1.19944e+01 lineto -3.84372e+01 1.276929e+01 lineto -3.868641e+01 1.326478e+01 lineto -closepath -gsave -7.013113e-01 7.013113e-01 8.766391e-01 setrgbcolor -fill -grestore -newpath -3.868641e+01 1.326478e+01 moveto -3.970602e+01 1.247069e+01 lineto -3.946646e+01 1.19944e+01 lineto -3.84372e+01 1.276929e+01 lineto -3.868641e+01 1.326478e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.769171e+01 1.408985e+01 moveto -3.868641e+01 1.326478e+01 lineto -3.84372e+01 1.276929e+01 lineto -3.743308e+01 1.357563e+01 lineto -3.769171e+01 1.408985e+01 lineto -closepath -gsave -7.041043e-01 7.041043e-01 8.801304e-01 setrgbcolor -fill -grestore -newpath -3.769171e+01 1.408985e+01 moveto -3.868641e+01 1.326478e+01 lineto -3.84372e+01 1.276929e+01 lineto -3.743308e+01 1.357563e+01 lineto -3.769171e+01 1.408985e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.672287e+01 1.494515e+01 moveto -3.769171e+01 1.408985e+01 lineto -3.743308e+01 1.357563e+01 lineto -3.645506e+01 1.441268e+01 lineto -3.672287e+01 1.494515e+01 lineto -closepath -gsave -7.067349e-01 7.067349e-01 8.834187e-01 setrgbcolor -fill -grestore -newpath -3.672287e+01 1.494515e+01 moveto -3.769171e+01 1.408985e+01 lineto -3.743308e+01 1.357563e+01 lineto -3.645506e+01 1.441268e+01 lineto -3.672287e+01 1.494515e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.57808e+01 1.582984e+01 moveto -3.672287e+01 1.494515e+01 lineto -3.645506e+01 1.441268e+01 lineto -3.550408e+01 1.527964e+01 lineto -3.57808e+01 1.582984e+01 lineto -closepath -gsave -7.092011e-01 7.092011e-01 8.865014e-01 setrgbcolor -fill -grestore -newpath -3.57808e+01 1.582984e+01 moveto -3.672287e+01 1.494515e+01 lineto -3.645506e+01 1.441268e+01 lineto -3.550408e+01 1.527964e+01 lineto -3.57808e+01 1.582984e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.48664e+01 1.67431e+01 moveto -3.57808e+01 1.582984e+01 lineto -3.550408e+01 1.527964e+01 lineto -3.458101e+01 1.617568e+01 lineto -3.48664e+01 1.67431e+01 lineto -closepath -gsave -7.115009e-01 7.115009e-01 8.893762e-01 setrgbcolor -fill -grestore -newpath -3.48664e+01 1.67431e+01 moveto -3.57808e+01 1.582984e+01 lineto -3.550408e+01 1.527964e+01 lineto -3.458101e+01 1.617568e+01 lineto -3.48664e+01 1.67431e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.398053e+01 1.768406e+01 moveto -3.48664e+01 1.67431e+01 lineto -3.458101e+01 1.617568e+01 lineto -3.368675e+01 1.709995e+01 lineto -3.398053e+01 1.768406e+01 lineto -closepath -gsave -7.136326e-01 7.136326e-01 8.920408e-01 setrgbcolor -fill -grestore -newpath -3.398053e+01 1.768406e+01 moveto -3.48664e+01 1.67431e+01 lineto -3.458101e+01 1.617568e+01 lineto -3.368675e+01 1.709995e+01 lineto -3.398053e+01 1.768406e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.312403e+01 1.865183e+01 moveto -3.398053e+01 1.768406e+01 lineto -3.368675e+01 1.709995e+01 lineto -3.282214e+01 1.80516e+01 lineto -3.312403e+01 1.865183e+01 lineto -closepath -gsave -7.155946e-01 7.155946e-01 8.944932e-01 setrgbcolor -fill -grestore -newpath -3.312403e+01 1.865183e+01 moveto -3.398053e+01 1.768406e+01 lineto -3.368675e+01 1.709995e+01 lineto -3.282214e+01 1.80516e+01 lineto -3.312403e+01 1.865183e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.229771e+01 1.964549e+01 moveto -3.312403e+01 1.865183e+01 lineto -3.282214e+01 1.80516e+01 lineto -3.198799e+01 1.90297e+01 lineto -3.229771e+01 1.964549e+01 lineto -closepath -gsave -7.173855e-01 7.173855e-01 8.967319e-01 setrgbcolor -fill -grestore -newpath -3.229771e+01 1.964549e+01 moveto -3.312403e+01 1.865183e+01 lineto -3.282214e+01 1.80516e+01 lineto -3.198799e+01 1.90297e+01 lineto -3.229771e+01 1.964549e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.150235e+01 2.066411e+01 moveto -3.229771e+01 1.964549e+01 lineto -3.198799e+01 1.90297e+01 lineto -3.11851e+01 2.003334e+01 lineto -3.150235e+01 2.066411e+01 lineto -closepath -gsave -7.190042e-01 7.190042e-01 8.987552e-01 setrgbcolor -fill -grestore -newpath -3.150235e+01 2.066411e+01 moveto -3.229771e+01 1.964549e+01 lineto -3.198799e+01 1.90297e+01 lineto -3.11851e+01 2.003334e+01 lineto -3.150235e+01 2.066411e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.073871e+01 2.170671e+01 moveto -3.150235e+01 2.066411e+01 lineto -3.11851e+01 2.003334e+01 lineto -3.041423e+01 2.106156e+01 lineto -3.073871e+01 2.170671e+01 lineto -closepath -gsave -7.204495e-01 7.204495e-01 9.005618e-01 setrgbcolor -fill -grestore -newpath -3.073871e+01 2.170671e+01 moveto -3.150235e+01 2.066411e+01 lineto -3.11851e+01 2.003334e+01 lineto -3.041423e+01 2.106156e+01 lineto -3.073871e+01 2.170671e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.000751e+01 2.277231e+01 moveto -3.073871e+01 2.170671e+01 lineto -3.041423e+01 2.106156e+01 lineto -2.96761e+01 2.21134e+01 lineto -3.000751e+01 2.277231e+01 lineto -closepath -gsave -7.217206e-01 7.217206e-01 9.021507e-01 setrgbcolor -fill -grestore -newpath -3.000751e+01 2.277231e+01 moveto -3.073871e+01 2.170671e+01 lineto -3.041423e+01 2.106156e+01 lineto -2.96761e+01 2.21134e+01 lineto -3.000751e+01 2.277231e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.930943e+01 2.385991e+01 moveto -3.000751e+01 2.277231e+01 lineto -2.96761e+01 2.21134e+01 lineto -2.897142e+01 2.318785e+01 lineto -2.930943e+01 2.385991e+01 lineto -closepath -gsave -7.228166e-01 7.228166e-01 9.035208e-01 setrgbcolor -fill -grestore -newpath -2.930943e+01 2.385991e+01 moveto -3.000751e+01 2.277231e+01 lineto -2.96761e+01 2.21134e+01 lineto -2.897142e+01 2.318785e+01 lineto -2.930943e+01 2.385991e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.864515e+01 2.496847e+01 moveto -2.930943e+01 2.385991e+01 lineto -2.897142e+01 2.318785e+01 lineto -2.830085e+01 2.42839e+01 lineto -2.864515e+01 2.496847e+01 lineto -closepath -gsave -7.23737e-01 7.23737e-01 9.046713e-01 setrgbcolor -fill -grestore -newpath -2.864515e+01 2.496847e+01 moveto -2.930943e+01 2.385991e+01 lineto -2.897142e+01 2.318785e+01 lineto -2.830085e+01 2.42839e+01 lineto -2.864515e+01 2.496847e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.80153e+01 2.609694e+01 moveto -2.864515e+01 2.496847e+01 lineto -2.830085e+01 2.42839e+01 lineto -2.766502e+01 2.540051e+01 lineto -2.80153e+01 2.609694e+01 lineto -closepath -gsave -7.244812e-01 7.244812e-01 9.056015e-01 setrgbcolor -fill -grestore -newpath -2.80153e+01 2.609694e+01 moveto -2.864515e+01 2.496847e+01 lineto -2.830085e+01 2.42839e+01 lineto -2.766502e+01 2.540051e+01 lineto -2.80153e+01 2.609694e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.742045e+01 2.724426e+01 moveto -2.80153e+01 2.609694e+01 lineto -2.766502e+01 2.540051e+01 lineto -2.706455e+01 2.653663e+01 lineto -2.742045e+01 2.724426e+01 lineto -closepath -gsave -7.250488e-01 7.250488e-01 9.06311e-01 setrgbcolor -fill -grestore -newpath -2.742045e+01 2.724426e+01 moveto -2.80153e+01 2.609694e+01 lineto -2.766502e+01 2.540051e+01 lineto -2.706455e+01 2.653663e+01 lineto -2.742045e+01 2.724426e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.686119e+01 2.840934e+01 moveto -2.742045e+01 2.724426e+01 lineto -2.706455e+01 2.653663e+01 lineto -2.649999e+01 2.769117e+01 lineto -2.686119e+01 2.840934e+01 lineto -closepath -gsave -7.254395e-01 7.254395e-01 9.067993e-01 setrgbcolor -fill -grestore -newpath -2.686119e+01 2.840934e+01 moveto -2.742045e+01 2.724426e+01 lineto -2.706455e+01 2.653663e+01 lineto -2.649999e+01 2.769117e+01 lineto -2.686119e+01 2.840934e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.633804e+01 2.959107e+01 moveto -2.686119e+01 2.840934e+01 lineto -2.649999e+01 2.769117e+01 lineto -2.597188e+01 2.886305e+01 lineto -2.633804e+01 2.959107e+01 lineto -closepath -gsave -7.25653e-01 7.25653e-01 9.070663e-01 setrgbcolor -fill -grestore -newpath -2.633804e+01 2.959107e+01 moveto -2.686119e+01 2.840934e+01 lineto -2.649999e+01 2.769117e+01 lineto -2.597188e+01 2.886305e+01 lineto -2.633804e+01 2.959107e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.58515e+01 3.078833e+01 moveto -2.633804e+01 2.959107e+01 lineto -2.597188e+01 2.886305e+01 lineto -2.548073e+01 3.005116e+01 lineto -2.58515e+01 3.078833e+01 lineto -closepath -gsave -7.256893e-01 7.256893e-01 9.071116e-01 setrgbcolor -fill -grestore -newpath -2.58515e+01 3.078833e+01 moveto -2.633804e+01 2.959107e+01 lineto -2.597188e+01 2.886305e+01 lineto -2.548073e+01 3.005116e+01 lineto -2.58515e+01 3.078833e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.540202e+01 3.2e+01 moveto -2.58515e+01 3.078833e+01 lineto -2.548073e+01 3.005116e+01 lineto -2.5027e+01 3.125436e+01 lineto -2.540202e+01 3.2e+01 lineto -closepath -gsave -7.255484e-01 7.255484e-01 9.069355e-01 setrgbcolor -fill -grestore -newpath -2.540202e+01 3.2e+01 moveto -2.58515e+01 3.078833e+01 lineto -2.548073e+01 3.005116e+01 lineto -2.5027e+01 3.125436e+01 lineto -2.540202e+01 3.2e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.369133e+01 3.995601e+00 moveto -6.499576e+01 3.999921e+00 lineto -6.499575e+01 3.999843e+00 lineto -6.368712e+01 3.97134e+00 lineto -6.369133e+01 3.995601e+00 lineto -closepath -gsave -6.113865e-01 6.113865e-01 7.642332e-01 setrgbcolor -fill -grestore -newpath -6.369133e+01 3.995601e+00 moveto -6.499576e+01 3.999921e+00 lineto -6.499575e+01 3.999843e+00 lineto -6.368712e+01 3.97134e+00 lineto -6.369133e+01 3.995601e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.238813e+01 4.031051e+00 moveto -6.369133e+01 3.995601e+00 lineto -6.368712e+01 3.97134e+00 lineto -6.237973e+01 3.982631e+00 lineto -6.238813e+01 4.031051e+00 lineto -closepath -gsave -6.16172e-01 6.16172e-01 7.70215e-01 setrgbcolor -fill -grestore -newpath -6.238813e+01 4.031051e+00 moveto -6.369133e+01 3.995601e+00 lineto -6.368712e+01 3.97134e+00 lineto -6.237973e+01 3.982631e+00 lineto -6.238813e+01 4.031051e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.108741e+01 4.106238e+00 moveto -6.238813e+01 4.031051e+00 lineto -6.237973e+01 3.982631e+00 lineto -6.107482e+01 4.033704e+00 lineto -6.108741e+01 4.106238e+00 lineto -closepath -gsave -6.208976e-01 6.208976e-01 7.76122e-01 setrgbcolor -fill -grestore -newpath -6.108741e+01 4.106238e+00 moveto -6.238813e+01 4.031051e+00 lineto -6.237973e+01 3.982631e+00 lineto -6.107482e+01 4.033704e+00 lineto -6.108741e+01 4.106238e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.979039e+01 4.22109e+00 moveto -6.108741e+01 4.106238e+00 lineto -6.107482e+01 4.033704e+00 lineto -5.977363e+01 4.124512e+00 lineto -5.979039e+01 4.22109e+00 lineto -closepath -gsave -6.255568e-01 6.255568e-01 7.819461e-01 setrgbcolor -fill -grestore -newpath -5.979039e+01 4.22109e+00 moveto -6.108741e+01 4.106238e+00 lineto -6.107482e+01 4.033704e+00 lineto -5.977363e+01 4.124512e+00 lineto -5.979039e+01 4.22109e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.84983e+01 4.375499e+00 moveto -5.979039e+01 4.22109e+00 lineto -5.977363e+01 4.124512e+00 lineto -5.847739e+01 4.254967e+00 lineto -5.84983e+01 4.375499e+00 lineto -closepath -gsave -6.301433e-01 6.301433e-01 7.876791e-01 setrgbcolor -fill -grestore -newpath -5.84983e+01 4.375499e+00 moveto -5.979039e+01 4.22109e+00 lineto -5.977363e+01 4.124512e+00 lineto -5.847739e+01 4.254967e+00 lineto -5.84983e+01 4.375499e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.721237e+01 4.569318e+00 moveto -5.84983e+01 4.375499e+00 lineto -5.847739e+01 4.254967e+00 lineto -5.718732e+01 4.424947e+00 lineto -5.721237e+01 4.569318e+00 lineto -closepath -gsave -6.346508e-01 6.346508e-01 7.933135e-01 setrgbcolor -fill -grestore -newpath -5.721237e+01 4.569318e+00 moveto -5.84983e+01 4.375499e+00 lineto -5.847739e+01 4.254967e+00 lineto -5.718732e+01 4.424947e+00 lineto -5.721237e+01 4.569318e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.593382e+01 4.802364e+00 moveto -5.721237e+01 4.569318e+00 lineto -5.718732e+01 4.424947e+00 lineto -5.590466e+01 4.634291e+00 lineto -5.593382e+01 4.802364e+00 lineto -closepath -gsave -6.390733e-01 6.390733e-01 7.988416e-01 setrgbcolor -fill -grestore -newpath -5.593382e+01 4.802364e+00 moveto -5.721237e+01 4.569318e+00 lineto -5.718732e+01 4.424947e+00 lineto -5.590466e+01 4.634291e+00 lineto -5.593382e+01 4.802364e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.466385e+01 5.074417e+00 moveto -5.593382e+01 4.802364e+00 lineto -5.590466e+01 4.634291e+00 lineto -5.46306e+01 4.8828e+00 lineto -5.466385e+01 5.074417e+00 lineto -closepath -gsave -6.43405e-01 6.43405e-01 8.042562e-01 setrgbcolor -fill -grestore -newpath -5.466385e+01 5.074417e+00 moveto -5.593382e+01 4.802364e+00 lineto -5.590466e+01 4.634291e+00 lineto -5.46306e+01 4.8828e+00 lineto -5.466385e+01 5.074417e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.340366e+01 5.385218e+00 moveto -5.466385e+01 5.074417e+00 lineto -5.46306e+01 4.8828e+00 lineto -5.336636e+01 5.170239e+00 lineto -5.340366e+01 5.385218e+00 lineto -closepath -gsave -6.476403e-01 6.476403e-01 8.095504e-01 setrgbcolor -fill -grestore -newpath -5.340366e+01 5.385218e+00 moveto -5.466385e+01 5.074417e+00 lineto -5.46306e+01 4.8828e+00 lineto -5.336636e+01 5.170239e+00 lineto -5.340366e+01 5.385218e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.215445e+01 5.734474e+00 moveto -5.340366e+01 5.385218e+00 lineto -5.336636e+01 5.170239e+00 lineto -5.211313e+01 5.496336e+00 lineto -5.215445e+01 5.734474e+00 lineto -closepath -gsave -6.51774e-01 6.51774e-01 8.147175e-01 setrgbcolor -fill -grestore -newpath -5.215445e+01 5.734474e+00 moveto -5.340366e+01 5.385218e+00 lineto -5.336636e+01 5.170239e+00 lineto -5.211313e+01 5.496336e+00 lineto -5.215445e+01 5.734474e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.091741e+01 6.121853e+00 moveto -5.215445e+01 5.734474e+00 lineto -5.211313e+01 5.496336e+00 lineto -5.087211e+01 5.860783e+00 lineto -5.091741e+01 6.121853e+00 lineto -closepath -gsave -6.558007e-01 6.558007e-01 8.197509e-01 setrgbcolor -fill -grestore -newpath -5.091741e+01 6.121853e+00 moveto -5.215445e+01 5.734474e+00 lineto -5.211313e+01 5.496336e+00 lineto -5.087211e+01 5.860783e+00 lineto -5.091741e+01 6.121853e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.96937e+01 6.54699e+00 moveto -5.091741e+01 6.121853e+00 lineto -5.087211e+01 5.860783e+00 lineto -4.964446e+01 6.263234e+00 lineto -4.96937e+01 6.54699e+00 lineto -closepath -gsave -6.597158e-01 6.597158e-01 8.246447e-01 setrgbcolor -fill -grestore -newpath -4.96937e+01 6.54699e+00 moveto -5.091741e+01 6.121853e+00 lineto -5.087211e+01 5.860783e+00 lineto -4.964446e+01 6.263234e+00 lineto -4.96937e+01 6.54699e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.848448e+01 7.009481e+00 moveto -4.96937e+01 6.54699e+00 lineto -4.964446e+01 6.263234e+00 lineto -4.843136e+01 6.703308e+00 lineto -4.848448e+01 7.009481e+00 lineto -closepath -gsave -6.635144e-01 6.635144e-01 8.29393e-01 setrgbcolor -fill -grestore -newpath -4.848448e+01 7.009481e+00 moveto -4.96937e+01 6.54699e+00 lineto -4.964446e+01 6.263234e+00 lineto -4.843136e+01 6.703308e+00 lineto -4.848448e+01 7.009481e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.72909e+01 7.508889e+00 moveto -4.848448e+01 7.009481e+00 lineto -4.843136e+01 6.703308e+00 lineto -4.723394e+01 7.180588e+00 lineto -4.72909e+01 7.508889e+00 lineto -closepath -gsave -6.671923e-01 6.671923e-01 8.339904e-01 setrgbcolor -fill -grestore -newpath -4.72909e+01 7.508889e+00 moveto -4.848448e+01 7.009481e+00 lineto -4.843136e+01 6.703308e+00 lineto -4.723394e+01 7.180588e+00 lineto -4.72909e+01 7.508889e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.611408e+01 8.04474e+00 moveto -4.72909e+01 7.508889e+00 lineto -4.723394e+01 7.180588e+00 lineto -4.605334e+01 7.694623e+00 lineto -4.611408e+01 8.04474e+00 lineto -closepath -gsave -6.707452e-01 6.707452e-01 8.384315e-01 setrgbcolor -fill -grestore -newpath -4.611408e+01 8.04474e+00 moveto -4.72909e+01 7.508889e+00 lineto -4.723394e+01 7.180588e+00 lineto -4.605334e+01 7.694623e+00 lineto -4.611408e+01 8.04474e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.495515e+01 8.616528e+00 moveto -4.611408e+01 8.04474e+00 lineto -4.605334e+01 7.694623e+00 lineto -4.489067e+01 8.244926e+00 lineto -4.495515e+01 8.616528e+00 lineto -closepath -gsave -6.741693e-01 6.741693e-01 8.427116e-01 setrgbcolor -fill -grestore -newpath -4.495515e+01 8.616528e+00 moveto -4.611408e+01 8.04474e+00 lineto -4.605334e+01 7.694623e+00 lineto -4.489067e+01 8.244926e+00 lineto -4.495515e+01 8.616528e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.38152e+01 9.223711e+00 moveto -4.495515e+01 8.616528e+00 lineto -4.489067e+01 8.244926e+00 lineto -4.374705e+01 8.830976e+00 lineto -4.38152e+01 9.223711e+00 lineto -closepath -gsave -6.774607e-01 6.774607e-01 8.468259e-01 setrgbcolor -fill -grestore -newpath -4.38152e+01 9.223711e+00 moveto -4.495515e+01 8.616528e+00 lineto -4.489067e+01 8.244926e+00 lineto -4.374705e+01 8.830976e+00 lineto -4.38152e+01 9.223711e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.26953e+01 9.865714e+00 moveto -4.38152e+01 9.223711e+00 lineto -4.374705e+01 8.830976e+00 lineto -4.262356e+01 9.452218e+00 lineto -4.26953e+01 9.865714e+00 lineto -closepath -gsave -6.806162e-01 6.806162e-01 8.507702e-01 setrgbcolor -fill -grestore -newpath -4.26953e+01 9.865714e+00 moveto -4.38152e+01 9.223711e+00 lineto -4.374705e+01 8.830976e+00 lineto -4.262356e+01 9.452218e+00 lineto -4.26953e+01 9.865714e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.159652e+01 1.054193e+01 moveto -4.26953e+01 9.865714e+00 lineto -4.262356e+01 9.452218e+00 lineto -4.152124e+01 1.010806e+01 lineto -4.159652e+01 1.054193e+01 lineto -closepath -gsave -6.836324e-01 6.836324e-01 8.545405e-01 setrgbcolor -fill -grestore -newpath -4.159652e+01 1.054193e+01 moveto -4.26953e+01 9.865714e+00 lineto -4.262356e+01 9.452218e+00 lineto -4.152124e+01 1.010806e+01 lineto -4.159652e+01 1.054193e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.05199e+01 1.125172e+01 moveto -4.159652e+01 1.054193e+01 lineto -4.152124e+01 1.010806e+01 lineto -4.044116e+01 1.079789e+01 lineto -4.05199e+01 1.125172e+01 lineto -closepath -gsave -6.865064e-01 6.865064e-01 8.58133e-01 setrgbcolor -fill -grestore -newpath -4.05199e+01 1.125172e+01 moveto -4.159652e+01 1.054193e+01 lineto -4.152124e+01 1.010806e+01 lineto -4.044116e+01 1.079789e+01 lineto -4.05199e+01 1.125172e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.946646e+01 1.19944e+01 moveto -4.05199e+01 1.125172e+01 lineto -4.044116e+01 1.079789e+01 lineto -3.938433e+01 1.152105e+01 lineto -3.946646e+01 1.19944e+01 lineto -closepath -gsave -6.892354e-01 6.892354e-01 8.615443e-01 setrgbcolor -fill -grestore -newpath -3.946646e+01 1.19944e+01 moveto -4.05199e+01 1.125172e+01 lineto -4.044116e+01 1.079789e+01 lineto -3.938433e+01 1.152105e+01 lineto -3.946646e+01 1.19944e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.84372e+01 1.276929e+01 moveto -3.946646e+01 1.19944e+01 lineto -3.938433e+01 1.152105e+01 lineto -3.835175e+01 1.227685e+01 lineto -3.84372e+01 1.276929e+01 lineto -closepath -gsave -6.918168e-01 6.918168e-01 8.64771e-01 setrgbcolor -fill -grestore -newpath -3.84372e+01 1.276929e+01 moveto -3.946646e+01 1.19944e+01 lineto -3.938433e+01 1.152105e+01 lineto -3.835175e+01 1.227685e+01 lineto -3.84372e+01 1.276929e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.743308e+01 1.357563e+01 moveto -3.84372e+01 1.276929e+01 lineto -3.835175e+01 1.227685e+01 lineto -3.734441e+01 1.306459e+01 lineto -3.743308e+01 1.357563e+01 lineto -closepath -gsave -6.942484e-01 6.942484e-01 8.678104e-01 setrgbcolor -fill -grestore -newpath -3.743308e+01 1.357563e+01 moveto -3.84372e+01 1.276929e+01 lineto -3.835175e+01 1.227685e+01 lineto -3.734441e+01 1.306459e+01 lineto -3.743308e+01 1.357563e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.645506e+01 1.441268e+01 moveto -3.743308e+01 1.357563e+01 lineto -3.734441e+01 1.306459e+01 lineto -3.636325e+01 1.38835e+01 lineto -3.645506e+01 1.441268e+01 lineto -closepath -gsave -6.965278e-01 6.965278e-01 8.706598e-01 setrgbcolor -fill -grestore -newpath -3.645506e+01 1.441268e+01 moveto -3.743308e+01 1.357563e+01 lineto -3.734441e+01 1.306459e+01 lineto -3.636325e+01 1.38835e+01 lineto -3.645506e+01 1.441268e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.550408e+01 1.527964e+01 moveto -3.645506e+01 1.441268e+01 lineto -3.636325e+01 1.38835e+01 lineto -3.54092e+01 1.473283e+01 lineto -3.550408e+01 1.527964e+01 lineto -closepath -gsave -6.986532e-01 6.986532e-01 8.733165e-01 setrgbcolor -fill -grestore -newpath -3.550408e+01 1.527964e+01 moveto -3.645506e+01 1.441268e+01 lineto -3.636325e+01 1.38835e+01 lineto -3.54092e+01 1.473283e+01 lineto -3.550408e+01 1.527964e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.458101e+01 1.617568e+01 moveto -3.550408e+01 1.527964e+01 lineto -3.54092e+01 1.473283e+01 lineto -3.448317e+01 1.561175e+01 lineto -3.458101e+01 1.617568e+01 lineto -closepath -gsave -7.006228e-01 7.006228e-01 8.757786e-01 setrgbcolor -fill -grestore -newpath -3.458101e+01 1.617568e+01 moveto -3.550408e+01 1.527964e+01 lineto -3.54092e+01 1.473283e+01 lineto -3.448317e+01 1.561175e+01 lineto -3.458101e+01 1.617568e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.368675e+01 1.709995e+01 moveto -3.458101e+01 1.617568e+01 lineto -3.448317e+01 1.561175e+01 lineto -3.358603e+01 1.651945e+01 lineto -3.368675e+01 1.709995e+01 lineto -closepath -gsave -7.02435e-01 7.02435e-01 8.780438e-01 setrgbcolor -fill -grestore -newpath -3.368675e+01 1.709995e+01 moveto -3.458101e+01 1.617568e+01 lineto -3.448317e+01 1.561175e+01 lineto -3.358603e+01 1.651945e+01 lineto -3.368675e+01 1.709995e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.282214e+01 1.80516e+01 moveto -3.368675e+01 1.709995e+01 lineto -3.358603e+01 1.651945e+01 lineto -3.271864e+01 1.745507e+01 lineto -3.282214e+01 1.80516e+01 lineto -closepath -gsave -7.040884e-01 7.040884e-01 8.801105e-01 setrgbcolor -fill -grestore -newpath -3.282214e+01 1.80516e+01 moveto -3.368675e+01 1.709995e+01 lineto -3.358603e+01 1.651945e+01 lineto -3.271864e+01 1.745507e+01 lineto -3.282214e+01 1.80516e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.198799e+01 1.90297e+01 moveto -3.282214e+01 1.80516e+01 lineto -3.271864e+01 1.745507e+01 lineto -3.188181e+01 1.841771e+01 lineto -3.198799e+01 1.90297e+01 lineto -closepath -gsave -7.055816e-01 7.055816e-01 8.819771e-01 setrgbcolor -fill -grestore -newpath -3.198799e+01 1.90297e+01 moveto -3.282214e+01 1.80516e+01 lineto -3.271864e+01 1.745507e+01 lineto -3.188181e+01 1.841771e+01 lineto -3.198799e+01 1.90297e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.11851e+01 2.003334e+01 moveto -3.198799e+01 1.90297e+01 lineto -3.188181e+01 1.841771e+01 lineto -3.107633e+01 1.940646e+01 lineto -3.11851e+01 2.003334e+01 lineto -closepath -gsave -7.069136e-01 7.069136e-01 8.83642e-01 setrgbcolor -fill -grestore -newpath -3.11851e+01 2.003334e+01 moveto -3.198799e+01 1.90297e+01 lineto -3.188181e+01 1.841771e+01 lineto -3.107633e+01 1.940646e+01 lineto -3.11851e+01 2.003334e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.041423e+01 2.106156e+01 moveto -3.11851e+01 2.003334e+01 lineto -3.107633e+01 1.940646e+01 lineto -3.030298e+01 2.042039e+01 lineto -3.041423e+01 2.106156e+01 lineto -closepath -gsave -7.080834e-01 7.080834e-01 8.851043e-01 setrgbcolor -fill -grestore -newpath -3.041423e+01 2.106156e+01 moveto -3.11851e+01 2.003334e+01 lineto -3.107633e+01 1.940646e+01 lineto -3.030298e+01 2.042039e+01 lineto -3.041423e+01 2.106156e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.96761e+01 2.21134e+01 moveto -3.041423e+01 2.106156e+01 lineto -3.030298e+01 2.042039e+01 lineto -2.956248e+01 2.145855e+01 lineto -2.96761e+01 2.21134e+01 lineto -closepath -gsave -7.090901e-01 7.090901e-01 8.863626e-01 setrgbcolor -fill -grestore -newpath -2.96761e+01 2.21134e+01 moveto -3.041423e+01 2.106156e+01 lineto -3.030298e+01 2.042039e+01 lineto -2.956248e+01 2.145855e+01 lineto -2.96761e+01 2.21134e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.897142e+01 2.318785e+01 moveto -2.96761e+01 2.21134e+01 lineto -2.956248e+01 2.145855e+01 lineto -2.885553e+01 2.251993e+01 lineto -2.897142e+01 2.318785e+01 lineto -closepath -gsave -7.09933e-01 7.09933e-01 8.874163e-01 setrgbcolor -fill -grestore -newpath -2.897142e+01 2.318785e+01 moveto -2.96761e+01 2.21134e+01 lineto -2.956248e+01 2.145855e+01 lineto -2.885553e+01 2.251993e+01 lineto -2.897142e+01 2.318785e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.830085e+01 2.42839e+01 moveto -2.897142e+01 2.318785e+01 lineto -2.885553e+01 2.251993e+01 lineto -2.81828e+01 2.360355e+01 lineto -2.830085e+01 2.42839e+01 lineto -closepath -gsave -7.106116e-01 7.106116e-01 8.882645e-01 setrgbcolor -fill -grestore -newpath -2.830085e+01 2.42839e+01 moveto -2.897142e+01 2.318785e+01 lineto -2.885553e+01 2.251993e+01 lineto -2.81828e+01 2.360355e+01 lineto -2.830085e+01 2.42839e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.766502e+01 2.540051e+01 moveto -2.830085e+01 2.42839e+01 lineto -2.81828e+01 2.360355e+01 lineto -2.754493e+01 2.470838e+01 lineto -2.766502e+01 2.540051e+01 lineto -closepath -gsave -7.111254e-01 7.111254e-01 8.889068e-01 setrgbcolor -fill -grestore -newpath -2.766502e+01 2.540051e+01 moveto -2.830085e+01 2.42839e+01 lineto -2.81828e+01 2.360355e+01 lineto -2.754493e+01 2.470838e+01 lineto -2.766502e+01 2.540051e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.706455e+01 2.653663e+01 moveto -2.766502e+01 2.540051e+01 lineto -2.754493e+01 2.470838e+01 lineto -2.694252e+01 2.583336e+01 lineto -2.706455e+01 2.653663e+01 lineto -closepath -gsave -7.114741e-01 7.114741e-01 8.893426e-01 setrgbcolor -fill -grestore -newpath -2.706455e+01 2.653663e+01 moveto -2.766502e+01 2.540051e+01 lineto -2.754493e+01 2.470838e+01 lineto -2.694252e+01 2.583336e+01 lineto -2.706455e+01 2.653663e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.649999e+01 2.769117e+01 moveto -2.706455e+01 2.653663e+01 lineto -2.694252e+01 2.583336e+01 lineto -2.637615e+01 2.697744e+01 lineto -2.649999e+01 2.769117e+01 lineto -closepath -gsave -7.116573e-01 7.116573e-01 8.895717e-01 setrgbcolor -fill -grestore -newpath -2.649999e+01 2.769117e+01 moveto -2.706455e+01 2.653663e+01 lineto -2.694252e+01 2.583336e+01 lineto -2.637615e+01 2.697744e+01 lineto -2.649999e+01 2.769117e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.597188e+01 2.886305e+01 moveto -2.649999e+01 2.769117e+01 lineto -2.637615e+01 2.697744e+01 lineto -2.584635e+01 2.813953e+01 lineto -2.597188e+01 2.886305e+01 lineto -closepath -gsave -7.116751e-01 7.116751e-01 8.895939e-01 setrgbcolor -fill -grestore -newpath -2.597188e+01 2.886305e+01 moveto -2.649999e+01 2.769117e+01 lineto -2.637615e+01 2.697744e+01 lineto -2.584635e+01 2.813953e+01 lineto -2.597188e+01 2.886305e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.548073e+01 3.005116e+01 moveto -2.597188e+01 2.886305e+01 lineto -2.584635e+01 2.813953e+01 lineto -2.535361e+01 2.931853e+01 lineto -2.548073e+01 3.005116e+01 lineto -closepath -gsave -7.115275e-01 7.115275e-01 8.894094e-01 setrgbcolor -fill -grestore -newpath -2.548073e+01 3.005116e+01 moveto -2.597188e+01 2.886305e+01 lineto -2.584635e+01 2.813953e+01 lineto -2.535361e+01 2.931853e+01 lineto -2.548073e+01 3.005116e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.5027e+01 3.125436e+01 moveto -2.548073e+01 3.005116e+01 lineto -2.535361e+01 2.931853e+01 lineto -2.489842e+01 3.051332e+01 lineto -2.5027e+01 3.125436e+01 lineto -closepath -gsave -7.112145e-01 7.112145e-01 8.890181e-01 setrgbcolor -fill -grestore -newpath -2.5027e+01 3.125436e+01 moveto -2.548073e+01 3.005116e+01 lineto -2.535361e+01 2.931853e+01 lineto -2.489842e+01 3.051332e+01 lineto -2.5027e+01 3.125436e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.368712e+01 3.97134e+00 moveto -6.499575e+01 3.999843e+00 lineto -6.499576e+01 3.999765e+00 lineto -6.3691e+01 3.947379e+00 lineto -6.368712e+01 3.97134e+00 lineto -closepath -gsave -6.111362e-01 6.111362e-01 7.639203e-01 setrgbcolor -fill -grestore -newpath -6.368712e+01 3.97134e+00 moveto -6.499575e+01 3.999843e+00 lineto -6.499576e+01 3.999765e+00 lineto -6.3691e+01 3.947379e+00 lineto -6.368712e+01 3.97134e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.237973e+01 3.982631e+00 moveto -6.368712e+01 3.97134e+00 lineto -6.3691e+01 3.947379e+00 lineto -6.238748e+01 3.93481e+00 lineto -6.237973e+01 3.982631e+00 lineto -closepath -gsave -6.154221e-01 6.154221e-01 7.692776e-01 setrgbcolor -fill -grestore -newpath -6.237973e+01 3.982631e+00 moveto -6.368712e+01 3.97134e+00 lineto -6.3691e+01 3.947379e+00 lineto -6.238748e+01 3.93481e+00 lineto -6.237973e+01 3.982631e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.107482e+01 4.033704e+00 moveto -6.237973e+01 3.982631e+00 lineto -6.238748e+01 3.93481e+00 lineto -6.108644e+01 3.962068e+00 lineto -6.107482e+01 4.033704e+00 lineto -closepath -gsave -6.19646e-01 6.19646e-01 7.745575e-01 setrgbcolor -fill -grestore -newpath -6.107482e+01 4.033704e+00 moveto -6.237973e+01 3.982631e+00 lineto -6.238748e+01 3.93481e+00 lineto -6.108644e+01 3.962068e+00 lineto -6.107482e+01 4.033704e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.977363e+01 4.124512e+00 moveto -6.107482e+01 4.033704e+00 lineto -6.108644e+01 3.962068e+00 lineto -5.97891e+01 4.029128e+00 lineto -5.977363e+01 4.124512e+00 lineto -closepath -gsave -6.238023e-01 6.238023e-01 7.797528e-01 setrgbcolor -fill -grestore -newpath -5.977363e+01 4.124512e+00 moveto -6.107482e+01 4.033704e+00 lineto -6.108644e+01 3.962068e+00 lineto -5.97891e+01 4.029128e+00 lineto -5.977363e+01 4.124512e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.847739e+01 4.254967e+00 moveto -5.977363e+01 4.124512e+00 lineto -5.97891e+01 4.029128e+00 lineto -5.849669e+01 4.135926e+00 lineto -5.847739e+01 4.254967e+00 lineto -closepath -gsave -6.278854e-01 6.278854e-01 7.848568e-01 setrgbcolor -fill -grestore -newpath -5.847739e+01 4.254967e+00 moveto -5.977363e+01 4.124512e+00 lineto -5.97891e+01 4.029128e+00 lineto -5.849669e+01 4.135926e+00 lineto -5.847739e+01 4.254967e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.718732e+01 4.424947e+00 moveto -5.847739e+01 4.254967e+00 lineto -5.849669e+01 4.135926e+00 lineto -5.721044e+01 4.282362e+00 lineto -5.718732e+01 4.424947e+00 lineto -closepath -gsave -6.318902e-01 6.318902e-01 7.898628e-01 setrgbcolor -fill -grestore -newpath -5.718732e+01 4.424947e+00 moveto -5.847739e+01 4.254967e+00 lineto -5.849669e+01 4.135926e+00 lineto -5.721044e+01 4.282362e+00 lineto -5.718732e+01 4.424947e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.590466e+01 4.634291e+00 moveto -5.718732e+01 4.424947e+00 lineto -5.721044e+01 4.282362e+00 lineto -5.593157e+01 4.468296e+00 lineto -5.590466e+01 4.634291e+00 lineto -closepath -gsave -6.358115e-01 6.358115e-01 7.947644e-01 setrgbcolor -fill -grestore -newpath -5.590466e+01 4.634291e+00 moveto -5.718732e+01 4.424947e+00 lineto -5.721044e+01 4.282362e+00 lineto -5.593157e+01 4.468296e+00 lineto -5.590466e+01 4.634291e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.46306e+01 4.8828e+00 moveto -5.590466e+01 4.634291e+00 lineto -5.593157e+01 4.468296e+00 lineto -5.466128e+01 4.693553e+00 lineto -5.46306e+01 4.8828e+00 lineto -closepath -gsave -6.396442e-01 6.396442e-01 7.995553e-01 setrgbcolor -fill -grestore -newpath -5.46306e+01 4.8828e+00 moveto -5.590466e+01 4.634291e+00 lineto -5.593157e+01 4.468296e+00 lineto -5.466128e+01 4.693553e+00 lineto -5.46306e+01 4.8828e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.336636e+01 5.170239e+00 moveto -5.46306e+01 4.8828e+00 lineto -5.466128e+01 4.693553e+00 lineto -5.340078e+01 4.957919e+00 lineto -5.336636e+01 5.170239e+00 lineto -closepath -gsave -6.433837e-01 6.433837e-01 8.042296e-01 setrgbcolor -fill -grestore -newpath -5.336636e+01 5.170239e+00 moveto -5.46306e+01 4.8828e+00 lineto -5.466128e+01 4.693553e+00 lineto -5.340078e+01 4.957919e+00 lineto -5.336636e+01 5.170239e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.211313e+01 5.496336e+00 moveto -5.336636e+01 5.170239e+00 lineto -5.340078e+01 4.957919e+00 lineto -5.215127e+01 5.261145e+00 lineto -5.211313e+01 5.496336e+00 lineto -closepath -gsave -6.470252e-01 6.470252e-01 8.087816e-01 setrgbcolor -fill -grestore -newpath -5.211313e+01 5.496336e+00 moveto -5.336636e+01 5.170239e+00 lineto -5.340078e+01 4.957919e+00 lineto -5.215127e+01 5.261145e+00 lineto -5.211313e+01 5.496336e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.087211e+01 5.860783e+00 moveto -5.211313e+01 5.496336e+00 lineto -5.215127e+01 5.261145e+00 lineto -5.091392e+01 5.602942e+00 lineto -5.087211e+01 5.860783e+00 lineto -closepath -gsave -6.505645e-01 6.505645e-01 8.132057e-01 setrgbcolor -fill -grestore -newpath -5.087211e+01 5.860783e+00 moveto -5.211313e+01 5.496336e+00 lineto -5.215127e+01 5.261145e+00 lineto -5.091392e+01 5.602942e+00 lineto -5.087211e+01 5.860783e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.964446e+01 6.263234e+00 moveto -5.087211e+01 5.860783e+00 lineto -5.091392e+01 5.602942e+00 lineto -4.96899e+01 5.982987e+00 lineto -4.964446e+01 6.263234e+00 lineto -closepath -gsave -6.539973e-01 6.539973e-01 8.174966e-01 setrgbcolor -fill -grestore -newpath -4.964446e+01 6.263234e+00 moveto -5.087211e+01 5.860783e+00 lineto -5.091392e+01 5.602942e+00 lineto -4.96899e+01 5.982987e+00 lineto -4.964446e+01 6.263234e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.843136e+01 6.703308e+00 moveto -4.964446e+01 6.263234e+00 lineto -4.96899e+01 5.982987e+00 lineto -4.848038e+01 6.400922e+00 lineto -4.843136e+01 6.703308e+00 lineto -closepath -gsave -6.573196e-01 6.573196e-01 8.216495e-01 setrgbcolor -fill -grestore -newpath -4.843136e+01 6.703308e+00 moveto -4.964446e+01 6.263234e+00 lineto -4.96899e+01 5.982987e+00 lineto -4.848038e+01 6.400922e+00 lineto -4.843136e+01 6.703308e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.723394e+01 7.180588e+00 moveto -4.843136e+01 6.703308e+00 lineto -4.848038e+01 6.400922e+00 lineto -4.728651e+01 6.856348e+00 lineto -4.723394e+01 7.180588e+00 lineto -closepath -gsave -6.605277e-01 6.605277e-01 8.256596e-01 setrgbcolor -fill -grestore -newpath -4.723394e+01 7.180588e+00 moveto -4.843136e+01 6.703308e+00 lineto -4.848038e+01 6.400922e+00 lineto -4.728651e+01 6.856348e+00 lineto -4.723394e+01 7.180588e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.605334e+01 7.694623e+00 moveto -4.723394e+01 7.180588e+00 lineto -4.728651e+01 6.856348e+00 lineto -4.61094e+01 7.348837e+00 lineto -4.605334e+01 7.694623e+00 lineto -closepath -gsave -6.636179e-01 6.636179e-01 8.295223e-01 setrgbcolor -fill -grestore -newpath -4.605334e+01 7.694623e+00 moveto -4.723394e+01 7.180588e+00 lineto -4.728651e+01 6.856348e+00 lineto -4.61094e+01 7.348837e+00 lineto -4.605334e+01 7.694623e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.489067e+01 8.244926e+00 moveto -4.605334e+01 7.694623e+00 lineto -4.61094e+01 7.348837e+00 lineto -4.495018e+01 7.877921e+00 lineto -4.489067e+01 8.244926e+00 lineto -closepath -gsave -6.665868e-01 6.665868e-01 8.332335e-01 setrgbcolor -fill -grestore -newpath -4.489067e+01 8.244926e+00 moveto -4.605334e+01 7.694623e+00 lineto -4.61094e+01 7.348837e+00 lineto -4.495018e+01 7.877921e+00 lineto -4.489067e+01 8.244926e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.374705e+01 8.830976e+00 moveto -4.489067e+01 8.244926e+00 lineto -4.495018e+01 7.877921e+00 lineto -4.380994e+01 8.443099e+00 lineto -4.374705e+01 8.830976e+00 lineto -closepath -gsave -6.694313e-01 6.694313e-01 8.367891e-01 setrgbcolor -fill -grestore -newpath -4.374705e+01 8.830976e+00 moveto -4.489067e+01 8.244926e+00 lineto -4.495018e+01 7.877921e+00 lineto -4.380994e+01 8.443099e+00 lineto -4.374705e+01 8.830976e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.262356e+01 9.452218e+00 moveto -4.374705e+01 8.830976e+00 lineto -4.380994e+01 8.443099e+00 lineto -4.268977e+01 9.043836e+00 lineto -4.262356e+01 9.452218e+00 lineto -closepath -gsave -6.721483e-01 6.721483e-01 8.401854e-01 setrgbcolor -fill -grestore -newpath -4.262356e+01 9.452218e+00 moveto -4.374705e+01 8.830976e+00 lineto -4.380994e+01 8.443099e+00 lineto -4.268977e+01 9.043836e+00 lineto -4.262356e+01 9.452218e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.152124e+01 1.010806e+01 moveto -4.262356e+01 9.452218e+00 lineto -4.268977e+01 9.043836e+00 lineto -4.159072e+01 9.679564e+00 lineto -4.152124e+01 1.010806e+01 lineto -closepath -gsave -6.747351e-01 6.747351e-01 8.434189e-01 setrgbcolor -fill -grestore -newpath -4.152124e+01 1.010806e+01 moveto -4.262356e+01 9.452218e+00 lineto -4.268977e+01 9.043836e+00 lineto -4.159072e+01 9.679564e+00 lineto -4.152124e+01 1.010806e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.044116e+01 1.079789e+01 moveto -4.152124e+01 1.010806e+01 lineto -4.159072e+01 9.679564e+00 lineto -4.051383e+01 1.034968e+01 lineto -4.044116e+01 1.079789e+01 lineto -closepath -gsave -6.771891e-01 6.771891e-01 8.464864e-01 setrgbcolor -fill -grestore -newpath -4.044116e+01 1.079789e+01 moveto -4.152124e+01 1.010806e+01 lineto -4.159072e+01 9.679564e+00 lineto -4.051383e+01 1.034968e+01 lineto -4.044116e+01 1.079789e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.938433e+01 1.152105e+01 moveto -4.044116e+01 1.079789e+01 lineto -4.051383e+01 1.034968e+01 lineto -3.946013e+01 1.105355e+01 lineto -3.938433e+01 1.152105e+01 lineto -closepath -gsave -6.795078e-01 6.795078e-01 8.493848e-01 setrgbcolor -fill -grestore -newpath -3.938433e+01 1.152105e+01 moveto -4.044116e+01 1.079789e+01 lineto -4.051383e+01 1.034968e+01 lineto -3.946013e+01 1.105355e+01 lineto -3.938433e+01 1.152105e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.835175e+01 1.227685e+01 moveto -3.938433e+01 1.152105e+01 lineto -3.946013e+01 1.105355e+01 lineto -3.843061e+01 1.179051e+01 lineto -3.835175e+01 1.227685e+01 lineto -closepath -gsave -6.816891e-01 6.816891e-01 8.521113e-01 setrgbcolor -fill -grestore -newpath -3.835175e+01 1.227685e+01 moveto -3.938433e+01 1.152105e+01 lineto -3.946013e+01 1.105355e+01 lineto -3.843061e+01 1.179051e+01 lineto -3.835175e+01 1.227685e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.734441e+01 1.306459e+01 moveto -3.835175e+01 1.227685e+01 lineto -3.843061e+01 1.179051e+01 lineto -3.742624e+01 1.255986e+01 lineto -3.734441e+01 1.306459e+01 lineto -closepath -gsave -6.837307e-01 6.837307e-01 8.546634e-01 setrgbcolor -fill -grestore -newpath -3.734441e+01 1.306459e+01 moveto -3.835175e+01 1.227685e+01 lineto -3.843061e+01 1.179051e+01 lineto -3.742624e+01 1.255986e+01 lineto -3.734441e+01 1.306459e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.636325e+01 1.38835e+01 moveto -3.734441e+01 1.306459e+01 lineto -3.742624e+01 1.255986e+01 lineto -3.644798e+01 1.336087e+01 lineto -3.636325e+01 1.38835e+01 lineto -closepath -gsave -6.856309e-01 6.856309e-01 8.570387e-01 setrgbcolor -fill -grestore -newpath -3.636325e+01 1.38835e+01 moveto -3.734441e+01 1.306459e+01 lineto -3.742624e+01 1.255986e+01 lineto -3.644798e+01 1.336087e+01 lineto -3.636325e+01 1.38835e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.54092e+01 1.473283e+01 moveto -3.636325e+01 1.38835e+01 lineto -3.644798e+01 1.336087e+01 lineto -3.549676e+01 1.419278e+01 lineto -3.54092e+01 1.473283e+01 lineto -closepath -gsave -6.87388e-01 6.87388e-01 8.59235e-01 setrgbcolor -fill -grestore -newpath -3.54092e+01 1.473283e+01 moveto -3.636325e+01 1.38835e+01 lineto -3.644798e+01 1.336087e+01 lineto -3.549676e+01 1.419278e+01 lineto -3.54092e+01 1.473283e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.448317e+01 1.561175e+01 moveto -3.54092e+01 1.473283e+01 lineto -3.549676e+01 1.419278e+01 lineto -3.457347e+01 1.505481e+01 lineto -3.448317e+01 1.561175e+01 lineto -closepath -gsave -6.890003e-01 6.890003e-01 8.612504e-01 setrgbcolor -fill -grestore -newpath -3.448317e+01 1.561175e+01 moveto -3.54092e+01 1.473283e+01 lineto -3.549676e+01 1.419278e+01 lineto -3.457347e+01 1.505481e+01 lineto -3.448317e+01 1.561175e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.358603e+01 1.651945e+01 moveto -3.448317e+01 1.561175e+01 lineto -3.457347e+01 1.505481e+01 lineto -3.367899e+01 1.594613e+01 lineto -3.358603e+01 1.651945e+01 lineto -closepath -gsave -6.904665e-01 6.904665e-01 8.630831e-01 setrgbcolor -fill -grestore -newpath -3.358603e+01 1.651945e+01 moveto -3.448317e+01 1.561175e+01 lineto -3.457347e+01 1.505481e+01 lineto -3.367899e+01 1.594613e+01 lineto -3.358603e+01 1.651945e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.271864e+01 1.745507e+01 moveto -3.358603e+01 1.651945e+01 lineto -3.367899e+01 1.594613e+01 lineto -3.281416e+01 1.686592e+01 lineto -3.271864e+01 1.745507e+01 lineto -closepath -gsave -6.917853e-01 6.917853e-01 8.647317e-01 setrgbcolor -fill -grestore -newpath -3.271864e+01 1.745507e+01 moveto -3.358603e+01 1.651945e+01 lineto -3.367899e+01 1.594613e+01 lineto -3.281416e+01 1.686592e+01 lineto -3.271864e+01 1.745507e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.188181e+01 1.841771e+01 moveto -3.271864e+01 1.745507e+01 lineto -3.281416e+01 1.686592e+01 lineto -3.197981e+01 1.781328e+01 lineto -3.188181e+01 1.841771e+01 lineto -closepath -gsave -6.929557e-01 6.929557e-01 8.661946e-01 setrgbcolor -fill -grestore -newpath -3.188181e+01 1.841771e+01 moveto -3.271864e+01 1.745507e+01 lineto -3.281416e+01 1.686592e+01 lineto -3.197981e+01 1.781328e+01 lineto -3.188181e+01 1.841771e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.107633e+01 1.940646e+01 moveto -3.188181e+01 1.841771e+01 lineto -3.197981e+01 1.781328e+01 lineto -3.117672e+01 1.878734e+01 lineto -3.107633e+01 1.940646e+01 lineto -closepath -gsave -6.939766e-01 6.939766e-01 8.674707e-01 setrgbcolor -fill -grestore -newpath -3.107633e+01 1.940646e+01 moveto -3.188181e+01 1.841771e+01 lineto -3.197981e+01 1.781328e+01 lineto -3.117672e+01 1.878734e+01 lineto -3.107633e+01 1.940646e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.030298e+01 2.042039e+01 moveto -3.107633e+01 1.940646e+01 lineto -3.117672e+01 1.878734e+01 lineto -3.040565e+01 1.978716e+01 lineto -3.030298e+01 2.042039e+01 lineto -closepath -gsave -6.948472e-01 6.948472e-01 8.68559e-01 setrgbcolor -fill -grestore -newpath -3.030298e+01 2.042039e+01 moveto -3.107633e+01 1.940646e+01 lineto -3.117672e+01 1.878734e+01 lineto -3.040565e+01 1.978716e+01 lineto -3.030298e+01 2.042039e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.956248e+01 2.145855e+01 moveto -3.030298e+01 2.042039e+01 lineto -3.040565e+01 1.978716e+01 lineto -2.966734e+01 2.081179e+01 lineto -2.956248e+01 2.145855e+01 lineto -closepath -gsave -6.955669e-01 6.955669e-01 8.694586e-01 setrgbcolor -fill -grestore -newpath -2.956248e+01 2.145855e+01 moveto -3.030298e+01 2.042039e+01 lineto -3.040565e+01 1.978716e+01 lineto -2.966734e+01 2.081179e+01 lineto -2.956248e+01 2.145855e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.885553e+01 2.251993e+01 moveto -2.956248e+01 2.145855e+01 lineto -2.966734e+01 2.081179e+01 lineto -2.896248e+01 2.186028e+01 lineto -2.885553e+01 2.251993e+01 lineto -closepath -gsave -6.96135e-01 6.96135e-01 8.701688e-01 setrgbcolor -fill -grestore -newpath -2.885553e+01 2.251993e+01 moveto -2.956248e+01 2.145855e+01 lineto -2.966734e+01 2.081179e+01 lineto -2.896248e+01 2.186028e+01 lineto -2.885553e+01 2.251993e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.81828e+01 2.360355e+01 moveto -2.885553e+01 2.251993e+01 lineto -2.896248e+01 2.186028e+01 lineto -2.829174e+01 2.293162e+01 lineto -2.81828e+01 2.360355e+01 lineto -closepath -gsave -6.965512e-01 6.965512e-01 8.70689e-01 setrgbcolor -fill -grestore -newpath -2.81828e+01 2.360355e+01 moveto -2.885553e+01 2.251993e+01 lineto -2.896248e+01 2.186028e+01 lineto -2.829174e+01 2.293162e+01 lineto -2.81828e+01 2.360355e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.754493e+01 2.470838e+01 moveto -2.81828e+01 2.360355e+01 lineto -2.829174e+01 2.293162e+01 lineto -2.765576e+01 2.402481e+01 lineto -2.754493e+01 2.470838e+01 lineto -closepath -gsave -6.968151e-01 6.968151e-01 8.710189e-01 setrgbcolor -fill -grestore -newpath -2.754493e+01 2.470838e+01 moveto -2.81828e+01 2.360355e+01 lineto -2.829174e+01 2.293162e+01 lineto -2.765576e+01 2.402481e+01 lineto -2.754493e+01 2.470838e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.694252e+01 2.583336e+01 moveto -2.754493e+01 2.470838e+01 lineto -2.765576e+01 2.402481e+01 lineto -2.705514e+01 2.51388e+01 lineto -2.694252e+01 2.583336e+01 lineto -closepath -gsave -6.969266e-01 6.969266e-01 8.711582e-01 setrgbcolor -fill -grestore -newpath -2.694252e+01 2.583336e+01 moveto -2.754493e+01 2.470838e+01 lineto -2.765576e+01 2.402481e+01 lineto -2.705514e+01 2.51388e+01 lineto -2.694252e+01 2.583336e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.637615e+01 2.697744e+01 moveto -2.694252e+01 2.583336e+01 lineto -2.705514e+01 2.51388e+01 lineto -2.649044e+01 2.627254e+01 lineto -2.637615e+01 2.697744e+01 lineto -closepath -gsave -6.968854e-01 6.968854e-01 8.711068e-01 setrgbcolor -fill -grestore -newpath -2.637615e+01 2.697744e+01 moveto -2.694252e+01 2.583336e+01 lineto -2.705514e+01 2.51388e+01 lineto -2.649044e+01 2.627254e+01 lineto -2.637615e+01 2.697744e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.584635e+01 2.813953e+01 moveto -2.637615e+01 2.697744e+01 lineto -2.649044e+01 2.627254e+01 lineto -2.59622e+01 2.742496e+01 lineto -2.584635e+01 2.813953e+01 lineto -closepath -gsave -6.966918e-01 6.966918e-01 8.708648e-01 setrgbcolor -fill -grestore -newpath -2.584635e+01 2.813953e+01 moveto -2.637615e+01 2.697744e+01 lineto -2.649044e+01 2.627254e+01 lineto -2.59622e+01 2.742496e+01 lineto -2.584635e+01 2.813953e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.535361e+01 2.931853e+01 moveto -2.584635e+01 2.813953e+01 lineto -2.59622e+01 2.742496e+01 lineto -2.547093e+01 2.859496e+01 lineto -2.535361e+01 2.931853e+01 lineto -closepath -gsave -6.963459e-01 6.963459e-01 8.704324e-01 setrgbcolor -fill -grestore -newpath -2.535361e+01 2.931853e+01 moveto -2.584635e+01 2.813953e+01 lineto -2.59622e+01 2.742496e+01 lineto -2.547093e+01 2.859496e+01 lineto -2.535361e+01 2.931853e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.489842e+01 3.051332e+01 moveto -2.535361e+01 2.931853e+01 lineto -2.547093e+01 2.859496e+01 lineto -2.501708e+01 2.978145e+01 lineto -2.489842e+01 3.051332e+01 lineto -closepath -gsave -6.95848e-01 6.95848e-01 8.6981e-01 setrgbcolor -fill -grestore -newpath -2.489842e+01 3.051332e+01 moveto -2.535361e+01 2.931853e+01 lineto -2.547093e+01 2.859496e+01 lineto -2.501708e+01 2.978145e+01 lineto -2.489842e+01 3.051332e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.3691e+01 3.947379e+00 moveto -6.499576e+01 3.999765e+00 lineto -6.49958e+01 3.999689e+00 lineto -6.370296e+01 3.923866e+00 lineto -6.3691e+01 3.947379e+00 lineto -closepath -gsave -6.108725e-01 6.108725e-01 7.635906e-01 setrgbcolor -fill -grestore -newpath -6.3691e+01 3.947379e+00 moveto -6.499576e+01 3.999765e+00 lineto -6.49958e+01 3.999689e+00 lineto -6.370296e+01 3.923866e+00 lineto -6.3691e+01 3.947379e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.238748e+01 3.93481e+00 moveto -6.3691e+01 3.947379e+00 lineto -6.370296e+01 3.923866e+00 lineto -6.241134e+01 3.887882e+00 lineto -6.238748e+01 3.93481e+00 lineto -closepath -gsave -6.146322e-01 6.146322e-01 7.682902e-01 setrgbcolor -fill -grestore -newpath -6.238748e+01 3.93481e+00 moveto -6.3691e+01 3.947379e+00 lineto -6.370296e+01 3.923866e+00 lineto -6.241134e+01 3.887882e+00 lineto -6.238748e+01 3.93481e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.108644e+01 3.962068e+00 moveto -6.238748e+01 3.93481e+00 lineto -6.241134e+01 3.887882e+00 lineto -6.112218e+01 3.89177e+00 lineto -6.108644e+01 3.962068e+00 lineto -closepath -gsave -6.183279e-01 6.183279e-01 7.729099e-01 setrgbcolor -fill -grestore -newpath -6.108644e+01 3.962068e+00 moveto -6.238748e+01 3.93481e+00 lineto -6.241134e+01 3.887882e+00 lineto -6.112218e+01 3.89177e+00 lineto -6.108644e+01 3.962068e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.97891e+01 4.029128e+00 moveto -6.108644e+01 3.962068e+00 lineto -6.112218e+01 3.89177e+00 lineto -5.983669e+01 3.935526e+00 lineto -5.97891e+01 4.029128e+00 lineto -closepath -gsave -6.21955e-01 6.21955e-01 7.774437e-01 setrgbcolor -fill -grestore -newpath -5.97891e+01 4.029128e+00 moveto -6.108644e+01 3.962068e+00 lineto -6.112218e+01 3.89177e+00 lineto -5.983669e+01 3.935526e+00 lineto -5.97891e+01 4.029128e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.849669e+01 4.135926e+00 moveto -5.97891e+01 4.029128e+00 lineto -5.983669e+01 3.935526e+00 lineto -5.855609e+01 4.01911e+00 lineto -5.849669e+01 4.135926e+00 lineto -closepath -gsave -6.255087e-01 6.255087e-01 7.818859e-01 setrgbcolor -fill -grestore -newpath -5.849669e+01 4.135926e+00 moveto -5.97891e+01 4.029128e+00 lineto -5.983669e+01 3.935526e+00 lineto -5.855609e+01 4.01911e+00 lineto -5.849669e+01 4.135926e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.721044e+01 4.282362e+00 moveto -5.849669e+01 4.135926e+00 lineto -5.855609e+01 4.01911e+00 lineto -5.728159e+01 4.142441e+00 lineto -5.721044e+01 4.282362e+00 lineto -closepath -gsave -6.289848e-01 6.289848e-01 7.86231e-01 setrgbcolor -fill -grestore -newpath -5.721044e+01 4.282362e+00 moveto -5.849669e+01 4.135926e+00 lineto -5.855609e+01 4.01911e+00 lineto -5.728159e+01 4.142441e+00 lineto -5.721044e+01 4.282362e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.593157e+01 4.468296e+00 moveto -5.721044e+01 4.282362e+00 lineto -5.728159e+01 4.142441e+00 lineto -5.601439e+01 4.305404e+00 lineto -5.593157e+01 4.468296e+00 lineto -closepath -gsave -6.323787e-01 6.323787e-01 7.904734e-01 setrgbcolor -fill -grestore -newpath -5.593157e+01 4.468296e+00 moveto -5.721044e+01 4.282362e+00 lineto -5.728159e+01 4.142441e+00 lineto -5.601439e+01 4.305404e+00 lineto -5.593157e+01 4.468296e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.466128e+01 4.693553e+00 moveto -5.593157e+01 4.468296e+00 lineto -5.601439e+01 4.305404e+00 lineto -5.475571e+01 4.507843e+00 lineto -5.466128e+01 4.693553e+00 lineto -closepath -gsave -6.356865e-01 6.356865e-01 7.946081e-01 setrgbcolor -fill -grestore -newpath -5.466128e+01 4.693553e+00 moveto -5.593157e+01 4.468296e+00 lineto -5.601439e+01 4.305404e+00 lineto -5.475571e+01 4.507843e+00 lineto -5.466128e+01 4.693553e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.340078e+01 4.957919e+00 moveto -5.466128e+01 4.693553e+00 lineto -5.475571e+01 4.507843e+00 lineto -5.350672e+01 4.749567e+00 lineto -5.340078e+01 4.957919e+00 lineto -closepath -gsave -6.38904e-01 6.38904e-01 7.986299e-01 setrgbcolor -fill -grestore -newpath -5.340078e+01 4.957919e+00 moveto -5.466128e+01 4.693553e+00 lineto -5.475571e+01 4.507843e+00 lineto -5.350672e+01 4.749567e+00 lineto -5.340078e+01 4.957919e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.215127e+01 5.261145e+00 moveto -5.340078e+01 4.957919e+00 lineto -5.350672e+01 4.749567e+00 lineto -5.226862e+01 5.030348e+00 lineto -5.215127e+01 5.261145e+00 lineto -closepath -gsave -6.420274e-01 6.420274e-01 8.025342e-01 setrgbcolor -fill -grestore -newpath -5.215127e+01 5.261145e+00 moveto -5.340078e+01 4.957919e+00 lineto -5.350672e+01 4.749567e+00 lineto -5.226862e+01 5.030348e+00 lineto -5.215127e+01 5.261145e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.091392e+01 5.602942e+00 moveto -5.215127e+01 5.261145e+00 lineto -5.226862e+01 5.030348e+00 lineto -5.104257e+01 5.34992e+00 lineto -5.091392e+01 5.602942e+00 lineto -closepath -gsave -6.450531e-01 6.450531e-01 8.063163e-01 setrgbcolor -fill -grestore -newpath -5.091392e+01 5.602942e+00 moveto -5.215127e+01 5.261145e+00 lineto -5.226862e+01 5.030348e+00 lineto -5.104257e+01 5.34992e+00 lineto -5.091392e+01 5.602942e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.96899e+01 5.982987e+00 moveto -5.091392e+01 5.602942e+00 lineto -5.104257e+01 5.34992e+00 lineto -4.982973e+01 5.707979e+00 lineto -4.96899e+01 5.982987e+00 lineto -closepath -gsave -6.479775e-01 6.479775e-01 8.099719e-01 setrgbcolor -fill -grestore -newpath -4.96899e+01 5.982987e+00 moveto -5.091392e+01 5.602942e+00 lineto -5.104257e+01 5.34992e+00 lineto -4.982973e+01 5.707979e+00 lineto -4.96899e+01 5.982987e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.848038e+01 6.400922e+00 moveto -4.96899e+01 5.982987e+00 lineto -4.982973e+01 5.707979e+00 lineto -4.863126e+01 6.104187e+00 lineto -4.848038e+01 6.400922e+00 lineto -closepath -gsave -6.507973e-01 6.507973e-01 8.134966e-01 setrgbcolor -fill -grestore -newpath -4.848038e+01 6.400922e+00 moveto -4.96899e+01 5.982987e+00 lineto -4.982973e+01 5.707979e+00 lineto -4.863126e+01 6.104187e+00 lineto -4.848038e+01 6.400922e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.728651e+01 6.856348e+00 moveto -4.848038e+01 6.400922e+00 lineto -4.863126e+01 6.104187e+00 lineto -4.744829e+01 6.538168e+00 lineto -4.728651e+01 6.856348e+00 lineto -closepath -gsave -6.535093e-01 6.535093e-01 8.168867e-01 setrgbcolor -fill -grestore -newpath -4.728651e+01 6.856348e+00 moveto -4.848038e+01 6.400922e+00 lineto -4.863126e+01 6.104187e+00 lineto -4.744829e+01 6.538168e+00 lineto -4.728651e+01 6.856348e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.61094e+01 7.348837e+00 moveto -4.728651e+01 6.856348e+00 lineto -4.744829e+01 6.538168e+00 lineto -4.628193e+01 7.009513e+00 lineto -4.61094e+01 7.348837e+00 lineto -closepath -gsave -6.561106e-01 6.561106e-01 8.201382e-01 setrgbcolor -fill -grestore -newpath -4.61094e+01 7.348837e+00 moveto -4.728651e+01 6.856348e+00 lineto -4.744829e+01 6.538168e+00 lineto -4.628193e+01 7.009513e+00 lineto -4.61094e+01 7.348837e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.495018e+01 7.877921e+00 moveto -4.61094e+01 7.348837e+00 lineto -4.628193e+01 7.009513e+00 lineto -4.51333e+01 7.517774e+00 lineto -4.495018e+01 7.877921e+00 lineto -closepath -gsave -6.585982e-01 6.585982e-01 8.232477e-01 setrgbcolor -fill -grestore -newpath -4.495018e+01 7.877921e+00 moveto -4.61094e+01 7.348837e+00 lineto -4.628193e+01 7.009513e+00 lineto -4.51333e+01 7.517774e+00 lineto -4.495018e+01 7.877921e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.380994e+01 8.443099e+00 moveto -4.495018e+01 7.877921e+00 lineto -4.51333e+01 7.517774e+00 lineto -4.400347e+01 8.062471e+00 lineto -4.380994e+01 8.443099e+00 lineto -closepath -gsave -6.609695e-01 6.609695e-01 8.262119e-01 setrgbcolor -fill -grestore -newpath -4.380994e+01 8.443099e+00 moveto -4.495018e+01 7.877921e+00 lineto -4.51333e+01 7.517774e+00 lineto -4.400347e+01 8.062471e+00 lineto -4.380994e+01 8.443099e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.268977e+01 9.043836e+00 moveto -4.380994e+01 8.443099e+00 lineto -4.400347e+01 8.062471e+00 lineto -4.289353e+01 8.643087e+00 lineto -4.268977e+01 9.043836e+00 lineto -closepath -gsave -6.63222e-01 6.63222e-01 8.290275e-01 setrgbcolor -fill -grestore -newpath -4.268977e+01 9.043836e+00 moveto -4.380994e+01 8.443099e+00 lineto -4.400347e+01 8.062471e+00 lineto -4.289353e+01 8.643087e+00 lineto -4.268977e+01 9.043836e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.159072e+01 9.679564e+00 moveto -4.268977e+01 9.043836e+00 lineto -4.289353e+01 8.643087e+00 lineto -4.180452e+01 9.259073e+00 lineto -4.159072e+01 9.679564e+00 lineto -closepath -gsave -6.653533e-01 6.653533e-01 8.316917e-01 setrgbcolor -fill -grestore -newpath -4.159072e+01 9.679564e+00 moveto -4.268977e+01 9.043836e+00 lineto -4.289353e+01 8.643087e+00 lineto -4.180452e+01 9.259073e+00 lineto -4.159072e+01 9.679564e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.051383e+01 1.034968e+01 moveto -4.159072e+01 9.679564e+00 lineto -4.180452e+01 9.259073e+00 lineto -4.073747e+01 9.909846e+00 lineto -4.051383e+01 1.034968e+01 lineto -closepath -gsave -6.673614e-01 6.673614e-01 8.342017e-01 setrgbcolor -fill -grestore -newpath -4.051383e+01 1.034968e+01 moveto -4.159072e+01 9.679564e+00 lineto -4.180452e+01 9.259073e+00 lineto -4.073747e+01 9.909846e+00 lineto -4.051383e+01 1.034968e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.946013e+01 1.105355e+01 moveto -4.051383e+01 1.034968e+01 lineto -4.073747e+01 9.909846e+00 lineto -3.969339e+01 1.059479e+01 lineto -3.946013e+01 1.105355e+01 lineto -closepath -gsave -6.692441e-01 6.692441e-01 8.365551e-01 setrgbcolor -fill -grestore -newpath -3.946013e+01 1.105355e+01 moveto -4.051383e+01 1.034968e+01 lineto -4.073747e+01 9.909846e+00 lineto -3.969339e+01 1.059479e+01 lineto -3.946013e+01 1.105355e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.843061e+01 1.179051e+01 moveto -3.946013e+01 1.105355e+01 lineto -3.969339e+01 1.059479e+01 lineto -3.867327e+01 1.131325e+01 lineto -3.843061e+01 1.179051e+01 lineto -closepath -gsave -6.709995e-01 6.709995e-01 8.387494e-01 setrgbcolor -fill -grestore -newpath -3.843061e+01 1.179051e+01 moveto -3.946013e+01 1.105355e+01 lineto -3.969339e+01 1.059479e+01 lineto -3.867327e+01 1.131325e+01 lineto -3.843061e+01 1.179051e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.742624e+01 1.255986e+01 moveto -3.843061e+01 1.179051e+01 lineto -3.867327e+01 1.131325e+01 lineto -3.767808e+01 1.206456e+01 lineto -3.742624e+01 1.255986e+01 lineto -closepath -gsave -6.726261e-01 6.726261e-01 8.407826e-01 setrgbcolor -fill -grestore -newpath -3.742624e+01 1.255986e+01 moveto -3.843061e+01 1.179051e+01 lineto -3.867327e+01 1.131325e+01 lineto -3.767808e+01 1.206456e+01 lineto -3.742624e+01 1.255986e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.644798e+01 1.336087e+01 moveto -3.742624e+01 1.255986e+01 lineto -3.767808e+01 1.206456e+01 lineto -3.670875e+01 1.2848e+01 lineto -3.644798e+01 1.336087e+01 lineto -closepath -gsave -6.741222e-01 6.741222e-01 8.426527e-01 setrgbcolor -fill -grestore -newpath -3.644798e+01 1.336087e+01 moveto -3.742624e+01 1.255986e+01 lineto -3.767808e+01 1.206456e+01 lineto -3.670875e+01 1.2848e+01 lineto -3.644798e+01 1.336087e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.549676e+01 1.419278e+01 moveto -3.644798e+01 1.336087e+01 lineto -3.670875e+01 1.2848e+01 lineto -3.576622e+01 1.366282e+01 lineto -3.549676e+01 1.419278e+01 lineto -closepath -gsave -6.754863e-01 6.754863e-01 8.443579e-01 setrgbcolor -fill -grestore -newpath -3.549676e+01 1.419278e+01 moveto -3.644798e+01 1.336087e+01 lineto -3.670875e+01 1.2848e+01 lineto -3.576622e+01 1.366282e+01 lineto -3.549676e+01 1.419278e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.457347e+01 1.505481e+01 moveto -3.549676e+01 1.419278e+01 lineto -3.576622e+01 1.366282e+01 lineto -3.485136e+01 1.450827e+01 lineto -3.457347e+01 1.505481e+01 lineto -closepath -gsave -6.767173e-01 6.767173e-01 8.458966e-01 setrgbcolor -fill -grestore -newpath -3.457347e+01 1.505481e+01 moveto -3.549676e+01 1.419278e+01 lineto -3.576622e+01 1.366282e+01 lineto -3.485136e+01 1.450827e+01 lineto -3.457347e+01 1.505481e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.367899e+01 1.594613e+01 moveto -3.457347e+01 1.505481e+01 lineto -3.485136e+01 1.450827e+01 lineto -3.396505e+01 1.538353e+01 lineto -3.367899e+01 1.594613e+01 lineto -closepath -gsave -6.77814e-01 6.77814e-01 8.472675e-01 setrgbcolor -fill -grestore -newpath -3.367899e+01 1.594613e+01 moveto -3.457347e+01 1.505481e+01 lineto -3.485136e+01 1.450827e+01 lineto -3.396505e+01 1.538353e+01 lineto -3.367899e+01 1.594613e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.281416e+01 1.686592e+01 moveto -3.367899e+01 1.594613e+01 lineto -3.396505e+01 1.538353e+01 lineto -3.310812e+01 1.628777e+01 lineto -3.281416e+01 1.686592e+01 lineto -closepath -gsave -6.787753e-01 6.787753e-01 8.484692e-01 setrgbcolor -fill -grestore -newpath -3.281416e+01 1.686592e+01 moveto -3.367899e+01 1.594613e+01 lineto -3.396505e+01 1.538353e+01 lineto -3.310812e+01 1.628777e+01 lineto -3.281416e+01 1.686592e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.197981e+01 1.781328e+01 moveto -3.281416e+01 1.686592e+01 lineto -3.310812e+01 1.628777e+01 lineto -3.228138e+01 1.722015e+01 lineto -3.197981e+01 1.781328e+01 lineto -closepath -gsave -6.796006e-01 6.796006e-01 8.495007e-01 setrgbcolor -fill -grestore -newpath -3.197981e+01 1.781328e+01 moveto -3.281416e+01 1.686592e+01 lineto -3.310812e+01 1.628777e+01 lineto -3.228138e+01 1.722015e+01 lineto -3.197981e+01 1.781328e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.117672e+01 1.878734e+01 moveto -3.197981e+01 1.781328e+01 lineto -3.228138e+01 1.722015e+01 lineto -3.148563e+01 1.817978e+01 lineto -3.117672e+01 1.878734e+01 lineto -closepath -gsave -6.802889e-01 6.802889e-01 8.503611e-01 setrgbcolor -fill -grestore -newpath -3.117672e+01 1.878734e+01 moveto -3.197981e+01 1.781328e+01 lineto -3.228138e+01 1.722015e+01 lineto -3.148563e+01 1.817978e+01 lineto -3.117672e+01 1.878734e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.040565e+01 1.978716e+01 moveto -3.117672e+01 1.878734e+01 lineto -3.148563e+01 1.817978e+01 lineto -3.072161e+01 1.916575e+01 lineto -3.040565e+01 1.978716e+01 lineto -closepath -gsave -6.808397e-01 6.808397e-01 8.510496e-01 setrgbcolor -fill -grestore -newpath -3.040565e+01 1.978716e+01 moveto -3.117672e+01 1.878734e+01 lineto -3.148563e+01 1.817978e+01 lineto -3.072161e+01 1.916575e+01 lineto -3.040565e+01 1.978716e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.966734e+01 2.081179e+01 moveto -3.040565e+01 1.978716e+01 lineto -3.072161e+01 1.916575e+01 lineto -2.999004e+01 2.017713e+01 lineto -2.966734e+01 2.081179e+01 lineto -closepath -gsave -6.812525e-01 6.812525e-01 8.515656e-01 setrgbcolor -fill -grestore -newpath -2.966734e+01 2.081179e+01 moveto -3.040565e+01 1.978716e+01 lineto -3.072161e+01 1.916575e+01 lineto -2.999004e+01 2.017713e+01 lineto -2.966734e+01 2.081179e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.896248e+01 2.186028e+01 moveto -2.966734e+01 2.081179e+01 lineto -2.999004e+01 2.017713e+01 lineto -2.929162e+01 2.121295e+01 lineto -2.896248e+01 2.186028e+01 lineto -closepath -gsave -6.81527e-01 6.81527e-01 8.519088e-01 setrgbcolor -fill -grestore -newpath -2.896248e+01 2.186028e+01 moveto -2.966734e+01 2.081179e+01 lineto -2.999004e+01 2.017713e+01 lineto -2.929162e+01 2.121295e+01 lineto -2.896248e+01 2.186028e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.829174e+01 2.293162e+01 moveto -2.896248e+01 2.186028e+01 lineto -2.929162e+01 2.121295e+01 lineto -2.862701e+01 2.227225e+01 lineto -2.829174e+01 2.293162e+01 lineto -closepath -gsave -6.81663e-01 6.81663e-01 8.520787e-01 setrgbcolor -fill -grestore -newpath -2.829174e+01 2.293162e+01 moveto -2.896248e+01 2.186028e+01 lineto -2.929162e+01 2.121295e+01 lineto -2.862701e+01 2.227225e+01 lineto -2.829174e+01 2.293162e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.765576e+01 2.402481e+01 moveto -2.829174e+01 2.293162e+01 lineto -2.862701e+01 2.227225e+01 lineto -2.799683e+01 2.335401e+01 lineto -2.765576e+01 2.402481e+01 lineto -closepath -gsave -6.816603e-01 6.816603e-01 8.520753e-01 setrgbcolor -fill -grestore -newpath -2.765576e+01 2.402481e+01 moveto -2.829174e+01 2.293162e+01 lineto -2.862701e+01 2.227225e+01 lineto -2.799683e+01 2.335401e+01 lineto -2.765576e+01 2.402481e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -2.705514e+01 2.51388e+01 moveto -2.765576e+01 2.402481e+01 lineto -2.799683e+01 2.335401e+01 lineto -2.740169e+01 2.445721e+01 lineto -2.705514e+01 2.51388e+01 lineto -closepath -gsave -6.815189e-01 6.815189e-01 8.518987e-01 setrgbcolor -fill -grestore -newpath -2.705514e+01 2.51388e+01 moveto -2.765576e+01 2.402481e+01 lineto -2.799683e+01 2.335401e+01 lineto -2.740169e+01 2.445721e+01 lineto -2.705514e+01 2.51388e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.370296e+01 3.923866e+00 moveto -6.49958e+01 3.999689e+00 lineto -6.499586e+01 3.999614e+00 lineto -6.372291e+01 3.900946e+00 lineto -6.370296e+01 3.923866e+00 lineto -closepath -gsave -6.105969e-01 6.105969e-01 7.632462e-01 setrgbcolor -fill -grestore -newpath -6.370296e+01 3.923866e+00 moveto -6.49958e+01 3.999689e+00 lineto -6.499586e+01 3.999614e+00 lineto -6.372291e+01 3.900946e+00 lineto -6.370296e+01 3.923866e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.241134e+01 3.887882e+00 moveto -6.370296e+01 3.923866e+00 lineto -6.372291e+01 3.900946e+00 lineto -6.245116e+01 3.842138e+00 lineto -6.241134e+01 3.887882e+00 lineto -closepath -gsave -6.138072e-01 6.138072e-01 7.67259e-01 setrgbcolor -fill -grestore -newpath -6.241134e+01 3.887882e+00 moveto -6.370296e+01 3.923866e+00 lineto -6.372291e+01 3.900946e+00 lineto -6.245116e+01 3.842138e+00 lineto -6.241134e+01 3.887882e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.112218e+01 3.89177e+00 moveto -6.241134e+01 3.887882e+00 lineto -6.245116e+01 3.842138e+00 lineto -6.118183e+01 3.823245e+00 lineto -6.112218e+01 3.89177e+00 lineto -closepath -gsave -6.169518e-01 6.169518e-01 7.711897e-01 setrgbcolor -fill -grestore -newpath -6.112218e+01 3.89177e+00 moveto -6.241134e+01 3.887882e+00 lineto -6.245116e+01 3.842138e+00 lineto -6.118183e+01 3.823245e+00 lineto -6.112218e+01 3.89177e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.983669e+01 3.935526e+00 moveto -6.112218e+01 3.89177e+00 lineto -6.118183e+01 3.823245e+00 lineto -5.991611e+01 3.844285e+00 lineto -5.983669e+01 3.935526e+00 lineto -closepath -gsave -6.200268e-01 6.200268e-01 7.750335e-01 setrgbcolor -fill -grestore -newpath -5.983669e+01 3.935526e+00 moveto -6.112218e+01 3.89177e+00 lineto -6.118183e+01 3.823245e+00 lineto -5.991611e+01 3.844285e+00 lineto -5.983669e+01 3.935526e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.855609e+01 4.01911e+00 moveto -5.983669e+01 3.935526e+00 lineto -5.991611e+01 3.844285e+00 lineto -5.865521e+01 3.905239e+00 lineto -5.855609e+01 4.01911e+00 lineto -closepath -gsave -6.230285e-01 6.230285e-01 7.787856e-01 setrgbcolor -fill -grestore -newpath -5.855609e+01 4.01911e+00 moveto -5.983669e+01 3.935526e+00 lineto -5.991611e+01 3.844285e+00 lineto -5.865521e+01 3.905239e+00 lineto -5.855609e+01 4.01911e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.728159e+01 4.142441e+00 moveto -5.855609e+01 4.01911e+00 lineto -5.865521e+01 3.905239e+00 lineto -5.740032e+01 4.006048e+00 lineto -5.728159e+01 4.142441e+00 lineto -closepath -gsave -6.259532e-01 6.259532e-01 7.824415e-01 setrgbcolor -fill -grestore -newpath -5.728159e+01 4.142441e+00 moveto -5.855609e+01 4.01911e+00 lineto -5.865521e+01 3.905239e+00 lineto -5.740032e+01 4.006048e+00 lineto -5.728159e+01 4.142441e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.601439e+01 4.305404e+00 moveto -5.728159e+01 4.142441e+00 lineto -5.740032e+01 4.006048e+00 lineto -5.615262e+01 4.146618e+00 lineto -5.601439e+01 4.305404e+00 lineto -closepath -gsave -6.287974e-01 6.287974e-01 7.859967e-01 setrgbcolor -fill -grestore -newpath -5.601439e+01 4.305404e+00 moveto -5.728159e+01 4.142441e+00 lineto -5.740032e+01 4.006048e+00 lineto -5.615262e+01 4.146618e+00 lineto -5.601439e+01 4.305404e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.475571e+01 4.507843e+00 moveto -5.601439e+01 4.305404e+00 lineto -5.615262e+01 4.146618e+00 lineto -5.491329e+01 4.326815e+00 lineto -5.475571e+01 4.507843e+00 lineto -closepath -gsave -6.315577e-01 6.315577e-01 7.894471e-01 setrgbcolor -fill -grestore -newpath -5.475571e+01 4.507843e+00 moveto -5.601439e+01 4.305404e+00 lineto -5.615262e+01 4.146618e+00 lineto -5.491329e+01 4.326815e+00 lineto -5.475571e+01 4.507843e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.350672e+01 4.749567e+00 moveto -5.475571e+01 4.507843e+00 lineto -5.491329e+01 4.326815e+00 lineto -5.368352e+01 4.546468e+00 lineto -5.350672e+01 4.749567e+00 lineto -closepath -gsave -6.342309e-01 6.342309e-01 7.927886e-01 setrgbcolor -fill -grestore -newpath -5.350672e+01 4.749567e+00 moveto -5.475571e+01 4.507843e+00 lineto -5.491329e+01 4.326815e+00 lineto -5.368352e+01 4.546468e+00 lineto -5.350672e+01 4.749567e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.226862e+01 5.030348e+00 moveto -5.350672e+01 4.749567e+00 lineto -5.368352e+01 4.546468e+00 lineto -5.246446e+01 4.80537e+00 lineto -5.226862e+01 5.030348e+00 lineto -closepath -gsave -6.368138e-01 6.368138e-01 7.960173e-01 setrgbcolor -fill -grestore -newpath -5.226862e+01 5.030348e+00 moveto -5.350672e+01 4.749567e+00 lineto -5.368352e+01 4.546468e+00 lineto -5.246446e+01 4.80537e+00 lineto -5.226862e+01 5.030348e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.104257e+01 5.34992e+00 moveto -5.226862e+01 5.030348e+00 lineto -5.246446e+01 4.80537e+00 lineto -5.125727e+01 5.103276e+00 lineto -5.104257e+01 5.34992e+00 lineto -closepath -gsave -6.393036e-01 6.393036e-01 7.991295e-01 setrgbcolor -fill -grestore -newpath -5.104257e+01 5.34992e+00 moveto -5.226862e+01 5.030348e+00 lineto -5.246446e+01 4.80537e+00 lineto -5.125727e+01 5.103276e+00 lineto -5.104257e+01 5.34992e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.982973e+01 5.707979e+00 moveto -5.104257e+01 5.34992e+00 lineto -5.125727e+01 5.103276e+00 lineto -5.006309e+01 5.439903e+00 lineto -4.982973e+01 5.707979e+00 lineto -closepath -gsave -6.416973e-01 6.416973e-01 8.021216e-01 setrgbcolor -fill -grestore -newpath -4.982973e+01 5.707979e+00 moveto -5.104257e+01 5.34992e+00 lineto -5.125727e+01 5.103276e+00 lineto -5.006309e+01 5.439903e+00 lineto -4.982973e+01 5.707979e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.863126e+01 6.104187e+00 moveto -4.982973e+01 5.707979e+00 lineto -5.006309e+01 5.439903e+00 lineto -4.888305e+01 5.814933e+00 lineto -4.863126e+01 6.104187e+00 lineto -closepath -gsave -6.439922e-01 6.439922e-01 8.049903e-01 setrgbcolor -fill -grestore -newpath -4.863126e+01 6.104187e+00 moveto -4.982973e+01 5.707979e+00 lineto -5.006309e+01 5.439903e+00 lineto -4.888305e+01 5.814933e+00 lineto -4.863126e+01 6.104187e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.744829e+01 6.538168e+00 moveto -4.863126e+01 6.104187e+00 lineto -4.888305e+01 5.814933e+00 lineto -4.771828e+01 6.22801e+00 lineto -4.744829e+01 6.538168e+00 lineto -closepath -gsave -6.461858e-01 6.461858e-01 8.077323e-01 setrgbcolor -fill -grestore -newpath -4.744829e+01 6.538168e+00 moveto -4.863126e+01 6.104187e+00 lineto -4.888305e+01 5.814933e+00 lineto -4.771828e+01 6.22801e+00 lineto -4.744829e+01 6.538168e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.628193e+01 7.009513e+00 moveto -4.744829e+01 6.538168e+00 lineto -4.771828e+01 6.22801e+00 lineto -4.656986e+01 6.678744e+00 lineto -4.628193e+01 7.009513e+00 lineto -closepath -gsave -6.482758e-01 6.482758e-01 8.103447e-01 setrgbcolor -fill -grestore -newpath -4.628193e+01 7.009513e+00 moveto -4.744829e+01 6.538168e+00 lineto -4.771828e+01 6.22801e+00 lineto -4.656986e+01 6.678744e+00 lineto -4.628193e+01 7.009513e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.51333e+01 7.517774e+00 moveto -4.628193e+01 7.009513e+00 lineto -4.656986e+01 6.678744e+00 lineto -4.54389e+01 7.166707e+00 lineto -4.51333e+01 7.517774e+00 lineto -closepath -gsave -6.502597e-01 6.502597e-01 8.128246e-01 setrgbcolor -fill -grestore -newpath -4.51333e+01 7.517774e+00 moveto -4.628193e+01 7.009513e+00 lineto -4.656986e+01 6.678744e+00 lineto -4.54389e+01 7.166707e+00 lineto -4.51333e+01 7.517774e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.400347e+01 8.062471e+00 moveto -4.51333e+01 7.517774e+00 lineto -4.54389e+01 7.166707e+00 lineto -4.432646e+01 7.691439e+00 lineto -4.400347e+01 8.062471e+00 lineto -closepath -gsave -6.521355e-01 6.521355e-01 8.151693e-01 setrgbcolor -fill -grestore -newpath -4.400347e+01 8.062471e+00 moveto -4.51333e+01 7.517774e+00 lineto -4.54389e+01 7.166707e+00 lineto -4.432646e+01 7.691439e+00 lineto -4.400347e+01 8.062471e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.289353e+01 8.643087e+00 moveto -4.400347e+01 8.062471e+00 lineto -4.432646e+01 7.691439e+00 lineto -4.323359e+01 8.252441e+00 lineto -4.289353e+01 8.643087e+00 lineto -closepath -gsave -6.539012e-01 6.539012e-01 8.173764e-01 setrgbcolor -fill -grestore -newpath -4.289353e+01 8.643087e+00 moveto -4.400347e+01 8.062471e+00 lineto -4.432646e+01 7.691439e+00 lineto -4.323359e+01 8.252441e+00 lineto -4.289353e+01 8.643087e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.180452e+01 9.259073e+00 moveto -4.289353e+01 8.643087e+00 lineto -4.323359e+01 8.252441e+00 lineto -4.216133e+01 8.849183e+00 lineto -4.180452e+01 9.259073e+00 lineto -closepath -gsave -6.555549e-01 6.555549e-01 8.194436e-01 setrgbcolor -fill -grestore -newpath -4.180452e+01 9.259073e+00 moveto -4.289353e+01 8.643087e+00 lineto -4.323359e+01 8.252441e+00 lineto -4.216133e+01 8.849183e+00 lineto -4.180452e+01 9.259073e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.073747e+01 9.909846e+00 moveto -4.180452e+01 9.259073e+00 lineto -4.216133e+01 8.849183e+00 lineto -4.111069e+01 9.481099e+00 lineto -4.073747e+01 9.909846e+00 lineto -closepath -gsave -6.570949e-01 6.570949e-01 8.213686e-01 setrgbcolor -fill -grestore -newpath -4.073747e+01 9.909846e+00 moveto -4.180452e+01 9.259073e+00 lineto -4.216133e+01 8.849183e+00 lineto -4.111069e+01 9.481099e+00 lineto -4.073747e+01 9.909846e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.969339e+01 1.059479e+01 moveto -4.073747e+01 9.909846e+00 lineto -4.111069e+01 9.481099e+00 lineto -4.008267e+01 1.014759e+01 lineto -3.969339e+01 1.059479e+01 lineto -closepath -gsave -6.585197e-01 6.585197e-01 8.231496e-01 setrgbcolor -fill -grestore -newpath -3.969339e+01 1.059479e+01 moveto -4.073747e+01 9.909846e+00 lineto -4.111069e+01 9.481099e+00 lineto -4.008267e+01 1.014759e+01 lineto -3.969339e+01 1.059479e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.867327e+01 1.131325e+01 moveto -3.969339e+01 1.059479e+01 lineto -4.008267e+01 1.014759e+01 lineto -3.907825e+01 1.084803e+01 lineto -3.867327e+01 1.131325e+01 lineto -closepath -gsave -6.598278e-01 6.598278e-01 8.247847e-01 setrgbcolor -fill -grestore -newpath -3.867327e+01 1.131325e+01 moveto -3.969339e+01 1.059479e+01 lineto -4.008267e+01 1.014759e+01 lineto -3.907825e+01 1.084803e+01 lineto -3.867327e+01 1.131325e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.767808e+01 1.206456e+01 moveto -3.867327e+01 1.131325e+01 lineto -3.907825e+01 1.084803e+01 lineto -3.809836e+01 1.158175e+01 lineto -3.767808e+01 1.206456e+01 lineto -closepath -gsave -6.610178e-01 6.610178e-01 8.262723e-01 setrgbcolor -fill -grestore -newpath -3.767808e+01 1.206456e+01 moveto -3.867327e+01 1.131325e+01 lineto -3.907825e+01 1.084803e+01 lineto -3.809836e+01 1.158175e+01 lineto -3.767808e+01 1.206456e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.670875e+01 1.2848e+01 moveto -3.767808e+01 1.206456e+01 lineto -3.809836e+01 1.158175e+01 lineto -3.714395e+01 1.234806e+01 lineto -3.670875e+01 1.2848e+01 lineto -closepath -gsave -6.620887e-01 6.620887e-01 8.276109e-01 setrgbcolor -fill -grestore -newpath -3.670875e+01 1.2848e+01 moveto -3.767808e+01 1.206456e+01 lineto -3.809836e+01 1.158175e+01 lineto -3.714395e+01 1.234806e+01 lineto -3.670875e+01 1.2848e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.576622e+01 1.366282e+01 moveto -3.670875e+01 1.2848e+01 lineto -3.714395e+01 1.234806e+01 lineto -3.621591e+01 1.314623e+01 lineto -3.576622e+01 1.366282e+01 lineto -closepath -gsave -6.630393e-01 6.630393e-01 8.287991e-01 setrgbcolor -fill -grestore -newpath -3.576622e+01 1.366282e+01 moveto -3.670875e+01 1.2848e+01 lineto -3.714395e+01 1.234806e+01 lineto -3.621591e+01 1.314623e+01 lineto -3.576622e+01 1.366282e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.485136e+01 1.450827e+01 moveto -3.576622e+01 1.366282e+01 lineto -3.621591e+01 1.314623e+01 lineto -3.531513e+01 1.397551e+01 lineto -3.485136e+01 1.450827e+01 lineto -closepath -gsave -6.638687e-01 6.638687e-01 8.298359e-01 setrgbcolor -fill -grestore -newpath -3.485136e+01 1.450827e+01 moveto -3.576622e+01 1.366282e+01 lineto -3.621591e+01 1.314623e+01 lineto -3.531513e+01 1.397551e+01 lineto -3.485136e+01 1.450827e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.396505e+01 1.538353e+01 moveto -3.485136e+01 1.450827e+01 lineto -3.531513e+01 1.397551e+01 lineto -3.444245e+01 1.48351e+01 lineto -3.396505e+01 1.538353e+01 lineto -closepath -gsave -6.645762e-01 6.645762e-01 8.307202e-01 setrgbcolor -fill -grestore -newpath -3.396505e+01 1.538353e+01 moveto -3.485136e+01 1.450827e+01 lineto -3.531513e+01 1.397551e+01 lineto -3.444245e+01 1.48351e+01 lineto -3.396505e+01 1.538353e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.310812e+01 1.628777e+01 moveto -3.396505e+01 1.538353e+01 lineto -3.444245e+01 1.48351e+01 lineto -3.35987e+01 1.572421e+01 lineto -3.310812e+01 1.628777e+01 lineto -closepath -gsave -6.65161e-01 6.65161e-01 8.314512e-01 setrgbcolor -fill -grestore -newpath -3.310812e+01 1.628777e+01 moveto -3.396505e+01 1.538353e+01 lineto -3.444245e+01 1.48351e+01 lineto -3.35987e+01 1.572421e+01 lineto -3.310812e+01 1.628777e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.228138e+01 1.722015e+01 moveto -3.310812e+01 1.628777e+01 lineto -3.35987e+01 1.572421e+01 lineto -3.278468e+01 1.664198e+01 lineto -3.228138e+01 1.722015e+01 lineto -closepath -gsave -6.656225e-01 6.656225e-01 8.320282e-01 setrgbcolor -fill -grestore -newpath -3.228138e+01 1.722015e+01 moveto -3.310812e+01 1.628777e+01 lineto -3.35987e+01 1.572421e+01 lineto -3.278468e+01 1.664198e+01 lineto -3.228138e+01 1.722015e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.372291e+01 3.900946e+00 moveto -6.499586e+01 3.999614e+00 lineto -6.499595e+01 3.999543e+00 lineto -6.375073e+01 3.87876e+00 lineto -6.372291e+01 3.900946e+00 lineto -closepath -gsave -6.103113e-01 6.103113e-01 7.628891e-01 setrgbcolor -fill -grestore -newpath -6.372291e+01 3.900946e+00 moveto -6.499586e+01 3.999614e+00 lineto -6.499595e+01 3.999543e+00 lineto -6.375073e+01 3.87876e+00 lineto -6.372291e+01 3.900946e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.245116e+01 3.842138e+00 moveto -6.372291e+01 3.900946e+00 lineto -6.375073e+01 3.87876e+00 lineto -6.25067e+01 3.797858e+00 lineto -6.245116e+01 3.842138e+00 lineto -closepath -gsave -6.129523e-01 6.129523e-01 7.661904e-01 setrgbcolor -fill -grestore -newpath -6.245116e+01 3.842138e+00 moveto -6.372291e+01 3.900946e+00 lineto -6.375073e+01 3.87876e+00 lineto -6.25067e+01 3.797858e+00 lineto -6.245116e+01 3.842138e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.118183e+01 3.823245e+00 moveto -6.245116e+01 3.842138e+00 lineto -6.25067e+01 3.797858e+00 lineto -6.126502e+01 3.756914e+00 lineto -6.118183e+01 3.823245e+00 lineto -closepath -gsave -6.155262e-01 6.155262e-01 7.694078e-01 setrgbcolor -fill -grestore -newpath -6.118183e+01 3.823245e+00 moveto -6.245116e+01 3.842138e+00 lineto -6.25067e+01 3.797858e+00 lineto -6.126502e+01 3.756914e+00 lineto -6.118183e+01 3.823245e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.991611e+01 3.844285e+00 moveto -6.118183e+01 3.823245e+00 lineto -6.126502e+01 3.756914e+00 lineto -6.002688e+01 3.755966e+00 lineto -5.991611e+01 3.844285e+00 lineto -closepath -gsave -6.1803e-01 6.1803e-01 7.725374e-01 setrgbcolor -fill -grestore -newpath -5.991611e+01 3.844285e+00 moveto -6.118183e+01 3.823245e+00 lineto -6.126502e+01 3.756914e+00 lineto -6.002688e+01 3.755966e+00 lineto -5.991611e+01 3.844285e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.865521e+01 3.905239e+00 moveto -5.991611e+01 3.844285e+00 lineto -6.002688e+01 3.755966e+00 lineto -5.879345e+01 3.795015e+00 lineto -5.865521e+01 3.905239e+00 lineto -closepath -gsave -6.204605e-01 6.204605e-01 7.755757e-01 setrgbcolor -fill -grestore -newpath -5.865521e+01 3.905239e+00 moveto -5.991611e+01 3.844285e+00 lineto -6.002688e+01 3.755966e+00 lineto -5.879345e+01 3.795015e+00 lineto -5.865521e+01 3.905239e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.740032e+01 4.006048e+00 moveto -5.865521e+01 3.905239e+00 lineto -5.879345e+01 3.795015e+00 lineto -5.75659e+01 3.874023e+00 lineto -5.740032e+01 4.006048e+00 lineto -closepath -gsave -6.228151e-01 6.228151e-01 7.785188e-01 setrgbcolor -fill -grestore -newpath -5.740032e+01 4.006048e+00 moveto -5.865521e+01 3.905239e+00 lineto -5.879345e+01 3.795015e+00 lineto -5.75659e+01 3.874023e+00 lineto -5.740032e+01 4.006048e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.615262e+01 4.146618e+00 moveto -5.740032e+01 4.006048e+00 lineto -5.75659e+01 3.874023e+00 lineto -5.634539e+01 3.992918e+00 lineto -5.615262e+01 4.146618e+00 lineto -closepath -gsave -6.250908e-01 6.250908e-01 7.813636e-01 setrgbcolor -fill -grestore -newpath -5.615262e+01 4.146618e+00 moveto -5.740032e+01 4.006048e+00 lineto -5.75659e+01 3.874023e+00 lineto -5.634539e+01 3.992918e+00 lineto -5.615262e+01 4.146618e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.491329e+01 4.326815e+00 moveto -5.615262e+01 4.146618e+00 lineto -5.634539e+01 3.992918e+00 lineto -5.513306e+01 4.151585e+00 lineto -5.491329e+01 4.326815e+00 lineto -closepath -gsave -6.272852e-01 6.272852e-01 7.841065e-01 setrgbcolor -fill -grestore -newpath -5.491329e+01 4.326815e+00 moveto -5.615262e+01 4.146618e+00 lineto -5.634539e+01 3.992918e+00 lineto -5.513306e+01 4.151585e+00 lineto -5.491329e+01 4.326815e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.368352e+01 4.546468e+00 moveto -5.491329e+01 4.326815e+00 lineto -5.513306e+01 4.151585e+00 lineto -5.393009e+01 4.349874e+00 lineto -5.368352e+01 4.546468e+00 lineto -closepath -gsave -6.293957e-01 6.293957e-01 7.867446e-01 setrgbcolor -fill -grestore -newpath -5.368352e+01 4.546468e+00 moveto -5.491329e+01 4.326815e+00 lineto -5.513306e+01 4.151585e+00 lineto -5.393009e+01 4.349874e+00 lineto -5.368352e+01 4.546468e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.246446e+01 4.80537e+00 moveto -5.368352e+01 4.546468e+00 lineto -5.393009e+01 4.349874e+00 lineto -5.273759e+01 4.587598e+00 lineto -5.246446e+01 4.80537e+00 lineto -closepath -gsave -6.314198e-01 6.314198e-01 7.892747e-01 setrgbcolor -fill -grestore -newpath -5.246446e+01 4.80537e+00 moveto -5.368352e+01 4.546468e+00 lineto -5.393009e+01 4.349874e+00 lineto -5.273759e+01 4.587598e+00 lineto -5.246446e+01 4.80537e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.125727e+01 5.103276e+00 moveto -5.246446e+01 4.80537e+00 lineto -5.273759e+01 4.587598e+00 lineto -5.15567e+01 4.864532e+00 lineto -5.125727e+01 5.103276e+00 lineto -closepath -gsave -6.333552e-01 6.333552e-01 7.91694e-01 setrgbcolor -fill -grestore -newpath -5.125727e+01 5.103276e+00 moveto -5.246446e+01 4.80537e+00 lineto -5.273759e+01 4.587598e+00 lineto -5.15567e+01 4.864532e+00 lineto -5.125727e+01 5.103276e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.006309e+01 5.439903e+00 moveto -5.125727e+01 5.103276e+00 lineto -5.15567e+01 4.864532e+00 lineto -5.038854e+01 5.180413e+00 lineto -5.006309e+01 5.439903e+00 lineto -closepath -gsave -6.351999e-01 6.351999e-01 7.939999e-01 setrgbcolor -fill -grestore -newpath -5.006309e+01 5.439903e+00 moveto -5.125727e+01 5.103276e+00 lineto -5.15567e+01 4.864532e+00 lineto -5.038854e+01 5.180413e+00 lineto -5.006309e+01 5.439903e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.888305e+01 5.814933e+00 moveto -5.006309e+01 5.439903e+00 lineto -5.038854e+01 5.180413e+00 lineto -4.923422e+01 5.534943e+00 lineto -4.888305e+01 5.814933e+00 lineto -closepath -gsave -6.369517e-01 6.369517e-01 7.961897e-01 setrgbcolor -fill -grestore -newpath -4.888305e+01 5.814933e+00 moveto -5.006309e+01 5.439903e+00 lineto -5.038854e+01 5.180413e+00 lineto -4.923422e+01 5.534943e+00 lineto -4.888305e+01 5.814933e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.771828e+01 6.22801e+00 moveto -4.888305e+01 5.814933e+00 lineto -4.923422e+01 5.534943e+00 lineto -4.809482e+01 5.927785e+00 lineto -4.771828e+01 6.22801e+00 lineto -closepath -gsave -6.386088e-01 6.386088e-01 7.98261e-01 setrgbcolor -fill -grestore -newpath -4.771828e+01 6.22801e+00 moveto -4.888305e+01 5.814933e+00 lineto -4.923422e+01 5.534943e+00 lineto -4.809482e+01 5.927785e+00 lineto -4.771828e+01 6.22801e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.656986e+01 6.678744e+00 moveto -4.771828e+01 6.22801e+00 lineto -4.809482e+01 5.927785e+00 lineto -4.697143e+01 6.358568e+00 lineto -4.656986e+01 6.678744e+00 lineto -closepath -gsave -6.401692e-01 6.401692e-01 8.002115e-01 setrgbcolor -fill -grestore -newpath -4.656986e+01 6.678744e+00 moveto -4.771828e+01 6.22801e+00 lineto -4.809482e+01 5.927785e+00 lineto -4.697143e+01 6.358568e+00 lineto -4.656986e+01 6.678744e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.54389e+01 7.166707e+00 moveto -4.656986e+01 6.678744e+00 lineto -4.697143e+01 6.358568e+00 lineto -4.58651e+01 6.826884e+00 lineto -4.54389e+01 7.166707e+00 lineto -closepath -gsave -6.416314e-01 6.416314e-01 8.020392e-01 setrgbcolor -fill -grestore -newpath -4.54389e+01 7.166707e+00 moveto -4.656986e+01 6.678744e+00 lineto -4.697143e+01 6.358568e+00 lineto -4.58651e+01 6.826884e+00 lineto -4.54389e+01 7.166707e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.432646e+01 7.691439e+00 moveto -4.54389e+01 7.166707e+00 lineto -4.58651e+01 6.826884e+00 lineto -4.47769e+01 7.33229e+00 lineto -4.432646e+01 7.691439e+00 lineto -closepath -gsave -6.429937e-01 6.429937e-01 8.037421e-01 setrgbcolor -fill -grestore -newpath -4.432646e+01 7.691439e+00 moveto -4.54389e+01 7.166707e+00 lineto -4.58651e+01 6.826884e+00 lineto -4.47769e+01 7.33229e+00 lineto -4.432646e+01 7.691439e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.323359e+01 8.252441e+00 moveto -4.432646e+01 7.691439e+00 lineto -4.47769e+01 7.33229e+00 lineto -4.370784e+01 7.874306e+00 lineto -4.323359e+01 8.252441e+00 lineto -closepath -gsave -6.442546e-01 6.442546e-01 8.053183e-01 setrgbcolor -fill -grestore -newpath -4.323359e+01 8.252441e+00 moveto -4.432646e+01 7.691439e+00 lineto -4.47769e+01 7.33229e+00 lineto -4.370784e+01 7.874306e+00 lineto -4.323359e+01 8.252441e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.216133e+01 8.849183e+00 moveto -4.323359e+01 8.252441e+00 lineto -4.370784e+01 7.874306e+00 lineto -4.265894e+01 8.45242e+00 lineto -4.216133e+01 8.849183e+00 lineto -closepath -gsave -6.454129e-01 6.454129e-01 8.067662e-01 setrgbcolor -fill -grestore -newpath -4.216133e+01 8.849183e+00 moveto -4.323359e+01 8.252441e+00 lineto -4.370784e+01 7.874306e+00 lineto -4.265894e+01 8.45242e+00 lineto -4.216133e+01 8.849183e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.111069e+01 9.481099e+00 moveto -4.216133e+01 8.849183e+00 lineto -4.265894e+01 8.45242e+00 lineto -4.16312e+01 9.066085e+00 lineto -4.111069e+01 9.481099e+00 lineto -closepath -gsave -6.464674e-01 6.464674e-01 8.080842e-01 setrgbcolor -fill -grestore -newpath -4.111069e+01 9.481099e+00 moveto -4.216133e+01 8.849183e+00 lineto -4.265894e+01 8.45242e+00 lineto -4.16312e+01 9.066085e+00 lineto -4.111069e+01 9.481099e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.008267e+01 1.014759e+01 moveto -4.111069e+01 9.481099e+00 lineto -4.16312e+01 9.066085e+00 lineto -4.062558e+01 9.714719e+00 lineto -4.008267e+01 1.014759e+01 lineto -closepath -gsave -6.474169e-01 6.474169e-01 8.092711e-01 setrgbcolor -fill -grestore -newpath -4.008267e+01 1.014759e+01 moveto -4.111069e+01 9.481099e+00 lineto -4.16312e+01 9.066085e+00 lineto -4.062558e+01 9.714719e+00 lineto -4.008267e+01 1.014759e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.907825e+01 1.084803e+01 moveto -4.008267e+01 1.014759e+01 lineto -4.062558e+01 9.714719e+00 lineto -3.964304e+01 1.039771e+01 lineto -3.907825e+01 1.084803e+01 lineto -closepath -gsave -6.482604e-01 6.482604e-01 8.103255e-01 setrgbcolor -fill -grestore -newpath -3.907825e+01 1.084803e+01 moveto -4.008267e+01 1.014759e+01 lineto -4.062558e+01 9.714719e+00 lineto -3.964304e+01 1.039771e+01 lineto -3.907825e+01 1.084803e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -3.809836e+01 1.158175e+01 moveto -3.907825e+01 1.084803e+01 lineto -3.964304e+01 1.039771e+01 lineto -3.86845e+01 1.111441e+01 lineto -3.809836e+01 1.158175e+01 lineto -closepath -gsave -6.489971e-01 6.489971e-01 8.112464e-01 setrgbcolor -fill -grestore -newpath -3.809836e+01 1.158175e+01 moveto -3.907825e+01 1.084803e+01 lineto -3.964304e+01 1.039771e+01 lineto -3.86845e+01 1.111441e+01 lineto -3.809836e+01 1.158175e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.375073e+01 3.87876e+00 moveto -6.499595e+01 3.999543e+00 lineto -6.499607e+01 3.999474e+00 lineto -6.378626e+01 3.857445e+00 lineto -6.375073e+01 3.87876e+00 lineto -closepath -gsave -6.100172e-01 6.100172e-01 7.625216e-01 setrgbcolor -fill -grestore -newpath -6.375073e+01 3.87876e+00 moveto -6.499595e+01 3.999543e+00 lineto -6.499607e+01 3.999474e+00 lineto -6.378626e+01 3.857445e+00 lineto -6.375073e+01 3.87876e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.25067e+01 3.797858e+00 moveto -6.375073e+01 3.87876e+00 lineto -6.378626e+01 3.857445e+00 lineto -6.257761e+01 3.755317e+00 lineto -6.25067e+01 3.797858e+00 lineto -closepath -gsave -6.120728e-01 6.120728e-01 7.65091e-01 setrgbcolor -fill -grestore -newpath -6.25067e+01 3.797858e+00 moveto -6.375073e+01 3.87876e+00 lineto -6.378626e+01 3.857445e+00 lineto -6.257761e+01 3.755317e+00 lineto -6.25067e+01 3.797858e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.126502e+01 3.756914e+00 moveto -6.25067e+01 3.797858e+00 lineto -6.257761e+01 3.755317e+00 lineto -6.137124e+01 3.693187e+00 lineto -6.126502e+01 3.756914e+00 lineto -closepath -gsave -6.140602e-01 6.140602e-01 7.675752e-01 setrgbcolor -fill -grestore -newpath -6.126502e+01 3.756914e+00 moveto -6.25067e+01 3.797858e+00 lineto -6.257761e+01 3.755317e+00 lineto -6.137124e+01 3.693187e+00 lineto -6.126502e+01 3.756914e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.002688e+01 3.755966e+00 moveto -6.126502e+01 3.756914e+00 lineto -6.137124e+01 3.693187e+00 lineto -6.016831e+01 3.671113e+00 lineto -6.002688e+01 3.755966e+00 lineto -closepath -gsave -6.159771e-01 6.159771e-01 7.699714e-01 setrgbcolor -fill -grestore -newpath -6.002688e+01 3.755966e+00 moveto -6.126502e+01 3.756914e+00 lineto -6.137124e+01 3.693187e+00 lineto -6.016831e+01 3.671113e+00 lineto -6.002688e+01 3.755966e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.879345e+01 3.795015e+00 moveto -6.002688e+01 3.755966e+00 lineto -6.016831e+01 3.671113e+00 lineto -5.896996e+01 3.689117e+00 lineto -5.879345e+01 3.795015e+00 lineto -closepath -gsave -6.178213e-01 6.178213e-01 7.722767e-01 setrgbcolor -fill -grestore -newpath -5.879345e+01 3.795015e+00 moveto -6.002688e+01 3.755966e+00 lineto -6.016831e+01 3.671113e+00 lineto -5.896996e+01 3.689117e+00 lineto -5.879345e+01 3.795015e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.75659e+01 3.874023e+00 moveto -5.879345e+01 3.795015e+00 lineto -5.896996e+01 3.689117e+00 lineto -5.777732e+01 3.747181e+00 lineto -5.75659e+01 3.874023e+00 lineto -closepath -gsave -6.195908e-01 6.195908e-01 7.744885e-01 setrgbcolor -fill -grestore -newpath -5.75659e+01 3.874023e+00 moveto -5.879345e+01 3.795015e+00 lineto -5.896996e+01 3.689117e+00 lineto -5.777732e+01 3.747181e+00 lineto -5.75659e+01 3.874023e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.634539e+01 3.992918e+00 moveto -5.75659e+01 3.874023e+00 lineto -5.777732e+01 3.747181e+00 lineto -5.659151e+01 3.845251e+00 lineto -5.634539e+01 3.992918e+00 lineto -closepath -gsave -6.212834e-01 6.212834e-01 7.766042e-01 setrgbcolor -fill -grestore -newpath -5.634539e+01 3.992918e+00 moveto -5.75659e+01 3.874023e+00 lineto -5.777732e+01 3.747181e+00 lineto -5.659151e+01 3.845251e+00 lineto -5.634539e+01 3.992918e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.513306e+01 4.151585e+00 moveto -5.634539e+01 3.992918e+00 lineto -5.659151e+01 3.845251e+00 lineto -5.541367e+01 3.983233e+00 lineto -5.513306e+01 4.151585e+00 lineto -closepath -gsave -6.228973e-01 6.228973e-01 7.786216e-01 setrgbcolor -fill -grestore -newpath -5.513306e+01 4.151585e+00 moveto -5.634539e+01 3.992918e+00 lineto -5.659151e+01 3.845251e+00 lineto -5.541367e+01 3.983233e+00 lineto -5.513306e+01 4.151585e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.393009e+01 4.349874e+00 moveto -5.513306e+01 4.151585e+00 lineto -5.541367e+01 3.983233e+00 lineto -5.42449e+01 4.160997e+00 lineto -5.393009e+01 4.349874e+00 lineto -closepath -gsave -6.244306e-01 6.244306e-01 7.805382e-01 setrgbcolor -fill -grestore -newpath -5.393009e+01 4.349874e+00 moveto -5.513306e+01 4.151585e+00 lineto -5.541367e+01 3.983233e+00 lineto -5.42449e+01 4.160997e+00 lineto -5.393009e+01 4.349874e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.273759e+01 4.587598e+00 moveto -5.393009e+01 4.349874e+00 lineto -5.42449e+01 4.160997e+00 lineto -5.308632e+01 4.378374e+00 lineto -5.273759e+01 4.587598e+00 lineto -closepath -gsave -6.258816e-01 6.258816e-01 7.82352e-01 setrgbcolor -fill -grestore -newpath -5.273759e+01 4.587598e+00 moveto -5.393009e+01 4.349874e+00 lineto -5.42449e+01 4.160997e+00 lineto -5.308632e+01 4.378374e+00 lineto -5.273759e+01 4.587598e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.15567e+01 4.864532e+00 moveto -5.273759e+01 4.587598e+00 lineto -5.308632e+01 4.378374e+00 lineto -5.193901e+01 4.635159e+00 lineto -5.15567e+01 4.864532e+00 lineto -closepath -gsave -6.272487e-01 6.272487e-01 7.840609e-01 setrgbcolor -fill -grestore -newpath -5.15567e+01 4.864532e+00 moveto -5.273759e+01 4.587598e+00 lineto -5.308632e+01 4.378374e+00 lineto -5.193901e+01 4.635159e+00 lineto -5.15567e+01 4.864532e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.038854e+01 5.180413e+00 moveto -5.15567e+01 4.864532e+00 lineto -5.193901e+01 4.635159e+00 lineto -5.080408e+01 4.931109e+00 lineto -5.038854e+01 5.180413e+00 lineto -closepath -gsave -6.285304e-01 6.285304e-01 7.856631e-01 setrgbcolor -fill -grestore -newpath -5.038854e+01 5.180413e+00 moveto -5.15567e+01 4.864532e+00 lineto -5.193901e+01 4.635159e+00 lineto -5.080408e+01 4.931109e+00 lineto -5.038854e+01 5.180413e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.923422e+01 5.534943e+00 moveto -5.038854e+01 5.180413e+00 lineto -5.080408e+01 4.931109e+00 lineto -4.968258e+01 5.265943e+00 lineto -4.923422e+01 5.534943e+00 lineto -closepath -gsave -6.297253e-01 6.297253e-01 7.871567e-01 setrgbcolor -fill -grestore -newpath -4.923422e+01 5.534943e+00 moveto -5.038854e+01 5.180413e+00 lineto -5.080408e+01 4.931109e+00 lineto -4.968258e+01 5.265943e+00 lineto -4.923422e+01 5.534943e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.809482e+01 5.927785e+00 moveto -4.923422e+01 5.534943e+00 lineto -4.968258e+01 5.265943e+00 lineto -4.857558e+01 5.639345e+00 lineto -4.809482e+01 5.927785e+00 lineto -closepath -gsave -6.308321e-01 6.308321e-01 7.885401e-01 setrgbcolor -fill -grestore -newpath -4.809482e+01 5.927785e+00 moveto -4.923422e+01 5.534943e+00 lineto -4.968258e+01 5.265943e+00 lineto -4.857558e+01 5.639345e+00 lineto -4.809482e+01 5.927785e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.697143e+01 6.358568e+00 moveto -4.809482e+01 5.927785e+00 lineto -4.857558e+01 5.639345e+00 lineto -4.748414e+01 6.050961e+00 lineto -4.697143e+01 6.358568e+00 lineto -closepath -gsave -6.318495e-01 6.318495e-01 7.898119e-01 setrgbcolor -fill -grestore -newpath -4.697143e+01 6.358568e+00 moveto -4.809482e+01 5.927785e+00 lineto -4.857558e+01 5.639345e+00 lineto -4.748414e+01 6.050961e+00 lineto -4.697143e+01 6.358568e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.58651e+01 6.826884e+00 moveto -4.697143e+01 6.358568e+00 lineto -4.748414e+01 6.050961e+00 lineto -4.640928e+01 6.5004e+00 lineto -4.58651e+01 6.826884e+00 lineto -closepath -gsave -6.327765e-01 6.327765e-01 7.909706e-01 setrgbcolor -fill -grestore -newpath -4.58651e+01 6.826884e+00 moveto -4.697143e+01 6.358568e+00 lineto -4.748414e+01 6.050961e+00 lineto -4.640928e+01 6.5004e+00 lineto -4.58651e+01 6.826884e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.47769e+01 7.33229e+00 moveto -4.58651e+01 6.826884e+00 lineto -4.640928e+01 6.5004e+00 lineto -4.535202e+01 6.987238e+00 lineto -4.47769e+01 7.33229e+00 lineto -closepath -gsave -6.33612e-01 6.33612e-01 7.92015e-01 setrgbcolor -fill -grestore -newpath -4.47769e+01 7.33229e+00 moveto -4.58651e+01 6.826884e+00 lineto -4.640928e+01 6.5004e+00 lineto -4.535202e+01 6.987238e+00 lineto -4.47769e+01 7.33229e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.370784e+01 7.874306e+00 moveto -4.47769e+01 7.33229e+00 lineto -4.535202e+01 6.987238e+00 lineto -4.431337e+01 7.511014e+00 lineto -4.370784e+01 7.874306e+00 lineto -closepath -gsave -6.343552e-01 6.343552e-01 7.929439e-01 setrgbcolor -fill -grestore -newpath -4.370784e+01 7.874306e+00 moveto -4.47769e+01 7.33229e+00 lineto -4.535202e+01 6.987238e+00 lineto -4.431337e+01 7.511014e+00 lineto -4.370784e+01 7.874306e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.265894e+01 8.45242e+00 moveto -4.370784e+01 7.874306e+00 lineto -4.431337e+01 7.511014e+00 lineto -4.32943e+01 8.071232e+00 lineto -4.265894e+01 8.45242e+00 lineto -closepath -gsave -6.350052e-01 6.350052e-01 7.937565e-01 setrgbcolor -fill -grestore -newpath -4.265894e+01 8.45242e+00 moveto -4.370784e+01 7.874306e+00 lineto -4.431337e+01 7.511014e+00 lineto -4.32943e+01 8.071232e+00 lineto -4.265894e+01 8.45242e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.16312e+01 9.066085e+00 moveto -4.265894e+01 8.45242e+00 lineto -4.32943e+01 8.071232e+00 lineto -4.229578e+01 8.667361e+00 lineto -4.16312e+01 9.066085e+00 lineto -closepath -gsave -6.355614e-01 6.355614e-01 7.944518e-01 setrgbcolor -fill -grestore -newpath -4.16312e+01 9.066085e+00 moveto -4.265894e+01 8.45242e+00 lineto -4.32943e+01 8.071232e+00 lineto -4.229578e+01 8.667361e+00 lineto -4.16312e+01 9.066085e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.378626e+01 3.857445e+00 moveto -6.499607e+01 3.999474e+00 lineto -6.499621e+01 3.999408e+00 lineto -6.382927e+01 3.837132e+00 lineto -6.378626e+01 3.857445e+00 lineto -closepath -gsave -6.097167e-01 6.097167e-01 7.621459e-01 setrgbcolor -fill -grestore -newpath -6.378626e+01 3.857445e+00 moveto -6.499607e+01 3.999474e+00 lineto -6.499621e+01 3.999408e+00 lineto -6.382927e+01 3.837132e+00 lineto -6.378626e+01 3.857445e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.257761e+01 3.755317e+00 moveto -6.378626e+01 3.857445e+00 lineto -6.382927e+01 3.837132e+00 lineto -6.266345e+01 3.714776e+00 lineto -6.257761e+01 3.755317e+00 lineto -closepath -gsave -6.111742e-01 6.111742e-01 7.639677e-01 setrgbcolor -fill -grestore -newpath -6.257761e+01 3.755317e+00 moveto -6.378626e+01 3.857445e+00 lineto -6.382927e+01 3.837132e+00 lineto -6.266345e+01 3.714776e+00 lineto -6.257761e+01 3.755317e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.137124e+01 3.693187e+00 moveto -6.257761e+01 3.755317e+00 lineto -6.266345e+01 3.714776e+00 lineto -6.149983e+01 3.632456e+00 lineto -6.137124e+01 3.693187e+00 lineto -closepath -gsave -6.125629e-01 6.125629e-01 7.657036e-01 setrgbcolor -fill -grestore -newpath -6.137124e+01 3.693187e+00 moveto -6.257761e+01 3.755317e+00 lineto -6.266345e+01 3.714776e+00 lineto -6.149983e+01 3.632456e+00 lineto -6.137124e+01 3.693187e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.016831e+01 3.671113e+00 moveto -6.137124e+01 3.693187e+00 lineto -6.149983e+01 3.632456e+00 lineto -6.033953e+01 3.590251e+00 lineto -6.016831e+01 3.671113e+00 lineto -closepath -gsave -6.138813e-01 6.138813e-01 7.673516e-01 setrgbcolor -fill -grestore -newpath -6.016831e+01 3.671113e+00 moveto -6.137124e+01 3.693187e+00 lineto -6.149983e+01 3.632456e+00 lineto -6.033953e+01 3.590251e+00 lineto -6.016831e+01 3.671113e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.896996e+01 3.689117e+00 moveto -6.016831e+01 3.671113e+00 lineto -6.033953e+01 3.590251e+00 lineto -5.918365e+01 3.588199e+00 lineto -5.896996e+01 3.689117e+00 lineto -closepath -gsave -6.151278e-01 6.151278e-01 7.689097e-01 setrgbcolor -fill -grestore -newpath -5.896996e+01 3.689117e+00 moveto -6.016831e+01 3.671113e+00 lineto -6.033953e+01 3.590251e+00 lineto -5.918365e+01 3.588199e+00 lineto -5.896996e+01 3.689117e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.777732e+01 3.747181e+00 moveto -5.896996e+01 3.689117e+00 lineto -5.918365e+01 3.588199e+00 lineto -5.803327e+01 3.626303e+00 lineto -5.777732e+01 3.747181e+00 lineto -closepath -gsave -6.163011e-01 6.163011e-01 7.703763e-01 setrgbcolor -fill -grestore -newpath -5.777732e+01 3.747181e+00 moveto -5.896996e+01 3.689117e+00 lineto -5.918365e+01 3.588199e+00 lineto -5.803327e+01 3.626303e+00 lineto -5.777732e+01 3.747181e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.659151e+01 3.845251e+00 moveto -5.777732e+01 3.747181e+00 lineto -5.803327e+01 3.626303e+00 lineto -5.688948e+01 3.704527e+00 lineto -5.659151e+01 3.845251e+00 lineto -closepath -gsave -6.173998e-01 6.173998e-01 7.717497e-01 setrgbcolor -fill -grestore -newpath -5.659151e+01 3.845251e+00 moveto -5.777732e+01 3.747181e+00 lineto -5.803327e+01 3.626303e+00 lineto -5.688948e+01 3.704527e+00 lineto -5.659151e+01 3.845251e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.541367e+01 3.983233e+00 moveto -5.659151e+01 3.845251e+00 lineto -5.688948e+01 3.704527e+00 lineto -5.575338e+01 3.822797e+00 lineto -5.541367e+01 3.983233e+00 lineto -closepath -gsave -6.184227e-01 6.184227e-01 7.730284e-01 setrgbcolor -fill -grestore -newpath -5.541367e+01 3.983233e+00 moveto -5.659151e+01 3.845251e+00 lineto -5.688948e+01 3.704527e+00 lineto -5.575338e+01 3.822797e+00 lineto -5.541367e+01 3.983233e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.42449e+01 4.160997e+00 moveto -5.541367e+01 3.983233e+00 lineto -5.575338e+01 3.822797e+00 lineto -5.462603e+01 3.981e+00 lineto -5.42449e+01 4.160997e+00 lineto -closepath -gsave -6.193688e-01 6.193688e-01 7.742109e-01 setrgbcolor -fill -grestore -newpath -5.42449e+01 4.160997e+00 moveto -5.541367e+01 3.983233e+00 lineto -5.575338e+01 3.822797e+00 lineto -5.462603e+01 3.981e+00 lineto -5.42449e+01 4.160997e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.308632e+01 4.378374e+00 moveto -5.42449e+01 4.160997e+00 lineto -5.462603e+01 3.981e+00 lineto -5.35085e+01 4.178988e+00 lineto -5.308632e+01 4.378374e+00 lineto -closepath -gsave -6.202368e-01 6.202368e-01 7.75296e-01 setrgbcolor -fill -grestore -newpath -5.308632e+01 4.378374e+00 moveto -5.42449e+01 4.160997e+00 lineto -5.462603e+01 3.981e+00 lineto -5.35085e+01 4.178988e+00 lineto -5.308632e+01 4.378374e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.193901e+01 4.635159e+00 moveto -5.308632e+01 4.378374e+00 lineto -5.35085e+01 4.178988e+00 lineto -5.240185e+01 4.416572e+00 lineto -5.193901e+01 4.635159e+00 lineto -closepath -gsave -6.21026e-01 6.21026e-01 7.762824e-01 setrgbcolor -fill -grestore -newpath -5.193901e+01 4.635159e+00 moveto -5.308632e+01 4.378374e+00 lineto -5.35085e+01 4.178988e+00 lineto -5.240185e+01 4.416572e+00 lineto -5.193901e+01 4.635159e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.080408e+01 4.931109e+00 moveto -5.193901e+01 4.635159e+00 lineto -5.240185e+01 4.416572e+00 lineto -5.130713e+01 4.693528e+00 lineto -5.080408e+01 4.931109e+00 lineto -closepath -gsave -6.217353e-01 6.217353e-01 7.771691e-01 setrgbcolor -fill -grestore -newpath -5.080408e+01 4.931109e+00 moveto -5.193901e+01 4.635159e+00 lineto -5.240185e+01 4.416572e+00 lineto -5.130713e+01 4.693528e+00 lineto -5.080408e+01 4.931109e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.968258e+01 5.265943e+00 moveto -5.080408e+01 4.931109e+00 lineto -5.130713e+01 4.693528e+00 lineto -5.022538e+01 5.009593e+00 lineto -4.968258e+01 5.265943e+00 lineto -closepath -gsave -6.223641e-01 6.223641e-01 7.779551e-01 setrgbcolor -fill -grestore -newpath -4.968258e+01 5.265943e+00 moveto -5.080408e+01 4.931109e+00 lineto -5.130713e+01 4.693528e+00 lineto -5.022538e+01 5.009593e+00 lineto -4.968258e+01 5.265943e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.857558e+01 5.639345e+00 moveto -4.968258e+01 5.265943e+00 lineto -5.022538e+01 5.009593e+00 lineto -4.915761e+01 5.364468e+00 lineto -4.857558e+01 5.639345e+00 lineto -closepath -gsave -6.229116e-01 6.229116e-01 7.786395e-01 setrgbcolor -fill -grestore -newpath -4.857558e+01 5.639345e+00 moveto -4.968258e+01 5.265943e+00 lineto -5.022538e+01 5.009593e+00 lineto -4.915761e+01 5.364468e+00 lineto -4.857558e+01 5.639345e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.748414e+01 6.050961e+00 moveto -4.857558e+01 5.639345e+00 lineto -4.915761e+01 5.364468e+00 lineto -4.810485e+01 5.757817e+00 lineto -4.748414e+01 6.050961e+00 lineto -closepath -gsave -6.233773e-01 6.233773e-01 7.792216e-01 setrgbcolor -fill -grestore -newpath -4.748414e+01 6.050961e+00 moveto -4.857558e+01 5.639345e+00 lineto -4.915761e+01 5.364468e+00 lineto -4.810485e+01 5.757817e+00 lineto -4.748414e+01 6.050961e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.640928e+01 6.5004e+00 moveto -4.748414e+01 6.050961e+00 lineto -4.810485e+01 5.757817e+00 lineto -4.706808e+01 6.189268e+00 lineto -4.640928e+01 6.5004e+00 lineto -closepath -gsave -6.237606e-01 6.237606e-01 7.797007e-01 setrgbcolor -fill -grestore -newpath -4.640928e+01 6.5004e+00 moveto -4.748414e+01 6.050961e+00 lineto -4.810485e+01 5.757817e+00 lineto -4.706808e+01 6.189268e+00 lineto -4.640928e+01 6.5004e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.535202e+01 6.987238e+00 moveto -4.640928e+01 6.5004e+00 lineto -4.706808e+01 6.189268e+00 lineto -4.604828e+01 6.658412e+00 lineto -4.535202e+01 6.987238e+00 lineto -closepath -gsave -6.240611e-01 6.240611e-01 7.800764e-01 setrgbcolor -fill -grestore -newpath -4.535202e+01 6.987238e+00 moveto -4.640928e+01 6.5004e+00 lineto -4.706808e+01 6.189268e+00 lineto -4.604828e+01 6.658412e+00 lineto -4.535202e+01 6.987238e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.382927e+01 3.837132e+00 moveto -6.499621e+01 3.999408e+00 lineto -6.499637e+01 3.999346e+00 lineto -6.38795e+01 3.817946e+00 lineto -6.382927e+01 3.837132e+00 lineto -closepath -gsave -6.094115e-01 6.094115e-01 7.617644e-01 setrgbcolor -fill -grestore -newpath -6.382927e+01 3.837132e+00 moveto -6.499621e+01 3.999408e+00 lineto -6.499637e+01 3.999346e+00 lineto -6.38795e+01 3.817946e+00 lineto -6.382927e+01 3.837132e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.266345e+01 3.714776e+00 moveto -6.382927e+01 3.837132e+00 lineto -6.38795e+01 3.817946e+00 lineto -6.276369e+01 3.676485e+00 lineto -6.266345e+01 3.714776e+00 lineto -closepath -gsave -6.102621e-01 6.102621e-01 7.628276e-01 setrgbcolor -fill -grestore -newpath -6.266345e+01 3.714776e+00 moveto -6.382927e+01 3.837132e+00 lineto -6.38795e+01 3.817946e+00 lineto -6.276369e+01 3.676485e+00 lineto -6.266345e+01 3.714776e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.149983e+01 3.632456e+00 moveto -6.266345e+01 3.714776e+00 lineto -6.276369e+01 3.676485e+00 lineto -6.165e+01 3.575097e+00 lineto -6.149983e+01 3.632456e+00 lineto -closepath -gsave -6.110437e-01 6.110437e-01 7.638046e-01 setrgbcolor -fill -grestore -newpath -6.149983e+01 3.632456e+00 moveto -6.266345e+01 3.714776e+00 lineto -6.276369e+01 3.676485e+00 lineto -6.165e+01 3.575097e+00 lineto -6.149983e+01 3.632456e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.033953e+01 3.590251e+00 moveto -6.149983e+01 3.632456e+00 lineto -6.165e+01 3.575097e+00 lineto -6.053949e+01 3.513877e+00 lineto -6.033953e+01 3.590251e+00 lineto -closepath -gsave -6.117556e-01 6.117556e-01 7.646945e-01 setrgbcolor -fill -grestore -newpath -6.033953e+01 3.590251e+00 moveto -6.149983e+01 3.632456e+00 lineto -6.165e+01 3.575097e+00 lineto -6.053949e+01 3.513877e+00 lineto -6.033953e+01 3.590251e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.918365e+01 3.588199e+00 moveto -6.033953e+01 3.590251e+00 lineto -6.053949e+01 3.513877e+00 lineto -5.943319e+01 3.492883e+00 lineto -5.918365e+01 3.588199e+00 lineto -closepath -gsave -6.12397e-01 6.12397e-01 7.654962e-01 setrgbcolor -fill -grestore -newpath -5.918365e+01 3.588199e+00 moveto -6.033953e+01 3.590251e+00 lineto -6.053949e+01 3.513877e+00 lineto -5.943319e+01 3.492883e+00 lineto -5.918365e+01 3.588199e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.803327e+01 3.626303e+00 moveto -5.918365e+01 3.588199e+00 lineto -5.943319e+01 3.492883e+00 lineto -5.833217e+01 3.512135e+00 lineto -5.803327e+01 3.626303e+00 lineto -closepath -gsave -6.129671e-01 6.129671e-01 7.662088e-01 setrgbcolor -fill -grestore -newpath -5.803327e+01 3.626303e+00 moveto -5.918365e+01 3.588199e+00 lineto -5.943319e+01 3.492883e+00 lineto -5.833217e+01 3.512135e+00 lineto -5.803327e+01 3.626303e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.688948e+01 3.704527e+00 moveto -5.803327e+01 3.626303e+00 lineto -5.833217e+01 3.512135e+00 lineto -5.723746e+01 3.571615e+00 lineto -5.688948e+01 3.704527e+00 lineto -closepath -gsave -6.134653e-01 6.134653e-01 7.668316e-01 setrgbcolor -fill -grestore -newpath -5.688948e+01 3.704527e+00 moveto -5.803327e+01 3.626303e+00 lineto -5.833217e+01 3.512135e+00 lineto -5.723746e+01 3.571615e+00 lineto -5.688948e+01 3.704527e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.575338e+01 3.822797e+00 moveto -5.688948e+01 3.704527e+00 lineto -5.723746e+01 3.571615e+00 lineto -5.615009e+01 3.671267e+00 lineto -5.575338e+01 3.822797e+00 lineto -closepath -gsave -6.138911e-01 6.138911e-01 7.673639e-01 setrgbcolor -fill -grestore -newpath -5.575338e+01 3.822797e+00 moveto -5.688948e+01 3.704527e+00 lineto -5.723746e+01 3.571615e+00 lineto -5.615009e+01 3.671267e+00 lineto -5.575338e+01 3.822797e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.462603e+01 3.981e+00 moveto -5.575338e+01 3.822797e+00 lineto -5.615009e+01 3.671267e+00 lineto -5.507111e+01 3.810995e+00 lineto -5.462603e+01 3.981e+00 lineto -closepath -gsave -6.14244e-01 6.14244e-01 7.67805e-01 setrgbcolor -fill -grestore -newpath -5.462603e+01 3.981e+00 moveto -5.575338e+01 3.822797e+00 lineto -5.615009e+01 3.671267e+00 lineto -5.507111e+01 3.810995e+00 lineto -5.462603e+01 3.981e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.35085e+01 4.178988e+00 moveto -5.462603e+01 3.981e+00 lineto -5.507111e+01 3.810995e+00 lineto -5.400153e+01 3.990669e+00 lineto -5.35085e+01 4.178988e+00 lineto -closepath -gsave -6.145236e-01 6.145236e-01 7.681545e-01 setrgbcolor -fill -grestore -newpath -5.35085e+01 4.178988e+00 moveto -5.462603e+01 3.981e+00 lineto -5.507111e+01 3.810995e+00 lineto -5.400153e+01 3.990669e+00 lineto -5.35085e+01 4.178988e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.240185e+01 4.416572e+00 moveto -5.35085e+01 4.178988e+00 lineto -5.400153e+01 3.990669e+00 lineto -5.294236e+01 4.210118e+00 lineto -5.240185e+01 4.416572e+00 lineto -closepath -gsave -6.147296e-01 6.147296e-01 7.68412e-01 setrgbcolor -fill -grestore -newpath -5.240185e+01 4.416572e+00 moveto -5.35085e+01 4.178988e+00 lineto -5.400153e+01 3.990669e+00 lineto -5.294236e+01 4.210118e+00 lineto -5.240185e+01 4.416572e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.130713e+01 4.693528e+00 moveto -5.240185e+01 4.416572e+00 lineto -5.294236e+01 4.210118e+00 lineto -5.189461e+01 4.469134e+00 lineto -5.130713e+01 4.693528e+00 lineto -closepath -gsave -6.148618e-01 6.148618e-01 7.685772e-01 setrgbcolor -fill -grestore -newpath -5.130713e+01 4.693528e+00 moveto -5.240185e+01 4.416572e+00 lineto -5.294236e+01 4.210118e+00 lineto -5.189461e+01 4.469134e+00 lineto -5.130713e+01 4.693528e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.022538e+01 5.009593e+00 moveto -5.130713e+01 4.693528e+00 lineto -5.189461e+01 4.469134e+00 lineto -5.085927e+01 4.767471e+00 lineto -5.022538e+01 5.009593e+00 lineto -closepath -gsave -6.1492e-01 6.1492e-01 7.6865e-01 setrgbcolor -fill -grestore -newpath -5.022538e+01 5.009593e+00 moveto -5.130713e+01 4.693528e+00 lineto -5.189461e+01 4.469134e+00 lineto -5.085927e+01 4.767471e+00 lineto -5.022538e+01 5.009593e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.915761e+01 5.364468e+00 moveto -5.022538e+01 5.009593e+00 lineto -5.085927e+01 4.767471e+00 lineto -4.983731e+01 5.104848e+00 lineto -4.915761e+01 5.364468e+00 lineto -closepath -gsave -6.149043e-01 6.149043e-01 7.686303e-01 setrgbcolor -fill -grestore -newpath -4.915761e+01 5.364468e+00 moveto -5.022538e+01 5.009593e+00 lineto -5.085927e+01 4.767471e+00 lineto -4.983731e+01 5.104848e+00 lineto -4.915761e+01 5.364468e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -4.810485e+01 5.757817e+00 moveto -4.915761e+01 5.364468e+00 lineto -4.983731e+01 5.104848e+00 lineto -4.882971e+01 5.480945e+00 lineto -4.810485e+01 5.757817e+00 lineto -closepath -gsave -6.148145e-01 6.148145e-01 7.685181e-01 setrgbcolor -fill -grestore -newpath -4.810485e+01 5.757817e+00 moveto -4.915761e+01 5.364468e+00 lineto -4.983731e+01 5.104848e+00 lineto -4.882971e+01 5.480945e+00 lineto -4.810485e+01 5.757817e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.38795e+01 3.817946e+00 moveto -6.499637e+01 3.999346e+00 lineto -6.499655e+01 3.999287e+00 lineto -6.393664e+01 3.800007e+00 lineto -6.38795e+01 3.817946e+00 lineto -closepath -gsave -6.091036e-01 6.091036e-01 7.613795e-01 setrgbcolor -fill -grestore -newpath -6.38795e+01 3.817946e+00 moveto -6.499637e+01 3.999346e+00 lineto -6.499655e+01 3.999287e+00 lineto -6.393664e+01 3.800007e+00 lineto -6.38795e+01 3.817946e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.276369e+01 3.676485e+00 moveto -6.38795e+01 3.817946e+00 lineto -6.393664e+01 3.800007e+00 lineto -6.287773e+01 3.640681e+00 lineto -6.276369e+01 3.676485e+00 lineto -closepath -gsave -6.09342e-01 6.09342e-01 7.616775e-01 setrgbcolor -fill -grestore -newpath -6.276369e+01 3.676485e+00 moveto -6.38795e+01 3.817946e+00 lineto -6.393664e+01 3.800007e+00 lineto -6.287773e+01 3.640681e+00 lineto -6.276369e+01 3.676485e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.165e+01 3.575097e+00 moveto -6.276369e+01 3.676485e+00 lineto -6.287773e+01 3.640681e+00 lineto -6.182083e+01 3.521462e+00 lineto -6.165e+01 3.575097e+00 lineto -closepath -gsave -6.095121e-01 6.095121e-01 7.618901e-01 setrgbcolor -fill -grestore -newpath -6.165e+01 3.575097e+00 moveto -6.276369e+01 3.676485e+00 lineto -6.287773e+01 3.640681e+00 lineto -6.182083e+01 3.521462e+00 lineto -6.165e+01 3.575097e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.053949e+01 3.513877e+00 moveto -6.165e+01 3.575097e+00 lineto -6.182083e+01 3.521462e+00 lineto -6.076694e+01 3.442462e+00 lineto -6.053949e+01 3.513877e+00 lineto -closepath -gsave -6.096135e-01 6.096135e-01 7.620169e-01 setrgbcolor -fill -grestore -newpath -6.053949e+01 3.513877e+00 moveto -6.165e+01 3.575097e+00 lineto -6.182083e+01 3.521462e+00 lineto -6.076694e+01 3.442462e+00 lineto -6.053949e+01 3.513877e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.943319e+01 3.492883e+00 moveto -6.053949e+01 3.513877e+00 lineto -6.076694e+01 3.442462e+00 lineto -5.971706e+01 3.403756e+00 lineto -5.943319e+01 3.492883e+00 lineto -closepath -gsave -6.096462e-01 6.096462e-01 7.620577e-01 setrgbcolor -fill -grestore -newpath -5.943319e+01 3.492883e+00 moveto -6.053949e+01 3.513877e+00 lineto -6.076694e+01 3.442462e+00 lineto -5.971706e+01 3.403756e+00 lineto -5.943319e+01 3.492883e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.833217e+01 3.512135e+00 moveto -5.943319e+01 3.492883e+00 lineto -5.971706e+01 3.403756e+00 lineto -5.867218e+01 3.40538e+00 lineto -5.833217e+01 3.512135e+00 lineto -closepath -gsave -6.096101e-01 6.096101e-01 7.620127e-01 setrgbcolor -fill -grestore -newpath -5.833217e+01 3.512135e+00 moveto -5.943319e+01 3.492883e+00 lineto -5.971706e+01 3.403756e+00 lineto -5.867218e+01 3.40538e+00 lineto -5.833217e+01 3.512135e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.723746e+01 3.571615e+00 moveto -5.833217e+01 3.512135e+00 lineto -5.867218e+01 3.40538e+00 lineto -5.763329e+01 3.447333e+00 lineto -5.723746e+01 3.571615e+00 lineto -closepath -gsave -6.095053e-01 6.095053e-01 7.618817e-01 setrgbcolor -fill -grestore -newpath -5.723746e+01 3.571615e+00 moveto -5.833217e+01 3.512135e+00 lineto -5.867218e+01 3.40538e+00 lineto -5.763329e+01 3.447333e+00 lineto -5.723746e+01 3.571615e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.615009e+01 3.671267e+00 moveto -5.723746e+01 3.571615e+00 lineto -5.763329e+01 3.447333e+00 lineto -5.660137e+01 3.529576e+00 lineto -5.615009e+01 3.671267e+00 lineto -closepath -gsave -6.09332e-01 6.09332e-01 7.61665e-01 setrgbcolor -fill -grestore -newpath -5.615009e+01 3.671267e+00 moveto -5.723746e+01 3.571615e+00 lineto -5.763329e+01 3.447333e+00 lineto -5.660137e+01 3.529576e+00 lineto -5.615009e+01 3.671267e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.507111e+01 3.810995e+00 moveto -5.615009e+01 3.671267e+00 lineto -5.660137e+01 3.529576e+00 lineto -5.557741e+01 3.65203e+00 lineto -5.507111e+01 3.810995e+00 lineto -closepath -gsave -6.090902e-01 6.090902e-01 7.613627e-01 setrgbcolor -fill -grestore -newpath -5.507111e+01 3.810995e+00 moveto -5.615009e+01 3.671267e+00 lineto -5.660137e+01 3.529576e+00 lineto -5.557741e+01 3.65203e+00 lineto -5.507111e+01 3.810995e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.400153e+01 3.990669e+00 moveto -5.507111e+01 3.810995e+00 lineto -5.557741e+01 3.65203e+00 lineto -5.456237e+01 3.814579e+00 lineto -5.400153e+01 3.990669e+00 lineto -closepath -gsave -6.087803e-01 6.087803e-01 7.609754e-01 setrgbcolor -fill -grestore -newpath -5.400153e+01 3.990669e+00 moveto -5.507111e+01 3.810995e+00 lineto -5.557741e+01 3.65203e+00 lineto -5.456237e+01 3.814579e+00 lineto -5.400153e+01 3.990669e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.294236e+01 4.210118e+00 moveto -5.400153e+01 3.990669e+00 lineto -5.456237e+01 3.814579e+00 lineto -5.355721e+01 4.01707e+00 lineto -5.294236e+01 4.210118e+00 lineto -closepath -gsave -6.084026e-01 6.084026e-01 7.605033e-01 setrgbcolor -fill -grestore -newpath -5.294236e+01 4.210118e+00 moveto -5.400153e+01 3.990669e+00 lineto -5.456237e+01 3.814579e+00 lineto -5.355721e+01 4.01707e+00 lineto -5.294236e+01 4.210118e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.189461e+01 4.469134e+00 moveto -5.294236e+01 4.210118e+00 lineto -5.355721e+01 4.01707e+00 lineto -5.256289e+01 4.259311e+00 lineto -5.189461e+01 4.469134e+00 lineto -closepath -gsave -6.079576e-01 6.079576e-01 7.59947e-01 setrgbcolor -fill -grestore -newpath -5.189461e+01 4.469134e+00 moveto -5.294236e+01 4.210118e+00 lineto -5.355721e+01 4.01707e+00 lineto -5.256289e+01 4.259311e+00 lineto -5.189461e+01 4.469134e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.085927e+01 4.767471e+00 moveto -5.189461e+01 4.469134e+00 lineto -5.256289e+01 4.259311e+00 lineto -5.158034e+01 4.541072e+00 lineto -5.085927e+01 4.767471e+00 lineto -closepath -gsave -6.074457e-01 6.074457e-01 7.593071e-01 setrgbcolor -fill -grestore -newpath -5.085927e+01 4.767471e+00 moveto -5.189461e+01 4.469134e+00 lineto -5.256289e+01 4.259311e+00 lineto -5.158034e+01 4.541072e+00 lineto -5.085927e+01 4.767471e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.393664e+01 3.800007e+00 moveto -6.499655e+01 3.999287e+00 lineto -6.499676e+01 3.999234e+00 lineto -6.400033e+01 3.783423e+00 lineto -6.393664e+01 3.800007e+00 lineto -closepath -gsave -6.087947e-01 6.087947e-01 7.609934e-01 setrgbcolor -fill -grestore -newpath -6.393664e+01 3.800007e+00 moveto -6.499655e+01 3.999287e+00 lineto -6.499676e+01 3.999234e+00 lineto -6.400033e+01 3.783423e+00 lineto -6.393664e+01 3.800007e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.287773e+01 3.640681e+00 moveto -6.393664e+01 3.800007e+00 lineto -6.400033e+01 3.783423e+00 lineto -6.300485e+01 3.607584e+00 lineto -6.287773e+01 3.640681e+00 lineto -closepath -gsave -6.084198e-01 6.084198e-01 7.605248e-01 setrgbcolor -fill -grestore -newpath -6.287773e+01 3.640681e+00 moveto -6.393664e+01 3.800007e+00 lineto -6.400033e+01 3.783423e+00 lineto -6.300485e+01 3.607584e+00 lineto -6.287773e+01 3.640681e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.182083e+01 3.521462e+00 moveto -6.287773e+01 3.640681e+00 lineto -6.300485e+01 3.607584e+00 lineto -6.201125e+01 3.471882e+00 lineto -6.182083e+01 3.521462e+00 lineto -closepath -gsave -6.079775e-01 6.079775e-01 7.599719e-01 setrgbcolor -fill -grestore -newpath -6.182083e+01 3.521462e+00 moveto -6.287773e+01 3.640681e+00 lineto -6.300485e+01 3.607584e+00 lineto -6.201125e+01 3.471882e+00 lineto -6.182083e+01 3.521462e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.076694e+01 3.442462e+00 moveto -6.182083e+01 3.521462e+00 lineto -6.201125e+01 3.471882e+00 lineto -6.102049e+01 3.376447e+00 lineto -6.076694e+01 3.442462e+00 lineto -closepath -gsave -6.074683e-01 6.074683e-01 7.593354e-01 setrgbcolor -fill -grestore -newpath -6.076694e+01 3.442462e+00 moveto -6.182083e+01 3.521462e+00 lineto -6.201125e+01 3.471882e+00 lineto -6.102049e+01 3.376447e+00 lineto -6.076694e+01 3.442462e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.971706e+01 3.403756e+00 moveto -6.076694e+01 3.442462e+00 lineto -6.102049e+01 3.376447e+00 lineto -6.003349e+01 3.321367e+00 lineto -5.971706e+01 3.403756e+00 lineto -closepath -gsave -6.068928e-01 6.068928e-01 7.58616e-01 setrgbcolor -fill -grestore -newpath -5.971706e+01 3.403756e+00 moveto -6.076694e+01 3.442462e+00 lineto -6.102049e+01 3.376447e+00 lineto -6.003349e+01 3.321367e+00 lineto -5.971706e+01 3.403756e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.867218e+01 3.40538e+00 moveto -5.971706e+01 3.403756e+00 lineto -6.003349e+01 3.321367e+00 lineto -5.90512e+01 3.306697e+00 lineto -5.867218e+01 3.40538e+00 lineto -closepath -gsave -6.062516e-01 6.062516e-01 7.578145e-01 setrgbcolor -fill -grestore -newpath -5.867218e+01 3.40538e+00 moveto -5.971706e+01 3.403756e+00 lineto -6.003349e+01 3.321367e+00 lineto -5.90512e+01 3.306697e+00 lineto -5.867218e+01 3.40538e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.763329e+01 3.447333e+00 moveto -5.867218e+01 3.40538e+00 lineto -5.90512e+01 3.306697e+00 lineto -5.807454e+01 3.332448e+00 lineto -5.763329e+01 3.447333e+00 lineto -closepath -gsave -6.055454e-01 6.055454e-01 7.569317e-01 setrgbcolor -fill -grestore -newpath -5.763329e+01 3.447333e+00 moveto -5.867218e+01 3.40538e+00 lineto -5.90512e+01 3.306697e+00 lineto -5.807454e+01 3.332448e+00 lineto -5.763329e+01 3.447333e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.660137e+01 3.529576e+00 moveto -5.763329e+01 3.447333e+00 lineto -5.807454e+01 3.332448e+00 lineto -5.710443e+01 3.398598e+00 lineto -5.660137e+01 3.529576e+00 lineto -closepath -gsave -6.04775e-01 6.04775e-01 7.559687e-01 setrgbcolor -fill -grestore -newpath -5.660137e+01 3.529576e+00 moveto -5.763329e+01 3.447333e+00 lineto -5.807454e+01 3.332448e+00 lineto -5.710443e+01 3.398598e+00 lineto -5.660137e+01 3.529576e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.557741e+01 3.65203e+00 moveto -5.660137e+01 3.529576e+00 lineto -5.710443e+01 3.398598e+00 lineto -5.614181e+01 3.505083e+00 lineto -5.557741e+01 3.65203e+00 lineto -closepath -gsave -6.039413e-01 6.039413e-01 7.549266e-01 setrgbcolor -fill -grestore -newpath -5.557741e+01 3.65203e+00 moveto -5.660137e+01 3.529576e+00 lineto -5.710443e+01 3.398598e+00 lineto -5.614181e+01 3.505083e+00 lineto -5.557741e+01 3.65203e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.456237e+01 3.814579e+00 moveto -5.557741e+01 3.65203e+00 lineto -5.614181e+01 3.505083e+00 lineto -5.518756e+01 3.651803e+00 lineto -5.456237e+01 3.814579e+00 lineto -closepath -gsave -6.030452e-01 6.030452e-01 7.538066e-01 setrgbcolor -fill -grestore -newpath -5.456237e+01 3.814579e+00 moveto -5.557741e+01 3.65203e+00 lineto -5.614181e+01 3.505083e+00 lineto -5.518756e+01 3.651803e+00 lineto -5.456237e+01 3.814579e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.355721e+01 4.01707e+00 moveto -5.456237e+01 3.814579e+00 lineto -5.518756e+01 3.651803e+00 lineto -5.424261e+01 3.838618e+00 lineto -5.355721e+01 4.01707e+00 lineto -closepath -gsave -6.020878e-01 6.020878e-01 7.526098e-01 setrgbcolor -fill -grestore -newpath -5.355721e+01 4.01707e+00 moveto -5.456237e+01 3.814579e+00 lineto -5.518756e+01 3.651803e+00 lineto -5.424261e+01 3.838618e+00 lineto -5.355721e+01 4.01707e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.256289e+01 4.259311e+00 moveto -5.355721e+01 4.01707e+00 lineto -5.424261e+01 3.838618e+00 lineto -5.330785e+01 4.065353e+00 lineto -5.256289e+01 4.259311e+00 lineto -closepath -gsave -6.010701e-01 6.010701e-01 7.513377e-01 setrgbcolor -fill -grestore -newpath -5.256289e+01 4.259311e+00 moveto -5.355721e+01 4.01707e+00 lineto -5.424261e+01 3.838618e+00 lineto -5.330785e+01 4.065353e+00 lineto -5.256289e+01 4.259311e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.400033e+01 3.783423e+00 moveto -6.499676e+01 3.999234e+00 lineto -6.499699e+01 3.999185e+00 lineto -6.407019e+01 3.768299e+00 lineto -6.400033e+01 3.783423e+00 lineto -closepath -gsave -6.084869e-01 6.084869e-01 7.606086e-01 setrgbcolor -fill -grestore -newpath -6.400033e+01 3.783423e+00 moveto -6.499676e+01 3.999234e+00 lineto -6.499699e+01 3.999185e+00 lineto -6.407019e+01 3.768299e+00 lineto -6.400033e+01 3.783423e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.300485e+01 3.607584e+00 moveto -6.400033e+01 3.783423e+00 lineto -6.407019e+01 3.768299e+00 lineto -6.314427e+01 3.577398e+00 lineto -6.300485e+01 3.607584e+00 lineto -closepath -gsave -6.075011e-01 6.075011e-01 7.593764e-01 setrgbcolor -fill -grestore -newpath -6.300485e+01 3.607584e+00 moveto -6.400033e+01 3.783423e+00 lineto -6.407019e+01 3.768299e+00 lineto -6.314427e+01 3.577398e+00 lineto -6.300485e+01 3.607584e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.201125e+01 3.471882e+00 moveto -6.300485e+01 3.607584e+00 lineto -6.314427e+01 3.577398e+00 lineto -6.222011e+01 3.426664e+00 lineto -6.201125e+01 3.471882e+00 lineto -closepath -gsave -6.064496e-01 6.064496e-01 7.58062e-01 setrgbcolor -fill -grestore -newpath -6.201125e+01 3.471882e+00 moveto -6.300485e+01 3.607584e+00 lineto -6.314427e+01 3.577398e+00 lineto -6.222011e+01 3.426664e+00 lineto -6.201125e+01 3.471882e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.102049e+01 3.376447e+00 moveto -6.201125e+01 3.471882e+00 lineto -6.222011e+01 3.426664e+00 lineto -6.129858e+01 3.316238e+00 lineto -6.102049e+01 3.376447e+00 lineto -closepath -gsave -6.053335e-01 6.053335e-01 7.566669e-01 setrgbcolor -fill -grestore -newpath -6.102049e+01 3.376447e+00 moveto -6.201125e+01 3.471882e+00 lineto -6.222011e+01 3.426664e+00 lineto -6.129858e+01 3.316238e+00 lineto -6.102049e+01 3.376447e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.003349e+01 3.321367e+00 moveto -6.102049e+01 3.376447e+00 lineto -6.129858e+01 3.316238e+00 lineto -6.038055e+01 3.246226e+00 lineto -6.003349e+01 3.321367e+00 lineto -closepath -gsave -6.04154e-01 6.04154e-01 7.551926e-01 setrgbcolor -fill -grestore -newpath -6.003349e+01 3.321367e+00 moveto -6.102049e+01 3.376447e+00 lineto -6.129858e+01 3.316238e+00 lineto -6.038055e+01 3.246226e+00 lineto -6.003349e+01 3.321367e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.90512e+01 3.306697e+00 moveto -6.003349e+01 3.321367e+00 lineto -6.038055e+01 3.246226e+00 lineto -5.94669e+01 3.216694e+00 lineto -5.90512e+01 3.306697e+00 lineto -closepath -gsave -6.029126e-01 6.029126e-01 7.536408e-01 setrgbcolor -fill -grestore -newpath -5.90512e+01 3.306697e+00 moveto -6.003349e+01 3.321367e+00 lineto -6.038055e+01 3.246226e+00 lineto -5.94669e+01 3.216694e+00 lineto -5.90512e+01 3.306697e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.807454e+01 3.332448e+00 moveto -5.90512e+01 3.306697e+00 lineto -5.94669e+01 3.216694e+00 lineto -5.855849e+01 3.227669e+00 lineto -5.807454e+01 3.332448e+00 lineto -closepath -gsave -6.016106e-01 6.016106e-01 7.520133e-01 setrgbcolor -fill -grestore -newpath -5.807454e+01 3.332448e+00 moveto -5.90512e+01 3.306697e+00 lineto -5.94669e+01 3.216694e+00 lineto -5.855849e+01 3.227669e+00 lineto -5.807454e+01 3.332448e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.710443e+01 3.398598e+00 moveto -5.807454e+01 3.332448e+00 lineto -5.855849e+01 3.227669e+00 lineto -5.765617e+01 3.279141e+00 lineto -5.710443e+01 3.398598e+00 lineto -closepath -gsave -6.002495e-01 6.002495e-01 7.503119e-01 setrgbcolor -fill -grestore -newpath -5.710443e+01 3.398598e+00 moveto -5.807454e+01 3.332448e+00 lineto -5.855849e+01 3.227669e+00 lineto -5.765617e+01 3.279141e+00 lineto -5.710443e+01 3.398598e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.614181e+01 3.505083e+00 moveto -5.710443e+01 3.398598e+00 lineto -5.765617e+01 3.279141e+00 lineto -5.676081e+01 3.371062e+00 lineto -5.614181e+01 3.505083e+00 lineto -closepath -gsave -5.988309e-01 5.988309e-01 7.485386e-01 setrgbcolor -fill -grestore -newpath -5.614181e+01 3.505083e+00 moveto -5.710443e+01 3.398598e+00 lineto -5.765617e+01 3.279141e+00 lineto -5.676081e+01 3.371062e+00 lineto -5.614181e+01 3.505083e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.518756e+01 3.651803e+00 moveto -5.614181e+01 3.505083e+00 lineto -5.676081e+01 3.371062e+00 lineto -5.587325e+01 3.503345e+00 lineto -5.518756e+01 3.651803e+00 lineto -closepath -gsave -5.973563e-01 5.973563e-01 7.466954e-01 setrgbcolor -fill -grestore -newpath -5.518756e+01 3.651803e+00 moveto -5.614181e+01 3.505083e+00 lineto -5.676081e+01 3.371062e+00 lineto -5.587325e+01 3.503345e+00 lineto -5.518756e+01 3.651803e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.424261e+01 3.838618e+00 moveto -5.518756e+01 3.651803e+00 lineto -5.587325e+01 3.503345e+00 lineto -5.499433e+01 3.675863e+00 lineto -5.424261e+01 3.838618e+00 lineto -closepath -gsave -5.958275e-01 5.958275e-01 7.447844e-01 setrgbcolor -fill -grestore -newpath -5.424261e+01 3.838618e+00 moveto -5.518756e+01 3.651803e+00 lineto -5.587325e+01 3.503345e+00 lineto -5.499433e+01 3.675863e+00 lineto -5.424261e+01 3.838618e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.407019e+01 3.768299e+00 moveto -6.499699e+01 3.999185e+00 lineto -6.499723e+01 3.999141e+00 lineto -6.414578e+01 3.754726e+00 lineto -6.407019e+01 3.768299e+00 lineto -closepath -gsave -6.08182e-01 6.08182e-01 7.602275e-01 setrgbcolor -fill -grestore -newpath -6.407019e+01 3.768299e+00 moveto -6.499699e+01 3.999185e+00 lineto -6.499723e+01 3.999141e+00 lineto -6.414578e+01 3.754726e+00 lineto -6.407019e+01 3.768299e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.314427e+01 3.577398e+00 moveto -6.407019e+01 3.768299e+00 lineto -6.414578e+01 3.754726e+00 lineto -6.329513e+01 3.55031e+00 lineto -6.314427e+01 3.577398e+00 lineto -closepath -gsave -6.065916e-01 6.065916e-01 7.582395e-01 setrgbcolor -fill -grestore -newpath -6.314427e+01 3.577398e+00 moveto -6.407019e+01 3.768299e+00 lineto -6.414578e+01 3.754726e+00 lineto -6.329513e+01 3.55031e+00 lineto -6.314427e+01 3.577398e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.222011e+01 3.426664e+00 moveto -6.314427e+01 3.577398e+00 lineto -6.329513e+01 3.55031e+00 lineto -6.24461e+01 3.386085e+00 lineto -6.222011e+01 3.426664e+00 lineto -closepath -gsave -6.049377e-01 6.049377e-01 7.561721e-01 setrgbcolor -fill -grestore -newpath -6.222011e+01 3.426664e+00 moveto -6.314427e+01 3.577398e+00 lineto -6.329513e+01 3.55031e+00 lineto -6.24461e+01 3.386085e+00 lineto -6.222011e+01 3.426664e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.129858e+01 3.316238e+00 moveto -6.222011e+01 3.426664e+00 lineto -6.24461e+01 3.386085e+00 lineto -6.159948e+01 3.262208e+00 lineto -6.129858e+01 3.316238e+00 lineto -closepath -gsave -6.032222e-01 6.032222e-01 7.540277e-01 setrgbcolor -fill -grestore -newpath -6.129858e+01 3.316238e+00 moveto -6.222011e+01 3.426664e+00 lineto -6.24461e+01 3.386085e+00 lineto -6.159948e+01 3.262208e+00 lineto -6.129858e+01 3.316238e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.038055e+01 3.246226e+00 moveto -6.129858e+01 3.316238e+00 lineto -6.159948e+01 3.262208e+00 lineto -6.075609e+01 3.178795e+00 lineto -6.038055e+01 3.246226e+00 lineto -closepath -gsave -6.01447e-01 6.01447e-01 7.518087e-01 setrgbcolor -fill -grestore -newpath -6.038055e+01 3.246226e+00 moveto -6.129858e+01 3.316238e+00 lineto -6.159948e+01 3.262208e+00 lineto -6.075609e+01 3.178795e+00 lineto -6.038055e+01 3.246226e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.94669e+01 3.216694e+00 moveto -6.038055e+01 3.246226e+00 lineto -6.075609e+01 3.178795e+00 lineto -5.991671e+01 3.135926e+00 lineto -5.94669e+01 3.216694e+00 lineto -closepath -gsave -5.996141e-01 5.996141e-01 7.495177e-01 setrgbcolor -fill -grestore -newpath -5.94669e+01 3.216694e+00 moveto -6.038055e+01 3.246226e+00 lineto -6.075609e+01 3.178795e+00 lineto -5.991671e+01 3.135926e+00 lineto -5.94669e+01 3.216694e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.855849e+01 3.227669e+00 moveto -5.94669e+01 3.216694e+00 lineto -5.991671e+01 3.135926e+00 lineto -5.908215e+01 3.13364e+00 lineto -5.855849e+01 3.227669e+00 lineto -closepath -gsave -5.977259e-01 5.977259e-01 7.471573e-01 setrgbcolor -fill -grestore -newpath -5.855849e+01 3.227669e+00 moveto -5.94669e+01 3.216694e+00 lineto -5.991671e+01 3.135926e+00 lineto -5.908215e+01 3.13364e+00 lineto -5.855849e+01 3.227669e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.765617e+01 3.279141e+00 moveto -5.855849e+01 3.227669e+00 lineto -5.908215e+01 3.13364e+00 lineto -5.825319e+01 3.171942e+00 lineto -5.765617e+01 3.279141e+00 lineto -closepath -gsave -5.957843e-01 5.957843e-01 7.447304e-01 setrgbcolor -fill -grestore -newpath -5.765617e+01 3.279141e+00 moveto -5.855849e+01 3.227669e+00 lineto -5.908215e+01 3.13364e+00 lineto -5.825319e+01 3.171942e+00 lineto -5.765617e+01 3.279141e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.676081e+01 3.371062e+00 moveto -5.765617e+01 3.279141e+00 lineto -5.825319e+01 3.171942e+00 lineto -5.743062e+01 3.250793e+00 lineto -5.676081e+01 3.371062e+00 lineto -closepath -gsave -5.937917e-01 5.937917e-01 7.422396e-01 setrgbcolor -fill -grestore -newpath -5.676081e+01 3.371062e+00 moveto -5.765617e+01 3.279141e+00 lineto -5.825319e+01 3.171942e+00 lineto -5.743062e+01 3.250793e+00 lineto -5.676081e+01 3.371062e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.587325e+01 3.503345e+00 moveto -5.676081e+01 3.371062e+00 lineto -5.743062e+01 3.250793e+00 lineto -5.661521e+01 3.370119e+00 lineto -5.587325e+01 3.503345e+00 lineto -closepath -gsave -5.917504e-01 5.917504e-01 7.39688e-01 setrgbcolor -fill -grestore -newpath -5.587325e+01 3.503345e+00 moveto -5.676081e+01 3.371062e+00 lineto -5.743062e+01 3.250793e+00 lineto -5.661521e+01 3.370119e+00 lineto -5.587325e+01 3.503345e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.414578e+01 3.754726e+00 moveto -6.499723e+01 3.999141e+00 lineto -6.499749e+01 3.999102e+00 lineto -6.422663e+01 3.742789e+00 lineto -6.414578e+01 3.754726e+00 lineto -closepath -gsave -6.078819e-01 6.078819e-01 7.598524e-01 setrgbcolor -fill -grestore -newpath -6.414578e+01 3.754726e+00 moveto -6.499723e+01 3.999141e+00 lineto -6.499749e+01 3.999102e+00 lineto -6.422663e+01 3.742789e+00 lineto -6.414578e+01 3.754726e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.329513e+01 3.55031e+00 moveto -6.414578e+01 3.754726e+00 lineto -6.422663e+01 3.742789e+00 lineto -6.34565e+01 3.526485e+00 lineto -6.329513e+01 3.55031e+00 lineto -closepath -gsave -6.056969e-01 6.056969e-01 7.571211e-01 setrgbcolor -fill -grestore -newpath -6.329513e+01 3.55031e+00 moveto -6.414578e+01 3.754726e+00 lineto -6.422663e+01 3.742789e+00 lineto -6.34565e+01 3.526485e+00 lineto -6.329513e+01 3.55031e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.24461e+01 3.386085e+00 moveto -6.329513e+01 3.55031e+00 lineto -6.34565e+01 3.526485e+00 lineto -6.268783e+01 3.350396e+00 lineto -6.24461e+01 3.386085e+00 lineto -closepath -gsave -6.034512e-01 6.034512e-01 7.543139e-01 setrgbcolor -fill -grestore -newpath -6.24461e+01 3.386085e+00 moveto -6.329513e+01 3.55031e+00 lineto -6.34565e+01 3.526485e+00 lineto -6.268783e+01 3.350396e+00 lineto -6.24461e+01 3.386085e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.159948e+01 3.262208e+00 moveto -6.24461e+01 3.386085e+00 lineto -6.268783e+01 3.350396e+00 lineto -6.192136e+01 3.214688e+00 lineto -6.159948e+01 3.262208e+00 lineto -closepath -gsave -6.011474e-01 6.011474e-01 7.514342e-01 setrgbcolor -fill -grestore -newpath -6.159948e+01 3.262208e+00 moveto -6.24461e+01 3.386085e+00 lineto -6.268783e+01 3.350396e+00 lineto -6.192136e+01 3.214688e+00 lineto -6.159948e+01 3.262208e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.075609e+01 3.178795e+00 moveto -6.159948e+01 3.262208e+00 lineto -6.192136e+01 3.214688e+00 lineto -6.115779e+01 3.119489e+00 lineto -6.075609e+01 3.178795e+00 lineto -closepath -gsave -5.987882e-01 5.987882e-01 7.484853e-01 setrgbcolor -fill -grestore -newpath -6.075609e+01 3.178795e+00 moveto -6.159948e+01 3.262208e+00 lineto -6.192136e+01 3.214688e+00 lineto -6.115779e+01 3.119489e+00 lineto -6.075609e+01 3.178795e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.991671e+01 3.135926e+00 moveto -6.075609e+01 3.178795e+00 lineto -6.115779e+01 3.119489e+00 lineto -6.039787e+01 3.06489e+00 lineto -5.991671e+01 3.135926e+00 lineto -closepath -gsave -5.963766e-01 5.963766e-01 7.454708e-01 setrgbcolor -fill -grestore -newpath -5.991671e+01 3.135926e+00 moveto -6.075609e+01 3.178795e+00 lineto -6.115779e+01 3.119489e+00 lineto -6.039787e+01 3.06489e+00 lineto -5.991671e+01 3.135926e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.908215e+01 3.13364e+00 moveto -5.991671e+01 3.135926e+00 lineto -6.039787e+01 3.06489e+00 lineto -5.96423e+01 3.050943e+00 lineto -5.908215e+01 3.13364e+00 lineto -closepath -gsave -5.939153e-01 5.939153e-01 7.423942e-01 setrgbcolor -fill -grestore -newpath -5.908215e+01 3.13364e+00 moveto -5.991671e+01 3.135926e+00 lineto -6.039787e+01 3.06489e+00 lineto -5.96423e+01 3.050943e+00 lineto -5.908215e+01 3.13364e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.825319e+01 3.171942e+00 moveto -5.908215e+01 3.13364e+00 lineto -5.96423e+01 3.050943e+00 lineto -5.88918e+01 3.07766e+00 lineto -5.825319e+01 3.171942e+00 lineto -closepath -gsave -5.914073e-01 5.914073e-01 7.392592e-01 setrgbcolor -fill -grestore -newpath -5.825319e+01 3.171942e+00 moveto -5.908215e+01 3.13364e+00 lineto -5.96423e+01 3.050943e+00 lineto -5.88918e+01 3.07766e+00 lineto -5.825319e+01 3.171942e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.743062e+01 3.250793e+00 moveto -5.825319e+01 3.171942e+00 lineto -5.88918e+01 3.07766e+00 lineto -5.814709e+01 3.145016e+00 lineto -5.743062e+01 3.250793e+00 lineto -closepath -gsave -5.888557e-01 5.888557e-01 7.360696e-01 setrgbcolor -fill -grestore -newpath -5.743062e+01 3.250793e+00 moveto -5.825319e+01 3.171942e+00 lineto -5.88918e+01 3.07766e+00 lineto -5.814709e+01 3.145016e+00 lineto -5.743062e+01 3.250793e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.661521e+01 3.370119e+00 moveto -5.743062e+01 3.250793e+00 lineto -5.814709e+01 3.145016e+00 lineto -5.740886e+01 3.252948e+00 lineto -5.661521e+01 3.370119e+00 lineto -closepath -gsave -5.862633e-01 5.862633e-01 7.328292e-01 setrgbcolor -fill -grestore -newpath -5.661521e+01 3.370119e+00 moveto -5.743062e+01 3.250793e+00 lineto -5.814709e+01 3.145016e+00 lineto -5.740886e+01 3.252948e+00 lineto -5.661521e+01 3.370119e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.422663e+01 3.742789e+00 moveto -6.499749e+01 3.999102e+00 lineto -6.499777e+01 3.999069e+00 lineto -6.431226e+01 3.732561e+00 lineto -6.422663e+01 3.742789e+00 lineto -closepath -gsave -6.075885e-01 6.075885e-01 7.594856e-01 setrgbcolor -fill -grestore -newpath -6.422663e+01 3.742789e+00 moveto -6.499749e+01 3.999102e+00 lineto -6.499777e+01 3.999069e+00 lineto -6.431226e+01 3.732561e+00 lineto -6.422663e+01 3.742789e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.34565e+01 3.526485e+00 moveto -6.422663e+01 3.742789e+00 lineto -6.431226e+01 3.732561e+00 lineto -6.362739e+01 3.506072e+00 lineto -6.34565e+01 3.526485e+00 lineto -closepath -gsave -6.048224e-01 6.048224e-01 7.56028e-01 setrgbcolor -fill -grestore -newpath -6.34565e+01 3.526485e+00 moveto -6.422663e+01 3.742789e+00 lineto -6.431226e+01 3.732561e+00 lineto -6.362739e+01 3.506072e+00 lineto -6.34565e+01 3.526485e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.268783e+01 3.350396e+00 moveto -6.34565e+01 3.526485e+00 lineto -6.362739e+01 3.506072e+00 lineto -6.294383e+01 3.319817e+00 lineto -6.268783e+01 3.350396e+00 lineto -closepath -gsave -6.01999e-01 6.01999e-01 7.524988e-01 setrgbcolor -fill -grestore -newpath -6.268783e+01 3.350396e+00 moveto -6.34565e+01 3.526485e+00 lineto -6.362739e+01 3.506072e+00 lineto -6.294383e+01 3.319817e+00 lineto -6.268783e+01 3.350396e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.192136e+01 3.214688e+00 moveto -6.268783e+01 3.350396e+00 lineto -6.294383e+01 3.319817e+00 lineto -6.226221e+01 3.173972e+00 lineto -6.192136e+01 3.214688e+00 lineto -closepath -gsave -5.991218e-01 5.991218e-01 7.489022e-01 setrgbcolor -fill -grestore -newpath -6.192136e+01 3.214688e+00 moveto -6.268783e+01 3.350396e+00 lineto -6.294383e+01 3.319817e+00 lineto -6.226221e+01 3.173972e+00 lineto -6.192136e+01 3.214688e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.115779e+01 3.119489e+00 moveto -6.192136e+01 3.214688e+00 lineto -6.226221e+01 3.173972e+00 lineto -6.158318e+01 3.068675e+00 lineto -6.115779e+01 3.119489e+00 lineto -closepath -gsave -5.961942e-01 5.961942e-01 7.452427e-01 setrgbcolor -fill -grestore -newpath -6.115779e+01 3.119489e+00 moveto -6.192136e+01 3.214688e+00 lineto -6.226221e+01 3.173972e+00 lineto -6.158318e+01 3.068675e+00 lineto -6.115779e+01 3.119489e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.039787e+01 3.06489e+00 moveto -6.115779e+01 3.119489e+00 lineto -6.158318e+01 3.068675e+00 lineto -6.090739e+01 3.004026e+00 lineto -6.039787e+01 3.06489e+00 lineto -closepath -gsave -5.932199e-01 5.932199e-01 7.415248e-01 setrgbcolor -fill -grestore -newpath -6.039787e+01 3.06489e+00 moveto -6.115779e+01 3.119489e+00 lineto -6.158318e+01 3.068675e+00 lineto -6.090739e+01 3.004026e+00 lineto -6.039787e+01 3.06489e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.96423e+01 3.050943e+00 moveto -6.039787e+01 3.06489e+00 lineto -6.090739e+01 3.004026e+00 lineto -6.023548e+01 2.980086e+00 lineto -5.96423e+01 3.050943e+00 lineto -closepath -gsave -5.902025e-01 5.902025e-01 7.377531e-01 setrgbcolor -fill -grestore -newpath -5.96423e+01 3.050943e+00 moveto -6.039787e+01 3.06489e+00 lineto -6.090739e+01 3.004026e+00 lineto -6.023548e+01 2.980086e+00 lineto -5.96423e+01 3.050943e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.88918e+01 3.07766e+00 moveto -5.96423e+01 3.050943e+00 lineto -6.023548e+01 2.980086e+00 lineto -5.956807e+01 2.996878e+00 lineto -5.88918e+01 3.07766e+00 lineto -closepath -gsave -5.871457e-01 5.871457e-01 7.339321e-01 setrgbcolor -fill -grestore -newpath -5.88918e+01 3.07766e+00 moveto -5.96423e+01 3.050943e+00 lineto -6.023548e+01 2.980086e+00 lineto -5.956807e+01 2.996878e+00 lineto -5.88918e+01 3.07766e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.814709e+01 3.145016e+00 moveto -5.88918e+01 3.07766e+00 lineto -5.956807e+01 2.996878e+00 lineto -5.890581e+01 3.054385e+00 lineto -5.814709e+01 3.145016e+00 lineto -closepath -gsave -5.840534e-01 5.840534e-01 7.300668e-01 setrgbcolor -fill -grestore -newpath -5.814709e+01 3.145016e+00 moveto -5.88918e+01 3.07766e+00 lineto -5.956807e+01 2.996878e+00 lineto -5.890581e+01 3.054385e+00 lineto -5.814709e+01 3.145016e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.431226e+01 3.732561e+00 moveto -6.499777e+01 3.999069e+00 lineto -6.499806e+01 3.999042e+00 lineto -6.440212e+01 3.724105e+00 lineto -6.431226e+01 3.732561e+00 lineto -closepath -gsave -6.073035e-01 6.073035e-01 7.591293e-01 setrgbcolor -fill -grestore -newpath -6.431226e+01 3.732561e+00 moveto -6.499777e+01 3.999069e+00 lineto -6.499806e+01 3.999042e+00 lineto -6.440212e+01 3.724105e+00 lineto -6.431226e+01 3.732561e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.362739e+01 3.506072e+00 moveto -6.431226e+01 3.732561e+00 lineto -6.440212e+01 3.724105e+00 lineto -6.380674e+01 3.489196e+00 lineto -6.362739e+01 3.506072e+00 lineto -closepath -gsave -6.039735e-01 6.039735e-01 7.549669e-01 setrgbcolor -fill -grestore -newpath -6.362739e+01 3.506072e+00 moveto -6.431226e+01 3.732561e+00 lineto -6.440212e+01 3.724105e+00 lineto -6.380674e+01 3.489196e+00 lineto -6.362739e+01 3.506072e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.294383e+01 3.319817e+00 moveto -6.362739e+01 3.506072e+00 lineto -6.380674e+01 3.489196e+00 lineto -6.32125e+01 3.294537e+00 lineto -6.294383e+01 3.319817e+00 lineto -closepath -gsave -6.005902e-01 6.005902e-01 7.507377e-01 setrgbcolor -fill -grestore -newpath -6.294383e+01 3.319817e+00 moveto -6.362739e+01 3.506072e+00 lineto -6.380674e+01 3.489196e+00 lineto -6.32125e+01 3.294537e+00 lineto -6.294383e+01 3.319817e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.226221e+01 3.173972e+00 moveto -6.294383e+01 3.319817e+00 lineto -6.32125e+01 3.294537e+00 lineto -6.261994e+01 3.140312e+00 lineto -6.226221e+01 3.173972e+00 lineto -closepath -gsave -5.971577e-01 5.971577e-01 7.464472e-01 setrgbcolor -fill -grestore -newpath -6.226221e+01 3.173972e+00 moveto -6.294383e+01 3.319817e+00 lineto -6.32125e+01 3.294537e+00 lineto -6.261994e+01 3.140312e+00 lineto -6.226221e+01 3.173972e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.158318e+01 3.068675e+00 moveto -6.226221e+01 3.173972e+00 lineto -6.261994e+01 3.140312e+00 lineto -6.202964e+01 3.026666e+00 lineto -6.158318e+01 3.068675e+00 lineto -closepath -gsave -5.936805e-01 5.936805e-01 7.421007e-01 setrgbcolor -fill -grestore -newpath -6.158318e+01 3.068675e+00 moveto -6.226221e+01 3.173972e+00 lineto -6.261994e+01 3.140312e+00 lineto -6.202964e+01 3.026666e+00 lineto -6.158318e+01 3.068675e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.090739e+01 3.004026e+00 moveto -6.158318e+01 3.068675e+00 lineto -6.202964e+01 3.026666e+00 lineto -6.144215e+01 2.953708e+00 lineto -6.090739e+01 3.004026e+00 lineto -closepath -gsave -5.90163e-01 5.90163e-01 7.377038e-01 setrgbcolor -fill -grestore -newpath -6.090739e+01 3.004026e+00 moveto -6.158318e+01 3.068675e+00 lineto -6.202964e+01 3.026666e+00 lineto -6.144215e+01 2.953708e+00 lineto -6.090739e+01 3.004026e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.023548e+01 2.980086e+00 moveto -6.090739e+01 3.004026e+00 lineto -6.144215e+01 2.953708e+00 lineto -6.085803e+01 2.921507e+00 lineto -6.023548e+01 2.980086e+00 lineto -closepath -gsave -5.866098e-01 5.866098e-01 7.332622e-01 setrgbcolor -fill -grestore -newpath -6.023548e+01 2.980086e+00 moveto -6.090739e+01 3.004026e+00 lineto -6.144215e+01 2.953708e+00 lineto -6.085803e+01 2.921507e+00 lineto -6.023548e+01 2.980086e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.956807e+01 2.996878e+00 moveto -6.023548e+01 2.980086e+00 lineto -6.085803e+01 2.921507e+00 lineto -6.027783e+01 2.930093e+00 lineto -5.956807e+01 2.996878e+00 lineto -closepath -gsave -5.830252e-01 5.830252e-01 7.287815e-01 setrgbcolor -fill -grestore -newpath -5.956807e+01 2.996878e+00 moveto -6.023548e+01 2.980086e+00 lineto -6.085803e+01 2.921507e+00 lineto -6.027783e+01 2.930093e+00 lineto -5.956807e+01 2.996878e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -5.890581e+01 3.054385e+00 moveto -5.956807e+01 2.996878e+00 lineto -6.027783e+01 2.930093e+00 lineto -5.97021e+01 2.979458e+00 lineto -5.890581e+01 3.054385e+00 lineto -closepath -gsave -5.794141e-01 5.794141e-01 7.242676e-01 setrgbcolor -fill -grestore -newpath -5.890581e+01 3.054385e+00 moveto -5.956807e+01 2.996878e+00 lineto -6.027783e+01 2.930093e+00 lineto -5.97021e+01 2.979458e+00 lineto -5.890581e+01 3.054385e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.440212e+01 3.724105e+00 moveto -6.499806e+01 3.999042e+00 lineto -6.499837e+01 3.99902e+00 lineto -6.449567e+01 3.717474e+00 lineto -6.440212e+01 3.724105e+00 lineto -closepath -gsave -6.070287e-01 6.070287e-01 7.587859e-01 setrgbcolor -fill -grestore -newpath -6.440212e+01 3.724105e+00 moveto -6.499806e+01 3.999042e+00 lineto -6.499837e+01 3.99902e+00 lineto -6.449567e+01 3.717474e+00 lineto -6.440212e+01 3.724105e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.380674e+01 3.489196e+00 moveto -6.440212e+01 3.724105e+00 lineto -6.449567e+01 3.717474e+00 lineto -6.399345e+01 3.475961e+00 lineto -6.380674e+01 3.489196e+00 lineto -closepath -gsave -6.031554e-01 6.031554e-01 7.539443e-01 setrgbcolor -fill -grestore -newpath -6.380674e+01 3.489196e+00 moveto -6.440212e+01 3.724105e+00 lineto -6.449567e+01 3.717474e+00 lineto -6.399345e+01 3.475961e+00 lineto -6.380674e+01 3.489196e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.32125e+01 3.294537e+00 moveto -6.380674e+01 3.489196e+00 lineto -6.399345e+01 3.475961e+00 lineto -6.349219e+01 3.274711e+00 lineto -6.32125e+01 3.294537e+00 lineto -closepath -gsave -5.992332e-01 5.992332e-01 7.490415e-01 setrgbcolor -fill -grestore -newpath -6.32125e+01 3.294537e+00 moveto -6.380674e+01 3.489196e+00 lineto -6.399345e+01 3.475961e+00 lineto -6.349219e+01 3.274711e+00 lineto -6.32125e+01 3.294537e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.261994e+01 3.140312e+00 moveto -6.32125e+01 3.294537e+00 lineto -6.349219e+01 3.274711e+00 lineto -6.299235e+01 3.113913e+00 lineto -6.261994e+01 3.140312e+00 lineto -closepath -gsave -5.952671e-01 5.952671e-01 7.440838e-01 setrgbcolor -fill -grestore -newpath -6.261994e+01 3.140312e+00 moveto -6.32125e+01 3.294537e+00 lineto -6.349219e+01 3.274711e+00 lineto -6.299235e+01 3.113913e+00 lineto -6.261994e+01 3.140312e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.202964e+01 3.026666e+00 moveto -6.261994e+01 3.140312e+00 lineto -6.299235e+01 3.113913e+00 lineto -6.249441e+01 2.993721e+00 lineto -6.202964e+01 3.026666e+00 lineto -closepath -gsave -5.912624e-01 5.912624e-01 7.39078e-01 setrgbcolor -fill -grestore -newpath -6.202964e+01 3.026666e+00 moveto -6.261994e+01 3.140312e+00 lineto -6.299235e+01 3.113913e+00 lineto -6.249441e+01 2.993721e+00 lineto -6.202964e+01 3.026666e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.144215e+01 2.953708e+00 moveto -6.202964e+01 3.026666e+00 lineto -6.249441e+01 2.993721e+00 lineto -6.199885e+01 2.914247e+00 lineto -6.144215e+01 2.953708e+00 lineto -closepath -gsave -5.872244e-01 5.872244e-01 7.340305e-01 setrgbcolor -fill -grestore -newpath -6.144215e+01 2.953708e+00 moveto -6.202964e+01 3.026666e+00 lineto -6.249441e+01 2.993721e+00 lineto -6.199885e+01 2.914247e+00 lineto -6.144215e+01 2.953708e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.085803e+01 2.921507e+00 moveto -6.144215e+01 2.953708e+00 lineto -6.199885e+01 2.914247e+00 lineto -6.150612e+01 2.875567e+00 lineto -6.085803e+01 2.921507e+00 lineto -closepath -gsave -5.831586e-01 5.831586e-01 7.289483e-01 setrgbcolor -fill -grestore -newpath -6.085803e+01 2.921507e+00 moveto -6.144215e+01 2.953708e+00 lineto -6.199885e+01 2.914247e+00 lineto -6.150612e+01 2.875567e+00 lineto -6.085803e+01 2.921507e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.027783e+01 2.930093e+00 moveto -6.085803e+01 2.921507e+00 lineto -6.150612e+01 2.875567e+00 lineto -6.101671e+01 2.877717e+00 lineto -6.027783e+01 2.930093e+00 lineto -closepath -gsave -5.790704e-01 5.790704e-01 7.23838e-01 setrgbcolor -fill -grestore -newpath -6.027783e+01 2.930093e+00 moveto -6.085803e+01 2.921507e+00 lineto -6.150612e+01 2.875567e+00 lineto -6.101671e+01 2.877717e+00 lineto -6.027783e+01 2.930093e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.449567e+01 3.717474e+00 moveto -6.499837e+01 3.99902e+00 lineto -6.499868e+01 3.999005e+00 lineto -6.459233e+01 3.712708e+00 lineto -6.449567e+01 3.717474e+00 lineto -closepath -gsave -6.067658e-01 6.067658e-01 7.584572e-01 setrgbcolor -fill -grestore -newpath -6.449567e+01 3.717474e+00 moveto -6.499837e+01 3.99902e+00 lineto -6.499868e+01 3.999005e+00 lineto -6.459233e+01 3.712708e+00 lineto -6.449567e+01 3.717474e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.399345e+01 3.475961e+00 moveto -6.449567e+01 3.717474e+00 lineto -6.459233e+01 3.712708e+00 lineto -6.418637e+01 3.466449e+00 lineto -6.399345e+01 3.475961e+00 lineto -closepath -gsave -6.023731e-01 6.023731e-01 7.529664e-01 setrgbcolor -fill -grestore -newpath -6.399345e+01 3.475961e+00 moveto -6.449567e+01 3.717474e+00 lineto -6.459233e+01 3.712708e+00 lineto -6.418637e+01 3.466449e+00 lineto -6.399345e+01 3.475961e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.349219e+01 3.274711e+00 moveto -6.399345e+01 3.475961e+00 lineto -6.418637e+01 3.466449e+00 lineto -6.378117e+01 3.260462e+00 lineto -6.349219e+01 3.274711e+00 lineto -closepath -gsave -5.979362e-01 5.979362e-01 7.474202e-01 setrgbcolor -fill -grestore -newpath -6.349219e+01 3.274711e+00 moveto -6.399345e+01 3.475961e+00 lineto -6.418637e+01 3.466449e+00 lineto -6.378117e+01 3.260462e+00 lineto -6.349219e+01 3.274711e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.299235e+01 3.113913e+00 moveto -6.349219e+01 3.274711e+00 lineto -6.378117e+01 3.260462e+00 lineto -6.337713e+01 3.09494e+00 lineto -6.299235e+01 3.113913e+00 lineto -closepath -gsave -5.934611e-01 5.934611e-01 7.418264e-01 setrgbcolor -fill -grestore -newpath -6.299235e+01 3.113913e+00 moveto -6.349219e+01 3.274711e+00 lineto -6.378117e+01 3.260462e+00 lineto -6.337713e+01 3.09494e+00 lineto -6.299235e+01 3.113913e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.249441e+01 2.993721e+00 moveto -6.299235e+01 3.113913e+00 lineto -6.337713e+01 3.09494e+00 lineto -6.297463e+01 2.970042e+00 lineto -6.249441e+01 2.993721e+00 lineto -closepath -gsave -5.889541e-01 5.889541e-01 7.361926e-01 setrgbcolor -fill -grestore -newpath -6.249441e+01 2.993721e+00 moveto -6.299235e+01 3.113913e+00 lineto -6.337713e+01 3.09494e+00 lineto -6.297463e+01 2.970042e+00 lineto -6.249441e+01 2.993721e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.199885e+01 2.914247e+00 moveto -6.249441e+01 2.993721e+00 lineto -6.297463e+01 2.970042e+00 lineto -6.257404e+01 2.885885e+00 lineto -6.199885e+01 2.914247e+00 lineto -closepath -gsave -5.844214e-01 5.844214e-01 7.305267e-01 setrgbcolor -fill -grestore -newpath -6.199885e+01 2.914247e+00 moveto -6.249441e+01 2.993721e+00 lineto -6.297463e+01 2.970042e+00 lineto -6.257404e+01 2.885885e+00 lineto -6.199885e+01 2.914247e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.150612e+01 2.875567e+00 moveto -6.199885e+01 2.914247e+00 lineto -6.257404e+01 2.885885e+00 lineto -6.217575e+01 2.842548e+00 lineto -6.150612e+01 2.875567e+00 lineto -closepath -gsave -5.798692e-01 5.798692e-01 7.248366e-01 setrgbcolor -fill -grestore -newpath -6.150612e+01 2.875567e+00 moveto -6.199885e+01 2.914247e+00 lineto -6.257404e+01 2.885885e+00 lineto -6.217575e+01 2.842548e+00 lineto -6.150612e+01 2.875567e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.101671e+01 2.877717e+00 moveto -6.150612e+01 2.875567e+00 lineto -6.217575e+01 2.842548e+00 lineto -6.178014e+01 2.840074e+00 lineto -6.101671e+01 2.877717e+00 lineto -closepath -gsave -5.753041e-01 5.753041e-01 7.191301e-01 setrgbcolor -fill -grestore -newpath -6.101671e+01 2.877717e+00 moveto -6.150612e+01 2.875567e+00 lineto -6.217575e+01 2.842548e+00 lineto -6.178014e+01 2.840074e+00 lineto -6.101671e+01 2.877717e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.459233e+01 3.712708e+00 moveto -6.499868e+01 3.999005e+00 lineto -6.4999e+01 3.998995e+00 lineto -6.46915e+01 3.709836e+00 lineto -6.459233e+01 3.712708e+00 lineto -closepath -gsave -6.065164e-01 6.065164e-01 7.581455e-01 setrgbcolor -fill -grestore -newpath -6.459233e+01 3.712708e+00 moveto -6.499868e+01 3.999005e+00 lineto -6.4999e+01 3.998995e+00 lineto -6.46915e+01 3.709836e+00 lineto -6.459233e+01 3.712708e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.418637e+01 3.466449e+00 moveto -6.459233e+01 3.712708e+00 lineto -6.46915e+01 3.709836e+00 lineto -6.43843e+01 3.460718e+00 lineto -6.418637e+01 3.466449e+00 lineto -closepath -gsave -6.016313e-01 6.016313e-01 7.520391e-01 setrgbcolor -fill -grestore -newpath -6.418637e+01 3.466449e+00 moveto -6.459233e+01 3.712708e+00 lineto -6.46915e+01 3.709836e+00 lineto -6.43843e+01 3.460718e+00 lineto -6.418637e+01 3.466449e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.378117e+01 3.260462e+00 moveto -6.418637e+01 3.466449e+00 lineto -6.43843e+01 3.460718e+00 lineto -6.407767e+01 3.251877e+00 lineto -6.378117e+01 3.260462e+00 lineto -closepath -gsave -5.96707e-01 5.96707e-01 7.458838e-01 setrgbcolor -fill -grestore -newpath -6.378117e+01 3.260462e+00 moveto -6.418637e+01 3.466449e+00 lineto -6.43843e+01 3.460718e+00 lineto -6.407767e+01 3.251877e+00 lineto -6.378117e+01 3.260462e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.337713e+01 3.09494e+00 moveto -6.378117e+01 3.260462e+00 lineto -6.407767e+01 3.251877e+00 lineto -6.377192e+01 3.083509e+00 lineto -6.337713e+01 3.09494e+00 lineto -closepath -gsave -5.917506e-01 5.917506e-01 7.396883e-01 setrgbcolor -fill -grestore -newpath -6.337713e+01 3.09494e+00 moveto -6.378117e+01 3.260462e+00 lineto -6.407767e+01 3.251877e+00 lineto -6.377192e+01 3.083509e+00 lineto -6.337713e+01 3.09494e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.297463e+01 2.970042e+00 moveto -6.337713e+01 3.09494e+00 lineto -6.377192e+01 3.083509e+00 lineto -6.346733e+01 2.955776e+00 lineto -6.297463e+01 2.970042e+00 lineto -closepath -gsave -5.867692e-01 5.867692e-01 7.334615e-01 setrgbcolor -fill -grestore -newpath -6.297463e+01 2.970042e+00 moveto -6.337713e+01 3.09494e+00 lineto -6.377192e+01 3.083509e+00 lineto -6.346733e+01 2.955776e+00 lineto -6.297463e+01 2.970042e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.257404e+01 2.885885e+00 moveto -6.297463e+01 2.970042e+00 lineto -6.346733e+01 2.955776e+00 lineto -6.31642e+01 2.868797e+00 lineto -6.257404e+01 2.885885e+00 lineto -closepath -gsave -5.817701e-01 5.817701e-01 7.272126e-01 setrgbcolor -fill -grestore -newpath -6.257404e+01 2.885885e+00 moveto -6.297463e+01 2.970042e+00 lineto -6.346733e+01 2.955776e+00 lineto -6.31642e+01 2.868797e+00 lineto -6.257404e+01 2.885885e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.217575e+01 2.842548e+00 moveto -6.257404e+01 2.885885e+00 lineto -6.31642e+01 2.868797e+00 lineto -6.28628e+01 2.822655e+00 lineto -6.217575e+01 2.842548e+00 lineto -closepath -gsave -5.767605e-01 5.767605e-01 7.209507e-01 setrgbcolor -fill -grestore -newpath -6.217575e+01 2.842548e+00 moveto -6.257404e+01 2.885885e+00 lineto -6.31642e+01 2.868797e+00 lineto -6.28628e+01 2.822655e+00 lineto -6.217575e+01 2.842548e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.178014e+01 2.840074e+00 moveto -6.217575e+01 2.842548e+00 lineto -6.28628e+01 2.822655e+00 lineto -6.256342e+01 2.817394e+00 lineto -6.178014e+01 2.840074e+00 lineto -closepath -gsave -5.717478e-01 5.717478e-01 7.146847e-01 setrgbcolor -fill -grestore -newpath -6.178014e+01 2.840074e+00 moveto -6.217575e+01 2.842548e+00 lineto -6.28628e+01 2.822655e+00 lineto -6.256342e+01 2.817394e+00 lineto -6.178014e+01 2.840074e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.46915e+01 3.709836e+00 moveto -6.4999e+01 3.998995e+00 lineto -6.499933e+01 3.998992e+00 lineto -6.479258e+01 3.708877e+00 lineto -6.46915e+01 3.709836e+00 lineto -closepath -gsave -6.06282e-01 6.06282e-01 7.578525e-01 setrgbcolor -fill -grestore -newpath -6.46915e+01 3.709836e+00 moveto -6.4999e+01 3.998995e+00 lineto -6.499933e+01 3.998992e+00 lineto -6.479258e+01 3.708877e+00 lineto -6.46915e+01 3.709836e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.43843e+01 3.460718e+00 moveto -6.46915e+01 3.709836e+00 lineto -6.479258e+01 3.708877e+00 lineto -6.458602e+01 3.458804e+00 lineto -6.43843e+01 3.460718e+00 lineto -closepath -gsave -6.009345e-01 6.009345e-01 7.511682e-01 setrgbcolor -fill -grestore -newpath -6.43843e+01 3.460718e+00 moveto -6.46915e+01 3.709836e+00 lineto -6.479258e+01 3.708877e+00 lineto -6.458602e+01 3.458804e+00 lineto -6.43843e+01 3.460718e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.407767e+01 3.251877e+00 moveto -6.43843e+01 3.460718e+00 lineto -6.458602e+01 3.458804e+00 lineto -6.437986e+01 3.249009e+00 lineto -6.407767e+01 3.251877e+00 lineto -closepath -gsave -5.955531e-01 5.955531e-01 7.444413e-01 setrgbcolor -fill -grestore -newpath -6.407767e+01 3.251877e+00 moveto -6.43843e+01 3.460718e+00 lineto -6.458602e+01 3.458804e+00 lineto -6.437986e+01 3.249009e+00 lineto -6.407767e+01 3.251877e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.377192e+01 3.083509e+00 moveto -6.407767e+01 3.251877e+00 lineto -6.437986e+01 3.249009e+00 lineto -6.417428e+01 3.079691e+00 lineto -6.377192e+01 3.083509e+00 lineto -closepath -gsave -5.901457e-01 5.901457e-01 7.376821e-01 setrgbcolor -fill -grestore -newpath -6.377192e+01 3.083509e+00 moveto -6.407767e+01 3.251877e+00 lineto -6.437986e+01 3.249009e+00 lineto -6.417428e+01 3.079691e+00 lineto -6.377192e+01 3.083509e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.346733e+01 2.955776e+00 moveto -6.377192e+01 3.083509e+00 lineto -6.417428e+01 3.079691e+00 lineto -6.396949e+01 2.951011e+00 lineto -6.346733e+01 2.955776e+00 lineto -closepath -gsave -5.847206e-01 5.847206e-01 7.309007e-01 setrgbcolor -fill -grestore -newpath -6.346733e+01 2.955776e+00 moveto -6.377192e+01 3.083509e+00 lineto -6.417428e+01 3.079691e+00 lineto -6.396949e+01 2.951011e+00 lineto -6.346733e+01 2.955776e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.31642e+01 2.868797e+00 moveto -6.346733e+01 2.955776e+00 lineto -6.396949e+01 2.951011e+00 lineto -6.376567e+01 2.86309e+00 lineto -6.31642e+01 2.868797e+00 lineto -closepath -gsave -5.792859e-01 5.792859e-01 7.241074e-01 setrgbcolor -fill -grestore -newpath -6.31642e+01 2.868797e+00 moveto -6.346733e+01 2.955776e+00 lineto -6.396949e+01 2.951011e+00 lineto -6.376567e+01 2.86309e+00 lineto -6.31642e+01 2.868797e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.28628e+01 2.822655e+00 moveto -6.31642e+01 2.868797e+00 lineto -6.376567e+01 2.86309e+00 lineto -6.356302e+01 2.816011e+00 lineto -6.28628e+01 2.822655e+00 lineto -closepath -gsave -5.7385e-01 5.7385e-01 7.173125e-01 setrgbcolor -fill -grestore -newpath -6.28628e+01 2.822655e+00 moveto -6.31642e+01 2.868797e+00 lineto -6.376567e+01 2.86309e+00 lineto -6.356302e+01 2.816011e+00 lineto -6.28628e+01 2.822655e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.256342e+01 2.817394e+00 moveto -6.28628e+01 2.822655e+00 lineto -6.356302e+01 2.816011e+00 lineto -6.336173e+01 2.809819e+00 lineto -6.256342e+01 2.817394e+00 lineto -closepath -gsave -5.68421e-01 5.68421e-01 7.105263e-01 setrgbcolor -fill -grestore -newpath -6.256342e+01 2.817394e+00 moveto -6.28628e+01 2.822655e+00 lineto -6.356302e+01 2.816011e+00 lineto -6.336173e+01 2.809819e+00 lineto -6.256342e+01 2.817394e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.479258e+01 3.708877e+00 moveto -6.499933e+01 3.998992e+00 lineto -6.499966e+01 3.998995e+00 lineto -6.489493e+01 3.709836e+00 lineto -6.479258e+01 3.708877e+00 lineto -closepath -gsave -6.060641e-01 6.060641e-01 7.575802e-01 setrgbcolor -fill -grestore -newpath -6.479258e+01 3.708877e+00 moveto -6.499933e+01 3.998992e+00 lineto -6.499966e+01 3.998995e+00 lineto -6.489493e+01 3.709836e+00 lineto -6.479258e+01 3.708877e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.458602e+01 3.458804e+00 moveto -6.479258e+01 3.708877e+00 lineto -6.489493e+01 3.709836e+00 lineto -6.47903e+01 3.460718e+00 lineto -6.458602e+01 3.458804e+00 lineto -closepath -gsave -6.00287e-01 6.00287e-01 7.503588e-01 setrgbcolor -fill -grestore -newpath -6.458602e+01 3.458804e+00 moveto -6.479258e+01 3.708877e+00 lineto -6.489493e+01 3.709836e+00 lineto -6.47903e+01 3.460718e+00 lineto -6.458602e+01 3.458804e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.437986e+01 3.249009e+00 moveto -6.458602e+01 3.458804e+00 lineto -6.47903e+01 3.460718e+00 lineto -6.468587e+01 3.251877e+00 lineto -6.437986e+01 3.249009e+00 lineto -closepath -gsave -5.944812e-01 5.944812e-01 7.431015e-01 setrgbcolor -fill -grestore -newpath -6.437986e+01 3.249009e+00 moveto -6.458602e+01 3.458804e+00 lineto -6.47903e+01 3.460718e+00 lineto -6.468587e+01 3.251877e+00 lineto -6.437986e+01 3.249009e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.417428e+01 3.079691e+00 moveto -6.437986e+01 3.249009e+00 lineto -6.468587e+01 3.251877e+00 lineto -6.458173e+01 3.083509e+00 lineto -6.417428e+01 3.079691e+00 lineto -closepath -gsave -5.886557e-01 5.886557e-01 7.358196e-01 setrgbcolor -fill -grestore -newpath -6.417428e+01 3.079691e+00 moveto -6.437986e+01 3.249009e+00 lineto -6.468587e+01 3.251877e+00 lineto -6.458173e+01 3.083509e+00 lineto -6.417428e+01 3.079691e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.396949e+01 2.951011e+00 moveto -6.417428e+01 3.079691e+00 lineto -6.458173e+01 3.083509e+00 lineto -6.4478e+01 2.955776e+00 lineto -6.396949e+01 2.951011e+00 lineto -closepath -gsave -5.828198e-01 5.828198e-01 7.285248e-01 setrgbcolor -fill -grestore -newpath -6.396949e+01 2.951011e+00 moveto -6.417428e+01 3.079691e+00 lineto -6.458173e+01 3.083509e+00 lineto -6.4478e+01 2.955776e+00 lineto -6.396949e+01 2.951011e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.376567e+01 2.86309e+00 moveto -6.396949e+01 2.951011e+00 lineto -6.4478e+01 2.955776e+00 lineto -6.437475e+01 2.868797e+00 lineto -6.376567e+01 2.86309e+00 lineto -closepath -gsave -5.769827e-01 5.769827e-01 7.212284e-01 setrgbcolor -fill -grestore -newpath -6.376567e+01 2.86309e+00 moveto -6.396949e+01 2.951011e+00 lineto -6.4478e+01 2.955776e+00 lineto -6.437475e+01 2.868797e+00 lineto -6.376567e+01 2.86309e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.356302e+01 2.816011e+00 moveto -6.376567e+01 2.86309e+00 lineto -6.437475e+01 2.868797e+00 lineto -6.42721e+01 2.822655e+00 lineto -6.356302e+01 2.816011e+00 lineto -closepath -gsave -5.711537e-01 5.711537e-01 7.139421e-01 setrgbcolor -fill -grestore -newpath -6.356302e+01 2.816011e+00 moveto -6.376567e+01 2.86309e+00 lineto -6.437475e+01 2.868797e+00 lineto -6.42721e+01 2.822655e+00 lineto -6.356302e+01 2.816011e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.336173e+01 2.809819e+00 moveto -6.356302e+01 2.816011e+00 lineto -6.42721e+01 2.822655e+00 lineto -6.417014e+01 2.817394e+00 lineto -6.336173e+01 2.809819e+00 lineto -closepath -gsave -5.653418e-01 5.653418e-01 7.066773e-01 setrgbcolor -fill -grestore -newpath -6.336173e+01 2.809819e+00 moveto -6.356302e+01 2.816011e+00 lineto -6.42721e+01 2.822655e+00 lineto -6.417014e+01 2.817394e+00 lineto -6.336173e+01 2.809819e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.489493e+01 3.709836e+00 moveto -6.499966e+01 3.998995e+00 lineto -6.499999e+01 3.999005e+00 lineto -6.499793e+01 3.712708e+00 lineto -6.489493e+01 3.709836e+00 lineto -closepath -gsave -6.05864e-01 6.05864e-01 7.5733e-01 setrgbcolor -fill -grestore -newpath -6.489493e+01 3.709836e+00 moveto -6.499966e+01 3.998995e+00 lineto -6.499999e+01 3.999005e+00 lineto -6.499793e+01 3.712708e+00 lineto -6.489493e+01 3.709836e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.47903e+01 3.460718e+00 moveto -6.489493e+01 3.709836e+00 lineto -6.499793e+01 3.712708e+00 lineto -6.499587e+01 3.466449e+00 lineto -6.47903e+01 3.460718e+00 lineto -closepath -gsave -5.996926e-01 5.996926e-01 7.496157e-01 setrgbcolor -fill -grestore -newpath -6.47903e+01 3.460718e+00 moveto -6.489493e+01 3.709836e+00 lineto -6.499793e+01 3.712708e+00 lineto -6.499587e+01 3.466449e+00 lineto -6.47903e+01 3.460718e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.468587e+01 3.251877e+00 moveto -6.47903e+01 3.460718e+00 lineto -6.499587e+01 3.466449e+00 lineto -6.499382e+01 3.260462e+00 lineto -6.468587e+01 3.251877e+00 lineto -closepath -gsave -5.934977e-01 5.934977e-01 7.418721e-01 setrgbcolor -fill -grestore -newpath -6.468587e+01 3.251877e+00 moveto -6.47903e+01 3.460718e+00 lineto -6.499587e+01 3.466449e+00 lineto -6.499382e+01 3.260462e+00 lineto -6.468587e+01 3.251877e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.458173e+01 3.083509e+00 moveto -6.468587e+01 3.251877e+00 lineto -6.499382e+01 3.260462e+00 lineto -6.499177e+01 3.09494e+00 lineto -6.458173e+01 3.083509e+00 lineto -closepath -gsave -5.872894e-01 5.872894e-01 7.341117e-01 setrgbcolor -fill -grestore -newpath -6.458173e+01 3.083509e+00 moveto -6.468587e+01 3.251877e+00 lineto -6.499382e+01 3.260462e+00 lineto -6.499177e+01 3.09494e+00 lineto -6.458173e+01 3.083509e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.4478e+01 2.955776e+00 moveto -6.458173e+01 3.083509e+00 lineto -6.499177e+01 3.09494e+00 lineto -6.498972e+01 2.970042e+00 lineto -6.4478e+01 2.955776e+00 lineto -closepath -gsave -5.810779e-01 5.810779e-01 7.263473e-01 setrgbcolor -fill -grestore -newpath -6.4478e+01 2.955776e+00 moveto -6.458173e+01 3.083509e+00 lineto -6.499177e+01 3.09494e+00 lineto -6.498972e+01 2.970042e+00 lineto -6.4478e+01 2.955776e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.437475e+01 2.868797e+00 moveto -6.4478e+01 2.955776e+00 lineto -6.498972e+01 2.970042e+00 lineto -6.498769e+01 2.885885e+00 lineto -6.437475e+01 2.868797e+00 lineto -closepath -gsave -5.748734e-01 5.748734e-01 7.185917e-01 setrgbcolor -fill -grestore -newpath -6.437475e+01 2.868797e+00 moveto -6.4478e+01 2.955776e+00 lineto -6.498972e+01 2.970042e+00 lineto -6.498769e+01 2.885885e+00 lineto -6.437475e+01 2.868797e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.42721e+01 2.822655e+00 moveto -6.437475e+01 2.868797e+00 lineto -6.498769e+01 2.885885e+00 lineto -6.498567e+01 2.842548e+00 lineto -6.42721e+01 2.822655e+00 lineto -closepath -gsave -5.686861e-01 5.686861e-01 7.108576e-01 setrgbcolor -fill -grestore -newpath -6.42721e+01 2.822655e+00 moveto -6.437475e+01 2.868797e+00 lineto -6.498769e+01 2.885885e+00 lineto -6.498567e+01 2.842548e+00 lineto -6.42721e+01 2.822655e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.417014e+01 2.817394e+00 moveto -6.42721e+01 2.822655e+00 lineto -6.498567e+01 2.842548e+00 lineto -6.498366e+01 2.840074e+00 lineto -6.417014e+01 2.817394e+00 lineto -closepath -gsave -5.625262e-01 5.625262e-01 7.031578e-01 setrgbcolor -fill -grestore -newpath -6.417014e+01 2.817394e+00 moveto -6.42721e+01 2.822655e+00 lineto -6.498567e+01 2.842548e+00 lineto -6.498366e+01 2.840074e+00 lineto -6.417014e+01 2.817394e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.499793e+01 3.712708e+00 moveto -6.499999e+01 3.999005e+00 lineto -6.500033e+01 3.99902e+00 lineto -6.510095e+01 3.717474e+00 lineto -6.499793e+01 3.712708e+00 lineto -closepath -gsave -6.05683e-01 6.05683e-01 7.571037e-01 setrgbcolor -fill -grestore -newpath -6.499793e+01 3.712708e+00 moveto -6.499999e+01 3.999005e+00 lineto -6.500033e+01 3.99902e+00 lineto -6.510095e+01 3.717474e+00 lineto -6.499793e+01 3.712708e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.499587e+01 3.466449e+00 moveto -6.499793e+01 3.712708e+00 lineto -6.510095e+01 3.717474e+00 lineto -6.520147e+01 3.475961e+00 lineto -6.499587e+01 3.466449e+00 lineto -closepath -gsave -5.991549e-01 5.991549e-01 7.489436e-01 setrgbcolor -fill -grestore -newpath -6.499587e+01 3.466449e+00 moveto -6.499793e+01 3.712708e+00 lineto -6.510095e+01 3.717474e+00 lineto -6.520147e+01 3.475961e+00 lineto -6.499587e+01 3.466449e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.499382e+01 3.260462e+00 moveto -6.499587e+01 3.466449e+00 lineto -6.520147e+01 3.475961e+00 lineto -6.53018e+01 3.274711e+00 lineto -6.499382e+01 3.260462e+00 lineto -closepath -gsave -5.926084e-01 5.926084e-01 7.407605e-01 setrgbcolor -fill -grestore -newpath -6.499382e+01 3.260462e+00 moveto -6.499587e+01 3.466449e+00 lineto -6.520147e+01 3.475961e+00 lineto -6.53018e+01 3.274711e+00 lineto -6.499382e+01 3.260462e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.499177e+01 3.09494e+00 moveto -6.499382e+01 3.260462e+00 lineto -6.53018e+01 3.274711e+00 lineto -6.540185e+01 3.113913e+00 lineto -6.499177e+01 3.09494e+00 lineto -closepath -gsave -5.860546e-01 5.860546e-01 7.325682e-01 setrgbcolor -fill -grestore -newpath -6.499177e+01 3.09494e+00 moveto -6.499382e+01 3.260462e+00 lineto -6.53018e+01 3.274711e+00 lineto -6.540185e+01 3.113913e+00 lineto -6.499177e+01 3.09494e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.498972e+01 2.970042e+00 moveto -6.499177e+01 3.09494e+00 lineto -6.540185e+01 3.113913e+00 lineto -6.550151e+01 2.993721e+00 lineto -6.498972e+01 2.970042e+00 lineto -closepath -gsave -5.795045e-01 5.795045e-01 7.243806e-01 setrgbcolor -fill -grestore -newpath -6.498972e+01 2.970042e+00 moveto -6.499177e+01 3.09494e+00 lineto -6.540185e+01 3.113913e+00 lineto -6.550151e+01 2.993721e+00 lineto -6.498972e+01 2.970042e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.498769e+01 2.885885e+00 moveto -6.498972e+01 2.970042e+00 lineto -6.550151e+01 2.993721e+00 lineto -6.56007e+01 2.914247e+00 lineto -6.498769e+01 2.885885e+00 lineto -closepath -gsave -5.729694e-01 5.729694e-01 7.162117e-01 setrgbcolor -fill -grestore -newpath -6.498769e+01 2.885885e+00 moveto -6.498972e+01 2.970042e+00 lineto -6.550151e+01 2.993721e+00 lineto -6.56007e+01 2.914247e+00 lineto -6.498769e+01 2.885885e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.498567e+01 2.842548e+00 moveto -6.498769e+01 2.885885e+00 lineto -6.56007e+01 2.914247e+00 lineto -6.569933e+01 2.875567e+00 lineto -6.498567e+01 2.842548e+00 lineto -closepath -gsave -5.664604e-01 5.664604e-01 7.080755e-01 setrgbcolor -fill -grestore -newpath -6.498567e+01 2.842548e+00 moveto -6.498769e+01 2.885885e+00 lineto -6.56007e+01 2.914247e+00 lineto -6.569933e+01 2.875567e+00 lineto -6.498567e+01 2.842548e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.498366e+01 2.840074e+00 moveto -6.498567e+01 2.842548e+00 lineto -6.569933e+01 2.875567e+00 lineto -6.579729e+01 2.877717e+00 lineto -6.498366e+01 2.840074e+00 lineto -closepath -gsave -5.599886e-01 5.599886e-01 6.999858e-01 setrgbcolor -fill -grestore -newpath -6.498366e+01 2.840074e+00 moveto -6.498567e+01 2.842548e+00 lineto -6.569933e+01 2.875567e+00 lineto -6.579729e+01 2.877717e+00 lineto -6.498366e+01 2.840074e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.510095e+01 3.717474e+00 moveto -6.500033e+01 3.99902e+00 lineto -6.500066e+01 3.999042e+00 lineto -6.520334e+01 3.724105e+00 lineto -6.510095e+01 3.717474e+00 lineto -closepath -gsave -6.05522e-01 6.05522e-01 7.569025e-01 setrgbcolor -fill -grestore -newpath -6.510095e+01 3.717474e+00 moveto -6.500033e+01 3.99902e+00 lineto -6.500066e+01 3.999042e+00 lineto -6.520334e+01 3.724105e+00 lineto -6.510095e+01 3.717474e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.520147e+01 3.475961e+00 moveto -6.510095e+01 3.717474e+00 lineto -6.520334e+01 3.724105e+00 lineto -6.540582e+01 3.489196e+00 lineto -6.520147e+01 3.475961e+00 lineto -closepath -gsave -5.986772e-01 5.986772e-01 7.483465e-01 setrgbcolor -fill -grestore -newpath -6.520147e+01 3.475961e+00 moveto -6.510095e+01 3.717474e+00 lineto -6.520334e+01 3.724105e+00 lineto -6.540582e+01 3.489196e+00 lineto -6.520147e+01 3.475961e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.53018e+01 3.274711e+00 moveto -6.520147e+01 3.475961e+00 lineto -6.540582e+01 3.489196e+00 lineto -6.560792e+01 3.294537e+00 lineto -6.53018e+01 3.274711e+00 lineto -closepath -gsave -5.918186e-01 5.918186e-01 7.397733e-01 setrgbcolor -fill -grestore -newpath -6.53018e+01 3.274711e+00 moveto -6.520147e+01 3.475961e+00 lineto -6.540582e+01 3.489196e+00 lineto -6.560792e+01 3.294537e+00 lineto -6.53018e+01 3.274711e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.540185e+01 3.113913e+00 moveto -6.53018e+01 3.274711e+00 lineto -6.560792e+01 3.294537e+00 lineto -6.580945e+01 3.140312e+00 lineto -6.540185e+01 3.113913e+00 lineto -closepath -gsave -5.849584e-01 5.849584e-01 7.311979e-01 setrgbcolor -fill -grestore -newpath -6.540185e+01 3.113913e+00 moveto -6.53018e+01 3.274711e+00 lineto -6.560792e+01 3.294537e+00 lineto -6.580945e+01 3.140312e+00 lineto -6.540185e+01 3.113913e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.550151e+01 2.993721e+00 moveto -6.540185e+01 3.113913e+00 lineto -6.580945e+01 3.140312e+00 lineto -6.601021e+01 3.026666e+00 lineto -6.550151e+01 2.993721e+00 lineto -closepath -gsave -5.781085e-01 5.781085e-01 7.226356e-01 setrgbcolor -fill -grestore -newpath -6.550151e+01 2.993721e+00 moveto -6.540185e+01 3.113913e+00 lineto -6.580945e+01 3.140312e+00 lineto -6.601021e+01 3.026666e+00 lineto -6.550151e+01 2.993721e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.56007e+01 2.914247e+00 moveto -6.550151e+01 2.993721e+00 lineto -6.601021e+01 3.026666e+00 lineto -6.621001e+01 2.953708e+00 lineto -6.56007e+01 2.914247e+00 lineto -closepath -gsave -5.71281e-01 5.71281e-01 7.141013e-01 setrgbcolor -fill -grestore -newpath -6.56007e+01 2.914247e+00 moveto -6.550151e+01 2.993721e+00 lineto -6.601021e+01 3.026666e+00 lineto -6.621001e+01 2.953708e+00 lineto -6.56007e+01 2.914247e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.569933e+01 2.875567e+00 moveto -6.56007e+01 2.914247e+00 lineto -6.621001e+01 2.953708e+00 lineto -6.640867e+01 2.921507e+00 lineto -6.569933e+01 2.875567e+00 lineto -closepath -gsave -5.644881e-01 5.644881e-01 7.056101e-01 setrgbcolor -fill -grestore -newpath -6.569933e+01 2.875567e+00 moveto -6.56007e+01 2.914247e+00 lineto -6.621001e+01 2.953708e+00 lineto -6.640867e+01 2.921507e+00 lineto -6.569933e+01 2.875567e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.579729e+01 2.877717e+00 moveto -6.569933e+01 2.875567e+00 lineto -6.640867e+01 2.921507e+00 lineto -6.660599e+01 2.930093e+00 lineto -6.579729e+01 2.877717e+00 lineto -closepath -gsave -5.577416e-01 5.577416e-01 6.97177e-01 setrgbcolor -fill -grestore -newpath -6.579729e+01 2.877717e+00 moveto -6.569933e+01 2.875567e+00 lineto -6.640867e+01 2.921507e+00 lineto -6.660599e+01 2.930093e+00 lineto -6.579729e+01 2.877717e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.520334e+01 3.724105e+00 moveto -6.500066e+01 3.999042e+00 lineto -6.500099e+01 3.999069e+00 lineto -6.530448e+01 3.732561e+00 lineto -6.520334e+01 3.724105e+00 lineto -closepath -gsave -6.053822e-01 6.053822e-01 7.567278e-01 setrgbcolor -fill -grestore -newpath -6.520334e+01 3.724105e+00 moveto -6.500066e+01 3.999042e+00 lineto -6.500099e+01 3.999069e+00 lineto -6.530448e+01 3.732561e+00 lineto -6.520334e+01 3.724105e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.540582e+01 3.489196e+00 moveto -6.520334e+01 3.724105e+00 lineto -6.530448e+01 3.732561e+00 lineto -6.560768e+01 3.506072e+00 lineto -6.540582e+01 3.489196e+00 lineto -closepath -gsave -5.982622e-01 5.982622e-01 7.478278e-01 setrgbcolor -fill -grestore -newpath -6.540582e+01 3.489196e+00 moveto -6.520334e+01 3.724105e+00 lineto -6.530448e+01 3.732561e+00 lineto -6.560768e+01 3.506072e+00 lineto -6.540582e+01 3.489196e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.560792e+01 3.294537e+00 moveto -6.540582e+01 3.489196e+00 lineto -6.560768e+01 3.506072e+00 lineto -6.59103e+01 3.319817e+00 lineto -6.560792e+01 3.294537e+00 lineto -closepath -gsave -5.911329e-01 5.911329e-01 7.389161e-01 setrgbcolor -fill -grestore -newpath -6.560792e+01 3.294537e+00 moveto -6.540582e+01 3.489196e+00 lineto -6.560768e+01 3.506072e+00 lineto -6.59103e+01 3.319817e+00 lineto -6.560792e+01 3.294537e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.580945e+01 3.140312e+00 moveto -6.560792e+01 3.294537e+00 lineto -6.59103e+01 3.319817e+00 lineto -6.621206e+01 3.173972e+00 lineto -6.580945e+01 3.140312e+00 lineto -closepath -gsave -5.84007e-01 5.84007e-01 7.300088e-01 setrgbcolor -fill -grestore -newpath -6.580945e+01 3.140312e+00 moveto -6.560792e+01 3.294537e+00 lineto -6.59103e+01 3.319817e+00 lineto -6.621206e+01 3.173972e+00 lineto -6.580945e+01 3.140312e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.601021e+01 3.026666e+00 moveto -6.580945e+01 3.140312e+00 lineto -6.621206e+01 3.173972e+00 lineto -6.651268e+01 3.068675e+00 lineto -6.601021e+01 3.026666e+00 lineto -closepath -gsave -5.768975e-01 5.768975e-01 7.211219e-01 setrgbcolor -fill -grestore -newpath -6.601021e+01 3.026666e+00 moveto -6.580945e+01 3.140312e+00 lineto -6.621206e+01 3.173972e+00 lineto -6.651268e+01 3.068675e+00 lineto -6.601021e+01 3.026666e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.621001e+01 2.953708e+00 moveto -6.601021e+01 3.026666e+00 lineto -6.651268e+01 3.068675e+00 lineto -6.681186e+01 3.004026e+00 lineto -6.621001e+01 2.953708e+00 lineto -closepath -gsave -5.698173e-01 5.698173e-01 7.122716e-01 setrgbcolor -fill -grestore -newpath -6.621001e+01 2.953708e+00 moveto -6.601021e+01 3.026666e+00 lineto -6.651268e+01 3.068675e+00 lineto -6.681186e+01 3.004026e+00 lineto -6.621001e+01 2.953708e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.640867e+01 2.921507e+00 moveto -6.621001e+01 2.953708e+00 lineto -6.681186e+01 3.004026e+00 lineto -6.710933e+01 2.980086e+00 lineto -6.640867e+01 2.921507e+00 lineto -closepath -gsave -5.627792e-01 5.627792e-01 7.03474e-01 setrgbcolor -fill -grestore -newpath -6.640867e+01 2.921507e+00 moveto -6.621001e+01 2.953708e+00 lineto -6.681186e+01 3.004026e+00 lineto -6.710933e+01 2.980086e+00 lineto -6.640867e+01 2.921507e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.660599e+01 2.930093e+00 moveto -6.640867e+01 2.921507e+00 lineto -6.710933e+01 2.980086e+00 lineto -6.74048e+01 2.996878e+00 lineto -6.660599e+01 2.930093e+00 lineto -closepath -gsave -5.55796e-01 5.55796e-01 6.94745e-01 setrgbcolor -fill -grestore -newpath -6.660599e+01 2.930093e+00 moveto -6.640867e+01 2.921507e+00 lineto -6.710933e+01 2.980086e+00 lineto -6.74048e+01 2.996878e+00 lineto -6.660599e+01 2.930093e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.530448e+01 3.732561e+00 moveto -6.500099e+01 3.999069e+00 lineto -6.500131e+01 3.999102e+00 lineto -6.540374e+01 3.742789e+00 lineto -6.530448e+01 3.732561e+00 lineto -closepath -gsave -6.052644e-01 6.052644e-01 7.565805e-01 setrgbcolor -fill -grestore -newpath -6.530448e+01 3.732561e+00 moveto -6.500099e+01 3.999069e+00 lineto -6.500131e+01 3.999102e+00 lineto -6.540374e+01 3.742789e+00 lineto -6.530448e+01 3.732561e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.560768e+01 3.506072e+00 moveto -6.530448e+01 3.732561e+00 lineto -6.540374e+01 3.742789e+00 lineto -6.580578e+01 3.526485e+00 lineto -6.560768e+01 3.506072e+00 lineto -closepath -gsave -5.979126e-01 5.979126e-01 7.473908e-01 setrgbcolor -fill -grestore -newpath -6.560768e+01 3.506072e+00 moveto -6.530448e+01 3.732561e+00 lineto -6.540374e+01 3.742789e+00 lineto -6.580578e+01 3.526485e+00 lineto -6.560768e+01 3.506072e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.59103e+01 3.319817e+00 moveto -6.560768e+01 3.506072e+00 lineto -6.580578e+01 3.526485e+00 lineto -6.620706e+01 3.350396e+00 lineto -6.59103e+01 3.319817e+00 lineto -closepath -gsave -5.905553e-01 5.905553e-01 7.381941e-01 setrgbcolor -fill -grestore -newpath -6.59103e+01 3.319817e+00 moveto -6.560768e+01 3.506072e+00 lineto -6.580578e+01 3.526485e+00 lineto -6.620706e+01 3.350396e+00 lineto -6.59103e+01 3.319817e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.621206e+01 3.173972e+00 moveto -6.59103e+01 3.319817e+00 lineto -6.620706e+01 3.350396e+00 lineto -6.66072e+01 3.214688e+00 lineto -6.621206e+01 3.173972e+00 lineto -closepath -gsave -5.832059e-01 5.832059e-01 7.290074e-01 setrgbcolor -fill -grestore -newpath -6.621206e+01 3.173972e+00 moveto -6.59103e+01 3.319817e+00 lineto -6.620706e+01 3.350396e+00 lineto -6.66072e+01 3.214688e+00 lineto -6.621206e+01 3.173972e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.651268e+01 3.068675e+00 moveto -6.621206e+01 3.173972e+00 lineto -6.66072e+01 3.214688e+00 lineto -6.700582e+01 3.119489e+00 lineto -6.651268e+01 3.068675e+00 lineto -closepath -gsave -5.758782e-01 5.758782e-01 7.198477e-01 setrgbcolor -fill -grestore -newpath -6.651268e+01 3.068675e+00 moveto -6.621206e+01 3.173972e+00 lineto -6.66072e+01 3.214688e+00 lineto -6.700582e+01 3.119489e+00 lineto -6.651268e+01 3.068675e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.681186e+01 3.004026e+00 moveto -6.651268e+01 3.068675e+00 lineto -6.700582e+01 3.119489e+00 lineto -6.740254e+01 3.06489e+00 lineto -6.681186e+01 3.004026e+00 lineto -closepath -gsave -5.685858e-01 5.685858e-01 7.107322e-01 setrgbcolor -fill -grestore -newpath -6.681186e+01 3.004026e+00 moveto -6.651268e+01 3.068675e+00 lineto -6.700582e+01 3.119489e+00 lineto -6.740254e+01 3.06489e+00 lineto -6.681186e+01 3.004026e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.710933e+01 2.980086e+00 moveto -6.681186e+01 3.004026e+00 lineto -6.740254e+01 3.06489e+00 lineto -6.779699e+01 3.050943e+00 lineto -6.710933e+01 2.980086e+00 lineto -closepath -gsave -5.613422e-01 5.613422e-01 7.016778e-01 setrgbcolor -fill -grestore -newpath -6.710933e+01 2.980086e+00 moveto -6.681186e+01 3.004026e+00 lineto -6.740254e+01 3.06489e+00 lineto -6.779699e+01 3.050943e+00 lineto -6.710933e+01 2.980086e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.74048e+01 2.996878e+00 moveto -6.710933e+01 2.980086e+00 lineto -6.779699e+01 3.050943e+00 lineto -6.818878e+01 3.07766e+00 lineto -6.74048e+01 2.996878e+00 lineto -closepath -gsave -5.54161e-01 5.54161e-01 6.927012e-01 setrgbcolor -fill -grestore -newpath -6.74048e+01 2.996878e+00 moveto -6.710933e+01 2.980086e+00 lineto -6.779699e+01 3.050943e+00 lineto -6.818878e+01 3.07766e+00 lineto -6.74048e+01 2.996878e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.540374e+01 3.742789e+00 moveto -6.500131e+01 3.999102e+00 lineto -6.500162e+01 3.999141e+00 lineto -6.550051e+01 3.754726e+00 lineto -6.540374e+01 3.742789e+00 lineto -closepath -gsave -6.051692e-01 6.051692e-01 7.564615e-01 setrgbcolor -fill -grestore -newpath -6.540374e+01 3.742789e+00 moveto -6.500131e+01 3.999102e+00 lineto -6.500162e+01 3.999141e+00 lineto -6.550051e+01 3.754726e+00 lineto -6.540374e+01 3.742789e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.580578e+01 3.526485e+00 moveto -6.540374e+01 3.742789e+00 lineto -6.550051e+01 3.754726e+00 lineto -6.599892e+01 3.55031e+00 lineto -6.580578e+01 3.526485e+00 lineto -closepath -gsave -5.976304e-01 5.976304e-01 7.47038e-01 setrgbcolor -fill -grestore -newpath -6.580578e+01 3.526485e+00 moveto -6.540374e+01 3.742789e+00 lineto -6.550051e+01 3.754726e+00 lineto -6.599892e+01 3.55031e+00 lineto -6.580578e+01 3.526485e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.620706e+01 3.350396e+00 moveto -6.580578e+01 3.526485e+00 lineto -6.599892e+01 3.55031e+00 lineto -6.649639e+01 3.386085e+00 lineto -6.620706e+01 3.350396e+00 lineto -closepath -gsave -5.900891e-01 5.900891e-01 7.376114e-01 setrgbcolor -fill -grestore -newpath -6.620706e+01 3.350396e+00 moveto -6.580578e+01 3.526485e+00 lineto -6.599892e+01 3.55031e+00 lineto -6.649639e+01 3.386085e+00 lineto -6.620706e+01 3.350396e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.66072e+01 3.214688e+00 moveto -6.620706e+01 3.350396e+00 lineto -6.649639e+01 3.386085e+00 lineto -6.699244e+01 3.262208e+00 lineto -6.66072e+01 3.214688e+00 lineto -closepath -gsave -5.825596e-01 5.825596e-01 7.281995e-01 setrgbcolor -fill -grestore -newpath -6.66072e+01 3.214688e+00 moveto -6.620706e+01 3.350396e+00 lineto -6.649639e+01 3.386085e+00 lineto -6.699244e+01 3.262208e+00 lineto -6.66072e+01 3.214688e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.700582e+01 3.119489e+00 moveto -6.66072e+01 3.214688e+00 lineto -6.699244e+01 3.262208e+00 lineto -6.74866e+01 3.178795e+00 lineto -6.700582e+01 3.119489e+00 lineto -closepath -gsave -5.750561e-01 5.750561e-01 7.188201e-01 setrgbcolor -fill -grestore -newpath -6.700582e+01 3.119489e+00 moveto -6.66072e+01 3.214688e+00 lineto -6.699244e+01 3.262208e+00 lineto -6.74866e+01 3.178795e+00 lineto -6.700582e+01 3.119489e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.740254e+01 3.06489e+00 moveto -6.700582e+01 3.119489e+00 lineto -6.74866e+01 3.178795e+00 lineto -6.797841e+01 3.135926e+00 lineto -6.740254e+01 3.06489e+00 lineto -closepath -gsave -5.675929e-01 5.675929e-01 7.094912e-01 setrgbcolor -fill -grestore -newpath -6.740254e+01 3.06489e+00 moveto -6.700582e+01 3.119489e+00 lineto -6.74866e+01 3.178795e+00 lineto -6.797841e+01 3.135926e+00 lineto -6.740254e+01 3.06489e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.779699e+01 3.050943e+00 moveto -6.740254e+01 3.06489e+00 lineto -6.797841e+01 3.135926e+00 lineto -6.84674e+01 3.13364e+00 lineto -6.779699e+01 3.050943e+00 lineto -closepath -gsave -5.601842e-01 5.601842e-01 7.002303e-01 setrgbcolor -fill -grestore -newpath -6.779699e+01 3.050943e+00 moveto -6.740254e+01 3.06489e+00 lineto -6.797841e+01 3.135926e+00 lineto -6.84674e+01 3.13364e+00 lineto -6.779699e+01 3.050943e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.818878e+01 3.07766e+00 moveto -6.779699e+01 3.050943e+00 lineto -6.84674e+01 3.13364e+00 lineto -6.89531e+01 3.171942e+00 lineto -6.818878e+01 3.07766e+00 lineto -closepath -gsave -5.528441e-01 5.528441e-01 6.910551e-01 setrgbcolor -fill -grestore -newpath -6.818878e+01 3.07766e+00 moveto -6.779699e+01 3.050943e+00 lineto -6.84674e+01 3.13364e+00 lineto -6.89531e+01 3.171942e+00 lineto -6.818878e+01 3.07766e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.550051e+01 3.754726e+00 moveto -6.500162e+01 3.999141e+00 lineto -6.500193e+01 3.999185e+00 lineto -6.559419e+01 3.768299e+00 lineto -6.550051e+01 3.754726e+00 lineto -closepath -gsave -6.050973e-01 6.050973e-01 7.563717e-01 setrgbcolor -fill -grestore -newpath -6.550051e+01 3.754726e+00 moveto -6.500162e+01 3.999141e+00 lineto -6.500193e+01 3.999185e+00 lineto -6.559419e+01 3.768299e+00 lineto -6.550051e+01 3.754726e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.599892e+01 3.55031e+00 moveto -6.550051e+01 3.754726e+00 lineto -6.559419e+01 3.768299e+00 lineto -6.61859e+01 3.577398e+00 lineto -6.599892e+01 3.55031e+00 lineto -closepath -gsave -5.974172e-01 5.974172e-01 7.467715e-01 setrgbcolor -fill -grestore -newpath -6.599892e+01 3.55031e+00 moveto -6.550051e+01 3.754726e+00 lineto -6.559419e+01 3.768299e+00 lineto -6.61859e+01 3.577398e+00 lineto -6.599892e+01 3.55031e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.649639e+01 3.386085e+00 moveto -6.599892e+01 3.55031e+00 lineto -6.61859e+01 3.577398e+00 lineto -6.677648e+01 3.426664e+00 lineto -6.649639e+01 3.386085e+00 lineto -closepath -gsave -5.897371e-01 5.897371e-01 7.371713e-01 setrgbcolor -fill -grestore -newpath -6.649639e+01 3.386085e+00 moveto -6.599892e+01 3.55031e+00 lineto -6.61859e+01 3.577398e+00 lineto -6.677648e+01 3.426664e+00 lineto -6.649639e+01 3.386085e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.699244e+01 3.262208e+00 moveto -6.649639e+01 3.386085e+00 lineto -6.677648e+01 3.426664e+00 lineto -6.736538e+01 3.316238e+00 lineto -6.699244e+01 3.262208e+00 lineto -closepath -gsave -5.820716e-01 5.820716e-01 7.275895e-01 setrgbcolor -fill -grestore -newpath -6.699244e+01 3.262208e+00 moveto -6.649639e+01 3.386085e+00 lineto -6.677648e+01 3.426664e+00 lineto -6.736538e+01 3.316238e+00 lineto -6.699244e+01 3.262208e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.74866e+01 3.178795e+00 moveto -6.699244e+01 3.262208e+00 lineto -6.736538e+01 3.316238e+00 lineto -6.795205e+01 3.246226e+00 lineto -6.74866e+01 3.178795e+00 lineto -closepath -gsave -5.744356e-01 5.744356e-01 7.180445e-01 setrgbcolor -fill -grestore -newpath -6.74866e+01 3.178795e+00 moveto -6.699244e+01 3.262208e+00 lineto -6.736538e+01 3.316238e+00 lineto -6.795205e+01 3.246226e+00 lineto -6.74866e+01 3.178795e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.797841e+01 3.135926e+00 moveto -6.74866e+01 3.178795e+00 lineto -6.795205e+01 3.246226e+00 lineto -6.853591e+01 3.216694e+00 lineto -6.797841e+01 3.135926e+00 lineto -closepath -gsave -5.668438e-01 5.668438e-01 7.085548e-01 setrgbcolor -fill -grestore -newpath -6.797841e+01 3.135926e+00 moveto -6.74866e+01 3.178795e+00 lineto -6.795205e+01 3.246226e+00 lineto -6.853591e+01 3.216694e+00 lineto -6.797841e+01 3.135926e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.84674e+01 3.13364e+00 moveto -6.797841e+01 3.135926e+00 lineto -6.853591e+01 3.216694e+00 lineto -6.911643e+01 3.227669e+00 lineto -6.84674e+01 3.13364e+00 lineto -closepath -gsave -5.593109e-01 5.593109e-01 6.991386e-01 setrgbcolor -fill -grestore -newpath -6.84674e+01 3.13364e+00 moveto -6.797841e+01 3.135926e+00 lineto -6.853591e+01 3.216694e+00 lineto -6.911643e+01 3.227669e+00 lineto -6.84674e+01 3.13364e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.89531e+01 3.171942e+00 moveto -6.84674e+01 3.13364e+00 lineto -6.911643e+01 3.227669e+00 lineto -6.969305e+01 3.279141e+00 lineto -6.89531e+01 3.171942e+00 lineto -closepath -gsave -5.518513e-01 5.518513e-01 6.898141e-01 setrgbcolor -fill -grestore -newpath -6.89531e+01 3.171942e+00 moveto -6.84674e+01 3.13364e+00 lineto -6.911643e+01 3.227669e+00 lineto -6.969305e+01 3.279141e+00 lineto -6.89531e+01 3.171942e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.559419e+01 3.768299e+00 moveto -6.500193e+01 3.999185e+00 lineto -6.500222e+01 3.999234e+00 lineto -6.568422e+01 3.783423e+00 lineto -6.559419e+01 3.768299e+00 lineto -closepath -gsave -6.050492e-01 6.050492e-01 7.563115e-01 setrgbcolor -fill -grestore -newpath -6.559419e+01 3.768299e+00 moveto -6.500193e+01 3.999185e+00 lineto -6.500222e+01 3.999234e+00 lineto -6.568422e+01 3.783423e+00 lineto -6.559419e+01 3.768299e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.61859e+01 3.577398e+00 moveto -6.559419e+01 3.768299e+00 lineto -6.568422e+01 3.783423e+00 lineto -6.636557e+01 3.607584e+00 lineto -6.61859e+01 3.577398e+00 lineto -closepath -gsave -5.972744e-01 5.972744e-01 7.46593e-01 setrgbcolor -fill -grestore -newpath -6.61859e+01 3.577398e+00 moveto -6.559419e+01 3.768299e+00 lineto -6.568422e+01 3.783423e+00 lineto -6.636557e+01 3.607584e+00 lineto -6.61859e+01 3.577398e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.677648e+01 3.426664e+00 moveto -6.61859e+01 3.577398e+00 lineto -6.636557e+01 3.607584e+00 lineto -6.704563e+01 3.471882e+00 lineto -6.677648e+01 3.426664e+00 lineto -closepath -gsave -5.895013e-01 5.895013e-01 7.368766e-01 setrgbcolor -fill -grestore -newpath -6.677648e+01 3.426664e+00 moveto -6.61859e+01 3.577398e+00 lineto -6.636557e+01 3.607584e+00 lineto -6.704563e+01 3.471882e+00 lineto -6.677648e+01 3.426664e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.736538e+01 3.316238e+00 moveto -6.677648e+01 3.426664e+00 lineto -6.704563e+01 3.471882e+00 lineto -6.772375e+01 3.376447e+00 lineto -6.736538e+01 3.316238e+00 lineto -closepath -gsave -5.817448e-01 5.817448e-01 7.27181e-01 setrgbcolor -fill -grestore -newpath -6.736538e+01 3.316238e+00 moveto -6.677648e+01 3.426664e+00 lineto -6.704563e+01 3.471882e+00 lineto -6.772375e+01 3.376447e+00 lineto -6.736538e+01 3.316238e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.795205e+01 3.246226e+00 moveto -6.736538e+01 3.316238e+00 lineto -6.772375e+01 3.376447e+00 lineto -6.839929e+01 3.321367e+00 lineto -6.795205e+01 3.246226e+00 lineto -closepath -gsave -5.740202e-01 5.740202e-01 7.175252e-01 setrgbcolor -fill -grestore -newpath -6.795205e+01 3.246226e+00 moveto -6.736538e+01 3.316238e+00 lineto -6.772375e+01 3.376447e+00 lineto -6.839929e+01 3.321367e+00 lineto -6.795205e+01 3.246226e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.853591e+01 3.216694e+00 moveto -6.795205e+01 3.246226e+00 lineto -6.839929e+01 3.321367e+00 lineto -6.907162e+01 3.306697e+00 lineto -6.853591e+01 3.216694e+00 lineto -closepath -gsave -5.663423e-01 5.663423e-01 7.079279e-01 setrgbcolor -fill -grestore -newpath -6.853591e+01 3.216694e+00 moveto -6.795205e+01 3.246226e+00 lineto -6.839929e+01 3.321367e+00 lineto -6.907162e+01 3.306697e+00 lineto -6.853591e+01 3.216694e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.911643e+01 3.227669e+00 moveto -6.853591e+01 3.216694e+00 lineto -6.907162e+01 3.306697e+00 lineto -6.974009e+01 3.332448e+00 lineto -6.911643e+01 3.227669e+00 lineto -closepath -gsave -5.587264e-01 5.587264e-01 6.984079e-01 setrgbcolor -fill -grestore -newpath -6.911643e+01 3.227669e+00 moveto -6.853591e+01 3.216694e+00 lineto -6.907162e+01 3.306697e+00 lineto -6.974009e+01 3.332448e+00 lineto -6.911643e+01 3.227669e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.969305e+01 3.279141e+00 moveto -6.911643e+01 3.227669e+00 lineto -6.974009e+01 3.332448e+00 lineto -7.040407e+01 3.398598e+00 lineto -6.969305e+01 3.279141e+00 lineto -closepath -gsave -5.51187e-01 5.51187e-01 6.889837e-01 setrgbcolor -fill -grestore -newpath -6.969305e+01 3.279141e+00 moveto -6.911643e+01 3.227669e+00 lineto -6.974009e+01 3.332448e+00 lineto -7.040407e+01 3.398598e+00 lineto -6.969305e+01 3.279141e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.026523e+01 3.371062e+00 moveto -6.969305e+01 3.279141e+00 lineto -7.040407e+01 3.398598e+00 lineto -7.106293e+01 3.505083e+00 lineto -7.026523e+01 3.371062e+00 lineto -closepath -gsave -5.437388e-01 5.437388e-01 6.796734e-01 setrgbcolor -fill -grestore -newpath -7.026523e+01 3.371062e+00 moveto -6.969305e+01 3.279141e+00 lineto -7.040407e+01 3.398598e+00 lineto -7.106293e+01 3.505083e+00 lineto -7.026523e+01 3.371062e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.568422e+01 3.783423e+00 moveto -6.500222e+01 3.999234e+00 lineto -6.500249e+01 3.999287e+00 lineto -6.577002e+01 3.800007e+00 lineto -6.568422e+01 3.783423e+00 lineto -closepath -gsave -6.05025e-01 6.05025e-01 7.562813e-01 setrgbcolor -fill -grestore -newpath -6.568422e+01 3.783423e+00 moveto -6.500222e+01 3.999234e+00 lineto -6.500249e+01 3.999287e+00 lineto -6.577002e+01 3.800007e+00 lineto -6.568422e+01 3.783423e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.636557e+01 3.607584e+00 moveto -6.568422e+01 3.783423e+00 lineto -6.577002e+01 3.800007e+00 lineto -6.653682e+01 3.640681e+00 lineto -6.636557e+01 3.607584e+00 lineto -closepath -gsave -5.972028e-01 5.972028e-01 7.465035e-01 setrgbcolor -fill -grestore -newpath -6.636557e+01 3.607584e+00 moveto -6.568422e+01 3.783423e+00 lineto -6.577002e+01 3.800007e+00 lineto -6.653682e+01 3.640681e+00 lineto -6.636557e+01 3.607584e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.704563e+01 3.471882e+00 moveto -6.636557e+01 3.607584e+00 lineto -6.653682e+01 3.640681e+00 lineto -6.730216e+01 3.521462e+00 lineto -6.704563e+01 3.471882e+00 lineto -closepath -gsave -5.89383e-01 5.89383e-01 7.367288e-01 setrgbcolor -fill -grestore -newpath -6.704563e+01 3.471882e+00 moveto -6.636557e+01 3.607584e+00 lineto -6.653682e+01 3.640681e+00 lineto -6.730216e+01 3.521462e+00 lineto -6.704563e+01 3.471882e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.772375e+01 3.376447e+00 moveto -6.704563e+01 3.471882e+00 lineto -6.730216e+01 3.521462e+00 lineto -6.806532e+01 3.442462e+00 lineto -6.772375e+01 3.376447e+00 lineto -closepath -gsave -5.815809e-01 5.815809e-01 7.269762e-01 setrgbcolor -fill -grestore -newpath -6.772375e+01 3.376447e+00 moveto -6.704563e+01 3.471882e+00 lineto -6.730216e+01 3.521462e+00 lineto -6.806532e+01 3.442462e+00 lineto -6.772375e+01 3.376447e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.839929e+01 3.321367e+00 moveto -6.772375e+01 3.376447e+00 lineto -6.806532e+01 3.442462e+00 lineto -6.882558e+01 3.403756e+00 lineto -6.839929e+01 3.321367e+00 lineto -closepath -gsave -5.738119e-01 5.738119e-01 7.172648e-01 setrgbcolor -fill -grestore -newpath -6.839929e+01 3.321367e+00 moveto -6.772375e+01 3.376447e+00 lineto -6.806532e+01 3.442462e+00 lineto -6.882558e+01 3.403756e+00 lineto -6.839929e+01 3.321367e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.907162e+01 3.306697e+00 moveto -6.839929e+01 3.321367e+00 lineto -6.882558e+01 3.403756e+00 lineto -6.958222e+01 3.40538e+00 lineto -6.907162e+01 3.306697e+00 lineto -closepath -gsave -5.66091e-01 5.66091e-01 7.076137e-01 setrgbcolor -fill -grestore -newpath -6.907162e+01 3.306697e+00 moveto -6.839929e+01 3.321367e+00 lineto -6.882558e+01 3.403756e+00 lineto -6.958222e+01 3.40538e+00 lineto -6.907162e+01 3.306697e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.974009e+01 3.332448e+00 moveto -6.907162e+01 3.306697e+00 lineto -6.958222e+01 3.40538e+00 lineto -7.033452e+01 3.447333e+00 lineto -6.974009e+01 3.332448e+00 lineto -closepath -gsave -5.584334e-01 5.584334e-01 6.980417e-01 setrgbcolor -fill -grestore -newpath -6.974009e+01 3.332448e+00 moveto -6.907162e+01 3.306697e+00 lineto -6.958222e+01 3.40538e+00 lineto -7.033452e+01 3.447333e+00 lineto -6.974009e+01 3.332448e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.040407e+01 3.398598e+00 moveto -6.974009e+01 3.332448e+00 lineto -7.033452e+01 3.447333e+00 lineto -7.108176e+01 3.529576e+00 lineto -7.040407e+01 3.398598e+00 lineto -closepath -gsave -5.508541e-01 5.508541e-01 6.885676e-01 setrgbcolor -fill -grestore -newpath -7.040407e+01 3.398598e+00 moveto -6.974009e+01 3.332448e+00 lineto -7.033452e+01 3.447333e+00 lineto -7.108176e+01 3.529576e+00 lineto -7.040407e+01 3.398598e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.106293e+01 3.505083e+00 moveto -7.040407e+01 3.398598e+00 lineto -7.108176e+01 3.529576e+00 lineto -7.182325e+01 3.65203e+00 lineto -7.106293e+01 3.505083e+00 lineto -closepath -gsave -5.433678e-01 5.433678e-01 6.792097e-01 setrgbcolor -fill -grestore -newpath -7.106293e+01 3.505083e+00 moveto -7.040407e+01 3.398598e+00 lineto -7.108176e+01 3.529576e+00 lineto -7.182325e+01 3.65203e+00 lineto -7.106293e+01 3.505083e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.577002e+01 3.800007e+00 moveto -6.500249e+01 3.999287e+00 lineto -6.500276e+01 3.999346e+00 lineto -6.585108e+01 3.817946e+00 lineto -6.577002e+01 3.800007e+00 lineto -closepath -gsave -6.05025e-01 6.05025e-01 7.562813e-01 setrgbcolor -fill -grestore -newpath -6.577002e+01 3.800007e+00 moveto -6.500249e+01 3.999287e+00 lineto -6.500276e+01 3.999346e+00 lineto -6.585108e+01 3.817946e+00 lineto -6.577002e+01 3.800007e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.653682e+01 3.640681e+00 moveto -6.577002e+01 3.800007e+00 lineto -6.585108e+01 3.817946e+00 lineto -6.669859e+01 3.676485e+00 lineto -6.653682e+01 3.640681e+00 lineto -closepath -gsave -5.972028e-01 5.972028e-01 7.465035e-01 setrgbcolor -fill -grestore -newpath -6.653682e+01 3.640681e+00 moveto -6.577002e+01 3.800007e+00 lineto -6.585108e+01 3.817946e+00 lineto -6.669859e+01 3.676485e+00 lineto -6.653682e+01 3.640681e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.730216e+01 3.521462e+00 moveto -6.653682e+01 3.640681e+00 lineto -6.669859e+01 3.676485e+00 lineto -6.75445e+01 3.575097e+00 lineto -6.730216e+01 3.521462e+00 lineto -closepath -gsave -5.89383e-01 5.89383e-01 7.367288e-01 setrgbcolor -fill -grestore -newpath -6.730216e+01 3.521462e+00 moveto -6.653682e+01 3.640681e+00 lineto -6.669859e+01 3.676485e+00 lineto -6.75445e+01 3.575097e+00 lineto -6.730216e+01 3.521462e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.806532e+01 3.442462e+00 moveto -6.730216e+01 3.521462e+00 lineto -6.75445e+01 3.575097e+00 lineto -6.838799e+01 3.513877e+00 lineto -6.806532e+01 3.442462e+00 lineto -closepath -gsave -5.815809e-01 5.815809e-01 7.269762e-01 setrgbcolor -fill -grestore -newpath -6.806532e+01 3.442462e+00 moveto -6.730216e+01 3.521462e+00 lineto -6.75445e+01 3.575097e+00 lineto -6.838799e+01 3.513877e+00 lineto -6.806532e+01 3.442462e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.882558e+01 3.403756e+00 moveto -6.806532e+01 3.442462e+00 lineto -6.838799e+01 3.513877e+00 lineto -6.922828e+01 3.492883e+00 lineto -6.882558e+01 3.403756e+00 lineto -closepath -gsave -5.738119e-01 5.738119e-01 7.172648e-01 setrgbcolor -fill -grestore -newpath -6.882558e+01 3.403756e+00 moveto -6.806532e+01 3.442462e+00 lineto -6.838799e+01 3.513877e+00 lineto -6.922828e+01 3.492883e+00 lineto -6.882558e+01 3.403756e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.958222e+01 3.40538e+00 moveto -6.882558e+01 3.403756e+00 lineto -6.922828e+01 3.492883e+00 lineto -7.006457e+01 3.512135e+00 lineto -6.958222e+01 3.40538e+00 lineto -closepath -gsave -5.66091e-01 5.66091e-01 7.076137e-01 setrgbcolor -fill -grestore -newpath -6.958222e+01 3.40538e+00 moveto -6.882558e+01 3.403756e+00 lineto -6.922828e+01 3.492883e+00 lineto -7.006457e+01 3.512135e+00 lineto -6.958222e+01 3.40538e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.033452e+01 3.447333e+00 moveto -6.958222e+01 3.40538e+00 lineto -7.006457e+01 3.512135e+00 lineto -7.089606e+01 3.571615e+00 lineto -7.033452e+01 3.447333e+00 lineto -closepath -gsave -5.584334e-01 5.584334e-01 6.980417e-01 setrgbcolor -fill -grestore -newpath -7.033452e+01 3.447333e+00 moveto -6.958222e+01 3.40538e+00 lineto -7.006457e+01 3.512135e+00 lineto -7.089606e+01 3.571615e+00 lineto -7.033452e+01 3.447333e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.108176e+01 3.529576e+00 moveto -7.033452e+01 3.447333e+00 lineto -7.089606e+01 3.571615e+00 lineto -7.172196e+01 3.671267e+00 lineto -7.108176e+01 3.529576e+00 lineto -closepath -gsave -5.508541e-01 5.508541e-01 6.885676e-01 setrgbcolor -fill -grestore -newpath -7.108176e+01 3.529576e+00 moveto -7.033452e+01 3.447333e+00 lineto -7.089606e+01 3.571615e+00 lineto -7.172196e+01 3.671267e+00 lineto -7.108176e+01 3.529576e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.182325e+01 3.65203e+00 moveto -7.108176e+01 3.529576e+00 lineto -7.172196e+01 3.671267e+00 lineto -7.254151e+01 3.810995e+00 lineto -7.182325e+01 3.65203e+00 lineto -closepath -gsave -5.433678e-01 5.433678e-01 6.792097e-01 setrgbcolor -fill -grestore -newpath -7.182325e+01 3.65203e+00 moveto -7.108176e+01 3.529576e+00 lineto -7.172196e+01 3.671267e+00 lineto -7.254151e+01 3.810995e+00 lineto -7.182325e+01 3.65203e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.255828e+01 3.814579e+00 moveto -7.182325e+01 3.65203e+00 lineto -7.254151e+01 3.810995e+00 lineto -7.335391e+01 3.990669e+00 lineto -7.255828e+01 3.814579e+00 lineto -closepath -gsave -5.359888e-01 5.359888e-01 6.69986e-01 setrgbcolor -fill -grestore -newpath -7.255828e+01 3.814579e+00 moveto -7.182325e+01 3.65203e+00 lineto -7.254151e+01 3.810995e+00 lineto -7.335391e+01 3.990669e+00 lineto -7.255828e+01 3.814579e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.585108e+01 3.817946e+00 moveto -6.500276e+01 3.999346e+00 lineto -6.5003e+01 3.999408e+00 lineto -6.592689e+01 3.837132e+00 lineto -6.585108e+01 3.817946e+00 lineto -closepath -gsave -6.050492e-01 6.050492e-01 7.563115e-01 setrgbcolor -fill -grestore -newpath -6.585108e+01 3.817946e+00 moveto -6.500276e+01 3.999346e+00 lineto -6.5003e+01 3.999408e+00 lineto -6.592689e+01 3.837132e+00 lineto -6.585108e+01 3.817946e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.669859e+01 3.676485e+00 moveto -6.585108e+01 3.817946e+00 lineto -6.592689e+01 3.837132e+00 lineto -6.684989e+01 3.714776e+00 lineto -6.669859e+01 3.676485e+00 lineto -closepath -gsave -5.972744e-01 5.972744e-01 7.46593e-01 setrgbcolor -fill -grestore -newpath -6.669859e+01 3.676485e+00 moveto -6.585108e+01 3.817946e+00 lineto -6.592689e+01 3.837132e+00 lineto -6.684989e+01 3.714776e+00 lineto -6.669859e+01 3.676485e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.75445e+01 3.575097e+00 moveto -6.669859e+01 3.676485e+00 lineto -6.684989e+01 3.714776e+00 lineto -6.777115e+01 3.632456e+00 lineto -6.75445e+01 3.575097e+00 lineto -closepath -gsave -5.895013e-01 5.895013e-01 7.368766e-01 setrgbcolor -fill -grestore -newpath -6.75445e+01 3.575097e+00 moveto -6.669859e+01 3.676485e+00 lineto -6.684989e+01 3.714776e+00 lineto -6.777115e+01 3.632456e+00 lineto -6.75445e+01 3.575097e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.838799e+01 3.513877e+00 moveto -6.75445e+01 3.575097e+00 lineto -6.777115e+01 3.632456e+00 lineto -6.868978e+01 3.590251e+00 lineto -6.838799e+01 3.513877e+00 lineto -closepath -gsave -5.817448e-01 5.817448e-01 7.27181e-01 setrgbcolor -fill -grestore -newpath -6.838799e+01 3.513877e+00 moveto -6.75445e+01 3.575097e+00 lineto -6.777115e+01 3.632456e+00 lineto -6.868978e+01 3.590251e+00 lineto -6.838799e+01 3.513877e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.922828e+01 3.492883e+00 moveto -6.838799e+01 3.513877e+00 lineto -6.868978e+01 3.590251e+00 lineto -6.960491e+01 3.588199e+00 lineto -6.922828e+01 3.492883e+00 lineto -closepath -gsave -5.740202e-01 5.740202e-01 7.175252e-01 setrgbcolor -fill -grestore -newpath -6.922828e+01 3.492883e+00 moveto -6.838799e+01 3.513877e+00 lineto -6.868978e+01 3.590251e+00 lineto -6.960491e+01 3.588199e+00 lineto -6.922828e+01 3.492883e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.006457e+01 3.512135e+00 moveto -6.922828e+01 3.492883e+00 lineto -6.960491e+01 3.588199e+00 lineto -7.051569e+01 3.626303e+00 lineto -7.006457e+01 3.512135e+00 lineto -closepath -gsave -5.663423e-01 5.663423e-01 7.079279e-01 setrgbcolor -fill -grestore -newpath -7.006457e+01 3.512135e+00 moveto -6.922828e+01 3.492883e+00 lineto -6.960491e+01 3.588199e+00 lineto -7.051569e+01 3.626303e+00 lineto -7.006457e+01 3.512135e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.089606e+01 3.571615e+00 moveto -7.006457e+01 3.512135e+00 lineto -7.051569e+01 3.626303e+00 lineto -7.142125e+01 3.704527e+00 lineto -7.089606e+01 3.571615e+00 lineto -closepath -gsave -5.587264e-01 5.587264e-01 6.984079e-01 setrgbcolor -fill -grestore -newpath -7.089606e+01 3.571615e+00 moveto -7.006457e+01 3.512135e+00 lineto -7.051569e+01 3.626303e+00 lineto -7.142125e+01 3.704527e+00 lineto -7.089606e+01 3.571615e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.172196e+01 3.671267e+00 moveto -7.089606e+01 3.571615e+00 lineto -7.142125e+01 3.704527e+00 lineto -7.232072e+01 3.822797e+00 lineto -7.172196e+01 3.671267e+00 lineto -closepath -gsave -5.51187e-01 5.51187e-01 6.889837e-01 setrgbcolor -fill -grestore -newpath -7.172196e+01 3.671267e+00 moveto -7.089606e+01 3.571615e+00 lineto -7.142125e+01 3.704527e+00 lineto -7.232072e+01 3.822797e+00 lineto -7.172196e+01 3.671267e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.254151e+01 3.810995e+00 moveto -7.172196e+01 3.671267e+00 lineto -7.232072e+01 3.822797e+00 lineto -7.321327e+01 3.981e+00 lineto -7.254151e+01 3.810995e+00 lineto -closepath -gsave -5.437388e-01 5.437388e-01 6.796734e-01 setrgbcolor -fill -grestore -newpath -7.254151e+01 3.810995e+00 moveto -7.172196e+01 3.671267e+00 lineto -7.232072e+01 3.822797e+00 lineto -7.321327e+01 3.981e+00 lineto -7.254151e+01 3.810995e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.335391e+01 3.990669e+00 moveto -7.254151e+01 3.810995e+00 lineto -7.321327e+01 3.981e+00 lineto -7.409803e+01 4.178988e+00 lineto -7.335391e+01 3.990669e+00 lineto -closepath -gsave -5.363959e-01 5.363959e-01 6.704949e-01 setrgbcolor -fill -grestore -newpath -7.335391e+01 3.990669e+00 moveto -7.254151e+01 3.810995e+00 lineto -7.321327e+01 3.981e+00 lineto -7.409803e+01 4.178988e+00 lineto -7.335391e+01 3.990669e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.592689e+01 3.837132e+00 moveto -6.5003e+01 3.999408e+00 lineto -6.500323e+01 3.999474e+00 lineto -6.599698e+01 3.857445e+00 lineto -6.592689e+01 3.837132e+00 lineto -closepath -gsave -6.050973e-01 6.050973e-01 7.563717e-01 setrgbcolor -fill -grestore -newpath -6.592689e+01 3.837132e+00 moveto -6.5003e+01 3.999408e+00 lineto -6.500323e+01 3.999474e+00 lineto -6.599698e+01 3.857445e+00 lineto -6.592689e+01 3.837132e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.684989e+01 3.714776e+00 moveto -6.592689e+01 3.837132e+00 lineto -6.599698e+01 3.857445e+00 lineto -6.698979e+01 3.755317e+00 lineto -6.684989e+01 3.714776e+00 lineto -closepath -gsave -5.974172e-01 5.974172e-01 7.467715e-01 setrgbcolor -fill -grestore -newpath -6.684989e+01 3.714776e+00 moveto -6.592689e+01 3.837132e+00 lineto -6.599698e+01 3.857445e+00 lineto -6.698979e+01 3.755317e+00 lineto -6.684989e+01 3.714776e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.777115e+01 3.632456e+00 moveto -6.684989e+01 3.714776e+00 lineto -6.698979e+01 3.755317e+00 lineto -6.798071e+01 3.693187e+00 lineto -6.777115e+01 3.632456e+00 lineto -closepath -gsave -5.897371e-01 5.897371e-01 7.371713e-01 setrgbcolor -fill -grestore -newpath -6.777115e+01 3.632456e+00 moveto -6.684989e+01 3.714776e+00 lineto -6.698979e+01 3.755317e+00 lineto -6.798071e+01 3.693187e+00 lineto -6.777115e+01 3.632456e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.868978e+01 3.590251e+00 moveto -6.777115e+01 3.632456e+00 lineto -6.798071e+01 3.693187e+00 lineto -6.896881e+01 3.671113e+00 lineto -6.868978e+01 3.590251e+00 lineto -closepath -gsave -5.820716e-01 5.820716e-01 7.275895e-01 setrgbcolor -fill -grestore -newpath -6.868978e+01 3.590251e+00 moveto -6.777115e+01 3.632456e+00 lineto -6.798071e+01 3.693187e+00 lineto -6.896881e+01 3.671113e+00 lineto -6.868978e+01 3.590251e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.960491e+01 3.588199e+00 moveto -6.868978e+01 3.590251e+00 lineto -6.896881e+01 3.671113e+00 lineto -6.995316e+01 3.689117e+00 lineto -6.960491e+01 3.588199e+00 lineto -closepath -gsave -5.744356e-01 5.744356e-01 7.180445e-01 setrgbcolor -fill -grestore -newpath -6.960491e+01 3.588199e+00 moveto -6.868978e+01 3.590251e+00 lineto -6.896881e+01 3.671113e+00 lineto -6.995316e+01 3.689117e+00 lineto -6.960491e+01 3.588199e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.051569e+01 3.626303e+00 moveto -6.960491e+01 3.588199e+00 lineto -6.995316e+01 3.689117e+00 lineto -7.093281e+01 3.747181e+00 lineto -7.051569e+01 3.626303e+00 lineto -closepath -gsave -5.668438e-01 5.668438e-01 7.085548e-01 setrgbcolor -fill -grestore -newpath -7.051569e+01 3.626303e+00 moveto -6.960491e+01 3.588199e+00 lineto -6.995316e+01 3.689117e+00 lineto -7.093281e+01 3.747181e+00 lineto -7.051569e+01 3.626303e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.142125e+01 3.704527e+00 moveto -7.051569e+01 3.626303e+00 lineto -7.093281e+01 3.747181e+00 lineto -7.190685e+01 3.845251e+00 lineto -7.142125e+01 3.704527e+00 lineto -closepath -gsave -5.593109e-01 5.593109e-01 6.991386e-01 setrgbcolor -fill -grestore -newpath -7.142125e+01 3.704527e+00 moveto -7.051569e+01 3.626303e+00 lineto -7.093281e+01 3.747181e+00 lineto -7.190685e+01 3.845251e+00 lineto -7.142125e+01 3.704527e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.232072e+01 3.822797e+00 moveto -7.142125e+01 3.704527e+00 lineto -7.190685e+01 3.845251e+00 lineto -7.287434e+01 3.983233e+00 lineto -7.232072e+01 3.822797e+00 lineto -closepath -gsave -5.518513e-01 5.518513e-01 6.898141e-01 setrgbcolor -fill -grestore -newpath -7.232072e+01 3.822797e+00 moveto -7.142125e+01 3.704527e+00 lineto -7.190685e+01 3.845251e+00 lineto -7.287434e+01 3.983233e+00 lineto -7.232072e+01 3.822797e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.321327e+01 3.981e+00 moveto -7.232072e+01 3.822797e+00 lineto -7.287434e+01 3.983233e+00 lineto -7.383439e+01 4.160997e+00 lineto -7.321327e+01 3.981e+00 lineto -closepath -gsave -5.444792e-01 5.444792e-01 6.80599e-01 setrgbcolor -fill -grestore -newpath -7.321327e+01 3.981e+00 moveto -7.232072e+01 3.822797e+00 lineto -7.287434e+01 3.983233e+00 lineto -7.383439e+01 4.160997e+00 lineto -7.321327e+01 3.981e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.409803e+01 4.178988e+00 moveto -7.321327e+01 3.981e+00 lineto -7.383439e+01 4.160997e+00 lineto -7.478606e+01 4.378374e+00 lineto -7.409803e+01 4.178988e+00 lineto -closepath -gsave -5.372087e-01 5.372087e-01 6.715109e-01 setrgbcolor -fill -grestore -newpath -7.409803e+01 4.178988e+00 moveto -7.321327e+01 3.981e+00 lineto -7.383439e+01 4.160997e+00 lineto -7.478606e+01 4.378374e+00 lineto -7.409803e+01 4.178988e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.497419e+01 4.416572e+00 moveto -7.409803e+01 4.178988e+00 lineto -7.478606e+01 4.378374e+00 lineto -7.572847e+01 4.635159e+00 lineto -7.497419e+01 4.416572e+00 lineto -closepath -gsave -5.300533e-01 5.300533e-01 6.625666e-01 setrgbcolor -fill -grestore -newpath -7.497419e+01 4.416572e+00 moveto -7.409803e+01 4.178988e+00 lineto -7.478606e+01 4.378374e+00 lineto -7.572847e+01 4.635159e+00 lineto -7.497419e+01 4.416572e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.599698e+01 3.857445e+00 moveto -6.500323e+01 3.999474e+00 lineto -6.500344e+01 3.999543e+00 lineto -6.606093e+01 3.87876e+00 lineto -6.599698e+01 3.857445e+00 lineto -closepath -gsave -6.051692e-01 6.051692e-01 7.564615e-01 setrgbcolor -fill -grestore -newpath -6.599698e+01 3.857445e+00 moveto -6.500323e+01 3.999474e+00 lineto -6.500344e+01 3.999543e+00 lineto -6.606093e+01 3.87876e+00 lineto -6.599698e+01 3.857445e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.698979e+01 3.755317e+00 moveto -6.599698e+01 3.857445e+00 lineto -6.606093e+01 3.87876e+00 lineto -6.711742e+01 3.797858e+00 lineto -6.698979e+01 3.755317e+00 lineto -closepath -gsave -5.976304e-01 5.976304e-01 7.47038e-01 setrgbcolor -fill -grestore -newpath -6.698979e+01 3.755317e+00 moveto -6.599698e+01 3.857445e+00 lineto -6.606093e+01 3.87876e+00 lineto -6.711742e+01 3.797858e+00 lineto -6.698979e+01 3.755317e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.798071e+01 3.693187e+00 moveto -6.698979e+01 3.755317e+00 lineto -6.711742e+01 3.797858e+00 lineto -6.81719e+01 3.756914e+00 lineto -6.798071e+01 3.693187e+00 lineto -closepath -gsave -5.900891e-01 5.900891e-01 7.376114e-01 setrgbcolor -fill -grestore -newpath -6.798071e+01 3.693187e+00 moveto -6.698979e+01 3.755317e+00 lineto -6.711742e+01 3.797858e+00 lineto -6.81719e+01 3.756914e+00 lineto -6.798071e+01 3.693187e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.896881e+01 3.671113e+00 moveto -6.798071e+01 3.693187e+00 lineto -6.81719e+01 3.756914e+00 lineto -6.922338e+01 3.755966e+00 lineto -6.896881e+01 3.671113e+00 lineto -closepath -gsave -5.825596e-01 5.825596e-01 7.281995e-01 setrgbcolor -fill -grestore -newpath -6.896881e+01 3.671113e+00 moveto -6.798071e+01 3.693187e+00 lineto -6.81719e+01 3.756914e+00 lineto -6.922338e+01 3.755966e+00 lineto -6.896881e+01 3.671113e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.995316e+01 3.689117e+00 moveto -6.896881e+01 3.671113e+00 lineto -6.922338e+01 3.755966e+00 lineto -7.027086e+01 3.795015e+00 lineto -6.995316e+01 3.689117e+00 lineto -closepath -gsave -5.750561e-01 5.750561e-01 7.188201e-01 setrgbcolor -fill -grestore -newpath -6.995316e+01 3.689117e+00 moveto -6.896881e+01 3.671113e+00 lineto -6.922338e+01 3.755966e+00 lineto -7.027086e+01 3.795015e+00 lineto -6.995316e+01 3.689117e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.093281e+01 3.747181e+00 moveto -6.995316e+01 3.689117e+00 lineto -7.027086e+01 3.795015e+00 lineto -7.131335e+01 3.874023e+00 lineto -7.093281e+01 3.747181e+00 lineto -closepath -gsave -5.675929e-01 5.675929e-01 7.094912e-01 setrgbcolor -fill -grestore -newpath -7.093281e+01 3.747181e+00 moveto -6.995316e+01 3.689117e+00 lineto -7.027086e+01 3.795015e+00 lineto -7.131335e+01 3.874023e+00 lineto -7.093281e+01 3.747181e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.190685e+01 3.845251e+00 moveto -7.093281e+01 3.747181e+00 lineto -7.131335e+01 3.874023e+00 lineto -7.234986e+01 3.992918e+00 lineto -7.190685e+01 3.845251e+00 lineto -closepath -gsave -5.601842e-01 5.601842e-01 7.002303e-01 setrgbcolor -fill -grestore -newpath -7.190685e+01 3.845251e+00 moveto -7.093281e+01 3.747181e+00 lineto -7.131335e+01 3.874023e+00 lineto -7.234986e+01 3.992918e+00 lineto -7.190685e+01 3.845251e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.287434e+01 3.983233e+00 moveto -7.190685e+01 3.845251e+00 lineto -7.234986e+01 3.992918e+00 lineto -7.337942e+01 4.151585e+00 lineto -7.287434e+01 3.983233e+00 lineto -closepath -gsave -5.528441e-01 5.528441e-01 6.910551e-01 setrgbcolor -fill -grestore -newpath -7.287434e+01 3.983233e+00 moveto -7.190685e+01 3.845251e+00 lineto -7.234986e+01 3.992918e+00 lineto -7.337942e+01 4.151585e+00 lineto -7.287434e+01 3.983233e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.383439e+01 4.160997e+00 moveto -7.287434e+01 3.983233e+00 lineto -7.337942e+01 4.151585e+00 lineto -7.440104e+01 4.349874e+00 lineto -7.383439e+01 4.160997e+00 lineto -closepath -gsave -5.455863e-01 5.455863e-01 6.819828e-01 setrgbcolor -fill -grestore -newpath -7.383439e+01 4.160997e+00 moveto -7.287434e+01 3.983233e+00 lineto -7.337942e+01 4.151585e+00 lineto -7.440104e+01 4.349874e+00 lineto -7.383439e+01 4.160997e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.478606e+01 4.378374e+00 moveto -7.383439e+01 4.160997e+00 lineto -7.440104e+01 4.349874e+00 lineto -7.541376e+01 4.587598e+00 lineto -7.478606e+01 4.378374e+00 lineto -closepath -gsave -5.384243e-01 5.384243e-01 6.730304e-01 setrgbcolor -fill -grestore -newpath -7.478606e+01 4.378374e+00 moveto -7.383439e+01 4.160997e+00 lineto -7.440104e+01 4.349874e+00 lineto -7.541376e+01 4.587598e+00 lineto -7.478606e+01 4.378374e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.572847e+01 4.635159e+00 moveto -7.478606e+01 4.378374e+00 lineto -7.541376e+01 4.587598e+00 lineto -7.641662e+01 4.864532e+00 lineto -7.572847e+01 4.635159e+00 lineto -closepath -gsave -5.313714e-01 5.313714e-01 6.642142e-01 setrgbcolor -fill -grestore -newpath -7.572847e+01 4.635159e+00 moveto -7.478606e+01 4.378374e+00 lineto -7.541376e+01 4.587598e+00 lineto -7.641662e+01 4.864532e+00 lineto -7.572847e+01 4.635159e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.666073e+01 4.931109e+00 moveto -7.572847e+01 4.635159e+00 lineto -7.641662e+01 4.864532e+00 lineto -7.740867e+01 5.180413e+00 lineto -7.666073e+01 4.931109e+00 lineto -closepath -gsave -5.244403e-01 5.244403e-01 6.555503e-01 setrgbcolor -fill -grestore -newpath -7.666073e+01 4.931109e+00 moveto -7.572847e+01 4.635159e+00 lineto -7.641662e+01 4.864532e+00 lineto -7.740867e+01 5.180413e+00 lineto -7.666073e+01 4.931109e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.606093e+01 3.87876e+00 moveto -6.500344e+01 3.999543e+00 lineto -6.500362e+01 3.999614e+00 lineto -6.611834e+01 3.900946e+00 lineto -6.606093e+01 3.87876e+00 lineto -closepath -gsave -6.052644e-01 6.052644e-01 7.565805e-01 setrgbcolor -fill -grestore -newpath -6.606093e+01 3.87876e+00 moveto -6.500344e+01 3.999543e+00 lineto -6.500362e+01 3.999614e+00 lineto -6.611834e+01 3.900946e+00 lineto -6.606093e+01 3.87876e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.711742e+01 3.797858e+00 moveto -6.606093e+01 3.87876e+00 lineto -6.611834e+01 3.900946e+00 lineto -6.723199e+01 3.842138e+00 lineto -6.711742e+01 3.797858e+00 lineto -closepath -gsave -5.979126e-01 5.979126e-01 7.473908e-01 setrgbcolor -fill -grestore -newpath -6.711742e+01 3.797858e+00 moveto -6.606093e+01 3.87876e+00 lineto -6.611834e+01 3.900946e+00 lineto -6.723199e+01 3.842138e+00 lineto -6.711742e+01 3.797858e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.81719e+01 3.756914e+00 moveto -6.711742e+01 3.797858e+00 lineto -6.723199e+01 3.842138e+00 lineto -6.834353e+01 3.823245e+00 lineto -6.81719e+01 3.756914e+00 lineto -closepath -gsave -5.905553e-01 5.905553e-01 7.381941e-01 setrgbcolor -fill -grestore -newpath -6.81719e+01 3.756914e+00 moveto -6.711742e+01 3.797858e+00 lineto -6.723199e+01 3.842138e+00 lineto -6.834353e+01 3.823245e+00 lineto -6.81719e+01 3.756914e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.922338e+01 3.755966e+00 moveto -6.81719e+01 3.756914e+00 lineto -6.834353e+01 3.823245e+00 lineto -6.945191e+01 3.844285e+00 lineto -6.922338e+01 3.755966e+00 lineto -closepath -gsave -5.832059e-01 5.832059e-01 7.290074e-01 setrgbcolor -fill -grestore -newpath -6.922338e+01 3.755966e+00 moveto -6.81719e+01 3.756914e+00 lineto -6.834353e+01 3.823245e+00 lineto -6.945191e+01 3.844285e+00 lineto -6.922338e+01 3.755966e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.027086e+01 3.795015e+00 moveto -6.922338e+01 3.755966e+00 lineto -6.945191e+01 3.844285e+00 lineto -7.055607e+01 3.905239e+00 lineto -7.027086e+01 3.795015e+00 lineto -closepath -gsave -5.758782e-01 5.758782e-01 7.198477e-01 setrgbcolor -fill -grestore -newpath -7.027086e+01 3.795015e+00 moveto -6.922338e+01 3.755966e+00 lineto -6.945191e+01 3.844285e+00 lineto -7.055607e+01 3.905239e+00 lineto -7.027086e+01 3.795015e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.131335e+01 3.874023e+00 moveto -7.027086e+01 3.795015e+00 lineto -7.055607e+01 3.905239e+00 lineto -7.165497e+01 4.006048e+00 lineto -7.131335e+01 3.874023e+00 lineto -closepath -gsave -5.685858e-01 5.685858e-01 7.107322e-01 setrgbcolor -fill -grestore -newpath -7.131335e+01 3.874023e+00 moveto -7.027086e+01 3.795015e+00 lineto -7.055607e+01 3.905239e+00 lineto -7.165497e+01 4.006048e+00 lineto -7.131335e+01 3.874023e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.234986e+01 3.992918e+00 moveto -7.131335e+01 3.874023e+00 lineto -7.165497e+01 4.006048e+00 lineto -7.274757e+01 4.146618e+00 lineto -7.234986e+01 3.992918e+00 lineto -closepath -gsave -5.613422e-01 5.613422e-01 7.016778e-01 setrgbcolor -fill -grestore -newpath -7.234986e+01 3.992918e+00 moveto -7.131335e+01 3.874023e+00 lineto -7.165497e+01 4.006048e+00 lineto -7.274757e+01 4.146618e+00 lineto -7.234986e+01 3.992918e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.337942e+01 4.151585e+00 moveto -7.234986e+01 3.992918e+00 lineto -7.274757e+01 4.146618e+00 lineto -7.383283e+01 4.326815e+00 lineto -7.337942e+01 4.151585e+00 lineto -closepath -gsave -5.54161e-01 5.54161e-01 6.927012e-01 setrgbcolor -fill -grestore -newpath -7.337942e+01 4.151585e+00 moveto -7.234986e+01 3.992918e+00 lineto -7.274757e+01 4.146618e+00 lineto -7.383283e+01 4.326815e+00 lineto -7.337942e+01 4.151585e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.440104e+01 4.349874e+00 moveto -7.337942e+01 4.151585e+00 lineto -7.383283e+01 4.326815e+00 lineto -7.490973e+01 4.546468e+00 lineto -7.440104e+01 4.349874e+00 lineto -closepath -gsave -5.470553e-01 5.470553e-01 6.838191e-01 setrgbcolor -fill -grestore -newpath -7.440104e+01 4.349874e+00 moveto -7.337942e+01 4.151585e+00 lineto -7.383283e+01 4.326815e+00 lineto -7.490973e+01 4.546468e+00 lineto -7.440104e+01 4.349874e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.541376e+01 4.587598e+00 moveto -7.440104e+01 4.349874e+00 lineto -7.490973e+01 4.546468e+00 lineto -7.597725e+01 4.80537e+00 lineto -7.541376e+01 4.587598e+00 lineto -closepath -gsave -5.400382e-01 5.400382e-01 6.750478e-01 setrgbcolor -fill -grestore -newpath -7.541376e+01 4.587598e+00 moveto -7.440104e+01 4.349874e+00 lineto -7.490973e+01 4.546468e+00 lineto -7.597725e+01 4.80537e+00 lineto -7.541376e+01 4.587598e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.641662e+01 4.864532e+00 moveto -7.541376e+01 4.587598e+00 lineto -7.597725e+01 4.80537e+00 lineto -7.703437e+01 5.103276e+00 lineto -7.641662e+01 4.864532e+00 lineto -closepath -gsave -5.331223e-01 5.331223e-01 6.664029e-01 setrgbcolor -fill -grestore -newpath -7.641662e+01 4.864532e+00 moveto -7.541376e+01 4.587598e+00 lineto -7.597725e+01 4.80537e+00 lineto -7.703437e+01 5.103276e+00 lineto -7.641662e+01 4.864532e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.740867e+01 5.180413e+00 moveto -7.641662e+01 4.864532e+00 lineto -7.703437e+01 5.103276e+00 lineto -7.80801e+01 5.439903e+00 lineto -7.740867e+01 5.180413e+00 lineto -closepath -gsave -5.2632e-01 5.2632e-01 6.579e-01 setrgbcolor -fill -grestore -newpath -7.740867e+01 5.180413e+00 moveto -7.641662e+01 4.864532e+00 lineto -7.703437e+01 5.103276e+00 lineto -7.80801e+01 5.439903e+00 lineto -7.740867e+01 5.180413e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.838897e+01 5.534943e+00 moveto -7.740867e+01 5.180413e+00 lineto -7.80801e+01 5.439903e+00 lineto -7.911345e+01 5.814933e+00 lineto -7.838897e+01 5.534943e+00 lineto -closepath -gsave -5.19643e-01 5.19643e-01 6.495538e-01 setrgbcolor -fill -grestore -newpath -7.838897e+01 5.534943e+00 moveto -7.740867e+01 5.180413e+00 lineto -7.80801e+01 5.439903e+00 lineto -7.911345e+01 5.814933e+00 lineto -7.838897e+01 5.534943e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.611834e+01 3.900946e+00 moveto -6.500362e+01 3.999614e+00 lineto -6.500379e+01 3.999689e+00 lineto -6.616885e+01 3.923866e+00 lineto -6.611834e+01 3.900946e+00 lineto -closepath -gsave -6.053822e-01 6.053822e-01 7.567278e-01 setrgbcolor -fill -grestore -newpath -6.611834e+01 3.900946e+00 moveto -6.500362e+01 3.999614e+00 lineto -6.500379e+01 3.999689e+00 lineto -6.616885e+01 3.923866e+00 lineto -6.611834e+01 3.900946e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.723199e+01 3.842138e+00 moveto -6.611834e+01 3.900946e+00 lineto -6.616885e+01 3.923866e+00 lineto -6.73328e+01 3.887882e+00 lineto -6.723199e+01 3.842138e+00 lineto -closepath -gsave -5.982622e-01 5.982622e-01 7.478278e-01 setrgbcolor -fill -grestore -newpath -6.723199e+01 3.842138e+00 moveto -6.611834e+01 3.900946e+00 lineto -6.616885e+01 3.923866e+00 lineto -6.73328e+01 3.887882e+00 lineto -6.723199e+01 3.842138e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.834353e+01 3.823245e+00 moveto -6.723199e+01 3.842138e+00 lineto -6.73328e+01 3.887882e+00 lineto -6.849455e+01 3.89177e+00 lineto -6.834353e+01 3.823245e+00 lineto -closepath -gsave -5.911329e-01 5.911329e-01 7.389161e-01 setrgbcolor -fill -grestore -newpath -6.834353e+01 3.823245e+00 moveto -6.723199e+01 3.842138e+00 lineto -6.73328e+01 3.887882e+00 lineto -6.849455e+01 3.89177e+00 lineto -6.834353e+01 3.823245e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.945191e+01 3.844285e+00 moveto -6.834353e+01 3.823245e+00 lineto -6.849455e+01 3.89177e+00 lineto -6.965299e+01 3.935526e+00 lineto -6.945191e+01 3.844285e+00 lineto -closepath -gsave -5.84007e-01 5.84007e-01 7.300088e-01 setrgbcolor -fill -grestore -newpath -6.945191e+01 3.844285e+00 moveto -6.834353e+01 3.823245e+00 lineto -6.849455e+01 3.89177e+00 lineto -6.965299e+01 3.935526e+00 lineto -6.945191e+01 3.844285e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.055607e+01 3.905239e+00 moveto -6.945191e+01 3.844285e+00 lineto -6.965299e+01 3.935526e+00 lineto -7.080702e+01 4.01911e+00 lineto -7.055607e+01 3.905239e+00 lineto -closepath -gsave -5.768975e-01 5.768975e-01 7.211219e-01 setrgbcolor -fill -grestore -newpath -7.055607e+01 3.905239e+00 moveto -6.945191e+01 3.844285e+00 lineto -6.965299e+01 3.935526e+00 lineto -7.080702e+01 4.01911e+00 lineto -7.055607e+01 3.905239e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.165497e+01 4.006048e+00 moveto -7.055607e+01 3.905239e+00 lineto -7.080702e+01 4.01911e+00 lineto -7.195556e+01 4.142441e+00 lineto -7.165497e+01 4.006048e+00 lineto -closepath -gsave -5.698173e-01 5.698173e-01 7.122716e-01 setrgbcolor -fill -grestore -newpath -7.165497e+01 4.006048e+00 moveto -7.055607e+01 3.905239e+00 lineto -7.080702e+01 4.01911e+00 lineto -7.195556e+01 4.142441e+00 lineto -7.165497e+01 4.006048e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.274757e+01 4.146618e+00 moveto -7.165497e+01 4.006048e+00 lineto -7.195556e+01 4.142441e+00 lineto -7.309751e+01 4.305404e+00 lineto -7.274757e+01 4.146618e+00 lineto -closepath -gsave -5.627792e-01 5.627792e-01 7.03474e-01 setrgbcolor -fill -grestore -newpath -7.274757e+01 4.146618e+00 moveto -7.165497e+01 4.006048e+00 lineto -7.195556e+01 4.142441e+00 lineto -7.309751e+01 4.305404e+00 lineto -7.274757e+01 4.146618e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.383283e+01 4.326815e+00 moveto -7.274757e+01 4.146618e+00 lineto -7.309751e+01 4.305404e+00 lineto -7.423179e+01 4.507843e+00 lineto -7.383283e+01 4.326815e+00 lineto -closepath -gsave -5.55796e-01 5.55796e-01 6.94745e-01 setrgbcolor -fill -grestore -newpath -7.383283e+01 4.326815e+00 moveto -7.274757e+01 4.146618e+00 lineto -7.309751e+01 4.305404e+00 lineto -7.423179e+01 4.507843e+00 lineto -7.383283e+01 4.326815e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.490973e+01 4.546468e+00 moveto -7.383283e+01 4.326815e+00 lineto -7.423179e+01 4.507843e+00 lineto -7.535733e+01 4.749567e+00 lineto -7.490973e+01 4.546468e+00 lineto -closepath -gsave -5.488803e-01 5.488803e-01 6.861003e-01 setrgbcolor -fill -grestore -newpath -7.490973e+01 4.546468e+00 moveto -7.383283e+01 4.326815e+00 lineto -7.423179e+01 4.507843e+00 lineto -7.535733e+01 4.749567e+00 lineto -7.490973e+01 4.546468e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.597725e+01 4.80537e+00 moveto -7.490973e+01 4.546468e+00 lineto -7.535733e+01 4.749567e+00 lineto -7.647306e+01 5.030348e+00 lineto -7.597725e+01 4.80537e+00 lineto -closepath -gsave -5.420444e-01 5.420444e-01 6.775555e-01 setrgbcolor -fill -grestore -newpath -7.597725e+01 4.80537e+00 moveto -7.490973e+01 4.546468e+00 lineto -7.535733e+01 4.749567e+00 lineto -7.647306e+01 5.030348e+00 lineto -7.597725e+01 4.80537e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.703437e+01 5.103276e+00 moveto -7.597725e+01 4.80537e+00 lineto -7.647306e+01 5.030348e+00 lineto -7.757794e+01 5.34992e+00 lineto -7.703437e+01 5.103276e+00 lineto -closepath -gsave -5.353004e-01 5.353004e-01 6.691255e-01 setrgbcolor -fill -grestore -newpath -7.703437e+01 5.103276e+00 moveto -7.597725e+01 4.80537e+00 lineto -7.647306e+01 5.030348e+00 lineto -7.757794e+01 5.34992e+00 lineto -7.703437e+01 5.103276e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.80801e+01 5.439903e+00 moveto -7.703437e+01 5.103276e+00 lineto -7.757794e+01 5.34992e+00 lineto -7.86709e+01 5.707979e+00 lineto -7.80801e+01 5.439903e+00 lineto -closepath -gsave -5.2866e-01 5.2866e-01 6.60825e-01 setrgbcolor -fill -grestore -newpath -7.80801e+01 5.439903e+00 moveto -7.703437e+01 5.103276e+00 lineto -7.757794e+01 5.34992e+00 lineto -7.86709e+01 5.707979e+00 lineto -7.80801e+01 5.439903e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.911345e+01 5.814933e+00 moveto -7.80801e+01 5.439903e+00 lineto -7.86709e+01 5.707979e+00 lineto -7.975092e+01 6.104187e+00 lineto -7.911345e+01 5.814933e+00 lineto -closepath -gsave -5.221345e-01 5.221345e-01 6.526681e-01 setrgbcolor -fill -grestore -newpath -7.911345e+01 5.814933e+00 moveto -7.80801e+01 5.439903e+00 lineto -7.86709e+01 5.707979e+00 lineto -7.975092e+01 6.104187e+00 lineto -7.911345e+01 5.814933e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.013343e+01 6.22801e+00 moveto -7.911345e+01 5.814933e+00 lineto -7.975092e+01 6.104187e+00 lineto -8.081697e+01 6.538168e+00 lineto -8.013343e+01 6.22801e+00 lineto -closepath -gsave -5.157348e-01 5.157348e-01 6.446685e-01 setrgbcolor -fill -grestore -newpath -8.013343e+01 6.22801e+00 moveto -7.911345e+01 5.814933e+00 lineto -7.975092e+01 6.104187e+00 lineto -8.081697e+01 6.538168e+00 lineto -8.013343e+01 6.22801e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.113909e+01 6.678744e+00 moveto -8.013343e+01 6.22801e+00 lineto -8.081697e+01 6.538168e+00 lineto -8.186805e+01 7.009513e+00 lineto -8.113909e+01 6.678744e+00 lineto -closepath -gsave -5.094711e-01 5.094711e-01 6.368389e-01 setrgbcolor -fill -grestore -newpath -8.113909e+01 6.678744e+00 moveto -8.013343e+01 6.22801e+00 lineto -8.081697e+01 6.538168e+00 lineto -8.186805e+01 7.009513e+00 lineto -8.113909e+01 6.678744e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.616885e+01 3.923866e+00 moveto -6.500379e+01 3.999689e+00 lineto -6.500393e+01 3.999765e+00 lineto -6.621215e+01 3.947379e+00 lineto -6.616885e+01 3.923866e+00 lineto -closepath -gsave -6.05522e-01 6.05522e-01 7.569025e-01 setrgbcolor -fill -grestore -newpath -6.616885e+01 3.923866e+00 moveto -6.500379e+01 3.999689e+00 lineto -6.500393e+01 3.999765e+00 lineto -6.621215e+01 3.947379e+00 lineto -6.616885e+01 3.923866e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.73328e+01 3.887882e+00 moveto -6.616885e+01 3.923866e+00 lineto -6.621215e+01 3.947379e+00 lineto -6.741923e+01 3.93481e+00 lineto -6.73328e+01 3.887882e+00 lineto -closepath -gsave -5.986772e-01 5.986772e-01 7.483465e-01 setrgbcolor -fill -grestore -newpath -6.73328e+01 3.887882e+00 moveto -6.616885e+01 3.923866e+00 lineto -6.621215e+01 3.947379e+00 lineto -6.741923e+01 3.93481e+00 lineto -6.73328e+01 3.887882e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.849455e+01 3.89177e+00 moveto -6.73328e+01 3.887882e+00 lineto -6.741923e+01 3.93481e+00 lineto -6.862402e+01 3.962068e+00 lineto -6.849455e+01 3.89177e+00 lineto -closepath -gsave -5.918186e-01 5.918186e-01 7.397733e-01 setrgbcolor -fill -grestore -newpath -6.849455e+01 3.89177e+00 moveto -6.73328e+01 3.887882e+00 lineto -6.741923e+01 3.93481e+00 lineto -6.862402e+01 3.962068e+00 lineto -6.849455e+01 3.89177e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.965299e+01 3.935526e+00 moveto -6.849455e+01 3.89177e+00 lineto -6.862402e+01 3.962068e+00 lineto -6.982538e+01 4.029128e+00 lineto -6.965299e+01 3.935526e+00 lineto -closepath -gsave -5.849584e-01 5.849584e-01 7.311979e-01 setrgbcolor -fill -grestore -newpath -6.965299e+01 3.935526e+00 moveto -6.849455e+01 3.89177e+00 lineto -6.862402e+01 3.962068e+00 lineto -6.982538e+01 4.029128e+00 lineto -6.965299e+01 3.935526e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.080702e+01 4.01911e+00 moveto -6.965299e+01 3.935526e+00 lineto -6.982538e+01 4.029128e+00 lineto -7.102217e+01 4.135926e+00 lineto -7.080702e+01 4.01911e+00 lineto -closepath -gsave -5.781085e-01 5.781085e-01 7.226356e-01 setrgbcolor -fill -grestore -newpath -7.080702e+01 4.01911e+00 moveto -6.965299e+01 3.935526e+00 lineto -6.982538e+01 4.029128e+00 lineto -7.102217e+01 4.135926e+00 lineto -7.080702e+01 4.01911e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.195556e+01 4.142441e+00 moveto -7.080702e+01 4.01911e+00 lineto -7.102217e+01 4.135926e+00 lineto -7.221326e+01 4.282362e+00 lineto -7.195556e+01 4.142441e+00 lineto -closepath -gsave -5.71281e-01 5.71281e-01 7.141013e-01 setrgbcolor -fill -grestore -newpath -7.195556e+01 4.142441e+00 moveto -7.080702e+01 4.01911e+00 lineto -7.102217e+01 4.135926e+00 lineto -7.221326e+01 4.282362e+00 lineto -7.195556e+01 4.142441e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.309751e+01 4.305404e+00 moveto -7.195556e+01 4.142441e+00 lineto -7.221326e+01 4.282362e+00 lineto -7.339752e+01 4.468296e+00 lineto -7.309751e+01 4.305404e+00 lineto -closepath -gsave -5.644881e-01 5.644881e-01 7.056101e-01 setrgbcolor -fill -grestore -newpath -7.309751e+01 4.305404e+00 moveto -7.195556e+01 4.142441e+00 lineto -7.221326e+01 4.282362e+00 lineto -7.339752e+01 4.468296e+00 lineto -7.309751e+01 4.305404e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.423179e+01 4.507843e+00 moveto -7.309751e+01 4.305404e+00 lineto -7.339752e+01 4.468296e+00 lineto -7.457383e+01 4.693553e+00 lineto -7.423179e+01 4.507843e+00 lineto -closepath -gsave -5.577416e-01 5.577416e-01 6.97177e-01 setrgbcolor -fill -grestore -newpath -7.423179e+01 4.507843e+00 moveto -7.309751e+01 4.305404e+00 lineto -7.339752e+01 4.468296e+00 lineto -7.457383e+01 4.693553e+00 lineto -7.423179e+01 4.507843e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.535733e+01 4.749567e+00 moveto -7.423179e+01 4.507843e+00 lineto -7.457383e+01 4.693553e+00 lineto -7.574107e+01 4.957919e+00 lineto -7.535733e+01 4.749567e+00 lineto -closepath -gsave -5.510534e-01 5.510534e-01 6.888167e-01 setrgbcolor -fill -grestore -newpath -7.535733e+01 4.749567e+00 moveto -7.423179e+01 4.507843e+00 lineto -7.457383e+01 4.693553e+00 lineto -7.574107e+01 4.957919e+00 lineto -7.535733e+01 4.749567e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.647306e+01 5.030348e+00 moveto -7.535733e+01 4.749567e+00 lineto -7.574107e+01 4.957919e+00 lineto -7.689814e+01 5.261145e+00 lineto -7.647306e+01 5.030348e+00 lineto -closepath -gsave -5.44435e-01 5.44435e-01 6.805438e-01 setrgbcolor -fill -grestore -newpath -7.647306e+01 5.030348e+00 moveto -7.535733e+01 4.749567e+00 lineto -7.574107e+01 4.957919e+00 lineto -7.689814e+01 5.261145e+00 lineto -7.647306e+01 5.030348e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.757794e+01 5.34992e+00 moveto -7.647306e+01 5.030348e+00 lineto -7.689814e+01 5.261145e+00 lineto -7.804395e+01 5.602942e+00 lineto -7.757794e+01 5.34992e+00 lineto -closepath -gsave -5.378979e-01 5.378979e-01 6.723724e-01 setrgbcolor -fill -grestore -newpath -7.757794e+01 5.34992e+00 moveto -7.647306e+01 5.030348e+00 lineto -7.689814e+01 5.261145e+00 lineto -7.804395e+01 5.602942e+00 lineto -7.757794e+01 5.34992e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.86709e+01 5.707979e+00 moveto -7.757794e+01 5.34992e+00 lineto -7.804395e+01 5.602942e+00 lineto -7.917741e+01 5.982987e+00 lineto -7.86709e+01 5.707979e+00 lineto -closepath -gsave -5.314532e-01 5.314532e-01 6.643164e-01 setrgbcolor -fill -grestore -newpath -7.86709e+01 5.707979e+00 moveto -7.757794e+01 5.34992e+00 lineto -7.804395e+01 5.602942e+00 lineto -7.917741e+01 5.982987e+00 lineto -7.86709e+01 5.707979e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.975092e+01 6.104187e+00 moveto -7.86709e+01 5.707979e+00 lineto -7.917741e+01 5.982987e+00 lineto -8.029744e+01 6.400922e+00 lineto -7.975092e+01 6.104187e+00 lineto -closepath -gsave -5.251114e-01 5.251114e-01 6.563892e-01 setrgbcolor -fill -grestore -newpath -7.975092e+01 6.104187e+00 moveto -7.86709e+01 5.707979e+00 lineto -7.917741e+01 5.982987e+00 lineto -8.029744e+01 6.400922e+00 lineto -7.975092e+01 6.104187e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.081697e+01 6.538168e+00 moveto -7.975092e+01 6.104187e+00 lineto -8.029744e+01 6.400922e+00 lineto -8.140299e+01 6.856348e+00 lineto -8.081697e+01 6.538168e+00 lineto -closepath -gsave -5.188829e-01 5.188829e-01 6.486037e-01 setrgbcolor -fill -grestore -newpath -8.081697e+01 6.538168e+00 moveto -7.975092e+01 6.104187e+00 lineto -8.029744e+01 6.400922e+00 lineto -8.140299e+01 6.856348e+00 lineto -8.081697e+01 6.538168e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.186805e+01 7.009513e+00 moveto -8.081697e+01 6.538168e+00 lineto -8.140299e+01 6.856348e+00 lineto -8.249301e+01 7.348837e+00 lineto -8.186805e+01 7.009513e+00 lineto -closepath -gsave -5.127776e-01 5.127776e-01 6.40972e-01 setrgbcolor -fill -grestore -newpath -8.186805e+01 7.009513e+00 moveto -8.081697e+01 6.538168e+00 lineto -8.140299e+01 6.856348e+00 lineto -8.249301e+01 7.348837e+00 lineto -8.186805e+01 7.009513e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.290316e+01 7.517774e+00 moveto -8.186805e+01 7.009513e+00 lineto -8.249301e+01 7.348837e+00 lineto -8.356647e+01 7.877921e+00 lineto -8.290316e+01 7.517774e+00 lineto -closepath -gsave -5.068048e-01 5.068048e-01 6.33506e-01 setrgbcolor -fill -grestore -newpath -8.290316e+01 7.517774e+00 moveto -8.186805e+01 7.009513e+00 lineto -8.249301e+01 7.348837e+00 lineto -8.356647e+01 7.877921e+00 lineto -8.290316e+01 7.517774e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.392131e+01 8.062471e+00 moveto -8.290316e+01 7.517774e+00 lineto -8.356647e+01 7.877921e+00 lineto -8.462235e+01 8.443099e+00 lineto -8.392131e+01 8.062471e+00 lineto -closepath -gsave -5.009733e-01 5.009733e-01 6.262166e-01 setrgbcolor -fill -grestore -newpath -8.392131e+01 8.062471e+00 moveto -8.290316e+01 7.517774e+00 lineto -8.356647e+01 7.877921e+00 lineto -8.462235e+01 8.443099e+00 lineto -8.392131e+01 8.062471e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.621215e+01 3.947379e+00 moveto -6.500393e+01 3.999765e+00 lineto -6.500404e+01 3.999843e+00 lineto -6.624799e+01 3.97134e+00 lineto -6.621215e+01 3.947379e+00 lineto -closepath -gsave -6.05683e-01 6.05683e-01 7.571037e-01 setrgbcolor -fill -grestore -newpath -6.621215e+01 3.947379e+00 moveto -6.500393e+01 3.999765e+00 lineto -6.500404e+01 3.999843e+00 lineto -6.624799e+01 3.97134e+00 lineto -6.621215e+01 3.947379e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.741923e+01 3.93481e+00 moveto -6.621215e+01 3.947379e+00 lineto -6.624799e+01 3.97134e+00 lineto -6.749075e+01 3.982631e+00 lineto -6.741923e+01 3.93481e+00 lineto -closepath -gsave -5.991549e-01 5.991549e-01 7.489436e-01 setrgbcolor -fill -grestore -newpath -6.741923e+01 3.93481e+00 moveto -6.621215e+01 3.947379e+00 lineto -6.624799e+01 3.97134e+00 lineto -6.749075e+01 3.982631e+00 lineto -6.741923e+01 3.93481e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.862402e+01 3.962068e+00 moveto -6.741923e+01 3.93481e+00 lineto -6.749075e+01 3.982631e+00 lineto -6.873115e+01 4.033704e+00 lineto -6.862402e+01 3.962068e+00 lineto -closepath -gsave -5.926084e-01 5.926084e-01 7.407605e-01 setrgbcolor -fill -grestore -newpath -6.862402e+01 3.962068e+00 moveto -6.741923e+01 3.93481e+00 lineto -6.749075e+01 3.982631e+00 lineto -6.873115e+01 4.033704e+00 lineto -6.862402e+01 3.962068e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.982538e+01 4.029128e+00 moveto -6.862402e+01 3.962068e+00 lineto -6.873115e+01 4.033704e+00 lineto -6.996803e+01 4.124512e+00 lineto -6.982538e+01 4.029128e+00 lineto -closepath -gsave -5.860546e-01 5.860546e-01 7.325682e-01 setrgbcolor -fill -grestore -newpath -6.982538e+01 4.029128e+00 moveto -6.862402e+01 3.962068e+00 lineto -6.873115e+01 4.033704e+00 lineto -6.996803e+01 4.124512e+00 lineto -6.982538e+01 4.029128e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.102217e+01 4.135926e+00 moveto -6.982538e+01 4.029128e+00 lineto -6.996803e+01 4.124512e+00 lineto -7.120019e+01 4.254967e+00 lineto -7.102217e+01 4.135926e+00 lineto -closepath -gsave -5.795045e-01 5.795045e-01 7.243806e-01 setrgbcolor -fill -grestore -newpath -7.102217e+01 4.135926e+00 moveto -6.982538e+01 4.029128e+00 lineto -6.996803e+01 4.124512e+00 lineto -7.120019e+01 4.254967e+00 lineto -7.102217e+01 4.135926e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.221326e+01 4.282362e+00 moveto -7.102217e+01 4.135926e+00 lineto -7.120019e+01 4.254967e+00 lineto -7.242649e+01 4.424947e+00 lineto -7.221326e+01 4.282362e+00 lineto -closepath -gsave -5.729694e-01 5.729694e-01 7.162117e-01 setrgbcolor -fill -grestore -newpath -7.221326e+01 4.282362e+00 moveto -7.102217e+01 4.135926e+00 lineto -7.120019e+01 4.254967e+00 lineto -7.242649e+01 4.424947e+00 lineto -7.221326e+01 4.282362e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.339752e+01 4.468296e+00 moveto -7.221326e+01 4.282362e+00 lineto -7.242649e+01 4.424947e+00 lineto -7.364576e+01 4.634291e+00 lineto -7.339752e+01 4.468296e+00 lineto -closepath -gsave -5.664604e-01 5.664604e-01 7.080755e-01 setrgbcolor -fill -grestore -newpath -7.339752e+01 4.468296e+00 moveto -7.221326e+01 4.282362e+00 lineto -7.242649e+01 4.424947e+00 lineto -7.364576e+01 4.634291e+00 lineto -7.339752e+01 4.468296e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.457383e+01 4.693553e+00 moveto -7.339752e+01 4.468296e+00 lineto -7.364576e+01 4.634291e+00 lineto -7.485684e+01 4.8828e+00 lineto -7.457383e+01 4.693553e+00 lineto -closepath -gsave -5.599886e-01 5.599886e-01 6.999858e-01 setrgbcolor -fill -grestore -newpath -7.457383e+01 4.693553e+00 moveto -7.339752e+01 4.468296e+00 lineto -7.364576e+01 4.634291e+00 lineto -7.485684e+01 4.8828e+00 lineto -7.457383e+01 4.693553e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.574107e+01 4.957919e+00 moveto -7.457383e+01 4.693553e+00 lineto -7.485684e+01 4.8828e+00 lineto -7.605859e+01 5.170239e+00 lineto -7.574107e+01 4.957919e+00 lineto -closepath -gsave -5.53565e-01 5.53565e-01 6.919563e-01 setrgbcolor -fill -grestore -newpath -7.574107e+01 4.957919e+00 moveto -7.457383e+01 4.693553e+00 lineto -7.485684e+01 4.8828e+00 lineto -7.605859e+01 5.170239e+00 lineto -7.574107e+01 4.957919e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.689814e+01 5.261145e+00 moveto -7.574107e+01 4.957919e+00 lineto -7.605859e+01 5.170239e+00 lineto -7.724986e+01 5.496336e+00 lineto -7.689814e+01 5.261145e+00 lineto -closepath -gsave -5.472004e-01 5.472004e-01 6.840005e-01 setrgbcolor -fill -grestore -newpath -7.689814e+01 5.261145e+00 moveto -7.574107e+01 4.957919e+00 lineto -7.605859e+01 5.170239e+00 lineto -7.724986e+01 5.496336e+00 lineto -7.689814e+01 5.261145e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.804395e+01 5.602942e+00 moveto -7.689814e+01 5.261145e+00 lineto -7.724986e+01 5.496336e+00 lineto -7.842954e+01 5.860783e+00 lineto -7.804395e+01 5.602942e+00 lineto -closepath -gsave -5.409054e-01 5.409054e-01 6.761318e-01 setrgbcolor -fill -grestore -newpath -7.804395e+01 5.602942e+00 moveto -7.689814e+01 5.261145e+00 lineto -7.724986e+01 5.496336e+00 lineto -7.842954e+01 5.860783e+00 lineto -7.804395e+01 5.602942e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.917741e+01 5.982987e+00 moveto -7.804395e+01 5.602942e+00 lineto -7.842954e+01 5.860783e+00 lineto -7.959651e+01 6.263234e+00 lineto -7.917741e+01 5.982987e+00 lineto -closepath -gsave -5.346903e-01 5.346903e-01 6.683629e-01 setrgbcolor -fill -grestore -newpath -7.917741e+01 5.982987e+00 moveto -7.804395e+01 5.602942e+00 lineto -7.842954e+01 5.860783e+00 lineto -7.959651e+01 6.263234e+00 lineto -7.917741e+01 5.982987e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.029744e+01 6.400922e+00 moveto -7.917741e+01 5.982987e+00 lineto -7.959651e+01 6.263234e+00 lineto -8.074965e+01 6.703308e+00 lineto -8.029744e+01 6.400922e+00 lineto -closepath -gsave -5.285652e-01 5.285652e-01 6.607065e-01 setrgbcolor -fill -grestore -newpath -8.029744e+01 6.400922e+00 moveto -7.917741e+01 5.982987e+00 lineto -7.959651e+01 6.263234e+00 lineto -8.074965e+01 6.703308e+00 lineto -8.029744e+01 6.400922e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.140299e+01 6.856348e+00 moveto -8.029744e+01 6.400922e+00 lineto -8.074965e+01 6.703308e+00 lineto -8.188788e+01 7.180588e+00 lineto -8.140299e+01 6.856348e+00 lineto -closepath -gsave -5.225397e-01 5.225397e-01 6.531747e-01 setrgbcolor -fill -grestore -newpath -8.140299e+01 6.856348e+00 moveto -8.029744e+01 6.400922e+00 lineto -8.074965e+01 6.703308e+00 lineto -8.188788e+01 7.180588e+00 lineto -8.140299e+01 6.856348e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.249301e+01 7.348837e+00 moveto -8.140299e+01 6.856348e+00 lineto -8.188788e+01 7.180588e+00 lineto -8.301012e+01 7.694623e+00 lineto -8.249301e+01 7.348837e+00 lineto -closepath -gsave -5.166232e-01 5.166232e-01 6.457791e-01 setrgbcolor -fill -grestore -newpath -8.249301e+01 7.348837e+00 moveto -8.140299e+01 6.856348e+00 lineto -8.188788e+01 7.180588e+00 lineto -8.301012e+01 7.694623e+00 lineto -8.249301e+01 7.348837e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.356647e+01 7.877921e+00 moveto -8.249301e+01 7.348837e+00 lineto -8.301012e+01 7.694623e+00 lineto -8.411531e+01 8.244926e+00 lineto -8.356647e+01 7.877921e+00 lineto -closepath -gsave -5.108245e-01 5.108245e-01 6.385307e-01 setrgbcolor -fill -grestore -newpath -8.356647e+01 7.877921e+00 moveto -8.249301e+01 7.348837e+00 lineto -8.301012e+01 7.694623e+00 lineto -8.411531e+01 8.244926e+00 lineto -8.356647e+01 7.877921e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.462235e+01 8.443099e+00 moveto -8.356647e+01 7.877921e+00 lineto -8.411531e+01 8.244926e+00 lineto -8.52024e+01 8.830976e+00 lineto -8.462235e+01 8.443099e+00 lineto -closepath -gsave -5.05152e-01 5.05152e-01 6.314401e-01 setrgbcolor -fill -grestore -newpath -8.462235e+01 8.443099e+00 moveto -8.356647e+01 7.877921e+00 lineto -8.411531e+01 8.244926e+00 lineto -8.52024e+01 8.830976e+00 lineto -8.462235e+01 8.443099e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.565965e+01 9.043836e+00 moveto -8.462235e+01 8.443099e+00 lineto -8.52024e+01 8.830976e+00 lineto -8.627037e+01 9.452218e+00 lineto -8.565965e+01 9.043836e+00 lineto -closepath -gsave -4.996136e-01 4.996136e-01 6.24517e-01 setrgbcolor -fill -grestore -newpath -8.565965e+01 9.043836e+00 moveto -8.462235e+01 8.443099e+00 lineto -8.52024e+01 8.830976e+00 lineto -8.627037e+01 9.452218e+00 lineto -8.565965e+01 9.043836e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.667739e+01 9.679564e+00 moveto -8.565965e+01 9.043836e+00 lineto -8.627037e+01 9.452218e+00 lineto -8.731819e+01 1.010806e+01 lineto -8.667739e+01 9.679564e+00 lineto -closepath -gsave -4.942166e-01 4.942166e-01 6.177707e-01 setrgbcolor -fill -grestore -newpath -8.667739e+01 9.679564e+00 moveto -8.565965e+01 9.043836e+00 lineto -8.627037e+01 9.452218e+00 lineto -8.731819e+01 1.010806e+01 lineto -8.667739e+01 9.679564e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.624799e+01 3.97134e+00 moveto -6.500404e+01 3.999843e+00 lineto -6.500413e+01 3.999921e+00 lineto -6.627613e+01 3.995601e+00 lineto -6.624799e+01 3.97134e+00 lineto -closepath -gsave -6.05864e-01 6.05864e-01 7.5733e-01 setrgbcolor -fill -grestore -newpath -6.624799e+01 3.97134e+00 moveto -6.500404e+01 3.999843e+00 lineto -6.500413e+01 3.999921e+00 lineto -6.627613e+01 3.995601e+00 lineto -6.624799e+01 3.97134e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.749075e+01 3.982631e+00 moveto -6.624799e+01 3.97134e+00 lineto -6.627613e+01 3.995601e+00 lineto -6.754691e+01 4.031051e+00 lineto -6.749075e+01 3.982631e+00 lineto -closepath -gsave -5.996926e-01 5.996926e-01 7.496157e-01 setrgbcolor -fill -grestore -newpath -6.749075e+01 3.982631e+00 moveto -6.624799e+01 3.97134e+00 lineto -6.627613e+01 3.995601e+00 lineto -6.754691e+01 4.031051e+00 lineto -6.749075e+01 3.982631e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.873115e+01 4.033704e+00 moveto -6.749075e+01 3.982631e+00 lineto -6.754691e+01 4.031051e+00 lineto -6.881528e+01 4.106238e+00 lineto -6.873115e+01 4.033704e+00 lineto -closepath -gsave -5.934977e-01 5.934977e-01 7.418721e-01 setrgbcolor -fill -grestore -newpath -6.873115e+01 4.033704e+00 moveto -6.749075e+01 3.982631e+00 lineto -6.754691e+01 4.031051e+00 lineto -6.881528e+01 4.106238e+00 lineto -6.873115e+01 4.033704e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.996803e+01 4.124512e+00 moveto -6.873115e+01 4.033704e+00 lineto -6.881528e+01 4.106238e+00 lineto -7.008004e+01 4.22109e+00 lineto -6.996803e+01 4.124512e+00 lineto -closepath -gsave -5.872894e-01 5.872894e-01 7.341117e-01 setrgbcolor -fill -grestore -newpath -6.996803e+01 4.124512e+00 moveto -6.873115e+01 4.033704e+00 lineto -6.881528e+01 4.106238e+00 lineto -7.008004e+01 4.22109e+00 lineto -6.996803e+01 4.124512e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.120019e+01 4.254967e+00 moveto -6.996803e+01 4.124512e+00 lineto -7.008004e+01 4.22109e+00 lineto -7.133999e+01 4.375499e+00 lineto -7.120019e+01 4.254967e+00 lineto -closepath -gsave -5.810779e-01 5.810779e-01 7.263473e-01 setrgbcolor -fill -grestore -newpath -7.120019e+01 4.254967e+00 moveto -6.996803e+01 4.124512e+00 lineto -7.008004e+01 4.22109e+00 lineto -7.133999e+01 4.375499e+00 lineto -7.120019e+01 4.254967e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.242649e+01 4.424947e+00 moveto -7.120019e+01 4.254967e+00 lineto -7.133999e+01 4.375499e+00 lineto -7.259394e+01 4.569318e+00 lineto -7.242649e+01 4.424947e+00 lineto -closepath -gsave -5.748734e-01 5.748734e-01 7.185917e-01 setrgbcolor -fill -grestore -newpath -7.242649e+01 4.424947e+00 moveto -7.120019e+01 4.254967e+00 lineto -7.133999e+01 4.375499e+00 lineto -7.259394e+01 4.569318e+00 lineto -7.242649e+01 4.424947e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.364576e+01 4.634291e+00 moveto -7.242649e+01 4.424947e+00 lineto -7.259394e+01 4.569318e+00 lineto -7.384069e+01 4.802364e+00 lineto -7.364576e+01 4.634291e+00 lineto -closepath -gsave -5.686861e-01 5.686861e-01 7.108576e-01 setrgbcolor -fill -grestore -newpath -7.364576e+01 4.634291e+00 moveto -7.242649e+01 4.424947e+00 lineto -7.259394e+01 4.569318e+00 lineto -7.384069e+01 4.802364e+00 lineto -7.364576e+01 4.634291e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.485684e+01 4.8828e+00 moveto -7.364576e+01 4.634291e+00 lineto -7.384069e+01 4.802364e+00 lineto -7.507908e+01 5.074417e+00 lineto -7.485684e+01 4.8828e+00 lineto -closepath -gsave -5.625262e-01 5.625262e-01 7.031578e-01 setrgbcolor -fill -grestore -newpath -7.485684e+01 4.8828e+00 moveto -7.364576e+01 4.634291e+00 lineto -7.384069e+01 4.802364e+00 lineto -7.507908e+01 5.074417e+00 lineto -7.485684e+01 4.8828e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.605859e+01 5.170239e+00 moveto -7.485684e+01 4.8828e+00 lineto -7.507908e+01 5.074417e+00 lineto -7.630792e+01 5.385218e+00 lineto -7.605859e+01 5.170239e+00 lineto -closepath -gsave -5.564038e-01 5.564038e-01 6.955048e-01 setrgbcolor -fill -grestore -newpath -7.605859e+01 5.170239e+00 moveto -7.485684e+01 4.8828e+00 lineto -7.507908e+01 5.074417e+00 lineto -7.630792e+01 5.385218e+00 lineto -7.605859e+01 5.170239e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.724986e+01 5.496336e+00 moveto -7.605859e+01 5.170239e+00 lineto -7.630792e+01 5.385218e+00 lineto -7.752606e+01 5.734474e+00 lineto -7.724986e+01 5.496336e+00 lineto -closepath -gsave -5.503288e-01 5.503288e-01 6.87911e-01 setrgbcolor -fill -grestore -newpath -7.724986e+01 5.496336e+00 moveto -7.605859e+01 5.170239e+00 lineto -7.630792e+01 5.385218e+00 lineto -7.752606e+01 5.734474e+00 lineto -7.724986e+01 5.496336e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.842954e+01 5.860783e+00 moveto -7.724986e+01 5.496336e+00 lineto -7.752606e+01 5.734474e+00 lineto -7.873234e+01 6.121853e+00 lineto -7.842954e+01 5.860783e+00 lineto -closepath -gsave -5.44311e-01 5.44311e-01 6.803888e-01 setrgbcolor -fill -grestore -newpath -7.842954e+01 5.860783e+00 moveto -7.724986e+01 5.496336e+00 lineto -7.752606e+01 5.734474e+00 lineto -7.873234e+01 6.121853e+00 lineto -7.842954e+01 5.860783e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.959651e+01 6.263234e+00 moveto -7.842954e+01 5.860783e+00 lineto -7.873234e+01 6.121853e+00 lineto -7.992561e+01 6.54699e+00 lineto -7.959651e+01 6.263234e+00 lineto -closepath -gsave -5.3836e-01 5.3836e-01 6.7295e-01 setrgbcolor -fill -grestore -newpath -7.959651e+01 6.263234e+00 moveto -7.842954e+01 5.860783e+00 lineto -7.873234e+01 6.121853e+00 lineto -7.992561e+01 6.54699e+00 lineto -7.959651e+01 6.263234e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.074965e+01 6.703308e+00 moveto -7.959651e+01 6.263234e+00 lineto -7.992561e+01 6.54699e+00 lineto -8.110476e+01 7.009481e+00 lineto -8.074965e+01 6.703308e+00 lineto -closepath -gsave -5.324851e-01 5.324851e-01 6.656064e-01 setrgbcolor -fill -grestore -newpath -8.074965e+01 6.703308e+00 moveto -7.959651e+01 6.263234e+00 lineto -7.992561e+01 6.54699e+00 lineto -8.110476e+01 7.009481e+00 lineto -8.074965e+01 6.703308e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.188788e+01 7.180588e+00 moveto -8.074965e+01 6.703308e+00 lineto -8.110476e+01 7.009481e+00 lineto -8.226865e+01 7.508889e+00 lineto -8.188788e+01 7.180588e+00 lineto -closepath -gsave -5.266953e-01 5.266953e-01 6.583692e-01 setrgbcolor -fill -grestore -newpath -8.188788e+01 7.180588e+00 moveto -8.074965e+01 6.703308e+00 lineto -8.110476e+01 7.009481e+00 lineto -8.226865e+01 7.508889e+00 lineto -8.188788e+01 7.180588e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.301012e+01 7.694623e+00 moveto -8.188788e+01 7.180588e+00 lineto -8.226865e+01 7.508889e+00 lineto -8.34162e+01 8.04474e+00 lineto -8.301012e+01 7.694623e+00 lineto -closepath -gsave -5.209994e-01 5.209994e-01 6.512492e-01 setrgbcolor -fill -grestore -newpath -8.301012e+01 7.694623e+00 moveto -8.188788e+01 7.180588e+00 lineto -8.226865e+01 7.508889e+00 lineto -8.34162e+01 8.04474e+00 lineto -8.301012e+01 7.694623e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.411531e+01 8.244926e+00 moveto -8.301012e+01 7.694623e+00 lineto -8.34162e+01 8.04474e+00 lineto -8.454631e+01 8.616528e+00 lineto -8.411531e+01 8.244926e+00 lineto -closepath -gsave -5.154056e-01 5.154056e-01 6.442569e-01 setrgbcolor -fill -grestore -newpath -8.411531e+01 8.244926e+00 moveto -8.301012e+01 7.694623e+00 lineto -8.34162e+01 8.04474e+00 lineto -8.454631e+01 8.616528e+00 lineto -8.411531e+01 8.244926e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.52024e+01 8.830976e+00 moveto -8.411531e+01 8.244926e+00 lineto -8.454631e+01 8.616528e+00 lineto -8.565791e+01 9.223711e+00 lineto -8.52024e+01 8.830976e+00 lineto -closepath -gsave -5.099218e-01 5.099218e-01 6.374023e-01 setrgbcolor -fill -grestore -newpath -8.52024e+01 8.830976e+00 moveto -8.411531e+01 8.244926e+00 lineto -8.454631e+01 8.616528e+00 lineto -8.565791e+01 9.223711e+00 lineto -8.52024e+01 8.830976e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.627037e+01 9.452218e+00 moveto -8.52024e+01 8.830976e+00 lineto -8.565791e+01 9.223711e+00 lineto -8.674995e+01 9.865714e+00 lineto -8.627037e+01 9.452218e+00 lineto -closepath -gsave -5.045556e-01 5.045556e-01 6.306945e-01 setrgbcolor -fill -grestore -newpath -8.627037e+01 9.452218e+00 moveto -8.52024e+01 8.830976e+00 lineto -8.565791e+01 9.223711e+00 lineto -8.674995e+01 9.865714e+00 lineto -8.627037e+01 9.452218e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.731819e+01 1.010806e+01 moveto -8.627037e+01 9.452218e+00 lineto -8.674995e+01 9.865714e+00 lineto -8.78214e+01 1.054193e+01 lineto -8.731819e+01 1.010806e+01 lineto -closepath -gsave -4.99314e-01 4.99314e-01 6.241425e-01 setrgbcolor -fill -grestore -newpath -8.731819e+01 1.010806e+01 moveto -8.627037e+01 9.452218e+00 lineto -8.674995e+01 9.865714e+00 lineto -8.78214e+01 1.054193e+01 lineto -8.731819e+01 1.010806e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.834489e+01 1.079789e+01 moveto -8.731819e+01 1.010806e+01 lineto -8.78214e+01 1.054193e+01 lineto -8.887124e+01 1.125172e+01 lineto -8.834489e+01 1.079789e+01 lineto -closepath -gsave -4.942035e-01 4.942035e-01 6.177544e-01 setrgbcolor -fill -grestore -newpath -8.834489e+01 1.079789e+01 moveto -8.731819e+01 1.010806e+01 lineto -8.78214e+01 1.054193e+01 lineto -8.887124e+01 1.125172e+01 lineto -8.834489e+01 1.079789e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.934948e+01 1.152105e+01 moveto -8.834489e+01 1.079789e+01 lineto -8.887124e+01 1.125172e+01 lineto -8.989848e+01 1.19944e+01 lineto -8.934948e+01 1.152105e+01 lineto -closepath -gsave -4.892302e-01 4.892302e-01 6.115377e-01 setrgbcolor -fill -grestore -newpath -8.934948e+01 1.152105e+01 moveto -8.834489e+01 1.079789e+01 lineto -8.887124e+01 1.125172e+01 lineto -8.989848e+01 1.19944e+01 lineto -8.934948e+01 1.152105e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.033101e+01 1.227685e+01 moveto -8.934948e+01 1.152105e+01 lineto -8.989848e+01 1.19944e+01 lineto -9.090215e+01 1.276929e+01 lineto -9.033101e+01 1.227685e+01 lineto -closepath -gsave -4.843993e-01 4.843993e-01 6.054991e-01 setrgbcolor -fill -grestore -newpath -9.033101e+01 1.227685e+01 moveto -8.934948e+01 1.152105e+01 lineto -8.989848e+01 1.19944e+01 lineto -9.090215e+01 1.276929e+01 lineto -9.033101e+01 1.227685e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.128857e+01 1.306459e+01 moveto -9.033101e+01 1.227685e+01 lineto -9.090215e+01 1.276929e+01 lineto -9.188129e+01 1.357563e+01 lineto -9.128857e+01 1.306459e+01 lineto -closepath -gsave -4.797159e-01 4.797159e-01 5.996449e-01 setrgbcolor -fill -grestore -newpath -9.128857e+01 1.306459e+01 moveto -9.033101e+01 1.227685e+01 lineto -9.090215e+01 1.276929e+01 lineto -9.188129e+01 1.357563e+01 lineto -9.128857e+01 1.306459e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.627613e+01 3.995601e+00 moveto -6.500413e+01 3.999921e+00 lineto -6.50042e+01 4.0e+00 lineto -6.62964e+01 4.020012e+00 lineto -6.627613e+01 3.995601e+00 lineto -closepath -gsave -6.060641e-01 6.060641e-01 7.575802e-01 setrgbcolor -fill -grestore -newpath -6.627613e+01 3.995601e+00 moveto -6.500413e+01 3.999921e+00 lineto -6.50042e+01 4.0e+00 lineto -6.62964e+01 4.020012e+00 lineto -6.627613e+01 3.995601e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.754691e+01 4.031051e+00 moveto -6.627613e+01 3.995601e+00 lineto -6.62964e+01 4.020012e+00 lineto -6.758737e+01 4.079772e+00 lineto -6.754691e+01 4.031051e+00 lineto -closepath -gsave -6.00287e-01 6.00287e-01 7.503588e-01 setrgbcolor -fill -grestore -newpath -6.754691e+01 4.031051e+00 moveto -6.627613e+01 3.995601e+00 lineto -6.62964e+01 4.020012e+00 lineto -6.758737e+01 4.079772e+00 lineto -6.754691e+01 4.031051e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.881528e+01 4.106238e+00 moveto -6.754691e+01 4.031051e+00 lineto -6.758737e+01 4.079772e+00 lineto -6.887588e+01 4.179221e+00 lineto -6.881528e+01 4.106238e+00 lineto -closepath -gsave -5.944812e-01 5.944812e-01 7.431015e-01 setrgbcolor -fill -grestore -newpath -6.881528e+01 4.106238e+00 moveto -6.754691e+01 4.031051e+00 lineto -6.758737e+01 4.079772e+00 lineto -6.887588e+01 4.179221e+00 lineto -6.881528e+01 4.106238e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.008004e+01 4.22109e+00 moveto -6.881528e+01 4.106238e+00 lineto -6.887588e+01 4.179221e+00 lineto -7.016073e+01 4.318268e+00 lineto -7.008004e+01 4.22109e+00 lineto -closepath -gsave -5.886557e-01 5.886557e-01 7.358196e-01 setrgbcolor -fill -grestore -newpath -7.008004e+01 4.22109e+00 moveto -6.881528e+01 4.106238e+00 lineto -6.887588e+01 4.179221e+00 lineto -7.016073e+01 4.318268e+00 lineto -7.008004e+01 4.22109e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.133999e+01 4.375499e+00 moveto -7.008004e+01 4.22109e+00 lineto -7.016073e+01 4.318268e+00 lineto -7.14407e+01 4.496778e+00 lineto -7.133999e+01 4.375499e+00 lineto -closepath -gsave -5.828198e-01 5.828198e-01 7.285248e-01 setrgbcolor -fill -grestore -newpath -7.133999e+01 4.375499e+00 moveto -7.008004e+01 4.22109e+00 lineto -7.016073e+01 4.318268e+00 lineto -7.14407e+01 4.496778e+00 lineto -7.133999e+01 4.375499e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.259394e+01 4.569318e+00 moveto -7.133999e+01 4.375499e+00 lineto -7.14407e+01 4.496778e+00 lineto -7.271456e+01 4.714585e+00 lineto -7.259394e+01 4.569318e+00 lineto -closepath -gsave -5.769827e-01 5.769827e-01 7.212284e-01 setrgbcolor -fill -grestore -newpath -7.259394e+01 4.569318e+00 moveto -7.133999e+01 4.375499e+00 lineto -7.14407e+01 4.496778e+00 lineto -7.271456e+01 4.714585e+00 lineto -7.259394e+01 4.569318e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.384069e+01 4.802364e+00 moveto -7.259394e+01 4.569318e+00 lineto -7.271456e+01 4.714585e+00 lineto -7.398112e+01 4.97148e+00 lineto -7.384069e+01 4.802364e+00 lineto -closepath -gsave -5.711537e-01 5.711537e-01 7.139421e-01 setrgbcolor -fill -grestore -newpath -7.384069e+01 4.802364e+00 moveto -7.259394e+01 4.569318e+00 lineto -7.271456e+01 4.714585e+00 lineto -7.398112e+01 4.97148e+00 lineto -7.384069e+01 4.802364e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.507908e+01 5.074417e+00 moveto -7.384069e+01 4.802364e+00 lineto -7.398112e+01 4.97148e+00 lineto -7.523918e+01 5.267222e+00 lineto -7.507908e+01 5.074417e+00 lineto -closepath -gsave -5.653418e-01 5.653418e-01 7.066773e-01 setrgbcolor -fill -grestore -newpath -7.507908e+01 5.074417e+00 moveto -7.384069e+01 4.802364e+00 lineto -7.398112e+01 4.97148e+00 lineto -7.523918e+01 5.267222e+00 lineto -7.507908e+01 5.074417e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.630792e+01 5.385218e+00 moveto -7.507908e+01 5.074417e+00 lineto -7.523918e+01 5.267222e+00 lineto -7.648754e+01 5.601531e+00 lineto -7.630792e+01 5.385218e+00 lineto -closepath -gsave -5.595564e-01 5.595564e-01 6.994454e-01 setrgbcolor -fill -grestore -newpath -7.630792e+01 5.385218e+00 moveto -7.507908e+01 5.074417e+00 lineto -7.523918e+01 5.267222e+00 lineto -7.648754e+01 5.601531e+00 lineto -7.630792e+01 5.385218e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.752606e+01 5.734474e+00 moveto -7.630792e+01 5.385218e+00 lineto -7.648754e+01 5.601531e+00 lineto -7.772503e+01 5.974088e+00 lineto -7.752606e+01 5.734474e+00 lineto -closepath -gsave -5.538063e-01 5.538063e-01 6.922579e-01 setrgbcolor -fill -grestore -newpath -7.752606e+01 5.734474e+00 moveto -7.630792e+01 5.385218e+00 lineto -7.648754e+01 5.601531e+00 lineto -7.772503e+01 5.974088e+00 lineto -7.752606e+01 5.734474e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.873234e+01 6.121853e+00 moveto -7.752606e+01 5.734474e+00 lineto -7.772503e+01 5.974088e+00 lineto -7.895047e+01 6.384543e+00 lineto -7.873234e+01 6.121853e+00 lineto -closepath -gsave -5.481007e-01 5.481007e-01 6.851259e-01 setrgbcolor -fill -grestore -newpath -7.873234e+01 6.121853e+00 moveto -7.752606e+01 5.734474e+00 lineto -7.772503e+01 5.974088e+00 lineto -7.895047e+01 6.384543e+00 lineto -7.873234e+01 6.121853e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.992561e+01 6.54699e+00 moveto -7.873234e+01 6.121853e+00 lineto -7.895047e+01 6.384543e+00 lineto -8.01627e+01 6.832506e+00 lineto -7.992561e+01 6.54699e+00 lineto -closepath -gsave -5.424482e-01 5.424482e-01 6.780603e-01 setrgbcolor -fill -grestore -newpath -7.992561e+01 6.54699e+00 moveto -7.873234e+01 6.121853e+00 lineto -7.895047e+01 6.384543e+00 lineto -8.01627e+01 6.832506e+00 lineto -7.992561e+01 6.54699e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.110476e+01 7.009481e+00 moveto -7.992561e+01 6.54699e+00 lineto -8.01627e+01 6.832506e+00 lineto -8.136057e+01 7.317554e+00 lineto -8.110476e+01 7.009481e+00 lineto -closepath -gsave -5.368575e-01 5.368575e-01 6.710718e-01 setrgbcolor -fill -grestore -newpath -8.110476e+01 7.009481e+00 moveto -7.992561e+01 6.54699e+00 lineto -8.01627e+01 6.832506e+00 lineto -8.136057e+01 7.317554e+00 lineto -8.110476e+01 7.009481e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.226865e+01 7.508889e+00 moveto -8.110476e+01 7.009481e+00 lineto -8.136057e+01 7.317554e+00 lineto -8.254296e+01 7.839226e+00 lineto -8.226865e+01 7.508889e+00 lineto -closepath -gsave -5.313368e-01 5.313368e-01 6.641709e-01 setrgbcolor -fill -grestore -newpath -8.226865e+01 7.508889e+00 moveto -8.110476e+01 7.009481e+00 lineto -8.136057e+01 7.317554e+00 lineto -8.254296e+01 7.839226e+00 lineto -8.226865e+01 7.508889e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.34162e+01 8.04474e+00 moveto -8.226865e+01 7.508889e+00 lineto -8.254296e+01 7.839226e+00 lineto -8.370873e+01 8.397029e+00 lineto -8.34162e+01 8.04474e+00 lineto -closepath -gsave -5.258941e-01 5.258941e-01 6.573677e-01 setrgbcolor -fill -grestore -newpath -8.34162e+01 8.04474e+00 moveto -8.226865e+01 7.508889e+00 lineto -8.254296e+01 7.839226e+00 lineto -8.370873e+01 8.397029e+00 lineto -8.34162e+01 8.04474e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.454631e+01 8.616528e+00 moveto -8.34162e+01 8.04474e+00 lineto -8.370873e+01 8.397029e+00 lineto -8.485679e+01 8.990435e+00 lineto -8.454631e+01 8.616528e+00 lineto -closepath -gsave -5.205374e-01 5.205374e-01 6.506718e-01 setrgbcolor -fill -grestore -newpath -8.454631e+01 8.616528e+00 moveto -8.34162e+01 8.04474e+00 lineto -8.370873e+01 8.397029e+00 lineto -8.485679e+01 8.990435e+00 lineto -8.454631e+01 8.616528e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.565791e+01 9.223711e+00 moveto -8.454631e+01 8.616528e+00 lineto -8.485679e+01 8.990435e+00 lineto -8.598605e+01 9.618882e+00 lineto -8.565791e+01 9.223711e+00 lineto -closepath -gsave -5.152739e-01 5.152739e-01 6.440924e-01 setrgbcolor -fill -grestore -newpath -8.565791e+01 9.223711e+00 moveto -8.454631e+01 8.616528e+00 lineto -8.485679e+01 8.990435e+00 lineto -8.598605e+01 9.618882e+00 lineto -8.565791e+01 9.223711e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.674995e+01 9.865714e+00 moveto -8.565791e+01 9.223711e+00 lineto -8.598605e+01 9.618882e+00 lineto -8.709544e+01 1.028177e+01 lineto -8.674995e+01 9.865714e+00 lineto -closepath -gsave -5.101109e-01 5.101109e-01 6.376386e-01 setrgbcolor -fill -grestore -newpath -8.674995e+01 9.865714e+00 moveto -8.565791e+01 9.223711e+00 lineto -8.598605e+01 9.618882e+00 lineto -8.709544e+01 1.028177e+01 lineto -8.674995e+01 9.865714e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.78214e+01 1.054193e+01 moveto -8.674995e+01 9.865714e+00 lineto -8.709544e+01 1.028177e+01 lineto -8.818391e+01 1.097849e+01 lineto -8.78214e+01 1.054193e+01 lineto -closepath -gsave -5.050548e-01 5.050548e-01 6.313185e-01 setrgbcolor -fill -grestore -newpath -8.78214e+01 1.054193e+01 moveto -8.674995e+01 9.865714e+00 lineto -8.709544e+01 1.028177e+01 lineto -8.818391e+01 1.097849e+01 lineto -8.78214e+01 1.054193e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.887124e+01 1.125172e+01 moveto -8.78214e+01 1.054193e+01 lineto -8.818391e+01 1.097849e+01 lineto -8.925043e+01 1.170836e+01 lineto -8.887124e+01 1.125172e+01 lineto -closepath -gsave -5.00112e-01 5.00112e-01 6.2514e-01 setrgbcolor -fill -grestore -newpath -8.887124e+01 1.125172e+01 moveto -8.78214e+01 1.054193e+01 lineto -8.818391e+01 1.097849e+01 lineto -8.925043e+01 1.170836e+01 lineto -8.887124e+01 1.125172e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.989848e+01 1.19944e+01 moveto -8.887124e+01 1.125172e+01 lineto -8.925043e+01 1.170836e+01 lineto -9.029398e+01 1.247069e+01 lineto -8.989848e+01 1.19944e+01 lineto -closepath -gsave -4.952884e-01 4.952884e-01 6.191105e-01 setrgbcolor -fill -grestore -newpath -8.989848e+01 1.19944e+01 moveto -8.887124e+01 1.125172e+01 lineto -8.925043e+01 1.170836e+01 lineto -9.029398e+01 1.247069e+01 lineto -8.989848e+01 1.19944e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.090215e+01 1.276929e+01 moveto -8.989848e+01 1.19944e+01 lineto -9.029398e+01 1.247069e+01 lineto -9.131359e+01 1.326478e+01 lineto -9.090215e+01 1.276929e+01 lineto -closepath -gsave -4.905892e-01 4.905892e-01 6.132365e-01 setrgbcolor -fill -grestore -newpath -9.090215e+01 1.276929e+01 moveto -8.989848e+01 1.19944e+01 lineto -9.029398e+01 1.247069e+01 lineto -9.131359e+01 1.326478e+01 lineto -9.090215e+01 1.276929e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.188129e+01 1.357563e+01 moveto -9.090215e+01 1.276929e+01 lineto -9.131359e+01 1.326478e+01 lineto -9.230829e+01 1.408985e+01 lineto -9.188129e+01 1.357563e+01 lineto -closepath -gsave -4.860193e-01 4.860193e-01 6.075242e-01 setrgbcolor -fill -grestore -newpath -9.188129e+01 1.357563e+01 moveto -9.090215e+01 1.276929e+01 lineto -9.131359e+01 1.326478e+01 lineto -9.230829e+01 1.408985e+01 lineto -9.188129e+01 1.357563e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.283498e+01 1.441268e+01 moveto -9.188129e+01 1.357563e+01 lineto -9.230829e+01 1.408985e+01 lineto -9.327713e+01 1.494515e+01 lineto -9.283498e+01 1.441268e+01 lineto -closepath -gsave -4.815832e-01 4.815832e-01 6.01979e-01 setrgbcolor -fill -grestore -newpath -9.283498e+01 1.441268e+01 moveto -9.188129e+01 1.357563e+01 lineto -9.230829e+01 1.408985e+01 lineto -9.327713e+01 1.494515e+01 lineto -9.283498e+01 1.441268e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.376232e+01 1.527964e+01 moveto -9.283498e+01 1.441268e+01 lineto -9.327713e+01 1.494515e+01 lineto -9.42192e+01 1.582984e+01 lineto -9.376232e+01 1.527964e+01 lineto -closepath -gsave -4.772847e-01 4.772847e-01 5.966058e-01 setrgbcolor -fill -grestore -newpath -9.376232e+01 1.527964e+01 moveto -9.283498e+01 1.441268e+01 lineto -9.327713e+01 1.494515e+01 lineto -9.42192e+01 1.582984e+01 lineto -9.376232e+01 1.527964e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.466242e+01 1.617568e+01 moveto -9.376232e+01 1.527964e+01 lineto -9.42192e+01 1.582984e+01 lineto -9.51336e+01 1.67431e+01 lineto -9.466242e+01 1.617568e+01 lineto -closepath -gsave -4.731271e-01 4.731271e-01 5.914089e-01 setrgbcolor -fill -grestore -newpath -9.466242e+01 1.617568e+01 moveto -9.376232e+01 1.527964e+01 lineto -9.42192e+01 1.582984e+01 lineto -9.51336e+01 1.67431e+01 lineto -9.466242e+01 1.617568e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.553444e+01 1.709995e+01 moveto -9.466242e+01 1.617568e+01 lineto -9.51336e+01 1.67431e+01 lineto -9.601947e+01 1.768406e+01 lineto -9.553444e+01 1.709995e+01 lineto -closepath -gsave -4.691133e-01 4.691133e-01 5.863916e-01 setrgbcolor -fill -grestore -newpath -9.553444e+01 1.709995e+01 moveto -9.466242e+01 1.617568e+01 lineto -9.51336e+01 1.67431e+01 lineto -9.601947e+01 1.768406e+01 lineto -9.553444e+01 1.709995e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.637755e+01 1.80516e+01 moveto -9.553444e+01 1.709995e+01 lineto -9.601947e+01 1.768406e+01 lineto -9.687597e+01 1.865183e+01 lineto -9.637755e+01 1.80516e+01 lineto -closepath -gsave -4.652456e-01 4.652456e-01 5.81557e-01 setrgbcolor -fill -grestore -newpath -9.637755e+01 1.80516e+01 moveto -9.553444e+01 1.709995e+01 lineto -9.601947e+01 1.768406e+01 lineto -9.687597e+01 1.865183e+01 lineto -9.637755e+01 1.80516e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.719095e+01 1.90297e+01 moveto -9.637755e+01 1.80516e+01 lineto -9.687597e+01 1.865183e+01 lineto -9.770229e+01 1.964549e+01 lineto -9.719095e+01 1.90297e+01 lineto -closepath -gsave -4.615258e-01 4.615258e-01 5.769073e-01 setrgbcolor -fill -grestore -newpath -9.719095e+01 1.90297e+01 moveto -9.637755e+01 1.80516e+01 lineto -9.687597e+01 1.865183e+01 lineto -9.770229e+01 1.964549e+01 lineto -9.719095e+01 1.90297e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.62964e+01 4.020012e+00 moveto -6.50042e+01 4.0e+00 lineto -6.500424e+01 4.000079e+00 lineto -6.630867e+01 4.044424e+00 lineto -6.62964e+01 4.020012e+00 lineto -closepath -gsave -6.06282e-01 6.06282e-01 7.578525e-01 setrgbcolor -fill -grestore -newpath -6.62964e+01 4.020012e+00 moveto -6.50042e+01 4.0e+00 lineto -6.500424e+01 4.000079e+00 lineto -6.630867e+01 4.044424e+00 lineto -6.62964e+01 4.020012e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.758737e+01 4.079772e+00 moveto -6.62964e+01 4.020012e+00 lineto -6.630867e+01 4.044424e+00 lineto -6.761187e+01 4.128492e+00 lineto -6.758737e+01 4.079772e+00 lineto -closepath -gsave -6.009345e-01 6.009345e-01 7.511682e-01 setrgbcolor -fill -grestore -newpath -6.758737e+01 4.079772e+00 moveto -6.62964e+01 4.020012e+00 lineto -6.630867e+01 4.044424e+00 lineto -6.761187e+01 4.128492e+00 lineto -6.758737e+01 4.079772e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.887588e+01 4.179221e+00 moveto -6.758737e+01 4.079772e+00 lineto -6.761187e+01 4.128492e+00 lineto -6.891259e+01 4.252205e+00 lineto -6.887588e+01 4.179221e+00 lineto -closepath -gsave -5.955531e-01 5.955531e-01 7.444413e-01 setrgbcolor -fill -grestore -newpath -6.887588e+01 4.179221e+00 moveto -6.758737e+01 4.079772e+00 lineto -6.761187e+01 4.128492e+00 lineto -6.891259e+01 4.252205e+00 lineto -6.887588e+01 4.179221e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.016073e+01 4.318268e+00 moveto -6.887588e+01 4.179221e+00 lineto -6.891259e+01 4.252205e+00 lineto -7.020961e+01 4.415445e+00 lineto -7.016073e+01 4.318268e+00 lineto -closepath -gsave -5.901457e-01 5.901457e-01 7.376821e-01 setrgbcolor -fill -grestore -newpath -7.016073e+01 4.318268e+00 moveto -6.887588e+01 4.179221e+00 lineto -6.891259e+01 4.252205e+00 lineto -7.020961e+01 4.415445e+00 lineto -7.016073e+01 4.318268e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.14407e+01 4.496778e+00 moveto -7.016073e+01 4.318268e+00 lineto -7.020961e+01 4.415445e+00 lineto -7.15017e+01 4.618058e+00 lineto -7.14407e+01 4.496778e+00 lineto -closepath -gsave -5.847206e-01 5.847206e-01 7.309007e-01 setrgbcolor -fill -grestore -newpath -7.14407e+01 4.496778e+00 moveto -7.016073e+01 4.318268e+00 lineto -7.020961e+01 4.415445e+00 lineto -7.15017e+01 4.618058e+00 lineto -7.14407e+01 4.496778e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.271456e+01 4.714585e+00 moveto -7.14407e+01 4.496778e+00 lineto -7.15017e+01 4.618058e+00 lineto -7.278763e+01 4.859851e+00 lineto -7.271456e+01 4.714585e+00 lineto -closepath -gsave -5.792859e-01 5.792859e-01 7.241074e-01 setrgbcolor -fill -grestore -newpath -7.271456e+01 4.714585e+00 moveto -7.14407e+01 4.496778e+00 lineto -7.15017e+01 4.618058e+00 lineto -7.278763e+01 4.859851e+00 lineto -7.271456e+01 4.714585e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.398112e+01 4.97148e+00 moveto -7.271456e+01 4.714585e+00 lineto -7.278763e+01 4.859851e+00 lineto -7.406618e+01 5.140597e+00 lineto -7.398112e+01 4.97148e+00 lineto -closepath -gsave -5.7385e-01 5.7385e-01 7.173125e-01 setrgbcolor -fill -grestore -newpath -7.398112e+01 4.97148e+00 moveto -7.271456e+01 4.714585e+00 lineto -7.278763e+01 4.859851e+00 lineto -7.406618e+01 5.140597e+00 lineto -7.398112e+01 4.97148e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.523918e+01 5.267222e+00 moveto -7.398112e+01 4.97148e+00 lineto -7.406618e+01 5.140597e+00 lineto -7.533615e+01 5.460028e+00 lineto -7.523918e+01 5.267222e+00 lineto -closepath -gsave -5.68421e-01 5.68421e-01 7.105263e-01 setrgbcolor -fill -grestore -newpath -7.523918e+01 5.267222e+00 moveto -7.398112e+01 4.97148e+00 lineto -7.406618e+01 5.140597e+00 lineto -7.533615e+01 5.460028e+00 lineto -7.523918e+01 5.267222e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.648754e+01 5.601531e+00 moveto -7.523918e+01 5.267222e+00 lineto -7.533615e+01 5.460028e+00 lineto -7.659634e+01 5.817843e+00 lineto -7.648754e+01 5.601531e+00 lineto -closepath -gsave -5.630073e-01 5.630073e-01 7.037591e-01 setrgbcolor -fill -grestore -newpath -7.648754e+01 5.601531e+00 moveto -7.523918e+01 5.267222e+00 lineto -7.533615e+01 5.460028e+00 lineto -7.659634e+01 5.817843e+00 lineto -7.648754e+01 5.601531e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.772503e+01 5.974088e+00 moveto -7.648754e+01 5.601531e+00 lineto -7.659634e+01 5.817843e+00 lineto -7.784555e+01 6.213703e+00 lineto -7.772503e+01 5.974088e+00 lineto -closepath -gsave -5.576168e-01 5.576168e-01 6.97021e-01 setrgbcolor -fill -grestore -newpath -7.772503e+01 5.974088e+00 moveto -7.648754e+01 5.601531e+00 lineto -7.659634e+01 5.817843e+00 lineto -7.784555e+01 6.213703e+00 lineto -7.772503e+01 5.974088e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.895047e+01 6.384543e+00 moveto -7.772503e+01 5.974088e+00 lineto -7.784555e+01 6.213703e+00 lineto -7.908259e+01 6.647233e+00 lineto -7.895047e+01 6.384543e+00 lineto -closepath -gsave -5.522578e-01 5.522578e-01 6.903222e-01 setrgbcolor -fill -grestore -newpath -7.895047e+01 6.384543e+00 moveto -7.772503e+01 5.974088e+00 lineto -7.784555e+01 6.213703e+00 lineto -7.908259e+01 6.647233e+00 lineto -7.895047e+01 6.384543e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.01627e+01 6.832506e+00 moveto -7.895047e+01 6.384543e+00 lineto -7.908259e+01 6.647233e+00 lineto -8.03063e+01 7.118023e+00 lineto -8.01627e+01 6.832506e+00 lineto -closepath -gsave -5.469381e-01 5.469381e-01 6.836726e-01 setrgbcolor -fill -grestore -newpath -8.01627e+01 6.832506e+00 moveto -7.895047e+01 6.384543e+00 lineto -7.908259e+01 6.647233e+00 lineto -8.03063e+01 7.118023e+00 lineto -8.01627e+01 6.832506e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.136057e+01 7.317554e+00 moveto -8.01627e+01 6.832506e+00 lineto -8.03063e+01 7.118023e+00 lineto -8.151552e+01 7.625626e+00 lineto -8.136057e+01 7.317554e+00 lineto -closepath -gsave -5.416655e-01 5.416655e-01 6.770819e-01 setrgbcolor -fill -grestore -newpath -8.136057e+01 7.317554e+00 moveto -8.01627e+01 6.832506e+00 lineto -8.03063e+01 7.118023e+00 lineto -8.151552e+01 7.625626e+00 lineto -8.136057e+01 7.317554e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.254296e+01 7.839226e+00 moveto -8.136057e+01 7.317554e+00 lineto -8.151552e+01 7.625626e+00 lineto -8.27091e+01 8.169563e+00 lineto -8.254296e+01 7.839226e+00 lineto -closepath -gsave -5.364477e-01 5.364477e-01 6.705596e-01 setrgbcolor -fill -grestore -newpath -8.254296e+01 7.839226e+00 moveto -8.136057e+01 7.317554e+00 lineto -8.151552e+01 7.625626e+00 lineto -8.27091e+01 8.169563e+00 lineto -8.254296e+01 7.839226e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.370873e+01 8.397029e+00 moveto -8.254296e+01 7.839226e+00 lineto -8.27091e+01 8.169563e+00 lineto -8.388592e+01 8.749318e+00 lineto -8.370873e+01 8.397029e+00 lineto -closepath -gsave -5.31292e-01 5.31292e-01 6.64115e-01 setrgbcolor -fill -grestore -newpath -8.370873e+01 8.397029e+00 moveto -8.254296e+01 7.839226e+00 lineto -8.27091e+01 8.169563e+00 lineto -8.388592e+01 8.749318e+00 lineto -8.370873e+01 8.397029e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.485679e+01 8.990435e+00 moveto -8.370873e+01 8.397029e+00 lineto -8.388592e+01 8.749318e+00 lineto -8.504485e+01 9.364342e+00 lineto -8.485679e+01 8.990435e+00 lineto -closepath -gsave -5.262056e-01 5.262056e-01 6.57757e-01 setrgbcolor -fill -grestore -newpath -8.485679e+01 8.990435e+00 moveto -8.370873e+01 8.397029e+00 lineto -8.388592e+01 8.749318e+00 lineto -8.504485e+01 9.364342e+00 lineto -8.485679e+01 8.990435e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.598605e+01 9.618882e+00 moveto -8.485679e+01 8.990435e+00 lineto -8.504485e+01 9.364342e+00 lineto -8.61848e+01 1.001405e+01 lineto -8.598605e+01 9.618882e+00 lineto -closepath -gsave -5.211954e-01 5.211954e-01 6.514943e-01 setrgbcolor -fill -grestore -newpath -8.598605e+01 9.618882e+00 moveto -8.485679e+01 8.990435e+00 lineto -8.504485e+01 9.364342e+00 lineto -8.61848e+01 1.001405e+01 lineto -8.598605e+01 9.618882e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.709544e+01 1.028177e+01 moveto -8.598605e+01 9.618882e+00 lineto -8.61848e+01 1.001405e+01 lineto -8.73047e+01 1.069784e+01 lineto -8.709544e+01 1.028177e+01 lineto -closepath -gsave -5.16268e-01 5.16268e-01 6.45335e-01 setrgbcolor -fill -grestore -newpath -8.709544e+01 1.028177e+01 moveto -8.598605e+01 9.618882e+00 lineto -8.61848e+01 1.001405e+01 lineto -8.73047e+01 1.069784e+01 lineto -8.709544e+01 1.028177e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.818391e+01 1.097849e+01 moveto -8.709544e+01 1.028177e+01 lineto -8.73047e+01 1.069784e+01 lineto -8.840348e+01 1.141504e+01 lineto -8.818391e+01 1.097849e+01 lineto -closepath -gsave -5.114297e-01 5.114297e-01 6.392872e-01 setrgbcolor -fill -grestore -newpath -8.818391e+01 1.097849e+01 moveto -8.709544e+01 1.028177e+01 lineto -8.73047e+01 1.069784e+01 lineto -8.840348e+01 1.141504e+01 lineto -8.818391e+01 1.097849e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.925043e+01 1.170836e+01 moveto -8.818391e+01 1.097849e+01 lineto -8.840348e+01 1.141504e+01 lineto -8.94801e+01 1.2165e+01 lineto -8.925043e+01 1.170836e+01 lineto -closepath -gsave -5.066865e-01 5.066865e-01 6.333581e-01 setrgbcolor -fill -grestore -newpath -8.925043e+01 1.170836e+01 moveto -8.818391e+01 1.097849e+01 lineto -8.840348e+01 1.141504e+01 lineto -8.94801e+01 1.2165e+01 lineto -8.925043e+01 1.170836e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.029398e+01 1.247069e+01 moveto -8.925043e+01 1.170836e+01 lineto -8.94801e+01 1.2165e+01 lineto -9.053354e+01 1.294698e+01 lineto -9.029398e+01 1.247069e+01 lineto -closepath -gsave -5.020438e-01 5.020438e-01 6.275548e-01 setrgbcolor -fill -grestore -newpath -9.029398e+01 1.247069e+01 moveto -8.925043e+01 1.170836e+01 lineto -8.94801e+01 1.2165e+01 lineto -9.053354e+01 1.294698e+01 lineto -9.029398e+01 1.247069e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.131359e+01 1.326478e+01 moveto -9.029398e+01 1.247069e+01 lineto -9.053354e+01 1.294698e+01 lineto -9.15628e+01 1.376027e+01 lineto -9.131359e+01 1.326478e+01 lineto -closepath -gsave -4.975071e-01 4.975071e-01 6.218839e-01 setrgbcolor -fill -grestore -newpath -9.131359e+01 1.326478e+01 moveto -9.029398e+01 1.247069e+01 lineto -9.053354e+01 1.294698e+01 lineto -9.15628e+01 1.376027e+01 lineto -9.131359e+01 1.326478e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.230829e+01 1.408985e+01 moveto -9.131359e+01 1.326478e+01 lineto -9.15628e+01 1.376027e+01 lineto -9.256692e+01 1.460408e+01 lineto -9.230829e+01 1.408985e+01 lineto -closepath -gsave -4.93081e-01 4.93081e-01 6.163513e-01 setrgbcolor -fill -grestore -newpath -9.230829e+01 1.408985e+01 moveto -9.131359e+01 1.326478e+01 lineto -9.15628e+01 1.376027e+01 lineto -9.256692e+01 1.460408e+01 lineto -9.230829e+01 1.408985e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.327713e+01 1.494515e+01 moveto -9.230829e+01 1.408985e+01 lineto -9.256692e+01 1.460408e+01 lineto -9.354494e+01 1.547761e+01 lineto -9.327713e+01 1.494515e+01 lineto -closepath -gsave -4.8877e-01 4.8877e-01 6.109625e-01 setrgbcolor -fill -grestore -newpath -9.327713e+01 1.494515e+01 moveto -9.230829e+01 1.408985e+01 lineto -9.256692e+01 1.460408e+01 lineto -9.354494e+01 1.547761e+01 lineto -9.327713e+01 1.494515e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.42192e+01 1.582984e+01 moveto -9.327713e+01 1.494515e+01 lineto -9.354494e+01 1.547761e+01 lineto -9.449592e+01 1.638004e+01 lineto -9.42192e+01 1.582984e+01 lineto -closepath -gsave -4.845781e-01 4.845781e-01 6.057226e-01 setrgbcolor -fill -grestore -newpath -9.42192e+01 1.582984e+01 moveto -9.327713e+01 1.494515e+01 lineto -9.354494e+01 1.547761e+01 lineto -9.449592e+01 1.638004e+01 lineto -9.42192e+01 1.582984e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.51336e+01 1.67431e+01 moveto -9.42192e+01 1.582984e+01 lineto -9.449592e+01 1.638004e+01 lineto -9.541899e+01 1.731052e+01 lineto -9.51336e+01 1.67431e+01 lineto -closepath -gsave -4.805088e-01 4.805088e-01 6.00636e-01 setrgbcolor -fill -grestore -newpath -9.51336e+01 1.67431e+01 moveto -9.42192e+01 1.582984e+01 lineto -9.449592e+01 1.638004e+01 lineto -9.541899e+01 1.731052e+01 lineto -9.51336e+01 1.67431e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.601947e+01 1.768406e+01 moveto -9.51336e+01 1.67431e+01 lineto -9.541899e+01 1.731052e+01 lineto -9.631325e+01 1.826816e+01 lineto -9.601947e+01 1.768406e+01 lineto -closepath -gsave -4.765653e-01 4.765653e-01 5.957066e-01 setrgbcolor -fill -grestore -newpath -9.601947e+01 1.768406e+01 moveto -9.51336e+01 1.67431e+01 lineto -9.541899e+01 1.731052e+01 lineto -9.631325e+01 1.826816e+01 lineto -9.601947e+01 1.768406e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.687597e+01 1.865183e+01 moveto -9.601947e+01 1.768406e+01 lineto -9.631325e+01 1.826816e+01 lineto -9.717786e+01 1.925206e+01 lineto -9.687597e+01 1.865183e+01 lineto -closepath -gsave -4.727502e-01 4.727502e-01 5.909377e-01 setrgbcolor -fill -grestore -newpath -9.687597e+01 1.865183e+01 moveto -9.601947e+01 1.768406e+01 lineto -9.631325e+01 1.826816e+01 lineto -9.717786e+01 1.925206e+01 lineto -9.687597e+01 1.865183e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.770229e+01 1.964549e+01 moveto -9.687597e+01 1.865183e+01 lineto -9.717786e+01 1.925206e+01 lineto -9.801201e+01 2.026128e+01 lineto -9.770229e+01 1.964549e+01 lineto -closepath -gsave -4.690657e-01 4.690657e-01 5.863321e-01 setrgbcolor -fill -grestore -newpath -9.770229e+01 1.964549e+01 moveto -9.687597e+01 1.865183e+01 lineto -9.717786e+01 1.925206e+01 lineto -9.801201e+01 2.026128e+01 lineto -9.770229e+01 1.964549e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.849765e+01 2.066411e+01 moveto -9.770229e+01 1.964549e+01 lineto -9.801201e+01 2.026128e+01 lineto -9.88149e+01 2.129487e+01 lineto -9.849765e+01 2.066411e+01 lineto -closepath -gsave -4.655136e-01 4.655136e-01 5.81892e-01 setrgbcolor -fill -grestore -newpath -9.849765e+01 2.066411e+01 moveto -9.770229e+01 1.964549e+01 lineto -9.801201e+01 2.026128e+01 lineto -9.88149e+01 2.129487e+01 lineto -9.849765e+01 2.066411e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.926129e+01 2.170671e+01 moveto -9.849765e+01 2.066411e+01 lineto -9.88149e+01 2.129487e+01 lineto -9.958577e+01 2.235186e+01 lineto -9.926129e+01 2.170671e+01 lineto -closepath -gsave -4.620952e-01 4.620952e-01 5.77619e-01 setrgbcolor -fill -grestore -newpath -9.926129e+01 2.170671e+01 moveto -9.849765e+01 2.066411e+01 lineto -9.88149e+01 2.129487e+01 lineto -9.958577e+01 2.235186e+01 lineto -9.926129e+01 2.170671e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.999249e+01 2.277231e+01 moveto -9.926129e+01 2.170671e+01 lineto -9.958577e+01 2.235186e+01 lineto -1.003239e+02 2.343123e+01 lineto -9.999249e+01 2.277231e+01 lineto -closepath -gsave -4.588115e-01 4.588115e-01 5.735144e-01 setrgbcolor -fill -grestore -newpath -9.999249e+01 2.277231e+01 moveto -9.926129e+01 2.170671e+01 lineto -9.958577e+01 2.235186e+01 lineto -1.003239e+02 2.343123e+01 lineto -9.999249e+01 2.277231e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.006906e+02 2.385991e+01 moveto -9.999249e+01 2.277231e+01 lineto -1.003239e+02 2.343123e+01 lineto -1.010286e+02 2.453197e+01 lineto -1.006906e+02 2.385991e+01 lineto -closepath -gsave -4.556629e-01 4.556629e-01 5.695786e-01 setrgbcolor -fill -grestore -newpath -1.006906e+02 2.385991e+01 moveto -9.999249e+01 2.277231e+01 lineto -1.003239e+02 2.343123e+01 lineto -1.010286e+02 2.453197e+01 lineto -1.006906e+02 2.385991e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.013548e+02 2.496847e+01 moveto -1.006906e+02 2.385991e+01 lineto -1.010286e+02 2.453197e+01 lineto -1.016992e+02 2.565304e+01 lineto -1.013548e+02 2.496847e+01 lineto -closepath -gsave -4.526494e-01 4.526494e-01 5.658117e-01 setrgbcolor -fill -grestore -newpath -1.013548e+02 2.496847e+01 moveto -1.006906e+02 2.385991e+01 lineto -1.010286e+02 2.453197e+01 lineto -1.016992e+02 2.565304e+01 lineto -1.013548e+02 2.496847e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.019847e+02 2.609694e+01 moveto -1.013548e+02 2.496847e+01 lineto -1.016992e+02 2.565304e+01 lineto -1.02335e+02 2.679337e+01 lineto -1.019847e+02 2.609694e+01 lineto -closepath -gsave -4.497706e-01 4.497706e-01 5.622133e-01 setrgbcolor -fill -grestore -newpath -1.019847e+02 2.609694e+01 moveto -1.013548e+02 2.496847e+01 lineto -1.016992e+02 2.565304e+01 lineto -1.02335e+02 2.679337e+01 lineto -1.019847e+02 2.609694e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.025795e+02 2.724426e+01 moveto -1.019847e+02 2.609694e+01 lineto -1.02335e+02 2.679337e+01 lineto -1.029355e+02 2.795189e+01 lineto -1.025795e+02 2.724426e+01 lineto -closepath -gsave -4.470259e-01 4.470259e-01 5.587824e-01 setrgbcolor -fill -grestore -newpath -1.025795e+02 2.724426e+01 moveto -1.019847e+02 2.609694e+01 lineto -1.02335e+02 2.679337e+01 lineto -1.029355e+02 2.795189e+01 lineto -1.025795e+02 2.724426e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.630867e+01 4.044424e+00 moveto -6.500424e+01 4.000079e+00 lineto -6.500425e+01 4.000158e+00 lineto -6.631288e+01 4.068685e+00 lineto -6.630867e+01 4.044424e+00 lineto -closepath -gsave -6.065164e-01 6.065164e-01 7.581455e-01 setrgbcolor -fill -grestore -newpath -6.630867e+01 4.044424e+00 moveto -6.500424e+01 4.000079e+00 lineto -6.500425e+01 4.000158e+00 lineto -6.631288e+01 4.068685e+00 lineto -6.630867e+01 4.044424e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.761187e+01 4.128492e+00 moveto -6.630867e+01 4.044424e+00 lineto -6.631288e+01 4.068685e+00 lineto -6.762027e+01 4.176912e+00 lineto -6.761187e+01 4.128492e+00 lineto -closepath -gsave -6.016313e-01 6.016313e-01 7.520391e-01 setrgbcolor -fill -grestore -newpath -6.761187e+01 4.128492e+00 moveto -6.630867e+01 4.044424e+00 lineto -6.631288e+01 4.068685e+00 lineto -6.762027e+01 4.176912e+00 lineto -6.761187e+01 4.128492e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.891259e+01 4.252205e+00 moveto -6.761187e+01 4.128492e+00 lineto -6.762027e+01 4.176912e+00 lineto -6.892518e+01 4.324739e+00 lineto -6.891259e+01 4.252205e+00 lineto -closepath -gsave -5.96707e-01 5.96707e-01 7.458838e-01 setrgbcolor -fill -grestore -newpath -6.891259e+01 4.252205e+00 moveto -6.761187e+01 4.128492e+00 lineto -6.762027e+01 4.176912e+00 lineto -6.892518e+01 4.324739e+00 lineto -6.891259e+01 4.252205e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.020961e+01 4.415445e+00 moveto -6.891259e+01 4.252205e+00 lineto -6.892518e+01 4.324739e+00 lineto -7.022637e+01 4.512024e+00 lineto -7.020961e+01 4.415445e+00 lineto -closepath -gsave -5.917506e-01 5.917506e-01 7.396883e-01 setrgbcolor -fill -grestore -newpath -7.020961e+01 4.415445e+00 moveto -6.891259e+01 4.252205e+00 lineto -6.892518e+01 4.324739e+00 lineto -7.022637e+01 4.512024e+00 lineto -7.020961e+01 4.415445e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.15017e+01 4.618058e+00 moveto -7.020961e+01 4.415445e+00 lineto -7.022637e+01 4.512024e+00 lineto -7.152261e+01 4.73859e+00 lineto -7.15017e+01 4.618058e+00 lineto -closepath -gsave -5.867692e-01 5.867692e-01 7.334615e-01 setrgbcolor -fill -grestore -newpath -7.15017e+01 4.618058e+00 moveto -7.020961e+01 4.415445e+00 lineto -7.022637e+01 4.512024e+00 lineto -7.152261e+01 4.73859e+00 lineto -7.15017e+01 4.618058e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.278763e+01 4.859851e+00 moveto -7.15017e+01 4.618058e+00 lineto -7.152261e+01 4.73859e+00 lineto -7.281268e+01 5.004222e+00 lineto -7.278763e+01 4.859851e+00 lineto -closepath -gsave -5.817701e-01 5.817701e-01 7.272126e-01 setrgbcolor -fill -grestore -newpath -7.278763e+01 4.859851e+00 moveto -7.15017e+01 4.618058e+00 lineto -7.152261e+01 4.73859e+00 lineto -7.281268e+01 5.004222e+00 lineto -7.278763e+01 4.859851e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.406618e+01 5.140597e+00 moveto -7.278763e+01 4.859851e+00 lineto -7.281268e+01 5.004222e+00 lineto -7.409534e+01 5.30867e+00 lineto -7.406618e+01 5.140597e+00 lineto -closepath -gsave -5.767605e-01 5.767605e-01 7.209507e-01 setrgbcolor -fill -grestore -newpath -7.406618e+01 5.140597e+00 moveto -7.278763e+01 4.859851e+00 lineto -7.281268e+01 5.004222e+00 lineto -7.409534e+01 5.30867e+00 lineto -7.406618e+01 5.140597e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.533615e+01 5.460028e+00 moveto -7.406618e+01 5.140597e+00 lineto -7.409534e+01 5.30867e+00 lineto -7.53694e+01 5.651645e+00 lineto -7.533615e+01 5.460028e+00 lineto -closepath -gsave -5.717478e-01 5.717478e-01 7.146847e-01 setrgbcolor -fill -grestore -newpath -7.533615e+01 5.460028e+00 moveto -7.406618e+01 5.140597e+00 lineto -7.409534e+01 5.30867e+00 lineto -7.53694e+01 5.651645e+00 lineto -7.533615e+01 5.460028e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.659634e+01 5.817843e+00 moveto -7.533615e+01 5.460028e+00 lineto -7.53694e+01 5.651645e+00 lineto -7.663364e+01 6.032822e+00 lineto -7.659634e+01 5.817843e+00 lineto -closepath -gsave -5.667391e-01 5.667391e-01 7.084238e-01 setrgbcolor -fill -grestore -newpath -7.659634e+01 5.817843e+00 moveto -7.533615e+01 5.460028e+00 lineto -7.53694e+01 5.651645e+00 lineto -7.663364e+01 6.032822e+00 lineto -7.659634e+01 5.817843e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.784555e+01 6.213703e+00 moveto -7.659634e+01 5.817843e+00 lineto -7.663364e+01 6.032822e+00 lineto -7.788687e+01 6.45184e+00 lineto -7.784555e+01 6.213703e+00 lineto -closepath -gsave -5.617417e-01 5.617417e-01 7.021772e-01 setrgbcolor -fill -grestore -newpath -7.784555e+01 6.213703e+00 moveto -7.659634e+01 5.817843e+00 lineto -7.663364e+01 6.032822e+00 lineto -7.788687e+01 6.45184e+00 lineto -7.784555e+01 6.213703e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.908259e+01 6.647233e+00 moveto -7.784555e+01 6.213703e+00 lineto -7.788687e+01 6.45184e+00 lineto -7.912789e+01 6.908303e+00 lineto -7.908259e+01 6.647233e+00 lineto -closepath -gsave -5.567629e-01 5.567629e-01 6.959536e-01 setrgbcolor -fill -grestore -newpath -7.908259e+01 6.647233e+00 moveto -7.784555e+01 6.213703e+00 lineto -7.788687e+01 6.45184e+00 lineto -7.912789e+01 6.908303e+00 lineto -7.908259e+01 6.647233e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.03063e+01 7.118023e+00 moveto -7.908259e+01 6.647233e+00 lineto -7.912789e+01 6.908303e+00 lineto -8.035554e+01 7.401779e+00 lineto -8.03063e+01 7.118023e+00 lineto -closepath -gsave -5.518097e-01 5.518097e-01 6.897621e-01 setrgbcolor -fill -grestore -newpath -8.03063e+01 7.118023e+00 moveto -7.908259e+01 6.647233e+00 lineto -7.912789e+01 6.908303e+00 lineto -8.035554e+01 7.401779e+00 lineto -8.03063e+01 7.118023e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.151552e+01 7.625626e+00 moveto -8.03063e+01 7.118023e+00 lineto -8.035554e+01 7.401779e+00 lineto -8.156864e+01 7.931799e+00 lineto -8.151552e+01 7.625626e+00 lineto -closepath -gsave -5.468891e-01 5.468891e-01 6.836114e-01 setrgbcolor -fill -grestore -newpath -8.151552e+01 7.625626e+00 moveto -8.03063e+01 7.118023e+00 lineto -8.035554e+01 7.401779e+00 lineto -8.156864e+01 7.931799e+00 lineto -8.151552e+01 7.625626e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.27091e+01 8.169563e+00 moveto -8.151552e+01 7.625626e+00 lineto -8.156864e+01 7.931799e+00 lineto -8.276606e+01 8.497863e+00 lineto -8.27091e+01 8.169563e+00 lineto -closepath -gsave -5.42008e-01 5.42008e-01 6.775101e-01 setrgbcolor -fill -grestore -newpath -8.27091e+01 8.169563e+00 moveto -8.151552e+01 7.625626e+00 lineto -8.156864e+01 7.931799e+00 lineto -8.276606e+01 8.497863e+00 lineto -8.27091e+01 8.169563e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.388592e+01 8.749318e+00 moveto -8.27091e+01 8.169563e+00 lineto -8.276606e+01 8.497863e+00 lineto -8.394666e+01 9.099434e+00 lineto -8.388592e+01 8.749318e+00 lineto -closepath -gsave -5.371732e-01 5.371732e-01 6.714665e-01 setrgbcolor -fill -grestore -newpath -8.388592e+01 8.749318e+00 moveto -8.27091e+01 8.169563e+00 lineto -8.276606e+01 8.497863e+00 lineto -8.394666e+01 9.099434e+00 lineto -8.388592e+01 8.749318e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.504485e+01 9.364342e+00 moveto -8.388592e+01 8.749318e+00 lineto -8.394666e+01 9.099434e+00 lineto -8.510933e+01 9.735943e+00 lineto -8.504485e+01 9.364342e+00 lineto -closepath -gsave -5.323911e-01 5.323911e-01 6.654889e-01 setrgbcolor -fill -grestore -newpath -8.504485e+01 9.364342e+00 moveto -8.388592e+01 8.749318e+00 lineto -8.394666e+01 9.099434e+00 lineto -8.510933e+01 9.735943e+00 lineto -8.504485e+01 9.364342e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.61848e+01 1.001405e+01 moveto -8.504485e+01 9.364342e+00 lineto -8.510933e+01 9.735943e+00 lineto -8.625295e+01 1.040679e+01 lineto -8.61848e+01 1.001405e+01 lineto -closepath -gsave -5.276681e-01 5.276681e-01 6.595851e-01 setrgbcolor -fill -grestore -newpath -8.61848e+01 1.001405e+01 moveto -8.504485e+01 9.364342e+00 lineto -8.510933e+01 9.735943e+00 lineto -8.625295e+01 1.040679e+01 lineto -8.61848e+01 1.001405e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.73047e+01 1.069784e+01 moveto -8.61848e+01 1.001405e+01 lineto -8.625295e+01 1.040679e+01 lineto -8.737644e+01 1.111133e+01 lineto -8.73047e+01 1.069784e+01 lineto -closepath -gsave -5.230103e-01 5.230103e-01 6.537629e-01 setrgbcolor -fill -grestore -newpath -8.73047e+01 1.069784e+01 moveto -8.61848e+01 1.001405e+01 lineto -8.625295e+01 1.040679e+01 lineto -8.737644e+01 1.111133e+01 lineto -8.73047e+01 1.069784e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.840348e+01 1.141504e+01 moveto -8.73047e+01 1.069784e+01 lineto -8.737644e+01 1.111133e+01 lineto -8.847876e+01 1.184891e+01 lineto -8.840348e+01 1.141504e+01 lineto -closepath -gsave -5.184236e-01 5.184236e-01 6.480295e-01 setrgbcolor -fill -grestore -newpath -8.840348e+01 1.141504e+01 moveto -8.73047e+01 1.069784e+01 lineto -8.737644e+01 1.111133e+01 lineto -8.847876e+01 1.184891e+01 lineto -8.840348e+01 1.141504e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.94801e+01 1.2165e+01 moveto -8.840348e+01 1.141504e+01 lineto -8.847876e+01 1.184891e+01 lineto -8.955884e+01 1.261882e+01 lineto -8.94801e+01 1.2165e+01 lineto -closepath -gsave -5.139136e-01 5.139136e-01 6.42392e-01 setrgbcolor -fill -grestore -newpath -8.94801e+01 1.2165e+01 moveto -8.840348e+01 1.141504e+01 lineto -8.847876e+01 1.184891e+01 lineto -8.955884e+01 1.261882e+01 lineto -8.94801e+01 1.2165e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.053354e+01 1.294698e+01 moveto -8.94801e+01 1.2165e+01 lineto -8.955884e+01 1.261882e+01 lineto -9.061567e+01 1.342034e+01 lineto -9.053354e+01 1.294698e+01 lineto -closepath -gsave -5.094856e-01 5.094856e-01 6.36857e-01 setrgbcolor -fill -grestore -newpath -9.053354e+01 1.294698e+01 moveto -8.94801e+01 1.2165e+01 lineto -8.955884e+01 1.261882e+01 lineto -9.061567e+01 1.342034e+01 lineto -9.053354e+01 1.294698e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.15628e+01 1.376027e+01 moveto -9.053354e+01 1.294698e+01 lineto -9.061567e+01 1.342034e+01 lineto -9.164825e+01 1.42527e+01 lineto -9.15628e+01 1.376027e+01 lineto -closepath -gsave -5.051446e-01 5.051446e-01 6.314308e-01 setrgbcolor -fill -grestore -newpath -9.15628e+01 1.376027e+01 moveto -9.053354e+01 1.294698e+01 lineto -9.061567e+01 1.342034e+01 lineto -9.164825e+01 1.42527e+01 lineto -9.15628e+01 1.376027e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.256692e+01 1.460408e+01 moveto -9.15628e+01 1.376027e+01 lineto -9.164825e+01 1.42527e+01 lineto -9.265559e+01 1.511512e+01 lineto -9.256692e+01 1.460408e+01 lineto -closepath -gsave -5.008954e-01 5.008954e-01 6.261193e-01 setrgbcolor -fill -grestore -newpath -9.256692e+01 1.460408e+01 moveto -9.15628e+01 1.376027e+01 lineto -9.164825e+01 1.42527e+01 lineto -9.265559e+01 1.511512e+01 lineto -9.256692e+01 1.460408e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.354494e+01 1.547761e+01 moveto -9.256692e+01 1.460408e+01 lineto -9.265559e+01 1.511512e+01 lineto -9.363675e+01 1.600679e+01 lineto -9.354494e+01 1.547761e+01 lineto -closepath -gsave -4.967424e-01 4.967424e-01 6.20928e-01 setrgbcolor -fill -grestore -newpath -9.354494e+01 1.547761e+01 moveto -9.256692e+01 1.460408e+01 lineto -9.265559e+01 1.511512e+01 lineto -9.363675e+01 1.600679e+01 lineto -9.354494e+01 1.547761e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.449592e+01 1.638004e+01 moveto -9.354494e+01 1.547761e+01 lineto -9.363675e+01 1.600679e+01 lineto -9.45908e+01 1.692685e+01 lineto -9.449592e+01 1.638004e+01 lineto -closepath -gsave -4.926895e-01 4.926895e-01 6.158619e-01 setrgbcolor -fill -grestore -newpath -9.449592e+01 1.638004e+01 moveto -9.354494e+01 1.547761e+01 lineto -9.363675e+01 1.600679e+01 lineto -9.45908e+01 1.692685e+01 lineto -9.449592e+01 1.638004e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.541899e+01 1.731052e+01 moveto -9.449592e+01 1.638004e+01 lineto -9.45908e+01 1.692685e+01 lineto -9.551683e+01 1.787444e+01 lineto -9.541899e+01 1.731052e+01 lineto -closepath -gsave -4.887405e-01 4.887405e-01 6.109256e-01 setrgbcolor -fill -grestore -newpath -9.541899e+01 1.731052e+01 moveto -9.449592e+01 1.638004e+01 lineto -9.45908e+01 1.692685e+01 lineto -9.551683e+01 1.787444e+01 lineto -9.541899e+01 1.731052e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.631325e+01 1.826816e+01 moveto -9.541899e+01 1.731052e+01 lineto -9.551683e+01 1.787444e+01 lineto -9.641397e+01 1.884866e+01 lineto -9.631325e+01 1.826816e+01 lineto -closepath -gsave -4.848986e-01 4.848986e-01 6.061233e-01 setrgbcolor -fill -grestore -newpath -9.631325e+01 1.826816e+01 moveto -9.541899e+01 1.731052e+01 lineto -9.551683e+01 1.787444e+01 lineto -9.641397e+01 1.884866e+01 lineto -9.631325e+01 1.826816e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.717786e+01 1.925206e+01 moveto -9.631325e+01 1.826816e+01 lineto -9.641397e+01 1.884866e+01 lineto -9.728136e+01 1.984859e+01 lineto -9.717786e+01 1.925206e+01 lineto -closepath -gsave -4.81167e-01 4.81167e-01 6.014587e-01 setrgbcolor -fill -grestore -newpath -9.717786e+01 1.925206e+01 moveto -9.631325e+01 1.826816e+01 lineto -9.641397e+01 1.884866e+01 lineto -9.728136e+01 1.984859e+01 lineto -9.717786e+01 1.925206e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.801201e+01 2.026128e+01 moveto -9.717786e+01 1.925206e+01 lineto -9.728136e+01 1.984859e+01 lineto -9.811819e+01 2.087327e+01 lineto -9.801201e+01 2.026128e+01 lineto -closepath -gsave -4.77548e-01 4.77548e-01 5.96935e-01 setrgbcolor -fill -grestore -newpath -9.801201e+01 2.026128e+01 moveto -9.717786e+01 1.925206e+01 lineto -9.728136e+01 1.984859e+01 lineto -9.811819e+01 2.087327e+01 lineto -9.801201e+01 2.026128e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.88149e+01 2.129487e+01 moveto -9.801201e+01 2.026128e+01 lineto -9.811819e+01 2.087327e+01 lineto -9.892367e+01 2.192175e+01 lineto -9.88149e+01 2.129487e+01 lineto -closepath -gsave -4.74044e-01 4.74044e-01 5.92555e-01 setrgbcolor -fill -grestore -newpath -9.88149e+01 2.129487e+01 moveto -9.801201e+01 2.026128e+01 lineto -9.811819e+01 2.087327e+01 lineto -9.892367e+01 2.192175e+01 lineto -9.88149e+01 2.129487e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.958577e+01 2.235186e+01 moveto -9.88149e+01 2.129487e+01 lineto -9.892367e+01 2.192175e+01 lineto -9.969702e+01 2.299302e+01 lineto -9.958577e+01 2.235186e+01 lineto -closepath -gsave -4.706568e-01 4.706568e-01 5.88321e-01 setrgbcolor -fill -grestore -newpath -9.958577e+01 2.235186e+01 moveto -9.88149e+01 2.129487e+01 lineto -9.892367e+01 2.192175e+01 lineto -9.969702e+01 2.299302e+01 lineto -9.958577e+01 2.235186e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.003239e+02 2.343123e+01 moveto -9.958577e+01 2.235186e+01 lineto -9.969702e+01 2.299302e+01 lineto -1.004375e+02 2.408608e+01 lineto -1.003239e+02 2.343123e+01 lineto -closepath -gsave -4.673879e-01 4.673879e-01 5.842349e-01 setrgbcolor -fill -grestore -newpath -1.003239e+02 2.343123e+01 moveto -9.958577e+01 2.235186e+01 lineto -9.969702e+01 2.299302e+01 lineto -1.004375e+02 2.408608e+01 lineto -1.003239e+02 2.343123e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.010286e+02 2.453197e+01 moveto -1.003239e+02 2.343123e+01 lineto -1.004375e+02 2.408608e+01 lineto -1.011445e+02 2.519989e+01 lineto -1.010286e+02 2.453197e+01 lineto -closepath -gsave -4.642384e-01 4.642384e-01 5.80298e-01 setrgbcolor -fill -grestore -newpath -1.010286e+02 2.453197e+01 moveto -1.003239e+02 2.343123e+01 lineto -1.004375e+02 2.408608e+01 lineto -1.011445e+02 2.519989e+01 lineto -1.010286e+02 2.453197e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.016992e+02 2.565304e+01 moveto -1.010286e+02 2.453197e+01 lineto -1.011445e+02 2.519989e+01 lineto -1.018172e+02 2.633339e+01 lineto -1.016992e+02 2.565304e+01 lineto -closepath -gsave -4.61209e-01 4.61209e-01 5.765113e-01 setrgbcolor -fill -grestore -newpath -1.016992e+02 2.565304e+01 moveto -1.010286e+02 2.453197e+01 lineto -1.011445e+02 2.519989e+01 lineto -1.018172e+02 2.633339e+01 lineto -1.016992e+02 2.565304e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.02335e+02 2.679337e+01 moveto -1.016992e+02 2.565304e+01 lineto -1.018172e+02 2.633339e+01 lineto -1.024551e+02 2.748551e+01 lineto -1.02335e+02 2.679337e+01 lineto -closepath -gsave -4.583002e-01 4.583002e-01 5.728753e-01 setrgbcolor -fill -grestore -newpath -1.02335e+02 2.679337e+01 moveto -1.016992e+02 2.565304e+01 lineto -1.018172e+02 2.633339e+01 lineto -1.024551e+02 2.748551e+01 lineto -1.02335e+02 2.679337e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.029355e+02 2.795189e+01 moveto -1.02335e+02 2.679337e+01 lineto -1.024551e+02 2.748551e+01 lineto -1.030575e+02 2.865516e+01 lineto -1.029355e+02 2.795189e+01 lineto -closepath -gsave -4.55512e-01 4.55512e-01 5.6939e-01 setrgbcolor -fill -grestore -newpath -1.029355e+02 2.795189e+01 moveto -1.02335e+02 2.679337e+01 lineto -1.024551e+02 2.748551e+01 lineto -1.030575e+02 2.865516e+01 lineto -1.029355e+02 2.795189e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.035e+02 2.91275e+01 moveto -1.029355e+02 2.795189e+01 lineto -1.030575e+02 2.865516e+01 lineto -1.036238e+02 2.984123e+01 lineto -1.035e+02 2.91275e+01 lineto -closepath -gsave -4.528441e-01 4.528441e-01 5.660552e-01 setrgbcolor -fill -grestore -newpath -1.035e+02 2.91275e+01 moveto -1.029355e+02 2.795189e+01 lineto -1.030575e+02 2.865516e+01 lineto -1.036238e+02 2.984123e+01 lineto -1.035e+02 2.91275e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.040281e+02 3.031908e+01 moveto -1.035e+02 2.91275e+01 lineto -1.036238e+02 2.984123e+01 lineto -1.041537e+02 3.10426e+01 lineto -1.040281e+02 3.031908e+01 lineto -closepath -gsave -4.50296e-01 4.50296e-01 5.6287e-01 setrgbcolor -fill -grestore -newpath -1.040281e+02 3.031908e+01 moveto -1.035e+02 2.91275e+01 lineto -1.036238e+02 2.984123e+01 lineto -1.041537e+02 3.10426e+01 lineto -1.040281e+02 3.031908e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.045193e+02 3.15255e+01 moveto -1.040281e+02 3.031908e+01 lineto -1.041537e+02 3.10426e+01 lineto -1.046464e+02 3.225813e+01 lineto -1.045193e+02 3.15255e+01 lineto -closepath -gsave -4.478668e-01 4.478668e-01 5.598335e-01 setrgbcolor -fill -grestore -newpath -1.045193e+02 3.15255e+01 moveto -1.040281e+02 3.031908e+01 lineto -1.041537e+02 3.10426e+01 lineto -1.046464e+02 3.225813e+01 lineto -1.045193e+02 3.15255e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.04973e+02 3.274564e+01 moveto -1.045193e+02 3.15255e+01 lineto -1.046464e+02 3.225813e+01 lineto -1.051016e+02 3.348668e+01 lineto -1.04973e+02 3.274564e+01 lineto -closepath -gsave -4.455554e-01 4.455554e-01 5.569442e-01 setrgbcolor -fill -grestore -newpath -1.04973e+02 3.274564e+01 moveto -1.045193e+02 3.15255e+01 lineto -1.046464e+02 3.225813e+01 lineto -1.051016e+02 3.348668e+01 lineto -1.04973e+02 3.274564e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.631288e+01 4.068685e+00 moveto -6.500425e+01 4.000158e+00 lineto -6.500424e+01 4.000236e+00 lineto -6.6309e+01 4.092645e+00 lineto -6.631288e+01 4.068685e+00 lineto -closepath -gsave -6.067658e-01 6.067658e-01 7.584572e-01 setrgbcolor -fill -grestore -newpath -6.631288e+01 4.068685e+00 moveto -6.500425e+01 4.000158e+00 lineto -6.500424e+01 4.000236e+00 lineto -6.6309e+01 4.092645e+00 lineto -6.631288e+01 4.068685e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.762027e+01 4.176912e+00 moveto -6.631288e+01 4.068685e+00 lineto -6.6309e+01 4.092645e+00 lineto -6.761252e+01 4.224734e+00 lineto -6.762027e+01 4.176912e+00 lineto -closepath -gsave -6.023731e-01 6.023731e-01 7.529664e-01 setrgbcolor -fill -grestore -newpath -6.762027e+01 4.176912e+00 moveto -6.631288e+01 4.068685e+00 lineto -6.6309e+01 4.092645e+00 lineto -6.761252e+01 4.224734e+00 lineto -6.762027e+01 4.176912e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.892518e+01 4.324739e+00 moveto -6.762027e+01 4.176912e+00 lineto -6.761252e+01 4.224734e+00 lineto -6.891356e+01 4.396375e+00 lineto -6.892518e+01 4.324739e+00 lineto -closepath -gsave -5.979362e-01 5.979362e-01 7.474202e-01 setrgbcolor -fill -grestore -newpath -6.892518e+01 4.324739e+00 moveto -6.762027e+01 4.176912e+00 lineto -6.761252e+01 4.224734e+00 lineto -6.891356e+01 4.396375e+00 lineto -6.892518e+01 4.324739e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.022637e+01 4.512024e+00 moveto -6.892518e+01 4.324739e+00 lineto -6.891356e+01 4.396375e+00 lineto -7.02109e+01 4.607407e+00 lineto -7.022637e+01 4.512024e+00 lineto -closepath -gsave -5.934611e-01 5.934611e-01 7.418264e-01 setrgbcolor -fill -grestore -newpath -7.022637e+01 4.512024e+00 moveto -6.892518e+01 4.324739e+00 lineto -6.891356e+01 4.396375e+00 lineto -7.02109e+01 4.607407e+00 lineto -7.022637e+01 4.512024e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.152261e+01 4.73859e+00 moveto -7.022637e+01 4.512024e+00 lineto -7.02109e+01 4.607407e+00 lineto -7.150331e+01 4.85763e+00 lineto -7.152261e+01 4.73859e+00 lineto -closepath -gsave -5.889541e-01 5.889541e-01 7.361926e-01 setrgbcolor -fill -grestore -newpath -7.152261e+01 4.73859e+00 moveto -7.022637e+01 4.512024e+00 lineto -7.02109e+01 4.607407e+00 lineto -7.150331e+01 4.85763e+00 lineto -7.152261e+01 4.73859e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.281268e+01 5.004222e+00 moveto -7.152261e+01 4.73859e+00 lineto -7.150331e+01 4.85763e+00 lineto -7.278956e+01 5.146808e+00 lineto -7.281268e+01 5.004222e+00 lineto -closepath -gsave -5.844214e-01 5.844214e-01 7.305267e-01 setrgbcolor -fill -grestore -newpath -7.281268e+01 5.004222e+00 moveto -7.152261e+01 4.73859e+00 lineto -7.150331e+01 4.85763e+00 lineto -7.278956e+01 5.146808e+00 lineto -7.281268e+01 5.004222e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.409534e+01 5.30867e+00 moveto -7.281268e+01 5.004222e+00 lineto -7.278956e+01 5.146808e+00 lineto -7.406843e+01 5.474665e+00 lineto -7.409534e+01 5.30867e+00 lineto -closepath -gsave -5.798692e-01 5.798692e-01 7.248366e-01 setrgbcolor -fill -grestore -newpath -7.409534e+01 5.30867e+00 moveto -7.281268e+01 5.004222e+00 lineto -7.278956e+01 5.146808e+00 lineto -7.406843e+01 5.474665e+00 lineto -7.409534e+01 5.30867e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.53694e+01 5.651645e+00 moveto -7.409534e+01 5.30867e+00 lineto -7.406843e+01 5.474665e+00 lineto -7.533872e+01 5.840892e+00 lineto -7.53694e+01 5.651645e+00 lineto -closepath -gsave -5.753041e-01 5.753041e-01 7.191301e-01 setrgbcolor -fill -grestore -newpath -7.53694e+01 5.651645e+00 moveto -7.409534e+01 5.30867e+00 lineto -7.406843e+01 5.474665e+00 lineto -7.533872e+01 5.840892e+00 lineto -7.53694e+01 5.651645e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.663364e+01 6.032822e+00 moveto -7.53694e+01 5.651645e+00 lineto -7.533872e+01 5.840892e+00 lineto -7.659922e+01 6.245142e+00 lineto -7.663364e+01 6.032822e+00 lineto -closepath -gsave -5.707322e-01 5.707322e-01 7.134153e-01 setrgbcolor -fill -grestore -newpath -7.663364e+01 6.032822e+00 moveto -7.53694e+01 5.651645e+00 lineto -7.533872e+01 5.840892e+00 lineto -7.659922e+01 6.245142e+00 lineto -7.663364e+01 6.032822e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.788687e+01 6.45184e+00 moveto -7.663364e+01 6.032822e+00 lineto -7.659922e+01 6.245142e+00 lineto -7.784873e+01 6.687032e+00 lineto -7.788687e+01 6.45184e+00 lineto -closepath -gsave -5.661601e-01 5.661601e-01 7.077001e-01 setrgbcolor -fill -grestore -newpath -7.788687e+01 6.45184e+00 moveto -7.663364e+01 6.032822e+00 lineto -7.659922e+01 6.245142e+00 lineto -7.784873e+01 6.687032e+00 lineto -7.788687e+01 6.45184e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.912789e+01 6.908303e+00 moveto -7.788687e+01 6.45184e+00 lineto -7.784873e+01 6.687032e+00 lineto -7.908608e+01 7.166145e+00 lineto -7.912789e+01 6.908303e+00 lineto -closepath -gsave -5.615938e-01 5.615938e-01 7.019923e-01 setrgbcolor -fill -grestore -newpath -7.912789e+01 6.908303e+00 moveto -7.788687e+01 6.45184e+00 lineto -7.784873e+01 6.687032e+00 lineto -7.908608e+01 7.166145e+00 lineto -7.912789e+01 6.908303e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.035554e+01 7.401779e+00 moveto -7.912789e+01 6.908303e+00 lineto -7.908608e+01 7.166145e+00 lineto -8.03101e+01 7.682025e+00 lineto -8.035554e+01 7.401779e+00 lineto -closepath -gsave -5.570399e-01 5.570399e-01 6.962999e-01 setrgbcolor -fill -grestore -newpath -8.035554e+01 7.401779e+00 moveto -7.912789e+01 6.908303e+00 lineto -7.908608e+01 7.166145e+00 lineto -8.03101e+01 7.682025e+00 lineto -8.035554e+01 7.401779e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.156864e+01 7.931799e+00 moveto -8.035554e+01 7.401779e+00 lineto -8.03101e+01 7.682025e+00 lineto -8.151962e+01 8.234185e+00 lineto -8.156864e+01 7.931799e+00 lineto -closepath -gsave -5.525044e-01 5.525044e-01 6.906305e-01 setrgbcolor -fill -grestore -newpath -8.156864e+01 7.931799e+00 moveto -8.035554e+01 7.401779e+00 lineto -8.03101e+01 7.682025e+00 lineto -8.151962e+01 8.234185e+00 lineto -8.156864e+01 7.931799e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.276606e+01 8.497863e+00 moveto -8.156864e+01 7.931799e+00 lineto -8.151962e+01 8.234185e+00 lineto -8.271349e+01 8.822103e+00 lineto -8.276606e+01 8.497863e+00 lineto -closepath -gsave -5.479935e-01 5.479935e-01 6.849919e-01 setrgbcolor -fill -grestore -newpath -8.276606e+01 8.497863e+00 moveto -8.156864e+01 7.931799e+00 lineto -8.151962e+01 8.234185e+00 lineto -8.271349e+01 8.822103e+00 lineto -8.276606e+01 8.497863e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.394666e+01 9.099434e+00 moveto -8.276606e+01 8.497863e+00 lineto -8.271349e+01 8.822103e+00 lineto -8.38906e+01 9.445221e+00 lineto -8.394666e+01 9.099434e+00 lineto -closepath -gsave -5.435133e-01 5.435133e-01 6.793916e-01 setrgbcolor -fill -grestore -newpath -8.394666e+01 9.099434e+00 moveto -8.276606e+01 8.497863e+00 lineto -8.271349e+01 8.822103e+00 lineto -8.38906e+01 9.445221e+00 lineto -8.394666e+01 9.099434e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.510933e+01 9.735943e+00 moveto -8.394666e+01 9.099434e+00 lineto -8.38906e+01 9.445221e+00 lineto -8.504982e+01 1.010295e+01 lineto -8.510933e+01 9.735943e+00 lineto -closepath -gsave -5.390696e-01 5.390696e-01 6.73837e-01 setrgbcolor -fill -grestore -newpath -8.510933e+01 9.735943e+00 moveto -8.394666e+01 9.099434e+00 lineto -8.38906e+01 9.445221e+00 lineto -8.504982e+01 1.010295e+01 lineto -8.510933e+01 9.735943e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.625295e+01 1.040679e+01 moveto -8.510933e+01 9.735943e+00 lineto -8.504982e+01 1.010295e+01 lineto -8.619006e+01 1.079466e+01 lineto -8.625295e+01 1.040679e+01 lineto -closepath -gsave -5.346681e-01 5.346681e-01 6.683351e-01 setrgbcolor -fill -grestore -newpath -8.625295e+01 1.040679e+01 moveto -8.510933e+01 9.735943e+00 lineto -8.504982e+01 1.010295e+01 lineto -8.619006e+01 1.079466e+01 lineto -8.625295e+01 1.040679e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.737644e+01 1.111133e+01 moveto -8.625295e+01 1.040679e+01 lineto -8.619006e+01 1.079466e+01 lineto -8.731023e+01 1.151971e+01 lineto -8.737644e+01 1.111133e+01 lineto -closepath -gsave -5.303145e-01 5.303145e-01 6.628932e-01 setrgbcolor -fill -grestore -newpath -8.737644e+01 1.111133e+01 moveto -8.625295e+01 1.040679e+01 lineto -8.619006e+01 1.079466e+01 lineto -8.731023e+01 1.151971e+01 lineto -8.737644e+01 1.111133e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.847876e+01 1.184891e+01 moveto -8.737644e+01 1.111133e+01 lineto -8.731023e+01 1.151971e+01 lineto -8.840928e+01 1.227741e+01 lineto -8.847876e+01 1.184891e+01 lineto -closepath -gsave -5.260143e-01 5.260143e-01 6.575178e-01 setrgbcolor -fill -grestore -newpath -8.847876e+01 1.184891e+01 moveto -8.737644e+01 1.111133e+01 lineto -8.731023e+01 1.151971e+01 lineto -8.840928e+01 1.227741e+01 lineto -8.847876e+01 1.184891e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.955884e+01 1.261882e+01 moveto -8.847876e+01 1.184891e+01 lineto -8.840928e+01 1.227741e+01 lineto -8.948617e+01 1.306703e+01 lineto -8.955884e+01 1.261882e+01 lineto -closepath -gsave -5.217725e-01 5.217725e-01 6.522156e-01 setrgbcolor -fill -grestore -newpath -8.955884e+01 1.261882e+01 moveto -8.847876e+01 1.184891e+01 lineto -8.840928e+01 1.227741e+01 lineto -8.948617e+01 1.306703e+01 lineto -8.955884e+01 1.261882e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.061567e+01 1.342034e+01 moveto -8.955884e+01 1.261882e+01 lineto -8.948617e+01 1.306703e+01 lineto -9.053987e+01 1.388784e+01 lineto -9.061567e+01 1.342034e+01 lineto -closepath -gsave -5.175943e-01 5.175943e-01 6.469929e-01 setrgbcolor -fill -grestore -newpath -9.061567e+01 1.342034e+01 moveto -8.955884e+01 1.261882e+01 lineto -8.948617e+01 1.306703e+01 lineto -9.053987e+01 1.388784e+01 lineto -9.061567e+01 1.342034e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.164825e+01 1.42527e+01 moveto -9.061567e+01 1.342034e+01 lineto -9.053987e+01 1.388784e+01 lineto -9.156939e+01 1.473905e+01 lineto -9.164825e+01 1.42527e+01 lineto -closepath -gsave -5.134844e-01 5.134844e-01 6.418555e-01 setrgbcolor -fill -grestore -newpath -9.164825e+01 1.42527e+01 moveto -9.061567e+01 1.342034e+01 lineto -9.053987e+01 1.388784e+01 lineto -9.156939e+01 1.473905e+01 lineto -9.164825e+01 1.42527e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.265559e+01 1.511512e+01 moveto -9.164825e+01 1.42527e+01 lineto -9.156939e+01 1.473905e+01 lineto -9.257376e+01 1.561985e+01 lineto -9.265559e+01 1.511512e+01 lineto -closepath -gsave -5.094473e-01 5.094473e-01 6.368091e-01 setrgbcolor -fill -grestore -newpath -9.265559e+01 1.511512e+01 moveto -9.164825e+01 1.42527e+01 lineto -9.156939e+01 1.473905e+01 lineto -9.257376e+01 1.561985e+01 lineto -9.265559e+01 1.511512e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.363675e+01 1.600679e+01 moveto -9.265559e+01 1.511512e+01 lineto -9.257376e+01 1.561985e+01 lineto -9.355202e+01 1.652942e+01 lineto -9.363675e+01 1.600679e+01 lineto -closepath -gsave -5.054874e-01 5.054874e-01 6.318592e-01 setrgbcolor -fill -grestore -newpath -9.363675e+01 1.600679e+01 moveto -9.265559e+01 1.511512e+01 lineto -9.257376e+01 1.561985e+01 lineto -9.355202e+01 1.652942e+01 lineto -9.363675e+01 1.600679e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.45908e+01 1.692685e+01 moveto -9.363675e+01 1.600679e+01 lineto -9.355202e+01 1.652942e+01 lineto -9.450324e+01 1.74669e+01 lineto -9.45908e+01 1.692685e+01 lineto -closepath -gsave -5.016086e-01 5.016086e-01 6.270107e-01 setrgbcolor -fill -grestore -newpath -9.45908e+01 1.692685e+01 moveto -9.363675e+01 1.600679e+01 lineto -9.355202e+01 1.652942e+01 lineto -9.450324e+01 1.74669e+01 lineto -9.45908e+01 1.692685e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.551683e+01 1.787444e+01 moveto -9.45908e+01 1.692685e+01 lineto -9.450324e+01 1.74669e+01 lineto -9.542653e+01 1.843139e+01 lineto -9.551683e+01 1.787444e+01 lineto -closepath -gsave -4.978147e-01 4.978147e-01 6.222684e-01 setrgbcolor -fill -grestore -newpath -9.551683e+01 1.787444e+01 moveto -9.45908e+01 1.692685e+01 lineto -9.450324e+01 1.74669e+01 lineto -9.542653e+01 1.843139e+01 lineto -9.551683e+01 1.787444e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.641397e+01 1.884866e+01 moveto -9.551683e+01 1.787444e+01 lineto -9.542653e+01 1.843139e+01 lineto -9.632101e+01 1.942198e+01 lineto -9.641397e+01 1.884866e+01 lineto -closepath -gsave -4.941092e-01 4.941092e-01 6.176365e-01 setrgbcolor -fill -grestore -newpath -9.641397e+01 1.884866e+01 moveto -9.551683e+01 1.787444e+01 lineto -9.542653e+01 1.843139e+01 lineto -9.632101e+01 1.942198e+01 lineto -9.641397e+01 1.884866e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.728136e+01 1.984859e+01 moveto -9.641397e+01 1.884866e+01 lineto -9.632101e+01 1.942198e+01 lineto -9.718584e+01 2.043774e+01 lineto -9.728136e+01 1.984859e+01 lineto -closepath -gsave -4.904952e-01 4.904952e-01 6.13119e-01 setrgbcolor -fill -grestore -newpath -9.728136e+01 1.984859e+01 moveto -9.641397e+01 1.884866e+01 lineto -9.632101e+01 1.942198e+01 lineto -9.718584e+01 2.043774e+01 lineto -9.728136e+01 1.984859e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.811819e+01 2.087327e+01 moveto -9.728136e+01 1.984859e+01 lineto -9.718584e+01 2.043774e+01 lineto -9.802019e+01 2.14777e+01 lineto -9.811819e+01 2.087327e+01 lineto -closepath -gsave -4.869756e-01 4.869756e-01 6.087195e-01 setrgbcolor -fill -grestore -newpath -9.811819e+01 2.087327e+01 moveto -9.728136e+01 1.984859e+01 lineto -9.718584e+01 2.043774e+01 lineto -9.802019e+01 2.14777e+01 lineto -9.811819e+01 2.087327e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.892367e+01 2.192175e+01 moveto -9.811819e+01 2.087327e+01 lineto -9.802019e+01 2.14777e+01 lineto -9.882328e+01 2.254087e+01 lineto -9.892367e+01 2.192175e+01 lineto -closepath -gsave -4.83553e-01 4.83553e-01 6.044413e-01 setrgbcolor -fill -grestore -newpath -9.892367e+01 2.192175e+01 moveto -9.811819e+01 2.087327e+01 lineto -9.802019e+01 2.14777e+01 lineto -9.882328e+01 2.254087e+01 lineto -9.892367e+01 2.192175e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.969702e+01 2.299302e+01 moveto -9.892367e+01 2.192175e+01 lineto -9.882328e+01 2.254087e+01 lineto -9.959435e+01 2.362626e+01 lineto -9.969702e+01 2.299302e+01 lineto -closepath -gsave -4.802296e-01 4.802296e-01 6.002871e-01 setrgbcolor -fill -grestore -newpath -9.969702e+01 2.299302e+01 moveto -9.892367e+01 2.192175e+01 lineto -9.882328e+01 2.254087e+01 lineto -9.959435e+01 2.362626e+01 lineto -9.969702e+01 2.299302e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.004375e+02 2.408608e+01 moveto -9.969702e+01 2.299302e+01 lineto -9.959435e+01 2.362626e+01 lineto -1.003327e+02 2.473283e+01 lineto -1.004375e+02 2.408608e+01 lineto -closepath -gsave -4.770075e-01 4.770075e-01 5.962593e-01 setrgbcolor -fill -grestore -newpath -1.004375e+02 2.408608e+01 moveto -9.969702e+01 2.299302e+01 lineto -9.959435e+01 2.362626e+01 lineto -1.003327e+02 2.473283e+01 lineto -1.004375e+02 2.408608e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.011445e+02 2.519989e+01 moveto -1.004375e+02 2.408608e+01 lineto -1.003327e+02 2.473283e+01 lineto -1.010375e+02 2.585954e+01 lineto -1.011445e+02 2.519989e+01 lineto -closepath -gsave -4.738882e-01 4.738882e-01 5.923602e-01 setrgbcolor -fill -grestore -newpath -1.011445e+02 2.519989e+01 moveto -1.004375e+02 2.408608e+01 lineto -1.003327e+02 2.473283e+01 lineto -1.010375e+02 2.585954e+01 lineto -1.011445e+02 2.519989e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.018172e+02 2.633339e+01 moveto -1.011445e+02 2.519989e+01 lineto -1.010375e+02 2.585954e+01 lineto -1.017083e+02 2.700532e+01 lineto -1.018172e+02 2.633339e+01 lineto -closepath -gsave -4.708731e-01 4.708731e-01 5.885914e-01 setrgbcolor -fill -grestore -newpath -1.018172e+02 2.633339e+01 moveto -1.011445e+02 2.519989e+01 lineto -1.010375e+02 2.585954e+01 lineto -1.017083e+02 2.700532e+01 lineto -1.018172e+02 2.633339e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.024551e+02 2.748551e+01 moveto -1.018172e+02 2.633339e+01 lineto -1.017083e+02 2.700532e+01 lineto -1.023442e+02 2.816908e+01 lineto -1.024551e+02 2.748551e+01 lineto -closepath -gsave -4.679633e-01 4.679633e-01 5.849541e-01 setrgbcolor -fill -grestore -newpath -1.024551e+02 2.748551e+01 moveto -1.018172e+02 2.633339e+01 lineto -1.017083e+02 2.700532e+01 lineto -1.023442e+02 2.816908e+01 lineto -1.024551e+02 2.748551e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.030575e+02 2.865516e+01 moveto -1.024551e+02 2.748551e+01 lineto -1.023442e+02 2.816908e+01 lineto -1.029449e+02 2.934973e+01 lineto -1.030575e+02 2.865516e+01 lineto -closepath -gsave -4.651596e-01 4.651596e-01 5.814495e-01 setrgbcolor -fill -grestore -newpath -1.030575e+02 2.865516e+01 moveto -1.024551e+02 2.748551e+01 lineto -1.023442e+02 2.816908e+01 lineto -1.029449e+02 2.934973e+01 lineto -1.030575e+02 2.865516e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.036238e+02 2.984123e+01 moveto -1.030575e+02 2.865516e+01 lineto -1.029449e+02 2.934973e+01 lineto -1.035096e+02 3.054613e+01 lineto -1.036238e+02 2.984123e+01 lineto -closepath -gsave -4.624625e-01 4.624625e-01 5.780781e-01 setrgbcolor -fill -grestore -newpath -1.036238e+02 2.984123e+01 moveto -1.030575e+02 2.865516e+01 lineto -1.029449e+02 2.934973e+01 lineto -1.035096e+02 3.054613e+01 lineto -1.036238e+02 2.984123e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.041537e+02 3.10426e+01 moveto -1.036238e+02 2.984123e+01 lineto -1.035096e+02 3.054613e+01 lineto -1.040378e+02 3.175717e+01 lineto -1.041537e+02 3.10426e+01 lineto -closepath -gsave -4.598721e-01 4.598721e-01 5.748402e-01 setrgbcolor -fill -grestore -newpath -1.041537e+02 3.10426e+01 moveto -1.036238e+02 2.984123e+01 lineto -1.035096e+02 3.054613e+01 lineto -1.040378e+02 3.175717e+01 lineto -1.041537e+02 3.10426e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.046464e+02 3.225813e+01 moveto -1.041537e+02 3.10426e+01 lineto -1.040378e+02 3.175717e+01 lineto -1.045291e+02 3.29817e+01 lineto -1.046464e+02 3.225813e+01 lineto -closepath -gsave -4.573886e-01 4.573886e-01 5.717357e-01 setrgbcolor -fill -grestore -newpath -1.046464e+02 3.225813e+01 moveto -1.041537e+02 3.10426e+01 lineto -1.040378e+02 3.175717e+01 lineto -1.045291e+02 3.29817e+01 lineto -1.046464e+02 3.225813e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.051016e+02 3.348668e+01 moveto -1.046464e+02 3.225813e+01 lineto -1.045291e+02 3.29817e+01 lineto -1.049829e+02 3.421855e+01 lineto -1.051016e+02 3.348668e+01 lineto -closepath -gsave -4.550115e-01 4.550115e-01 5.687644e-01 setrgbcolor -fill -grestore -newpath -1.051016e+02 3.348668e+01 moveto -1.046464e+02 3.225813e+01 lineto -1.045291e+02 3.29817e+01 lineto -1.049829e+02 3.421855e+01 lineto -1.051016e+02 3.348668e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.6309e+01 4.092645e+00 moveto -6.500424e+01 4.000236e+00 lineto -6.50042e+01 4.000312e+00 lineto -6.629704e+01 4.116158e+00 lineto -6.6309e+01 4.092645e+00 lineto -closepath -gsave -6.070287e-01 6.070287e-01 7.587859e-01 setrgbcolor -fill -grestore -newpath -6.6309e+01 4.092645e+00 moveto -6.500424e+01 4.000236e+00 lineto -6.50042e+01 4.000312e+00 lineto -6.629704e+01 4.116158e+00 lineto -6.6309e+01 4.092645e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.761252e+01 4.224734e+00 moveto -6.6309e+01 4.092645e+00 lineto -6.629704e+01 4.116158e+00 lineto -6.758866e+01 4.271661e+00 lineto -6.761252e+01 4.224734e+00 lineto -closepath -gsave -6.031554e-01 6.031554e-01 7.539443e-01 setrgbcolor -fill -grestore -newpath -6.761252e+01 4.224734e+00 moveto -6.6309e+01 4.092645e+00 lineto -6.629704e+01 4.116158e+00 lineto -6.758866e+01 4.271661e+00 lineto -6.761252e+01 4.224734e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.891356e+01 4.396375e+00 moveto -6.761252e+01 4.224734e+00 lineto -6.758866e+01 4.271661e+00 lineto -6.887782e+01 4.466673e+00 lineto -6.891356e+01 4.396375e+00 lineto -closepath -gsave -5.992332e-01 5.992332e-01 7.490415e-01 setrgbcolor -fill -grestore -newpath -6.891356e+01 4.396375e+00 moveto -6.761252e+01 4.224734e+00 lineto -6.758866e+01 4.271661e+00 lineto -6.887782e+01 4.466673e+00 lineto -6.891356e+01 4.396375e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.02109e+01 4.607407e+00 moveto -6.891356e+01 4.396375e+00 lineto -6.887782e+01 4.466673e+00 lineto -7.016331e+01 4.701009e+00 lineto -7.02109e+01 4.607407e+00 lineto -closepath -gsave -5.952671e-01 5.952671e-01 7.440838e-01 setrgbcolor -fill -grestore -newpath -7.02109e+01 4.607407e+00 moveto -6.891356e+01 4.396375e+00 lineto -6.887782e+01 4.466673e+00 lineto -7.016331e+01 4.701009e+00 lineto -7.02109e+01 4.607407e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.150331e+01 4.85763e+00 moveto -7.02109e+01 4.607407e+00 lineto -7.016331e+01 4.701009e+00 lineto -7.144391e+01 4.974447e+00 lineto -7.150331e+01 4.85763e+00 lineto -closepath -gsave -5.912624e-01 5.912624e-01 7.39078e-01 setrgbcolor -fill -grestore -newpath -7.150331e+01 4.85763e+00 moveto -7.02109e+01 4.607407e+00 lineto -7.016331e+01 4.701009e+00 lineto -7.144391e+01 4.974447e+00 lineto -7.150331e+01 4.85763e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.278956e+01 5.146808e+00 moveto -7.150331e+01 4.85763e+00 lineto -7.144391e+01 4.974447e+00 lineto -7.271841e+01 5.286728e+00 lineto -7.278956e+01 5.146808e+00 lineto -closepath -gsave -5.872244e-01 5.872244e-01 7.340305e-01 setrgbcolor -fill -grestore -newpath -7.278956e+01 5.146808e+00 moveto -7.150331e+01 4.85763e+00 lineto -7.144391e+01 4.974447e+00 lineto -7.271841e+01 5.286728e+00 lineto -7.278956e+01 5.146808e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.406843e+01 5.474665e+00 moveto -7.278956e+01 5.146808e+00 lineto -7.271841e+01 5.286728e+00 lineto -7.398561e+01 5.637557e+00 lineto -7.406843e+01 5.474665e+00 lineto -closepath -gsave -5.831586e-01 5.831586e-01 7.289483e-01 setrgbcolor -fill -grestore -newpath -7.406843e+01 5.474665e+00 moveto -7.278956e+01 5.146808e+00 lineto -7.271841e+01 5.286728e+00 lineto -7.398561e+01 5.637557e+00 lineto -7.406843e+01 5.474665e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.533872e+01 5.840892e+00 moveto -7.406843e+01 5.474665e+00 lineto -7.398561e+01 5.637557e+00 lineto -7.524429e+01 6.026602e+00 lineto -7.533872e+01 5.840892e+00 lineto -closepath -gsave -5.790704e-01 5.790704e-01 7.23838e-01 setrgbcolor -fill -grestore -newpath -7.533872e+01 5.840892e+00 moveto -7.406843e+01 5.474665e+00 lineto -7.398561e+01 5.637557e+00 lineto -7.524429e+01 6.026602e+00 lineto -7.533872e+01 5.840892e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.659922e+01 6.245142e+00 moveto -7.533872e+01 5.840892e+00 lineto -7.524429e+01 6.026602e+00 lineto -7.649328e+01 6.453494e+00 lineto -7.659922e+01 6.245142e+00 lineto -closepath -gsave -5.749651e-01 5.749651e-01 7.187064e-01 setrgbcolor -fill -grestore -newpath -7.659922e+01 6.245142e+00 moveto -7.533872e+01 5.840892e+00 lineto -7.524429e+01 6.026602e+00 lineto -7.649328e+01 6.453494e+00 lineto -7.659922e+01 6.245142e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.784873e+01 6.687032e+00 moveto -7.659922e+01 6.245142e+00 lineto -7.649328e+01 6.453494e+00 lineto -7.773138e+01 6.917829e+00 lineto -7.784873e+01 6.687032e+00 lineto -closepath -gsave -5.708484e-01 5.708484e-01 7.135605e-01 setrgbcolor -fill -grestore -newpath -7.784873e+01 6.687032e+00 moveto -7.659922e+01 6.245142e+00 lineto -7.649328e+01 6.453494e+00 lineto -7.773138e+01 6.917829e+00 lineto -7.784873e+01 6.687032e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.908608e+01 7.166145e+00 moveto -7.784873e+01 6.687032e+00 lineto -7.773138e+01 6.917829e+00 lineto -7.895743e+01 7.419167e+00 lineto -7.908608e+01 7.166145e+00 lineto -closepath -gsave -5.667256e-01 5.667256e-01 7.08407e-01 setrgbcolor -fill -grestore -newpath -7.908608e+01 7.166145e+00 moveto -7.784873e+01 6.687032e+00 lineto -7.773138e+01 6.917829e+00 lineto -7.895743e+01 7.419167e+00 lineto -7.908608e+01 7.166145e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.03101e+01 7.682025e+00 moveto -7.908608e+01 7.166145e+00 lineto -7.895743e+01 7.419167e+00 lineto -8.017027e+01 7.957034e+00 lineto -8.03101e+01 7.682025e+00 lineto -closepath -gsave -5.626023e-01 5.626023e-01 7.032529e-01 setrgbcolor -fill -grestore -newpath -8.03101e+01 7.682025e+00 moveto -7.908608e+01 7.166145e+00 lineto -7.895743e+01 7.419167e+00 lineto -8.017027e+01 7.957034e+00 lineto -8.03101e+01 7.682025e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.151962e+01 8.234185e+00 moveto -8.03101e+01 7.682025e+00 lineto -8.017027e+01 7.957034e+00 lineto -8.136874e+01 8.53092e+00 lineto -8.151962e+01 8.234185e+00 lineto -closepath -gsave -5.584839e-01 5.584839e-01 6.981048e-01 setrgbcolor -fill -grestore -newpath -8.151962e+01 8.234185e+00 moveto -8.03101e+01 7.682025e+00 lineto -8.017027e+01 7.957034e+00 lineto -8.136874e+01 8.53092e+00 lineto -8.151962e+01 8.234185e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.271349e+01 8.822103e+00 moveto -8.151962e+01 8.234185e+00 lineto -8.136874e+01 8.53092e+00 lineto -8.255171e+01 9.140283e+00 lineto -8.271349e+01 8.822103e+00 lineto -closepath -gsave -5.543757e-01 5.543757e-01 6.929696e-01 setrgbcolor -fill -grestore -newpath -8.271349e+01 8.822103e+00 moveto -8.151962e+01 8.234185e+00 lineto -8.136874e+01 8.53092e+00 lineto -8.255171e+01 9.140283e+00 lineto -8.271349e+01 8.822103e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.38906e+01 9.445221e+00 moveto -8.271349e+01 8.822103e+00 lineto -8.255171e+01 9.140283e+00 lineto -8.371807e+01 9.784544e+00 lineto -8.38906e+01 9.445221e+00 lineto -closepath -gsave -5.50283e-01 5.50283e-01 6.878538e-01 setrgbcolor -fill -grestore -newpath -8.38906e+01 9.445221e+00 moveto -8.271349e+01 8.822103e+00 lineto -8.255171e+01 9.140283e+00 lineto -8.371807e+01 9.784544e+00 lineto -8.38906e+01 9.445221e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.504982e+01 1.010295e+01 moveto -8.38906e+01 9.445221e+00 lineto -8.371807e+01 9.784544e+00 lineto -8.48667e+01 1.04631e+01 lineto -8.504982e+01 1.010295e+01 lineto -closepath -gsave -5.462113e-01 5.462113e-01 6.827641e-01 setrgbcolor -fill -grestore -newpath -8.504982e+01 1.010295e+01 moveto -8.38906e+01 9.445221e+00 lineto -8.371807e+01 9.784544e+00 lineto -8.48667e+01 1.04631e+01 lineto -8.504982e+01 1.010295e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.619006e+01 1.079466e+01 moveto -8.504982e+01 1.010295e+01 lineto -8.48667e+01 1.04631e+01 lineto -8.599653e+01 1.117529e+01 lineto -8.619006e+01 1.079466e+01 lineto -closepath -gsave -5.421655e-01 5.421655e-01 6.777069e-01 setrgbcolor -fill -grestore -newpath -8.619006e+01 1.079466e+01 moveto -8.504982e+01 1.010295e+01 lineto -8.48667e+01 1.04631e+01 lineto -8.599653e+01 1.117529e+01 lineto -8.619006e+01 1.079466e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.731023e+01 1.151971e+01 moveto -8.619006e+01 1.079466e+01 lineto -8.599653e+01 1.117529e+01 lineto -8.710647e+01 1.192046e+01 lineto -8.731023e+01 1.151971e+01 lineto -closepath -gsave -5.381507e-01 5.381507e-01 6.726884e-01 setrgbcolor -fill -grestore -newpath -8.731023e+01 1.151971e+01 moveto -8.619006e+01 1.079466e+01 lineto -8.599653e+01 1.117529e+01 lineto -8.710647e+01 1.192046e+01 lineto -8.731023e+01 1.151971e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.840928e+01 1.227741e+01 moveto -8.731023e+01 1.151971e+01 lineto -8.710647e+01 1.192046e+01 lineto -8.819548e+01 1.26979e+01 lineto -8.840928e+01 1.227741e+01 lineto -closepath -gsave -5.34172e-01 5.34172e-01 6.67715e-01 setrgbcolor -fill -grestore -newpath -8.840928e+01 1.227741e+01 moveto -8.731023e+01 1.151971e+01 lineto -8.710647e+01 1.192046e+01 lineto -8.819548e+01 1.26979e+01 lineto -8.840928e+01 1.227741e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.948617e+01 1.306703e+01 moveto -8.840928e+01 1.227741e+01 lineto -8.819548e+01 1.26979e+01 lineto -8.926253e+01 1.350687e+01 lineto -8.948617e+01 1.306703e+01 lineto -closepath -gsave -5.30234e-01 5.30234e-01 6.627925e-01 setrgbcolor -fill -grestore -newpath -8.948617e+01 1.306703e+01 moveto -8.840928e+01 1.227741e+01 lineto -8.819548e+01 1.26979e+01 lineto -8.926253e+01 1.350687e+01 lineto -8.948617e+01 1.306703e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.053987e+01 1.388784e+01 moveto -8.948617e+01 1.306703e+01 lineto -8.926253e+01 1.350687e+01 lineto -9.030661e+01 1.43466e+01 lineto -9.053987e+01 1.388784e+01 lineto -closepath -gsave -5.263414e-01 5.263414e-01 6.579268e-01 setrgbcolor -fill -grestore -newpath -9.053987e+01 1.388784e+01 moveto -8.948617e+01 1.306703e+01 lineto -8.926253e+01 1.350687e+01 lineto -9.030661e+01 1.43466e+01 lineto -9.053987e+01 1.388784e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.156939e+01 1.473905e+01 moveto -9.053987e+01 1.388784e+01 lineto -9.030661e+01 1.43466e+01 lineto -9.132673e+01 1.52163e+01 lineto -9.156939e+01 1.473905e+01 lineto -closepath -gsave -5.224987e-01 5.224987e-01 6.531234e-01 setrgbcolor -fill -grestore -newpath -9.156939e+01 1.473905e+01 moveto -9.053987e+01 1.388784e+01 lineto -9.030661e+01 1.43466e+01 lineto -9.132673e+01 1.52163e+01 lineto -9.156939e+01 1.473905e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.257376e+01 1.561985e+01 moveto -9.156939e+01 1.473905e+01 lineto -9.132673e+01 1.52163e+01 lineto -9.232192e+01 1.611515e+01 lineto -9.257376e+01 1.561985e+01 lineto -closepath -gsave -5.187103e-01 5.187103e-01 6.483878e-01 setrgbcolor -fill -grestore -newpath -9.257376e+01 1.561985e+01 moveto -9.156939e+01 1.473905e+01 lineto -9.132673e+01 1.52163e+01 lineto -9.232192e+01 1.611515e+01 lineto -9.257376e+01 1.561985e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.355202e+01 1.652942e+01 moveto -9.257376e+01 1.561985e+01 lineto -9.232192e+01 1.611515e+01 lineto -9.329125e+01 1.704229e+01 lineto -9.355202e+01 1.652942e+01 lineto -closepath -gsave -5.149801e-01 5.149801e-01 6.437251e-01 setrgbcolor -fill -grestore -newpath -9.355202e+01 1.652942e+01 moveto -9.257376e+01 1.561985e+01 lineto -9.232192e+01 1.611515e+01 lineto -9.329125e+01 1.704229e+01 lineto -9.355202e+01 1.652942e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.450324e+01 1.74669e+01 moveto -9.355202e+01 1.652942e+01 lineto -9.329125e+01 1.704229e+01 lineto -9.423378e+01 1.799685e+01 lineto -9.450324e+01 1.74669e+01 lineto -closepath -gsave -5.113122e-01 5.113122e-01 6.391403e-01 setrgbcolor -fill -grestore -newpath -9.450324e+01 1.74669e+01 moveto -9.355202e+01 1.652942e+01 lineto -9.329125e+01 1.704229e+01 lineto -9.423378e+01 1.799685e+01 lineto -9.450324e+01 1.74669e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.542653e+01 1.843139e+01 moveto -9.450324e+01 1.74669e+01 lineto -9.423378e+01 1.799685e+01 lineto -9.514864e+01 1.897793e+01 lineto -9.542653e+01 1.843139e+01 lineto -closepath -gsave -5.077103e-01 5.077103e-01 6.346379e-01 setrgbcolor -fill -grestore -newpath -9.542653e+01 1.843139e+01 moveto -9.450324e+01 1.74669e+01 lineto -9.423378e+01 1.799685e+01 lineto -9.514864e+01 1.897793e+01 lineto -9.542653e+01 1.843139e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.632101e+01 1.942198e+01 moveto -9.542653e+01 1.843139e+01 lineto -9.514864e+01 1.897793e+01 lineto -9.603495e+01 1.998459e+01 lineto -9.632101e+01 1.942198e+01 lineto -closepath -gsave -5.041779e-01 5.041779e-01 6.302224e-01 setrgbcolor -fill -grestore -newpath -9.632101e+01 1.942198e+01 moveto -9.542653e+01 1.843139e+01 lineto -9.514864e+01 1.897793e+01 lineto -9.603495e+01 1.998459e+01 lineto -9.632101e+01 1.942198e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.718584e+01 2.043774e+01 moveto -9.632101e+01 1.942198e+01 lineto -9.603495e+01 1.998459e+01 lineto -9.689188e+01 2.101588e+01 lineto -9.718584e+01 2.043774e+01 lineto -closepath -gsave -5.007182e-01 5.007182e-01 6.258978e-01 setrgbcolor -fill -grestore -newpath -9.718584e+01 2.043774e+01 moveto -9.632101e+01 1.942198e+01 lineto -9.603495e+01 1.998459e+01 lineto -9.689188e+01 2.101588e+01 lineto -9.718584e+01 2.043774e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.802019e+01 2.14777e+01 moveto -9.718584e+01 2.043774e+01 lineto -9.689188e+01 2.101588e+01 lineto -9.771862e+01 2.207082e+01 lineto -9.802019e+01 2.14777e+01 lineto -closepath -gsave -4.973344e-01 4.973344e-01 6.21668e-01 setrgbcolor -fill -grestore -newpath -9.802019e+01 2.14777e+01 moveto -9.718584e+01 2.043774e+01 lineto -9.689188e+01 2.101588e+01 lineto -9.771862e+01 2.207082e+01 lineto -9.802019e+01 2.14777e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.882328e+01 2.254087e+01 moveto -9.802019e+01 2.14777e+01 lineto -9.771862e+01 2.207082e+01 lineto -9.851437e+01 2.314843e+01 lineto -9.882328e+01 2.254087e+01 lineto -closepath -gsave -4.940292e-01 4.940292e-01 6.175364e-01 setrgbcolor -fill -grestore -newpath -9.882328e+01 2.254087e+01 moveto -9.802019e+01 2.14777e+01 lineto -9.771862e+01 2.207082e+01 lineto -9.851437e+01 2.314843e+01 lineto -9.882328e+01 2.254087e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.959435e+01 2.362626e+01 moveto -9.882328e+01 2.254087e+01 lineto -9.851437e+01 2.314843e+01 lineto -9.927839e+01 2.424767e+01 lineto -9.959435e+01 2.362626e+01 lineto -closepath -gsave -4.908051e-01 4.908051e-01 6.135064e-01 setrgbcolor -fill -grestore -newpath -9.959435e+01 2.362626e+01 moveto -9.882328e+01 2.254087e+01 lineto -9.851437e+01 2.314843e+01 lineto -9.927839e+01 2.424767e+01 lineto -9.959435e+01 2.362626e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.003327e+02 2.473283e+01 moveto -9.959435e+01 2.362626e+01 lineto -9.927839e+01 2.424767e+01 lineto -1.0001e+02 2.53675e+01 lineto -1.003327e+02 2.473283e+01 lineto -closepath -gsave -4.876647e-01 4.876647e-01 6.095808e-01 setrgbcolor -fill -grestore -newpath -1.003327e+02 2.473283e+01 moveto -9.959435e+01 2.362626e+01 lineto -9.927839e+01 2.424767e+01 lineto -1.0001e+02 2.53675e+01 lineto -1.003327e+02 2.473283e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.010375e+02 2.585954e+01 moveto -1.003327e+02 2.473283e+01 lineto -1.0001e+02 2.53675e+01 lineto -1.007084e+02 2.650687e+01 lineto -1.010375e+02 2.585954e+01 lineto -closepath -gsave -4.846099e-01 4.846099e-01 6.057623e-01 setrgbcolor -fill -grestore -newpath -1.010375e+02 2.585954e+01 moveto -1.003327e+02 2.473283e+01 lineto -1.0001e+02 2.53675e+01 lineto -1.007084e+02 2.650687e+01 lineto -1.010375e+02 2.585954e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.017083e+02 2.700532e+01 moveto -1.010375e+02 2.585954e+01 lineto -1.007084e+02 2.650687e+01 lineto -1.01373e+02 2.766469e+01 lineto -1.017083e+02 2.700532e+01 lineto -closepath -gsave -4.816425e-01 4.816425e-01 6.020532e-01 setrgbcolor -fill -grestore -newpath -1.017083e+02 2.700532e+01 moveto -1.010375e+02 2.585954e+01 lineto -1.007084e+02 2.650687e+01 lineto -1.01373e+02 2.766469e+01 lineto -1.017083e+02 2.700532e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.023442e+02 2.816908e+01 moveto -1.017083e+02 2.700532e+01 lineto -1.01373e+02 2.766469e+01 lineto -1.020032e+02 2.883988e+01 lineto -1.023442e+02 2.816908e+01 lineto -closepath -gsave -4.787644e-01 4.787644e-01 5.984554e-01 setrgbcolor -fill -grestore -newpath -1.023442e+02 2.816908e+01 moveto -1.017083e+02 2.700532e+01 lineto -1.01373e+02 2.766469e+01 lineto -1.020032e+02 2.883988e+01 lineto -1.023442e+02 2.816908e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.029449e+02 2.934973e+01 moveto -1.023442e+02 2.816908e+01 lineto -1.020032e+02 2.883988e+01 lineto -1.025983e+02 3.003131e+01 lineto -1.029449e+02 2.934973e+01 lineto -closepath -gsave -4.759767e-01 4.759767e-01 5.949708e-01 setrgbcolor -fill -grestore -newpath -1.029449e+02 2.934973e+01 moveto -1.023442e+02 2.816908e+01 lineto -1.020032e+02 2.883988e+01 lineto -1.025983e+02 3.003131e+01 lineto -1.029449e+02 2.934973e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.035096e+02 3.054613e+01 moveto -1.029449e+02 2.934973e+01 lineto -1.025983e+02 3.003131e+01 lineto -1.031578e+02 3.123786e+01 lineto -1.035096e+02 3.054613e+01 lineto -closepath -gsave -4.732806e-01 4.732806e-01 5.916008e-01 setrgbcolor -fill -grestore -newpath -1.035096e+02 3.054613e+01 moveto -1.029449e+02 2.934973e+01 lineto -1.025983e+02 3.003131e+01 lineto -1.031578e+02 3.123786e+01 lineto -1.035096e+02 3.054613e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.040378e+02 3.175717e+01 moveto -1.035096e+02 3.054613e+01 lineto -1.031578e+02 3.123786e+01 lineto -1.036813e+02 3.245839e+01 lineto -1.040378e+02 3.175717e+01 lineto -closepath -gsave -4.706771e-01 4.706771e-01 5.883464e-01 setrgbcolor -fill -grestore -newpath -1.040378e+02 3.175717e+01 moveto -1.035096e+02 3.054613e+01 lineto -1.031578e+02 3.123786e+01 lineto -1.036813e+02 3.245839e+01 lineto -1.040378e+02 3.175717e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.045291e+02 3.29817e+01 moveto -1.040378e+02 3.175717e+01 lineto -1.036813e+02 3.245839e+01 lineto -1.04168e+02 3.369174e+01 lineto -1.045291e+02 3.29817e+01 lineto -closepath -gsave -4.681669e-01 4.681669e-01 5.852086e-01 setrgbcolor -fill -grestore -newpath -1.045291e+02 3.29817e+01 moveto -1.040378e+02 3.175717e+01 lineto -1.036813e+02 3.245839e+01 lineto -1.04168e+02 3.369174e+01 lineto -1.045291e+02 3.29817e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.049829e+02 3.421855e+01 moveto -1.045291e+02 3.29817e+01 lineto -1.04168e+02 3.369174e+01 lineto -1.046177e+02 3.493675e+01 lineto -1.049829e+02 3.421855e+01 lineto -closepath -gsave -4.657503e-01 4.657503e-01 5.821879e-01 setrgbcolor -fill -grestore -newpath -1.049829e+02 3.421855e+01 moveto -1.045291e+02 3.29817e+01 lineto -1.04168e+02 3.369174e+01 lineto -1.046177e+02 3.493675e+01 lineto -1.049829e+02 3.421855e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.629704e+01 4.116158e+00 moveto -6.50042e+01 4.000312e+00 lineto -6.500414e+01 4.000386e+00 lineto -6.627709e+01 4.139079e+00 lineto -6.629704e+01 4.116158e+00 lineto -closepath -gsave -6.073035e-01 6.073035e-01 7.591293e-01 setrgbcolor -fill -grestore -newpath -6.629704e+01 4.116158e+00 moveto -6.50042e+01 4.000312e+00 lineto -6.500414e+01 4.000386e+00 lineto -6.627709e+01 4.139079e+00 lineto -6.629704e+01 4.116158e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.758866e+01 4.271661e+00 moveto -6.629704e+01 4.116158e+00 lineto -6.627709e+01 4.139079e+00 lineto -6.754884e+01 4.317406e+00 lineto -6.758866e+01 4.271661e+00 lineto -closepath -gsave -6.039735e-01 6.039735e-01 7.549669e-01 setrgbcolor -fill -grestore -newpath -6.758866e+01 4.271661e+00 moveto -6.629704e+01 4.116158e+00 lineto -6.627709e+01 4.139079e+00 lineto -6.754884e+01 4.317406e+00 lineto -6.758866e+01 4.271661e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.887782e+01 4.466673e+00 moveto -6.758866e+01 4.271661e+00 lineto -6.754884e+01 4.317406e+00 lineto -6.881817e+01 4.535198e+00 lineto -6.887782e+01 4.466673e+00 lineto -closepath -gsave -6.005902e-01 6.005902e-01 7.507377e-01 setrgbcolor -fill -grestore -newpath -6.887782e+01 4.466673e+00 moveto -6.758866e+01 4.271661e+00 lineto -6.754884e+01 4.317406e+00 lineto -6.881817e+01 4.535198e+00 lineto -6.887782e+01 4.466673e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.016331e+01 4.701009e+00 moveto -6.887782e+01 4.466673e+00 lineto -6.881817e+01 4.535198e+00 lineto -7.008389e+01 4.79225e+00 lineto -7.016331e+01 4.701009e+00 lineto -closepath -gsave -5.971577e-01 5.971577e-01 7.464472e-01 setrgbcolor -fill -grestore -newpath -7.016331e+01 4.701009e+00 moveto -6.887782e+01 4.466673e+00 lineto -6.881817e+01 4.535198e+00 lineto -7.008389e+01 4.79225e+00 lineto -7.016331e+01 4.701009e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.144391e+01 4.974447e+00 moveto -7.016331e+01 4.701009e+00 lineto -7.008389e+01 4.79225e+00 lineto -7.134479e+01 5.088318e+00 lineto -7.144391e+01 4.974447e+00 lineto -closepath -gsave -5.936805e-01 5.936805e-01 7.421007e-01 setrgbcolor -fill -grestore -newpath -7.144391e+01 4.974447e+00 moveto -7.016331e+01 4.701009e+00 lineto -7.008389e+01 4.79225e+00 lineto -7.134479e+01 5.088318e+00 lineto -7.144391e+01 4.974447e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.271841e+01 5.286728e+00 moveto -7.144391e+01 4.974447e+00 lineto -7.134479e+01 5.088318e+00 lineto -7.259968e+01 5.423121e+00 lineto -7.271841e+01 5.286728e+00 lineto -closepath -gsave -5.90163e-01 5.90163e-01 7.377038e-01 setrgbcolor -fill -grestore -newpath -7.271841e+01 5.286728e+00 moveto -7.144391e+01 4.974447e+00 lineto -7.134479e+01 5.088318e+00 lineto -7.259968e+01 5.423121e+00 lineto -7.271841e+01 5.286728e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.398561e+01 5.637557e+00 moveto -7.271841e+01 5.286728e+00 lineto -7.259968e+01 5.423121e+00 lineto -7.384738e+01 5.796343e+00 lineto -7.398561e+01 5.637557e+00 lineto -closepath -gsave -5.866098e-01 5.866098e-01 7.332622e-01 setrgbcolor -fill -grestore -newpath -7.398561e+01 5.637557e+00 moveto -7.271841e+01 5.286728e+00 lineto -7.259968e+01 5.423121e+00 lineto -7.384738e+01 5.796343e+00 lineto -7.398561e+01 5.637557e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.524429e+01 6.026602e+00 moveto -7.398561e+01 5.637557e+00 lineto -7.384738e+01 5.796343e+00 lineto -7.508671e+01 6.20763e+00 lineto -7.524429e+01 6.026602e+00 lineto -closepath -gsave -5.830252e-01 5.830252e-01 7.287815e-01 setrgbcolor -fill -grestore -newpath -7.524429e+01 6.026602e+00 moveto -7.398561e+01 5.637557e+00 lineto -7.384738e+01 5.796343e+00 lineto -7.508671e+01 6.20763e+00 lineto -7.524429e+01 6.026602e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.649328e+01 6.453494e+00 moveto -7.524429e+01 6.026602e+00 lineto -7.508671e+01 6.20763e+00 lineto -7.631648e+01 6.656593e+00 lineto -7.649328e+01 6.453494e+00 lineto -closepath -gsave -5.794141e-01 5.794141e-01 7.242676e-01 setrgbcolor -fill -grestore -newpath -7.649328e+01 6.453494e+00 moveto -7.524429e+01 6.026602e+00 lineto -7.508671e+01 6.20763e+00 lineto -7.631648e+01 6.656593e+00 lineto -7.649328e+01 6.453494e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.773138e+01 6.917829e+00 moveto -7.649328e+01 6.453494e+00 lineto -7.631648e+01 6.656593e+00 lineto -7.753554e+01 7.142807e+00 lineto -7.773138e+01 6.917829e+00 lineto -closepath -gsave -5.757809e-01 5.757809e-01 7.197261e-01 setrgbcolor -fill -grestore -newpath -7.773138e+01 6.917829e+00 moveto -7.649328e+01 6.453494e+00 lineto -7.631648e+01 6.656593e+00 lineto -7.753554e+01 7.142807e+00 lineto -7.773138e+01 6.917829e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.895743e+01 7.419167e+00 moveto -7.773138e+01 6.917829e+00 lineto -7.753554e+01 7.142807e+00 lineto -7.874273e+01 7.66581e+00 lineto -7.895743e+01 7.419167e+00 lineto -closepath -gsave -5.721304e-01 5.721304e-01 7.15163e-01 setrgbcolor -fill -grestore -newpath -7.895743e+01 7.419167e+00 moveto -7.773138e+01 6.917829e+00 lineto -7.753554e+01 7.142807e+00 lineto -7.874273e+01 7.66581e+00 lineto -7.895743e+01 7.419167e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.017027e+01 7.957034e+00 moveto -7.895743e+01 7.419167e+00 lineto -7.874273e+01 7.66581e+00 lineto -7.993691e+01 8.22511e+00 lineto -8.017027e+01 7.957034e+00 lineto -closepath -gsave -5.684672e-01 5.684672e-01 7.10584e-01 setrgbcolor -fill -grestore -newpath -8.017027e+01 7.957034e+00 moveto -7.895743e+01 7.419167e+00 lineto -7.874273e+01 7.66581e+00 lineto -7.993691e+01 8.22511e+00 lineto -8.017027e+01 7.957034e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.136874e+01 8.53092e+00 moveto -8.017027e+01 7.957034e+00 lineto -7.993691e+01 8.22511e+00 lineto -8.111695e+01 8.820174e+00 lineto -8.136874e+01 8.53092e+00 lineto -closepath -gsave -5.64796e-01 5.64796e-01 7.05995e-01 setrgbcolor -fill -grestore -newpath -8.136874e+01 8.53092e+00 moveto -8.017027e+01 7.957034e+00 lineto -7.993691e+01 8.22511e+00 lineto -8.111695e+01 8.820174e+00 lineto -8.136874e+01 8.53092e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.255171e+01 9.140283e+00 moveto -8.136874e+01 8.53092e+00 lineto -8.111695e+01 8.820174e+00 lineto -8.228172e+01 9.450441e+00 lineto -8.255171e+01 9.140283e+00 lineto -closepath -gsave -5.611215e-01 5.611215e-01 7.014018e-01 setrgbcolor -fill -grestore -newpath -8.255171e+01 9.140283e+00 moveto -8.136874e+01 8.53092e+00 lineto -8.111695e+01 8.820174e+00 lineto -8.228172e+01 9.450441e+00 lineto -8.255171e+01 9.140283e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.371807e+01 9.784544e+00 moveto -8.255171e+01 9.140283e+00 lineto -8.228172e+01 9.450441e+00 lineto -8.343014e+01 1.011531e+01 lineto -8.371807e+01 9.784544e+00 lineto -closepath -gsave -5.574482e-01 5.574482e-01 6.968102e-01 setrgbcolor -fill -grestore -newpath -8.371807e+01 9.784544e+00 moveto -8.255171e+01 9.140283e+00 lineto -8.228172e+01 9.450441e+00 lineto -8.343014e+01 1.011531e+01 lineto -8.371807e+01 9.784544e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.48667e+01 1.04631e+01 moveto -8.371807e+01 9.784544e+00 lineto -8.343014e+01 1.011531e+01 lineto -8.45611e+01 1.081416e+01 lineto -8.48667e+01 1.04631e+01 lineto -closepath -gsave -5.537808e-01 5.537808e-01 6.92226e-01 setrgbcolor -fill -grestore -newpath -8.48667e+01 1.04631e+01 moveto -8.371807e+01 9.784544e+00 lineto -8.343014e+01 1.011531e+01 lineto -8.45611e+01 1.081416e+01 lineto -8.48667e+01 1.04631e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.599653e+01 1.117529e+01 moveto -8.48667e+01 1.04631e+01 lineto -8.45611e+01 1.081416e+01 lineto -8.567354e+01 1.154632e+01 lineto -8.599653e+01 1.117529e+01 lineto -closepath -gsave -5.501238e-01 5.501238e-01 6.876548e-01 setrgbcolor -fill -grestore -newpath -8.599653e+01 1.117529e+01 moveto -8.48667e+01 1.04631e+01 lineto -8.45611e+01 1.081416e+01 lineto -8.567354e+01 1.154632e+01 lineto -8.599653e+01 1.117529e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.710647e+01 1.192046e+01 moveto -8.599653e+01 1.117529e+01 lineto -8.567354e+01 1.154632e+01 lineto -8.676641e+01 1.231111e+01 lineto -8.710647e+01 1.192046e+01 lineto -closepath -gsave -5.464817e-01 5.464817e-01 6.831022e-01 setrgbcolor -fill -grestore -newpath -8.710647e+01 1.192046e+01 moveto -8.599653e+01 1.117529e+01 lineto -8.567354e+01 1.154632e+01 lineto -8.676641e+01 1.231111e+01 lineto -8.710647e+01 1.192046e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.819548e+01 1.26979e+01 moveto -8.710647e+01 1.192046e+01 lineto -8.676641e+01 1.231111e+01 lineto -8.783867e+01 1.310779e+01 lineto -8.819548e+01 1.26979e+01 lineto -closepath -gsave -5.42859e-01 5.42859e-01 6.785737e-01 setrgbcolor -fill -grestore -newpath -8.819548e+01 1.26979e+01 moveto -8.710647e+01 1.192046e+01 lineto -8.676641e+01 1.231111e+01 lineto -8.783867e+01 1.310779e+01 lineto -8.819548e+01 1.26979e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.926253e+01 1.350687e+01 moveto -8.819548e+01 1.26979e+01 lineto -8.783867e+01 1.310779e+01 lineto -8.888931e+01 1.393561e+01 lineto -8.926253e+01 1.350687e+01 lineto -closepath -gsave -5.392599e-01 5.392599e-01 6.740749e-01 setrgbcolor -fill -grestore -newpath -8.926253e+01 1.350687e+01 moveto -8.819548e+01 1.26979e+01 lineto -8.783867e+01 1.310779e+01 lineto -8.888931e+01 1.393561e+01 lineto -8.926253e+01 1.350687e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.030661e+01 1.43466e+01 moveto -8.926253e+01 1.350687e+01 lineto -8.888931e+01 1.393561e+01 lineto -8.991733e+01 1.47938e+01 lineto -9.030661e+01 1.43466e+01 lineto -closepath -gsave -5.356887e-01 5.356887e-01 6.696108e-01 setrgbcolor -fill -grestore -newpath -9.030661e+01 1.43466e+01 moveto -8.926253e+01 1.350687e+01 lineto -8.888931e+01 1.393561e+01 lineto -8.991733e+01 1.47938e+01 lineto -9.030661e+01 1.43466e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.132673e+01 1.52163e+01 moveto -9.030661e+01 1.43466e+01 lineto -8.991733e+01 1.47938e+01 lineto -9.092175e+01 1.568152e+01 lineto -9.132673e+01 1.52163e+01 lineto -closepath -gsave -5.321495e-01 5.321495e-01 6.651868e-01 setrgbcolor -fill -grestore -newpath -9.132673e+01 1.52163e+01 moveto -9.030661e+01 1.43466e+01 lineto -8.991733e+01 1.47938e+01 lineto -9.092175e+01 1.568152e+01 lineto -9.132673e+01 1.52163e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.232192e+01 1.611515e+01 moveto -9.132673e+01 1.52163e+01 lineto -9.092175e+01 1.568152e+01 lineto -9.190164e+01 1.659796e+01 lineto -9.232192e+01 1.611515e+01 lineto -closepath -gsave -5.286463e-01 5.286463e-01 6.608079e-01 setrgbcolor -fill -grestore -newpath -9.232192e+01 1.611515e+01 moveto -9.132673e+01 1.52163e+01 lineto -9.092175e+01 1.568152e+01 lineto -9.190164e+01 1.659796e+01 lineto -9.232192e+01 1.611515e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.329125e+01 1.704229e+01 moveto -9.232192e+01 1.611515e+01 lineto -9.190164e+01 1.659796e+01 lineto -9.285605e+01 1.754223e+01 lineto -9.329125e+01 1.704229e+01 lineto -closepath -gsave -5.251831e-01 5.251831e-01 6.564788e-01 setrgbcolor -fill -grestore -newpath -9.329125e+01 1.704229e+01 moveto -9.232192e+01 1.611515e+01 lineto -9.190164e+01 1.659796e+01 lineto -9.285605e+01 1.754223e+01 lineto -9.329125e+01 1.704229e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.423378e+01 1.799685e+01 moveto -9.329125e+01 1.704229e+01 lineto -9.285605e+01 1.754223e+01 lineto -9.378409e+01 1.851345e+01 lineto -9.423378e+01 1.799685e+01 lineto -closepath -gsave -5.217635e-01 5.217635e-01 6.522044e-01 setrgbcolor -fill -grestore -newpath -9.423378e+01 1.799685e+01 moveto -9.329125e+01 1.704229e+01 lineto -9.285605e+01 1.754223e+01 lineto -9.378409e+01 1.851345e+01 lineto -9.423378e+01 1.799685e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.514864e+01 1.897793e+01 moveto -9.423378e+01 1.799685e+01 lineto -9.378409e+01 1.851345e+01 lineto -9.468487e+01 1.951069e+01 lineto -9.514864e+01 1.897793e+01 lineto -closepath -gsave -5.183912e-01 5.183912e-01 6.47989e-01 setrgbcolor -fill -grestore -newpath -9.514864e+01 1.897793e+01 moveto -9.423378e+01 1.799685e+01 lineto -9.378409e+01 1.851345e+01 lineto -9.468487e+01 1.951069e+01 lineto -9.514864e+01 1.897793e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.603495e+01 1.998459e+01 moveto -9.514864e+01 1.897793e+01 lineto -9.468487e+01 1.951069e+01 lineto -9.555755e+01 2.053301e+01 lineto -9.603495e+01 1.998459e+01 lineto -closepath -gsave -5.150696e-01 5.150696e-01 6.438371e-01 setrgbcolor -fill -grestore -newpath -9.603495e+01 1.998459e+01 moveto -9.514864e+01 1.897793e+01 lineto -9.468487e+01 1.951069e+01 lineto -9.555755e+01 2.053301e+01 lineto -9.603495e+01 1.998459e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.689188e+01 2.101588e+01 moveto -9.603495e+01 1.998459e+01 lineto -9.555755e+01 2.053301e+01 lineto -9.64013e+01 2.157944e+01 lineto -9.689188e+01 2.101588e+01 lineto -closepath -gsave -5.118021e-01 5.118021e-01 6.397526e-01 setrgbcolor -fill -grestore -newpath -9.689188e+01 2.101588e+01 moveto -9.603495e+01 1.998459e+01 lineto -9.555755e+01 2.053301e+01 lineto -9.64013e+01 2.157944e+01 lineto -9.689188e+01 2.101588e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.771862e+01 2.207082e+01 moveto -9.689188e+01 2.101588e+01 lineto -9.64013e+01 2.157944e+01 lineto -9.721532e+01 2.2649e+01 lineto -9.771862e+01 2.207082e+01 lineto -closepath -gsave -5.085917e-01 5.085917e-01 6.357396e-01 setrgbcolor -fill -grestore -newpath -9.771862e+01 2.207082e+01 moveto -9.689188e+01 2.101588e+01 lineto -9.64013e+01 2.157944e+01 lineto -9.721532e+01 2.2649e+01 lineto -9.771862e+01 2.207082e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.851437e+01 2.314843e+01 moveto -9.771862e+01 2.207082e+01 lineto -9.721532e+01 2.2649e+01 lineto -9.799883e+01 2.374066e+01 lineto -9.851437e+01 2.314843e+01 lineto -closepath -gsave -5.054414e-01 5.054414e-01 6.318018e-01 setrgbcolor -fill -grestore -newpath -9.851437e+01 2.314843e+01 moveto -9.771862e+01 2.207082e+01 lineto -9.721532e+01 2.2649e+01 lineto -9.799883e+01 2.374066e+01 lineto -9.851437e+01 2.314843e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.927839e+01 2.424767e+01 moveto -9.851437e+01 2.314843e+01 lineto -9.799883e+01 2.374066e+01 lineto -9.87511e+01 2.48534e+01 lineto -9.927839e+01 2.424767e+01 lineto -closepath -gsave -5.02354e-01 5.02354e-01 6.279426e-01 setrgbcolor -fill -grestore -newpath -9.927839e+01 2.424767e+01 moveto -9.851437e+01 2.314843e+01 lineto -9.799883e+01 2.374066e+01 lineto -9.87511e+01 2.48534e+01 lineto -9.927839e+01 2.424767e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.0001e+02 2.53675e+01 moveto -9.927839e+01 2.424767e+01 lineto -9.87511e+01 2.48534e+01 lineto -9.947142e+01 2.598617e+01 lineto -1.0001e+02 2.53675e+01 lineto -closepath -gsave -4.993321e-01 4.993321e-01 6.241651e-01 setrgbcolor -fill -grestore -newpath -1.0001e+02 2.53675e+01 moveto -9.927839e+01 2.424767e+01 lineto -9.87511e+01 2.48534e+01 lineto -9.947142e+01 2.598617e+01 lineto -1.0001e+02 2.53675e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.007084e+02 2.650687e+01 moveto -1.0001e+02 2.53675e+01 lineto -9.947142e+01 2.598617e+01 lineto -1.001591e+02 2.713788e+01 lineto -1.007084e+02 2.650687e+01 lineto -closepath -gsave -4.963781e-01 4.963781e-01 6.204726e-01 setrgbcolor -fill -grestore -newpath -1.007084e+02 2.650687e+01 moveto -1.0001e+02 2.53675e+01 lineto -9.947142e+01 2.598617e+01 lineto -1.001591e+02 2.713788e+01 lineto -1.007084e+02 2.650687e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.01373e+02 2.766469e+01 moveto -1.007084e+02 2.650687e+01 lineto -1.001591e+02 2.713788e+01 lineto -1.008135e+02 2.830745e+01 lineto -1.01373e+02 2.766469e+01 lineto -closepath -gsave -4.934941e-01 4.934941e-01 6.168677e-01 setrgbcolor -fill -grestore -newpath -1.01373e+02 2.766469e+01 moveto -1.007084e+02 2.650687e+01 lineto -1.001591e+02 2.713788e+01 lineto -1.008135e+02 2.830745e+01 lineto -1.01373e+02 2.766469e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.020032e+02 2.883988e+01 moveto -1.01373e+02 2.766469e+01 lineto -1.008135e+02 2.830745e+01 lineto -1.01434e+02 2.949377e+01 lineto -1.020032e+02 2.883988e+01 lineto -closepath -gsave -4.906823e-01 4.906823e-01 6.133529e-01 setrgbcolor -fill -grestore -newpath -1.020032e+02 2.883988e+01 moveto -1.01373e+02 2.766469e+01 lineto -1.008135e+02 2.830745e+01 lineto -1.01434e+02 2.949377e+01 lineto -1.020032e+02 2.883988e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.025983e+02 3.003131e+01 moveto -1.020032e+02 2.883988e+01 lineto -1.01434e+02 2.949377e+01 lineto -1.020199e+02 3.069572e+01 lineto -1.025983e+02 3.003131e+01 lineto -closepath -gsave -4.879445e-01 4.879445e-01 6.099307e-01 setrgbcolor -fill -grestore -newpath -1.025983e+02 3.003131e+01 moveto -1.020032e+02 2.883988e+01 lineto -1.01434e+02 2.949377e+01 lineto -1.020199e+02 3.069572e+01 lineto -1.025983e+02 3.003131e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.031578e+02 3.123786e+01 moveto -1.025983e+02 3.003131e+01 lineto -1.020199e+02 3.069572e+01 lineto -1.025709e+02 3.191216e+01 lineto -1.031578e+02 3.123786e+01 lineto -closepath -gsave -4.852824e-01 4.852824e-01 6.066029e-01 setrgbcolor -fill -grestore -newpath -1.031578e+02 3.123786e+01 moveto -1.025983e+02 3.003131e+01 lineto -1.020199e+02 3.069572e+01 lineto -1.025709e+02 3.191216e+01 lineto -1.031578e+02 3.123786e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.036813e+02 3.245839e+01 moveto -1.031578e+02 3.123786e+01 lineto -1.025709e+02 3.191216e+01 lineto -1.030862e+02 3.314193e+01 lineto -1.036813e+02 3.245839e+01 lineto -closepath -gsave -4.826973e-01 4.826973e-01 6.033716e-01 setrgbcolor -fill -grestore -newpath -1.036813e+02 3.245839e+01 moveto -1.031578e+02 3.123786e+01 lineto -1.025709e+02 3.191216e+01 lineto -1.030862e+02 3.314193e+01 lineto -1.036813e+02 3.245839e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.04168e+02 3.369174e+01 moveto -1.036813e+02 3.245839e+01 lineto -1.030862e+02 3.314193e+01 lineto -1.035655e+02 3.438389e+01 lineto -1.04168e+02 3.369174e+01 lineto -closepath -gsave -4.801906e-01 4.801906e-01 6.002382e-01 setrgbcolor -fill -grestore -newpath -1.04168e+02 3.369174e+01 moveto -1.036813e+02 3.245839e+01 lineto -1.030862e+02 3.314193e+01 lineto -1.035655e+02 3.438389e+01 lineto -1.04168e+02 3.369174e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.046177e+02 3.493675e+01 moveto -1.04168e+02 3.369174e+01 lineto -1.035655e+02 3.438389e+01 lineto -1.040083e+02 3.563684e+01 lineto -1.046177e+02 3.493675e+01 lineto -closepath -gsave -4.777634e-01 4.777634e-01 5.972043e-01 setrgbcolor -fill -grestore -newpath -1.046177e+02 3.493675e+01 moveto -1.04168e+02 3.369174e+01 lineto -1.035655e+02 3.438389e+01 lineto -1.040083e+02 3.563684e+01 lineto -1.046177e+02 3.493675e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.627709e+01 4.139079e+00 moveto -6.500414e+01 4.000386e+00 lineto -6.500405e+01 4.000458e+00 lineto -6.624927e+01 4.161265e+00 lineto -6.627709e+01 4.139079e+00 lineto -closepath -gsave -6.075885e-01 6.075885e-01 7.594856e-01 setrgbcolor -fill -grestore -newpath -6.627709e+01 4.139079e+00 moveto -6.500414e+01 4.000386e+00 lineto -6.500405e+01 4.000458e+00 lineto -6.624927e+01 4.161265e+00 lineto -6.627709e+01 4.139079e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.754884e+01 4.317406e+00 moveto -6.627709e+01 4.139079e+00 lineto -6.624927e+01 4.161265e+00 lineto -6.74933e+01 4.361685e+00 lineto -6.754884e+01 4.317406e+00 lineto -closepath -gsave -6.048224e-01 6.048224e-01 7.56028e-01 setrgbcolor -fill -grestore -newpath -6.754884e+01 4.317406e+00 moveto -6.627709e+01 4.139079e+00 lineto -6.624927e+01 4.161265e+00 lineto -6.74933e+01 4.361685e+00 lineto -6.754884e+01 4.317406e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.881817e+01 4.535198e+00 moveto -6.754884e+01 4.317406e+00 lineto -6.74933e+01 4.361685e+00 lineto -6.873498e+01 4.601529e+00 lineto -6.881817e+01 4.535198e+00 lineto -closepath -gsave -6.01999e-01 6.01999e-01 7.524988e-01 setrgbcolor -fill -grestore -newpath -6.881817e+01 4.535198e+00 moveto -6.754884e+01 4.317406e+00 lineto -6.74933e+01 4.361685e+00 lineto -6.873498e+01 4.601529e+00 lineto -6.881817e+01 4.535198e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.008389e+01 4.79225e+00 moveto -6.881817e+01 4.535198e+00 lineto -6.873498e+01 4.601529e+00 lineto -6.997312e+01 4.880569e+00 lineto -7.008389e+01 4.79225e+00 lineto -closepath -gsave -5.991218e-01 5.991218e-01 7.489022e-01 setrgbcolor -fill -grestore -newpath -7.008389e+01 4.79225e+00 moveto -6.881817e+01 4.535198e+00 lineto -6.873498e+01 4.601529e+00 lineto -6.997312e+01 4.880569e+00 lineto -7.008389e+01 4.79225e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.134479e+01 5.088318e+00 moveto -7.008389e+01 4.79225e+00 lineto -6.997312e+01 4.880569e+00 lineto -7.120655e+01 5.198542e+00 lineto -7.134479e+01 5.088318e+00 lineto -closepath -gsave -5.961942e-01 5.961942e-01 7.452427e-01 setrgbcolor -fill -grestore -newpath -7.134479e+01 5.088318e+00 moveto -7.008389e+01 4.79225e+00 lineto -6.997312e+01 4.880569e+00 lineto -7.120655e+01 5.198542e+00 lineto -7.134479e+01 5.088318e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.259968e+01 5.423121e+00 moveto -7.134479e+01 5.088318e+00 lineto -7.120655e+01 5.198542e+00 lineto -7.24341e+01 5.555146e+00 lineto -7.259968e+01 5.423121e+00 lineto -closepath -gsave -5.932199e-01 5.932199e-01 7.415248e-01 setrgbcolor -fill -grestore -newpath -7.259968e+01 5.423121e+00 moveto -7.134479e+01 5.088318e+00 lineto -7.120655e+01 5.198542e+00 lineto -7.24341e+01 5.555146e+00 lineto -7.259968e+01 5.423121e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.384738e+01 5.796343e+00 moveto -7.259968e+01 5.423121e+00 lineto -7.24341e+01 5.555146e+00 lineto -7.365461e+01 5.950043e+00 lineto -7.384738e+01 5.796343e+00 lineto -closepath -gsave -5.902025e-01 5.902025e-01 7.377531e-01 setrgbcolor -fill -grestore -newpath -7.384738e+01 5.796343e+00 moveto -7.259968e+01 5.423121e+00 lineto -7.24341e+01 5.555146e+00 lineto -7.365461e+01 5.950043e+00 lineto -7.384738e+01 5.796343e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.508671e+01 6.20763e+00 moveto -7.384738e+01 5.796343e+00 lineto -7.365461e+01 5.950043e+00 lineto -7.486694e+01 6.38286e+00 lineto -7.508671e+01 6.20763e+00 lineto -closepath -gsave -5.871457e-01 5.871457e-01 7.339321e-01 setrgbcolor -fill -grestore -newpath -7.508671e+01 6.20763e+00 moveto -7.384738e+01 5.796343e+00 lineto -7.365461e+01 5.950043e+00 lineto -7.486694e+01 6.38286e+00 lineto -7.508671e+01 6.20763e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.631648e+01 6.656593e+00 moveto -7.508671e+01 6.20763e+00 lineto -7.486694e+01 6.38286e+00 lineto -7.606991e+01 6.853187e+00 lineto -7.631648e+01 6.656593e+00 lineto -closepath -gsave -5.840534e-01 5.840534e-01 7.300668e-01 setrgbcolor -fill -grestore -newpath -7.631648e+01 6.656593e+00 moveto -7.508671e+01 6.20763e+00 lineto -7.486694e+01 6.38286e+00 lineto -7.606991e+01 6.853187e+00 lineto -7.631648e+01 6.656593e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.753554e+01 7.142807e+00 moveto -7.631648e+01 6.656593e+00 lineto -7.606991e+01 6.853187e+00 lineto -7.726241e+01 7.360579e+00 lineto -7.753554e+01 7.142807e+00 lineto -closepath -gsave -5.809294e-01 5.809294e-01 7.261617e-01 setrgbcolor -fill -grestore -newpath -7.753554e+01 7.142807e+00 moveto -7.631648e+01 6.656593e+00 lineto -7.606991e+01 6.853187e+00 lineto -7.726241e+01 7.360579e+00 lineto -7.753554e+01 7.142807e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.874273e+01 7.66581e+00 moveto -7.753554e+01 7.142807e+00 lineto -7.726241e+01 7.360579e+00 lineto -7.84433e+01 7.904555e+00 lineto -7.874273e+01 7.66581e+00 lineto -closepath -gsave -5.777774e-01 5.777774e-01 7.222218e-01 setrgbcolor -fill -grestore -newpath -7.874273e+01 7.66581e+00 moveto -7.753554e+01 7.142807e+00 lineto -7.726241e+01 7.360579e+00 lineto -7.84433e+01 7.904555e+00 lineto -7.874273e+01 7.66581e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.993691e+01 8.22511e+00 moveto -7.874273e+01 7.66581e+00 lineto -7.84433e+01 7.904555e+00 lineto -7.961146e+01 8.484599e+00 lineto -7.993691e+01 8.22511e+00 lineto -closepath -gsave -5.746016e-01 5.746016e-01 7.182519e-01 setrgbcolor -fill -grestore -newpath -7.993691e+01 8.22511e+00 moveto -7.874273e+01 7.66581e+00 lineto -7.84433e+01 7.904555e+00 lineto -7.961146e+01 8.484599e+00 lineto -7.993691e+01 8.22511e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.111695e+01 8.820174e+00 moveto -7.993691e+01 8.22511e+00 lineto -7.961146e+01 8.484599e+00 lineto -8.076578e+01 9.100164e+00 lineto -8.111695e+01 8.820174e+00 lineto -closepath -gsave -5.714056e-01 5.714056e-01 7.14257e-01 setrgbcolor -fill -grestore -newpath -8.111695e+01 8.820174e+00 moveto -7.993691e+01 8.22511e+00 lineto -7.961146e+01 8.484599e+00 lineto -8.076578e+01 9.100164e+00 lineto -8.111695e+01 8.820174e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.228172e+01 9.450441e+00 moveto -8.111695e+01 8.820174e+00 lineto -8.076578e+01 9.100164e+00 lineto -8.190518e+01 9.750666e+00 lineto -8.228172e+01 9.450441e+00 lineto -closepath -gsave -5.681936e-01 5.681936e-01 7.10242e-01 setrgbcolor -fill -grestore -newpath -8.228172e+01 9.450441e+00 moveto -8.111695e+01 8.820174e+00 lineto -8.076578e+01 9.100164e+00 lineto -8.190518e+01 9.750666e+00 lineto -8.228172e+01 9.450441e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.343014e+01 1.011531e+01 moveto -8.228172e+01 9.450441e+00 lineto -8.190518e+01 9.750666e+00 lineto -8.302857e+01 1.043549e+01 lineto -8.343014e+01 1.011531e+01 lineto -closepath -gsave -5.649694e-01 5.649694e-01 7.062117e-01 setrgbcolor -fill -grestore -newpath -8.343014e+01 1.011531e+01 moveto -8.228172e+01 9.450441e+00 lineto -8.190518e+01 9.750666e+00 lineto -8.302857e+01 1.043549e+01 lineto -8.343014e+01 1.011531e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.45611e+01 1.081416e+01 moveto -8.343014e+01 1.011531e+01 lineto -8.302857e+01 1.043549e+01 lineto -8.41349e+01 1.115399e+01 lineto -8.45611e+01 1.081416e+01 lineto -closepath -gsave -5.61737e-01 5.61737e-01 7.021712e-01 setrgbcolor -fill -grestore -newpath -8.45611e+01 1.081416e+01 moveto -8.343014e+01 1.011531e+01 lineto -8.302857e+01 1.043549e+01 lineto -8.41349e+01 1.115399e+01 lineto -8.45611e+01 1.081416e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.567354e+01 1.154632e+01 moveto -8.45611e+01 1.081416e+01 lineto -8.41349e+01 1.115399e+01 lineto -8.52231e+01 1.190547e+01 lineto -8.567354e+01 1.154632e+01 lineto -closepath -gsave -5.585002e-01 5.585002e-01 6.981253e-01 setrgbcolor -fill -grestore -newpath -8.567354e+01 1.154632e+01 moveto -8.45611e+01 1.081416e+01 lineto -8.41349e+01 1.115399e+01 lineto -8.52231e+01 1.190547e+01 lineto -8.567354e+01 1.154632e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.676641e+01 1.231111e+01 moveto -8.567354e+01 1.154632e+01 lineto -8.52231e+01 1.190547e+01 lineto -8.629216e+01 1.268924e+01 lineto -8.676641e+01 1.231111e+01 lineto -closepath -gsave -5.552631e-01 5.552631e-01 6.940789e-01 setrgbcolor -fill -grestore -newpath -8.676641e+01 1.231111e+01 moveto -8.567354e+01 1.154632e+01 lineto -8.52231e+01 1.190547e+01 lineto -8.629216e+01 1.268924e+01 lineto -8.676641e+01 1.231111e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.783867e+01 1.310779e+01 moveto -8.676641e+01 1.231111e+01 lineto -8.629216e+01 1.268924e+01 lineto -8.734106e+01 1.350455e+01 lineto -8.783867e+01 1.310779e+01 lineto -closepath -gsave -5.520295e-01 5.520295e-01 6.900368e-01 setrgbcolor -fill -grestore -newpath -8.783867e+01 1.310779e+01 moveto -8.676641e+01 1.231111e+01 lineto -8.629216e+01 1.268924e+01 lineto -8.734106e+01 1.350455e+01 lineto -8.783867e+01 1.310779e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.888931e+01 1.393561e+01 moveto -8.783867e+01 1.310779e+01 lineto -8.734106e+01 1.350455e+01 lineto -8.83688e+01 1.435063e+01 lineto -8.888931e+01 1.393561e+01 lineto -closepath -gsave -5.488031e-01 5.488031e-01 6.860039e-01 setrgbcolor -fill -grestore -newpath -8.888931e+01 1.393561e+01 moveto -8.783867e+01 1.310779e+01 lineto -8.734106e+01 1.350455e+01 lineto -8.83688e+01 1.435063e+01 lineto -8.888931e+01 1.393561e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.991733e+01 1.47938e+01 moveto -8.888931e+01 1.393561e+01 lineto -8.83688e+01 1.435063e+01 lineto -8.937442e+01 1.522667e+01 lineto -8.991733e+01 1.47938e+01 lineto -closepath -gsave -5.455879e-01 5.455879e-01 6.819848e-01 setrgbcolor -fill -grestore -newpath -8.991733e+01 1.47938e+01 moveto -8.888931e+01 1.393561e+01 lineto -8.83688e+01 1.435063e+01 lineto -8.937442e+01 1.522667e+01 lineto -8.991733e+01 1.47938e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.092175e+01 1.568152e+01 moveto -8.991733e+01 1.47938e+01 lineto -8.937442e+01 1.522667e+01 lineto -9.035696e+01 1.613185e+01 lineto -9.092175e+01 1.568152e+01 lineto -closepath -gsave -5.423874e-01 5.423874e-01 6.779843e-01 setrgbcolor -fill -grestore -newpath -9.092175e+01 1.568152e+01 moveto -8.991733e+01 1.47938e+01 lineto -8.937442e+01 1.522667e+01 lineto -9.035696e+01 1.613185e+01 lineto -9.092175e+01 1.568152e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.190164e+01 1.659796e+01 moveto -9.092175e+01 1.568152e+01 lineto -9.035696e+01 1.613185e+01 lineto -9.13155e+01 1.70653e+01 lineto -9.190164e+01 1.659796e+01 lineto -closepath -gsave -5.392055e-01 5.392055e-01 6.740068e-01 setrgbcolor -fill -grestore -newpath -9.190164e+01 1.659796e+01 moveto -9.092175e+01 1.568152e+01 lineto -9.035696e+01 1.613185e+01 lineto -9.13155e+01 1.70653e+01 lineto -9.190164e+01 1.659796e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.285605e+01 1.754223e+01 moveto -9.190164e+01 1.659796e+01 lineto -9.13155e+01 1.70653e+01 lineto -9.224911e+01 1.802616e+01 lineto -9.285605e+01 1.754223e+01 lineto -closepath -gsave -5.360455e-01 5.360455e-01 6.700569e-01 setrgbcolor -fill -grestore -newpath -9.285605e+01 1.754223e+01 moveto -9.190164e+01 1.659796e+01 lineto -9.13155e+01 1.70653e+01 lineto -9.224911e+01 1.802616e+01 lineto -9.285605e+01 1.754223e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.378409e+01 1.851345e+01 moveto -9.285605e+01 1.754223e+01 lineto -9.224911e+01 1.802616e+01 lineto -9.315693e+01 1.90135e+01 lineto -9.378409e+01 1.851345e+01 lineto -closepath -gsave -5.329112e-01 5.329112e-01 6.66139e-01 setrgbcolor -fill -grestore -newpath -9.378409e+01 1.851345e+01 moveto -9.285605e+01 1.754223e+01 lineto -9.224911e+01 1.802616e+01 lineto -9.315693e+01 1.90135e+01 lineto -9.378409e+01 1.851345e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.468487e+01 1.951069e+01 moveto -9.378409e+01 1.851345e+01 lineto -9.315693e+01 1.90135e+01 lineto -9.403809e+01 2.002639e+01 lineto -9.468487e+01 1.951069e+01 lineto -closepath -gsave -5.298058e-01 5.298058e-01 6.622573e-01 setrgbcolor -fill -grestore -newpath -9.468487e+01 1.951069e+01 moveto -9.378409e+01 1.851345e+01 lineto -9.315693e+01 1.90135e+01 lineto -9.403809e+01 2.002639e+01 lineto -9.468487e+01 1.951069e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.555755e+01 2.053301e+01 moveto -9.468487e+01 1.951069e+01 lineto -9.403809e+01 2.002639e+01 lineto -9.489176e+01 2.106387e+01 lineto -9.555755e+01 2.053301e+01 lineto -closepath -gsave -5.267327e-01 5.267327e-01 6.584159e-01 setrgbcolor -fill -grestore -newpath -9.555755e+01 2.053301e+01 moveto -9.468487e+01 1.951069e+01 lineto -9.403809e+01 2.002639e+01 lineto -9.489176e+01 2.106387e+01 lineto -9.555755e+01 2.053301e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.64013e+01 2.157944e+01 moveto -9.555755e+01 2.053301e+01 lineto -9.489176e+01 2.106387e+01 lineto -9.571712e+01 2.212496e+01 lineto -9.64013e+01 2.157944e+01 lineto -closepath -gsave -5.236951e-01 5.236951e-01 6.546189e-01 setrgbcolor -fill -grestore -newpath -9.64013e+01 2.157944e+01 moveto -9.555755e+01 2.053301e+01 lineto -9.489176e+01 2.106387e+01 lineto -9.571712e+01 2.212496e+01 lineto -9.64013e+01 2.157944e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.721532e+01 2.2649e+01 moveto -9.64013e+01 2.157944e+01 lineto -9.571712e+01 2.212496e+01 lineto -9.65134e+01 2.320866e+01 lineto -9.721532e+01 2.2649e+01 lineto -closepath -gsave -5.20696e-01 5.20696e-01 6.5087e-01 setrgbcolor -fill -grestore -newpath -9.721532e+01 2.2649e+01 moveto -9.64013e+01 2.157944e+01 lineto -9.571712e+01 2.212496e+01 lineto -9.65134e+01 2.320866e+01 lineto -9.721532e+01 2.2649e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.799883e+01 2.374066e+01 moveto -9.721532e+01 2.2649e+01 lineto -9.65134e+01 2.320866e+01 lineto -9.727984e+01 2.431393e+01 lineto -9.799883e+01 2.374066e+01 lineto -closepath -gsave -5.177385e-01 5.177385e-01 6.471732e-01 setrgbcolor -fill -grestore -newpath -9.799883e+01 2.374066e+01 moveto -9.721532e+01 2.2649e+01 lineto -9.65134e+01 2.320866e+01 lineto -9.727984e+01 2.431393e+01 lineto -9.799883e+01 2.374066e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.87511e+01 2.48534e+01 moveto -9.799883e+01 2.374066e+01 lineto -9.727984e+01 2.431393e+01 lineto -9.801572e+01 2.543974e+01 lineto -9.87511e+01 2.48534e+01 lineto -closepath -gsave -5.148255e-01 5.148255e-01 6.435318e-01 setrgbcolor -fill -grestore -newpath -9.87511e+01 2.48534e+01 moveto -9.799883e+01 2.374066e+01 lineto -9.727984e+01 2.431393e+01 lineto -9.801572e+01 2.543974e+01 lineto -9.87511e+01 2.48534e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.947142e+01 2.598617e+01 moveto -9.87511e+01 2.48534e+01 lineto -9.801572e+01 2.543974e+01 lineto -9.872034e+01 2.658502e+01 lineto -9.947142e+01 2.598617e+01 lineto -closepath -gsave -5.119595e-01 5.119595e-01 6.399494e-01 setrgbcolor -fill -grestore -newpath -9.947142e+01 2.598617e+01 moveto -9.87511e+01 2.48534e+01 lineto -9.801572e+01 2.543974e+01 lineto -9.872034e+01 2.658502e+01 lineto -9.947142e+01 2.598617e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.001591e+02 2.713788e+01 moveto -9.947142e+01 2.598617e+01 lineto -9.872034e+01 2.658502e+01 lineto -9.939304e+01 2.774867e+01 lineto -1.001591e+02 2.713788e+01 lineto -closepath -gsave -5.091432e-01 5.091432e-01 6.364291e-01 setrgbcolor -fill -grestore -newpath -1.001591e+02 2.713788e+01 moveto -9.947142e+01 2.598617e+01 lineto -9.872034e+01 2.658502e+01 lineto -9.939304e+01 2.774867e+01 lineto -1.001591e+02 2.713788e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.008135e+02 2.830745e+01 moveto -1.001591e+02 2.713788e+01 lineto -9.939304e+01 2.774867e+01 lineto -1.000332e+02 2.892961e+01 lineto -1.008135e+02 2.830745e+01 lineto -closepath -gsave -5.063792e-01 5.063792e-01 6.32974e-01 setrgbcolor -fill -grestore -newpath -1.008135e+02 2.830745e+01 moveto -1.001591e+02 2.713788e+01 lineto -9.939304e+01 2.774867e+01 lineto -1.000332e+02 2.892961e+01 lineto -1.008135e+02 2.830745e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.01434e+02 2.949377e+01 moveto -1.008135e+02 2.830745e+01 lineto -1.000332e+02 2.892961e+01 lineto -1.006401e+02 3.012671e+01 lineto -1.01434e+02 2.949377e+01 lineto -closepath -gsave -5.036696e-01 5.036696e-01 6.29587e-01 setrgbcolor -fill -grestore -newpath -1.01434e+02 2.949377e+01 moveto -1.008135e+02 2.830745e+01 lineto -1.000332e+02 2.892961e+01 lineto -1.006401e+02 3.012671e+01 lineto -1.01434e+02 2.949377e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.020199e+02 3.069572e+01 moveto -1.01434e+02 2.949377e+01 lineto -1.006401e+02 3.012671e+01 lineto -1.012133e+02 3.133884e+01 lineto -1.020199e+02 3.069572e+01 lineto -closepath -gsave -5.010166e-01 5.010166e-01 6.262708e-01 setrgbcolor -fill -grestore -newpath -1.020199e+02 3.069572e+01 moveto -1.01434e+02 2.949377e+01 lineto -1.006401e+02 3.012671e+01 lineto -1.012133e+02 3.133884e+01 lineto -1.020199e+02 3.069572e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.025709e+02 3.191216e+01 moveto -1.020199e+02 3.069572e+01 lineto -1.012133e+02 3.133884e+01 lineto -1.017523e+02 3.256485e+01 lineto -1.025709e+02 3.191216e+01 lineto -closepath -gsave -4.984224e-01 4.984224e-01 6.23028e-01 setrgbcolor -fill -grestore -newpath -1.025709e+02 3.191216e+01 moveto -1.020199e+02 3.069572e+01 lineto -1.012133e+02 3.133884e+01 lineto -1.017523e+02 3.256485e+01 lineto -1.025709e+02 3.191216e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.030862e+02 3.314193e+01 moveto -1.025709e+02 3.191216e+01 lineto -1.017523e+02 3.256485e+01 lineto -1.022564e+02 3.380358e+01 lineto -1.030862e+02 3.314193e+01 lineto -closepath -gsave -4.958887e-01 4.958887e-01 6.198608e-01 setrgbcolor -fill -grestore -newpath -1.030862e+02 3.314193e+01 moveto -1.025709e+02 3.191216e+01 lineto -1.017523e+02 3.256485e+01 lineto -1.022564e+02 3.380358e+01 lineto -1.030862e+02 3.314193e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.035655e+02 3.438389e+01 moveto -1.030862e+02 3.314193e+01 lineto -1.022564e+02 3.380358e+01 lineto -1.027253e+02 3.505386e+01 lineto -1.035655e+02 3.438389e+01 lineto -closepath -gsave -4.934173e-01 4.934173e-01 6.167716e-01 setrgbcolor -fill -grestore -newpath -1.035655e+02 3.438389e+01 moveto -1.030862e+02 3.314193e+01 lineto -1.022564e+02 3.380358e+01 lineto -1.027253e+02 3.505386e+01 lineto -1.035655e+02 3.438389e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.040083e+02 3.563684e+01 moveto -1.035655e+02 3.438389e+01 lineto -1.027253e+02 3.505386e+01 lineto -1.031584e+02 3.631451e+01 lineto -1.040083e+02 3.563684e+01 lineto -closepath -gsave -4.910098e-01 4.910098e-01 6.137622e-01 setrgbcolor -fill -grestore -newpath -1.040083e+02 3.563684e+01 moveto -1.035655e+02 3.438389e+01 lineto -1.027253e+02 3.505386e+01 lineto -1.031584e+02 3.631451e+01 lineto -1.040083e+02 3.563684e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.624927e+01 4.161265e+00 moveto -6.500405e+01 4.000458e+00 lineto -6.500393e+01 4.000527e+00 lineto -6.621374e+01 4.18258e+00 lineto -6.624927e+01 4.161265e+00 lineto -closepath -gsave -6.078819e-01 6.078819e-01 7.598524e-01 setrgbcolor -fill -grestore -newpath -6.624927e+01 4.161265e+00 moveto -6.500405e+01 4.000458e+00 lineto -6.500393e+01 4.000527e+00 lineto -6.621374e+01 4.18258e+00 lineto -6.624927e+01 4.161265e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.74933e+01 4.361685e+00 moveto -6.624927e+01 4.161265e+00 lineto -6.621374e+01 4.18258e+00 lineto -6.742239e+01 4.404226e+00 lineto -6.74933e+01 4.361685e+00 lineto -closepath -gsave -6.056969e-01 6.056969e-01 7.571211e-01 setrgbcolor -fill -grestore -newpath -6.74933e+01 4.361685e+00 moveto -6.624927e+01 4.161265e+00 lineto -6.621374e+01 4.18258e+00 lineto -6.742239e+01 4.404226e+00 lineto -6.74933e+01 4.361685e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.873498e+01 4.601529e+00 moveto -6.74933e+01 4.361685e+00 lineto -6.742239e+01 4.404226e+00 lineto -6.862876e+01 4.665256e+00 lineto -6.873498e+01 4.601529e+00 lineto -closepath -gsave -6.034512e-01 6.034512e-01 7.543139e-01 setrgbcolor -fill -grestore -newpath -6.873498e+01 4.601529e+00 moveto -6.74933e+01 4.361685e+00 lineto -6.742239e+01 4.404226e+00 lineto -6.862876e+01 4.665256e+00 lineto -6.873498e+01 4.601529e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.997312e+01 4.880569e+00 moveto -6.873498e+01 4.601529e+00 lineto -6.862876e+01 4.665256e+00 lineto -6.983169e+01 4.965422e+00 lineto -6.997312e+01 4.880569e+00 lineto -closepath -gsave -6.011474e-01 6.011474e-01 7.514342e-01 setrgbcolor -fill -grestore -newpath -6.997312e+01 4.880569e+00 moveto -6.873498e+01 4.601529e+00 lineto -6.862876e+01 4.665256e+00 lineto -6.983169e+01 4.965422e+00 lineto -6.997312e+01 4.880569e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.120655e+01 5.198542e+00 moveto -6.997312e+01 4.880569e+00 lineto -6.983169e+01 4.965422e+00 lineto -7.103004e+01 5.30444e+00 lineto -7.120655e+01 5.198542e+00 lineto -closepath -gsave -5.987882e-01 5.987882e-01 7.484853e-01 setrgbcolor -fill -grestore -newpath -7.120655e+01 5.198542e+00 moveto -6.997312e+01 4.880569e+00 lineto -6.983169e+01 4.965422e+00 lineto -7.103004e+01 5.30444e+00 lineto -7.120655e+01 5.198542e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.24341e+01 5.555146e+00 moveto -7.120655e+01 5.198542e+00 lineto -7.103004e+01 5.30444e+00 lineto -7.222268e+01 5.681988e+00 lineto -7.24341e+01 5.555146e+00 lineto -closepath -gsave -5.963766e-01 5.963766e-01 7.454708e-01 setrgbcolor -fill -grestore -newpath -7.24341e+01 5.555146e+00 moveto -7.120655e+01 5.198542e+00 lineto -7.103004e+01 5.30444e+00 lineto -7.222268e+01 5.681988e+00 lineto -7.24341e+01 5.555146e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.365461e+01 5.950043e+00 moveto -7.24341e+01 5.555146e+00 lineto -7.222268e+01 5.681988e+00 lineto -7.340849e+01 6.09771e+00 lineto -7.365461e+01 5.950043e+00 lineto -closepath -gsave -5.939153e-01 5.939153e-01 7.423942e-01 setrgbcolor -fill -grestore -newpath -7.365461e+01 5.950043e+00 moveto -7.24341e+01 5.555146e+00 lineto -7.222268e+01 5.681988e+00 lineto -7.340849e+01 6.09771e+00 lineto -7.365461e+01 5.950043e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.486694e+01 6.38286e+00 moveto -7.365461e+01 5.950043e+00 lineto -7.340849e+01 6.09771e+00 lineto -7.458633e+01 6.551212e+00 lineto -7.486694e+01 6.38286e+00 lineto -closepath -gsave -5.914073e-01 5.914073e-01 7.392592e-01 setrgbcolor -fill -grestore -newpath -7.486694e+01 6.38286e+00 moveto -7.365461e+01 5.950043e+00 lineto -7.340849e+01 6.09771e+00 lineto -7.458633e+01 6.551212e+00 lineto -7.486694e+01 6.38286e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.606991e+01 6.853187e+00 moveto -7.486694e+01 6.38286e+00 lineto -7.458633e+01 6.551212e+00 lineto -7.57551e+01 7.042065e+00 lineto -7.606991e+01 6.853187e+00 lineto -closepath -gsave -5.888557e-01 5.888557e-01 7.360696e-01 setrgbcolor -fill -grestore -newpath -7.606991e+01 6.853187e+00 moveto -7.486694e+01 6.38286e+00 lineto -7.458633e+01 6.551212e+00 lineto -7.57551e+01 7.042065e+00 lineto -7.606991e+01 6.853187e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.726241e+01 7.360579e+00 moveto -7.606991e+01 6.853187e+00 lineto -7.57551e+01 7.042065e+00 lineto -7.691368e+01 7.569803e+00 lineto -7.726241e+01 7.360579e+00 lineto -closepath -gsave -5.862633e-01 5.862633e-01 7.328292e-01 setrgbcolor -fill -grestore -newpath -7.726241e+01 7.360579e+00 moveto -7.606991e+01 6.853187e+00 lineto -7.57551e+01 7.042065e+00 lineto -7.691368e+01 7.569803e+00 lineto -7.726241e+01 7.360579e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.84433e+01 7.904555e+00 moveto -7.726241e+01 7.360579e+00 lineto -7.691368e+01 7.569803e+00 lineto -7.806099e+01 8.133927e+00 lineto -7.84433e+01 7.904555e+00 lineto -closepath -gsave -5.836335e-01 5.836335e-01 7.295419e-01 setrgbcolor -fill -grestore -newpath -7.84433e+01 7.904555e+00 moveto -7.726241e+01 7.360579e+00 lineto -7.691368e+01 7.569803e+00 lineto -7.806099e+01 8.133927e+00 lineto -7.84433e+01 7.904555e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.961146e+01 8.484599e+00 moveto -7.84433e+01 7.904555e+00 lineto -7.806099e+01 8.133927e+00 lineto -7.919592e+01 8.733904e+00 lineto -7.961146e+01 8.484599e+00 lineto -closepath -gsave -5.809693e-01 5.809693e-01 7.262116e-01 setrgbcolor -fill -grestore -newpath -7.961146e+01 8.484599e+00 moveto -7.84433e+01 7.904555e+00 lineto -7.806099e+01 8.133927e+00 lineto -7.919592e+01 8.733904e+00 lineto -7.961146e+01 8.484599e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.076578e+01 9.100164e+00 moveto -7.961146e+01 8.484599e+00 lineto -7.919592e+01 8.733904e+00 lineto -8.031742e+01 9.369164e+00 lineto -8.076578e+01 9.100164e+00 lineto -closepath -gsave -5.782739e-01 5.782739e-01 7.228424e-01 setrgbcolor -fill -grestore -newpath -8.076578e+01 9.100164e+00 moveto -7.961146e+01 8.484599e+00 lineto -7.919592e+01 8.733904e+00 lineto -8.031742e+01 9.369164e+00 lineto -8.076578e+01 9.100164e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.190518e+01 9.750666e+00 moveto -8.076578e+01 9.100164e+00 lineto -8.031742e+01 9.369164e+00 lineto -8.142442e+01 1.003911e+01 lineto -8.190518e+01 9.750666e+00 lineto -closepath -gsave -5.755506e-01 5.755506e-01 7.194382e-01 setrgbcolor -fill -grestore -newpath -8.190518e+01 9.750666e+00 moveto -8.076578e+01 9.100164e+00 lineto -8.031742e+01 9.369164e+00 lineto -8.142442e+01 1.003911e+01 lineto -8.190518e+01 9.750666e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.302857e+01 1.043549e+01 moveto -8.190518e+01 9.750666e+00 lineto -8.142442e+01 1.003911e+01 lineto -8.251586e+01 1.07431e+01 lineto -8.302857e+01 1.043549e+01 lineto -closepath -gsave -5.728026e-01 5.728026e-01 7.160032e-01 setrgbcolor -fill -grestore -newpath -8.302857e+01 1.043549e+01 moveto -8.190518e+01 9.750666e+00 lineto -8.142442e+01 1.003911e+01 lineto -8.251586e+01 1.07431e+01 lineto -8.302857e+01 1.043549e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.41349e+01 1.115399e+01 moveto -8.302857e+01 1.043549e+01 lineto -8.251586e+01 1.07431e+01 lineto -8.359072e+01 1.148047e+01 lineto -8.41349e+01 1.115399e+01 lineto -closepath -gsave -5.700332e-01 5.700332e-01 7.125415e-01 setrgbcolor -fill -grestore -newpath -8.41349e+01 1.115399e+01 moveto -8.302857e+01 1.043549e+01 lineto -8.251586e+01 1.07431e+01 lineto -8.359072e+01 1.148047e+01 lineto -8.41349e+01 1.115399e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.52231e+01 1.190547e+01 moveto -8.41349e+01 1.115399e+01 lineto -8.359072e+01 1.148047e+01 lineto -8.464798e+01 1.225052e+01 lineto -8.52231e+01 1.190547e+01 lineto -closepath -gsave -5.672457e-01 5.672457e-01 7.090571e-01 setrgbcolor -fill -grestore -newpath -8.52231e+01 1.190547e+01 moveto -8.41349e+01 1.115399e+01 lineto -8.359072e+01 1.148047e+01 lineto -8.464798e+01 1.225052e+01 lineto -8.52231e+01 1.190547e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.629216e+01 1.268924e+01 moveto -8.52231e+01 1.190547e+01 lineto -8.464798e+01 1.225052e+01 lineto -8.568663e+01 1.305254e+01 lineto -8.629216e+01 1.268924e+01 lineto -closepath -gsave -5.644434e-01 5.644434e-01 7.055543e-01 setrgbcolor -fill -grestore -newpath -8.629216e+01 1.268924e+01 moveto -8.52231e+01 1.190547e+01 lineto -8.464798e+01 1.225052e+01 lineto -8.568663e+01 1.305254e+01 lineto -8.629216e+01 1.268924e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.734106e+01 1.350455e+01 moveto -8.629216e+01 1.268924e+01 lineto -8.568663e+01 1.305254e+01 lineto -8.67057e+01 1.388574e+01 lineto -8.734106e+01 1.350455e+01 lineto -closepath -gsave -5.616297e-01 5.616297e-01 7.020371e-01 setrgbcolor -fill -grestore -newpath -8.734106e+01 1.350455e+01 moveto -8.629216e+01 1.268924e+01 lineto -8.568663e+01 1.305254e+01 lineto -8.67057e+01 1.388574e+01 lineto -8.734106e+01 1.350455e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.83688e+01 1.435063e+01 moveto -8.734106e+01 1.350455e+01 lineto -8.67057e+01 1.388574e+01 lineto -8.770422e+01 1.474935e+01 lineto -8.83688e+01 1.435063e+01 lineto -closepath -gsave -5.588078e-01 5.588078e-01 6.985097e-01 setrgbcolor -fill -grestore -newpath -8.83688e+01 1.435063e+01 moveto -8.734106e+01 1.350455e+01 lineto -8.67057e+01 1.388574e+01 lineto -8.770422e+01 1.474935e+01 lineto -8.83688e+01 1.435063e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.937442e+01 1.522667e+01 moveto -8.83688e+01 1.435063e+01 lineto -8.770422e+01 1.474935e+01 lineto -8.868124e+01 1.564255e+01 lineto -8.937442e+01 1.522667e+01 lineto -closepath -gsave -5.55981e-01 5.55981e-01 6.949762e-01 setrgbcolor -fill -grestore -newpath -8.937442e+01 1.522667e+01 moveto -8.83688e+01 1.435063e+01 lineto -8.770422e+01 1.474935e+01 lineto -8.868124e+01 1.564255e+01 lineto -8.937442e+01 1.522667e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.035696e+01 1.613185e+01 moveto -8.937442e+01 1.522667e+01 lineto -8.868124e+01 1.564255e+01 lineto -8.963584e+01 1.656449e+01 lineto -9.035696e+01 1.613185e+01 lineto -closepath -gsave -5.531526e-01 5.531526e-01 6.914407e-01 setrgbcolor -fill -grestore -newpath -9.035696e+01 1.613185e+01 moveto -8.937442e+01 1.522667e+01 lineto -8.868124e+01 1.564255e+01 lineto -8.963584e+01 1.656449e+01 lineto -9.035696e+01 1.613185e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.13155e+01 1.70653e+01 moveto -9.035696e+01 1.613185e+01 lineto -8.963584e+01 1.656449e+01 lineto -9.056711e+01 1.75143e+01 lineto -9.13155e+01 1.70653e+01 lineto -closepath -gsave -5.503258e-01 5.503258e-01 6.879073e-01 setrgbcolor -fill -grestore -newpath -9.13155e+01 1.70653e+01 moveto -9.035696e+01 1.613185e+01 lineto -8.963584e+01 1.656449e+01 lineto -9.056711e+01 1.75143e+01 lineto -9.13155e+01 1.70653e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.224911e+01 1.802616e+01 moveto -9.13155e+01 1.70653e+01 lineto -9.056711e+01 1.75143e+01 lineto -9.147418e+01 1.849109e+01 lineto -9.224911e+01 1.802616e+01 lineto -closepath -gsave -5.475039e-01 5.475039e-01 6.843799e-01 setrgbcolor -fill -grestore -newpath -9.224911e+01 1.802616e+01 moveto -9.13155e+01 1.70653e+01 lineto -9.056711e+01 1.75143e+01 lineto -9.147418e+01 1.849109e+01 lineto -9.224911e+01 1.802616e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.315693e+01 1.90135e+01 moveto -9.224911e+01 1.802616e+01 lineto -9.147418e+01 1.849109e+01 lineto -9.235618e+01 1.949392e+01 lineto -9.315693e+01 1.90135e+01 lineto -closepath -gsave -5.4469e-01 5.4469e-01 6.808626e-01 setrgbcolor -fill -grestore -newpath -9.315693e+01 1.90135e+01 moveto -9.224911e+01 1.802616e+01 lineto -9.147418e+01 1.849109e+01 lineto -9.235618e+01 1.949392e+01 lineto -9.315693e+01 1.90135e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.403809e+01 2.002639e+01 moveto -9.315693e+01 1.90135e+01 lineto -9.235618e+01 1.949392e+01 lineto -9.321228e+01 2.052184e+01 lineto -9.403809e+01 2.002639e+01 lineto -closepath -gsave -5.418874e-01 5.418874e-01 6.773592e-01 setrgbcolor -fill -grestore -newpath -9.403809e+01 2.002639e+01 moveto -9.315693e+01 1.90135e+01 lineto -9.235618e+01 1.949392e+01 lineto -9.321228e+01 2.052184e+01 lineto -9.403809e+01 2.002639e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.489176e+01 2.106387e+01 moveto -9.403809e+01 2.002639e+01 lineto -9.321228e+01 2.052184e+01 lineto -9.404166e+01 2.157389e+01 lineto -9.489176e+01 2.106387e+01 lineto -closepath -gsave -5.390989e-01 5.390989e-01 6.738736e-01 setrgbcolor -fill -grestore -newpath -9.489176e+01 2.106387e+01 moveto -9.403809e+01 2.002639e+01 lineto -9.321228e+01 2.052184e+01 lineto -9.404166e+01 2.157389e+01 lineto -9.489176e+01 2.106387e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.571712e+01 2.212496e+01 moveto -9.489176e+01 2.106387e+01 lineto -9.404166e+01 2.157389e+01 lineto -9.484356e+01 2.264906e+01 lineto -9.571712e+01 2.212496e+01 lineto -closepath -gsave -5.363277e-01 5.363277e-01 6.704096e-01 setrgbcolor -fill -grestore -newpath -9.571712e+01 2.212496e+01 moveto -9.489176e+01 2.106387e+01 lineto -9.404166e+01 2.157389e+01 lineto -9.484356e+01 2.264906e+01 lineto -9.571712e+01 2.212496e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.65134e+01 2.320866e+01 moveto -9.571712e+01 2.212496e+01 lineto -9.484356e+01 2.264906e+01 lineto -9.561719e+01 2.374635e+01 lineto -9.65134e+01 2.320866e+01 lineto -closepath -gsave -5.335767e-01 5.335767e-01 6.669709e-01 setrgbcolor -fill -grestore -newpath -9.65134e+01 2.320866e+01 moveto -9.571712e+01 2.212496e+01 lineto -9.484356e+01 2.264906e+01 lineto -9.561719e+01 2.374635e+01 lineto -9.65134e+01 2.320866e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.727984e+01 2.431393e+01 moveto -9.65134e+01 2.320866e+01 lineto -9.561719e+01 2.374635e+01 lineto -9.636184e+01 2.48647e+01 lineto -9.727984e+01 2.431393e+01 lineto -closepath -gsave -5.308489e-01 5.308489e-01 6.635611e-01 setrgbcolor -fill -grestore -newpath -9.727984e+01 2.431393e+01 moveto -9.65134e+01 2.320866e+01 lineto -9.561719e+01 2.374635e+01 lineto -9.636184e+01 2.48647e+01 lineto -9.727984e+01 2.431393e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.801572e+01 2.543974e+01 moveto -9.727984e+01 2.431393e+01 lineto -9.636184e+01 2.48647e+01 lineto -9.707679e+01 2.600306e+01 lineto -9.801572e+01 2.543974e+01 lineto -closepath -gsave -5.281469e-01 5.281469e-01 6.601837e-01 setrgbcolor -fill -grestore -newpath -9.801572e+01 2.543974e+01 moveto -9.727984e+01 2.431393e+01 lineto -9.636184e+01 2.48647e+01 lineto -9.707679e+01 2.600306e+01 lineto -9.801572e+01 2.543974e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.872034e+01 2.658502e+01 moveto -9.801572e+01 2.543974e+01 lineto -9.707679e+01 2.600306e+01 lineto -9.776137e+01 2.716036e+01 lineto -9.872034e+01 2.658502e+01 lineto -closepath -gsave -5.254736e-01 5.254736e-01 6.568421e-01 setrgbcolor -fill -grestore -newpath -9.872034e+01 2.658502e+01 moveto -9.801572e+01 2.543974e+01 lineto -9.707679e+01 2.600306e+01 lineto -9.776137e+01 2.716036e+01 lineto -9.872034e+01 2.658502e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.939304e+01 2.774867e+01 moveto -9.872034e+01 2.658502e+01 lineto -9.776137e+01 2.716036e+01 lineto -9.841493e+01 2.83355e+01 lineto -9.939304e+01 2.774867e+01 lineto -closepath -gsave -5.228316e-01 5.228316e-01 6.535396e-01 setrgbcolor -fill -grestore -newpath -9.939304e+01 2.774867e+01 moveto -9.872034e+01 2.658502e+01 lineto -9.776137e+01 2.716036e+01 lineto -9.841493e+01 2.83355e+01 lineto -9.939304e+01 2.774867e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.000332e+02 2.892961e+01 moveto -9.939304e+01 2.774867e+01 lineto -9.841493e+01 2.83355e+01 lineto -9.903686e+01 2.952736e+01 lineto -1.000332e+02 2.892961e+01 lineto -closepath -gsave -5.202235e-01 5.202235e-01 6.502794e-01 setrgbcolor -fill -grestore -newpath -1.000332e+02 2.892961e+01 moveto -9.939304e+01 2.774867e+01 lineto -9.841493e+01 2.83355e+01 lineto -9.903686e+01 2.952736e+01 lineto -1.000332e+02 2.892961e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.006401e+02 3.012671e+01 moveto -1.000332e+02 2.892961e+01 lineto -9.903686e+01 2.952736e+01 lineto -9.962656e+01 3.073481e+01 lineto -1.006401e+02 3.012671e+01 lineto -closepath -gsave -5.176516e-01 5.176516e-01 6.470645e-01 setrgbcolor -fill -grestore -newpath -1.006401e+02 3.012671e+01 moveto -1.000332e+02 2.892961e+01 lineto -9.903686e+01 2.952736e+01 lineto -9.962656e+01 3.073481e+01 lineto -1.006401e+02 3.012671e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.012133e+02 3.133884e+01 moveto -1.006401e+02 3.012671e+01 lineto -9.962656e+01 3.073481e+01 lineto -1.001835e+02 3.195672e+01 lineto -1.012133e+02 3.133884e+01 lineto -closepath -gsave -5.151184e-01 5.151184e-01 6.43898e-01 setrgbcolor -fill -grestore -newpath -1.012133e+02 3.133884e+01 moveto -1.006401e+02 3.012671e+01 lineto -9.962656e+01 3.073481e+01 lineto -1.001835e+02 3.195672e+01 lineto -1.012133e+02 3.133884e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.017523e+02 3.256485e+01 moveto -1.012133e+02 3.133884e+01 lineto -1.001835e+02 3.195672e+01 lineto -1.007071e+02 3.319193e+01 lineto -1.017523e+02 3.256485e+01 lineto -closepath -gsave -5.126261e-01 5.126261e-01 6.407827e-01 setrgbcolor -fill -grestore -newpath -1.017523e+02 3.256485e+01 moveto -1.012133e+02 3.133884e+01 lineto -1.001835e+02 3.195672e+01 lineto -1.007071e+02 3.319193e+01 lineto -1.017523e+02 3.256485e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.022564e+02 3.380358e+01 moveto -1.017523e+02 3.256485e+01 lineto -1.007071e+02 3.319193e+01 lineto -1.011969e+02 3.443926e+01 lineto -1.022564e+02 3.380358e+01 lineto -closepath -gsave -5.10177e-01 5.10177e-01 6.377212e-01 setrgbcolor -fill -grestore -newpath -1.022564e+02 3.380358e+01 moveto -1.017523e+02 3.256485e+01 lineto -1.007071e+02 3.319193e+01 lineto -1.011969e+02 3.443926e+01 lineto -1.022564e+02 3.380358e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.027253e+02 3.505386e+01 moveto -1.022564e+02 3.380358e+01 lineto -1.011969e+02 3.443926e+01 lineto -1.016524e+02 3.569754e+01 lineto -1.027253e+02 3.505386e+01 lineto -closepath -gsave -5.077729e-01 5.077729e-01 6.347161e-01 setrgbcolor -fill -grestore -newpath -1.027253e+02 3.505386e+01 moveto -1.022564e+02 3.380358e+01 lineto -1.011969e+02 3.443926e+01 lineto -1.016524e+02 3.569754e+01 lineto -1.027253e+02 3.505386e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.031584e+02 3.631451e+01 moveto -1.027253e+02 3.505386e+01 lineto -1.016524e+02 3.569754e+01 lineto -1.020732e+02 3.696557e+01 lineto -1.031584e+02 3.631451e+01 lineto -closepath -gsave -5.054159e-01 5.054159e-01 6.317699e-01 setrgbcolor -fill -grestore -newpath -1.031584e+02 3.631451e+01 moveto -1.027253e+02 3.505386e+01 lineto -1.016524e+02 3.569754e+01 lineto -1.020732e+02 3.696557e+01 lineto -1.031584e+02 3.631451e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.621374e+01 4.18258e+00 moveto -6.500393e+01 4.000527e+00 lineto -6.500379e+01 4.000593e+00 lineto -6.617073e+01 4.202893e+00 lineto -6.621374e+01 4.18258e+00 lineto -closepath -gsave -6.08182e-01 6.08182e-01 7.602275e-01 setrgbcolor -fill -grestore -newpath -6.621374e+01 4.18258e+00 moveto -6.500393e+01 4.000527e+00 lineto -6.500379e+01 4.000593e+00 lineto -6.617073e+01 4.202893e+00 lineto -6.621374e+01 4.18258e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.742239e+01 4.404226e+00 moveto -6.621374e+01 4.18258e+00 lineto -6.617073e+01 4.202893e+00 lineto -6.733655e+01 4.444767e+00 lineto -6.742239e+01 4.404226e+00 lineto -closepath -gsave -6.065916e-01 6.065916e-01 7.582395e-01 setrgbcolor -fill -grestore -newpath -6.742239e+01 4.404226e+00 moveto -6.621374e+01 4.18258e+00 lineto -6.617073e+01 4.202893e+00 lineto -6.733655e+01 4.444767e+00 lineto -6.742239e+01 4.404226e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.862876e+01 4.665256e+00 moveto -6.742239e+01 4.404226e+00 lineto -6.733655e+01 4.444767e+00 lineto -6.850017e+01 4.725987e+00 lineto -6.862876e+01 4.665256e+00 lineto -closepath -gsave -6.049377e-01 6.049377e-01 7.561721e-01 setrgbcolor -fill -grestore -newpath -6.862876e+01 4.665256e+00 moveto -6.742239e+01 4.404226e+00 lineto -6.733655e+01 4.444767e+00 lineto -6.850017e+01 4.725987e+00 lineto -6.862876e+01 4.665256e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.983169e+01 4.965422e+00 moveto -6.862876e+01 4.665256e+00 lineto -6.850017e+01 4.725987e+00 lineto -6.966047e+01 5.046284e+00 lineto -6.983169e+01 4.965422e+00 lineto -closepath -gsave -6.032222e-01 6.032222e-01 7.540277e-01 setrgbcolor -fill -grestore -newpath -6.983169e+01 4.965422e+00 moveto -6.862876e+01 4.665256e+00 lineto -6.850017e+01 4.725987e+00 lineto -6.966047e+01 5.046284e+00 lineto -6.983169e+01 4.965422e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.103004e+01 5.30444e+00 moveto -6.983169e+01 4.965422e+00 lineto -6.966047e+01 5.046284e+00 lineto -7.081635e+01 5.405358e+00 lineto -7.103004e+01 5.30444e+00 lineto -closepath -gsave -6.01447e-01 6.01447e-01 7.518087e-01 setrgbcolor -fill -grestore -newpath -7.103004e+01 5.30444e+00 moveto -6.983169e+01 4.965422e+00 lineto -6.966047e+01 5.046284e+00 lineto -7.081635e+01 5.405358e+00 lineto -7.103004e+01 5.30444e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.222268e+01 5.681988e+00 moveto -7.103004e+01 5.30444e+00 lineto -7.081635e+01 5.405358e+00 lineto -7.196673e+01 5.802866e+00 lineto -7.222268e+01 5.681988e+00 lineto -closepath -gsave -5.996141e-01 5.996141e-01 7.495177e-01 setrgbcolor -fill -grestore -newpath -7.222268e+01 5.681988e+00 moveto -7.103004e+01 5.30444e+00 lineto -7.081635e+01 5.405358e+00 lineto -7.196673e+01 5.802866e+00 lineto -7.222268e+01 5.681988e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.340849e+01 6.09771e+00 moveto -7.222268e+01 5.681988e+00 lineto -7.196673e+01 5.802866e+00 lineto -7.311052e+01 6.238434e+00 lineto -7.340849e+01 6.09771e+00 lineto -closepath -gsave -5.977259e-01 5.977259e-01 7.471573e-01 setrgbcolor -fill -grestore -newpath -7.340849e+01 6.09771e+00 moveto -7.222268e+01 5.681988e+00 lineto -7.196673e+01 5.802866e+00 lineto -7.311052e+01 6.238434e+00 lineto -7.340849e+01 6.09771e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.458633e+01 6.551212e+00 moveto -7.340849e+01 6.09771e+00 lineto -7.311052e+01 6.238434e+00 lineto -7.424662e+01 6.711648e+00 lineto -7.458633e+01 6.551212e+00 lineto -closepath -gsave -5.957843e-01 5.957843e-01 7.447304e-01 setrgbcolor -fill -grestore -newpath -7.458633e+01 6.551212e+00 moveto -7.340849e+01 6.09771e+00 lineto -7.311052e+01 6.238434e+00 lineto -7.424662e+01 6.711648e+00 lineto -7.458633e+01 6.551212e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.57551e+01 7.042065e+00 moveto -7.458633e+01 6.551212e+00 lineto -7.424662e+01 6.711648e+00 lineto -7.537397e+01 7.222061e+00 lineto -7.57551e+01 7.042065e+00 lineto -closepath -gsave -5.937917e-01 5.937917e-01 7.422396e-01 setrgbcolor -fill -grestore -newpath -7.57551e+01 7.042065e+00 moveto -7.458633e+01 6.551212e+00 lineto -7.424662e+01 6.711648e+00 lineto -7.537397e+01 7.222061e+00 lineto -7.57551e+01 7.042065e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.691368e+01 7.569803e+00 moveto -7.57551e+01 7.042065e+00 lineto -7.537397e+01 7.222061e+00 lineto -7.64915e+01 7.769189e+00 lineto -7.691368e+01 7.569803e+00 lineto -closepath -gsave -5.917504e-01 5.917504e-01 7.39688e-01 setrgbcolor -fill -grestore -newpath -7.691368e+01 7.569803e+00 moveto -7.57551e+01 7.042065e+00 lineto -7.537397e+01 7.222061e+00 lineto -7.64915e+01 7.769189e+00 lineto -7.691368e+01 7.569803e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.806099e+01 8.133927e+00 moveto -7.691368e+01 7.569803e+00 lineto -7.64915e+01 7.769189e+00 lineto -7.759815e+01 8.352514e+00 lineto -7.806099e+01 8.133927e+00 lineto -closepath -gsave -5.896628e-01 5.896628e-01 7.370785e-01 setrgbcolor -fill -grestore -newpath -7.806099e+01 8.133927e+00 moveto -7.691368e+01 7.569803e+00 lineto -7.64915e+01 7.769189e+00 lineto -7.759815e+01 8.352514e+00 lineto -7.806099e+01 8.133927e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.919592e+01 8.733904e+00 moveto -7.806099e+01 8.133927e+00 lineto -7.759815e+01 8.352514e+00 lineto -7.869287e+01 8.971485e+00 lineto -7.919592e+01 8.733904e+00 lineto -closepath -gsave -5.875313e-01 5.875313e-01 7.344142e-01 setrgbcolor -fill -grestore -newpath -7.919592e+01 8.733904e+00 moveto -7.806099e+01 8.133927e+00 lineto -7.759815e+01 8.352514e+00 lineto -7.869287e+01 8.971485e+00 lineto -7.919592e+01 8.733904e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.031742e+01 9.369164e+00 moveto -7.919592e+01 8.733904e+00 lineto -7.869287e+01 8.971485e+00 lineto -7.977462e+01 9.625514e+00 lineto -8.031742e+01 9.369164e+00 lineto -closepath -gsave -5.853585e-01 5.853585e-01 7.316982e-01 setrgbcolor -fill -grestore -newpath -8.031742e+01 9.369164e+00 moveto -7.919592e+01 8.733904e+00 lineto -7.869287e+01 8.971485e+00 lineto -7.977462e+01 9.625514e+00 lineto -8.031742e+01 9.369164e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.142442e+01 1.003911e+01 moveto -8.031742e+01 9.369164e+00 lineto -7.977462e+01 9.625514e+00 lineto -8.084239e+01 1.031398e+01 lineto -8.142442e+01 1.003911e+01 lineto -closepath -gsave -5.831469e-01 5.831469e-01 7.289336e-01 setrgbcolor -fill -grestore -newpath -8.142442e+01 1.003911e+01 moveto -8.031742e+01 9.369164e+00 lineto -7.977462e+01 9.625514e+00 lineto -8.084239e+01 1.031398e+01 lineto -8.142442e+01 1.003911e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.251586e+01 1.07431e+01 moveto -8.142442e+01 1.003911e+01 lineto -8.084239e+01 1.031398e+01 lineto -8.189515e+01 1.103624e+01 lineto -8.251586e+01 1.07431e+01 lineto -closepath -gsave -5.80899e-01 5.80899e-01 7.261238e-01 setrgbcolor -fill -grestore -newpath -8.251586e+01 1.07431e+01 moveto -8.142442e+01 1.003911e+01 lineto -8.084239e+01 1.031398e+01 lineto -8.189515e+01 1.103624e+01 lineto -8.251586e+01 1.07431e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.359072e+01 1.148047e+01 moveto -8.251586e+01 1.07431e+01 lineto -8.189515e+01 1.103624e+01 lineto -8.293192e+01 1.17916e+01 lineto -8.359072e+01 1.148047e+01 lineto -closepath -gsave -5.786175e-01 5.786175e-01 7.232719e-01 setrgbcolor -fill -grestore -newpath -8.359072e+01 1.148047e+01 moveto -8.251586e+01 1.07431e+01 lineto -8.189515e+01 1.103624e+01 lineto -8.293192e+01 1.17916e+01 lineto -8.359072e+01 1.148047e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.464798e+01 1.225052e+01 moveto -8.359072e+01 1.148047e+01 lineto -8.293192e+01 1.17916e+01 lineto -8.395172e+01 1.257935e+01 lineto -8.464798e+01 1.225052e+01 lineto -closepath -gsave -5.763051e-01 5.763051e-01 7.203814e-01 setrgbcolor -fill -grestore -newpath -8.464798e+01 1.225052e+01 moveto -8.359072e+01 1.148047e+01 lineto -8.293192e+01 1.17916e+01 lineto -8.395172e+01 1.257935e+01 lineto -8.464798e+01 1.225052e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.568663e+01 1.305254e+01 moveto -8.464798e+01 1.225052e+01 lineto -8.395172e+01 1.257935e+01 lineto -8.495356e+01 1.339874e+01 lineto -8.568663e+01 1.305254e+01 lineto -closepath -gsave -5.739645e-01 5.739645e-01 7.174557e-01 setrgbcolor -fill -grestore -newpath -8.568663e+01 1.305254e+01 moveto -8.464798e+01 1.225052e+01 lineto -8.395172e+01 1.257935e+01 lineto -8.495356e+01 1.339874e+01 lineto -8.568663e+01 1.305254e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.67057e+01 1.388574e+01 moveto -8.568663e+01 1.305254e+01 lineto -8.495356e+01 1.339874e+01 lineto -8.593652e+01 1.4249e+01 lineto -8.67057e+01 1.388574e+01 lineto -closepath -gsave -5.715984e-01 5.715984e-01 7.14498e-01 setrgbcolor -fill -grestore -newpath -8.67057e+01 1.388574e+01 moveto -8.568663e+01 1.305254e+01 lineto -8.495356e+01 1.339874e+01 lineto -8.593652e+01 1.4249e+01 lineto -8.67057e+01 1.388574e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.770422e+01 1.474935e+01 moveto -8.67057e+01 1.388574e+01 lineto -8.593652e+01 1.4249e+01 lineto -8.689965e+01 1.512933e+01 lineto -8.770422e+01 1.474935e+01 lineto -closepath -gsave -5.692096e-01 5.692096e-01 7.115119e-01 setrgbcolor -fill -grestore -newpath -8.770422e+01 1.474935e+01 moveto -8.67057e+01 1.388574e+01 lineto -8.593652e+01 1.4249e+01 lineto -8.689965e+01 1.512933e+01 lineto -8.770422e+01 1.474935e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.868124e+01 1.564255e+01 moveto -8.770422e+01 1.474935e+01 lineto -8.689965e+01 1.512933e+01 lineto -8.784205e+01 1.603888e+01 lineto -8.868124e+01 1.564255e+01 lineto -closepath -gsave -5.668007e-01 5.668007e-01 7.085009e-01 setrgbcolor -fill -grestore -newpath -8.868124e+01 1.564255e+01 moveto -8.770422e+01 1.474935e+01 lineto -8.689965e+01 1.512933e+01 lineto -8.784205e+01 1.603888e+01 lineto -8.868124e+01 1.564255e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.963584e+01 1.656449e+01 moveto -8.868124e+01 1.564255e+01 lineto -8.784205e+01 1.603888e+01 lineto -8.876282e+01 1.69768e+01 lineto -8.963584e+01 1.656449e+01 lineto -closepath -gsave -5.643747e-01 5.643747e-01 7.054684e-01 setrgbcolor -fill -grestore -newpath -8.963584e+01 1.656449e+01 moveto -8.868124e+01 1.564255e+01 lineto -8.784205e+01 1.603888e+01 lineto -8.876282e+01 1.69768e+01 lineto -8.963584e+01 1.656449e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.056711e+01 1.75143e+01 moveto -8.963584e+01 1.656449e+01 lineto -8.876282e+01 1.69768e+01 lineto -8.96611e+01 1.794219e+01 lineto -9.056711e+01 1.75143e+01 lineto -closepath -gsave -5.619343e-01 5.619343e-01 7.024179e-01 setrgbcolor -fill -grestore -newpath -9.056711e+01 1.75143e+01 moveto -8.963584e+01 1.656449e+01 lineto -8.876282e+01 1.69768e+01 lineto -8.96611e+01 1.794219e+01 lineto -9.056711e+01 1.75143e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.147418e+01 1.849109e+01 moveto -9.056711e+01 1.75143e+01 lineto -8.96611e+01 1.794219e+01 lineto -9.053602e+01 1.893416e+01 lineto -9.147418e+01 1.849109e+01 lineto -closepath -gsave -5.594823e-01 5.594823e-01 6.993528e-01 setrgbcolor -fill -grestore -newpath -9.147418e+01 1.849109e+01 moveto -9.056711e+01 1.75143e+01 lineto -8.96611e+01 1.794219e+01 lineto -9.053602e+01 1.893416e+01 lineto -9.147418e+01 1.849109e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.235618e+01 1.949392e+01 moveto -9.147418e+01 1.849109e+01 lineto -9.053602e+01 1.893416e+01 lineto -9.138676e+01 1.995175e+01 lineto -9.235618e+01 1.949392e+01 lineto -closepath -gsave -5.570214e-01 5.570214e-01 6.962768e-01 setrgbcolor -fill -grestore -newpath -9.235618e+01 1.949392e+01 moveto -9.147418e+01 1.849109e+01 lineto -9.053602e+01 1.893416e+01 lineto -9.138676e+01 1.995175e+01 lineto -9.235618e+01 1.949392e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.321228e+01 2.052184e+01 moveto -9.235618e+01 1.949392e+01 lineto -9.138676e+01 1.995175e+01 lineto -9.221253e+01 2.0994e+01 lineto -9.321228e+01 2.052184e+01 lineto -closepath -gsave -5.545545e-01 5.545545e-01 6.931932e-01 setrgbcolor -fill -grestore -newpath -9.321228e+01 2.052184e+01 moveto -9.235618e+01 1.949392e+01 lineto -9.138676e+01 1.995175e+01 lineto -9.221253e+01 2.0994e+01 lineto -9.321228e+01 2.052184e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.404166e+01 2.157389e+01 moveto -9.321228e+01 2.052184e+01 lineto -9.221253e+01 2.0994e+01 lineto -9.301252e+01 2.205993e+01 lineto -9.404166e+01 2.157389e+01 lineto -closepath -gsave -5.520844e-01 5.520844e-01 6.901054e-01 setrgbcolor -fill -grestore -newpath -9.404166e+01 2.157389e+01 moveto -9.321228e+01 2.052184e+01 lineto -9.221253e+01 2.0994e+01 lineto -9.301252e+01 2.205993e+01 lineto -9.404166e+01 2.157389e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.484356e+01 2.264906e+01 moveto -9.404166e+01 2.157389e+01 lineto -9.301252e+01 2.205993e+01 lineto -9.3786e+01 2.314852e+01 lineto -9.484356e+01 2.264906e+01 lineto -closepath -gsave -5.496137e-01 5.496137e-01 6.870171e-01 setrgbcolor -fill -grestore -newpath -9.484356e+01 2.264906e+01 moveto -9.404166e+01 2.157389e+01 lineto -9.301252e+01 2.205993e+01 lineto -9.3786e+01 2.314852e+01 lineto -9.484356e+01 2.264906e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.561719e+01 2.374635e+01 moveto -9.484356e+01 2.264906e+01 lineto -9.3786e+01 2.314852e+01 lineto -9.453222e+01 2.425875e+01 lineto -9.561719e+01 2.374635e+01 lineto -closepath -gsave -5.471452e-01 5.471452e-01 6.839315e-01 setrgbcolor -fill -grestore -newpath -9.561719e+01 2.374635e+01 moveto -9.484356e+01 2.264906e+01 lineto -9.3786e+01 2.314852e+01 lineto -9.453222e+01 2.425875e+01 lineto -9.561719e+01 2.374635e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.636184e+01 2.48647e+01 moveto -9.561719e+01 2.374635e+01 lineto -9.453222e+01 2.425875e+01 lineto -9.525047e+01 2.538957e+01 lineto -9.636184e+01 2.48647e+01 lineto -closepath -gsave -5.446816e-01 5.446816e-01 6.80852e-01 setrgbcolor -fill -grestore -newpath -9.636184e+01 2.48647e+01 moveto -9.561719e+01 2.374635e+01 lineto -9.453222e+01 2.425875e+01 lineto -9.525047e+01 2.538957e+01 lineto -9.636184e+01 2.48647e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.707679e+01 2.600306e+01 moveto -9.636184e+01 2.48647e+01 lineto -9.525047e+01 2.538957e+01 lineto -9.594009e+01 2.65399e+01 lineto -9.707679e+01 2.600306e+01 lineto -closepath -gsave -5.422255e-01 5.422255e-01 6.777819e-01 setrgbcolor -fill -grestore -newpath -9.707679e+01 2.600306e+01 moveto -9.636184e+01 2.48647e+01 lineto -9.525047e+01 2.538957e+01 lineto -9.594009e+01 2.65399e+01 lineto -9.707679e+01 2.600306e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.776137e+01 2.716036e+01 moveto -9.707679e+01 2.600306e+01 lineto -9.594009e+01 2.65399e+01 lineto -9.660041e+01 2.770865e+01 lineto -9.776137e+01 2.716036e+01 lineto -closepath -gsave -5.397796e-01 5.397796e-01 6.747245e-01 setrgbcolor -fill -grestore -newpath -9.776137e+01 2.716036e+01 moveto -9.707679e+01 2.600306e+01 lineto -9.594009e+01 2.65399e+01 lineto -9.660041e+01 2.770865e+01 lineto -9.776137e+01 2.716036e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.841493e+01 2.83355e+01 moveto -9.776137e+01 2.716036e+01 lineto -9.660041e+01 2.770865e+01 lineto -9.723082e+01 2.889472e+01 lineto -9.841493e+01 2.83355e+01 lineto -closepath -gsave -5.373465e-01 5.373465e-01 6.716831e-01 setrgbcolor -fill -grestore -newpath -9.841493e+01 2.83355e+01 moveto -9.776137e+01 2.716036e+01 lineto -9.660041e+01 2.770865e+01 lineto -9.723082e+01 2.889472e+01 lineto -9.841493e+01 2.83355e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.903686e+01 2.952736e+01 moveto -9.841493e+01 2.83355e+01 lineto -9.723082e+01 2.889472e+01 lineto -9.78307e+01 3.009699e+01 lineto -9.903686e+01 2.952736e+01 lineto -closepath -gsave -5.349286e-01 5.349286e-01 6.686608e-01 setrgbcolor -fill -grestore -newpath -9.903686e+01 2.952736e+01 moveto -9.841493e+01 2.83355e+01 lineto -9.723082e+01 2.889472e+01 lineto -9.78307e+01 3.009699e+01 lineto -9.903686e+01 2.952736e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.962656e+01 3.073481e+01 moveto -9.903686e+01 2.952736e+01 lineto -9.78307e+01 3.009699e+01 lineto -9.83995e+01 3.131432e+01 lineto -9.962656e+01 3.073481e+01 lineto -closepath -gsave -5.325285e-01 5.325285e-01 6.656607e-01 setrgbcolor -fill -grestore -newpath -9.962656e+01 3.073481e+01 moveto -9.903686e+01 2.952736e+01 lineto -9.78307e+01 3.009699e+01 lineto -9.83995e+01 3.131432e+01 lineto -9.962656e+01 3.073481e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.001835e+02 3.195672e+01 moveto -9.962656e+01 3.073481e+01 lineto -9.83995e+01 3.131432e+01 lineto -9.893668e+01 3.254555e+01 lineto -1.001835e+02 3.195672e+01 lineto -closepath -gsave -5.301486e-01 5.301486e-01 6.626858e-01 setrgbcolor -fill -grestore -newpath -1.001835e+02 3.195672e+01 moveto -9.962656e+01 3.073481e+01 lineto -9.83995e+01 3.131432e+01 lineto -9.893668e+01 3.254555e+01 lineto -1.001835e+02 3.195672e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.007071e+02 3.319193e+01 moveto -1.001835e+02 3.195672e+01 lineto -9.893668e+01 3.254555e+01 lineto -9.944173e+01 3.378952e+01 lineto -1.007071e+02 3.319193e+01 lineto -closepath -gsave -5.277912e-01 5.277912e-01 6.59739e-01 setrgbcolor -fill -grestore -newpath -1.007071e+02 3.319193e+01 moveto -1.001835e+02 3.195672e+01 lineto -9.893668e+01 3.254555e+01 lineto -9.944173e+01 3.378952e+01 lineto -1.007071e+02 3.319193e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.011969e+02 3.443926e+01 moveto -1.007071e+02 3.319193e+01 lineto -9.944173e+01 3.378952e+01 lineto -9.991417e+01 3.504505e+01 lineto -1.011969e+02 3.443926e+01 lineto -closepath -gsave -5.254587e-01 5.254587e-01 6.568233e-01 setrgbcolor -fill -grestore -newpath -1.011969e+02 3.443926e+01 moveto -1.007071e+02 3.319193e+01 lineto -9.944173e+01 3.378952e+01 lineto -9.991417e+01 3.504505e+01 lineto -1.011969e+02 3.443926e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.016524e+02 3.569754e+01 moveto -1.011969e+02 3.443926e+01 lineto -9.991417e+01 3.504505e+01 lineto -1.003535e+02 3.631095e+01 lineto -1.016524e+02 3.569754e+01 lineto -closepath -gsave -5.231531e-01 5.231531e-01 6.539414e-01 setrgbcolor -fill -grestore -newpath -1.016524e+02 3.569754e+01 moveto -1.011969e+02 3.443926e+01 lineto -9.991417e+01 3.504505e+01 lineto -1.003535e+02 3.631095e+01 lineto -1.016524e+02 3.569754e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.020732e+02 3.696557e+01 moveto -1.016524e+02 3.569754e+01 lineto -1.003535e+02 3.631095e+01 lineto -1.007595e+02 3.758603e+01 lineto -1.020732e+02 3.696557e+01 lineto -closepath -gsave -5.208768e-01 5.208768e-01 6.51096e-01 setrgbcolor -fill -grestore -newpath -1.020732e+02 3.696557e+01 moveto -1.016524e+02 3.569754e+01 lineto -1.003535e+02 3.631095e+01 lineto -1.007595e+02 3.758603e+01 lineto -1.020732e+02 3.696557e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.617073e+01 4.202893e+00 moveto -6.500379e+01 4.000593e+00 lineto -6.500363e+01 4.000655e+00 lineto -6.61205e+01 4.222079e+00 lineto -6.617073e+01 4.202893e+00 lineto -closepath -gsave -6.084869e-01 6.084869e-01 7.606086e-01 setrgbcolor -fill -grestore -newpath -6.617073e+01 4.202893e+00 moveto -6.500379e+01 4.000593e+00 lineto -6.500363e+01 4.000655e+00 lineto -6.61205e+01 4.222079e+00 lineto -6.617073e+01 4.202893e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.733655e+01 4.444767e+00 moveto -6.617073e+01 4.202893e+00 lineto -6.61205e+01 4.222079e+00 lineto -6.723631e+01 4.483058e+00 lineto -6.733655e+01 4.444767e+00 lineto -closepath -gsave -6.075011e-01 6.075011e-01 7.593764e-01 setrgbcolor -fill -grestore -newpath -6.733655e+01 4.444767e+00 moveto -6.617073e+01 4.202893e+00 lineto -6.61205e+01 4.222079e+00 lineto -6.723631e+01 4.483058e+00 lineto -6.733655e+01 4.444767e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.850017e+01 4.725987e+00 moveto -6.733655e+01 4.444767e+00 lineto -6.723631e+01 4.483058e+00 lineto -6.835e+01 4.783346e+00 lineto -6.850017e+01 4.725987e+00 lineto -closepath -gsave -6.064496e-01 6.064496e-01 7.58062e-01 setrgbcolor -fill -grestore -newpath -6.850017e+01 4.725987e+00 moveto -6.733655e+01 4.444767e+00 lineto -6.723631e+01 4.483058e+00 lineto -6.835e+01 4.783346e+00 lineto -6.850017e+01 4.725987e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.966047e+01 5.046284e+00 moveto -6.850017e+01 4.725987e+00 lineto -6.835e+01 4.783346e+00 lineto -6.946051e+01 5.122658e+00 lineto -6.966047e+01 5.046284e+00 lineto -closepath -gsave -6.053335e-01 6.053335e-01 7.566669e-01 setrgbcolor -fill -grestore -newpath -6.966047e+01 5.046284e+00 moveto -6.850017e+01 4.725987e+00 lineto -6.835e+01 4.783346e+00 lineto -6.946051e+01 5.122658e+00 lineto -6.966047e+01 5.046284e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.081635e+01 5.405358e+00 moveto -6.966047e+01 5.046284e+00 lineto -6.946051e+01 5.122658e+00 lineto -7.056681e+01 5.500674e+00 lineto -7.081635e+01 5.405358e+00 lineto -closepath -gsave -6.04154e-01 6.04154e-01 7.551926e-01 setrgbcolor -fill -grestore -newpath -7.081635e+01 5.405358e+00 moveto -6.966047e+01 5.046284e+00 lineto -6.946051e+01 5.122658e+00 lineto -7.056681e+01 5.500674e+00 lineto -7.081635e+01 5.405358e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.196673e+01 5.802866e+00 moveto -7.081635e+01 5.405358e+00 lineto -7.056681e+01 5.500674e+00 lineto -7.166783e+01 5.917034e+00 lineto -7.196673e+01 5.802866e+00 lineto -closepath -gsave -6.029126e-01 6.029126e-01 7.536408e-01 setrgbcolor -fill -grestore -newpath -7.196673e+01 5.802866e+00 moveto -7.081635e+01 5.405358e+00 lineto -7.056681e+01 5.500674e+00 lineto -7.166783e+01 5.917034e+00 lineto -7.196673e+01 5.802866e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.311052e+01 6.238434e+00 moveto -7.196673e+01 5.802866e+00 lineto -7.166783e+01 5.917034e+00 lineto -7.276254e+01 6.371346e+00 lineto -7.311052e+01 6.238434e+00 lineto -closepath -gsave -6.016106e-01 6.016106e-01 7.520133e-01 setrgbcolor -fill -grestore -newpath -7.311052e+01 6.238434e+00 moveto -7.196673e+01 5.802866e+00 lineto -7.166783e+01 5.917034e+00 lineto -7.276254e+01 6.371346e+00 lineto -7.311052e+01 6.238434e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.424662e+01 6.711648e+00 moveto -7.311052e+01 6.238434e+00 lineto -7.276254e+01 6.371346e+00 lineto -7.384991e+01 6.863178e+00 lineto -7.424662e+01 6.711648e+00 lineto -closepath -gsave -6.002495e-01 6.002495e-01 7.503119e-01 setrgbcolor -fill -grestore -newpath -7.424662e+01 6.711648e+00 moveto -7.311052e+01 6.238434e+00 lineto -7.276254e+01 6.371346e+00 lineto -7.384991e+01 6.863178e+00 lineto -7.424662e+01 6.711648e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.537397e+01 7.222061e+00 moveto -7.424662e+01 6.711648e+00 lineto -7.384991e+01 6.863178e+00 lineto -7.492889e+01 7.392066e+00 lineto -7.537397e+01 7.222061e+00 lineto -closepath -gsave -5.988309e-01 5.988309e-01 7.485386e-01 setrgbcolor -fill -grestore -newpath -7.537397e+01 7.222061e+00 moveto -7.424662e+01 6.711648e+00 lineto -7.384991e+01 6.863178e+00 lineto -7.492889e+01 7.392066e+00 lineto -7.537397e+01 7.222061e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.64915e+01 7.769189e+00 moveto -7.537397e+01 7.222061e+00 lineto -7.492889e+01 7.392066e+00 lineto -7.599847e+01 7.957508e+00 lineto -7.64915e+01 7.769189e+00 lineto -closepath -gsave -5.973563e-01 5.973563e-01 7.466954e-01 setrgbcolor -fill -grestore -newpath -7.64915e+01 7.769189e+00 moveto -7.537397e+01 7.222061e+00 lineto -7.492889e+01 7.392066e+00 lineto -7.599847e+01 7.957508e+00 lineto -7.64915e+01 7.769189e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.759815e+01 8.352514e+00 moveto -7.64915e+01 7.769189e+00 lineto -7.599847e+01 7.957508e+00 lineto -7.705764e+01 8.558968e+00 lineto -7.759815e+01 8.352514e+00 lineto -closepath -gsave -5.958275e-01 5.958275e-01 7.447844e-01 setrgbcolor -fill -grestore -newpath -7.759815e+01 8.352514e+00 moveto -7.64915e+01 7.769189e+00 lineto -7.599847e+01 7.957508e+00 lineto -7.705764e+01 8.558968e+00 lineto -7.759815e+01 8.352514e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.869287e+01 8.971485e+00 moveto -7.759815e+01 8.352514e+00 lineto -7.705764e+01 8.558968e+00 lineto -7.810539e+01 9.195879e+00 lineto -7.869287e+01 8.971485e+00 lineto -closepath -gsave -5.942462e-01 5.942462e-01 7.428078e-01 setrgbcolor -fill -grestore -newpath -7.869287e+01 8.971485e+00 moveto -7.759815e+01 8.352514e+00 lineto -7.705764e+01 8.558968e+00 lineto -7.810539e+01 9.195879e+00 lineto -7.869287e+01 8.971485e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.977462e+01 9.625514e+00 moveto -7.869287e+01 8.971485e+00 lineto -7.810539e+01 9.195879e+00 lineto -7.914073e+01 9.867636e+00 lineto -7.977462e+01 9.625514e+00 lineto -closepath -gsave -5.926143e-01 5.926143e-01 7.407678e-01 setrgbcolor -fill -grestore -newpath -7.977462e+01 9.625514e+00 moveto -7.869287e+01 8.971485e+00 lineto -7.810539e+01 9.195879e+00 lineto -7.914073e+01 9.867636e+00 lineto -7.977462e+01 9.625514e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.084239e+01 1.031398e+01 moveto -7.977462e+01 9.625514e+00 lineto -7.914073e+01 9.867636e+00 lineto -8.016269e+01 1.05736e+01 lineto -8.084239e+01 1.031398e+01 lineto -closepath -gsave -5.909336e-01 5.909336e-01 7.386669e-01 setrgbcolor -fill -grestore -newpath -8.084239e+01 1.031398e+01 moveto -7.977462e+01 9.625514e+00 lineto -7.914073e+01 9.867636e+00 lineto -8.016269e+01 1.05736e+01 lineto -8.084239e+01 1.031398e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.189515e+01 1.103624e+01 moveto -8.084239e+01 1.031398e+01 lineto -8.016269e+01 1.05736e+01 lineto -8.117029e+01 1.131311e+01 lineto -8.189515e+01 1.103624e+01 lineto -closepath -gsave -5.89206e-01 5.89206e-01 7.365075e-01 setrgbcolor -fill -grestore -newpath -8.189515e+01 1.103624e+01 moveto -8.084239e+01 1.031398e+01 lineto -8.016269e+01 1.05736e+01 lineto -8.117029e+01 1.131311e+01 lineto -8.189515e+01 1.103624e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.293192e+01 1.17916e+01 moveto -8.189515e+01 1.103624e+01 lineto -8.117029e+01 1.131311e+01 lineto -8.216257e+01 1.208546e+01 lineto -8.293192e+01 1.17916e+01 lineto -closepath -gsave -5.874335e-01 5.874335e-01 7.342919e-01 setrgbcolor -fill -grestore -newpath -8.293192e+01 1.17916e+01 moveto -8.189515e+01 1.103624e+01 lineto -8.117029e+01 1.131311e+01 lineto -8.216257e+01 1.208546e+01 lineto -8.293192e+01 1.17916e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.395172e+01 1.257935e+01 moveto -8.293192e+01 1.17916e+01 lineto -8.216257e+01 1.208546e+01 lineto -8.313861e+01 1.288993e+01 lineto -8.395172e+01 1.257935e+01 lineto -closepath -gsave -5.856183e-01 5.856183e-01 7.320228e-01 setrgbcolor -fill -grestore -newpath -8.395172e+01 1.257935e+01 moveto -8.293192e+01 1.17916e+01 lineto -8.216257e+01 1.208546e+01 lineto -8.313861e+01 1.288993e+01 lineto -8.395172e+01 1.257935e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.495356e+01 1.339874e+01 moveto -8.395172e+01 1.257935e+01 lineto -8.313861e+01 1.288993e+01 lineto -8.409748e+01 1.372574e+01 lineto -8.495356e+01 1.339874e+01 lineto -closepath -gsave -5.837623e-01 5.837623e-01 7.297028e-01 setrgbcolor -fill -grestore -newpath -8.495356e+01 1.339874e+01 moveto -8.395172e+01 1.257935e+01 lineto -8.313861e+01 1.288993e+01 lineto -8.409748e+01 1.372574e+01 lineto -8.495356e+01 1.339874e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.593652e+01 1.4249e+01 moveto -8.495356e+01 1.339874e+01 lineto -8.409748e+01 1.372574e+01 lineto -8.503826e+01 1.45921e+01 lineto -8.593652e+01 1.4249e+01 lineto -closepath -gsave -5.818677e-01 5.818677e-01 7.273346e-01 setrgbcolor -fill -grestore -newpath -8.593652e+01 1.4249e+01 moveto -8.495356e+01 1.339874e+01 lineto -8.409748e+01 1.372574e+01 lineto -8.503826e+01 1.45921e+01 lineto -8.593652e+01 1.4249e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.689965e+01 1.512933e+01 moveto -8.593652e+01 1.4249e+01 lineto -8.503826e+01 1.45921e+01 lineto -8.596007e+01 1.548821e+01 lineto -8.689965e+01 1.512933e+01 lineto -closepath -gsave -5.799367e-01 5.799367e-01 7.249208e-01 setrgbcolor -fill -grestore -newpath -8.689965e+01 1.512933e+01 moveto -8.593652e+01 1.4249e+01 lineto -8.503826e+01 1.45921e+01 lineto -8.596007e+01 1.548821e+01 lineto -8.689965e+01 1.512933e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.784205e+01 1.603888e+01 moveto -8.689965e+01 1.512933e+01 lineto -8.596007e+01 1.548821e+01 lineto -8.686204e+01 1.64132e+01 lineto -8.784205e+01 1.603888e+01 lineto -closepath -gsave -5.779715e-01 5.779715e-01 7.224643e-01 setrgbcolor -fill -grestore -newpath -8.784205e+01 1.603888e+01 moveto -8.689965e+01 1.512933e+01 lineto -8.596007e+01 1.548821e+01 lineto -8.686204e+01 1.64132e+01 lineto -8.784205e+01 1.603888e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.876282e+01 1.69768e+01 moveto -8.784205e+01 1.603888e+01 lineto -8.686204e+01 1.64132e+01 lineto -8.77433e+01 1.736621e+01 lineto -8.876282e+01 1.69768e+01 lineto -closepath -gsave -5.759744e-01 5.759744e-01 7.199679e-01 setrgbcolor -fill -grestore -newpath -8.876282e+01 1.69768e+01 moveto -8.784205e+01 1.603888e+01 lineto -8.686204e+01 1.64132e+01 lineto -8.77433e+01 1.736621e+01 lineto -8.876282e+01 1.69768e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.96611e+01 1.794219e+01 moveto -8.876282e+01 1.69768e+01 lineto -8.77433e+01 1.736621e+01 lineto -8.860304e+01 1.834633e+01 lineto -8.96611e+01 1.794219e+01 lineto -closepath -gsave -5.739476e-01 5.739476e-01 7.174345e-01 setrgbcolor -fill -grestore -newpath -8.96611e+01 1.794219e+01 moveto -8.876282e+01 1.69768e+01 lineto -8.77433e+01 1.736621e+01 lineto -8.860304e+01 1.834633e+01 lineto -8.96611e+01 1.794219e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.053602e+01 1.893416e+01 moveto -8.96611e+01 1.794219e+01 lineto -8.860304e+01 1.834633e+01 lineto -8.944042e+01 1.935263e+01 lineto -9.053602e+01 1.893416e+01 lineto -closepath -gsave -5.718935e-01 5.718935e-01 7.148669e-01 setrgbcolor -fill -grestore -newpath -9.053602e+01 1.893416e+01 moveto -8.96611e+01 1.794219e+01 lineto -8.860304e+01 1.834633e+01 lineto -8.944042e+01 1.935263e+01 lineto -9.053602e+01 1.893416e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.138676e+01 1.995175e+01 moveto -9.053602e+01 1.893416e+01 lineto -8.944042e+01 1.935263e+01 lineto -9.025467e+01 2.038416e+01 lineto -9.138676e+01 1.995175e+01 lineto -closepath -gsave -5.698145e-01 5.698145e-01 7.122681e-01 setrgbcolor -fill -grestore -newpath -9.138676e+01 1.995175e+01 moveto -9.053602e+01 1.893416e+01 lineto -8.944042e+01 1.935263e+01 lineto -9.025467e+01 2.038416e+01 lineto -9.138676e+01 1.995175e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.221253e+01 2.0994e+01 moveto -9.138676e+01 1.995175e+01 lineto -9.025467e+01 2.038416e+01 lineto -9.1045e+01 2.143995e+01 lineto -9.221253e+01 2.0994e+01 lineto -closepath -gsave -5.677128e-01 5.677128e-01 7.09641e-01 setrgbcolor -fill -grestore -newpath -9.221253e+01 2.0994e+01 moveto -9.138676e+01 1.995175e+01 lineto -9.025467e+01 2.038416e+01 lineto -9.1045e+01 2.143995e+01 lineto -9.221253e+01 2.0994e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.301252e+01 2.205993e+01 moveto -9.221253e+01 2.0994e+01 lineto -9.1045e+01 2.143995e+01 lineto -9.181067e+01 2.251899e+01 lineto -9.301252e+01 2.205993e+01 lineto -closepath -gsave -5.65591e-01 5.65591e-01 7.069887e-01 setrgbcolor -fill -grestore -newpath -9.301252e+01 2.205993e+01 moveto -9.221253e+01 2.0994e+01 lineto -9.1045e+01 2.143995e+01 lineto -9.181067e+01 2.251899e+01 lineto -9.301252e+01 2.205993e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.3786e+01 2.314852e+01 moveto -9.301252e+01 2.205993e+01 lineto -9.181067e+01 2.251899e+01 lineto -9.255096e+01 2.362026e+01 lineto -9.3786e+01 2.314852e+01 lineto -closepath -gsave -5.634513e-01 5.634513e-01 7.043141e-01 setrgbcolor -fill -grestore -newpath -9.3786e+01 2.314852e+01 moveto -9.301252e+01 2.205993e+01 lineto -9.181067e+01 2.251899e+01 lineto -9.255096e+01 2.362026e+01 lineto -9.3786e+01 2.314852e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.453222e+01 2.425875e+01 moveto -9.3786e+01 2.314852e+01 lineto -9.255096e+01 2.362026e+01 lineto -9.326517e+01 2.474271e+01 lineto -9.453222e+01 2.425875e+01 lineto -closepath -gsave -5.612962e-01 5.612962e-01 7.016202e-01 setrgbcolor -fill -grestore -newpath -9.453222e+01 2.425875e+01 moveto -9.3786e+01 2.314852e+01 lineto -9.255096e+01 2.362026e+01 lineto -9.326517e+01 2.474271e+01 lineto -9.453222e+01 2.425875e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.525047e+01 2.538957e+01 moveto -9.453222e+01 2.425875e+01 lineto -9.326517e+01 2.474271e+01 lineto -9.395261e+01 2.58853e+01 lineto -9.525047e+01 2.538957e+01 lineto -closepath -gsave -5.591281e-01 5.591281e-01 6.989101e-01 setrgbcolor -fill -grestore -newpath -9.525047e+01 2.538957e+01 moveto -9.453222e+01 2.425875e+01 lineto -9.326517e+01 2.474271e+01 lineto -9.395261e+01 2.58853e+01 lineto -9.525047e+01 2.538957e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.594009e+01 2.65399e+01 moveto -9.525047e+01 2.538957e+01 lineto -9.395261e+01 2.58853e+01 lineto -9.461264e+01 2.704693e+01 lineto -9.594009e+01 2.65399e+01 lineto -closepath -gsave -5.569494e-01 5.569494e-01 6.961868e-01 setrgbcolor -fill -grestore -newpath -9.594009e+01 2.65399e+01 moveto -9.525047e+01 2.538957e+01 lineto -9.395261e+01 2.58853e+01 lineto -9.461264e+01 2.704693e+01 lineto -9.594009e+01 2.65399e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.660041e+01 2.770865e+01 moveto -9.594009e+01 2.65399e+01 lineto -9.461264e+01 2.704693e+01 lineto -9.524463e+01 2.822651e+01 lineto -9.660041e+01 2.770865e+01 lineto -closepath -gsave -5.547626e-01 5.547626e-01 6.934532e-01 setrgbcolor -fill -grestore -newpath -9.660041e+01 2.770865e+01 moveto -9.594009e+01 2.65399e+01 lineto -9.461264e+01 2.704693e+01 lineto -9.524463e+01 2.822651e+01 lineto -9.660041e+01 2.770865e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.723082e+01 2.889472e+01 moveto -9.660041e+01 2.770865e+01 lineto -9.524463e+01 2.822651e+01 lineto -9.584799e+01 2.942291e+01 lineto -9.723082e+01 2.889472e+01 lineto -closepath -gsave -5.5257e-01 5.5257e-01 6.907125e-01 setrgbcolor -fill -grestore -newpath -9.723082e+01 2.889472e+01 moveto -9.660041e+01 2.770865e+01 lineto -9.524463e+01 2.822651e+01 lineto -9.584799e+01 2.942291e+01 lineto -9.723082e+01 2.889472e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.78307e+01 3.009699e+01 moveto -9.723082e+01 2.889472e+01 lineto -9.584799e+01 2.942291e+01 lineto -9.642213e+01 3.063501e+01 lineto -9.78307e+01 3.009699e+01 lineto -closepath -gsave -5.50374e-01 5.50374e-01 6.879675e-01 setrgbcolor -fill -grestore -newpath -9.78307e+01 3.009699e+01 moveto -9.723082e+01 2.889472e+01 lineto -9.584799e+01 2.942291e+01 lineto -9.642213e+01 3.063501e+01 lineto -9.78307e+01 3.009699e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.83995e+01 3.131432e+01 moveto -9.78307e+01 3.009699e+01 lineto -9.642213e+01 3.063501e+01 lineto -9.696653e+01 3.186166e+01 lineto -9.83995e+01 3.131432e+01 lineto -closepath -gsave -5.48177e-01 5.48177e-01 6.852213e-01 setrgbcolor -fill -grestore -newpath -9.83995e+01 3.131432e+01 moveto -9.78307e+01 3.009699e+01 lineto -9.642213e+01 3.063501e+01 lineto -9.696653e+01 3.186166e+01 lineto -9.83995e+01 3.131432e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.893668e+01 3.254555e+01 moveto -9.83995e+01 3.131432e+01 lineto -9.696653e+01 3.186166e+01 lineto -9.748066e+01 3.310169e+01 lineto -9.893668e+01 3.254555e+01 lineto -closepath -gsave -5.459814e-01 5.459814e-01 6.824768e-01 setrgbcolor -fill -grestore -newpath -9.893668e+01 3.254555e+01 moveto -9.83995e+01 3.131432e+01 lineto -9.696653e+01 3.186166e+01 lineto -9.748066e+01 3.310169e+01 lineto -9.893668e+01 3.254555e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.944173e+01 3.378952e+01 moveto -9.893668e+01 3.254555e+01 lineto -9.748066e+01 3.310169e+01 lineto -9.796404e+01 3.435394e+01 lineto -9.944173e+01 3.378952e+01 lineto -closepath -gsave -5.437895e-01 5.437895e-01 6.797369e-01 setrgbcolor -fill -grestore -newpath -9.944173e+01 3.378952e+01 moveto -9.893668e+01 3.254555e+01 lineto -9.748066e+01 3.310169e+01 lineto -9.796404e+01 3.435394e+01 lineto -9.944173e+01 3.378952e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.991417e+01 3.504505e+01 moveto -9.944173e+01 3.378952e+01 lineto -9.796404e+01 3.435394e+01 lineto -9.841621e+01 3.561721e+01 lineto -9.991417e+01 3.504505e+01 lineto -closepath -gsave -5.416036e-01 5.416036e-01 6.770045e-01 setrgbcolor -fill -grestore -newpath -9.991417e+01 3.504505e+01 moveto -9.944173e+01 3.378952e+01 lineto -9.796404e+01 3.435394e+01 lineto -9.841621e+01 3.561721e+01 lineto -9.991417e+01 3.504505e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.003535e+02 3.631095e+01 moveto -9.991417e+01 3.504505e+01 lineto -9.841621e+01 3.561721e+01 lineto -9.883674e+01 3.689031e+01 lineto -1.003535e+02 3.631095e+01 lineto -closepath -gsave -5.39426e-01 5.39426e-01 6.742824e-01 setrgbcolor -fill -grestore -newpath -1.003535e+02 3.631095e+01 moveto -9.991417e+01 3.504505e+01 lineto -9.841621e+01 3.561721e+01 lineto -9.883674e+01 3.689031e+01 lineto -1.003535e+02 3.631095e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -1.007595e+02 3.758603e+01 moveto -1.003535e+02 3.631095e+01 lineto -9.883674e+01 3.689031e+01 lineto -9.922523e+01 3.817204e+01 lineto -1.007595e+02 3.758603e+01 lineto -closepath -gsave -5.372588e-01 5.372588e-01 6.715735e-01 setrgbcolor -fill -grestore -newpath -1.007595e+02 3.758603e+01 moveto -1.003535e+02 3.631095e+01 lineto -9.883674e+01 3.689031e+01 lineto -9.922523e+01 3.817204e+01 lineto -1.007595e+02 3.758603e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.61205e+01 4.222079e+00 moveto -6.500363e+01 4.000655e+00 lineto -6.500345e+01 4.000713e+00 lineto -6.606336e+01 4.240018e+00 lineto -6.61205e+01 4.222079e+00 lineto -closepath -gsave -6.087947e-01 6.087947e-01 7.609934e-01 setrgbcolor -fill -grestore -newpath -6.61205e+01 4.222079e+00 moveto -6.500363e+01 4.000655e+00 lineto -6.500345e+01 4.000713e+00 lineto -6.606336e+01 4.240018e+00 lineto -6.61205e+01 4.222079e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.723631e+01 4.483058e+00 moveto -6.61205e+01 4.222079e+00 lineto -6.606336e+01 4.240018e+00 lineto -6.712227e+01 4.518862e+00 lineto -6.723631e+01 4.483058e+00 lineto -closepath -gsave -6.084198e-01 6.084198e-01 7.605248e-01 setrgbcolor -fill -grestore -newpath -6.723631e+01 4.483058e+00 moveto -6.61205e+01 4.222079e+00 lineto -6.606336e+01 4.240018e+00 lineto -6.712227e+01 4.518862e+00 lineto -6.723631e+01 4.483058e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.835e+01 4.783346e+00 moveto -6.723631e+01 4.483058e+00 lineto -6.712227e+01 4.518862e+00 lineto -6.817917e+01 4.836981e+00 lineto -6.835e+01 4.783346e+00 lineto -closepath -gsave -6.079775e-01 6.079775e-01 7.599719e-01 setrgbcolor -fill -grestore -newpath -6.835e+01 4.783346e+00 moveto -6.723631e+01 4.483058e+00 lineto -6.712227e+01 4.518862e+00 lineto -6.817917e+01 4.836981e+00 lineto -6.835e+01 4.783346e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.946051e+01 5.122658e+00 moveto -6.835e+01 4.783346e+00 lineto -6.817917e+01 4.836981e+00 lineto -6.923306e+01 5.194073e+00 lineto -6.946051e+01 5.122658e+00 lineto -closepath -gsave -6.074683e-01 6.074683e-01 7.593354e-01 setrgbcolor -fill -grestore -newpath -6.946051e+01 5.122658e+00 moveto -6.835e+01 4.783346e+00 lineto -6.817917e+01 4.836981e+00 lineto -6.923306e+01 5.194073e+00 lineto -6.946051e+01 5.122658e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.056681e+01 5.500674e+00 moveto -6.946051e+01 5.122658e+00 lineto -6.923306e+01 5.194073e+00 lineto -7.028294e+01 5.589801e+00 lineto -7.056681e+01 5.500674e+00 lineto -closepath -gsave -6.068928e-01 6.068928e-01 7.58616e-01 setrgbcolor -fill -grestore -newpath -7.056681e+01 5.500674e+00 moveto -6.946051e+01 5.122658e+00 lineto -6.923306e+01 5.194073e+00 lineto -7.028294e+01 5.589801e+00 lineto -7.056681e+01 5.500674e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.166783e+01 5.917034e+00 moveto -7.056681e+01 5.500674e+00 lineto -7.028294e+01 5.589801e+00 lineto -7.132782e+01 6.023789e+00 lineto -7.166783e+01 5.917034e+00 lineto -closepath -gsave -6.062516e-01 6.062516e-01 7.578145e-01 setrgbcolor -fill -grestore -newpath -7.166783e+01 5.917034e+00 moveto -7.056681e+01 5.500674e+00 lineto -7.028294e+01 5.589801e+00 lineto -7.132782e+01 6.023789e+00 lineto -7.166783e+01 5.917034e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.276254e+01 6.371346e+00 moveto -7.166783e+01 5.917034e+00 lineto -7.132782e+01 6.023789e+00 lineto -7.236671e+01 6.495628e+00 lineto -7.276254e+01 6.371346e+00 lineto -closepath -gsave -6.055454e-01 6.055454e-01 7.569317e-01 setrgbcolor -fill -grestore -newpath -7.276254e+01 6.371346e+00 moveto -7.166783e+01 5.917034e+00 lineto -7.132782e+01 6.023789e+00 lineto -7.236671e+01 6.495628e+00 lineto -7.276254e+01 6.371346e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.384991e+01 6.863178e+00 moveto -7.276254e+01 6.371346e+00 lineto -7.236671e+01 6.495628e+00 lineto -7.339863e+01 7.004869e+00 lineto -7.384991e+01 6.863178e+00 lineto -closepath -gsave -6.04775e-01 6.04775e-01 7.559687e-01 setrgbcolor -fill -grestore -newpath -7.384991e+01 6.863178e+00 moveto -7.276254e+01 6.371346e+00 lineto -7.236671e+01 6.495628e+00 lineto -7.339863e+01 7.004869e+00 lineto -7.384991e+01 6.863178e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.492889e+01 7.392066e+00 moveto -7.384991e+01 6.863178e+00 lineto -7.339863e+01 7.004869e+00 lineto -7.442259e+01 7.551032e+00 lineto -7.492889e+01 7.392066e+00 lineto -closepath -gsave -6.039413e-01 6.039413e-01 7.549266e-01 setrgbcolor -fill -grestore -newpath -7.492889e+01 7.392066e+00 moveto -7.384991e+01 6.863178e+00 lineto -7.339863e+01 7.004869e+00 lineto -7.442259e+01 7.551032e+00 lineto -7.492889e+01 7.392066e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.599847e+01 7.957508e+00 moveto -7.492889e+01 7.392066e+00 lineto -7.442259e+01 7.551032e+00 lineto -7.543763e+01 8.133598e+00 lineto -7.599847e+01 7.957508e+00 lineto -closepath -gsave -6.030452e-01 6.030452e-01 7.538066e-01 setrgbcolor -fill -grestore -newpath -7.599847e+01 7.957508e+00 moveto -7.492889e+01 7.392066e+00 lineto -7.442259e+01 7.551032e+00 lineto -7.543763e+01 8.133598e+00 lineto -7.599847e+01 7.957508e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.705764e+01 8.558968e+00 moveto -7.599847e+01 7.957508e+00 lineto -7.543763e+01 8.133598e+00 lineto -7.644279e+01 8.752016e+00 lineto -7.705764e+01 8.558968e+00 lineto -closepath -gsave -6.020878e-01 6.020878e-01 7.526098e-01 setrgbcolor -fill -grestore -newpath -7.705764e+01 8.558968e+00 moveto -7.599847e+01 7.957508e+00 lineto -7.543763e+01 8.133598e+00 lineto -7.644279e+01 8.752016e+00 lineto -7.705764e+01 8.558968e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.810539e+01 9.195879e+00 moveto -7.705764e+01 8.558968e+00 lineto -7.644279e+01 8.752016e+00 lineto -7.743711e+01 9.405702e+00 lineto -7.810539e+01 9.195879e+00 lineto -closepath -gsave -6.010701e-01 6.010701e-01 7.513377e-01 setrgbcolor -fill -grestore -newpath -7.810539e+01 9.195879e+00 moveto -7.705764e+01 8.558968e+00 lineto -7.644279e+01 8.752016e+00 lineto -7.743711e+01 9.405702e+00 lineto -7.810539e+01 9.195879e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.914073e+01 9.867636e+00 moveto -7.810539e+01 9.195879e+00 lineto -7.743711e+01 9.405702e+00 lineto -7.841966e+01 1.009403e+01 lineto -7.914073e+01 9.867636e+00 lineto -closepath -gsave -5.999933e-01 5.999933e-01 7.499916e-01 setrgbcolor -fill -grestore -newpath -7.914073e+01 9.867636e+00 moveto -7.810539e+01 9.195879e+00 lineto -7.743711e+01 9.405702e+00 lineto -7.841966e+01 1.009403e+01 lineto -7.914073e+01 9.867636e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.016269e+01 1.05736e+01 moveto -7.914073e+01 9.867636e+00 lineto -7.841966e+01 1.009403e+01 lineto -7.93895e+01 1.081636e+01 lineto -8.016269e+01 1.05736e+01 lineto -closepath -gsave -5.988586e-01 5.988586e-01 7.485732e-01 setrgbcolor -fill -grestore -newpath -8.016269e+01 1.05736e+01 moveto -7.914073e+01 9.867636e+00 lineto -7.841966e+01 1.009403e+01 lineto -7.93895e+01 1.081636e+01 lineto -8.016269e+01 1.05736e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.117029e+01 1.131311e+01 moveto -8.016269e+01 1.05736e+01 lineto -7.93895e+01 1.081636e+01 lineto -8.034572e+01 1.157201e+01 lineto -8.117029e+01 1.131311e+01 lineto -closepath -gsave -5.976672e-01 5.976672e-01 7.47084e-01 setrgbcolor -fill -grestore -newpath -8.117029e+01 1.131311e+01 moveto -8.016269e+01 1.05736e+01 lineto -7.93895e+01 1.081636e+01 lineto -8.034572e+01 1.157201e+01 lineto -8.117029e+01 1.131311e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.216257e+01 1.208546e+01 moveto -8.117029e+01 1.131311e+01 lineto -8.034572e+01 1.157201e+01 lineto -8.128741e+01 1.236024e+01 lineto -8.216257e+01 1.208546e+01 lineto -closepath -gsave -5.964206e-01 5.964206e-01 7.455258e-01 setrgbcolor -fill -grestore -newpath -8.216257e+01 1.208546e+01 moveto -8.117029e+01 1.131311e+01 lineto -8.034572e+01 1.157201e+01 lineto -8.128741e+01 1.236024e+01 lineto -8.216257e+01 1.208546e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.313861e+01 1.288993e+01 moveto -8.216257e+01 1.208546e+01 lineto -8.128741e+01 1.236024e+01 lineto -8.221368e+01 1.318033e+01 lineto -8.313861e+01 1.288993e+01 lineto -closepath -gsave -5.951202e-01 5.951202e-01 7.439002e-01 setrgbcolor -fill -grestore -newpath -8.313861e+01 1.288993e+01 moveto -8.216257e+01 1.208546e+01 lineto -8.128741e+01 1.236024e+01 lineto -8.221368e+01 1.318033e+01 lineto -8.313861e+01 1.288993e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.409748e+01 1.372574e+01 moveto -8.313861e+01 1.288993e+01 lineto -8.221368e+01 1.318033e+01 lineto -8.312365e+01 1.403149e+01 lineto -8.409748e+01 1.372574e+01 lineto -closepath -gsave -5.937673e-01 5.937673e-01 7.422092e-01 setrgbcolor -fill -grestore -newpath -8.409748e+01 1.372574e+01 moveto -8.313861e+01 1.288993e+01 lineto -8.221368e+01 1.318033e+01 lineto -8.312365e+01 1.403149e+01 lineto -8.409748e+01 1.372574e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.503826e+01 1.45921e+01 moveto -8.409748e+01 1.372574e+01 lineto -8.312365e+01 1.403149e+01 lineto -8.401646e+01 1.491293e+01 lineto -8.503826e+01 1.45921e+01 lineto -closepath -gsave -5.923637e-01 5.923637e-01 7.404546e-01 setrgbcolor -fill -grestore -newpath -8.503826e+01 1.45921e+01 moveto -8.409748e+01 1.372574e+01 lineto -8.312365e+01 1.403149e+01 lineto -8.401646e+01 1.491293e+01 lineto -8.503826e+01 1.45921e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.596007e+01 1.548821e+01 moveto -8.503826e+01 1.45921e+01 lineto -8.401646e+01 1.491293e+01 lineto -8.489126e+01 1.582379e+01 lineto -8.596007e+01 1.548821e+01 lineto -closepath -gsave -5.909108e-01 5.909108e-01 7.386385e-01 setrgbcolor -fill -grestore -newpath -8.596007e+01 1.548821e+01 moveto -8.503826e+01 1.45921e+01 lineto -8.401646e+01 1.491293e+01 lineto -8.489126e+01 1.582379e+01 lineto -8.596007e+01 1.548821e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.686204e+01 1.64132e+01 moveto -8.596007e+01 1.548821e+01 lineto -8.489126e+01 1.582379e+01 lineto -8.574724e+01 1.676323e+01 lineto -8.686204e+01 1.64132e+01 lineto -closepath -gsave -5.894104e-01 5.894104e-01 7.36763e-01 setrgbcolor -fill -grestore -newpath -8.686204e+01 1.64132e+01 moveto -8.596007e+01 1.548821e+01 lineto -8.489126e+01 1.582379e+01 lineto -8.574724e+01 1.676323e+01 lineto -8.686204e+01 1.64132e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.77433e+01 1.736621e+01 moveto -8.686204e+01 1.64132e+01 lineto -8.574724e+01 1.676323e+01 lineto -8.658356e+01 1.773034e+01 lineto -8.77433e+01 1.736621e+01 lineto -closepath -gsave -5.878641e-01 5.878641e-01 7.348301e-01 setrgbcolor -fill -grestore -newpath -8.77433e+01 1.736621e+01 moveto -8.686204e+01 1.64132e+01 lineto -8.574724e+01 1.676323e+01 lineto -8.658356e+01 1.773034e+01 lineto -8.77433e+01 1.736621e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.860304e+01 1.834633e+01 moveto -8.77433e+01 1.736621e+01 lineto -8.658356e+01 1.773034e+01 lineto -8.739946e+01 1.872423e+01 lineto -8.860304e+01 1.834633e+01 lineto -closepath -gsave -5.862737e-01 5.862737e-01 7.328421e-01 setrgbcolor -fill -grestore -newpath -8.860304e+01 1.834633e+01 moveto -8.77433e+01 1.736621e+01 lineto -8.658356e+01 1.773034e+01 lineto -8.739946e+01 1.872423e+01 lineto -8.860304e+01 1.834633e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.944042e+01 1.935263e+01 moveto -8.860304e+01 1.834633e+01 lineto -8.739946e+01 1.872423e+01 lineto -8.819414e+01 1.974393e+01 lineto -8.944042e+01 1.935263e+01 lineto -closepath -gsave -5.84641e-01 5.84641e-01 7.308013e-01 setrgbcolor -fill -grestore -newpath -8.944042e+01 1.935263e+01 moveto -8.860304e+01 1.834633e+01 lineto -8.739946e+01 1.872423e+01 lineto -8.819414e+01 1.974393e+01 lineto -8.944042e+01 1.935263e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.025467e+01 2.038416e+01 moveto -8.944042e+01 1.935263e+01 lineto -8.819414e+01 1.974393e+01 lineto -8.896687e+01 2.07885e+01 lineto -9.025467e+01 2.038416e+01 lineto -closepath -gsave -5.82968e-01 5.82968e-01 7.2871e-01 setrgbcolor -fill -grestore -newpath -9.025467e+01 2.038416e+01 moveto -8.944042e+01 1.935263e+01 lineto -8.819414e+01 1.974393e+01 lineto -8.896687e+01 2.07885e+01 lineto -9.025467e+01 2.038416e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.1045e+01 2.143995e+01 moveto -9.025467e+01 2.038416e+01 lineto -8.896687e+01 2.07885e+01 lineto -8.97169e+01 2.185694e+01 lineto -9.1045e+01 2.143995e+01 lineto -closepath -gsave -5.812564e-01 5.812564e-01 7.265705e-01 setrgbcolor -fill -grestore -newpath -9.1045e+01 2.143995e+01 moveto -9.025467e+01 2.038416e+01 lineto -8.896687e+01 2.07885e+01 lineto -8.97169e+01 2.185694e+01 lineto -9.1045e+01 2.143995e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.181067e+01 2.251899e+01 moveto -9.1045e+01 2.143995e+01 lineto -8.97169e+01 2.185694e+01 lineto -9.044353e+01 2.294824e+01 lineto -9.181067e+01 2.251899e+01 lineto -closepath -gsave -5.795083e-01 5.795083e-01 7.243854e-01 setrgbcolor -fill -grestore -newpath -9.181067e+01 2.251899e+01 moveto -9.1045e+01 2.143995e+01 lineto -8.97169e+01 2.185694e+01 lineto -9.044353e+01 2.294824e+01 lineto -9.181067e+01 2.251899e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.255096e+01 2.362026e+01 moveto -9.181067e+01 2.251899e+01 lineto -9.044353e+01 2.294824e+01 lineto -9.114607e+01 2.406136e+01 lineto -9.255096e+01 2.362026e+01 lineto -closepath -gsave -5.777256e-01 5.777256e-01 7.22157e-01 setrgbcolor -fill -grestore -newpath -9.255096e+01 2.362026e+01 moveto -9.181067e+01 2.251899e+01 lineto -9.044353e+01 2.294824e+01 lineto -9.114607e+01 2.406136e+01 lineto -9.255096e+01 2.362026e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.326517e+01 2.474271e+01 moveto -9.255096e+01 2.362026e+01 lineto -9.114607e+01 2.406136e+01 lineto -9.182385e+01 2.519525e+01 lineto -9.326517e+01 2.474271e+01 lineto -closepath -gsave -5.759104e-01 5.759104e-01 7.19888e-01 setrgbcolor -fill -grestore -newpath -9.326517e+01 2.474271e+01 moveto -9.255096e+01 2.362026e+01 lineto -9.114607e+01 2.406136e+01 lineto -9.182385e+01 2.519525e+01 lineto -9.326517e+01 2.474271e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.395261e+01 2.58853e+01 moveto -9.326517e+01 2.474271e+01 lineto -9.182385e+01 2.519525e+01 lineto -9.247624e+01 2.634884e+01 lineto -9.395261e+01 2.58853e+01 lineto -closepath -gsave -5.740648e-01 5.740648e-01 7.17581e-01 setrgbcolor -fill -grestore -newpath -9.395261e+01 2.58853e+01 moveto -9.326517e+01 2.474271e+01 lineto -9.182385e+01 2.519525e+01 lineto -9.247624e+01 2.634884e+01 lineto -9.395261e+01 2.58853e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.461264e+01 2.704693e+01 moveto -9.395261e+01 2.58853e+01 lineto -9.247624e+01 2.634884e+01 lineto -9.310261e+01 2.752104e+01 lineto -9.461264e+01 2.704693e+01 lineto -closepath -gsave -5.721907e-01 5.721907e-01 7.152384e-01 setrgbcolor -fill -grestore -newpath -9.461264e+01 2.704693e+01 moveto -9.395261e+01 2.58853e+01 lineto -9.247624e+01 2.634884e+01 lineto -9.310261e+01 2.752104e+01 lineto -9.461264e+01 2.704693e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.524463e+01 2.822651e+01 moveto -9.461264e+01 2.704693e+01 lineto -9.310261e+01 2.752104e+01 lineto -9.370238e+01 2.871074e+01 lineto -9.524463e+01 2.822651e+01 lineto -closepath -gsave -5.702904e-01 5.702904e-01 7.12863e-01 setrgbcolor -fill -grestore -newpath -9.524463e+01 2.822651e+01 moveto -9.461264e+01 2.704693e+01 lineto -9.310261e+01 2.752104e+01 lineto -9.370238e+01 2.871074e+01 lineto -9.524463e+01 2.822651e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.584799e+01 2.942291e+01 moveto -9.524463e+01 2.822651e+01 lineto -9.370238e+01 2.871074e+01 lineto -9.427497e+01 2.99168e+01 lineto -9.584799e+01 2.942291e+01 lineto -closepath -gsave -5.68366e-01 5.68366e-01 7.104575e-01 setrgbcolor -fill -grestore -newpath -9.584799e+01 2.942291e+01 moveto -9.524463e+01 2.822651e+01 lineto -9.370238e+01 2.871074e+01 lineto -9.427497e+01 2.99168e+01 lineto -9.584799e+01 2.942291e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.642213e+01 3.063501e+01 moveto -9.584799e+01 2.942291e+01 lineto -9.427497e+01 2.99168e+01 lineto -9.481984e+01 3.113809e+01 lineto -9.642213e+01 3.063501e+01 lineto -closepath -gsave -5.664196e-01 5.664196e-01 7.080245e-01 setrgbcolor -fill -grestore -newpath -9.642213e+01 3.063501e+01 moveto -9.584799e+01 2.942291e+01 lineto -9.427497e+01 2.99168e+01 lineto -9.481984e+01 3.113809e+01 lineto -9.642213e+01 3.063501e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.696653e+01 3.186166e+01 moveto -9.642213e+01 3.063501e+01 lineto -9.481984e+01 3.113809e+01 lineto -9.533648e+01 3.237346e+01 lineto -9.696653e+01 3.186166e+01 lineto -closepath -gsave -5.644534e-01 5.644534e-01 7.055668e-01 setrgbcolor -fill -grestore -newpath -9.696653e+01 3.186166e+01 moveto -9.642213e+01 3.063501e+01 lineto -9.481984e+01 3.113809e+01 lineto -9.533648e+01 3.237346e+01 lineto -9.696653e+01 3.186166e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.748066e+01 3.310169e+01 moveto -9.696653e+01 3.186166e+01 lineto -9.533648e+01 3.237346e+01 lineto -9.582439e+01 3.362172e+01 lineto -9.748066e+01 3.310169e+01 lineto -closepath -gsave -5.624697e-01 5.624697e-01 7.030871e-01 setrgbcolor -fill -grestore -newpath -9.748066e+01 3.310169e+01 moveto -9.696653e+01 3.186166e+01 lineto -9.533648e+01 3.237346e+01 lineto -9.582439e+01 3.362172e+01 lineto -9.748066e+01 3.310169e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.796404e+01 3.435394e+01 moveto -9.748066e+01 3.310169e+01 lineto -9.582439e+01 3.362172e+01 lineto -9.628312e+01 3.488171e+01 lineto -9.796404e+01 3.435394e+01 lineto -closepath -gsave -5.604706e-01 5.604706e-01 7.005883e-01 setrgbcolor -fill -grestore -newpath -9.796404e+01 3.435394e+01 moveto -9.748066e+01 3.310169e+01 lineto -9.582439e+01 3.362172e+01 lineto -9.628312e+01 3.488171e+01 lineto -9.796404e+01 3.435394e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.841621e+01 3.561721e+01 moveto -9.796404e+01 3.435394e+01 lineto -9.628312e+01 3.488171e+01 lineto -9.671223e+01 3.615222e+01 lineto -9.841621e+01 3.561721e+01 lineto -closepath -gsave -5.584583e-01 5.584583e-01 6.980729e-01 setrgbcolor -fill -grestore -newpath -9.841621e+01 3.561721e+01 moveto -9.796404e+01 3.435394e+01 lineto -9.628312e+01 3.488171e+01 lineto -9.671223e+01 3.615222e+01 lineto -9.841621e+01 3.561721e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.883674e+01 3.689031e+01 moveto -9.841621e+01 3.561721e+01 lineto -9.671223e+01 3.615222e+01 lineto -9.711132e+01 3.743205e+01 lineto -9.883674e+01 3.689031e+01 lineto -closepath -gsave -5.564351e-01 5.564351e-01 6.955439e-01 setrgbcolor -fill -grestore -newpath -9.883674e+01 3.689031e+01 moveto -9.841621e+01 3.561721e+01 lineto -9.671223e+01 3.615222e+01 lineto -9.711132e+01 3.743205e+01 lineto -9.883674e+01 3.689031e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.922523e+01 3.817204e+01 moveto -9.883674e+01 3.689031e+01 lineto -9.711132e+01 3.743205e+01 lineto -9.748e+01 3.872e+01 lineto -9.922523e+01 3.817204e+01 lineto -closepath -gsave -5.544031e-01 5.544031e-01 6.930039e-01 setrgbcolor -fill -grestore -newpath -9.922523e+01 3.817204e+01 moveto -9.883674e+01 3.689031e+01 lineto -9.711132e+01 3.743205e+01 lineto -9.748e+01 3.872e+01 lineto -9.922523e+01 3.817204e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.606336e+01 4.240018e+00 moveto -6.500345e+01 4.000713e+00 lineto -6.500324e+01 4.000767e+00 lineto -6.599967e+01 4.256601e+00 lineto -6.606336e+01 4.240018e+00 lineto -closepath -gsave -6.091036e-01 6.091036e-01 7.613795e-01 setrgbcolor -fill -grestore -newpath -6.606336e+01 4.240018e+00 moveto -6.500345e+01 4.000713e+00 lineto -6.500324e+01 4.000767e+00 lineto -6.599967e+01 4.256601e+00 lineto -6.606336e+01 4.240018e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.712227e+01 4.518862e+00 moveto -6.606336e+01 4.240018e+00 lineto -6.599967e+01 4.256601e+00 lineto -6.699515e+01 4.551959e+00 lineto -6.712227e+01 4.518862e+00 lineto -closepath -gsave -6.09342e-01 6.09342e-01 7.616775e-01 setrgbcolor -fill -grestore -newpath -6.712227e+01 4.518862e+00 moveto -6.606336e+01 4.240018e+00 lineto -6.599967e+01 4.256601e+00 lineto -6.699515e+01 4.551959e+00 lineto -6.712227e+01 4.518862e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.817917e+01 4.836981e+00 moveto -6.712227e+01 4.518862e+00 lineto -6.699515e+01 4.551959e+00 lineto -6.798875e+01 4.88656e+00 lineto -6.817917e+01 4.836981e+00 lineto -closepath -gsave -6.095121e-01 6.095121e-01 7.618901e-01 setrgbcolor -fill -grestore -newpath -6.817917e+01 4.836981e+00 moveto -6.712227e+01 4.518862e+00 lineto -6.699515e+01 4.551959e+00 lineto -6.798875e+01 4.88656e+00 lineto -6.817917e+01 4.836981e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.923306e+01 5.194073e+00 moveto -6.817917e+01 4.836981e+00 lineto -6.798875e+01 4.88656e+00 lineto -6.897951e+01 5.260088e+00 lineto -6.923306e+01 5.194073e+00 lineto -closepath -gsave -6.096135e-01 6.096135e-01 7.620169e-01 setrgbcolor -fill -grestore -newpath -6.923306e+01 5.194073e+00 moveto -6.817917e+01 4.836981e+00 lineto -6.798875e+01 4.88656e+00 lineto -6.897951e+01 5.260088e+00 lineto -6.923306e+01 5.194073e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.028294e+01 5.589801e+00 moveto -6.923306e+01 5.194073e+00 lineto -6.897951e+01 5.260088e+00 lineto -6.996651e+01 5.672189e+00 lineto -7.028294e+01 5.589801e+00 lineto -closepath -gsave -6.096462e-01 6.096462e-01 7.620577e-01 setrgbcolor -fill -grestore -newpath -7.028294e+01 5.589801e+00 moveto -6.923306e+01 5.194073e+00 lineto -6.897951e+01 5.260088e+00 lineto -6.996651e+01 5.672189e+00 lineto -7.028294e+01 5.589801e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.132782e+01 6.023789e+00 moveto -7.028294e+01 5.589801e+00 lineto -6.996651e+01 5.672189e+00 lineto -7.09488e+01 6.122473e+00 lineto -7.132782e+01 6.023789e+00 lineto -closepath -gsave -6.096101e-01 6.096101e-01 7.620127e-01 setrgbcolor -fill -grestore -newpath -7.132782e+01 6.023789e+00 moveto -7.028294e+01 5.589801e+00 lineto -6.996651e+01 5.672189e+00 lineto -7.09488e+01 6.122473e+00 lineto -7.132782e+01 6.023789e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.236671e+01 6.495628e+00 moveto -7.132782e+01 6.023789e+00 lineto -7.09488e+01 6.122473e+00 lineto -7.192546e+01 6.610512e+00 lineto -7.236671e+01 6.495628e+00 lineto -closepath -gsave -6.095053e-01 6.095053e-01 7.618817e-01 setrgbcolor -fill -grestore -newpath -7.236671e+01 6.495628e+00 moveto -7.132782e+01 6.023789e+00 lineto -7.09488e+01 6.122473e+00 lineto -7.192546e+01 6.610512e+00 lineto -7.236671e+01 6.495628e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.339863e+01 7.004869e+00 moveto -7.236671e+01 6.495628e+00 lineto -7.192546e+01 6.610512e+00 lineto -7.289557e+01 7.135847e+00 lineto -7.339863e+01 7.004869e+00 lineto -closepath -gsave -6.09332e-01 6.09332e-01 7.61665e-01 setrgbcolor -fill -grestore -newpath -7.339863e+01 7.004869e+00 moveto -7.236671e+01 6.495628e+00 lineto -7.192546e+01 6.610512e+00 lineto -7.289557e+01 7.135847e+00 lineto -7.339863e+01 7.004869e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.442259e+01 7.551032e+00 moveto -7.339863e+01 7.004869e+00 lineto -7.289557e+01 7.135847e+00 lineto -7.385819e+01 7.697978e+00 lineto -7.442259e+01 7.551032e+00 lineto -closepath -gsave -6.090902e-01 6.090902e-01 7.613627e-01 setrgbcolor -fill -grestore -newpath -7.442259e+01 7.551032e+00 moveto -7.339863e+01 7.004869e+00 lineto -7.289557e+01 7.135847e+00 lineto -7.385819e+01 7.697978e+00 lineto -7.442259e+01 7.551032e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.543763e+01 8.133598e+00 moveto -7.442259e+01 7.551032e+00 lineto -7.385819e+01 7.697978e+00 lineto -7.481244e+01 8.296374e+00 lineto -7.543763e+01 8.133598e+00 lineto -closepath -gsave -6.087803e-01 6.087803e-01 7.609754e-01 setrgbcolor -fill -grestore -newpath -7.543763e+01 8.133598e+00 moveto -7.442259e+01 7.551032e+00 lineto -7.385819e+01 7.697978e+00 lineto -7.481244e+01 8.296374e+00 lineto -7.543763e+01 8.133598e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.644279e+01 8.752016e+00 moveto -7.543763e+01 8.133598e+00 lineto -7.481244e+01 8.296374e+00 lineto -7.575739e+01 8.930468e+00 lineto -7.644279e+01 8.752016e+00 lineto -closepath -gsave -6.084026e-01 6.084026e-01 7.605033e-01 setrgbcolor -fill -grestore -newpath -7.644279e+01 8.752016e+00 moveto -7.543763e+01 8.133598e+00 lineto -7.481244e+01 8.296374e+00 lineto -7.575739e+01 8.930468e+00 lineto -7.644279e+01 8.752016e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.743711e+01 9.405702e+00 moveto -7.644279e+01 8.752016e+00 lineto -7.575739e+01 8.930468e+00 lineto -7.669215e+01 9.59966e+00 lineto -7.743711e+01 9.405702e+00 lineto -closepath -gsave -6.079576e-01 6.079576e-01 7.59947e-01 setrgbcolor -fill -grestore -newpath -7.743711e+01 9.405702e+00 moveto -7.644279e+01 8.752016e+00 lineto -7.575739e+01 8.930468e+00 lineto -7.669215e+01 9.59966e+00 lineto -7.743711e+01 9.405702e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.841966e+01 1.009403e+01 moveto -7.743711e+01 9.405702e+00 lineto -7.669215e+01 9.59966e+00 lineto -7.761585e+01 1.030332e+01 lineto -7.841966e+01 1.009403e+01 lineto -closepath -gsave -6.074457e-01 6.074457e-01 7.593071e-01 setrgbcolor -fill -grestore -newpath -7.841966e+01 1.009403e+01 moveto -7.743711e+01 9.405702e+00 lineto -7.669215e+01 9.59966e+00 lineto -7.761585e+01 1.030332e+01 lineto -7.841966e+01 1.009403e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.93895e+01 1.081636e+01 moveto -7.841966e+01 1.009403e+01 lineto -7.761585e+01 1.030332e+01 lineto -7.85276e+01 1.104077e+01 lineto -7.93895e+01 1.081636e+01 lineto -closepath -gsave -6.068675e-01 6.068675e-01 7.585844e-01 setrgbcolor -fill -grestore -newpath -7.93895e+01 1.081636e+01 moveto -7.841966e+01 1.009403e+01 lineto -7.761585e+01 1.030332e+01 lineto -7.85276e+01 1.104077e+01 lineto -7.93895e+01 1.081636e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.034572e+01 1.157201e+01 moveto -7.93895e+01 1.081636e+01 lineto -7.85276e+01 1.104077e+01 lineto -7.942654e+01 1.181132e+01 lineto -8.034572e+01 1.157201e+01 lineto -closepath -gsave -6.062237e-01 6.062237e-01 7.577797e-01 setrgbcolor -fill -grestore -newpath -8.034572e+01 1.157201e+01 moveto -7.93895e+01 1.081636e+01 lineto -7.85276e+01 1.104077e+01 lineto -7.942654e+01 1.181132e+01 lineto -8.034572e+01 1.157201e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.128741e+01 1.236024e+01 moveto -8.034572e+01 1.157201e+01 lineto -7.942654e+01 1.181132e+01 lineto -8.031183e+01 1.261425e+01 lineto -8.128741e+01 1.236024e+01 lineto -closepath -gsave -6.055151e-01 6.055151e-01 7.568938e-01 setrgbcolor -fill -grestore -newpath -8.128741e+01 1.236024e+01 moveto -8.034572e+01 1.157201e+01 lineto -7.942654e+01 1.181132e+01 lineto -8.031183e+01 1.261425e+01 lineto -8.128741e+01 1.236024e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.221368e+01 1.318033e+01 moveto -8.128741e+01 1.236024e+01 lineto -8.031183e+01 1.261425e+01 lineto -8.118261e+01 1.344878e+01 lineto -8.221368e+01 1.318033e+01 lineto -closepath -gsave -6.047423e-01 6.047423e-01 7.559279e-01 setrgbcolor -fill -grestore -newpath -8.221368e+01 1.318033e+01 moveto -8.128741e+01 1.236024e+01 lineto -8.031183e+01 1.261425e+01 lineto -8.118261e+01 1.344878e+01 lineto -8.221368e+01 1.318033e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.312365e+01 1.403149e+01 moveto -8.221368e+01 1.318033e+01 lineto -8.118261e+01 1.344878e+01 lineto -8.203808e+01 1.431414e+01 lineto -8.312365e+01 1.403149e+01 lineto -closepath -gsave -6.039063e-01 6.039063e-01 7.548829e-01 setrgbcolor -fill -grestore -newpath -8.312365e+01 1.403149e+01 moveto -8.221368e+01 1.318033e+01 lineto -8.118261e+01 1.344878e+01 lineto -8.203808e+01 1.431414e+01 lineto -8.312365e+01 1.403149e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.401646e+01 1.491293e+01 moveto -8.312365e+01 1.403149e+01 lineto -8.203808e+01 1.431414e+01 lineto -8.287741e+01 1.520949e+01 lineto -8.401646e+01 1.491293e+01 lineto -closepath -gsave -6.03008e-01 6.03008e-01 7.5376e-01 setrgbcolor -fill -grestore -newpath -8.401646e+01 1.491293e+01 moveto -8.312365e+01 1.403149e+01 lineto -8.203808e+01 1.431414e+01 lineto -8.287741e+01 1.520949e+01 lineto -8.401646e+01 1.491293e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.489126e+01 1.582379e+01 moveto -8.401646e+01 1.491293e+01 lineto -8.287741e+01 1.520949e+01 lineto -8.369982e+01 1.6134e+01 lineto -8.489126e+01 1.582379e+01 lineto -closepath -gsave -6.020485e-01 6.020485e-01 7.525606e-01 setrgbcolor -fill -grestore -newpath -8.489126e+01 1.582379e+01 moveto -8.401646e+01 1.491293e+01 lineto -8.287741e+01 1.520949e+01 lineto -8.369982e+01 1.6134e+01 lineto -8.489126e+01 1.582379e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.574724e+01 1.676323e+01 moveto -8.489126e+01 1.582379e+01 lineto -8.369982e+01 1.6134e+01 lineto -8.450452e+01 1.708678e+01 lineto -8.574724e+01 1.676323e+01 lineto -closepath -gsave -6.010288e-01 6.010288e-01 7.51286e-01 setrgbcolor -fill -grestore -newpath -8.574724e+01 1.676323e+01 moveto -8.489126e+01 1.582379e+01 lineto -8.369982e+01 1.6134e+01 lineto -8.450452e+01 1.708678e+01 lineto -8.574724e+01 1.676323e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.658356e+01 1.773034e+01 moveto -8.574724e+01 1.676323e+01 lineto -8.450452e+01 1.708678e+01 lineto -8.529075e+01 1.806694e+01 lineto -8.658356e+01 1.773034e+01 lineto -closepath -gsave -5.999501e-01 5.999501e-01 7.499376e-01 setrgbcolor -fill -grestore -newpath -8.658356e+01 1.773034e+01 moveto -8.574724e+01 1.676323e+01 lineto -8.450452e+01 1.708678e+01 lineto -8.529075e+01 1.806694e+01 lineto -8.658356e+01 1.773034e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.739946e+01 1.872423e+01 moveto -8.658356e+01 1.773034e+01 lineto -8.529075e+01 1.806694e+01 lineto -8.605778e+01 1.907355e+01 lineto -8.739946e+01 1.872423e+01 lineto -closepath -gsave -5.988135e-01 5.988135e-01 7.485169e-01 setrgbcolor -fill -grestore -newpath -8.739946e+01 1.872423e+01 moveto -8.658356e+01 1.773034e+01 lineto -8.529075e+01 1.806694e+01 lineto -8.605778e+01 1.907355e+01 lineto -8.739946e+01 1.872423e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.819414e+01 1.974393e+01 moveto -8.739946e+01 1.872423e+01 lineto -8.605778e+01 1.907355e+01 lineto -8.680486e+01 2.010565e+01 lineto -8.819414e+01 1.974393e+01 lineto -closepath -gsave -5.976205e-01 5.976205e-01 7.470256e-01 setrgbcolor -fill -grestore -newpath -8.819414e+01 1.974393e+01 moveto -8.739946e+01 1.872423e+01 lineto -8.605778e+01 1.907355e+01 lineto -8.680486e+01 2.010565e+01 lineto -8.819414e+01 1.974393e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.896687e+01 2.07885e+01 moveto -8.819414e+01 1.974393e+01 lineto -8.680486e+01 2.010565e+01 lineto -8.75313e+01 2.116227e+01 lineto -8.896687e+01 2.07885e+01 lineto -closepath -gsave -5.963723e-01 5.963723e-01 7.454653e-01 setrgbcolor -fill -grestore -newpath -8.896687e+01 2.07885e+01 moveto -8.819414e+01 1.974393e+01 lineto -8.680486e+01 2.010565e+01 lineto -8.75313e+01 2.116227e+01 lineto -8.896687e+01 2.07885e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.97169e+01 2.185694e+01 moveto -8.896687e+01 2.07885e+01 lineto -8.75313e+01 2.116227e+01 lineto -8.823641e+01 2.22424e+01 lineto -8.97169e+01 2.185694e+01 lineto -closepath -gsave -5.950703e-01 5.950703e-01 7.438379e-01 setrgbcolor -fill -grestore -newpath -8.97169e+01 2.185694e+01 moveto -8.896687e+01 2.07885e+01 lineto -8.75313e+01 2.116227e+01 lineto -8.823641e+01 2.22424e+01 lineto -8.97169e+01 2.185694e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.044353e+01 2.294824e+01 moveto -8.97169e+01 2.185694e+01 lineto -8.823641e+01 2.22424e+01 lineto -8.891951e+01 2.334503e+01 lineto -9.044353e+01 2.294824e+01 lineto -closepath -gsave -5.937161e-01 5.937161e-01 7.421452e-01 setrgbcolor -fill -grestore -newpath -9.044353e+01 2.294824e+01 moveto -8.97169e+01 2.185694e+01 lineto -8.823641e+01 2.22424e+01 lineto -8.891951e+01 2.334503e+01 lineto -9.044353e+01 2.294824e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.114607e+01 2.406136e+01 moveto -9.044353e+01 2.294824e+01 lineto -8.891951e+01 2.334503e+01 lineto -8.957997e+01 2.446911e+01 lineto -9.114607e+01 2.406136e+01 lineto -closepath -gsave -5.923112e-01 5.923112e-01 7.40389e-01 setrgbcolor -fill -grestore -newpath -9.114607e+01 2.406136e+01 moveto -9.044353e+01 2.294824e+01 lineto -8.891951e+01 2.334503e+01 lineto -8.957997e+01 2.446911e+01 lineto -9.114607e+01 2.406136e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.182385e+01 2.519525e+01 moveto -9.114607e+01 2.406136e+01 lineto -8.957997e+01 2.446911e+01 lineto -9.021716e+01 2.561357e+01 lineto -9.182385e+01 2.519525e+01 lineto -closepath -gsave -5.908572e-01 5.908572e-01 7.385715e-01 setrgbcolor -fill -grestore -newpath -9.182385e+01 2.519525e+01 moveto -9.114607e+01 2.406136e+01 lineto -8.957997e+01 2.446911e+01 lineto -9.021716e+01 2.561357e+01 lineto -9.182385e+01 2.519525e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.247624e+01 2.634884e+01 moveto -9.182385e+01 2.519525e+01 lineto -9.021716e+01 2.561357e+01 lineto -9.083047e+01 2.677734e+01 lineto -9.247624e+01 2.634884e+01 lineto -closepath -gsave -5.893557e-01 5.893557e-01 7.366946e-01 setrgbcolor -fill -grestore -newpath -9.247624e+01 2.634884e+01 moveto -9.182385e+01 2.519525e+01 lineto -9.021716e+01 2.561357e+01 lineto -9.083047e+01 2.677734e+01 lineto -9.247624e+01 2.634884e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.310261e+01 2.752104e+01 moveto -9.247624e+01 2.634884e+01 lineto -9.083047e+01 2.677734e+01 lineto -9.141933e+01 2.795931e+01 lineto -9.310261e+01 2.752104e+01 lineto -closepath -gsave -5.878085e-01 5.878085e-01 7.347606e-01 setrgbcolor -fill -grestore -newpath -9.310261e+01 2.752104e+01 moveto -9.247624e+01 2.634884e+01 lineto -9.083047e+01 2.677734e+01 lineto -9.141933e+01 2.795931e+01 lineto -9.310261e+01 2.752104e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.370238e+01 2.871074e+01 moveto -9.310261e+01 2.752104e+01 lineto -9.141933e+01 2.795931e+01 lineto -9.198317e+01 2.915835e+01 lineto -9.370238e+01 2.871074e+01 lineto -closepath -gsave -5.862172e-01 5.862172e-01 7.327715e-01 setrgbcolor -fill -grestore -newpath -9.370238e+01 2.871074e+01 moveto -9.310261e+01 2.752104e+01 lineto -9.141933e+01 2.795931e+01 lineto -9.198317e+01 2.915835e+01 lineto -9.370238e+01 2.871074e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.427497e+01 2.99168e+01 moveto -9.370238e+01 2.871074e+01 lineto -9.198317e+01 2.915835e+01 lineto -9.252146e+01 3.037335e+01 lineto -9.427497e+01 2.99168e+01 lineto -closepath -gsave -5.845838e-01 5.845838e-01 7.307298e-01 setrgbcolor -fill -grestore -newpath -9.427497e+01 2.99168e+01 moveto -9.370238e+01 2.871074e+01 lineto -9.198317e+01 2.915835e+01 lineto -9.252146e+01 3.037335e+01 lineto -9.427497e+01 2.99168e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.481984e+01 3.113809e+01 moveto -9.427497e+01 2.99168e+01 lineto -9.252146e+01 3.037335e+01 lineto -9.303369e+01 3.160314e+01 lineto -9.481984e+01 3.113809e+01 lineto -closepath -gsave -5.829101e-01 5.829101e-01 7.286376e-01 setrgbcolor -fill -grestore -newpath -9.481984e+01 3.113809e+01 moveto -9.427497e+01 2.99168e+01 lineto -9.252146e+01 3.037335e+01 lineto -9.303369e+01 3.160314e+01 lineto -9.481984e+01 3.113809e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.533648e+01 3.237346e+01 moveto -9.481984e+01 3.113809e+01 lineto -9.303369e+01 3.160314e+01 lineto -9.351939e+01 3.284656e+01 lineto -9.533648e+01 3.237346e+01 lineto -closepath -gsave -5.811979e-01 5.811979e-01 7.264974e-01 setrgbcolor -fill -grestore -newpath -9.533648e+01 3.237346e+01 moveto -9.481984e+01 3.113809e+01 lineto -9.303369e+01 3.160314e+01 lineto -9.351939e+01 3.284656e+01 lineto -9.533648e+01 3.237346e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.582439e+01 3.362172e+01 moveto -9.533648e+01 3.237346e+01 lineto -9.351939e+01 3.284656e+01 lineto -9.397808e+01 3.410243e+01 lineto -9.582439e+01 3.362172e+01 lineto -closepath -gsave -5.794493e-01 5.794493e-01 7.243117e-01 setrgbcolor -fill -grestore -newpath -9.582439e+01 3.362172e+01 moveto -9.533648e+01 3.237346e+01 lineto -9.351939e+01 3.284656e+01 lineto -9.397808e+01 3.410243e+01 lineto -9.582439e+01 3.362172e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.628312e+01 3.488171e+01 moveto -9.582439e+01 3.362172e+01 lineto -9.397808e+01 3.410243e+01 lineto -9.440933e+01 3.536957e+01 lineto -9.628312e+01 3.488171e+01 lineto -closepath -gsave -5.776663e-01 5.776663e-01 7.220828e-01 setrgbcolor -fill -grestore -newpath -9.628312e+01 3.488171e+01 moveto -9.582439e+01 3.362172e+01 lineto -9.397808e+01 3.410243e+01 lineto -9.440933e+01 3.536957e+01 lineto -9.628312e+01 3.488171e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.671223e+01 3.615222e+01 moveto -9.628312e+01 3.488171e+01 lineto -9.440933e+01 3.536957e+01 lineto -9.481274e+01 3.664677e+01 lineto -9.671223e+01 3.615222e+01 lineto -closepath -gsave -5.758507e-01 5.758507e-01 7.198134e-01 setrgbcolor -fill -grestore -newpath -9.671223e+01 3.615222e+01 moveto -9.628312e+01 3.488171e+01 lineto -9.440933e+01 3.536957e+01 lineto -9.481274e+01 3.664677e+01 lineto -9.671223e+01 3.615222e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.711132e+01 3.743205e+01 moveto -9.671223e+01 3.615222e+01 lineto -9.481274e+01 3.664677e+01 lineto -9.518792e+01 3.793283e+01 lineto -9.711132e+01 3.743205e+01 lineto -closepath -gsave -5.740048e-01 5.740048e-01 7.17506e-01 setrgbcolor -fill -grestore -newpath -9.711132e+01 3.743205e+01 moveto -9.671223e+01 3.615222e+01 lineto -9.481274e+01 3.664677e+01 lineto -9.518792e+01 3.793283e+01 lineto -9.711132e+01 3.743205e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.748e+01 3.872e+01 moveto -9.711132e+01 3.743205e+01 lineto -9.518792e+01 3.793283e+01 lineto -9.553452e+01 3.922653e+01 lineto -9.748e+01 3.872e+01 lineto -closepath -gsave -5.721305e-01 5.721305e-01 7.151631e-01 setrgbcolor -fill -grestore -newpath -9.748e+01 3.872e+01 moveto -9.711132e+01 3.743205e+01 lineto -9.518792e+01 3.793283e+01 lineto -9.553452e+01 3.922653e+01 lineto -9.748e+01 3.872e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.599967e+01 4.256601e+00 moveto -6.500324e+01 4.000767e+00 lineto -6.500301e+01 4.000816e+00 lineto -6.592981e+01 4.271726e+00 lineto -6.599967e+01 4.256601e+00 lineto -closepath -gsave -6.094115e-01 6.094115e-01 7.617644e-01 setrgbcolor -fill -grestore -newpath -6.599967e+01 4.256601e+00 moveto -6.500324e+01 4.000767e+00 lineto -6.500301e+01 4.000816e+00 lineto -6.592981e+01 4.271726e+00 lineto -6.599967e+01 4.256601e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.699515e+01 4.551959e+00 moveto -6.599967e+01 4.256601e+00 lineto -6.592981e+01 4.271726e+00 lineto -6.685573e+01 4.582145e+00 lineto -6.699515e+01 4.551959e+00 lineto -closepath -gsave -6.102621e-01 6.102621e-01 7.628276e-01 setrgbcolor -fill -grestore -newpath -6.699515e+01 4.551959e+00 moveto -6.599967e+01 4.256601e+00 lineto -6.592981e+01 4.271726e+00 lineto -6.685573e+01 4.582145e+00 lineto -6.699515e+01 4.551959e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.798875e+01 4.88656e+00 moveto -6.699515e+01 4.551959e+00 lineto -6.685573e+01 4.582145e+00 lineto -6.777989e+01 4.931779e+00 lineto -6.798875e+01 4.88656e+00 lineto -closepath -gsave -6.110437e-01 6.110437e-01 7.638046e-01 setrgbcolor -fill -grestore -newpath -6.798875e+01 4.88656e+00 moveto -6.699515e+01 4.551959e+00 lineto -6.685573e+01 4.582145e+00 lineto -6.777989e+01 4.931779e+00 lineto -6.798875e+01 4.88656e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.897951e+01 5.260088e+00 moveto -6.798875e+01 4.88656e+00 lineto -6.777989e+01 4.931779e+00 lineto -6.870142e+01 5.320297e+00 lineto -6.897951e+01 5.260088e+00 lineto -closepath -gsave -6.117556e-01 6.117556e-01 7.646945e-01 setrgbcolor -fill -grestore -newpath -6.897951e+01 5.260088e+00 moveto -6.798875e+01 4.88656e+00 lineto -6.777989e+01 4.931779e+00 lineto -6.870142e+01 5.320297e+00 lineto -6.897951e+01 5.260088e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.996651e+01 5.672189e+00 moveto -6.897951e+01 5.260088e+00 lineto -6.870142e+01 5.320297e+00 lineto -6.961945e+01 5.74733e+00 lineto -6.996651e+01 5.672189e+00 lineto -closepath -gsave -6.12397e-01 6.12397e-01 7.654962e-01 setrgbcolor -fill -grestore -newpath -6.996651e+01 5.672189e+00 moveto -6.897951e+01 5.260088e+00 lineto -6.870142e+01 5.320297e+00 lineto -6.961945e+01 5.74733e+00 lineto -6.996651e+01 5.672189e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.09488e+01 6.122473e+00 moveto -6.996651e+01 5.672189e+00 lineto -6.961945e+01 5.74733e+00 lineto -7.05331e+01 6.212476e+00 lineto -7.09488e+01 6.122473e+00 lineto -closepath -gsave -6.129671e-01 6.129671e-01 7.662088e-01 setrgbcolor -fill -grestore -newpath -7.09488e+01 6.122473e+00 moveto -6.996651e+01 5.672189e+00 lineto -6.961945e+01 5.74733e+00 lineto -7.05331e+01 6.212476e+00 lineto -7.09488e+01 6.122473e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.192546e+01 6.610512e+00 moveto -7.09488e+01 6.122473e+00 lineto -7.05331e+01 6.212476e+00 lineto -7.144151e+01 6.715292e+00 lineto -7.192546e+01 6.610512e+00 lineto -closepath -gsave -6.134653e-01 6.134653e-01 7.668316e-01 setrgbcolor -fill -grestore -newpath -7.192546e+01 6.610512e+00 moveto -7.09488e+01 6.122473e+00 lineto -7.05331e+01 6.212476e+00 lineto -7.144151e+01 6.715292e+00 lineto -7.192546e+01 6.610512e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.289557e+01 7.135847e+00 moveto -7.192546e+01 6.610512e+00 lineto -7.144151e+01 6.715292e+00 lineto -7.234383e+01 7.255304e+00 lineto -7.289557e+01 7.135847e+00 lineto -closepath -gsave -6.138911e-01 6.138911e-01 7.673639e-01 setrgbcolor -fill -grestore -newpath -7.289557e+01 7.135847e+00 moveto -7.192546e+01 6.610512e+00 lineto -7.144151e+01 6.715292e+00 lineto -7.234383e+01 7.255304e+00 lineto -7.289557e+01 7.135847e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.385819e+01 7.697978e+00 moveto -7.289557e+01 7.135847e+00 lineto -7.234383e+01 7.255304e+00 lineto -7.323919e+01 7.831999e+00 lineto -7.385819e+01 7.697978e+00 lineto -closepath -gsave -6.14244e-01 6.14244e-01 7.67805e-01 setrgbcolor -fill -grestore -newpath -7.385819e+01 7.697978e+00 moveto -7.289557e+01 7.135847e+00 lineto -7.234383e+01 7.255304e+00 lineto -7.323919e+01 7.831999e+00 lineto -7.385819e+01 7.697978e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.481244e+01 8.296374e+00 moveto -7.385819e+01 7.697978e+00 lineto -7.323919e+01 7.831999e+00 lineto -7.412675e+01 8.444832e+00 lineto -7.481244e+01 8.296374e+00 lineto -closepath -gsave -6.145236e-01 6.145236e-01 7.681545e-01 setrgbcolor -fill -grestore -newpath -7.481244e+01 8.296374e+00 moveto -7.385819e+01 7.697978e+00 lineto -7.323919e+01 7.831999e+00 lineto -7.412675e+01 8.444832e+00 lineto -7.481244e+01 8.296374e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.575739e+01 8.930468e+00 moveto -7.481244e+01 8.296374e+00 lineto -7.412675e+01 8.444832e+00 lineto -7.500567e+01 9.093223e+00 lineto -7.575739e+01 8.930468e+00 lineto -closepath -gsave -6.147296e-01 6.147296e-01 7.68412e-01 setrgbcolor -fill -grestore -newpath -7.575739e+01 8.930468e+00 moveto -7.481244e+01 8.296374e+00 lineto -7.412675e+01 8.444832e+00 lineto -7.500567e+01 9.093223e+00 lineto -7.575739e+01 8.930468e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.669215e+01 9.59966e+00 moveto -7.575739e+01 8.930468e+00 lineto -7.500567e+01 9.093223e+00 lineto -7.587511e+01 9.776558e+00 lineto -7.669215e+01 9.59966e+00 lineto -closepath -gsave -6.148618e-01 6.148618e-01 7.685772e-01 setrgbcolor -fill -grestore -newpath -7.669215e+01 9.59966e+00 moveto -7.575739e+01 8.930468e+00 lineto -7.500567e+01 9.093223e+00 lineto -7.587511e+01 9.776558e+00 lineto -7.669215e+01 9.59966e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.761585e+01 1.030332e+01 moveto -7.669215e+01 9.59966e+00 lineto -7.587511e+01 9.776558e+00 lineto -7.673426e+01 1.049419e+01 lineto -7.761585e+01 1.030332e+01 lineto -closepath -gsave -6.1492e-01 6.1492e-01 7.6865e-01 setrgbcolor -fill -grestore -newpath -7.761585e+01 1.030332e+01 moveto -7.669215e+01 9.59966e+00 lineto -7.587511e+01 9.776558e+00 lineto -7.673426e+01 1.049419e+01 lineto -7.761585e+01 1.030332e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.85276e+01 1.104077e+01 moveto -7.761585e+01 1.030332e+01 lineto -7.673426e+01 1.049419e+01 lineto -7.75823e+01 1.124544e+01 lineto -7.85276e+01 1.104077e+01 lineto -closepath -gsave -6.149043e-01 6.149043e-01 7.686303e-01 setrgbcolor -fill -grestore -newpath -7.85276e+01 1.104077e+01 moveto -7.761585e+01 1.030332e+01 lineto -7.673426e+01 1.049419e+01 lineto -7.75823e+01 1.124544e+01 lineto -7.85276e+01 1.104077e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.942654e+01 1.181132e+01 moveto -7.85276e+01 1.104077e+01 lineto -7.75823e+01 1.124544e+01 lineto -7.841842e+01 1.202959e+01 lineto -7.942654e+01 1.181132e+01 lineto -closepath -gsave -6.148145e-01 6.148145e-01 7.685181e-01 setrgbcolor -fill -grestore -newpath -7.942654e+01 1.181132e+01 moveto -7.85276e+01 1.104077e+01 lineto -7.75823e+01 1.124544e+01 lineto -7.841842e+01 1.202959e+01 lineto -7.942654e+01 1.181132e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.031183e+01 1.261425e+01 moveto -7.942654e+01 1.181132e+01 lineto -7.841842e+01 1.202959e+01 lineto -7.924184e+01 1.284591e+01 lineto -8.031183e+01 1.261425e+01 lineto -closepath -gsave -6.146509e-01 6.146509e-01 7.683136e-01 setrgbcolor -fill -grestore -newpath -8.031183e+01 1.261425e+01 moveto -7.942654e+01 1.181132e+01 lineto -7.841842e+01 1.202959e+01 lineto -7.924184e+01 1.284591e+01 lineto -8.031183e+01 1.261425e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.118261e+01 1.344878e+01 moveto -8.031183e+01 1.261425e+01 lineto -7.924184e+01 1.284591e+01 lineto -8.005178e+01 1.369362e+01 lineto -8.118261e+01 1.344878e+01 lineto -closepath -gsave -6.144135e-01 6.144135e-01 7.680169e-01 setrgbcolor -fill -grestore -newpath -8.118261e+01 1.344878e+01 moveto -8.031183e+01 1.261425e+01 lineto -7.924184e+01 1.284591e+01 lineto -8.005178e+01 1.369362e+01 lineto -8.118261e+01 1.344878e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.203808e+01 1.431414e+01 moveto -8.118261e+01 1.344878e+01 lineto -8.005178e+01 1.369362e+01 lineto -8.084747e+01 1.457192e+01 lineto -8.203808e+01 1.431414e+01 lineto -closepath -gsave -6.141028e-01 6.141028e-01 7.676285e-01 setrgbcolor -fill -grestore -newpath -8.203808e+01 1.431414e+01 moveto -8.118261e+01 1.344878e+01 lineto -8.005178e+01 1.369362e+01 lineto -8.084747e+01 1.457192e+01 lineto -8.203808e+01 1.431414e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.287741e+01 1.520949e+01 moveto -8.203808e+01 1.431414e+01 lineto -8.084747e+01 1.457192e+01 lineto -8.162815e+01 1.547997e+01 lineto -8.287741e+01 1.520949e+01 lineto -closepath -gsave -6.13719e-01 6.13719e-01 7.671487e-01 setrgbcolor -fill -grestore -newpath -8.287741e+01 1.520949e+01 moveto -8.203808e+01 1.431414e+01 lineto -8.084747e+01 1.457192e+01 lineto -8.162815e+01 1.547997e+01 lineto -8.287741e+01 1.520949e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.369982e+01 1.6134e+01 moveto -8.287741e+01 1.520949e+01 lineto -8.162815e+01 1.547997e+01 lineto -8.239308e+01 1.641692e+01 lineto -8.369982e+01 1.6134e+01 lineto -closepath -gsave -6.132625e-01 6.132625e-01 7.665782e-01 setrgbcolor -fill -grestore -newpath -8.369982e+01 1.6134e+01 moveto -8.287741e+01 1.520949e+01 lineto -8.162815e+01 1.547997e+01 lineto -8.239308e+01 1.641692e+01 lineto -8.369982e+01 1.6134e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.450452e+01 1.708678e+01 moveto -8.369982e+01 1.6134e+01 lineto -8.239308e+01 1.641692e+01 lineto -8.314155e+01 1.738188e+01 lineto -8.450452e+01 1.708678e+01 lineto -closepath -gsave -6.12734e-01 6.12734e-01 7.659175e-01 setrgbcolor -fill -grestore -newpath -8.450452e+01 1.708678e+01 moveto -8.369982e+01 1.6134e+01 lineto -8.239308e+01 1.641692e+01 lineto -8.314155e+01 1.738188e+01 lineto -8.450452e+01 1.708678e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.529075e+01 1.806694e+01 moveto -8.450452e+01 1.708678e+01 lineto -8.314155e+01 1.738188e+01 lineto -8.387285e+01 1.837393e+01 lineto -8.529075e+01 1.806694e+01 lineto -closepath -gsave -6.121339e-01 6.121339e-01 7.651674e-01 setrgbcolor -fill -grestore -newpath -8.529075e+01 1.806694e+01 moveto -8.450452e+01 1.708678e+01 lineto -8.314155e+01 1.738188e+01 lineto -8.387285e+01 1.837393e+01 lineto -8.529075e+01 1.806694e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.605778e+01 1.907355e+01 moveto -8.529075e+01 1.806694e+01 lineto -8.387285e+01 1.837393e+01 lineto -8.458627e+01 1.939214e+01 lineto -8.605778e+01 1.907355e+01 lineto -closepath -gsave -6.11463e-01 6.11463e-01 7.643287e-01 setrgbcolor -fill -grestore -newpath -8.605778e+01 1.907355e+01 moveto -8.529075e+01 1.806694e+01 lineto -8.387285e+01 1.837393e+01 lineto -8.458627e+01 1.939214e+01 lineto -8.605778e+01 1.907355e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.680486e+01 2.010565e+01 moveto -8.605778e+01 1.907355e+01 lineto -8.458627e+01 1.939214e+01 lineto -8.528115e+01 2.043555e+01 lineto -8.680486e+01 2.010565e+01 lineto -closepath -gsave -6.10722e-01 6.10722e-01 7.634024e-01 setrgbcolor -fill -grestore -newpath -8.680486e+01 2.010565e+01 moveto -8.605778e+01 1.907355e+01 lineto -8.458627e+01 1.939214e+01 lineto -8.528115e+01 2.043555e+01 lineto -8.680486e+01 2.010565e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.75313e+01 2.116227e+01 moveto -8.680486e+01 2.010565e+01 lineto -8.528115e+01 2.043555e+01 lineto -8.595682e+01 2.150316e+01 lineto -8.75313e+01 2.116227e+01 lineto -closepath -gsave -6.099117e-01 6.099117e-01 7.623896e-01 setrgbcolor -fill -grestore -newpath -8.75313e+01 2.116227e+01 moveto -8.680486e+01 2.010565e+01 lineto -8.528115e+01 2.043555e+01 lineto -8.595682e+01 2.150316e+01 lineto -8.75313e+01 2.116227e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.823641e+01 2.22424e+01 moveto -8.75313e+01 2.116227e+01 lineto -8.595682e+01 2.150316e+01 lineto -8.661266e+01 2.259396e+01 lineto -8.823641e+01 2.22424e+01 lineto -closepath -gsave -6.090331e-01 6.090331e-01 7.612914e-01 setrgbcolor -fill -grestore -newpath -8.823641e+01 2.22424e+01 moveto -8.75313e+01 2.116227e+01 lineto -8.595682e+01 2.150316e+01 lineto -8.661266e+01 2.259396e+01 lineto -8.823641e+01 2.22424e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.891951e+01 2.334503e+01 moveto -8.823641e+01 2.22424e+01 lineto -8.661266e+01 2.259396e+01 lineto -8.724803e+01 2.370692e+01 lineto -8.891951e+01 2.334503e+01 lineto -closepath -gsave -6.080871e-01 6.080871e-01 7.601089e-01 setrgbcolor -fill -grestore -newpath -8.891951e+01 2.334503e+01 moveto -8.823641e+01 2.22424e+01 lineto -8.661266e+01 2.259396e+01 lineto -8.724803e+01 2.370692e+01 lineto -8.891951e+01 2.334503e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.957997e+01 2.446911e+01 moveto -8.891951e+01 2.334503e+01 lineto -8.724803e+01 2.370692e+01 lineto -8.786234e+01 2.484099e+01 lineto -8.957997e+01 2.446911e+01 lineto -closepath -gsave -6.070749e-01 6.070749e-01 7.588436e-01 setrgbcolor -fill -grestore -newpath -8.957997e+01 2.446911e+01 moveto -8.891951e+01 2.334503e+01 lineto -8.724803e+01 2.370692e+01 lineto -8.786234e+01 2.484099e+01 lineto -8.957997e+01 2.446911e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.021716e+01 2.561357e+01 moveto -8.957997e+01 2.446911e+01 lineto -8.786234e+01 2.484099e+01 lineto -8.8455e+01 2.59951e+01 lineto -9.021716e+01 2.561357e+01 lineto -closepath -gsave -6.059975e-01 6.059975e-01 7.574969e-01 setrgbcolor -fill -grestore -newpath -9.021716e+01 2.561357e+01 moveto -8.957997e+01 2.446911e+01 lineto -8.786234e+01 2.484099e+01 lineto -8.8455e+01 2.59951e+01 lineto -9.021716e+01 2.561357e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.083047e+01 2.677734e+01 moveto -9.021716e+01 2.561357e+01 lineto -8.8455e+01 2.59951e+01 lineto -8.902545e+01 2.716815e+01 lineto -9.083047e+01 2.677734e+01 lineto -closepath -gsave -6.048562e-01 6.048562e-01 7.560703e-01 setrgbcolor -fill -grestore -newpath -9.083047e+01 2.677734e+01 moveto -9.021716e+01 2.561357e+01 lineto -8.8455e+01 2.59951e+01 lineto -8.902545e+01 2.716815e+01 lineto -9.083047e+01 2.677734e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.141933e+01 2.795931e+01 moveto -9.083047e+01 2.677734e+01 lineto -8.902545e+01 2.716815e+01 lineto -8.957316e+01 2.835902e+01 lineto -9.141933e+01 2.795931e+01 lineto -closepath -gsave -6.036523e-01 6.036523e-01 7.545654e-01 setrgbcolor -fill -grestore -newpath -9.141933e+01 2.795931e+01 moveto -9.083047e+01 2.677734e+01 lineto -8.902545e+01 2.716815e+01 lineto -8.957316e+01 2.835902e+01 lineto -9.141933e+01 2.795931e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.198317e+01 2.915835e+01 moveto -9.141933e+01 2.795931e+01 lineto -8.957316e+01 2.835902e+01 lineto -9.00976e+01 2.95666e+01 lineto -9.198317e+01 2.915835e+01 lineto -closepath -gsave -6.023872e-01 6.023872e-01 7.529839e-01 setrgbcolor -fill -grestore -newpath -9.198317e+01 2.915835e+01 moveto -9.141933e+01 2.795931e+01 lineto -8.957316e+01 2.835902e+01 lineto -9.00976e+01 2.95666e+01 lineto -9.198317e+01 2.915835e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.252146e+01 3.037335e+01 moveto -9.198317e+01 2.915835e+01 lineto -9.00976e+01 2.95666e+01 lineto -9.059827e+01 3.078974e+01 lineto -9.252146e+01 3.037335e+01 lineto -closepath -gsave -6.010622e-01 6.010622e-01 7.513277e-01 setrgbcolor -fill -grestore -newpath -9.252146e+01 3.037335e+01 moveto -9.198317e+01 2.915835e+01 lineto -9.00976e+01 2.95666e+01 lineto -9.059827e+01 3.078974e+01 lineto -9.252146e+01 3.037335e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.303369e+01 3.160314e+01 moveto -9.252146e+01 3.037335e+01 lineto -9.059827e+01 3.078974e+01 lineto -9.107471e+01 3.202728e+01 lineto -9.303369e+01 3.160314e+01 lineto -closepath -gsave -5.996788e-01 5.996788e-01 7.495985e-01 setrgbcolor -fill -grestore -newpath -9.303369e+01 3.160314e+01 moveto -9.252146e+01 3.037335e+01 lineto -9.059827e+01 3.078974e+01 lineto -9.107471e+01 3.202728e+01 lineto -9.303369e+01 3.160314e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.351939e+01 3.284656e+01 moveto -9.303369e+01 3.160314e+01 lineto -9.107471e+01 3.202728e+01 lineto -9.152646e+01 3.327804e+01 lineto -9.351939e+01 3.284656e+01 lineto -closepath -gsave -5.982388e-01 5.982388e-01 7.477985e-01 setrgbcolor -fill -grestore -newpath -9.351939e+01 3.284656e+01 moveto -9.303369e+01 3.160314e+01 lineto -9.107471e+01 3.202728e+01 lineto -9.152646e+01 3.327804e+01 lineto -9.351939e+01 3.284656e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.397808e+01 3.410243e+01 moveto -9.351939e+01 3.284656e+01 lineto -9.152646e+01 3.327804e+01 lineto -9.19531e+01 3.454086e+01 lineto -9.397808e+01 3.410243e+01 lineto -closepath -gsave -5.967436e-01 5.967436e-01 7.459295e-01 setrgbcolor -fill -grestore -newpath -9.397808e+01 3.410243e+01 moveto -9.351939e+01 3.284656e+01 lineto -9.152646e+01 3.327804e+01 lineto -9.19531e+01 3.454086e+01 lineto -9.397808e+01 3.410243e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.440933e+01 3.536957e+01 moveto -9.397808e+01 3.410243e+01 lineto -9.19531e+01 3.454086e+01 lineto -9.235422e+01 3.581452e+01 lineto -9.440933e+01 3.536957e+01 lineto -closepath -gsave -5.951951e-01 5.951951e-01 7.439938e-01 setrgbcolor -fill -grestore -newpath -9.440933e+01 3.536957e+01 moveto -9.397808e+01 3.410243e+01 lineto -9.19531e+01 3.454086e+01 lineto -9.235422e+01 3.581452e+01 lineto -9.440933e+01 3.536957e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.481274e+01 3.664677e+01 moveto -9.440933e+01 3.536957e+01 lineto -9.235422e+01 3.581452e+01 lineto -9.272944e+01 3.709783e+01 lineto -9.481274e+01 3.664677e+01 lineto -closepath -gsave -5.935949e-01 5.935949e-01 7.419936e-01 setrgbcolor -fill -grestore -newpath -9.481274e+01 3.664677e+01 moveto -9.440933e+01 3.536957e+01 lineto -9.235422e+01 3.581452e+01 lineto -9.272944e+01 3.709783e+01 lineto -9.481274e+01 3.664677e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.518792e+01 3.793283e+01 moveto -9.481274e+01 3.664677e+01 lineto -9.272944e+01 3.709783e+01 lineto -9.30784e+01 3.838956e+01 lineto -9.518792e+01 3.793283e+01 lineto -closepath -gsave -5.919449e-01 5.919449e-01 7.399311e-01 setrgbcolor -fill -grestore -newpath -9.518792e+01 3.793283e+01 moveto -9.481274e+01 3.664677e+01 lineto -9.272944e+01 3.709783e+01 lineto -9.30784e+01 3.838956e+01 lineto -9.518792e+01 3.793283e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.553452e+01 3.922653e+01 moveto -9.518792e+01 3.793283e+01 lineto -9.30784e+01 3.838956e+01 lineto -9.340078e+01 3.968851e+01 lineto -9.553452e+01 3.922653e+01 lineto -closepath -gsave -5.90247e-01 5.90247e-01 7.378087e-01 setrgbcolor -fill -grestore -newpath -9.553452e+01 3.922653e+01 moveto -9.518792e+01 3.793283e+01 lineto -9.30784e+01 3.838956e+01 lineto -9.340078e+01 3.968851e+01 lineto -9.553452e+01 3.922653e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.592981e+01 4.271726e+00 moveto -6.500301e+01 4.000816e+00 lineto -6.500277e+01 4.00086e+00 lineto -6.585422e+01 4.285299e+00 lineto -6.592981e+01 4.271726e+00 lineto -closepath -gsave -6.097167e-01 6.097167e-01 7.621459e-01 setrgbcolor -fill -grestore -newpath -6.592981e+01 4.271726e+00 moveto -6.500301e+01 4.000816e+00 lineto -6.500277e+01 4.00086e+00 lineto -6.585422e+01 4.285299e+00 lineto -6.592981e+01 4.271726e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.685573e+01 4.582145e+00 moveto -6.592981e+01 4.271726e+00 lineto -6.585422e+01 4.285299e+00 lineto -6.670487e+01 4.609234e+00 lineto -6.685573e+01 4.582145e+00 lineto -closepath -gsave -6.111742e-01 6.111742e-01 7.639677e-01 setrgbcolor -fill -grestore -newpath -6.685573e+01 4.582145e+00 moveto -6.592981e+01 4.271726e+00 lineto -6.585422e+01 4.285299e+00 lineto -6.670487e+01 4.609234e+00 lineto -6.685573e+01 4.582145e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.777989e+01 4.931779e+00 moveto -6.685573e+01 4.582145e+00 lineto -6.670487e+01 4.609234e+00 lineto -6.75539e+01 4.972358e+00 lineto -6.777989e+01 4.931779e+00 lineto -closepath -gsave -6.125629e-01 6.125629e-01 7.657036e-01 setrgbcolor -fill -grestore -newpath -6.777989e+01 4.931779e+00 moveto -6.685573e+01 4.582145e+00 lineto -6.670487e+01 4.609234e+00 lineto -6.75539e+01 4.972358e+00 lineto -6.777989e+01 4.931779e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.870142e+01 5.320297e+00 moveto -6.777989e+01 4.931779e+00 lineto -6.75539e+01 4.972358e+00 lineto -6.840052e+01 5.374327e+00 lineto -6.870142e+01 5.320297e+00 lineto -closepath -gsave -6.138813e-01 6.138813e-01 7.673516e-01 setrgbcolor -fill -grestore -newpath -6.870142e+01 5.320297e+00 moveto -6.777989e+01 4.931779e+00 lineto -6.75539e+01 4.972358e+00 lineto -6.840052e+01 5.374327e+00 lineto -6.870142e+01 5.320297e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.961945e+01 5.74733e+00 moveto -6.870142e+01 5.320297e+00 lineto -6.840052e+01 5.374327e+00 lineto -6.924391e+01 5.814762e+00 lineto -6.961945e+01 5.74733e+00 lineto -closepath -gsave -6.151278e-01 6.151278e-01 7.689097e-01 setrgbcolor -fill -grestore -newpath -6.961945e+01 5.74733e+00 moveto -6.870142e+01 5.320297e+00 lineto -6.840052e+01 5.374327e+00 lineto -6.924391e+01 5.814762e+00 lineto -6.961945e+01 5.74733e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.05331e+01 6.212476e+00 moveto -6.961945e+01 5.74733e+00 lineto -6.924391e+01 5.814762e+00 lineto -7.008329e+01 6.293244e+00 lineto -7.05331e+01 6.212476e+00 lineto -closepath -gsave -6.163011e-01 6.163011e-01 7.703763e-01 setrgbcolor -fill -grestore -newpath -7.05331e+01 6.212476e+00 moveto -6.961945e+01 5.74733e+00 lineto -6.924391e+01 5.814762e+00 lineto -7.008329e+01 6.293244e+00 lineto -7.05331e+01 6.212476e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.144151e+01 6.715292e+00 moveto -7.05331e+01 6.212476e+00 lineto -7.008329e+01 6.293244e+00 lineto -7.091785e+01 6.80932e+00 lineto -7.144151e+01 6.715292e+00 lineto -closepath -gsave -6.173998e-01 6.173998e-01 7.717497e-01 setrgbcolor -fill -grestore -newpath -7.144151e+01 6.715292e+00 moveto -7.05331e+01 6.212476e+00 lineto -7.008329e+01 6.293244e+00 lineto -7.091785e+01 6.80932e+00 lineto -7.144151e+01 6.715292e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.234383e+01 7.255304e+00 moveto -7.144151e+01 6.715292e+00 lineto -7.091785e+01 6.80932e+00 lineto -7.174681e+01 7.362503e+00 lineto -7.234383e+01 7.255304e+00 lineto -closepath -gsave -6.184227e-01 6.184227e-01 7.730284e-01 setrgbcolor -fill -grestore -newpath -7.234383e+01 7.255304e+00 moveto -7.144151e+01 6.715292e+00 lineto -7.091785e+01 6.80932e+00 lineto -7.174681e+01 7.362503e+00 lineto -7.234383e+01 7.255304e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.323919e+01 7.831999e+00 moveto -7.234383e+01 7.255304e+00 lineto -7.174681e+01 7.362503e+00 lineto -7.256938e+01 7.952269e+00 lineto -7.323919e+01 7.831999e+00 lineto -closepath -gsave -6.193688e-01 6.193688e-01 7.742109e-01 setrgbcolor -fill -grestore -newpath -7.323919e+01 7.831999e+00 moveto -7.234383e+01 7.255304e+00 lineto -7.174681e+01 7.362503e+00 lineto -7.256938e+01 7.952269e+00 lineto -7.323919e+01 7.831999e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.412675e+01 8.444832e+00 moveto -7.323919e+01 7.831999e+00 lineto -7.256938e+01 7.952269e+00 lineto -7.338479e+01 8.578058e+00 lineto -7.412675e+01 8.444832e+00 lineto -closepath -gsave -6.202368e-01 6.202368e-01 7.75296e-01 setrgbcolor -fill -grestore -newpath -7.412675e+01 8.444832e+00 moveto -7.323919e+01 7.831999e+00 lineto -7.256938e+01 7.952269e+00 lineto -7.338479e+01 8.578058e+00 lineto -7.412675e+01 8.444832e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.500567e+01 9.093223e+00 moveto -7.412675e+01 8.444832e+00 lineto -7.338479e+01 8.578058e+00 lineto -7.419226e+01 9.239278e+00 lineto -7.500567e+01 9.093223e+00 lineto -closepath -gsave -6.21026e-01 6.21026e-01 7.762824e-01 setrgbcolor -fill -grestore -newpath -7.500567e+01 9.093223e+00 moveto -7.412675e+01 8.444832e+00 lineto -7.338479e+01 8.578058e+00 lineto -7.419226e+01 9.239278e+00 lineto -7.500567e+01 9.093223e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.587511e+01 9.776558e+00 moveto -7.500567e+01 9.093223e+00 lineto -7.419226e+01 9.239278e+00 lineto -7.499102e+01 9.935305e+00 lineto -7.587511e+01 9.776558e+00 lineto -closepath -gsave -6.217353e-01 6.217353e-01 7.771691e-01 setrgbcolor -fill -grestore -newpath -7.587511e+01 9.776558e+00 moveto -7.500567e+01 9.093223e+00 lineto -7.419226e+01 9.239278e+00 lineto -7.499102e+01 9.935305e+00 lineto -7.587511e+01 9.776558e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.673426e+01 1.049419e+01 moveto -7.587511e+01 9.776558e+00 lineto -7.499102e+01 9.935305e+00 lineto -7.578032e+01 1.066548e+01 lineto -7.673426e+01 1.049419e+01 lineto -closepath -gsave -6.223641e-01 6.223641e-01 7.779551e-01 setrgbcolor -fill -grestore -newpath -7.673426e+01 1.049419e+01 moveto -7.587511e+01 9.776558e+00 lineto -7.499102e+01 9.935305e+00 lineto -7.578032e+01 1.066548e+01 lineto -7.673426e+01 1.049419e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.75823e+01 1.124544e+01 moveto -7.673426e+01 1.049419e+01 lineto -7.578032e+01 1.066548e+01 lineto -7.655942e+01 1.14291e+01 lineto -7.75823e+01 1.124544e+01 lineto -closepath -gsave -6.229116e-01 6.229116e-01 7.786395e-01 setrgbcolor -fill -grestore -newpath -7.75823e+01 1.124544e+01 moveto -7.673426e+01 1.049419e+01 lineto -7.578032e+01 1.066548e+01 lineto -7.655942e+01 1.14291e+01 lineto -7.75823e+01 1.124544e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.841842e+01 1.202959e+01 moveto -7.75823e+01 1.124544e+01 lineto -7.655942e+01 1.14291e+01 lineto -7.732757e+01 1.222546e+01 lineto -7.841842e+01 1.202959e+01 lineto -closepath -gsave -6.233773e-01 6.233773e-01 7.792216e-01 setrgbcolor -fill -grestore -newpath -7.841842e+01 1.202959e+01 moveto -7.75823e+01 1.124544e+01 lineto -7.655942e+01 1.14291e+01 lineto -7.732757e+01 1.222546e+01 lineto -7.841842e+01 1.202959e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.924184e+01 1.284591e+01 moveto -7.841842e+01 1.202959e+01 lineto -7.732757e+01 1.222546e+01 lineto -7.808406e+01 1.30538e+01 lineto -7.924184e+01 1.284591e+01 lineto -closepath -gsave -6.237606e-01 6.237606e-01 7.797007e-01 setrgbcolor -fill -grestore -newpath -7.924184e+01 1.284591e+01 moveto -7.841842e+01 1.202959e+01 lineto -7.732757e+01 1.222546e+01 lineto -7.808406e+01 1.30538e+01 lineto -7.924184e+01 1.284591e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.005178e+01 1.369362e+01 moveto -7.924184e+01 1.284591e+01 lineto -7.808406e+01 1.30538e+01 lineto -7.882815e+01 1.391333e+01 lineto -8.005178e+01 1.369362e+01 lineto -closepath -gsave -6.240611e-01 6.240611e-01 7.800764e-01 setrgbcolor -fill -grestore -newpath -8.005178e+01 1.369362e+01 moveto -7.924184e+01 1.284591e+01 lineto -7.808406e+01 1.30538e+01 lineto -7.882815e+01 1.391333e+01 lineto -8.005178e+01 1.369362e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.084747e+01 1.457192e+01 moveto -8.005178e+01 1.369362e+01 lineto -7.882815e+01 1.391333e+01 lineto -7.955915e+01 1.480324e+01 lineto -8.084747e+01 1.457192e+01 lineto -closepath -gsave -6.242786e-01 6.242786e-01 7.803483e-01 setrgbcolor -fill -grestore -newpath -8.084747e+01 1.457192e+01 moveto -8.005178e+01 1.369362e+01 lineto -7.882815e+01 1.391333e+01 lineto -7.955915e+01 1.480324e+01 lineto -8.084747e+01 1.457192e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.162815e+01 1.547997e+01 moveto -8.084747e+01 1.457192e+01 lineto -7.955915e+01 1.480324e+01 lineto -8.027636e+01 1.572269e+01 lineto -8.162815e+01 1.547997e+01 lineto -closepath -gsave -6.244128e-01 6.244128e-01 7.80516e-01 setrgbcolor -fill -grestore -newpath -8.162815e+01 1.547997e+01 moveto -8.084747e+01 1.457192e+01 lineto -7.955915e+01 1.480324e+01 lineto -8.027636e+01 1.572269e+01 lineto -8.162815e+01 1.547997e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.239308e+01 1.641692e+01 moveto -8.162815e+01 1.547997e+01 lineto -8.027636e+01 1.572269e+01 lineto -8.097911e+01 1.667081e+01 lineto -8.239308e+01 1.641692e+01 lineto -closepath -gsave -6.244635e-01 6.244635e-01 7.805794e-01 setrgbcolor -fill -grestore -newpath -8.239308e+01 1.641692e+01 moveto -8.162815e+01 1.547997e+01 lineto -8.027636e+01 1.572269e+01 lineto -8.097911e+01 1.667081e+01 lineto -8.239308e+01 1.641692e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.314155e+01 1.738188e+01 moveto -8.239308e+01 1.641692e+01 lineto -8.097911e+01 1.667081e+01 lineto -8.166674e+01 1.764669e+01 lineto -8.314155e+01 1.738188e+01 lineto -closepath -gsave -6.244307e-01 6.244307e-01 7.805384e-01 setrgbcolor -fill -grestore -newpath -8.314155e+01 1.738188e+01 moveto -8.239308e+01 1.641692e+01 lineto -8.097911e+01 1.667081e+01 lineto -8.166674e+01 1.764669e+01 lineto -8.314155e+01 1.738188e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.387285e+01 1.837393e+01 moveto -8.314155e+01 1.738188e+01 lineto -8.166674e+01 1.764669e+01 lineto -8.233858e+01 1.864942e+01 lineto -8.387285e+01 1.837393e+01 lineto -closepath -gsave -6.243145e-01 6.243145e-01 7.803931e-01 setrgbcolor -fill -grestore -newpath -8.387285e+01 1.837393e+01 moveto -8.314155e+01 1.738188e+01 lineto -8.166674e+01 1.764669e+01 lineto -8.233858e+01 1.864942e+01 lineto -8.387285e+01 1.837393e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.458627e+01 1.939214e+01 moveto -8.387285e+01 1.837393e+01 lineto -8.233858e+01 1.864942e+01 lineto -8.2994e+01 1.967805e+01 lineto -8.458627e+01 1.939214e+01 lineto -closepath -gsave -6.24115e-01 6.24115e-01 7.801437e-01 setrgbcolor -fill -grestore -newpath -8.458627e+01 1.939214e+01 moveto -8.387285e+01 1.837393e+01 lineto -8.233858e+01 1.864942e+01 lineto -8.2994e+01 1.967805e+01 lineto -8.458627e+01 1.939214e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.528115e+01 2.043555e+01 moveto -8.458627e+01 1.939214e+01 lineto -8.2994e+01 1.967805e+01 lineto -8.363239e+01 2.07316e+01 lineto -8.528115e+01 2.043555e+01 lineto -closepath -gsave -6.238324e-01 6.238324e-01 7.797905e-01 setrgbcolor -fill -grestore -newpath -8.528115e+01 2.043555e+01 moveto -8.458627e+01 1.939214e+01 lineto -8.2994e+01 1.967805e+01 lineto -8.363239e+01 2.07316e+01 lineto -8.528115e+01 2.043555e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.595682e+01 2.150316e+01 moveto -8.528115e+01 2.043555e+01 lineto -8.363239e+01 2.07316e+01 lineto -8.425314e+01 2.180907e+01 lineto -8.595682e+01 2.150316e+01 lineto -closepath -gsave -6.234671e-01 6.234671e-01 7.793338e-01 setrgbcolor -fill -grestore -newpath -8.595682e+01 2.150316e+01 moveto -8.528115e+01 2.043555e+01 lineto -8.363239e+01 2.07316e+01 lineto -8.425314e+01 2.180907e+01 lineto -8.595682e+01 2.150316e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.661266e+01 2.259396e+01 moveto -8.595682e+01 2.150316e+01 lineto -8.425314e+01 2.180907e+01 lineto -8.485566e+01 2.290945e+01 lineto -8.661266e+01 2.259396e+01 lineto -closepath -gsave -6.230194e-01 6.230194e-01 7.787742e-01 setrgbcolor -fill -grestore -newpath -8.661266e+01 2.259396e+01 moveto -8.595682e+01 2.150316e+01 lineto -8.425314e+01 2.180907e+01 lineto -8.485566e+01 2.290945e+01 lineto -8.661266e+01 2.259396e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.724803e+01 2.370692e+01 moveto -8.661266e+01 2.259396e+01 lineto -8.485566e+01 2.290945e+01 lineto -8.543938e+01 2.403168e+01 lineto -8.724803e+01 2.370692e+01 lineto -closepath -gsave -6.224899e-01 6.224899e-01 7.781123e-01 setrgbcolor -fill -grestore -newpath -8.724803e+01 2.370692e+01 moveto -8.661266e+01 2.259396e+01 lineto -8.485566e+01 2.290945e+01 lineto -8.543938e+01 2.403168e+01 lineto -8.724803e+01 2.370692e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.786234e+01 2.484099e+01 moveto -8.724803e+01 2.370692e+01 lineto -8.543938e+01 2.403168e+01 lineto -8.600375e+01 2.517472e+01 lineto -8.786234e+01 2.484099e+01 lineto -closepath -gsave -6.218791e-01 6.218791e-01 7.773489e-01 setrgbcolor -fill -grestore -newpath -8.786234e+01 2.484099e+01 moveto -8.724803e+01 2.370692e+01 lineto -8.543938e+01 2.403168e+01 lineto -8.600375e+01 2.517472e+01 lineto -8.786234e+01 2.484099e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.8455e+01 2.59951e+01 moveto -8.786234e+01 2.484099e+01 lineto -8.600375e+01 2.517472e+01 lineto -8.654823e+01 2.633748e+01 lineto -8.8455e+01 2.59951e+01 lineto -closepath -gsave -6.211877e-01 6.211877e-01 7.764847e-01 setrgbcolor -fill -grestore -newpath -8.8455e+01 2.59951e+01 moveto -8.786234e+01 2.484099e+01 lineto -8.600375e+01 2.517472e+01 lineto -8.654823e+01 2.633748e+01 lineto -8.8455e+01 2.59951e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.902545e+01 2.716815e+01 moveto -8.8455e+01 2.59951e+01 lineto -8.654823e+01 2.633748e+01 lineto -8.70723e+01 2.751885e+01 lineto -8.902545e+01 2.716815e+01 lineto -closepath -gsave -6.204166e-01 6.204166e-01 7.755208e-01 setrgbcolor -fill -grestore -newpath -8.902545e+01 2.716815e+01 moveto -8.8455e+01 2.59951e+01 lineto -8.654823e+01 2.633748e+01 lineto -8.70723e+01 2.751885e+01 lineto -8.902545e+01 2.716815e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.957316e+01 2.835902e+01 moveto -8.902545e+01 2.716815e+01 lineto -8.70723e+01 2.751885e+01 lineto -8.757548e+01 2.871772e+01 lineto -8.957316e+01 2.835902e+01 lineto -closepath -gsave -6.195665e-01 6.195665e-01 7.744582e-01 setrgbcolor -fill -grestore -newpath -8.957316e+01 2.835902e+01 moveto -8.902545e+01 2.716815e+01 lineto -8.70723e+01 2.751885e+01 lineto -8.757548e+01 2.871772e+01 lineto -8.957316e+01 2.835902e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.00976e+01 2.95666e+01 moveto -8.957316e+01 2.835902e+01 lineto -8.757548e+01 2.871772e+01 lineto -8.805729e+01 2.993296e+01 lineto -9.00976e+01 2.95666e+01 lineto -closepath -gsave -6.186385e-01 6.186385e-01 7.732981e-01 setrgbcolor -fill -grestore -newpath -9.00976e+01 2.95666e+01 moveto -8.957316e+01 2.835902e+01 lineto -8.757548e+01 2.871772e+01 lineto -8.805729e+01 2.993296e+01 lineto -9.00976e+01 2.95666e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.059827e+01 3.078974e+01 moveto -9.00976e+01 2.95666e+01 lineto -8.805729e+01 2.993296e+01 lineto -8.851726e+01 3.11634e+01 lineto -9.059827e+01 3.078974e+01 lineto -closepath -gsave -6.176335e-01 6.176335e-01 7.720418e-01 setrgbcolor -fill -grestore -newpath -9.059827e+01 3.078974e+01 moveto -9.00976e+01 2.95666e+01 lineto -8.805729e+01 2.993296e+01 lineto -8.851726e+01 3.11634e+01 lineto -9.059827e+01 3.078974e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.107471e+01 3.202728e+01 moveto -9.059827e+01 3.078974e+01 lineto -8.851726e+01 3.11634e+01 lineto -8.895497e+01 3.24079e+01 lineto -9.107471e+01 3.202728e+01 lineto -closepath -gsave -6.165526e-01 6.165526e-01 7.706908e-01 setrgbcolor -fill -grestore -newpath -9.107471e+01 3.202728e+01 moveto -9.059827e+01 3.078974e+01 lineto -8.851726e+01 3.11634e+01 lineto -8.895497e+01 3.24079e+01 lineto -9.107471e+01 3.202728e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.152646e+01 3.327804e+01 moveto -9.107471e+01 3.202728e+01 lineto -8.895497e+01 3.24079e+01 lineto -8.937e+01 3.366526e+01 lineto -9.152646e+01 3.327804e+01 lineto -closepath -gsave -6.153972e-01 6.153972e-01 7.692465e-01 setrgbcolor -fill -grestore -newpath -9.152646e+01 3.327804e+01 moveto -9.107471e+01 3.202728e+01 lineto -8.895497e+01 3.24079e+01 lineto -8.937e+01 3.366526e+01 lineto -9.152646e+01 3.327804e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.19531e+01 3.454086e+01 moveto -9.152646e+01 3.327804e+01 lineto -8.937e+01 3.366526e+01 lineto -8.976195e+01 3.49343e+01 lineto -9.19531e+01 3.454086e+01 lineto -closepath -gsave -6.141685e-01 6.141685e-01 7.677106e-01 setrgbcolor -fill -grestore -newpath -9.19531e+01 3.454086e+01 moveto -9.152646e+01 3.327804e+01 lineto -8.937e+01 3.366526e+01 lineto -8.976195e+01 3.49343e+01 lineto -9.19531e+01 3.454086e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.235422e+01 3.581452e+01 moveto -9.19531e+01 3.454086e+01 lineto -8.976195e+01 3.49343e+01 lineto -9.013046e+01 3.621382e+01 lineto -9.235422e+01 3.581452e+01 lineto -closepath -gsave -6.128678e-01 6.128678e-01 7.660848e-01 setrgbcolor -fill -grestore -newpath -9.235422e+01 3.581452e+01 moveto -9.19531e+01 3.454086e+01 lineto -8.976195e+01 3.49343e+01 lineto -9.013046e+01 3.621382e+01 lineto -9.235422e+01 3.581452e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.272944e+01 3.709783e+01 moveto -9.235422e+01 3.581452e+01 lineto -9.013046e+01 3.621382e+01 lineto -9.047517e+01 3.75026e+01 lineto -9.272944e+01 3.709783e+01 lineto -closepath -gsave -6.114967e-01 6.114967e-01 7.643709e-01 setrgbcolor -fill -grestore -newpath -9.272944e+01 3.709783e+01 moveto -9.235422e+01 3.581452e+01 lineto -9.013046e+01 3.621382e+01 lineto -9.047517e+01 3.75026e+01 lineto -9.272944e+01 3.709783e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.30784e+01 3.838956e+01 moveto -9.272944e+01 3.709783e+01 lineto -9.047517e+01 3.75026e+01 lineto -9.079577e+01 3.879943e+01 lineto -9.30784e+01 3.838956e+01 lineto -closepath -gsave -6.100567e-01 6.100567e-01 7.625708e-01 setrgbcolor -fill -grestore -newpath -9.30784e+01 3.838956e+01 moveto -9.272944e+01 3.709783e+01 lineto -9.047517e+01 3.75026e+01 lineto -9.079577e+01 3.879943e+01 lineto -9.30784e+01 3.838956e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.340078e+01 3.968851e+01 moveto -9.30784e+01 3.838956e+01 lineto -9.079577e+01 3.879943e+01 lineto -9.109194e+01 4.010308e+01 lineto -9.340078e+01 3.968851e+01 lineto -closepath -gsave -6.085494e-01 6.085494e-01 7.606867e-01 setrgbcolor -fill -grestore -newpath -9.340078e+01 3.968851e+01 moveto -9.30784e+01 3.838956e+01 lineto -9.079577e+01 3.879943e+01 lineto -9.109194e+01 4.010308e+01 lineto -9.340078e+01 3.968851e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.585422e+01 4.285299e+00 moveto -6.500277e+01 4.00086e+00 lineto -6.500251e+01 4.000898e+00 lineto -6.577337e+01 4.297236e+00 lineto -6.585422e+01 4.285299e+00 lineto -closepath -gsave -6.100172e-01 6.100172e-01 7.625216e-01 setrgbcolor -fill -grestore -newpath -6.585422e+01 4.285299e+00 moveto -6.500277e+01 4.00086e+00 lineto -6.500251e+01 4.000898e+00 lineto -6.577337e+01 4.297236e+00 lineto -6.585422e+01 4.285299e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.670487e+01 4.609234e+00 moveto -6.585422e+01 4.285299e+00 lineto -6.577337e+01 4.297236e+00 lineto -6.65435e+01 4.633058e+00 lineto -6.670487e+01 4.609234e+00 lineto -closepath -gsave -6.120728e-01 6.120728e-01 7.65091e-01 setrgbcolor -fill -grestore -newpath -6.670487e+01 4.609234e+00 moveto -6.585422e+01 4.285299e+00 lineto -6.577337e+01 4.297236e+00 lineto -6.65435e+01 4.633058e+00 lineto -6.670487e+01 4.609234e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.75539e+01 4.972358e+00 moveto -6.670487e+01 4.609234e+00 lineto -6.65435e+01 4.633058e+00 lineto -6.731217e+01 5.008047e+00 lineto -6.75539e+01 4.972358e+00 lineto -closepath -gsave -6.140602e-01 6.140602e-01 7.675752e-01 setrgbcolor -fill -grestore -newpath -6.75539e+01 4.972358e+00 moveto -6.670487e+01 4.609234e+00 lineto -6.65435e+01 4.633058e+00 lineto -6.731217e+01 5.008047e+00 lineto -6.75539e+01 4.972358e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.840052e+01 5.374327e+00 moveto -6.75539e+01 4.972358e+00 lineto -6.731217e+01 5.008047e+00 lineto -6.807864e+01 5.421847e+00 lineto -6.840052e+01 5.374327e+00 lineto -closepath -gsave -6.159771e-01 6.159771e-01 7.699714e-01 setrgbcolor -fill -grestore -newpath -6.840052e+01 5.374327e+00 moveto -6.75539e+01 4.972358e+00 lineto -6.731217e+01 5.008047e+00 lineto -6.807864e+01 5.421847e+00 lineto -6.840052e+01 5.374327e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.924391e+01 5.814762e+00 moveto -6.840052e+01 5.374327e+00 lineto -6.807864e+01 5.421847e+00 lineto -6.884221e+01 5.874067e+00 lineto -6.924391e+01 5.814762e+00 lineto -closepath -gsave -6.178213e-01 6.178213e-01 7.722767e-01 setrgbcolor -fill -grestore -newpath -6.924391e+01 5.814762e+00 moveto -6.840052e+01 5.374327e+00 lineto -6.807864e+01 5.421847e+00 lineto -6.884221e+01 5.874067e+00 lineto -6.924391e+01 5.814762e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.008329e+01 6.293244e+00 moveto -6.924391e+01 5.814762e+00 lineto -6.884221e+01 5.874067e+00 lineto -6.960213e+01 6.364279e+00 lineto -7.008329e+01 6.293244e+00 lineto -closepath -gsave -6.195908e-01 6.195908e-01 7.744885e-01 setrgbcolor -fill -grestore -newpath -7.008329e+01 6.293244e+00 moveto -6.924391e+01 5.814762e+00 lineto -6.884221e+01 5.874067e+00 lineto -6.960213e+01 6.364279e+00 lineto -7.008329e+01 6.293244e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.091785e+01 6.80932e+00 moveto -7.008329e+01 6.293244e+00 lineto -6.960213e+01 6.364279e+00 lineto -7.03577e+01 6.892018e+00 lineto -7.091785e+01 6.80932e+00 lineto -closepath -gsave -6.212834e-01 6.212834e-01 7.766042e-01 setrgbcolor -fill -grestore -newpath -7.091785e+01 6.80932e+00 moveto -7.008329e+01 6.293244e+00 lineto -6.960213e+01 6.364279e+00 lineto -7.03577e+01 6.892018e+00 lineto -7.091785e+01 6.80932e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.174681e+01 7.362503e+00 moveto -7.091785e+01 6.80932e+00 lineto -7.03577e+01 6.892018e+00 lineto -7.11082e+01 7.456785e+00 lineto -7.174681e+01 7.362503e+00 lineto -closepath -gsave -6.228973e-01 6.228973e-01 7.786216e-01 setrgbcolor -fill -grestore -newpath -7.174681e+01 7.362503e+00 moveto -7.091785e+01 6.80932e+00 lineto -7.03577e+01 6.892018e+00 lineto -7.11082e+01 7.456785e+00 lineto -7.174681e+01 7.362503e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.256938e+01 7.952269e+00 moveto -7.174681e+01 7.362503e+00 lineto -7.11082e+01 7.456785e+00 lineto -7.185291e+01 8.058045e+00 lineto -7.256938e+01 7.952269e+00 lineto -closepath -gsave -6.244306e-01 6.244306e-01 7.805382e-01 setrgbcolor -fill -grestore -newpath -7.256938e+01 7.952269e+00 moveto -7.174681e+01 7.362503e+00 lineto -7.11082e+01 7.456785e+00 lineto -7.185291e+01 8.058045e+00 lineto -7.256938e+01 7.952269e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.338479e+01 8.578058e+00 moveto -7.256938e+01 7.952269e+00 lineto -7.185291e+01 8.058045e+00 lineto -7.259114e+01 8.695229e+00 lineto -7.338479e+01 8.578058e+00 lineto -closepath -gsave -6.258816e-01 6.258816e-01 7.82352e-01 setrgbcolor -fill -grestore -newpath -7.338479e+01 8.578058e+00 moveto -7.256938e+01 7.952269e+00 lineto -7.185291e+01 8.058045e+00 lineto -7.259114e+01 8.695229e+00 lineto -7.338479e+01 8.578058e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.419226e+01 9.239278e+00 moveto -7.338479e+01 8.578058e+00 lineto -7.259114e+01 8.695229e+00 lineto -7.332217e+01 9.367733e+00 lineto -7.419226e+01 9.239278e+00 lineto -closepath -gsave -6.272487e-01 6.272487e-01 7.840609e-01 setrgbcolor -fill -grestore -newpath -7.419226e+01 9.239278e+00 moveto -7.338479e+01 8.578058e+00 lineto -7.259114e+01 8.695229e+00 lineto -7.332217e+01 9.367733e+00 lineto -7.419226e+01 9.239278e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.499102e+01 9.935305e+00 moveto -7.419226e+01 9.239278e+00 lineto -7.332217e+01 9.367733e+00 lineto -7.404533e+01 1.007492e+01 lineto -7.499102e+01 9.935305e+00 lineto -closepath -gsave -6.285304e-01 6.285304e-01 7.856631e-01 setrgbcolor -fill -grestore -newpath -7.499102e+01 9.935305e+00 moveto -7.419226e+01 9.239278e+00 lineto -7.332217e+01 9.367733e+00 lineto -7.404533e+01 1.007492e+01 lineto -7.499102e+01 9.935305e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.578032e+01 1.066548e+01 moveto -7.499102e+01 9.935305e+00 lineto -7.404533e+01 1.007492e+01 lineto -7.475992e+01 1.081612e+01 lineto -7.578032e+01 1.066548e+01 lineto -closepath -gsave -6.297253e-01 6.297253e-01 7.871567e-01 setrgbcolor -fill -grestore -newpath -7.578032e+01 1.066548e+01 moveto -7.499102e+01 9.935305e+00 lineto -7.404533e+01 1.007492e+01 lineto -7.475992e+01 1.081612e+01 lineto -7.578032e+01 1.066548e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.655942e+01 1.14291e+01 moveto -7.578032e+01 1.066548e+01 lineto -7.475992e+01 1.081612e+01 lineto -7.546528e+01 1.159064e+01 lineto -7.655942e+01 1.14291e+01 lineto -closepath -gsave -6.308321e-01 6.308321e-01 7.885401e-01 setrgbcolor -fill -grestore -newpath -7.655942e+01 1.14291e+01 moveto -7.578032e+01 1.066548e+01 lineto -7.475992e+01 1.081612e+01 lineto -7.546528e+01 1.159064e+01 lineto -7.655942e+01 1.14291e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.732757e+01 1.222546e+01 moveto -7.655942e+01 1.14291e+01 lineto -7.546528e+01 1.159064e+01 lineto -7.616072e+01 1.239773e+01 lineto -7.732757e+01 1.222546e+01 lineto -closepath -gsave -6.318495e-01 6.318495e-01 7.898119e-01 setrgbcolor -fill -grestore -newpath -7.732757e+01 1.222546e+01 moveto -7.655942e+01 1.14291e+01 lineto -7.546528e+01 1.159064e+01 lineto -7.616072e+01 1.239773e+01 lineto -7.732757e+01 1.222546e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.808406e+01 1.30538e+01 moveto -7.732757e+01 1.222546e+01 lineto -7.616072e+01 1.239773e+01 lineto -7.68456e+01 1.323664e+01 lineto -7.808406e+01 1.30538e+01 lineto -closepath -gsave -6.327765e-01 6.327765e-01 7.909706e-01 setrgbcolor -fill -grestore -newpath -7.808406e+01 1.30538e+01 moveto -7.732757e+01 1.222546e+01 lineto -7.616072e+01 1.239773e+01 lineto -7.68456e+01 1.323664e+01 lineto -7.808406e+01 1.30538e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.882815e+01 1.391333e+01 moveto -7.808406e+01 1.30538e+01 lineto -7.68456e+01 1.323664e+01 lineto -7.751926e+01 1.410657e+01 lineto -7.882815e+01 1.391333e+01 lineto -closepath -gsave -6.33612e-01 6.33612e-01 7.92015e-01 setrgbcolor -fill -grestore -newpath -7.882815e+01 1.391333e+01 moveto -7.808406e+01 1.30538e+01 lineto -7.68456e+01 1.323664e+01 lineto -7.751926e+01 1.410657e+01 lineto -7.882815e+01 1.391333e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.955915e+01 1.480324e+01 moveto -7.882815e+01 1.391333e+01 lineto -7.751926e+01 1.410657e+01 lineto -7.818107e+01 1.50067e+01 lineto -7.955915e+01 1.480324e+01 lineto -closepath -gsave -6.343552e-01 6.343552e-01 7.929439e-01 setrgbcolor -fill -grestore -newpath -7.955915e+01 1.480324e+01 moveto -7.882815e+01 1.391333e+01 lineto -7.751926e+01 1.410657e+01 lineto -7.818107e+01 1.50067e+01 lineto -7.955915e+01 1.480324e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.027636e+01 1.572269e+01 moveto -7.955915e+01 1.480324e+01 lineto -7.818107e+01 1.50067e+01 lineto -7.88304e+01 1.593617e+01 lineto -8.027636e+01 1.572269e+01 lineto -closepath -gsave -6.350052e-01 6.350052e-01 7.937565e-01 setrgbcolor -fill -grestore -newpath -8.027636e+01 1.572269e+01 moveto -7.955915e+01 1.480324e+01 lineto -7.818107e+01 1.50067e+01 lineto -7.88304e+01 1.593617e+01 lineto -8.027636e+01 1.572269e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.097911e+01 1.667081e+01 moveto -8.027636e+01 1.572269e+01 lineto -7.88304e+01 1.593617e+01 lineto -7.946663e+01 1.689411e+01 lineto -8.097911e+01 1.667081e+01 lineto -closepath -gsave -6.355614e-01 6.355614e-01 7.944518e-01 setrgbcolor -fill -grestore -newpath -8.097911e+01 1.667081e+01 moveto -8.027636e+01 1.572269e+01 lineto -7.88304e+01 1.593617e+01 lineto -7.946663e+01 1.689411e+01 lineto -8.097911e+01 1.667081e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.166674e+01 1.764669e+01 moveto -8.097911e+01 1.667081e+01 lineto -7.946663e+01 1.689411e+01 lineto -8.008917e+01 1.78796e+01 lineto -8.166674e+01 1.764669e+01 lineto -closepath -gsave -6.360233e-01 6.360233e-01 7.950291e-01 setrgbcolor -fill -grestore -newpath -8.166674e+01 1.764669e+01 moveto -8.097911e+01 1.667081e+01 lineto -7.946663e+01 1.689411e+01 lineto -8.008917e+01 1.78796e+01 lineto -8.166674e+01 1.764669e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.233858e+01 1.864942e+01 moveto -8.166674e+01 1.764669e+01 lineto -8.008917e+01 1.78796e+01 lineto -8.069741e+01 1.889172e+01 lineto -8.233858e+01 1.864942e+01 lineto -closepath -gsave -6.363902e-01 6.363902e-01 7.954877e-01 setrgbcolor -fill -grestore -newpath -8.233858e+01 1.864942e+01 moveto -8.166674e+01 1.764669e+01 lineto -8.008917e+01 1.78796e+01 lineto -8.069741e+01 1.889172e+01 lineto -8.233858e+01 1.864942e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.2994e+01 1.967805e+01 moveto -8.233858e+01 1.864942e+01 lineto -8.069741e+01 1.889172e+01 lineto -8.12908e+01 1.99295e+01 lineto -8.2994e+01 1.967805e+01 lineto -closepath -gsave -6.366619e-01 6.366619e-01 7.958273e-01 setrgbcolor -fill -grestore -newpath -8.2994e+01 1.967805e+01 moveto -8.233858e+01 1.864942e+01 lineto -8.069741e+01 1.889172e+01 lineto -8.12908e+01 1.99295e+01 lineto -8.2994e+01 1.967805e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.363239e+01 2.07316e+01 moveto -8.2994e+01 1.967805e+01 lineto -8.12908e+01 1.99295e+01 lineto -8.186876e+01 2.099197e+01 lineto -8.363239e+01 2.07316e+01 lineto -closepath -gsave -6.36838e-01 6.36838e-01 7.960475e-01 setrgbcolor -fill -grestore -newpath -8.363239e+01 2.07316e+01 moveto -8.2994e+01 1.967805e+01 lineto -8.12908e+01 1.99295e+01 lineto -8.186876e+01 2.099197e+01 lineto -8.363239e+01 2.07316e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.425314e+01 2.180907e+01 moveto -8.363239e+01 2.07316e+01 lineto -8.186876e+01 2.099197e+01 lineto -8.243076e+01 2.207812e+01 lineto -8.425314e+01 2.180907e+01 lineto -closepath -gsave -6.369184e-01 6.369184e-01 7.96148e-01 setrgbcolor -fill -grestore -newpath -8.425314e+01 2.180907e+01 moveto -8.363239e+01 2.07316e+01 lineto -8.186876e+01 2.099197e+01 lineto -8.243076e+01 2.207812e+01 lineto -8.425314e+01 2.180907e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.485566e+01 2.290945e+01 moveto -8.425314e+01 2.180907e+01 lineto -8.243076e+01 2.207812e+01 lineto -8.297624e+01 2.318691e+01 lineto -8.485566e+01 2.290945e+01 lineto -closepath -gsave -6.36903e-01 6.36903e-01 7.961287e-01 setrgbcolor -fill -grestore -newpath -8.485566e+01 2.290945e+01 moveto -8.425314e+01 2.180907e+01 lineto -8.243076e+01 2.207812e+01 lineto -8.297624e+01 2.318691e+01 lineto -8.485566e+01 2.290945e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.543938e+01 2.403168e+01 moveto -8.485566e+01 2.290945e+01 lineto -8.297624e+01 2.318691e+01 lineto -8.350471e+01 2.431731e+01 lineto -8.543938e+01 2.403168e+01 lineto -closepath -gsave -6.367918e-01 6.367918e-01 7.959898e-01 setrgbcolor -fill -grestore -newpath -8.543938e+01 2.403168e+01 moveto -8.485566e+01 2.290945e+01 lineto -8.297624e+01 2.318691e+01 lineto -8.350471e+01 2.431731e+01 lineto -8.543938e+01 2.403168e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.600375e+01 2.517472e+01 moveto -8.543938e+01 2.403168e+01 lineto -8.350471e+01 2.431731e+01 lineto -8.401566e+01 2.546823e+01 lineto -8.600375e+01 2.517472e+01 lineto -closepath -gsave -6.365851e-01 6.365851e-01 7.957313e-01 setrgbcolor -fill -grestore -newpath -8.600375e+01 2.517472e+01 moveto -8.543938e+01 2.403168e+01 lineto -8.350471e+01 2.431731e+01 lineto -8.401566e+01 2.546823e+01 lineto -8.600375e+01 2.517472e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.654823e+01 2.633748e+01 moveto -8.600375e+01 2.517472e+01 lineto -8.401566e+01 2.546823e+01 lineto -8.45086e+01 2.66386e+01 lineto -8.654823e+01 2.633748e+01 lineto -closepath -gsave -6.362829e-01 6.362829e-01 7.953536e-01 setrgbcolor -fill -grestore -newpath -8.654823e+01 2.633748e+01 moveto -8.600375e+01 2.517472e+01 lineto -8.401566e+01 2.546823e+01 lineto -8.45086e+01 2.66386e+01 lineto -8.654823e+01 2.633748e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.70723e+01 2.751885e+01 moveto -8.654823e+01 2.633748e+01 lineto -8.45086e+01 2.66386e+01 lineto -8.498307e+01 2.782729e+01 lineto -8.70723e+01 2.751885e+01 lineto -closepath -gsave -6.358857e-01 6.358857e-01 7.948571e-01 setrgbcolor -fill -grestore -newpath -8.70723e+01 2.751885e+01 moveto -8.654823e+01 2.633748e+01 lineto -8.45086e+01 2.66386e+01 lineto -8.498307e+01 2.782729e+01 lineto -8.70723e+01 2.751885e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.757548e+01 2.871772e+01 moveto -8.70723e+01 2.751885e+01 lineto -8.498307e+01 2.782729e+01 lineto -8.543863e+01 2.90332e+01 lineto -8.757548e+01 2.871772e+01 lineto -closepath -gsave -6.353938e-01 6.353938e-01 7.942423e-01 setrgbcolor -fill -grestore -newpath -8.757548e+01 2.871772e+01 moveto -8.70723e+01 2.751885e+01 lineto -8.498307e+01 2.782729e+01 lineto -8.543863e+01 2.90332e+01 lineto -8.757548e+01 2.871772e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.805729e+01 2.993296e+01 moveto -8.757548e+01 2.871772e+01 lineto -8.543863e+01 2.90332e+01 lineto -8.587483e+01 3.025516e+01 lineto -8.805729e+01 2.993296e+01 lineto -closepath -gsave -6.348079e-01 6.348079e-01 7.935099e-01 setrgbcolor -fill -grestore -newpath -8.805729e+01 2.993296e+01 moveto -8.757548e+01 2.871772e+01 lineto -8.543863e+01 2.90332e+01 lineto -8.587483e+01 3.025516e+01 lineto -8.805729e+01 2.993296e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.851726e+01 3.11634e+01 moveto -8.805729e+01 2.993296e+01 lineto -8.587483e+01 3.025516e+01 lineto -8.629126e+01 3.149204e+01 lineto -8.851726e+01 3.11634e+01 lineto -closepath -gsave -6.341285e-01 6.341285e-01 7.926606e-01 setrgbcolor -fill -grestore -newpath -8.851726e+01 3.11634e+01 moveto -8.805729e+01 2.993296e+01 lineto -8.587483e+01 3.025516e+01 lineto -8.629126e+01 3.149204e+01 lineto -8.851726e+01 3.11634e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.895497e+01 3.24079e+01 moveto -8.851726e+01 3.11634e+01 lineto -8.629126e+01 3.149204e+01 lineto -8.668754e+01 3.274265e+01 lineto -8.895497e+01 3.24079e+01 lineto -closepath -gsave -6.333564e-01 6.333564e-01 7.916956e-01 setrgbcolor -fill -grestore -newpath -8.895497e+01 3.24079e+01 moveto -8.851726e+01 3.11634e+01 lineto -8.629126e+01 3.149204e+01 lineto -8.668754e+01 3.274265e+01 lineto -8.895497e+01 3.24079e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.937e+01 3.366526e+01 moveto -8.895497e+01 3.24079e+01 lineto -8.668754e+01 3.274265e+01 lineto -8.706328e+01 3.400581e+01 lineto -8.937e+01 3.366526e+01 lineto -closepath -gsave -6.324925e-01 6.324925e-01 7.906156e-01 setrgbcolor -fill -grestore -newpath -8.937e+01 3.366526e+01 moveto -8.895497e+01 3.24079e+01 lineto -8.668754e+01 3.274265e+01 lineto -8.706328e+01 3.400581e+01 lineto -8.937e+01 3.366526e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.976195e+01 3.49343e+01 moveto -8.937e+01 3.366526e+01 lineto -8.706328e+01 3.400581e+01 lineto -8.741814e+01 3.528033e+01 lineto -8.976195e+01 3.49343e+01 lineto -closepath -gsave -6.315377e-01 6.315377e-01 7.894221e-01 setrgbcolor -fill -grestore -newpath -8.976195e+01 3.49343e+01 moveto -8.937e+01 3.366526e+01 lineto -8.706328e+01 3.400581e+01 lineto -8.741814e+01 3.528033e+01 lineto -8.976195e+01 3.49343e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.013046e+01 3.621382e+01 moveto -8.976195e+01 3.49343e+01 lineto -8.741814e+01 3.528033e+01 lineto -8.775176e+01 3.6565e+01 lineto -9.013046e+01 3.621382e+01 lineto -closepath -gsave -6.30493e-01 6.30493e-01 7.881162e-01 setrgbcolor -fill -grestore -newpath -9.013046e+01 3.621382e+01 moveto -8.976195e+01 3.49343e+01 lineto -8.741814e+01 3.528033e+01 lineto -8.775176e+01 3.6565e+01 lineto -9.013046e+01 3.621382e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.047517e+01 3.75026e+01 moveto -9.013046e+01 3.621382e+01 lineto -8.775176e+01 3.6565e+01 lineto -8.806385e+01 3.78586e+01 lineto -9.047517e+01 3.75026e+01 lineto -closepath -gsave -6.293595e-01 6.293595e-01 7.866994e-01 setrgbcolor -fill -grestore -newpath -9.047517e+01 3.75026e+01 moveto -9.013046e+01 3.621382e+01 lineto -8.775176e+01 3.6565e+01 lineto -8.806385e+01 3.78586e+01 lineto -9.047517e+01 3.75026e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.079577e+01 3.879943e+01 moveto -9.047517e+01 3.75026e+01 lineto -8.806385e+01 3.78586e+01 lineto -8.83541e+01 3.915991e+01 lineto -9.079577e+01 3.879943e+01 lineto -closepath -gsave -6.281387e-01 6.281387e-01 7.851733e-01 setrgbcolor -fill -grestore -newpath -9.079577e+01 3.879943e+01 moveto -9.047517e+01 3.75026e+01 lineto -8.806385e+01 3.78586e+01 lineto -8.83541e+01 3.915991e+01 lineto -9.079577e+01 3.879943e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -9.109194e+01 4.010308e+01 moveto -9.079577e+01 3.879943e+01 lineto -8.83541e+01 3.915991e+01 lineto -8.862224e+01 4.046769e+01 lineto -9.109194e+01 4.010308e+01 lineto -closepath -gsave -6.268316e-01 6.268316e-01 7.835396e-01 setrgbcolor -fill -grestore -newpath -9.109194e+01 4.010308e+01 moveto -9.079577e+01 3.879943e+01 lineto -8.83541e+01 3.915991e+01 lineto -8.862224e+01 4.046769e+01 lineto -9.109194e+01 4.010308e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.577337e+01 4.297236e+00 moveto -6.500251e+01 4.000898e+00 lineto -6.500223e+01 4.000931e+00 lineto -6.568774e+01 4.307464e+00 lineto -6.577337e+01 4.297236e+00 lineto -closepath -gsave -6.103113e-01 6.103113e-01 7.628891e-01 setrgbcolor -fill -grestore -newpath -6.577337e+01 4.297236e+00 moveto -6.500251e+01 4.000898e+00 lineto -6.500223e+01 4.000931e+00 lineto -6.568774e+01 4.307464e+00 lineto -6.577337e+01 4.297236e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.65435e+01 4.633058e+00 moveto -6.577337e+01 4.297236e+00 lineto -6.568774e+01 4.307464e+00 lineto -6.637261e+01 4.653471e+00 lineto -6.65435e+01 4.633058e+00 lineto -closepath -gsave -6.129523e-01 6.129523e-01 7.661904e-01 setrgbcolor -fill -grestore -newpath -6.65435e+01 4.633058e+00 moveto -6.577337e+01 4.297236e+00 lineto -6.568774e+01 4.307464e+00 lineto -6.637261e+01 4.653471e+00 lineto -6.65435e+01 4.633058e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.731217e+01 5.008047e+00 moveto -6.65435e+01 4.633058e+00 lineto -6.637261e+01 4.653471e+00 lineto -6.705617e+01 5.038626e+00 lineto -6.731217e+01 5.008047e+00 lineto -closepath -gsave -6.155262e-01 6.155262e-01 7.694078e-01 setrgbcolor -fill -grestore -newpath -6.731217e+01 5.008047e+00 moveto -6.65435e+01 4.633058e+00 lineto -6.637261e+01 4.653471e+00 lineto -6.705617e+01 5.038626e+00 lineto -6.731217e+01 5.008047e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.807864e+01 5.421847e+00 moveto -6.731217e+01 5.008047e+00 lineto -6.705617e+01 5.038626e+00 lineto -6.773779e+01 5.462563e+00 lineto -6.807864e+01 5.421847e+00 lineto -closepath -gsave -6.1803e-01 6.1803e-01 7.725374e-01 setrgbcolor -fill -grestore -newpath -6.807864e+01 5.421847e+00 moveto -6.731217e+01 5.008047e+00 lineto -6.705617e+01 5.038626e+00 lineto -6.773779e+01 5.462563e+00 lineto -6.807864e+01 5.421847e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.884221e+01 5.874067e+00 moveto -6.807864e+01 5.421847e+00 lineto -6.773779e+01 5.462563e+00 lineto -6.841682e+01 5.924881e+00 lineto -6.884221e+01 5.874067e+00 lineto -closepath -gsave -6.204605e-01 6.204605e-01 7.755757e-01 setrgbcolor -fill -grestore -newpath -6.884221e+01 5.874067e+00 moveto -6.807864e+01 5.421847e+00 lineto -6.773779e+01 5.462563e+00 lineto -6.841682e+01 5.924881e+00 lineto -6.884221e+01 5.874067e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.960213e+01 6.364279e+00 moveto -6.884221e+01 5.874067e+00 lineto -6.841682e+01 5.924881e+00 lineto -6.909261e+01 6.425143e+00 lineto -6.960213e+01 6.364279e+00 lineto -closepath -gsave -6.228151e-01 6.228151e-01 7.785188e-01 setrgbcolor -fill -grestore -newpath -6.960213e+01 6.364279e+00 moveto -6.884221e+01 5.874067e+00 lineto -6.841682e+01 5.924881e+00 lineto -6.909261e+01 6.425143e+00 lineto -6.960213e+01 6.364279e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.03577e+01 6.892018e+00 moveto -6.960213e+01 6.364279e+00 lineto -6.909261e+01 6.425143e+00 lineto -6.976452e+01 6.962875e+00 lineto -7.03577e+01 6.892018e+00 lineto -closepath -gsave -6.250908e-01 6.250908e-01 7.813636e-01 setrgbcolor -fill -grestore -newpath -7.03577e+01 6.892018e+00 moveto -6.960213e+01 6.364279e+00 lineto -6.909261e+01 6.425143e+00 lineto -6.976452e+01 6.962875e+00 lineto -7.03577e+01 6.892018e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.11082e+01 7.456785e+00 moveto -7.03577e+01 6.892018e+00 lineto -6.976452e+01 6.962875e+00 lineto -7.043193e+01 7.537567e+00 lineto -7.11082e+01 7.456785e+00 lineto -closepath -gsave -6.272852e-01 6.272852e-01 7.841065e-01 setrgbcolor -fill -grestore -newpath -7.11082e+01 7.456785e+00 moveto -7.03577e+01 6.892018e+00 lineto -6.976452e+01 6.962875e+00 lineto -7.043193e+01 7.537567e+00 lineto -7.11082e+01 7.456785e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.185291e+01 8.058045e+00 moveto -7.11082e+01 7.456785e+00 lineto -7.043193e+01 7.537567e+00 lineto -7.109419e+01 8.148676e+00 lineto -7.185291e+01 8.058045e+00 lineto -closepath -gsave -6.293957e-01 6.293957e-01 7.867446e-01 setrgbcolor -fill -grestore -newpath -7.185291e+01 8.058045e+00 moveto -7.11082e+01 7.456785e+00 lineto -7.043193e+01 7.537567e+00 lineto -7.109419e+01 8.148676e+00 lineto -7.185291e+01 8.058045e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.259114e+01 8.695229e+00 moveto -7.185291e+01 8.058045e+00 lineto -7.109419e+01 8.148676e+00 lineto -7.175068e+01 8.795623e+00 lineto -7.259114e+01 8.695229e+00 lineto -closepath -gsave -6.314198e-01 6.314198e-01 7.892747e-01 setrgbcolor -fill -grestore -newpath -7.259114e+01 8.695229e+00 moveto -7.185291e+01 8.058045e+00 lineto -7.109419e+01 8.148676e+00 lineto -7.175068e+01 8.795623e+00 lineto -7.259114e+01 8.695229e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.332217e+01 9.367733e+00 moveto -7.259114e+01 8.695229e+00 lineto -7.175068e+01 8.795623e+00 lineto -7.240078e+01 9.477796e+00 lineto -7.332217e+01 9.367733e+00 lineto -closepath -gsave -6.333552e-01 6.333552e-01 7.91694e-01 setrgbcolor -fill -grestore -newpath -7.332217e+01 9.367733e+00 moveto -7.259114e+01 8.695229e+00 lineto -7.175068e+01 8.795623e+00 lineto -7.240078e+01 9.477796e+00 lineto -7.332217e+01 9.367733e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.404533e+01 1.007492e+01 moveto -7.332217e+01 9.367733e+00 lineto -7.240078e+01 9.477796e+00 lineto -7.304387e+01 1.019455e+01 lineto -7.404533e+01 1.007492e+01 lineto -closepath -gsave -6.351999e-01 6.351999e-01 7.939999e-01 setrgbcolor -fill -grestore -newpath -7.404533e+01 1.007492e+01 moveto -7.332217e+01 9.367733e+00 lineto -7.240078e+01 9.477796e+00 lineto -7.304387e+01 1.019455e+01 lineto -7.404533e+01 1.007492e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.475992e+01 1.081612e+01 moveto -7.404533e+01 1.007492e+01 lineto -7.304387e+01 1.019455e+01 lineto -7.367935e+01 1.09452e+01 lineto -7.475992e+01 1.081612e+01 lineto -closepath -gsave -6.369517e-01 6.369517e-01 7.961897e-01 setrgbcolor -fill -grestore -newpath -7.475992e+01 1.081612e+01 moveto -7.404533e+01 1.007492e+01 lineto -7.304387e+01 1.019455e+01 lineto -7.367935e+01 1.09452e+01 lineto -7.475992e+01 1.081612e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.546528e+01 1.159064e+01 moveto -7.475992e+01 1.081612e+01 lineto -7.367935e+01 1.09452e+01 lineto -7.430661e+01 1.172904e+01 lineto -7.546528e+01 1.159064e+01 lineto -closepath -gsave -6.386088e-01 6.386088e-01 7.98261e-01 setrgbcolor -fill -grestore -newpath -7.546528e+01 1.159064e+01 moveto -7.475992e+01 1.081612e+01 lineto -7.367935e+01 1.09452e+01 lineto -7.430661e+01 1.172904e+01 lineto -7.546528e+01 1.159064e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.616072e+01 1.239773e+01 moveto -7.546528e+01 1.159064e+01 lineto -7.430661e+01 1.172904e+01 lineto -7.492506e+01 1.254534e+01 lineto -7.616072e+01 1.239773e+01 lineto -closepath -gsave -6.401692e-01 6.401692e-01 8.002115e-01 setrgbcolor -fill -grestore -newpath -7.616072e+01 1.239773e+01 moveto -7.546528e+01 1.159064e+01 lineto -7.430661e+01 1.172904e+01 lineto -7.492506e+01 1.254534e+01 lineto -7.616072e+01 1.239773e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.68456e+01 1.323664e+01 moveto -7.616072e+01 1.239773e+01 lineto -7.492506e+01 1.254534e+01 lineto -7.553411e+01 1.33933e+01 lineto -7.68456e+01 1.323664e+01 lineto -closepath -gsave -6.416314e-01 6.416314e-01 8.020392e-01 setrgbcolor -fill -grestore -newpath -7.68456e+01 1.323664e+01 moveto -7.616072e+01 1.239773e+01 lineto -7.492506e+01 1.254534e+01 lineto -7.553411e+01 1.33933e+01 lineto -7.68456e+01 1.323664e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.751926e+01 1.410657e+01 moveto -7.68456e+01 1.323664e+01 lineto -7.553411e+01 1.33933e+01 lineto -7.613319e+01 1.427214e+01 lineto -7.751926e+01 1.410657e+01 lineto -closepath -gsave -6.429937e-01 6.429937e-01 8.037421e-01 setrgbcolor -fill -grestore -newpath -7.751926e+01 1.410657e+01 moveto -7.68456e+01 1.323664e+01 lineto -7.553411e+01 1.33933e+01 lineto -7.613319e+01 1.427214e+01 lineto -7.751926e+01 1.410657e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.818107e+01 1.50067e+01 moveto -7.751926e+01 1.410657e+01 lineto -7.613319e+01 1.427214e+01 lineto -7.672172e+01 1.518102e+01 lineto -7.818107e+01 1.50067e+01 lineto -closepath -gsave -6.442546e-01 6.442546e-01 8.053183e-01 setrgbcolor -fill -grestore -newpath -7.818107e+01 1.50067e+01 moveto -7.751926e+01 1.410657e+01 lineto -7.613319e+01 1.427214e+01 lineto -7.672172e+01 1.518102e+01 lineto -7.818107e+01 1.50067e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.88304e+01 1.593617e+01 moveto -7.818107e+01 1.50067e+01 lineto -7.672172e+01 1.518102e+01 lineto -7.729916e+01 1.611908e+01 lineto -7.88304e+01 1.593617e+01 lineto -closepath -gsave -6.454129e-01 6.454129e-01 8.067662e-01 setrgbcolor -fill -grestore -newpath -7.88304e+01 1.593617e+01 moveto -7.818107e+01 1.50067e+01 lineto -7.672172e+01 1.518102e+01 lineto -7.729916e+01 1.611908e+01 lineto -7.88304e+01 1.593617e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.946663e+01 1.689411e+01 moveto -7.88304e+01 1.593617e+01 lineto -7.729916e+01 1.611908e+01 lineto -7.786495e+01 1.708543e+01 lineto -7.946663e+01 1.689411e+01 lineto -closepath -gsave -6.464674e-01 6.464674e-01 8.080842e-01 setrgbcolor -fill -grestore -newpath -7.946663e+01 1.689411e+01 moveto -7.88304e+01 1.593617e+01 lineto -7.729916e+01 1.611908e+01 lineto -7.786495e+01 1.708543e+01 lineto -7.946663e+01 1.689411e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.008917e+01 1.78796e+01 moveto -7.946663e+01 1.689411e+01 lineto -7.786495e+01 1.708543e+01 lineto -7.841856e+01 1.807916e+01 lineto -8.008917e+01 1.78796e+01 lineto -closepath -gsave -6.474169e-01 6.474169e-01 8.092711e-01 setrgbcolor -fill -grestore -newpath -8.008917e+01 1.78796e+01 moveto -7.946663e+01 1.689411e+01 lineto -7.786495e+01 1.708543e+01 lineto -7.841856e+01 1.807916e+01 lineto -8.008917e+01 1.78796e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.069741e+01 1.889172e+01 moveto -8.008917e+01 1.78796e+01 lineto -7.841856e+01 1.807916e+01 lineto -7.895947e+01 1.909932e+01 lineto -8.069741e+01 1.889172e+01 lineto -closepath -gsave -6.482604e-01 6.482604e-01 8.103255e-01 setrgbcolor -fill -grestore -newpath -8.069741e+01 1.889172e+01 moveto -8.008917e+01 1.78796e+01 lineto -7.841856e+01 1.807916e+01 lineto -7.895947e+01 1.909932e+01 lineto -8.069741e+01 1.889172e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.12908e+01 1.99295e+01 moveto -8.069741e+01 1.889172e+01 lineto -7.895947e+01 1.909932e+01 lineto -7.948716e+01 2.014495e+01 lineto -8.12908e+01 1.99295e+01 lineto -closepath -gsave -6.489971e-01 6.489971e-01 8.112464e-01 setrgbcolor -fill -grestore -newpath -8.12908e+01 1.99295e+01 moveto -8.069741e+01 1.889172e+01 lineto -7.895947e+01 1.909932e+01 lineto -7.948716e+01 2.014495e+01 lineto -8.12908e+01 1.99295e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.186876e+01 2.099197e+01 moveto -8.12908e+01 1.99295e+01 lineto -7.948716e+01 2.014495e+01 lineto -8.000113e+01 2.121506e+01 lineto -8.186876e+01 2.099197e+01 lineto -closepath -gsave -6.496263e-01 6.496263e-01 8.120329e-01 setrgbcolor -fill -grestore -newpath -8.186876e+01 2.099197e+01 moveto -8.12908e+01 1.99295e+01 lineto -7.948716e+01 2.014495e+01 lineto -8.000113e+01 2.121506e+01 lineto -8.186876e+01 2.099197e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.243076e+01 2.207812e+01 moveto -8.186876e+01 2.099197e+01 lineto -8.000113e+01 2.121506e+01 lineto -8.05009e+01 2.230864e+01 lineto -8.243076e+01 2.207812e+01 lineto -closepath -gsave -6.501472e-01 6.501472e-01 8.12684e-01 setrgbcolor -fill -grestore -newpath -8.243076e+01 2.207812e+01 moveto -8.186876e+01 2.099197e+01 lineto -8.000113e+01 2.121506e+01 lineto -8.05009e+01 2.230864e+01 lineto -8.243076e+01 2.207812e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.297624e+01 2.318691e+01 moveto -8.243076e+01 2.207812e+01 lineto -8.05009e+01 2.230864e+01 lineto -8.0986e+01 2.342465e+01 lineto -8.297624e+01 2.318691e+01 lineto -closepath -gsave -6.505595e-01 6.505595e-01 8.131993e-01 setrgbcolor -fill -grestore -newpath -8.297624e+01 2.318691e+01 moveto -8.243076e+01 2.207812e+01 lineto -8.05009e+01 2.230864e+01 lineto -8.0986e+01 2.342465e+01 lineto -8.297624e+01 2.318691e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.350471e+01 2.431731e+01 moveto -8.297624e+01 2.318691e+01 lineto -8.0986e+01 2.342465e+01 lineto -8.145596e+01 2.456204e+01 lineto -8.350471e+01 2.431731e+01 lineto -closepath -gsave -6.508626e-01 6.508626e-01 8.135782e-01 setrgbcolor -fill -grestore -newpath -8.350471e+01 2.431731e+01 moveto -8.297624e+01 2.318691e+01 lineto -8.0986e+01 2.342465e+01 lineto -8.145596e+01 2.456204e+01 lineto -8.350471e+01 2.431731e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.401566e+01 2.546823e+01 moveto -8.350471e+01 2.431731e+01 lineto -8.145596e+01 2.456204e+01 lineto -8.191033e+01 2.571972e+01 lineto -8.401566e+01 2.546823e+01 lineto -closepath -gsave -6.510562e-01 6.510562e-01 8.138203e-01 setrgbcolor -fill -grestore -newpath -8.401566e+01 2.546823e+01 moveto -8.350471e+01 2.431731e+01 lineto -8.145596e+01 2.456204e+01 lineto -8.191033e+01 2.571972e+01 lineto -8.401566e+01 2.546823e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.45086e+01 2.66386e+01 moveto -8.401566e+01 2.546823e+01 lineto -8.191033e+01 2.571972e+01 lineto -8.23487e+01 2.68966e+01 lineto -8.45086e+01 2.66386e+01 lineto -closepath -gsave -6.511403e-01 6.511403e-01 8.139254e-01 setrgbcolor -fill -grestore -newpath -8.45086e+01 2.66386e+01 moveto -8.401566e+01 2.546823e+01 lineto -8.191033e+01 2.571972e+01 lineto -8.23487e+01 2.68966e+01 lineto -8.45086e+01 2.66386e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.498307e+01 2.782729e+01 moveto -8.45086e+01 2.66386e+01 lineto -8.23487e+01 2.68966e+01 lineto -8.277064e+01 2.809158e+01 lineto -8.498307e+01 2.782729e+01 lineto -closepath -gsave -6.511147e-01 6.511147e-01 8.138933e-01 setrgbcolor -fill -grestore -newpath -8.498307e+01 2.782729e+01 moveto -8.45086e+01 2.66386e+01 lineto -8.23487e+01 2.68966e+01 lineto -8.277064e+01 2.809158e+01 lineto -8.498307e+01 2.782729e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.543863e+01 2.90332e+01 moveto -8.498307e+01 2.782729e+01 lineto -8.277064e+01 2.809158e+01 lineto -8.317576e+01 2.93035e+01 lineto -8.543863e+01 2.90332e+01 lineto -closepath -gsave -6.509794e-01 6.509794e-01 8.137243e-01 setrgbcolor -fill -grestore -newpath -8.543863e+01 2.90332e+01 moveto -8.498307e+01 2.782729e+01 lineto -8.277064e+01 2.809158e+01 lineto -8.317576e+01 2.93035e+01 lineto -8.543863e+01 2.90332e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.587483e+01 3.025516e+01 moveto -8.543863e+01 2.90332e+01 lineto -8.317576e+01 2.93035e+01 lineto -8.356366e+01 3.053124e+01 lineto -8.587483e+01 3.025516e+01 lineto -closepath -gsave -6.507347e-01 6.507347e-01 8.134183e-01 setrgbcolor -fill -grestore -newpath -8.587483e+01 3.025516e+01 moveto -8.543863e+01 2.90332e+01 lineto -8.317576e+01 2.93035e+01 lineto -8.356366e+01 3.053124e+01 lineto -8.587483e+01 3.025516e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.629126e+01 3.149204e+01 moveto -8.587483e+01 3.025516e+01 lineto -8.356366e+01 3.053124e+01 lineto -8.393399e+01 3.177362e+01 lineto -8.629126e+01 3.149204e+01 lineto -closepath -gsave -6.503807e-01 6.503807e-01 8.129759e-01 setrgbcolor -fill -grestore -newpath -8.629126e+01 3.149204e+01 moveto -8.587483e+01 3.025516e+01 lineto -8.356366e+01 3.053124e+01 lineto -8.393399e+01 3.177362e+01 lineto -8.629126e+01 3.149204e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.668754e+01 3.274265e+01 moveto -8.629126e+01 3.149204e+01 lineto -8.393399e+01 3.177362e+01 lineto -8.42864e+01 3.302947e+01 lineto -8.668754e+01 3.274265e+01 lineto -closepath -gsave -6.499179e-01 6.499179e-01 8.123973e-01 setrgbcolor -fill -grestore -newpath -8.668754e+01 3.274265e+01 moveto -8.629126e+01 3.149204e+01 lineto -8.393399e+01 3.177362e+01 lineto -8.42864e+01 3.302947e+01 lineto -8.668754e+01 3.274265e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.706328e+01 3.400581e+01 moveto -8.668754e+01 3.274265e+01 lineto -8.42864e+01 3.302947e+01 lineto -8.462054e+01 3.42976e+01 lineto -8.706328e+01 3.400581e+01 lineto -closepath -gsave -6.493467e-01 6.493467e-01 8.116834e-01 setrgbcolor -fill -grestore -newpath -8.706328e+01 3.400581e+01 moveto -8.668754e+01 3.274265e+01 lineto -8.42864e+01 3.302947e+01 lineto -8.462054e+01 3.42976e+01 lineto -8.706328e+01 3.400581e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.741814e+01 3.528033e+01 moveto -8.706328e+01 3.400581e+01 lineto -8.462054e+01 3.42976e+01 lineto -8.49361e+01 3.557681e+01 lineto -8.741814e+01 3.528033e+01 lineto -closepath -gsave -6.486678e-01 6.486678e-01 8.108347e-01 setrgbcolor -fill -grestore -newpath -8.741814e+01 3.528033e+01 moveto -8.706328e+01 3.400581e+01 lineto -8.462054e+01 3.42976e+01 lineto -8.49361e+01 3.557681e+01 lineto -8.741814e+01 3.528033e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.775176e+01 3.6565e+01 moveto -8.741814e+01 3.528033e+01 lineto -8.49361e+01 3.557681e+01 lineto -8.52328e+01 3.686589e+01 lineto -8.775176e+01 3.6565e+01 lineto -closepath -gsave -6.478818e-01 6.478818e-01 8.098523e-01 setrgbcolor -fill -grestore -newpath -8.775176e+01 3.6565e+01 moveto -8.741814e+01 3.528033e+01 lineto -8.49361e+01 3.557681e+01 lineto -8.52328e+01 3.686589e+01 lineto -8.775176e+01 3.6565e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.806385e+01 3.78586e+01 moveto -8.775176e+01 3.6565e+01 lineto -8.52328e+01 3.686589e+01 lineto -8.551033e+01 3.816362e+01 lineto -8.806385e+01 3.78586e+01 lineto -closepath -gsave -6.469897e-01 6.469897e-01 8.087371e-01 setrgbcolor -fill -grestore -newpath -8.806385e+01 3.78586e+01 moveto -8.775176e+01 3.6565e+01 lineto -8.52328e+01 3.686589e+01 lineto -8.551033e+01 3.816362e+01 lineto -8.806385e+01 3.78586e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.83541e+01 3.915991e+01 moveto -8.806385e+01 3.78586e+01 lineto -8.551033e+01 3.816362e+01 lineto -8.576844e+01 3.946877e+01 lineto -8.83541e+01 3.915991e+01 lineto -closepath -gsave -6.459922e-01 6.459922e-01 8.074903e-01 setrgbcolor -fill -grestore -newpath -8.83541e+01 3.915991e+01 moveto -8.806385e+01 3.78586e+01 lineto -8.551033e+01 3.816362e+01 lineto -8.576844e+01 3.946877e+01 lineto -8.83541e+01 3.915991e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.862224e+01 4.046769e+01 moveto -8.83541e+01 3.915991e+01 lineto -8.576844e+01 3.946877e+01 lineto -8.600689e+01 4.07801e+01 lineto -8.862224e+01 4.046769e+01 lineto -closepath -gsave -6.448906e-01 6.448906e-01 8.061132e-01 setrgbcolor -fill -grestore -newpath -8.862224e+01 4.046769e+01 moveto -8.83541e+01 3.915991e+01 lineto -8.576844e+01 3.946877e+01 lineto -8.600689e+01 4.07801e+01 lineto -8.862224e+01 4.046769e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.568774e+01 4.307464e+00 moveto -6.500223e+01 4.000931e+00 lineto -6.500194e+01 4.000959e+00 lineto -6.559788e+01 4.31592e+00 lineto -6.568774e+01 4.307464e+00 lineto -closepath -gsave -6.105969e-01 6.105969e-01 7.632462e-01 setrgbcolor -fill -grestore -newpath -6.568774e+01 4.307464e+00 moveto -6.500223e+01 4.000931e+00 lineto -6.500194e+01 4.000959e+00 lineto -6.559788e+01 4.31592e+00 lineto -6.568774e+01 4.307464e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.637261e+01 4.653471e+00 moveto -6.568774e+01 4.307464e+00 lineto -6.559788e+01 4.31592e+00 lineto -6.619326e+01 4.670347e+00 lineto -6.637261e+01 4.653471e+00 lineto -closepath -gsave -6.138072e-01 6.138072e-01 7.67259e-01 setrgbcolor -fill -grestore -newpath -6.637261e+01 4.653471e+00 moveto -6.568774e+01 4.307464e+00 lineto -6.559788e+01 4.31592e+00 lineto -6.619326e+01 4.670347e+00 lineto -6.637261e+01 4.653471e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.705617e+01 5.038626e+00 moveto -6.637261e+01 4.653471e+00 lineto -6.619326e+01 4.670347e+00 lineto -6.67875e+01 5.063906e+00 lineto -6.705617e+01 5.038626e+00 lineto -closepath -gsave -6.169518e-01 6.169518e-01 7.711897e-01 setrgbcolor -fill -grestore -newpath -6.705617e+01 5.038626e+00 moveto -6.637261e+01 4.653471e+00 lineto -6.619326e+01 4.670347e+00 lineto -6.67875e+01 5.063906e+00 lineto -6.705617e+01 5.038626e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.773779e+01 5.462563e+00 moveto -6.705617e+01 5.038626e+00 lineto -6.67875e+01 5.063906e+00 lineto -6.738006e+01 5.496224e+00 lineto -6.773779e+01 5.462563e+00 lineto -closepath -gsave -6.200268e-01 6.200268e-01 7.750335e-01 setrgbcolor -fill -grestore -newpath -6.773779e+01 5.462563e+00 moveto -6.705617e+01 5.038626e+00 lineto -6.67875e+01 5.063906e+00 lineto -6.738006e+01 5.496224e+00 lineto -6.773779e+01 5.462563e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.841682e+01 5.924881e+00 moveto -6.773779e+01 5.462563e+00 lineto -6.738006e+01 5.496224e+00 lineto -6.797036e+01 5.96689e+00 lineto -6.841682e+01 5.924881e+00 lineto -closepath -gsave -6.230285e-01 6.230285e-01 7.787856e-01 setrgbcolor -fill -grestore -newpath -6.841682e+01 5.924881e+00 moveto -6.773779e+01 5.462563e+00 lineto -6.738006e+01 5.496224e+00 lineto -6.797036e+01 5.96689e+00 lineto -6.841682e+01 5.924881e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.909261e+01 6.425143e+00 moveto -6.841682e+01 5.924881e+00 lineto -6.797036e+01 5.96689e+00 lineto -6.855785e+01 6.475461e+00 lineto -6.909261e+01 6.425143e+00 lineto -closepath -gsave -6.259532e-01 6.259532e-01 7.824415e-01 setrgbcolor -fill -grestore -newpath -6.909261e+01 6.425143e+00 moveto -6.841682e+01 5.924881e+00 lineto -6.797036e+01 5.96689e+00 lineto -6.855785e+01 6.475461e+00 lineto -6.909261e+01 6.425143e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.976452e+01 6.962875e+00 moveto -6.909261e+01 6.425143e+00 lineto -6.855785e+01 6.475461e+00 lineto -6.914197e+01 7.021454e+00 lineto -6.976452e+01 6.962875e+00 lineto -closepath -gsave -6.287974e-01 6.287974e-01 7.859967e-01 setrgbcolor -fill -grestore -newpath -6.976452e+01 6.962875e+00 moveto -6.909261e+01 6.425143e+00 lineto -6.855785e+01 6.475461e+00 lineto -6.914197e+01 7.021454e+00 lineto -6.976452e+01 6.962875e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.043193e+01 7.537567e+00 moveto -6.976452e+01 6.962875e+00 lineto -6.914197e+01 7.021454e+00 lineto -6.972217e+01 7.604352e+00 lineto -7.043193e+01 7.537567e+00 lineto -closepath -gsave -6.315577e-01 6.315577e-01 7.894471e-01 setrgbcolor -fill -grestore -newpath -7.043193e+01 7.537567e+00 moveto -6.976452e+01 6.962875e+00 lineto -6.914197e+01 7.021454e+00 lineto -6.972217e+01 7.604352e+00 lineto -7.043193e+01 7.537567e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.109419e+01 8.148676e+00 moveto -7.043193e+01 7.537567e+00 lineto -6.972217e+01 7.604352e+00 lineto -7.02979e+01 8.223604e+00 lineto -7.109419e+01 8.148676e+00 lineto -closepath -gsave -6.342309e-01 6.342309e-01 7.927886e-01 setrgbcolor -fill -grestore -newpath -7.109419e+01 8.148676e+00 moveto -7.043193e+01 7.537567e+00 lineto -6.972217e+01 7.604352e+00 lineto -7.02979e+01 8.223604e+00 lineto -7.109419e+01 8.148676e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.175068e+01 8.795623e+00 moveto -7.109419e+01 8.148676e+00 lineto -7.02979e+01 8.223604e+00 lineto -7.086861e+01 8.878622e+00 lineto -7.175068e+01 8.795623e+00 lineto -closepath -gsave -6.368138e-01 6.368138e-01 7.960173e-01 setrgbcolor -fill -grestore -newpath -7.175068e+01 8.795623e+00 moveto -7.109419e+01 8.148676e+00 lineto -7.02979e+01 8.223604e+00 lineto -7.086861e+01 8.878622e+00 lineto -7.175068e+01 8.795623e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.240078e+01 9.477796e+00 moveto -7.175068e+01 8.795623e+00 lineto -7.086861e+01 8.878622e+00 lineto -7.143376e+01 9.568788e+00 lineto -7.240078e+01 9.477796e+00 lineto -closepath -gsave -6.393036e-01 6.393036e-01 7.991295e-01 setrgbcolor -fill -grestore -newpath -7.240078e+01 9.477796e+00 moveto -7.175068e+01 8.795623e+00 lineto -7.086861e+01 8.878622e+00 lineto -7.143376e+01 9.568788e+00 lineto -7.240078e+01 9.477796e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.304387e+01 1.019455e+01 moveto -7.240078e+01 9.477796e+00 lineto -7.143376e+01 9.568788e+00 lineto -7.199283e+01 1.029345e+01 lineto -7.304387e+01 1.019455e+01 lineto -closepath -gsave -6.416973e-01 6.416973e-01 8.021216e-01 setrgbcolor -fill -grestore -newpath -7.304387e+01 1.019455e+01 moveto -7.240078e+01 9.477796e+00 lineto -7.143376e+01 9.568788e+00 lineto -7.199283e+01 1.029345e+01 lineto -7.304387e+01 1.019455e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.367935e+01 1.09452e+01 moveto -7.304387e+01 1.019455e+01 lineto -7.199283e+01 1.029345e+01 lineto -7.254527e+01 1.105191e+01 lineto -7.367935e+01 1.09452e+01 lineto -closepath -gsave -6.439922e-01 6.439922e-01 8.049903e-01 setrgbcolor -fill -grestore -newpath -7.367935e+01 1.09452e+01 moveto -7.304387e+01 1.019455e+01 lineto -7.199283e+01 1.029345e+01 lineto -7.254527e+01 1.105191e+01 lineto -7.367935e+01 1.09452e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.430661e+01 1.172904e+01 moveto -7.367935e+01 1.09452e+01 lineto -7.254527e+01 1.105191e+01 lineto -7.309057e+01 1.184347e+01 lineto -7.430661e+01 1.172904e+01 lineto -closepath -gsave -6.461858e-01 6.461858e-01 8.077323e-01 setrgbcolor -fill -grestore -newpath -7.430661e+01 1.172904e+01 moveto -7.367935e+01 1.09452e+01 lineto -7.254527e+01 1.105191e+01 lineto -7.309057e+01 1.184347e+01 lineto -7.430661e+01 1.172904e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.492506e+01 1.254534e+01 moveto -7.430661e+01 1.172904e+01 lineto -7.309057e+01 1.184347e+01 lineto -7.36282e+01 1.266736e+01 lineto -7.492506e+01 1.254534e+01 lineto -closepath -gsave -6.482758e-01 6.482758e-01 8.103447e-01 setrgbcolor -fill -grestore -newpath -7.492506e+01 1.254534e+01 moveto -7.430661e+01 1.172904e+01 lineto -7.309057e+01 1.184347e+01 lineto -7.36282e+01 1.266736e+01 lineto -7.492506e+01 1.254534e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.553411e+01 1.33933e+01 moveto -7.492506e+01 1.254534e+01 lineto -7.36282e+01 1.266736e+01 lineto -7.415767e+01 1.352282e+01 lineto -7.553411e+01 1.33933e+01 lineto -closepath -gsave -6.502597e-01 6.502597e-01 8.128246e-01 setrgbcolor -fill -grestore -newpath -7.553411e+01 1.33933e+01 moveto -7.492506e+01 1.254534e+01 lineto -7.36282e+01 1.266736e+01 lineto -7.415767e+01 1.352282e+01 lineto -7.553411e+01 1.33933e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.613319e+01 1.427214e+01 moveto -7.553411e+01 1.33933e+01 lineto -7.415767e+01 1.352282e+01 lineto -7.467847e+01 1.440902e+01 lineto -7.613319e+01 1.427214e+01 lineto -closepath -gsave -6.521355e-01 6.521355e-01 8.151693e-01 setrgbcolor -fill -grestore -newpath -7.613319e+01 1.427214e+01 moveto -7.553411e+01 1.33933e+01 lineto -7.415767e+01 1.352282e+01 lineto -7.467847e+01 1.440902e+01 lineto -7.613319e+01 1.427214e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.672172e+01 1.518102e+01 moveto -7.613319e+01 1.427214e+01 lineto -7.467847e+01 1.440902e+01 lineto -7.519011e+01 1.532514e+01 lineto -7.672172e+01 1.518102e+01 lineto -closepath -gsave -6.539012e-01 6.539012e-01 8.173764e-01 setrgbcolor -fill -grestore -newpath -7.672172e+01 1.518102e+01 moveto -7.613319e+01 1.427214e+01 lineto -7.467847e+01 1.440902e+01 lineto -7.519011e+01 1.532514e+01 lineto -7.672172e+01 1.518102e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.729916e+01 1.611908e+01 moveto -7.672172e+01 1.518102e+01 lineto -7.519011e+01 1.532514e+01 lineto -7.569209e+01 1.62703e+01 lineto -7.729916e+01 1.611908e+01 lineto -closepath -gsave -6.555549e-01 6.555549e-01 8.194436e-01 setrgbcolor -fill -grestore -newpath -7.729916e+01 1.611908e+01 moveto -7.672172e+01 1.518102e+01 lineto -7.519011e+01 1.532514e+01 lineto -7.569209e+01 1.62703e+01 lineto -7.729916e+01 1.611908e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.786495e+01 1.708543e+01 moveto -7.729916e+01 1.611908e+01 lineto -7.569209e+01 1.62703e+01 lineto -7.618396e+01 1.72436e+01 lineto -7.786495e+01 1.708543e+01 lineto -closepath -gsave -6.570949e-01 6.570949e-01 8.213686e-01 setrgbcolor -fill -grestore -newpath -7.786495e+01 1.708543e+01 moveto -7.729916e+01 1.611908e+01 lineto -7.569209e+01 1.62703e+01 lineto -7.618396e+01 1.72436e+01 lineto -7.786495e+01 1.708543e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.841856e+01 1.807916e+01 moveto -7.786495e+01 1.708543e+01 lineto -7.618396e+01 1.72436e+01 lineto -7.666523e+01 1.824414e+01 lineto -7.841856e+01 1.807916e+01 lineto -closepath -gsave -6.585197e-01 6.585197e-01 8.231496e-01 setrgbcolor -fill -grestore -newpath -7.841856e+01 1.807916e+01 moveto -7.786495e+01 1.708543e+01 lineto -7.618396e+01 1.72436e+01 lineto -7.666523e+01 1.824414e+01 lineto -7.841856e+01 1.807916e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.895947e+01 1.909932e+01 moveto -7.841856e+01 1.807916e+01 lineto -7.666523e+01 1.824414e+01 lineto -7.713546e+01 1.927095e+01 lineto -7.895947e+01 1.909932e+01 lineto -closepath -gsave -6.598278e-01 6.598278e-01 8.247847e-01 setrgbcolor -fill -grestore -newpath -7.895947e+01 1.909932e+01 moveto -7.841856e+01 1.807916e+01 lineto -7.666523e+01 1.824414e+01 lineto -7.713546e+01 1.927095e+01 lineto -7.895947e+01 1.909932e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.948716e+01 2.014495e+01 moveto -7.895947e+01 1.909932e+01 lineto -7.713546e+01 1.927095e+01 lineto -7.75942e+01 2.032307e+01 lineto -7.948716e+01 2.014495e+01 lineto -closepath -gsave -6.610178e-01 6.610178e-01 8.262723e-01 setrgbcolor -fill -grestore -newpath -7.948716e+01 2.014495e+01 moveto -7.895947e+01 1.909932e+01 lineto -7.713546e+01 1.927095e+01 lineto -7.75942e+01 2.032307e+01 lineto -7.948716e+01 2.014495e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.000113e+01 2.121506e+01 moveto -7.948716e+01 2.014495e+01 lineto -7.75942e+01 2.032307e+01 lineto -7.804102e+01 2.13995e+01 lineto -8.000113e+01 2.121506e+01 lineto -closepath -gsave -6.620887e-01 6.620887e-01 8.276109e-01 setrgbcolor -fill -grestore -newpath -8.000113e+01 2.121506e+01 moveto -7.948716e+01 2.014495e+01 lineto -7.75942e+01 2.032307e+01 lineto -7.804102e+01 2.13995e+01 lineto -8.000113e+01 2.121506e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.05009e+01 2.230864e+01 moveto -8.000113e+01 2.121506e+01 lineto -7.804102e+01 2.13995e+01 lineto -7.847548e+01 2.249922e+01 lineto -8.05009e+01 2.230864e+01 lineto -closepath -gsave -6.630393e-01 6.630393e-01 8.287991e-01 setrgbcolor -fill -grestore -newpath -8.05009e+01 2.230864e+01 moveto -8.000113e+01 2.121506e+01 lineto -7.804102e+01 2.13995e+01 lineto -7.847548e+01 2.249922e+01 lineto -8.05009e+01 2.230864e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.0986e+01 2.342465e+01 moveto -8.05009e+01 2.230864e+01 lineto -7.847548e+01 2.249922e+01 lineto -7.889719e+01 2.36212e+01 lineto -8.0986e+01 2.342465e+01 lineto -closepath -gsave -6.638687e-01 6.638687e-01 8.298359e-01 setrgbcolor -fill -grestore -newpath -8.0986e+01 2.342465e+01 moveto -8.05009e+01 2.230864e+01 lineto -7.847548e+01 2.249922e+01 lineto -7.889719e+01 2.36212e+01 lineto -8.0986e+01 2.342465e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.145596e+01 2.456204e+01 moveto -8.0986e+01 2.342465e+01 lineto -7.889719e+01 2.36212e+01 lineto -7.930575e+01 2.476436e+01 lineto -8.145596e+01 2.456204e+01 lineto -closepath -gsave -6.645762e-01 6.645762e-01 8.307202e-01 setrgbcolor -fill -grestore -newpath -8.145596e+01 2.456204e+01 moveto -8.0986e+01 2.342465e+01 lineto -7.889719e+01 2.36212e+01 lineto -7.930575e+01 2.476436e+01 lineto -8.145596e+01 2.456204e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.191033e+01 2.571972e+01 moveto -8.145596e+01 2.456204e+01 lineto -7.930575e+01 2.476436e+01 lineto -7.970075e+01 2.592763e+01 lineto -8.191033e+01 2.571972e+01 lineto -closepath -gsave -6.65161e-01 6.65161e-01 8.314512e-01 setrgbcolor -fill -grestore -newpath -8.191033e+01 2.571972e+01 moveto -8.145596e+01 2.456204e+01 lineto -7.930575e+01 2.476436e+01 lineto -7.970075e+01 2.592763e+01 lineto -8.191033e+01 2.571972e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.23487e+01 2.68966e+01 moveto -8.191033e+01 2.571972e+01 lineto -7.970075e+01 2.592763e+01 lineto -8.008184e+01 2.71099e+01 lineto -8.23487e+01 2.68966e+01 lineto -closepath -gsave -6.656225e-01 6.656225e-01 8.320282e-01 setrgbcolor -fill -grestore -newpath -8.23487e+01 2.68966e+01 moveto -8.191033e+01 2.571972e+01 lineto -7.970075e+01 2.592763e+01 lineto -8.008184e+01 2.71099e+01 lineto -8.23487e+01 2.68966e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.277064e+01 2.809158e+01 moveto -8.23487e+01 2.68966e+01 lineto -8.008184e+01 2.71099e+01 lineto -8.044865e+01 2.831006e+01 lineto -8.277064e+01 2.809158e+01 lineto -closepath -gsave -6.659605e-01 6.659605e-01 8.324506e-01 setrgbcolor -fill -grestore -newpath -8.277064e+01 2.809158e+01 moveto -8.23487e+01 2.68966e+01 lineto -8.008184e+01 2.71099e+01 lineto -8.044865e+01 2.831006e+01 lineto -8.277064e+01 2.809158e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.317576e+01 2.93035e+01 moveto -8.277064e+01 2.809158e+01 lineto -8.044865e+01 2.831006e+01 lineto -8.080083e+01 2.952697e+01 lineto -8.317576e+01 2.93035e+01 lineto -closepath -gsave -6.661745e-01 6.661745e-01 8.327181e-01 setrgbcolor -fill -grestore -newpath -8.317576e+01 2.93035e+01 moveto -8.277064e+01 2.809158e+01 lineto -8.044865e+01 2.831006e+01 lineto -8.080083e+01 2.952697e+01 lineto -8.317576e+01 2.93035e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.356366e+01 3.053124e+01 moveto -8.317576e+01 2.93035e+01 lineto -8.080083e+01 2.952697e+01 lineto -8.113805e+01 3.075948e+01 lineto -8.356366e+01 3.053124e+01 lineto -closepath -gsave -6.662644e-01 6.662644e-01 8.328305e-01 setrgbcolor -fill -grestore -newpath -8.356366e+01 3.053124e+01 moveto -8.317576e+01 2.93035e+01 lineto -8.080083e+01 2.952697e+01 lineto -8.113805e+01 3.075948e+01 lineto -8.356366e+01 3.053124e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.393399e+01 3.177362e+01 moveto -8.356366e+01 3.053124e+01 lineto -8.113805e+01 3.075948e+01 lineto -8.145999e+01 3.200641e+01 lineto -8.393399e+01 3.177362e+01 lineto -closepath -gsave -6.662301e-01 6.662301e-01 8.327876e-01 setrgbcolor -fill -grestore -newpath -8.393399e+01 3.177362e+01 moveto -8.356366e+01 3.053124e+01 lineto -8.113805e+01 3.075948e+01 lineto -8.145999e+01 3.200641e+01 lineto -8.393399e+01 3.177362e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.42864e+01 3.302947e+01 moveto -8.393399e+01 3.177362e+01 lineto -8.145999e+01 3.200641e+01 lineto -8.176635e+01 3.326659e+01 lineto -8.42864e+01 3.302947e+01 lineto -closepath -gsave -6.660716e-01 6.660716e-01 8.325895e-01 setrgbcolor -fill -grestore -newpath -8.42864e+01 3.302947e+01 moveto -8.393399e+01 3.177362e+01 lineto -8.145999e+01 3.200641e+01 lineto -8.176635e+01 3.326659e+01 lineto -8.42864e+01 3.302947e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.462054e+01 3.42976e+01 moveto -8.42864e+01 3.302947e+01 lineto -8.176635e+01 3.326659e+01 lineto -8.205683e+01 3.453883e+01 lineto -8.462054e+01 3.42976e+01 lineto -closepath -gsave -6.657891e-01 6.657891e-01 8.322364e-01 setrgbcolor -fill -grestore -newpath -8.462054e+01 3.42976e+01 moveto -8.42864e+01 3.302947e+01 lineto -8.176635e+01 3.326659e+01 lineto -8.205683e+01 3.453883e+01 lineto -8.462054e+01 3.42976e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.49361e+01 3.557681e+01 moveto -8.462054e+01 3.42976e+01 lineto -8.205683e+01 3.453883e+01 lineto -8.233116e+01 3.582193e+01 lineto -8.49361e+01 3.557681e+01 lineto -closepath -gsave -6.65383e-01 6.65383e-01 8.317287e-01 setrgbcolor -fill -grestore -newpath -8.49361e+01 3.557681e+01 moveto -8.462054e+01 3.42976e+01 lineto -8.205683e+01 3.453883e+01 lineto -8.233116e+01 3.582193e+01 lineto -8.49361e+01 3.557681e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.52328e+01 3.686589e+01 moveto -8.49361e+01 3.557681e+01 lineto -8.233116e+01 3.582193e+01 lineto -8.258908e+01 3.711465e+01 lineto -8.52328e+01 3.686589e+01 lineto -closepath -gsave -6.648535e-01 6.648535e-01 8.310669e-01 setrgbcolor -fill -grestore -newpath -8.52328e+01 3.686589e+01 moveto -8.49361e+01 3.557681e+01 lineto -8.233116e+01 3.582193e+01 lineto -8.258908e+01 3.711465e+01 lineto -8.52328e+01 3.686589e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.551033e+01 3.816362e+01 moveto -8.52328e+01 3.686589e+01 lineto -8.258908e+01 3.711465e+01 lineto -8.283035e+01 3.841579e+01 lineto -8.551033e+01 3.816362e+01 lineto -closepath -gsave -6.642013e-01 6.642013e-01 8.302516e-01 setrgbcolor -fill -grestore -newpath -8.551033e+01 3.816362e+01 moveto -8.52328e+01 3.686589e+01 lineto -8.258908e+01 3.711465e+01 lineto -8.283035e+01 3.841579e+01 lineto -8.551033e+01 3.816362e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.576844e+01 3.946877e+01 moveto -8.551033e+01 3.816362e+01 lineto -8.283035e+01 3.841579e+01 lineto -8.305474e+01 3.972412e+01 lineto -8.576844e+01 3.946877e+01 lineto -closepath -gsave -6.634269e-01 6.634269e-01 8.292837e-01 setrgbcolor -fill -grestore -newpath -8.576844e+01 3.946877e+01 moveto -8.551033e+01 3.816362e+01 lineto -8.283035e+01 3.841579e+01 lineto -8.305474e+01 3.972412e+01 lineto -8.576844e+01 3.946877e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.600689e+01 4.07801e+01 moveto -8.576844e+01 3.946877e+01 lineto -8.305474e+01 3.972412e+01 lineto -8.326204e+01 4.103838e+01 lineto -8.600689e+01 4.07801e+01 lineto -closepath -gsave -6.625313e-01 6.625313e-01 8.281641e-01 setrgbcolor -fill -grestore -newpath -8.600689e+01 4.07801e+01 moveto -8.576844e+01 3.946877e+01 lineto -8.305474e+01 3.972412e+01 lineto -8.326204e+01 4.103838e+01 lineto -8.600689e+01 4.07801e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.559788e+01 4.31592e+00 moveto -6.500194e+01 4.000959e+00 lineto -6.500163e+01 4.00098e+00 lineto -6.550433e+01 4.322551e+00 lineto -6.559788e+01 4.31592e+00 lineto -closepath -gsave -6.108725e-01 6.108725e-01 7.635906e-01 setrgbcolor -fill -grestore -newpath -6.559788e+01 4.31592e+00 moveto -6.500194e+01 4.000959e+00 lineto -6.500163e+01 4.00098e+00 lineto -6.550433e+01 4.322551e+00 lineto -6.559788e+01 4.31592e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.619326e+01 4.670347e+00 moveto -6.559788e+01 4.31592e+00 lineto -6.550433e+01 4.322551e+00 lineto -6.600655e+01 4.683582e+00 lineto -6.619326e+01 4.670347e+00 lineto -closepath -gsave -6.146322e-01 6.146322e-01 7.682902e-01 setrgbcolor -fill -grestore -newpath -6.619326e+01 4.670347e+00 moveto -6.559788e+01 4.31592e+00 lineto -6.550433e+01 4.322551e+00 lineto -6.600655e+01 4.683582e+00 lineto -6.619326e+01 4.670347e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.67875e+01 5.063906e+00 moveto -6.619326e+01 4.670347e+00 lineto -6.600655e+01 4.683582e+00 lineto -6.650781e+01 5.083732e+00 lineto -6.67875e+01 5.063906e+00 lineto -closepath -gsave -6.183279e-01 6.183279e-01 7.729099e-01 setrgbcolor -fill -grestore -newpath -6.67875e+01 5.063906e+00 moveto -6.619326e+01 4.670347e+00 lineto -6.600655e+01 4.683582e+00 lineto -6.650781e+01 5.083732e+00 lineto -6.67875e+01 5.063906e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.738006e+01 5.496224e+00 moveto -6.67875e+01 5.063906e+00 lineto -6.650781e+01 5.083732e+00 lineto -6.700765e+01 5.522622e+00 lineto -6.738006e+01 5.496224e+00 lineto -closepath -gsave -6.21955e-01 6.21955e-01 7.774437e-01 setrgbcolor -fill -grestore -newpath -6.738006e+01 5.496224e+00 moveto -6.67875e+01 5.063906e+00 lineto -6.650781e+01 5.083732e+00 lineto -6.700765e+01 5.522622e+00 lineto -6.738006e+01 5.496224e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.797036e+01 5.96689e+00 moveto -6.738006e+01 5.496224e+00 lineto -6.700765e+01 5.522622e+00 lineto -6.750559e+01 5.999836e+00 lineto -6.797036e+01 5.96689e+00 lineto -closepath -gsave -6.255087e-01 6.255087e-01 7.818859e-01 setrgbcolor -fill -grestore -newpath -6.797036e+01 5.96689e+00 moveto -6.738006e+01 5.496224e+00 lineto -6.700765e+01 5.522622e+00 lineto -6.750559e+01 5.999836e+00 lineto -6.797036e+01 5.96689e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.855785e+01 6.475461e+00 moveto -6.797036e+01 5.96689e+00 lineto -6.750559e+01 5.999836e+00 lineto -6.800115e+01 6.514923e+00 lineto -6.855785e+01 6.475461e+00 lineto -closepath -gsave -6.289848e-01 6.289848e-01 7.86231e-01 setrgbcolor -fill -grestore -newpath -6.855785e+01 6.475461e+00 moveto -6.797036e+01 5.96689e+00 lineto -6.750559e+01 5.999836e+00 lineto -6.800115e+01 6.514923e+00 lineto -6.855785e+01 6.475461e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.914197e+01 7.021454e+00 moveto -6.855785e+01 6.475461e+00 lineto -6.800115e+01 6.514923e+00 lineto -6.849388e+01 7.067394e+00 lineto -6.914197e+01 7.021454e+00 lineto -closepath -gsave -6.323787e-01 6.323787e-01 7.904734e-01 setrgbcolor -fill -grestore -newpath -6.914197e+01 7.021454e+00 moveto -6.855785e+01 6.475461e+00 lineto -6.800115e+01 6.514923e+00 lineto -6.849388e+01 7.067394e+00 lineto -6.914197e+01 7.021454e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.972217e+01 7.604352e+00 moveto -6.914197e+01 7.021454e+00 lineto -6.849388e+01 7.067394e+00 lineto -6.898329e+01 7.656728e+00 lineto -6.972217e+01 7.604352e+00 lineto -closepath -gsave -6.356865e-01 6.356865e-01 7.946081e-01 setrgbcolor -fill -grestore -newpath -6.972217e+01 7.604352e+00 moveto -6.914197e+01 7.021454e+00 lineto -6.849388e+01 7.067394e+00 lineto -6.898329e+01 7.656728e+00 lineto -6.972217e+01 7.604352e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.02979e+01 8.223604e+00 moveto -6.972217e+01 7.604352e+00 lineto -6.898329e+01 7.656728e+00 lineto -6.946894e+01 8.282365e+00 lineto -7.02979e+01 8.223604e+00 lineto -closepath -gsave -6.38904e-01 6.38904e-01 7.986299e-01 setrgbcolor -fill -grestore -newpath -7.02979e+01 8.223604e+00 moveto -6.972217e+01 7.604352e+00 lineto -6.898329e+01 7.656728e+00 lineto -6.946894e+01 8.282365e+00 lineto -7.02979e+01 8.223604e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.086861e+01 8.878622e+00 moveto -7.02979e+01 8.223604e+00 lineto -6.946894e+01 8.282365e+00 lineto -6.995035e+01 8.943713e+00 lineto -7.086861e+01 8.878622e+00 lineto -closepath -gsave -6.420274e-01 6.420274e-01 8.025342e-01 setrgbcolor -fill -grestore -newpath -7.086861e+01 8.878622e+00 moveto -7.02979e+01 8.223604e+00 lineto -6.946894e+01 8.282365e+00 lineto -6.995035e+01 8.943713e+00 lineto -7.086861e+01 8.878622e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.143376e+01 9.568788e+00 moveto -7.086861e+01 8.878622e+00 lineto -6.995035e+01 8.943713e+00 lineto -7.042707e+01 9.640147e+00 lineto -7.143376e+01 9.568788e+00 lineto -closepath -gsave -6.450531e-01 6.450531e-01 8.063163e-01 setrgbcolor -fill -grestore -newpath -7.143376e+01 9.568788e+00 moveto -7.086861e+01 8.878622e+00 lineto -6.995035e+01 8.943713e+00 lineto -7.042707e+01 9.640147e+00 lineto -7.143376e+01 9.568788e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.199283e+01 1.029345e+01 moveto -7.143376e+01 9.568788e+00 lineto -7.042707e+01 9.640147e+00 lineto -7.089866e+01 1.037101e+01 lineto -7.199283e+01 1.029345e+01 lineto -closepath -gsave -6.479775e-01 6.479775e-01 8.099719e-01 setrgbcolor -fill -grestore -newpath -7.199283e+01 1.029345e+01 moveto -7.143376e+01 9.568788e+00 lineto -7.042707e+01 9.640147e+00 lineto -7.089866e+01 1.037101e+01 lineto -7.199283e+01 1.029345e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.254527e+01 1.105191e+01 moveto -7.199283e+01 1.029345e+01 lineto -7.089866e+01 1.037101e+01 lineto -7.136466e+01 1.11356e+01 lineto -7.254527e+01 1.105191e+01 lineto -closepath -gsave -6.507973e-01 6.507973e-01 8.134966e-01 setrgbcolor -fill -grestore -newpath -7.254527e+01 1.105191e+01 moveto -7.199283e+01 1.029345e+01 lineto -7.089866e+01 1.037101e+01 lineto -7.136466e+01 1.11356e+01 lineto -7.254527e+01 1.105191e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.309057e+01 1.184347e+01 moveto -7.254527e+01 1.105191e+01 lineto -7.136466e+01 1.11356e+01 lineto -7.182464e+01 1.19332e+01 lineto -7.309057e+01 1.184347e+01 lineto -closepath -gsave -6.535093e-01 6.535093e-01 8.168867e-01 setrgbcolor -fill -grestore -newpath -7.309057e+01 1.184347e+01 moveto -7.254527e+01 1.105191e+01 lineto -7.136466e+01 1.11356e+01 lineto -7.182464e+01 1.19332e+01 lineto -7.309057e+01 1.184347e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.36282e+01 1.266736e+01 moveto -7.309057e+01 1.184347e+01 lineto -7.182464e+01 1.19332e+01 lineto -7.227816e+01 1.276306e+01 lineto -7.36282e+01 1.266736e+01 lineto -closepath -gsave -6.561106e-01 6.561106e-01 8.201382e-01 setrgbcolor -fill -grestore -newpath -7.36282e+01 1.266736e+01 moveto -7.309057e+01 1.184347e+01 lineto -7.182464e+01 1.19332e+01 lineto -7.227816e+01 1.276306e+01 lineto -7.36282e+01 1.266736e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.415767e+01 1.352282e+01 moveto -7.36282e+01 1.266736e+01 lineto -7.227816e+01 1.276306e+01 lineto -7.272478e+01 1.362439e+01 lineto -7.415767e+01 1.352282e+01 lineto -closepath -gsave -6.585982e-01 6.585982e-01 8.232477e-01 setrgbcolor -fill -grestore -newpath -7.415767e+01 1.352282e+01 moveto -7.36282e+01 1.266736e+01 lineto -7.227816e+01 1.276306e+01 lineto -7.272478e+01 1.362439e+01 lineto -7.415767e+01 1.352282e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.467847e+01 1.440902e+01 moveto -7.415767e+01 1.352282e+01 lineto -7.272478e+01 1.362439e+01 lineto -7.316409e+01 1.451637e+01 lineto -7.467847e+01 1.440902e+01 lineto -closepath -gsave -6.609695e-01 6.609695e-01 8.262119e-01 setrgbcolor -fill -grestore -newpath -7.467847e+01 1.440902e+01 moveto -7.415767e+01 1.352282e+01 lineto -7.272478e+01 1.362439e+01 lineto -7.316409e+01 1.451637e+01 lineto -7.467847e+01 1.440902e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.519011e+01 1.532514e+01 moveto -7.467847e+01 1.440902e+01 lineto -7.316409e+01 1.451637e+01 lineto -7.359567e+01 1.543816e+01 lineto -7.519011e+01 1.532514e+01 lineto -closepath -gsave -6.63222e-01 6.63222e-01 8.290275e-01 setrgbcolor -fill -grestore -newpath -7.519011e+01 1.532514e+01 moveto -7.467847e+01 1.440902e+01 lineto -7.316409e+01 1.451637e+01 lineto -7.359567e+01 1.543816e+01 lineto -7.519011e+01 1.532514e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.569209e+01 1.62703e+01 moveto -7.519011e+01 1.532514e+01 lineto -7.359567e+01 1.543816e+01 lineto -7.401911e+01 1.638889e+01 lineto -7.569209e+01 1.62703e+01 lineto -closepath -gsave -6.653533e-01 6.653533e-01 8.316917e-01 setrgbcolor -fill -grestore -newpath -7.569209e+01 1.62703e+01 moveto -7.519011e+01 1.532514e+01 lineto -7.359567e+01 1.543816e+01 lineto -7.401911e+01 1.638889e+01 lineto -7.569209e+01 1.62703e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.618396e+01 1.72436e+01 moveto -7.569209e+01 1.62703e+01 lineto -7.401911e+01 1.638889e+01 lineto -7.443401e+01 1.736765e+01 lineto -7.618396e+01 1.72436e+01 lineto -closepath -gsave -6.673614e-01 6.673614e-01 8.342017e-01 setrgbcolor -fill -grestore -newpath -7.618396e+01 1.72436e+01 moveto -7.569209e+01 1.62703e+01 lineto -7.401911e+01 1.638889e+01 lineto -7.443401e+01 1.736765e+01 lineto -7.618396e+01 1.72436e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.666523e+01 1.824414e+01 moveto -7.618396e+01 1.72436e+01 lineto -7.443401e+01 1.736765e+01 lineto -7.483998e+01 1.837352e+01 lineto -7.666523e+01 1.824414e+01 lineto -closepath -gsave -6.692441e-01 6.692441e-01 8.365551e-01 setrgbcolor -fill -grestore -newpath -7.666523e+01 1.824414e+01 moveto -7.618396e+01 1.72436e+01 lineto -7.443401e+01 1.736765e+01 lineto -7.483998e+01 1.837352e+01 lineto -7.666523e+01 1.824414e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.713546e+01 1.927095e+01 moveto -7.666523e+01 1.824414e+01 lineto -7.483998e+01 1.837352e+01 lineto -7.523663e+01 1.940555e+01 lineto -7.713546e+01 1.927095e+01 lineto -closepath -gsave -6.709995e-01 6.709995e-01 8.387494e-01 setrgbcolor -fill -grestore -newpath -7.713546e+01 1.927095e+01 moveto -7.666523e+01 1.824414e+01 lineto -7.483998e+01 1.837352e+01 lineto -7.523663e+01 1.940555e+01 lineto -7.713546e+01 1.927095e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.75942e+01 2.032307e+01 moveto -7.713546e+01 1.927095e+01 lineto -7.523663e+01 1.940555e+01 lineto -7.562359e+01 2.046276e+01 lineto -7.75942e+01 2.032307e+01 lineto -closepath -gsave -6.726261e-01 6.726261e-01 8.407826e-01 setrgbcolor -fill -grestore -newpath -7.75942e+01 2.032307e+01 moveto -7.713546e+01 1.927095e+01 lineto -7.523663e+01 1.940555e+01 lineto -7.562359e+01 2.046276e+01 lineto -7.75942e+01 2.032307e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.804102e+01 2.13995e+01 moveto -7.75942e+01 2.032307e+01 lineto -7.562359e+01 2.046276e+01 lineto -7.60005e+01 2.154414e+01 lineto -7.804102e+01 2.13995e+01 lineto -closepath -gsave -6.741222e-01 6.741222e-01 8.426527e-01 setrgbcolor -fill -grestore -newpath -7.804102e+01 2.13995e+01 moveto -7.75942e+01 2.032307e+01 lineto -7.562359e+01 2.046276e+01 lineto -7.60005e+01 2.154414e+01 lineto -7.804102e+01 2.13995e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.847548e+01 2.249922e+01 moveto -7.804102e+01 2.13995e+01 lineto -7.60005e+01 2.154414e+01 lineto -7.636698e+01 2.264869e+01 lineto -7.847548e+01 2.249922e+01 lineto -closepath -gsave -6.754863e-01 6.754863e-01 8.443579e-01 setrgbcolor -fill -grestore -newpath -7.847548e+01 2.249922e+01 moveto -7.804102e+01 2.13995e+01 lineto -7.60005e+01 2.154414e+01 lineto -7.636698e+01 2.264869e+01 lineto -7.847548e+01 2.249922e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.889719e+01 2.36212e+01 moveto -7.847548e+01 2.249922e+01 lineto -7.636698e+01 2.264869e+01 lineto -7.672271e+01 2.377534e+01 lineto -7.889719e+01 2.36212e+01 lineto -closepath -gsave -6.767173e-01 6.767173e-01 8.458966e-01 setrgbcolor -fill -grestore -newpath -7.889719e+01 2.36212e+01 moveto -7.847548e+01 2.249922e+01 lineto -7.636698e+01 2.264869e+01 lineto -7.672271e+01 2.377534e+01 lineto -7.889719e+01 2.36212e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.930575e+01 2.476436e+01 moveto -7.889719e+01 2.36212e+01 lineto -7.672271e+01 2.377534e+01 lineto -7.706733e+01 2.492303e+01 lineto -7.930575e+01 2.476436e+01 lineto -closepath -gsave -6.77814e-01 6.77814e-01 8.472675e-01 setrgbcolor -fill -grestore -newpath -7.930575e+01 2.476436e+01 moveto -7.889719e+01 2.36212e+01 lineto -7.672271e+01 2.377534e+01 lineto -7.706733e+01 2.492303e+01 lineto -7.930575e+01 2.476436e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.970075e+01 2.592763e+01 moveto -7.930575e+01 2.476436e+01 lineto -7.706733e+01 2.492303e+01 lineto -7.740053e+01 2.609068e+01 lineto -7.970075e+01 2.592763e+01 lineto -closepath -gsave -6.787753e-01 6.787753e-01 8.484692e-01 setrgbcolor -fill -grestore -newpath -7.970075e+01 2.592763e+01 moveto -7.930575e+01 2.476436e+01 lineto -7.706733e+01 2.492303e+01 lineto -7.740053e+01 2.609068e+01 lineto -7.970075e+01 2.592763e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.008184e+01 2.71099e+01 moveto -7.970075e+01 2.592763e+01 lineto -7.740053e+01 2.609068e+01 lineto -7.772199e+01 2.727718e+01 lineto -8.008184e+01 2.71099e+01 lineto -closepath -gsave -6.796006e-01 6.796006e-01 8.495007e-01 setrgbcolor -fill -grestore -newpath -8.008184e+01 2.71099e+01 moveto -7.970075e+01 2.592763e+01 lineto -7.740053e+01 2.609068e+01 lineto -7.772199e+01 2.727718e+01 lineto -8.008184e+01 2.71099e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.044865e+01 2.831006e+01 moveto -8.008184e+01 2.71099e+01 lineto -7.772199e+01 2.727718e+01 lineto -7.803141e+01 2.848141e+01 lineto -8.044865e+01 2.831006e+01 lineto -closepath -gsave -6.802889e-01 6.802889e-01 8.503611e-01 setrgbcolor -fill -grestore -newpath -8.044865e+01 2.831006e+01 moveto -8.008184e+01 2.71099e+01 lineto -7.772199e+01 2.727718e+01 lineto -7.803141e+01 2.848141e+01 lineto -8.044865e+01 2.831006e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.080083e+01 2.952697e+01 moveto -8.044865e+01 2.831006e+01 lineto -7.803141e+01 2.848141e+01 lineto -7.832848e+01 2.970222e+01 lineto -8.080083e+01 2.952697e+01 lineto -closepath -gsave -6.808397e-01 6.808397e-01 8.510496e-01 setrgbcolor -fill -grestore -newpath -8.080083e+01 2.952697e+01 moveto -8.044865e+01 2.831006e+01 lineto -7.803141e+01 2.848141e+01 lineto -7.832848e+01 2.970222e+01 lineto -8.080083e+01 2.952697e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.113805e+01 3.075948e+01 moveto -8.080083e+01 2.952697e+01 lineto -7.832848e+01 2.970222e+01 lineto -7.861294e+01 3.093847e+01 lineto -8.113805e+01 3.075948e+01 lineto -closepath -gsave -6.812525e-01 6.812525e-01 8.515656e-01 setrgbcolor -fill -grestore -newpath -8.113805e+01 3.075948e+01 moveto -8.080083e+01 2.952697e+01 lineto -7.832848e+01 2.970222e+01 lineto -7.861294e+01 3.093847e+01 lineto -8.113805e+01 3.075948e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.145999e+01 3.200641e+01 moveto -8.113805e+01 3.075948e+01 lineto -7.861294e+01 3.093847e+01 lineto -7.888451e+01 3.218897e+01 lineto -8.145999e+01 3.200641e+01 lineto -closepath -gsave -6.81527e-01 6.81527e-01 8.519088e-01 setrgbcolor -fill -grestore -newpath -8.145999e+01 3.200641e+01 moveto -8.113805e+01 3.075948e+01 lineto -7.861294e+01 3.093847e+01 lineto -7.888451e+01 3.218897e+01 lineto -8.145999e+01 3.200641e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.176635e+01 3.326659e+01 moveto -8.145999e+01 3.200641e+01 lineto -7.888451e+01 3.218897e+01 lineto -7.914293e+01 3.345256e+01 lineto -8.176635e+01 3.326659e+01 lineto -closepath -gsave -6.81663e-01 6.81663e-01 8.520787e-01 setrgbcolor -fill -grestore -newpath -8.176635e+01 3.326659e+01 moveto -8.145999e+01 3.200641e+01 lineto -7.888451e+01 3.218897e+01 lineto -7.914293e+01 3.345256e+01 lineto -8.176635e+01 3.326659e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.205683e+01 3.453883e+01 moveto -8.176635e+01 3.326659e+01 lineto -7.914293e+01 3.345256e+01 lineto -7.938796e+01 3.472802e+01 lineto -8.205683e+01 3.453883e+01 lineto -closepath -gsave -6.816603e-01 6.816603e-01 8.520753e-01 setrgbcolor -fill -grestore -newpath -8.205683e+01 3.453883e+01 moveto -8.176635e+01 3.326659e+01 lineto -7.914293e+01 3.345256e+01 lineto -7.938796e+01 3.472802e+01 lineto -8.205683e+01 3.453883e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.233116e+01 3.582193e+01 moveto -8.205683e+01 3.453883e+01 lineto -7.938796e+01 3.472802e+01 lineto -7.961937e+01 3.601415e+01 lineto -8.233116e+01 3.582193e+01 lineto -closepath -gsave -6.815189e-01 6.815189e-01 8.518987e-01 setrgbcolor -fill -grestore -newpath -8.233116e+01 3.582193e+01 moveto -8.205683e+01 3.453883e+01 lineto -7.938796e+01 3.472802e+01 lineto -7.961937e+01 3.601415e+01 lineto -8.233116e+01 3.582193e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.258908e+01 3.711465e+01 moveto -8.233116e+01 3.582193e+01 lineto -7.961937e+01 3.601415e+01 lineto -7.983693e+01 3.730974e+01 lineto -8.258908e+01 3.711465e+01 lineto -closepath -gsave -6.812391e-01 6.812391e-01 8.515489e-01 setrgbcolor -fill -grestore -newpath -8.258908e+01 3.711465e+01 moveto -8.233116e+01 3.582193e+01 lineto -7.961937e+01 3.601415e+01 lineto -7.983693e+01 3.730974e+01 lineto -8.258908e+01 3.711465e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.283035e+01 3.841579e+01 moveto -8.258908e+01 3.711465e+01 lineto -7.983693e+01 3.730974e+01 lineto -8.004045e+01 3.861356e+01 lineto -8.283035e+01 3.841579e+01 lineto -closepath -gsave -6.808211e-01 6.808211e-01 8.510263e-01 setrgbcolor -fill -grestore -newpath -8.283035e+01 3.841579e+01 moveto -8.258908e+01 3.711465e+01 lineto -7.983693e+01 3.730974e+01 lineto -8.004045e+01 3.861356e+01 lineto -8.283035e+01 3.841579e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.305474e+01 3.972412e+01 moveto -8.283035e+01 3.841579e+01 lineto -8.004045e+01 3.861356e+01 lineto -8.022973e+01 3.992437e+01 lineto -8.305474e+01 3.972412e+01 lineto -closepath -gsave -6.802652e-01 6.802652e-01 8.503315e-01 setrgbcolor -fill -grestore -newpath -8.305474e+01 3.972412e+01 moveto -8.283035e+01 3.841579e+01 lineto -8.004045e+01 3.861356e+01 lineto -8.022973e+01 3.992437e+01 lineto -8.305474e+01 3.972412e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.326204e+01 4.103838e+01 moveto -8.305474e+01 3.972412e+01 lineto -8.022973e+01 3.992437e+01 lineto -8.040459e+01 4.124093e+01 lineto -8.326204e+01 4.103838e+01 lineto -closepath -gsave -6.79572e-01 6.79572e-01 8.49465e-01 setrgbcolor -fill -grestore -newpath -8.326204e+01 4.103838e+01 moveto -8.305474e+01 3.972412e+01 lineto -8.022973e+01 3.992437e+01 lineto -8.040459e+01 4.124093e+01 lineto -8.326204e+01 4.103838e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.550433e+01 4.322551e+00 moveto -6.500163e+01 4.00098e+00 lineto -6.500132e+01 4.000996e+00 lineto -6.540767e+01 4.327317e+00 lineto -6.550433e+01 4.322551e+00 lineto -closepath -gsave -6.111362e-01 6.111362e-01 7.639203e-01 setrgbcolor -fill -grestore -newpath -6.550433e+01 4.322551e+00 moveto -6.500163e+01 4.00098e+00 lineto -6.500132e+01 4.000996e+00 lineto -6.540767e+01 4.327317e+00 lineto -6.550433e+01 4.322551e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.600655e+01 4.683582e+00 moveto -6.550433e+01 4.322551e+00 lineto -6.540767e+01 4.327317e+00 lineto -6.581363e+01 4.693094e+00 lineto -6.600655e+01 4.683582e+00 lineto -closepath -gsave -6.154221e-01 6.154221e-01 7.692776e-01 setrgbcolor -fill -grestore -newpath -6.600655e+01 4.683582e+00 moveto -6.550433e+01 4.322551e+00 lineto -6.540767e+01 4.327317e+00 lineto -6.581363e+01 4.693094e+00 lineto -6.600655e+01 4.683582e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.650781e+01 5.083732e+00 moveto -6.600655e+01 4.683582e+00 lineto -6.581363e+01 4.693094e+00 lineto -6.621883e+01 5.097981e+00 lineto -6.650781e+01 5.083732e+00 lineto -closepath -gsave -6.19646e-01 6.19646e-01 7.745575e-01 setrgbcolor -fill -grestore -newpath -6.650781e+01 5.083732e+00 moveto -6.600655e+01 4.683582e+00 lineto -6.581363e+01 4.693094e+00 lineto -6.621883e+01 5.097981e+00 lineto -6.650781e+01 5.083732e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.700765e+01 5.522622e+00 moveto -6.650781e+01 5.083732e+00 lineto -6.621883e+01 5.097981e+00 lineto -6.662287e+01 5.541595e+00 lineto -6.700765e+01 5.522622e+00 lineto -closepath -gsave -6.238023e-01 6.238023e-01 7.797528e-01 setrgbcolor -fill -grestore -newpath -6.700765e+01 5.522622e+00 moveto -6.650781e+01 5.083732e+00 lineto -6.621883e+01 5.097981e+00 lineto -6.662287e+01 5.541595e+00 lineto -6.700765e+01 5.522622e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.750559e+01 5.999836e+00 moveto -6.700765e+01 5.522622e+00 lineto -6.662287e+01 5.541595e+00 lineto -6.702537e+01 6.023515e+00 lineto -6.750559e+01 5.999836e+00 lineto -closepath -gsave -6.278854e-01 6.278854e-01 7.848568e-01 setrgbcolor -fill -grestore -newpath -6.750559e+01 5.999836e+00 moveto -6.700765e+01 5.522622e+00 lineto -6.662287e+01 5.541595e+00 lineto -6.702537e+01 6.023515e+00 lineto -6.750559e+01 5.999836e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.800115e+01 6.514923e+00 moveto -6.750559e+01 5.999836e+00 lineto -6.702537e+01 6.023515e+00 lineto -6.742596e+01 6.543285e+00 lineto -6.800115e+01 6.514923e+00 lineto -closepath -gsave -6.318902e-01 6.318902e-01 7.898628e-01 setrgbcolor -fill -grestore -newpath -6.800115e+01 6.514923e+00 moveto -6.750559e+01 5.999836e+00 lineto -6.702537e+01 6.023515e+00 lineto -6.742596e+01 6.543285e+00 lineto -6.800115e+01 6.514923e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.849388e+01 7.067394e+00 moveto -6.800115e+01 6.514923e+00 lineto -6.742596e+01 6.543285e+00 lineto -6.782425e+01 7.100413e+00 lineto -6.849388e+01 7.067394e+00 lineto -closepath -gsave -6.358115e-01 6.358115e-01 7.947644e-01 setrgbcolor -fill -grestore -newpath -6.849388e+01 7.067394e+00 moveto -6.800115e+01 6.514923e+00 lineto -6.742596e+01 6.543285e+00 lineto -6.782425e+01 7.100413e+00 lineto -6.849388e+01 7.067394e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.898329e+01 7.656728e+00 moveto -6.849388e+01 7.067394e+00 lineto -6.782425e+01 7.100413e+00 lineto -6.821986e+01 7.694371e+00 lineto -6.898329e+01 7.656728e+00 lineto -closepath -gsave -6.396442e-01 6.396442e-01 7.995553e-01 setrgbcolor -fill -grestore -newpath -6.898329e+01 7.656728e+00 moveto -6.849388e+01 7.067394e+00 lineto -6.782425e+01 7.100413e+00 lineto -6.821986e+01 7.694371e+00 lineto -6.898329e+01 7.656728e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.946894e+01 8.282365e+00 moveto -6.898329e+01 7.656728e+00 lineto -6.821986e+01 7.694371e+00 lineto -6.861243e+01 8.324598e+00 lineto -6.946894e+01 8.282365e+00 lineto -closepath -gsave -6.433837e-01 6.433837e-01 8.042296e-01 setrgbcolor -fill -grestore -newpath -6.946894e+01 8.282365e+00 moveto -6.898329e+01 7.656728e+00 lineto -6.821986e+01 7.694371e+00 lineto -6.861243e+01 8.324598e+00 lineto -6.946894e+01 8.282365e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.995035e+01 8.943713e+00 moveto -6.946894e+01 8.282365e+00 lineto -6.861243e+01 8.324598e+00 lineto -6.900157e+01 8.990496e+00 lineto -6.995035e+01 8.943713e+00 lineto -closepath -gsave -6.470252e-01 6.470252e-01 8.087816e-01 setrgbcolor -fill -grestore -newpath -6.995035e+01 8.943713e+00 moveto -6.946894e+01 8.282365e+00 lineto -6.861243e+01 8.324598e+00 lineto -6.900157e+01 8.990496e+00 lineto -6.995035e+01 8.943713e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.042707e+01 9.640147e+00 moveto -6.995035e+01 8.943713e+00 lineto -6.900157e+01 8.990496e+00 lineto -6.938693e+01 9.691435e+00 lineto -7.042707e+01 9.640147e+00 lineto -closepath -gsave -6.505645e-01 6.505645e-01 8.132057e-01 setrgbcolor -fill -grestore -newpath -7.042707e+01 9.640147e+00 moveto -6.995035e+01 8.943713e+00 lineto -6.900157e+01 8.990496e+00 lineto -6.938693e+01 9.691435e+00 lineto -7.042707e+01 9.640147e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.089866e+01 1.037101e+01 moveto -7.042707e+01 9.640147e+00 lineto -6.938693e+01 9.691435e+00 lineto -6.976813e+01 1.042675e+01 lineto -7.089866e+01 1.037101e+01 lineto -closepath -gsave -6.539973e-01 6.539973e-01 8.174966e-01 setrgbcolor -fill -grestore -newpath -7.089866e+01 1.037101e+01 moveto -7.042707e+01 9.640147e+00 lineto -6.938693e+01 9.691435e+00 lineto -6.976813e+01 1.042675e+01 lineto -7.089866e+01 1.037101e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.136466e+01 1.11356e+01 moveto -7.089866e+01 1.037101e+01 lineto -6.976813e+01 1.042675e+01 lineto -7.014482e+01 1.119575e+01 lineto -7.136466e+01 1.11356e+01 lineto -closepath -gsave -6.573196e-01 6.573196e-01 8.216495e-01 setrgbcolor -fill -grestore -newpath -7.136466e+01 1.11356e+01 moveto -7.089866e+01 1.037101e+01 lineto -6.976813e+01 1.042675e+01 lineto -7.014482e+01 1.119575e+01 lineto -7.136466e+01 1.11356e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.182464e+01 1.19332e+01 moveto -7.136466e+01 1.11356e+01 lineto -7.014482e+01 1.119575e+01 lineto -7.051664e+01 1.19977e+01 lineto -7.182464e+01 1.19332e+01 lineto -closepath -gsave -6.605277e-01 6.605277e-01 8.256596e-01 setrgbcolor -fill -grestore -newpath -7.182464e+01 1.19332e+01 moveto -7.136466e+01 1.11356e+01 lineto -7.014482e+01 1.119575e+01 lineto -7.051664e+01 1.19977e+01 lineto -7.182464e+01 1.19332e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.227816e+01 1.276306e+01 moveto -7.182464e+01 1.19332e+01 lineto -7.051664e+01 1.19977e+01 lineto -7.088323e+01 1.283184e+01 lineto -7.227816e+01 1.276306e+01 lineto -closepath -gsave -6.636179e-01 6.636179e-01 8.295223e-01 setrgbcolor -fill -grestore -newpath -7.227816e+01 1.276306e+01 moveto -7.182464e+01 1.19332e+01 lineto -7.051664e+01 1.19977e+01 lineto -7.088323e+01 1.283184e+01 lineto -7.227816e+01 1.276306e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.272478e+01 1.362439e+01 moveto -7.227816e+01 1.276306e+01 lineto -7.088323e+01 1.283184e+01 lineto -7.124426e+01 1.369739e+01 lineto -7.272478e+01 1.362439e+01 lineto -closepath -gsave -6.665868e-01 6.665868e-01 8.332335e-01 setrgbcolor -fill -grestore -newpath -7.272478e+01 1.362439e+01 moveto -7.227816e+01 1.276306e+01 lineto -7.088323e+01 1.283184e+01 lineto -7.124426e+01 1.369739e+01 lineto -7.272478e+01 1.362439e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.316409e+01 1.451637e+01 moveto -7.272478e+01 1.362439e+01 lineto -7.124426e+01 1.369739e+01 lineto -7.159937e+01 1.459352e+01 lineto -7.316409e+01 1.451637e+01 lineto -closepath -gsave -6.694313e-01 6.694313e-01 8.367891e-01 setrgbcolor -fill -grestore -newpath -7.316409e+01 1.451637e+01 moveto -7.272478e+01 1.362439e+01 lineto -7.124426e+01 1.369739e+01 lineto -7.159937e+01 1.459352e+01 lineto -7.316409e+01 1.451637e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.359567e+01 1.543816e+01 moveto -7.316409e+01 1.451637e+01 lineto -7.159937e+01 1.459352e+01 lineto -7.194823e+01 1.551939e+01 lineto -7.359567e+01 1.543816e+01 lineto -closepath -gsave -6.721483e-01 6.721483e-01 8.401854e-01 setrgbcolor -fill -grestore -newpath -7.359567e+01 1.543816e+01 moveto -7.316409e+01 1.451637e+01 lineto -7.159937e+01 1.459352e+01 lineto -7.194823e+01 1.551939e+01 lineto -7.359567e+01 1.543816e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.401911e+01 1.638889e+01 moveto -7.359567e+01 1.543816e+01 lineto -7.194823e+01 1.551939e+01 lineto -7.229052e+01 1.647412e+01 lineto -7.401911e+01 1.638889e+01 lineto -closepath -gsave -6.747351e-01 6.747351e-01 8.434189e-01 setrgbcolor -fill -grestore -newpath -7.401911e+01 1.638889e+01 moveto -7.359567e+01 1.543816e+01 lineto -7.194823e+01 1.551939e+01 lineto -7.229052e+01 1.647412e+01 lineto -7.401911e+01 1.638889e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.443401e+01 1.736765e+01 moveto -7.401911e+01 1.638889e+01 lineto -7.229052e+01 1.647412e+01 lineto -7.26259e+01 1.74568e+01 lineto -7.443401e+01 1.736765e+01 lineto -closepath -gsave -6.771891e-01 6.771891e-01 8.464864e-01 setrgbcolor -fill -grestore -newpath -7.443401e+01 1.736765e+01 moveto -7.401911e+01 1.638889e+01 lineto -7.229052e+01 1.647412e+01 lineto -7.26259e+01 1.74568e+01 lineto -7.443401e+01 1.736765e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.483998e+01 1.837352e+01 moveto -7.443401e+01 1.736765e+01 lineto -7.26259e+01 1.74568e+01 lineto -7.295406e+01 1.846651e+01 lineto -7.483998e+01 1.837352e+01 lineto -closepath -gsave -6.795078e-01 6.795078e-01 8.493848e-01 setrgbcolor -fill -grestore -newpath -7.483998e+01 1.837352e+01 moveto -7.443401e+01 1.736765e+01 lineto -7.26259e+01 1.74568e+01 lineto -7.295406e+01 1.846651e+01 lineto -7.483998e+01 1.837352e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.523663e+01 1.940555e+01 moveto -7.483998e+01 1.837352e+01 lineto -7.295406e+01 1.846651e+01 lineto -7.327469e+01 1.950229e+01 lineto -7.523663e+01 1.940555e+01 lineto -closepath -gsave -6.816891e-01 6.816891e-01 8.521113e-01 setrgbcolor -fill -grestore -newpath -7.523663e+01 1.940555e+01 moveto -7.483998e+01 1.837352e+01 lineto -7.295406e+01 1.846651e+01 lineto -7.327469e+01 1.950229e+01 lineto -7.523663e+01 1.940555e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.562359e+01 2.046276e+01 moveto -7.523663e+01 1.940555e+01 lineto -7.327469e+01 1.950229e+01 lineto -7.358749e+01 2.056315e+01 lineto -7.562359e+01 2.046276e+01 lineto -closepath -gsave -6.837307e-01 6.837307e-01 8.546634e-01 setrgbcolor -fill -grestore -newpath -7.562359e+01 2.046276e+01 moveto -7.523663e+01 1.940555e+01 lineto -7.327469e+01 1.950229e+01 lineto -7.358749e+01 2.056315e+01 lineto -7.562359e+01 2.046276e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.60005e+01 2.154414e+01 moveto -7.562359e+01 2.046276e+01 lineto -7.358749e+01 2.056315e+01 lineto -7.389216e+01 2.16481e+01 lineto -7.60005e+01 2.154414e+01 lineto -closepath -gsave -6.856309e-01 6.856309e-01 8.570387e-01 setrgbcolor -fill -grestore -newpath -7.60005e+01 2.154414e+01 moveto -7.562359e+01 2.046276e+01 lineto -7.358749e+01 2.056315e+01 lineto -7.389216e+01 2.16481e+01 lineto -7.60005e+01 2.154414e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.636698e+01 2.264869e+01 moveto -7.60005e+01 2.154414e+01 lineto -7.389216e+01 2.16481e+01 lineto -7.41884e+01 2.275611e+01 lineto -7.636698e+01 2.264869e+01 lineto -closepath -gsave -6.87388e-01 6.87388e-01 8.59235e-01 setrgbcolor -fill -grestore -newpath -7.636698e+01 2.264869e+01 moveto -7.60005e+01 2.154414e+01 lineto -7.389216e+01 2.16481e+01 lineto -7.41884e+01 2.275611e+01 lineto -7.636698e+01 2.264869e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.672271e+01 2.377534e+01 moveto -7.636698e+01 2.264869e+01 lineto -7.41884e+01 2.275611e+01 lineto -7.447595e+01 2.388612e+01 lineto -7.672271e+01 2.377534e+01 lineto -closepath -gsave -6.890003e-01 6.890003e-01 8.612504e-01 setrgbcolor -fill -grestore -newpath -7.672271e+01 2.377534e+01 moveto -7.636698e+01 2.264869e+01 lineto -7.41884e+01 2.275611e+01 lineto -7.447595e+01 2.388612e+01 lineto -7.672271e+01 2.377534e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.706733e+01 2.492303e+01 moveto -7.672271e+01 2.377534e+01 lineto -7.447595e+01 2.388612e+01 lineto -7.475452e+01 2.503707e+01 lineto -7.706733e+01 2.492303e+01 lineto -closepath -gsave -6.904665e-01 6.904665e-01 8.630831e-01 setrgbcolor -fill -grestore -newpath -7.706733e+01 2.492303e+01 moveto -7.672271e+01 2.377534e+01 lineto -7.447595e+01 2.388612e+01 lineto -7.475452e+01 2.503707e+01 lineto -7.706733e+01 2.492303e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.740053e+01 2.609068e+01 moveto -7.706733e+01 2.492303e+01 lineto -7.475452e+01 2.503707e+01 lineto -7.502386e+01 2.620787e+01 lineto -7.740053e+01 2.609068e+01 lineto -closepath -gsave -6.917853e-01 6.917853e-01 8.647317e-01 setrgbcolor -fill -grestore -newpath -7.740053e+01 2.609068e+01 moveto -7.706733e+01 2.492303e+01 lineto -7.475452e+01 2.503707e+01 lineto -7.502386e+01 2.620787e+01 lineto -7.740053e+01 2.609068e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.772199e+01 2.727718e+01 moveto -7.740053e+01 2.609068e+01 lineto -7.502386e+01 2.620787e+01 lineto -7.528371e+01 2.739741e+01 lineto -7.772199e+01 2.727718e+01 lineto -closepath -gsave -6.929557e-01 6.929557e-01 8.661946e-01 setrgbcolor -fill -grestore -newpath -7.772199e+01 2.727718e+01 moveto -7.740053e+01 2.609068e+01 lineto -7.502386e+01 2.620787e+01 lineto -7.528371e+01 2.739741e+01 lineto -7.772199e+01 2.727718e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.803141e+01 2.848141e+01 moveto -7.772199e+01 2.727718e+01 lineto -7.528371e+01 2.739741e+01 lineto -7.553382e+01 2.860456e+01 lineto -7.803141e+01 2.848141e+01 lineto -closepath -gsave -6.939766e-01 6.939766e-01 8.674707e-01 setrgbcolor -fill -grestore -newpath -7.803141e+01 2.848141e+01 moveto -7.772199e+01 2.727718e+01 lineto -7.528371e+01 2.739741e+01 lineto -7.553382e+01 2.860456e+01 lineto -7.803141e+01 2.848141e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.832848e+01 2.970222e+01 moveto -7.803141e+01 2.848141e+01 lineto -7.553382e+01 2.860456e+01 lineto -7.577396e+01 2.982818e+01 lineto -7.832848e+01 2.970222e+01 lineto -closepath -gsave -6.948472e-01 6.948472e-01 8.68559e-01 setrgbcolor -fill -grestore -newpath -7.832848e+01 2.970222e+01 moveto -7.803141e+01 2.848141e+01 lineto -7.553382e+01 2.860456e+01 lineto -7.577396e+01 2.982818e+01 lineto -7.832848e+01 2.970222e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.861294e+01 3.093847e+01 moveto -7.832848e+01 2.970222e+01 lineto -7.577396e+01 2.982818e+01 lineto -7.60039e+01 3.106712e+01 lineto -7.861294e+01 3.093847e+01 lineto -closepath -gsave -6.955669e-01 6.955669e-01 8.694586e-01 setrgbcolor -fill -grestore -newpath -7.861294e+01 3.093847e+01 moveto -7.832848e+01 2.970222e+01 lineto -7.577396e+01 2.982818e+01 lineto -7.60039e+01 3.106712e+01 lineto -7.861294e+01 3.093847e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.888451e+01 3.218897e+01 moveto -7.861294e+01 3.093847e+01 lineto -7.60039e+01 3.106712e+01 lineto -7.622342e+01 3.232019e+01 lineto -7.888451e+01 3.218897e+01 lineto -closepath -gsave -6.96135e-01 6.96135e-01 8.701688e-01 setrgbcolor -fill -grestore -newpath -7.888451e+01 3.218897e+01 moveto -7.861294e+01 3.093847e+01 lineto -7.60039e+01 3.106712e+01 lineto -7.622342e+01 3.232019e+01 lineto -7.888451e+01 3.218897e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.914293e+01 3.345256e+01 moveto -7.888451e+01 3.218897e+01 lineto -7.622342e+01 3.232019e+01 lineto -7.643231e+01 3.358621e+01 lineto -7.914293e+01 3.345256e+01 lineto -closepath -gsave -6.965512e-01 6.965512e-01 8.70689e-01 setrgbcolor -fill -grestore -newpath -7.914293e+01 3.345256e+01 moveto -7.888451e+01 3.218897e+01 lineto -7.622342e+01 3.232019e+01 lineto -7.643231e+01 3.358621e+01 lineto -7.914293e+01 3.345256e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.938796e+01 3.472802e+01 moveto -7.914293e+01 3.345256e+01 lineto -7.643231e+01 3.358621e+01 lineto -7.663038e+01 3.486399e+01 lineto -7.938796e+01 3.472802e+01 lineto -closepath -gsave -6.968151e-01 6.968151e-01 8.710189e-01 setrgbcolor -fill -grestore -newpath -7.938796e+01 3.472802e+01 moveto -7.914293e+01 3.345256e+01 lineto -7.643231e+01 3.358621e+01 lineto -7.663038e+01 3.486399e+01 lineto -7.938796e+01 3.472802e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.961937e+01 3.601415e+01 moveto -7.938796e+01 3.472802e+01 lineto -7.663038e+01 3.486399e+01 lineto -7.681744e+01 3.615231e+01 lineto -7.961937e+01 3.601415e+01 lineto -closepath -gsave -6.969266e-01 6.969266e-01 8.711582e-01 setrgbcolor -fill -grestore -newpath -7.961937e+01 3.601415e+01 moveto -7.938796e+01 3.472802e+01 lineto -7.663038e+01 3.486399e+01 lineto -7.681744e+01 3.615231e+01 lineto -7.961937e+01 3.601415e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.983693e+01 3.730974e+01 moveto -7.961937e+01 3.601415e+01 lineto -7.681744e+01 3.615231e+01 lineto -7.69933e+01 3.744996e+01 lineto -7.983693e+01 3.730974e+01 lineto -closepath -gsave -6.968854e-01 6.968854e-01 8.711068e-01 setrgbcolor -fill -grestore -newpath -7.983693e+01 3.730974e+01 moveto -7.961937e+01 3.601415e+01 lineto -7.681744e+01 3.615231e+01 lineto -7.69933e+01 3.744996e+01 lineto -7.983693e+01 3.730974e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.004045e+01 3.861356e+01 moveto -7.983693e+01 3.730974e+01 lineto -7.69933e+01 3.744996e+01 lineto -7.715782e+01 3.87557e+01 lineto -8.004045e+01 3.861356e+01 lineto -closepath -gsave -6.966918e-01 6.966918e-01 8.708648e-01 setrgbcolor -fill -grestore -newpath -8.004045e+01 3.861356e+01 moveto -7.983693e+01 3.730974e+01 lineto -7.69933e+01 3.744996e+01 lineto -7.715782e+01 3.87557e+01 lineto -8.004045e+01 3.861356e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.022973e+01 3.992437e+01 moveto -8.004045e+01 3.861356e+01 lineto -7.715782e+01 3.87557e+01 lineto -7.731082e+01 4.00683e+01 lineto -8.022973e+01 3.992437e+01 lineto -closepath -gsave -6.963459e-01 6.963459e-01 8.704324e-01 setrgbcolor -fill -grestore -newpath -8.022973e+01 3.992437e+01 moveto -8.004045e+01 3.861356e+01 lineto -7.715782e+01 3.87557e+01 lineto -7.731082e+01 4.00683e+01 lineto -8.022973e+01 3.992437e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -8.040459e+01 4.124093e+01 moveto -8.022973e+01 3.992437e+01 lineto -7.731082e+01 4.00683e+01 lineto -7.745216e+01 4.138651e+01 lineto -8.040459e+01 4.124093e+01 lineto -closepath -gsave -6.95848e-01 6.95848e-01 8.6981e-01 setrgbcolor -fill -grestore -newpath -8.040459e+01 4.124093e+01 moveto -8.022973e+01 3.992437e+01 lineto -7.731082e+01 4.00683e+01 lineto -7.745216e+01 4.138651e+01 lineto -8.040459e+01 4.124093e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.540767e+01 4.327317e+00 moveto -6.500132e+01 4.000996e+00 lineto -6.5001e+01 4.001005e+00 lineto -6.53085e+01 4.330188e+00 lineto -6.540767e+01 4.327317e+00 lineto -closepath -gsave -6.113865e-01 6.113865e-01 7.642332e-01 setrgbcolor -fill -grestore -newpath -6.540767e+01 4.327317e+00 moveto -6.500132e+01 4.000996e+00 lineto -6.5001e+01 4.001005e+00 lineto -6.53085e+01 4.330188e+00 lineto -6.540767e+01 4.327317e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.581363e+01 4.693094e+00 moveto -6.540767e+01 4.327317e+00 lineto -6.53085e+01 4.330188e+00 lineto -6.56157e+01 4.698825e+00 lineto -6.581363e+01 4.693094e+00 lineto -closepath -gsave -6.16172e-01 6.16172e-01 7.70215e-01 setrgbcolor -fill -grestore -newpath -6.581363e+01 4.693094e+00 moveto -6.540767e+01 4.327317e+00 lineto -6.53085e+01 4.330188e+00 lineto -6.56157e+01 4.698825e+00 lineto -6.581363e+01 4.693094e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.621883e+01 5.097981e+00 moveto -6.581363e+01 4.693094e+00 lineto -6.56157e+01 4.698825e+00 lineto -6.592233e+01 5.106566e+00 lineto -6.621883e+01 5.097981e+00 lineto -closepath -gsave -6.208976e-01 6.208976e-01 7.76122e-01 setrgbcolor -fill -grestore -newpath -6.621883e+01 5.097981e+00 moveto -6.581363e+01 4.693094e+00 lineto -6.56157e+01 4.698825e+00 lineto -6.592233e+01 5.106566e+00 lineto -6.621883e+01 5.097981e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.662287e+01 5.541595e+00 moveto -6.621883e+01 5.097981e+00 lineto -6.592233e+01 5.106566e+00 lineto -6.622808e+01 5.553026e+00 lineto -6.662287e+01 5.541595e+00 lineto -closepath -gsave -6.255568e-01 6.255568e-01 7.819461e-01 setrgbcolor -fill -grestore -newpath -6.662287e+01 5.541595e+00 moveto -6.621883e+01 5.097981e+00 lineto -6.592233e+01 5.106566e+00 lineto -6.622808e+01 5.553026e+00 lineto -6.662287e+01 5.541595e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.702537e+01 6.023515e+00 moveto -6.662287e+01 5.541595e+00 lineto -6.622808e+01 5.553026e+00 lineto -6.653267e+01 6.037781e+00 lineto -6.702537e+01 6.023515e+00 lineto -closepath -gsave -6.301433e-01 6.301433e-01 7.876791e-01 setrgbcolor -fill -grestore -newpath -6.702537e+01 6.023515e+00 moveto -6.662287e+01 5.541595e+00 lineto -6.622808e+01 5.553026e+00 lineto -6.653267e+01 6.037781e+00 lineto -6.702537e+01 6.023515e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.742596e+01 6.543285e+00 moveto -6.702537e+01 6.023515e+00 lineto -6.653267e+01 6.037781e+00 lineto -6.68358e+01 6.560372e+00 lineto -6.742596e+01 6.543285e+00 lineto -closepath -gsave -6.346508e-01 6.346508e-01 7.933135e-01 setrgbcolor -fill -grestore -newpath -6.742596e+01 6.543285e+00 moveto -6.702537e+01 6.023515e+00 lineto -6.653267e+01 6.037781e+00 lineto -6.68358e+01 6.560372e+00 lineto -6.742596e+01 6.543285e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.782425e+01 7.100413e+00 moveto -6.742596e+01 6.543285e+00 lineto -6.68358e+01 6.560372e+00 lineto -6.71372e+01 7.120306e+00 lineto -6.782425e+01 7.100413e+00 lineto -closepath -gsave -6.390733e-01 6.390733e-01 7.988416e-01 setrgbcolor -fill -grestore -newpath -6.782425e+01 7.100413e+00 moveto -6.742596e+01 6.543285e+00 lineto -6.68358e+01 6.560372e+00 lineto -6.71372e+01 7.120306e+00 lineto -6.782425e+01 7.100413e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.821986e+01 7.694371e+00 moveto -6.782425e+01 7.100413e+00 lineto -6.71372e+01 7.120306e+00 lineto -6.743658e+01 7.717051e+00 lineto -6.821986e+01 7.694371e+00 lineto -closepath -gsave -6.43405e-01 6.43405e-01 8.042562e-01 setrgbcolor -fill -grestore -newpath -6.821986e+01 7.694371e+00 moveto -6.782425e+01 7.100413e+00 lineto -6.71372e+01 7.120306e+00 lineto -6.743658e+01 7.717051e+00 lineto -6.821986e+01 7.694371e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.861243e+01 8.324598e+00 moveto -6.821986e+01 7.694371e+00 lineto -6.743658e+01 7.717051e+00 lineto -6.773364e+01 8.350042e+00 lineto -6.861243e+01 8.324598e+00 lineto -closepath -gsave -6.476403e-01 6.476403e-01 8.095504e-01 setrgbcolor -fill -grestore -newpath -6.861243e+01 8.324598e+00 moveto -6.821986e+01 7.694371e+00 lineto -6.743658e+01 7.717051e+00 lineto -6.773364e+01 8.350042e+00 lineto -6.861243e+01 8.324598e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.900157e+01 8.990496e+00 moveto -6.861243e+01 8.324598e+00 lineto -6.773364e+01 8.350042e+00 lineto -6.802812e+01 9.018681e+00 lineto -6.900157e+01 8.990496e+00 lineto -closepath -gsave -6.51774e-01 6.51774e-01 8.147175e-01 setrgbcolor -fill -grestore -newpath -6.900157e+01 8.990496e+00 moveto -6.861243e+01 8.324598e+00 lineto -6.773364e+01 8.350042e+00 lineto -6.802812e+01 9.018681e+00 lineto -6.900157e+01 8.990496e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.938693e+01 9.691435e+00 moveto -6.900157e+01 8.990496e+00 lineto -6.802812e+01 9.018681e+00 lineto -6.831974e+01 9.722335e+00 lineto -6.938693e+01 9.691435e+00 lineto -closepath -gsave -6.558007e-01 6.558007e-01 8.197509e-01 setrgbcolor -fill -grestore -newpath -6.938693e+01 9.691435e+00 moveto -6.900157e+01 8.990496e+00 lineto -6.802812e+01 9.018681e+00 lineto -6.831974e+01 9.722335e+00 lineto -6.938693e+01 9.691435e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.976813e+01 1.042675e+01 moveto -6.938693e+01 9.691435e+00 lineto -6.831974e+01 9.722335e+00 lineto -6.86082e+01 1.046034e+01 lineto -6.976813e+01 1.042675e+01 lineto -closepath -gsave -6.597158e-01 6.597158e-01 8.246447e-01 setrgbcolor -fill -grestore -newpath -6.976813e+01 1.042675e+01 moveto -6.938693e+01 9.691435e+00 lineto -6.831974e+01 9.722335e+00 lineto -6.86082e+01 1.046034e+01 lineto -6.976813e+01 1.042675e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.014482e+01 1.119575e+01 moveto -6.976813e+01 1.042675e+01 lineto -6.86082e+01 1.046034e+01 lineto -6.889326e+01 1.123199e+01 lineto -7.014482e+01 1.119575e+01 lineto -closepath -gsave -6.635144e-01 6.635144e-01 8.29393e-01 setrgbcolor -fill -grestore -newpath -7.014482e+01 1.119575e+01 moveto -6.976813e+01 1.042675e+01 lineto -6.86082e+01 1.046034e+01 lineto -6.889326e+01 1.123199e+01 lineto -7.014482e+01 1.119575e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.051664e+01 1.19977e+01 moveto -7.014482e+01 1.119575e+01 lineto -6.889326e+01 1.123199e+01 lineto -6.917462e+01 1.203656e+01 lineto -7.051664e+01 1.19977e+01 lineto -closepath -gsave -6.671923e-01 6.671923e-01 8.339904e-01 setrgbcolor -fill -grestore -newpath -7.051664e+01 1.19977e+01 moveto -7.014482e+01 1.119575e+01 lineto -6.889326e+01 1.123199e+01 lineto -6.917462e+01 1.203656e+01 lineto -7.051664e+01 1.19977e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.088323e+01 1.283184e+01 moveto -7.051664e+01 1.19977e+01 lineto -6.917462e+01 1.203656e+01 lineto -6.945204e+01 1.287328e+01 lineto -7.088323e+01 1.283184e+01 lineto -closepath -gsave -6.707452e-01 6.707452e-01 8.384315e-01 setrgbcolor -fill -grestore -newpath -7.088323e+01 1.283184e+01 moveto -7.051664e+01 1.19977e+01 lineto -6.917462e+01 1.203656e+01 lineto -6.945204e+01 1.287328e+01 lineto -7.088323e+01 1.283184e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.124426e+01 1.369739e+01 moveto -7.088323e+01 1.283184e+01 lineto -6.945204e+01 1.287328e+01 lineto -6.972524e+01 1.374137e+01 lineto -7.124426e+01 1.369739e+01 lineto -closepath -gsave -6.741693e-01 6.741693e-01 8.427116e-01 setrgbcolor -fill -grestore -newpath -7.124426e+01 1.369739e+01 moveto -7.088323e+01 1.283184e+01 lineto -6.945204e+01 1.287328e+01 lineto -6.972524e+01 1.374137e+01 lineto -7.124426e+01 1.369739e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.159937e+01 1.459352e+01 moveto -7.124426e+01 1.369739e+01 lineto -6.972524e+01 1.374137e+01 lineto -6.999396e+01 1.464001e+01 lineto -7.159937e+01 1.459352e+01 lineto -closepath -gsave -6.774607e-01 6.774607e-01 8.468259e-01 setrgbcolor -fill -grestore -newpath -7.159937e+01 1.459352e+01 moveto -7.124426e+01 1.369739e+01 lineto -6.972524e+01 1.374137e+01 lineto -6.999396e+01 1.464001e+01 lineto -7.159937e+01 1.459352e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.194823e+01 1.551939e+01 moveto -7.159937e+01 1.459352e+01 lineto -6.999396e+01 1.464001e+01 lineto -7.025796e+01 1.556833e+01 lineto -7.194823e+01 1.551939e+01 lineto -closepath -gsave -6.806162e-01 6.806162e-01 8.507702e-01 setrgbcolor -fill -grestore -newpath -7.194823e+01 1.551939e+01 moveto -7.159937e+01 1.459352e+01 lineto -6.999396e+01 1.464001e+01 lineto -7.025796e+01 1.556833e+01 lineto -7.194823e+01 1.551939e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.229052e+01 1.647412e+01 moveto -7.194823e+01 1.551939e+01 lineto -7.025796e+01 1.556833e+01 lineto -7.051698e+01 1.652547e+01 lineto -7.229052e+01 1.647412e+01 lineto -closepath -gsave -6.836324e-01 6.836324e-01 8.545405e-01 setrgbcolor -fill -grestore -newpath -7.229052e+01 1.647412e+01 moveto -7.194823e+01 1.551939e+01 lineto -7.025796e+01 1.556833e+01 lineto -7.051698e+01 1.652547e+01 lineto -7.229052e+01 1.647412e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.26259e+01 1.74568e+01 moveto -7.229052e+01 1.647412e+01 lineto -7.051698e+01 1.652547e+01 lineto -7.077077e+01 1.751052e+01 lineto -7.26259e+01 1.74568e+01 lineto -closepath -gsave -6.865064e-01 6.865064e-01 8.58133e-01 setrgbcolor -fill -grestore -newpath -7.26259e+01 1.74568e+01 moveto -7.229052e+01 1.647412e+01 lineto -7.051698e+01 1.652547e+01 lineto -7.077077e+01 1.751052e+01 lineto -7.26259e+01 1.74568e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.295406e+01 1.846651e+01 moveto -7.26259e+01 1.74568e+01 lineto -7.077077e+01 1.751052e+01 lineto -7.10191e+01 1.852254e+01 lineto -7.295406e+01 1.846651e+01 lineto -closepath -gsave -6.892354e-01 6.892354e-01 8.615443e-01 setrgbcolor -fill -grestore -newpath -7.295406e+01 1.846651e+01 moveto -7.26259e+01 1.74568e+01 lineto -7.077077e+01 1.751052e+01 lineto -7.10191e+01 1.852254e+01 lineto -7.295406e+01 1.846651e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.327469e+01 1.950229e+01 moveto -7.295406e+01 1.846651e+01 lineto -7.10191e+01 1.852254e+01 lineto -7.126174e+01 1.956057e+01 lineto -7.327469e+01 1.950229e+01 lineto -closepath -gsave -6.918168e-01 6.918168e-01 8.64771e-01 setrgbcolor -fill -grestore -newpath -7.327469e+01 1.950229e+01 moveto -7.295406e+01 1.846651e+01 lineto -7.10191e+01 1.852254e+01 lineto -7.126174e+01 1.956057e+01 lineto -7.327469e+01 1.950229e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.358749e+01 2.056315e+01 moveto -7.327469e+01 1.950229e+01 lineto -7.126174e+01 1.956057e+01 lineto -7.149844e+01 2.062364e+01 lineto -7.358749e+01 2.056315e+01 lineto -closepath -gsave -6.942484e-01 6.942484e-01 8.678104e-01 setrgbcolor -fill -grestore -newpath -7.358749e+01 2.056315e+01 moveto -7.327469e+01 1.950229e+01 lineto -7.126174e+01 1.956057e+01 lineto -7.149844e+01 2.062364e+01 lineto -7.358749e+01 2.056315e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.389216e+01 2.16481e+01 moveto -7.358749e+01 2.056315e+01 lineto -7.149844e+01 2.062364e+01 lineto -7.172899e+01 2.171074e+01 lineto -7.389216e+01 2.16481e+01 lineto -closepath -gsave -6.965278e-01 6.965278e-01 8.706598e-01 setrgbcolor -fill -grestore -newpath -7.389216e+01 2.16481e+01 moveto -7.358749e+01 2.056315e+01 lineto -7.149844e+01 2.062364e+01 lineto -7.172899e+01 2.171074e+01 lineto -7.389216e+01 2.16481e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.41884e+01 2.275611e+01 moveto -7.389216e+01 2.16481e+01 lineto -7.172899e+01 2.171074e+01 lineto -7.195317e+01 2.282083e+01 lineto -7.41884e+01 2.275611e+01 lineto -closepath -gsave -6.986532e-01 6.986532e-01 8.733165e-01 setrgbcolor -fill -grestore -newpath -7.41884e+01 2.275611e+01 moveto -7.389216e+01 2.16481e+01 lineto -7.172899e+01 2.171074e+01 lineto -7.195317e+01 2.282083e+01 lineto -7.41884e+01 2.275611e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.447595e+01 2.388612e+01 moveto -7.41884e+01 2.275611e+01 lineto -7.195317e+01 2.282083e+01 lineto -7.217077e+01 2.395287e+01 lineto -7.447595e+01 2.388612e+01 lineto -closepath -gsave -7.006228e-01 7.006228e-01 8.757786e-01 setrgbcolor -fill -grestore -newpath -7.447595e+01 2.388612e+01 moveto -7.41884e+01 2.275611e+01 lineto -7.195317e+01 2.282083e+01 lineto -7.217077e+01 2.395287e+01 lineto -7.447595e+01 2.388612e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.475452e+01 2.503707e+01 moveto -7.447595e+01 2.388612e+01 lineto -7.217077e+01 2.395287e+01 lineto -7.238157e+01 2.510578e+01 lineto -7.475452e+01 2.503707e+01 lineto -closepath -gsave -7.02435e-01 7.02435e-01 8.780438e-01 setrgbcolor -fill -grestore -newpath -7.475452e+01 2.503707e+01 moveto -7.447595e+01 2.388612e+01 lineto -7.217077e+01 2.395287e+01 lineto -7.238157e+01 2.510578e+01 lineto -7.475452e+01 2.503707e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.502386e+01 2.620787e+01 moveto -7.475452e+01 2.503707e+01 lineto -7.238157e+01 2.510578e+01 lineto -7.258539e+01 2.627848e+01 lineto -7.502386e+01 2.620787e+01 lineto -closepath -gsave -7.040884e-01 7.040884e-01 8.801105e-01 setrgbcolor -fill -grestore -newpath -7.502386e+01 2.620787e+01 moveto -7.475452e+01 2.503707e+01 lineto -7.238157e+01 2.510578e+01 lineto -7.258539e+01 2.627848e+01 lineto -7.502386e+01 2.620787e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.528371e+01 2.739741e+01 moveto -7.502386e+01 2.620787e+01 lineto -7.258539e+01 2.627848e+01 lineto -7.278203e+01 2.746984e+01 lineto -7.528371e+01 2.739741e+01 lineto -closepath -gsave -7.055816e-01 7.055816e-01 8.819771e-01 setrgbcolor -fill -grestore -newpath -7.528371e+01 2.739741e+01 moveto -7.502386e+01 2.620787e+01 lineto -7.258539e+01 2.627848e+01 lineto -7.278203e+01 2.746984e+01 lineto -7.528371e+01 2.739741e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.553382e+01 2.860456e+01 moveto -7.528371e+01 2.739741e+01 lineto -7.278203e+01 2.746984e+01 lineto -7.29713e+01 2.867876e+01 lineto -7.553382e+01 2.860456e+01 lineto -closepath -gsave -7.069136e-01 7.069136e-01 8.83642e-01 setrgbcolor -fill -grestore -newpath -7.553382e+01 2.860456e+01 moveto -7.528371e+01 2.739741e+01 lineto -7.278203e+01 2.746984e+01 lineto -7.29713e+01 2.867876e+01 lineto -7.553382e+01 2.860456e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.577396e+01 2.982818e+01 moveto -7.553382e+01 2.860456e+01 lineto -7.29713e+01 2.867876e+01 lineto -7.315302e+01 2.990407e+01 lineto -7.577396e+01 2.982818e+01 lineto -closepath -gsave -7.080834e-01 7.080834e-01 8.851043e-01 setrgbcolor -fill -grestore -newpath -7.577396e+01 2.982818e+01 moveto -7.553382e+01 2.860456e+01 lineto -7.29713e+01 2.867876e+01 lineto -7.315302e+01 2.990407e+01 lineto -7.577396e+01 2.982818e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.60039e+01 3.106712e+01 moveto -7.577396e+01 2.982818e+01 lineto -7.315302e+01 2.990407e+01 lineto -7.332702e+01 3.114462e+01 lineto -7.60039e+01 3.106712e+01 lineto -closepath -gsave -7.090901e-01 7.090901e-01 8.863626e-01 setrgbcolor -fill -grestore -newpath -7.60039e+01 3.106712e+01 moveto -7.577396e+01 2.982818e+01 lineto -7.315302e+01 2.990407e+01 lineto -7.332702e+01 3.114462e+01 lineto -7.60039e+01 3.106712e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.622342e+01 3.232019e+01 moveto -7.60039e+01 3.106712e+01 lineto -7.332702e+01 3.114462e+01 lineto -7.349314e+01 3.239924e+01 lineto -7.622342e+01 3.232019e+01 lineto -closepath -gsave -7.09933e-01 7.09933e-01 8.874163e-01 setrgbcolor -fill -grestore -newpath -7.622342e+01 3.232019e+01 moveto -7.60039e+01 3.106712e+01 lineto -7.332702e+01 3.114462e+01 lineto -7.349314e+01 3.239924e+01 lineto -7.622342e+01 3.232019e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.643231e+01 3.358621e+01 moveto -7.622342e+01 3.232019e+01 lineto -7.349314e+01 3.239924e+01 lineto -7.365121e+01 3.366674e+01 lineto -7.643231e+01 3.358621e+01 lineto -closepath -gsave -7.106116e-01 7.106116e-01 8.882645e-01 setrgbcolor -fill -grestore -newpath -7.643231e+01 3.358621e+01 moveto -7.622342e+01 3.232019e+01 lineto -7.349314e+01 3.239924e+01 lineto -7.365121e+01 3.366674e+01 lineto -7.643231e+01 3.358621e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.663038e+01 3.486399e+01 moveto -7.643231e+01 3.358621e+01 lineto -7.365121e+01 3.366674e+01 lineto -7.38011e+01 3.494591e+01 lineto -7.663038e+01 3.486399e+01 lineto -closepath -gsave -7.111254e-01 7.111254e-01 8.889068e-01 setrgbcolor -fill -grestore -newpath -7.663038e+01 3.486399e+01 moveto -7.643231e+01 3.358621e+01 lineto -7.365121e+01 3.366674e+01 lineto -7.38011e+01 3.494591e+01 lineto -7.663038e+01 3.486399e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.681744e+01 3.615231e+01 moveto -7.663038e+01 3.486399e+01 lineto -7.38011e+01 3.494591e+01 lineto -7.394265e+01 3.623555e+01 lineto -7.681744e+01 3.615231e+01 lineto -closepath -gsave -7.114741e-01 7.114741e-01 8.893426e-01 setrgbcolor -fill -grestore -newpath -7.681744e+01 3.615231e+01 moveto -7.663038e+01 3.486399e+01 lineto -7.38011e+01 3.494591e+01 lineto -7.394265e+01 3.623555e+01 lineto -7.681744e+01 3.615231e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.69933e+01 3.744996e+01 moveto -7.681744e+01 3.615231e+01 lineto -7.394265e+01 3.623555e+01 lineto -7.407573e+01 3.753443e+01 lineto -7.69933e+01 3.744996e+01 lineto -closepath -gsave -7.116573e-01 7.116573e-01 8.895717e-01 setrgbcolor -fill -grestore -newpath -7.69933e+01 3.744996e+01 moveto -7.681744e+01 3.615231e+01 lineto -7.394265e+01 3.623555e+01 lineto -7.407573e+01 3.753443e+01 lineto -7.69933e+01 3.744996e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.715782e+01 3.87557e+01 moveto -7.69933e+01 3.744996e+01 lineto -7.407573e+01 3.753443e+01 lineto -7.420023e+01 3.884133e+01 lineto -7.715782e+01 3.87557e+01 lineto -closepath -gsave -7.116751e-01 7.116751e-01 8.895939e-01 setrgbcolor -fill -grestore -newpath -7.715782e+01 3.87557e+01 moveto -7.69933e+01 3.744996e+01 lineto -7.407573e+01 3.753443e+01 lineto -7.420023e+01 3.884133e+01 lineto -7.715782e+01 3.87557e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.731082e+01 4.00683e+01 moveto -7.715782e+01 3.87557e+01 lineto -7.420023e+01 3.884133e+01 lineto -7.431601e+01 4.015501e+01 lineto -7.731082e+01 4.00683e+01 lineto -closepath -gsave -7.115275e-01 7.115275e-01 8.894094e-01 setrgbcolor -fill -grestore -newpath -7.731082e+01 4.00683e+01 moveto -7.715782e+01 3.87557e+01 lineto -7.420023e+01 3.884133e+01 lineto -7.431601e+01 4.015501e+01 lineto -7.731082e+01 4.00683e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.745216e+01 4.138651e+01 moveto -7.731082e+01 4.00683e+01 lineto -7.431601e+01 4.015501e+01 lineto -7.442297e+01 4.147422e+01 lineto -7.745216e+01 4.138651e+01 lineto -closepath -gsave -7.112145e-01 7.112145e-01 8.890181e-01 setrgbcolor -fill -grestore -newpath -7.745216e+01 4.138651e+01 moveto -7.731082e+01 4.00683e+01 lineto -7.431601e+01 4.015501e+01 lineto -7.442297e+01 4.147422e+01 lineto -7.745216e+01 4.138651e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.53085e+01 4.330188e+00 moveto -6.5001e+01 4.001005e+00 lineto -6.500067e+01 4.001008e+00 lineto -6.520742e+01 4.331148e+00 lineto -6.53085e+01 4.330188e+00 lineto -closepath -gsave -6.116218e-01 6.116218e-01 7.645273e-01 setrgbcolor -fill -grestore -newpath -6.53085e+01 4.330188e+00 moveto -6.5001e+01 4.001005e+00 lineto -6.500067e+01 4.001008e+00 lineto -6.520742e+01 4.331148e+00 lineto -6.53085e+01 4.330188e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.56157e+01 4.698825e+00 moveto -6.53085e+01 4.330188e+00 lineto -6.520742e+01 4.331148e+00 lineto -6.541398e+01 4.700739e+00 lineto -6.56157e+01 4.698825e+00 lineto -closepath -gsave -6.168772e-01 6.168772e-01 7.710965e-01 setrgbcolor -fill -grestore -newpath -6.56157e+01 4.698825e+00 moveto -6.53085e+01 4.330188e+00 lineto -6.520742e+01 4.331148e+00 lineto -6.541398e+01 4.700739e+00 lineto -6.56157e+01 4.698825e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.592233e+01 5.106566e+00 moveto -6.56157e+01 4.698825e+00 lineto -6.541398e+01 4.700739e+00 lineto -6.562014e+01 5.109434e+00 lineto -6.592233e+01 5.106566e+00 lineto -closepath -gsave -6.220749e-01 6.220749e-01 7.775937e-01 setrgbcolor -fill -grestore -newpath -6.592233e+01 5.106566e+00 moveto -6.56157e+01 4.698825e+00 lineto -6.541398e+01 4.700739e+00 lineto -6.562014e+01 5.109434e+00 lineto -6.592233e+01 5.106566e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.622808e+01 5.553026e+00 moveto -6.592233e+01 5.106566e+00 lineto -6.562014e+01 5.109434e+00 lineto -6.582572e+01 5.556844e+00 lineto -6.622808e+01 5.553026e+00 lineto -closepath -gsave -6.272076e-01 6.272076e-01 7.840095e-01 setrgbcolor -fill -grestore -newpath -6.622808e+01 5.553026e+00 moveto -6.592233e+01 5.106566e+00 lineto -6.562014e+01 5.109434e+00 lineto -6.582572e+01 5.556844e+00 lineto -6.622808e+01 5.553026e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.653267e+01 6.037781e+00 moveto -6.622808e+01 5.553026e+00 lineto -6.582572e+01 5.556844e+00 lineto -6.603051e+01 6.042546e+00 lineto -6.653267e+01 6.037781e+00 lineto -closepath -gsave -6.322678e-01 6.322678e-01 7.903348e-01 setrgbcolor -fill -grestore -newpath -6.653267e+01 6.037781e+00 moveto -6.622808e+01 5.553026e+00 lineto -6.582572e+01 5.556844e+00 lineto -6.603051e+01 6.042546e+00 lineto -6.653267e+01 6.037781e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.68358e+01 6.560372e+00 moveto -6.653267e+01 6.037781e+00 lineto -6.603051e+01 6.042546e+00 lineto -6.623433e+01 6.56608e+00 lineto -6.68358e+01 6.560372e+00 lineto -closepath -gsave -6.372485e-01 6.372485e-01 7.965607e-01 setrgbcolor -fill -grestore -newpath -6.68358e+01 6.560372e+00 moveto -6.653267e+01 6.037781e+00 lineto -6.603051e+01 6.042546e+00 lineto -6.623433e+01 6.56608e+00 lineto -6.68358e+01 6.560372e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.71372e+01 7.120306e+00 moveto -6.68358e+01 6.560372e+00 lineto -6.623433e+01 6.56608e+00 lineto -6.643698e+01 7.12695e+00 lineto -6.71372e+01 7.120306e+00 lineto -closepath -gsave -6.421428e-01 6.421428e-01 8.026785e-01 setrgbcolor -fill -grestore -newpath -6.71372e+01 7.120306e+00 moveto -6.68358e+01 6.560372e+00 lineto -6.623433e+01 6.56608e+00 lineto -6.643698e+01 7.12695e+00 lineto -6.71372e+01 7.120306e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.743658e+01 7.717051e+00 moveto -6.71372e+01 7.120306e+00 lineto -6.643698e+01 7.12695e+00 lineto -6.663827e+01 7.724626e+00 lineto -6.743658e+01 7.717051e+00 lineto -closepath -gsave -6.46944e-01 6.46944e-01 8.0868e-01 setrgbcolor -fill -grestore -newpath -6.743658e+01 7.717051e+00 moveto -6.71372e+01 7.120306e+00 lineto -6.643698e+01 7.12695e+00 lineto -6.663827e+01 7.724626e+00 lineto -6.743658e+01 7.717051e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.773364e+01 8.350042e+00 moveto -6.743658e+01 7.717051e+00 lineto -6.663827e+01 7.724626e+00 lineto -6.683801e+01 8.358541e+00 lineto -6.773364e+01 8.350042e+00 lineto -closepath -gsave -6.516458e-01 6.516458e-01 8.145572e-01 setrgbcolor -fill -grestore -newpath -6.773364e+01 8.350042e+00 moveto -6.743658e+01 7.717051e+00 lineto -6.663827e+01 7.724626e+00 lineto -6.683801e+01 8.358541e+00 lineto -6.773364e+01 8.350042e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.802812e+01 9.018681e+00 moveto -6.773364e+01 8.350042e+00 lineto -6.683801e+01 8.358541e+00 lineto -6.7036e+01 9.028096e+00 lineto -6.802812e+01 9.018681e+00 lineto -closepath -gsave -6.56242e-01 6.56242e-01 8.203024e-01 setrgbcolor -fill -grestore -newpath -6.802812e+01 9.018681e+00 moveto -6.773364e+01 8.350042e+00 lineto -6.683801e+01 8.358541e+00 lineto -6.7036e+01 9.028096e+00 lineto -6.802812e+01 9.018681e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.831974e+01 9.722335e+00 moveto -6.802812e+01 9.018681e+00 lineto -6.7036e+01 9.028096e+00 lineto -6.723208e+01 9.732656e+00 lineto -6.831974e+01 9.722335e+00 lineto -closepath -gsave -6.607267e-01 6.607267e-01 8.259084e-01 setrgbcolor -fill -grestore -newpath -6.831974e+01 9.722335e+00 moveto -6.802812e+01 9.018681e+00 lineto -6.7036e+01 9.028096e+00 lineto -6.723208e+01 9.732656e+00 lineto -6.831974e+01 9.722335e+00 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.86082e+01 1.046034e+01 moveto -6.831974e+01 9.722335e+00 lineto -6.723208e+01 9.732656e+00 lineto -6.742603e+01 1.047155e+01 lineto -6.86082e+01 1.046034e+01 lineto -closepath -gsave -6.650944e-01 6.650944e-01 8.31368e-01 setrgbcolor -fill -grestore -newpath -6.86082e+01 1.046034e+01 moveto -6.831974e+01 9.722335e+00 lineto -6.723208e+01 9.732656e+00 lineto -6.742603e+01 1.047155e+01 lineto -6.86082e+01 1.046034e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.889326e+01 1.123199e+01 moveto -6.86082e+01 1.046034e+01 lineto -6.742603e+01 1.047155e+01 lineto -6.761769e+01 1.124409e+01 lineto -6.889326e+01 1.123199e+01 lineto -closepath -gsave -6.693398e-01 6.693398e-01 8.366748e-01 setrgbcolor -fill -grestore -newpath -6.889326e+01 1.123199e+01 moveto -6.86082e+01 1.046034e+01 lineto -6.742603e+01 1.047155e+01 lineto -6.761769e+01 1.124409e+01 lineto -6.889326e+01 1.123199e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.917462e+01 1.203656e+01 moveto -6.889326e+01 1.123199e+01 lineto -6.761769e+01 1.124409e+01 lineto -6.780687e+01 1.204954e+01 lineto -6.917462e+01 1.203656e+01 lineto -closepath -gsave -6.734579e-01 6.734579e-01 8.418224e-01 setrgbcolor -fill -grestore -newpath -6.917462e+01 1.203656e+01 moveto -6.889326e+01 1.123199e+01 lineto -6.761769e+01 1.124409e+01 lineto -6.780687e+01 1.204954e+01 lineto -6.917462e+01 1.203656e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.945204e+01 1.287328e+01 moveto -6.917462e+01 1.203656e+01 lineto -6.780687e+01 1.204954e+01 lineto -6.79934e+01 1.288712e+01 lineto -6.945204e+01 1.287328e+01 lineto -closepath -gsave -6.77444e-01 6.77444e-01 8.46805e-01 setrgbcolor -fill -grestore -newpath -6.945204e+01 1.287328e+01 moveto -6.917462e+01 1.203656e+01 lineto -6.780687e+01 1.204954e+01 lineto -6.79934e+01 1.288712e+01 lineto -6.945204e+01 1.287328e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.972524e+01 1.374137e+01 moveto -6.945204e+01 1.287328e+01 lineto -6.79934e+01 1.288712e+01 lineto -6.817709e+01 1.375606e+01 lineto -6.972524e+01 1.374137e+01 lineto -closepath -gsave -6.812936e-01 6.812936e-01 8.516169e-01 setrgbcolor -fill -grestore -newpath -6.972524e+01 1.374137e+01 moveto -6.945204e+01 1.287328e+01 lineto -6.79934e+01 1.288712e+01 lineto -6.817709e+01 1.375606e+01 lineto -6.972524e+01 1.374137e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -6.999396e+01 1.464001e+01 moveto -6.972524e+01 1.374137e+01 lineto -6.817709e+01 1.375606e+01 lineto -6.835777e+01 1.465553e+01 lineto -6.999396e+01 1.464001e+01 lineto -closepath -gsave -6.850025e-01 6.850025e-01 8.562531e-01 setrgbcolor -fill -grestore -newpath -6.999396e+01 1.464001e+01 moveto -6.972524e+01 1.374137e+01 lineto -6.817709e+01 1.375606e+01 lineto -6.835777e+01 1.465553e+01 lineto -6.999396e+01 1.464001e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.025796e+01 1.556833e+01 moveto -6.999396e+01 1.464001e+01 lineto -6.835777e+01 1.465553e+01 lineto -6.853527e+01 1.558468e+01 lineto -7.025796e+01 1.556833e+01 lineto -closepath -gsave -6.885669e-01 6.885669e-01 8.607086e-01 setrgbcolor -fill -grestore -newpath -7.025796e+01 1.556833e+01 moveto -6.999396e+01 1.464001e+01 lineto -6.835777e+01 1.465553e+01 lineto -6.853527e+01 1.558468e+01 lineto -7.025796e+01 1.556833e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.051698e+01 1.652547e+01 moveto -7.025796e+01 1.556833e+01 lineto -6.853527e+01 1.558468e+01 lineto -6.870943e+01 1.654262e+01 lineto -7.051698e+01 1.652547e+01 lineto -closepath -gsave -6.919832e-01 6.919832e-01 8.64979e-01 setrgbcolor -fill -grestore -newpath -7.051698e+01 1.652547e+01 moveto -7.025796e+01 1.556833e+01 lineto -6.853527e+01 1.558468e+01 lineto -6.870943e+01 1.654262e+01 lineto -7.051698e+01 1.652547e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.077077e+01 1.751052e+01 moveto -7.051698e+01 1.652547e+01 lineto -6.870943e+01 1.654262e+01 lineto -6.888007e+01 1.752846e+01 lineto -7.077077e+01 1.751052e+01 lineto -closepath -gsave -6.952481e-01 6.952481e-01 8.690601e-01 setrgbcolor -fill -grestore -newpath -7.077077e+01 1.751052e+01 moveto -7.051698e+01 1.652547e+01 lineto -6.870943e+01 1.654262e+01 lineto -6.888007e+01 1.752846e+01 lineto -7.077077e+01 1.751052e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.10191e+01 1.852254e+01 moveto -7.077077e+01 1.751052e+01 lineto -6.888007e+01 1.752846e+01 lineto -6.904704e+01 1.854125e+01 lineto -7.10191e+01 1.852254e+01 lineto -closepath -gsave -6.983584e-01 6.983584e-01 8.72948e-01 setrgbcolor -fill -grestore -newpath -7.10191e+01 1.852254e+01 moveto -7.077077e+01 1.751052e+01 lineto -6.888007e+01 1.752846e+01 lineto -6.904704e+01 1.854125e+01 lineto -7.10191e+01 1.852254e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.126174e+01 1.956057e+01 moveto -7.10191e+01 1.852254e+01 lineto -6.904704e+01 1.854125e+01 lineto -6.921017e+01 1.958004e+01 lineto -7.126174e+01 1.956057e+01 lineto -closepath -gsave -7.013113e-01 7.013113e-01 8.766391e-01 setrgbcolor -fill -grestore -newpath -7.126174e+01 1.956057e+01 moveto -7.10191e+01 1.852254e+01 lineto -6.904704e+01 1.854125e+01 lineto -6.921017e+01 1.958004e+01 lineto -7.126174e+01 1.956057e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.149844e+01 2.062364e+01 moveto -7.126174e+01 1.956057e+01 lineto -6.921017e+01 1.958004e+01 lineto -6.936933e+01 2.064384e+01 lineto -7.149844e+01 2.062364e+01 lineto -closepath -gsave -7.041043e-01 7.041043e-01 8.801304e-01 setrgbcolor -fill -grestore -newpath -7.149844e+01 2.062364e+01 moveto -7.126174e+01 1.956057e+01 lineto -6.921017e+01 1.958004e+01 lineto -6.936933e+01 2.064384e+01 lineto -7.149844e+01 2.062364e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.172899e+01 2.171074e+01 moveto -7.149844e+01 2.062364e+01 lineto -6.936933e+01 2.064384e+01 lineto -6.952434e+01 2.173166e+01 lineto -7.172899e+01 2.171074e+01 lineto -closepath -gsave -7.067349e-01 7.067349e-01 8.834187e-01 setrgbcolor -fill -grestore -newpath -7.172899e+01 2.171074e+01 moveto -7.149844e+01 2.062364e+01 lineto -6.936933e+01 2.064384e+01 lineto -6.952434e+01 2.173166e+01 lineto -7.172899e+01 2.171074e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.195317e+01 2.282083e+01 moveto -7.172899e+01 2.171074e+01 lineto -6.952434e+01 2.173166e+01 lineto -6.967507e+01 2.284245e+01 lineto -7.195317e+01 2.282083e+01 lineto -closepath -gsave -7.092011e-01 7.092011e-01 8.865014e-01 setrgbcolor -fill -grestore -newpath -7.195317e+01 2.282083e+01 moveto -7.172899e+01 2.171074e+01 lineto -6.952434e+01 2.173166e+01 lineto -6.967507e+01 2.284245e+01 lineto -7.195317e+01 2.282083e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.217077e+01 2.395287e+01 moveto -7.195317e+01 2.282083e+01 lineto -6.967507e+01 2.284245e+01 lineto -6.982138e+01 2.397516e+01 lineto -7.217077e+01 2.395287e+01 lineto -closepath -gsave -7.115009e-01 7.115009e-01 8.893762e-01 setrgbcolor -fill -grestore -newpath -7.217077e+01 2.395287e+01 moveto -7.195317e+01 2.282083e+01 lineto -6.967507e+01 2.284245e+01 lineto -6.982138e+01 2.397516e+01 lineto -7.217077e+01 2.395287e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.238157e+01 2.510578e+01 moveto -7.217077e+01 2.395287e+01 lineto -6.982138e+01 2.397516e+01 lineto -6.996311e+01 2.512873e+01 lineto -7.238157e+01 2.510578e+01 lineto -closepath -gsave -7.136326e-01 7.136326e-01 8.920408e-01 setrgbcolor -fill -grestore -newpath -7.238157e+01 2.510578e+01 moveto -7.217077e+01 2.395287e+01 lineto -6.982138e+01 2.397516e+01 lineto -6.996311e+01 2.512873e+01 lineto -7.238157e+01 2.510578e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.258539e+01 2.627848e+01 moveto -7.238157e+01 2.510578e+01 lineto -6.996311e+01 2.512873e+01 lineto -7.010016e+01 2.630206e+01 lineto -7.258539e+01 2.627848e+01 lineto -closepath -gsave -7.155946e-01 7.155946e-01 8.944932e-01 setrgbcolor -fill -grestore -newpath -7.258539e+01 2.627848e+01 moveto -7.238157e+01 2.510578e+01 lineto -6.996311e+01 2.512873e+01 lineto -7.010016e+01 2.630206e+01 lineto -7.258539e+01 2.627848e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.278203e+01 2.746984e+01 moveto -7.258539e+01 2.627848e+01 lineto -7.010016e+01 2.630206e+01 lineto -7.023237e+01 2.749404e+01 lineto -7.278203e+01 2.746984e+01 lineto -closepath -gsave -7.173855e-01 7.173855e-01 8.967319e-01 setrgbcolor -fill -grestore -newpath -7.278203e+01 2.746984e+01 moveto -7.258539e+01 2.627848e+01 lineto -7.010016e+01 2.630206e+01 lineto -7.023237e+01 2.749404e+01 lineto -7.278203e+01 2.746984e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.29713e+01 2.867876e+01 moveto -7.278203e+01 2.746984e+01 lineto -7.023237e+01 2.749404e+01 lineto -7.035962e+01 2.870354e+01 lineto -7.29713e+01 2.867876e+01 lineto -closepath -gsave -7.190042e-01 7.190042e-01 8.987552e-01 setrgbcolor -fill -grestore -newpath -7.29713e+01 2.867876e+01 moveto -7.278203e+01 2.746984e+01 lineto -7.023237e+01 2.749404e+01 lineto -7.035962e+01 2.870354e+01 lineto -7.29713e+01 2.867876e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.315302e+01 2.990407e+01 moveto -7.29713e+01 2.867876e+01 lineto -7.035962e+01 2.870354e+01 lineto -7.048181e+01 2.992942e+01 lineto -7.315302e+01 2.990407e+01 lineto -closepath -gsave -7.204495e-01 7.204495e-01 9.005618e-01 setrgbcolor -fill -grestore -newpath -7.315302e+01 2.990407e+01 moveto -7.29713e+01 2.867876e+01 lineto -7.035962e+01 2.870354e+01 lineto -7.048181e+01 2.992942e+01 lineto -7.315302e+01 2.990407e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.332702e+01 3.114462e+01 moveto -7.315302e+01 2.990407e+01 lineto -7.048181e+01 2.992942e+01 lineto -7.05988e+01 3.117051e+01 lineto -7.332702e+01 3.114462e+01 lineto -closepath -gsave -7.217206e-01 7.217206e-01 9.021507e-01 setrgbcolor -fill -grestore -newpath -7.332702e+01 3.114462e+01 moveto -7.315302e+01 2.990407e+01 lineto -7.048181e+01 2.992942e+01 lineto -7.05988e+01 3.117051e+01 lineto -7.332702e+01 3.114462e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.349314e+01 3.239924e+01 moveto -7.332702e+01 3.114462e+01 lineto -7.05988e+01 3.117051e+01 lineto -7.071049e+01 3.242565e+01 lineto -7.349314e+01 3.239924e+01 lineto -closepath -gsave -7.228166e-01 7.228166e-01 9.035208e-01 setrgbcolor -fill -grestore -newpath -7.349314e+01 3.239924e+01 moveto -7.332702e+01 3.114462e+01 lineto -7.05988e+01 3.117051e+01 lineto -7.071049e+01 3.242565e+01 lineto -7.349314e+01 3.239924e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.365121e+01 3.366674e+01 moveto -7.349314e+01 3.239924e+01 lineto -7.071049e+01 3.242565e+01 lineto -7.081678e+01 3.369363e+01 lineto -7.365121e+01 3.366674e+01 lineto -closepath -gsave -7.23737e-01 7.23737e-01 9.046713e-01 setrgbcolor -fill -grestore -newpath -7.365121e+01 3.366674e+01 moveto -7.349314e+01 3.239924e+01 lineto -7.071049e+01 3.242565e+01 lineto -7.081678e+01 3.369363e+01 lineto -7.365121e+01 3.366674e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.38011e+01 3.494591e+01 moveto -7.365121e+01 3.366674e+01 lineto -7.081678e+01 3.369363e+01 lineto -7.091755e+01 3.497327e+01 lineto -7.38011e+01 3.494591e+01 lineto -closepath -gsave -7.244812e-01 7.244812e-01 9.056015e-01 setrgbcolor -fill -grestore -newpath -7.38011e+01 3.494591e+01 moveto -7.365121e+01 3.366674e+01 lineto -7.081678e+01 3.369363e+01 lineto -7.091755e+01 3.497327e+01 lineto -7.38011e+01 3.494591e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.394265e+01 3.623555e+01 moveto -7.38011e+01 3.494591e+01 lineto -7.091755e+01 3.497327e+01 lineto -7.101273e+01 3.626335e+01 lineto -7.394265e+01 3.623555e+01 lineto -closepath -gsave -7.250488e-01 7.250488e-01 9.06311e-01 setrgbcolor -fill -grestore -newpath -7.394265e+01 3.623555e+01 moveto -7.38011e+01 3.494591e+01 lineto -7.091755e+01 3.497327e+01 lineto -7.101273e+01 3.626335e+01 lineto -7.394265e+01 3.623555e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.407573e+01 3.753443e+01 moveto -7.394265e+01 3.623555e+01 lineto -7.101273e+01 3.626335e+01 lineto -7.110221e+01 3.756265e+01 lineto -7.407573e+01 3.753443e+01 lineto -closepath -gsave -7.254395e-01 7.254395e-01 9.067993e-01 setrgbcolor -fill -grestore -newpath -7.407573e+01 3.753443e+01 moveto -7.394265e+01 3.623555e+01 lineto -7.101273e+01 3.626335e+01 lineto -7.110221e+01 3.756265e+01 lineto -7.407573e+01 3.753443e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.420023e+01 3.884133e+01 moveto -7.407573e+01 3.753443e+01 lineto -7.110221e+01 3.756265e+01 lineto -7.118591e+01 3.886993e+01 lineto -7.420023e+01 3.884133e+01 lineto -closepath -gsave -7.25653e-01 7.25653e-01 9.070663e-01 setrgbcolor -fill -grestore -newpath -7.420023e+01 3.884133e+01 moveto -7.407573e+01 3.753443e+01 lineto -7.110221e+01 3.756265e+01 lineto -7.118591e+01 3.886993e+01 lineto -7.420023e+01 3.884133e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.431601e+01 4.015501e+01 moveto -7.420023e+01 3.884133e+01 lineto -7.118591e+01 3.886993e+01 lineto -7.126376e+01 4.018397e+01 lineto -7.431601e+01 4.015501e+01 lineto -closepath -gsave -7.256893e-01 7.256893e-01 9.071116e-01 setrgbcolor -fill -grestore -newpath -7.431601e+01 4.015501e+01 moveto -7.420023e+01 3.884133e+01 lineto -7.118591e+01 3.886993e+01 lineto -7.126376e+01 4.018397e+01 lineto -7.431601e+01 4.015501e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -newpath -7.442297e+01 4.147422e+01 moveto -7.431601e+01 4.015501e+01 lineto -7.126376e+01 4.018397e+01 lineto -7.133568e+01 4.150352e+01 lineto -7.442297e+01 4.147422e+01 lineto -closepath -gsave -7.255484e-01 7.255484e-01 9.069355e-01 setrgbcolor -fill -grestore -newpath -7.442297e+01 4.147422e+01 moveto -7.431601e+01 4.015501e+01 lineto -7.126376e+01 4.018397e+01 lineto -7.133568e+01 4.150352e+01 lineto -7.442297e+01 4.147422e+01 lineto -closepath -gsave -5.0e-01 5.0e-01 5.0e-01 setrgbcolor -stroke -grestore -1.0e-01 setlinewidth -newpath -2.649044e+01 2.627254e+01 moveto -2.705514e+01 2.51388e+01 lineto -2.740169e+01 2.445721e+01 lineto -2.684215e+01 2.558081e+01 lineto -2.649044e+01 2.627254e+01 lineto -closepath -gsave -4.339654e-01 4.339654e-01 5.424567e-01 setrgbcolor -fill -grestore -newpath -2.59622e+01 2.742496e+01 moveto -2.649044e+01 2.627254e+01 lineto -2.684215e+01 2.558081e+01 lineto -2.631874e+01 2.672374e+01 lineto -2.59622e+01 2.742496e+01 lineto -closepath -gsave -4.341823e-01 4.341823e-01 5.427278e-01 setrgbcolor -fill -grestore -newpath -2.547093e+01 2.859496e+01 moveto -2.59622e+01 2.742496e+01 lineto -2.631874e+01 2.672374e+01 lineto -2.583195e+01 2.788492e+01 lineto -2.547093e+01 2.859496e+01 lineto -closepath -gsave -4.344716e-01 4.344716e-01 5.430895e-01 setrgbcolor -fill -grestore -newpath -2.501708e+01 2.978145e+01 moveto -2.547093e+01 2.859496e+01 lineto -2.583195e+01 2.788492e+01 lineto -2.538225e+01 2.906325e+01 lineto -2.501708e+01 2.978145e+01 lineto -closepath -gsave -4.348339e-01 4.348339e-01 5.435424e-01 setrgbcolor -fill -grestore -newpath -3.148563e+01 1.817978e+01 moveto -3.228138e+01 1.722015e+01 lineto -3.278468e+01 1.664198e+01 lineto -3.200117e+01 1.758755e+01 lineto -3.148563e+01 1.817978e+01 lineto -closepath -gsave -4.42271e-01 4.42271e-01 5.528387e-01 setrgbcolor -fill -grestore -newpath -3.072161e+01 1.916575e+01 moveto -3.148563e+01 1.817978e+01 lineto -3.200117e+01 1.758755e+01 lineto -3.12489e+01 1.856001e+01 lineto -3.072161e+01 1.916575e+01 lineto -closepath -gsave -4.421493e-01 4.421493e-01 5.526866e-01 setrgbcolor -fill -grestore -newpath -2.999004e+01 2.017713e+01 moveto -3.072161e+01 1.916575e+01 lineto -3.12489e+01 1.856001e+01 lineto -3.052858e+01 1.955846e+01 lineto -2.999004e+01 2.017713e+01 lineto -closepath -gsave -4.420983e-01 4.420983e-01 5.526228e-01 setrgbcolor -fill -grestore -newpath -2.929162e+01 2.121295e+01 moveto -2.999004e+01 2.017713e+01 lineto -3.052858e+01 1.955846e+01 lineto -2.984091e+01 2.058195e+01 lineto -2.929162e+01 2.121295e+01 lineto -closepath -gsave -4.421178e-01 4.421178e-01 5.526472e-01 setrgbcolor -fill -grestore -newpath -2.862701e+01 2.227225e+01 moveto -2.929162e+01 2.121295e+01 lineto -2.984091e+01 2.058195e+01 lineto -2.918652e+01 2.16295e+01 lineto -2.862701e+01 2.227225e+01 lineto -closepath -gsave -4.422078e-01 4.422078e-01 5.527598e-01 setrgbcolor -fill -grestore -newpath -2.799683e+01 2.335401e+01 moveto -2.862701e+01 2.227225e+01 lineto -2.918652e+01 2.16295e+01 lineto -2.856604e+01 2.270012e+01 lineto -2.799683e+01 2.335401e+01 lineto -closepath -gsave -4.423685e-01 4.423685e-01 5.529606e-01 setrgbcolor -fill -grestore -newpath -2.740169e+01 2.445721e+01 moveto -2.799683e+01 2.335401e+01 lineto -2.856604e+01 2.270012e+01 lineto -2.798006e+01 2.37928e+01 lineto -2.740169e+01 2.445721e+01 lineto -closepath -gsave -4.426e-01 4.426e-01 5.5325e-01 setrgbcolor -fill -grestore -newpath -2.684215e+01 2.558081e+01 moveto -2.740169e+01 2.445721e+01 lineto -2.798006e+01 2.37928e+01 lineto -2.742912e+01 2.490651e+01 lineto -2.684215e+01 2.558081e+01 lineto -closepath -gsave -4.429026e-01 4.429026e-01 5.536283e-01 setrgbcolor -fill -grestore -newpath -2.631874e+01 2.672374e+01 moveto -2.684215e+01 2.558081e+01 lineto -2.742912e+01 2.490651e+01 lineto -2.691376e+01 2.60402e+01 lineto -2.631874e+01 2.672374e+01 lineto -closepath -gsave -4.432767e-01 4.432767e-01 5.540959e-01 setrgbcolor -fill -grestore -newpath -2.583195e+01 2.788492e+01 moveto -2.631874e+01 2.672374e+01 lineto -2.691376e+01 2.60402e+01 lineto -2.643446e+01 2.719278e+01 lineto -2.583195e+01 2.788492e+01 lineto -closepath -gsave -4.437226e-01 4.437226e-01 5.546532e-01 setrgbcolor -fill -grestore -newpath -2.538225e+01 2.906325e+01 moveto -2.583195e+01 2.788492e+01 lineto -2.643446e+01 2.719278e+01 lineto -2.599168e+01 2.836316e+01 lineto -2.538225e+01 2.906325e+01 lineto -closepath -gsave -4.442408e-01 4.442408e-01 5.55301e-01 setrgbcolor -fill -grestore -newpath -3.714395e+01 1.234806e+01 moveto -3.809836e+01 1.158175e+01 lineto -3.86845e+01 1.111441e+01 lineto -3.775089e+01 1.186413e+01 lineto -3.714395e+01 1.234806e+01 lineto -closepath -gsave -4.519955e-01 4.519955e-01 5.649944e-01 setrgbcolor -fill -grestore -newpath -3.621591e+01 1.314623e+01 moveto -3.714395e+01 1.234806e+01 lineto -3.775089e+01 1.186413e+01 lineto -3.684307e+01 1.264618e+01 lineto -3.621591e+01 1.314623e+01 lineto -closepath -gsave -4.51672e-01 4.51672e-01 5.645901e-01 setrgbcolor -fill -grestore -newpath -3.531513e+01 1.397551e+01 moveto -3.621591e+01 1.314623e+01 lineto -3.684307e+01 1.264618e+01 lineto -3.596191e+01 1.345981e+01 lineto -3.531513e+01 1.397551e+01 lineto -closepath -gsave -4.514167e-01 4.514167e-01 5.642709e-01 setrgbcolor -fill -grestore -newpath -3.444245e+01 1.48351e+01 moveto -3.531513e+01 1.397551e+01 lineto -3.596191e+01 1.345981e+01 lineto -3.510824e+01 1.430425e+01 lineto -3.444245e+01 1.48351e+01 lineto -closepath -gsave -4.512293e-01 4.512293e-01 5.640367e-01 setrgbcolor -fill -grestore -newpath -3.35987e+01 1.572421e+01 moveto -3.444245e+01 1.48351e+01 lineto -3.510824e+01 1.430425e+01 lineto -3.428288e+01 1.517869e+01 lineto -3.35987e+01 1.572421e+01 lineto -closepath -gsave -4.511098e-01 4.511098e-01 5.638872e-01 setrgbcolor -fill -grestore -newpath -3.278468e+01 1.664198e+01 moveto -3.35987e+01 1.572421e+01 lineto -3.428288e+01 1.517869e+01 lineto -3.34866e+01 1.608232e+01 lineto -3.278468e+01 1.664198e+01 lineto -closepath -gsave -4.510579e-01 4.510579e-01 5.638224e-01 setrgbcolor -fill -grestore -newpath -3.200117e+01 1.758755e+01 moveto -3.278468e+01 1.664198e+01 lineto -3.34866e+01 1.608232e+01 lineto -3.272016e+01 1.701428e+01 lineto -3.200117e+01 1.758755e+01 lineto -closepath -gsave -4.510737e-01 4.510737e-01 5.638421e-01 setrgbcolor -fill -grestore -newpath -3.12489e+01 1.856001e+01 moveto -3.200117e+01 1.758755e+01 lineto -3.272016e+01 1.701428e+01 lineto -3.198428e+01 1.797368e+01 lineto -3.12489e+01 1.856001e+01 lineto -closepath -gsave -4.511572e-01 4.511572e-01 5.639465e-01 setrgbcolor -fill -grestore -newpath -3.052858e+01 1.955846e+01 moveto -3.12489e+01 1.856001e+01 lineto -3.198428e+01 1.797368e+01 lineto -3.127966e+01 1.895961e+01 lineto -3.052858e+01 1.955846e+01 lineto -closepath -gsave -4.513084e-01 4.513084e-01 5.641355e-01 setrgbcolor -fill -grestore -newpath -2.984091e+01 2.058195e+01 moveto -3.052858e+01 1.955846e+01 lineto -3.127966e+01 1.895961e+01 lineto -3.060696e+01 1.997115e+01 lineto -2.984091e+01 2.058195e+01 lineto -closepath -gsave -4.515274e-01 4.515274e-01 5.644092e-01 setrgbcolor -fill -grestore -newpath -2.918652e+01 2.16295e+01 moveto -2.984091e+01 2.058195e+01 lineto -3.060696e+01 1.997115e+01 lineto -2.996683e+01 2.100733e+01 lineto -2.918652e+01 2.16295e+01 lineto -closepath -gsave -4.518143e-01 4.518143e-01 5.647679e-01 setrgbcolor -fill -grestore -newpath -2.856604e+01 2.270012e+01 moveto -2.918652e+01 2.16295e+01 lineto -2.996683e+01 2.100733e+01 lineto -2.935987e+01 2.206717e+01 lineto -2.856604e+01 2.270012e+01 lineto -closepath -gsave -4.521694e-01 4.521694e-01 5.652118e-01 setrgbcolor -fill -grestore -newpath -2.798006e+01 2.37928e+01 moveto -2.856604e+01 2.270012e+01 lineto -2.935987e+01 2.206717e+01 lineto -2.878666e+01 2.314968e+01 lineto -2.798006e+01 2.37928e+01 lineto -closepath -gsave -4.525929e-01 4.525929e-01 5.657411e-01 setrgbcolor -fill -grestore -newpath -2.742912e+01 2.490651e+01 moveto -2.798006e+01 2.37928e+01 lineto -2.878666e+01 2.314968e+01 lineto -2.824773e+01 2.425382e+01 lineto -2.742912e+01 2.490651e+01 lineto -closepath -gsave -4.53085e-01 4.53085e-01 5.663562e-01 setrgbcolor -fill -grestore -newpath -2.691376e+01 2.60402e+01 moveto -2.742912e+01 2.490651e+01 lineto -2.824773e+01 2.425382e+01 lineto -2.77436e+01 2.537855e+01 lineto -2.691376e+01 2.60402e+01 lineto -closepath -gsave -4.536459e-01 4.536459e-01 5.670574e-01 setrgbcolor -fill -grestore -newpath -2.643446e+01 2.719278e+01 moveto -2.691376e+01 2.60402e+01 lineto -2.77436e+01 2.537855e+01 lineto -2.727474e+01 2.65228e+01 lineto -2.643446e+01 2.719278e+01 lineto -closepath -gsave -4.542761e-01 4.542761e-01 5.678451e-01 setrgbcolor -fill -grestore -newpath -2.599168e+01 2.836316e+01 moveto -2.643446e+01 2.719278e+01 lineto -2.727474e+01 2.65228e+01 lineto -2.68416e+01 2.768549e+01 lineto -2.599168e+01 2.836316e+01 lineto -closepath -gsave -4.549758e-01 4.549758e-01 5.687198e-01 setrgbcolor -fill -grestore -newpath -4.062558e+01 9.714719e+00 moveto -4.16312e+01 9.066085e+00 lineto -4.229578e+01 8.667361e+00 lineto -4.131876e+01 9.298837e+00 lineto -4.062558e+01 9.714719e+00 lineto -closepath -gsave -4.607496e-01 4.607496e-01 5.75937e-01 setrgbcolor -fill -grestore -newpath -3.964304e+01 1.039771e+01 moveto -4.062558e+01 9.714719e+00 lineto -4.131876e+01 9.298837e+00 lineto -4.036416e+01 9.965062e+00 lineto -3.964304e+01 1.039771e+01 lineto -closepath -gsave -4.605057e-01 4.605057e-01 5.756321e-01 setrgbcolor -fill -grestore -newpath -3.86845e+01 1.111441e+01 moveto -3.964304e+01 1.039771e+01 lineto -4.036416e+01 9.965062e+00 lineto -3.943289e+01 1.06654e+01 lineto -3.86845e+01 1.111441e+01 lineto -closepath -gsave -4.603253e-01 4.603253e-01 5.754067e-01 setrgbcolor -fill -grestore -newpath -3.775089e+01 1.186413e+01 moveto -3.86845e+01 1.111441e+01 lineto -3.943289e+01 1.06654e+01 lineto -3.852582e+01 1.13992e+01 lineto -3.775089e+01 1.186413e+01 lineto -closepath -gsave -4.602086e-01 4.602086e-01 5.752607e-01 setrgbcolor -fill -grestore -newpath -3.684307e+01 1.264618e+01 moveto -3.775089e+01 1.186413e+01 lineto -3.852582e+01 1.13992e+01 lineto -3.764382e+01 1.216576e+01 lineto -3.684307e+01 1.264618e+01 lineto -closepath -gsave -4.601553e-01 4.601553e-01 5.751941e-01 setrgbcolor -fill -grestore -newpath -3.596191e+01 1.345981e+01 moveto -3.684307e+01 1.264618e+01 lineto -3.764382e+01 1.216576e+01 lineto -3.678772e+01 1.296435e+01 lineto -3.596191e+01 1.345981e+01 lineto -closepath -gsave -4.601655e-01 4.601655e-01 5.752069e-01 setrgbcolor -fill -grestore -newpath -3.510824e+01 1.430425e+01 moveto -3.596191e+01 1.345981e+01 lineto -3.678772e+01 1.296435e+01 lineto -3.595834e+01 1.379423e+01 lineto -3.510824e+01 1.430425e+01 lineto -closepath -gsave -4.602392e-01 4.602392e-01 5.752989e-01 setrgbcolor -fill -grestore -newpath -3.428288e+01 1.517869e+01 moveto -3.510824e+01 1.430425e+01 lineto -3.595834e+01 1.379423e+01 lineto -3.515644e+01 1.465459e+01 lineto -3.428288e+01 1.517869e+01 lineto -closepath -gsave -4.603763e-01 4.603763e-01 5.754704e-01 setrgbcolor -fill -grestore -newpath -3.34866e+01 1.608232e+01 moveto -3.428288e+01 1.517869e+01 lineto -3.515644e+01 1.465459e+01 lineto -3.438281e+01 1.554463e+01 lineto -3.34866e+01 1.608232e+01 lineto -closepath -gsave -4.605769e-01 4.605769e-01 5.757212e-01 setrgbcolor -fill -grestore -newpath -3.272016e+01 1.701428e+01 moveto -3.34866e+01 1.608232e+01 lineto -3.438281e+01 1.554463e+01 lineto -3.363816e+01 1.646351e+01 lineto -3.272016e+01 1.701428e+01 lineto -closepath -gsave -4.608411e-01 4.608411e-01 5.760514e-01 setrgbcolor -fill -grestore -newpath -3.198428e+01 1.797368e+01 moveto -3.272016e+01 1.701428e+01 lineto -3.363816e+01 1.646351e+01 lineto -3.292321e+01 1.741035e+01 lineto -3.198428e+01 1.797368e+01 lineto -closepath -gsave -4.61169e-01 4.61169e-01 5.764612e-01 setrgbcolor -fill -grestore -newpath -3.127966e+01 1.895961e+01 moveto -3.198428e+01 1.797368e+01 lineto -3.292321e+01 1.741035e+01 lineto -3.223863e+01 1.838427e+01 lineto -3.127966e+01 1.895961e+01 lineto -closepath -gsave -4.615605e-01 4.615605e-01 5.769506e-01 setrgbcolor -fill -grestore -newpath -3.060696e+01 1.997115e+01 moveto -3.127966e+01 1.895961e+01 lineto -3.223863e+01 1.838427e+01 lineto -3.158507e+01 1.938433e+01 lineto -3.060696e+01 1.997115e+01 lineto -closepath -gsave -4.620159e-01 4.620159e-01 5.775199e-01 setrgbcolor -fill -grestore -newpath -2.996683e+01 2.100733e+01 moveto -3.060696e+01 1.997115e+01 lineto -3.158507e+01 1.938433e+01 lineto -3.096314e+01 2.040959e+01 lineto -2.996683e+01 2.100733e+01 lineto -closepath -gsave -4.625352e-01 4.625352e-01 5.78169e-01 setrgbcolor -fill -grestore -newpath -2.935987e+01 2.206717e+01 moveto -2.996683e+01 2.100733e+01 lineto -3.096314e+01 2.040959e+01 lineto -3.037344e+01 2.145907e+01 lineto -2.935987e+01 2.206717e+01 lineto -closepath -gsave -4.631185e-01 4.631185e-01 5.788982e-01 setrgbcolor -fill -grestore -newpath -2.878666e+01 2.314968e+01 moveto -2.935987e+01 2.206717e+01 lineto -3.037344e+01 2.145907e+01 lineto -2.981653e+01 2.25318e+01 lineto -2.878666e+01 2.314968e+01 lineto -closepath -gsave -4.63766e-01 4.63766e-01 5.797076e-01 setrgbcolor -fill -grestore -newpath -2.824773e+01 2.425382e+01 moveto -2.878666e+01 2.314968e+01 lineto -2.981653e+01 2.25318e+01 lineto -2.929293e+01 2.362674e+01 lineto -2.824773e+01 2.425382e+01 lineto -closepath -gsave -4.644778e-01 4.644778e-01 5.805973e-01 setrgbcolor -fill -grestore -newpath -2.77436e+01 2.537855e+01 moveto -2.824773e+01 2.425382e+01 lineto -2.929293e+01 2.362674e+01 lineto -2.880313e+01 2.474287e+01 lineto -2.77436e+01 2.537855e+01 lineto -closepath -gsave -4.65254e-01 4.65254e-01 5.815675e-01 setrgbcolor -fill -grestore -newpath -2.727474e+01 2.65228e+01 moveto -2.77436e+01 2.537855e+01 lineto -2.880313e+01 2.474287e+01 lineto -2.834761e+01 2.587912e+01 lineto -2.727474e+01 2.65228e+01 lineto -closepath -gsave -4.660947e-01 4.660947e-01 5.826184e-01 setrgbcolor -fill -grestore -newpath -2.68416e+01 2.768549e+01 moveto -2.727474e+01 2.65228e+01 lineto -2.834761e+01 2.587912e+01 lineto -2.792679e+01 2.703443e+01 lineto -2.68416e+01 2.768549e+01 lineto -closepath -gsave -4.67e-01 4.67e-01 5.8375e-01 setrgbcolor -fill -grestore -newpath -4.431337e+01 7.511014e+00 moveto -4.535202e+01 6.987238e+00 lineto -4.604828e+01 6.658412e+00 lineto -4.504644e+01 7.164805e+00 lineto -4.431337e+01 7.511014e+00 lineto -closepath -gsave -4.687841e-01 4.687841e-01 5.859801e-01 setrgbcolor -fill -grestore -newpath -4.32943e+01 8.071232e+00 moveto -4.431337e+01 7.511014e+00 lineto -4.504644e+01 7.164805e+00 lineto -4.406348e+01 7.707968e+00 lineto -4.32943e+01 8.071232e+00 lineto -closepath -gsave -4.686898e-01 4.686898e-01 5.858622e-01 setrgbcolor -fill -grestore -newpath -4.229578e+01 8.667361e+00 moveto -4.32943e+01 8.071232e+00 lineto -4.406348e+01 7.707968e+00 lineto -4.310035e+01 8.287386e+00 lineto -4.229578e+01 8.667361e+00 lineto -closepath -gsave -4.686542e-01 4.686542e-01 5.858177e-01 setrgbcolor -fill -grestore -newpath -4.131876e+01 9.298837e+00 moveto -4.229578e+01 8.667361e+00 lineto -4.310035e+01 8.287386e+00 lineto -4.215795e+01 8.90251e+00 lineto -4.131876e+01 9.298837e+00 lineto -closepath -gsave -4.686772e-01 4.686772e-01 5.858465e-01 setrgbcolor -fill -grestore -newpath -4.036416e+01 9.965062e+00 moveto -4.131876e+01 9.298837e+00 lineto -4.215795e+01 8.90251e+00 lineto -4.123718e+01 9.552759e+00 lineto -4.036416e+01 9.965062e+00 lineto -closepath -gsave -4.687588e-01 4.687588e-01 5.859485e-01 setrgbcolor -fill -grestore -newpath -3.943289e+01 1.06654e+01 moveto -4.036416e+01 9.965062e+00 lineto -4.123718e+01 9.552759e+00 lineto -4.03389e+01 1.023752e+01 lineto -3.943289e+01 1.06654e+01 lineto -closepath -gsave -4.688991e-01 4.688991e-01 5.861239e-01 setrgbcolor -fill -grestore -newpath -3.852582e+01 1.13992e+01 moveto -3.943289e+01 1.06654e+01 lineto -4.03389e+01 1.023752e+01 lineto -3.946398e+01 1.095613e+01 lineto -3.852582e+01 1.13992e+01 lineto -closepath -gsave -4.69098e-01 4.69098e-01 5.863725e-01 setrgbcolor -fill -grestore -newpath -3.764382e+01 1.216576e+01 moveto -3.852582e+01 1.13992e+01 lineto -3.946398e+01 1.095613e+01 lineto -3.861324e+01 1.170793e+01 lineto -3.764382e+01 1.216576e+01 lineto -closepath -gsave -4.693556e-01 4.693556e-01 5.866945e-01 setrgbcolor -fill -grestore -newpath -3.678772e+01 1.296435e+01 moveto -3.764382e+01 1.216576e+01 lineto -3.861324e+01 1.170793e+01 lineto -3.778747e+01 1.24922e+01 lineto -3.678772e+01 1.296435e+01 lineto -closepath -gsave -4.696717e-01 4.696717e-01 5.870897e-01 setrgbcolor -fill -grestore -newpath -3.595834e+01 1.379423e+01 moveto -3.678772e+01 1.296435e+01 lineto -3.778747e+01 1.24922e+01 lineto -3.698748e+01 1.330819e+01 lineto -3.595834e+01 1.379423e+01 lineto -closepath -gsave -4.700465e-01 4.700465e-01 5.875582e-01 setrgbcolor -fill -grestore -newpath -3.515644e+01 1.465459e+01 moveto -3.595834e+01 1.379423e+01 lineto -3.698748e+01 1.330819e+01 lineto -3.6214e+01 1.415513e+01 lineto -3.515644e+01 1.465459e+01 lineto -closepath -gsave -4.7048e-01 4.7048e-01 5.880999e-01 setrgbcolor -fill -grestore -newpath -3.438281e+01 1.554463e+01 moveto -3.515644e+01 1.465459e+01 lineto -3.6214e+01 1.415513e+01 lineto -3.546778e+01 1.503223e+01 lineto -3.438281e+01 1.554463e+01 lineto -closepath -gsave -4.70972e-01 4.70972e-01 5.88715e-01 setrgbcolor -fill -grestore -newpath -3.363816e+01 1.646351e+01 moveto -3.438281e+01 1.554463e+01 lineto -3.546778e+01 1.503223e+01 lineto -3.474953e+01 1.593864e+01 lineto -3.363816e+01 1.646351e+01 lineto -closepath -gsave -4.715226e-01 4.715226e-01 5.894033e-01 setrgbcolor -fill -grestore -newpath -3.292321e+01 1.741035e+01 moveto -3.363816e+01 1.646351e+01 lineto -3.474953e+01 1.593864e+01 lineto -3.405991e+01 1.687352e+01 lineto -3.292321e+01 1.741035e+01 lineto -closepath -gsave -4.721319e-01 4.721319e-01 5.901648e-01 setrgbcolor -fill -grestore -newpath -3.223863e+01 1.838427e+01 moveto -3.292321e+01 1.741035e+01 lineto -3.405991e+01 1.687352e+01 lineto -3.339959e+01 1.783598e+01 lineto -3.223863e+01 1.838427e+01 lineto -closepath -gsave -4.727996e-01 4.727996e-01 5.909996e-01 setrgbcolor -fill -grestore -newpath -3.158507e+01 1.938433e+01 moveto -3.223863e+01 1.838427e+01 lineto -3.339959e+01 1.783598e+01 lineto -3.276918e+01 1.88251e+01 lineto -3.158507e+01 1.938433e+01 lineto -closepath -gsave -4.735259e-01 4.735259e-01 5.919074e-01 setrgbcolor -fill -grestore -newpath -3.096314e+01 2.040959e+01 moveto -3.158507e+01 1.938433e+01 lineto -3.276918e+01 1.88251e+01 lineto -3.21693e+01 1.983995e+01 lineto -3.096314e+01 2.040959e+01 lineto -closepath -gsave -4.743106e-01 4.743106e-01 5.928883e-01 setrgbcolor -fill -grestore -newpath -3.037344e+01 2.145907e+01 moveto -3.096314e+01 2.040959e+01 lineto -3.21693e+01 1.983995e+01 lineto -3.16005e+01 2.087957e+01 lineto -3.037344e+01 2.145907e+01 lineto -closepath -gsave -4.751536e-01 4.751536e-01 5.93942e-01 setrgbcolor -fill -grestore -newpath -2.981653e+01 2.25318e+01 moveto -3.037344e+01 2.145907e+01 lineto -3.16005e+01 2.087957e+01 lineto -3.106332e+01 2.194297e+01 lineto -2.981653e+01 2.25318e+01 lineto -closepath -gsave -4.760549e-01 4.760549e-01 5.950686e-01 setrgbcolor -fill -grestore -newpath -2.929293e+01 2.362674e+01 moveto -2.981653e+01 2.25318e+01 lineto -3.106332e+01 2.194297e+01 lineto -3.055827e+01 2.302915e+01 lineto -2.929293e+01 2.362674e+01 lineto -closepath -gsave -4.770142e-01 4.770142e-01 5.962677e-01 setrgbcolor -fill -grestore -newpath -2.880313e+01 2.474287e+01 moveto -2.929293e+01 2.362674e+01 lineto -3.055827e+01 2.302915e+01 lineto -3.008583e+01 2.413708e+01 lineto -2.880313e+01 2.474287e+01 lineto -closepath -gsave -4.780314e-01 4.780314e-01 5.975393e-01 setrgbcolor -fill -grestore -newpath -2.834761e+01 2.587912e+01 moveto -2.880313e+01 2.474287e+01 lineto -3.008583e+01 2.413708e+01 lineto -2.964645e+01 2.526571e+01 lineto -2.834761e+01 2.587912e+01 lineto -closepath -gsave -4.791063e-01 4.791063e-01 5.988829e-01 setrgbcolor -fill -grestore -newpath -2.792679e+01 2.703443e+01 moveto -2.834761e+01 2.587912e+01 lineto -2.964645e+01 2.526571e+01 lineto -2.924054e+01 2.641397e+01 lineto -2.792679e+01 2.703443e+01 lineto -closepath -gsave -4.802387e-01 4.802387e-01 6.002983e-01 setrgbcolor -fill -grestore -newpath -4.706808e+01 6.189268e+00 moveto -4.810485e+01 5.757817e+00 lineto -4.882971e+01 5.480945e+00 lineto -4.783743e+01 5.895406e+00 lineto -4.706808e+01 6.189268e+00 lineto -closepath -gsave -4.757005e-01 4.757005e-01 5.946256e-01 setrgbcolor -fill -grestore -newpath -4.604828e+01 6.658412e+00 moveto -4.706808e+01 6.189268e+00 lineto -4.783743e+01 5.895406e+00 lineto -4.686139e+01 6.347838e+00 lineto -4.604828e+01 6.658412e+00 lineto -closepath -gsave -4.758747e-01 4.758747e-01 5.948434e-01 setrgbcolor -fill -grestore -newpath -4.504644e+01 7.164805e+00 moveto -4.604828e+01 6.658412e+00 lineto -4.686139e+01 6.347838e+00 lineto -4.590252e+01 6.837813e+00 lineto -4.504644e+01 7.164805e+00 lineto -closepath -gsave -4.761032e-01 4.761032e-01 5.95129e-01 setrgbcolor -fill -grestore -newpath -4.406348e+01 7.707968e+00 moveto -4.504644e+01 7.164805e+00 lineto -4.590252e+01 6.837813e+00 lineto -4.496174e+01 7.364868e+00 lineto -4.406348e+01 7.707968e+00 lineto -closepath -gsave -4.763858e-01 4.763858e-01 5.954822e-01 setrgbcolor -fill -grestore -newpath -4.310035e+01 8.287386e+00 moveto -4.406348e+01 7.707968e+00 lineto -4.496174e+01 7.364868e+00 lineto -4.403993e+01 7.928502e+00 lineto -4.310035e+01 8.287386e+00 lineto -closepath -gsave -4.767225e-01 4.767225e-01 5.959031e-01 setrgbcolor -fill -grestore -newpath -4.215795e+01 8.90251e+00 moveto -4.310035e+01 8.287386e+00 lineto -4.403993e+01 7.928502e+00 lineto -4.313796e+01 8.528183e+00 lineto -4.215795e+01 8.90251e+00 lineto -closepath -gsave -4.771132e-01 4.771132e-01 5.963915e-01 setrgbcolor -fill -grestore -newpath -4.123718e+01 9.552759e+00 moveto -4.215795e+01 8.90251e+00 lineto -4.313796e+01 8.528183e+00 lineto -4.22567e+01 9.163342e+00 lineto -4.123718e+01 9.552759e+00 lineto -closepath -gsave -4.775579e-01 4.775579e-01 5.969474e-01 setrgbcolor -fill -grestore -newpath -4.03389e+01 1.023752e+01 moveto -4.123718e+01 9.552759e+00 lineto -4.22567e+01 9.163342e+00 lineto -4.139696e+01 9.833379e+00 lineto -4.03389e+01 1.023752e+01 lineto -closepath -gsave -4.780565e-01 4.780565e-01 5.975706e-01 setrgbcolor -fill -grestore -newpath -3.946398e+01 1.095613e+01 moveto -4.03389e+01 1.023752e+01 lineto -4.139696e+01 9.833379e+00 lineto -4.055958e+01 1.053766e+01 lineto -3.946398e+01 1.095613e+01 lineto -closepath -gsave -4.786089e-01 4.786089e-01 5.982611e-01 setrgbcolor -fill -grestore -newpath -3.861324e+01 1.170793e+01 moveto -3.946398e+01 1.095613e+01 lineto -4.055958e+01 1.053766e+01 lineto -3.974533e+01 1.127551e+01 lineto -3.861324e+01 1.170793e+01 lineto -closepath -gsave -4.792149e-01 4.792149e-01 5.990186e-01 setrgbcolor -fill -grestore -newpath -3.778747e+01 1.24922e+01 moveto -3.861324e+01 1.170793e+01 lineto -3.974533e+01 1.127551e+01 lineto -3.8955e+01 1.204625e+01 lineto -3.778747e+01 1.24922e+01 lineto -closepath -gsave -4.798745e-01 4.798745e-01 5.998431e-01 setrgbcolor -fill -grestore -newpath -3.698748e+01 1.330819e+01 moveto -3.778747e+01 1.24922e+01 lineto -3.8955e+01 1.204625e+01 lineto -3.818933e+01 1.284913e+01 lineto -3.698748e+01 1.330819e+01 lineto -closepath -gsave -4.805874e-01 4.805874e-01 6.007342e-01 setrgbcolor -fill -grestore -newpath -3.6214e+01 1.415513e+01 moveto -3.698748e+01 1.330819e+01 lineto -3.818933e+01 1.284913e+01 lineto -3.744904e+01 1.36834e+01 lineto -3.6214e+01 1.415513e+01 lineto -closepath -gsave -4.813535e-01 4.813535e-01 6.016919e-01 setrgbcolor -fill -grestore -newpath -3.546778e+01 1.503223e+01 moveto -3.6214e+01 1.415513e+01 lineto -3.744904e+01 1.36834e+01 lineto -3.673483e+01 1.454826e+01 lineto -3.546778e+01 1.503223e+01 lineto -closepath -gsave -4.821726e-01 4.821726e-01 6.027157e-01 setrgbcolor -fill -grestore -newpath -3.474953e+01 1.593864e+01 moveto -3.546778e+01 1.503223e+01 lineto -3.673483e+01 1.454826e+01 lineto -3.604739e+01 1.544291e+01 lineto -3.474953e+01 1.593864e+01 lineto -closepath -gsave -4.830444e-01 4.830444e-01 6.038055e-01 setrgbcolor -fill -grestore -newpath -3.405991e+01 1.687352e+01 moveto -3.474953e+01 1.593864e+01 lineto -3.604739e+01 1.544291e+01 lineto -3.538736e+01 1.636649e+01 lineto -3.405991e+01 1.687352e+01 lineto -closepath -gsave -4.839687e-01 4.839687e-01 6.049608e-01 setrgbcolor -fill -grestore -newpath -3.339959e+01 1.783598e+01 moveto -3.405991e+01 1.687352e+01 lineto -3.538736e+01 1.636649e+01 lineto -3.475537e+01 1.731812e+01 lineto -3.339959e+01 1.783598e+01 lineto -closepath -gsave -4.849451e-01 4.849451e-01 6.061814e-01 setrgbcolor -fill -grestore -newpath -3.276918e+01 1.88251e+01 moveto -3.339959e+01 1.783598e+01 lineto -3.475537e+01 1.731812e+01 lineto -3.415201e+01 1.829691e+01 lineto -3.276918e+01 1.88251e+01 lineto -closepath -gsave -4.859733e-01 4.859733e-01 6.074667e-01 setrgbcolor -fill -grestore -newpath -3.21693e+01 1.983995e+01 moveto -3.276918e+01 1.88251e+01 lineto -3.415201e+01 1.829691e+01 lineto -3.357787e+01 1.930193e+01 lineto -3.21693e+01 1.983995e+01 lineto -closepath -gsave -4.87053e-01 4.87053e-01 6.088163e-01 setrgbcolor -fill -grestore -newpath -3.16005e+01 2.087957e+01 moveto -3.21693e+01 1.983995e+01 lineto -3.357787e+01 1.930193e+01 lineto -3.303347e+01 2.033223e+01 lineto -3.16005e+01 2.087957e+01 lineto -closepath -gsave -4.881837e-01 4.881837e-01 6.102296e-01 setrgbcolor -fill -grestore -newpath -3.106332e+01 2.194297e+01 moveto -3.16005e+01 2.087957e+01 lineto -3.303347e+01 2.033223e+01 lineto -3.251934e+01 2.138683e+01 lineto -3.106332e+01 2.194297e+01 lineto -closepath -gsave -4.893649e-01 4.893649e-01 6.117061e-01 setrgbcolor -fill -grestore -newpath -3.055827e+01 2.302915e+01 moveto -3.106332e+01 2.194297e+01 lineto -3.251934e+01 2.138683e+01 lineto -3.203596e+01 2.246473e+01 lineto -3.055827e+01 2.302915e+01 lineto -closepath -gsave -4.905961e-01 4.905961e-01 6.132452e-01 setrgbcolor -fill -grestore -newpath -3.008583e+01 2.413708e+01 moveto -3.055827e+01 2.302915e+01 lineto -3.203596e+01 2.246473e+01 lineto -3.158379e+01 2.356492e+01 lineto -3.008583e+01 2.413708e+01 lineto -closepath -gsave -4.918768e-01 4.918768e-01 6.14846e-01 setrgbcolor -fill -grestore -newpath -2.964645e+01 2.526571e+01 moveto -3.008583e+01 2.413708e+01 lineto -3.158379e+01 2.356492e+01 lineto -3.116326e+01 2.468635e+01 lineto -2.964645e+01 2.526571e+01 lineto -closepath -gsave -4.932063e-01 4.932063e-01 6.165079e-01 setrgbcolor -fill -grestore -newpath -2.924054e+01 2.641397e+01 moveto -2.964645e+01 2.526571e+01 lineto -3.116326e+01 2.468635e+01 lineto -3.077477e+01 2.582796e+01 lineto -2.924054e+01 2.641397e+01 lineto -closepath -gsave -4.94584e-01 4.94584e-01 6.1823e-01 setrgbcolor -fill -grestore -newpath -4.983731e+01 5.104848e+00 moveto -5.085927e+01 4.767471e+00 lineto -5.158034e+01 4.541072e+00 lineto -5.06105e+01 4.862087e+00 lineto -4.983731e+01 5.104848e+00 lineto -closepath -gsave -4.815109e-01 4.815109e-01 6.018886e-01 setrgbcolor -fill -grestore -newpath -4.882971e+01 5.480945e+00 moveto -4.983731e+01 5.104848e+00 lineto -5.06105e+01 4.862087e+00 lineto -4.965428e+01 5.222052e+00 lineto -4.882971e+01 5.480945e+00 lineto -closepath -gsave -4.820003e-01 4.820003e-01 6.025003e-01 setrgbcolor -fill -grestore -newpath -4.783743e+01 5.895406e+00 moveto -4.882971e+01 5.480945e+00 lineto -4.965428e+01 5.222052e+00 lineto -4.871259e+01 5.620626e+00 lineto -4.783743e+01 5.895406e+00 lineto -closepath -gsave -4.825406e-01 4.825406e-01 6.031757e-01 setrgbcolor -fill -grestore -newpath -4.686139e+01 6.347838e+00 moveto -4.783743e+01 5.895406e+00 lineto -4.871259e+01 5.620626e+00 lineto -4.778632e+01 6.057431e+00 lineto -4.686139e+01 6.347838e+00 lineto -closepath -gsave -4.831317e-01 4.831317e-01 6.039146e-01 setrgbcolor -fill -grestore -newpath -4.590252e+01 6.837813e+00 moveto -4.686139e+01 6.347838e+00 lineto -4.778632e+01 6.057431e+00 lineto -4.687635e+01 6.532055e+00 lineto -4.590252e+01 6.837813e+00 lineto -closepath -gsave -4.837733e-01 4.837733e-01 6.047166e-01 setrgbcolor -fill -grestore -newpath -4.496174e+01 7.364868e+00 moveto -4.590252e+01 6.837813e+00 lineto -4.687635e+01 6.532055e+00 lineto -4.598354e+01 7.044046e+00 lineto -4.496174e+01 7.364868e+00 lineto -closepath -gsave -4.844652e-01 4.844652e-01 6.055816e-01 setrgbcolor -fill -grestore -newpath -4.403993e+01 7.928502e+00 moveto -4.496174e+01 7.364868e+00 lineto -4.598354e+01 7.044046e+00 lineto -4.510874e+01 7.592922e+00 lineto -4.403993e+01 7.928502e+00 lineto -closepath -gsave -4.852073e-01 4.852073e-01 6.065092e-01 setrgbcolor -fill -grestore -newpath -4.313796e+01 8.528183e+00 moveto -4.403993e+01 7.928502e+00 lineto -4.510874e+01 7.592922e+00 lineto -4.425276e+01 8.178162e+00 lineto -4.313796e+01 8.528183e+00 lineto -closepath -gsave -4.859993e-01 4.859993e-01 6.074991e-01 setrgbcolor -fill -grestore -newpath -4.22567e+01 9.163342e+00 moveto -4.313796e+01 8.528183e+00 lineto -4.425276e+01 8.178162e+00 lineto -4.341644e+01 8.799212e+00 lineto -4.22567e+01 9.163342e+00 lineto -closepath -gsave -4.868408e-01 4.868408e-01 6.08551e-01 setrgbcolor -fill -grestore -newpath -4.139696e+01 9.833379e+00 moveto -4.22567e+01 9.163342e+00 lineto -4.341644e+01 8.799212e+00 lineto -4.260054e+01 9.455485e+00 lineto -4.139696e+01 9.833379e+00 lineto -closepath -gsave -4.877316e-01 4.877316e-01 6.096645e-01 setrgbcolor -fill -grestore -newpath -4.055958e+01 1.053766e+01 moveto -4.139696e+01 9.833379e+00 lineto -4.260054e+01 9.455485e+00 lineto -4.180586e+01 1.014636e+01 lineto -4.055958e+01 1.053766e+01 lineto -closepath -gsave -4.886713e-01 4.886713e-01 6.108391e-01 setrgbcolor -fill -grestore -newpath -3.974533e+01 1.127551e+01 moveto -4.055958e+01 1.053766e+01 lineto -4.180586e+01 1.014636e+01 lineto -4.103313e+01 1.087118e+01 lineto -3.974533e+01 1.127551e+01 lineto -closepath -gsave -4.896594e-01 4.896594e-01 6.120743e-01 setrgbcolor -fill -grestore -newpath -3.8955e+01 1.204625e+01 moveto -3.974533e+01 1.127551e+01 lineto -4.103313e+01 1.087118e+01 lineto -4.02831e+01 1.162926e+01 lineto -3.8955e+01 1.204625e+01 lineto -closepath -gsave -4.906956e-01 4.906956e-01 6.133696e-01 setrgbcolor -fill -grestore -newpath -3.818933e+01 1.284913e+01 moveto -3.8955e+01 1.204625e+01 lineto -4.02831e+01 1.162926e+01 lineto -3.955647e+01 1.241988e+01 lineto -3.818933e+01 1.284913e+01 lineto -closepath -gsave -4.917795e-01 4.917795e-01 6.147243e-01 setrgbcolor -fill -grestore -newpath -3.744904e+01 1.36834e+01 moveto -3.818933e+01 1.284913e+01 lineto -3.955647e+01 1.241988e+01 lineto -3.885393e+01 1.32423e+01 lineto -3.744904e+01 1.36834e+01 lineto -closepath -gsave -4.929103e-01 4.929103e-01 6.161379e-01 setrgbcolor -fill -grestore -newpath -3.673483e+01 1.454826e+01 moveto -3.744904e+01 1.36834e+01 lineto -3.885393e+01 1.32423e+01 lineto -3.817615e+01 1.409573e+01 lineto -3.673483e+01 1.454826e+01 lineto -closepath -gsave -4.940877e-01 4.940877e-01 6.176097e-01 setrgbcolor -fill -grestore -newpath -3.604739e+01 1.544291e+01 moveto -3.673483e+01 1.454826e+01 lineto -3.817615e+01 1.409573e+01 lineto -3.752376e+01 1.497937e+01 lineto -3.604739e+01 1.544291e+01 lineto -closepath -gsave -4.953111e-01 4.953111e-01 6.191388e-01 setrgbcolor -fill -grestore -newpath -3.538736e+01 1.636649e+01 moveto -3.604739e+01 1.544291e+01 lineto -3.752376e+01 1.497937e+01 lineto -3.689739e+01 1.589238e+01 lineto -3.538736e+01 1.636649e+01 lineto -closepath -gsave -4.965796e-01 4.965796e-01 6.207245e-01 setrgbcolor -fill -grestore -newpath -3.475537e+01 1.731812e+01 moveto -3.538736e+01 1.636649e+01 lineto -3.689739e+01 1.589238e+01 lineto -3.629762e+01 1.683389e+01 lineto -3.475537e+01 1.731812e+01 lineto -closepath -gsave -4.978927e-01 4.978927e-01 6.223659e-01 setrgbcolor -fill -grestore -newpath -3.415201e+01 1.829691e+01 moveto -3.475537e+01 1.731812e+01 lineto -3.629762e+01 1.683389e+01 lineto -3.572503e+01 1.780302e+01 lineto -3.415201e+01 1.829691e+01 lineto -closepath -gsave -4.992496e-01 4.992496e-01 6.24062e-01 setrgbcolor -fill -grestore -newpath -3.357787e+01 1.930193e+01 moveto -3.415201e+01 1.829691e+01 lineto -3.572503e+01 1.780302e+01 lineto -3.518016e+01 1.879885e+01 lineto -3.357787e+01 1.930193e+01 lineto -closepath -gsave -5.006494e-01 5.006494e-01 6.258118e-01 setrgbcolor -fill -grestore -newpath -3.303347e+01 2.033223e+01 moveto -3.357787e+01 1.930193e+01 lineto -3.518016e+01 1.879885e+01 lineto -3.466352e+01 1.982043e+01 lineto -3.303347e+01 2.033223e+01 lineto -closepath -gsave -5.020913e-01 5.020913e-01 6.276142e-01 setrgbcolor -fill -grestore -newpath -3.251934e+01 2.138683e+01 moveto -3.303347e+01 2.033223e+01 lineto -3.466352e+01 1.982043e+01 lineto -3.417561e+01 2.08668e+01 lineto -3.251934e+01 2.138683e+01 lineto -closepath -gsave -5.035744e-01 5.035744e-01 6.294681e-01 setrgbcolor -fill -grestore -newpath -3.203596e+01 2.246473e+01 moveto -3.251934e+01 2.138683e+01 lineto -3.417561e+01 2.08668e+01 lineto -3.371688e+01 2.193697e+01 lineto -3.203596e+01 2.246473e+01 lineto -closepath -gsave -5.050977e-01 5.050977e-01 6.313722e-01 setrgbcolor -fill -grestore -newpath -3.158379e+01 2.356492e+01 moveto -3.203596e+01 2.246473e+01 lineto -3.371688e+01 2.193697e+01 lineto -3.328777e+01 2.302991e+01 lineto -3.158379e+01 2.356492e+01 lineto -closepath -gsave -5.066602e-01 5.066602e-01 6.333252e-01 setrgbcolor -fill -grestore -newpath -3.116326e+01 2.468635e+01 moveto -3.158379e+01 2.356492e+01 lineto -3.328777e+01 2.302991e+01 lineto -3.288868e+01 2.414461e+01 lineto -3.116326e+01 2.468635e+01 lineto -closepath -gsave -5.082607e-01 5.082607e-01 6.353258e-01 setrgbcolor -fill -grestore -newpath -3.077477e+01 2.582796e+01 moveto -3.116326e+01 2.468635e+01 lineto -3.288868e+01 2.414461e+01 lineto -3.252e+01 2.528e+01 lineto -3.077477e+01 2.582796e+01 lineto -closepath -gsave -5.09898e-01 5.09898e-01 6.373725e-01 setrgbcolor -fill -grestore -newpath -5.158034e+01 4.541072e+00 moveto -5.256289e+01 4.259311e+00 lineto -5.330785e+01 4.065353e+00 lineto -5.238415e+01 4.331791e+00 lineto -5.158034e+01 4.541072e+00 lineto -closepath -gsave -4.86807e-01 4.86807e-01 6.085088e-01 setrgbcolor -fill -grestore -newpath -5.06105e+01 4.862087e+00 moveto -5.158034e+01 4.541072e+00 lineto -5.238415e+01 4.331791e+00 lineto -5.14724e+01 4.637681e+00 lineto -5.06105e+01 4.862087e+00 lineto -closepath -gsave -4.876962e-01 4.876962e-01 6.096203e-01 setrgbcolor -fill -grestore -newpath -4.965428e+01 5.222052e+00 moveto -5.06105e+01 4.862087e+00 lineto -5.14724e+01 4.637681e+00 lineto -5.057346e+01 4.982734e+00 lineto -4.965428e+01 5.222052e+00 lineto -closepath -gsave -4.886344e-01 4.886344e-01 6.107929e-01 setrgbcolor -fill -grestore -newpath -4.871259e+01 5.620626e+00 moveto -4.965428e+01 5.222052e+00 lineto -5.057346e+01 4.982734e+00 lineto -4.968817e+01 5.366622e+00 lineto -4.871259e+01 5.620626e+00 lineto -closepath -gsave -4.896211e-01 4.896211e-01 6.120263e-01 setrgbcolor -fill -grestore -newpath -4.778632e+01 6.057431e+00 moveto -4.871259e+01 5.620626e+00 lineto -4.968817e+01 5.366622e+00 lineto -4.881739e+01 5.788982e+00 lineto -4.778632e+01 6.057431e+00 lineto -closepath -gsave -4.906559e-01 4.906559e-01 6.133199e-01 setrgbcolor -fill -grestore -newpath -4.687635e+01 6.532055e+00 moveto -4.778632e+01 6.057431e+00 lineto -4.881739e+01 5.788982e+00 lineto -4.796192e+01 6.249414e+00 lineto -4.687635e+01 6.532055e+00 lineto -closepath -gsave -4.917384e-01 4.917384e-01 6.14673e-01 setrgbcolor -fill -grestore -newpath -4.598354e+01 7.044046e+00 moveto -4.687635e+01 6.532055e+00 lineto -4.796192e+01 6.249414e+00 lineto -4.712259e+01 6.747482e+00 lineto -4.598354e+01 7.044046e+00 lineto -closepath -gsave -4.92868e-01 4.92868e-01 6.16085e-01 setrgbcolor -fill -grestore -newpath -4.510874e+01 7.592922e+00 moveto -4.598354e+01 7.044046e+00 lineto -4.712259e+01 6.747482e+00 lineto -4.630018e+01 7.282716e+00 lineto -4.510874e+01 7.592922e+00 lineto -closepath -gsave -4.940442e-01 4.940442e-01 6.175553e-01 setrgbcolor -fill -grestore -newpath -4.425276e+01 8.178162e+00 moveto -4.510874e+01 7.592922e+00 lineto -4.630018e+01 7.282716e+00 lineto -4.549548e+01 7.854607e+00 lineto -4.425276e+01 8.178162e+00 lineto -closepath -gsave -4.952664e-01 4.952664e-01 6.19083e-01 setrgbcolor -fill -grestore -newpath -4.341644e+01 8.799212e+00 moveto -4.425276e+01 8.178162e+00 lineto -4.549548e+01 7.854607e+00 lineto -4.470925e+01 8.462614e+00 lineto -4.341644e+01 8.799212e+00 lineto -closepath -gsave -4.965339e-01 4.965339e-01 6.206673e-01 setrgbcolor -fill -grestore -newpath -4.260054e+01 9.455485e+00 moveto -4.341644e+01 8.799212e+00 lineto -4.470925e+01 8.462614e+00 lineto -4.394222e+01 9.106162e+00 lineto -4.260054e+01 9.455485e+00 lineto -closepath -gsave -4.978459e-01 4.978459e-01 6.223074e-01 setrgbcolor -fill -grestore -newpath -4.180586e+01 1.014636e+01 moveto -4.260054e+01 9.455485e+00 lineto -4.394222e+01 9.106162e+00 lineto -4.319514e+01 9.784642e+00 lineto -4.180586e+01 1.014636e+01 lineto -closepath -gsave -4.992019e-01 4.992019e-01 6.240023e-01 setrgbcolor -fill -grestore -newpath -4.103313e+01 1.087118e+01 moveto -4.180586e+01 1.014636e+01 lineto -4.319514e+01 9.784642e+00 lineto -4.24687e+01 1.049741e+01 lineto -4.103313e+01 1.087118e+01 lineto -closepath -gsave -5.006008e-01 5.006008e-01 6.25751e-01 setrgbcolor -fill -grestore -newpath -4.02831e+01 1.162926e+01 moveto -4.103313e+01 1.087118e+01 lineto -4.24687e+01 1.049741e+01 lineto -4.176359e+01 1.124379e+01 lineto -4.02831e+01 1.162926e+01 lineto -closepath -gsave -5.020419e-01 5.020419e-01 6.275524e-01 setrgbcolor -fill -grestore -newpath -3.955647e+01 1.241988e+01 moveto -4.02831e+01 1.162926e+01 lineto -4.176359e+01 1.124379e+01 lineto -4.108049e+01 1.202308e+01 lineto -3.955647e+01 1.241988e+01 lineto -closepath -gsave -5.035243e-01 5.035243e-01 6.294053e-01 setrgbcolor -fill -grestore -newpath -3.885393e+01 1.32423e+01 moveto -3.955647e+01 1.241988e+01 lineto -4.108049e+01 1.202308e+01 lineto -4.042003e+01 1.283454e+01 lineto -3.885393e+01 1.32423e+01 lineto -closepath -gsave -5.050468e-01 5.050468e-01 6.313085e-01 setrgbcolor -fill -grestore -newpath -3.817615e+01 1.409573e+01 moveto -3.885393e+01 1.32423e+01 lineto -4.042003e+01 1.283454e+01 lineto -3.978284e+01 1.367741e+01 lineto -3.817615e+01 1.409573e+01 lineto -closepath -gsave -5.066086e-01 5.066086e-01 6.332607e-01 setrgbcolor -fill -grestore -newpath -3.752376e+01 1.497937e+01 moveto -3.817615e+01 1.409573e+01 lineto -3.978284e+01 1.367741e+01 lineto -3.916953e+01 1.455087e+01 lineto -3.752376e+01 1.497937e+01 lineto -closepath -gsave -5.082084e-01 5.082084e-01 6.352606e-01 setrgbcolor -fill -grestore -newpath -3.689739e+01 1.589238e+01 moveto -3.752376e+01 1.497937e+01 lineto -3.916953e+01 1.455087e+01 lineto -3.858067e+01 1.545411e+01 lineto -3.689739e+01 1.589238e+01 lineto -closepath -gsave -5.098452e-01 5.098452e-01 6.373066e-01 setrgbcolor -fill -grestore -newpath -3.629762e+01 1.683389e+01 moveto -3.689739e+01 1.589238e+01 lineto -3.858067e+01 1.545411e+01 lineto -3.801683e+01 1.638627e+01 lineto -3.629762e+01 1.683389e+01 lineto -closepath -gsave -5.115177e-01 5.115177e-01 6.393972e-01 setrgbcolor -fill -grestore -newpath -3.572503e+01 1.780302e+01 moveto -3.629762e+01 1.683389e+01 lineto -3.801683e+01 1.638627e+01 lineto -3.747854e+01 1.734647e+01 lineto -3.572503e+01 1.780302e+01 lineto -closepath -gsave -5.132247e-01 5.132247e-01 6.415308e-01 setrgbcolor -fill -grestore -newpath -3.518016e+01 1.879885e+01 moveto -3.572503e+01 1.780302e+01 lineto -3.747854e+01 1.734647e+01 lineto -3.696631e+01 1.83338e+01 lineto -3.518016e+01 1.879885e+01 lineto -closepath -gsave -5.149647e-01 5.149647e-01 6.437058e-01 setrgbcolor -fill -grestore -newpath -3.466352e+01 1.982043e+01 moveto -3.518016e+01 1.879885e+01 lineto -3.696631e+01 1.83338e+01 lineto -3.648061e+01 1.934733e+01 lineto -3.466352e+01 1.982043e+01 lineto -closepath -gsave -5.167364e-01 5.167364e-01 6.459205e-01 setrgbcolor -fill -grestore -newpath -3.417561e+01 2.08668e+01 moveto -3.466352e+01 1.982043e+01 lineto -3.648061e+01 1.934733e+01 lineto -3.602192e+01 2.038609e+01 lineto -3.417561e+01 2.08668e+01 lineto -closepath -gsave -5.185383e-01 5.185383e-01 6.481729e-01 setrgbcolor -fill -grestore -newpath -3.371688e+01 2.193697e+01 moveto -3.417561e+01 2.08668e+01 lineto -3.602192e+01 2.038609e+01 lineto -3.559067e+01 2.14491e+01 lineto -3.371688e+01 2.193697e+01 lineto -closepath -gsave -5.203689e-01 5.203689e-01 6.504612e-01 setrgbcolor -fill -grestore -newpath -3.328777e+01 2.302991e+01 moveto -3.371688e+01 2.193697e+01 lineto -3.559067e+01 2.14491e+01 lineto -3.518726e+01 2.253536e+01 lineto -3.328777e+01 2.302991e+01 lineto -closepath -gsave -5.222267e-01 5.222267e-01 6.527834e-01 setrgbcolor -fill -grestore -newpath -3.288868e+01 2.414461e+01 moveto -3.328777e+01 2.302991e+01 lineto -3.518726e+01 2.253536e+01 lineto -3.481208e+01 2.364383e+01 lineto -3.288868e+01 2.414461e+01 lineto -closepath -gsave -5.2411e-01 5.2411e-01 6.551374e-01 setrgbcolor -fill -grestore -newpath -3.252e+01 2.528e+01 moveto -3.288868e+01 2.414461e+01 lineto -3.481208e+01 2.364383e+01 lineto -3.446548e+01 2.477347e+01 lineto -3.252e+01 2.528e+01 lineto -closepath -gsave -5.26017e-01 5.26017e-01 6.575213e-01 setrgbcolor -fill -grestore -newpath -5.330785e+01 4.065353e+00 moveto -5.424261e+01 3.838618e+00 lineto -5.499433e+01 3.675863e+00 lineto -5.412489e+01 3.888455e+00 lineto -5.330785e+01 4.065353e+00 lineto -closepath -gsave -4.913545e-01 4.913545e-01 6.141931e-01 setrgbcolor -fill -grestore -newpath -5.238415e+01 4.331791e+00 moveto -5.330785e+01 4.065353e+00 lineto -5.412489e+01 3.888455e+00 lineto -5.326574e+01 4.140918e+00 lineto -5.238415e+01 4.331791e+00 lineto -closepath -gsave -4.926658e-01 4.926658e-01 6.158323e-01 setrgbcolor -fill -grestore -newpath -5.14724e+01 4.637681e+00 moveto -5.238415e+01 4.331791e+00 lineto -5.326574e+01 4.140918e+00 lineto -5.24177e+01 4.433014e+00 lineto -5.14724e+01 4.637681e+00 lineto -closepath -gsave -4.940257e-01 4.940257e-01 6.175322e-01 setrgbcolor -fill -grestore -newpath -5.057346e+01 4.982734e+00 moveto -5.14724e+01 4.637681e+00 lineto -5.24177e+01 4.433014e+00 lineto -5.158158e+01 4.764466e+00 lineto -5.057346e+01 4.982734e+00 lineto -closepath -gsave -4.954335e-01 4.954335e-01 6.192918e-01 setrgbcolor -fill -grestore -newpath -4.968817e+01 5.366622e+00 moveto -5.057346e+01 4.982734e+00 lineto -5.158158e+01 4.764466e+00 lineto -5.075816e+01 5.13496e+00 lineto -4.968817e+01 5.366622e+00 lineto -closepath -gsave -4.968882e-01 4.968882e-01 6.211103e-01 setrgbcolor -fill -grestore -newpath -4.881739e+01 5.788982e+00 moveto -4.968817e+01 5.366622e+00 lineto -5.075816e+01 5.13496e+00 lineto -4.994822e+01 5.544145e+00 lineto -4.881739e+01 5.788982e+00 lineto -closepath -gsave -4.983892e-01 4.983892e-01 6.229865e-01 setrgbcolor -fill -grestore -newpath -4.796192e+01 6.249414e+00 moveto -4.881739e+01 5.788982e+00 lineto -4.994822e+01 5.544145e+00 lineto -4.915253e+01 5.991634e+00 lineto -4.796192e+01 6.249414e+00 lineto -closepath -gsave -4.999355e-01 4.999355e-01 6.249194e-01 setrgbcolor -fill -grestore -newpath -4.712259e+01 6.747482e+00 moveto -4.796192e+01 6.249414e+00 lineto -4.915253e+01 5.991634e+00 lineto -4.837185e+01 6.477004e+00 lineto -4.712259e+01 6.747482e+00 lineto -closepath -gsave -5.015261e-01 5.015261e-01 6.269076e-01 setrgbcolor -fill -grestore -newpath -4.630018e+01 7.282716e+00 moveto -4.712259e+01 6.747482e+00 lineto -4.837185e+01 6.477004e+00 lineto -4.760692e+01 6.999794e+00 lineto -4.630018e+01 7.282716e+00 lineto -closepath -gsave -5.0316e-01 5.0316e-01 6.289501e-01 setrgbcolor -fill -grestore -newpath -4.549548e+01 7.854607e+00 moveto -4.630018e+01 7.282716e+00 lineto -4.760692e+01 6.999794e+00 lineto -4.685845e+01 7.559511e+00 lineto -4.549548e+01 7.854607e+00 lineto -closepath -gsave -5.048362e-01 5.048362e-01 6.310452e-01 setrgbcolor -fill -grestore -newpath -4.470925e+01 8.462614e+00 moveto -4.549548e+01 7.854607e+00 lineto -4.685845e+01 7.559511e+00 lineto -4.612715e+01 8.155623e+00 lineto -4.470925e+01 8.462614e+00 lineto -closepath -gsave -5.065534e-01 5.065534e-01 6.331917e-01 setrgbcolor -fill -grestore -newpath -4.394222e+01 9.106162e+00 moveto -4.470925e+01 8.462614e+00 lineto -4.612715e+01 8.155623e+00 lineto -4.541373e+01 8.787566e+00 lineto -4.394222e+01 9.106162e+00 lineto -closepath -gsave -5.083104e-01 5.083104e-01 6.35388e-01 setrgbcolor -fill -grestore -newpath -4.319514e+01 9.784642e+00 moveto -4.394222e+01 9.106162e+00 lineto -4.541373e+01 8.787566e+00 lineto -4.471885e+01 9.454743e+00 lineto -4.319514e+01 9.784642e+00 lineto -closepath -gsave -5.10106e-01 5.10106e-01 6.376324e-01 setrgbcolor -fill -grestore -newpath -4.24687e+01 1.049741e+01 moveto -4.319514e+01 9.784642e+00 lineto -4.471885e+01 9.454743e+00 lineto -4.404318e+01 1.015652e+01 lineto -4.24687e+01 1.049741e+01 lineto -closepath -gsave -5.119386e-01 5.119386e-01 6.399233e-01 setrgbcolor -fill -grestore -newpath -4.176359e+01 1.124379e+01 moveto -4.24687e+01 1.049741e+01 lineto -4.404318e+01 1.015652e+01 lineto -4.338734e+01 1.089224e+01 lineto -4.176359e+01 1.124379e+01 lineto -closepath -gsave -5.13807e-01 5.13807e-01 6.422588e-01 setrgbcolor -fill -grestore -newpath -4.108049e+01 1.202308e+01 moveto -4.176359e+01 1.124379e+01 lineto -4.338734e+01 1.089224e+01 lineto -4.275197e+01 1.166119e+01 lineto -4.108049e+01 1.202308e+01 lineto -closepath -gsave -5.157096e-01 5.157096e-01 6.446371e-01 setrgbcolor -fill -grestore -newpath -4.042003e+01 1.283454e+01 moveto -4.108049e+01 1.202308e+01 lineto -4.275197e+01 1.166119e+01 lineto -4.213766e+01 1.246266e+01 lineto -4.042003e+01 1.283454e+01 lineto -closepath -gsave -5.176449e-01 5.176449e-01 6.470561e-01 setrgbcolor -fill -grestore -newpath -3.978284e+01 1.367741e+01 moveto -4.042003e+01 1.283454e+01 lineto -4.213766e+01 1.246266e+01 lineto -4.1545e+01 1.329588e+01 lineto -3.978284e+01 1.367741e+01 lineto -closepath -gsave -5.196111e-01 5.196111e-01 6.495139e-01 setrgbcolor -fill -grestore -newpath -3.916953e+01 1.455087e+01 moveto -3.978284e+01 1.367741e+01 lineto -4.1545e+01 1.329588e+01 lineto -4.097455e+01 1.416007e+01 lineto -3.916953e+01 1.455087e+01 lineto -closepath -gsave -5.216067e-01 5.216067e-01 6.520083e-01 setrgbcolor -fill -grestore -newpath -3.858067e+01 1.545411e+01 moveto -3.916953e+01 1.455087e+01 lineto -4.097455e+01 1.416007e+01 lineto -4.042684e+01 1.50544e+01 lineto -3.858067e+01 1.545411e+01 lineto -closepath -gsave -5.236297e-01 5.236297e-01 6.545372e-01 setrgbcolor -fill -grestore -newpath -3.801683e+01 1.638627e+01 moveto -3.858067e+01 1.545411e+01 lineto -4.042684e+01 1.50544e+01 lineto -3.99024e+01 1.597803e+01 lineto -3.801683e+01 1.638627e+01 lineto -closepath -gsave -5.256785e-01 5.256785e-01 6.570982e-01 setrgbcolor -fill -grestore -newpath -3.747854e+01 1.734647e+01 moveto -3.801683e+01 1.638627e+01 lineto -3.99024e+01 1.597803e+01 lineto -3.940173e+01 1.693009e+01 lineto -3.747854e+01 1.734647e+01 lineto -closepath -gsave -5.277511e-01 5.277511e-01 6.596889e-01 setrgbcolor -fill -grestore -newpath -3.696631e+01 1.83338e+01 moveto -3.747854e+01 1.734647e+01 lineto -3.940173e+01 1.693009e+01 lineto -3.892529e+01 1.790967e+01 lineto -3.696631e+01 1.83338e+01 lineto -closepath -gsave -5.298456e-01 5.298456e-01 6.62307e-01 setrgbcolor -fill -grestore -newpath -3.648061e+01 1.934733e+01 moveto -3.696631e+01 1.83338e+01 lineto -3.892529e+01 1.790967e+01 lineto -3.847354e+01 1.891584e+01 lineto -3.648061e+01 1.934733e+01 lineto -closepath -gsave -5.3196e-01 5.3196e-01 6.6495e-01 setrgbcolor -fill -grestore -newpath -3.602192e+01 2.038609e+01 moveto -3.648061e+01 1.934733e+01 lineto -3.847354e+01 1.891584e+01 lineto -3.80469e+01 1.994766e+01 lineto -3.602192e+01 2.038609e+01 lineto -closepath -gsave -5.340922e-01 5.340922e-01 6.676153e-01 setrgbcolor -fill -grestore -newpath -3.559067e+01 2.14491e+01 moveto -3.602192e+01 2.038609e+01 lineto -3.80469e+01 1.994766e+01 lineto -3.764578e+01 2.100415e+01 lineto -3.559067e+01 2.14491e+01 lineto -closepath -gsave -5.362402e-01 5.362402e-01 6.703002e-01 setrgbcolor -fill -grestore -newpath -3.518726e+01 2.253536e+01 moveto -3.559067e+01 2.14491e+01 lineto -3.764578e+01 2.100415e+01 lineto -3.727056e+01 2.20843e+01 lineto -3.518726e+01 2.253536e+01 lineto -closepath -gsave -5.384018e-01 5.384018e-01 6.730022e-01 setrgbcolor -fill -grestore -newpath -3.481208e+01 2.364383e+01 moveto -3.518726e+01 2.253536e+01 lineto -3.727056e+01 2.20843e+01 lineto -3.69216e+01 2.31871e+01 lineto -3.481208e+01 2.364383e+01 lineto -closepath -gsave -5.405747e-01 5.405747e-01 6.757184e-01 setrgbcolor -fill -grestore -newpath -3.446548e+01 2.477347e+01 moveto -3.481208e+01 2.364383e+01 lineto -3.69216e+01 2.31871e+01 lineto -3.659922e+01 2.431149e+01 lineto -3.446548e+01 2.477347e+01 lineto -closepath -gsave -5.427569e-01 5.427569e-01 6.784461e-01 setrgbcolor -fill -grestore -newpath -5.499433e+01 3.675863e+00 moveto -5.587325e+01 3.503345e+00 lineto -5.661521e+01 3.370119e+00 lineto -5.580774e+01 3.529808e+00 lineto -5.499433e+01 3.675863e+00 lineto -closepath -gsave -4.950602e-01 4.950602e-01 6.188253e-01 setrgbcolor -fill -grestore -newpath -5.412489e+01 3.888455e+00 moveto -5.499433e+01 3.675863e+00 lineto -5.580774e+01 3.529808e+00 lineto -5.500898e+01 3.729708e+00 lineto -5.412489e+01 3.888455e+00 lineto -closepath -gsave -4.968077e-01 4.968077e-01 6.210096e-01 setrgbcolor -fill -grestore -newpath -5.326574e+01 4.140918e+00 moveto -5.412489e+01 3.888455e+00 lineto -5.500898e+01 3.729708e+00 lineto -5.421968e+01 3.96963e+00 lineto -5.326574e+01 4.140918e+00 lineto -closepath -gsave -4.986049e-01 4.986049e-01 6.232561e-01 setrgbcolor -fill -grestore -newpath -5.24177e+01 4.433014e+00 moveto -5.326574e+01 4.140918e+00 lineto -5.421968e+01 3.96963e+00 lineto -5.344058e+01 4.249347e+00 lineto -5.24177e+01 4.433014e+00 lineto -closepath -gsave -5.004508e-01 5.004508e-01 6.255635e-01 setrgbcolor -fill -grestore -newpath -5.158158e+01 4.764466e+00 moveto -5.24177e+01 4.433014e+00 lineto -5.344058e+01 4.249347e+00 lineto -5.267243e+01 4.568593e+00 lineto -5.158158e+01 4.764466e+00 lineto -closepath -gsave -5.023441e-01 5.023441e-01 6.279302e-01 setrgbcolor -fill -grestore -newpath -5.075816e+01 5.13496e+00 moveto -5.158158e+01 4.764466e+00 lineto -5.267243e+01 4.568593e+00 lineto -5.191594e+01 4.927068e+00 lineto -5.075816e+01 5.13496e+00 lineto -closepath -gsave -5.042837e-01 5.042837e-01 6.303546e-01 setrgbcolor -fill -grestore -newpath -4.994822e+01 5.544145e+00 moveto -5.075816e+01 5.13496e+00 lineto -5.191594e+01 4.927068e+00 lineto -5.117185e+01 5.32443e+00 lineto -4.994822e+01 5.544145e+00 lineto -closepath -gsave -5.06268e-01 5.06268e-01 6.32835e-01 setrgbcolor -fill -grestore -newpath -4.915253e+01 5.991634e+00 moveto -4.994822e+01 5.544145e+00 lineto -5.117185e+01 5.32443e+00 lineto -5.044085e+01 5.760305e+00 lineto -4.915253e+01 5.991634e+00 lineto -closepath -gsave -5.082957e-01 5.082957e-01 6.353696e-01 setrgbcolor -fill -grestore -newpath -4.837185e+01 6.477004e+00 moveto -4.915253e+01 5.991634e+00 lineto -5.044085e+01 5.760305e+00 lineto -4.972364e+01 6.234279e+00 lineto -4.837185e+01 6.477004e+00 lineto -closepath -gsave -5.103652e-01 5.103652e-01 6.379564e-01 setrgbcolor -fill -grestore -newpath -4.760692e+01 6.999794e+00 moveto -4.837185e+01 6.477004e+00 lineto -4.972364e+01 6.234279e+00 lineto -4.902089e+01 6.745903e+00 lineto -4.760692e+01 6.999794e+00 lineto -closepath -gsave -5.124748e-01 5.124748e-01 6.405935e-01 setrgbcolor -fill -grestore -newpath -4.685845e+01 7.559511e+00 moveto -4.760692e+01 6.999794e+00 lineto -4.902089e+01 6.745903e+00 lineto -4.833326e+01 7.294694e+00 lineto -4.685845e+01 7.559511e+00 lineto -closepath -gsave -5.146229e-01 5.146229e-01 6.432786e-01 setrgbcolor -fill -grestore -newpath -4.612715e+01 8.155623e+00 moveto -4.685845e+01 7.559511e+00 lineto -4.833326e+01 7.294694e+00 lineto -4.766142e+01 7.880131e+00 lineto -4.612715e+01 8.155623e+00 lineto -closepath -gsave -5.168076e-01 5.168076e-01 6.460095e-01 setrgbcolor -fill -grestore -newpath -4.541373e+01 8.787566e+00 moveto -4.612715e+01 8.155623e+00 lineto -4.766142e+01 7.880131e+00 lineto -4.7006e+01 8.50166e+00 lineto -4.541373e+01 8.787566e+00 lineto -closepath -gsave -5.190271e-01 5.190271e-01 6.487839e-01 setrgbcolor -fill -grestore -newpath -4.471885e+01 9.454743e+00 moveto -4.541373e+01 8.787566e+00 lineto -4.7006e+01 8.50166e+00 lineto -4.636761e+01 9.158694e+00 lineto -4.471885e+01 9.454743e+00 lineto -closepath -gsave -5.212795e-01 5.212795e-01 6.515994e-01 setrgbcolor -fill -grestore -newpath -4.404318e+01 1.015652e+01 moveto -4.471885e+01 9.454743e+00 lineto -4.636761e+01 9.158694e+00 lineto -4.574686e+01 9.850609e+00 lineto -4.404318e+01 1.015652e+01 lineto -closepath -gsave -5.235626e-01 5.235626e-01 6.544533e-01 setrgbcolor -fill -grestore -newpath -4.338734e+01 1.089224e+01 moveto -4.404318e+01 1.015652e+01 lineto -4.574686e+01 9.850609e+00 lineto -4.514434e+01 1.057675e+01 lineto -4.338734e+01 1.089224e+01 lineto -closepath -gsave -5.258744e-01 5.258744e-01 6.57343e-01 setrgbcolor -fill -grestore -newpath -4.275197e+01 1.166119e+01 moveto -4.338734e+01 1.089224e+01 lineto -4.514434e+01 1.057675e+01 lineto -4.456062e+01 1.133643e+01 lineto -4.275197e+01 1.166119e+01 lineto -closepath -gsave -5.282127e-01 5.282127e-01 6.602659e-01 setrgbcolor -fill -grestore -newpath -4.213766e+01 1.246266e+01 moveto -4.275197e+01 1.166119e+01 lineto -4.456062e+01 1.133643e+01 lineto -4.399625e+01 1.212893e+01 lineto -4.213766e+01 1.246266e+01 lineto -closepath -gsave -5.305752e-01 5.305752e-01 6.63219e-01 setrgbcolor -fill -grestore -newpath -4.1545e+01 1.329588e+01 moveto -4.213766e+01 1.246266e+01 lineto -4.399625e+01 1.212893e+01 lineto -4.345177e+01 1.29535e+01 lineto -4.1545e+01 1.329588e+01 lineto -closepath -gsave -5.329597e-01 5.329597e-01 6.661996e-01 setrgbcolor -fill -grestore -newpath -4.097455e+01 1.416007e+01 moveto -4.1545e+01 1.329588e+01 lineto -4.345177e+01 1.29535e+01 lineto -4.29277e+01 1.380936e+01 lineto -4.097455e+01 1.416007e+01 lineto -closepath -gsave -5.353637e-01 5.353637e-01 6.692046e-01 setrgbcolor -fill -grestore -newpath -4.042684e+01 1.50544e+01 moveto -4.097455e+01 1.416007e+01 lineto -4.29277e+01 1.380936e+01 lineto -4.242452e+01 1.46957e+01 lineto -4.042684e+01 1.50544e+01 lineto -closepath -gsave -5.377848e-01 5.377848e-01 6.722309e-01 setrgbcolor -fill -grestore -newpath -3.99024e+01 1.597803e+01 moveto -4.042684e+01 1.50544e+01 lineto -4.242452e+01 1.46957e+01 lineto -4.194271e+01 1.561167e+01 lineto -3.99024e+01 1.597803e+01 lineto -closepath -gsave -5.402205e-01 5.402205e-01 6.752756e-01 setrgbcolor -fill -grestore -newpath -3.940173e+01 1.693009e+01 moveto -3.99024e+01 1.597803e+01 lineto -4.194271e+01 1.561167e+01 lineto -4.148274e+01 1.655642e+01 lineto -3.940173e+01 1.693009e+01 lineto -closepath -gsave -5.426682e-01 5.426682e-01 6.783353e-01 setrgbcolor -fill -grestore -newpath -3.892529e+01 1.790967e+01 moveto -3.940173e+01 1.693009e+01 lineto -4.148274e+01 1.655642e+01 lineto -4.104503e+01 1.752905e+01 lineto -3.892529e+01 1.790967e+01 lineto -closepath -gsave -5.451255e-01 5.451255e-01 6.814069e-01 setrgbcolor -fill -grestore -newpath -3.847354e+01 1.891584e+01 moveto -3.892529e+01 1.790967e+01 lineto -4.104503e+01 1.752905e+01 lineto -4.063e+01 1.852863e+01 lineto -3.847354e+01 1.891584e+01 lineto -closepath -gsave -5.475896e-01 5.475896e-01 6.84487e-01 setrgbcolor -fill -grestore -newpath -3.80469e+01 1.994766e+01 moveto -3.847354e+01 1.891584e+01 lineto -4.063e+01 1.852863e+01 lineto -4.023805e+01 1.955422e+01 lineto -3.80469e+01 1.994766e+01 lineto -closepath -gsave -5.500579e-01 5.500579e-01 6.875724e-01 setrgbcolor -fill -grestore -newpath -3.764578e+01 2.100415e+01 moveto -3.80469e+01 1.994766e+01 lineto -4.023805e+01 1.955422e+01 lineto -3.986954e+01 2.060485e+01 lineto -3.764578e+01 2.100415e+01 lineto -closepath -gsave -5.525278e-01 5.525278e-01 6.906597e-01 setrgbcolor -fill -grestore -newpath -3.727056e+01 2.20843e+01 moveto -3.764578e+01 2.100415e+01 lineto -3.986954e+01 2.060485e+01 lineto -3.952483e+01 2.167953e+01 lineto -3.727056e+01 2.20843e+01 lineto -closepath -gsave -5.549963e-01 5.549963e-01 6.937454e-01 setrgbcolor -fill -grestore -newpath -3.69216e+01 2.31871e+01 moveto -3.727056e+01 2.20843e+01 lineto -3.952483e+01 2.167953e+01 lineto -3.920423e+01 2.277723e+01 lineto -3.69216e+01 2.31871e+01 lineto -closepath -gsave -5.574609e-01 5.574609e-01 6.968262e-01 setrgbcolor -fill -grestore -newpath -3.659922e+01 2.431149e+01 moveto -3.69216e+01 2.31871e+01 lineto -3.920423e+01 2.277723e+01 lineto -3.890806e+01 2.389692e+01 lineto -3.659922e+01 2.431149e+01 lineto -closepath -gsave -5.599188e-01 5.599188e-01 6.998985e-01 setrgbcolor -fill -grestore -newpath -5.580774e+01 3.529808e+00 moveto -5.661521e+01 3.370119e+00 lineto -5.740886e+01 3.252948e+00 lineto -5.667783e+01 3.401353e+00 lineto -5.580774e+01 3.529808e+00 lineto -closepath -gsave -5.000432e-01 5.000432e-01 6.25054e-01 setrgbcolor -fill -grestore -newpath -5.500898e+01 3.729708e+00 moveto -5.580774e+01 3.529808e+00 lineto -5.667783e+01 3.401353e+00 lineto -5.595467e+01 3.590091e+00 lineto -5.500898e+01 3.729708e+00 lineto -closepath -gsave -5.022847e-01 5.022847e-01 6.278559e-01 setrgbcolor -fill -grestore -newpath -5.421968e+01 3.96963e+00 moveto -5.500898e+01 3.729708e+00 lineto -5.595467e+01 3.590091e+00 lineto -5.524008e+01 3.818983e+00 lineto -5.421968e+01 3.96963e+00 lineto -closepath -gsave -5.045774e-01 5.045774e-01 6.307217e-01 setrgbcolor -fill -grestore -newpath -5.344058e+01 4.249347e+00 moveto -5.421968e+01 3.96963e+00 lineto -5.524008e+01 3.818983e+00 lineto -5.453472e+01 4.087812e+00 lineto -5.344058e+01 4.249347e+00 lineto -closepath -gsave -5.069196e-01 5.069196e-01 6.336495e-01 setrgbcolor -fill -grestore -newpath -5.267243e+01 4.568593e+00 moveto -5.344058e+01 4.249347e+00 lineto -5.453472e+01 4.087812e+00 lineto -5.383928e+01 4.396325e+00 lineto -5.267243e+01 4.568593e+00 lineto -closepath -gsave -5.093095e-01 5.093095e-01 6.366369e-01 setrgbcolor -fill -grestore -newpath -5.191594e+01 4.927068e+00 moveto -5.267243e+01 4.568593e+00 lineto -5.383928e+01 4.396325e+00 lineto -5.31544e+01 4.744228e+00 lineto -5.191594e+01 4.927068e+00 lineto -closepath -gsave -5.117451e-01 5.117451e-01 6.396814e-01 setrgbcolor -fill -grestore -newpath -5.117185e+01 5.32443e+00 moveto -5.191594e+01 4.927068e+00 lineto -5.31544e+01 4.744228e+00 lineto -5.248074e+01 5.131192e+00 lineto -5.117185e+01 5.32443e+00 lineto -closepath -gsave -5.142245e-01 5.142245e-01 6.427806e-01 setrgbcolor -fill -grestore -newpath -5.044085e+01 5.760305e+00 moveto -5.117185e+01 5.32443e+00 lineto -5.248074e+01 5.131192e+00 lineto -5.181893e+01 5.556852e+00 lineto -5.044085e+01 5.760305e+00 lineto -closepath -gsave -5.167454e-01 5.167454e-01 6.459318e-01 setrgbcolor -fill -grestore -newpath -4.972364e+01 6.234279e+00 moveto -5.044085e+01 5.760305e+00 lineto -5.181893e+01 5.556852e+00 lineto -5.11696e+01 6.020803e+00 lineto -4.972364e+01 6.234279e+00 lineto -closepath -gsave -5.193057e-01 5.193057e-01 6.491322e-01 setrgbcolor -fill -grestore -newpath -4.902089e+01 6.745903e+00 moveto -4.972364e+01 6.234279e+00 lineto -5.11696e+01 6.020803e+00 lineto -5.053337e+01 6.522607e+00 lineto -4.902089e+01 6.745903e+00 lineto -closepath -gsave -5.21903e-01 5.21903e-01 6.523787e-01 setrgbcolor -fill -grestore -newpath -4.833326e+01 7.294694e+00 moveto -4.902089e+01 6.745903e+00 lineto -5.053337e+01 6.522607e+00 lineto -4.991083e+01 7.061789e+00 lineto -4.833326e+01 7.294694e+00 lineto -closepath -gsave -5.245348e-01 5.245348e-01 6.556685e-01 setrgbcolor -fill -grestore -newpath -4.766142e+01 7.880131e+00 moveto -4.833326e+01 7.294694e+00 lineto -4.991083e+01 7.061789e+00 lineto -4.930259e+01 7.637837e+00 lineto -4.766142e+01 7.880131e+00 lineto -closepath -gsave -5.271986e-01 5.271986e-01 6.589983e-01 setrgbcolor -fill -grestore -newpath -4.7006e+01 8.50166e+00 moveto -4.766142e+01 7.880131e+00 lineto -4.930259e+01 7.637837e+00 lineto -4.87092e+01 8.250208e+00 lineto -4.7006e+01 8.50166e+00 lineto -closepath -gsave -5.298918e-01 5.298918e-01 6.623647e-01 setrgbcolor -fill -grestore -newpath -4.636761e+01 9.158694e+00 moveto -4.7006e+01 8.50166e+00 lineto -4.87092e+01 8.250208e+00 lineto -4.813124e+01 8.89832e+00 lineto -4.636761e+01 9.158694e+00 lineto -closepath -gsave -5.326116e-01 5.326116e-01 6.657645e-01 setrgbcolor -fill -grestore -newpath -4.574686e+01 9.850609e+00 moveto -4.636761e+01 9.158694e+00 lineto -4.813124e+01 8.89832e+00 lineto -4.756924e+01 9.58156e+00 lineto -4.574686e+01 9.850609e+00 lineto -closepath -gsave -5.353553e-01 5.353553e-01 6.691942e-01 setrgbcolor -fill -grestore -newpath -4.514434e+01 1.057675e+01 moveto -4.574686e+01 9.850609e+00 lineto -4.756924e+01 9.58156e+00 lineto -4.702376e+01 1.029928e+01 lineto -4.514434e+01 1.057675e+01 lineto -closepath -gsave -5.3812e-01 5.3812e-01 6.726501e-01 setrgbcolor -fill -grestore -newpath -4.456062e+01 1.133643e+01 moveto -4.514434e+01 1.057675e+01 lineto -4.702376e+01 1.029928e+01 lineto -4.649529e+01 1.105081e+01 lineto -4.456062e+01 1.133643e+01 lineto -closepath -gsave -5.409028e-01 5.409028e-01 6.761285e-01 setrgbcolor -fill -grestore -newpath -4.399625e+01 1.212893e+01 moveto -4.456062e+01 1.133643e+01 lineto -4.649529e+01 1.105081e+01 lineto -4.598434e+01 1.183542e+01 lineto -4.399625e+01 1.212893e+01 lineto -closepath -gsave -5.437006e-01 5.437006e-01 6.796258e-01 setrgbcolor -fill -grestore -newpath -4.345177e+01 1.29535e+01 moveto -4.399625e+01 1.212893e+01 lineto -4.598434e+01 1.183542e+01 lineto -4.54914e+01 1.265238e+01 lineto -4.345177e+01 1.29535e+01 lineto -closepath -gsave -5.465104e-01 5.465104e-01 6.83138e-01 setrgbcolor -fill -grestore -newpath -4.29277e+01 1.380936e+01 moveto -4.345177e+01 1.29535e+01 lineto -4.54914e+01 1.265238e+01 lineto -4.501693e+01 1.350092e+01 lineto -4.29277e+01 1.380936e+01 lineto -closepath -gsave -5.493291e-01 5.493291e-01 6.866613e-01 setrgbcolor -fill -grestore -newpath -4.242452e+01 1.46957e+01 moveto -4.29277e+01 1.380936e+01 lineto -4.501693e+01 1.350092e+01 lineto -4.456137e+01 1.438022e+01 lineto -4.242452e+01 1.46957e+01 lineto -closepath -gsave -5.521535e-01 5.521535e-01 6.901918e-01 setrgbcolor -fill -grestore -newpath -4.194271e+01 1.561167e+01 moveto -4.242452e+01 1.46957e+01 lineto -4.456137e+01 1.438022e+01 lineto -4.412517e+01 1.528946e+01 lineto -4.194271e+01 1.561167e+01 lineto -closepath -gsave -5.549804e-01 5.549804e-01 6.937255e-01 setrgbcolor -fill -grestore -newpath -4.148274e+01 1.655642e+01 moveto -4.194271e+01 1.561167e+01 lineto -4.412517e+01 1.528946e+01 lineto -4.370874e+01 1.622778e+01 lineto -4.148274e+01 1.655642e+01 lineto -closepath -gsave -5.578066e-01 5.578066e-01 6.972582e-01 setrgbcolor -fill -grestore -newpath -4.104503e+01 1.752905e+01 moveto -4.148274e+01 1.655642e+01 lineto -4.370874e+01 1.622778e+01 lineto -4.331246e+01 1.719429e+01 lineto -4.104503e+01 1.752905e+01 lineto -closepath -gsave -5.606288e-01 5.606288e-01 7.007861e-01 setrgbcolor -fill -grestore -newpath -4.063e+01 1.852863e+01 moveto -4.104503e+01 1.752905e+01 lineto -4.331246e+01 1.719429e+01 lineto -4.293672e+01 1.818808e+01 lineto -4.063e+01 1.852863e+01 lineto -closepath -gsave -5.634439e-01 5.634439e-01 7.043048e-01 setrgbcolor -fill -grestore -newpath -4.023805e+01 1.955422e+01 moveto -4.063e+01 1.852863e+01 lineto -4.293672e+01 1.818808e+01 lineto -4.258186e+01 1.920819e+01 lineto -4.023805e+01 1.955422e+01 lineto -closepath -gsave -5.662484e-01 5.662484e-01 7.078104e-01 setrgbcolor -fill -grestore -newpath -3.986954e+01 2.060485e+01 moveto -4.023805e+01 1.955422e+01 lineto -4.258186e+01 1.920819e+01 lineto -4.224824e+01 2.025367e+01 lineto -3.986954e+01 2.060485e+01 lineto -closepath -gsave -5.690391e-01 5.690391e-01 7.112988e-01 setrgbcolor -fill -grestore -newpath -3.952483e+01 2.167953e+01 moveto -3.986954e+01 2.060485e+01 lineto -4.224824e+01 2.025367e+01 lineto -4.193615e+01 2.132353e+01 lineto -3.952483e+01 2.167953e+01 lineto -closepath -gsave -5.718127e-01 5.718127e-01 7.147658e-01 setrgbcolor -fill -grestore -newpath -3.920423e+01 2.277723e+01 moveto -3.952483e+01 2.167953e+01 lineto -4.193615e+01 2.132353e+01 lineto -4.16459e+01 2.241675e+01 lineto -3.920423e+01 2.277723e+01 lineto -closepath -gsave -5.745659e-01 5.745659e-01 7.182074e-01 setrgbcolor -fill -grestore -newpath -3.890806e+01 2.389692e+01 moveto -3.920423e+01 2.277723e+01 lineto -4.16459e+01 2.241675e+01 lineto -4.137776e+01 2.353231e+01 lineto -3.890806e+01 2.389692e+01 lineto -closepath -gsave -5.772955e-01 5.772955e-01 7.216193e-01 setrgbcolor -fill -grestore -newpath -5.740886e+01 3.252948e+00 moveto -5.814709e+01 3.145016e+00 lineto -5.890581e+01 3.054385e+00 lineto -5.824932e+01 3.152554e+00 lineto -5.740886e+01 3.252948e+00 lineto -closepath -gsave -5.023185e-01 5.023185e-01 6.278981e-01 setrgbcolor -fill -grestore -newpath -5.667783e+01 3.401353e+00 moveto -5.740886e+01 3.252948e+00 lineto -5.824932e+01 3.152554e+00 lineto -5.759922e+01 3.291291e+00 lineto -5.667783e+01 3.401353e+00 lineto -closepath -gsave -5.050024e-01 5.050024e-01 6.31253e-01 setrgbcolor -fill -grestore -newpath -5.595467e+01 3.590091e+00 moveto -5.667783e+01 3.401353e+00 lineto -5.759922e+01 3.291291e+00 lineto -5.695613e+01 3.470465e+00 lineto -5.595467e+01 3.590091e+00 lineto -closepath -gsave -5.077419e-01 5.077419e-01 6.346774e-01 setrgbcolor -fill -grestore -newpath -5.524008e+01 3.818983e+00 moveto -5.595467e+01 3.590091e+00 lineto -5.695613e+01 3.470465e+00 lineto -5.632065e+01 3.689906e+00 lineto -5.524008e+01 3.818983e+00 lineto -closepath -gsave -5.105346e-01 5.105346e-01 6.381683e-01 setrgbcolor -fill -grestore -newpath -5.453472e+01 4.087812e+00 moveto -5.524008e+01 3.818983e+00 lineto -5.632065e+01 3.689906e+00 lineto -5.569339e+01 3.949407e+00 lineto -5.453472e+01 4.087812e+00 lineto -closepath -gsave -5.133782e-01 5.133782e-01 6.417228e-01 setrgbcolor -fill -grestore -newpath -5.383928e+01 4.396325e+00 moveto -5.453472e+01 4.087812e+00 lineto -5.569339e+01 3.949407e+00 lineto -5.507494e+01 4.248722e+00 lineto -5.383928e+01 4.396325e+00 lineto -closepath -gsave -5.162701e-01 5.162701e-01 6.453376e-01 setrgbcolor -fill -grestore -newpath -5.31544e+01 4.744228e+00 moveto -5.383928e+01 4.396325e+00 lineto -5.507494e+01 4.248722e+00 lineto -5.446589e+01 4.587567e+00 lineto -5.31544e+01 4.744228e+00 lineto -closepath -gsave -5.192076e-01 5.192076e-01 6.490095e-01 setrgbcolor -fill -grestore -newpath -5.248074e+01 5.131192e+00 moveto -5.31544e+01 4.744228e+00 lineto -5.446589e+01 4.587567e+00 lineto -5.386681e+01 4.965622e+00 lineto -5.248074e+01 5.131192e+00 lineto -closepath -gsave -5.221878e-01 5.221878e-01 6.527348e-01 setrgbcolor -fill -grestore -newpath -5.181893e+01 5.556852e+00 moveto -5.248074e+01 5.131192e+00 lineto -5.386681e+01 4.965622e+00 lineto -5.327828e+01 5.382529e+00 lineto -5.181893e+01 5.556852e+00 lineto -closepath -gsave -5.25208e-01 5.25208e-01 6.5651e-01 setrgbcolor -fill -grestore -newpath -5.11696e+01 6.020803e+00 moveto -5.181893e+01 5.556852e+00 lineto -5.327828e+01 5.382529e+00 lineto -5.270084e+01 5.837893e+00 lineto -5.11696e+01 6.020803e+00 lineto -closepath -gsave -5.282649e-01 5.282649e-01 6.603311e-01 setrgbcolor -fill -grestore -newpath -5.053337e+01 6.522607e+00 moveto -5.11696e+01 6.020803e+00 lineto -5.270084e+01 5.837893e+00 lineto -5.213505e+01 6.331283e+00 lineto -5.053337e+01 6.522607e+00 lineto -closepath -gsave -5.313555e-01 5.313555e-01 6.641944e-01 setrgbcolor -fill -grestore -newpath -4.991083e+01 7.061789e+00 moveto -5.053337e+01 6.522607e+00 lineto -5.213505e+01 6.331283e+00 lineto -5.158144e+01 6.862231e+00 lineto -4.991083e+01 7.061789e+00 lineto -closepath -gsave -5.344764e-01 5.344764e-01 6.680956e-01 setrgbcolor -fill -grestore -newpath -4.930259e+01 7.637837e+00 moveto -4.991083e+01 7.061789e+00 lineto -5.158144e+01 6.862231e+00 lineto -5.104053e+01 7.430236e+00 lineto -4.930259e+01 7.637837e+00 lineto -closepath -gsave -5.376244e-01 5.376244e-01 6.720305e-01 setrgbcolor -fill -grestore -newpath -4.87092e+01 8.250208e+00 moveto -4.930259e+01 7.637837e+00 lineto -5.104053e+01 7.430236e+00 lineto -5.051284e+01 8.034758e+00 lineto -4.87092e+01 8.250208e+00 lineto -closepath -gsave -5.407959e-01 5.407959e-01 6.759948e-01 setrgbcolor -fill -grestore -newpath -4.813124e+01 8.89832e+00 moveto -4.87092e+01 8.250208e+00 lineto -5.051284e+01 8.034758e+00 lineto -4.999887e+01 8.675227e+00 lineto -4.813124e+01 8.89832e+00 lineto -closepath -gsave -5.439873e-01 5.439873e-01 6.799841e-01 setrgbcolor -fill -grestore -newpath -4.756924e+01 9.58156e+00 moveto -4.813124e+01 8.89832e+00 lineto -4.999887e+01 8.675227e+00 lineto -4.94991e+01 9.351035e+00 lineto -4.756924e+01 9.58156e+00 lineto -closepath -gsave -5.471951e-01 5.471951e-01 6.839939e-01 setrgbcolor -fill -grestore -newpath -4.702376e+01 1.029928e+01 moveto -4.756924e+01 9.58156e+00 lineto -4.94991e+01 9.351035e+00 lineto -4.9014e+01 1.006154e+01 lineto -4.702376e+01 1.029928e+01 lineto -closepath -gsave -5.504156e-01 5.504156e-01 6.880194e-01 setrgbcolor -fill -grestore -newpath -4.649529e+01 1.105081e+01 moveto -4.702376e+01 1.029928e+01 lineto -4.9014e+01 1.006154e+01 lineto -4.854404e+01 1.080608e+01 lineto -4.649529e+01 1.105081e+01 lineto -closepath -gsave -5.536449e-01 5.536449e-01 6.920561e-01 setrgbcolor -fill -grestore -newpath -4.598434e+01 1.183542e+01 moveto -4.649529e+01 1.105081e+01 lineto -4.854404e+01 1.080608e+01 lineto -4.808967e+01 1.158393e+01 lineto -4.598434e+01 1.183542e+01 lineto -closepath -gsave -5.568794e-01 5.568794e-01 6.960992e-01 setrgbcolor -fill -grestore -newpath -4.54914e+01 1.265238e+01 moveto -4.598434e+01 1.183542e+01 lineto -4.808967e+01 1.158393e+01 lineto -4.76513e+01 1.239438e+01 lineto -4.54914e+01 1.265238e+01 lineto -closepath -gsave -5.601151e-01 5.601151e-01 7.001439e-01 setrgbcolor -fill -grestore -newpath -4.501693e+01 1.350092e+01 moveto -4.54914e+01 1.265238e+01 lineto -4.76513e+01 1.239438e+01 lineto -4.722936e+01 1.323664e+01 lineto -4.501693e+01 1.350092e+01 lineto -closepath -gsave -5.633482e-01 5.633482e-01 7.041852e-01 setrgbcolor -fill -grestore -newpath -4.456137e+01 1.438022e+01 moveto -4.501693e+01 1.350092e+01 lineto -4.722936e+01 1.323664e+01 lineto -4.682424e+01 1.410992e+01 lineto -4.456137e+01 1.438022e+01 lineto -closepath -gsave -5.665748e-01 5.665748e-01 7.082185e-01 setrgbcolor -fill -grestore -newpath -4.412517e+01 1.528946e+01 moveto -4.456137e+01 1.438022e+01 lineto -4.682424e+01 1.410992e+01 lineto -4.643634e+01 1.501339e+01 lineto -4.412517e+01 1.528946e+01 lineto -closepath -gsave -5.697909e-01 5.697909e-01 7.122387e-01 setrgbcolor -fill -grestore -newpath -4.370874e+01 1.622778e+01 moveto -4.412517e+01 1.528946e+01 lineto -4.643634e+01 1.501339e+01 lineto -4.606601e+01 1.59462e+01 lineto -4.370874e+01 1.622778e+01 lineto -closepath -gsave -5.729927e-01 5.729927e-01 7.162409e-01 setrgbcolor -fill -grestore -newpath -4.331246e+01 1.719429e+01 moveto -4.370874e+01 1.622778e+01 lineto -4.606601e+01 1.59462e+01 lineto -4.57136e+01 1.690747e+01 lineto -4.331246e+01 1.719429e+01 lineto -closepath -gsave -5.761763e-01 5.761763e-01 7.202203e-01 setrgbcolor -fill -grestore -newpath -4.293672e+01 1.818808e+01 moveto -4.331246e+01 1.719429e+01 lineto -4.57136e+01 1.690747e+01 lineto -4.537946e+01 1.789628e+01 lineto -4.293672e+01 1.818808e+01 lineto -closepath -gsave -5.793376e-01 5.793376e-01 7.24172e-01 setrgbcolor -fill -grestore -newpath -4.258186e+01 1.920819e+01 moveto -4.293672e+01 1.818808e+01 lineto -4.537946e+01 1.789628e+01 lineto -4.50639e+01 1.891171e+01 lineto -4.258186e+01 1.920819e+01 lineto -closepath -gsave -5.824729e-01 5.824729e-01 7.280911e-01 setrgbcolor -fill -grestore -newpath -4.224824e+01 2.025367e+01 moveto -4.258186e+01 1.920819e+01 lineto -4.50639e+01 1.891171e+01 lineto -4.47672e+01 1.995278e+01 lineto -4.224824e+01 2.025367e+01 lineto -closepath -gsave -5.855783e-01 5.855783e-01 7.319729e-01 setrgbcolor -fill -grestore -newpath -4.193615e+01 2.132353e+01 moveto -4.224824e+01 2.025367e+01 lineto -4.47672e+01 1.995278e+01 lineto -4.448967e+01 2.101851e+01 lineto -4.193615e+01 2.132353e+01 lineto -closepath -gsave -5.8865e-01 5.8865e-01 7.358125e-01 setrgbcolor -fill -grestore -newpath -4.16459e+01 2.241675e+01 moveto -4.193615e+01 2.132353e+01 lineto -4.448967e+01 2.101851e+01 lineto -4.423156e+01 2.210789e+01 lineto -4.16459e+01 2.241675e+01 lineto -closepath -gsave -5.916841e-01 5.916841e-01 7.396052e-01 setrgbcolor -fill -grestore -newpath -4.137776e+01 2.353231e+01 moveto -4.16459e+01 2.241675e+01 lineto -4.423156e+01 2.210789e+01 lineto -4.399311e+01 2.32199e+01 lineto -4.137776e+01 2.353231e+01 lineto -closepath -gsave -5.946771e-01 5.946771e-01 7.433463e-01 setrgbcolor -fill -grestore -newpath -5.824932e+01 3.152554e+00 moveto -5.890581e+01 3.054385e+00 lineto -5.97021e+01 2.979458e+00 lineto -5.913139e+01 3.069555e+00 lineto -5.824932e+01 3.152554e+00 lineto -closepath -gsave -5.067205e-01 5.067205e-01 6.334006e-01 setrgbcolor -fill -grestore -newpath -5.759922e+01 3.291291e+00 moveto -5.824932e+01 3.152554e+00 lineto -5.913139e+01 3.069555e+00 lineto -5.856624e+01 3.200299e+00 lineto -5.759922e+01 3.291291e+00 lineto -closepath -gsave -5.098981e-01 5.098981e-01 6.373727e-01 setrgbcolor -fill -grestore -newpath -5.695613e+01 3.470465e+00 moveto -5.759922e+01 3.291291e+00 lineto -5.856624e+01 3.200299e+00 lineto -5.800717e+01 3.371566e+00 lineto -5.695613e+01 3.470465e+00 lineto -closepath -gsave -5.131346e-01 5.131346e-01 6.414182e-01 setrgbcolor -fill -grestore -newpath -5.632065e+01 3.689906e+00 moveto -5.695613e+01 3.470465e+00 lineto -5.800717e+01 3.371566e+00 lineto -5.745473e+01 3.583195e+00 lineto -5.632065e+01 3.689906e+00 lineto -closepath -gsave -5.164267e-01 5.164267e-01 6.455334e-01 setrgbcolor -fill -grestore -newpath -5.569339e+01 3.949407e+00 moveto -5.632065e+01 3.689906e+00 lineto -5.745473e+01 3.583195e+00 lineto -5.690943e+01 3.834983e+00 lineto -5.569339e+01 3.949407e+00 lineto -closepath -gsave -5.197713e-01 5.197713e-01 6.497141e-01 setrgbcolor -fill -grestore -newpath -5.507494e+01 4.248722e+00 moveto -5.569339e+01 3.949407e+00 lineto -5.690943e+01 3.834983e+00 lineto -5.63718e+01 4.126695e+00 lineto -5.507494e+01 4.248722e+00 lineto -closepath -gsave -5.23165e-01 5.23165e-01 6.539563e-01 setrgbcolor -fill -grestore -newpath -5.446589e+01 4.587567e+00 moveto -5.507494e+01 4.248722e+00 lineto -5.63718e+01 4.126695e+00 lineto -5.584233e+01 4.458052e+00 lineto -5.446589e+01 4.587567e+00 lineto -closepath -gsave -5.266043e-01 5.266043e-01 6.582554e-01 setrgbcolor -fill -grestore -newpath -5.386681e+01 4.965622e+00 moveto -5.446589e+01 4.587567e+00 lineto -5.584233e+01 4.458052e+00 lineto -5.532153e+01 4.828741e+00 lineto -5.386681e+01 4.965622e+00 lineto -closepath -gsave -5.300855e-01 5.300855e-01 6.626068e-01 setrgbcolor -fill -grestore -newpath -5.327828e+01 5.382529e+00 moveto -5.386681e+01 4.965622e+00 lineto -5.532153e+01 4.828741e+00 lineto -5.480989e+01 5.238412e+00 lineto -5.327828e+01 5.382529e+00 lineto -closepath -gsave -5.336047e-01 5.336047e-01 6.670058e-01 setrgbcolor -fill -grestore -newpath -5.270084e+01 5.837893e+00 moveto -5.327828e+01 5.382529e+00 lineto -5.480989e+01 5.238412e+00 lineto -5.430791e+01 5.686677e+00 lineto -5.270084e+01 5.837893e+00 lineto -closepath -gsave -5.371579e-01 5.371579e-01 6.714474e-01 setrgbcolor -fill -grestore -newpath -5.213505e+01 6.331283e+00 moveto -5.270084e+01 5.837893e+00 lineto -5.430791e+01 5.686677e+00 lineto -5.381604e+01 6.17311e+00 lineto -5.213505e+01 6.331283e+00 lineto -closepath -gsave -5.407413e-01 5.407413e-01 6.759266e-01 setrgbcolor -fill -grestore -newpath -5.158144e+01 6.862231e+00 moveto -5.213505e+01 6.331283e+00 lineto -5.381604e+01 6.17311e+00 lineto -5.333477e+01 6.697252e+00 lineto -5.158144e+01 6.862231e+00 lineto -closepath -gsave -5.443504e-01 5.443504e-01 6.80438e-01 setrgbcolor -fill -grestore -newpath -5.104053e+01 7.430236e+00 moveto -5.158144e+01 6.862231e+00 lineto -5.333477e+01 6.697252e+00 lineto -5.286454e+01 7.258606e+00 lineto -5.104053e+01 7.430236e+00 lineto -closepath -gsave -5.479811e-01 5.479811e-01 6.849764e-01 setrgbcolor -fill -grestore -newpath -5.051284e+01 8.034758e+00 moveto -5.104053e+01 7.430236e+00 lineto -5.286454e+01 7.258606e+00 lineto -5.24058e+01 7.856641e+00 lineto -5.051284e+01 8.034758e+00 lineto -closepath -gsave -5.51629e-01 5.51629e-01 6.895363e-01 setrgbcolor -fill -grestore -newpath -4.999887e+01 8.675227e+00 moveto -5.051284e+01 8.034758e+00 lineto -5.24058e+01 7.856641e+00 lineto -5.195898e+01 8.49079e+00 lineto -4.999887e+01 8.675227e+00 lineto -closepath -gsave -5.552896e-01 5.552896e-01 6.94112e-01 setrgbcolor -fill -grestore -newpath -4.94991e+01 9.351035e+00 moveto -4.999887e+01 8.675227e+00 lineto -5.195898e+01 8.49079e+00 lineto -5.152452e+01 9.160453e+00 lineto -4.94991e+01 9.351035e+00 lineto -closepath -gsave -5.589585e-01 5.589585e-01 6.986981e-01 setrgbcolor -fill -grestore -newpath -4.9014e+01 1.006154e+01 moveto -4.94991e+01 9.351035e+00 lineto -5.152452e+01 9.160453e+00 lineto -5.110281e+01 9.864997e+00 lineto -4.9014e+01 1.006154e+01 lineto -closepath -gsave -5.626311e-01 5.626311e-01 7.032888e-01 setrgbcolor -fill -grestore -newpath -4.854404e+01 1.080608e+01 moveto -4.9014e+01 1.006154e+01 lineto -5.110281e+01 9.864997e+00 lineto -5.069425e+01 1.060375e+01 lineto -4.854404e+01 1.080608e+01 lineto -closepath -gsave -5.663027e-01 5.663027e-01 7.078783e-01 setrgbcolor -fill -grestore -newpath -4.808967e+01 1.158393e+01 moveto -4.854404e+01 1.080608e+01 lineto -5.069425e+01 1.060375e+01 lineto -5.029925e+01 1.137602e+01 lineto -4.808967e+01 1.158393e+01 lineto -closepath -gsave -5.699688e-01 5.699688e-01 7.12461e-01 setrgbcolor -fill -grestore -newpath -4.76513e+01 1.239438e+01 moveto -4.808967e+01 1.158393e+01 lineto -5.029925e+01 1.137602e+01 lineto -4.991816e+01 1.218108e+01 lineto -4.76513e+01 1.239438e+01 lineto -closepath -gsave -5.736247e-01 5.736247e-01 7.170308e-01 setrgbcolor -fill -grestore -newpath -4.722936e+01 1.323664e+01 moveto -4.76513e+01 1.239438e+01 lineto -4.991816e+01 1.218108e+01 lineto -4.955135e+01 1.301815e+01 lineto -4.722936e+01 1.323664e+01 lineto -closepath -gsave -5.772657e-01 5.772657e-01 7.215821e-01 setrgbcolor -fill -grestore -newpath -4.682424e+01 1.410992e+01 moveto -4.722936e+01 1.323664e+01 lineto -4.955135e+01 1.301815e+01 lineto -4.919917e+01 1.388645e+01 lineto -4.682424e+01 1.410992e+01 lineto -closepath -gsave -5.808873e-01 5.808873e-01 7.261091e-01 setrgbcolor -fill -grestore -newpath -4.643634e+01 1.501339e+01 moveto -4.682424e+01 1.410992e+01 lineto -4.919917e+01 1.388645e+01 lineto -4.886195e+01 1.478515e+01 lineto -4.643634e+01 1.501339e+01 lineto -closepath -gsave -5.844848e-01 5.844848e-01 7.30606e-01 setrgbcolor -fill -grestore -newpath -4.606601e+01 1.59462e+01 moveto -4.643634e+01 1.501339e+01 lineto -4.886195e+01 1.478515e+01 lineto -4.854001e+01 1.571341e+01 lineto -4.606601e+01 1.59462e+01 lineto -closepath -gsave -5.880536e-01 5.880536e-01 7.35067e-01 setrgbcolor -fill -grestore -newpath -4.57136e+01 1.690747e+01 moveto -4.606601e+01 1.59462e+01 lineto -4.854001e+01 1.571341e+01 lineto -4.823365e+01 1.667035e+01 lineto -4.57136e+01 1.690747e+01 lineto -closepath -gsave -5.915892e-01 5.915892e-01 7.394865e-01 setrgbcolor -fill -grestore -newpath -4.537946e+01 1.789628e+01 moveto -4.57136e+01 1.690747e+01 lineto -4.823365e+01 1.667035e+01 lineto -4.794317e+01 1.765505e+01 lineto -4.537946e+01 1.789628e+01 lineto -closepath -gsave -5.95087e-01 5.95087e-01 7.438587e-01 setrgbcolor -fill -grestore -newpath -4.50639e+01 1.891171e+01 moveto -4.537946e+01 1.789628e+01 lineto -4.794317e+01 1.765505e+01 lineto -4.766884e+01 1.866659e+01 lineto -4.50639e+01 1.891171e+01 lineto -closepath -gsave -5.985426e-01 5.985426e-01 7.481783e-01 setrgbcolor -fill -grestore -newpath -4.47672e+01 1.995278e+01 moveto -4.50639e+01 1.891171e+01 lineto -4.766884e+01 1.866659e+01 lineto -4.741092e+01 1.970402e+01 lineto -4.47672e+01 1.995278e+01 lineto -closepath -gsave -6.019517e-01 6.019517e-01 7.524397e-01 setrgbcolor -fill -grestore -newpath -4.448967e+01 2.101851e+01 moveto -4.47672e+01 1.995278e+01 lineto -4.741092e+01 1.970402e+01 lineto -4.716965e+01 2.076634e+01 lineto -4.448967e+01 2.101851e+01 lineto -closepath -gsave -6.0531e-01 6.0531e-01 7.566375e-01 setrgbcolor -fill -grestore -newpath -4.423156e+01 2.210789e+01 moveto -4.448967e+01 2.101851e+01 lineto -4.716965e+01 2.076634e+01 lineto -4.694526e+01 2.185255e+01 lineto -4.423156e+01 2.210789e+01 lineto -closepath -gsave -6.086131e-01 6.086131e-01 7.607664e-01 setrgbcolor -fill -grestore -newpath -4.399311e+01 2.32199e+01 moveto -4.423156e+01 2.210789e+01 lineto -4.694526e+01 2.185255e+01 lineto -4.673796e+01 2.296162e+01 lineto -4.399311e+01 2.32199e+01 lineto -closepath -gsave -6.118571e-01 6.118571e-01 7.648214e-01 setrgbcolor -fill -grestore -newpath -5.97021e+01 2.979458e+00 moveto -6.027783e+01 2.930093e+00 lineto -6.101671e+01 2.877717e+00 lineto -6.053106e+01 2.920696e+00 lineto -5.97021e+01 2.979458e+00 lineto -closepath -gsave -5.074265e-01 5.074265e-01 6.342831e-01 setrgbcolor -fill -grestore -newpath -5.913139e+01 3.069555e+00 moveto -5.97021e+01 2.979458e+00 lineto -6.053106e+01 2.920696e+00 lineto -6.004965e+01 3.004464e+00 lineto -5.913139e+01 3.069555e+00 lineto -closepath -gsave -5.110253e-01 5.110253e-01 6.387816e-01 setrgbcolor -fill -grestore -newpath -5.856624e+01 3.200299e+00 moveto -5.913139e+01 3.069555e+00 lineto -6.004965e+01 3.004464e+00 lineto -5.957293e+01 3.128939e+00 lineto -5.856624e+01 3.200299e+00 lineto -closepath -gsave -5.146902e-01 5.146902e-01 6.433627e-01 setrgbcolor -fill -grestore -newpath -5.800717e+01 3.371566e+00 moveto -5.856624e+01 3.200299e+00 lineto -5.957293e+01 3.128939e+00 lineto -5.910134e+01 3.294006e+00 lineto -5.800717e+01 3.371566e+00 lineto -closepath -gsave -5.184174e-01 5.184174e-01 6.480217e-01 setrgbcolor -fill -grestore -newpath -5.745473e+01 3.583195e+00 moveto -5.800717e+01 3.371566e+00 lineto -5.910134e+01 3.294006e+00 lineto -5.863534e+01 3.499507e+00 lineto -5.745473e+01 3.583195e+00 lineto -closepath -gsave -5.22203e-01 5.22203e-01 6.527538e-01 setrgbcolor -fill -grestore -newpath -5.690943e+01 3.834983e+00 moveto -5.745473e+01 3.583195e+00 lineto -5.863534e+01 3.499507e+00 lineto -5.817536e+01 3.745247e+00 lineto -5.690943e+01 3.834983e+00 lineto -closepath -gsave -5.260429e-01 5.260429e-01 6.575536e-01 setrgbcolor -fill -grestore -newpath -5.63718e+01 4.126695e+00 moveto -5.690943e+01 3.834983e+00 lineto -5.817536e+01 3.745247e+00 lineto -5.772184e+01 4.030995e+00 lineto -5.63718e+01 4.126695e+00 lineto -closepath -gsave -5.299328e-01 5.299328e-01 6.62416e-01 setrgbcolor -fill -grestore -newpath -5.584233e+01 4.458052e+00 moveto -5.63718e+01 4.126695e+00 lineto -5.772184e+01 4.030995e+00 lineto -5.727522e+01 4.35648e+00 lineto -5.584233e+01 4.458052e+00 lineto -closepath -gsave -5.338681e-01 5.338681e-01 6.673351e-01 setrgbcolor -fill -grestore -newpath -5.532153e+01 4.828741e+00 moveto -5.584233e+01 4.458052e+00 lineto -5.727522e+01 4.35648e+00 lineto -5.683591e+01 4.721393e+00 lineto -5.532153e+01 4.828741e+00 lineto -closepath -gsave -5.378442e-01 5.378442e-01 6.723053e-01 setrgbcolor -fill -grestore -newpath -5.480989e+01 5.238412e+00 moveto -5.532153e+01 4.828741e+00 lineto -5.683591e+01 4.721393e+00 lineto -5.640433e+01 5.125389e+00 lineto -5.480989e+01 5.238412e+00 lineto -closepath -gsave -5.418564e-01 5.418564e-01 6.773205e-01 setrgbcolor -fill -grestore -newpath -5.430791e+01 5.686677e+00 moveto -5.480989e+01 5.238412e+00 lineto -5.640433e+01 5.125389e+00 lineto -5.598089e+01 5.568086e+00 lineto -5.430791e+01 5.686677e+00 lineto -closepath -gsave -5.458997e-01 5.458997e-01 6.823746e-01 setrgbcolor -fill -grestore -newpath -5.381604e+01 6.17311e+00 moveto -5.430791e+01 5.686677e+00 lineto -5.598089e+01 5.568086e+00 lineto -5.556599e+01 6.049064e+00 lineto -5.381604e+01 6.17311e+00 lineto -closepath -gsave -5.49969e-01 5.49969e-01 6.874612e-01 setrgbcolor -fill -grestore -newpath -5.333477e+01 6.697252e+00 moveto -5.381604e+01 6.17311e+00 lineto -5.556599e+01 6.049064e+00 lineto -5.516002e+01 6.567868e+00 lineto -5.333477e+01 6.697252e+00 lineto -closepath -gsave -5.540592e-01 5.540592e-01 6.92574e-01 setrgbcolor -fill -grestore -newpath -5.286454e+01 7.258606e+00 moveto -5.333477e+01 6.697252e+00 lineto -5.516002e+01 6.567868e+00 lineto -5.476337e+01 7.124006e+00 lineto -5.286454e+01 7.258606e+00 lineto -closepath -gsave -5.58165e-01 5.58165e-01 6.977063e-01 setrgbcolor -fill -grestore -newpath -5.24058e+01 7.856641e+00 moveto -5.286454e+01 7.258606e+00 lineto -5.476337e+01 7.124006e+00 lineto -5.437641e+01 7.716953e+00 lineto -5.24058e+01 7.856641e+00 lineto -closepath -gsave -5.622812e-01 5.622812e-01 7.028515e-01 setrgbcolor -fill -grestore -newpath -5.195898e+01 8.49079e+00 moveto -5.24058e+01 7.856641e+00 lineto -5.437641e+01 7.716953e+00 lineto -5.39995e+01 8.346146e+00 lineto -5.195898e+01 8.49079e+00 lineto -closepath -gsave -5.664024e-01 5.664024e-01 7.08003e-01 setrgbcolor -fill -grestore -newpath -5.152452e+01 9.160453e+00 moveto -5.195898e+01 8.49079e+00 lineto -5.39995e+01 8.346146e+00 lineto -5.363302e+01 9.010991e+00 lineto -5.152452e+01 9.160453e+00 lineto -closepath -gsave -5.705231e-01 5.705231e-01 7.131539e-01 setrgbcolor -fill -grestore -newpath -5.110281e+01 9.864997e+00 moveto -5.152452e+01 9.160453e+00 lineto -5.363302e+01 9.010991e+00 lineto -5.327729e+01 9.710857e+00 lineto -5.110281e+01 9.864997e+00 lineto -closepath -gsave -5.746379e-01 5.746379e-01 7.182974e-01 setrgbcolor -fill -grestore -newpath -5.069425e+01 1.060375e+01 moveto -5.110281e+01 9.864997e+00 lineto -5.327729e+01 9.710857e+00 lineto -5.293267e+01 1.044508e+01 lineto -5.069425e+01 1.060375e+01 lineto -closepath -gsave -5.787414e-01 5.787414e-01 7.234268e-01 setrgbcolor -fill -grestore -newpath -5.029925e+01 1.137602e+01 moveto -5.069425e+01 1.060375e+01 lineto -5.293267e+01 1.044508e+01 lineto -5.259947e+01 1.121297e+01 lineto -5.029925e+01 1.137602e+01 lineto -closepath -gsave -5.828281e-01 5.828281e-01 7.285351e-01 setrgbcolor -fill -grestore -newpath -4.991816e+01 1.218108e+01 moveto -5.029925e+01 1.137602e+01 lineto -5.259947e+01 1.121297e+01 lineto -5.227801e+01 1.20138e+01 lineto -4.991816e+01 1.218108e+01 lineto -closepath -gsave -5.868925e-01 5.868925e-01 7.336157e-01 setrgbcolor -fill -grestore -newpath -4.955135e+01 1.301815e+01 moveto -4.991816e+01 1.218108e+01 lineto -5.227801e+01 1.20138e+01 lineto -5.196859e+01 1.28468e+01 lineto -4.955135e+01 1.301815e+01 lineto -closepath -gsave -5.909294e-01 5.909294e-01 7.386617e-01 setrgbcolor -fill -grestore -newpath -4.919917e+01 1.388645e+01 moveto -4.955135e+01 1.301815e+01 lineto -5.196859e+01 1.28468e+01 lineto -5.167152e+01 1.371119e+01 lineto -4.919917e+01 1.388645e+01 lineto -closepath -gsave -5.949332e-01 5.949332e-01 7.436665e-01 setrgbcolor -fill -grestore -newpath -4.886195e+01 1.478515e+01 moveto -4.919917e+01 1.388645e+01 lineto -5.167152e+01 1.371119e+01 lineto -5.138706e+01 1.460616e+01 lineto -4.886195e+01 1.478515e+01 lineto -closepath -gsave -5.988987e-01 5.988987e-01 7.486234e-01 setrgbcolor -fill -grestore -newpath -4.854001e+01 1.571341e+01 moveto -4.886195e+01 1.478515e+01 lineto -5.138706e+01 1.460616e+01 lineto -5.111549e+01 1.553085e+01 lineto -4.854001e+01 1.571341e+01 lineto -closepath -gsave -6.028208e-01 6.028208e-01 7.535259e-01 setrgbcolor -fill -grestore -newpath -4.823365e+01 1.667035e+01 moveto -4.854001e+01 1.571341e+01 lineto -5.111549e+01 1.553085e+01 lineto -5.085707e+01 1.648438e+01 lineto -4.823365e+01 1.667035e+01 lineto -closepath -gsave -6.066941e-01 6.066941e-01 7.583677e-01 setrgbcolor -fill -grestore -newpath -4.794317e+01 1.765505e+01 moveto -4.823365e+01 1.667035e+01 lineto -5.085707e+01 1.648438e+01 lineto -5.061204e+01 1.746587e+01 lineto -4.794317e+01 1.765505e+01 lineto -closepath -gsave -6.105138e-01 6.105138e-01 7.631423e-01 setrgbcolor -fill -grestore -newpath -4.766884e+01 1.866659e+01 moveto -4.794317e+01 1.765505e+01 lineto -5.061204e+01 1.746587e+01 lineto -5.038063e+01 1.847437e+01 lineto -4.766884e+01 1.866659e+01 lineto -closepath -gsave -6.142748e-01 6.142748e-01 7.678436e-01 setrgbcolor -fill -grestore -newpath -4.741092e+01 1.970402e+01 moveto -4.766884e+01 1.866659e+01 lineto -5.038063e+01 1.847437e+01 lineto -5.016307e+01 1.950893e+01 lineto -4.741092e+01 1.970402e+01 lineto -closepath -gsave -6.179724e-01 6.179724e-01 7.724655e-01 setrgbcolor -fill -grestore -newpath -4.716965e+01 2.076634e+01 moveto -4.741092e+01 1.970402e+01 lineto -5.016307e+01 1.950893e+01 lineto -4.995955e+01 2.056857e+01 lineto -4.716965e+01 2.076634e+01 lineto -closepath -gsave -6.216018e-01 6.216018e-01 7.770023e-01 setrgbcolor -fill -grestore -newpath -4.694526e+01 2.185255e+01 moveto -4.716965e+01 2.076634e+01 lineto -4.995955e+01 2.056857e+01 lineto -4.977027e+01 2.165229e+01 lineto -4.694526e+01 2.185255e+01 lineto -closepath -gsave -6.251584e-01 6.251584e-01 7.814481e-01 setrgbcolor -fill -grestore -newpath -4.673796e+01 2.296162e+01 moveto -4.694526e+01 2.185255e+01 lineto -4.977027e+01 2.165229e+01 lineto -4.959541e+01 2.275907e+01 lineto -4.673796e+01 2.296162e+01 lineto -closepath -gsave -6.286379e-01 6.286379e-01 7.857974e-01 setrgbcolor -fill -grestore -newpath -6.053106e+01 2.920696e+00 moveto -6.101671e+01 2.877717e+00 lineto -6.178014e+01 2.840074e+00 lineto -6.138757e+01 2.878463e+00 lineto -6.053106e+01 2.920696e+00 lineto -closepath -gsave -5.111277e-01 5.111277e-01 6.389096e-01 setrgbcolor -fill -grestore -newpath -6.004965e+01 3.004464e+00 moveto -6.053106e+01 2.920696e+00 lineto -6.138757e+01 2.878463e+00 lineto -6.099843e+01 2.957681e+00 lineto -6.004965e+01 3.004464e+00 lineto -closepath -gsave -5.151977e-01 5.151977e-01 6.439972e-01 setrgbcolor -fill -grestore -newpath -5.957293e+01 3.128939e+00 moveto -6.004965e+01 3.004464e+00 lineto -6.099843e+01 2.957681e+00 lineto -6.061307e+01 3.077652e+00 lineto -5.957293e+01 3.128939e+00 lineto -closepath -gsave -5.193385e-01 5.193385e-01 6.491731e-01 setrgbcolor -fill -grestore -newpath -5.910134e+01 3.294006e+00 moveto -5.957293e+01 3.128939e+00 lineto -6.061307e+01 3.077652e+00 lineto -6.023187e+01 3.238261e+00 lineto -5.910134e+01 3.294006e+00 lineto -closepath -gsave -5.235454e-01 5.235454e-01 6.544317e-01 setrgbcolor -fill -grestore -newpath -5.863534e+01 3.499507e+00 moveto -5.910134e+01 3.294006e+00 lineto -6.023187e+01 3.238261e+00 lineto -5.985518e+01 3.439358e+00 lineto -5.863534e+01 3.499507e+00 lineto -closepath -gsave -5.278134e-01 5.278134e-01 6.597667e-01 setrgbcolor -fill -grestore -newpath -5.817536e+01 3.745247e+00 moveto -5.863534e+01 3.499507e+00 lineto -5.985518e+01 3.439358e+00 lineto -5.948336e+01 3.680752e+00 lineto -5.817536e+01 3.745247e+00 lineto -closepath -gsave -5.321374e-01 5.321374e-01 6.651718e-01 setrgbcolor -fill -grestore -newpath -5.772184e+01 4.030995e+00 moveto -5.817536e+01 3.745247e+00 lineto -5.948336e+01 3.680752e+00 lineto -5.911677e+01 3.962214e+00 lineto -5.772184e+01 4.030995e+00 lineto -closepath -gsave -5.365122e-01 5.365122e-01 6.706403e-01 setrgbcolor -fill -grestore -newpath -5.727522e+01 4.35648e+00 moveto -5.772184e+01 4.030995e+00 lineto -5.911677e+01 3.962214e+00 lineto -5.875574e+01 4.283478e+00 lineto -5.727522e+01 4.35648e+00 lineto -closepath -gsave -5.409322e-01 5.409322e-01 6.761653e-01 setrgbcolor -fill -grestore -newpath -5.683591e+01 4.721393e+00 moveto -5.727522e+01 4.35648e+00 lineto -5.875574e+01 4.283478e+00 lineto -5.840063e+01 4.64424e+00 lineto -5.683591e+01 4.721393e+00 lineto -closepath -gsave -5.453918e-01 5.453918e-01 6.817397e-01 setrgbcolor -fill -grestore -newpath -5.640433e+01 5.125389e+00 moveto -5.683591e+01 4.721393e+00 lineto -5.840063e+01 4.64424e+00 lineto -5.805177e+01 5.044157e+00 lineto -5.640433e+01 5.125389e+00 lineto -closepath -gsave -5.49885e-01 5.49885e-01 6.873563e-01 setrgbcolor -fill -grestore -newpath -5.598089e+01 5.568086e+00 moveto -5.640433e+01 5.125389e+00 lineto -5.805177e+01 5.044157e+00 lineto -5.770948e+01 5.482852e+00 lineto -5.598089e+01 5.568086e+00 lineto -closepath -gsave -5.544061e-01 5.544061e-01 6.930076e-01 setrgbcolor -fill -grestore -newpath -5.556599e+01 6.049064e+00 moveto -5.598089e+01 5.568086e+00 lineto -5.770948e+01 5.482852e+00 lineto -5.73741e+01 5.959909e+00 lineto -5.556599e+01 6.049064e+00 lineto -closepath -gsave -5.589488e-01 5.589488e-01 6.98686e-01 setrgbcolor -fill -grestore -newpath -5.516002e+01 6.567868e+00 moveto -5.556599e+01 6.049064e+00 lineto -5.73741e+01 5.959909e+00 lineto -5.704594e+01 6.474876e+00 lineto -5.516002e+01 6.567868e+00 lineto -closepath -gsave -5.63507e-01 5.63507e-01 7.043837e-01 setrgbcolor -fill -grestore -newpath -5.476337e+01 7.124006e+00 moveto -5.516002e+01 6.567868e+00 lineto -5.704594e+01 6.474876e+00 lineto -5.672531e+01 7.027266e+00 lineto -5.476337e+01 7.124006e+00 lineto -closepath -gsave -5.680745e-01 5.680745e-01 7.100931e-01 setrgbcolor -fill -grestore -newpath -5.437641e+01 7.716953e+00 moveto -5.476337e+01 7.124006e+00 lineto -5.672531e+01 7.027266e+00 lineto -5.641251e+01 7.616556e+00 lineto -5.437641e+01 7.716953e+00 lineto -closepath -gsave -5.72645e-01 5.72645e-01 7.158063e-01 setrgbcolor -fill -grestore -newpath -5.39995e+01 8.346146e+00 moveto -5.437641e+01 7.716953e+00 lineto -5.641251e+01 7.616556e+00 lineto -5.610784e+01 8.242188e+00 lineto -5.39995e+01 8.346146e+00 lineto -closepath -gsave -5.772122e-01 5.772122e-01 7.215153e-01 setrgbcolor -fill -grestore -newpath -5.363302e+01 9.010991e+00 moveto -5.39995e+01 8.346146e+00 lineto -5.610784e+01 8.242188e+00 lineto -5.58116e+01 8.903569e+00 lineto -5.363302e+01 9.010991e+00 lineto -closepath -gsave -5.817698e-01 5.817698e-01 7.272123e-01 setrgbcolor -fill -grestore -newpath -5.327729e+01 9.710857e+00 moveto -5.363302e+01 9.010991e+00 lineto -5.58116e+01 8.903569e+00 lineto -5.552405e+01 9.600073e+00 lineto -5.327729e+01 9.710857e+00 lineto -closepath -gsave -5.863114e-01 5.863114e-01 7.328893e-01 setrgbcolor -fill -grestore -newpath -5.293267e+01 1.044508e+01 moveto -5.327729e+01 9.710857e+00 lineto -5.552405e+01 9.600073e+00 lineto -5.524548e+01 1.033104e+01 lineto -5.293267e+01 1.044508e+01 lineto -closepath -gsave -5.908308e-01 5.908308e-01 7.385385e-01 setrgbcolor -fill -grestore -newpath -5.259947e+01 1.121297e+01 moveto -5.293267e+01 1.044508e+01 lineto -5.524548e+01 1.033104e+01 lineto -5.497614e+01 1.109578e+01 lineto -5.259947e+01 1.121297e+01 lineto -closepath -gsave -5.953216e-01 5.953216e-01 7.44152e-01 setrgbcolor -fill -grestore -newpath -5.227801e+01 1.20138e+01 moveto -5.259947e+01 1.121297e+01 lineto -5.497614e+01 1.109578e+01 lineto -5.471629e+01 1.189357e+01 lineto -5.227801e+01 1.20138e+01 lineto -closepath -gsave -5.997777e-01 5.997777e-01 7.497221e-01 setrgbcolor -fill -grestore -newpath -5.196859e+01 1.28468e+01 moveto -5.227801e+01 1.20138e+01 lineto -5.471629e+01 1.189357e+01 lineto -5.446618e+01 1.272365e+01 lineto -5.196859e+01 1.28468e+01 lineto -closepath -gsave -6.04193e-01 6.04193e-01 7.552412e-01 setrgbcolor -fill -grestore -newpath -5.167152e+01 1.371119e+01 moveto -5.196859e+01 1.28468e+01 lineto -5.446618e+01 1.272365e+01 lineto -5.422604e+01 1.358523e+01 lineto -5.167152e+01 1.371119e+01 lineto -closepath -gsave -6.085613e-01 6.085613e-01 7.607017e-01 setrgbcolor -fill -grestore -newpath -5.138706e+01 1.460616e+01 moveto -5.167152e+01 1.371119e+01 lineto -5.422604e+01 1.358523e+01 lineto -5.39961e+01 1.447751e+01 lineto -5.138706e+01 1.460616e+01 lineto -closepath -gsave -6.128769e-01 6.128769e-01 7.660961e-01 setrgbcolor -fill -grestore -newpath -5.111549e+01 1.553085e+01 moveto -5.138706e+01 1.460616e+01 lineto -5.39961e+01 1.447751e+01 lineto -5.377658e+01 1.539963e+01 lineto -5.111549e+01 1.553085e+01 lineto -closepath -gsave -6.171339e-01 6.171339e-01 7.714173e-01 setrgbcolor -fill -grestore -newpath -5.085707e+01 1.648438e+01 moveto -5.111549e+01 1.553085e+01 lineto -5.377658e+01 1.539963e+01 lineto -5.356769e+01 1.635073e+01 lineto -5.085707e+01 1.648438e+01 lineto -closepath -gsave -6.213265e-01 6.213265e-01 7.766582e-01 setrgbcolor -fill -grestore -newpath -5.061204e+01 1.746587e+01 moveto -5.085707e+01 1.648438e+01 lineto -5.356769e+01 1.635073e+01 lineto -5.336962e+01 1.73299e+01 lineto -5.061204e+01 1.746587e+01 lineto -closepath -gsave -6.254494e-01 6.254494e-01 7.818118e-01 setrgbcolor -fill -grestore -newpath -5.038063e+01 1.847437e+01 moveto -5.061204e+01 1.746587e+01 lineto -5.336962e+01 1.73299e+01 lineto -5.318256e+01 1.833621e+01 lineto -5.038063e+01 1.847437e+01 lineto -closepath -gsave -6.294971e-01 6.294971e-01 7.868714e-01 setrgbcolor -fill -grestore -newpath -5.016307e+01 1.950893e+01 moveto -5.038063e+01 1.847437e+01 lineto -5.318256e+01 1.833621e+01 lineto -5.30067e+01 1.936871e+01 lineto -5.016307e+01 1.950893e+01 lineto -closepath -gsave -6.334644e-01 6.334644e-01 7.918305e-01 setrgbcolor -fill -grestore -newpath -4.995955e+01 2.056857e+01 moveto -5.016307e+01 1.950893e+01 lineto -5.30067e+01 1.936871e+01 lineto -5.284218e+01 2.042643e+01 lineto -4.995955e+01 2.056857e+01 lineto -closepath -gsave -6.373463e-01 6.373463e-01 7.966829e-01 setrgbcolor -fill -grestore -newpath -4.977027e+01 2.165229e+01 moveto -4.995955e+01 2.056857e+01 lineto -5.284218e+01 2.042643e+01 lineto -5.268918e+01 2.150837e+01 lineto -4.977027e+01 2.165229e+01 lineto -closepath -gsave -6.411379e-01 6.411379e-01 8.014224e-01 setrgbcolor -fill -grestore -newpath -4.959541e+01 2.275907e+01 moveto -4.977027e+01 2.165229e+01 lineto -5.268918e+01 2.150837e+01 lineto -5.254784e+01 2.261349e+01 lineto -4.959541e+01 2.275907e+01 lineto -closepath -gsave -6.448346e-01 6.448346e-01 8.060432e-01 setrgbcolor -fill -grestore -newpath -6.138757e+01 2.878463e+00 moveto -6.178014e+01 2.840074e+00 lineto -6.256342e+01 2.817394e+00 lineto -6.226636e+01 2.853019e+00 lineto -6.138757e+01 2.878463e+00 lineto -closepath -gsave -5.146781e-01 5.146781e-01 6.433477e-01 setrgbcolor -fill -grestore -newpath -6.099843e+01 2.957681e+00 moveto -6.138757e+01 2.878463e+00 lineto -6.226636e+01 2.853019e+00 lineto -6.197188e+01 2.929496e+00 lineto -6.099843e+01 2.957681e+00 lineto -closepath -gsave -5.192032e-01 5.192032e-01 6.49004e-01 setrgbcolor -fill -grestore -newpath -6.061307e+01 3.077652e+00 moveto -6.099843e+01 2.957681e+00 lineto -6.197188e+01 2.929496e+00 lineto -6.168026e+01 3.046752e+00 lineto -6.061307e+01 3.077652e+00 lineto -closepath -gsave -5.238038e-01 5.238038e-01 6.547547e-01 setrgbcolor -fill -grestore -newpath -6.023187e+01 3.238261e+00 moveto -6.061307e+01 3.077652e+00 lineto -6.168026e+01 3.046752e+00 lineto -6.13918e+01 3.204677e+00 lineto -6.023187e+01 3.238261e+00 lineto -closepath -gsave -5.284742e-01 5.284742e-01 6.605927e-01 setrgbcolor -fill -grestore -newpath -5.985518e+01 3.439358e+00 moveto -6.023187e+01 3.238261e+00 lineto -6.13918e+01 3.204677e+00 lineto -6.110674e+01 3.40312e+00 lineto -5.985518e+01 3.439358e+00 lineto -closepath -gsave -5.332084e-01 5.332084e-01 6.665105e-01 setrgbcolor -fill -grestore -newpath -5.948336e+01 3.680752e+00 moveto -5.985518e+01 3.439358e+00 lineto -6.110674e+01 3.40312e+00 lineto -6.082538e+01 3.641895e+00 lineto -5.948336e+01 3.680752e+00 lineto -closepath -gsave -5.380003e-01 5.380003e-01 6.725004e-01 setrgbcolor -fill -grestore -newpath -5.911677e+01 3.962214e+00 moveto -5.948336e+01 3.680752e+00 lineto -6.082538e+01 3.641895e+00 lineto -6.054796e+01 3.920775e+00 lineto -5.911677e+01 3.962214e+00 lineto -closepath -gsave -5.428436e-01 5.428436e-01 6.785544e-01 setrgbcolor -fill -grestore -newpath -5.875574e+01 4.283478e+00 moveto -5.911677e+01 3.962214e+00 lineto -6.054796e+01 3.920775e+00 lineto -6.027476e+01 4.239496e+00 lineto -5.875574e+01 4.283478e+00 lineto -closepath -gsave -5.477315e-01 5.477315e-01 6.846644e-01 setrgbcolor -fill -grestore -newpath -5.840063e+01 4.64424e+00 moveto -5.875574e+01 4.283478e+00 lineto -6.027476e+01 4.239496e+00 lineto -6.000604e+01 4.597756e+00 lineto -5.840063e+01 4.64424e+00 lineto -closepath -gsave -5.526574e-01 5.526574e-01 6.908218e-01 setrgbcolor -fill -grestore -newpath -5.805177e+01 5.044157e+00 moveto -5.840063e+01 4.64424e+00 lineto -6.000604e+01 4.597756e+00 lineto -5.974204e+01 4.995217e+00 lineto -5.805177e+01 5.044157e+00 lineto -closepath -gsave -5.576144e-01 5.576144e-01 6.970181e-01 setrgbcolor -fill -grestore -newpath -5.770948e+01 5.482852e+00 moveto -5.805177e+01 5.044157e+00 lineto -5.974204e+01 4.995217e+00 lineto -5.948302e+01 5.431501e+00 lineto -5.770948e+01 5.482852e+00 lineto -closepath -gsave -5.625955e-01 5.625955e-01 7.032444e-01 setrgbcolor -fill -grestore -newpath -5.73741e+01 5.959909e+00 moveto -5.770948e+01 5.482852e+00 lineto -5.948302e+01 5.431501e+00 lineto -5.922923e+01 5.906195e+00 lineto -5.73741e+01 5.959909e+00 lineto -closepath -gsave -5.675935e-01 5.675935e-01 7.094919e-01 setrgbcolor -fill -grestore -newpath -5.704594e+01 6.474876e+00 moveto -5.73741e+01 5.959909e+00 lineto -5.922923e+01 5.906195e+00 lineto -5.89809e+01 6.418851e+00 lineto -5.704594e+01 6.474876e+00 lineto -closepath -gsave -5.726013e-01 5.726013e-01 7.157516e-01 setrgbcolor -fill -grestore -newpath -5.672531e+01 7.027266e+00 moveto -5.704594e+01 6.474876e+00 lineto -5.89809e+01 6.418851e+00 lineto -5.873826e+01 6.968983e+00 lineto -5.672531e+01 7.027266e+00 lineto -closepath -gsave -5.776115e-01 5.776115e-01 7.220144e-01 setrgbcolor -fill -grestore -newpath -5.641251e+01 7.616556e+00 moveto -5.672531e+01 7.027266e+00 lineto -5.873826e+01 6.968983e+00 lineto -5.850156e+01 7.556069e+00 lineto -5.641251e+01 7.616556e+00 lineto -closepath -gsave -5.826171e-01 5.826171e-01 7.282714e-01 setrgbcolor -fill -grestore -newpath -5.610784e+01 8.242188e+00 moveto -5.641251e+01 7.616556e+00 lineto -5.850156e+01 7.556069e+00 lineto -5.827101e+01 8.179555e+00 lineto -5.610784e+01 8.242188e+00 lineto -closepath -gsave -5.876106e-01 5.876106e-01 7.345133e-01 setrgbcolor -fill -grestore -newpath -5.58116e+01 8.903569e+00 moveto -5.610784e+01 8.242188e+00 lineto -5.827101e+01 8.179555e+00 lineto -5.804683e+01 8.838849e+00 lineto -5.58116e+01 8.903569e+00 lineto -closepath -gsave -5.925849e-01 5.925849e-01 7.407312e-01 setrgbcolor -fill -grestore -newpath -5.552405e+01 9.600073e+00 moveto -5.58116e+01 8.903569e+00 lineto -5.804683e+01 8.838849e+00 lineto -5.782923e+01 9.533328e+00 lineto -5.552405e+01 9.600073e+00 lineto -closepath -gsave -5.975328e-01 5.975328e-01 7.46916e-01 setrgbcolor -fill -grestore -newpath -5.524548e+01 1.033104e+01 moveto -5.552405e+01 9.600073e+00 lineto -5.782923e+01 9.533328e+00 lineto -5.761843e+01 1.026233e+01 lineto -5.524548e+01 1.033104e+01 lineto -closepath -gsave -6.024472e-01 6.024472e-01 7.53059e-01 setrgbcolor -fill -grestore -newpath -5.497614e+01 1.109578e+01 moveto -5.524548e+01 1.033104e+01 lineto -5.761843e+01 1.026233e+01 lineto -5.741461e+01 1.102518e+01 lineto -5.497614e+01 1.109578e+01 lineto -closepath -gsave -6.07321e-01 6.07321e-01 7.591512e-01 setrgbcolor -fill -grestore -newpath -5.471629e+01 1.189357e+01 moveto -5.497614e+01 1.109578e+01 lineto -5.741461e+01 1.102518e+01 lineto -5.721797e+01 1.182113e+01 lineto -5.471629e+01 1.189357e+01 lineto -closepath -gsave -6.121473e-01 6.121473e-01 7.651841e-01 setrgbcolor -fill -grestore -newpath -5.446618e+01 1.272365e+01 moveto -5.471629e+01 1.189357e+01 lineto -5.721797e+01 1.182113e+01 lineto -5.70287e+01 1.264945e+01 lineto -5.446618e+01 1.272365e+01 lineto -closepath -gsave -6.169193e-01 6.169193e-01 7.711491e-01 setrgbcolor -fill -grestore -newpath -5.422604e+01 1.358523e+01 moveto -5.446618e+01 1.272365e+01 lineto -5.70287e+01 1.264945e+01 lineto -5.684698e+01 1.350935e+01 lineto -5.422604e+01 1.358523e+01 lineto -closepath -gsave -6.216303e-01 6.216303e-01 7.770379e-01 setrgbcolor -fill -grestore -newpath -5.39961e+01 1.447751e+01 moveto -5.422604e+01 1.358523e+01 lineto -5.684698e+01 1.350935e+01 lineto -5.667298e+01 1.44e+01 lineto -5.39961e+01 1.447751e+01 lineto -closepath -gsave -6.262739e-01 6.262739e-01 7.828424e-01 setrgbcolor -fill -grestore -newpath -5.377658e+01 1.539963e+01 moveto -5.39961e+01 1.447751e+01 lineto -5.667298e+01 1.44e+01 lineto -5.650686e+01 1.532058e+01 lineto -5.377658e+01 1.539963e+01 lineto -closepath -gsave -6.308438e-01 6.308438e-01 7.885547e-01 setrgbcolor -fill -grestore -newpath -5.356769e+01 1.635073e+01 moveto -5.377658e+01 1.539963e+01 lineto -5.650686e+01 1.532058e+01 lineto -5.634879e+01 1.62702e+01 lineto -5.356769e+01 1.635073e+01 lineto -closepath -gsave -6.353338e-01 6.353338e-01 7.941672e-01 setrgbcolor -fill -grestore -newpath -5.336962e+01 1.73299e+01 moveto -5.356769e+01 1.635073e+01 lineto -5.634879e+01 1.62702e+01 lineto -5.61989e+01 1.724798e+01 lineto -5.336962e+01 1.73299e+01 lineto -closepath -gsave -6.397379e-01 6.397379e-01 7.996724e-01 setrgbcolor -fill -grestore -newpath -5.318256e+01 1.833621e+01 moveto -5.336962e+01 1.73299e+01 lineto -5.61989e+01 1.724798e+01 lineto -5.605735e+01 1.825297e+01 lineto -5.318256e+01 1.833621e+01 lineto -closepath -gsave -6.440505e-01 6.440505e-01 8.050632e-01 setrgbcolor -fill -grestore -newpath -5.30067e+01 1.936871e+01 moveto -5.318256e+01 1.833621e+01 lineto -5.605735e+01 1.825297e+01 lineto -5.592427e+01 1.928424e+01 lineto -5.30067e+01 1.936871e+01 lineto -closepath -gsave -6.482661e-01 6.482661e-01 8.103326e-01 setrgbcolor -fill -grestore -newpath -5.284218e+01 2.042643e+01 moveto -5.30067e+01 1.936871e+01 lineto -5.592427e+01 1.928424e+01 lineto -5.579977e+01 2.03408e+01 lineto -5.284218e+01 2.042643e+01 lineto -closepath -gsave -6.523794e-01 6.523794e-01 8.154742e-01 setrgbcolor -fill -grestore -newpath -5.268918e+01 2.150837e+01 moveto -5.284218e+01 2.042643e+01 lineto -5.579977e+01 2.03408e+01 lineto -5.568399e+01 2.142165e+01 lineto -5.268918e+01 2.150837e+01 lineto -closepath -gsave -6.563853e-01 6.563853e-01 8.204816e-01 setrgbcolor -fill -grestore -newpath -5.254784e+01 2.261349e+01 moveto -5.268918e+01 2.150837e+01 lineto -5.568399e+01 2.142165e+01 lineto -5.557703e+01 2.252578e+01 lineto -5.254784e+01 2.261349e+01 lineto -closepath -gsave -6.602789e-01 6.602789e-01 8.253487e-01 setrgbcolor -fill -grestore -newpath -6.226636e+01 2.853019e+00 moveto -6.256342e+01 2.817394e+00 lineto -6.336173e+01 2.809819e+00 lineto -6.316199e+01 2.84452e+00 lineto -6.226636e+01 2.853019e+00 lineto -closepath -gsave -5.180486e-01 5.180486e-01 6.475607e-01 setrgbcolor -fill -grestore -newpath -6.197188e+01 2.929496e+00 moveto -6.226636e+01 2.853019e+00 lineto -6.316199e+01 2.84452e+00 lineto -6.2964e+01 2.920081e+00 lineto -6.197188e+01 2.929496e+00 lineto -closepath -gsave -5.230081e-01 5.230081e-01 6.537601e-01 setrgbcolor -fill -grestore -newpath -6.168026e+01 3.046752e+00 moveto -6.197188e+01 2.929496e+00 lineto -6.2964e+01 2.920081e+00 lineto -6.276792e+01 3.036431e+00 lineto -6.168026e+01 3.046752e+00 lineto -closepath -gsave -5.280477e-01 5.280477e-01 6.600597e-01 setrgbcolor -fill -grestore -newpath -6.13918e+01 3.204677e+00 moveto -6.168026e+01 3.046752e+00 lineto -6.276792e+01 3.036431e+00 lineto -6.257397e+01 3.193459e+00 lineto -6.13918e+01 3.204677e+00 lineto -closepath -gsave -5.331608e-01 5.331608e-01 6.66451e-01 setrgbcolor -fill -grestore -newpath -6.110674e+01 3.40312e+00 moveto -6.13918e+01 3.204677e+00 lineto -6.257397e+01 3.193459e+00 lineto -6.238231e+01 3.391016e+00 lineto -6.110674e+01 3.40312e+00 lineto -closepath -gsave -5.383402e-01 5.383402e-01 6.729253e-01 setrgbcolor -fill -grestore -newpath -6.082538e+01 3.641895e+00 moveto -6.110674e+01 3.40312e+00 lineto -6.238231e+01 3.391016e+00 lineto -6.219313e+01 3.628916e+00 lineto -6.082538e+01 3.641895e+00 lineto -closepath -gsave -5.435788e-01 5.435788e-01 6.794735e-01 setrgbcolor -fill -grestore -newpath -6.054796e+01 3.920775e+00 moveto -6.082538e+01 3.641895e+00 lineto -6.219313e+01 3.628916e+00 lineto -6.20066e+01 3.906934e+00 lineto -6.054796e+01 3.920775e+00 lineto -closepath -gsave -5.48869e-01 5.48869e-01 6.860862e-01 setrgbcolor -fill -grestore -newpath -6.027476e+01 4.239496e+00 moveto -6.054796e+01 3.920775e+00 lineto -6.20066e+01 3.906934e+00 lineto -6.182291e+01 4.224805e+00 lineto -6.027476e+01 4.239496e+00 lineto -closepath -gsave -5.542031e-01 5.542031e-01 6.927539e-01 setrgbcolor -fill -grestore -newpath -6.000604e+01 4.597756e+00 moveto -6.027476e+01 4.239496e+00 lineto -6.182291e+01 4.224805e+00 lineto -6.164223e+01 4.58223e+00 lineto -6.000604e+01 4.597756e+00 lineto -closepath -gsave -5.595733e-01 5.595733e-01 6.994667e-01 setrgbcolor -fill -grestore -newpath -5.974204e+01 4.995217e+00 moveto -6.000604e+01 4.597756e+00 lineto -6.164223e+01 4.58223e+00 lineto -6.146473e+01 4.97887e+00 lineto -5.974204e+01 4.995217e+00 lineto -closepath -gsave -5.649717e-01 5.649717e-01 7.062146e-01 setrgbcolor -fill -grestore -newpath -5.948302e+01 5.431501e+00 moveto -5.974204e+01 4.995217e+00 lineto -6.146473e+01 4.97887e+00 lineto -6.129057e+01 5.414348e+00 lineto -5.948302e+01 5.431501e+00 lineto -closepath -gsave -5.7039e-01 5.7039e-01 7.129876e-01 setrgbcolor -fill -grestore -newpath -5.922923e+01 5.906195e+00 moveto -5.948302e+01 5.431501e+00 lineto -6.129057e+01 5.414348e+00 lineto -6.111993e+01 5.888254e+00 lineto -5.922923e+01 5.906195e+00 lineto -closepath -gsave -5.758203e-01 5.758203e-01 7.197753e-01 setrgbcolor -fill -grestore -newpath -5.89809e+01 6.418851e+00 moveto -5.922923e+01 5.906195e+00 lineto -6.111993e+01 5.888254e+00 lineto -6.095296e+01 6.400138e+00 lineto -5.89809e+01 6.418851e+00 lineto -closepath -gsave -5.812541e-01 5.812541e-01 7.265677e-01 setrgbcolor -fill -grestore -newpath -5.873826e+01 6.968983e+00 moveto -5.89809e+01 6.418851e+00 lineto -6.095296e+01 6.400138e+00 lineto -6.078983e+01 6.949515e+00 lineto -5.873826e+01 6.968983e+00 lineto -closepath -gsave -5.866834e-01 5.866834e-01 7.333543e-01 setrgbcolor -fill -grestore -newpath -5.850156e+01 7.556069e+00 moveto -5.873826e+01 6.968983e+00 lineto -6.078983e+01 6.949515e+00 lineto -6.063067e+01 7.535866e+00 lineto -5.850156e+01 7.556069e+00 lineto -closepath -gsave -5.920999e-01 5.920999e-01 7.401249e-01 setrgbcolor -fill -grestore -newpath -5.827101e+01 8.179555e+00 moveto -5.850156e+01 7.556069e+00 lineto -6.063067e+01 7.535866e+00 lineto -6.047566e+01 8.158634e+00 lineto -5.827101e+01 8.179555e+00 lineto -closepath -gsave -5.974954e-01 5.974954e-01 7.468693e-01 setrgbcolor -fill -grestore -newpath -5.804683e+01 8.838849e+00 moveto -5.827101e+01 8.179555e+00 lineto -6.047566e+01 8.158634e+00 lineto -6.032493e+01 8.817232e+00 lineto -5.804683e+01 8.838849e+00 lineto -closepath -gsave -6.028619e-01 6.028619e-01 7.535773e-01 setrgbcolor -fill -grestore -newpath -5.782923e+01 9.533328e+00 moveto -5.804683e+01 8.838849e+00 lineto -6.032493e+01 8.817232e+00 lineto -6.017862e+01 9.511034e+00 lineto -5.782923e+01 9.533328e+00 lineto -closepath -gsave -6.081912e-01 6.081912e-01 7.60239e-01 setrgbcolor -fill -grestore -newpath -5.761843e+01 1.026233e+01 moveto -5.782923e+01 9.533328e+00 lineto -6.017862e+01 9.511034e+00 lineto -6.003689e+01 1.023938e+01 lineto -5.761843e+01 1.026233e+01 lineto -closepath -gsave -6.134755e-01 6.134755e-01 7.668444e-01 setrgbcolor -fill -grestore -newpath -5.741461e+01 1.102518e+01 moveto -5.761843e+01 1.026233e+01 lineto -6.003689e+01 1.023938e+01 lineto -5.989984e+01 1.100159e+01 lineto -5.741461e+01 1.102518e+01 lineto -closepath -gsave -6.187071e-01 6.187071e-01 7.733839e-01 setrgbcolor -fill -grestore -newpath -5.721797e+01 1.182113e+01 moveto -5.741461e+01 1.102518e+01 lineto -5.989984e+01 1.100159e+01 lineto -5.976763e+01 1.179694e+01 lineto -5.721797e+01 1.182113e+01 lineto -closepath -gsave -6.238784e-01 6.238784e-01 7.798479e-01 setrgbcolor -fill -grestore -newpath -5.70287e+01 1.264945e+01 moveto -5.721797e+01 1.182113e+01 lineto -5.976763e+01 1.179694e+01 lineto -5.964038e+01 1.262467e+01 lineto -5.70287e+01 1.264945e+01 lineto -closepath -gsave -6.289818e-01 6.289818e-01 7.862273e-01 setrgbcolor -fill -grestore -newpath -5.684698e+01 1.350935e+01 moveto -5.70287e+01 1.264945e+01 lineto -5.964038e+01 1.262467e+01 lineto -5.951819e+01 1.3484e+01 lineto -5.684698e+01 1.350935e+01 lineto -closepath -gsave -6.340104e-01 6.340104e-01 7.92513e-01 setrgbcolor -fill -grestore -newpath -5.667298e+01 1.44e+01 moveto -5.684698e+01 1.350935e+01 lineto -5.951819e+01 1.3484e+01 lineto -5.94012e+01 1.437412e+01 lineto -5.667298e+01 1.44e+01 lineto -closepath -gsave -6.389569e-01 6.389569e-01 7.986962e-01 setrgbcolor -fill -grestore -newpath -5.650686e+01 1.532058e+01 moveto -5.667298e+01 1.44e+01 lineto -5.94012e+01 1.437412e+01 lineto -5.928951e+01 1.529418e+01 lineto -5.650686e+01 1.532058e+01 lineto -closepath -gsave -6.438148e-01 6.438148e-01 8.047685e-01 setrgbcolor -fill -grestore -newpath -5.634879e+01 1.62702e+01 moveto -5.650686e+01 1.532058e+01 lineto -5.928951e+01 1.529418e+01 lineto -5.918322e+01 1.624331e+01 lineto -5.634879e+01 1.62702e+01 lineto -closepath -gsave -6.485774e-01 6.485774e-01 8.107218e-01 setrgbcolor -fill -grestore -newpath -5.61989e+01 1.724798e+01 moveto -5.634879e+01 1.62702e+01 lineto -5.918322e+01 1.624331e+01 lineto -5.908245e+01 1.722061e+01 lineto -5.61989e+01 1.724798e+01 lineto -closepath -gsave -6.532386e-01 6.532386e-01 8.165482e-01 setrgbcolor -fill -grestore -newpath -5.605735e+01 1.825297e+01 moveto -5.61989e+01 1.724798e+01 lineto -5.908245e+01 1.722061e+01 lineto -5.898727e+01 1.822517e+01 lineto -5.605735e+01 1.825297e+01 lineto -closepath -gsave -6.577922e-01 6.577922e-01 8.222403e-01 setrgbcolor -fill -grestore -newpath -5.592427e+01 1.928424e+01 moveto -5.605735e+01 1.825297e+01 lineto -5.898727e+01 1.822517e+01 lineto -5.889779e+01 1.925602e+01 lineto -5.592427e+01 1.928424e+01 lineto -closepath -gsave -6.622327e-01 6.622327e-01 8.277909e-01 setrgbcolor -fill -grestore -newpath -5.579977e+01 2.03408e+01 moveto -5.592427e+01 1.928424e+01 lineto -5.889779e+01 1.925602e+01 lineto -5.881409e+01 2.03122e+01 lineto -5.579977e+01 2.03408e+01 lineto -closepath -gsave -6.665546e-01 6.665546e-01 8.331932e-01 setrgbcolor -fill -grestore -newpath -5.568399e+01 2.142165e+01 moveto -5.579977e+01 2.03408e+01 lineto -5.881409e+01 2.03122e+01 lineto -5.873624e+01 2.139269e+01 lineto -5.568399e+01 2.142165e+01 lineto -closepath -gsave -6.707526e-01 6.707526e-01 8.384408e-01 setrgbcolor -fill -grestore -newpath -5.557703e+01 2.252578e+01 moveto -5.568399e+01 2.142165e+01 lineto -5.873624e+01 2.139269e+01 lineto -5.866432e+01 2.249648e+01 lineto -5.557703e+01 2.252578e+01 lineto -closepath -gsave -6.74822e-01 6.74822e-01 8.435275e-01 setrgbcolor -fill -grestore -newpath -6.316199e+01 2.84452e+00 moveto -6.336173e+01 2.809819e+00 lineto -6.417014e+01 2.817394e+00 lineto -6.406896e+01 2.853019e+00 lineto -6.316199e+01 2.84452e+00 lineto -closepath -gsave -5.212111e-01 5.212111e-01 6.515139e-01 setrgbcolor -fill -grestore -newpath -6.2964e+01 2.920081e+00 moveto -6.316199e+01 2.84452e+00 lineto -6.406896e+01 2.853019e+00 lineto -6.396867e+01 2.929496e+00 lineto -6.2964e+01 2.920081e+00 lineto -closepath -gsave -5.265801e-01 5.265801e-01 6.582252e-01 setrgbcolor -fill -grestore -newpath -6.276792e+01 3.036431e+00 moveto -6.2964e+01 2.920081e+00 lineto -6.396867e+01 2.929496e+00 lineto -6.386935e+01 3.046752e+00 lineto -6.276792e+01 3.036431e+00 lineto -closepath -gsave -5.320338e-01 5.320338e-01 6.650422e-01 setrgbcolor -fill -grestore -newpath -6.257397e+01 3.193459e+00 moveto -6.276792e+01 3.036431e+00 lineto -6.386935e+01 3.046752e+00 lineto -6.37711e+01 3.204677e+00 lineto -6.257397e+01 3.193459e+00 lineto -closepath -gsave -5.375642e-01 5.375642e-01 6.719552e-01 setrgbcolor -fill -grestore -newpath -6.238231e+01 3.391016e+00 moveto -6.257397e+01 3.193459e+00 lineto -6.37711e+01 3.204677e+00 lineto -6.367401e+01 3.40312e+00 lineto -6.238231e+01 3.391016e+00 lineto -closepath -gsave -5.431632e-01 5.431632e-01 6.78954e-01 setrgbcolor -fill -grestore -newpath -6.219313e+01 3.628916e+00 moveto -6.238231e+01 3.391016e+00 lineto -6.367401e+01 3.40312e+00 lineto -6.357818e+01 3.641895e+00 lineto -6.219313e+01 3.628916e+00 lineto -closepath -gsave -5.488226e-01 5.488226e-01 6.860282e-01 setrgbcolor -fill -grestore -newpath -6.20066e+01 3.906934e+00 moveto -6.219313e+01 3.628916e+00 lineto -6.357818e+01 3.641895e+00 lineto -6.34837e+01 3.920775e+00 lineto -6.20066e+01 3.906934e+00 lineto -closepath -gsave -5.545336e-01 5.545336e-01 6.931669e-01 setrgbcolor -fill -grestore -newpath -6.182291e+01 4.224805e+00 moveto -6.20066e+01 3.906934e+00 lineto -6.34837e+01 3.920775e+00 lineto -6.339065e+01 4.239496e+00 lineto -6.182291e+01 4.224805e+00 lineto -closepath -gsave -5.602874e-01 5.602874e-01 7.003593e-01 setrgbcolor -fill -grestore -newpath -6.164223e+01 4.58223e+00 moveto -6.182291e+01 4.224805e+00 lineto -6.339065e+01 4.239496e+00 lineto -6.329913e+01 4.597756e+00 lineto -6.164223e+01 4.58223e+00 lineto -closepath -gsave -5.660753e-01 5.660753e-01 7.075941e-01 setrgbcolor -fill -grestore -newpath -6.146473e+01 4.97887e+00 moveto -6.164223e+01 4.58223e+00 lineto -6.329913e+01 4.597756e+00 lineto -6.320922e+01 4.995217e+00 lineto -6.146473e+01 4.97887e+00 lineto -closepath -gsave -5.718879e-01 5.718879e-01 7.148599e-01 setrgbcolor -fill -grestore -newpath -6.129057e+01 5.414348e+00 moveto -6.146473e+01 4.97887e+00 lineto -6.320922e+01 4.995217e+00 lineto -6.3121e+01 5.431501e+00 lineto -6.129057e+01 5.414348e+00 lineto -closepath -gsave -5.777163e-01 5.777163e-01 7.221454e-01 setrgbcolor -fill -grestore -newpath -6.111993e+01 5.888254e+00 moveto -6.129057e+01 5.414348e+00 lineto -6.3121e+01 5.431501e+00 lineto -6.303456e+01 5.906195e+00 lineto -6.111993e+01 5.888254e+00 lineto -closepath -gsave -5.835512e-01 5.835512e-01 7.294391e-01 setrgbcolor -fill -grestore -newpath -6.095296e+01 6.400138e+00 moveto -6.111993e+01 5.888254e+00 lineto -6.303456e+01 5.906195e+00 lineto -6.294998e+01 6.418851e+00 lineto -6.095296e+01 6.400138e+00 lineto -closepath -gsave -5.893835e-01 5.893835e-01 7.367293e-01 setrgbcolor -fill -grestore -newpath -6.078983e+01 6.949515e+00 moveto -6.095296e+01 6.400138e+00 lineto -6.294998e+01 6.418851e+00 lineto -6.286734e+01 6.968983e+00 lineto -6.078983e+01 6.949515e+00 lineto -closepath -gsave -5.952038e-01 5.952038e-01 7.440047e-01 setrgbcolor -fill -grestore -newpath -6.063067e+01 7.535866e+00 moveto -6.078983e+01 6.949515e+00 lineto -6.286734e+01 6.968983e+00 lineto -6.278673e+01 7.556069e+00 lineto -6.063067e+01 7.535866e+00 lineto -closepath -gsave -6.010031e-01 6.010031e-01 7.512538e-01 setrgbcolor -fill -grestore -newpath -6.047566e+01 8.158634e+00 moveto -6.063067e+01 7.535866e+00 lineto -6.278673e+01 7.556069e+00 lineto -6.27082e+01 8.179555e+00 lineto -6.047566e+01 8.158634e+00 lineto -closepath -gsave -6.067723e-01 6.067723e-01 7.584653e-01 setrgbcolor -fill -grestore -newpath -6.032493e+01 8.817232e+00 moveto -6.047566e+01 8.158634e+00 lineto -6.27082e+01 8.179555e+00 lineto -6.263185e+01 8.838849e+00 lineto -6.032493e+01 8.817232e+00 lineto -closepath -gsave -6.125024e-01 6.125024e-01 7.65628e-01 setrgbcolor -fill -grestore -newpath -6.017862e+01 9.511034e+00 moveto -6.032493e+01 8.817232e+00 lineto -6.263185e+01 8.838849e+00 lineto -6.255774e+01 9.533328e+00 lineto -6.017862e+01 9.511034e+00 lineto -closepath -gsave -6.181848e-01 6.181848e-01 7.72731e-01 setrgbcolor -fill -grestore -newpath -6.003689e+01 1.023938e+01 moveto -6.017862e+01 9.511034e+00 lineto -6.255774e+01 9.533328e+00 lineto -6.248594e+01 1.026233e+01 lineto -6.003689e+01 1.023938e+01 lineto -closepath -gsave -6.238107e-01 6.238107e-01 7.797634e-01 setrgbcolor -fill -grestore -newpath -5.989984e+01 1.100159e+01 moveto -6.003689e+01 1.023938e+01 lineto -6.248594e+01 1.026233e+01 lineto -6.241653e+01 1.102518e+01 lineto -5.989984e+01 1.100159e+01 lineto -closepath -gsave -6.293718e-01 6.293718e-01 7.867147e-01 setrgbcolor -fill -grestore -newpath -5.976763e+01 1.179694e+01 moveto -5.989984e+01 1.100159e+01 lineto -6.241653e+01 1.102518e+01 lineto -6.234956e+01 1.182113e+01 lineto -5.976763e+01 1.179694e+01 lineto -closepath -gsave -6.348598e-01 6.348598e-01 7.935747e-01 setrgbcolor -fill -grestore -newpath -5.964038e+01 1.262467e+01 moveto -5.976763e+01 1.179694e+01 lineto -6.234956e+01 1.182113e+01 lineto -6.228509e+01 1.264945e+01 lineto -5.964038e+01 1.262467e+01 lineto -closepath -gsave -6.402668e-01 6.402668e-01 8.003334e-01 setrgbcolor -fill -grestore -newpath -5.951819e+01 1.3484e+01 moveto -5.964038e+01 1.262467e+01 lineto -6.228509e+01 1.264945e+01 lineto -6.22232e+01 1.350935e+01 lineto -5.951819e+01 1.3484e+01 lineto -closepath -gsave -6.45585e-01 6.45585e-01 8.069813e-01 setrgbcolor -fill -grestore -newpath -5.94012e+01 1.437412e+01 moveto -5.951819e+01 1.3484e+01 lineto -6.22232e+01 1.350935e+01 lineto -6.216394e+01 1.44e+01 lineto -5.94012e+01 1.437412e+01 lineto -closepath -gsave -6.508072e-01 6.508072e-01 8.13509e-01 setrgbcolor -fill -grestore -newpath -5.928951e+01 1.529418e+01 moveto -5.94012e+01 1.437412e+01 lineto -6.216394e+01 1.44e+01 lineto -6.210736e+01 1.532058e+01 lineto -5.928951e+01 1.529418e+01 lineto -closepath -gsave -6.559261e-01 6.559261e-01 8.199076e-01 setrgbcolor -fill -grestore -newpath -5.918322e+01 1.624331e+01 moveto -5.928951e+01 1.529418e+01 lineto -6.210736e+01 1.532058e+01 lineto -6.205352e+01 1.62702e+01 lineto -5.918322e+01 1.624331e+01 lineto -closepath -gsave -6.609349e-01 6.609349e-01 8.261687e-01 setrgbcolor -fill -grestore -newpath -5.908245e+01 1.722061e+01 moveto -5.918322e+01 1.624331e+01 lineto -6.205352e+01 1.62702e+01 lineto -6.200248e+01 1.724798e+01 lineto -5.908245e+01 1.722061e+01 lineto -closepath -gsave -6.658272e-01 6.658272e-01 8.32284e-01 setrgbcolor -fill -grestore -newpath -5.898727e+01 1.822517e+01 moveto -5.908245e+01 1.722061e+01 lineto -6.200248e+01 1.724798e+01 lineto -6.195427e+01 1.825297e+01 lineto -5.898727e+01 1.822517e+01 lineto -closepath -gsave -6.705968e-01 6.705968e-01 8.38246e-01 setrgbcolor -fill -grestore -newpath -5.889779e+01 1.925602e+01 moveto -5.898727e+01 1.822517e+01 lineto -6.195427e+01 1.825297e+01 lineto -6.190894e+01 1.928424e+01 lineto -5.889779e+01 1.925602e+01 lineto -closepath -gsave -6.752377e-01 6.752377e-01 8.440471e-01 setrgbcolor -fill -grestore -newpath -5.881409e+01 2.03122e+01 moveto -5.889779e+01 1.925602e+01 lineto -6.190894e+01 1.928424e+01 lineto -6.186654e+01 2.03408e+01 lineto -5.881409e+01 2.03122e+01 lineto -closepath -gsave -6.797445e-01 6.797445e-01 8.496807e-01 setrgbcolor -fill -grestore -newpath -5.873624e+01 2.139269e+01 moveto -5.881409e+01 2.03122e+01 lineto -6.186654e+01 2.03408e+01 lineto -6.18271e+01 2.142165e+01 lineto -5.873624e+01 2.139269e+01 lineto -closepath -gsave -6.84112e-01 6.84112e-01 8.551401e-01 setrgbcolor -fill -grestore -newpath -5.866432e+01 2.249648e+01 moveto -5.873624e+01 2.139269e+01 lineto -6.18271e+01 2.142165e+01 lineto -6.179068e+01 2.252578e+01 lineto -5.866432e+01 2.249648e+01 lineto -closepath -gsave -6.883354e-01 6.883354e-01 8.604192e-01 setrgbcolor -fill -grestore -newpath -6.406896e+01 2.853019e+00 moveto -6.417014e+01 2.817394e+00 lineto -6.498366e+01 2.840074e+00 lineto -6.498167e+01 2.878463e+00 lineto -6.406896e+01 2.853019e+00 lineto -closepath -gsave -5.241392e-01 5.241392e-01 6.55174e-01 setrgbcolor -fill -grestore -newpath -6.396867e+01 2.929496e+00 moveto -6.406896e+01 2.853019e+00 lineto -6.498167e+01 2.878463e+00 lineto -6.49797e+01 2.957681e+00 lineto -6.396867e+01 2.929496e+00 lineto -closepath -gsave -5.298889e-01 5.298889e-01 6.623611e-01 setrgbcolor -fill -grestore -newpath -6.386935e+01 3.046752e+00 moveto -6.396867e+01 2.929496e+00 lineto -6.49797e+01 2.957681e+00 lineto -6.497774e+01 3.077652e+00 lineto -6.386935e+01 3.046752e+00 lineto -closepath -gsave -5.357273e-01 5.357273e-01 6.696592e-01 setrgbcolor -fill -grestore -newpath -6.37711e+01 3.204677e+00 moveto -6.386935e+01 3.046752e+00 lineto -6.497774e+01 3.077652e+00 lineto -6.497581e+01 3.238261e+00 lineto -6.37711e+01 3.204677e+00 lineto -closepath -gsave -5.416456e-01 5.416456e-01 6.77057e-01 setrgbcolor -fill -grestore -newpath -6.367401e+01 3.40312e+00 moveto -6.37711e+01 3.204677e+00 lineto -6.497581e+01 3.238261e+00 lineto -6.497389e+01 3.439358e+00 lineto -6.367401e+01 3.40312e+00 lineto -closepath -gsave -5.476345e-01 5.476345e-01 6.845431e-01 setrgbcolor -fill -grestore -newpath -6.357818e+01 3.641895e+00 moveto -6.367401e+01 3.40312e+00 lineto -6.497389e+01 3.439358e+00 lineto -6.497201e+01 3.680752e+00 lineto -6.357818e+01 3.641895e+00 lineto -closepath -gsave -5.536845e-01 5.536845e-01 6.921056e-01 setrgbcolor -fill -grestore -newpath -6.34837e+01 3.920775e+00 moveto -6.357818e+01 3.641895e+00 lineto -6.497201e+01 3.680752e+00 lineto -6.497015e+01 3.962214e+00 lineto -6.34837e+01 3.920775e+00 lineto -closepath -gsave -5.597859e-01 5.597859e-01 6.997324e-01 setrgbcolor -fill -grestore -newpath -6.339065e+01 4.239496e+00 moveto -6.34837e+01 3.920775e+00 lineto -6.497015e+01 3.962214e+00 lineto -6.496832e+01 4.283478e+00 lineto -6.339065e+01 4.239496e+00 lineto -closepath -gsave -5.659289e-01 5.659289e-01 7.074111e-01 setrgbcolor -fill -grestore -newpath -6.329913e+01 4.597756e+00 moveto -6.339065e+01 4.239496e+00 lineto -6.496832e+01 4.283478e+00 lineto -6.496651e+01 4.64424e+00 lineto -6.329913e+01 4.597756e+00 lineto -closepath -gsave -5.721034e-01 5.721034e-01 7.151292e-01 setrgbcolor -fill -grestore -newpath -6.320922e+01 4.995217e+00 moveto -6.329913e+01 4.597756e+00 lineto -6.496651e+01 4.64424e+00 lineto -6.496474e+01 5.044157e+00 lineto -6.320922e+01 4.995217e+00 lineto -closepath -gsave -5.782993e-01 5.782993e-01 7.228741e-01 setrgbcolor -fill -grestore -newpath -6.3121e+01 5.431501e+00 moveto -6.320922e+01 4.995217e+00 lineto -6.496474e+01 5.044157e+00 lineto -6.496301e+01 5.482852e+00 lineto -6.3121e+01 5.431501e+00 lineto -closepath -gsave -5.845065e-01 5.845065e-01 7.306331e-01 setrgbcolor -fill -grestore -newpath -6.303456e+01 5.906195e+00 moveto -6.3121e+01 5.431501e+00 lineto -6.496301e+01 5.482852e+00 lineto -6.49613e+01 5.959909e+00 lineto -6.303456e+01 5.906195e+00 lineto -closepath -gsave -5.907147e-01 5.907147e-01 7.383933e-01 setrgbcolor -fill -grestore -newpath -6.294998e+01 6.418851e+00 moveto -6.303456e+01 5.906195e+00 lineto -6.49613e+01 5.959909e+00 lineto -6.495964e+01 6.474876e+00 lineto -6.294998e+01 6.418851e+00 lineto -closepath -gsave -5.969137e-01 5.969137e-01 7.461421e-01 setrgbcolor -fill -grestore -newpath -6.286734e+01 6.968983e+00 moveto -6.294998e+01 6.418851e+00 lineto -6.495964e+01 6.474876e+00 lineto -6.495801e+01 7.027266e+00 lineto -6.286734e+01 6.968983e+00 lineto -closepath -gsave -6.030935e-01 6.030935e-01 7.538669e-01 setrgbcolor -fill -grestore -newpath -6.278673e+01 7.556069e+00 moveto -6.286734e+01 6.968983e+00 lineto -6.495801e+01 7.027266e+00 lineto -6.495642e+01 7.616556e+00 lineto -6.278673e+01 7.556069e+00 lineto -closepath -gsave -6.09244e-01 6.09244e-01 7.61555e-01 setrgbcolor -fill -grestore -newpath -6.27082e+01 8.179555e+00 moveto -6.278673e+01 7.556069e+00 lineto -6.495642e+01 7.616556e+00 lineto -6.495488e+01 8.242188e+00 lineto -6.27082e+01 8.179555e+00 lineto -closepath -gsave -6.153554e-01 6.153554e-01 7.691942e-01 setrgbcolor -fill -grestore -newpath -6.263185e+01 8.838849e+00 moveto -6.27082e+01 8.179555e+00 lineto -6.495488e+01 8.242188e+00 lineto -6.495338e+01 8.903569e+00 lineto -6.263185e+01 8.838849e+00 lineto -closepath -gsave -6.214179e-01 6.214179e-01 7.767723e-01 setrgbcolor -fill -grestore -newpath -6.255774e+01 9.533328e+00 moveto -6.263185e+01 8.838849e+00 lineto -6.495338e+01 8.903569e+00 lineto -6.495192e+01 9.600073e+00 lineto -6.255774e+01 9.533328e+00 lineto -closepath -gsave -6.27422e-01 6.27422e-01 7.842775e-01 setrgbcolor -fill -grestore -newpath -6.248594e+01 1.026233e+01 moveto -6.255774e+01 9.533328e+00 lineto -6.495192e+01 9.600073e+00 lineto -6.49505e+01 1.033104e+01 lineto -6.248594e+01 1.026233e+01 lineto -closepath -gsave -6.333585e-01 6.333585e-01 7.916981e-01 setrgbcolor -fill -grestore -newpath -6.241653e+01 1.102518e+01 moveto -6.248594e+01 1.026233e+01 lineto -6.49505e+01 1.033104e+01 lineto -6.494914e+01 1.109578e+01 lineto -6.241653e+01 1.102518e+01 lineto -closepath -gsave -6.392183e-01 6.392183e-01 7.990229e-01 setrgbcolor -fill -grestore -newpath -6.234956e+01 1.182113e+01 moveto -6.241653e+01 1.102518e+01 lineto -6.494914e+01 1.109578e+01 lineto -6.494782e+01 1.189357e+01 lineto -6.234956e+01 1.182113e+01 lineto -closepath -gsave -6.449927e-01 6.449927e-01 8.062409e-01 setrgbcolor -fill -grestore -newpath -6.228509e+01 1.264945e+01 moveto -6.234956e+01 1.182113e+01 lineto -6.494782e+01 1.189357e+01 lineto -6.494655e+01 1.272365e+01 lineto -6.228509e+01 1.264945e+01 lineto -closepath -gsave -6.506733e-01 6.506733e-01 8.133416e-01 setrgbcolor -fill -grestore -newpath -6.22232e+01 1.350935e+01 moveto -6.228509e+01 1.264945e+01 lineto -6.494655e+01 1.272365e+01 lineto -6.494533e+01 1.358523e+01 lineto -6.22232e+01 1.350935e+01 lineto -closepath -gsave -6.562519e-01 6.562519e-01 8.203149e-01 setrgbcolor -fill -grestore -newpath -6.216394e+01 1.44e+01 moveto -6.22232e+01 1.350935e+01 lineto -6.494533e+01 1.358523e+01 lineto -6.494416e+01 1.447751e+01 lineto -6.216394e+01 1.44e+01 lineto -closepath -gsave -6.617209e-01 6.617209e-01 8.271511e-01 setrgbcolor -fill -grestore -newpath -6.210736e+01 1.532058e+01 moveto -6.216394e+01 1.44e+01 lineto -6.494416e+01 1.447751e+01 lineto -6.494305e+01 1.539963e+01 lineto -6.210736e+01 1.532058e+01 lineto -closepath -gsave -6.670727e-01 6.670727e-01 8.338408e-01 setrgbcolor -fill -grestore -newpath -6.205352e+01 1.62702e+01 moveto -6.210736e+01 1.532058e+01 lineto -6.494305e+01 1.539963e+01 lineto -6.494199e+01 1.635073e+01 lineto -6.205352e+01 1.62702e+01 lineto -closepath -gsave -6.723003e-01 6.723003e-01 8.403754e-01 setrgbcolor -fill -grestore -newpath -6.200248e+01 1.724798e+01 moveto -6.205352e+01 1.62702e+01 lineto -6.494199e+01 1.635073e+01 lineto -6.494098e+01 1.73299e+01 lineto -6.200248e+01 1.724798e+01 lineto -closepath -gsave -6.773971e-01 6.773971e-01 8.467464e-01 setrgbcolor -fill -grestore -newpath -6.195427e+01 1.825297e+01 moveto -6.200248e+01 1.724798e+01 lineto -6.494098e+01 1.73299e+01 lineto -6.494004e+01 1.833621e+01 lineto -6.195427e+01 1.825297e+01 lineto -closepath -gsave -6.823567e-01 6.823567e-01 8.529459e-01 setrgbcolor -fill -grestore -newpath -6.190894e+01 1.928424e+01 moveto -6.195427e+01 1.825297e+01 lineto -6.494004e+01 1.833621e+01 lineto -6.493914e+01 1.936871e+01 lineto -6.190894e+01 1.928424e+01 lineto -closepath -gsave -6.871734e-01 6.871734e-01 8.589667e-01 setrgbcolor -fill -grestore -newpath -6.186654e+01 2.03408e+01 moveto -6.190894e+01 1.928424e+01 lineto -6.493914e+01 1.936871e+01 lineto -6.493831e+01 2.042643e+01 lineto -6.186654e+01 2.03408e+01 lineto -closepath -gsave -6.918414e-01 6.918414e-01 8.648017e-01 setrgbcolor -fill -grestore -newpath -6.18271e+01 2.142165e+01 moveto -6.186654e+01 2.03408e+01 lineto -6.493831e+01 2.042643e+01 lineto -6.493753e+01 2.150837e+01 lineto -6.18271e+01 2.142165e+01 lineto -closepath -gsave -6.963557e-01 6.963557e-01 8.704446e-01 setrgbcolor -fill -grestore -newpath -6.179068e+01 2.252578e+01 moveto -6.18271e+01 2.142165e+01 lineto -6.493753e+01 2.150837e+01 lineto -6.493681e+01 2.261349e+01 lineto -6.179068e+01 2.252578e+01 lineto -closepath -gsave -7.007115e-01 7.007115e-01 8.758894e-01 setrgbcolor -fill -grestore -newpath -6.498167e+01 2.878463e+00 moveto -6.498366e+01 2.840074e+00 lineto -6.579729e+01 2.877717e+00 lineto -6.589449e+01 2.920696e+00 lineto -6.498167e+01 2.878463e+00 lineto -closepath -gsave -5.268082e-01 5.268082e-01 6.585103e-01 setrgbcolor -fill -grestore -newpath -6.49797e+01 2.957681e+00 moveto -6.498167e+01 2.878463e+00 lineto -6.589449e+01 2.920696e+00 lineto -6.599085e+01 3.004464e+00 lineto -6.49797e+01 2.957681e+00 lineto -closepath -gsave -5.32906e-01 5.32906e-01 6.661325e-01 setrgbcolor -fill -grestore -newpath -6.497774e+01 3.077652e+00 moveto -6.49797e+01 2.957681e+00 lineto -6.599085e+01 3.004464e+00 lineto -6.608627e+01 3.128939e+00 lineto -6.497774e+01 3.077652e+00 lineto -closepath -gsave -5.390963e-01 5.390963e-01 6.738704e-01 setrgbcolor -fill -grestore -newpath -6.497581e+01 3.238261e+00 moveto -6.497774e+01 3.077652e+00 lineto -6.608627e+01 3.128939e+00 lineto -6.618066e+01 3.294006e+00 lineto -6.497581e+01 3.238261e+00 lineto -closepath -gsave -5.453691e-01 5.453691e-01 6.817114e-01 setrgbcolor -fill -grestore -newpath -6.497389e+01 3.439358e+00 moveto -6.497581e+01 3.238261e+00 lineto -6.618066e+01 3.294006e+00 lineto -6.627394e+01 3.499507e+00 lineto -6.497389e+01 3.439358e+00 lineto -closepath -gsave -5.517141e-01 5.517141e-01 6.896426e-01 setrgbcolor -fill -grestore -newpath -6.497201e+01 3.680752e+00 moveto -6.497389e+01 3.439358e+00 lineto -6.627394e+01 3.499507e+00 lineto -6.6366e+01 3.745247e+00 lineto -6.497201e+01 3.680752e+00 lineto -closepath -gsave -5.581208e-01 5.581208e-01 6.976511e-01 setrgbcolor -fill -grestore -newpath -6.497015e+01 3.962214e+00 moveto -6.497201e+01 3.680752e+00 lineto -6.6366e+01 3.745247e+00 lineto -6.645678e+01 4.030995e+00 lineto -6.497015e+01 3.962214e+00 lineto -closepath -gsave -5.645785e-01 5.645785e-01 7.057232e-01 setrgbcolor -fill -grestore -newpath -6.496832e+01 4.283478e+00 moveto -6.497015e+01 3.962214e+00 lineto -6.645678e+01 4.030995e+00 lineto -6.654617e+01 4.35648e+00 lineto -6.496832e+01 4.283478e+00 lineto -closepath -gsave -5.710762e-01 5.710762e-01 7.138453e-01 setrgbcolor -fill -grestore -newpath -6.496651e+01 4.64424e+00 moveto -6.496832e+01 4.283478e+00 lineto -6.654617e+01 4.35648e+00 lineto -6.66341e+01 4.721393e+00 lineto -6.496651e+01 4.64424e+00 lineto -closepath -gsave -5.776029e-01 5.776029e-01 7.220036e-01 setrgbcolor -fill -grestore -newpath -6.496474e+01 5.044157e+00 moveto -6.496651e+01 4.64424e+00 lineto -6.66341e+01 4.721393e+00 lineto -6.672049e+01 5.125389e+00 lineto -6.496474e+01 5.044157e+00 lineto -closepath -gsave -5.841474e-01 5.841474e-01 7.301843e-01 setrgbcolor -fill -grestore -newpath -6.496301e+01 5.482852e+00 moveto -6.496474e+01 5.044157e+00 lineto -6.672049e+01 5.125389e+00 lineto -6.680524e+01 5.568086e+00 lineto -6.496301e+01 5.482852e+00 lineto -closepath -gsave -5.906986e-01 5.906986e-01 7.383733e-01 setrgbcolor -fill -grestore -newpath -6.49613e+01 5.959909e+00 moveto -6.496301e+01 5.482852e+00 lineto -6.680524e+01 5.568086e+00 lineto -6.688829e+01 6.049064e+00 lineto -6.49613e+01 5.959909e+00 lineto -closepath -gsave -5.972454e-01 5.972454e-01 7.465568e-01 setrgbcolor -fill -grestore -newpath -6.495964e+01 6.474876e+00 moveto -6.49613e+01 5.959909e+00 lineto -6.688829e+01 6.049064e+00 lineto -6.696955e+01 6.567868e+00 lineto -6.495964e+01 6.474876e+00 lineto -closepath -gsave -6.037766e-01 6.037766e-01 7.547208e-01 setrgbcolor -fill -grestore -newpath -6.495801e+01 7.027266e+00 moveto -6.495964e+01 6.474876e+00 lineto -6.696955e+01 6.567868e+00 lineto -6.704894e+01 7.124006e+00 lineto -6.495801e+01 7.027266e+00 lineto -closepath -gsave -6.102814e-01 6.102814e-01 7.628517e-01 setrgbcolor -fill -grestore -newpath -6.495642e+01 7.616556e+00 moveto -6.495801e+01 7.027266e+00 lineto -6.704894e+01 7.124006e+00 lineto -6.712639e+01 7.716953e+00 lineto -6.495642e+01 7.616556e+00 lineto -closepath -gsave -6.167488e-01 6.167488e-01 7.70936e-01 setrgbcolor -fill -grestore -newpath -6.495488e+01 8.242188e+00 moveto -6.495642e+01 7.616556e+00 lineto -6.712639e+01 7.716953e+00 lineto -6.720183e+01 8.346146e+00 lineto -6.495488e+01 8.242188e+00 lineto -closepath -gsave -6.231682e-01 6.231682e-01 7.789603e-01 setrgbcolor -fill -grestore -newpath -6.495338e+01 8.903569e+00 moveto -6.495488e+01 8.242188e+00 lineto -6.720183e+01 8.346146e+00 lineto -6.727519e+01 9.010991e+00 lineto -6.495338e+01 8.903569e+00 lineto -closepath -gsave -6.295293e-01 6.295293e-01 7.869116e-01 setrgbcolor -fill -grestore -newpath -6.495192e+01 9.600073e+00 moveto -6.495338e+01 8.903569e+00 lineto -6.727519e+01 9.010991e+00 lineto -6.734639e+01 9.710857e+00 lineto -6.495192e+01 9.600073e+00 lineto -closepath -gsave -6.358219e-01 6.358219e-01 7.947773e-01 setrgbcolor -fill -grestore -newpath -6.49505e+01 1.033104e+01 moveto -6.495192e+01 9.600073e+00 lineto -6.734639e+01 9.710857e+00 lineto -6.741537e+01 1.044508e+01 lineto -6.49505e+01 1.033104e+01 lineto -closepath -gsave -6.42036e-01 6.42036e-01 8.02545e-01 setrgbcolor -fill -grestore -newpath -6.494914e+01 1.109578e+01 moveto -6.49505e+01 1.033104e+01 lineto -6.741537e+01 1.044508e+01 lineto -6.748206e+01 1.121297e+01 lineto -6.494914e+01 1.109578e+01 lineto -closepath -gsave -6.481622e-01 6.481622e-01 8.102028e-01 setrgbcolor -fill -grestore -newpath -6.494782e+01 1.189357e+01 moveto -6.494914e+01 1.109578e+01 lineto -6.748206e+01 1.121297e+01 lineto -6.75464e+01 1.20138e+01 lineto -6.494782e+01 1.189357e+01 lineto -closepath -gsave -6.541913e-01 6.541913e-01 8.177391e-01 setrgbcolor -fill -grestore -newpath -6.494655e+01 1.272365e+01 moveto -6.494782e+01 1.189357e+01 lineto -6.75464e+01 1.20138e+01 lineto -6.760833e+01 1.28468e+01 lineto -6.494655e+01 1.272365e+01 lineto -closepath -gsave -6.601143e-01 6.601143e-01 8.251429e-01 setrgbcolor -fill -grestore -newpath -6.494533e+01 1.358523e+01 moveto -6.494655e+01 1.272365e+01 lineto -6.760833e+01 1.28468e+01 lineto -6.76678e+01 1.371119e+01 lineto -6.494533e+01 1.358523e+01 lineto -closepath -gsave -6.65923e-01 6.65923e-01 8.324037e-01 setrgbcolor -fill -grestore -newpath -6.494416e+01 1.447751e+01 moveto -6.494533e+01 1.358523e+01 lineto -6.76678e+01 1.371119e+01 lineto -6.772473e+01 1.460616e+01 lineto -6.494416e+01 1.447751e+01 lineto -closepath -gsave -6.716091e-01 6.716091e-01 8.395114e-01 setrgbcolor -fill -grestore -newpath -6.494305e+01 1.539963e+01 moveto -6.494416e+01 1.447751e+01 lineto -6.772473e+01 1.460616e+01 lineto -6.777909e+01 1.553085e+01 lineto -6.494305e+01 1.539963e+01 lineto -closepath -gsave -6.771652e-01 6.771652e-01 8.464565e-01 setrgbcolor -fill -grestore -newpath -6.494199e+01 1.635073e+01 moveto -6.494305e+01 1.539963e+01 lineto -6.777909e+01 1.553085e+01 lineto -6.783081e+01 1.648438e+01 lineto -6.494199e+01 1.635073e+01 lineto -closepath -gsave -6.825839e-01 6.825839e-01 8.532299e-01 setrgbcolor -fill -grestore -newpath -6.494098e+01 1.73299e+01 moveto -6.494199e+01 1.635073e+01 lineto -6.783081e+01 1.648438e+01 lineto -6.787986e+01 1.746587e+01 lineto -6.494098e+01 1.73299e+01 lineto -closepath -gsave -6.878585e-01 6.878585e-01 8.598232e-01 setrgbcolor -fill -grestore -newpath -6.494004e+01 1.833621e+01 moveto -6.494098e+01 1.73299e+01 lineto -6.787986e+01 1.746587e+01 lineto -6.792618e+01 1.847437e+01 lineto -6.494004e+01 1.833621e+01 lineto -closepath -gsave -6.929827e-01 6.929827e-01 8.662284e-01 setrgbcolor -fill -grestore -newpath -6.493914e+01 1.936871e+01 moveto -6.494004e+01 1.833621e+01 lineto -6.792618e+01 1.847437e+01 lineto -6.796972e+01 1.950893e+01 lineto -6.493914e+01 1.936871e+01 lineto -closepath -gsave -6.979506e-01 6.979506e-01 8.724382e-01 setrgbcolor -fill -grestore -newpath -6.493831e+01 2.042643e+01 moveto -6.493914e+01 1.936871e+01 lineto -6.796972e+01 1.950893e+01 lineto -6.801046e+01 2.056857e+01 lineto -6.493831e+01 2.042643e+01 lineto -closepath -gsave -7.027566e-01 7.027566e-01 8.784457e-01 setrgbcolor -fill -grestore -newpath -6.493753e+01 2.150837e+01 moveto -6.493831e+01 2.042643e+01 lineto -6.801046e+01 2.056857e+01 lineto -6.804834e+01 2.165229e+01 lineto -6.493753e+01 2.150837e+01 lineto -closepath -gsave -7.073957e-01 7.073957e-01 8.842446e-01 setrgbcolor -fill -grestore -newpath -6.493681e+01 2.261349e+01 moveto -6.493753e+01 2.150837e+01 lineto -6.804834e+01 2.165229e+01 lineto -6.808334e+01 2.275907e+01 lineto -6.493681e+01 2.261349e+01 lineto -closepath -gsave -7.118633e-01 7.118633e-01 8.898291e-01 setrgbcolor -fill -grestore -newpath -6.589449e+01 2.920696e+00 moveto -6.579729e+01 2.877717e+00 lineto -6.660599e+01 2.930093e+00 lineto -6.68018e+01 2.979458e+00 lineto -6.589449e+01 2.920696e+00 lineto -closepath -gsave -5.291956e-01 5.291956e-01 6.614945e-01 setrgbcolor -fill -grestore -newpath -6.599085e+01 3.004464e+00 moveto -6.589449e+01 2.920696e+00 lineto -6.68018e+01 2.979458e+00 lineto -6.69959e+01 3.069555e+00 lineto -6.599085e+01 3.004464e+00 lineto -closepath -gsave -5.356056e-01 5.356056e-01 6.69507e-01 setrgbcolor -fill -grestore -newpath -6.608627e+01 3.128939e+00 moveto -6.599085e+01 3.004464e+00 lineto -6.69959e+01 3.069555e+00 lineto -6.71881e+01 3.200299e+00 lineto -6.608627e+01 3.128939e+00 lineto -closepath -gsave -5.421113e-01 5.421113e-01 6.776391e-01 setrgbcolor -fill -grestore -newpath -6.618066e+01 3.294006e+00 moveto -6.608627e+01 3.128939e+00 lineto -6.71881e+01 3.200299e+00 lineto -6.737824e+01 3.371566e+00 lineto -6.618066e+01 3.294006e+00 lineto -closepath -gsave -5.487019e-01 5.487019e-01 6.858773e-01 setrgbcolor -fill -grestore -newpath -6.627394e+01 3.499507e+00 moveto -6.618066e+01 3.294006e+00 lineto -6.737824e+01 3.371566e+00 lineto -6.756612e+01 3.583195e+00 lineto -6.627394e+01 3.499507e+00 lineto -closepath -gsave -5.55366e-01 5.55366e-01 6.942075e-01 setrgbcolor -fill -grestore -newpath -6.6366e+01 3.745247e+00 moveto -6.627394e+01 3.499507e+00 lineto -6.756612e+01 3.583195e+00 lineto -6.775158e+01 3.834983e+00 lineto -6.6366e+01 3.745247e+00 lineto -closepath -gsave -5.620921e-01 5.620921e-01 7.026152e-01 setrgbcolor -fill -grestore -newpath -6.645678e+01 4.030995e+00 moveto -6.6366e+01 3.745247e+00 lineto -6.775158e+01 3.834983e+00 lineto -6.793443e+01 4.126695e+00 lineto -6.645678e+01 4.030995e+00 lineto -closepath -gsave -5.688685e-01 5.688685e-01 7.110857e-01 setrgbcolor -fill -grestore -newpath -6.654617e+01 4.35648e+00 moveto -6.645678e+01 4.030995e+00 lineto -6.793443e+01 4.126695e+00 lineto -6.81145e+01 4.458052e+00 lineto -6.654617e+01 4.35648e+00 lineto -closepath -gsave -5.756833e-01 5.756833e-01 7.196042e-01 setrgbcolor -fill -grestore -newpath -6.66341e+01 4.721393e+00 moveto -6.654617e+01 4.35648e+00 lineto -6.81145e+01 4.458052e+00 lineto -6.829162e+01 4.828741e+00 lineto -6.66341e+01 4.721393e+00 lineto -closepath -gsave -5.825245e-01 5.825245e-01 7.281556e-01 setrgbcolor -fill -grestore -newpath -6.672049e+01 5.125389e+00 moveto -6.66341e+01 4.721393e+00 lineto -6.829162e+01 4.828741e+00 lineto -6.846562e+01 5.238412e+00 lineto -6.672049e+01 5.125389e+00 lineto -closepath -gsave -5.893799e-01 5.893799e-01 7.367249e-01 setrgbcolor -fill -grestore -newpath -6.680524e+01 5.568086e+00 moveto -6.672049e+01 5.125389e+00 lineto -6.846562e+01 5.238412e+00 lineto -6.863635e+01 5.686677e+00 lineto -6.680524e+01 5.568086e+00 lineto -closepath -gsave -5.962376e-01 5.962376e-01 7.452969e-01 setrgbcolor -fill -grestore -newpath -6.688829e+01 6.049064e+00 moveto -6.680524e+01 5.568086e+00 lineto -6.863635e+01 5.686677e+00 lineto -6.880363e+01 6.17311e+00 lineto -6.688829e+01 6.049064e+00 lineto -closepath -gsave -6.030855e-01 6.030855e-01 7.538568e-01 setrgbcolor -fill -grestore -newpath -6.696955e+01 6.567868e+00 moveto -6.688829e+01 6.049064e+00 lineto -6.880363e+01 6.17311e+00 lineto -6.896731e+01 6.697252e+00 lineto -6.696955e+01 6.567868e+00 lineto -closepath -gsave -6.099117e-01 6.099117e-01 7.623896e-01 setrgbcolor -fill -grestore -newpath -6.704894e+01 7.124006e+00 moveto -6.696955e+01 6.567868e+00 lineto -6.896731e+01 6.697252e+00 lineto -6.912723e+01 7.258606e+00 lineto -6.704894e+01 7.124006e+00 lineto -closepath -gsave -6.167045e-01 6.167045e-01 7.708806e-01 setrgbcolor -fill -grestore -newpath -6.712639e+01 7.716953e+00 moveto -6.704894e+01 7.124006e+00 lineto -6.912723e+01 7.258606e+00 lineto -6.928325e+01 7.856641e+00 lineto -6.712639e+01 7.716953e+00 lineto -closepath -gsave -6.234523e-01 6.234523e-01 7.793154e-01 setrgbcolor -fill -grestore -newpath -6.720183e+01 8.346146e+00 moveto -6.712639e+01 7.716953e+00 lineto -6.928325e+01 7.856641e+00 lineto -6.943521e+01 8.49079e+00 lineto -6.720183e+01 8.346146e+00 lineto -closepath -gsave -6.301438e-01 6.301438e-01 7.876798e-01 setrgbcolor -fill -grestore -newpath -6.727519e+01 9.010991e+00 moveto -6.720183e+01 8.346146e+00 lineto -6.943521e+01 8.49079e+00 lineto -6.958297e+01 9.160453e+00 lineto -6.727519e+01 9.010991e+00 lineto -closepath -gsave -6.36768e-01 6.36768e-01 7.9596e-01 setrgbcolor -fill -grestore -newpath -6.734639e+01 9.710857e+00 moveto -6.727519e+01 9.010991e+00 lineto -6.958297e+01 9.160453e+00 lineto -6.972639e+01 9.864997e+00 lineto -6.734639e+01 9.710857e+00 lineto -closepath -gsave -6.433141e-01 6.433141e-01 8.041427e-01 setrgbcolor -fill -grestore -newpath -6.741537e+01 1.044508e+01 moveto -6.734639e+01 9.710857e+00 lineto -6.972639e+01 9.864997e+00 lineto -6.986534e+01 1.060375e+01 lineto -6.741537e+01 1.044508e+01 lineto -closepath -gsave -6.497718e-01 6.497718e-01 8.122148e-01 setrgbcolor -fill -grestore -newpath -6.748206e+01 1.121297e+01 moveto -6.741537e+01 1.044508e+01 lineto -6.986534e+01 1.060375e+01 lineto -6.999968e+01 1.137602e+01 lineto -6.748206e+01 1.121297e+01 lineto -closepath -gsave -6.56131e-01 6.56131e-01 8.201638e-01 setrgbcolor -fill -grestore -newpath -6.75464e+01 1.20138e+01 moveto -6.748206e+01 1.121297e+01 lineto -6.999968e+01 1.137602e+01 lineto -7.012929e+01 1.218108e+01 lineto -6.75464e+01 1.20138e+01 lineto -closepath -gsave -6.623822e-01 6.623822e-01 8.279777e-01 setrgbcolor -fill -grestore -newpath -6.760833e+01 1.28468e+01 moveto -6.75464e+01 1.20138e+01 lineto -7.012929e+01 1.218108e+01 lineto -7.025404e+01 1.301815e+01 lineto -6.760833e+01 1.28468e+01 lineto -closepath -gsave -6.685161e-01 6.685161e-01 8.356451e-01 setrgbcolor -fill -grestore -newpath -6.76678e+01 1.371119e+01 moveto -6.760833e+01 1.28468e+01 lineto -7.025404e+01 1.301815e+01 lineto -7.037381e+01 1.388645e+01 lineto -6.76678e+01 1.371119e+01 lineto -closepath -gsave -6.745241e-01 6.745241e-01 8.431551e-01 setrgbcolor -fill -grestore -newpath -6.772473e+01 1.460616e+01 moveto -6.76678e+01 1.371119e+01 lineto -7.037381e+01 1.388645e+01 lineto -7.04885e+01 1.478515e+01 lineto -6.772473e+01 1.460616e+01 lineto -closepath -gsave -6.803978e-01 6.803978e-01 8.504973e-01 setrgbcolor -fill -grestore -newpath -6.777909e+01 1.553085e+01 moveto -6.772473e+01 1.460616e+01 lineto -7.04885e+01 1.478515e+01 lineto -7.059799e+01 1.571341e+01 lineto -6.777909e+01 1.553085e+01 lineto -closepath -gsave -6.861296e-01 6.861296e-01 8.57662e-01 setrgbcolor -fill -grestore -newpath -6.783081e+01 1.648438e+01 moveto -6.777909e+01 1.553085e+01 lineto -7.059799e+01 1.571341e+01 lineto -7.070218e+01 1.667035e+01 lineto -6.783081e+01 1.648438e+01 lineto -closepath -gsave -6.917121e-01 6.917121e-01 8.646401e-01 setrgbcolor -fill -grestore -newpath -6.787986e+01 1.746587e+01 moveto -6.783081e+01 1.648438e+01 lineto -7.070218e+01 1.667035e+01 lineto -7.080098e+01 1.765505e+01 lineto -6.787986e+01 1.746587e+01 lineto -closepath -gsave -6.971384e-01 6.971384e-01 8.71423e-01 setrgbcolor -fill -grestore -newpath -6.792618e+01 1.847437e+01 moveto -6.787986e+01 1.746587e+01 lineto -7.080098e+01 1.765505e+01 lineto -7.089427e+01 1.866659e+01 lineto -6.792618e+01 1.847437e+01 lineto -closepath -gsave -7.024022e-01 7.024022e-01 8.780027e-01 setrgbcolor -fill -grestore -newpath -6.796972e+01 1.950893e+01 moveto -6.792618e+01 1.847437e+01 lineto -7.089427e+01 1.866659e+01 lineto -7.098199e+01 1.970402e+01 lineto -6.796972e+01 1.950893e+01 lineto -closepath -gsave -7.074977e-01 7.074977e-01 8.843721e-01 setrgbcolor -fill -grestore -newpath -6.801046e+01 2.056857e+01 moveto -6.796972e+01 1.950893e+01 lineto -7.098199e+01 1.970402e+01 lineto -7.106405e+01 2.076634e+01 lineto -6.801046e+01 2.056857e+01 lineto -closepath -gsave -7.124194e-01 7.124194e-01 8.905243e-01 setrgbcolor -fill -grestore -newpath -6.804834e+01 2.165229e+01 moveto -6.801046e+01 2.056857e+01 lineto -7.106405e+01 2.076634e+01 lineto -7.114036e+01 2.185255e+01 lineto -6.804834e+01 2.165229e+01 lineto -closepath -gsave -7.171625e-01 7.171625e-01 8.964532e-01 setrgbcolor -fill -grestore -newpath -6.808334e+01 2.275907e+01 moveto -6.804834e+01 2.165229e+01 lineto -7.114036e+01 2.185255e+01 lineto -7.121086e+01 2.296162e+01 lineto -6.808334e+01 2.275907e+01 lineto -closepath -gsave -7.217225e-01 7.217225e-01 9.021532e-01 setrgbcolor -fill -grestore -newpath -6.68018e+01 2.979458e+00 moveto -6.660599e+01 2.930093e+00 lineto -6.74048e+01 2.996878e+00 lineto -6.7698e+01 3.054385e+00 lineto -6.68018e+01 2.979458e+00 lineto -closepath -gsave -5.312811e-01 5.312811e-01 6.641014e-01 setrgbcolor -fill -grestore -newpath -6.69959e+01 3.069555e+00 moveto -6.68018e+01 2.979458e+00 lineto -6.7698e+01 3.054385e+00 lineto -6.798864e+01 3.152554e+00 lineto -6.69959e+01 3.069555e+00 lineto -closepath -gsave -5.379643e-01 5.379643e-01 6.724553e-01 setrgbcolor -fill -grestore -newpath -6.71881e+01 3.200299e+00 moveto -6.69959e+01 3.069555e+00 lineto -6.798864e+01 3.152554e+00 lineto -6.827644e+01 3.291291e+00 lineto -6.71881e+01 3.200299e+00 lineto -closepath -gsave -5.447461e-01 5.447461e-01 6.809326e-01 setrgbcolor -fill -grestore -newpath -6.737824e+01 3.371566e+00 moveto -6.71881e+01 3.200299e+00 lineto -6.827644e+01 3.291291e+00 lineto -6.856115e+01 3.470465e+00 lineto -6.737824e+01 3.371566e+00 lineto -closepath -gsave -5.516146e-01 5.516146e-01 6.895183e-01 setrgbcolor -fill -grestore -newpath -6.756612e+01 3.583195e+00 moveto -6.737824e+01 3.371566e+00 lineto -6.856115e+01 3.470465e+00 lineto -6.884249e+01 3.689906e+00 lineto -6.756612e+01 3.583195e+00 lineto -closepath -gsave -5.585578e-01 5.585578e-01 6.981972e-01 setrgbcolor -fill -grestore -newpath -6.775158e+01 3.834983e+00 moveto -6.756612e+01 3.583195e+00 lineto -6.884249e+01 3.689906e+00 lineto -6.912019e+01 3.949407e+00 lineto -6.775158e+01 3.834983e+00 lineto -closepath -gsave -5.655631e-01 5.655631e-01 7.069538e-01 setrgbcolor -fill -grestore -newpath -6.793443e+01 4.126695e+00 moveto -6.775158e+01 3.834983e+00 lineto -6.912019e+01 3.949407e+00 lineto -6.939398e+01 4.248722e+00 lineto -6.793443e+01 4.126695e+00 lineto -closepath -gsave -5.726178e-01 5.726178e-01 7.157722e-01 setrgbcolor -fill -grestore -newpath -6.81145e+01 4.458052e+00 moveto -6.793443e+01 4.126695e+00 lineto -6.939398e+01 4.248722e+00 lineto -6.966362e+01 4.587567e+00 lineto -6.81145e+01 4.458052e+00 lineto -closepath -gsave -5.797092e-01 5.797092e-01 7.246365e-01 setrgbcolor -fill -grestore -newpath -6.829162e+01 4.828741e+00 moveto -6.81145e+01 4.458052e+00 lineto -6.966362e+01 4.587567e+00 lineto -6.992884e+01 4.965622e+00 lineto -6.829162e+01 4.828741e+00 lineto -closepath -gsave -5.868244e-01 5.868244e-01 7.335305e-01 setrgbcolor -fill -grestore -newpath -6.846562e+01 5.238412e+00 moveto -6.829162e+01 4.828741e+00 lineto -6.992884e+01 4.965622e+00 lineto -7.018939e+01 5.382529e+00 lineto -6.846562e+01 5.238412e+00 lineto -closepath -gsave -5.939506e-01 5.939506e-01 7.424382e-01 setrgbcolor -fill -grestore -newpath -6.863635e+01 5.686677e+00 moveto -6.846562e+01 5.238412e+00 lineto -7.018939e+01 5.382529e+00 lineto -7.044504e+01 5.837893e+00 lineto -6.863635e+01 5.686677e+00 lineto -closepath -gsave -6.010747e-01 6.010747e-01 7.513434e-01 setrgbcolor -fill -grestore -newpath -6.880363e+01 6.17311e+00 moveto -6.863635e+01 5.686677e+00 lineto -7.044504e+01 5.837893e+00 lineto -7.069552e+01 6.331283e+00 lineto -6.880363e+01 6.17311e+00 lineto -closepath -gsave -6.081841e-01 6.081841e-01 7.602302e-01 setrgbcolor -fill -grestore -newpath -6.896731e+01 6.697252e+00 moveto -6.880363e+01 6.17311e+00 lineto -7.069552e+01 6.331283e+00 lineto -7.094061e+01 6.862231e+00 lineto -6.896731e+01 6.697252e+00 lineto -closepath -gsave -6.152662e-01 6.152662e-01 7.690827e-01 setrgbcolor -fill -grestore -newpath -6.912723e+01 7.258606e+00 moveto -6.896731e+01 6.697252e+00 lineto -7.094061e+01 6.862231e+00 lineto -7.118008e+01 7.430236e+00 lineto -6.912723e+01 7.258606e+00 lineto -closepath -gsave -6.223084e-01 6.223084e-01 7.778854e-01 setrgbcolor -fill -grestore -newpath -6.928325e+01 7.856641e+00 moveto -6.912723e+01 7.258606e+00 lineto -7.118008e+01 7.430236e+00 lineto -7.14137e+01 8.034758e+00 lineto -6.928325e+01 7.856641e+00 lineto -closepath -gsave -6.292985e-01 6.292985e-01 7.866231e-01 setrgbcolor -fill -grestore -newpath -6.943521e+01 8.49079e+00 moveto -6.928325e+01 7.856641e+00 lineto -7.14137e+01 8.034758e+00 lineto -7.164124e+01 8.675227e+00 lineto -6.943521e+01 8.49079e+00 lineto -closepath -gsave -6.362247e-01 6.362247e-01 7.952809e-01 setrgbcolor -fill -grestore -newpath -6.958297e+01 9.160453e+00 moveto -6.943521e+01 8.49079e+00 lineto -7.164124e+01 8.675227e+00 lineto -7.18625e+01 9.351035e+00 lineto -6.958297e+01 9.160453e+00 lineto -closepath -gsave -6.430754e-01 6.430754e-01 8.038442e-01 setrgbcolor -fill -grestore -newpath -6.972639e+01 9.864997e+00 moveto -6.958297e+01 9.160453e+00 lineto -7.18625e+01 9.351035e+00 lineto -7.207726e+01 1.006154e+01 lineto -6.972639e+01 9.864997e+00 lineto -closepath -gsave -6.498393e-01 6.498393e-01 8.122991e-01 setrgbcolor -fill -grestore -newpath -6.986534e+01 1.060375e+01 moveto -6.972639e+01 9.864997e+00 lineto -7.207726e+01 1.006154e+01 lineto -7.228532e+01 1.080608e+01 lineto -6.986534e+01 1.060375e+01 lineto -closepath -gsave -6.565056e-01 6.565056e-01 8.20632e-01 setrgbcolor -fill -grestore -newpath -6.999968e+01 1.137602e+01 moveto -6.986534e+01 1.060375e+01 lineto -7.228532e+01 1.080608e+01 lineto -7.248648e+01 1.158393e+01 lineto -6.999968e+01 1.137602e+01 lineto -closepath -gsave -6.63064e-01 6.63064e-01 8.2883e-01 setrgbcolor -fill -grestore -newpath -7.012929e+01 1.218108e+01 moveto -6.999968e+01 1.137602e+01 lineto -7.248648e+01 1.158393e+01 lineto -7.268055e+01 1.239438e+01 lineto -7.012929e+01 1.218108e+01 lineto -closepath -gsave -6.695044e-01 6.695044e-01 8.368805e-01 setrgbcolor -fill -grestore -newpath -7.025404e+01 1.301815e+01 moveto -7.012929e+01 1.218108e+01 lineto -7.268055e+01 1.239438e+01 lineto -7.286735e+01 1.323664e+01 lineto -7.025404e+01 1.301815e+01 lineto -closepath -gsave -6.758176e-01 6.758176e-01 8.447719e-01 setrgbcolor -fill -grestore -newpath -7.037381e+01 1.388645e+01 moveto -7.025404e+01 1.301815e+01 lineto -7.286735e+01 1.323664e+01 lineto -7.30467e+01 1.410992e+01 lineto -7.037381e+01 1.388645e+01 lineto -closepath -gsave -6.819944e-01 6.819944e-01 8.52493e-01 setrgbcolor -fill -grestore -newpath -7.04885e+01 1.478515e+01 moveto -7.037381e+01 1.388645e+01 lineto -7.30467e+01 1.410992e+01 lineto -7.321843e+01 1.501339e+01 lineto -7.04885e+01 1.478515e+01 lineto -closepath -gsave -6.880266e-01 6.880266e-01 8.600332e-01 setrgbcolor -fill -grestore -newpath -7.059799e+01 1.571341e+01 moveto -7.04885e+01 1.478515e+01 lineto -7.321843e+01 1.501339e+01 lineto -7.338238e+01 1.59462e+01 lineto -7.059799e+01 1.571341e+01 lineto -closepath -gsave -6.939061e-01 6.939061e-01 8.673826e-01 setrgbcolor -fill -grestore -newpath -7.070218e+01 1.667035e+01 moveto -7.059799e+01 1.571341e+01 lineto -7.338238e+01 1.59462e+01 lineto -7.35384e+01 1.690747e+01 lineto -7.070218e+01 1.667035e+01 lineto -closepath -gsave -6.996257e-01 6.996257e-01 8.745321e-01 setrgbcolor -fill -grestore -newpath -7.080098e+01 1.765505e+01 moveto -7.070218e+01 1.667035e+01 lineto -7.35384e+01 1.690747e+01 lineto -7.368633e+01 1.789628e+01 lineto -7.080098e+01 1.765505e+01 lineto -closepath -gsave -7.051785e-01 7.051785e-01 8.814731e-01 setrgbcolor -fill -grestore -newpath -7.089427e+01 1.866659e+01 moveto -7.080098e+01 1.765505e+01 lineto -7.368633e+01 1.789628e+01 lineto -7.382603e+01 1.891171e+01 lineto -7.089427e+01 1.866659e+01 lineto -closepath -gsave -7.105582e-01 7.105582e-01 8.881977e-01 setrgbcolor -fill -grestore -newpath -7.098199e+01 1.970402e+01 moveto -7.089427e+01 1.866659e+01 lineto -7.382603e+01 1.891171e+01 lineto -7.395738e+01 1.995278e+01 lineto -7.098199e+01 1.970402e+01 lineto -closepath -gsave -7.15759e-01 7.15759e-01 8.946988e-01 setrgbcolor -fill -grestore -newpath -7.106405e+01 2.076634e+01 moveto -7.098199e+01 1.970402e+01 lineto -7.395738e+01 1.995278e+01 lineto -7.408025e+01 2.101851e+01 lineto -7.106405e+01 2.076634e+01 lineto -closepath -gsave -7.207757e-01 7.207757e-01 9.009696e-01 setrgbcolor -fill -grestore -newpath -7.114036e+01 2.185255e+01 moveto -7.106405e+01 2.076634e+01 lineto -7.408025e+01 2.101851e+01 lineto -7.419452e+01 2.210789e+01 lineto -7.114036e+01 2.185255e+01 lineto -closepath -gsave -7.256035e-01 7.256035e-01 9.070044e-01 setrgbcolor -fill -grestore -newpath -7.121086e+01 2.296162e+01 moveto -7.114036e+01 2.185255e+01 lineto -7.419452e+01 2.210789e+01 lineto -7.430009e+01 2.32199e+01 lineto -7.121086e+01 2.296162e+01 lineto -closepath -gsave -7.302381e-01 7.302381e-01 9.127976e-01 setrgbcolor -fill -grestore -newpath -6.7698e+01 3.054385e+00 moveto -6.74048e+01 2.996878e+00 lineto -6.818878e+01 3.07766e+00 lineto -6.857756e+01 3.145016e+00 lineto -6.7698e+01 3.054385e+00 lineto -closepath -gsave -5.330469e-01 5.330469e-01 6.663087e-01 setrgbcolor -fill -grestore -newpath -6.798864e+01 3.152554e+00 moveto -6.7698e+01 3.054385e+00 lineto -6.857756e+01 3.145016e+00 lineto -6.896295e+01 3.252948e+00 lineto -6.798864e+01 3.152554e+00 lineto -closepath -gsave -5.399618e-01 5.399618e-01 6.749522e-01 setrgbcolor -fill -grestore -newpath -6.827644e+01 3.291291e+00 moveto -6.798864e+01 3.152554e+00 lineto -6.896295e+01 3.252948e+00 lineto -6.934459e+01 3.401353e+00 lineto -6.827644e+01 3.291291e+00 lineto -closepath -gsave -5.469777e-01 5.469777e-01 6.837221e-01 setrgbcolor -fill -grestore -newpath -6.856115e+01 3.470465e+00 moveto -6.827644e+01 3.291291e+00 lineto -6.934459e+01 3.401353e+00 lineto -6.972211e+01 3.590091e+00 lineto -6.856115e+01 3.470465e+00 lineto -closepath -gsave -5.540819e-01 5.540819e-01 6.926023e-01 setrgbcolor -fill -grestore -newpath -6.884249e+01 3.689906e+00 moveto -6.856115e+01 3.470465e+00 lineto -6.972211e+01 3.590091e+00 lineto -7.009516e+01 3.818983e+00 lineto -6.884249e+01 3.689906e+00 lineto -closepath -gsave -5.612614e-01 5.612614e-01 7.015768e-01 setrgbcolor -fill -grestore -newpath -6.912019e+01 3.949407e+00 moveto -6.884249e+01 3.689906e+00 lineto -7.009516e+01 3.818983e+00 lineto -7.046339e+01 4.087812e+00 lineto -6.912019e+01 3.949407e+00 lineto -closepath -gsave -5.68503e-01 5.68503e-01 7.106288e-01 setrgbcolor -fill -grestore -newpath -6.939398e+01 4.248722e+00 moveto -6.912019e+01 3.949407e+00 lineto -7.046339e+01 4.087812e+00 lineto -7.082645e+01 4.396325e+00 lineto -6.939398e+01 4.248722e+00 lineto -closepath -gsave -5.757933e-01 5.757933e-01 7.197416e-01 setrgbcolor -fill -grestore -newpath -6.966362e+01 4.587567e+00 moveto -6.939398e+01 4.248722e+00 lineto -7.082645e+01 4.396325e+00 lineto -7.118399e+01 4.744228e+00 lineto -6.966362e+01 4.587567e+00 lineto -closepath -gsave -5.831186e-01 5.831186e-01 7.288982e-01 setrgbcolor -fill -grestore -newpath -6.992884e+01 4.965622e+00 moveto -6.966362e+01 4.587567e+00 lineto -7.118399e+01 4.744228e+00 lineto -7.153567e+01 5.131192e+00 lineto -6.992884e+01 4.965622e+00 lineto -closepath -gsave -5.904653e-01 5.904653e-01 7.380816e-01 setrgbcolor -fill -grestore -newpath -7.018939e+01 5.382529e+00 moveto -6.992884e+01 4.965622e+00 lineto -7.153567e+01 5.131192e+00 lineto -7.188117e+01 5.556852e+00 lineto -7.018939e+01 5.382529e+00 lineto -closepath -gsave -5.978199e-01 5.978199e-01 7.472748e-01 setrgbcolor -fill -grestore -newpath -7.044504e+01 5.837893e+00 moveto -7.018939e+01 5.382529e+00 lineto -7.188117e+01 5.556852e+00 lineto -7.222015e+01 6.020803e+00 lineto -7.044504e+01 5.837893e+00 lineto -closepath -gsave -6.051686e-01 6.051686e-01 7.564608e-01 setrgbcolor -fill -grestore -newpath -7.069552e+01 6.331283e+00 moveto -7.044504e+01 5.837893e+00 lineto -7.222015e+01 6.020803e+00 lineto -7.25523e+01 6.522607e+00 lineto -7.069552e+01 6.331283e+00 lineto -closepath -gsave -6.124982e-01 6.124982e-01 7.656228e-01 setrgbcolor -fill -grestore -newpath -7.094061e+01 6.862231e+00 moveto -7.069552e+01 6.331283e+00 lineto -7.25523e+01 6.522607e+00 lineto -7.287729e+01 7.061789e+00 lineto -7.094061e+01 6.862231e+00 lineto -closepath -gsave -6.197953e-01 6.197953e-01 7.747441e-01 setrgbcolor -fill -grestore -newpath -7.118008e+01 7.430236e+00 moveto -7.094061e+01 6.862231e+00 lineto -7.287729e+01 7.061789e+00 lineto -7.319483e+01 7.637837e+00 lineto -7.118008e+01 7.430236e+00 lineto -closepath -gsave -6.270468e-01 6.270468e-01 7.838085e-01 setrgbcolor -fill -grestore -newpath -7.14137e+01 8.034758e+00 moveto -7.118008e+01 7.430236e+00 lineto -7.319483e+01 7.637837e+00 lineto -7.350461e+01 8.250208e+00 lineto -7.14137e+01 8.034758e+00 lineto -closepath -gsave -6.342401e-01 6.342401e-01 7.928001e-01 setrgbcolor -fill -grestore -newpath -7.164124e+01 8.675227e+00 moveto -7.14137e+01 8.034758e+00 lineto -7.350461e+01 8.250208e+00 lineto -7.380633e+01 8.89832e+00 lineto -7.164124e+01 8.675227e+00 lineto -closepath -gsave -6.413626e-01 6.413626e-01 8.017033e-01 setrgbcolor -fill -grestore -newpath -7.18625e+01 9.351035e+00 moveto -7.164124e+01 8.675227e+00 lineto -7.380633e+01 8.89832e+00 lineto -7.409972e+01 9.58156e+00 lineto -7.18625e+01 9.351035e+00 lineto -closepath -gsave -6.484025e-01 6.484025e-01 8.105031e-01 setrgbcolor -fill -grestore -newpath -7.207726e+01 1.006154e+01 moveto -7.18625e+01 9.351035e+00 lineto -7.409972e+01 9.58156e+00 lineto -7.438449e+01 1.029928e+01 lineto -7.207726e+01 1.006154e+01 lineto -closepath -gsave -6.553479e-01 6.553479e-01 8.191848e-01 setrgbcolor -fill -grestore -newpath -7.228532e+01 1.080608e+01 moveto -7.207726e+01 1.006154e+01 lineto -7.438449e+01 1.029928e+01 lineto -7.466038e+01 1.105081e+01 lineto -7.228532e+01 1.080608e+01 lineto -closepath -gsave -6.621877e-01 6.621877e-01 8.277346e-01 setrgbcolor -fill -grestore -newpath -7.248648e+01 1.158393e+01 moveto -7.228532e+01 1.080608e+01 lineto -7.466038e+01 1.105081e+01 lineto -7.492712e+01 1.183542e+01 lineto -7.248648e+01 1.158393e+01 lineto -closepath -gsave -6.689113e-01 6.689113e-01 8.361391e-01 setrgbcolor -fill -grestore -newpath -7.268055e+01 1.239438e+01 moveto -7.248648e+01 1.158393e+01 lineto -7.492712e+01 1.183542e+01 lineto -7.518446e+01 1.265238e+01 lineto -7.268055e+01 1.239438e+01 lineto -closepath -gsave -6.755084e-01 6.755084e-01 8.443855e-01 setrgbcolor -fill -grestore -newpath -7.286735e+01 1.323664e+01 moveto -7.268055e+01 1.239438e+01 lineto -7.518446e+01 1.265238e+01 lineto -7.543215e+01 1.350092e+01 lineto -7.286735e+01 1.323664e+01 lineto -closepath -gsave -6.819694e-01 6.819694e-01 8.524618e-01 setrgbcolor -fill -grestore -newpath -7.30467e+01 1.410992e+01 moveto -7.286735e+01 1.323664e+01 lineto -7.543215e+01 1.350092e+01 lineto -7.566997e+01 1.438022e+01 lineto -7.30467e+01 1.410992e+01 lineto -closepath -gsave -6.882852e-01 6.882852e-01 8.603566e-01 setrgbcolor -fill -grestore -newpath -7.321843e+01 1.501339e+01 moveto -7.30467e+01 1.410992e+01 lineto -7.566997e+01 1.438022e+01 lineto -7.589769e+01 1.528946e+01 lineto -7.321843e+01 1.501339e+01 lineto -closepath -gsave -6.944473e-01 6.944473e-01 8.680591e-01 setrgbcolor -fill -grestore -newpath -7.338238e+01 1.59462e+01 moveto -7.321843e+01 1.501339e+01 lineto -7.589769e+01 1.528946e+01 lineto -7.611509e+01 1.622778e+01 lineto -7.338238e+01 1.59462e+01 lineto -closepath -gsave -7.004476e-01 7.004476e-01 8.755596e-01 setrgbcolor -fill -grestore -newpath -7.35384e+01 1.690747e+01 moveto -7.338238e+01 1.59462e+01 lineto -7.611509e+01 1.622778e+01 lineto -7.632197e+01 1.719429e+01 lineto -7.35384e+01 1.690747e+01 lineto -closepath -gsave -7.062789e-01 7.062789e-01 8.828486e-01 setrgbcolor -fill -grestore -newpath -7.368633e+01 1.789628e+01 moveto -7.35384e+01 1.690747e+01 lineto -7.632197e+01 1.719429e+01 lineto -7.651813e+01 1.818808e+01 lineto -7.368633e+01 1.789628e+01 lineto -closepath -gsave -7.119342e-01 7.119342e-01 8.899178e-01 setrgbcolor -fill -grestore -newpath -7.382603e+01 1.891171e+01 moveto -7.368633e+01 1.789628e+01 lineto -7.651813e+01 1.818808e+01 lineto -7.670338e+01 1.920819e+01 lineto -7.382603e+01 1.891171e+01 lineto -closepath -gsave -7.174074e-01 7.174074e-01 8.967592e-01 setrgbcolor -fill -grestore -newpath -7.395738e+01 1.995278e+01 moveto -7.382603e+01 1.891171e+01 lineto -7.670338e+01 1.920819e+01 lineto -7.687755e+01 2.025367e+01 lineto -7.395738e+01 1.995278e+01 lineto -closepath -gsave -7.226927e-01 7.226927e-01 9.033659e-01 setrgbcolor -fill -grestore -newpath -7.408025e+01 2.101851e+01 moveto -7.395738e+01 1.995278e+01 lineto -7.687755e+01 2.025367e+01 lineto -7.704047e+01 2.132353e+01 lineto -7.408025e+01 2.101851e+01 lineto -closepath -gsave -7.277851e-01 7.277851e-01 9.097314e-01 setrgbcolor -fill -grestore -newpath -7.419452e+01 2.210789e+01 moveto -7.408025e+01 2.101851e+01 lineto -7.704047e+01 2.132353e+01 lineto -7.7192e+01 2.241675e+01 lineto -7.419452e+01 2.210789e+01 lineto -closepath -gsave -7.326799e-01 7.326799e-01 9.158499e-01 setrgbcolor -fill -grestore -newpath -7.430009e+01 2.32199e+01 moveto -7.419452e+01 2.210789e+01 lineto -7.7192e+01 2.241675e+01 lineto -7.733198e+01 2.353231e+01 lineto -7.430009e+01 2.32199e+01 lineto -closepath -gsave -7.373731e-01 7.373731e-01 9.217164e-01 setrgbcolor -fill -grestore -newpath -6.857756e+01 3.145016e+00 moveto -6.818878e+01 3.07766e+00 lineto -6.89531e+01 3.171942e+00 lineto -6.943507e+01 3.250793e+00 lineto -6.857756e+01 3.145016e+00 lineto -closepath -gsave -5.34478e-01 5.34478e-01 6.680975e-01 setrgbcolor -fill -grestore -newpath -6.896295e+01 3.252948e+00 moveto -6.857756e+01 3.145016e+00 lineto -6.943507e+01 3.250793e+00 lineto -6.991283e+01 3.370119e+00 lineto -6.896295e+01 3.252948e+00 lineto -closepath -gsave -5.415809e-01 5.415809e-01 6.769761e-01 setrgbcolor -fill -grestore -newpath -6.934459e+01 3.401353e+00 moveto -6.896295e+01 3.252948e+00 lineto -6.991283e+01 3.370119e+00 lineto -7.038594e+01 3.529808e+00 lineto -6.934459e+01 3.401353e+00 lineto -closepath -gsave -5.487867e-01 5.487867e-01 6.859833e-01 setrgbcolor -fill -grestore -newpath -6.972211e+01 3.590091e+00 moveto -6.934459e+01 3.401353e+00 lineto -7.038594e+01 3.529808e+00 lineto -7.085396e+01 3.729708e+00 lineto -6.972211e+01 3.590091e+00 lineto -closepath -gsave -5.56082e-01 5.56082e-01 6.951024e-01 setrgbcolor -fill -grestore -newpath -7.009516e+01 3.818983e+00 moveto -6.972211e+01 3.590091e+00 lineto -7.085396e+01 3.729708e+00 lineto -7.131643e+01 3.96963e+00 lineto -7.009516e+01 3.818983e+00 lineto -closepath -gsave -5.634531e-01 5.634531e-01 7.043164e-01 setrgbcolor -fill -grestore -newpath -7.046339e+01 4.087812e+00 moveto -7.009516e+01 3.818983e+00 lineto -7.131643e+01 3.96963e+00 lineto -7.177292e+01 4.249347e+00 lineto -7.046339e+01 4.087812e+00 lineto -closepath -gsave -5.708862e-01 5.708862e-01 7.136078e-01 setrgbcolor -fill -grestore -newpath -7.082645e+01 4.396325e+00 moveto -7.046339e+01 4.087812e+00 lineto -7.177292e+01 4.249347e+00 lineto -7.222299e+01 4.568593e+00 lineto -7.082645e+01 4.396325e+00 lineto -closepath -gsave -5.783672e-01 5.783672e-01 7.22959e-01 setrgbcolor -fill -grestore -newpath -7.118399e+01 4.744228e+00 moveto -7.082645e+01 4.396325e+00 lineto -7.222299e+01 4.568593e+00 lineto -7.266623e+01 4.927068e+00 lineto -7.118399e+01 4.744228e+00 lineto -closepath -gsave -5.858817e-01 5.858817e-01 7.323522e-01 setrgbcolor -fill -grestore -newpath -7.153567e+01 5.131192e+00 moveto -7.118399e+01 4.744228e+00 lineto -7.266623e+01 4.927068e+00 lineto -7.310221e+01 5.32443e+00 lineto -7.153567e+01 5.131192e+00 lineto -closepath -gsave -5.934157e-01 5.934157e-01 7.417696e-01 setrgbcolor -fill -grestore -newpath -7.188117e+01 5.556852e+00 moveto -7.153567e+01 5.131192e+00 lineto -7.310221e+01 5.32443e+00 lineto -7.353052e+01 5.760305e+00 lineto -7.188117e+01 5.556852e+00 lineto -closepath -gsave -6.009548e-01 6.009548e-01 7.511935e-01 setrgbcolor -fill -grestore -newpath -7.222015e+01 6.020803e+00 moveto -7.188117e+01 5.556852e+00 lineto -7.353052e+01 5.760305e+00 lineto -7.395075e+01 6.234279e+00 lineto -7.222015e+01 6.020803e+00 lineto -closepath -gsave -6.084848e-01 6.084848e-01 7.606061e-01 setrgbcolor -fill -grestore -newpath -7.25523e+01 6.522607e+00 moveto -7.222015e+01 6.020803e+00 lineto -7.395075e+01 6.234279e+00 lineto -7.436251e+01 6.745903e+00 lineto -7.25523e+01 6.522607e+00 lineto -closepath -gsave -6.159919e-01 6.159919e-01 7.699899e-01 setrgbcolor -fill -grestore -newpath -7.287729e+01 7.061789e+00 moveto -7.25523e+01 6.522607e+00 lineto -7.436251e+01 6.745903e+00 lineto -7.47654e+01 7.294694e+00 lineto -7.287729e+01 7.061789e+00 lineto -closepath -gsave -6.234621e-01 6.234621e-01 7.793277e-01 setrgbcolor -fill -grestore -newpath -7.319483e+01 7.637837e+00 moveto -7.287729e+01 7.061789e+00 lineto -7.47654e+01 7.294694e+00 lineto -7.515905e+01 7.880131e+00 lineto -7.319483e+01 7.637837e+00 lineto -closepath -gsave -6.30882e-01 6.30882e-01 7.886026e-01 setrgbcolor -fill -grestore -newpath -7.350461e+01 8.250208e+00 moveto -7.319483e+01 7.637837e+00 lineto -7.515905e+01 7.880131e+00 lineto -7.554308e+01 8.50166e+00 lineto -7.350461e+01 8.250208e+00 lineto -closepath -gsave -6.382384e-01 6.382384e-01 7.97798e-01 setrgbcolor -fill -grestore -newpath -7.380633e+01 8.89832e+00 moveto -7.350461e+01 8.250208e+00 lineto -7.554308e+01 8.50166e+00 lineto -7.591712e+01 9.158694e+00 lineto -7.380633e+01 8.89832e+00 lineto -closepath -gsave -6.455184e-01 6.455184e-01 8.06898e-01 setrgbcolor -fill -grestore -newpath -7.409972e+01 9.58156e+00 moveto -7.380633e+01 8.89832e+00 lineto -7.591712e+01 9.158694e+00 lineto -7.628083e+01 9.850609e+00 lineto -7.409972e+01 9.58156e+00 lineto -closepath -gsave -6.527096e-01 6.527096e-01 8.158871e-01 setrgbcolor -fill -grestore -newpath -7.438449e+01 1.029928e+01 moveto -7.409972e+01 9.58156e+00 lineto -7.628083e+01 9.850609e+00 lineto -7.663386e+01 1.057675e+01 lineto -7.438449e+01 1.029928e+01 lineto -closepath -gsave -6.598001e-01 6.598001e-01 8.247502e-01 setrgbcolor -fill -grestore -newpath -7.466038e+01 1.105081e+01 moveto -7.438449e+01 1.029928e+01 lineto -7.663386e+01 1.057675e+01 lineto -7.697588e+01 1.133643e+01 lineto -7.466038e+01 1.105081e+01 lineto -closepath -gsave -6.667784e-01 6.667784e-01 8.33473e-01 setrgbcolor -fill -grestore -newpath -7.492712e+01 1.183542e+01 moveto -7.466038e+01 1.105081e+01 lineto -7.697588e+01 1.133643e+01 lineto -7.730655e+01 1.212893e+01 lineto -7.492712e+01 1.183542e+01 lineto -closepath -gsave -6.736335e-01 6.736335e-01 8.420418e-01 setrgbcolor -fill -grestore -newpath -7.518446e+01 1.265238e+01 moveto -7.492712e+01 1.183542e+01 lineto -7.730655e+01 1.212893e+01 lineto -7.762557e+01 1.29535e+01 lineto -7.518446e+01 1.265238e+01 lineto -closepath -gsave -6.80355e-01 6.80355e-01 8.504438e-01 setrgbcolor -fill -grestore -newpath -7.543215e+01 1.350092e+01 moveto -7.518446e+01 1.265238e+01 lineto -7.762557e+01 1.29535e+01 lineto -7.793264e+01 1.380936e+01 lineto -7.543215e+01 1.350092e+01 lineto -closepath -gsave -6.869332e-01 6.869332e-01 8.586665e-01 setrgbcolor -fill -grestore -newpath -7.566997e+01 1.438022e+01 moveto -7.543215e+01 1.350092e+01 lineto -7.793264e+01 1.380936e+01 lineto -7.822747e+01 1.46957e+01 lineto -7.566997e+01 1.438022e+01 lineto -closepath -gsave -6.933588e-01 6.933588e-01 8.666985e-01 setrgbcolor -fill -grestore -newpath -7.589769e+01 1.528946e+01 moveto -7.566997e+01 1.438022e+01 lineto -7.822747e+01 1.46957e+01 lineto -7.850977e+01 1.561167e+01 lineto -7.589769e+01 1.528946e+01 lineto -closepath -gsave -6.996232e-01 6.996232e-01 8.74529e-01 setrgbcolor -fill -grestore -newpath -7.611509e+01 1.622778e+01 moveto -7.589769e+01 1.528946e+01 lineto -7.850977e+01 1.561167e+01 lineto -7.877928e+01 1.655642e+01 lineto -7.611509e+01 1.622778e+01 lineto -closepath -gsave -7.057184e-01 7.057184e-01 8.82148e-01 setrgbcolor -fill -grestore -newpath -7.632197e+01 1.719429e+01 moveto -7.611509e+01 1.622778e+01 lineto -7.877928e+01 1.655642e+01 lineto -7.903574e+01 1.752905e+01 lineto -7.632197e+01 1.719429e+01 lineto -closepath -gsave -7.11637e-01 7.11637e-01 8.895462e-01 setrgbcolor -fill -grestore -newpath -7.651813e+01 1.818808e+01 moveto -7.632197e+01 1.719429e+01 lineto -7.903574e+01 1.752905e+01 lineto -7.927891e+01 1.852863e+01 lineto -7.651813e+01 1.818808e+01 lineto -closepath -gsave -7.173722e-01 7.173722e-01 8.967153e-01 setrgbcolor -fill -grestore -newpath -7.670338e+01 1.920819e+01 moveto -7.651813e+01 1.818808e+01 lineto -7.927891e+01 1.852863e+01 lineto -7.950857e+01 1.955422e+01 lineto -7.670338e+01 1.920819e+01 lineto -closepath -gsave -7.229179e-01 7.229179e-01 9.036474e-01 setrgbcolor -fill -grestore -newpath -7.687755e+01 2.025367e+01 moveto -7.670338e+01 1.920819e+01 lineto -7.950857e+01 1.955422e+01 lineto -7.972448e+01 2.060485e+01 lineto -7.687755e+01 2.025367e+01 lineto -closepath -gsave -7.282685e-01 7.282685e-01 9.103356e-01 setrgbcolor -fill -grestore -newpath -7.704047e+01 2.132353e+01 moveto -7.687755e+01 2.025367e+01 lineto -7.972448e+01 2.060485e+01 lineto -7.992646e+01 2.167953e+01 lineto -7.704047e+01 2.132353e+01 lineto -closepath -gsave -7.33419e-01 7.33419e-01 9.167737e-01 setrgbcolor -fill -grestore -newpath -7.7192e+01 2.241675e+01 moveto -7.704047e+01 2.132353e+01 lineto -7.992646e+01 2.167953e+01 lineto -8.01143e+01 2.277723e+01 lineto -7.7192e+01 2.241675e+01 lineto -closepath -gsave -7.383649e-01 7.383649e-01 9.229562e-01 setrgbcolor -fill -grestore -newpath -7.733198e+01 2.353231e+01 moveto -7.7192e+01 2.241675e+01 lineto -8.01143e+01 2.277723e+01 lineto -8.028784e+01 2.389692e+01 lineto -7.733198e+01 2.353231e+01 lineto -closepath -gsave -7.431025e-01 7.431025e-01 9.288781e-01 setrgbcolor -fill -grestore -newpath -6.943507e+01 3.250793e+00 moveto -6.89531e+01 3.171942e+00 lineto -6.969305e+01 3.279141e+00 lineto -7.026523e+01 3.371062e+00 lineto -6.943507e+01 3.250793e+00 lineto -closepath -gsave -5.355622e-01 5.355622e-01 6.694527e-01 setrgbcolor -fill -grestore -newpath -6.991283e+01 3.370119e+00 moveto -6.943507e+01 3.250793e+00 lineto -7.026523e+01 3.371062e+00 lineto -7.083242e+01 3.503345e+00 lineto -6.991283e+01 3.370119e+00 lineto -closepath -gsave -5.428076e-01 5.428076e-01 6.785095e-01 setrgbcolor -fill -grestore -newpath -7.038594e+01 3.529808e+00 moveto -6.991283e+01 3.370119e+00 lineto -7.083242e+01 3.503345e+00 lineto -7.139409e+01 3.675863e+00 lineto -7.038594e+01 3.529808e+00 lineto -closepath -gsave -5.501573e-01 5.501573e-01 6.876966e-01 setrgbcolor -fill -grestore -newpath -7.085396e+01 3.729708e+00 moveto -7.038594e+01 3.529808e+00 lineto -7.139409e+01 3.675863e+00 lineto -7.194971e+01 3.888455e+00 lineto -7.085396e+01 3.729708e+00 lineto -closepath -gsave -5.575974e-01 5.575974e-01 6.969968e-01 setrgbcolor -fill -grestore -newpath -7.131643e+01 3.96963e+00 moveto -7.085396e+01 3.729708e+00 lineto -7.194971e+01 3.888455e+00 lineto -7.249875e+01 4.140918e+00 lineto -7.131643e+01 3.96963e+00 lineto -closepath -gsave -5.651138e-01 5.651138e-01 7.063922e-01 setrgbcolor -fill -grestore -newpath -7.177292e+01 4.249347e+00 moveto -7.131643e+01 3.96963e+00 lineto -7.249875e+01 4.140918e+00 lineto -7.304068e+01 4.433014e+00 lineto -7.177292e+01 4.249347e+00 lineto -closepath -gsave -5.726919e-01 5.726919e-01 7.158649e-01 setrgbcolor -fill -grestore -newpath -7.222299e+01 4.568593e+00 moveto -7.177292e+01 4.249347e+00 lineto -7.304068e+01 4.433014e+00 lineto -7.357501e+01 4.764466e+00 lineto -7.222299e+01 4.568593e+00 lineto -closepath -gsave -5.803172e-01 5.803172e-01 7.253965e-01 setrgbcolor -fill -grestore -newpath -7.266623e+01 4.927068e+00 moveto -7.222299e+01 4.568593e+00 lineto -7.357501e+01 4.764466e+00 lineto -7.410121e+01 5.13496e+00 lineto -7.266623e+01 4.927068e+00 lineto -closepath -gsave -5.87975e-01 5.87975e-01 7.349687e-01 setrgbcolor -fill -grestore -newpath -7.310221e+01 5.32443e+00 moveto -7.266623e+01 4.927068e+00 lineto -7.410121e+01 5.13496e+00 lineto -7.46188e+01 5.544145e+00 lineto -7.310221e+01 5.32443e+00 lineto -closepath -gsave -5.956505e-01 5.956505e-01 7.445631e-01 setrgbcolor -fill -grestore -newpath -7.353052e+01 5.760305e+00 moveto -7.310221e+01 5.32443e+00 lineto -7.46188e+01 5.544145e+00 lineto -7.512728e+01 5.991634e+00 lineto -7.353052e+01 5.760305e+00 lineto -closepath -gsave -6.03329e-01 6.03329e-01 7.541612e-01 setrgbcolor -fill -grestore -newpath -7.395075e+01 6.234279e+00 moveto -7.353052e+01 5.760305e+00 lineto -7.512728e+01 5.991634e+00 lineto -7.562617e+01 6.477004e+00 lineto -7.395075e+01 6.234279e+00 lineto -closepath -gsave -6.109959e-01 6.109959e-01 7.637448e-01 setrgbcolor -fill -grestore -newpath -7.436251e+01 6.745903e+00 moveto -7.395075e+01 6.234279e+00 lineto -7.562617e+01 6.477004e+00 lineto -7.6115e+01 6.999794e+00 lineto -7.436251e+01 6.745903e+00 lineto -closepath -gsave -6.186368e-01 6.186368e-01 7.73296e-01 setrgbcolor -fill -grestore -newpath -7.47654e+01 7.294694e+00 moveto -7.436251e+01 6.745903e+00 lineto -7.6115e+01 6.999794e+00 lineto -7.659331e+01 7.559511e+00 lineto -7.47654e+01 7.294694e+00 lineto -closepath -gsave -6.262375e-01 6.262375e-01 7.827969e-01 setrgbcolor -fill -grestore -newpath -7.515905e+01 7.880131e+00 moveto -7.47654e+01 7.294694e+00 lineto -7.659331e+01 7.559511e+00 lineto -7.706064e+01 8.155623e+00 lineto -7.515905e+01 7.880131e+00 lineto -closepath -gsave -6.337841e-01 6.337841e-01 7.922302e-01 setrgbcolor -fill -grestore -newpath -7.554308e+01 8.50166e+00 moveto -7.515905e+01 7.880131e+00 lineto -7.706064e+01 8.155623e+00 lineto -7.751655e+01 8.787566e+00 lineto -7.554308e+01 8.50166e+00 lineto -closepath -gsave -6.412632e-01 6.412632e-01 8.015789e-01 setrgbcolor -fill -grestore -newpath -7.591712e+01 9.158694e+00 moveto -7.554308e+01 8.50166e+00 lineto -7.751655e+01 8.787566e+00 lineto -7.796061e+01 9.454743e+00 lineto -7.591712e+01 9.158694e+00 lineto -closepath -gsave -6.486614e-01 6.486614e-01 8.108267e-01 setrgbcolor -fill -grestore -newpath -7.628083e+01 9.850609e+00 moveto -7.591712e+01 9.158694e+00 lineto -7.796061e+01 9.454743e+00 lineto -7.83924e+01 1.015652e+01 lineto -7.628083e+01 9.850609e+00 lineto -closepath -gsave -6.559662e-01 6.559662e-01 8.199577e-01 setrgbcolor -fill -grestore -newpath -7.663386e+01 1.057675e+01 moveto -7.628083e+01 9.850609e+00 lineto -7.83924e+01 1.015652e+01 lineto -7.881151e+01 1.089224e+01 lineto -7.663386e+01 1.057675e+01 lineto -closepath -gsave -6.631652e-01 6.631652e-01 8.289566e-01 setrgbcolor -fill -grestore -newpath -7.697588e+01 1.133643e+01 moveto -7.663386e+01 1.057675e+01 lineto -7.881151e+01 1.089224e+01 lineto -7.921754e+01 1.166119e+01 lineto -7.697588e+01 1.133643e+01 lineto -closepath -gsave -6.70247e-01 6.70247e-01 8.378087e-01 setrgbcolor -fill -grestore -newpath -7.730655e+01 1.212893e+01 moveto -7.697588e+01 1.133643e+01 lineto -7.921754e+01 1.166119e+01 lineto -7.961011e+01 1.246266e+01 lineto -7.730655e+01 1.212893e+01 lineto -closepath -gsave -6.772002e-01 6.772002e-01 8.465003e-01 setrgbcolor -fill -grestore -newpath -7.762557e+01 1.29535e+01 moveto -7.730655e+01 1.212893e+01 lineto -7.961011e+01 1.246266e+01 lineto -7.998885e+01 1.329588e+01 lineto -7.762557e+01 1.29535e+01 lineto -closepath -gsave -6.840144e-01 6.840144e-01 8.550181e-01 setrgbcolor -fill -grestore -newpath -7.793264e+01 1.380936e+01 moveto -7.762557e+01 1.29535e+01 lineto -7.998885e+01 1.329588e+01 lineto -8.03534e+01 1.416007e+01 lineto -7.793264e+01 1.380936e+01 lineto -closepath -gsave -6.906797e-01 6.906797e-01 8.633497e-01 setrgbcolor -fill -grestore -newpath -7.822747e+01 1.46957e+01 moveto -7.793264e+01 1.380936e+01 lineto -8.03534e+01 1.416007e+01 lineto -8.070341e+01 1.50544e+01 lineto -7.822747e+01 1.46957e+01 lineto -closepath -gsave -6.971868e-01 6.971868e-01 8.714834e-01 setrgbcolor -fill -grestore -newpath -7.850977e+01 1.561167e+01 moveto -7.822747e+01 1.46957e+01 lineto -8.070341e+01 1.50544e+01 lineto -8.103855e+01 1.597803e+01 lineto -7.850977e+01 1.561167e+01 lineto -closepath -gsave -7.035269e-01 7.035269e-01 8.794086e-01 setrgbcolor -fill -grestore -newpath -7.877928e+01 1.655642e+01 moveto -7.850977e+01 1.561167e+01 lineto -8.103855e+01 1.597803e+01 lineto -8.13585e+01 1.693009e+01 lineto -7.877928e+01 1.655642e+01 lineto -closepath -gsave -7.096921e-01 7.096921e-01 8.871151e-01 setrgbcolor -fill -grestore -newpath -7.903574e+01 1.752905e+01 moveto -7.877928e+01 1.655642e+01 lineto -8.13585e+01 1.693009e+01 lineto -8.166297e+01 1.790967e+01 lineto -7.903574e+01 1.752905e+01 lineto -closepath -gsave -7.156749e-01 7.156749e-01 8.945937e-01 setrgbcolor -fill -grestore -newpath -7.927891e+01 1.852863e+01 moveto -7.903574e+01 1.752905e+01 lineto -8.166297e+01 1.790967e+01 lineto -8.195166e+01 1.891584e+01 lineto -7.927891e+01 1.852863e+01 lineto -closepath -gsave -7.214688e-01 7.214688e-01 9.01836e-01 setrgbcolor -fill -grestore -newpath -7.950857e+01 1.955422e+01 moveto -7.927891e+01 1.852863e+01 lineto -8.195166e+01 1.891584e+01 lineto -8.22243e+01 1.994766e+01 lineto -7.950857e+01 1.955422e+01 lineto -closepath -gsave -7.270675e-01 7.270675e-01 9.088343e-01 setrgbcolor -fill -grestore -newpath -7.972448e+01 2.060485e+01 moveto -7.950857e+01 1.955422e+01 lineto -8.22243e+01 1.994766e+01 lineto -8.248064e+01 2.100415e+01 lineto -7.972448e+01 2.060485e+01 lineto -closepath -gsave -7.324655e-01 7.324655e-01 9.155819e-01 setrgbcolor -fill -grestore -newpath -7.992646e+01 2.167953e+01 moveto -7.972448e+01 2.060485e+01 lineto -8.248064e+01 2.100415e+01 lineto -8.272042e+01 2.20843e+01 lineto -7.992646e+01 2.167953e+01 lineto -closepath -gsave -7.37658e-01 7.37658e-01 9.220725e-01 setrgbcolor -fill -grestore -newpath -8.01143e+01 2.277723e+01 moveto -7.992646e+01 2.167953e+01 lineto -8.272042e+01 2.20843e+01 lineto -8.294342e+01 2.31871e+01 lineto -8.01143e+01 2.277723e+01 lineto -closepath -gsave -7.426408e-01 7.426408e-01 9.28301e-01 setrgbcolor -fill -grestore -newpath -8.028784e+01 2.389692e+01 moveto -8.01143e+01 2.277723e+01 lineto -8.294342e+01 2.31871e+01 lineto -8.314944e+01 2.431149e+01 lineto -8.028784e+01 2.389692e+01 lineto -closepath -gsave -7.474099e-01 7.474099e-01 9.342624e-01 setrgbcolor -fill -grestore -newpath -7.083242e+01 3.503345e+00 moveto -7.026523e+01 3.371062e+00 lineto -7.106293e+01 3.505083e+00 lineto -7.171606e+01 3.651803e+00 lineto -7.083242e+01 3.503345e+00 lineto -closepath -gsave -5.436313e-01 5.436313e-01 6.795392e-01 setrgbcolor -fill -grestore -newpath -7.139409e+01 3.675863e+00 moveto -7.083242e+01 3.503345e+00 lineto -7.171606e+01 3.651803e+00 lineto -7.236282e+01 3.838618e+00 lineto -7.139409e+01 3.675863e+00 lineto -closepath -gsave -5.510777e-01 5.510777e-01 6.888472e-01 setrgbcolor -fill -grestore -newpath -7.194971e+01 3.888455e+00 moveto -7.139409e+01 3.675863e+00 lineto -7.236282e+01 3.838618e+00 lineto -7.300262e+01 4.065353e+00 lineto -7.194971e+01 3.888455e+00 lineto -closepath -gsave -5.586151e-01 5.586151e-01 6.982689e-01 setrgbcolor -fill -grestore -newpath -7.249875e+01 4.140918e+00 moveto -7.194971e+01 3.888455e+00 lineto -7.300262e+01 4.065353e+00 lineto -7.363483e+01 4.331791e+00 lineto -7.249875e+01 4.140918e+00 lineto -closepath -gsave -5.66229e-01 5.66229e-01 7.077862e-01 setrgbcolor -fill -grestore -newpath -7.304068e+01 4.433014e+00 moveto -7.249875e+01 4.140918e+00 lineto -7.363483e+01 4.331791e+00 lineto -7.425888e+01 4.637681e+00 lineto -7.304068e+01 4.433014e+00 lineto -closepath -gsave -5.739045e-01 5.739045e-01 7.173806e-01 setrgbcolor -fill -grestore -newpath -7.357501e+01 4.764466e+00 moveto -7.304068e+01 4.433014e+00 lineto -7.425888e+01 4.637681e+00 lineto -7.487415e+01 4.982734e+00 lineto -7.357501e+01 4.764466e+00 lineto -closepath -gsave -5.816266e-01 5.816266e-01 7.270333e-01 setrgbcolor -fill -grestore -newpath -7.410121e+01 5.13496e+00 moveto -7.357501e+01 4.764466e+00 lineto -7.487415e+01 4.982734e+00 lineto -7.548008e+01 5.366622e+00 lineto -7.410121e+01 5.13496e+00 lineto -closepath -gsave -5.893804e-01 5.893804e-01 7.367255e-01 setrgbcolor -fill -grestore -newpath -7.46188e+01 5.544145e+00 moveto -7.410121e+01 5.13496e+00 lineto -7.548008e+01 5.366622e+00 lineto -7.607608e+01 5.788982e+00 lineto -7.46188e+01 5.544145e+00 lineto -closepath -gsave -5.971508e-01 5.971508e-01 7.464385e-01 setrgbcolor -fill -grestore -newpath -7.512728e+01 5.991634e+00 moveto -7.46188e+01 5.544145e+00 lineto -7.607608e+01 5.788982e+00 lineto -7.66616e+01 6.249414e+00 lineto -7.512728e+01 5.991634e+00 lineto -closepath -gsave -6.049227e-01 6.049227e-01 7.561533e-01 setrgbcolor -fill -grestore -newpath -7.562617e+01 6.477004e+00 moveto -7.512728e+01 5.991634e+00 lineto -7.66616e+01 6.249414e+00 lineto -7.723607e+01 6.747482e+00 lineto -7.562617e+01 6.477004e+00 lineto -closepath -gsave -6.126812e-01 6.126812e-01 7.658515e-01 setrgbcolor -fill -grestore -newpath -7.6115e+01 6.999794e+00 moveto -7.562617e+01 6.477004e+00 lineto -7.723607e+01 6.747482e+00 lineto -7.779896e+01 7.282716e+00 lineto -7.6115e+01 6.999794e+00 lineto -closepath -gsave -6.204117e-01 6.204117e-01 7.755147e-01 setrgbcolor -fill -grestore -newpath -7.659331e+01 7.559511e+00 moveto -7.6115e+01 6.999794e+00 lineto -7.779896e+01 7.282716e+00 lineto -7.834974e+01 7.854607e+00 lineto -7.659331e+01 7.559511e+00 lineto -closepath -gsave -6.280997e-01 6.280997e-01 7.851246e-01 setrgbcolor -fill -grestore -newpath -7.706064e+01 8.155623e+00 moveto -7.659331e+01 7.559511e+00 lineto -7.834974e+01 7.854607e+00 lineto -7.888787e+01 8.462614e+00 lineto -7.706064e+01 8.155623e+00 lineto -closepath -gsave -6.35731e-01 6.35731e-01 7.946638e-01 setrgbcolor -fill -grestore -newpath -7.751655e+01 8.787566e+00 moveto -7.706064e+01 8.155623e+00 lineto -7.888787e+01 8.462614e+00 lineto -7.941285e+01 9.106162e+00 lineto -7.751655e+01 8.787566e+00 lineto -closepath -gsave -6.432919e-01 6.432919e-01 8.041149e-01 setrgbcolor -fill -grestore -newpath -7.796061e+01 9.454743e+00 moveto -7.751655e+01 8.787566e+00 lineto -7.941285e+01 9.106162e+00 lineto -7.992419e+01 9.784642e+00 lineto -7.796061e+01 9.454743e+00 lineto -closepath -gsave -6.50769e-01 6.50769e-01 8.134613e-01 setrgbcolor -fill -grestore -newpath -7.83924e+01 1.015652e+01 moveto -7.796061e+01 9.454743e+00 lineto -7.992419e+01 9.784642e+00 lineto -8.04214e+01 1.049741e+01 lineto -7.83924e+01 1.015652e+01 lineto -closepath -gsave -6.581494e-01 6.581494e-01 8.226868e-01 setrgbcolor -fill -grestore -newpath -7.881151e+01 1.089224e+01 moveto -7.83924e+01 1.015652e+01 lineto -8.04214e+01 1.049741e+01 lineto -8.0904e+01 1.124379e+01 lineto -7.881151e+01 1.089224e+01 lineto -closepath -gsave -6.654208e-01 6.654208e-01 8.31776e-01 setrgbcolor -fill -grestore -newpath -7.921754e+01 1.166119e+01 moveto -7.881151e+01 1.089224e+01 lineto -8.0904e+01 1.124379e+01 lineto -8.137155e+01 1.202308e+01 lineto -7.921754e+01 1.166119e+01 lineto -closepath -gsave -6.725713e-01 6.725713e-01 8.407142e-01 setrgbcolor -fill -grestore -newpath -7.961011e+01 1.246266e+01 moveto -7.921754e+01 1.166119e+01 lineto -8.137155e+01 1.202308e+01 lineto -8.18236e+01 1.283454e+01 lineto -7.961011e+01 1.246266e+01 lineto -closepath -gsave -6.795898e-01 6.795898e-01 8.494872e-01 setrgbcolor -fill -grestore -newpath -7.998885e+01 1.329588e+01 moveto -7.961011e+01 1.246266e+01 lineto -8.18236e+01 1.283454e+01 lineto -8.225972e+01 1.367741e+01 lineto -7.998885e+01 1.329588e+01 lineto -closepath -gsave -6.864654e-01 6.864654e-01 8.580818e-01 setrgbcolor -fill -grestore -newpath -8.03534e+01 1.416007e+01 moveto -7.998885e+01 1.329588e+01 lineto -8.225972e+01 1.367741e+01 lineto -8.267949e+01 1.455087e+01 lineto -8.03534e+01 1.416007e+01 lineto -closepath -gsave -6.931884e-01 6.931884e-01 8.664855e-01 setrgbcolor -fill -grestore -newpath -8.070341e+01 1.50544e+01 moveto -8.03534e+01 1.416007e+01 lineto -8.267949e+01 1.455087e+01 lineto -8.308253e+01 1.545411e+01 lineto -8.070341e+01 1.50544e+01 lineto -closepath -gsave -6.997492e-01 6.997492e-01 8.746865e-01 setrgbcolor -fill -grestore -newpath -8.103855e+01 1.597803e+01 moveto -8.070341e+01 1.50544e+01 lineto -8.308253e+01 1.545411e+01 lineto -8.346845e+01 1.638627e+01 lineto -8.103855e+01 1.597803e+01 lineto -closepath -gsave -7.061393e-01 7.061393e-01 8.826741e-01 setrgbcolor -fill -grestore -newpath -8.13585e+01 1.693009e+01 moveto -8.103855e+01 1.597803e+01 lineto -8.346845e+01 1.638627e+01 lineto -8.383688e+01 1.734647e+01 lineto -8.13585e+01 1.693009e+01 lineto -closepath -gsave -7.123506e-01 7.123506e-01 8.904382e-01 setrgbcolor -fill -grestore -newpath -8.166297e+01 1.790967e+01 moveto -8.13585e+01 1.693009e+01 lineto -8.383688e+01 1.734647e+01 lineto -8.418747e+01 1.83338e+01 lineto -8.166297e+01 1.790967e+01 lineto -closepath -gsave -7.183757e-01 7.183757e-01 8.979696e-01 setrgbcolor -fill -grestore -newpath -8.195166e+01 1.891584e+01 moveto -8.166297e+01 1.790967e+01 lineto -8.418747e+01 1.83338e+01 lineto -8.45199e+01 1.934733e+01 lineto -8.195166e+01 1.891584e+01 lineto -closepath -gsave -7.242079e-01 7.242079e-01 9.052598e-01 setrgbcolor -fill -grestore -newpath -8.22243e+01 1.994766e+01 moveto -8.195166e+01 1.891584e+01 lineto -8.45199e+01 1.934733e+01 lineto -8.483385e+01 2.038609e+01 lineto -8.22243e+01 1.994766e+01 lineto -closepath -gsave -7.298412e-01 7.298412e-01 9.123014e-01 setrgbcolor -fill -grestore -newpath -8.248064e+01 2.100415e+01 moveto -8.22243e+01 1.994766e+01 lineto -8.483385e+01 2.038609e+01 lineto -8.512902e+01 2.14491e+01 lineto -8.248064e+01 2.100415e+01 lineto -closepath -gsave -7.352701e-01 7.352701e-01 9.190876e-01 setrgbcolor -fill -grestore -newpath -8.272042e+01 2.20843e+01 moveto -8.248064e+01 2.100415e+01 lineto -8.512902e+01 2.14491e+01 lineto -8.540513e+01 2.253536e+01 lineto -8.272042e+01 2.20843e+01 lineto -closepath -gsave -7.404899e-01 7.404899e-01 9.256124e-01 setrgbcolor -fill -grestore -newpath -8.294342e+01 2.31871e+01 moveto -8.272042e+01 2.20843e+01 lineto -8.540513e+01 2.253536e+01 lineto -8.566192e+01 2.364383e+01 lineto -8.294342e+01 2.31871e+01 lineto -closepath -gsave -7.454963e-01 7.454963e-01 9.318704e-01 setrgbcolor -fill -grestore -newpath -8.314944e+01 2.431149e+01 moveto -8.294342e+01 2.31871e+01 lineto -8.566192e+01 2.364383e+01 lineto -8.589914e+01 2.477347e+01 lineto -8.314944e+01 2.431149e+01 lineto -closepath -gsave -7.502858e-01 7.502858e-01 9.378573e-01 setrgbcolor -fill -grestore -newpath -7.171606e+01 3.651803e+00 moveto -7.106293e+01 3.505083e+00 lineto -7.182325e+01 3.65203e+00 lineto -7.255828e+01 3.814579e+00 lineto -7.171606e+01 3.651803e+00 lineto -closepath -gsave -5.44045e-01 5.44045e-01 6.800562e-01 setrgbcolor -fill -grestore -newpath -7.236282e+01 3.838618e+00 moveto -7.171606e+01 3.651803e+00 lineto -7.255828e+01 3.814579e+00 lineto -7.328616e+01 4.01707e+00 lineto -7.236282e+01 3.838618e+00 lineto -closepath -gsave -5.5154e-01 5.5154e-01 6.89425e-01 setrgbcolor -fill -grestore -newpath -7.300262e+01 4.065353e+00 moveto -7.236282e+01 3.838618e+00 lineto -7.328616e+01 4.01707e+00 lineto -7.400618e+01 4.259311e+00 lineto -7.300262e+01 4.065353e+00 lineto -closepath -gsave -5.591262e-01 5.591262e-01 6.989078e-01 setrgbcolor -fill -grestore -newpath -7.363483e+01 4.331791e+00 moveto -7.300262e+01 4.065353e+00 lineto -7.400618e+01 4.259311e+00 lineto -7.471768e+01 4.541072e+00 lineto -7.363483e+01 4.331791e+00 lineto -closepath -gsave -5.66789e-01 5.66789e-01 7.084863e-01 setrgbcolor -fill -grestore -newpath -7.425888e+01 4.637681e+00 moveto -7.363483e+01 4.331791e+00 lineto -7.471768e+01 4.541072e+00 lineto -7.541998e+01 4.862087e+00 lineto -7.425888e+01 4.637681e+00 lineto -closepath -gsave -5.745134e-01 5.745134e-01 7.181417e-01 setrgbcolor -fill -grestore -newpath -7.487415e+01 4.982734e+00 moveto -7.425888e+01 4.637681e+00 lineto -7.541998e+01 4.862087e+00 lineto -7.611242e+01 5.222052e+00 lineto -7.487415e+01 4.982734e+00 lineto -closepath -gsave -5.822841e-01 5.822841e-01 7.278552e-01 setrgbcolor -fill -grestore -newpath -7.548008e+01 5.366622e+00 moveto -7.487415e+01 4.982734e+00 lineto -7.611242e+01 5.222052e+00 lineto -7.679433e+01 5.620626e+00 lineto -7.548008e+01 5.366622e+00 lineto -closepath -gsave -5.900861e-01 5.900861e-01 7.376076e-01 setrgbcolor -fill -grestore -newpath -7.607608e+01 5.788982e+00 moveto -7.548008e+01 5.366622e+00 lineto -7.679433e+01 5.620626e+00 lineto -7.746508e+01 6.057431e+00 lineto -7.607608e+01 5.788982e+00 lineto -closepath -gsave -5.979041e-01 5.979041e-01 7.473801e-01 setrgbcolor -fill -grestore -newpath -7.66616e+01 6.249414e+00 moveto -7.607608e+01 5.788982e+00 lineto -7.746508e+01 6.057431e+00 lineto -7.812402e+01 6.532055e+00 lineto -7.66616e+01 6.249414e+00 lineto -closepath -gsave -6.057228e-01 6.057228e-01 7.571535e-01 setrgbcolor -fill -grestore -newpath -7.723607e+01 6.747482e+00 moveto -7.66616e+01 6.249414e+00 lineto -7.812402e+01 6.532055e+00 lineto -7.877054e+01 7.044046e+00 lineto -7.723607e+01 6.747482e+00 lineto -closepath -gsave -6.135273e-01 6.135273e-01 7.669091e-01 setrgbcolor -fill -grestore -newpath -7.779896e+01 7.282716e+00 moveto -7.723607e+01 6.747482e+00 lineto -7.877054e+01 7.044046e+00 lineto -7.940402e+01 7.592922e+00 lineto -7.779896e+01 7.282716e+00 lineto -closepath -gsave -6.213027e-01 6.213027e-01 7.766284e-01 setrgbcolor -fill -grestore -newpath -7.834974e+01 7.854607e+00 moveto -7.779896e+01 7.282716e+00 lineto -7.940402e+01 7.592922e+00 lineto -8.002386e+01 8.178162e+00 lineto -7.834974e+01 7.854607e+00 lineto -closepath -gsave -6.290344e-01 6.290344e-01 7.86293e-01 setrgbcolor -fill -grestore -newpath -7.888787e+01 8.462614e+00 moveto -7.834974e+01 7.854607e+00 lineto -8.002386e+01 8.178162e+00 lineto -8.062948e+01 8.799212e+00 lineto -7.888787e+01 8.462614e+00 lineto -closepath -gsave -6.367081e-01 6.367081e-01 7.958851e-01 setrgbcolor -fill -grestore -newpath -7.941285e+01 9.106162e+00 moveto -7.888787e+01 8.462614e+00 lineto -8.062948e+01 8.799212e+00 lineto -8.12203e+01 9.455485e+00 lineto -7.941285e+01 9.106162e+00 lineto -closepath -gsave -6.443099e-01 6.443099e-01 8.053874e-01 setrgbcolor -fill -grestore -newpath -7.992419e+01 9.784642e+00 moveto -7.941285e+01 9.106162e+00 lineto -8.12203e+01 9.455485e+00 lineto -8.179576e+01 1.014636e+01 lineto -7.992419e+01 9.784642e+00 lineto -closepath -gsave -6.518265e-01 6.518265e-01 8.147831e-01 setrgbcolor -fill -grestore -newpath -8.04214e+01 1.049741e+01 moveto -7.992419e+01 9.784642e+00 lineto -8.179576e+01 1.014636e+01 lineto -8.235532e+01 1.087118e+01 lineto -8.04214e+01 1.049741e+01 lineto -closepath -gsave -6.592447e-01 6.592447e-01 8.240559e-01 setrgbcolor -fill -grestore -newpath -8.0904e+01 1.124379e+01 moveto -8.04214e+01 1.049741e+01 lineto -8.235532e+01 1.087118e+01 lineto -8.289844e+01 1.162926e+01 lineto -8.0904e+01 1.124379e+01 lineto -closepath -gsave -6.665522e-01 6.665522e-01 8.331903e-01 setrgbcolor -fill -grestore -newpath -8.137155e+01 1.202308e+01 moveto -8.0904e+01 1.124379e+01 lineto -8.289844e+01 1.162926e+01 lineto -8.342462e+01 1.241988e+01 lineto -8.137155e+01 1.202308e+01 lineto -closepath -gsave -6.737371e-01 6.737371e-01 8.421713e-01 setrgbcolor -fill -grestore -newpath -8.18236e+01 1.283454e+01 moveto -8.137155e+01 1.202308e+01 lineto -8.342462e+01 1.241988e+01 lineto -8.393336e+01 1.32423e+01 lineto -8.18236e+01 1.283454e+01 lineto -closepath -gsave -6.80788e-01 6.80788e-01 8.50985e-01 setrgbcolor -fill -grestore -newpath -8.225972e+01 1.367741e+01 moveto -8.18236e+01 1.283454e+01 lineto -8.393336e+01 1.32423e+01 lineto -8.442417e+01 1.409573e+01 lineto -8.225972e+01 1.367741e+01 lineto -closepath -gsave -6.876943e-01 6.876943e-01 8.596178e-01 setrgbcolor -fill -grestore -newpath -8.267949e+01 1.455087e+01 moveto -8.225972e+01 1.367741e+01 lineto -8.442417e+01 1.409573e+01 lineto -8.489659e+01 1.497937e+01 lineto -8.267949e+01 1.455087e+01 lineto -closepath -gsave -6.944459e-01 6.944459e-01 8.680574e-01 setrgbcolor -fill -grestore -newpath -8.308253e+01 1.545411e+01 moveto -8.267949e+01 1.455087e+01 lineto -8.489659e+01 1.497937e+01 lineto -8.535017e+01 1.589238e+01 lineto -8.308253e+01 1.545411e+01 lineto -closepath -gsave -7.010335e-01 7.010335e-01 8.762919e-01 setrgbcolor -fill -grestore -newpath -8.346845e+01 1.638627e+01 moveto -8.308253e+01 1.545411e+01 lineto -8.535017e+01 1.589238e+01 lineto -8.578448e+01 1.683389e+01 lineto -8.346845e+01 1.638627e+01 lineto -closepath -gsave -7.074484e-01 7.074484e-01 8.843105e-01 setrgbcolor -fill -grestore -newpath -8.383688e+01 1.734647e+01 moveto -8.346845e+01 1.638627e+01 lineto -8.578448e+01 1.683389e+01 lineto -8.619911e+01 1.780302e+01 lineto -8.383688e+01 1.734647e+01 lineto -closepath -gsave -7.136825e-01 7.136825e-01 8.921032e-01 setrgbcolor -fill -grestore -newpath -8.418747e+01 1.83338e+01 moveto -8.383688e+01 1.734647e+01 lineto -8.619911e+01 1.780302e+01 lineto -8.659368e+01 1.879885e+01 lineto -8.418747e+01 1.83338e+01 lineto -closepath -gsave -7.197285e-01 7.197285e-01 8.996607e-01 setrgbcolor -fill -grestore -newpath -8.45199e+01 1.934733e+01 moveto -8.418747e+01 1.83338e+01 lineto -8.659368e+01 1.879885e+01 lineto -8.696779e+01 1.982043e+01 lineto -8.45199e+01 1.934733e+01 lineto -closepath -gsave -7.255797e-01 7.255797e-01 9.069747e-01 setrgbcolor -fill -grestore -newpath -8.483385e+01 2.038609e+01 moveto -8.45199e+01 1.934733e+01 lineto -8.696779e+01 1.982043e+01 lineto -8.732111e+01 2.08668e+01 lineto -8.483385e+01 2.038609e+01 lineto -closepath -gsave -7.312301e-01 7.312301e-01 9.140376e-01 setrgbcolor -fill -grestore -newpath -8.512902e+01 2.14491e+01 moveto -8.483385e+01 2.038609e+01 lineto -8.732111e+01 2.08668e+01 lineto -8.765329e+01 2.193697e+01 lineto -8.512902e+01 2.14491e+01 lineto -closepath -gsave -7.366742e-01 7.366742e-01 9.208428e-01 setrgbcolor -fill -grestore -newpath -8.540513e+01 2.253536e+01 moveto -8.512902e+01 2.14491e+01 lineto -8.765329e+01 2.193697e+01 lineto -8.796403e+01 2.302991e+01 lineto -8.540513e+01 2.253536e+01 lineto -closepath -gsave -7.419074e-01 7.419074e-01 9.273843e-01 setrgbcolor -fill -grestore -newpath -8.566192e+01 2.364383e+01 moveto -8.540513e+01 2.253536e+01 lineto -8.796403e+01 2.302991e+01 lineto -8.825302e+01 2.414461e+01 lineto -8.566192e+01 2.364383e+01 lineto -closepath -gsave -7.469255e-01 7.469255e-01 9.336569e-01 setrgbcolor -fill -grestore -newpath -8.589914e+01 2.477347e+01 moveto -8.566192e+01 2.364383e+01 lineto -8.825302e+01 2.414461e+01 lineto -8.852e+01 2.528e+01 lineto -8.589914e+01 2.477347e+01 lineto -closepath -gsave -7.517249e-01 7.517249e-01 9.396561e-01 setrgbcolor -fill -grestore -newpath -7.328616e+01 4.01707e+00 moveto -7.255828e+01 3.814579e+00 lineto -7.335391e+01 3.990669e+00 lineto -7.41584e+01 4.210118e+00 lineto -7.328616e+01 4.01707e+00 lineto -closepath -gsave -5.5154e-01 5.5154e-01 6.89425e-01 setrgbcolor -fill -grestore -newpath -7.400618e+01 4.259311e+00 moveto -7.328616e+01 4.01707e+00 lineto -7.41584e+01 4.210118e+00 lineto -7.495423e+01 4.469134e+00 lineto -7.400618e+01 4.259311e+00 lineto -closepath -gsave -5.591262e-01 5.591262e-01 6.989078e-01 setrgbcolor -fill -grestore -newpath -7.471768e+01 4.541072e+00 moveto -7.400618e+01 4.259311e+00 lineto -7.495423e+01 4.469134e+00 lineto -7.574062e+01 4.767471e+00 lineto -7.471768e+01 4.541072e+00 lineto -closepath -gsave -5.66789e-01 5.66789e-01 7.084863e-01 setrgbcolor -fill -grestore -newpath -7.541998e+01 4.862087e+00 moveto -7.471768e+01 4.541072e+00 lineto -7.574062e+01 4.767471e+00 lineto -7.651685e+01 5.104848e+00 lineto -7.541998e+01 4.862087e+00 lineto -closepath -gsave -5.745134e-01 5.745134e-01 7.181417e-01 setrgbcolor -fill -grestore -newpath -7.611242e+01 5.222052e+00 moveto -7.541998e+01 4.862087e+00 lineto -7.651685e+01 5.104848e+00 lineto -7.728217e+01 5.480945e+00 lineto -7.611242e+01 5.222052e+00 lineto -closepath -gsave -5.822841e-01 5.822841e-01 7.278552e-01 setrgbcolor -fill -grestore -newpath -7.679433e+01 5.620626e+00 moveto -7.611242e+01 5.222052e+00 lineto -7.728217e+01 5.480945e+00 lineto -7.803587e+01 5.895406e+00 lineto -7.679433e+01 5.620626e+00 lineto -closepath -gsave -5.900861e-01 5.900861e-01 7.376076e-01 setrgbcolor -fill -grestore -newpath -7.746508e+01 6.057431e+00 moveto -7.679433e+01 5.620626e+00 lineto -7.803587e+01 5.895406e+00 lineto -7.877722e+01 6.347838e+00 lineto -7.746508e+01 6.057431e+00 lineto -closepath -gsave -5.979041e-01 5.979041e-01 7.473801e-01 setrgbcolor -fill -grestore -newpath -7.812402e+01 6.532055e+00 moveto -7.746508e+01 6.057431e+00 lineto -7.877722e+01 6.347838e+00 lineto -7.950553e+01 6.837813e+00 lineto -7.812402e+01 6.532055e+00 lineto -closepath -gsave -6.057228e-01 6.057228e-01 7.571535e-01 setrgbcolor -fill -grestore -newpath -7.877054e+01 7.044046e+00 moveto -7.812402e+01 6.532055e+00 lineto -7.950553e+01 6.837813e+00 lineto -8.02201e+01 7.364868e+00 lineto -7.877054e+01 7.044046e+00 lineto -closepath -gsave -6.135273e-01 6.135273e-01 7.669091e-01 setrgbcolor -fill -grestore -newpath -7.940402e+01 7.592922e+00 moveto -7.877054e+01 7.044046e+00 lineto -8.02201e+01 7.364868e+00 lineto -8.092027e+01 7.928502e+00 lineto -7.940402e+01 7.592922e+00 lineto -closepath -gsave -6.213027e-01 6.213027e-01 7.766284e-01 setrgbcolor -fill -grestore -newpath -8.002386e+01 8.178162e+00 moveto -7.940402e+01 7.592922e+00 lineto -8.092027e+01 7.928502e+00 lineto -8.160536e+01 8.528183e+00 lineto -8.002386e+01 8.178162e+00 lineto -closepath -gsave -6.290344e-01 6.290344e-01 7.86293e-01 setrgbcolor -fill -grestore -newpath -8.062948e+01 8.799212e+00 moveto -8.002386e+01 8.178162e+00 lineto -8.160536e+01 8.528183e+00 lineto -8.227472e+01 9.163342e+00 lineto -8.062948e+01 8.799212e+00 lineto -closepath -gsave -6.367081e-01 6.367081e-01 7.958851e-01 setrgbcolor -fill -grestore -newpath -8.12203e+01 9.455485e+00 moveto -8.062948e+01 8.799212e+00 lineto -8.227472e+01 9.163342e+00 lineto -8.292774e+01 9.833379e+00 lineto -8.12203e+01 9.455485e+00 lineto -closepath -gsave -6.443099e-01 6.443099e-01 8.053874e-01 setrgbcolor -fill -grestore -newpath -8.179576e+01 1.014636e+01 moveto -8.12203e+01 9.455485e+00 lineto -8.292774e+01 9.833379e+00 lineto -8.356377e+01 1.053766e+01 lineto -8.179576e+01 1.014636e+01 lineto -closepath -gsave -6.518265e-01 6.518265e-01 8.147831e-01 setrgbcolor -fill -grestore -newpath -8.235532e+01 1.087118e+01 moveto -8.179576e+01 1.014636e+01 lineto -8.356377e+01 1.053766e+01 lineto -8.418223e+01 1.127551e+01 lineto -8.235532e+01 1.087118e+01 lineto -closepath -gsave -6.592447e-01 6.592447e-01 8.240559e-01 setrgbcolor -fill -grestore -newpath -8.289844e+01 1.162926e+01 moveto -8.235532e+01 1.087118e+01 lineto -8.418223e+01 1.127551e+01 lineto -8.478253e+01 1.204625e+01 lineto -8.289844e+01 1.162926e+01 lineto -closepath -gsave -6.665522e-01 6.665522e-01 8.331903e-01 setrgbcolor -fill -grestore -newpath -8.342462e+01 1.241988e+01 moveto -8.289844e+01 1.162926e+01 lineto -8.478253e+01 1.204625e+01 lineto -8.53641e+01 1.284913e+01 lineto -8.342462e+01 1.241988e+01 lineto -closepath -gsave -6.737371e-01 6.737371e-01 8.421713e-01 setrgbcolor -fill -grestore -newpath -8.393336e+01 1.32423e+01 moveto -8.342462e+01 1.241988e+01 lineto -8.53641e+01 1.284913e+01 lineto -8.592639e+01 1.36834e+01 lineto -8.393336e+01 1.32423e+01 lineto -closepath -gsave -6.80788e-01 6.80788e-01 8.50985e-01 setrgbcolor -fill -grestore -newpath -8.442417e+01 1.409573e+01 moveto -8.393336e+01 1.32423e+01 lineto -8.592639e+01 1.36834e+01 lineto -8.646887e+01 1.454826e+01 lineto -8.442417e+01 1.409573e+01 lineto -closepath -gsave -6.876943e-01 6.876943e-01 8.596178e-01 setrgbcolor -fill -grestore -newpath -8.489659e+01 1.497937e+01 moveto -8.442417e+01 1.409573e+01 lineto -8.646887e+01 1.454826e+01 lineto -8.699101e+01 1.544291e+01 lineto -8.489659e+01 1.497937e+01 lineto -closepath -gsave -6.944459e-01 6.944459e-01 8.680574e-01 setrgbcolor -fill -grestore -newpath -8.535017e+01 1.589238e+01 moveto -8.489659e+01 1.497937e+01 lineto -8.699101e+01 1.544291e+01 lineto -8.749234e+01 1.636649e+01 lineto -8.535017e+01 1.589238e+01 lineto -closepath -gsave -7.010335e-01 7.010335e-01 8.762919e-01 setrgbcolor -fill -grestore -newpath -8.578448e+01 1.683389e+01 moveto -8.535017e+01 1.589238e+01 lineto -8.749234e+01 1.636649e+01 lineto -8.797237e+01 1.731812e+01 lineto -8.578448e+01 1.683389e+01 lineto -closepath -gsave -7.074484e-01 7.074484e-01 8.843105e-01 setrgbcolor -fill -grestore -newpath -8.619911e+01 1.780302e+01 moveto -8.578448e+01 1.683389e+01 lineto -8.797237e+01 1.731812e+01 lineto -8.843065e+01 1.829691e+01 lineto -8.619911e+01 1.780302e+01 lineto -closepath -gsave -7.136825e-01 7.136825e-01 8.921032e-01 setrgbcolor -fill -grestore -newpath -8.659368e+01 1.879885e+01 moveto -8.619911e+01 1.780302e+01 lineto -8.843065e+01 1.829691e+01 lineto -8.886675e+01 1.930193e+01 lineto -8.659368e+01 1.879885e+01 lineto -closepath -gsave -7.197285e-01 7.197285e-01 8.996607e-01 setrgbcolor -fill -grestore -newpath -8.696779e+01 1.982043e+01 moveto -8.659368e+01 1.879885e+01 lineto -8.886675e+01 1.930193e+01 lineto -8.928025e+01 2.033223e+01 lineto -8.696779e+01 1.982043e+01 lineto -closepath -gsave -7.255797e-01 7.255797e-01 9.069747e-01 setrgbcolor -fill -grestore -newpath -8.732111e+01 2.08668e+01 moveto -8.696779e+01 1.982043e+01 lineto -8.928025e+01 2.033223e+01 lineto -8.967076e+01 2.138683e+01 lineto -8.732111e+01 2.08668e+01 lineto -closepath -gsave -7.312301e-01 7.312301e-01 9.140376e-01 setrgbcolor -fill -grestore -newpath -8.765329e+01 2.193697e+01 moveto -8.732111e+01 2.08668e+01 lineto -8.967076e+01 2.138683e+01 lineto -9.003791e+01 2.246473e+01 lineto -8.765329e+01 2.193697e+01 lineto -closepath -gsave -7.366742e-01 7.366742e-01 9.208428e-01 setrgbcolor -fill -grestore -newpath -8.796403e+01 2.302991e+01 moveto -8.765329e+01 2.193697e+01 lineto -9.003791e+01 2.246473e+01 lineto -9.038135e+01 2.356492e+01 lineto -8.796403e+01 2.302991e+01 lineto -closepath -gsave -7.419074e-01 7.419074e-01 9.273843e-01 setrgbcolor -fill -grestore -newpath -8.825302e+01 2.414461e+01 moveto -8.796403e+01 2.302991e+01 lineto -9.038135e+01 2.356492e+01 lineto -9.070077e+01 2.468635e+01 lineto -8.825302e+01 2.414461e+01 lineto -closepath -gsave -7.469255e-01 7.469255e-01 9.336569e-01 setrgbcolor -fill -grestore -newpath -8.852e+01 2.528e+01 moveto -8.825302e+01 2.414461e+01 lineto -9.070077e+01 2.468635e+01 lineto -9.099585e+01 2.582796e+01 lineto -8.852e+01 2.528e+01 lineto -closepath -gsave -7.517249e-01 7.517249e-01 9.396561e-01 setrgbcolor -fill -grestore -newpath -7.41584e+01 4.210118e+00 moveto -7.335391e+01 3.990669e+00 lineto -7.409803e+01 4.178988e+00 lineto -7.497419e+01 4.416572e+00 lineto -7.41584e+01 4.210118e+00 lineto -closepath -gsave -5.510777e-01 5.510777e-01 6.888472e-01 setrgbcolor -fill -grestore -newpath -7.495423e+01 4.469134e+00 moveto -7.41584e+01 4.210118e+00 lineto -7.497419e+01 4.416572e+00 lineto -7.58409e+01 4.693528e+00 lineto -7.495423e+01 4.469134e+00 lineto -closepath -gsave -5.586151e-01 5.586151e-01 6.982689e-01 setrgbcolor -fill -grestore -newpath -7.574062e+01 4.767471e+00 moveto -7.495423e+01 4.469134e+00 lineto -7.58409e+01 4.693528e+00 lineto -7.669734e+01 5.009593e+00 lineto -7.574062e+01 4.767471e+00 lineto -closepath -gsave -5.66229e-01 5.66229e-01 7.077862e-01 setrgbcolor -fill -grestore -newpath -7.651685e+01 5.104848e+00 moveto -7.574062e+01 4.767471e+00 lineto -7.669734e+01 5.009593e+00 lineto -7.754271e+01 5.364468e+00 lineto -7.651685e+01 5.104848e+00 lineto -closepath -gsave -5.739045e-01 5.739045e-01 7.173806e-01 setrgbcolor -fill -grestore -newpath -7.728217e+01 5.480945e+00 moveto -7.651685e+01 5.104848e+00 lineto -7.754271e+01 5.364468e+00 lineto -7.837621e+01 5.757817e+00 lineto -7.728217e+01 5.480945e+00 lineto -closepath -gsave -5.816266e-01 5.816266e-01 7.270333e-01 setrgbcolor -fill -grestore -newpath -7.803587e+01 5.895406e+00 moveto -7.728217e+01 5.480945e+00 lineto -7.837621e+01 5.757817e+00 lineto -7.919704e+01 6.189268e+00 lineto -7.803587e+01 5.895406e+00 lineto -closepath -gsave -5.893804e-01 5.893804e-01 7.367255e-01 setrgbcolor -fill -grestore -newpath -7.877722e+01 6.347838e+00 moveto -7.803587e+01 5.895406e+00 lineto -7.919704e+01 6.189268e+00 lineto -8.000442e+01 6.658412e+00 lineto -7.877722e+01 6.347838e+00 lineto -closepath -gsave -5.971508e-01 5.971508e-01 7.464385e-01 setrgbcolor -fill -grestore -newpath -7.950553e+01 6.837813e+00 moveto -7.877722e+01 6.347838e+00 lineto -8.000442e+01 6.658412e+00 lineto -8.079761e+01 7.164805e+00 lineto -7.950553e+01 6.837813e+00 lineto -closepath -gsave -6.049227e-01 6.049227e-01 7.561533e-01 setrgbcolor -fill -grestore -newpath -8.02201e+01 7.364868e+00 moveto -7.950553e+01 6.837813e+00 lineto -8.079761e+01 7.164805e+00 lineto -8.157583e+01 7.707968e+00 lineto -8.02201e+01 7.364868e+00 lineto -closepath -gsave -6.126812e-01 6.126812e-01 7.658515e-01 setrgbcolor -fill -grestore -newpath -8.092027e+01 7.928502e+00 moveto -8.02201e+01 7.364868e+00 lineto -8.157583e+01 7.707968e+00 lineto -8.233836e+01 8.287386e+00 lineto -8.092027e+01 7.928502e+00 lineto -closepath -gsave -6.204117e-01 6.204117e-01 7.755147e-01 setrgbcolor -fill -grestore -newpath -8.160536e+01 8.528183e+00 moveto -8.092027e+01 7.928502e+00 lineto -8.233836e+01 8.287386e+00 lineto -8.308447e+01 8.90251e+00 lineto -8.160536e+01 8.528183e+00 lineto -closepath -gsave -6.280997e-01 6.280997e-01 7.851246e-01 setrgbcolor -fill -grestore -newpath -8.227472e+01 9.163342e+00 moveto -8.160536e+01 8.528183e+00 lineto -8.308447e+01 8.90251e+00 lineto -8.381347e+01 9.552759e+00 lineto -8.227472e+01 9.163342e+00 lineto -closepath -gsave -6.35731e-01 6.35731e-01 7.946638e-01 setrgbcolor -fill -grestore -newpath -8.292774e+01 9.833379e+00 moveto -8.227472e+01 9.163342e+00 lineto -8.381347e+01 9.552759e+00 lineto -8.452464e+01 1.023752e+01 lineto -8.292774e+01 9.833379e+00 lineto -closepath -gsave -6.432919e-01 6.432919e-01 8.041149e-01 setrgbcolor -fill -grestore -newpath -8.356377e+01 1.053766e+01 moveto -8.292774e+01 9.833379e+00 lineto -8.452464e+01 1.023752e+01 lineto -8.521734e+01 1.095613e+01 lineto -8.356377e+01 1.053766e+01 lineto -closepath -gsave -6.50769e-01 6.50769e-01 8.134613e-01 setrgbcolor -fill -grestore -newpath -8.418223e+01 1.127551e+01 moveto -8.356377e+01 1.053766e+01 lineto -8.521734e+01 1.095613e+01 lineto -8.589089e+01 1.170793e+01 lineto -8.418223e+01 1.127551e+01 lineto -closepath -gsave -6.581494e-01 6.581494e-01 8.226868e-01 setrgbcolor -fill -grestore -newpath -8.478253e+01 1.204625e+01 moveto -8.418223e+01 1.127551e+01 lineto -8.589089e+01 1.170793e+01 lineto -8.654466e+01 1.24922e+01 lineto -8.478253e+01 1.204625e+01 lineto -closepath -gsave -6.654208e-01 6.654208e-01 8.31776e-01 setrgbcolor -fill -grestore -newpath -8.53641e+01 1.284913e+01 moveto -8.478253e+01 1.204625e+01 lineto -8.654466e+01 1.24922e+01 lineto -8.717803e+01 1.330819e+01 lineto -8.53641e+01 1.284913e+01 lineto -closepath -gsave -6.725713e-01 6.725713e-01 8.407142e-01 setrgbcolor -fill -grestore -newpath -8.592639e+01 1.36834e+01 moveto -8.53641e+01 1.284913e+01 lineto -8.717803e+01 1.330819e+01 lineto -8.77904e+01 1.415513e+01 lineto -8.592639e+01 1.36834e+01 lineto -closepath -gsave -6.795898e-01 6.795898e-01 8.494872e-01 setrgbcolor -fill -grestore -newpath -8.646887e+01 1.454826e+01 moveto -8.592639e+01 1.36834e+01 lineto -8.77904e+01 1.415513e+01 lineto -8.83812e+01 1.503223e+01 lineto -8.646887e+01 1.454826e+01 lineto -closepath -gsave -6.864654e-01 6.864654e-01 8.580818e-01 setrgbcolor -fill -grestore -newpath -8.699101e+01 1.544291e+01 moveto -8.646887e+01 1.454826e+01 lineto -8.83812e+01 1.503223e+01 lineto -8.894986e+01 1.593864e+01 lineto -8.699101e+01 1.544291e+01 lineto -closepath -gsave -6.931884e-01 6.931884e-01 8.664855e-01 setrgbcolor -fill -grestore -newpath -8.749234e+01 1.636649e+01 moveto -8.699101e+01 1.544291e+01 lineto -8.894986e+01 1.593864e+01 lineto -8.949584e+01 1.687352e+01 lineto -8.749234e+01 1.636649e+01 lineto -closepath -gsave -6.997492e-01 6.997492e-01 8.746865e-01 setrgbcolor -fill -grestore -newpath -8.797237e+01 1.731812e+01 moveto -8.749234e+01 1.636649e+01 lineto -8.949584e+01 1.687352e+01 lineto -9.001863e+01 1.783598e+01 lineto -8.797237e+01 1.731812e+01 lineto -closepath -gsave -7.061393e-01 7.061393e-01 8.826741e-01 setrgbcolor -fill -grestore -newpath -8.843065e+01 1.829691e+01 moveto -8.797237e+01 1.731812e+01 lineto -9.001863e+01 1.783598e+01 lineto -9.051773e+01 1.88251e+01 lineto -8.843065e+01 1.829691e+01 lineto -closepath -gsave -7.123506e-01 7.123506e-01 8.904382e-01 setrgbcolor -fill -grestore -newpath -8.886675e+01 1.930193e+01 moveto -8.843065e+01 1.829691e+01 lineto -9.051773e+01 1.88251e+01 lineto -9.099267e+01 1.983995e+01 lineto -8.886675e+01 1.930193e+01 lineto -closepath -gsave -7.183757e-01 7.183757e-01 8.979696e-01 setrgbcolor -fill -grestore -newpath -8.928025e+01 2.033223e+01 moveto -8.886675e+01 1.930193e+01 lineto -9.099267e+01 1.983995e+01 lineto -9.1443e+01 2.087957e+01 lineto -8.928025e+01 2.033223e+01 lineto -closepath -gsave -7.242079e-01 7.242079e-01 9.052598e-01 setrgbcolor -fill -grestore -newpath -8.967076e+01 2.138683e+01 moveto -8.928025e+01 2.033223e+01 lineto -9.1443e+01 2.087957e+01 lineto -9.18683e+01 2.194297e+01 lineto -8.967076e+01 2.138683e+01 lineto -closepath -gsave -7.298412e-01 7.298412e-01 9.123014e-01 setrgbcolor -fill -grestore -newpath -9.003791e+01 2.246473e+01 moveto -8.967076e+01 2.138683e+01 lineto -9.18683e+01 2.194297e+01 lineto -9.226815e+01 2.302915e+01 lineto -9.003791e+01 2.246473e+01 lineto -closepath -gsave -7.352701e-01 7.352701e-01 9.190876e-01 setrgbcolor -fill -grestore -newpath -9.038135e+01 2.356492e+01 moveto -9.003791e+01 2.246473e+01 lineto -9.226815e+01 2.302915e+01 lineto -9.264219e+01 2.413708e+01 lineto -9.038135e+01 2.356492e+01 lineto -closepath -gsave -7.404899e-01 7.404899e-01 9.256124e-01 setrgbcolor -fill -grestore -newpath -9.070077e+01 2.468635e+01 moveto -9.038135e+01 2.356492e+01 lineto -9.264219e+01 2.413708e+01 lineto -9.299006e+01 2.526571e+01 lineto -9.070077e+01 2.468635e+01 lineto -closepath -gsave -7.454963e-01 7.454963e-01 9.318704e-01 setrgbcolor -fill -grestore -newpath -9.099585e+01 2.582796e+01 moveto -9.070077e+01 2.468635e+01 lineto -9.299006e+01 2.526571e+01 lineto -9.331142e+01 2.641397e+01 lineto -9.099585e+01 2.582796e+01 lineto -closepath -gsave -7.502858e-01 7.502858e-01 9.378573e-01 setrgbcolor -fill -grestore -newpath -7.58409e+01 4.693528e+00 moveto -7.497419e+01 4.416572e+00 lineto -7.572847e+01 4.635159e+00 lineto -7.666073e+01 4.931109e+00 lineto -7.58409e+01 4.693528e+00 lineto -closepath -gsave -5.575974e-01 5.575974e-01 6.969968e-01 setrgbcolor -fill -grestore -newpath -7.669734e+01 5.009593e+00 moveto -7.58409e+01 4.693528e+00 lineto -7.666073e+01 4.931109e+00 lineto -7.758194e+01 5.265943e+00 lineto -7.669734e+01 5.009593e+00 lineto -closepath -gsave -5.651138e-01 5.651138e-01 7.063922e-01 setrgbcolor -fill -grestore -newpath -7.754271e+01 5.364468e+00 moveto -7.669734e+01 5.009593e+00 lineto -7.758194e+01 5.265943e+00 lineto -7.849124e+01 5.639345e+00 lineto -7.754271e+01 5.364468e+00 lineto -closepath -gsave -5.726919e-01 5.726919e-01 7.158649e-01 setrgbcolor -fill -grestore -newpath -7.837621e+01 5.757817e+00 moveto -7.754271e+01 5.364468e+00 lineto -7.849124e+01 5.639345e+00 lineto -7.938777e+01 6.050961e+00 lineto -7.837621e+01 5.757817e+00 lineto -closepath -gsave -5.803172e-01 5.803172e-01 7.253965e-01 setrgbcolor -fill -grestore -newpath -7.919704e+01 6.189268e+00 moveto -7.837621e+01 5.757817e+00 lineto -7.938777e+01 6.050961e+00 lineto -8.027067e+01 6.5004e+00 lineto -7.919704e+01 6.189268e+00 lineto -closepath -gsave -5.87975e-01 5.87975e-01 7.349687e-01 setrgbcolor -fill -grestore -newpath -8.000442e+01 6.658412e+00 moveto -7.919704e+01 6.189268e+00 lineto -8.027067e+01 6.5004e+00 lineto -8.113912e+01 6.987238e+00 lineto -8.000442e+01 6.658412e+00 lineto -closepath -gsave -5.956505e-01 5.956505e-01 7.445631e-01 setrgbcolor -fill -grestore -newpath -8.079761e+01 7.164805e+00 moveto -8.000442e+01 6.658412e+00 lineto -8.113912e+01 6.987238e+00 lineto -8.199228e+01 7.511014e+00 lineto -8.079761e+01 7.164805e+00 lineto -closepath -gsave -6.03329e-01 6.03329e-01 7.541612e-01 setrgbcolor -fill -grestore -newpath -8.157583e+01 7.707968e+00 moveto -8.079761e+01 7.164805e+00 lineto -8.199228e+01 7.511014e+00 lineto -8.282936e+01 8.071232e+00 lineto -8.157583e+01 7.707968e+00 lineto -closepath -gsave -6.109959e-01 6.109959e-01 7.637448e-01 setrgbcolor -fill -grestore -newpath -8.233836e+01 8.287386e+00 moveto -8.157583e+01 7.707968e+00 lineto -8.282936e+01 8.071232e+00 lineto -8.364956e+01 8.667361e+00 lineto -8.233836e+01 8.287386e+00 lineto -closepath -gsave -6.186368e-01 6.186368e-01 7.73296e-01 setrgbcolor -fill -grestore -newpath -8.308447e+01 8.90251e+00 moveto -8.233836e+01 8.287386e+00 lineto -8.364956e+01 8.667361e+00 lineto -8.44521e+01 9.298837e+00 lineto -8.308447e+01 8.90251e+00 lineto -closepath -gsave -6.262375e-01 6.262375e-01 7.827969e-01 setrgbcolor -fill -grestore -newpath -8.381347e+01 9.552759e+00 moveto -8.308447e+01 8.90251e+00 lineto -8.44521e+01 9.298837e+00 lineto -8.523622e+01 9.965062e+00 lineto -8.381347e+01 9.552759e+00 lineto -closepath -gsave -6.337841e-01 6.337841e-01 7.922302e-01 setrgbcolor -fill -grestore -newpath -8.452464e+01 1.023752e+01 moveto -8.381347e+01 9.552759e+00 lineto -8.523622e+01 9.965062e+00 lineto -8.600118e+01 1.06654e+01 lineto -8.452464e+01 1.023752e+01 lineto -closepath -gsave -6.412632e-01 6.412632e-01 8.015789e-01 setrgbcolor -fill -grestore -newpath -8.521734e+01 1.095613e+01 moveto -8.452464e+01 1.023752e+01 lineto -8.600118e+01 1.06654e+01 lineto -8.674625e+01 1.13992e+01 lineto -8.521734e+01 1.095613e+01 lineto -closepath -gsave -6.486614e-01 6.486614e-01 8.108267e-01 setrgbcolor -fill -grestore -newpath -8.589089e+01 1.170793e+01 moveto -8.521734e+01 1.095613e+01 lineto -8.674625e+01 1.13992e+01 lineto -8.747074e+01 1.216576e+01 lineto -8.589089e+01 1.170793e+01 lineto -closepath -gsave -6.559662e-01 6.559662e-01 8.199577e-01 setrgbcolor -fill -grestore -newpath -8.654466e+01 1.24922e+01 moveto -8.589089e+01 1.170793e+01 lineto -8.747074e+01 1.216576e+01 lineto -8.817395e+01 1.296435e+01 lineto -8.654466e+01 1.24922e+01 lineto -closepath -gsave -6.631652e-01 6.631652e-01 8.289566e-01 setrgbcolor -fill -grestore -newpath -8.717803e+01 1.330819e+01 moveto -8.654466e+01 1.24922e+01 lineto -8.817395e+01 1.296435e+01 lineto -8.885522e+01 1.379423e+01 lineto -8.717803e+01 1.330819e+01 lineto -closepath -gsave -6.70247e-01 6.70247e-01 8.378087e-01 setrgbcolor -fill -grestore -newpath -8.77904e+01 1.415513e+01 moveto -8.717803e+01 1.330819e+01 lineto -8.885522e+01 1.379423e+01 lineto -8.951391e+01 1.465459e+01 lineto -8.77904e+01 1.415513e+01 lineto -closepath -gsave -6.772002e-01 6.772002e-01 8.465003e-01 setrgbcolor -fill -grestore -newpath -8.83812e+01 1.503223e+01 moveto -8.77904e+01 1.415513e+01 lineto -8.951391e+01 1.465459e+01 lineto -9.014938e+01 1.554463e+01 lineto -8.83812e+01 1.503223e+01 lineto -closepath -gsave -6.840144e-01 6.840144e-01 8.550181e-01 setrgbcolor -fill -grestore -newpath -8.894986e+01 1.593864e+01 moveto -8.83812e+01 1.503223e+01 lineto -9.014938e+01 1.554463e+01 lineto -9.076104e+01 1.646351e+01 lineto -8.894986e+01 1.593864e+01 lineto -closepath -gsave -6.906797e-01 6.906797e-01 8.633497e-01 setrgbcolor -fill -grestore -newpath -8.949584e+01 1.687352e+01 moveto -8.894986e+01 1.593864e+01 lineto -9.076104e+01 1.646351e+01 lineto -9.134832e+01 1.741035e+01 lineto -8.949584e+01 1.687352e+01 lineto -closepath -gsave -6.971868e-01 6.971868e-01 8.714834e-01 setrgbcolor -fill -grestore -newpath -9.001863e+01 1.783598e+01 moveto -8.949584e+01 1.687352e+01 lineto -9.134832e+01 1.741035e+01 lineto -9.191064e+01 1.838427e+01 lineto -9.001863e+01 1.783598e+01 lineto -closepath -gsave -7.035269e-01 7.035269e-01 8.794086e-01 setrgbcolor -fill -grestore -newpath -9.051773e+01 1.88251e+01 moveto -9.001863e+01 1.783598e+01 lineto -9.191064e+01 1.838427e+01 lineto -9.244749e+01 1.938433e+01 lineto -9.051773e+01 1.88251e+01 lineto -closepath -gsave -7.096921e-01 7.096921e-01 8.871151e-01 setrgbcolor -fill -grestore -newpath -9.099267e+01 1.983995e+01 moveto -9.051773e+01 1.88251e+01 lineto -9.244749e+01 1.938433e+01 lineto -9.295834e+01 2.040959e+01 lineto -9.099267e+01 1.983995e+01 lineto -closepath -gsave -7.156749e-01 7.156749e-01 8.945937e-01 setrgbcolor -fill -grestore -newpath -9.1443e+01 2.087957e+01 moveto -9.099267e+01 1.983995e+01 lineto -9.295834e+01 2.040959e+01 lineto -9.344273e+01 2.145907e+01 lineto -9.1443e+01 2.087957e+01 lineto -closepath -gsave -7.214688e-01 7.214688e-01 9.01836e-01 setrgbcolor -fill -grestore -newpath -9.18683e+01 2.194297e+01 moveto -9.1443e+01 2.087957e+01 lineto -9.344273e+01 2.145907e+01 lineto -9.390019e+01 2.25318e+01 lineto -9.18683e+01 2.194297e+01 lineto -closepath -gsave -7.270675e-01 7.270675e-01 9.088343e-01 setrgbcolor -fill -grestore -newpath -9.226815e+01 2.302915e+01 moveto -9.18683e+01 2.194297e+01 lineto -9.390019e+01 2.25318e+01 lineto -9.433028e+01 2.362674e+01 lineto -9.226815e+01 2.302915e+01 lineto -closepath -gsave -7.324655e-01 7.324655e-01 9.155819e-01 setrgbcolor -fill -grestore -newpath -9.264219e+01 2.413708e+01 moveto -9.226815e+01 2.302915e+01 lineto -9.433028e+01 2.362674e+01 lineto -9.473261e+01 2.474287e+01 lineto -9.264219e+01 2.413708e+01 lineto -closepath -gsave -7.37658e-01 7.37658e-01 9.220725e-01 setrgbcolor -fill -grestore -newpath -9.299006e+01 2.526571e+01 moveto -9.264219e+01 2.413708e+01 lineto -9.473261e+01 2.474287e+01 lineto -9.510678e+01 2.587912e+01 lineto -9.299006e+01 2.526571e+01 lineto -closepath -gsave -7.426408e-01 7.426408e-01 9.28301e-01 setrgbcolor -fill -grestore -newpath -9.331142e+01 2.641397e+01 moveto -9.299006e+01 2.526571e+01 lineto -9.510678e+01 2.587912e+01 lineto -9.545245e+01 2.703443e+01 lineto -9.331142e+01 2.641397e+01 lineto -closepath -gsave -7.474099e-01 7.474099e-01 9.342624e-01 setrgbcolor -fill -grestore -newpath -7.758194e+01 5.265943e+00 moveto -7.666073e+01 4.931109e+00 lineto -7.740867e+01 5.180413e+00 lineto -7.838897e+01 5.534943e+00 lineto -7.758194e+01 5.265943e+00 lineto -closepath -gsave -5.634531e-01 5.634531e-01 7.043164e-01 setrgbcolor -fill -grestore -newpath -7.849124e+01 5.639345e+00 moveto -7.758194e+01 5.265943e+00 lineto -7.838897e+01 5.534943e+00 lineto -7.935659e+01 5.927785e+00 lineto -7.849124e+01 5.639345e+00 lineto -closepath -gsave -5.708862e-01 5.708862e-01 7.136078e-01 setrgbcolor -fill -grestore -newpath -7.938777e+01 6.050961e+00 moveto -7.849124e+01 5.639345e+00 lineto -7.935659e+01 5.927785e+00 lineto -8.031063e+01 6.358568e+00 lineto -7.938777e+01 6.050961e+00 lineto -closepath -gsave -5.783672e-01 5.783672e-01 7.22959e-01 setrgbcolor -fill -grestore -newpath -8.027067e+01 6.5004e+00 moveto -7.938777e+01 6.050961e+00 lineto -8.031063e+01 6.358568e+00 lineto -8.125016e+01 6.826884e+00 lineto -8.027067e+01 6.5004e+00 lineto -closepath -gsave -5.858817e-01 5.858817e-01 7.323522e-01 setrgbcolor -fill -grestore -newpath -8.113912e+01 6.987238e+00 moveto -8.027067e+01 6.5004e+00 lineto -8.125016e+01 6.826884e+00 lineto -8.217431e+01 7.33229e+00 lineto -8.113912e+01 6.987238e+00 lineto -closepath -gsave -5.934157e-01 5.934157e-01 7.417696e-01 setrgbcolor -fill -grestore -newpath -8.199228e+01 7.511014e+00 moveto -8.113912e+01 6.987238e+00 lineto -8.217431e+01 7.33229e+00 lineto -8.30822e+01 7.874306e+00 lineto -8.199228e+01 7.511014e+00 lineto -closepath -gsave -6.009548e-01 6.009548e-01 7.511935e-01 setrgbcolor -fill -grestore -newpath -8.282936e+01 8.071232e+00 moveto -8.199228e+01 7.511014e+00 lineto -8.30822e+01 7.874306e+00 lineto -8.397297e+01 8.45242e+00 lineto -8.282936e+01 8.071232e+00 lineto -closepath -gsave -6.084848e-01 6.084848e-01 7.606061e-01 setrgbcolor -fill -grestore -newpath -8.364956e+01 8.667361e+00 moveto -8.282936e+01 8.071232e+00 lineto -8.397297e+01 8.45242e+00 lineto -8.484577e+01 9.066085e+00 lineto -8.364956e+01 8.667361e+00 lineto -closepath -gsave -6.159919e-01 6.159919e-01 7.699899e-01 setrgbcolor -fill -grestore -newpath -8.44521e+01 9.298837e+00 moveto -8.364956e+01 8.667361e+00 lineto -8.484577e+01 9.066085e+00 lineto -8.569979e+01 9.714719e+00 lineto -8.44521e+01 9.298837e+00 lineto -closepath -gsave -6.234621e-01 6.234621e-01 7.793277e-01 setrgbcolor -fill -grestore -newpath -8.523622e+01 9.965062e+00 moveto -8.44521e+01 9.298837e+00 lineto -8.569979e+01 9.714719e+00 lineto -8.65342e+01 1.039771e+01 lineto -8.523622e+01 9.965062e+00 lineto -closepath -gsave -6.30882e-01 6.30882e-01 7.886026e-01 setrgbcolor -fill -grestore -newpath -8.600118e+01 1.06654e+01 moveto -8.523622e+01 9.965062e+00 lineto -8.65342e+01 1.039771e+01 lineto -8.734823e+01 1.111441e+01 lineto -8.600118e+01 1.06654e+01 lineto -closepath -gsave -6.382384e-01 6.382384e-01 7.97798e-01 setrgbcolor -fill -grestore -newpath -8.674625e+01 1.13992e+01 moveto -8.600118e+01 1.06654e+01 lineto -8.734823e+01 1.111441e+01 lineto -8.81411e+01 1.186413e+01 lineto -8.674625e+01 1.13992e+01 lineto -closepath -gsave -6.455184e-01 6.455184e-01 8.06898e-01 setrgbcolor -fill -grestore -newpath -8.747074e+01 1.216576e+01 moveto -8.674625e+01 1.13992e+01 lineto -8.81411e+01 1.186413e+01 lineto -8.891206e+01 1.264618e+01 lineto -8.747074e+01 1.216576e+01 lineto -closepath -gsave -6.527096e-01 6.527096e-01 8.158871e-01 setrgbcolor -fill -grestore -newpath -8.817395e+01 1.296435e+01 moveto -8.747074e+01 1.216576e+01 lineto -8.891206e+01 1.264618e+01 lineto -8.966037e+01 1.345981e+01 lineto -8.817395e+01 1.296435e+01 lineto -closepath -gsave -6.598001e-01 6.598001e-01 8.247502e-01 setrgbcolor -fill -grestore -newpath -8.885522e+01 1.379423e+01 moveto -8.817395e+01 1.296435e+01 lineto -8.966037e+01 1.345981e+01 lineto -9.038534e+01 1.430425e+01 lineto -8.885522e+01 1.379423e+01 lineto -closepath -gsave -6.667784e-01 6.667784e-01 8.33473e-01 setrgbcolor -fill -grestore -newpath -8.951391e+01 1.465459e+01 moveto -8.885522e+01 1.379423e+01 lineto -9.038534e+01 1.430425e+01 lineto -9.108627e+01 1.517869e+01 lineto -8.951391e+01 1.465459e+01 lineto -closepath -gsave -6.736335e-01 6.736335e-01 8.420418e-01 setrgbcolor -fill -grestore -newpath -9.014938e+01 1.554463e+01 moveto -8.951391e+01 1.465459e+01 lineto -9.108627e+01 1.517869e+01 lineto -9.176251e+01 1.608232e+01 lineto -9.014938e+01 1.554463e+01 lineto -closepath -gsave -6.80355e-01 6.80355e-01 8.504438e-01 setrgbcolor -fill -grestore -newpath -9.076104e+01 1.646351e+01 moveto -9.014938e+01 1.554463e+01 lineto -9.176251e+01 1.608232e+01 lineto -9.24134e+01 1.701428e+01 lineto -9.076104e+01 1.646351e+01 lineto -closepath -gsave -6.869332e-01 6.869332e-01 8.586665e-01 setrgbcolor -fill -grestore -newpath -9.134832e+01 1.741035e+01 moveto -9.076104e+01 1.646351e+01 lineto -9.24134e+01 1.701428e+01 lineto -9.303835e+01 1.797368e+01 lineto -9.134832e+01 1.741035e+01 lineto -closepath -gsave -6.933588e-01 6.933588e-01 8.666985e-01 setrgbcolor -fill -grestore -newpath -9.191064e+01 1.838427e+01 moveto -9.134832e+01 1.741035e+01 lineto -9.303835e+01 1.797368e+01 lineto -9.363674e+01 1.895961e+01 lineto -9.191064e+01 1.838427e+01 lineto -closepath -gsave -6.996232e-01 6.996232e-01 8.74529e-01 setrgbcolor -fill -grestore -newpath -9.244749e+01 1.938433e+01 moveto -9.191064e+01 1.838427e+01 lineto -9.363674e+01 1.895961e+01 lineto -9.420802e+01 1.997115e+01 lineto -9.244749e+01 1.938433e+01 lineto -closepath -gsave -7.057184e-01 7.057184e-01 8.82148e-01 setrgbcolor -fill -grestore -newpath -9.295834e+01 2.040959e+01 moveto -9.244749e+01 1.938433e+01 lineto -9.420802e+01 1.997115e+01 lineto -9.475164e+01 2.100733e+01 lineto -9.295834e+01 2.040959e+01 lineto -closepath -gsave -7.11637e-01 7.11637e-01 8.895462e-01 setrgbcolor -fill -grestore -newpath -9.344273e+01 2.145907e+01 moveto -9.295834e+01 2.040959e+01 lineto -9.475164e+01 2.100733e+01 lineto -9.52671e+01 2.206717e+01 lineto -9.344273e+01 2.145907e+01 lineto -closepath -gsave -7.173722e-01 7.173722e-01 8.967153e-01 setrgbcolor -fill -grestore -newpath -9.390019e+01 2.25318e+01 moveto -9.344273e+01 2.145907e+01 lineto -9.52671e+01 2.206717e+01 lineto -9.57539e+01 2.314968e+01 lineto -9.390019e+01 2.25318e+01 lineto -closepath -gsave -7.229179e-01 7.229179e-01 9.036474e-01 setrgbcolor -fill -grestore -newpath -9.433028e+01 2.362674e+01 moveto -9.390019e+01 2.25318e+01 lineto -9.57539e+01 2.314968e+01 lineto -9.621158e+01 2.425382e+01 lineto -9.433028e+01 2.362674e+01 lineto -closepath -gsave -7.282685e-01 7.282685e-01 9.103356e-01 setrgbcolor -fill -grestore -newpath -9.473261e+01 2.474287e+01 moveto -9.433028e+01 2.362674e+01 lineto -9.621158e+01 2.425382e+01 lineto -9.663971e+01 2.537855e+01 lineto -9.473261e+01 2.474287e+01 lineto -closepath -gsave -7.33419e-01 7.33419e-01 9.167737e-01 setrgbcolor -fill -grestore -newpath -9.510678e+01 2.587912e+01 moveto -9.473261e+01 2.474287e+01 lineto -9.663971e+01 2.537855e+01 lineto -9.703788e+01 2.65228e+01 lineto -9.510678e+01 2.587912e+01 lineto -closepath -gsave -7.383649e-01 7.383649e-01 9.229562e-01 setrgbcolor -fill -grestore -newpath -9.545245e+01 2.703443e+01 moveto -9.510678e+01 2.587912e+01 lineto -9.703788e+01 2.65228e+01 lineto -9.740572e+01 2.768549e+01 lineto -9.545245e+01 2.703443e+01 lineto -closepath -gsave -7.431025e-01 7.431025e-01 9.288781e-01 setrgbcolor -fill -grestore -newpath -7.935659e+01 5.927785e+00 moveto -7.838897e+01 5.534943e+00 lineto -7.911345e+01 5.814933e+00 lineto -8.013343e+01 6.22801e+00 lineto -7.935659e+01 5.927785e+00 lineto -closepath -gsave -5.68503e-01 5.68503e-01 7.106288e-01 setrgbcolor -fill -grestore -newpath -8.031063e+01 6.358568e+00 moveto -7.935659e+01 5.927785e+00 lineto -8.013343e+01 6.22801e+00 lineto -8.113909e+01 6.678744e+00 lineto -8.031063e+01 6.358568e+00 lineto -closepath -gsave -5.757933e-01 5.757933e-01 7.197416e-01 setrgbcolor -fill -grestore -newpath -8.125016e+01 6.826884e+00 moveto -8.031063e+01 6.358568e+00 lineto -8.113909e+01 6.678744e+00 lineto -8.212946e+01 7.166707e+00 lineto -8.125016e+01 6.826884e+00 lineto -closepath -gsave -5.831186e-01 5.831186e-01 7.288982e-01 setrgbcolor -fill -grestore -newpath -8.217431e+01 7.33229e+00 moveto -8.125016e+01 6.826884e+00 lineto -8.212946e+01 7.166707e+00 lineto -8.310362e+01 7.691439e+00 lineto -8.217431e+01 7.33229e+00 lineto -closepath -gsave -5.904653e-01 5.904653e-01 7.380816e-01 setrgbcolor -fill -grestore -newpath -8.30822e+01 7.874306e+00 moveto -8.217431e+01 7.33229e+00 lineto -8.310362e+01 7.691439e+00 lineto -8.406063e+01 8.252441e+00 lineto -8.30822e+01 7.874306e+00 lineto -closepath -gsave -5.978199e-01 5.978199e-01 7.472748e-01 setrgbcolor -fill -grestore -newpath -8.397297e+01 8.45242e+00 moveto -8.30822e+01 7.874306e+00 lineto -8.406063e+01 8.252441e+00 lineto -8.49996e+01 8.849183e+00 lineto -8.397297e+01 8.45242e+00 lineto -closepath -gsave -6.051686e-01 6.051686e-01 7.564608e-01 setrgbcolor -fill -grestore -newpath -8.484577e+01 9.066085e+00 moveto -8.397297e+01 8.45242e+00 lineto -8.49996e+01 8.849183e+00 lineto -8.591963e+01 9.481099e+00 lineto -8.484577e+01 9.066085e+00 lineto -closepath -gsave -6.124982e-01 6.124982e-01 7.656228e-01 setrgbcolor -fill -grestore -newpath -8.569979e+01 9.714719e+00 moveto -8.484577e+01 9.066085e+00 lineto -8.591963e+01 9.481099e+00 lineto -8.681986e+01 1.014759e+01 lineto -8.569979e+01 9.714719e+00 lineto -closepath -gsave -6.197953e-01 6.197953e-01 7.747441e-01 setrgbcolor -fill -grestore -newpath -8.65342e+01 1.039771e+01 moveto -8.569979e+01 9.714719e+00 lineto -8.681986e+01 1.014759e+01 lineto -8.769943e+01 1.084803e+01 lineto -8.65342e+01 1.039771e+01 lineto -closepath -gsave -6.270468e-01 6.270468e-01 7.838085e-01 setrgbcolor -fill -grestore -newpath -8.734823e+01 1.111441e+01 moveto -8.65342e+01 1.039771e+01 lineto -8.769943e+01 1.084803e+01 lineto -8.85575e+01 1.158175e+01 lineto -8.734823e+01 1.111441e+01 lineto -closepath -gsave -6.342401e-01 6.342401e-01 7.928001e-01 setrgbcolor -fill -grestore -newpath -8.81411e+01 1.186413e+01 moveto -8.734823e+01 1.111441e+01 lineto -8.85575e+01 1.158175e+01 lineto -8.939327e+01 1.234806e+01 lineto -8.81411e+01 1.186413e+01 lineto -closepath -gsave -6.413626e-01 6.413626e-01 8.017033e-01 setrgbcolor -fill -grestore -newpath -8.891206e+01 1.264618e+01 moveto -8.81411e+01 1.186413e+01 lineto -8.939327e+01 1.234806e+01 lineto -9.020594e+01 1.314623e+01 lineto -8.891206e+01 1.264618e+01 lineto -closepath -gsave -6.484025e-01 6.484025e-01 8.105031e-01 setrgbcolor -fill -grestore -newpath -8.966037e+01 1.345981e+01 moveto -8.891206e+01 1.264618e+01 lineto -9.020594e+01 1.314623e+01 lineto -9.099475e+01 1.397551e+01 lineto -8.966037e+01 1.345981e+01 lineto -closepath -gsave -6.553479e-01 6.553479e-01 8.191848e-01 setrgbcolor -fill -grestore -newpath -9.038534e+01 1.430425e+01 moveto -8.966037e+01 1.345981e+01 lineto -9.099475e+01 1.397551e+01 lineto -9.175895e+01 1.48351e+01 lineto -9.038534e+01 1.430425e+01 lineto -closepath -gsave -6.621877e-01 6.621877e-01 8.277346e-01 setrgbcolor -fill -grestore -newpath -9.108627e+01 1.517869e+01 moveto -9.038534e+01 1.430425e+01 lineto -9.175895e+01 1.48351e+01 lineto -9.249781e+01 1.572421e+01 lineto -9.108627e+01 1.517869e+01 lineto -closepath -gsave -6.689113e-01 6.689113e-01 8.361391e-01 setrgbcolor -fill -grestore -newpath -9.176251e+01 1.608232e+01 moveto -9.108627e+01 1.517869e+01 lineto -9.249781e+01 1.572421e+01 lineto -9.321064e+01 1.664198e+01 lineto -9.176251e+01 1.608232e+01 lineto -closepath -gsave -6.755084e-01 6.755084e-01 8.443855e-01 setrgbcolor -fill -grestore -newpath -9.24134e+01 1.701428e+01 moveto -9.176251e+01 1.608232e+01 lineto -9.321064e+01 1.664198e+01 lineto -9.389675e+01 1.758755e+01 lineto -9.24134e+01 1.701428e+01 lineto -closepath -gsave -6.819694e-01 6.819694e-01 8.524618e-01 setrgbcolor -fill -grestore -newpath -9.303835e+01 1.797368e+01 moveto -9.24134e+01 1.701428e+01 lineto -9.389675e+01 1.758755e+01 lineto -9.455551e+01 1.856001e+01 lineto -9.303835e+01 1.797368e+01 lineto -closepath -gsave -6.882852e-01 6.882852e-01 8.603566e-01 setrgbcolor -fill -grestore -newpath -9.363674e+01 1.895961e+01 moveto -9.303835e+01 1.797368e+01 lineto -9.455551e+01 1.856001e+01 lineto -9.518628e+01 1.955846e+01 lineto -9.363674e+01 1.895961e+01 lineto -closepath -gsave -6.944473e-01 6.944473e-01 8.680591e-01 setrgbcolor -fill -grestore -newpath -9.420802e+01 1.997115e+01 moveto -9.363674e+01 1.895961e+01 lineto -9.518628e+01 1.955846e+01 lineto -9.578847e+01 2.058195e+01 lineto -9.420802e+01 1.997115e+01 lineto -closepath -gsave -7.004476e-01 7.004476e-01 8.755596e-01 setrgbcolor -fill -grestore -newpath -9.475164e+01 2.100733e+01 moveto -9.420802e+01 1.997115e+01 lineto -9.578847e+01 2.058195e+01 lineto -9.636151e+01 2.16295e+01 lineto -9.475164e+01 2.100733e+01 lineto -closepath -gsave -7.062789e-01 7.062789e-01 8.828486e-01 setrgbcolor -fill -grestore -newpath -9.52671e+01 2.206717e+01 moveto -9.475164e+01 2.100733e+01 lineto -9.636151e+01 2.16295e+01 lineto -9.690486e+01 2.270012e+01 lineto -9.52671e+01 2.206717e+01 lineto -closepath -gsave -7.119342e-01 7.119342e-01 8.899178e-01 setrgbcolor -fill -grestore -newpath -9.57539e+01 2.314968e+01 moveto -9.52671e+01 2.206717e+01 lineto -9.690486e+01 2.270012e+01 lineto -9.7418e+01 2.37928e+01 lineto -9.57539e+01 2.314968e+01 lineto -closepath -gsave -7.174074e-01 7.174074e-01 8.967592e-01 setrgbcolor -fill -grestore -newpath -9.621158e+01 2.425382e+01 moveto -9.57539e+01 2.314968e+01 lineto -9.7418e+01 2.37928e+01 lineto -9.790045e+01 2.490651e+01 lineto -9.621158e+01 2.425382e+01 lineto -closepath -gsave -7.226927e-01 7.226927e-01 9.033659e-01 setrgbcolor -fill -grestore -newpath -9.663971e+01 2.537855e+01 moveto -9.621158e+01 2.425382e+01 lineto -9.790045e+01 2.490651e+01 lineto -9.835174e+01 2.60402e+01 lineto -9.663971e+01 2.537855e+01 lineto -closepath -gsave -7.277851e-01 7.277851e-01 9.097314e-01 setrgbcolor -fill -grestore -newpath -9.703788e+01 2.65228e+01 moveto -9.663971e+01 2.537855e+01 lineto -9.835174e+01 2.60402e+01 lineto -9.877146e+01 2.719278e+01 lineto -9.703788e+01 2.65228e+01 lineto -closepath -gsave -7.326799e-01 7.326799e-01 9.158499e-01 setrgbcolor -fill -grestore -newpath -9.740572e+01 2.768549e+01 moveto -9.703788e+01 2.65228e+01 lineto -9.877146e+01 2.719278e+01 lineto -9.91592e+01 2.836316e+01 lineto -9.740572e+01 2.768549e+01 lineto -closepath -gsave -7.373731e-01 7.373731e-01 9.217164e-01 setrgbcolor -fill -grestore -newpath -8.212946e+01 7.166707e+00 moveto -8.113909e+01 6.678744e+00 lineto -8.186805e+01 7.009513e+00 lineto -8.290316e+01 7.517774e+00 lineto -8.212946e+01 7.166707e+00 lineto -closepath -gsave -5.797092e-01 5.797092e-01 7.246365e-01 setrgbcolor -fill -grestore -newpath -8.310362e+01 7.691439e+00 moveto -8.212946e+01 7.166707e+00 lineto -8.290316e+01 7.517774e+00 lineto -8.392131e+01 8.062471e+00 lineto -8.310362e+01 7.691439e+00 lineto -closepath -gsave -5.868244e-01 5.868244e-01 7.335305e-01 setrgbcolor -fill -grestore -newpath -8.406063e+01 8.252441e+00 moveto -8.310362e+01 7.691439e+00 lineto -8.392131e+01 8.062471e+00 lineto -8.492155e+01 8.643087e+00 lineto -8.406063e+01 8.252441e+00 lineto -closepath -gsave -5.939506e-01 5.939506e-01 7.424382e-01 setrgbcolor -fill -grestore -newpath -8.49996e+01 8.849183e+00 moveto -8.406063e+01 8.252441e+00 lineto -8.492155e+01 8.643087e+00 lineto -8.590293e+01 9.259073e+00 lineto -8.49996e+01 8.849183e+00 lineto -closepath -gsave -6.010747e-01 6.010747e-01 7.513434e-01 setrgbcolor -fill -grestore -newpath -8.591963e+01 9.481099e+00 moveto -8.49996e+01 8.849183e+00 lineto -8.590293e+01 9.259073e+00 lineto -8.686452e+01 9.909846e+00 lineto -8.591963e+01 9.481099e+00 lineto -closepath -gsave -6.081841e-01 6.081841e-01 7.602302e-01 setrgbcolor -fill -grestore -newpath -8.681986e+01 1.014759e+01 moveto -8.591963e+01 9.481099e+00 lineto -8.686452e+01 9.909846e+00 lineto -8.78054e+01 1.059479e+01 lineto -8.681986e+01 1.014759e+01 lineto -closepath -gsave -6.152662e-01 6.152662e-01 7.690827e-01 setrgbcolor -fill -grestore -newpath -8.769943e+01 1.084803e+01 moveto -8.681986e+01 1.014759e+01 lineto -8.78054e+01 1.059479e+01 lineto -8.87247e+01 1.131325e+01 lineto -8.769943e+01 1.084803e+01 lineto -closepath -gsave -6.223084e-01 6.223084e-01 7.778854e-01 setrgbcolor -fill -grestore -newpath -8.85575e+01 1.158175e+01 moveto -8.769943e+01 1.084803e+01 lineto -8.87247e+01 1.131325e+01 lineto -8.962153e+01 1.206456e+01 lineto -8.85575e+01 1.158175e+01 lineto -closepath -gsave -6.292985e-01 6.292985e-01 7.866231e-01 setrgbcolor -fill -grestore -newpath -8.939327e+01 1.234806e+01 moveto -8.85575e+01 1.158175e+01 lineto -8.962153e+01 1.206456e+01 lineto -9.049505e+01 1.2848e+01 lineto -8.939327e+01 1.234806e+01 lineto -closepath -gsave -6.362247e-01 6.362247e-01 7.952809e-01 setrgbcolor -fill -grestore -newpath -9.020594e+01 1.314623e+01 moveto -8.939327e+01 1.234806e+01 lineto -9.049505e+01 1.2848e+01 lineto -9.134443e+01 1.366282e+01 lineto -9.020594e+01 1.314623e+01 lineto -closepath -gsave -6.430754e-01 6.430754e-01 8.038442e-01 setrgbcolor -fill -grestore -newpath -9.099475e+01 1.397551e+01 moveto -9.020594e+01 1.314623e+01 lineto -9.134443e+01 1.366282e+01 lineto -9.216887e+01 1.450827e+01 lineto -9.099475e+01 1.397551e+01 lineto -closepath -gsave -6.498393e-01 6.498393e-01 8.122991e-01 setrgbcolor -fill -grestore -newpath -9.175895e+01 1.48351e+01 moveto -9.099475e+01 1.397551e+01 lineto -9.216887e+01 1.450827e+01 lineto -9.296758e+01 1.538353e+01 lineto -9.175895e+01 1.48351e+01 lineto -closepath -gsave -6.565056e-01 6.565056e-01 8.20632e-01 setrgbcolor -fill -grestore -newpath -9.249781e+01 1.572421e+01 moveto -9.175895e+01 1.48351e+01 lineto -9.296758e+01 1.538353e+01 lineto -9.373981e+01 1.628777e+01 lineto -9.249781e+01 1.572421e+01 lineto -closepath -gsave -6.63064e-01 6.63064e-01 8.2883e-01 setrgbcolor -fill -grestore -newpath -9.321064e+01 1.664198e+01 moveto -9.249781e+01 1.572421e+01 lineto -9.373981e+01 1.628777e+01 lineto -9.448484e+01 1.722015e+01 lineto -9.321064e+01 1.664198e+01 lineto -closepath -gsave -6.695044e-01 6.695044e-01 8.368805e-01 setrgbcolor -fill -grestore -newpath -9.389675e+01 1.758755e+01 moveto -9.321064e+01 1.664198e+01 lineto -9.448484e+01 1.722015e+01 lineto -9.520194e+01 1.817978e+01 lineto -9.389675e+01 1.758755e+01 lineto -closepath -gsave -6.758176e-01 6.758176e-01 8.447719e-01 setrgbcolor -fill -grestore -newpath -9.455551e+01 1.856001e+01 moveto -9.389675e+01 1.758755e+01 lineto -9.520194e+01 1.817978e+01 lineto -9.589045e+01 1.916575e+01 lineto -9.455551e+01 1.856001e+01 lineto -closepath -gsave -6.819944e-01 6.819944e-01 8.52493e-01 setrgbcolor -fill -grestore -newpath -9.518628e+01 1.955846e+01 moveto -9.455551e+01 1.856001e+01 lineto -9.589045e+01 1.916575e+01 lineto -9.654971e+01 2.017713e+01 lineto -9.518628e+01 1.955846e+01 lineto -closepath -gsave -6.880266e-01 6.880266e-01 8.600332e-01 setrgbcolor -fill -grestore -newpath -9.578847e+01 2.058195e+01 moveto -9.518628e+01 1.955846e+01 lineto -9.654971e+01 2.017713e+01 lineto -9.717911e+01 2.121295e+01 lineto -9.578847e+01 2.058195e+01 lineto -closepath -gsave -6.939061e-01 6.939061e-01 8.673826e-01 setrgbcolor -fill -grestore -newpath -9.636151e+01 2.16295e+01 moveto -9.578847e+01 2.058195e+01 lineto -9.717911e+01 2.121295e+01 lineto -9.777803e+01 2.227225e+01 lineto -9.636151e+01 2.16295e+01 lineto -closepath -gsave -6.996257e-01 6.996257e-01 8.745321e-01 setrgbcolor -fill -grestore -newpath -9.690486e+01 2.270012e+01 moveto -9.636151e+01 2.16295e+01 lineto -9.777803e+01 2.227225e+01 lineto -9.834592e+01 2.335401e+01 lineto -9.690486e+01 2.270012e+01 lineto -closepath -gsave -7.051785e-01 7.051785e-01 8.814731e-01 setrgbcolor -fill -grestore -newpath -9.7418e+01 2.37928e+01 moveto -9.690486e+01 2.270012e+01 lineto -9.834592e+01 2.335401e+01 lineto -9.888224e+01 2.445721e+01 lineto -9.7418e+01 2.37928e+01 lineto -closepath -gsave -7.105582e-01 7.105582e-01 8.881977e-01 setrgbcolor -fill -grestore -newpath -9.790045e+01 2.490651e+01 moveto -9.7418e+01 2.37928e+01 lineto -9.888224e+01 2.445721e+01 lineto -9.938647e+01 2.558081e+01 lineto -9.790045e+01 2.490651e+01 lineto -closepath -gsave -7.15759e-01 7.15759e-01 8.946988e-01 setrgbcolor -fill -grestore -newpath -9.835174e+01 2.60402e+01 moveto -9.790045e+01 2.490651e+01 lineto -9.938647e+01 2.558081e+01 lineto -9.985815e+01 2.672374e+01 lineto -9.835174e+01 2.60402e+01 lineto -closepath -gsave -7.207757e-01 7.207757e-01 9.009696e-01 setrgbcolor -fill -grestore -newpath -9.877146e+01 2.719278e+01 moveto -9.835174e+01 2.60402e+01 lineto -9.985815e+01 2.672374e+01 lineto -1.002968e+02 2.788492e+01 lineto -9.877146e+01 2.719278e+01 lineto -closepath -gsave -7.256035e-01 7.256035e-01 9.070044e-01 setrgbcolor -fill -grestore -newpath -9.91592e+01 2.836316e+01 moveto -9.877146e+01 2.719278e+01 lineto -1.002968e+02 2.788492e+01 lineto -1.007021e+02 2.906325e+01 lineto -9.91592e+01 2.836316e+01 lineto -closepath -gsave -7.302381e-01 7.302381e-01 9.127976e-01 setrgbcolor -fill -grestore -newpath -8.492155e+01 8.643087e+00 moveto -8.392131e+01 8.062471e+00 lineto -8.462235e+01 8.443099e+00 lineto -8.565965e+01 9.043836e+00 lineto -8.492155e+01 8.643087e+00 lineto -closepath -gsave -5.893799e-01 5.893799e-01 7.367249e-01 setrgbcolor -fill -grestore -newpath -8.590293e+01 9.259073e+00 moveto -8.492155e+01 8.643087e+00 lineto -8.565965e+01 9.043836e+00 lineto -8.667739e+01 9.679564e+00 lineto -8.590293e+01 9.259073e+00 lineto -closepath -gsave -5.962376e-01 5.962376e-01 7.452969e-01 setrgbcolor -fill -grestore -newpath -8.686452e+01 9.909846e+00 moveto -8.590293e+01 9.259073e+00 lineto -8.667739e+01 9.679564e+00 lineto -8.76746e+01 1.034968e+01 lineto -8.686452e+01 9.909846e+00 lineto -closepath -gsave -6.030855e-01 6.030855e-01 7.538568e-01 setrgbcolor -fill -grestore -newpath -8.78054e+01 1.059479e+01 moveto -8.686452e+01 9.909846e+00 lineto -8.76746e+01 1.034968e+01 lineto -8.865035e+01 1.105355e+01 lineto -8.78054e+01 1.059479e+01 lineto -closepath -gsave -6.099117e-01 6.099117e-01 7.623896e-01 setrgbcolor -fill -grestore -newpath -8.87247e+01 1.131325e+01 moveto -8.78054e+01 1.059479e+01 lineto -8.865035e+01 1.105355e+01 lineto -8.96037e+01 1.179051e+01 lineto -8.87247e+01 1.131325e+01 lineto -closepath -gsave -6.167045e-01 6.167045e-01 7.708806e-01 setrgbcolor -fill -grestore -newpath -8.962153e+01 1.206456e+01 moveto -8.87247e+01 1.131325e+01 lineto -8.96037e+01 1.179051e+01 lineto -9.053376e+01 1.255986e+01 lineto -8.962153e+01 1.206456e+01 lineto -closepath -gsave -6.234523e-01 6.234523e-01 7.793154e-01 setrgbcolor -fill -grestore -newpath -9.049505e+01 1.2848e+01 moveto -8.962153e+01 1.206456e+01 lineto -9.053376e+01 1.255986e+01 lineto -9.143964e+01 1.336087e+01 lineto -9.049505e+01 1.2848e+01 lineto -closepath -gsave -6.301438e-01 6.301438e-01 7.876798e-01 setrgbcolor -fill -grestore -newpath -9.134443e+01 1.366282e+01 moveto -9.049505e+01 1.2848e+01 lineto -9.143964e+01 1.336087e+01 lineto -9.232049e+01 1.419278e+01 lineto -9.134443e+01 1.366282e+01 lineto -closepath -gsave -6.36768e-01 6.36768e-01 7.9596e-01 setrgbcolor -fill -grestore -newpath -9.216887e+01 1.450827e+01 moveto -9.134443e+01 1.366282e+01 lineto -9.232049e+01 1.419278e+01 lineto -9.317548e+01 1.505481e+01 lineto -9.216887e+01 1.450827e+01 lineto -closepath -gsave -6.433141e-01 6.433141e-01 8.041427e-01 setrgbcolor -fill -grestore -newpath -9.296758e+01 1.538353e+01 moveto -9.216887e+01 1.450827e+01 lineto -9.317548e+01 1.505481e+01 lineto -9.400378e+01 1.594613e+01 lineto -9.296758e+01 1.538353e+01 lineto -closepath -gsave -6.497718e-01 6.497718e-01 8.122148e-01 setrgbcolor -fill -grestore -newpath -9.373981e+01 1.628777e+01 moveto -9.296758e+01 1.538353e+01 lineto -9.400378e+01 1.594613e+01 lineto -9.480463e+01 1.686592e+01 lineto -9.373981e+01 1.628777e+01 lineto -closepath -gsave -6.56131e-01 6.56131e-01 8.201638e-01 setrgbcolor -fill -grestore -newpath -9.448484e+01 1.722015e+01 moveto -9.373981e+01 1.628777e+01 lineto -9.480463e+01 1.686592e+01 lineto -9.557725e+01 1.781328e+01 lineto -9.448484e+01 1.722015e+01 lineto -closepath -gsave -6.623822e-01 6.623822e-01 8.279777e-01 setrgbcolor -fill -grestore -newpath -9.520194e+01 1.817978e+01 moveto -9.448484e+01 1.722015e+01 lineto -9.557725e+01 1.781328e+01 lineto -9.632093e+01 1.878734e+01 lineto -9.520194e+01 1.817978e+01 lineto -closepath -gsave -6.685161e-01 6.685161e-01 8.356451e-01 setrgbcolor -fill -grestore -newpath -9.589045e+01 1.916575e+01 moveto -9.520194e+01 1.817978e+01 lineto -9.632093e+01 1.878734e+01 lineto -9.703495e+01 1.978716e+01 lineto -9.589045e+01 1.916575e+01 lineto -closepath -gsave -6.745241e-01 6.745241e-01 8.431551e-01 setrgbcolor -fill -grestore -newpath -9.654971e+01 2.017713e+01 moveto -9.589045e+01 1.916575e+01 lineto -9.703495e+01 1.978716e+01 lineto -9.771863e+01 2.081179e+01 lineto -9.654971e+01 2.017713e+01 lineto -closepath -gsave -6.803978e-01 6.803978e-01 8.504973e-01 setrgbcolor -fill -grestore -newpath -9.717911e+01 2.121295e+01 moveto -9.654971e+01 2.017713e+01 lineto -9.771863e+01 2.081179e+01 lineto -9.837134e+01 2.186028e+01 lineto -9.717911e+01 2.121295e+01 lineto -closepath -gsave -6.861296e-01 6.861296e-01 8.57662e-01 setrgbcolor -fill -grestore -newpath -9.777803e+01 2.227225e+01 moveto -9.717911e+01 2.121295e+01 lineto -9.837134e+01 2.186028e+01 lineto -9.899246e+01 2.293162e+01 lineto -9.777803e+01 2.227225e+01 lineto -closepath -gsave -6.917121e-01 6.917121e-01 8.646401e-01 setrgbcolor -fill -grestore -newpath -9.834592e+01 2.335401e+01 moveto -9.777803e+01 2.227225e+01 lineto -9.899246e+01 2.293162e+01 lineto -9.958139e+01 2.402481e+01 lineto -9.834592e+01 2.335401e+01 lineto -closepath -gsave -6.971384e-01 6.971384e-01 8.71423e-01 setrgbcolor -fill -grestore -newpath -9.888224e+01 2.445721e+01 moveto -9.834592e+01 2.335401e+01 lineto -9.958139e+01 2.402481e+01 lineto -1.001376e+02 2.51388e+01 lineto -9.888224e+01 2.445721e+01 lineto -closepath -gsave -7.024022e-01 7.024022e-01 8.780027e-01 setrgbcolor -fill -grestore -newpath -9.938647e+01 2.558081e+01 moveto -9.888224e+01 2.445721e+01 lineto -1.001376e+02 2.51388e+01 lineto -1.006605e+02 2.627254e+01 lineto -9.938647e+01 2.558081e+01 lineto -closepath -gsave -7.074977e-01 7.074977e-01 8.843721e-01 setrgbcolor -fill -grestore -newpath -9.985815e+01 2.672374e+01 moveto -9.938647e+01 2.558081e+01 lineto -1.006605e+02 2.627254e+01 lineto -1.011497e+02 2.742496e+01 lineto -9.985815e+01 2.672374e+01 lineto -closepath -gsave -7.124194e-01 7.124194e-01 8.905243e-01 setrgbcolor -fill -grestore -newpath -1.002968e+02 2.788492e+01 moveto -9.985815e+01 2.672374e+01 lineto -1.011497e+02 2.742496e+01 lineto -1.016046e+02 2.859496e+01 lineto -1.002968e+02 2.788492e+01 lineto -closepath -gsave -7.171625e-01 7.171625e-01 8.964532e-01 setrgbcolor -fill -grestore -newpath -1.007021e+02 2.906325e+01 moveto -1.002968e+02 2.788492e+01 lineto -1.016046e+02 2.859496e+01 lineto -1.020249e+02 2.978145e+01 lineto -1.007021e+02 2.906325e+01 lineto -closepath -gsave -7.217225e-01 7.217225e-01 9.021532e-01 setrgbcolor -fill -grestore -newpath -8.76746e+01 1.034968e+01 moveto -8.667739e+01 9.679564e+00 lineto -8.731819e+01 1.010806e+01 lineto -8.834489e+01 1.079789e+01 lineto -8.76746e+01 1.034968e+01 lineto -closepath -gsave -5.972454e-01 5.972454e-01 7.465568e-01 setrgbcolor -fill -grestore -newpath -8.865035e+01 1.105355e+01 moveto -8.76746e+01 1.034968e+01 lineto -8.834489e+01 1.079789e+01 lineto -8.934948e+01 1.152105e+01 lineto -8.865035e+01 1.105355e+01 lineto -closepath -gsave -6.037766e-01 6.037766e-01 7.547208e-01 setrgbcolor -fill -grestore -newpath -8.96037e+01 1.179051e+01 moveto -8.865035e+01 1.105355e+01 lineto -8.934948e+01 1.152105e+01 lineto -9.033101e+01 1.227685e+01 lineto -8.96037e+01 1.179051e+01 lineto -closepath -gsave -6.102814e-01 6.102814e-01 7.628517e-01 setrgbcolor -fill -grestore -newpath -9.053376e+01 1.255986e+01 moveto -8.96037e+01 1.179051e+01 lineto -9.033101e+01 1.227685e+01 lineto -9.128857e+01 1.306459e+01 lineto -9.053376e+01 1.255986e+01 lineto -closepath -gsave -6.167488e-01 6.167488e-01 7.70936e-01 setrgbcolor -fill -grestore -newpath -9.143964e+01 1.336087e+01 moveto -9.053376e+01 1.255986e+01 lineto -9.128857e+01 1.306459e+01 lineto -9.222123e+01 1.38835e+01 lineto -9.143964e+01 1.336087e+01 lineto -closepath -gsave -6.231682e-01 6.231682e-01 7.789603e-01 setrgbcolor -fill -grestore -newpath -9.232049e+01 1.419278e+01 moveto -9.143964e+01 1.336087e+01 lineto -9.222123e+01 1.38835e+01 lineto -9.312812e+01 1.473283e+01 lineto -9.232049e+01 1.419278e+01 lineto -closepath -gsave -6.295293e-01 6.295293e-01 7.869116e-01 setrgbcolor -fill -grestore -newpath -9.317548e+01 1.505481e+01 moveto -9.232049e+01 1.419278e+01 lineto -9.312812e+01 1.473283e+01 lineto -9.400837e+01 1.561175e+01 lineto -9.317548e+01 1.505481e+01 lineto -closepath -gsave -6.358219e-01 6.358219e-01 7.947773e-01 setrgbcolor -fill -grestore -newpath -9.400378e+01 1.594613e+01 moveto -9.317548e+01 1.505481e+01 lineto -9.400837e+01 1.561175e+01 lineto -9.486116e+01 1.651945e+01 lineto -9.400378e+01 1.594613e+01 lineto -closepath -gsave -6.42036e-01 6.42036e-01 8.02545e-01 setrgbcolor -fill -grestore -newpath -9.480463e+01 1.686592e+01 moveto -9.400378e+01 1.594613e+01 lineto -9.486116e+01 1.651945e+01 lineto -9.568568e+01 1.745507e+01 lineto -9.480463e+01 1.686592e+01 lineto -closepath -gsave -6.481622e-01 6.481622e-01 8.102028e-01 setrgbcolor -fill -grestore -newpath -9.557725e+01 1.781328e+01 moveto -9.480463e+01 1.686592e+01 lineto -9.568568e+01 1.745507e+01 lineto -9.648115e+01 1.841771e+01 lineto -9.557725e+01 1.781328e+01 lineto -closepath -gsave -6.541913e-01 6.541913e-01 8.177391e-01 setrgbcolor -fill -grestore -newpath -9.632093e+01 1.878734e+01 moveto -9.557725e+01 1.781328e+01 lineto -9.648115e+01 1.841771e+01 lineto -9.724681e+01 1.940646e+01 lineto -9.632093e+01 1.878734e+01 lineto -closepath -gsave -6.601143e-01 6.601143e-01 8.251429e-01 setrgbcolor -fill -grestore -newpath -9.703495e+01 1.978716e+01 moveto -9.632093e+01 1.878734e+01 lineto -9.724681e+01 1.940646e+01 lineto -9.798193e+01 2.042039e+01 lineto -9.703495e+01 1.978716e+01 lineto -closepath -gsave -6.65923e-01 6.65923e-01 8.324037e-01 setrgbcolor -fill -grestore -newpath -9.771863e+01 2.081179e+01 moveto -9.703495e+01 1.978716e+01 lineto -9.798193e+01 2.042039e+01 lineto -9.868583e+01 2.145855e+01 lineto -9.771863e+01 2.081179e+01 lineto -closepath -gsave -6.716091e-01 6.716091e-01 8.395114e-01 setrgbcolor -fill -grestore -newpath -9.837134e+01 2.186028e+01 moveto -9.771863e+01 2.081179e+01 lineto -9.868583e+01 2.145855e+01 lineto -9.935784e+01 2.251993e+01 lineto -9.837134e+01 2.186028e+01 lineto -closepath -gsave -6.771652e-01 6.771652e-01 8.464565e-01 setrgbcolor -fill -grestore -newpath -9.899246e+01 2.293162e+01 moveto -9.837134e+01 2.186028e+01 lineto -9.935784e+01 2.251993e+01 lineto -9.999731e+01 2.360355e+01 lineto -9.899246e+01 2.293162e+01 lineto -closepath -gsave -6.825839e-01 6.825839e-01 8.532299e-01 setrgbcolor -fill -grestore -newpath -9.958139e+01 2.402481e+01 moveto -9.899246e+01 2.293162e+01 lineto -9.999731e+01 2.360355e+01 lineto -1.006037e+02 2.470838e+01 lineto -9.958139e+01 2.402481e+01 lineto -closepath -gsave -6.878585e-01 6.878585e-01 8.598232e-01 setrgbcolor -fill -grestore -newpath -1.001376e+02 2.51388e+01 moveto -9.958139e+01 2.402481e+01 lineto -1.006037e+02 2.470838e+01 lineto -1.011763e+02 2.583336e+01 lineto -1.001376e+02 2.51388e+01 lineto -closepath -gsave -6.929827e-01 6.929827e-01 8.662284e-01 setrgbcolor -fill -grestore -newpath -1.006605e+02 2.627254e+01 moveto -1.001376e+02 2.51388e+01 lineto -1.011763e+02 2.583336e+01 lineto -1.017147e+02 2.697744e+01 lineto -1.006605e+02 2.627254e+01 lineto -closepath -gsave -6.979506e-01 6.979506e-01 8.724382e-01 setrgbcolor -fill -grestore -newpath -1.011497e+02 2.742496e+01 moveto -1.006605e+02 2.627254e+01 lineto -1.017147e+02 2.697744e+01 lineto -1.022183e+02 2.813953e+01 lineto -1.011497e+02 2.742496e+01 lineto -closepath -gsave -7.027566e-01 7.027566e-01 8.784457e-01 setrgbcolor -fill -grestore -newpath -1.016046e+02 2.859496e+01 moveto -1.011497e+02 2.742496e+01 lineto -1.022183e+02 2.813953e+01 lineto -1.026867e+02 2.931853e+01 lineto -1.016046e+02 2.859496e+01 lineto -closepath -gsave -7.073957e-01 7.073957e-01 8.842446e-01 setrgbcolor -fill -grestore -newpath -1.020249e+02 2.978145e+01 moveto -1.016046e+02 2.859496e+01 lineto -1.026867e+02 2.931853e+01 lineto -1.031193e+02 3.051332e+01 lineto -1.020249e+02 2.978145e+01 lineto -closepath -gsave -7.118633e-01 7.118633e-01 8.898291e-01 setrgbcolor -fill -grestore -newpath -9.222123e+01 1.38835e+01 moveto -9.128857e+01 1.306459e+01 lineto -9.188129e+01 1.357563e+01 lineto -9.283498e+01 1.441268e+01 lineto -9.222123e+01 1.38835e+01 lineto -closepath -gsave -6.153554e-01 6.153554e-01 7.691942e-01 setrgbcolor -fill -grestore -newpath -9.312812e+01 1.473283e+01 moveto -9.222123e+01 1.38835e+01 lineto -9.283498e+01 1.441268e+01 lineto -9.376232e+01 1.527964e+01 lineto -9.312812e+01 1.473283e+01 lineto -closepath -gsave -6.214179e-01 6.214179e-01 7.767723e-01 setrgbcolor -fill -grestore -newpath -9.400837e+01 1.561175e+01 moveto -9.312812e+01 1.473283e+01 lineto -9.376232e+01 1.527964e+01 lineto -9.466242e+01 1.617568e+01 lineto -9.400837e+01 1.561175e+01 lineto -closepath -gsave -6.27422e-01 6.27422e-01 7.842775e-01 setrgbcolor -fill -grestore -newpath -9.486116e+01 1.651945e+01 moveto -9.400837e+01 1.561175e+01 lineto -9.466242e+01 1.617568e+01 lineto -9.553444e+01 1.709995e+01 lineto -9.486116e+01 1.651945e+01 lineto -closepath -gsave -6.333585e-01 6.333585e-01 7.916981e-01 setrgbcolor -fill -grestore -newpath -9.568568e+01 1.745507e+01 moveto -9.486116e+01 1.651945e+01 lineto -9.553444e+01 1.709995e+01 lineto -9.637755e+01 1.80516e+01 lineto -9.568568e+01 1.745507e+01 lineto -closepath -gsave -6.392183e-01 6.392183e-01 7.990229e-01 setrgbcolor -fill -grestore -newpath -9.648115e+01 1.841771e+01 moveto -9.568568e+01 1.745507e+01 lineto -9.637755e+01 1.80516e+01 lineto -9.719095e+01 1.90297e+01 lineto -9.648115e+01 1.841771e+01 lineto -closepath -gsave -6.449927e-01 6.449927e-01 8.062409e-01 setrgbcolor -fill -grestore -newpath -9.724681e+01 1.940646e+01 moveto -9.648115e+01 1.841771e+01 lineto -9.719095e+01 1.90297e+01 lineto -9.797387e+01 2.003334e+01 lineto -9.724681e+01 1.940646e+01 lineto -closepath -gsave -6.506733e-01 6.506733e-01 8.133416e-01 setrgbcolor -fill -grestore -newpath -9.798193e+01 2.042039e+01 moveto -9.724681e+01 1.940646e+01 lineto -9.797387e+01 2.003334e+01 lineto -9.872558e+01 2.106156e+01 lineto -9.798193e+01 2.042039e+01 lineto -closepath -gsave -6.562519e-01 6.562519e-01 8.203149e-01 setrgbcolor -fill -grestore -newpath -9.868583e+01 2.145855e+01 moveto -9.798193e+01 2.042039e+01 lineto -9.872558e+01 2.106156e+01 lineto -9.944535e+01 2.21134e+01 lineto -9.868583e+01 2.145855e+01 lineto -closepath -gsave -6.617209e-01 6.617209e-01 8.271511e-01 setrgbcolor -fill -grestore -newpath -9.935784e+01 2.251993e+01 moveto -9.868583e+01 2.145855e+01 lineto -9.944535e+01 2.21134e+01 lineto -1.001325e+02 2.318785e+01 lineto -9.935784e+01 2.251993e+01 lineto -closepath -gsave -6.670727e-01 6.670727e-01 8.338408e-01 setrgbcolor -fill -grestore -newpath -9.999731e+01 2.360355e+01 moveto -9.935784e+01 2.251993e+01 lineto -1.001325e+02 2.318785e+01 lineto -1.007864e+02 2.42839e+01 lineto -9.999731e+01 2.360355e+01 lineto -closepath -gsave -6.723003e-01 6.723003e-01 8.403754e-01 setrgbcolor -fill -grestore -newpath -1.006037e+02 2.470838e+01 moveto -9.999731e+01 2.360355e+01 lineto -1.007864e+02 2.42839e+01 lineto -1.014064e+02 2.540051e+01 lineto -1.006037e+02 2.470838e+01 lineto -closepath -gsave -6.773971e-01 6.773971e-01 8.467464e-01 setrgbcolor -fill -grestore -newpath -1.011763e+02 2.583336e+01 moveto -1.006037e+02 2.470838e+01 lineto -1.014064e+02 2.540051e+01 lineto -1.019919e+02 2.653663e+01 lineto -1.011763e+02 2.583336e+01 lineto -closepath -gsave -6.823567e-01 6.823567e-01 8.529459e-01 setrgbcolor -fill -grestore -newpath -1.017147e+02 2.697744e+01 moveto -1.011763e+02 2.583336e+01 lineto -1.019919e+02 2.653663e+01 lineto -1.025425e+02 2.769117e+01 lineto -1.017147e+02 2.697744e+01 lineto -closepath -gsave -6.871734e-01 6.871734e-01 8.589667e-01 setrgbcolor -fill -grestore -newpath -1.022183e+02 2.813953e+01 moveto -1.017147e+02 2.697744e+01 lineto -1.025425e+02 2.769117e+01 lineto -1.030574e+02 2.886305e+01 lineto -1.022183e+02 2.813953e+01 lineto -closepath -gsave -6.918414e-01 6.918414e-01 8.648017e-01 setrgbcolor -fill -grestore -newpath -1.026867e+02 2.931853e+01 moveto -1.022183e+02 2.813953e+01 lineto -1.030574e+02 2.886305e+01 lineto -1.035364e+02 3.005116e+01 lineto -1.026867e+02 2.931853e+01 lineto -closepath -gsave -6.963557e-01 6.963557e-01 8.704446e-01 setrgbcolor -fill -grestore -newpath -1.031193e+02 3.051332e+01 moveto -1.026867e+02 2.931853e+01 lineto -1.035364e+02 3.005116e+01 lineto -1.039788e+02 3.125436e+01 lineto -1.031193e+02 3.051332e+01 lineto -closepath -gsave -7.007115e-01 7.007115e-01 8.758894e-01 setrgbcolor -fill -grestore -newpath -9.797387e+01 2.003334e+01 moveto -9.719095e+01 1.90297e+01 lineto -9.770229e+01 1.964549e+01 lineto -9.849765e+01 2.066411e+01 lineto -9.797387e+01 2.003334e+01 lineto -closepath -gsave -6.402668e-01 6.402668e-01 8.003334e-01 setrgbcolor -fill -grestore -newpath -9.872558e+01 2.106156e+01 moveto -9.797387e+01 2.003334e+01 lineto -9.849765e+01 2.066411e+01 lineto -9.926129e+01 2.170671e+01 lineto -9.872558e+01 2.106156e+01 lineto -closepath -gsave -6.45585e-01 6.45585e-01 8.069813e-01 setrgbcolor -fill -grestore -newpath -9.944535e+01 2.21134e+01 moveto -9.872558e+01 2.106156e+01 lineto -9.926129e+01 2.170671e+01 lineto -9.999249e+01 2.277231e+01 lineto -9.944535e+01 2.21134e+01 lineto -closepath -gsave -6.508072e-01 6.508072e-01 8.13509e-01 setrgbcolor -fill -grestore -newpath -1.001325e+02 2.318785e+01 moveto -9.944535e+01 2.21134e+01 lineto -9.999249e+01 2.277231e+01 lineto -1.006906e+02 2.385991e+01 lineto -1.001325e+02 2.318785e+01 lineto -closepath -gsave -6.559261e-01 6.559261e-01 8.199076e-01 setrgbcolor -fill -grestore -newpath -1.007864e+02 2.42839e+01 moveto -1.001325e+02 2.318785e+01 lineto -1.006906e+02 2.385991e+01 lineto -1.013548e+02 2.496847e+01 lineto -1.007864e+02 2.42839e+01 lineto -closepath -gsave -6.609349e-01 6.609349e-01 8.261687e-01 setrgbcolor -fill -grestore -newpath -1.014064e+02 2.540051e+01 moveto -1.007864e+02 2.42839e+01 lineto -1.013548e+02 2.496847e+01 lineto -1.019847e+02 2.609694e+01 lineto -1.014064e+02 2.540051e+01 lineto -closepath -gsave -6.658272e-01 6.658272e-01 8.32284e-01 setrgbcolor -fill -grestore -newpath -1.019919e+02 2.653663e+01 moveto -1.014064e+02 2.540051e+01 lineto -1.019847e+02 2.609694e+01 lineto -1.025795e+02 2.724426e+01 lineto -1.019919e+02 2.653663e+01 lineto -closepath -gsave -6.705968e-01 6.705968e-01 8.38246e-01 setrgbcolor -fill -grestore -newpath -1.025425e+02 2.769117e+01 moveto -1.019919e+02 2.653663e+01 lineto -1.025795e+02 2.724426e+01 lineto -1.031388e+02 2.840934e+01 lineto -1.025425e+02 2.769117e+01 lineto -closepath -gsave -6.752377e-01 6.752377e-01 8.440471e-01 setrgbcolor -fill -grestore -newpath -1.030574e+02 2.886305e+01 moveto -1.025425e+02 2.769117e+01 lineto -1.031388e+02 2.840934e+01 lineto -1.03662e+02 2.959107e+01 lineto -1.030574e+02 2.886305e+01 lineto -closepath -gsave -6.797445e-01 6.797445e-01 8.496807e-01 setrgbcolor -fill -grestore -newpath -1.035364e+02 3.005116e+01 moveto -1.030574e+02 2.886305e+01 lineto -1.03662e+02 2.959107e+01 lineto -1.041485e+02 3.078833e+01 lineto -1.035364e+02 3.005116e+01 lineto -closepath -gsave -6.84112e-01 6.84112e-01 8.551401e-01 setrgbcolor -fill -grestore -newpath -1.039788e+02 3.125436e+01 moveto -1.035364e+02 3.005116e+01 lineto -1.041485e+02 3.078833e+01 lineto -1.04598e+02 3.2e+01 lineto -1.039788e+02 3.125436e+01 lineto -closepath -gsave -6.883354e-01 6.883354e-01 8.604192e-01 setrgbcolor -fill -grestore -newpath -1.031388e+02 2.840934e+01 moveto -1.025795e+02 2.724426e+01 lineto -1.029355e+02 2.795189e+01 lineto -1.035e+02 2.91275e+01 lineto -1.031388e+02 2.840934e+01 lineto -closepath -gsave -6.622327e-01 6.622327e-01 8.277909e-01 setrgbcolor -fill -grestore -newpath -1.03662e+02 2.959107e+01 moveto -1.031388e+02 2.840934e+01 lineto -1.035e+02 2.91275e+01 lineto -1.040281e+02 3.031908e+01 lineto -1.03662e+02 2.959107e+01 lineto -closepath -gsave -6.665546e-01 6.665546e-01 8.331932e-01 setrgbcolor -fill -grestore -newpath -1.041485e+02 3.078833e+01 moveto -1.03662e+02 2.959107e+01 lineto -1.040281e+02 3.031908e+01 lineto -1.045193e+02 3.15255e+01 lineto -1.041485e+02 3.078833e+01 lineto -closepath -gsave -6.707526e-01 6.707526e-01 8.384408e-01 setrgbcolor -fill -grestore -newpath -1.04598e+02 3.2e+01 moveto -1.041485e+02 3.078833e+01 lineto -1.045193e+02 3.15255e+01 lineto -1.04973e+02 3.274564e+01 lineto -1.04598e+02 3.2e+01 lineto -closepath -gsave -6.74822e-01 6.74822e-01 8.435275e-01 setrgbcolor -fill -grestore -newpath -6.276e+01 1.10238e+02 moveto -6.364349e+01 1.102446e+02 lineto -6.453233e+01 1.102645e+02 lineto -6.542301e+01 1.102975e+02 lineto -6.631203e+01 1.103435e+02 lineto -6.719587e+01 1.104024e+02 lineto -6.807104e+01 1.104739e+02 lineto -6.89341e+01 1.105578e+02 lineto -6.978162e+01 1.106536e+02 lineto -7.061028e+01 1.10761e+02 lineto -7.14168e+01 1.108797e+02 lineto -7.219799e+01 1.110091e+02 lineto -7.295077e+01 1.111486e+02 lineto -7.367218e+01 1.112979e+02 lineto -7.435936e+01 1.114562e+02 lineto -7.50096e+01 1.11623e+02 lineto -7.562034e+01 1.117976e+02 lineto -7.618917e+01 1.119793e+02 lineto -7.671383e+01 1.121674e+02 lineto -7.719227e+01 1.123611e+02 lineto -7.762259e+01 1.125597e+02 lineto -7.80031e+01 1.127624e+02 lineto -7.833229e+01 1.129684e+02 lineto -7.860886e+01 1.131769e+02 lineto -7.883172e+01 1.13387e+02 lineto -7.9e+01 1.13598e+02 lineto -7.911302e+01 1.13809e+02 lineto -7.917035e+01 1.140191e+02 lineto -7.917176e+01 1.142276e+02 lineto -7.911723e+01 1.144336e+02 lineto -7.900699e+01 1.146363e+02 lineto -7.884147e+01 1.148349e+02 lineto -7.862132e+01 1.150286e+02 lineto -7.834742e+01 1.152167e+02 lineto -7.802084e+01 1.153984e+02 lineto -7.764288e+01 1.155729e+02 lineto -7.721502e+01 1.157397e+02 lineto -7.673895e+01 1.158981e+02 lineto -7.621655e+01 1.160473e+02 lineto -7.564989e+01 1.161869e+02 lineto -7.504119e+01 1.163163e+02 lineto -7.439287e+01 1.164349e+02 lineto -7.370748e+01 1.165424e+02 lineto -7.298772e+01 1.166382e+02 lineto -7.223644e+01 1.16722e+02 lineto -7.14566e+01 1.167935e+02 lineto -7.065128e+01 1.168524e+02 lineto -6.982366e+01 1.168985e+02 lineto -6.8977e+01 1.169315e+02 lineto -6.811465e+01 1.169513e+02 lineto -6.724e+01 1.16958e+02 lineto -6.635651e+01 1.169513e+02 lineto -6.546767e+01 1.169315e+02 lineto -6.457699e+01 1.168985e+02 lineto -6.368797e+01 1.168524e+02 lineto -6.280413e+01 1.167935e+02 lineto -6.192896e+01 1.16722e+02 lineto -6.10659e+01 1.166382e+02 lineto -6.021838e+01 1.165424e+02 lineto -5.938972e+01 1.164349e+02 lineto -5.85832e+01 1.163163e+02 lineto -5.780201e+01 1.161869e+02 lineto -5.704923e+01 1.160473e+02 lineto -5.632782e+01 1.158981e+02 lineto -5.564064e+01 1.157397e+02 lineto -5.49904e+01 1.155729e+02 lineto -5.437966e+01 1.153984e+02 lineto -5.381083e+01 1.152167e+02 lineto -5.328617e+01 1.150286e+02 lineto -5.280773e+01 1.148349e+02 lineto -5.237741e+01 1.146363e+02 lineto -5.19969e+01 1.144336e+02 lineto -5.166771e+01 1.142276e+02 lineto -5.139114e+01 1.140191e+02 lineto -5.116828e+01 1.13809e+02 lineto -5.1e+01 1.13598e+02 lineto -5.088698e+01 1.13387e+02 lineto -5.082965e+01 1.131769e+02 lineto -5.082824e+01 1.129684e+02 lineto -5.088277e+01 1.127624e+02 lineto -5.099301e+01 1.125597e+02 lineto -5.115853e+01 1.123611e+02 lineto -5.137868e+01 1.121674e+02 lineto -5.165258e+01 1.119793e+02 lineto -5.197916e+01 1.117976e+02 lineto -5.235712e+01 1.11623e+02 lineto -5.278498e+01 1.114562e+02 lineto -5.326105e+01 1.112979e+02 lineto -5.378345e+01 1.111486e+02 lineto -5.435011e+01 1.110091e+02 lineto -5.495881e+01 1.108797e+02 lineto -5.560713e+01 1.10761e+02 lineto -5.629252e+01 1.106536e+02 lineto -5.701228e+01 1.105578e+02 lineto -5.776356e+01 1.104739e+02 lineto -5.85434e+01 1.104024e+02 lineto -5.934872e+01 1.103435e+02 lineto -6.017634e+01 1.102975e+02 lineto -6.1023e+01 1.102645e+02 lineto -6.188535e+01 1.102446e+02 lineto -6.276e+01 1.10238e+02 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -fill -grestore -gsave -6.0e-01 6.0e-01 6.0e-01 setrgbcolor -stroke -grestore -newpath -5.866432e+01 2.249648e+01 moveto -6.11632e+01 2.251524e+01 lineto -6.367722e+01 2.257142e+01 lineto -6.619647e+01 2.266482e+01 lineto -6.871099e+01 2.279506e+01 lineto -7.121086e+01 2.296162e+01 lineto -7.368623e+01 2.316386e+01 lineto -7.612731e+01 2.340096e+01 lineto -7.852448e+01 2.367201e+01 lineto -8.086827e+01 2.397592e+01 lineto -8.314944e+01 2.431149e+01 lineto -8.535898e+01 2.467742e+01 lineto -8.748817e+01 2.507224e+01 lineto -8.952862e+01 2.54944e+01 lineto -9.147226e+01 2.594223e+01 lineto -9.331142e+01 2.641397e+01 lineto -9.503885e+01 2.690776e+01 lineto -9.664774e+01 2.742165e+01 lineto -9.813172e+01 2.79536e+01 lineto -9.948495e+01 2.850152e+01 lineto -1.007021e+02 2.906325e+01 lineto -1.017783e+02 2.963657e+01 lineto -1.027094e+02 3.021922e+01 lineto -1.034917e+02 3.080889e+01 lineto -1.04122e+02 3.140327e+01 lineto -1.04598e+02 3.2e+01 lineto -1.049177e+02 3.259673e+01 lineto -1.050798e+02 3.319111e+01 lineto -1.050838e+02 3.378078e+01 lineto -1.049296e+02 3.436343e+01 lineto -1.046177e+02 3.493675e+01 lineto -1.041496e+02 3.549848e+01 lineto -1.035269e+02 3.60464e+01 lineto -1.027522e+02 3.657835e+01 lineto -1.018285e+02 3.709224e+01 lineto -1.007595e+02 3.758603e+01 lineto -9.954928e+01 3.805777e+01 lineto -9.820275e+01 3.85056e+01 lineto -9.672519e+01 3.892776e+01 lineto -9.512243e+01 3.932258e+01 lineto -9.340078e+01 3.968851e+01 lineto -9.156705e+01 4.002408e+01 lineto -8.962847e+01 4.032799e+01 lineto -8.759269e+01 4.059904e+01 lineto -8.546775e+01 4.083614e+01 lineto -8.326204e+01 4.103838e+01 lineto -8.098425e+01 4.120494e+01 lineto -7.864338e+01 4.133518e+01 lineto -7.624866e+01 4.142858e+01 lineto -7.380955e+01 4.148476e+01 lineto -7.133568e+01 4.150352e+01 lineto -6.88368e+01 4.148476e+01 lineto -6.632278e+01 4.142858e+01 lineto -6.380353e+01 4.133518e+01 lineto -6.128901e+01 4.120494e+01 lineto -5.878914e+01 4.103838e+01 lineto -5.631377e+01 4.083614e+01 lineto -5.387269e+01 4.059904e+01 lineto -5.147552e+01 4.032799e+01 lineto -4.913173e+01 4.002408e+01 lineto -4.685056e+01 3.968851e+01 lineto -4.464102e+01 3.932258e+01 lineto -4.251183e+01 3.892776e+01 lineto -4.047138e+01 3.85056e+01 lineto -3.852774e+01 3.805777e+01 lineto -3.668858e+01 3.758603e+01 lineto -3.496115e+01 3.709224e+01 lineto -3.335226e+01 3.657835e+01 lineto -3.186828e+01 3.60464e+01 lineto -3.051505e+01 3.549848e+01 lineto -2.929792e+01 3.493675e+01 lineto -2.822168e+01 3.436343e+01 lineto -2.72906e+01 3.378078e+01 lineto -2.650833e+01 3.319111e+01 lineto -2.587798e+01 3.259673e+01 lineto -2.540202e+01 3.2e+01 lineto -2.508234e+01 3.140327e+01 lineto -2.492019e+01 3.080889e+01 lineto -2.491622e+01 3.021922e+01 lineto -2.507044e+01 2.963657e+01 lineto -2.538225e+01 2.906325e+01 lineto -2.585041e+01 2.850152e+01 lineto -2.647308e+01 2.79536e+01 lineto -2.724779e+01 2.742165e+01 lineto -2.817149e+01 2.690776e+01 lineto -2.924054e+01 2.641397e+01 lineto -3.045072e+01 2.594223e+01 lineto -3.179725e+01 2.54944e+01 lineto -3.327481e+01 2.507224e+01 lineto -3.487757e+01 2.467742e+01 lineto -3.659922e+01 2.431149e+01 lineto -3.843295e+01 2.397592e+01 lineto -4.037153e+01 2.367201e+01 lineto -4.240731e+01 2.340096e+01 lineto -4.453225e+01 2.316386e+01 lineto -4.673796e+01 2.296162e+01 lineto -4.901575e+01 2.279506e+01 lineto -5.135662e+01 2.266482e+01 lineto -5.375134e+01 2.257142e+01 lineto -5.619045e+01 2.251524e+01 lineto -5.866432e+01 2.249648e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 1 setrgbcolor -fill -grestore -gsave -6.0e-01 6.0e-01 6.0e-01 setrgbcolor -stroke -grestore -gsave -clip -1.0e-01 setlinewidth -newpath -6.627615e+01 8.914994e+01 moveto -6.658972e+01 8.919243e+01 lineto -6.580527e+01 8.918508e+01 lineto -6.564643e+01 8.914404e+01 lineto -6.627615e+01 8.914994e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.595967e+01 8.900902e+01 moveto -6.627615e+01 8.914994e+01 lineto -6.564643e+01 8.914404e+01 lineto -6.548612e+01 8.900458e+01 lineto -6.595967e+01 8.900902e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5641e+01 8.876999e+01 moveto -6.595967e+01 8.900902e+01 lineto -6.548612e+01 8.900458e+01 lineto -6.53247e+01 8.876702e+01 lineto -6.5641e+01 8.876999e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.532086e+01 8.843339e+01 moveto -6.5641e+01 8.876999e+01 lineto -6.53247e+01 8.876702e+01 lineto -6.516253e+01 8.843191e+01 lineto -6.532086e+01 8.843339e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.532086e+01 8.843339e+01 lineto -6.516253e+01 8.843191e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.564643e+01 8.914404e+01 moveto -6.580527e+01 8.918508e+01 lineto -6.501585e+01 8.916308e+01 lineto -6.501273e+01 8.912637e+01 lineto -6.564643e+01 8.914404e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.548612e+01 8.900458e+01 moveto -6.564643e+01 8.914404e+01 lineto -6.501273e+01 8.912637e+01 lineto -6.500957e+01 8.89913e+01 lineto -6.548612e+01 8.900458e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.53247e+01 8.876702e+01 moveto -6.548612e+01 8.900458e+01 lineto -6.500957e+01 8.89913e+01 lineto -6.500639e+01 8.875815e+01 lineto -6.53247e+01 8.876702e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.516253e+01 8.843191e+01 moveto -6.53247e+01 8.876702e+01 lineto -6.500639e+01 8.875815e+01 lineto -6.50032e+01 8.842747e+01 lineto -6.516253e+01 8.843191e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.516253e+01 8.843191e+01 lineto -6.50032e+01 8.842747e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.501273e+01 8.912637e+01 moveto -6.501585e+01 8.916308e+01 lineto -6.422634e+01 8.912655e+01 lineto -6.437895e+01 8.909705e+01 lineto -6.501273e+01 8.912637e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.500957e+01 8.89913e+01 moveto -6.501273e+01 8.912637e+01 lineto -6.437895e+01 8.909705e+01 lineto -6.453297e+01 8.896925e+01 lineto -6.500957e+01 8.89913e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.500639e+01 8.875815e+01 moveto -6.500957e+01 8.89913e+01 lineto -6.453297e+01 8.896925e+01 lineto -6.468805e+01 8.874342e+01 lineto -6.500639e+01 8.875815e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.50032e+01 8.842747e+01 moveto -6.500639e+01 8.875815e+01 lineto -6.468805e+01 8.874342e+01 lineto -6.484385e+01 8.842009e+01 lineto -6.50032e+01 8.842747e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.50032e+01 8.842747e+01 lineto -6.484385e+01 8.842009e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.437895e+01 8.909705e+01 moveto -6.422634e+01 8.912655e+01 lineto -6.34416e+01 8.907572e+01 lineto -6.374899e+01 8.905625e+01 lineto -6.437895e+01 8.909705e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.453297e+01 8.896925e+01 moveto -6.437895e+01 8.909705e+01 lineto -6.374899e+01 8.905625e+01 lineto -6.405924e+01 8.893857e+01 lineto -6.453297e+01 8.896925e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.468805e+01 8.874342e+01 moveto -6.453297e+01 8.896925e+01 lineto -6.405924e+01 8.893857e+01 lineto -6.437163e+01 8.872293e+01 lineto -6.468805e+01 8.874342e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.484385e+01 8.842009e+01 moveto -6.468805e+01 8.874342e+01 lineto -6.437163e+01 8.872293e+01 lineto -6.468546e+01 8.840984e+01 lineto -6.484385e+01 8.842009e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.484385e+01 8.842009e+01 lineto -6.468546e+01 8.840984e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.374899e+01 8.905625e+01 moveto -6.34416e+01 8.907572e+01 lineto -6.266647e+01 8.901092e+01 lineto -6.312675e+01 8.900423e+01 lineto -6.374899e+01 8.905625e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.405924e+01 8.893857e+01 moveto -6.374899e+01 8.905625e+01 lineto -6.312675e+01 8.900423e+01 lineto -6.359131e+01 8.889944e+01 lineto -6.405924e+01 8.893857e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.437163e+01 8.872293e+01 moveto -6.405924e+01 8.893857e+01 lineto -6.359131e+01 8.889944e+01 lineto -6.405909e+01 8.86968e+01 lineto -6.437163e+01 8.872293e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.468546e+01 8.840984e+01 moveto -6.437163e+01 8.872293e+01 lineto -6.405909e+01 8.86968e+01 lineto -6.452901e+01 8.839676e+01 lineto -6.468546e+01 8.840984e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.468546e+01 8.840984e+01 lineto -6.452901e+01 8.839676e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.312675e+01 8.900423e+01 moveto -6.266647e+01 8.901092e+01 lineto -6.190572e+01 8.893253e+01 lineto -6.251606e+01 8.89413e+01 lineto -6.312675e+01 8.900423e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.359131e+01 8.889944e+01 moveto -6.312675e+01 8.900423e+01 lineto -6.251606e+01 8.89413e+01 lineto -6.313207e+01 8.885212e+01 lineto -6.359131e+01 8.889944e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.405909e+01 8.86968e+01 moveto -6.359131e+01 8.889944e+01 lineto -6.313207e+01 8.885212e+01 lineto -6.375234e+01 8.866519e+01 lineto -6.405909e+01 8.86968e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.452901e+01 8.839676e+01 moveto -6.405909e+01 8.86968e+01 lineto -6.375234e+01 8.866519e+01 lineto -6.437546e+01 8.838093e+01 lineto -6.452901e+01 8.839676e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.452901e+01 8.839676e+01 lineto -6.437546e+01 8.838093e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.251606e+01 8.89413e+01 moveto -6.190572e+01 8.893253e+01 lineto -6.116405e+01 8.884104e+01 lineto -6.192069e+01 8.886786e+01 lineto -6.251606e+01 8.89413e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.313207e+01 8.885212e+01 moveto -6.251606e+01 8.89413e+01 lineto -6.192069e+01 8.886786e+01 lineto -6.268435e+01 8.87969e+01 lineto -6.313207e+01 8.885212e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.375234e+01 8.866519e+01 moveto -6.313207e+01 8.885212e+01 lineto -6.268435e+01 8.87969e+01 lineto -6.345329e+01 8.86283e+01 lineto -6.375234e+01 8.866519e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.437546e+01 8.838093e+01 moveto -6.375234e+01 8.866519e+01 lineto -6.345329e+01 8.86283e+01 lineto -6.422576e+01 8.836247e+01 lineto -6.437546e+01 8.838093e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.437546e+01 8.838093e+01 lineto -6.422576e+01 8.836247e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.192069e+01 8.886786e+01 moveto -6.116405e+01 8.884104e+01 lineto -6.044603e+01 8.873702e+01 lineto -6.134429e+01 8.878436e+01 lineto -6.192069e+01 8.886786e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.268435e+01 8.87969e+01 moveto -6.192069e+01 8.886786e+01 lineto -6.134429e+01 8.878436e+01 lineto -6.22509e+01 8.87341e+01 lineto -6.268435e+01 8.87969e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.345329e+01 8.86283e+01 moveto -6.268435e+01 8.87969e+01 lineto -6.22509e+01 8.87341e+01 lineto -6.316377e+01 8.858636e+01 lineto -6.345329e+01 8.86283e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.422576e+01 8.836247e+01 moveto -6.345329e+01 8.86283e+01 lineto -6.316377e+01 8.858636e+01 lineto -6.408084e+01 8.834147e+01 lineto -6.422576e+01 8.836247e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.422576e+01 8.836247e+01 lineto -6.408084e+01 8.834147e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.044603e+01 8.873702e+01 moveto -5.955815e+01 8.859219e+01 lineto -5.873369e+01 8.845367e+01 lineto -5.975609e+01 8.86211e+01 lineto -6.044603e+01 8.873702e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.134429e+01 8.878436e+01 moveto -6.044603e+01 8.873702e+01 lineto -5.975609e+01 8.86211e+01 lineto -6.079044e+01 8.869131e+01 lineto -6.134429e+01 8.878436e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.22509e+01 8.87341e+01 moveto -6.134429e+01 8.878436e+01 lineto -6.079044e+01 8.869131e+01 lineto -6.18344e+01 8.866412e+01 lineto -6.22509e+01 8.87341e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.316377e+01 8.858636e+01 moveto -6.22509e+01 8.87341e+01 lineto -6.18344e+01 8.866412e+01 lineto -6.288558e+01 8.853962e+01 lineto -6.316377e+01 8.858636e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.408084e+01 8.834147e+01 moveto -6.316377e+01 8.858636e+01 lineto -6.288558e+01 8.853962e+01 lineto -6.394158e+01 8.831808e+01 lineto -6.408084e+01 8.834147e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.408084e+01 8.834147e+01 lineto -6.394158e+01 8.831808e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.975609e+01 8.86211e+01 moveto -5.873369e+01 8.845367e+01 lineto -5.794787e+01 8.83018e+01 lineto -5.909847e+01 8.849401e+01 lineto -5.975609e+01 8.86211e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.079044e+01 8.869131e+01 moveto -5.975609e+01 8.86211e+01 lineto -5.909847e+01 8.849401e+01 lineto -6.026254e+01 8.858928e+01 lineto -6.079044e+01 8.869131e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.18344e+01 8.866412e+01 moveto -6.079044e+01 8.869131e+01 lineto -6.026254e+01 8.858928e+01 lineto -6.143742e+01 8.85874e+01 lineto -6.18344e+01 8.866412e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.288558e+01 8.853962e+01 moveto -6.18344e+01 8.866412e+01 lineto -6.143742e+01 8.85874e+01 lineto -6.262042e+01 8.848837e+01 lineto -6.288558e+01 8.853962e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.394158e+01 8.831808e+01 moveto -6.288558e+01 8.853962e+01 lineto -6.262042e+01 8.848837e+01 lineto -6.380885e+01 8.829242e+01 lineto -6.394158e+01 8.831808e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.394158e+01 8.831808e+01 lineto -6.380885e+01 8.829242e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.909847e+01 8.849401e+01 moveto -5.794787e+01 8.83018e+01 lineto -5.720552e+01 8.81375e+01 lineto -5.847725e+01 8.835651e+01 lineto -5.909847e+01 8.849401e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.026254e+01 8.858928e+01 moveto -5.909847e+01 8.849401e+01 lineto -5.847725e+01 8.835651e+01 lineto -5.976385e+01 8.847891e+01 lineto -6.026254e+01 8.858928e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.143742e+01 8.85874e+01 moveto -6.026254e+01 8.858928e+01 lineto -5.976385e+01 8.847891e+01 lineto -6.10624e+01 8.85044e+01 lineto -6.143742e+01 8.85874e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.262042e+01 8.848837e+01 moveto -6.143742e+01 8.85874e+01 lineto -6.10624e+01 8.85044e+01 lineto -6.236993e+01 8.843293e+01 lineto -6.262042e+01 8.848837e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.380885e+01 8.829242e+01 moveto -6.262042e+01 8.848837e+01 lineto -6.236993e+01 8.843293e+01 lineto -6.368346e+01 8.826467e+01 lineto -6.380885e+01 8.829242e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.380885e+01 8.829242e+01 lineto -6.368346e+01 8.826467e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.720552e+01 8.81375e+01 moveto -5.595157e+01 8.782237e+01 lineto -5.514559e+01 8.761839e+01 lineto -5.651123e+01 8.796179e+01 lineto -5.720552e+01 8.81375e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.847725e+01 8.835651e+01 moveto -5.720552e+01 8.81375e+01 lineto -5.651123e+01 8.796179e+01 lineto -5.789623e+01 8.820948e+01 lineto -5.847725e+01 8.835651e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.976385e+01 8.847891e+01 moveto -5.847725e+01 8.835651e+01 lineto -5.789623e+01 8.820948e+01 lineto -5.929744e+01 8.836087e+01 lineto -5.976385e+01 8.847891e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.10624e+01 8.85044e+01 moveto -5.976385e+01 8.847891e+01 lineto -5.929744e+01 8.836087e+01 lineto -6.071166e+01 8.841564e+01 lineto -6.10624e+01 8.85044e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.236993e+01 8.843293e+01 moveto -6.10624e+01 8.85044e+01 lineto -6.071166e+01 8.841564e+01 lineto -6.213566e+01 8.837365e+01 lineto -6.236993e+01 8.843293e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.368346e+01 8.826467e+01 moveto -6.236993e+01 8.843293e+01 lineto -6.213566e+01 8.837365e+01 lineto -6.356619e+01 8.8235e+01 lineto -6.368346e+01 8.826467e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.368346e+01 8.826467e+01 lineto -6.356619e+01 8.8235e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.651123e+01 8.796179e+01 moveto -5.514559e+01 8.761839e+01 lineto -5.440036e+01 8.740243e+01 lineto -5.586927e+01 8.777576e+01 lineto -5.651123e+01 8.796179e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.789623e+01 8.820948e+01 moveto -5.651123e+01 8.796179e+01 lineto -5.586927e+01 8.777576e+01 lineto -5.735902e+01 8.805379e+01 lineto -5.789623e+01 8.820948e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.929744e+01 8.836087e+01 moveto -5.789623e+01 8.820948e+01 lineto -5.735902e+01 8.805379e+01 lineto -5.886619e+01 8.82359e+01 lineto -5.929744e+01 8.836087e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.071166e+01 8.841564e+01 moveto -5.929744e+01 8.836087e+01 lineto -5.886619e+01 8.82359e+01 lineto -6.038736e+01 8.832166e+01 lineto -6.071166e+01 8.841564e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.213566e+01 8.837365e+01 moveto -6.071166e+01 8.841564e+01 lineto -6.038736e+01 8.832166e+01 lineto -6.191905e+01 8.831087e+01 lineto -6.213566e+01 8.837365e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.356619e+01 8.8235e+01 moveto -6.213566e+01 8.837365e+01 lineto -6.191905e+01 8.831087e+01 lineto -6.345776e+01 8.820357e+01 lineto -6.356619e+01 8.8235e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.356619e+01 8.8235e+01 lineto -6.345776e+01 8.820357e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.440036e+01 8.740243e+01 moveto -5.295562e+01 8.693465e+01 lineto -5.218307e+01 8.667715e+01 lineto -5.372048e+01 8.717581e+01 lineto -5.440036e+01 8.740243e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.586927e+01 8.777576e+01 moveto -5.440036e+01 8.740243e+01 lineto -5.372048e+01 8.717581e+01 lineto -5.528361e+01 8.758055e+01 lineto -5.586927e+01 8.777576e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.735902e+01 8.805379e+01 moveto -5.586927e+01 8.777576e+01 lineto -5.528361e+01 8.758055e+01 lineto -5.686891e+01 8.789043e+01 lineto -5.735902e+01 8.805379e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.886619e+01 8.82359e+01 moveto -5.735902e+01 8.805379e+01 lineto -5.686891e+01 8.789043e+01 lineto -5.847276e+01 8.810476e+01 lineto -5.886619e+01 8.82359e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.038736e+01 8.832166e+01 moveto -5.886619e+01 8.82359e+01 lineto -5.847276e+01 8.810476e+01 lineto -6.00915e+01 8.822304e+01 lineto -6.038736e+01 8.832166e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.191905e+01 8.831087e+01 moveto -6.038736e+01 8.832166e+01 lineto -6.00915e+01 8.822304e+01 lineto -6.172143e+01 8.8245e+01 lineto -6.191905e+01 8.831087e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.345776e+01 8.820357e+01 moveto -6.191905e+01 8.831087e+01 lineto -6.172143e+01 8.8245e+01 lineto -6.335884e+01 8.81706e+01 lineto -6.345776e+01 8.820357e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.345776e+01 8.820357e+01 lineto -6.335884e+01 8.81706e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.372048e+01 8.717581e+01 moveto -5.218307e+01 8.667715e+01 lineto -5.148954e+01 8.640912e+01 lineto -5.311014e+01 8.693993e+01 lineto -5.372048e+01 8.717581e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.528361e+01 8.758055e+01 moveto -5.372048e+01 8.717581e+01 lineto -5.311014e+01 8.693993e+01 lineto -5.475785e+01 8.737736e+01 lineto -5.528361e+01 8.758055e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.686891e+01 8.789043e+01 moveto -5.528361e+01 8.758055e+01 lineto -5.475785e+01 8.737736e+01 lineto -5.642893e+01 8.772039e+01 lineto -5.686891e+01 8.789043e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.847276e+01 8.810476e+01 moveto -5.686891e+01 8.789043e+01 lineto -5.642893e+01 8.772039e+01 lineto -5.811957e+01 8.796826e+01 lineto -5.847276e+01 8.810476e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.00915e+01 8.822304e+01 moveto -5.847276e+01 8.810476e+01 lineto -5.811957e+01 8.796826e+01 lineto -5.982589e+01 8.812039e+01 lineto -6.00915e+01 8.822304e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.172143e+01 8.8245e+01 moveto -6.00915e+01 8.822304e+01 lineto -5.982589e+01 8.812039e+01 lineto -6.154403e+01 8.817644e+01 lineto -6.172143e+01 8.8245e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.335884e+01 8.81706e+01 moveto -6.172143e+01 8.8245e+01 lineto -6.154403e+01 8.817644e+01 lineto -6.327004e+01 8.813628e+01 lineto -6.335884e+01 8.81706e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.335884e+01 8.81706e+01 lineto -6.327004e+01 8.813628e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.148954e+01 8.640912e+01 moveto -4.989977e+01 8.578612e+01 lineto -4.921773e+01 8.547665e+01 lineto -5.087931e+01 8.613222e+01 lineto -5.148954e+01 8.640912e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.311014e+01 8.693993e+01 moveto -5.148954e+01 8.640912e+01 lineto -5.087931e+01 8.613222e+01 lineto -5.25731e+01 8.669625e+01 lineto -5.311014e+01 8.693993e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.475785e+01 8.737736e+01 moveto -5.311014e+01 8.693993e+01 lineto -5.25731e+01 8.669625e+01 lineto -5.429524e+01 8.716745e+01 lineto -5.475785e+01 8.737736e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.642893e+01 8.772039e+01 moveto -5.475785e+01 8.737736e+01 lineto -5.429524e+01 8.716745e+01 lineto -5.60418e+01 8.754473e+01 lineto -5.642893e+01 8.772039e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.811957e+01 8.796826e+01 moveto -5.642893e+01 8.772039e+01 lineto -5.60418e+01 8.754473e+01 lineto -5.78088e+01 8.782725e+01 lineto -5.811957e+01 8.796826e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.982589e+01 8.812039e+01 moveto -5.811957e+01 8.796826e+01 lineto -5.78088e+01 8.782725e+01 lineto -5.959219e+01 8.801435e+01 lineto -5.982589e+01 8.812039e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.154403e+01 8.817644e+01 moveto -5.982589e+01 8.812039e+01 lineto -5.959219e+01 8.801435e+01 lineto -6.138793e+01 8.810561e+01 lineto -6.154403e+01 8.817644e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.327004e+01 8.813628e+01 moveto -6.154403e+01 8.817644e+01 lineto -6.138793e+01 8.810561e+01 lineto -6.31919e+01 8.810082e+01 lineto -6.327004e+01 8.813628e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.327004e+01 8.813628e+01 lineto -6.31919e+01 8.810082e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.759215e+01 8.473102e+01 moveto -4.600628e+01 8.389704e+01 lineto -4.530256e+01 8.351496e+01 lineto -4.694719e+01 8.438084e+01 lineto -4.759215e+01 8.473102e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.921773e+01 8.547665e+01 moveto -4.759215e+01 8.473102e+01 lineto -4.694719e+01 8.438084e+01 lineto -4.8633e+01 8.515916e+01 lineto -4.921773e+01 8.547665e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.087931e+01 8.613222e+01 moveto -4.921773e+01 8.547665e+01 lineto -4.8633e+01 8.515916e+01 lineto -5.035614e+01 8.584817e+01 lineto -5.087931e+01 8.613222e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.25731e+01 8.669625e+01 moveto -5.087931e+01 8.613222e+01 lineto -5.035614e+01 8.584817e+01 lineto -5.211269e+01 8.644627e+01 lineto -5.25731e+01 8.669625e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.429524e+01 8.716745e+01 moveto -5.25731e+01 8.669625e+01 lineto -5.211269e+01 8.644627e+01 lineto -5.389863e+01 8.69521e+01 lineto -5.429524e+01 8.716745e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.60418e+01 8.754473e+01 moveto -5.429524e+01 8.716745e+01 lineto -5.389863e+01 8.69521e+01 lineto -5.57099e+01 8.736452e+01 lineto -5.60418e+01 8.754473e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.78088e+01 8.782725e+01 moveto -5.60418e+01 8.754473e+01 lineto -5.57099e+01 8.736452e+01 lineto -5.754236e+01 8.768259e+01 lineto -5.78088e+01 8.782725e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.959219e+01 8.801435e+01 moveto -5.78088e+01 8.782725e+01 lineto -5.754236e+01 8.768259e+01 lineto -5.939183e+01 8.790556e+01 lineto -5.959219e+01 8.801435e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.138793e+01 8.810561e+01 moveto -5.959219e+01 8.801435e+01 lineto -5.939183e+01 8.790556e+01 lineto -6.12541e+01 8.803295e+01 lineto -6.138793e+01 8.810561e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.31919e+01 8.810082e+01 moveto -6.138793e+01 8.810561e+01 lineto -6.12541e+01 8.803295e+01 lineto -6.312491e+01 8.806445e+01 lineto -6.31919e+01 8.810082e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.31919e+01 8.810082e+01 lineto -6.312491e+01 8.806445e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.370287e+01 8.25635e+01 moveto -4.215176e+01 8.152864e+01 lineto -4.147634e+01 8.107699e+01 lineto -4.30733e+01 8.214252e+01 lineto -4.370287e+01 8.25635e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.530256e+01 8.351496e+01 moveto -4.370287e+01 8.25635e+01 lineto -4.30733e+01 8.214252e+01 lineto -4.472028e+01 8.312559e+01 lineto -4.530256e+01 8.351496e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.694719e+01 8.438084e+01 moveto -4.530256e+01 8.351496e+01 lineto -4.472028e+01 8.312559e+01 lineto -4.641353e+01 8.402398e+01 lineto -4.694719e+01 8.438084e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.8633e+01 8.515916e+01 moveto -4.694719e+01 8.438084e+01 lineto -4.641353e+01 8.402398e+01 lineto -4.814917e+01 8.483564e+01 lineto -4.8633e+01 8.515916e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.035614e+01 8.584817e+01 moveto -4.8633e+01 8.515916e+01 lineto -4.814917e+01 8.483564e+01 lineto -4.992325e+01 8.55587e+01 lineto -5.035614e+01 8.584817e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.211269e+01 8.644627e+01 moveto -5.035614e+01 8.584817e+01 lineto -4.992325e+01 8.55587e+01 lineto -5.173172e+01 8.619152e+01 lineto -5.211269e+01 8.644627e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.389863e+01 8.69521e+01 moveto -5.211269e+01 8.644627e+01 lineto -5.173172e+01 8.619152e+01 lineto -5.357046e+01 8.673266e+01 lineto -5.389863e+01 8.69521e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.57099e+01 8.736452e+01 moveto -5.389863e+01 8.69521e+01 lineto -5.357046e+01 8.673266e+01 lineto -5.543527e+01 8.718089e+01 lineto -5.57099e+01 8.736452e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.754236e+01 8.768259e+01 moveto -5.57099e+01 8.736452e+01 lineto -5.543527e+01 8.718089e+01 lineto -5.732191e+01 8.753517e+01 lineto -5.754236e+01 8.768259e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.939183e+01 8.790556e+01 moveto -5.754236e+01 8.768259e+01 lineto -5.732191e+01 8.753517e+01 lineto -5.922605e+01 8.779471e+01 lineto -5.939183e+01 8.790556e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.12541e+01 8.803295e+01 moveto -5.939183e+01 8.790556e+01 lineto -5.922605e+01 8.779471e+01 lineto -6.114337e+01 8.79589e+01 lineto -6.12541e+01 8.803295e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.312491e+01 8.806445e+01 moveto -6.12541e+01 8.803295e+01 lineto -6.114337e+01 8.79589e+01 lineto -6.306948e+01 8.802739e+01 lineto -6.312491e+01 8.806445e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.312491e+01 8.806445e+01 lineto -6.306948e+01 8.802739e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.993303e+01 7.993145e+01 moveto -3.844691e+01 7.870851e+01 lineto -3.784822e+01 7.819232e+01 lineto -3.936785e+01 7.944415e+01 lineto -3.993303e+01 7.993145e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.147634e+01 8.107699e+01 moveto -3.993303e+01 7.993145e+01 lineto -3.936785e+01 7.944415e+01 lineto -4.094595e+01 8.061969e+01 lineto -4.147634e+01 8.107699e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.30733e+01 8.214252e+01 moveto -4.147634e+01 8.107699e+01 lineto -4.094595e+01 8.061969e+01 lineto -4.257892e+01 8.171626e+01 lineto -4.30733e+01 8.214252e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.472028e+01 8.312559e+01 moveto -4.30733e+01 8.214252e+01 lineto -4.257892e+01 8.171626e+01 lineto -4.426304e+01 8.273136e+01 lineto -4.472028e+01 8.312559e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.641353e+01 8.402398e+01 moveto -4.472028e+01 8.312559e+01 lineto -4.426304e+01 8.273136e+01 lineto -4.599446e+01 8.366266e+01 lineto -4.641353e+01 8.402398e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.814917e+01 8.483564e+01 moveto -4.641353e+01 8.402398e+01 lineto -4.599446e+01 8.366266e+01 lineto -4.776923e+01 8.450806e+01 lineto -4.814917e+01 8.483564e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.992325e+01 8.55587e+01 moveto -4.814917e+01 8.483564e+01 lineto -4.776923e+01 8.450806e+01 lineto -4.958331e+01 8.526561e+01 lineto -4.992325e+01 8.55587e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.173172e+01 8.619152e+01 moveto -4.992325e+01 8.55587e+01 lineto -4.958331e+01 8.526561e+01 lineto -5.143256e+01 8.593359e+01 lineto -5.173172e+01 8.619152e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.357046e+01 8.673266e+01 moveto -5.173172e+01 8.619152e+01 lineto -5.143256e+01 8.593359e+01 lineto -5.331276e+01 8.651047e+01 lineto -5.357046e+01 8.673266e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.543527e+01 8.718089e+01 moveto -5.357046e+01 8.673266e+01 lineto -5.331276e+01 8.651047e+01 lineto -5.521962e+01 8.699495e+01 lineto -5.543527e+01 8.718089e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.732191e+01 8.753517e+01 moveto -5.543527e+01 8.718089e+01 lineto -5.521962e+01 8.699495e+01 lineto -5.714879e+01 8.738591e+01 lineto -5.732191e+01 8.753517e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.922605e+01 8.779471e+01 moveto -5.732191e+01 8.753517e+01 lineto -5.714879e+01 8.738591e+01 lineto -5.909587e+01 8.768246e+01 lineto -5.922605e+01 8.779471e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.114337e+01 8.79589e+01 moveto -5.922605e+01 8.779471e+01 lineto -5.909587e+01 8.768246e+01 lineto -6.105641e+01 8.788393e+01 lineto -6.114337e+01 8.79589e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.306948e+01 8.802739e+01 moveto -6.114337e+01 8.79589e+01 lineto -6.105641e+01 8.788393e+01 lineto -6.302595e+01 8.798986e+01 lineto -6.306948e+01 8.802739e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.306948e+01 8.802739e+01 lineto -6.302595e+01 8.798986e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.499809e+01 7.547137e+01 moveto -3.36741e+01 7.400846e+01 lineto -3.317651e+01 7.340922e+01 lineto -3.452153e+01 7.489745e+01 lineto -3.499809e+01 7.547137e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.639052e+01 7.686705e+01 moveto -3.499809e+01 7.547137e+01 lineto -3.452153e+01 7.489745e+01 lineto -3.593608e+01 7.631977e+01 lineto -3.639052e+01 7.686705e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.784822e+01 7.819232e+01 moveto -3.639052e+01 7.686705e+01 lineto -3.593608e+01 7.631977e+01 lineto -3.741693e+01 7.767292e+01 lineto -3.784822e+01 7.819232e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.936785e+01 7.944415e+01 moveto -3.784822e+01 7.819232e+01 lineto -3.741693e+01 7.767292e+01 lineto -3.896069e+01 7.895382e+01 lineto -3.936785e+01 7.944415e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.094595e+01 8.061969e+01 moveto -3.936785e+01 7.944415e+01 lineto -3.896069e+01 7.895382e+01 lineto -4.056386e+01 8.015955e+01 lineto -4.094595e+01 8.061969e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.257892e+01 8.171626e+01 moveto -4.094595e+01 8.061969e+01 lineto -4.056386e+01 8.015955e+01 lineto -4.222277e+01 8.128736e+01 lineto -4.257892e+01 8.171626e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.426304e+01 8.273136e+01 moveto -4.257892e+01 8.171626e+01 lineto -4.222277e+01 8.128736e+01 lineto -4.393364e+01 8.233467e+01 lineto -4.426304e+01 8.273136e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.599446e+01 8.366266e+01 moveto -4.426304e+01 8.273136e+01 lineto -4.393364e+01 8.233467e+01 lineto -4.569256e+01 8.32991e+01 lineto -4.599446e+01 8.366266e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.776923e+01 8.450806e+01 moveto -4.599446e+01 8.366266e+01 lineto -4.569256e+01 8.32991e+01 lineto -4.749553e+01 8.417844e+01 lineto -4.776923e+01 8.450806e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.958331e+01 8.526561e+01 moveto -4.776923e+01 8.450806e+01 lineto -4.749553e+01 8.417844e+01 lineto -4.933843e+01 8.49707e+01 lineto -4.958331e+01 8.526561e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.143256e+01 8.593359e+01 moveto -4.958331e+01 8.526561e+01 lineto -4.933843e+01 8.49707e+01 lineto -5.121705e+01 8.567405e+01 lineto -5.143256e+01 8.593359e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.331276e+01 8.651047e+01 moveto -5.143256e+01 8.593359e+01 lineto -5.121705e+01 8.567405e+01 lineto -5.312711e+01 8.62869e+01 lineto -5.331276e+01 8.651047e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.521962e+01 8.699495e+01 moveto -5.331276e+01 8.651047e+01 lineto -5.312711e+01 8.62869e+01 lineto -5.506426e+01 8.680786e+01 lineto -5.521962e+01 8.699495e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.714879e+01 8.738591e+01 moveto -5.521962e+01 8.699495e+01 lineto -5.506426e+01 8.680786e+01 lineto -5.702407e+01 8.723572e+01 lineto -5.714879e+01 8.738591e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.909587e+01 8.768246e+01 moveto -5.714879e+01 8.738591e+01 lineto -5.702407e+01 8.723572e+01 lineto -5.900208e+01 8.756952e+01 lineto -5.909587e+01 8.768246e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.105641e+01 8.788393e+01 moveto -5.909587e+01 8.768246e+01 lineto -5.900208e+01 8.756952e+01 lineto -6.099377e+01 8.780849e+01 lineto -6.105641e+01 8.788393e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.302595e+01 8.798986e+01 moveto -6.105641e+01 8.788393e+01 lineto -6.099377e+01 8.780849e+01 lineto -6.29946e+01 8.79521e+01 lineto -6.302595e+01 8.798986e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.302595e+01 8.798986e+01 lineto -6.29946e+01 8.79521e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.855051e+01 6.686707e+01 moveto -2.759573e+01 6.510289e+01 lineto -2.724148e+01 6.439856e+01 lineto -2.82053e+01 6.618072e+01 lineto -2.855051e+01 6.686707e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.958844e+01 6.858365e+01 moveto -2.855051e+01 6.686707e+01 lineto -2.82053e+01 6.618072e+01 lineto -2.925306e+01 6.791684e+01 lineto -2.958844e+01 6.858365e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.070714e+01 7.024871e+01 moveto -2.958844e+01 6.858365e+01 lineto -2.925306e+01 6.791684e+01 lineto -3.038236e+01 6.960297e+01 lineto -3.070714e+01 7.024871e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.190408e+01 7.185846e+01 moveto -3.070714e+01 7.024871e+01 lineto -3.038236e+01 6.960297e+01 lineto -3.159063e+01 7.123526e+01 lineto -3.190408e+01 7.185846e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.317651e+01 7.340922e+01 moveto -3.190408e+01 7.185846e+01 lineto -3.159063e+01 7.123526e+01 lineto -3.287511e+01 7.280998e+01 lineto -3.317651e+01 7.340922e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.452153e+01 7.489745e+01 moveto -3.317651e+01 7.340922e+01 lineto -3.287511e+01 7.280998e+01 lineto -3.423287e+01 7.432354e+01 lineto -3.452153e+01 7.489745e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.593608e+01 7.631977e+01 moveto -3.452153e+01 7.489745e+01 lineto -3.423287e+01 7.432354e+01 lineto -3.566082e+01 7.577249e+01 lineto -3.593608e+01 7.631977e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.741693e+01 7.767292e+01 moveto -3.593608e+01 7.631977e+01 lineto -3.566082e+01 7.577249e+01 lineto -3.715569e+01 7.715353e+01 lineto -3.741693e+01 7.767292e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.896069e+01 7.895382e+01 moveto -3.741693e+01 7.767292e+01 lineto -3.715569e+01 7.715353e+01 lineto -3.871408e+01 7.84635e+01 lineto -3.896069e+01 7.895382e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.056386e+01 8.015955e+01 moveto -3.896069e+01 7.895382e+01 lineto -3.871408e+01 7.84635e+01 lineto -4.033243e+01 7.969942e+01 lineto -4.056386e+01 8.015955e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.222277e+01 8.128736e+01 moveto -4.056386e+01 8.015955e+01 lineto -4.033243e+01 7.969942e+01 lineto -4.200705e+01 8.085846e+01 lineto -4.222277e+01 8.128736e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.393364e+01 8.233467e+01 moveto -4.222277e+01 8.128736e+01 lineto -4.200705e+01 8.085846e+01 lineto -4.373413e+01 8.193799e+01 lineto -4.393364e+01 8.233467e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.569256e+01 8.32991e+01 moveto -4.393364e+01 8.233467e+01 lineto -4.373413e+01 8.193799e+01 lineto -4.550971e+01 8.293554e+01 lineto -4.569256e+01 8.32991e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.749553e+01 8.417844e+01 moveto -4.569256e+01 8.32991e+01 lineto -4.550971e+01 8.293554e+01 lineto -4.732975e+01 8.384883e+01 lineto -4.749553e+01 8.417844e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.933843e+01 8.49707e+01 moveto -4.749553e+01 8.417844e+01 lineto -4.732975e+01 8.384883e+01 lineto -4.91901e+01 8.467579e+01 lineto -4.933843e+01 8.49707e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.121705e+01 8.567405e+01 moveto -4.933843e+01 8.49707e+01 lineto -4.91901e+01 8.467579e+01 lineto -5.108652e+01 8.541452e+01 lineto -5.121705e+01 8.567405e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.312711e+01 8.62869e+01 moveto -5.121705e+01 8.567405e+01 lineto -5.108652e+01 8.541452e+01 lineto -5.301467e+01 8.606333e+01 lineto -5.312711e+01 8.62869e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.506426e+01 8.680786e+01 moveto -5.312711e+01 8.62869e+01 lineto -5.301467e+01 8.606333e+01 lineto -5.497016e+01 8.662076e+01 lineto -5.506426e+01 8.680786e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.702407e+01 8.723572e+01 moveto -5.506426e+01 8.680786e+01 lineto -5.497016e+01 8.662076e+01 lineto -5.694854e+01 8.708553e+01 lineto -5.702407e+01 8.723572e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.900208e+01 8.756952e+01 moveto -5.702407e+01 8.723572e+01 lineto -5.694854e+01 8.708553e+01 lineto -5.894528e+01 8.745658e+01 lineto -5.900208e+01 8.756952e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.099377e+01 8.780849e+01 moveto -5.900208e+01 8.756952e+01 lineto -5.894528e+01 8.745658e+01 lineto -6.095583e+01 8.773306e+01 lineto -6.099377e+01 8.780849e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.29946e+01 8.79521e+01 moveto -6.099377e+01 8.780849e+01 lineto -6.095583e+01 8.773306e+01 lineto -6.297561e+01 8.791433e+01 lineto -6.29946e+01 8.79521e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.29946e+01 8.79521e+01 lineto -6.297561e+01 8.791433e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.375135e+01 5.494269e+01 moveto -2.333028e+01 5.297271e+01 lineto -2.319624e+01 5.220021e+01 lineto -2.361867e+01 5.4178e+01 lineto -2.375135e+01 5.494269e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.426652e+01 5.689227e+01 moveto -2.375135e+01 5.494269e+01 lineto -2.361867e+01 5.4178e+01 lineto -2.41355e+01 5.613713e+01 lineto -2.426652e+01 5.689227e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.487461e+01 5.8817e+01 moveto -2.426652e+01 5.689227e+01 lineto -2.41355e+01 5.613713e+01 lineto -2.474555e+01 5.807314e+01 lineto -2.487461e+01 5.8817e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.557423e+01 6.07125e+01 moveto -2.487461e+01 5.8817e+01 lineto -2.474555e+01 5.807314e+01 lineto -2.544742e+01 5.998161e+01 lineto -2.557423e+01 6.07125e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.636379e+01 6.257444e+01 moveto -2.557423e+01 6.07125e+01 lineto -2.544742e+01 5.998161e+01 lineto -2.623951e+01 6.185818e+01 lineto -2.636379e+01 6.257444e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.724148e+01 6.439856e+01 moveto -2.636379e+01 6.257444e+01 lineto -2.623951e+01 6.185818e+01 lineto -2.712003e+01 6.369858e+01 lineto -2.724148e+01 6.439856e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.82053e+01 6.618072e+01 moveto -2.724148e+01 6.439856e+01 lineto -2.712003e+01 6.369858e+01 lineto -2.808695e+01 6.54986e+01 lineto -2.82053e+01 6.618072e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.925306e+01 6.791684e+01 moveto -2.82053e+01 6.618072e+01 lineto -2.808695e+01 6.54986e+01 lineto -2.913808e+01 6.725415e+01 lineto -2.925306e+01 6.791684e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.038236e+01 6.960297e+01 moveto -2.925306e+01 6.791684e+01 lineto -2.913808e+01 6.725415e+01 lineto -3.027101e+01 6.896121e+01 lineto -3.038236e+01 6.960297e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.159063e+01 7.123526e+01 moveto -3.038236e+01 6.960297e+01 lineto -3.027101e+01 6.896121e+01 lineto -3.148317e+01 7.06159e+01 lineto -3.159063e+01 7.123526e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.287511e+01 7.280998e+01 moveto -3.159063e+01 7.123526e+01 lineto -3.148317e+01 7.06159e+01 lineto -3.277178e+01 7.221443e+01 lineto -3.287511e+01 7.280998e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.423287e+01 7.432354e+01 moveto -3.287511e+01 7.280998e+01 lineto -3.277178e+01 7.221443e+01 lineto -3.413391e+01 7.375316e+01 lineto -3.423287e+01 7.432354e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.566082e+01 7.577249e+01 moveto -3.423287e+01 7.432354e+01 lineto -3.413391e+01 7.375316e+01 lineto -3.556645e+01 7.522859e+01 lineto -3.566082e+01 7.577249e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.715569e+01 7.715353e+01 moveto -3.566082e+01 7.577249e+01 lineto -3.556645e+01 7.522859e+01 lineto -3.706613e+01 7.663734e+01 lineto -3.715569e+01 7.715353e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.871408e+01 7.84635e+01 moveto -3.715569e+01 7.715353e+01 lineto -3.706613e+01 7.663734e+01 lineto -3.862953e+01 7.79762e+01 lineto -3.871408e+01 7.84635e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.033243e+01 7.969942e+01 moveto -3.871408e+01 7.84635e+01 lineto -3.862953e+01 7.79762e+01 lineto -4.025309e+01 7.924212e+01 lineto -4.033243e+01 7.969942e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.200705e+01 8.085846e+01 moveto -4.033243e+01 7.969942e+01 lineto -4.025309e+01 7.924212e+01 lineto -4.19331e+01 8.043221e+01 lineto -4.200705e+01 8.085846e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.373413e+01 8.193799e+01 moveto -4.200705e+01 8.085846e+01 lineto -4.19331e+01 8.043221e+01 lineto -4.366572e+01 8.154375e+01 lineto -4.373413e+01 8.193799e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.550971e+01 8.293554e+01 moveto -4.373413e+01 8.193799e+01 lineto -4.366572e+01 8.154375e+01 lineto -4.544702e+01 8.257422e+01 lineto -4.550971e+01 8.293554e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.732975e+01 8.384883e+01 moveto -4.550971e+01 8.293554e+01 lineto -4.544702e+01 8.257422e+01 lineto -4.727291e+01 8.352125e+01 lineto -4.732975e+01 8.384883e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.91901e+01 8.467579e+01 moveto -4.732975e+01 8.384883e+01 lineto -4.727291e+01 8.352125e+01 lineto -4.913925e+01 8.438269e+01 lineto -4.91901e+01 8.467579e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.108652e+01 8.541452e+01 moveto -4.91901e+01 8.467579e+01 lineto -4.913925e+01 8.438269e+01 lineto -5.104176e+01 8.515658e+01 lineto -5.108652e+01 8.541452e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.301467e+01 8.606333e+01 moveto -5.108652e+01 8.541452e+01 lineto -5.104176e+01 8.515658e+01 lineto -5.297612e+01 8.584114e+01 lineto -5.301467e+01 8.606333e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.497016e+01 8.662076e+01 moveto -5.301467e+01 8.606333e+01 lineto -5.297612e+01 8.584114e+01 lineto -5.49379e+01 8.643483e+01 lineto -5.497016e+01 8.662076e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.694854e+01 8.708553e+01 moveto -5.497016e+01 8.662076e+01 lineto -5.49379e+01 8.643483e+01 lineto -5.692264e+01 8.693627e+01 lineto -5.694854e+01 8.708553e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.894528e+01 8.745658e+01 moveto -5.694854e+01 8.708553e+01 lineto -5.692264e+01 8.693627e+01 lineto -5.89258e+01 8.734433e+01 lineto -5.894528e+01 8.745658e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.095583e+01 8.773306e+01 moveto -5.894528e+01 8.745658e+01 lineto -5.89258e+01 8.734433e+01 lineto -6.094282e+01 8.765808e+01 lineto -6.095583e+01 8.773306e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.297561e+01 8.791433e+01 moveto -6.095583e+01 8.773306e+01 lineto -6.094282e+01 8.765808e+01 lineto -6.296909e+01 8.78768e+01 lineto -6.297561e+01 8.791433e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.297561e+01 8.791433e+01 lineto -6.296909e+01 8.78768e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.268264e+01 4.019606e+01 moveto -2.29357e+01 3.821509e+01 lineto -2.306017e+01 3.74474e+01 lineto -2.280786e+01 3.942375e+01 lineto -2.268264e+01 4.019606e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.252612e+01 4.219027e+01 moveto -2.268264e+01 4.019606e+01 lineto -2.280786e+01 3.942375e+01 lineto -2.26518e+01 4.14151e+01 lineto -2.252612e+01 4.219027e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.246649e+01 4.419317e+01 moveto -2.252612e+01 4.219027e+01 lineto -2.26518e+01 4.14151e+01 lineto -2.259235e+01 4.341691e+01 lineto -2.246649e+01 4.419317e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.250388e+01 4.620019e+01 moveto -2.246649e+01 4.419317e+01 lineto -2.259235e+01 4.341691e+01 lineto -2.262963e+01 4.542461e+01 lineto -2.250388e+01 4.620019e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.263821e+01 4.820675e+01 moveto -2.250388e+01 4.620019e+01 lineto -2.262963e+01 4.542461e+01 lineto -2.276356e+01 4.743363e+01 lineto -2.263821e+01 4.820675e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.286917e+01 5.020828e+01 moveto -2.263821e+01 4.820675e+01 lineto -2.276356e+01 4.743363e+01 lineto -2.299384e+01 4.943937e+01 lineto -2.286917e+01 5.020828e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.319624e+01 5.220021e+01 moveto -2.286917e+01 5.020828e+01 lineto -2.299384e+01 4.943937e+01 lineto -2.331994e+01 5.143727e+01 lineto -2.319624e+01 5.220021e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.361867e+01 5.4178e+01 moveto -2.319624e+01 5.220021e+01 lineto -2.331994e+01 5.143727e+01 lineto -2.374112e+01 5.342277e+01 lineto -2.361867e+01 5.4178e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.41355e+01 5.613713e+01 moveto -2.361867e+01 5.4178e+01 lineto -2.374112e+01 5.342277e+01 lineto -2.425642e+01 5.539133e+01 lineto -2.41355e+01 5.613713e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.474555e+01 5.807314e+01 moveto -2.41355e+01 5.613713e+01 lineto -2.425642e+01 5.539133e+01 lineto -2.486466e+01 5.733848e+01 lineto -2.474555e+01 5.807314e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.544742e+01 5.998161e+01 moveto -2.474555e+01 5.807314e+01 lineto -2.486466e+01 5.733848e+01 lineto -2.556446e+01 5.925975e+01 lineto -2.544742e+01 5.998161e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.623951e+01 6.185818e+01 moveto -2.544742e+01 5.998161e+01 lineto -2.556446e+01 5.925975e+01 lineto -2.635421e+01 6.115078e+01 lineto -2.623951e+01 6.185818e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.712003e+01 6.369858e+01 moveto -2.623951e+01 6.185818e+01 lineto -2.635421e+01 6.115078e+01 lineto -2.723212e+01 6.300725e+01 lineto -2.712003e+01 6.369858e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.808695e+01 6.54986e+01 moveto -2.712003e+01 6.369858e+01 lineto -2.723212e+01 6.300725e+01 lineto -2.819618e+01 6.482492e+01 lineto -2.808695e+01 6.54986e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.913808e+01 6.725415e+01 moveto -2.808695e+01 6.54986e+01 lineto -2.819618e+01 6.482492e+01 lineto -2.92442e+01 6.659965e+01 lineto -2.913808e+01 6.725415e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.027101e+01 6.896121e+01 moveto -2.913808e+01 6.725415e+01 lineto -2.92442e+01 6.659965e+01 lineto -3.037378e+01 6.832739e+01 lineto -3.027101e+01 6.896121e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.148317e+01 7.06159e+01 moveto -3.027101e+01 6.896121e+01 lineto -3.037378e+01 6.832739e+01 lineto -3.158235e+01 7.00042e+01 lineto -3.148317e+01 7.06159e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.277178e+01 7.221443e+01 moveto -3.148317e+01 7.06159e+01 lineto -3.158235e+01 7.00042e+01 lineto -3.286714e+01 7.162625e+01 lineto -3.277178e+01 7.221443e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.413391e+01 7.375316e+01 moveto -3.277178e+01 7.221443e+01 lineto -3.286714e+01 7.162625e+01 lineto -3.422524e+01 7.318984e+01 lineto -3.413391e+01 7.375316e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.556645e+01 7.522859e+01 moveto -3.413391e+01 7.375316e+01 lineto -3.422524e+01 7.318984e+01 lineto -3.565354e+01 7.469141e+01 lineto -3.556645e+01 7.522859e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.706613e+01 7.663734e+01 moveto -3.556645e+01 7.522859e+01 lineto -3.565354e+01 7.469141e+01 lineto -3.714879e+01 7.612753e+01 lineto -3.706613e+01 7.663734e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.862953e+01 7.79762e+01 moveto -3.706613e+01 7.663734e+01 lineto -3.714879e+01 7.612753e+01 lineto -3.870756e+01 7.749492e+01 lineto -3.862953e+01 7.79762e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.025309e+01 7.924212e+01 moveto -3.862953e+01 7.79762e+01 lineto -3.870756e+01 7.749492e+01 lineto -4.032631e+01 7.879047e+01 lineto -4.025309e+01 7.924212e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.19331e+01 8.043221e+01 moveto -4.025309e+01 7.924212e+01 lineto -4.032631e+01 7.879047e+01 lineto -4.200135e+01 8.001122e+01 lineto -4.19331e+01 8.043221e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.366572e+01 8.154375e+01 moveto -4.19331e+01 8.043221e+01 lineto -4.200135e+01 8.001122e+01 lineto -4.372885e+01 8.115439e+01 lineto -4.366572e+01 8.154375e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.544702e+01 8.257422e+01 moveto -4.366572e+01 8.154375e+01 lineto -4.372885e+01 8.115439e+01 lineto -4.550487e+01 8.221737e+01 lineto -4.544702e+01 8.257422e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.727291e+01 8.352125e+01 moveto -4.544702e+01 8.257422e+01 lineto -4.550487e+01 8.221737e+01 lineto -4.732537e+01 8.319772e+01 lineto -4.727291e+01 8.352125e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.913925e+01 8.438269e+01 moveto -4.727291e+01 8.352125e+01 lineto -4.732537e+01 8.319772e+01 lineto -4.918618e+01 8.409323e+01 lineto -4.913925e+01 8.438269e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.104176e+01 8.515658e+01 moveto -4.913925e+01 8.438269e+01 lineto -4.918618e+01 8.409323e+01 lineto -5.108306e+01 8.490184e+01 lineto -5.104176e+01 8.515658e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.297612e+01 8.584114e+01 moveto -5.104176e+01 8.515658e+01 lineto -5.108306e+01 8.490184e+01 lineto -5.30117e+01 8.56217e+01 lineto -5.297612e+01 8.584114e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.49379e+01 8.643483e+01 moveto -5.297612e+01 8.584114e+01 lineto -5.30117e+01 8.56217e+01 lineto -5.496768e+01 8.625119e+01 lineto -5.49379e+01 8.643483e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.692264e+01 8.693627e+01 moveto -5.49379e+01 8.643483e+01 lineto -5.496768e+01 8.625119e+01 lineto -5.694654e+01 8.678885e+01 lineto -5.692264e+01 8.693627e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.89258e+01 8.734433e+01 moveto -5.692264e+01 8.693627e+01 lineto -5.694654e+01 8.678885e+01 lineto -5.894377e+01 8.723348e+01 lineto -5.89258e+01 8.734433e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.094282e+01 8.765808e+01 moveto -5.89258e+01 8.734433e+01 lineto -5.894377e+01 8.723348e+01 lineto -6.095483e+01 8.758404e+01 lineto -6.094282e+01 8.765808e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.296909e+01 8.78768e+01 moveto -6.094282e+01 8.765808e+01 lineto -6.095483e+01 8.758404e+01 lineto -6.29751e+01 8.783974e+01 lineto -6.296909e+01 8.78768e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.296909e+01 8.78768e+01 lineto -6.29751e+01 8.783974e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.438772e+01 3.165321e+01 moveto -2.501708e+01 2.978145e+01 lineto -2.538225e+01 2.906325e+01 lineto -2.475864e+01 3.09237e+01 lineto -2.438772e+01 3.165321e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.3851e+01 3.355769e+01 moveto -2.438772e+01 3.165321e+01 lineto -2.475864e+01 3.09237e+01 lineto -2.422682e+01 3.281855e+01 lineto -2.3851e+01 3.355769e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.340815e+01 3.549056e+01 moveto -2.3851e+01 3.355769e+01 lineto -2.422682e+01 3.281855e+01 lineto -2.378801e+01 3.474346e+01 lineto -2.340815e+01 3.549056e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.306017e+01 3.74474e+01 moveto -2.340815e+01 3.549056e+01 lineto -2.378801e+01 3.474346e+01 lineto -2.344321e+01 3.669405e+01 lineto -2.306017e+01 3.74474e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.280786e+01 3.942375e+01 moveto -2.306017e+01 3.74474e+01 lineto -2.344321e+01 3.669405e+01 lineto -2.319321e+01 3.866587e+01 lineto -2.280786e+01 3.942375e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.26518e+01 4.14151e+01 moveto -2.280786e+01 3.942375e+01 lineto -2.319321e+01 3.866587e+01 lineto -2.303858e+01 4.065442e+01 lineto -2.26518e+01 4.14151e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.259235e+01 4.341691e+01 moveto -2.26518e+01 4.14151e+01 lineto -2.303858e+01 4.065442e+01 lineto -2.297966e+01 4.265516e+01 lineto -2.259235e+01 4.341691e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.262963e+01 4.542461e+01 moveto -2.259235e+01 4.341691e+01 lineto -2.297966e+01 4.265516e+01 lineto -2.30166e+01 4.466353e+01 lineto -2.262963e+01 4.542461e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.276356e+01 4.743363e+01 moveto -2.262963e+01 4.542461e+01 lineto -2.30166e+01 4.466353e+01 lineto -2.314931e+01 4.667495e+01 lineto -2.276356e+01 4.743363e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.299384e+01 4.943937e+01 moveto -2.276356e+01 4.743363e+01 lineto -2.314931e+01 4.667495e+01 lineto -2.337749e+01 4.868484e+01 lineto -2.299384e+01 4.943937e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.331994e+01 5.143727e+01 moveto -2.299384e+01 4.943937e+01 lineto -2.337749e+01 4.868484e+01 lineto -2.370061e+01 5.068859e+01 lineto -2.331994e+01 5.143727e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.374112e+01 5.342277e+01 moveto -2.331994e+01 5.143727e+01 lineto -2.370061e+01 5.068859e+01 lineto -2.411795e+01 5.268166e+01 lineto -2.374112e+01 5.342277e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.425642e+01 5.539133e+01 moveto -2.374112e+01 5.342277e+01 lineto -2.411795e+01 5.268166e+01 lineto -2.462854e+01 5.465948e+01 lineto -2.425642e+01 5.539133e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.486466e+01 5.733848e+01 moveto -2.425642e+01 5.539133e+01 lineto -2.462854e+01 5.465948e+01 lineto -2.523122e+01 5.661754e+01 lineto -2.486466e+01 5.733848e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.556446e+01 5.925975e+01 moveto -2.486466e+01 5.733848e+01 lineto -2.523122e+01 5.661754e+01 lineto -2.592463e+01 5.855139e+01 lineto -2.556446e+01 5.925975e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.635421e+01 6.115078e+01 moveto -2.556446e+01 5.925975e+01 lineto -2.592463e+01 5.855139e+01 lineto -2.670717e+01 6.04566e+01 lineto -2.635421e+01 6.115078e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.723212e+01 6.300725e+01 moveto -2.635421e+01 6.115078e+01 lineto -2.670717e+01 6.04566e+01 lineto -2.757706e+01 6.232884e+01 lineto -2.723212e+01 6.300725e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.819618e+01 6.482492e+01 moveto -2.723212e+01 6.300725e+01 lineto -2.757706e+01 6.232884e+01 lineto -2.853231e+01 6.416383e+01 lineto -2.819618e+01 6.482492e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.92442e+01 6.659965e+01 moveto -2.819618e+01 6.482492e+01 lineto -2.853231e+01 6.416383e+01 lineto -2.957076e+01 6.595738e+01 lineto -2.92442e+01 6.659965e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.037378e+01 6.832739e+01 moveto -2.92442e+01 6.659965e+01 lineto -2.957076e+01 6.595738e+01 lineto -3.069002e+01 6.770541e+01 lineto -3.037378e+01 6.832739e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.158235e+01 7.00042e+01 moveto -3.037378e+01 6.832739e+01 lineto -3.069002e+01 6.770541e+01 lineto -3.188755e+01 6.940393e+01 lineto -3.158235e+01 7.00042e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.286714e+01 7.162625e+01 moveto -3.158235e+01 7.00042e+01 lineto -3.188755e+01 6.940393e+01 lineto -3.316062e+01 7.104906e+01 lineto -3.286714e+01 7.162625e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.422524e+01 7.318984e+01 moveto -3.286714e+01 7.162625e+01 lineto -3.316062e+01 7.104906e+01 lineto -3.450631e+01 7.263705e+01 lineto -3.422524e+01 7.318984e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.565354e+01 7.469141e+01 moveto -3.422524e+01 7.318984e+01 lineto -3.450631e+01 7.263705e+01 lineto -3.592157e+01 7.416427e+01 lineto -3.565354e+01 7.469141e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.714879e+01 7.612753e+01 moveto -3.565354e+01 7.469141e+01 lineto -3.592157e+01 7.416427e+01 lineto -3.740316e+01 7.562725e+01 lineto -3.714879e+01 7.612753e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.870756e+01 7.749492e+01 moveto -3.714879e+01 7.612753e+01 lineto -3.740316e+01 7.562725e+01 lineto -3.894769e+01 7.702264e+01 lineto -3.870756e+01 7.749492e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.032631e+01 7.879047e+01 moveto -3.870756e+01 7.749492e+01 lineto -3.894769e+01 7.702264e+01 lineto -4.055166e+01 7.834727e+01 lineto -4.032631e+01 7.879047e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.200135e+01 8.001122e+01 moveto -4.032631e+01 7.879047e+01 lineto -4.055166e+01 7.834727e+01 lineto -4.22114e+01 7.959811e+01 lineto -4.200135e+01 8.001122e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.372885e+01 8.115439e+01 moveto -4.200135e+01 8.001122e+01 lineto -4.22114e+01 7.959811e+01 lineto -4.392312e+01 8.077231e+01 lineto -4.372885e+01 8.115439e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.550487e+01 8.221737e+01 moveto -4.372885e+01 8.115439e+01 lineto -4.392312e+01 8.077231e+01 lineto -4.568293e+01 8.186718e+01 lineto -4.550487e+01 8.221737e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.732537e+01 8.319772e+01 moveto -4.550487e+01 8.221737e+01 lineto -4.568293e+01 8.186718e+01 lineto -4.748679e+01 8.288024e+01 lineto -4.732537e+01 8.319772e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.918618e+01 8.409323e+01 moveto -4.732537e+01 8.319772e+01 lineto -4.748679e+01 8.288024e+01 lineto -4.933061e+01 8.380917e+01 lineto -4.918618e+01 8.409323e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.108306e+01 8.490184e+01 moveto -4.918618e+01 8.409323e+01 lineto -4.933061e+01 8.380917e+01 lineto -5.121017e+01 8.465185e+01 lineto -5.108306e+01 8.490184e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.30117e+01 8.56217e+01 moveto -5.108306e+01 8.490184e+01 lineto -5.121017e+01 8.465185e+01 lineto -5.312119e+01 8.540636e+01 lineto -5.30117e+01 8.56217e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.496768e+01 8.625119e+01 moveto -5.30117e+01 8.56217e+01 lineto -5.312119e+01 8.540636e+01 lineto -5.50593e+01 8.607098e+01 lineto -5.496768e+01 8.625119e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.694654e+01 8.678885e+01 moveto -5.496768e+01 8.625119e+01 lineto -5.50593e+01 8.607098e+01 lineto -5.702009e+01 8.664419e+01 lineto -5.694654e+01 8.678885e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.894377e+01 8.723348e+01 moveto -5.694654e+01 8.678885e+01 lineto -5.702009e+01 8.664419e+01 lineto -5.899909e+01 8.712469e+01 lineto -5.894377e+01 8.723348e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.095483e+01 8.758404e+01 moveto -5.894377e+01 8.723348e+01 lineto -5.899909e+01 8.712469e+01 lineto -6.099177e+01 8.751138e+01 lineto -6.095483e+01 8.758404e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.29751e+01 8.783974e+01 moveto -6.095483e+01 8.758404e+01 lineto -6.099177e+01 8.751138e+01 lineto -6.29936e+01 8.780337e+01 lineto -6.29751e+01 8.783974e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.29751e+01 8.783974e+01 lineto -6.29936e+01 8.780337e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.475864e+01 3.09237e+01 moveto -2.538225e+01 2.906325e+01 lineto -2.599168e+01 2.836316e+01 lineto -2.537766e+01 3.021259e+01 lineto -2.475864e+01 3.09237e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.422682e+01 3.281855e+01 moveto -2.475864e+01 3.09237e+01 lineto -2.537766e+01 3.021259e+01 lineto -2.485402e+01 3.209804e+01 lineto -2.422682e+01 3.281855e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.378801e+01 3.474346e+01 moveto -2.422682e+01 3.281855e+01 lineto -2.485402e+01 3.209804e+01 lineto -2.442196e+01 3.40152e+01 lineto -2.378801e+01 3.474346e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.344321e+01 3.669405e+01 moveto -2.378801e+01 3.474346e+01 lineto -2.442196e+01 3.40152e+01 lineto -2.408247e+01 3.59597e+01 lineto -2.344321e+01 3.669405e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.319321e+01 3.866587e+01 moveto -2.344321e+01 3.669405e+01 lineto -2.408247e+01 3.59597e+01 lineto -2.383631e+01 3.79271e+01 lineto -2.319321e+01 3.866587e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.303858e+01 4.065442e+01 moveto -2.319321e+01 3.866587e+01 lineto -2.383631e+01 3.79271e+01 lineto -2.368406e+01 3.991291e+01 lineto -2.303858e+01 4.065442e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.297966e+01 4.265516e+01 moveto -2.303858e+01 4.065442e+01 lineto -2.368406e+01 3.991291e+01 lineto -2.362605e+01 4.191261e+01 lineto -2.297966e+01 4.265516e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.30166e+01 4.466353e+01 moveto -2.297966e+01 4.265516e+01 lineto -2.362605e+01 4.191261e+01 lineto -2.366242e+01 4.392164e+01 lineto -2.30166e+01 4.466353e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.314931e+01 4.667495e+01 moveto -2.30166e+01 4.466353e+01 lineto -2.366242e+01 4.392164e+01 lineto -2.379309e+01 4.593541e+01 lineto -2.314931e+01 4.667495e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.337749e+01 4.868484e+01 moveto -2.314931e+01 4.667495e+01 lineto -2.379309e+01 4.593541e+01 lineto -2.401775e+01 4.794932e+01 lineto -2.337749e+01 4.868484e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.370061e+01 5.068859e+01 moveto -2.337749e+01 4.868484e+01 lineto -2.401775e+01 4.794932e+01 lineto -2.433591e+01 4.995879e+01 lineto -2.370061e+01 5.068859e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.411795e+01 5.268166e+01 moveto -2.370061e+01 5.068859e+01 lineto -2.433591e+01 4.995879e+01 lineto -2.474682e+01 5.195922e+01 lineto -2.411795e+01 5.268166e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.462854e+01 5.465948e+01 moveto -2.411795e+01 5.268166e+01 lineto -2.474682e+01 5.195922e+01 lineto -2.524956e+01 5.394607e+01 lineto -2.462854e+01 5.465948e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.523122e+01 5.661754e+01 moveto -2.462854e+01 5.465948e+01 lineto -2.524956e+01 5.394607e+01 lineto -2.584297e+01 5.591478e+01 lineto -2.523122e+01 5.661754e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.592463e+01 5.855139e+01 moveto -2.523122e+01 5.661754e+01 lineto -2.584297e+01 5.591478e+01 lineto -2.652571e+01 5.786088e+01 lineto -2.592463e+01 5.855139e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.670717e+01 6.04566e+01 moveto -2.592463e+01 5.855139e+01 lineto -2.652571e+01 5.786088e+01 lineto -2.729621e+01 5.977993e+01 lineto -2.670717e+01 6.04566e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.757706e+01 6.232884e+01 moveto -2.670717e+01 6.04566e+01 lineto -2.729621e+01 5.977993e+01 lineto -2.815272e+01 6.166753e+01 lineto -2.757706e+01 6.232884e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.853231e+01 6.416383e+01 moveto -2.757706e+01 6.232884e+01 lineto -2.815272e+01 6.166753e+01 lineto -2.909328e+01 6.35194e+01 lineto -2.853231e+01 6.416383e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.957076e+01 6.595738e+01 moveto -2.853231e+01 6.416383e+01 lineto -2.909328e+01 6.35194e+01 lineto -3.011576e+01 6.533131e+01 lineto -2.957076e+01 6.595738e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.069002e+01 6.770541e+01 moveto -2.957076e+01 6.595738e+01 lineto -3.011576e+01 6.533131e+01 lineto -3.12178e+01 6.709912e+01 lineto -3.069002e+01 6.770541e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.188755e+01 6.940393e+01 moveto -3.069002e+01 6.770541e+01 lineto -3.12178e+01 6.709912e+01 lineto -3.239691e+01 6.88188e+01 lineto -3.188755e+01 6.940393e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.316062e+01 7.104906e+01 moveto -3.188755e+01 6.940393e+01 lineto -3.239691e+01 6.88188e+01 lineto -3.365039e+01 7.048642e+01 lineto -3.316062e+01 7.104906e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.450631e+01 7.263705e+01 moveto -3.316062e+01 7.104906e+01 lineto -3.365039e+01 7.048642e+01 lineto -3.497539e+01 7.209819e+01 lineto -3.450631e+01 7.263705e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.592157e+01 7.416427e+01 moveto -3.450631e+01 7.263705e+01 lineto -3.497539e+01 7.209819e+01 lineto -3.636887e+01 7.365042e+01 lineto -3.592157e+01 7.416427e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.740316e+01 7.562725e+01 moveto -3.592157e+01 7.416427e+01 lineto -3.636887e+01 7.365042e+01 lineto -3.782767e+01 7.513958e+01 lineto -3.740316e+01 7.562725e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.894769e+01 7.702264e+01 moveto -3.740316e+01 7.562725e+01 lineto -3.782767e+01 7.513958e+01 lineto -3.934845e+01 7.656227e+01 lineto -3.894769e+01 7.702264e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.055166e+01 7.834727e+01 moveto -3.894769e+01 7.702264e+01 lineto -3.934845e+01 7.656227e+01 lineto -4.092774e+01 7.791524e+01 lineto -4.055166e+01 7.834727e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.22114e+01 7.959811e+01 moveto -4.055166e+01 7.834727e+01 lineto -4.092774e+01 7.791524e+01 lineto -4.256195e+01 7.919541e+01 lineto -4.22114e+01 7.959811e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.392312e+01 8.077231e+01 moveto -4.22114e+01 7.959811e+01 lineto -4.256195e+01 7.919541e+01 lineto -4.424734e+01 8.039985e+01 lineto -4.392312e+01 8.077231e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.568293e+01 8.186718e+01 moveto -4.392312e+01 8.077231e+01 lineto -4.424734e+01 8.039985e+01 lineto -4.598007e+01 8.152583e+01 lineto -4.568293e+01 8.186718e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.748679e+01 8.288024e+01 moveto -4.568293e+01 8.186718e+01 lineto -4.598007e+01 8.152583e+01 lineto -4.775619e+01 8.257076e+01 lineto -4.748679e+01 8.288024e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.933061e+01 8.380917e+01 moveto -4.748679e+01 8.288024e+01 lineto -4.775619e+01 8.257076e+01 lineto -4.957165e+01 8.353227e+01 lineto -4.933061e+01 8.380917e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.121017e+01 8.465185e+01 moveto -4.933061e+01 8.380917e+01 lineto -4.957165e+01 8.353227e+01 lineto -5.142229e+01 8.440817e+01 lineto -5.121017e+01 8.465185e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.312119e+01 8.540636e+01 moveto -5.121017e+01 8.465185e+01 lineto -5.142229e+01 8.440817e+01 lineto -5.330392e+01 8.519645e+01 lineto -5.312119e+01 8.540636e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.50593e+01 8.607098e+01 moveto -5.312119e+01 8.540636e+01 lineto -5.330392e+01 8.519645e+01 lineto -5.521222e+01 8.589532e+01 lineto -5.50593e+01 8.607098e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.702009e+01 8.664419e+01 moveto -5.50593e+01 8.607098e+01 lineto -5.521222e+01 8.589532e+01 lineto -5.714285e+01 8.650318e+01 lineto -5.702009e+01 8.664419e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.899909e+01 8.712469e+01 moveto -5.702009e+01 8.664419e+01 lineto -5.714285e+01 8.650318e+01 lineto -5.90914e+01 8.701865e+01 lineto -5.899909e+01 8.712469e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.099177e+01 8.751138e+01 moveto -5.899909e+01 8.712469e+01 lineto -5.90914e+01 8.701865e+01 lineto -6.105343e+01 8.744055e+01 lineto -6.099177e+01 8.751138e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.29936e+01 8.780337e+01 moveto -6.099177e+01 8.751138e+01 lineto -6.105343e+01 8.744055e+01 lineto -6.302446e+01 8.776791e+01 lineto -6.29936e+01 8.780337e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.29936e+01 8.780337e+01 lineto -6.302446e+01 8.776791e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.537766e+01 3.021259e+01 moveto -2.599168e+01 2.836316e+01 lineto -2.68416e+01 2.768549e+01 lineto -2.624096e+01 2.952426e+01 lineto -2.537766e+01 3.021259e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.485402e+01 3.209804e+01 moveto -2.537766e+01 3.021259e+01 lineto -2.624096e+01 2.952426e+01 lineto -2.572873e+01 3.140061e+01 lineto -2.485402e+01 3.209804e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.442196e+01 3.40152e+01 moveto -2.485402e+01 3.209804e+01 lineto -2.572873e+01 3.140061e+01 lineto -2.530609e+01 3.331026e+01 lineto -2.442196e+01 3.40152e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.408247e+01 3.59597e+01 moveto -2.442196e+01 3.40152e+01 lineto -2.530609e+01 3.331026e+01 lineto -2.497399e+01 3.524886e+01 lineto -2.408247e+01 3.59597e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.383631e+01 3.79271e+01 moveto -2.408247e+01 3.59597e+01 lineto -2.497399e+01 3.524886e+01 lineto -2.47332e+01 3.721198e+01 lineto -2.383631e+01 3.79271e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.368406e+01 3.991291e+01 moveto -2.383631e+01 3.79271e+01 lineto -2.47332e+01 3.721198e+01 lineto -2.458426e+01 3.919516e+01 lineto -2.368406e+01 3.991291e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.362605e+01 4.191261e+01 moveto -2.368406e+01 3.991291e+01 lineto -2.458426e+01 3.919516e+01 lineto -2.452752e+01 4.119385e+01 lineto -2.362605e+01 4.191261e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.366242e+01 4.392164e+01 moveto -2.362605e+01 4.191261e+01 lineto -2.452752e+01 4.119385e+01 lineto -2.45631e+01 4.320351e+01 lineto -2.366242e+01 4.392164e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.379309e+01 4.593541e+01 moveto -2.366242e+01 4.392164e+01 lineto -2.45631e+01 4.320351e+01 lineto -2.469092e+01 4.521954e+01 lineto -2.379309e+01 4.593541e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.401775e+01 4.794932e+01 moveto -2.379309e+01 4.593541e+01 lineto -2.469092e+01 4.521954e+01 lineto -2.491069e+01 4.723736e+01 lineto -2.401775e+01 4.794932e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.433591e+01 4.995879e+01 moveto -2.401775e+01 4.794932e+01 lineto -2.491069e+01 4.723736e+01 lineto -2.522191e+01 4.925235e+01 lineto -2.433591e+01 4.995879e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.474682e+01 5.195922e+01 moveto -2.433591e+01 4.995879e+01 lineto -2.522191e+01 4.925235e+01 lineto -2.562387e+01 5.125993e+01 lineto -2.474682e+01 5.195922e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.524956e+01 5.394607e+01 moveto -2.474682e+01 5.195922e+01 lineto -2.562387e+01 5.125993e+01 lineto -2.611566e+01 5.325551e+01 lineto -2.524956e+01 5.394607e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.584297e+01 5.591478e+01 moveto -2.524956e+01 5.394607e+01 lineto -2.611566e+01 5.325551e+01 lineto -2.669614e+01 5.523453e+01 lineto -2.584297e+01 5.591478e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.652571e+01 5.786088e+01 moveto -2.584297e+01 5.591478e+01 lineto -2.669614e+01 5.523453e+01 lineto -2.7364e+01 5.719249e+01 lineto -2.652571e+01 5.786088e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.729621e+01 5.977993e+01 moveto -2.652571e+01 5.786088e+01 lineto -2.7364e+01 5.719249e+01 lineto -2.811771e+01 5.912492e+01 lineto -2.729621e+01 5.977993e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.815272e+01 6.166753e+01 moveto -2.729621e+01 5.977993e+01 lineto -2.811771e+01 5.912492e+01 lineto -2.895556e+01 6.102741e+01 lineto -2.815272e+01 6.166753e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.909328e+01 6.35194e+01 moveto -2.815272e+01 6.166753e+01 lineto -2.895556e+01 6.102741e+01 lineto -2.987563e+01 6.289562e+01 lineto -2.909328e+01 6.35194e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.011576e+01 6.533131e+01 moveto -2.909328e+01 6.35194e+01 lineto -2.987563e+01 6.289562e+01 lineto -3.087582e+01 6.472529e+01 lineto -3.011576e+01 6.533131e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.12178e+01 6.709912e+01 moveto -3.011576e+01 6.533131e+01 lineto -3.087582e+01 6.472529e+01 lineto -3.195386e+01 6.651224e+01 lineto -3.12178e+01 6.709912e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.239691e+01 6.88188e+01 moveto -3.12178e+01 6.709912e+01 lineto -3.195386e+01 6.651224e+01 lineto -3.310728e+01 6.82524e+01 lineto -3.239691e+01 6.88188e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.365039e+01 7.048642e+01 moveto -3.239691e+01 6.88188e+01 lineto -3.310728e+01 6.82524e+01 lineto -3.433345e+01 6.99418e+01 lineto -3.365039e+01 7.048642e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.497539e+01 7.209819e+01 moveto -3.365039e+01 7.048642e+01 lineto -3.433345e+01 6.99418e+01 lineto -3.562957e+01 7.157659e+01 lineto -3.497539e+01 7.209819e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.636887e+01 7.365042e+01 moveto -3.497539e+01 7.209819e+01 lineto -3.562957e+01 7.157659e+01 lineto -3.69927e+01 7.315303e+01 lineto -3.636887e+01 7.365042e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.782767e+01 7.513958e+01 moveto -3.636887e+01 7.365042e+01 lineto -3.69927e+01 7.315303e+01 lineto -3.841971e+01 7.466753e+01 lineto -3.782767e+01 7.513958e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.934845e+01 7.656227e+01 moveto -3.782767e+01 7.513958e+01 lineto -3.841971e+01 7.466753e+01 lineto -3.990735e+01 7.611664e+01 lineto -3.934845e+01 7.656227e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.092774e+01 7.791524e+01 moveto -3.934845e+01 7.656227e+01 lineto -3.990735e+01 7.611664e+01 lineto -4.145224e+01 7.749705e+01 lineto -4.092774e+01 7.791524e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.256195e+01 7.919541e+01 moveto -4.092774e+01 7.791524e+01 lineto -4.145224e+01 7.749705e+01 lineto -4.305084e+01 7.880561e+01 lineto -4.256195e+01 7.919541e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.424734e+01 8.039985e+01 moveto -4.256195e+01 7.919541e+01 lineto -4.305084e+01 7.880561e+01 lineto -4.469951e+01 8.003933e+01 lineto -4.424734e+01 8.039985e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.598007e+01 8.152583e+01 moveto -4.424734e+01 8.039985e+01 lineto -4.469951e+01 8.003933e+01 lineto -4.639449e+01 8.119541e+01 lineto -4.598007e+01 8.152583e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.775619e+01 8.257076e+01 moveto -4.598007e+01 8.152583e+01 lineto -4.639449e+01 8.119541e+01 lineto -4.813191e+01 8.22712e+01 lineto -4.775619e+01 8.257076e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.957165e+01 8.353227e+01 moveto -4.775619e+01 8.257076e+01 lineto -4.813191e+01 8.22712e+01 lineto -4.99078e+01 8.326425e+01 lineto -4.957165e+01 8.353227e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.142229e+01 8.440817e+01 moveto -4.957165e+01 8.353227e+01 lineto -4.99078e+01 8.326425e+01 lineto -5.171813e+01 8.417229e+01 lineto -5.142229e+01 8.440817e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.330392e+01 8.519645e+01 moveto -5.142229e+01 8.440817e+01 lineto -5.171813e+01 8.417229e+01 lineto -5.355875e+01 8.499326e+01 lineto -5.330392e+01 8.519645e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.521222e+01 8.589532e+01 moveto -5.330392e+01 8.519645e+01 lineto -5.355875e+01 8.499326e+01 lineto -5.542548e+01 8.572528e+01 lineto -5.521222e+01 8.589532e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.714285e+01 8.650318e+01 moveto -5.521222e+01 8.589532e+01 lineto -5.542548e+01 8.572528e+01 lineto -5.731404e+01 8.636668e+01 lineto -5.714285e+01 8.650318e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.90914e+01 8.701865e+01 moveto -5.714285e+01 8.650318e+01 lineto -5.731404e+01 8.636668e+01 lineto -5.922014e+01 8.6916e+01 lineto -5.90914e+01 8.701865e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.105343e+01 8.744055e+01 moveto -5.90914e+01 8.701865e+01 lineto -5.922014e+01 8.6916e+01 lineto -6.113942e+01 8.737198e+01 lineto -6.105343e+01 8.744055e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.302446e+01 8.776791e+01 moveto -6.105343e+01 8.744055e+01 lineto -6.113942e+01 8.737198e+01 lineto -6.30675e+01 8.773359e+01 lineto -6.302446e+01 8.776791e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.302446e+01 8.776791e+01 lineto -6.30675e+01 8.773359e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.624096e+01 2.952426e+01 moveto -2.68416e+01 2.768549e+01 lineto -2.792679e+01 2.703443e+01 lineto -2.734323e+01 2.886294e+01 lineto -2.624096e+01 2.952426e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.572873e+01 3.140061e+01 moveto -2.624096e+01 2.952426e+01 lineto -2.734323e+01 2.886294e+01 lineto -2.684557e+01 3.073055e+01 lineto -2.572873e+01 3.140061e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.530609e+01 3.331026e+01 moveto -2.572873e+01 3.140061e+01 lineto -2.684557e+01 3.073055e+01 lineto -2.643494e+01 3.263299e+01 lineto -2.530609e+01 3.331026e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.497399e+01 3.524886e+01 moveto -2.530609e+01 3.331026e+01 lineto -2.643494e+01 3.263299e+01 lineto -2.611229e+01 3.456593e+01 lineto -2.497399e+01 3.524886e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.47332e+01 3.721198e+01 moveto -2.497399e+01 3.524886e+01 lineto -2.611229e+01 3.456593e+01 lineto -2.587835e+01 3.652494e+01 lineto -2.47332e+01 3.721198e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.458426e+01 3.919516e+01 moveto -2.47332e+01 3.721198e+01 lineto -2.587835e+01 3.652494e+01 lineto -2.573364e+01 3.850557e+01 lineto -2.458426e+01 3.919516e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.452752e+01 4.119385e+01 moveto -2.458426e+01 3.919516e+01 lineto -2.573364e+01 3.850557e+01 lineto -2.567851e+01 4.05033e+01 lineto -2.452752e+01 4.119385e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.45631e+01 4.320351e+01 moveto -2.452752e+01 4.119385e+01 lineto -2.567851e+01 4.05033e+01 lineto -2.571308e+01 4.251356e+01 lineto -2.45631e+01 4.320351e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.469092e+01 4.521954e+01 moveto -2.45631e+01 4.320351e+01 lineto -2.571308e+01 4.251356e+01 lineto -2.583727e+01 4.453178e+01 lineto -2.469092e+01 4.521954e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.491069e+01 4.723736e+01 moveto -2.469092e+01 4.521954e+01 lineto -2.583727e+01 4.453178e+01 lineto -2.605079e+01 4.655335e+01 lineto -2.491069e+01 4.723736e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.522191e+01 4.925235e+01 moveto -2.491069e+01 4.723736e+01 lineto -2.605079e+01 4.655335e+01 lineto -2.635316e+01 4.857365e+01 lineto -2.522191e+01 4.925235e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.562387e+01 5.125993e+01 moveto -2.522191e+01 4.925235e+01 lineto -2.635316e+01 4.857365e+01 lineto -2.674369e+01 5.058808e+01 lineto -2.562387e+01 5.125993e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.611566e+01 5.325551e+01 moveto -2.562387e+01 5.125993e+01 lineto -2.674369e+01 5.058808e+01 lineto -2.722149e+01 5.259205e+01 lineto -2.611566e+01 5.325551e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.669614e+01 5.523453e+01 moveto -2.611566e+01 5.325551e+01 lineto -2.722149e+01 5.259205e+01 lineto -2.778546e+01 5.458098e+01 lineto -2.669614e+01 5.523453e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.7364e+01 5.719249e+01 moveto -2.669614e+01 5.523453e+01 lineto -2.778546e+01 5.458098e+01 lineto -2.843433e+01 5.655034e+01 lineto -2.7364e+01 5.719249e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.811771e+01 5.912492e+01 moveto -2.7364e+01 5.719249e+01 lineto -2.843433e+01 5.655034e+01 lineto -2.916661e+01 5.849563e+01 lineto -2.811771e+01 5.912492e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.895556e+01 6.102741e+01 moveto -2.811771e+01 5.912492e+01 lineto -2.916661e+01 5.849563e+01 lineto -2.998063e+01 6.041241e+01 lineto -2.895556e+01 6.102741e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.987563e+01 6.289562e+01 moveto -2.895556e+01 6.102741e+01 lineto -2.998063e+01 6.041241e+01 lineto -3.087453e+01 6.229632e+01 lineto -2.987563e+01 6.289562e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.087582e+01 6.472529e+01 moveto -2.987563e+01 6.289562e+01 lineto -3.087453e+01 6.229632e+01 lineto -3.184628e+01 6.414305e+01 lineto -3.087582e+01 6.472529e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.195386e+01 6.651224e+01 moveto -3.087582e+01 6.472529e+01 lineto -3.184628e+01 6.414305e+01 lineto -3.289366e+01 6.59484e+01 lineto -3.195386e+01 6.651224e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.310728e+01 6.82524e+01 moveto -3.195386e+01 6.651224e+01 lineto -3.289366e+01 6.59484e+01 lineto -3.401427e+01 6.770824e+01 lineto -3.310728e+01 6.82524e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.433345e+01 6.99418e+01 moveto -3.310728e+01 6.82524e+01 lineto -3.401427e+01 6.770824e+01 lineto -3.520557e+01 6.941856e+01 lineto -3.433345e+01 6.99418e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.562957e+01 7.157659e+01 moveto -3.433345e+01 6.99418e+01 lineto -3.520557e+01 6.941856e+01 lineto -3.646484e+01 7.107546e+01 lineto -3.562957e+01 7.157659e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.69927e+01 7.315303e+01 moveto -3.562957e+01 7.157659e+01 lineto -3.646484e+01 7.107546e+01 lineto -3.77892e+01 7.267516e+01 lineto -3.69927e+01 7.315303e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.841971e+01 7.466753e+01 moveto -3.69927e+01 7.315303e+01 lineto -3.77892e+01 7.267516e+01 lineto -3.917562e+01 7.421401e+01 lineto -3.841971e+01 7.466753e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.990735e+01 7.611664e+01 moveto -3.841971e+01 7.466753e+01 lineto -3.917562e+01 7.421401e+01 lineto -4.062096e+01 7.56885e+01 lineto -3.990735e+01 7.611664e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.145224e+01 7.749705e+01 moveto -3.990735e+01 7.611664e+01 lineto -4.062096e+01 7.56885e+01 lineto -4.212191e+01 7.709527e+01 lineto -4.145224e+01 7.749705e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.305084e+01 7.880561e+01 moveto -4.145224e+01 7.749705e+01 lineto -4.212191e+01 7.709527e+01 lineto -4.367505e+01 7.843111e+01 lineto -4.305084e+01 7.880561e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.469951e+01 8.003933e+01 moveto -4.305084e+01 7.880561e+01 lineto -4.367505e+01 7.843111e+01 lineto -4.527683e+01 7.969296e+01 lineto -4.469951e+01 8.003933e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.639449e+01 8.119541e+01 moveto -4.469951e+01 8.003933e+01 lineto -4.527683e+01 7.969296e+01 lineto -4.692361e+01 8.087796e+01 lineto -4.639449e+01 8.119541e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.813191e+01 8.22712e+01 moveto -4.639449e+01 8.119541e+01 lineto -4.692361e+01 8.087796e+01 lineto -4.861162e+01 8.198339e+01 lineto -4.813191e+01 8.22712e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.99078e+01 8.326425e+01 moveto -4.813191e+01 8.22712e+01 lineto -4.861162e+01 8.198339e+01 lineto -5.033701e+01 8.300674e+01 lineto -4.99078e+01 8.326425e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.171813e+01 8.417229e+01 moveto -4.99078e+01 8.326425e+01 lineto -5.033701e+01 8.300674e+01 lineto -5.209585e+01 8.394567e+01 lineto -5.171813e+01 8.417229e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.355875e+01 8.499326e+01 moveto -5.171813e+01 8.417229e+01 lineto -5.209585e+01 8.394567e+01 lineto -5.388413e+01 8.479805e+01 lineto -5.355875e+01 8.499326e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.542548e+01 8.572528e+01 moveto -5.355875e+01 8.499326e+01 lineto -5.388413e+01 8.479805e+01 lineto -5.569777e+01 8.556192e+01 lineto -5.542548e+01 8.572528e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.731404e+01 8.636668e+01 moveto -5.542548e+01 8.572528e+01 lineto -5.569777e+01 8.556192e+01 lineto -5.753262e+01 8.623554e+01 lineto -5.731404e+01 8.636668e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.922014e+01 8.6916e+01 moveto -5.731404e+01 8.636668e+01 lineto -5.753262e+01 8.623554e+01 lineto -5.938451e+01 8.681738e+01 lineto -5.922014e+01 8.6916e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.113942e+01 8.737198e+01 moveto -5.922014e+01 8.6916e+01 lineto -5.938451e+01 8.681738e+01 lineto -6.124921e+01 8.730611e+01 lineto -6.113942e+01 8.737198e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.30675e+01 8.773359e+01 moveto -6.113942e+01 8.737198e+01 lineto -6.124921e+01 8.730611e+01 lineto -6.312246e+01 8.770062e+01 lineto -6.30675e+01 8.773359e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.30675e+01 8.773359e+01 lineto -6.312246e+01 8.770062e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.734323e+01 2.886294e+01 moveto -2.792679e+01 2.703443e+01 lineto -2.924054e+01 2.641397e+01 lineto -2.867766e+01 2.823272e+01 lineto -2.734323e+01 2.886294e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.684557e+01 3.073055e+01 moveto -2.734323e+01 2.886294e+01 lineto -2.867766e+01 2.823272e+01 lineto -2.819764e+01 3.009201e+01 lineto -2.684557e+01 3.073055e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.643494e+01 3.263299e+01 moveto -2.684557e+01 3.073055e+01 lineto -2.819764e+01 3.009201e+01 lineto -2.780156e+01 3.198757e+01 lineto -2.643494e+01 3.263299e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.611229e+01 3.456593e+01 moveto -2.643494e+01 3.263299e+01 lineto -2.780156e+01 3.198757e+01 lineto -2.749034e+01 3.391511e+01 lineto -2.611229e+01 3.456593e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.587835e+01 3.652494e+01 moveto -2.611229e+01 3.456593e+01 lineto -2.749034e+01 3.391511e+01 lineto -2.726469e+01 3.587021e+01 lineto -2.587835e+01 3.652494e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.573364e+01 3.850557e+01 moveto -2.587835e+01 3.652494e+01 lineto -2.726469e+01 3.587021e+01 lineto -2.712511e+01 3.784842e+01 lineto -2.573364e+01 3.850557e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.567851e+01 4.05033e+01 moveto -2.573364e+01 3.850557e+01 lineto -2.712511e+01 3.784842e+01 lineto -2.707194e+01 3.984522e+01 lineto -2.567851e+01 4.05033e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.571308e+01 4.251356e+01 moveto -2.567851e+01 4.05033e+01 lineto -2.707194e+01 3.984522e+01 lineto -2.710528e+01 4.185606e+01 lineto -2.571308e+01 4.251356e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.583727e+01 4.453178e+01 moveto -2.571308e+01 4.251356e+01 lineto -2.710528e+01 4.185606e+01 lineto -2.722507e+01 4.387636e+01 lineto -2.583727e+01 4.453178e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.605079e+01 4.655335e+01 moveto -2.583727e+01 4.453178e+01 lineto -2.722507e+01 4.387636e+01 lineto -2.743102e+01 4.59015e+01 lineto -2.605079e+01 4.655335e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.635316e+01 4.857365e+01 moveto -2.605079e+01 4.655335e+01 lineto -2.743102e+01 4.59015e+01 lineto -2.772268e+01 4.792686e+01 lineto -2.635316e+01 4.857365e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.674369e+01 5.058808e+01 moveto -2.635316e+01 4.857365e+01 lineto -2.772268e+01 4.792686e+01 lineto -2.809937e+01 4.994783e+01 lineto -2.674369e+01 5.058808e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.722149e+01 5.259205e+01 moveto -2.674369e+01 5.058808e+01 lineto -2.809937e+01 4.994783e+01 lineto -2.856023e+01 5.19598e+01 lineto -2.722149e+01 5.259205e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.778546e+01 5.458098e+01 moveto -2.722149e+01 5.259205e+01 lineto -2.856023e+01 5.19598e+01 lineto -2.910422e+01 5.395816e+01 lineto -2.778546e+01 5.458098e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.843433e+01 5.655034e+01 moveto -2.778546e+01 5.458098e+01 lineto -2.910422e+01 5.395816e+01 lineto -2.97301e+01 5.593838e+01 lineto -2.843433e+01 5.655034e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.916661e+01 5.849563e+01 moveto -2.843433e+01 5.655034e+01 lineto -2.97301e+01 5.593838e+01 lineto -3.043643e+01 5.789592e+01 lineto -2.916661e+01 5.849563e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.998063e+01 6.041241e+01 moveto -2.916661e+01 5.849563e+01 lineto -3.043643e+01 5.789592e+01 lineto -3.12216e+01 5.982633e+01 lineto -2.998063e+01 6.041241e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.087453e+01 6.229632e+01 moveto -2.998063e+01 6.041241e+01 lineto -3.12216e+01 5.982633e+01 lineto -3.208383e+01 6.17252e+01 lineto -3.087453e+01 6.229632e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.184628e+01 6.414305e+01 moveto -3.087453e+01 6.229632e+01 lineto -3.208383e+01 6.17252e+01 lineto -3.302114e+01 6.35882e+01 lineto -3.184628e+01 6.414305e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.289366e+01 6.59484e+01 moveto -3.184628e+01 6.414305e+01 lineto -3.302114e+01 6.35882e+01 lineto -3.40314e+01 6.541107e+01 lineto -3.289366e+01 6.59484e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.401427e+01 6.770824e+01 moveto -3.289366e+01 6.59484e+01 lineto -3.40314e+01 6.541107e+01 lineto -3.511231e+01 6.718967e+01 lineto -3.401427e+01 6.770824e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.520557e+01 6.941856e+01 moveto -3.401427e+01 6.770824e+01 lineto -3.511231e+01 6.718967e+01 lineto -3.626139e+01 6.891993e+01 lineto -3.520557e+01 6.941856e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.646484e+01 7.107546e+01 moveto -3.520557e+01 6.941856e+01 lineto -3.626139e+01 6.891993e+01 lineto -3.747603e+01 7.05979e+01 lineto -3.646484e+01 7.107546e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.77892e+01 7.267516e+01 moveto -3.646484e+01 7.107546e+01 lineto -3.747603e+01 7.05979e+01 lineto -3.875346e+01 7.221977e+01 lineto -3.77892e+01 7.267516e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.917562e+01 7.421401e+01 moveto -3.77892e+01 7.267516e+01 lineto -3.875346e+01 7.221977e+01 lineto -4.009076e+01 7.378182e+01 lineto -3.917562e+01 7.421401e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.062096e+01 7.56885e+01 moveto -3.917562e+01 7.421401e+01 lineto -4.009076e+01 7.378182e+01 lineto -4.148488e+01 7.52805e+01 lineto -4.062096e+01 7.56885e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.212191e+01 7.709527e+01 moveto -4.062096e+01 7.56885e+01 lineto -4.148488e+01 7.52805e+01 lineto -4.293264e+01 7.671239e+01 lineto -4.212191e+01 7.709527e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.367505e+01 7.843111e+01 moveto -4.212191e+01 7.709527e+01 lineto -4.293264e+01 7.671239e+01 lineto -4.443074e+01 7.807421e+01 lineto -4.367505e+01 7.843111e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.527683e+01 7.969296e+01 moveto -4.367505e+01 7.843111e+01 lineto -4.443074e+01 7.807421e+01 lineto -4.597576e+01 7.936287e+01 lineto -4.527683e+01 7.969296e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.692361e+01 8.087796e+01 moveto -4.527683e+01 7.969296e+01 lineto -4.597576e+01 7.936287e+01 lineto -4.756418e+01 8.057543e+01 lineto -4.692361e+01 8.087796e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.861162e+01 8.198339e+01 moveto -4.692361e+01 8.087796e+01 lineto -4.756418e+01 8.057543e+01 lineto -4.919237e+01 8.170912e+01 lineto -4.861162e+01 8.198339e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.033701e+01 8.300674e+01 moveto -4.861162e+01 8.198339e+01 lineto -4.919237e+01 8.170912e+01 lineto -5.085662e+01 8.276134e+01 lineto -5.033701e+01 8.300674e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.209585e+01 8.394567e+01 moveto -5.033701e+01 8.300674e+01 lineto -5.085662e+01 8.276134e+01 lineto -5.255313e+01 8.372971e+01 lineto -5.209585e+01 8.394567e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.388413e+01 8.479805e+01 moveto -5.209585e+01 8.394567e+01 lineto -5.255313e+01 8.372971e+01 lineto -5.427804e+01 8.461201e+01 lineto -5.388413e+01 8.479805e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.569777e+01 8.556192e+01 moveto -5.388413e+01 8.479805e+01 lineto -5.427804e+01 8.461201e+01 lineto -5.602741e+01 8.540624e+01 lineto -5.569777e+01 8.556192e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.753262e+01 8.623554e+01 moveto -5.569777e+01 8.556192e+01 lineto -5.602741e+01 8.540624e+01 lineto -5.779724e+01 8.611057e+01 lineto -5.753262e+01 8.623554e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.938451e+01 8.681738e+01 moveto -5.753262e+01 8.623554e+01 lineto -5.779724e+01 8.611057e+01 lineto -5.95835e+01 8.67234e+01 lineto -5.938451e+01 8.681738e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.124921e+01 8.730611e+01 moveto -5.938451e+01 8.681738e+01 lineto -5.95835e+01 8.67234e+01 lineto -6.138212e+01 8.724334e+01 lineto -6.124921e+01 8.730611e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.312246e+01 8.770062e+01 moveto -6.124921e+01 8.730611e+01 lineto -6.138212e+01 8.724334e+01 lineto -6.3189e+01 8.76692e+01 lineto -6.312246e+01 8.770062e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.312246e+01 8.770062e+01 lineto -6.3189e+01 8.76692e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.867766e+01 2.823272e+01 moveto -2.924054e+01 2.641397e+01 lineto -3.077477e+01 2.582796e+01 lineto -3.023604e+01 2.763749e+01 lineto -2.867766e+01 2.823272e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.819764e+01 3.009201e+01 moveto -2.867766e+01 2.823272e+01 lineto -3.023604e+01 2.763749e+01 lineto -2.97766e+01 2.94889e+01 lineto -2.819764e+01 3.009201e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.780156e+01 3.198757e+01 moveto -2.819764e+01 3.009201e+01 lineto -2.97766e+01 2.94889e+01 lineto -2.939752e+01 3.137798e+01 lineto -2.780156e+01 3.198757e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.749034e+01 3.391511e+01 moveto -2.780156e+01 3.198757e+01 lineto -2.939752e+01 3.137798e+01 lineto -2.909966e+01 3.330041e+01 lineto -2.749034e+01 3.391511e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.726469e+01 3.587021e+01 moveto -2.749034e+01 3.391511e+01 lineto -2.909966e+01 3.330041e+01 lineto -2.888368e+01 3.525181e+01 lineto -2.726469e+01 3.587021e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.712511e+01 3.784842e+01 moveto -2.726469e+01 3.587021e+01 lineto -2.888368e+01 3.525181e+01 lineto -2.87501e+01 3.722774e+01 lineto -2.712511e+01 3.784842e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.707194e+01 3.984522e+01 moveto -2.712511e+01 3.784842e+01 lineto -2.87501e+01 3.722774e+01 lineto -2.86992e+01 3.922367e+01 lineto -2.707194e+01 3.984522e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.710528e+01 4.185606e+01 moveto -2.707194e+01 3.984522e+01 lineto -2.86992e+01 3.922367e+01 lineto -2.873111e+01 4.123506e+01 lineto -2.710528e+01 4.185606e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.722507e+01 4.387636e+01 moveto -2.710528e+01 4.185606e+01 lineto -2.873111e+01 4.123506e+01 lineto -2.884576e+01 4.325732e+01 lineto -2.722507e+01 4.387636e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.743102e+01 4.59015e+01 moveto -2.722507e+01 4.387636e+01 lineto -2.884576e+01 4.325732e+01 lineto -2.904288e+01 4.528583e+01 lineto -2.743102e+01 4.59015e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.772268e+01 4.792686e+01 moveto -2.743102e+01 4.59015e+01 lineto -2.904288e+01 4.528583e+01 lineto -2.932202e+01 4.731597e+01 lineto -2.772268e+01 4.792686e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.809937e+01 4.994783e+01 moveto -2.772268e+01 4.792686e+01 lineto -2.932202e+01 4.731597e+01 lineto -2.968255e+01 4.934312e+01 lineto -2.809937e+01 4.994783e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.856023e+01 5.19598e+01 moveto -2.809937e+01 4.994783e+01 lineto -2.968255e+01 4.934312e+01 lineto -3.012365e+01 5.136263e+01 lineto -2.856023e+01 5.19598e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.910422e+01 5.395816e+01 moveto -2.856023e+01 5.19598e+01 lineto -3.012365e+01 5.136263e+01 lineto -3.06443e+01 5.336992e+01 lineto -2.910422e+01 5.395816e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.97301e+01 5.593838e+01 moveto -2.910422e+01 5.395816e+01 lineto -3.06443e+01 5.336992e+01 lineto -3.124332e+01 5.536039e+01 lineto -2.97301e+01 5.593838e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.043643e+01 5.789592e+01 moveto -2.97301e+01 5.593838e+01 lineto -3.124332e+01 5.536039e+01 lineto -3.191934e+01 5.732951e+01 lineto -3.043643e+01 5.789592e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.12216e+01 5.982633e+01 moveto -3.043643e+01 5.789592e+01 lineto -3.191934e+01 5.732951e+01 lineto -3.267083e+01 5.927278e+01 lineto -3.12216e+01 5.982633e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.208383e+01 6.17252e+01 moveto -3.12216e+01 5.982633e+01 lineto -3.267083e+01 5.927278e+01 lineto -3.349606e+01 6.118578e+01 lineto -3.208383e+01 6.17252e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.302114e+01 6.35882e+01 moveto -3.208383e+01 6.17252e+01 lineto -3.349606e+01 6.118578e+01 lineto -3.439316e+01 6.306414e+01 lineto -3.302114e+01 6.35882e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.40314e+01 6.541107e+01 moveto -3.302114e+01 6.35882e+01 lineto -3.439316e+01 6.306414e+01 lineto -3.536008e+01 6.490357e+01 lineto -3.40314e+01 6.541107e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.511231e+01 6.718967e+01 moveto -3.40314e+01 6.541107e+01 lineto -3.536008e+01 6.490357e+01 lineto -3.639461e+01 6.669988e+01 lineto -3.511231e+01 6.718967e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.626139e+01 6.891993e+01 moveto -3.511231e+01 6.718967e+01 lineto -3.639461e+01 6.669988e+01 lineto -3.749439e+01 6.844897e+01 lineto -3.626139e+01 6.891993e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.747603e+01 7.05979e+01 moveto -3.626139e+01 6.891993e+01 lineto -3.749439e+01 6.844897e+01 lineto -3.865692e+01 7.014685e+01 lineto -3.747603e+01 7.05979e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.875346e+01 7.221977e+01 moveto -3.747603e+01 7.05979e+01 lineto -3.865692e+01 7.014685e+01 lineto -3.987954e+01 7.178965e+01 lineto -3.875346e+01 7.221977e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.009076e+01 7.378182e+01 moveto -3.875346e+01 7.221977e+01 lineto -3.987954e+01 7.178965e+01 lineto -4.115946e+01 7.337362e+01 lineto -4.009076e+01 7.378182e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.148488e+01 7.52805e+01 moveto -4.009076e+01 7.378182e+01 lineto -4.115946e+01 7.337362e+01 lineto -4.249377e+01 7.489514e+01 lineto -4.148488e+01 7.52805e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.293264e+01 7.671239e+01 moveto -4.148488e+01 7.52805e+01 lineto -4.249377e+01 7.489514e+01 lineto -4.387941e+01 7.635075e+01 lineto -4.293264e+01 7.671239e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.443074e+01 7.807421e+01 moveto -4.293264e+01 7.671239e+01 lineto -4.387941e+01 7.635075e+01 lineto -4.531324e+01 7.773713e+01 lineto -4.443074e+01 7.807421e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.597576e+01 7.936287e+01 moveto -4.443074e+01 7.807421e+01 lineto -4.531324e+01 7.773713e+01 lineto -4.679197e+01 7.905111e+01 lineto -4.597576e+01 7.936287e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.756418e+01 8.057543e+01 moveto -4.597576e+01 7.936287e+01 lineto -4.679197e+01 7.905111e+01 lineto -4.831224e+01 8.02897e+01 lineto -4.756418e+01 8.057543e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.919237e+01 8.170912e+01 moveto -4.756418e+01 8.057543e+01 lineto -4.831224e+01 8.02897e+01 lineto -4.987058e+01 8.145007e+01 lineto -4.919237e+01 8.170912e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.085662e+01 8.276134e+01 moveto -4.919237e+01 8.170912e+01 lineto -4.987058e+01 8.145007e+01 lineto -5.146343e+01 8.252957e+01 lineto -5.085662e+01 8.276134e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.255313e+01 8.372971e+01 moveto -5.085662e+01 8.276134e+01 lineto -5.146343e+01 8.252957e+01 lineto -5.308715e+01 8.352574e+01 lineto -5.255313e+01 8.372971e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.427804e+01 8.461201e+01 moveto -5.255313e+01 8.372971e+01 lineto -5.308715e+01 8.352574e+01 lineto -5.473806e+01 8.443631e+01 lineto -5.427804e+01 8.461201e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.602741e+01 8.540624e+01 moveto -5.427804e+01 8.461201e+01 lineto -5.473806e+01 8.443631e+01 lineto -5.641237e+01 8.52592e+01 lineto -5.602741e+01 8.540624e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.779724e+01 8.611057e+01 moveto -5.602741e+01 8.540624e+01 lineto -5.641237e+01 8.52592e+01 lineto -5.810627e+01 8.599253e+01 lineto -5.779724e+01 8.611057e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.95835e+01 8.67234e+01 moveto -5.779724e+01 8.611057e+01 lineto -5.810627e+01 8.599253e+01 lineto -5.981589e+01 8.663464e+01 lineto -5.95835e+01 8.67234e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.138212e+01 8.724334e+01 moveto -5.95835e+01 8.67234e+01 lineto -5.981589e+01 8.663464e+01 lineto -6.153735e+01 8.718405e+01 lineto -6.138212e+01 8.724334e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.3189e+01 8.76692e+01 moveto -6.138212e+01 8.724334e+01 lineto -6.153735e+01 8.718405e+01 lineto -6.32667e+01 8.763952e+01 lineto -6.3189e+01 8.76692e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.3189e+01 8.76692e+01 lineto -6.32667e+01 8.763952e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.023604e+01 2.763749e+01 moveto -3.077477e+01 2.582796e+01 lineto -3.252e+01 2.528e+01 lineto -3.200874e+01 2.70809e+01 lineto -3.023604e+01 2.763749e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.97766e+01 2.94889e+01 moveto -3.023604e+01 2.763749e+01 lineto -3.200874e+01 2.70809e+01 lineto -3.157274e+01 2.892496e+01 lineto -2.97766e+01 2.94889e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.939752e+01 3.137798e+01 moveto -2.97766e+01 2.94889e+01 lineto -3.157274e+01 2.892496e+01 lineto -3.121299e+01 3.080797e+01 lineto -2.939752e+01 3.137798e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.909966e+01 3.330041e+01 moveto -2.939752e+01 3.137798e+01 lineto -3.121299e+01 3.080797e+01 lineto -3.093031e+01 3.272563e+01 lineto -2.909966e+01 3.330041e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.888368e+01 3.525181e+01 moveto -2.909966e+01 3.330041e+01 lineto -3.093031e+01 3.272563e+01 lineto -3.072535e+01 3.467358e+01 lineto -2.888368e+01 3.525181e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.87501e+01 3.722774e+01 moveto -2.888368e+01 3.525181e+01 lineto -3.072535e+01 3.467358e+01 lineto -3.059857e+01 3.664736e+01 lineto -2.87501e+01 3.722774e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.86992e+01 3.922367e+01 moveto -2.87501e+01 3.722774e+01 lineto -3.059857e+01 3.664736e+01 lineto -3.055027e+01 3.864248e+01 lineto -2.86992e+01 3.922367e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.873111e+01 4.123506e+01 moveto -2.86992e+01 3.922367e+01 lineto -3.055027e+01 3.864248e+01 lineto -3.058056e+01 4.065438e+01 lineto -2.873111e+01 4.123506e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.884576e+01 4.325732e+01 moveto -2.873111e+01 4.123506e+01 lineto -3.058056e+01 4.065438e+01 lineto -3.068936e+01 4.267847e+01 lineto -2.884576e+01 4.325732e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.904288e+01 4.528583e+01 moveto -2.884576e+01 4.325732e+01 lineto -3.068936e+01 4.267847e+01 lineto -3.087643e+01 4.471014e+01 lineto -2.904288e+01 4.528583e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.932202e+01 4.731597e+01 moveto -2.904288e+01 4.528583e+01 lineto -3.087643e+01 4.471014e+01 lineto -3.114134e+01 4.674475e+01 lineto -2.932202e+01 4.731597e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -2.968255e+01 4.934312e+01 moveto -2.932202e+01 4.731597e+01 lineto -3.114134e+01 4.674475e+01 lineto -3.148348e+01 4.877767e+01 lineto -2.968255e+01 4.934312e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.012365e+01 5.136263e+01 moveto -2.968255e+01 4.934312e+01 lineto -3.148348e+01 4.877767e+01 lineto -3.190208e+01 5.080425e+01 lineto -3.012365e+01 5.136263e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.06443e+01 5.336992e+01 moveto -3.012365e+01 5.136263e+01 lineto -3.190208e+01 5.080425e+01 lineto -3.239618e+01 5.281987e+01 lineto -3.06443e+01 5.336992e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.124332e+01 5.536039e+01 moveto -3.06443e+01 5.336992e+01 lineto -3.239618e+01 5.281987e+01 lineto -3.296466e+01 5.481993e+01 lineto -3.124332e+01 5.536039e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.191934e+01 5.732951e+01 moveto -3.124332e+01 5.536039e+01 lineto -3.296466e+01 5.481993e+01 lineto -3.360621e+01 5.679987e+01 lineto -3.191934e+01 5.732951e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.267083e+01 5.927278e+01 moveto -3.191934e+01 5.732951e+01 lineto -3.360621e+01 5.679987e+01 lineto -3.431938e+01 5.875518e+01 lineto -3.267083e+01 5.927278e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.349606e+01 6.118578e+01 moveto -3.267083e+01 5.927278e+01 lineto -3.431938e+01 5.875518e+01 lineto -3.510253e+01 6.068139e+01 lineto -3.349606e+01 6.118578e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.439316e+01 6.306414e+01 moveto -3.349606e+01 6.118578e+01 lineto -3.510253e+01 6.068139e+01 lineto -3.595388e+01 6.257411e+01 lineto -3.439316e+01 6.306414e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.536008e+01 6.490357e+01 moveto -3.439316e+01 6.306414e+01 lineto -3.595388e+01 6.257411e+01 lineto -3.687149e+01 6.442902e+01 lineto -3.536008e+01 6.490357e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.639461e+01 6.669988e+01 moveto -3.536008e+01 6.490357e+01 lineto -3.687149e+01 6.442902e+01 lineto -3.785327e+01 6.624189e+01 lineto -3.639461e+01 6.669988e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.749439e+01 6.844897e+01 moveto -3.639461e+01 6.669988e+01 lineto -3.785327e+01 6.624189e+01 lineto -3.889697e+01 6.800859e+01 lineto -3.749439e+01 6.844897e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.865692e+01 7.014685e+01 moveto -3.749439e+01 6.844897e+01 lineto -3.889697e+01 6.800859e+01 lineto -4.000022e+01 6.972509e+01 lineto -3.865692e+01 7.014685e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.987954e+01 7.178965e+01 moveto -3.865692e+01 7.014685e+01 lineto -4.000022e+01 6.972509e+01 lineto -4.11605e+01 7.138746e+01 lineto -3.987954e+01 7.178965e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.115946e+01 7.337362e+01 moveto -3.987954e+01 7.178965e+01 lineto -4.11605e+01 7.138746e+01 lineto -4.237515e+01 7.299192e+01 lineto -4.115946e+01 7.337362e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.249377e+01 7.489514e+01 moveto -4.115946e+01 7.337362e+01 lineto -4.237515e+01 7.299192e+01 lineto -4.364142e+01 7.453481e+01 lineto -4.249377e+01 7.489514e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.387941e+01 7.635075e+01 moveto -4.249377e+01 7.489514e+01 lineto -4.364142e+01 7.453481e+01 lineto -4.495641e+01 7.60126e+01 lineto -4.387941e+01 7.635075e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.531324e+01 7.773713e+01 moveto -4.387941e+01 7.635075e+01 lineto -4.495641e+01 7.60126e+01 lineto -4.631712e+01 7.742194e+01 lineto -4.531324e+01 7.773713e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.679197e+01 7.905111e+01 moveto -4.531324e+01 7.773713e+01 lineto -4.631712e+01 7.742194e+01 lineto -4.772045e+01 7.875959e+01 lineto -4.679197e+01 7.905111e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.831224e+01 8.02897e+01 moveto -4.679197e+01 7.905111e+01 lineto -4.772045e+01 7.875959e+01 lineto -4.916319e+01 8.002252e+01 lineto -4.831224e+01 8.02897e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.987058e+01 8.145007e+01 moveto -4.831224e+01 8.02897e+01 lineto -4.916319e+01 8.002252e+01 lineto -5.064207e+01 8.120784e+01 lineto -4.987058e+01 8.145007e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.146343e+01 8.252957e+01 moveto -4.987058e+01 8.145007e+01 lineto -5.064207e+01 8.120784e+01 lineto -5.215369e+01 8.231284e+01 lineto -5.146343e+01 8.252957e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.308715e+01 8.352574e+01 moveto -5.146343e+01 8.252957e+01 lineto -5.215369e+01 8.231284e+01 lineto -5.369462e+01 8.333501e+01 lineto -5.308715e+01 8.352574e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.473806e+01 8.443631e+01 moveto -5.308715e+01 8.352574e+01 lineto -5.369462e+01 8.333501e+01 lineto -5.526134e+01 8.427201e+01 lineto -5.473806e+01 8.443631e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.641237e+01 8.52592e+01 moveto -5.473806e+01 8.443631e+01 lineto -5.526134e+01 8.427201e+01 lineto -5.685027e+01 8.512171e+01 lineto -5.641237e+01 8.52592e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.810627e+01 8.599253e+01 moveto -5.641237e+01 8.52592e+01 lineto -5.685027e+01 8.512171e+01 lineto -5.84578e+01 8.588216e+01 lineto -5.810627e+01 8.599253e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.981589e+01 8.663464e+01 moveto -5.810627e+01 8.599253e+01 lineto -5.84578e+01 8.588216e+01 lineto -6.008024e+01 8.655164e+01 lineto -5.981589e+01 8.663464e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.153735e+01 8.718405e+01 moveto -5.981589e+01 8.663464e+01 lineto -6.008024e+01 8.655164e+01 lineto -6.171391e+01 8.712861e+01 lineto -6.153735e+01 8.718405e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.32667e+01 8.763952e+01 moveto -6.153735e+01 8.718405e+01 lineto -6.171391e+01 8.712861e+01 lineto -6.335508e+01 8.761177e+01 lineto -6.32667e+01 8.763952e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.32667e+01 8.763952e+01 lineto -6.335508e+01 8.761177e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.200874e+01 2.70809e+01 moveto -3.252e+01 2.528e+01 lineto -3.446548e+01 2.477347e+01 lineto -3.398485e+01 2.65664e+01 lineto -3.200874e+01 2.70809e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.157274e+01 2.892496e+01 moveto -3.200874e+01 2.70809e+01 lineto -3.398485e+01 2.65664e+01 lineto -3.357496e+01 2.840366e+01 lineto -3.157274e+01 2.892496e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.121299e+01 3.080797e+01 moveto -3.157274e+01 2.892496e+01 lineto -3.357496e+01 2.840366e+01 lineto -3.323676e+01 3.028106e+01 lineto -3.121299e+01 3.080797e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.093031e+01 3.272563e+01 moveto -3.121299e+01 3.080797e+01 lineto -3.323676e+01 3.028106e+01 lineto -3.297101e+01 3.219431e+01 lineto -3.093031e+01 3.272563e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.072535e+01 3.467358e+01 moveto -3.093031e+01 3.272563e+01 lineto -3.297101e+01 3.219431e+01 lineto -3.277833e+01 3.413906e+01 lineto -3.072535e+01 3.467358e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.059857e+01 3.664736e+01 moveto -3.072535e+01 3.467358e+01 lineto -3.277833e+01 3.413906e+01 lineto -3.265915e+01 3.611086e+01 lineto -3.059857e+01 3.664736e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.055027e+01 3.864248e+01 moveto -3.059857e+01 3.664736e+01 lineto -3.265915e+01 3.611086e+01 lineto -3.261374e+01 3.810523e+01 lineto -3.055027e+01 3.864248e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.058056e+01 4.065438e+01 moveto -3.055027e+01 3.864248e+01 lineto -3.261374e+01 3.810523e+01 lineto -3.264221e+01 4.01176e+01 lineto -3.058056e+01 4.065438e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.068936e+01 4.267847e+01 moveto -3.058056e+01 4.065438e+01 lineto -3.264221e+01 4.01176e+01 lineto -3.274449e+01 4.214339e+01 lineto -3.068936e+01 4.267847e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.087643e+01 4.471014e+01 moveto -3.068936e+01 4.267847e+01 lineto -3.274449e+01 4.214339e+01 lineto -3.292036e+01 4.417798e+01 lineto -3.087643e+01 4.471014e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.114134e+01 4.674475e+01 moveto -3.087643e+01 4.471014e+01 lineto -3.292036e+01 4.417798e+01 lineto -3.31694e+01 4.621672e+01 lineto -3.114134e+01 4.674475e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.148348e+01 4.877767e+01 moveto -3.114134e+01 4.674475e+01 lineto -3.31694e+01 4.621672e+01 lineto -3.349105e+01 4.825498e+01 lineto -3.148348e+01 4.877767e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.190208e+01 5.080425e+01 moveto -3.148348e+01 4.877767e+01 lineto -3.349105e+01 4.825498e+01 lineto -3.388458e+01 5.028808e+01 lineto -3.190208e+01 5.080425e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.239618e+01 5.281987e+01 moveto -3.190208e+01 5.080425e+01 lineto -3.388458e+01 5.028808e+01 lineto -3.434908e+01 5.231141e+01 lineto -3.239618e+01 5.281987e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.296466e+01 5.481993e+01 moveto -3.239618e+01 5.281987e+01 lineto -3.434908e+01 5.231141e+01 lineto -3.488351e+01 5.432033e+01 lineto -3.296466e+01 5.481993e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.360621e+01 5.679987e+01 moveto -3.296466e+01 5.481993e+01 lineto -3.488351e+01 5.432033e+01 lineto -3.548663e+01 5.631028e+01 lineto -3.360621e+01 5.679987e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.431938e+01 5.875518e+01 moveto -3.360621e+01 5.679987e+01 lineto -3.548663e+01 5.631028e+01 lineto -3.615708e+01 5.827671e+01 lineto -3.431938e+01 5.875518e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.510253e+01 6.068139e+01 moveto -3.431938e+01 5.875518e+01 lineto -3.615708e+01 5.827671e+01 lineto -3.689332e+01 6.021513e+01 lineto -3.510253e+01 6.068139e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.595388e+01 6.257411e+01 moveto -3.510253e+01 6.068139e+01 lineto -3.689332e+01 6.021513e+01 lineto -3.769368e+01 6.212113e+01 lineto -3.595388e+01 6.257411e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.687149e+01 6.442902e+01 moveto -3.595388e+01 6.257411e+01 lineto -3.769368e+01 6.212113e+01 lineto -3.855633e+01 6.399035e+01 lineto -3.687149e+01 6.442902e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.785327e+01 6.624189e+01 moveto -3.687149e+01 6.442902e+01 lineto -3.855633e+01 6.399035e+01 lineto -3.94793e+01 6.581854e+01 lineto -3.785327e+01 6.624189e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.889697e+01 6.800859e+01 moveto -3.785327e+01 6.624189e+01 lineto -3.94793e+01 6.581854e+01 lineto -4.046049e+01 6.760151e+01 lineto -3.889697e+01 6.800859e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.000022e+01 6.972509e+01 moveto -3.889697e+01 6.800859e+01 lineto -4.046049e+01 6.760151e+01 lineto -4.149765e+01 6.933521e+01 lineto -4.000022e+01 6.972509e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.11605e+01 7.138746e+01 moveto -4.000022e+01 6.972509e+01 lineto -4.149765e+01 6.933521e+01 lineto -4.258843e+01 7.101568e+01 lineto -4.11605e+01 7.138746e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.237515e+01 7.299192e+01 moveto -4.11605e+01 7.138746e+01 lineto -4.258843e+01 7.101568e+01 lineto -4.373033e+01 7.263908e+01 lineto -4.237515e+01 7.299192e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.364142e+01 7.453481e+01 moveto -4.237515e+01 7.299192e+01 lineto -4.373033e+01 7.263908e+01 lineto -4.492075e+01 7.420172e+01 lineto -4.364142e+01 7.453481e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.495641e+01 7.60126e+01 moveto -4.364142e+01 7.453481e+01 lineto -4.492075e+01 7.420172e+01 lineto -4.615698e+01 7.570002e+01 lineto -4.495641e+01 7.60126e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.631712e+01 7.742194e+01 moveto -4.495641e+01 7.60126e+01 lineto -4.615698e+01 7.570002e+01 lineto -4.743618e+01 7.713058e+01 lineto -4.631712e+01 7.742194e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.772045e+01 7.875959e+01 moveto -4.631712e+01 7.742194e+01 lineto -4.743618e+01 7.713058e+01 lineto -4.875546e+01 7.849012e+01 lineto -4.772045e+01 7.875959e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.916319e+01 8.002252e+01 moveto -4.772045e+01 7.875959e+01 lineto -4.875546e+01 7.849012e+01 lineto -5.011179e+01 7.977554e+01 lineto -4.916319e+01 8.002252e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.064207e+01 8.120784e+01 moveto -4.916319e+01 8.002252e+01 lineto -5.011179e+01 7.977554e+01 lineto -5.150208e+01 8.098392e+01 lineto -5.064207e+01 8.120784e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.215369e+01 8.231284e+01 moveto -5.064207e+01 8.120784e+01 lineto -5.150208e+01 8.098392e+01 lineto -5.292316e+01 8.21125e+01 lineto -5.215369e+01 8.231284e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.369462e+01 8.333501e+01 moveto -5.215369e+01 8.231284e+01 lineto -5.292316e+01 8.21125e+01 lineto -5.437179e+01 8.31587e+01 lineto -5.369462e+01 8.333501e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.526134e+01 8.427201e+01 moveto -5.369462e+01 8.333501e+01 lineto -5.437179e+01 8.31587e+01 lineto -5.584466e+01 8.412013e+01 lineto -5.526134e+01 8.427201e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.685027e+01 8.512171e+01 moveto -5.526134e+01 8.427201e+01 lineto -5.584466e+01 8.412013e+01 lineto -5.733842e+01 8.499461e+01 lineto -5.685027e+01 8.512171e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.84578e+01 8.588216e+01 moveto -5.685027e+01 8.512171e+01 lineto -5.733842e+01 8.499461e+01 lineto -5.884966e+01 8.578013e+01 lineto -5.84578e+01 8.588216e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.008024e+01 8.655164e+01 moveto -5.84578e+01 8.588216e+01 lineto -5.884966e+01 8.578013e+01 lineto -6.037493e+01 8.647492e+01 lineto -6.008024e+01 8.655164e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.171391e+01 8.712861e+01 moveto -6.008024e+01 8.655164e+01 lineto -6.037493e+01 8.647492e+01 lineto -6.191074e+01 8.707737e+01 lineto -6.171391e+01 8.712861e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.335508e+01 8.761177e+01 moveto -6.171391e+01 8.712861e+01 lineto -6.191074e+01 8.707737e+01 lineto -6.345361e+01 8.758612e+01 lineto -6.335508e+01 8.761177e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.335508e+01 8.761177e+01 lineto -6.345361e+01 8.758612e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.398485e+01 2.65664e+01 moveto -3.446548e+01 2.477347e+01 lineto -3.659922e+01 2.431149e+01 lineto -3.615217e+01 2.609715e+01 lineto -3.398485e+01 2.65664e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.357496e+01 2.840366e+01 moveto -3.398485e+01 2.65664e+01 lineto -3.615217e+01 2.609715e+01 lineto -3.577093e+01 2.792821e+01 lineto -3.357496e+01 2.840366e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.323676e+01 3.028106e+01 moveto -3.357496e+01 2.840366e+01 lineto -3.577093e+01 2.792821e+01 lineto -3.545636e+01 2.980049e+01 lineto -3.323676e+01 3.028106e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.297101e+01 3.219431e+01 moveto -3.323676e+01 3.028106e+01 lineto -3.545636e+01 2.980049e+01 lineto -3.520918e+01 3.170972e+01 lineto -3.297101e+01 3.219431e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.277833e+01 3.413906e+01 moveto -3.297101e+01 3.219431e+01 lineto -3.520918e+01 3.170972e+01 lineto -3.502996e+01 3.365156e+01 lineto -3.277833e+01 3.413906e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.265915e+01 3.611086e+01 moveto -3.277833e+01 3.413906e+01 lineto -3.502996e+01 3.365156e+01 lineto -3.491911e+01 3.562156e+01 lineto -3.265915e+01 3.611086e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.261374e+01 3.810523e+01 moveto -3.265915e+01 3.611086e+01 lineto -3.491911e+01 3.562156e+01 lineto -3.487688e+01 3.761524e+01 lineto -3.261374e+01 3.810523e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.264221e+01 4.01176e+01 moveto -3.261374e+01 3.810523e+01 lineto -3.487688e+01 3.761524e+01 lineto -3.490336e+01 3.962804e+01 lineto -3.264221e+01 4.01176e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.274449e+01 4.214339e+01 moveto -3.264221e+01 4.01176e+01 lineto -3.490336e+01 3.962804e+01 lineto -3.499849e+01 4.165538e+01 lineto -3.274449e+01 4.214339e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.292036e+01 4.417798e+01 moveto -3.274449e+01 4.214339e+01 lineto -3.499849e+01 4.165538e+01 lineto -3.516207e+01 4.369263e+01 lineto -3.292036e+01 4.417798e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.31694e+01 4.621672e+01 moveto -3.292036e+01 4.417798e+01 lineto -3.516207e+01 4.369263e+01 lineto -3.539371e+01 4.573514e+01 lineto -3.31694e+01 4.621672e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.349105e+01 4.825498e+01 moveto -3.31694e+01 4.621672e+01 lineto -3.539371e+01 4.573514e+01 lineto -3.569288e+01 4.777826e+01 lineto -3.349105e+01 4.825498e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.388458e+01 5.028808e+01 moveto -3.349105e+01 4.825498e+01 lineto -3.569288e+01 4.777826e+01 lineto -3.605891e+01 4.981732e+01 lineto -3.388458e+01 5.028808e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.434908e+01 5.231141e+01 moveto -3.388458e+01 5.028808e+01 lineto -3.605891e+01 4.981732e+01 lineto -3.649095e+01 5.184767e+01 lineto -3.434908e+01 5.231141e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.488351e+01 5.432033e+01 moveto -3.434908e+01 5.231141e+01 lineto -3.649095e+01 5.184767e+01 lineto -3.698803e+01 5.386468e+01 lineto -3.488351e+01 5.432033e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.548663e+01 5.631028e+01 moveto -3.488351e+01 5.432033e+01 lineto -3.698803e+01 5.386468e+01 lineto -3.754901e+01 5.586376e+01 lineto -3.548663e+01 5.631028e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.615708e+01 5.827671e+01 moveto -3.548663e+01 5.631028e+01 lineto -3.754901e+01 5.586376e+01 lineto -3.817261e+01 5.784033e+01 lineto -3.615708e+01 5.827671e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.689332e+01 6.021513e+01 moveto -3.615708e+01 5.827671e+01 lineto -3.817261e+01 5.784033e+01 lineto -3.885741e+01 5.978989e+01 lineto -3.689332e+01 6.021513e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.769368e+01 6.212113e+01 moveto -3.689332e+01 6.021513e+01 lineto -3.885741e+01 5.978989e+01 lineto -3.960184e+01 6.1708e+01 lineto -3.769368e+01 6.212113e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.855633e+01 6.399035e+01 moveto -3.769368e+01 6.212113e+01 lineto -3.960184e+01 6.1708e+01 lineto -4.04042e+01 6.359027e+01 lineto -3.855633e+01 6.399035e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.94793e+01 6.581854e+01 moveto -3.855633e+01 6.399035e+01 lineto -4.04042e+01 6.359027e+01 lineto -4.126268e+01 6.543242e+01 lineto -3.94793e+01 6.581854e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.046049e+01 6.760151e+01 moveto -3.94793e+01 6.581854e+01 lineto -4.126268e+01 6.543242e+01 lineto -4.21753e+01 6.723024e+01 lineto -4.046049e+01 6.760151e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.149765e+01 6.933521e+01 moveto -4.046049e+01 6.760151e+01 lineto -4.21753e+01 6.723024e+01 lineto -4.313999e+01 6.897963e+01 lineto -4.149765e+01 6.933521e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.258843e+01 7.101568e+01 moveto -4.149765e+01 6.933521e+01 lineto -4.313999e+01 6.897963e+01 lineto -4.415454e+01 7.06766e+01 lineto -4.258843e+01 7.101568e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.373033e+01 7.263908e+01 moveto -4.258843e+01 7.101568e+01 lineto -4.415454e+01 7.06766e+01 lineto -4.521665e+01 7.231728e+01 lineto -4.373033e+01 7.263908e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.492075e+01 7.420172e+01 moveto -4.373033e+01 7.263908e+01 lineto -4.521665e+01 7.231728e+01 lineto -4.632388e+01 7.389793e+01 lineto -4.492075e+01 7.420172e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.615698e+01 7.570002e+01 moveto -4.492075e+01 7.420172e+01 lineto -4.632388e+01 7.389793e+01 lineto -4.747372e+01 7.541493e+01 lineto -4.615698e+01 7.570002e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.743618e+01 7.713058e+01 moveto -4.615698e+01 7.570002e+01 lineto -4.747372e+01 7.541493e+01 lineto -4.866354e+01 7.686484e+01 lineto -4.743618e+01 7.713058e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.875546e+01 7.849012e+01 moveto -4.743618e+01 7.713058e+01 lineto -4.866354e+01 7.686484e+01 lineto -4.989062e+01 7.824434e+01 lineto -4.875546e+01 7.849012e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.011179e+01 7.977554e+01 moveto -4.875546e+01 7.849012e+01 lineto -4.989062e+01 7.824434e+01 lineto -5.115217e+01 7.955029e+01 lineto -5.011179e+01 7.977554e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.150208e+01 8.098392e+01 moveto -5.011179e+01 7.977554e+01 lineto -5.115217e+01 7.955029e+01 lineto -5.244531e+01 8.07797e+01 lineto -5.150208e+01 8.098392e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.292316e+01 8.21125e+01 moveto -5.150208e+01 8.098392e+01 lineto -5.244531e+01 8.07797e+01 lineto -5.376708e+01 8.192978e+01 lineto -5.292316e+01 8.21125e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.437179e+01 8.31587e+01 moveto -5.292316e+01 8.21125e+01 lineto -5.376708e+01 8.192978e+01 lineto -5.511448e+01 8.29979e+01 lineto -5.437179e+01 8.31587e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.584466e+01 8.412013e+01 moveto -5.437179e+01 8.31587e+01 lineto -5.511448e+01 8.29979e+01 lineto -5.648443e+01 8.398162e+01 lineto -5.584466e+01 8.412013e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.733842e+01 8.499461e+01 moveto -5.584466e+01 8.412013e+01 lineto -5.648443e+01 8.398162e+01 lineto -5.787381e+01 8.487869e+01 lineto -5.733842e+01 8.499461e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.884966e+01 8.578013e+01 moveto -5.733842e+01 8.499461e+01 lineto -5.787381e+01 8.487869e+01 lineto -5.927944e+01 8.568708e+01 lineto -5.884966e+01 8.578013e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.037493e+01 8.647492e+01 moveto -5.884966e+01 8.578013e+01 lineto -5.927944e+01 8.568708e+01 lineto -6.069813e+01 8.640494e+01 lineto -6.037493e+01 8.647492e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.191074e+01 8.707737e+01 moveto -6.037493e+01 8.647492e+01 lineto -6.069813e+01 8.640494e+01 lineto -6.212662e+01 8.703063e+01 lineto -6.191074e+01 8.707737e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.345361e+01 8.758612e+01 moveto -6.191074e+01 8.707737e+01 lineto -6.212662e+01 8.703063e+01 lineto -6.356167e+01 8.756272e+01 lineto -6.345361e+01 8.758612e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.345361e+01 8.758612e+01 lineto -6.356167e+01 8.756272e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.615217e+01 2.609715e+01 moveto -3.659922e+01 2.431149e+01 lineto -3.890806e+01 2.389692e+01 lineto -3.849735e+01 2.567605e+01 lineto -3.615217e+01 2.609715e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.577093e+01 2.792821e+01 moveto -3.615217e+01 2.609715e+01 lineto -3.849735e+01 2.567605e+01 lineto -3.81471e+01 2.750154e+01 lineto -3.577093e+01 2.792821e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.545636e+01 2.980049e+01 moveto -3.577093e+01 2.792821e+01 lineto -3.81471e+01 2.750154e+01 lineto -3.785811e+01 2.936923e+01 lineto -3.545636e+01 2.980049e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.520918e+01 3.170972e+01 moveto -3.545636e+01 2.980049e+01 lineto -3.785811e+01 2.936923e+01 lineto -3.763102e+01 3.127486e+01 lineto -3.520918e+01 3.170972e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.502996e+01 3.365156e+01 moveto -3.520918e+01 3.170972e+01 lineto -3.763102e+01 3.127486e+01 lineto -3.746637e+01 3.321408e+01 lineto -3.502996e+01 3.365156e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.491911e+01 3.562156e+01 moveto -3.502996e+01 3.365156e+01 lineto -3.746637e+01 3.321408e+01 lineto -3.736453e+01 3.518246e+01 lineto -3.491911e+01 3.562156e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.487688e+01 3.761524e+01 moveto -3.491911e+01 3.562156e+01 lineto -3.736453e+01 3.518246e+01 lineto -3.732573e+01 3.717552e+01 lineto -3.487688e+01 3.761524e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.490336e+01 3.962804e+01 moveto -3.487688e+01 3.761524e+01 lineto -3.732573e+01 3.717552e+01 lineto -3.735006e+01 3.918871e+01 lineto -3.490336e+01 3.962804e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.499849e+01 4.165538e+01 moveto -3.490336e+01 3.962804e+01 lineto -3.735006e+01 3.918871e+01 lineto -3.743746e+01 4.121744e+01 lineto -3.499849e+01 4.165538e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.516207e+01 4.369263e+01 moveto -3.499849e+01 4.165538e+01 lineto -3.743746e+01 4.121744e+01 lineto -3.758774e+01 4.325708e+01 lineto -3.516207e+01 4.369263e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.539371e+01 4.573514e+01 moveto -3.516207e+01 4.369263e+01 lineto -3.758774e+01 4.325708e+01 lineto -3.780055e+01 4.530297e+01 lineto -3.539371e+01 4.573514e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.569288e+01 4.777826e+01 moveto -3.539371e+01 4.573514e+01 lineto -3.780055e+01 4.530297e+01 lineto -3.80754e+01 4.735045e+01 lineto -3.569288e+01 4.777826e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.605891e+01 4.981732e+01 moveto -3.569288e+01 4.777826e+01 lineto -3.80754e+01 4.735045e+01 lineto -3.841167e+01 4.939486e+01 lineto -3.605891e+01 4.981732e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.649095e+01 5.184767e+01 moveto -3.605891e+01 4.981732e+01 lineto -3.841167e+01 4.939486e+01 lineto -3.880859e+01 5.143152e+01 lineto -3.649095e+01 5.184767e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.698803e+01 5.386468e+01 moveto -3.649095e+01 5.184767e+01 lineto -3.880859e+01 5.143152e+01 lineto -3.926526e+01 5.345579e+01 lineto -3.698803e+01 5.386468e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.754901e+01 5.586376e+01 moveto -3.698803e+01 5.386468e+01 lineto -3.926526e+01 5.345579e+01 lineto -3.978064e+01 5.546305e+01 lineto -3.754901e+01 5.586376e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.817261e+01 5.784033e+01 moveto -3.754901e+01 5.586376e+01 lineto -3.978064e+01 5.546305e+01 lineto -4.035354e+01 5.744872e+01 lineto -3.817261e+01 5.784033e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.885741e+01 5.978989e+01 moveto -3.817261e+01 5.784033e+01 lineto -4.035354e+01 5.744872e+01 lineto -4.098267e+01 5.940828e+01 lineto -3.885741e+01 5.978989e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.960184e+01 6.1708e+01 moveto -3.885741e+01 5.978989e+01 lineto -4.098267e+01 5.940828e+01 lineto -4.166658e+01 6.133725e+01 lineto -3.960184e+01 6.1708e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.04042e+01 6.359027e+01 moveto -3.960184e+01 6.1708e+01 lineto -4.166658e+01 6.133725e+01 lineto -4.240372e+01 6.323124e+01 lineto -4.04042e+01 6.359027e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.126268e+01 6.543242e+01 moveto -4.04042e+01 6.359027e+01 lineto -4.240372e+01 6.323124e+01 lineto -4.31924e+01 6.508592e+01 lineto -4.126268e+01 6.543242e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.21753e+01 6.723024e+01 moveto -4.126268e+01 6.543242e+01 lineto -4.31924e+01 6.508592e+01 lineto -4.403083e+01 6.689706e+01 lineto -4.21753e+01 6.723024e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.313999e+01 6.897963e+01 moveto -4.21753e+01 6.723024e+01 lineto -4.403083e+01 6.689706e+01 lineto -4.49171e+01 6.866053e+01 lineto -4.313999e+01 6.897963e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.415454e+01 7.06766e+01 moveto -4.313999e+01 6.897963e+01 lineto -4.49171e+01 6.866053e+01 lineto -4.584917e+01 7.037231e+01 lineto -4.415454e+01 7.06766e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.521665e+01 7.231728e+01 moveto -4.415454e+01 7.06766e+01 lineto -4.584917e+01 7.037231e+01 lineto -4.682493e+01 7.20285e+01 lineto -4.521665e+01 7.231728e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.632388e+01 7.389793e+01 moveto -4.521665e+01 7.231728e+01 lineto -4.682493e+01 7.20285e+01 lineto -4.784215e+01 7.362531e+01 lineto -4.632388e+01 7.389793e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.747372e+01 7.541493e+01 moveto -4.632388e+01 7.389793e+01 lineto -4.784215e+01 7.362531e+01 lineto -4.889852e+01 7.51591e+01 lineto -4.747372e+01 7.541493e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.866354e+01 7.686484e+01 moveto -4.747372e+01 7.541493e+01 lineto -4.889852e+01 7.51591e+01 lineto -4.999161e+01 7.662637e+01 lineto -4.866354e+01 7.686484e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.989062e+01 7.824434e+01 moveto -4.866354e+01 7.686484e+01 lineto -4.999161e+01 7.662637e+01 lineto -5.111893e+01 7.802379e+01 lineto -4.989062e+01 7.824434e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.115217e+01 7.955029e+01 moveto -4.989062e+01 7.824434e+01 lineto -5.111893e+01 7.802379e+01 lineto -5.227793e+01 7.934815e+01 lineto -5.115217e+01 7.955029e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.244531e+01 8.07797e+01 moveto -5.115217e+01 7.955029e+01 lineto -5.227793e+01 7.934815e+01 lineto -5.346594e+01 8.059644e+01 lineto -5.244531e+01 8.07797e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.376708e+01 8.192978e+01 moveto -5.244531e+01 8.07797e+01 lineto -5.346594e+01 8.059644e+01 lineto -5.468026e+01 8.176581e+01 lineto -5.376708e+01 8.192978e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.511448e+01 8.29979e+01 moveto -5.376708e+01 8.192978e+01 lineto -5.468026e+01 8.176581e+01 lineto -5.591813e+01 8.28536e+01 lineto -5.511448e+01 8.29979e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.648443e+01 8.398162e+01 moveto -5.511448e+01 8.29979e+01 lineto -5.591813e+01 8.28536e+01 lineto -5.717671e+01 8.385731e+01 lineto -5.648443e+01 8.398162e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.787381e+01 8.487869e+01 moveto -5.648443e+01 8.398162e+01 lineto -5.717671e+01 8.385731e+01 lineto -5.845313e+01 8.477467e+01 lineto -5.787381e+01 8.487869e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.927944e+01 8.568708e+01 moveto -5.787381e+01 8.487869e+01 lineto -5.845313e+01 8.477467e+01 lineto -5.97445e+01 8.560358e+01 lineto -5.927944e+01 8.568708e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.069813e+01 8.640494e+01 moveto -5.927944e+01 8.568708e+01 lineto -5.97445e+01 8.560358e+01 lineto -6.104785e+01 8.634214e+01 lineto -6.069813e+01 8.640494e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.212662e+01 8.703063e+01 moveto -6.069813e+01 8.640494e+01 lineto -6.104785e+01 8.634214e+01 lineto -6.236021e+01 8.698868e+01 lineto -6.212662e+01 8.703063e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.356167e+01 8.756272e+01 moveto -6.212662e+01 8.703063e+01 lineto -6.236021e+01 8.698868e+01 lineto -6.36786e+01 8.754172e+01 lineto -6.356167e+01 8.756272e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.356167e+01 8.756272e+01 lineto -6.36786e+01 8.754172e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.849735e+01 2.567605e+01 moveto -3.890806e+01 2.389692e+01 lineto -4.137776e+01 2.353231e+01 lineto -4.100593e+01 2.53057e+01 lineto -3.849735e+01 2.567605e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.81471e+01 2.750154e+01 moveto -3.849735e+01 2.567605e+01 lineto -4.100593e+01 2.53057e+01 lineto -4.068883e+01 2.712629e+01 lineto -3.81471e+01 2.750154e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.785811e+01 2.936923e+01 moveto -3.81471e+01 2.750154e+01 lineto -4.068883e+01 2.712629e+01 lineto -4.042719e+01 2.898995e+01 lineto -3.785811e+01 2.936923e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.763102e+01 3.127486e+01 moveto -3.785811e+01 2.936923e+01 lineto -4.042719e+01 2.898995e+01 lineto -4.02216e+01 3.08924e+01 lineto -3.763102e+01 3.127486e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.746637e+01 3.321408e+01 moveto -3.763102e+01 3.127486e+01 lineto -4.02216e+01 3.08924e+01 lineto -4.007254e+01 3.282932e+01 lineto -3.746637e+01 3.321408e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.736453e+01 3.518246e+01 moveto -3.746637e+01 3.321408e+01 lineto -4.007254e+01 3.282932e+01 lineto -3.998034e+01 3.479628e+01 lineto -3.736453e+01 3.518246e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.732573e+01 3.717552e+01 moveto -3.736453e+01 3.518246e+01 lineto -3.998034e+01 3.479628e+01 lineto -3.994521e+01 3.678879e+01 lineto -3.732573e+01 3.717552e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.735006e+01 3.918871e+01 moveto -3.732573e+01 3.717552e+01 lineto -3.994521e+01 3.678879e+01 lineto -3.996724e+01 3.880232e+01 lineto -3.735006e+01 3.918871e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.743746e+01 4.121744e+01 moveto -3.735006e+01 3.918871e+01 lineto -3.996724e+01 3.880232e+01 lineto -4.004637e+01 4.083227e+01 lineto -3.743746e+01 4.121744e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.758774e+01 4.325708e+01 moveto -3.743746e+01 4.121744e+01 lineto -4.004637e+01 4.083227e+01 lineto -4.018242e+01 4.287401e+01 lineto -3.758774e+01 4.325708e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.780055e+01 4.530297e+01 moveto -3.758774e+01 4.325708e+01 lineto -4.018242e+01 4.287401e+01 lineto -4.037508e+01 4.492288e+01 lineto -3.780055e+01 4.530297e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.80754e+01 4.735045e+01 moveto -3.780055e+01 4.530297e+01 lineto -4.037508e+01 4.492288e+01 lineto -4.062392e+01 4.69742e+01 lineto -3.80754e+01 4.735045e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.841167e+01 4.939486e+01 moveto -3.80754e+01 4.735045e+01 lineto -4.062392e+01 4.69742e+01 lineto -4.092836e+01 4.90233e+01 lineto -3.841167e+01 4.939486e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.880859e+01 5.143152e+01 moveto -3.841167e+01 4.939486e+01 lineto -4.092836e+01 4.90233e+01 lineto -4.128771e+01 5.106551e+01 lineto -3.880859e+01 5.143152e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.926526e+01 5.345579e+01 moveto -3.880859e+01 5.143152e+01 lineto -4.128771e+01 5.106551e+01 lineto -4.170116e+01 5.309616e+01 lineto -3.926526e+01 5.345579e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.978064e+01 5.546305e+01 moveto -3.926526e+01 5.345579e+01 lineto -4.170116e+01 5.309616e+01 lineto -4.216775e+01 5.511062e+01 lineto -3.978064e+01 5.546305e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.035354e+01 5.744872e+01 moveto -3.978064e+01 5.546305e+01 lineto -4.216775e+01 5.511062e+01 lineto -4.268642e+01 5.710431e+01 lineto -4.035354e+01 5.744872e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.098267e+01 5.940828e+01 moveto -4.035354e+01 5.744872e+01 lineto -4.268642e+01 5.710431e+01 lineto -4.3256e+01 5.907266e+01 lineto -4.098267e+01 5.940828e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.166658e+01 6.133725e+01 moveto -4.098267e+01 5.940828e+01 lineto -4.3256e+01 5.907266e+01 lineto -4.387518e+01 6.101119e+01 lineto -4.166658e+01 6.133725e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.240372e+01 6.323124e+01 moveto -4.166658e+01 6.133725e+01 lineto -4.387518e+01 6.101119e+01 lineto -4.454254e+01 6.291547e+01 lineto -4.240372e+01 6.323124e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.31924e+01 6.508592e+01 moveto -4.240372e+01 6.323124e+01 lineto -4.454254e+01 6.291547e+01 lineto -4.525658e+01 6.478117e+01 lineto -4.31924e+01 6.508592e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.403083e+01 6.689706e+01 moveto -4.31924e+01 6.508592e+01 lineto -4.525658e+01 6.478117e+01 lineto -4.601565e+01 6.660403e+01 lineto -4.403083e+01 6.689706e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.49171e+01 6.866053e+01 moveto -4.403083e+01 6.689706e+01 lineto -4.601565e+01 6.660403e+01 lineto -4.681802e+01 6.837989e+01 lineto -4.49171e+01 6.866053e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.584917e+01 7.037231e+01 moveto -4.49171e+01 6.866053e+01 lineto -4.681802e+01 6.837989e+01 lineto -4.766187e+01 7.01047e+01 lineto -4.584917e+01 7.037231e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.682493e+01 7.20285e+01 moveto -4.584917e+01 7.037231e+01 lineto -4.766187e+01 7.01047e+01 lineto -4.854527e+01 7.177451e+01 lineto -4.682493e+01 7.20285e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.784215e+01 7.362531e+01 moveto -4.682493e+01 7.20285e+01 lineto -4.854527e+01 7.177451e+01 lineto -4.946621e+01 7.338554e+01 lineto -4.784215e+01 7.362531e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.889852e+01 7.51591e+01 moveto -4.784215e+01 7.362531e+01 lineto -4.946621e+01 7.338554e+01 lineto -5.042258e+01 7.493409e+01 lineto -4.889852e+01 7.51591e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.999161e+01 7.662637e+01 moveto -4.889852e+01 7.51591e+01 lineto -5.042258e+01 7.493409e+01 lineto -5.141221e+01 7.641664e+01 lineto -4.999161e+01 7.662637e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.111893e+01 7.802379e+01 moveto -4.999161e+01 7.662637e+01 lineto -5.141221e+01 7.641664e+01 lineto -5.243283e+01 7.782981e+01 lineto -5.111893e+01 7.802379e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.227793e+01 7.934815e+01 moveto -5.111893e+01 7.802379e+01 lineto -5.243283e+01 7.782981e+01 lineto -5.348212e+01 7.917037e+01 lineto -5.227793e+01 7.934815e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.346594e+01 8.059644e+01 moveto -5.227793e+01 7.934815e+01 lineto -5.348212e+01 7.917037e+01 lineto -5.455768e+01 8.043526e+01 lineto -5.346594e+01 8.059644e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.468026e+01 8.176581e+01 moveto -5.346594e+01 8.059644e+01 lineto -5.455768e+01 8.043526e+01 lineto -5.565707e+01 8.16216e+01 lineto -5.468026e+01 8.176581e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.591813e+01 8.28536e+01 moveto -5.468026e+01 8.176581e+01 lineto -5.565707e+01 8.16216e+01 lineto -5.677776e+01 8.272668e+01 lineto -5.591813e+01 8.28536e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.717671e+01 8.385731e+01 moveto -5.591813e+01 8.28536e+01 lineto -5.677776e+01 8.272668e+01 lineto -5.791721e+01 8.374799e+01 lineto -5.717671e+01 8.385731e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.845313e+01 8.477467e+01 moveto -5.717671e+01 8.385731e+01 lineto -5.791721e+01 8.374799e+01 lineto -5.907282e+01 8.468318e+01 lineto -5.845313e+01 8.477467e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.97445e+01 8.560358e+01 moveto -5.845313e+01 8.477467e+01 lineto -5.907282e+01 8.468318e+01 lineto -6.024195e+01 8.553014e+01 lineto -5.97445e+01 8.560358e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.104785e+01 8.634214e+01 moveto -5.97445e+01 8.560358e+01 lineto -6.024195e+01 8.553014e+01 lineto -6.142193e+01 8.628692e+01 lineto -6.104785e+01 8.634214e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.236021e+01 8.698868e+01 moveto -6.104785e+01 8.634214e+01 lineto -6.142193e+01 8.628692e+01 lineto -6.261008e+01 8.69518e+01 lineto -6.236021e+01 8.698868e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.36786e+01 8.754172e+01 moveto -6.236021e+01 8.698868e+01 lineto -6.261008e+01 8.69518e+01 lineto -6.380367e+01 8.752326e+01 lineto -6.36786e+01 8.754172e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.36786e+01 8.754172e+01 lineto -6.380367e+01 8.752326e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.100593e+01 2.53057e+01 moveto -4.137776e+01 2.353231e+01 lineto -4.399311e+01 2.32199e+01 lineto -4.366244e+01 2.498837e+01 lineto -4.100593e+01 2.53057e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.068883e+01 2.712629e+01 moveto -4.100593e+01 2.53057e+01 lineto -4.366244e+01 2.498837e+01 lineto -4.338045e+01 2.680477e+01 lineto -4.068883e+01 2.712629e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.042719e+01 2.898995e+01 moveto -4.068883e+01 2.712629e+01 lineto -4.338045e+01 2.680477e+01 lineto -4.314778e+01 2.866497e+01 lineto -4.042719e+01 2.898995e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.02216e+01 3.08924e+01 moveto -4.042719e+01 2.898995e+01 lineto -4.314778e+01 2.866497e+01 lineto -4.296495e+01 3.05647e+01 lineto -4.02216e+01 3.08924e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.007254e+01 3.282932e+01 moveto -4.02216e+01 3.08924e+01 lineto -4.296495e+01 3.05647e+01 lineto -4.283239e+01 3.249965e+01 lineto -4.007254e+01 3.282932e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.998034e+01 3.479628e+01 moveto -4.007254e+01 3.282932e+01 lineto -4.283239e+01 3.249965e+01 lineto -4.27504e+01 3.446539e+01 lineto -3.998034e+01 3.479628e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.994521e+01 3.678879e+01 moveto -3.998034e+01 3.479628e+01 lineto -4.27504e+01 3.446539e+01 lineto -4.271916e+01 3.645744e+01 lineto -3.994521e+01 3.678879e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -3.996724e+01 3.880232e+01 moveto -3.994521e+01 3.678879e+01 lineto -4.271916e+01 3.645744e+01 lineto -4.273875e+01 3.847126e+01 lineto -3.996724e+01 3.880232e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.004637e+01 4.083227e+01 moveto -3.996724e+01 3.880232e+01 lineto -4.273875e+01 3.847126e+01 lineto -4.280911e+01 4.050226e+01 lineto -4.004637e+01 4.083227e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.018242e+01 4.287401e+01 moveto -4.004637e+01 4.083227e+01 lineto -4.280911e+01 4.050226e+01 lineto -4.29301e+01 4.254579e+01 lineto -4.018242e+01 4.287401e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.037508e+01 4.492288e+01 moveto -4.018242e+01 4.287401e+01 lineto -4.29301e+01 4.254579e+01 lineto -4.310144e+01 4.459721e+01 lineto -4.037508e+01 4.492288e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.062392e+01 4.69742e+01 moveto -4.037508e+01 4.492288e+01 lineto -4.310144e+01 4.459721e+01 lineto -4.332272e+01 4.665182e+01 lineto -4.062392e+01 4.69742e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.092836e+01 4.90233e+01 moveto -4.062392e+01 4.69742e+01 lineto -4.332272e+01 4.665182e+01 lineto -4.359346e+01 4.870495e+01 lineto -4.092836e+01 4.90233e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.128771e+01 5.106551e+01 moveto -4.092836e+01 4.90233e+01 lineto -4.359346e+01 4.870495e+01 lineto -4.391303e+01 5.075191e+01 lineto -4.128771e+01 5.106551e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.170116e+01 5.309616e+01 moveto -4.128771e+01 5.106551e+01 lineto -4.391303e+01 5.075191e+01 lineto -4.42807e+01 5.278803e+01 lineto -4.170116e+01 5.309616e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.216775e+01 5.511062e+01 moveto -4.170116e+01 5.309616e+01 lineto -4.42807e+01 5.278803e+01 lineto -4.469563e+01 5.480866e+01 lineto -4.216775e+01 5.511062e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.268642e+01 5.710431e+01 moveto -4.216775e+01 5.511062e+01 lineto -4.469563e+01 5.480866e+01 lineto -4.515688e+01 5.68092e+01 lineto -4.268642e+01 5.710431e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.3256e+01 5.907266e+01 moveto -4.268642e+01 5.710431e+01 lineto -4.515688e+01 5.68092e+01 lineto -4.566339e+01 5.878509e+01 lineto -4.3256e+01 5.907266e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.387518e+01 6.101119e+01 moveto -4.3256e+01 5.907266e+01 lineto -4.566339e+01 5.878509e+01 lineto -4.621402e+01 6.073181e+01 lineto -4.387518e+01 6.101119e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.454254e+01 6.291547e+01 moveto -4.387518e+01 6.101119e+01 lineto -4.621402e+01 6.073181e+01 lineto -4.68075e+01 6.264492e+01 lineto -4.454254e+01 6.291547e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.525658e+01 6.478117e+01 moveto -4.454254e+01 6.291547e+01 lineto -4.68075e+01 6.264492e+01 lineto -4.744247e+01 6.452006e+01 lineto -4.525658e+01 6.478117e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.601565e+01 6.660403e+01 moveto -4.525658e+01 6.478117e+01 lineto -4.744247e+01 6.452006e+01 lineto -4.81175e+01 6.635296e+01 lineto -4.601565e+01 6.660403e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.681802e+01 6.837989e+01 moveto -4.601565e+01 6.660403e+01 lineto -4.81175e+01 6.635296e+01 lineto -4.883104e+01 6.813943e+01 lineto -4.681802e+01 6.837989e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.766187e+01 7.01047e+01 moveto -4.681802e+01 6.837989e+01 lineto -4.883104e+01 6.813943e+01 lineto -4.958147e+01 6.987539e+01 lineto -4.766187e+01 7.01047e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.854527e+01 7.177451e+01 moveto -4.766187e+01 7.01047e+01 lineto -4.958147e+01 6.987539e+01 lineto -5.036706e+01 7.15569e+01 lineto -4.854527e+01 7.177451e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.946621e+01 7.338554e+01 moveto -4.854527e+01 7.177451e+01 lineto -5.036706e+01 7.15569e+01 lineto -5.118604e+01 7.31801e+01 lineto -4.946621e+01 7.338554e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.042258e+01 7.493409e+01 moveto -4.946621e+01 7.338554e+01 lineto -5.118604e+01 7.31801e+01 lineto -5.203653e+01 7.47413e+01 lineto -5.042258e+01 7.493409e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.141221e+01 7.641664e+01 moveto -5.042258e+01 7.493409e+01 lineto -5.203653e+01 7.47413e+01 lineto -5.291659e+01 7.623694e+01 lineto -5.141221e+01 7.641664e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.243283e+01 7.782981e+01 moveto -5.141221e+01 7.641664e+01 lineto -5.291659e+01 7.623694e+01 lineto -5.382421e+01 7.766361e+01 lineto -5.243283e+01 7.782981e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.348212e+01 7.917037e+01 moveto -5.243283e+01 7.782981e+01 lineto -5.382421e+01 7.766361e+01 lineto -5.475733e+01 7.901804e+01 lineto -5.348212e+01 7.917037e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.455768e+01 8.043526e+01 moveto -5.348212e+01 7.917037e+01 lineto -5.475733e+01 7.901804e+01 lineto -5.571381e+01 8.029716e+01 lineto -5.455768e+01 8.043526e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.565707e+01 8.16216e+01 moveto -5.455768e+01 8.043526e+01 lineto -5.571381e+01 8.029716e+01 lineto -5.669147e+01 8.149804e+01 lineto -5.565707e+01 8.16216e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.677776e+01 8.272668e+01 moveto -5.565707e+01 8.16216e+01 lineto -5.669147e+01 8.149804e+01 lineto -5.768809e+01 8.261794e+01 lineto -5.677776e+01 8.272668e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.791721e+01 8.374799e+01 moveto -5.677776e+01 8.272668e+01 lineto -5.768809e+01 8.261794e+01 lineto -5.870139e+01 8.365432e+01 lineto -5.791721e+01 8.374799e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.907282e+01 8.468318e+01 moveto -5.791721e+01 8.374799e+01 lineto -5.870139e+01 8.365432e+01 lineto -5.972905e+01 8.460479e+01 lineto -5.907282e+01 8.468318e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.024195e+01 8.553014e+01 moveto -5.907282e+01 8.468318e+01 lineto -5.972905e+01 8.460479e+01 lineto -6.076874e+01 8.546721e+01 lineto -6.024195e+01 8.553014e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.142193e+01 8.628692e+01 moveto -6.024195e+01 8.553014e+01 lineto -6.076874e+01 8.546721e+01 lineto -6.181808e+01 8.623959e+01 lineto -6.142193e+01 8.628692e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.261008e+01 8.69518e+01 moveto -6.142193e+01 8.628692e+01 lineto -6.181808e+01 8.623959e+01 lineto -6.287468e+01 8.692019e+01 lineto -6.261008e+01 8.69518e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.380367e+01 8.752326e+01 moveto -6.261008e+01 8.69518e+01 lineto -6.287468e+01 8.692019e+01 lineto -6.393613e+01 8.750744e+01 lineto -6.380367e+01 8.752326e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.380367e+01 8.752326e+01 lineto -6.393613e+01 8.750744e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.366244e+01 2.498837e+01 moveto -4.399311e+01 2.32199e+01 lineto -4.673796e+01 2.296162e+01 lineto -4.645051e+01 2.472603e+01 lineto -4.366244e+01 2.498837e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.338045e+01 2.680477e+01 moveto -4.366244e+01 2.498837e+01 lineto -4.645051e+01 2.472603e+01 lineto -4.620536e+01 2.653897e+01 lineto -4.338045e+01 2.680477e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.314778e+01 2.866497e+01 moveto -4.338045e+01 2.680477e+01 lineto -4.620536e+01 2.653897e+01 lineto -4.600309e+01 2.83963e+01 lineto -4.314778e+01 2.866497e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.296495e+01 3.05647e+01 moveto -4.314778e+01 2.866497e+01 lineto -4.600309e+01 2.83963e+01 lineto -4.584415e+01 3.029378e+01 lineto -4.296495e+01 3.05647e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.283239e+01 3.249965e+01 moveto -4.296495e+01 3.05647e+01 lineto -4.584415e+01 3.029378e+01 lineto -4.572891e+01 3.22271e+01 lineto -4.283239e+01 3.249965e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.27504e+01 3.446539e+01 moveto -4.283239e+01 3.249965e+01 lineto -4.572891e+01 3.22271e+01 lineto -4.565763e+01 3.419183e+01 lineto -4.27504e+01 3.446539e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.271916e+01 3.645744e+01 moveto -4.27504e+01 3.446539e+01 lineto -4.565763e+01 3.419183e+01 lineto -4.563048e+01 3.61835e+01 lineto -4.271916e+01 3.645744e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.273875e+01 3.847126e+01 moveto -4.271916e+01 3.645744e+01 lineto -4.563048e+01 3.61835e+01 lineto -4.56475e+01 3.819756e+01 lineto -4.273875e+01 3.847126e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.280911e+01 4.050226e+01 moveto -4.273875e+01 3.847126e+01 lineto -4.56475e+01 3.819756e+01 lineto -4.570868e+01 4.022942e+01 lineto -4.280911e+01 4.050226e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.29301e+01 4.254579e+01 moveto -4.280911e+01 4.050226e+01 lineto -4.570868e+01 4.022942e+01 lineto -4.581386e+01 4.227445e+01 lineto -4.29301e+01 4.254579e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.310144e+01 4.459721e+01 moveto -4.29301e+01 4.254579e+01 lineto -4.581386e+01 4.227445e+01 lineto -4.59628e+01 4.432797e+01 lineto -4.310144e+01 4.459721e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.332272e+01 4.665182e+01 moveto -4.310144e+01 4.459721e+01 lineto -4.59628e+01 4.432797e+01 lineto -4.615518e+01 4.63853e+01 lineto -4.332272e+01 4.665182e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.359346e+01 4.870495e+01 moveto -4.332272e+01 4.665182e+01 lineto -4.615518e+01 4.63853e+01 lineto -4.639054e+01 4.844176e+01 lineto -4.359346e+01 4.870495e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.391303e+01 5.075191e+01 moveto -4.359346e+01 4.870495e+01 lineto -4.639054e+01 4.844176e+01 lineto -4.666835e+01 5.049265e+01 lineto -4.391303e+01 5.075191e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.42807e+01 5.278803e+01 moveto -4.391303e+01 5.075191e+01 lineto -4.666835e+01 5.049265e+01 lineto -4.698798e+01 5.253329e+01 lineto -4.42807e+01 5.278803e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.469563e+01 5.480866e+01 moveto -4.42807e+01 5.278803e+01 lineto -4.698798e+01 5.253329e+01 lineto -4.734869e+01 5.455902e+01 lineto -4.469563e+01 5.480866e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.515688e+01 5.68092e+01 moveto -4.469563e+01 5.480866e+01 lineto -4.734869e+01 5.455902e+01 lineto -4.774967e+01 5.656524e+01 lineto -4.515688e+01 5.68092e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.566339e+01 5.878509e+01 moveto -4.515688e+01 5.68092e+01 lineto -4.774967e+01 5.656524e+01 lineto -4.819e+01 5.854735e+01 lineto -4.566339e+01 5.878509e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.621402e+01 6.073181e+01 moveto -4.566339e+01 5.878509e+01 lineto -4.819e+01 5.854735e+01 lineto -4.866868e+01 6.050083e+01 lineto -4.621402e+01 6.073181e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.68075e+01 6.264492e+01 moveto -4.621402e+01 6.073181e+01 lineto -4.866868e+01 6.050083e+01 lineto -4.918461e+01 6.242124e+01 lineto -4.68075e+01 6.264492e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.744247e+01 6.452006e+01 moveto -4.68075e+01 6.264492e+01 lineto -4.918461e+01 6.242124e+01 lineto -4.973662e+01 6.43042e+01 lineto -4.744247e+01 6.452006e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.81175e+01 6.635296e+01 moveto -4.744247e+01 6.452006e+01 lineto -4.973662e+01 6.43042e+01 lineto -5.032345e+01 6.614539e+01 lineto -4.81175e+01 6.635296e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.883104e+01 6.813943e+01 moveto -4.81175e+01 6.635296e+01 lineto -5.032345e+01 6.614539e+01 lineto -5.094375e+01 6.794063e+01 lineto -4.883104e+01 6.813943e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.958147e+01 6.987539e+01 moveto -4.883104e+01 6.813943e+01 lineto -5.094375e+01 6.794063e+01 lineto -5.159612e+01 6.968583e+01 lineto -4.958147e+01 6.987539e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.036706e+01 7.15569e+01 moveto -4.958147e+01 6.987539e+01 lineto -5.159612e+01 6.968583e+01 lineto -5.227907e+01 7.137699e+01 lineto -5.036706e+01 7.15569e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.118604e+01 7.31801e+01 moveto -5.036706e+01 7.15569e+01 lineto -5.227907e+01 7.137699e+01 lineto -5.299104e+01 7.301026e+01 lineto -5.118604e+01 7.31801e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.203653e+01 7.47413e+01 moveto -5.118604e+01 7.31801e+01 lineto -5.299104e+01 7.301026e+01 lineto -5.373039e+01 7.458192e+01 lineto -5.203653e+01 7.47413e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.291659e+01 7.623694e+01 moveto -5.203653e+01 7.47413e+01 lineto -5.373039e+01 7.458192e+01 lineto -5.449546e+01 7.608838e+01 lineto -5.291659e+01 7.623694e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.382421e+01 7.766361e+01 moveto -5.291659e+01 7.623694e+01 lineto -5.449546e+01 7.608838e+01 lineto -5.528449e+01 7.75262e+01 lineto -5.382421e+01 7.766361e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.475733e+01 7.901804e+01 moveto -5.382421e+01 7.766361e+01 lineto -5.528449e+01 7.75262e+01 lineto -5.609568e+01 7.889211e+01 lineto -5.475733e+01 7.901804e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.571381e+01 8.029716e+01 moveto -5.475733e+01 7.901804e+01 lineto -5.609568e+01 7.889211e+01 lineto -5.692718e+01 8.018299e+01 lineto -5.571381e+01 8.029716e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.669147e+01 8.149804e+01 moveto -5.571381e+01 8.029716e+01 lineto -5.692718e+01 8.018299e+01 lineto -5.77771e+01 8.139589e+01 lineto -5.669147e+01 8.149804e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.768809e+01 8.261794e+01 moveto -5.669147e+01 8.149804e+01 lineto -5.77771e+01 8.139589e+01 lineto -5.86435e+01 8.252804e+01 lineto -5.768809e+01 8.261794e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.870139e+01 8.365432e+01 moveto -5.768809e+01 8.261794e+01 lineto -5.86435e+01 8.252804e+01 lineto -5.952439e+01 8.357688e+01 lineto -5.870139e+01 8.365432e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.972905e+01 8.460479e+01 moveto -5.870139e+01 8.365432e+01 lineto -5.952439e+01 8.357688e+01 lineto -6.041778e+01 8.453999e+01 lineto -5.972905e+01 8.460479e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.076874e+01 8.546721e+01 moveto -5.972905e+01 8.460479e+01 lineto -6.041778e+01 8.453999e+01 lineto -6.132161e+01 8.541519e+01 lineto -6.076874e+01 8.546721e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.181808e+01 8.623959e+01 moveto -6.076874e+01 8.546721e+01 lineto -6.132161e+01 8.541519e+01 lineto -6.223384e+01 8.620047e+01 lineto -6.181808e+01 8.623959e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.287468e+01 8.692019e+01 moveto -6.181808e+01 8.623959e+01 lineto -6.223384e+01 8.620047e+01 lineto -6.315238e+01 8.689406e+01 lineto -6.287468e+01 8.692019e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.393613e+01 8.750744e+01 moveto -6.287468e+01 8.692019e+01 lineto -6.315238e+01 8.689406e+01 lineto -6.407514e+01 8.749436e+01 lineto -6.393613e+01 8.750744e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.393613e+01 8.750744e+01 lineto -6.407514e+01 8.749436e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.645051e+01 2.472603e+01 moveto -4.673796e+01 2.296162e+01 lineto -4.959541e+01 2.275907e+01 lineto -4.935293e+01 2.452029e+01 lineto -4.645051e+01 2.472603e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.620536e+01 2.653897e+01 moveto -4.645051e+01 2.472603e+01 lineto -4.935293e+01 2.452029e+01 lineto -4.914615e+01 2.633051e+01 lineto -4.620536e+01 2.653897e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.600309e+01 2.83963e+01 moveto -4.620536e+01 2.653897e+01 lineto -4.914615e+01 2.633051e+01 lineto -4.897552e+01 2.818559e+01 lineto -4.600309e+01 2.83963e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.584415e+01 3.029378e+01 moveto -4.600309e+01 2.83963e+01 lineto -4.897552e+01 2.818559e+01 lineto -4.884146e+01 3.008132e+01 lineto -4.584415e+01 3.029378e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.572891e+01 3.22271e+01 moveto -4.584415e+01 3.029378e+01 lineto -4.884146e+01 3.008132e+01 lineto -4.874425e+01 3.201335e+01 lineto -4.572891e+01 3.22271e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.565763e+01 3.419183e+01 moveto -4.572891e+01 3.22271e+01 lineto -4.874425e+01 3.201335e+01 lineto -4.868412e+01 3.39773e+01 lineto -4.565763e+01 3.419183e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.563048e+01 3.61835e+01 moveto -4.565763e+01 3.419183e+01 lineto -4.868412e+01 3.39773e+01 lineto -4.866121e+01 3.596866e+01 lineto -4.563048e+01 3.61835e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.56475e+01 3.819756e+01 moveto -4.563048e+01 3.61835e+01 lineto -4.866121e+01 3.596866e+01 lineto -4.867558e+01 3.798291e+01 lineto -4.56475e+01 3.819756e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.570868e+01 4.022942e+01 moveto -4.56475e+01 3.819756e+01 lineto -4.867558e+01 3.798291e+01 lineto -4.872718e+01 4.001545e+01 lineto -4.570868e+01 4.022942e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.581386e+01 4.227445e+01 moveto -4.570868e+01 4.022942e+01 lineto -4.872718e+01 4.001545e+01 lineto -4.88159e+01 4.206164e+01 lineto -4.581386e+01 4.227445e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.59628e+01 4.432797e+01 moveto -4.581386e+01 4.227445e+01 lineto -4.88159e+01 4.206164e+01 lineto -4.894154e+01 4.411682e+01 lineto -4.59628e+01 4.432797e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.615518e+01 4.63853e+01 moveto -4.59628e+01 4.432797e+01 lineto -4.894154e+01 4.411682e+01 lineto -4.910381e+01 4.617629e+01 lineto -4.615518e+01 4.63853e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.639054e+01 4.844176e+01 moveto -4.615518e+01 4.63853e+01 lineto -4.910381e+01 4.617629e+01 lineto -4.930235e+01 4.823536e+01 lineto -4.639054e+01 4.844176e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.666835e+01 5.049265e+01 moveto -4.639054e+01 4.844176e+01 lineto -4.930235e+01 4.823536e+01 lineto -4.953669e+01 5.028932e+01 lineto -4.666835e+01 5.049265e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.698798e+01 5.253329e+01 moveto -4.666835e+01 5.049265e+01 lineto -4.953669e+01 5.028932e+01 lineto -4.980631e+01 5.233351e+01 lineto -4.698798e+01 5.253329e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.734869e+01 5.455902e+01 moveto -4.698798e+01 5.253329e+01 lineto -4.980631e+01 5.233351e+01 lineto -5.011058e+01 5.436325e+01 lineto -4.734869e+01 5.455902e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.774967e+01 5.656524e+01 moveto -4.734869e+01 5.455902e+01 lineto -5.011058e+01 5.436325e+01 lineto -5.044882e+01 5.63739e+01 lineto -4.774967e+01 5.656524e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.819e+01 5.854735e+01 moveto -4.774967e+01 5.656524e+01 lineto -5.044882e+01 5.63739e+01 lineto -5.082025e+01 5.83609e+01 lineto -4.819e+01 5.854735e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.866868e+01 6.050083e+01 moveto -4.819e+01 5.854735e+01 lineto -5.082025e+01 5.83609e+01 lineto -5.122403e+01 6.03197e+01 lineto -4.866868e+01 6.050083e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.918461e+01 6.242124e+01 moveto -4.866868e+01 6.050083e+01 lineto -5.122403e+01 6.03197e+01 lineto -5.165924e+01 6.224583e+01 lineto -4.918461e+01 6.242124e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.973662e+01 6.43042e+01 moveto -4.918461e+01 6.242124e+01 lineto -5.165924e+01 6.224583e+01 lineto -5.212487e+01 6.41349e+01 lineto -4.973662e+01 6.43042e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.032345e+01 6.614539e+01 moveto -4.973662e+01 6.43042e+01 lineto -5.212487e+01 6.41349e+01 lineto -5.261988e+01 6.598261e+01 lineto -5.032345e+01 6.614539e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.094375e+01 6.794063e+01 moveto -5.032345e+01 6.614539e+01 lineto -5.261988e+01 6.598261e+01 lineto -5.314313e+01 6.778473e+01 lineto -5.094375e+01 6.794063e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.159612e+01 6.968583e+01 moveto -5.094375e+01 6.794063e+01 lineto -5.314313e+01 6.778473e+01 lineto -5.369342e+01 6.953716e+01 lineto -5.159612e+01 6.968583e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.227907e+01 7.137699e+01 moveto -5.159612e+01 6.968583e+01 lineto -5.369342e+01 6.953716e+01 lineto -5.426951e+01 7.123589e+01 lineto -5.227907e+01 7.137699e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.299104e+01 7.301026e+01 moveto -5.227907e+01 7.137699e+01 lineto -5.426951e+01 7.123589e+01 lineto -5.487007e+01 7.287706e+01 lineto -5.299104e+01 7.301026e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.373039e+01 7.458192e+01 moveto -5.299104e+01 7.301026e+01 lineto -5.487007e+01 7.287706e+01 lineto -5.549374e+01 7.445692e+01 lineto -5.373039e+01 7.458192e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.449546e+01 7.608838e+01 moveto -5.373039e+01 7.458192e+01 lineto -5.549374e+01 7.445692e+01 lineto -5.61391e+01 7.597187e+01 lineto -5.449546e+01 7.608838e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.528449e+01 7.75262e+01 moveto -5.449546e+01 7.608838e+01 lineto -5.61391e+01 7.597187e+01 lineto -5.680467e+01 7.741844e+01 lineto -5.528449e+01 7.75262e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.609568e+01 7.889211e+01 moveto -5.528449e+01 7.75262e+01 lineto -5.680467e+01 7.741844e+01 lineto -5.748893e+01 7.879335e+01 lineto -5.609568e+01 7.889211e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.692718e+01 8.018299e+01 moveto -5.609568e+01 7.889211e+01 lineto -5.748893e+01 7.879335e+01 lineto -5.819033e+01 8.009345e+01 lineto -5.692718e+01 8.018299e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.77771e+01 8.139589e+01 moveto -5.692718e+01 8.018299e+01 lineto -5.819033e+01 8.009345e+01 lineto -5.890726e+01 8.131577e+01 lineto -5.77771e+01 8.139589e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.86435e+01 8.252804e+01 moveto -5.77771e+01 8.139589e+01 lineto -5.890726e+01 8.131577e+01 lineto -5.963809e+01 8.245754e+01 lineto -5.86435e+01 8.252804e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.952439e+01 8.357688e+01 moveto -5.86435e+01 8.252804e+01 lineto -5.963809e+01 8.245754e+01 lineto -6.038116e+01 8.351614e+01 lineto -5.952439e+01 8.357688e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.041778e+01 8.453999e+01 moveto -5.952439e+01 8.357688e+01 lineto -6.038116e+01 8.351614e+01 lineto -6.113475e+01 8.448917e+01 lineto -6.041778e+01 8.453999e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.132161e+01 8.541519e+01 moveto -6.041778e+01 8.453999e+01 lineto -6.113475e+01 8.448917e+01 lineto -6.189717e+01 8.537439e+01 lineto -6.132161e+01 8.541519e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.223384e+01 8.620047e+01 moveto -6.132161e+01 8.541519e+01 lineto -6.189717e+01 8.537439e+01 lineto -6.266666e+01 8.616979e+01 lineto -6.223384e+01 8.620047e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.315238e+01 8.689406e+01 moveto -6.223384e+01 8.620047e+01 lineto -6.266666e+01 8.616979e+01 lineto -6.344148e+01 8.687356e+01 lineto -6.315238e+01 8.689406e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.407514e+01 8.749436e+01 moveto -6.315238e+01 8.689406e+01 lineto -6.344148e+01 8.687356e+01 lineto -6.421985e+01 8.74841e+01 lineto -6.407514e+01 8.749436e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.407514e+01 8.749436e+01 lineto -6.421985e+01 8.74841e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.935293e+01 2.452029e+01 moveto -4.959541e+01 2.275907e+01 lineto -5.254784e+01 2.261349e+01 lineto -5.235183e+01 2.437242e+01 lineto -4.935293e+01 2.452029e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.914615e+01 2.633051e+01 moveto -4.935293e+01 2.452029e+01 lineto -5.235183e+01 2.437242e+01 lineto -5.218468e+01 2.618068e+01 lineto -4.914615e+01 2.633051e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.897552e+01 2.818559e+01 moveto -4.914615e+01 2.633051e+01 lineto -5.218468e+01 2.618068e+01 lineto -5.204675e+01 2.803416e+01 lineto -4.897552e+01 2.818559e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.884146e+01 3.008132e+01 moveto -4.897552e+01 2.818559e+01 lineto -5.204675e+01 2.803416e+01 lineto -5.193838e+01 2.992861e+01 lineto -4.884146e+01 3.008132e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.874425e+01 3.201335e+01 moveto -4.884146e+01 3.008132e+01 lineto -5.193838e+01 2.992861e+01 lineto -5.18598e+01 3.185973e+01 lineto -4.874425e+01 3.201335e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.868412e+01 3.39773e+01 moveto -4.874425e+01 3.201335e+01 lineto -5.18598e+01 3.185973e+01 lineto -5.18112e+01 3.38231e+01 lineto -4.868412e+01 3.39773e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.866121e+01 3.596866e+01 moveto -4.868412e+01 3.39773e+01 lineto -5.18112e+01 3.38231e+01 lineto -5.179268e+01 3.581426e+01 lineto -4.866121e+01 3.596866e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.867558e+01 3.798291e+01 moveto -4.866121e+01 3.596866e+01 lineto -5.179268e+01 3.581426e+01 lineto -5.18043e+01 3.782864e+01 lineto -4.867558e+01 3.798291e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.872718e+01 4.001545e+01 moveto -4.867558e+01 3.798291e+01 lineto -5.18043e+01 3.782864e+01 lineto -5.184601e+01 3.986167e+01 lineto -4.872718e+01 4.001545e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.88159e+01 4.206164e+01 moveto -4.872718e+01 4.001545e+01 lineto -5.184601e+01 3.986167e+01 lineto -5.191773e+01 4.19087e+01 lineto -4.88159e+01 4.206164e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.894154e+01 4.411682e+01 moveto -4.88159e+01 4.206164e+01 lineto -5.191773e+01 4.19087e+01 lineto -5.201929e+01 4.396506e+01 lineto -4.894154e+01 4.411682e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.910381e+01 4.617629e+01 moveto -4.894154e+01 4.411682e+01 lineto -5.201929e+01 4.396506e+01 lineto -5.215046e+01 4.602606e+01 lineto -4.910381e+01 4.617629e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.930235e+01 4.823536e+01 moveto -4.910381e+01 4.617629e+01 lineto -5.215046e+01 4.602606e+01 lineto -5.231094e+01 4.808701e+01 lineto -4.930235e+01 4.823536e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.953669e+01 5.028932e+01 moveto -4.930235e+01 4.823536e+01 lineto -5.231094e+01 4.808701e+01 lineto -5.250037e+01 5.014319e+01 lineto -4.953669e+01 5.028932e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.980631e+01 5.233351e+01 moveto -4.953669e+01 5.028932e+01 lineto -5.250037e+01 5.014319e+01 lineto -5.271831e+01 5.218992e+01 lineto -4.980631e+01 5.233351e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.011058e+01 5.436325e+01 moveto -4.980631e+01 5.233351e+01 lineto -5.271831e+01 5.218992e+01 lineto -5.296427e+01 5.422254e+01 lineto -5.011058e+01 5.436325e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.044882e+01 5.63739e+01 moveto -5.011058e+01 5.436325e+01 lineto -5.296427e+01 5.422254e+01 lineto -5.323768e+01 5.623639e+01 lineto -5.044882e+01 5.63739e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.082025e+01 5.83609e+01 moveto -5.044882e+01 5.63739e+01 lineto -5.323768e+01 5.623639e+01 lineto -5.353793e+01 5.82269e+01 lineto -5.082025e+01 5.83609e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.122403e+01 6.03197e+01 moveto -5.082025e+01 5.83609e+01 lineto -5.353793e+01 5.82269e+01 lineto -5.386432e+01 6.018951e+01 lineto -5.122403e+01 6.03197e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.165924e+01 6.224583e+01 moveto -5.122403e+01 6.03197e+01 lineto -5.386432e+01 6.018951e+01 lineto -5.421611e+01 6.211975e+01 lineto -5.165924e+01 6.224583e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.212487e+01 6.41349e+01 moveto -5.165924e+01 6.224583e+01 lineto -5.421611e+01 6.211975e+01 lineto -5.45925e+01 6.401323e+01 lineto -5.212487e+01 6.41349e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.261988e+01 6.598261e+01 moveto -5.212487e+01 6.41349e+01 lineto -5.45925e+01 6.401323e+01 lineto -5.499264e+01 6.586561e+01 lineto -5.261988e+01 6.598261e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.314313e+01 6.778473e+01 moveto -5.261988e+01 6.598261e+01 lineto -5.499264e+01 6.586561e+01 lineto -5.54156e+01 6.767268e+01 lineto -5.314313e+01 6.778473e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.369342e+01 6.953716e+01 moveto -5.314313e+01 6.778473e+01 lineto -5.54156e+01 6.767268e+01 lineto -5.586043e+01 6.943031e+01 lineto -5.369342e+01 6.953716e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.426951e+01 7.123589e+01 moveto -5.369342e+01 6.953716e+01 lineto -5.586043e+01 6.943031e+01 lineto -5.63261e+01 7.113449e+01 lineto -5.426951e+01 7.123589e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.487007e+01 7.287706e+01 moveto -5.426951e+01 7.123589e+01 lineto -5.63261e+01 7.113449e+01 lineto -5.681156e+01 7.278133e+01 lineto -5.487007e+01 7.287706e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.549374e+01 7.445692e+01 moveto -5.487007e+01 7.287706e+01 lineto -5.681156e+01 7.278133e+01 lineto -5.73157e+01 7.436709e+01 lineto -5.549374e+01 7.445692e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.61391e+01 7.597187e+01 moveto -5.549374e+01 7.445692e+01 lineto -5.73157e+01 7.436709e+01 lineto -5.783737e+01 7.588813e+01 lineto -5.61391e+01 7.597187e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.680467e+01 7.741844e+01 moveto -5.61391e+01 7.597187e+01 lineto -5.783737e+01 7.588813e+01 lineto -5.837538e+01 7.734099e+01 lineto -5.680467e+01 7.741844e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.748893e+01 7.879335e+01 moveto -5.680467e+01 7.741844e+01 lineto -5.837538e+01 7.734099e+01 lineto -5.89285e+01 7.872237e+01 lineto -5.748893e+01 7.879335e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.819033e+01 8.009345e+01 moveto -5.748893e+01 7.879335e+01 lineto -5.89285e+01 7.872237e+01 lineto -5.949546e+01 8.002909e+01 lineto -5.819033e+01 8.009345e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.890726e+01 8.131577e+01 moveto -5.819033e+01 8.009345e+01 lineto -5.949546e+01 8.002909e+01 lineto -6.007499e+01 8.12582e+01 lineto -5.890726e+01 8.131577e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.963809e+01 8.245754e+01 moveto -5.890726e+01 8.131577e+01 lineto -6.007499e+01 8.12582e+01 lineto -6.066575e+01 8.240687e+01 lineto -5.963809e+01 8.245754e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.038116e+01 8.351614e+01 moveto -5.963809e+01 8.245754e+01 lineto -6.066575e+01 8.240687e+01 lineto -6.12664e+01 8.347249e+01 lineto -6.038116e+01 8.351614e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.113475e+01 8.448917e+01 moveto -6.038116e+01 8.351614e+01 lineto -6.12664e+01 8.347249e+01 lineto -6.187556e+01 8.445264e+01 lineto -6.113475e+01 8.448917e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.189717e+01 8.537439e+01 moveto -6.113475e+01 8.448917e+01 lineto -6.187556e+01 8.445264e+01 lineto -6.249185e+01 8.534507e+01 lineto -6.189717e+01 8.537439e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.266666e+01 8.616979e+01 moveto -6.189717e+01 8.537439e+01 lineto -6.249185e+01 8.534507e+01 lineto -6.311387e+01 8.614774e+01 lineto -6.266666e+01 8.616979e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.344148e+01 8.687356e+01 moveto -6.266666e+01 8.616979e+01 lineto -6.311387e+01 8.614774e+01 lineto -6.374018e+01 8.685884e+01 lineto -6.344148e+01 8.687356e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.421985e+01 8.74841e+01 moveto -6.344148e+01 8.687356e+01 lineto -6.374018e+01 8.685884e+01 lineto -6.436937e+01 8.747673e+01 lineto -6.421985e+01 8.74841e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.421985e+01 8.74841e+01 lineto -6.436937e+01 8.747673e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.235183e+01 2.437242e+01 moveto -5.254784e+01 2.261349e+01 lineto -5.557703e+01 2.252578e+01 lineto -5.542871e+01 2.428333e+01 lineto -5.235183e+01 2.437242e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.218468e+01 2.618068e+01 moveto -5.235183e+01 2.437242e+01 lineto -5.542871e+01 2.428333e+01 lineto -5.530222e+01 2.609042e+01 lineto -5.218468e+01 2.618068e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.204675e+01 2.803416e+01 moveto -5.218468e+01 2.618068e+01 lineto -5.530222e+01 2.609042e+01 lineto -5.519785e+01 2.794292e+01 lineto -5.204675e+01 2.803416e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.193838e+01 2.992861e+01 moveto -5.204675e+01 2.803416e+01 lineto -5.519785e+01 2.794292e+01 lineto -5.511584e+01 2.983661e+01 lineto -5.193838e+01 2.992861e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.18598e+01 3.185973e+01 moveto -5.193838e+01 2.992861e+01 lineto -5.511584e+01 2.983661e+01 lineto -5.505638e+01 3.176718e+01 lineto -5.18598e+01 3.185973e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.18112e+01 3.38231e+01 moveto -5.18598e+01 3.185973e+01 lineto -5.505638e+01 3.176718e+01 lineto -5.50196e+01 3.373021e+01 lineto -5.18112e+01 3.38231e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.179268e+01 3.581426e+01 moveto -5.18112e+01 3.38231e+01 lineto -5.50196e+01 3.373021e+01 lineto -5.500558e+01 3.572123e+01 lineto -5.179268e+01 3.581426e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.18043e+01 3.782864e+01 moveto -5.179268e+01 3.581426e+01 lineto -5.500558e+01 3.572123e+01 lineto -5.501437e+01 3.77357e+01 lineto -5.18043e+01 3.782864e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.184601e+01 3.986167e+01 moveto -5.18043e+01 3.782864e+01 lineto -5.501437e+01 3.77357e+01 lineto -5.504593e+01 3.976902e+01 lineto -5.184601e+01 3.986167e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.191773e+01 4.19087e+01 moveto -5.184601e+01 3.986167e+01 lineto -5.504593e+01 3.976902e+01 lineto -5.510021e+01 4.181655e+01 lineto -5.191773e+01 4.19087e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.201929e+01 4.396506e+01 moveto -5.191773e+01 4.19087e+01 lineto -5.510021e+01 4.181655e+01 lineto -5.517706e+01 4.387363e+01 lineto -5.201929e+01 4.396506e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.215046e+01 4.602606e+01 moveto -5.201929e+01 4.396506e+01 lineto -5.517706e+01 4.387363e+01 lineto -5.527632e+01 4.593556e+01 lineto -5.215046e+01 4.602606e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.231094e+01 4.808701e+01 moveto -5.215046e+01 4.602606e+01 lineto -5.527632e+01 4.593556e+01 lineto -5.539776e+01 4.799763e+01 lineto -5.231094e+01 4.808701e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.250037e+01 5.014319e+01 moveto -5.231094e+01 4.808701e+01 lineto -5.539776e+01 4.799763e+01 lineto -5.554111e+01 5.005515e+01 lineto -5.250037e+01 5.014319e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.271831e+01 5.218992e+01 moveto -5.250037e+01 5.014319e+01 lineto -5.554111e+01 5.005515e+01 lineto -5.570603e+01 5.210342e+01 lineto -5.271831e+01 5.218992e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.296427e+01 5.422254e+01 moveto -5.271831e+01 5.218992e+01 lineto -5.570603e+01 5.210342e+01 lineto -5.589216e+01 5.413776e+01 lineto -5.296427e+01 5.422254e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.323768e+01 5.623639e+01 moveto -5.296427e+01 5.422254e+01 lineto -5.589216e+01 5.413776e+01 lineto -5.609906e+01 5.615354e+01 lineto -5.323768e+01 5.623639e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.353793e+01 5.82269e+01 moveto -5.323768e+01 5.623639e+01 lineto -5.609906e+01 5.615354e+01 lineto -5.632627e+01 5.814616e+01 lineto -5.353793e+01 5.82269e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.386432e+01 6.018951e+01 moveto -5.353793e+01 5.82269e+01 lineto -5.632627e+01 5.814616e+01 lineto -5.657326e+01 6.011107e+01 lineto -5.386432e+01 6.018951e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.421611e+01 6.211975e+01 moveto -5.386432e+01 6.018951e+01 lineto -5.657326e+01 6.011107e+01 lineto -5.683947e+01 6.20438e+01 lineto -5.421611e+01 6.211975e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.45925e+01 6.401323e+01 moveto -5.421611e+01 6.211975e+01 lineto -5.683947e+01 6.20438e+01 lineto -5.71243e+01 6.393992e+01 lineto -5.45925e+01 6.401323e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.499264e+01 6.586561e+01 moveto -5.45925e+01 6.401323e+01 lineto -5.71243e+01 6.393992e+01 lineto -5.742709e+01 6.579512e+01 lineto -5.499264e+01 6.586561e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.54156e+01 6.767268e+01 moveto -5.499264e+01 6.586561e+01 lineto -5.742709e+01 6.579512e+01 lineto -5.774716e+01 6.760517e+01 lineto -5.54156e+01 6.767268e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.586043e+01 6.943031e+01 moveto -5.54156e+01 6.767268e+01 lineto -5.774716e+01 6.760517e+01 lineto -5.808378e+01 6.936593e+01 lineto -5.586043e+01 6.943031e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.63261e+01 7.113449e+01 moveto -5.586043e+01 6.943031e+01 lineto -5.808378e+01 6.936593e+01 lineto -5.843617e+01 7.107339e+01 lineto -5.63261e+01 7.113449e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.681156e+01 7.278133e+01 moveto -5.63261e+01 7.113449e+01 lineto -5.843617e+01 7.107339e+01 lineto -5.880353e+01 7.272366e+01 lineto -5.681156e+01 7.278133e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.73157e+01 7.436709e+01 moveto -5.681156e+01 7.278133e+01 lineto -5.880353e+01 7.272366e+01 lineto -5.918503e+01 7.431296e+01 lineto -5.73157e+01 7.436709e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.783737e+01 7.588813e+01 moveto -5.73157e+01 7.436709e+01 lineto -5.918503e+01 7.431296e+01 lineto -5.95798e+01 7.583768e+01 lineto -5.783737e+01 7.588813e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.837538e+01 7.734099e+01 moveto -5.783737e+01 7.588813e+01 lineto -5.95798e+01 7.583768e+01 lineto -5.998693e+01 7.729433e+01 lineto -5.837538e+01 7.734099e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.89285e+01 7.872237e+01 moveto -5.837538e+01 7.734099e+01 lineto -5.998693e+01 7.729433e+01 lineto -6.040549e+01 7.86796e+01 lineto -5.89285e+01 7.872237e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.949546e+01 8.002909e+01 moveto -5.89285e+01 7.872237e+01 lineto -6.040549e+01 7.86796e+01 lineto -6.083453e+01 7.999032e+01 lineto -5.949546e+01 8.002909e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.007499e+01 8.12582e+01 moveto -5.949546e+01 8.002909e+01 lineto -6.083453e+01 7.999032e+01 lineto -6.127308e+01 8.122351e+01 lineto -6.007499e+01 8.12582e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.066575e+01 8.240687e+01 moveto -6.007499e+01 8.12582e+01 lineto -6.127308e+01 8.122351e+01 lineto -6.172013e+01 8.237634e+01 lineto -6.066575e+01 8.240687e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.12664e+01 8.347249e+01 moveto -6.066575e+01 8.240687e+01 lineto -6.172013e+01 8.237634e+01 lineto -6.217466e+01 8.34462e+01 lineto -6.12664e+01 8.347249e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.187556e+01 8.445264e+01 moveto -6.12664e+01 8.347249e+01 lineto -6.217466e+01 8.34462e+01 lineto -6.263563e+01 8.443063e+01 lineto -6.187556e+01 8.445264e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.249185e+01 8.534507e+01 moveto -6.187556e+01 8.445264e+01 lineto -6.263563e+01 8.443063e+01 lineto -6.3102e+01 8.53274e+01 lineto -6.249185e+01 8.534507e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.311387e+01 8.614774e+01 moveto -6.249185e+01 8.534507e+01 lineto -6.3102e+01 8.53274e+01 lineto -6.35727e+01 8.613446e+01 lineto -6.311387e+01 8.614774e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.374018e+01 8.685884e+01 moveto -6.311387e+01 8.614774e+01 lineto -6.35727e+01 8.613446e+01 lineto -6.404665e+01 8.684996e+01 lineto -6.374018e+01 8.685884e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.436937e+01 8.747673e+01 moveto -6.374018e+01 8.685884e+01 lineto -6.404665e+01 8.684996e+01 lineto -6.452278e+01 8.747228e+01 lineto -6.436937e+01 8.747673e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.436937e+01 8.747673e+01 lineto -6.452278e+01 8.747228e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.542871e+01 2.428333e+01 moveto -5.557703e+01 2.252578e+01 lineto -5.866432e+01 2.249648e+01 lineto -5.856459e+01 2.425357e+01 lineto -5.542871e+01 2.428333e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.530222e+01 2.609042e+01 moveto -5.542871e+01 2.428333e+01 lineto -5.856459e+01 2.425357e+01 lineto -5.847955e+01 2.606026e+01 lineto -5.530222e+01 2.609042e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.519785e+01 2.794292e+01 moveto -5.530222e+01 2.609042e+01 lineto -5.847955e+01 2.606026e+01 lineto -5.840937e+01 2.791244e+01 lineto -5.519785e+01 2.794292e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.511584e+01 2.983661e+01 moveto -5.519785e+01 2.794292e+01 lineto -5.840937e+01 2.791244e+01 lineto -5.835423e+01 2.980588e+01 lineto -5.511584e+01 2.983661e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.505638e+01 3.176718e+01 moveto -5.511584e+01 2.983661e+01 lineto -5.835423e+01 2.980588e+01 lineto -5.831425e+01 3.173626e+01 lineto -5.505638e+01 3.176718e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.50196e+01 3.373021e+01 moveto -5.505638e+01 3.176718e+01 lineto -5.831425e+01 3.173626e+01 lineto -5.828952e+01 3.369918e+01 lineto -5.50196e+01 3.373021e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.500558e+01 3.572123e+01 moveto -5.50196e+01 3.373021e+01 lineto -5.828952e+01 3.369918e+01 lineto -5.82801e+01 3.569016e+01 lineto -5.500558e+01 3.572123e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.501437e+01 3.77357e+01 moveto -5.500558e+01 3.572123e+01 lineto -5.82801e+01 3.569016e+01 lineto -5.828601e+01 3.770465e+01 lineto -5.501437e+01 3.77357e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.504593e+01 3.976902e+01 moveto -5.501437e+01 3.77357e+01 lineto -5.828601e+01 3.770465e+01 lineto -5.830723e+01 3.973807e+01 lineto -5.504593e+01 3.976902e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.510021e+01 4.181655e+01 moveto -5.504593e+01 3.976902e+01 lineto -5.830723e+01 3.973807e+01 lineto -5.834372e+01 4.178577e+01 lineto -5.510021e+01 4.181655e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.517706e+01 4.387363e+01 moveto -5.510021e+01 4.181655e+01 lineto -5.834372e+01 4.178577e+01 lineto -5.83954e+01 4.384309e+01 lineto -5.517706e+01 4.387363e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.527632e+01 4.593556e+01 moveto -5.517706e+01 4.387363e+01 lineto -5.83954e+01 4.384309e+01 lineto -5.846214e+01 4.590533e+01 lineto -5.527632e+01 4.593556e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.539776e+01 4.799763e+01 moveto -5.527632e+01 4.593556e+01 lineto -5.846214e+01 4.590533e+01 lineto -5.854379e+01 4.796778e+01 lineto -5.539776e+01 4.799763e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.554111e+01 5.005515e+01 moveto -5.539776e+01 4.799763e+01 lineto -5.854379e+01 4.796778e+01 lineto -5.864017e+01 5.002574e+01 lineto -5.554111e+01 5.005515e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.570603e+01 5.210342e+01 moveto -5.554111e+01 5.005515e+01 lineto -5.864017e+01 5.002574e+01 lineto -5.875106e+01 5.207452e+01 lineto -5.570603e+01 5.210342e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.589216e+01 5.413776e+01 moveto -5.570603e+01 5.210342e+01 lineto -5.875106e+01 5.207452e+01 lineto -5.88762e+01 5.410944e+01 lineto -5.589216e+01 5.413776e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.609906e+01 5.615354e+01 moveto -5.589216e+01 5.413776e+01 lineto -5.88762e+01 5.410944e+01 lineto -5.901532e+01 5.612587e+01 lineto -5.609906e+01 5.615354e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.632627e+01 5.814616e+01 moveto -5.609906e+01 5.615354e+01 lineto -5.901532e+01 5.612587e+01 lineto -5.916808e+01 5.811919e+01 lineto -5.632627e+01 5.814616e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.657326e+01 6.011107e+01 moveto -5.632627e+01 5.814616e+01 lineto -5.916808e+01 5.811919e+01 lineto -5.933415e+01 6.008487e+01 lineto -5.657326e+01 6.011107e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.683947e+01 6.20438e+01 moveto -5.657326e+01 6.011107e+01 lineto -5.933415e+01 6.008487e+01 lineto -5.951314e+01 6.201843e+01 lineto -5.683947e+01 6.20438e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.71243e+01 6.393992e+01 moveto -5.683947e+01 6.20438e+01 lineto -5.951314e+01 6.201843e+01 lineto -5.970465e+01 6.391544e+01 lineto -5.71243e+01 6.393992e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.742709e+01 6.579512e+01 moveto -5.71243e+01 6.393992e+01 lineto -5.970465e+01 6.391544e+01 lineto -5.990824e+01 6.577158e+01 lineto -5.742709e+01 6.579512e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.774716e+01 6.760517e+01 moveto -5.742709e+01 6.579512e+01 lineto -5.990824e+01 6.577158e+01 lineto -6.012344e+01 6.758262e+01 lineto -5.774716e+01 6.760517e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.808378e+01 6.936593e+01 moveto -5.774716e+01 6.760517e+01 lineto -6.012344e+01 6.758262e+01 lineto -6.034977e+01 6.934443e+01 lineto -5.808378e+01 6.936593e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.843617e+01 7.107339e+01 moveto -5.808378e+01 6.936593e+01 lineto -6.034977e+01 6.934443e+01 lineto -6.058671e+01 7.105298e+01 lineto -5.843617e+01 7.107339e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.880353e+01 7.272366e+01 moveto -5.843617e+01 7.107339e+01 lineto -6.058671e+01 7.105298e+01 lineto -6.083371e+01 7.270439e+01 lineto -5.880353e+01 7.272366e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.918503e+01 7.431296e+01 moveto -5.880353e+01 7.272366e+01 lineto -6.083371e+01 7.270439e+01 lineto -6.109022e+01 7.429488e+01 lineto -5.918503e+01 7.431296e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.95798e+01 7.583768e+01 moveto -5.918503e+01 7.431296e+01 lineto -6.109022e+01 7.429488e+01 lineto -6.135564e+01 7.582083e+01 lineto -5.95798e+01 7.583768e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.998693e+01 7.729433e+01 moveto -5.95798e+01 7.583768e+01 lineto -6.135564e+01 7.582083e+01 lineto -6.162938e+01 7.727875e+01 lineto -5.998693e+01 7.729433e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.040549e+01 7.86796e+01 moveto -5.998693e+01 7.729433e+01 lineto -6.162938e+01 7.727875e+01 lineto -6.191081e+01 7.866532e+01 lineto -6.040549e+01 7.86796e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.083453e+01 7.999032e+01 moveto -6.040549e+01 7.86796e+01 lineto -6.191081e+01 7.866532e+01 lineto -6.219928e+01 7.997737e+01 lineto -6.083453e+01 7.999032e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.127308e+01 8.122351e+01 moveto -6.083453e+01 7.999032e+01 lineto -6.219928e+01 7.997737e+01 lineto -6.249415e+01 8.121192e+01 lineto -6.127308e+01 8.122351e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.172013e+01 8.237634e+01 moveto -6.127308e+01 8.122351e+01 lineto -6.249415e+01 8.121192e+01 lineto -6.279473e+01 8.236614e+01 lineto -6.172013e+01 8.237634e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.217466e+01 8.34462e+01 moveto -6.172013e+01 8.237634e+01 lineto -6.279473e+01 8.236614e+01 lineto -6.310034e+01 8.343741e+01 lineto -6.217466e+01 8.34462e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.263563e+01 8.443063e+01 moveto -6.217466e+01 8.34462e+01 lineto -6.310034e+01 8.343741e+01 lineto -6.341028e+01 8.442328e+01 lineto -6.263563e+01 8.443063e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.3102e+01 8.53274e+01 moveto -6.263563e+01 8.443063e+01 lineto -6.341028e+01 8.442328e+01 lineto -6.372385e+01 8.53215e+01 lineto -6.3102e+01 8.53274e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.35727e+01 8.613446e+01 moveto -6.3102e+01 8.53274e+01 lineto -6.372385e+01 8.53215e+01 lineto -6.404033e+01 8.613002e+01 lineto -6.35727e+01 8.613446e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.404665e+01 8.684996e+01 moveto -6.35727e+01 8.613446e+01 lineto -6.404033e+01 8.613002e+01 lineto -6.4359e+01 8.6847e+01 lineto -6.404665e+01 8.684996e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.452278e+01 8.747228e+01 moveto -6.404665e+01 8.684996e+01 lineto -6.4359e+01 8.6847e+01 lineto -6.467914e+01 8.74708e+01 lineto -6.452278e+01 8.747228e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.452278e+01 8.747228e+01 lineto -6.467914e+01 8.74708e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.856459e+01 2.425357e+01 moveto -5.866432e+01 2.249648e+01 lineto -6.179068e+01 2.252578e+01 lineto -6.174016e+01 2.428333e+01 lineto -5.856459e+01 2.425357e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.847955e+01 2.606026e+01 moveto -5.856459e+01 2.425357e+01 lineto -6.174016e+01 2.428333e+01 lineto -6.169708e+01 2.609042e+01 lineto -5.847955e+01 2.606026e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.840937e+01 2.791244e+01 moveto -5.847955e+01 2.606026e+01 lineto -6.169708e+01 2.609042e+01 lineto -6.166153e+01 2.794292e+01 lineto -5.840937e+01 2.791244e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.835423e+01 2.980588e+01 moveto -5.840937e+01 2.791244e+01 lineto -6.166153e+01 2.794292e+01 lineto -6.16336e+01 2.983661e+01 lineto -5.835423e+01 2.980588e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.831425e+01 3.173626e+01 moveto -5.835423e+01 2.980588e+01 lineto -6.16336e+01 2.983661e+01 lineto -6.161335e+01 3.176718e+01 lineto -5.831425e+01 3.173626e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.828952e+01 3.369918e+01 moveto -5.831425e+01 3.173626e+01 lineto -6.161335e+01 3.176718e+01 lineto -6.160082e+01 3.373021e+01 lineto -5.828952e+01 3.369918e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.82801e+01 3.569016e+01 moveto -5.828952e+01 3.369918e+01 lineto -6.160082e+01 3.373021e+01 lineto -6.159605e+01 3.572123e+01 lineto -5.82801e+01 3.569016e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.828601e+01 3.770465e+01 moveto -5.82801e+01 3.569016e+01 lineto -6.159605e+01 3.572123e+01 lineto -6.159904e+01 3.77357e+01 lineto -5.828601e+01 3.770465e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.830723e+01 3.973807e+01 moveto -5.828601e+01 3.770465e+01 lineto -6.159904e+01 3.77357e+01 lineto -6.160979e+01 3.976902e+01 lineto -5.830723e+01 3.973807e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.834372e+01 4.178577e+01 moveto -5.830723e+01 3.973807e+01 lineto -6.160979e+01 3.976902e+01 lineto -6.162828e+01 4.181655e+01 lineto -5.834372e+01 4.178577e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.83954e+01 4.384309e+01 moveto -5.834372e+01 4.178577e+01 lineto -6.162828e+01 4.181655e+01 lineto -6.165445e+01 4.387363e+01 lineto -5.83954e+01 4.384309e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.846214e+01 4.590533e+01 moveto -5.83954e+01 4.384309e+01 lineto -6.165445e+01 4.387363e+01 lineto -6.168826e+01 4.593556e+01 lineto -5.846214e+01 4.590533e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.854379e+01 4.796778e+01 moveto -5.846214e+01 4.590533e+01 lineto -6.168826e+01 4.593556e+01 lineto -6.172962e+01 4.799763e+01 lineto -5.854379e+01 4.796778e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.864017e+01 5.002574e+01 moveto -5.854379e+01 4.796778e+01 lineto -6.172962e+01 4.799763e+01 lineto -6.177844e+01 5.005515e+01 lineto -5.864017e+01 5.002574e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.875106e+01 5.207452e+01 moveto -5.864017e+01 5.002574e+01 lineto -6.177844e+01 5.005515e+01 lineto -6.183461e+01 5.210342e+01 lineto -5.875106e+01 5.207452e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.88762e+01 5.410944e+01 moveto -5.875106e+01 5.207452e+01 lineto -6.183461e+01 5.210342e+01 lineto -6.1898e+01 5.413776e+01 lineto -5.88762e+01 5.410944e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.901532e+01 5.612587e+01 moveto -5.88762e+01 5.410944e+01 lineto -6.1898e+01 5.413776e+01 lineto -6.196847e+01 5.615354e+01 lineto -5.901532e+01 5.612587e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.916808e+01 5.811919e+01 moveto -5.901532e+01 5.612587e+01 lineto -6.196847e+01 5.615354e+01 lineto -6.204585e+01 5.814616e+01 lineto -5.916808e+01 5.811919e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.933415e+01 6.008487e+01 moveto -5.916808e+01 5.811919e+01 lineto -6.204585e+01 5.814616e+01 lineto -6.212998e+01 6.011107e+01 lineto -5.933415e+01 6.008487e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.951314e+01 6.201843e+01 moveto -5.933415e+01 6.008487e+01 lineto -6.212998e+01 6.011107e+01 lineto -6.222064e+01 6.20438e+01 lineto -5.951314e+01 6.201843e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.970465e+01 6.391544e+01 moveto -5.951314e+01 6.201843e+01 lineto -6.222064e+01 6.20438e+01 lineto -6.231765e+01 6.393992e+01 lineto -5.970465e+01 6.391544e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -5.990824e+01 6.577158e+01 moveto -5.970465e+01 6.391544e+01 lineto -6.231765e+01 6.393992e+01 lineto -6.242078e+01 6.579512e+01 lineto -5.990824e+01 6.577158e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.012344e+01 6.758262e+01 moveto -5.990824e+01 6.577158e+01 lineto -6.242078e+01 6.579512e+01 lineto -6.252979e+01 6.760517e+01 lineto -6.012344e+01 6.758262e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.034977e+01 6.934443e+01 moveto -6.012344e+01 6.758262e+01 lineto -6.252979e+01 6.760517e+01 lineto -6.264444e+01 6.936593e+01 lineto -6.034977e+01 6.934443e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.058671e+01 7.105298e+01 moveto -6.034977e+01 6.934443e+01 lineto -6.264444e+01 6.936593e+01 lineto -6.276446e+01 7.107339e+01 lineto -6.058671e+01 7.105298e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.083371e+01 7.270439e+01 moveto -6.058671e+01 7.105298e+01 lineto -6.276446e+01 7.107339e+01 lineto -6.288957e+01 7.272366e+01 lineto -6.083371e+01 7.270439e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.109022e+01 7.429488e+01 moveto -6.083371e+01 7.270439e+01 lineto -6.288957e+01 7.272366e+01 lineto -6.301951e+01 7.431296e+01 lineto -6.109022e+01 7.429488e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.135564e+01 7.582083e+01 moveto -6.109022e+01 7.429488e+01 lineto -6.301951e+01 7.431296e+01 lineto -6.315396e+01 7.583768e+01 lineto -6.135564e+01 7.582083e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.162938e+01 7.727875e+01 moveto -6.135564e+01 7.582083e+01 lineto -6.315396e+01 7.583768e+01 lineto -6.329262e+01 7.729433e+01 lineto -6.162938e+01 7.727875e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.191081e+01 7.866532e+01 moveto -6.162938e+01 7.727875e+01 lineto -6.329262e+01 7.729433e+01 lineto -6.343518e+01 7.86796e+01 lineto -6.191081e+01 7.866532e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.219928e+01 7.997737e+01 moveto -6.191081e+01 7.866532e+01 lineto -6.343518e+01 7.86796e+01 lineto -6.35813e+01 7.999032e+01 lineto -6.219928e+01 7.997737e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.249415e+01 8.121192e+01 moveto -6.219928e+01 7.997737e+01 lineto -6.35813e+01 7.999032e+01 lineto -6.373067e+01 8.122351e+01 lineto -6.249415e+01 8.121192e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.279473e+01 8.236614e+01 moveto -6.249415e+01 8.121192e+01 lineto -6.373067e+01 8.122351e+01 lineto -6.388292e+01 8.237634e+01 lineto -6.279473e+01 8.236614e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.310034e+01 8.343741e+01 moveto -6.279473e+01 8.236614e+01 lineto -6.388292e+01 8.237634e+01 lineto -6.403773e+01 8.34462e+01 lineto -6.310034e+01 8.343741e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.341028e+01 8.442328e+01 moveto -6.310034e+01 8.343741e+01 lineto -6.403773e+01 8.34462e+01 lineto -6.419473e+01 8.443063e+01 lineto -6.341028e+01 8.442328e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.372385e+01 8.53215e+01 moveto -6.341028e+01 8.442328e+01 lineto -6.419473e+01 8.443063e+01 lineto -6.435357e+01 8.53274e+01 lineto -6.372385e+01 8.53215e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.404033e+01 8.613002e+01 moveto -6.372385e+01 8.53215e+01 lineto -6.435357e+01 8.53274e+01 lineto -6.451388e+01 8.613446e+01 lineto -6.404033e+01 8.613002e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.4359e+01 8.6847e+01 moveto -6.404033e+01 8.613002e+01 lineto -6.451388e+01 8.613446e+01 lineto -6.46753e+01 8.684996e+01 lineto -6.4359e+01 8.6847e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.467914e+01 8.74708e+01 moveto -6.4359e+01 8.6847e+01 lineto -6.46753e+01 8.684996e+01 lineto -6.483747e+01 8.747228e+01 lineto -6.467914e+01 8.74708e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.467914e+01 8.74708e+01 lineto -6.483747e+01 8.747228e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.174016e+01 2.428333e+01 moveto -6.179068e+01 2.252578e+01 lineto -6.493681e+01 2.261349e+01 lineto -6.493582e+01 2.437242e+01 lineto -6.174016e+01 2.428333e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.169708e+01 2.609042e+01 moveto -6.174016e+01 2.428333e+01 lineto -6.493582e+01 2.437242e+01 lineto -6.493497e+01 2.618068e+01 lineto -6.169708e+01 2.609042e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.166153e+01 2.794292e+01 moveto -6.169708e+01 2.609042e+01 lineto -6.493497e+01 2.618068e+01 lineto -6.493427e+01 2.803416e+01 lineto -6.166153e+01 2.794292e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.16336e+01 2.983661e+01 moveto -6.166153e+01 2.794292e+01 lineto -6.493427e+01 2.803416e+01 lineto -6.493372e+01 2.992861e+01 lineto -6.16336e+01 2.983661e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.161335e+01 3.176718e+01 moveto -6.16336e+01 2.983661e+01 lineto -6.493372e+01 2.992861e+01 lineto -6.493332e+01 3.185973e+01 lineto -6.161335e+01 3.176718e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.160082e+01 3.373021e+01 moveto -6.161335e+01 3.176718e+01 lineto -6.493332e+01 3.185973e+01 lineto -6.493308e+01 3.38231e+01 lineto -6.160082e+01 3.373021e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.159605e+01 3.572123e+01 moveto -6.160082e+01 3.373021e+01 lineto -6.493308e+01 3.38231e+01 lineto -6.493298e+01 3.581426e+01 lineto -6.159605e+01 3.572123e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.159904e+01 3.77357e+01 moveto -6.159605e+01 3.572123e+01 lineto -6.493298e+01 3.581426e+01 lineto -6.493304e+01 3.782864e+01 lineto -6.159904e+01 3.77357e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.160979e+01 3.976902e+01 moveto -6.159904e+01 3.77357e+01 lineto -6.493304e+01 3.782864e+01 lineto -6.493325e+01 3.986167e+01 lineto -6.160979e+01 3.976902e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.162828e+01 4.181655e+01 moveto -6.160979e+01 3.976902e+01 lineto -6.493325e+01 3.986167e+01 lineto -6.493362e+01 4.19087e+01 lineto -6.162828e+01 4.181655e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.165445e+01 4.387363e+01 moveto -6.162828e+01 4.181655e+01 lineto -6.493362e+01 4.19087e+01 lineto -6.493413e+01 4.396506e+01 lineto -6.165445e+01 4.387363e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.168826e+01 4.593556e+01 moveto -6.165445e+01 4.387363e+01 lineto -6.493413e+01 4.396506e+01 lineto -6.49348e+01 4.602606e+01 lineto -6.168826e+01 4.593556e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.172962e+01 4.799763e+01 moveto -6.168826e+01 4.593556e+01 lineto -6.49348e+01 4.602606e+01 lineto -6.493561e+01 4.808701e+01 lineto -6.172962e+01 4.799763e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.177844e+01 5.005515e+01 moveto -6.172962e+01 4.799763e+01 lineto -6.493561e+01 4.808701e+01 lineto -6.493657e+01 5.014319e+01 lineto -6.177844e+01 5.005515e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.183461e+01 5.210342e+01 moveto -6.177844e+01 5.005515e+01 lineto -6.493657e+01 5.014319e+01 lineto -6.493768e+01 5.218992e+01 lineto -6.183461e+01 5.210342e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.1898e+01 5.413776e+01 moveto -6.183461e+01 5.210342e+01 lineto -6.493768e+01 5.218992e+01 lineto -6.493893e+01 5.422254e+01 lineto -6.1898e+01 5.413776e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.196847e+01 5.615354e+01 moveto -6.1898e+01 5.413776e+01 lineto -6.493893e+01 5.422254e+01 lineto -6.494032e+01 5.623639e+01 lineto -6.196847e+01 5.615354e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.204585e+01 5.814616e+01 moveto -6.196847e+01 5.615354e+01 lineto -6.494032e+01 5.623639e+01 lineto -6.494184e+01 5.82269e+01 lineto -6.204585e+01 5.814616e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.212998e+01 6.011107e+01 moveto -6.204585e+01 5.814616e+01 lineto -6.494184e+01 5.82269e+01 lineto -6.494349e+01 6.018951e+01 lineto -6.212998e+01 6.011107e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.222064e+01 6.20438e+01 moveto -6.212998e+01 6.011107e+01 lineto -6.494349e+01 6.018951e+01 lineto -6.494528e+01 6.211975e+01 lineto -6.222064e+01 6.20438e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.231765e+01 6.393992e+01 moveto -6.222064e+01 6.20438e+01 lineto -6.494528e+01 6.211975e+01 lineto -6.494719e+01 6.401323e+01 lineto -6.231765e+01 6.393992e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.242078e+01 6.579512e+01 moveto -6.231765e+01 6.393992e+01 lineto -6.494719e+01 6.401323e+01 lineto -6.494922e+01 6.586561e+01 lineto -6.242078e+01 6.579512e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.252979e+01 6.760517e+01 moveto -6.242078e+01 6.579512e+01 lineto -6.494922e+01 6.586561e+01 lineto -6.495137e+01 6.767268e+01 lineto -6.252979e+01 6.760517e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.264444e+01 6.936593e+01 moveto -6.252979e+01 6.760517e+01 lineto -6.495137e+01 6.767268e+01 lineto -6.495362e+01 6.943031e+01 lineto -6.264444e+01 6.936593e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.276446e+01 7.107339e+01 moveto -6.264444e+01 6.936593e+01 lineto -6.495362e+01 6.943031e+01 lineto -6.495599e+01 7.113449e+01 lineto -6.276446e+01 7.107339e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.288957e+01 7.272366e+01 moveto -6.276446e+01 7.107339e+01 lineto -6.495599e+01 7.113449e+01 lineto -6.495845e+01 7.278133e+01 lineto -6.288957e+01 7.272366e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.301951e+01 7.431296e+01 moveto -6.288957e+01 7.272366e+01 lineto -6.495845e+01 7.278133e+01 lineto -6.496101e+01 7.436709e+01 lineto -6.301951e+01 7.431296e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.315396e+01 7.583768e+01 moveto -6.301951e+01 7.431296e+01 lineto -6.496101e+01 7.436709e+01 lineto -6.496366e+01 7.588813e+01 lineto -6.315396e+01 7.583768e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.329262e+01 7.729433e+01 moveto -6.315396e+01 7.583768e+01 lineto -6.496366e+01 7.588813e+01 lineto -6.496639e+01 7.734099e+01 lineto -6.329262e+01 7.729433e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.343518e+01 7.86796e+01 moveto -6.329262e+01 7.729433e+01 lineto -6.496639e+01 7.734099e+01 lineto -6.496919e+01 7.872237e+01 lineto -6.343518e+01 7.86796e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.35813e+01 7.999032e+01 moveto -6.343518e+01 7.86796e+01 lineto -6.496919e+01 7.872237e+01 lineto -6.497207e+01 8.002909e+01 lineto -6.35813e+01 7.999032e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.373067e+01 8.122351e+01 moveto -6.35813e+01 7.999032e+01 lineto -6.497207e+01 8.002909e+01 lineto -6.497501e+01 8.12582e+01 lineto -6.373067e+01 8.122351e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.388292e+01 8.237634e+01 moveto -6.373067e+01 8.122351e+01 lineto -6.497501e+01 8.12582e+01 lineto -6.497801e+01 8.240687e+01 lineto -6.388292e+01 8.237634e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.403773e+01 8.34462e+01 moveto -6.388292e+01 8.237634e+01 lineto -6.497801e+01 8.240687e+01 lineto -6.498105e+01 8.347249e+01 lineto -6.403773e+01 8.34462e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.419473e+01 8.443063e+01 moveto -6.403773e+01 8.34462e+01 lineto -6.498105e+01 8.347249e+01 lineto -6.498415e+01 8.445264e+01 lineto -6.419473e+01 8.443063e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.435357e+01 8.53274e+01 moveto -6.419473e+01 8.443063e+01 lineto -6.498415e+01 8.445264e+01 lineto -6.498727e+01 8.534507e+01 lineto -6.435357e+01 8.53274e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.451388e+01 8.613446e+01 moveto -6.435357e+01 8.53274e+01 lineto -6.498727e+01 8.534507e+01 lineto -6.499043e+01 8.614774e+01 lineto -6.451388e+01 8.613446e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.46753e+01 8.684996e+01 moveto -6.451388e+01 8.613446e+01 lineto -6.499043e+01 8.614774e+01 lineto -6.499361e+01 8.685884e+01 lineto -6.46753e+01 8.684996e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.483747e+01 8.747228e+01 moveto -6.46753e+01 8.684996e+01 lineto -6.499361e+01 8.685884e+01 lineto -6.49968e+01 8.747673e+01 lineto -6.483747e+01 8.747228e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.483747e+01 8.747228e+01 lineto -6.49968e+01 8.747673e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.493582e+01 2.437242e+01 moveto -6.493681e+01 2.261349e+01 lineto -6.808334e+01 2.275907e+01 lineto -6.813188e+01 2.452029e+01 lineto -6.493582e+01 2.437242e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.493497e+01 2.618068e+01 moveto -6.493582e+01 2.437242e+01 lineto -6.813188e+01 2.452029e+01 lineto -6.817327e+01 2.633051e+01 lineto -6.493497e+01 2.618068e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.493427e+01 2.803416e+01 moveto -6.493497e+01 2.618068e+01 lineto -6.817327e+01 2.633051e+01 lineto -6.820742e+01 2.818559e+01 lineto -6.493427e+01 2.803416e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.493372e+01 2.992861e+01 moveto -6.493427e+01 2.803416e+01 lineto -6.820742e+01 2.818559e+01 lineto -6.823425e+01 3.008132e+01 lineto -6.493372e+01 2.992861e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.493332e+01 3.185973e+01 moveto -6.493372e+01 2.992861e+01 lineto -6.823425e+01 3.008132e+01 lineto -6.825371e+01 3.201335e+01 lineto -6.493332e+01 3.185973e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.493308e+01 3.38231e+01 moveto -6.493332e+01 3.185973e+01 lineto -6.825371e+01 3.201335e+01 lineto -6.826575e+01 3.39773e+01 lineto -6.493308e+01 3.38231e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.493298e+01 3.581426e+01 moveto -6.493308e+01 3.38231e+01 lineto -6.826575e+01 3.39773e+01 lineto -6.827033e+01 3.596866e+01 lineto -6.493298e+01 3.581426e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.493304e+01 3.782864e+01 moveto -6.493298e+01 3.581426e+01 lineto -6.827033e+01 3.596866e+01 lineto -6.826746e+01 3.798291e+01 lineto -6.493304e+01 3.782864e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.493325e+01 3.986167e+01 moveto -6.493304e+01 3.782864e+01 lineto -6.826746e+01 3.798291e+01 lineto -6.825713e+01 4.001545e+01 lineto -6.493325e+01 3.986167e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.493362e+01 4.19087e+01 moveto -6.493325e+01 3.986167e+01 lineto -6.825713e+01 4.001545e+01 lineto -6.823937e+01 4.206164e+01 lineto -6.493362e+01 4.19087e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.493413e+01 4.396506e+01 moveto -6.493362e+01 4.19087e+01 lineto -6.823937e+01 4.206164e+01 lineto -6.821422e+01 4.411682e+01 lineto -6.493413e+01 4.396506e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.49348e+01 4.602606e+01 moveto -6.493413e+01 4.396506e+01 lineto -6.821422e+01 4.411682e+01 lineto -6.818174e+01 4.617629e+01 lineto -6.49348e+01 4.602606e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.493561e+01 4.808701e+01 moveto -6.49348e+01 4.602606e+01 lineto -6.818174e+01 4.617629e+01 lineto -6.8142e+01 4.823536e+01 lineto -6.493561e+01 4.808701e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.493657e+01 5.014319e+01 moveto -6.493561e+01 4.808701e+01 lineto -6.8142e+01 4.823536e+01 lineto -6.80951e+01 5.028932e+01 lineto -6.493657e+01 5.014319e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.493768e+01 5.218992e+01 moveto -6.493657e+01 5.014319e+01 lineto -6.80951e+01 5.028932e+01 lineto -6.804113e+01 5.233351e+01 lineto -6.493768e+01 5.218992e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.493893e+01 5.422254e+01 moveto -6.493768e+01 5.218992e+01 lineto -6.804113e+01 5.233351e+01 lineto -6.798023e+01 5.436325e+01 lineto -6.493893e+01 5.422254e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.494032e+01 5.623639e+01 moveto -6.493893e+01 5.422254e+01 lineto -6.798023e+01 5.436325e+01 lineto -6.791253e+01 5.63739e+01 lineto -6.494032e+01 5.623639e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.494184e+01 5.82269e+01 moveto -6.494032e+01 5.623639e+01 lineto -6.791253e+01 5.63739e+01 lineto -6.783818e+01 5.83609e+01 lineto -6.494184e+01 5.82269e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.494349e+01 6.018951e+01 moveto -6.494184e+01 5.82269e+01 lineto -6.783818e+01 5.83609e+01 lineto -6.775736e+01 6.03197e+01 lineto -6.494349e+01 6.018951e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.494528e+01 6.211975e+01 moveto -6.494349e+01 6.018951e+01 lineto -6.775736e+01 6.03197e+01 lineto -6.767025e+01 6.224583e+01 lineto -6.494528e+01 6.211975e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.494719e+01 6.401323e+01 moveto -6.494528e+01 6.211975e+01 lineto -6.767025e+01 6.224583e+01 lineto -6.757705e+01 6.41349e+01 lineto -6.494719e+01 6.401323e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.494922e+01 6.586561e+01 moveto -6.494719e+01 6.401323e+01 lineto -6.757705e+01 6.41349e+01 lineto -6.747797e+01 6.598261e+01 lineto -6.494922e+01 6.586561e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.495137e+01 6.767268e+01 moveto -6.494922e+01 6.586561e+01 lineto -6.747797e+01 6.598261e+01 lineto -6.737324e+01 6.778473e+01 lineto -6.495137e+01 6.767268e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.495362e+01 6.943031e+01 moveto -6.495137e+01 6.767268e+01 lineto -6.737324e+01 6.778473e+01 lineto -6.72631e+01 6.953716e+01 lineto -6.495362e+01 6.943031e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.495599e+01 7.113449e+01 moveto -6.495362e+01 6.943031e+01 lineto -6.72631e+01 6.953716e+01 lineto -6.714779e+01 7.123589e+01 lineto -6.495599e+01 7.113449e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.495845e+01 7.278133e+01 moveto -6.495599e+01 7.113449e+01 lineto -6.714779e+01 7.123589e+01 lineto -6.702758e+01 7.287706e+01 lineto -6.495845e+01 7.278133e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.496101e+01 7.436709e+01 moveto -6.495845e+01 7.278133e+01 lineto -6.702758e+01 7.287706e+01 lineto -6.690275e+01 7.445692e+01 lineto -6.496101e+01 7.436709e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.496366e+01 7.588813e+01 moveto -6.496101e+01 7.436709e+01 lineto -6.690275e+01 7.445692e+01 lineto -6.677358e+01 7.597187e+01 lineto -6.496366e+01 7.588813e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.496639e+01 7.734099e+01 moveto -6.496366e+01 7.588813e+01 lineto -6.677358e+01 7.597187e+01 lineto -6.664036e+01 7.741844e+01 lineto -6.496639e+01 7.734099e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.496919e+01 7.872237e+01 moveto -6.496639e+01 7.734099e+01 lineto -6.664036e+01 7.741844e+01 lineto -6.65034e+01 7.879335e+01 lineto -6.496919e+01 7.872237e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.497207e+01 8.002909e+01 moveto -6.496919e+01 7.872237e+01 lineto -6.65034e+01 7.879335e+01 lineto -6.636301e+01 8.009345e+01 lineto -6.497207e+01 8.002909e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.497501e+01 8.12582e+01 moveto -6.497207e+01 8.002909e+01 lineto -6.636301e+01 8.009345e+01 lineto -6.621951e+01 8.131577e+01 lineto -6.497501e+01 8.12582e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.497801e+01 8.240687e+01 moveto -6.497501e+01 8.12582e+01 lineto -6.621951e+01 8.131577e+01 lineto -6.607323e+01 8.245754e+01 lineto -6.497801e+01 8.240687e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.498105e+01 8.347249e+01 moveto -6.497801e+01 8.240687e+01 lineto -6.607323e+01 8.245754e+01 lineto -6.59245e+01 8.351614e+01 lineto -6.498105e+01 8.347249e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.498415e+01 8.445264e+01 moveto -6.498105e+01 8.347249e+01 lineto -6.59245e+01 8.351614e+01 lineto -6.577366e+01 8.448917e+01 lineto -6.498415e+01 8.445264e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.498727e+01 8.534507e+01 moveto -6.498415e+01 8.445264e+01 lineto -6.577366e+01 8.448917e+01 lineto -6.562105e+01 8.537439e+01 lineto -6.498727e+01 8.534507e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.499043e+01 8.614774e+01 moveto -6.498727e+01 8.534507e+01 lineto -6.562105e+01 8.537439e+01 lineto -6.546703e+01 8.616979e+01 lineto -6.499043e+01 8.614774e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.499361e+01 8.685884e+01 moveto -6.499043e+01 8.614774e+01 lineto -6.546703e+01 8.616979e+01 lineto -6.531195e+01 8.687356e+01 lineto -6.499361e+01 8.685884e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.49968e+01 8.747673e+01 moveto -6.499361e+01 8.685884e+01 lineto -6.531195e+01 8.687356e+01 lineto -6.515615e+01 8.74841e+01 lineto -6.49968e+01 8.747673e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.49968e+01 8.747673e+01 lineto -6.515615e+01 8.74841e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.813188e+01 2.452029e+01 moveto -6.808334e+01 2.275907e+01 lineto -7.121086e+01 2.296162e+01 lineto -7.130863e+01 2.472603e+01 lineto -6.813188e+01 2.452029e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.817327e+01 2.633051e+01 moveto -6.813188e+01 2.452029e+01 lineto -7.130863e+01 2.472603e+01 lineto -7.1392e+01 2.653897e+01 lineto -6.817327e+01 2.633051e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.820742e+01 2.818559e+01 moveto -6.817327e+01 2.633051e+01 lineto -7.1392e+01 2.653897e+01 lineto -7.146079e+01 2.83963e+01 lineto -6.820742e+01 2.818559e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.823425e+01 3.008132e+01 moveto -6.820742e+01 2.818559e+01 lineto -7.146079e+01 2.83963e+01 lineto -7.151484e+01 3.029378e+01 lineto -6.823425e+01 3.008132e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.825371e+01 3.201335e+01 moveto -6.823425e+01 3.008132e+01 lineto -7.151484e+01 3.029378e+01 lineto -7.155404e+01 3.22271e+01 lineto -6.825371e+01 3.201335e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.826575e+01 3.39773e+01 moveto -6.825371e+01 3.201335e+01 lineto -7.155404e+01 3.22271e+01 lineto -7.157828e+01 3.419183e+01 lineto -6.826575e+01 3.39773e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.827033e+01 3.596866e+01 moveto -6.826575e+01 3.39773e+01 lineto -7.157828e+01 3.419183e+01 lineto -7.158752e+01 3.61835e+01 lineto -6.827033e+01 3.596866e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.826746e+01 3.798291e+01 moveto -6.827033e+01 3.596866e+01 lineto -7.158752e+01 3.61835e+01 lineto -7.158172e+01 3.819756e+01 lineto -6.826746e+01 3.798291e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.825713e+01 4.001545e+01 moveto -6.826746e+01 3.798291e+01 lineto -7.158172e+01 3.819756e+01 lineto -7.156092e+01 4.022942e+01 lineto -6.825713e+01 4.001545e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.823937e+01 4.206164e+01 moveto -6.825713e+01 4.001545e+01 lineto -7.156092e+01 4.022942e+01 lineto -7.152515e+01 4.227445e+01 lineto -6.823937e+01 4.206164e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.821422e+01 4.411682e+01 moveto -6.823937e+01 4.206164e+01 lineto -7.152515e+01 4.227445e+01 lineto -7.147449e+01 4.432797e+01 lineto -6.821422e+01 4.411682e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.818174e+01 4.617629e+01 moveto -6.821422e+01 4.411682e+01 lineto -7.147449e+01 4.432797e+01 lineto -7.140907e+01 4.63853e+01 lineto -6.818174e+01 4.617629e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.8142e+01 4.823536e+01 moveto -6.818174e+01 4.617629e+01 lineto -7.140907e+01 4.63853e+01 lineto -7.132902e+01 4.844176e+01 lineto -6.8142e+01 4.823536e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.80951e+01 5.028932e+01 moveto -6.8142e+01 4.823536e+01 lineto -7.132902e+01 4.844176e+01 lineto -7.123454e+01 5.049265e+01 lineto -6.80951e+01 5.028932e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.804113e+01 5.233351e+01 moveto -6.80951e+01 5.028932e+01 lineto -7.123454e+01 5.049265e+01 lineto -7.112583e+01 5.253329e+01 lineto -6.804113e+01 5.233351e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.798023e+01 5.436325e+01 moveto -6.804113e+01 5.233351e+01 lineto -7.112583e+01 5.253329e+01 lineto -7.100316e+01 5.455902e+01 lineto -6.798023e+01 5.436325e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.791253e+01 5.63739e+01 moveto -6.798023e+01 5.436325e+01 lineto -7.100316e+01 5.455902e+01 lineto -7.086678e+01 5.656524e+01 lineto -6.791253e+01 5.63739e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.783818e+01 5.83609e+01 moveto -6.791253e+01 5.63739e+01 lineto -7.086678e+01 5.656524e+01 lineto -7.071703e+01 5.854735e+01 lineto -6.783818e+01 5.83609e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.775736e+01 6.03197e+01 moveto -6.783818e+01 5.83609e+01 lineto -7.071703e+01 5.854735e+01 lineto -7.055423e+01 6.050083e+01 lineto -6.775736e+01 6.03197e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.767025e+01 6.224583e+01 moveto -6.775736e+01 6.03197e+01 lineto -7.055423e+01 6.050083e+01 lineto -7.037876e+01 6.242124e+01 lineto -6.767025e+01 6.224583e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.757705e+01 6.41349e+01 moveto -6.767025e+01 6.224583e+01 lineto -7.037876e+01 6.242124e+01 lineto -7.019103e+01 6.43042e+01 lineto -6.757705e+01 6.41349e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.747797e+01 6.598261e+01 moveto -6.757705e+01 6.41349e+01 lineto -7.019103e+01 6.43042e+01 lineto -6.999145e+01 6.614539e+01 lineto -6.747797e+01 6.598261e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.737324e+01 6.778473e+01 moveto -6.747797e+01 6.598261e+01 lineto -6.999145e+01 6.614539e+01 lineto -6.978049e+01 6.794063e+01 lineto -6.737324e+01 6.778473e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.72631e+01 6.953716e+01 moveto -6.737324e+01 6.778473e+01 lineto -6.978049e+01 6.794063e+01 lineto -6.955862e+01 6.968583e+01 lineto -6.72631e+01 6.953716e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.714779e+01 7.123589e+01 moveto -6.72631e+01 6.953716e+01 lineto -6.955862e+01 6.968583e+01 lineto -6.932635e+01 7.137699e+01 lineto -6.714779e+01 7.123589e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.702758e+01 7.287706e+01 moveto -6.714779e+01 7.123589e+01 lineto -6.932635e+01 7.137699e+01 lineto -6.908421e+01 7.301026e+01 lineto -6.702758e+01 7.287706e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.690275e+01 7.445692e+01 moveto -6.702758e+01 7.287706e+01 lineto -6.908421e+01 7.301026e+01 lineto -6.883276e+01 7.458192e+01 lineto -6.690275e+01 7.445692e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.677358e+01 7.597187e+01 moveto -6.690275e+01 7.445692e+01 lineto -6.883276e+01 7.458192e+01 lineto -6.857256e+01 7.608838e+01 lineto -6.677358e+01 7.597187e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.664036e+01 7.741844e+01 moveto -6.677358e+01 7.597187e+01 lineto -6.857256e+01 7.608838e+01 lineto -6.830422e+01 7.75262e+01 lineto -6.664036e+01 7.741844e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.65034e+01 7.879335e+01 moveto -6.664036e+01 7.741844e+01 lineto -6.830422e+01 7.75262e+01 lineto -6.802833e+01 7.889211e+01 lineto -6.65034e+01 7.879335e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.636301e+01 8.009345e+01 moveto -6.65034e+01 7.879335e+01 lineto -6.802833e+01 7.889211e+01 lineto -6.774554e+01 8.018299e+01 lineto -6.636301e+01 8.009345e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.621951e+01 8.131577e+01 moveto -6.636301e+01 8.009345e+01 lineto -6.774554e+01 8.018299e+01 lineto -6.745649e+01 8.139589e+01 lineto -6.621951e+01 8.131577e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.607323e+01 8.245754e+01 moveto -6.621951e+01 8.131577e+01 lineto -6.745649e+01 8.139589e+01 lineto -6.716183e+01 8.252804e+01 lineto -6.607323e+01 8.245754e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.59245e+01 8.351614e+01 moveto -6.607323e+01 8.245754e+01 lineto -6.716183e+01 8.252804e+01 lineto -6.686224e+01 8.357688e+01 lineto -6.59245e+01 8.351614e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.577366e+01 8.448917e+01 moveto -6.59245e+01 8.351614e+01 lineto -6.686224e+01 8.357688e+01 lineto -6.65584e+01 8.453999e+01 lineto -6.577366e+01 8.448917e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.562105e+01 8.537439e+01 moveto -6.577366e+01 8.448917e+01 lineto -6.65584e+01 8.453999e+01 lineto -6.625101e+01 8.541519e+01 lineto -6.562105e+01 8.537439e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.546703e+01 8.616979e+01 moveto -6.562105e+01 8.537439e+01 lineto -6.625101e+01 8.541519e+01 lineto -6.594076e+01 8.620047e+01 lineto -6.546703e+01 8.616979e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.531195e+01 8.687356e+01 moveto -6.546703e+01 8.616979e+01 lineto -6.594076e+01 8.620047e+01 lineto -6.562837e+01 8.689406e+01 lineto -6.531195e+01 8.687356e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.515615e+01 8.74841e+01 moveto -6.531195e+01 8.687356e+01 lineto -6.562837e+01 8.689406e+01 lineto -6.531454e+01 8.749436e+01 lineto -6.515615e+01 8.74841e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.515615e+01 8.74841e+01 lineto -6.531454e+01 8.749436e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.130863e+01 2.472603e+01 moveto -7.121086e+01 2.296162e+01 lineto -7.430009e+01 2.32199e+01 lineto -7.444648e+01 2.498837e+01 lineto -7.130863e+01 2.472603e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.1392e+01 2.653897e+01 moveto -7.130863e+01 2.472603e+01 lineto -7.444648e+01 2.498837e+01 lineto -7.457132e+01 2.680477e+01 lineto -7.1392e+01 2.653897e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.146079e+01 2.83963e+01 moveto -7.1392e+01 2.653897e+01 lineto -7.457132e+01 2.680477e+01 lineto -7.467433e+01 2.866497e+01 lineto -7.146079e+01 2.83963e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.151484e+01 3.029378e+01 moveto -7.146079e+01 2.83963e+01 lineto -7.467433e+01 2.866497e+01 lineto -7.475527e+01 3.05647e+01 lineto -7.151484e+01 3.029378e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.155404e+01 3.22271e+01 moveto -7.151484e+01 3.029378e+01 lineto -7.475527e+01 3.05647e+01 lineto -7.481396e+01 3.249965e+01 lineto -7.155404e+01 3.22271e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.157828e+01 3.419183e+01 moveto -7.155404e+01 3.22271e+01 lineto -7.481396e+01 3.249965e+01 lineto -7.485026e+01 3.446539e+01 lineto -7.157828e+01 3.419183e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.158752e+01 3.61835e+01 moveto -7.157828e+01 3.419183e+01 lineto -7.485026e+01 3.446539e+01 lineto -7.486409e+01 3.645744e+01 lineto -7.158752e+01 3.61835e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.158172e+01 3.819756e+01 moveto -7.158752e+01 3.61835e+01 lineto -7.486409e+01 3.645744e+01 lineto -7.485541e+01 3.847126e+01 lineto -7.158172e+01 3.819756e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.156092e+01 4.022942e+01 moveto -7.158172e+01 3.819756e+01 lineto -7.485541e+01 3.847126e+01 lineto -7.482426e+01 4.050226e+01 lineto -7.156092e+01 4.022942e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.152515e+01 4.227445e+01 moveto -7.156092e+01 4.022942e+01 lineto -7.482426e+01 4.050226e+01 lineto -7.47707e+01 4.254579e+01 lineto -7.152515e+01 4.227445e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.147449e+01 4.432797e+01 moveto -7.152515e+01 4.227445e+01 lineto -7.47707e+01 4.254579e+01 lineto -7.469485e+01 4.459721e+01 lineto -7.147449e+01 4.432797e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.140907e+01 4.63853e+01 moveto -7.147449e+01 4.432797e+01 lineto -7.469485e+01 4.459721e+01 lineto -7.459688e+01 4.665182e+01 lineto -7.140907e+01 4.63853e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.132902e+01 4.844176e+01 moveto -7.140907e+01 4.63853e+01 lineto -7.459688e+01 4.665182e+01 lineto -7.447702e+01 4.870495e+01 lineto -7.132902e+01 4.844176e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.123454e+01 5.049265e+01 moveto -7.132902e+01 4.844176e+01 lineto -7.447702e+01 4.870495e+01 lineto -7.433554e+01 5.075191e+01 lineto -7.123454e+01 5.049265e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.112583e+01 5.253329e+01 moveto -7.123454e+01 5.049265e+01 lineto -7.433554e+01 5.075191e+01 lineto -7.417277e+01 5.278803e+01 lineto -7.112583e+01 5.253329e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.100316e+01 5.455902e+01 moveto -7.112583e+01 5.253329e+01 lineto -7.417277e+01 5.278803e+01 lineto -7.398907e+01 5.480866e+01 lineto -7.100316e+01 5.455902e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.086678e+01 5.656524e+01 moveto -7.100316e+01 5.455902e+01 lineto -7.398907e+01 5.480866e+01 lineto -7.378487e+01 5.68092e+01 lineto -7.086678e+01 5.656524e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.071703e+01 5.854735e+01 moveto -7.086678e+01 5.656524e+01 lineto -7.378487e+01 5.68092e+01 lineto -7.356063e+01 5.878509e+01 lineto -7.071703e+01 5.854735e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.055423e+01 6.050083e+01 moveto -7.071703e+01 5.854735e+01 lineto -7.356063e+01 5.878509e+01 lineto -7.331686e+01 6.073181e+01 lineto -7.055423e+01 6.050083e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.037876e+01 6.242124e+01 moveto -7.055423e+01 6.050083e+01 lineto -7.331686e+01 6.073181e+01 lineto -7.305411e+01 6.264492e+01 lineto -7.037876e+01 6.242124e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.019103e+01 6.43042e+01 moveto -7.037876e+01 6.242124e+01 lineto -7.305411e+01 6.264492e+01 lineto -7.2773e+01 6.452006e+01 lineto -7.019103e+01 6.43042e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.999145e+01 6.614539e+01 moveto -7.019103e+01 6.43042e+01 lineto -7.2773e+01 6.452006e+01 lineto -7.247415e+01 6.635296e+01 lineto -6.999145e+01 6.614539e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.978049e+01 6.794063e+01 moveto -6.999145e+01 6.614539e+01 lineto -7.247415e+01 6.635296e+01 lineto -7.215826e+01 6.813943e+01 lineto -6.978049e+01 6.794063e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.955862e+01 6.968583e+01 moveto -6.978049e+01 6.794063e+01 lineto -7.215826e+01 6.813943e+01 lineto -7.182603e+01 6.987539e+01 lineto -6.955862e+01 6.968583e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.932635e+01 7.137699e+01 moveto -6.955862e+01 6.968583e+01 lineto -7.182603e+01 6.987539e+01 lineto -7.147824e+01 7.15569e+01 lineto -6.932635e+01 7.137699e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.908421e+01 7.301026e+01 moveto -6.932635e+01 7.137699e+01 lineto -7.147824e+01 7.15569e+01 lineto -7.111566e+01 7.31801e+01 lineto -6.908421e+01 7.301026e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.883276e+01 7.458192e+01 moveto -6.908421e+01 7.301026e+01 lineto -7.111566e+01 7.31801e+01 lineto -7.073914e+01 7.47413e+01 lineto -6.883276e+01 7.458192e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.857256e+01 7.608838e+01 moveto -6.883276e+01 7.458192e+01 lineto -7.073914e+01 7.47413e+01 lineto -7.034952e+01 7.623694e+01 lineto -6.857256e+01 7.608838e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.830422e+01 7.75262e+01 moveto -6.857256e+01 7.608838e+01 lineto -7.034952e+01 7.623694e+01 lineto -6.99477e+01 7.766361e+01 lineto -6.830422e+01 7.75262e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.802833e+01 7.889211e+01 moveto -6.830422e+01 7.75262e+01 lineto -6.99477e+01 7.766361e+01 lineto -6.95346e+01 7.901804e+01 lineto -6.802833e+01 7.889211e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.774554e+01 8.018299e+01 moveto -6.802833e+01 7.889211e+01 lineto -6.95346e+01 7.901804e+01 lineto -6.911115e+01 8.029716e+01 lineto -6.774554e+01 8.018299e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.745649e+01 8.139589e+01 moveto -6.774554e+01 8.018299e+01 lineto -6.911115e+01 8.029716e+01 lineto -6.867832e+01 8.149804e+01 lineto -6.745649e+01 8.139589e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.716183e+01 8.252804e+01 moveto -6.745649e+01 8.139589e+01 lineto -6.867832e+01 8.149804e+01 lineto -6.82371e+01 8.261794e+01 lineto -6.716183e+01 8.252804e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.686224e+01 8.357688e+01 moveto -6.716183e+01 8.252804e+01 lineto -6.82371e+01 8.261794e+01 lineto -6.77885e+01 8.365432e+01 lineto -6.686224e+01 8.357688e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.65584e+01 8.453999e+01 moveto -6.686224e+01 8.357688e+01 lineto -6.77885e+01 8.365432e+01 lineto -6.733353e+01 8.460479e+01 lineto -6.65584e+01 8.453999e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.625101e+01 8.541519e+01 moveto -6.65584e+01 8.453999e+01 lineto -6.733353e+01 8.460479e+01 lineto -6.687325e+01 8.546721e+01 lineto -6.625101e+01 8.541519e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.594076e+01 8.620047e+01 moveto -6.625101e+01 8.541519e+01 lineto -6.687325e+01 8.546721e+01 lineto -6.640869e+01 8.623959e+01 lineto -6.594076e+01 8.620047e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.562837e+01 8.689406e+01 moveto -6.594076e+01 8.620047e+01 lineto -6.640869e+01 8.623959e+01 lineto -6.594091e+01 8.692019e+01 lineto -6.562837e+01 8.689406e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.531454e+01 8.749436e+01 moveto -6.562837e+01 8.689406e+01 lineto -6.594091e+01 8.692019e+01 lineto -6.547099e+01 8.750744e+01 lineto -6.531454e+01 8.749436e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.531454e+01 8.749436e+01 lineto -6.547099e+01 8.750744e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.444648e+01 2.498837e+01 moveto -7.430009e+01 2.32199e+01 lineto -7.733198e+01 2.353231e+01 lineto -7.752609e+01 2.53057e+01 lineto -7.444648e+01 2.498837e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.457132e+01 2.680477e+01 moveto -7.444648e+01 2.498837e+01 lineto -7.752609e+01 2.53057e+01 lineto -7.769163e+01 2.712629e+01 lineto -7.457132e+01 2.680477e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.467433e+01 2.866497e+01 moveto -7.457132e+01 2.680477e+01 lineto -7.769163e+01 2.712629e+01 lineto -7.782822e+01 2.898995e+01 lineto -7.467433e+01 2.866497e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.475527e+01 3.05647e+01 moveto -7.467433e+01 2.866497e+01 lineto -7.782822e+01 2.898995e+01 lineto -7.793555e+01 3.08924e+01 lineto -7.475527e+01 3.05647e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.481396e+01 3.249965e+01 moveto -7.475527e+01 3.05647e+01 lineto -7.793555e+01 3.08924e+01 lineto -7.801337e+01 3.282932e+01 lineto -7.481396e+01 3.249965e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.485026e+01 3.446539e+01 moveto -7.481396e+01 3.249965e+01 lineto -7.801337e+01 3.282932e+01 lineto -7.80615e+01 3.479628e+01 lineto -7.485026e+01 3.446539e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.486409e+01 3.645744e+01 moveto -7.485026e+01 3.446539e+01 lineto -7.80615e+01 3.479628e+01 lineto -7.807984e+01 3.678879e+01 lineto -7.486409e+01 3.645744e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.485541e+01 3.847126e+01 moveto -7.486409e+01 3.645744e+01 lineto -7.807984e+01 3.678879e+01 lineto -7.806834e+01 3.880232e+01 lineto -7.485541e+01 3.847126e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.482426e+01 4.050226e+01 moveto -7.485541e+01 3.847126e+01 lineto -7.806834e+01 3.880232e+01 lineto -7.802703e+01 4.083227e+01 lineto -7.482426e+01 4.050226e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.47707e+01 4.254579e+01 moveto -7.482426e+01 4.050226e+01 lineto -7.802703e+01 4.083227e+01 lineto -7.795601e+01 4.287401e+01 lineto -7.47707e+01 4.254579e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.469485e+01 4.459721e+01 moveto -7.47707e+01 4.254579e+01 lineto -7.795601e+01 4.287401e+01 lineto -7.785543e+01 4.492288e+01 lineto -7.469485e+01 4.459721e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.459688e+01 4.665182e+01 moveto -7.469485e+01 4.459721e+01 lineto -7.785543e+01 4.492288e+01 lineto -7.772552e+01 4.69742e+01 lineto -7.459688e+01 4.665182e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.447702e+01 4.870495e+01 moveto -7.459688e+01 4.665182e+01 lineto -7.772552e+01 4.69742e+01 lineto -7.756659e+01 4.90233e+01 lineto -7.447702e+01 4.870495e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.433554e+01 5.075191e+01 moveto -7.447702e+01 4.870495e+01 lineto -7.756659e+01 4.90233e+01 lineto -7.737899e+01 5.106551e+01 lineto -7.433554e+01 5.075191e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.417277e+01 5.278803e+01 moveto -7.433554e+01 5.075191e+01 lineto -7.737899e+01 5.106551e+01 lineto -7.716315e+01 5.309616e+01 lineto -7.417277e+01 5.278803e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.398907e+01 5.480866e+01 moveto -7.417277e+01 5.278803e+01 lineto -7.716315e+01 5.309616e+01 lineto -7.691957e+01 5.511062e+01 lineto -7.398907e+01 5.480866e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.378487e+01 5.68092e+01 moveto -7.398907e+01 5.480866e+01 lineto -7.691957e+01 5.511062e+01 lineto -7.664879e+01 5.710431e+01 lineto -7.378487e+01 5.68092e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.356063e+01 5.878509e+01 moveto -7.378487e+01 5.68092e+01 lineto -7.664879e+01 5.710431e+01 lineto -7.635144e+01 5.907266e+01 lineto -7.356063e+01 5.878509e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.331686e+01 6.073181e+01 moveto -7.356063e+01 5.878509e+01 lineto -7.635144e+01 5.907266e+01 lineto -7.60282e+01 6.101119e+01 lineto -7.331686e+01 6.073181e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.305411e+01 6.264492e+01 moveto -7.331686e+01 6.073181e+01 lineto -7.60282e+01 6.101119e+01 lineto -7.567981e+01 6.291547e+01 lineto -7.305411e+01 6.264492e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.2773e+01 6.452006e+01 moveto -7.305411e+01 6.264492e+01 lineto -7.567981e+01 6.291547e+01 lineto -7.530705e+01 6.478117e+01 lineto -7.2773e+01 6.452006e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.247415e+01 6.635296e+01 moveto -7.2773e+01 6.452006e+01 lineto -7.530705e+01 6.478117e+01 lineto -7.491077e+01 6.660403e+01 lineto -7.247415e+01 6.635296e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.215826e+01 6.813943e+01 moveto -7.247415e+01 6.635296e+01 lineto -7.491077e+01 6.660403e+01 lineto -7.449189e+01 6.837989e+01 lineto -7.215826e+01 6.813943e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.182603e+01 6.987539e+01 moveto -7.215826e+01 6.813943e+01 lineto -7.449189e+01 6.837989e+01 lineto -7.405136e+01 7.01047e+01 lineto -7.182603e+01 6.987539e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.147824e+01 7.15569e+01 moveto -7.182603e+01 6.987539e+01 lineto -7.405136e+01 7.01047e+01 lineto -7.359018e+01 7.177451e+01 lineto -7.147824e+01 7.15569e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.111566e+01 7.31801e+01 moveto -7.147824e+01 7.15569e+01 lineto -7.359018e+01 7.177451e+01 lineto -7.310941e+01 7.338554e+01 lineto -7.111566e+01 7.31801e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.073914e+01 7.47413e+01 moveto -7.111566e+01 7.31801e+01 lineto -7.310941e+01 7.338554e+01 lineto -7.261013e+01 7.493409e+01 lineto -7.073914e+01 7.47413e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.034952e+01 7.623694e+01 moveto -7.073914e+01 7.47413e+01 lineto -7.261013e+01 7.493409e+01 lineto -7.20935e+01 7.641664e+01 lineto -7.034952e+01 7.623694e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.99477e+01 7.766361e+01 moveto -7.034952e+01 7.623694e+01 lineto -7.20935e+01 7.641664e+01 lineto -7.156068e+01 7.782981e+01 lineto -6.99477e+01 7.766361e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.95346e+01 7.901804e+01 moveto -6.99477e+01 7.766361e+01 lineto -7.156068e+01 7.782981e+01 lineto -7.10129e+01 7.917037e+01 lineto -6.95346e+01 7.901804e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.911115e+01 8.029716e+01 moveto -6.95346e+01 7.901804e+01 lineto -7.10129e+01 7.917037e+01 lineto -7.045141e+01 8.043526e+01 lineto -6.911115e+01 8.029716e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.867832e+01 8.149804e+01 moveto -6.911115e+01 8.029716e+01 lineto -7.045141e+01 8.043526e+01 lineto -6.987747e+01 8.16216e+01 lineto -6.867832e+01 8.149804e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.82371e+01 8.261794e+01 moveto -6.867832e+01 8.149804e+01 lineto -6.987747e+01 8.16216e+01 lineto -6.929242e+01 8.272668e+01 lineto -6.82371e+01 8.261794e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.77885e+01 8.365432e+01 moveto -6.82371e+01 8.261794e+01 lineto -6.929242e+01 8.272668e+01 lineto -6.869757e+01 8.374799e+01 lineto -6.77885e+01 8.365432e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.733353e+01 8.460479e+01 moveto -6.77885e+01 8.365432e+01 lineto -6.869757e+01 8.374799e+01 lineto -6.809428e+01 8.468318e+01 lineto -6.733353e+01 8.460479e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.687325e+01 8.546721e+01 moveto -6.733353e+01 8.460479e+01 lineto -6.809428e+01 8.468318e+01 lineto -6.748394e+01 8.553014e+01 lineto -6.687325e+01 8.546721e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.640869e+01 8.623959e+01 moveto -6.687325e+01 8.546721e+01 lineto -6.748394e+01 8.553014e+01 lineto -6.686793e+01 8.628692e+01 lineto -6.640869e+01 8.623959e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.594091e+01 8.692019e+01 moveto -6.640869e+01 8.623959e+01 lineto -6.686793e+01 8.628692e+01 lineto -6.624766e+01 8.69518e+01 lineto -6.594091e+01 8.692019e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.547099e+01 8.750744e+01 moveto -6.594091e+01 8.692019e+01 lineto -6.624766e+01 8.69518e+01 lineto -6.562454e+01 8.752326e+01 lineto -6.547099e+01 8.750744e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.547099e+01 8.750744e+01 lineto -6.562454e+01 8.752326e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.752609e+01 2.53057e+01 moveto -7.733198e+01 2.353231e+01 lineto -8.028784e+01 2.389692e+01 lineto -8.052848e+01 2.567605e+01 lineto -7.752609e+01 2.53057e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.769163e+01 2.712629e+01 moveto -7.752609e+01 2.53057e+01 lineto -8.052848e+01 2.567605e+01 lineto -8.07337e+01 2.750154e+01 lineto -7.769163e+01 2.712629e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.782822e+01 2.898995e+01 moveto -7.769163e+01 2.712629e+01 lineto -8.07337e+01 2.750154e+01 lineto -8.090303e+01 2.936923e+01 lineto -7.782822e+01 2.898995e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.793555e+01 3.08924e+01 moveto -7.782822e+01 2.898995e+01 lineto -8.090303e+01 2.936923e+01 lineto -8.103608e+01 3.127486e+01 lineto -7.793555e+01 3.08924e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.801337e+01 3.282932e+01 moveto -7.793555e+01 3.08924e+01 lineto -8.103608e+01 3.127486e+01 lineto -8.113255e+01 3.321408e+01 lineto -7.801337e+01 3.282932e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.80615e+01 3.479628e+01 moveto -7.801337e+01 3.282932e+01 lineto -8.113255e+01 3.321408e+01 lineto -8.119222e+01 3.518246e+01 lineto -7.80615e+01 3.479628e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.807984e+01 3.678879e+01 moveto -7.80615e+01 3.479628e+01 lineto -8.119222e+01 3.518246e+01 lineto -8.121495e+01 3.717552e+01 lineto -7.807984e+01 3.678879e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.806834e+01 3.880232e+01 moveto -7.807984e+01 3.678879e+01 lineto -8.121495e+01 3.717552e+01 lineto -8.12007e+01 3.918871e+01 lineto -7.806834e+01 3.880232e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.802703e+01 4.083227e+01 moveto -7.806834e+01 3.880232e+01 lineto -8.12007e+01 3.918871e+01 lineto -8.114949e+01 4.121744e+01 lineto -7.802703e+01 4.083227e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.795601e+01 4.287401e+01 moveto -7.802703e+01 4.083227e+01 lineto -8.114949e+01 4.121744e+01 lineto -8.106144e+01 4.325708e+01 lineto -7.795601e+01 4.287401e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.785543e+01 4.492288e+01 moveto -7.795601e+01 4.287401e+01 lineto -8.106144e+01 4.325708e+01 lineto -8.093675e+01 4.530297e+01 lineto -7.785543e+01 4.492288e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.772552e+01 4.69742e+01 moveto -7.785543e+01 4.492288e+01 lineto -8.093675e+01 4.530297e+01 lineto -8.077571e+01 4.735045e+01 lineto -7.772552e+01 4.69742e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.756659e+01 4.90233e+01 moveto -7.772552e+01 4.69742e+01 lineto -8.077571e+01 4.735045e+01 lineto -8.057868e+01 4.939486e+01 lineto -7.756659e+01 4.90233e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.737899e+01 5.106551e+01 moveto -7.756659e+01 4.90233e+01 lineto -8.057868e+01 4.939486e+01 lineto -8.034611e+01 5.143152e+01 lineto -7.737899e+01 5.106551e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.716315e+01 5.309616e+01 moveto -7.737899e+01 5.106551e+01 lineto -8.034611e+01 5.143152e+01 lineto -8.007854e+01 5.345579e+01 lineto -7.716315e+01 5.309616e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.691957e+01 5.511062e+01 moveto -7.716315e+01 5.309616e+01 lineto -8.007854e+01 5.345579e+01 lineto -7.977657e+01 5.546305e+01 lineto -7.691957e+01 5.511062e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.664879e+01 5.710431e+01 moveto -7.691957e+01 5.511062e+01 lineto -7.977657e+01 5.546305e+01 lineto -7.94409e+01 5.744872e+01 lineto -7.664879e+01 5.710431e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.635144e+01 5.907266e+01 moveto -7.664879e+01 5.710431e+01 lineto -7.94409e+01 5.744872e+01 lineto -7.907228e+01 5.940828e+01 lineto -7.635144e+01 5.907266e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.60282e+01 6.101119e+01 moveto -7.635144e+01 5.907266e+01 lineto -7.907228e+01 5.940828e+01 lineto -7.867156e+01 6.133725e+01 lineto -7.60282e+01 6.101119e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.567981e+01 6.291547e+01 moveto -7.60282e+01 6.101119e+01 lineto -7.867156e+01 6.133725e+01 lineto -7.823965e+01 6.323124e+01 lineto -7.567981e+01 6.291547e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.530705e+01 6.478117e+01 moveto -7.567981e+01 6.291547e+01 lineto -7.823965e+01 6.323124e+01 lineto -7.777755e+01 6.508592e+01 lineto -7.530705e+01 6.478117e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.491077e+01 6.660403e+01 moveto -7.530705e+01 6.478117e+01 lineto -7.777755e+01 6.508592e+01 lineto -7.728629e+01 6.689706e+01 lineto -7.491077e+01 6.660403e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.449189e+01 6.837989e+01 moveto -7.491077e+01 6.660403e+01 lineto -7.728629e+01 6.689706e+01 lineto -7.676701e+01 6.866053e+01 lineto -7.449189e+01 6.837989e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.405136e+01 7.01047e+01 moveto -7.449189e+01 6.837989e+01 lineto -7.676701e+01 6.866053e+01 lineto -7.622089e+01 7.037231e+01 lineto -7.405136e+01 7.01047e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.359018e+01 7.177451e+01 moveto -7.405136e+01 7.01047e+01 lineto -7.622089e+01 7.037231e+01 lineto -7.564917e+01 7.20285e+01 lineto -7.359018e+01 7.177451e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.310941e+01 7.338554e+01 moveto -7.359018e+01 7.177451e+01 lineto -7.564917e+01 7.20285e+01 lineto -7.505315e+01 7.362531e+01 lineto -7.310941e+01 7.338554e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.261013e+01 7.493409e+01 moveto -7.310941e+01 7.338554e+01 lineto -7.505315e+01 7.362531e+01 lineto -7.443421e+01 7.51591e+01 lineto -7.261013e+01 7.493409e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.20935e+01 7.641664e+01 moveto -7.261013e+01 7.493409e+01 lineto -7.443421e+01 7.51591e+01 lineto -7.379374e+01 7.662637e+01 lineto -7.20935e+01 7.641664e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.156068e+01 7.782981e+01 moveto -7.20935e+01 7.641664e+01 lineto -7.379374e+01 7.662637e+01 lineto -7.313322e+01 7.802379e+01 lineto -7.156068e+01 7.782981e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.10129e+01 7.917037e+01 moveto -7.156068e+01 7.782981e+01 lineto -7.313322e+01 7.802379e+01 lineto -7.245414e+01 7.934815e+01 lineto -7.10129e+01 7.917037e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.045141e+01 8.043526e+01 moveto -7.10129e+01 7.917037e+01 lineto -7.245414e+01 7.934815e+01 lineto -7.175806e+01 8.059644e+01 lineto -7.045141e+01 8.043526e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.987747e+01 8.16216e+01 moveto -7.045141e+01 8.043526e+01 lineto -7.175806e+01 8.059644e+01 lineto -7.104656e+01 8.176581e+01 lineto -6.987747e+01 8.16216e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.929242e+01 8.272668e+01 moveto -6.987747e+01 8.16216e+01 lineto -7.104656e+01 8.176581e+01 lineto -7.032127e+01 8.28536e+01 lineto -6.929242e+01 8.272668e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.869757e+01 8.374799e+01 moveto -6.929242e+01 8.272668e+01 lineto -7.032127e+01 8.28536e+01 lineto -6.958384e+01 8.385731e+01 lineto -6.869757e+01 8.374799e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.809428e+01 8.468318e+01 moveto -6.869757e+01 8.374799e+01 lineto -6.958384e+01 8.385731e+01 lineto -6.883595e+01 8.477467e+01 lineto -6.809428e+01 8.468318e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.748394e+01 8.553014e+01 moveto -6.809428e+01 8.468318e+01 lineto -6.883595e+01 8.477467e+01 lineto -6.807931e+01 8.560358e+01 lineto -6.748394e+01 8.553014e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.686793e+01 8.628692e+01 moveto -6.748394e+01 8.553014e+01 lineto -6.807931e+01 8.560358e+01 lineto -6.731565e+01 8.634214e+01 lineto -6.686793e+01 8.628692e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.624766e+01 8.69518e+01 moveto -6.686793e+01 8.628692e+01 lineto -6.731565e+01 8.634214e+01 lineto -6.654671e+01 8.698868e+01 lineto -6.624766e+01 8.69518e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.562454e+01 8.752326e+01 moveto -6.624766e+01 8.69518e+01 lineto -6.654671e+01 8.698868e+01 lineto -6.577424e+01 8.754172e+01 lineto -6.562454e+01 8.752326e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.562454e+01 8.752326e+01 lineto -6.577424e+01 8.754172e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.052848e+01 2.567605e+01 moveto -8.028784e+01 2.389692e+01 lineto -8.314944e+01 2.431149e+01 lineto -8.343512e+01 2.609715e+01 lineto -8.052848e+01 2.567605e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.07337e+01 2.750154e+01 moveto -8.052848e+01 2.567605e+01 lineto -8.343512e+01 2.609715e+01 lineto -8.367876e+01 2.792821e+01 lineto -8.07337e+01 2.750154e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.090303e+01 2.936923e+01 moveto -8.07337e+01 2.750154e+01 lineto -8.367876e+01 2.792821e+01 lineto -8.387978e+01 2.980049e+01 lineto -8.090303e+01 2.936923e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.103608e+01 3.127486e+01 moveto -8.090303e+01 2.936923e+01 lineto -8.387978e+01 2.980049e+01 lineto -8.403774e+01 3.170972e+01 lineto -8.103608e+01 3.127486e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.113255e+01 3.321408e+01 moveto -8.103608e+01 3.127486e+01 lineto -8.403774e+01 3.170972e+01 lineto -8.415227e+01 3.365156e+01 lineto -8.113255e+01 3.321408e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.119222e+01 3.518246e+01 moveto -8.113255e+01 3.321408e+01 lineto -8.415227e+01 3.365156e+01 lineto -8.422311e+01 3.562156e+01 lineto -8.119222e+01 3.518246e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.121495e+01 3.717552e+01 moveto -8.119222e+01 3.518246e+01 lineto -8.422311e+01 3.562156e+01 lineto -8.42501e+01 3.761524e+01 lineto -8.121495e+01 3.717552e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.12007e+01 3.918871e+01 moveto -8.121495e+01 3.717552e+01 lineto -8.42501e+01 3.761524e+01 lineto -8.423318e+01 3.962804e+01 lineto -8.12007e+01 3.918871e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.114949e+01 4.121744e+01 moveto -8.12007e+01 3.918871e+01 lineto -8.423318e+01 3.962804e+01 lineto -8.417238e+01 4.165538e+01 lineto -8.114949e+01 4.121744e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.106144e+01 4.325708e+01 moveto -8.114949e+01 4.121744e+01 lineto -8.417238e+01 4.165538e+01 lineto -8.406785e+01 4.369263e+01 lineto -8.106144e+01 4.325708e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.093675e+01 4.530297e+01 moveto -8.106144e+01 4.325708e+01 lineto -8.406785e+01 4.369263e+01 lineto -8.391982e+01 4.573514e+01 lineto -8.093675e+01 4.530297e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.077571e+01 4.735045e+01 moveto -8.093675e+01 4.530297e+01 lineto -8.391982e+01 4.573514e+01 lineto -8.372863e+01 4.777826e+01 lineto -8.077571e+01 4.735045e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.057868e+01 4.939486e+01 moveto -8.077571e+01 4.735045e+01 lineto -8.372863e+01 4.777826e+01 lineto -8.349472e+01 4.981732e+01 lineto -8.057868e+01 4.939486e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.034611e+01 5.143152e+01 moveto -8.057868e+01 4.939486e+01 lineto -8.349472e+01 4.981732e+01 lineto -8.321863e+01 5.184767e+01 lineto -8.034611e+01 5.143152e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.007854e+01 5.345579e+01 moveto -8.034611e+01 5.143152e+01 lineto -8.321863e+01 5.184767e+01 lineto -8.290097e+01 5.386468e+01 lineto -8.007854e+01 5.345579e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.977657e+01 5.546305e+01 moveto -8.007854e+01 5.345579e+01 lineto -8.290097e+01 5.386468e+01 lineto -8.254248e+01 5.586376e+01 lineto -7.977657e+01 5.546305e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.94409e+01 5.744872e+01 moveto -7.977657e+01 5.546305e+01 lineto -8.254248e+01 5.586376e+01 lineto -8.214397e+01 5.784033e+01 lineto -7.94409e+01 5.744872e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.907228e+01 5.940828e+01 moveto -7.94409e+01 5.744872e+01 lineto -8.214397e+01 5.784033e+01 lineto -8.170635e+01 5.978989e+01 lineto -7.907228e+01 5.940828e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.867156e+01 6.133725e+01 moveto -7.907228e+01 5.940828e+01 lineto -8.170635e+01 5.978989e+01 lineto -8.123063e+01 6.1708e+01 lineto -7.867156e+01 6.133725e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.823965e+01 6.323124e+01 moveto -7.867156e+01 6.133725e+01 lineto -8.123063e+01 6.1708e+01 lineto -8.071787e+01 6.359027e+01 lineto -7.823965e+01 6.323124e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.777755e+01 6.508592e+01 moveto -7.823965e+01 6.323124e+01 lineto -8.071787e+01 6.359027e+01 lineto -8.016927e+01 6.543242e+01 lineto -7.777755e+01 6.508592e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.728629e+01 6.689706e+01 moveto -7.777755e+01 6.508592e+01 lineto -8.016927e+01 6.543242e+01 lineto -7.958606e+01 6.723024e+01 lineto -7.728629e+01 6.689706e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.676701e+01 6.866053e+01 moveto -7.728629e+01 6.689706e+01 lineto -7.958606e+01 6.723024e+01 lineto -7.896958e+01 6.897963e+01 lineto -7.676701e+01 6.866053e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.622089e+01 7.037231e+01 moveto -7.676701e+01 6.866053e+01 lineto -7.896958e+01 6.897963e+01 lineto -7.832123e+01 7.06766e+01 lineto -7.622089e+01 7.037231e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.564917e+01 7.20285e+01 moveto -7.622089e+01 7.037231e+01 lineto -7.832123e+01 7.06766e+01 lineto -7.76425e+01 7.231728e+01 lineto -7.564917e+01 7.20285e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.505315e+01 7.362531e+01 moveto -7.564917e+01 7.20285e+01 lineto -7.76425e+01 7.231728e+01 lineto -7.693492e+01 7.389793e+01 lineto -7.505315e+01 7.362531e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.443421e+01 7.51591e+01 moveto -7.505315e+01 7.362531e+01 lineto -7.693492e+01 7.389793e+01 lineto -7.620012e+01 7.541493e+01 lineto -7.443421e+01 7.51591e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.379374e+01 7.662637e+01 moveto -7.443421e+01 7.51591e+01 lineto -7.620012e+01 7.541493e+01 lineto -7.543977e+01 7.686484e+01 lineto -7.379374e+01 7.662637e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.313322e+01 7.802379e+01 moveto -7.379374e+01 7.662637e+01 lineto -7.543977e+01 7.686484e+01 lineto -7.465561e+01 7.824434e+01 lineto -7.313322e+01 7.802379e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.245414e+01 7.934815e+01 moveto -7.313322e+01 7.802379e+01 lineto -7.465561e+01 7.824434e+01 lineto -7.384942e+01 7.955029e+01 lineto -7.245414e+01 7.934815e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.175806e+01 8.059644e+01 moveto -7.245414e+01 7.934815e+01 lineto -7.384942e+01 7.955029e+01 lineto -7.302304e+01 8.07797e+01 lineto -7.175806e+01 8.059644e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.104656e+01 8.176581e+01 moveto -7.175806e+01 8.059644e+01 lineto -7.302304e+01 8.07797e+01 lineto -7.217836e+01 8.192978e+01 lineto -7.104656e+01 8.176581e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.032127e+01 8.28536e+01 moveto -7.104656e+01 8.176581e+01 lineto -7.217836e+01 8.192978e+01 lineto -7.131731e+01 8.29979e+01 lineto -7.032127e+01 8.28536e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.958384e+01 8.385731e+01 moveto -7.032127e+01 8.28536e+01 lineto -7.131731e+01 8.29979e+01 lineto -7.044185e+01 8.398162e+01 lineto -6.958384e+01 8.385731e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.883595e+01 8.477467e+01 moveto -6.958384e+01 8.385731e+01 lineto -7.044185e+01 8.398162e+01 lineto -6.955397e+01 8.487869e+01 lineto -6.883595e+01 8.477467e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.807931e+01 8.560358e+01 moveto -6.883595e+01 8.477467e+01 lineto -6.955397e+01 8.487869e+01 lineto -6.865571e+01 8.568708e+01 lineto -6.807931e+01 8.560358e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.731565e+01 8.634214e+01 moveto -6.807931e+01 8.560358e+01 lineto -6.865571e+01 8.568708e+01 lineto -6.77491e+01 8.640494e+01 lineto -6.731565e+01 8.634214e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.654671e+01 8.698868e+01 moveto -6.731565e+01 8.634214e+01 lineto -6.77491e+01 8.640494e+01 lineto -6.683623e+01 8.703063e+01 lineto -6.654671e+01 8.698868e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.577424e+01 8.754172e+01 moveto -6.654671e+01 8.698868e+01 lineto -6.683623e+01 8.703063e+01 lineto -6.591916e+01 8.756272e+01 lineto -6.577424e+01 8.754172e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.577424e+01 8.754172e+01 lineto -6.591916e+01 8.756272e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.343512e+01 2.609715e+01 moveto -8.314944e+01 2.431149e+01 lineto -8.589914e+01 2.477347e+01 lineto -8.622811e+01 2.65664e+01 lineto -8.343512e+01 2.609715e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.367876e+01 2.792821e+01 moveto -8.343512e+01 2.609715e+01 lineto -8.622811e+01 2.65664e+01 lineto -8.650866e+01 2.840366e+01 lineto -8.367876e+01 2.792821e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.387978e+01 2.980049e+01 moveto -8.367876e+01 2.792821e+01 lineto -8.650866e+01 2.840366e+01 lineto -8.674014e+01 3.028106e+01 lineto -8.387978e+01 2.980049e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.403774e+01 3.170972e+01 moveto -8.387978e+01 2.980049e+01 lineto -8.674014e+01 3.028106e+01 lineto -8.692203e+01 3.219431e+01 lineto -8.403774e+01 3.170972e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.415227e+01 3.365156e+01 moveto -8.403774e+01 3.170972e+01 lineto -8.692203e+01 3.219431e+01 lineto -8.705391e+01 3.413906e+01 lineto -8.415227e+01 3.365156e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.422311e+01 3.562156e+01 moveto -8.415227e+01 3.365156e+01 lineto -8.705391e+01 3.413906e+01 lineto -8.713548e+01 3.611086e+01 lineto -8.422311e+01 3.562156e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.42501e+01 3.761524e+01 moveto -8.422311e+01 3.562156e+01 lineto -8.713548e+01 3.611086e+01 lineto -8.716656e+01 3.810523e+01 lineto -8.42501e+01 3.761524e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.423318e+01 3.962804e+01 moveto -8.42501e+01 3.761524e+01 lineto -8.716656e+01 3.810523e+01 lineto -8.714707e+01 4.01176e+01 lineto -8.423318e+01 3.962804e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.417238e+01 4.165538e+01 moveto -8.423318e+01 3.962804e+01 lineto -8.714707e+01 4.01176e+01 lineto -8.707706e+01 4.214339e+01 lineto -8.417238e+01 4.165538e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.406785e+01 4.369263e+01 moveto -8.417238e+01 4.165538e+01 lineto -8.707706e+01 4.214339e+01 lineto -8.69567e+01 4.417798e+01 lineto -8.406785e+01 4.369263e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.391982e+01 4.573514e+01 moveto -8.406785e+01 4.369263e+01 lineto -8.69567e+01 4.417798e+01 lineto -8.678624e+01 4.621672e+01 lineto -8.391982e+01 4.573514e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.372863e+01 4.777826e+01 moveto -8.391982e+01 4.573514e+01 lineto -8.678624e+01 4.621672e+01 lineto -8.656609e+01 4.825498e+01 lineto -8.372863e+01 4.777826e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.349472e+01 4.981732e+01 moveto -8.372863e+01 4.777826e+01 lineto -8.656609e+01 4.825498e+01 lineto -8.629674e+01 5.028808e+01 lineto -8.349472e+01 4.981732e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.321863e+01 5.184767e+01 moveto -8.349472e+01 4.981732e+01 lineto -8.629674e+01 5.028808e+01 lineto -8.597881e+01 5.231141e+01 lineto -8.321863e+01 5.184767e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.290097e+01 5.386468e+01 moveto -8.321863e+01 5.184767e+01 lineto -8.597881e+01 5.231141e+01 lineto -8.561303e+01 5.432033e+01 lineto -8.290097e+01 5.386468e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.254248e+01 5.586376e+01 moveto -8.290097e+01 5.386468e+01 lineto -8.561303e+01 5.432033e+01 lineto -8.520023e+01 5.631028e+01 lineto -8.254248e+01 5.586376e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.214397e+01 5.784033e+01 moveto -8.254248e+01 5.586376e+01 lineto -8.520023e+01 5.631028e+01 lineto -8.474134e+01 5.827671e+01 lineto -8.214397e+01 5.784033e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.170635e+01 5.978989e+01 moveto -8.214397e+01 5.784033e+01 lineto -8.474134e+01 5.827671e+01 lineto -8.423742e+01 6.021513e+01 lineto -8.170635e+01 5.978989e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.123063e+01 6.1708e+01 moveto -8.170635e+01 5.978989e+01 lineto -8.423742e+01 6.021513e+01 lineto -8.368962e+01 6.212113e+01 lineto -8.123063e+01 6.1708e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.071787e+01 6.359027e+01 moveto -8.123063e+01 6.1708e+01 lineto -8.368962e+01 6.212113e+01 lineto -8.309919e+01 6.399035e+01 lineto -8.071787e+01 6.359027e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.016927e+01 6.543242e+01 moveto -8.071787e+01 6.359027e+01 lineto -8.309919e+01 6.399035e+01 lineto -8.246747e+01 6.581854e+01 lineto -8.016927e+01 6.543242e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.958606e+01 6.723024e+01 moveto -8.016927e+01 6.543242e+01 lineto -8.246747e+01 6.581854e+01 lineto -8.17959e+01 6.760151e+01 lineto -7.958606e+01 6.723024e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.896958e+01 6.897963e+01 moveto -7.958606e+01 6.723024e+01 lineto -8.17959e+01 6.760151e+01 lineto -8.108602e+01 6.933521e+01 lineto -7.896958e+01 6.897963e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.832123e+01 7.06766e+01 moveto -7.896958e+01 6.897963e+01 lineto -8.108602e+01 6.933521e+01 lineto -8.033945e+01 7.101568e+01 lineto -7.832123e+01 7.06766e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.76425e+01 7.231728e+01 moveto -7.832123e+01 7.06766e+01 lineto -8.033945e+01 7.101568e+01 lineto -7.955788e+01 7.263908e+01 lineto -7.76425e+01 7.231728e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.693492e+01 7.389793e+01 moveto -7.76425e+01 7.231728e+01 lineto -7.955788e+01 7.263908e+01 lineto -7.874311e+01 7.420172e+01 lineto -7.693492e+01 7.389793e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.620012e+01 7.541493e+01 moveto -7.693492e+01 7.389793e+01 lineto -7.874311e+01 7.420172e+01 lineto -7.789698e+01 7.570002e+01 lineto -7.620012e+01 7.541493e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.543977e+01 7.686484e+01 moveto -7.620012e+01 7.541493e+01 lineto -7.789698e+01 7.570002e+01 lineto -7.702144e+01 7.713058e+01 lineto -7.543977e+01 7.686484e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.465561e+01 7.824434e+01 moveto -7.543977e+01 7.686484e+01 lineto -7.702144e+01 7.713058e+01 lineto -7.611847e+01 7.849012e+01 lineto -7.465561e+01 7.824434e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.384942e+01 7.955029e+01 moveto -7.465561e+01 7.824434e+01 lineto -7.611847e+01 7.849012e+01 lineto -7.519014e+01 7.977554e+01 lineto -7.384942e+01 7.955029e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.302304e+01 8.07797e+01 moveto -7.384942e+01 7.955029e+01 lineto -7.519014e+01 7.977554e+01 lineto -7.423856e+01 8.098392e+01 lineto -7.302304e+01 8.07797e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.217836e+01 8.192978e+01 moveto -7.302304e+01 8.07797e+01 lineto -7.423856e+01 8.098392e+01 lineto -7.326591e+01 8.21125e+01 lineto -7.217836e+01 8.192978e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.131731e+01 8.29979e+01 moveto -7.217836e+01 8.192978e+01 lineto -7.326591e+01 8.21125e+01 lineto -7.227441e+01 8.31587e+01 lineto -7.131731e+01 8.29979e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.044185e+01 8.398162e+01 moveto -7.131731e+01 8.29979e+01 lineto -7.227441e+01 8.31587e+01 lineto -7.126631e+01 8.412013e+01 lineto -7.044185e+01 8.398162e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.955397e+01 8.487869e+01 moveto -7.044185e+01 8.398162e+01 lineto -7.126631e+01 8.412013e+01 lineto -7.024391e+01 8.499461e+01 lineto -6.955397e+01 8.487869e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.865571e+01 8.568708e+01 moveto -6.955397e+01 8.487869e+01 lineto -7.024391e+01 8.499461e+01 lineto -6.920956e+01 8.578013e+01 lineto -6.865571e+01 8.568708e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.77491e+01 8.640494e+01 moveto -6.865571e+01 8.568708e+01 lineto -6.920956e+01 8.578013e+01 lineto -6.81656e+01 8.647492e+01 lineto -6.77491e+01 8.640494e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.683623e+01 8.703063e+01 moveto -6.77491e+01 8.640494e+01 lineto -6.81656e+01 8.647492e+01 lineto -6.711442e+01 8.707737e+01 lineto -6.683623e+01 8.703063e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.591916e+01 8.756272e+01 moveto -6.683623e+01 8.703063e+01 lineto -6.711442e+01 8.707737e+01 lineto -6.605842e+01 8.758612e+01 lineto -6.591916e+01 8.756272e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.591916e+01 8.756272e+01 lineto -6.605842e+01 8.758612e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.622811e+01 2.65664e+01 moveto -8.589914e+01 2.477347e+01 lineto -8.852e+01 2.528e+01 lineto -8.889022e+01 2.70809e+01 lineto -8.622811e+01 2.65664e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.650866e+01 2.840366e+01 moveto -8.622811e+01 2.65664e+01 lineto -8.889022e+01 2.70809e+01 lineto -8.920595e+01 2.892496e+01 lineto -8.650866e+01 2.840366e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.674014e+01 3.028106e+01 moveto -8.650866e+01 2.840366e+01 lineto -8.920595e+01 2.892496e+01 lineto -8.946646e+01 3.080797e+01 lineto -8.674014e+01 3.028106e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.692203e+01 3.219431e+01 moveto -8.674014e+01 3.028106e+01 lineto -8.946646e+01 3.080797e+01 lineto -8.967116e+01 3.272563e+01 lineto -8.692203e+01 3.219431e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.705391e+01 3.413906e+01 moveto -8.692203e+01 3.219431e+01 lineto -8.967116e+01 3.272563e+01 lineto -8.981958e+01 3.467358e+01 lineto -8.705391e+01 3.413906e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.713548e+01 3.611086e+01 moveto -8.705391e+01 3.413906e+01 lineto -8.981958e+01 3.467358e+01 lineto -8.991138e+01 3.664736e+01 lineto -8.713548e+01 3.611086e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.716656e+01 3.810523e+01 moveto -8.713548e+01 3.611086e+01 lineto -8.991138e+01 3.664736e+01 lineto -8.994635e+01 3.864248e+01 lineto -8.716656e+01 3.810523e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.714707e+01 4.01176e+01 moveto -8.716656e+01 3.810523e+01 lineto -8.994635e+01 3.864248e+01 lineto -8.992442e+01 4.065438e+01 lineto -8.714707e+01 4.01176e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.707706e+01 4.214339e+01 moveto -8.714707e+01 4.01176e+01 lineto -8.992442e+01 4.065438e+01 lineto -8.984564e+01 4.267847e+01 lineto -8.707706e+01 4.214339e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.69567e+01 4.417798e+01 moveto -8.707706e+01 4.214339e+01 lineto -8.984564e+01 4.267847e+01 lineto -8.971017e+01 4.471014e+01 lineto -8.69567e+01 4.417798e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.678624e+01 4.621672e+01 moveto -8.69567e+01 4.417798e+01 lineto -8.971017e+01 4.471014e+01 lineto -8.951834e+01 4.674475e+01 lineto -8.678624e+01 4.621672e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.656609e+01 4.825498e+01 moveto -8.678624e+01 4.621672e+01 lineto -8.951834e+01 4.674475e+01 lineto -8.927058e+01 4.877767e+01 lineto -8.656609e+01 4.825498e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.629674e+01 5.028808e+01 moveto -8.656609e+01 4.825498e+01 lineto -8.927058e+01 4.877767e+01 lineto -8.896746e+01 5.080425e+01 lineto -8.629674e+01 5.028808e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.597881e+01 5.231141e+01 moveto -8.629674e+01 5.028808e+01 lineto -8.896746e+01 5.080425e+01 lineto -8.860966e+01 5.281987e+01 lineto -8.597881e+01 5.231141e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.561303e+01 5.432033e+01 moveto -8.597881e+01 5.231141e+01 lineto -8.860966e+01 5.281987e+01 lineto -8.819801e+01 5.481993e+01 lineto -8.561303e+01 5.432033e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.520023e+01 5.631028e+01 moveto -8.561303e+01 5.432033e+01 lineto -8.819801e+01 5.481993e+01 lineto -8.773343e+01 5.679987e+01 lineto -8.520023e+01 5.631028e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.474134e+01 5.827671e+01 moveto -8.520023e+01 5.631028e+01 lineto -8.773343e+01 5.679987e+01 lineto -8.7217e+01 5.875518e+01 lineto -8.474134e+01 5.827671e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.423742e+01 6.021513e+01 moveto -8.474134e+01 5.827671e+01 lineto -8.7217e+01 5.875518e+01 lineto -8.664989e+01 6.068139e+01 lineto -8.423742e+01 6.021513e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.368962e+01 6.212113e+01 moveto -8.423742e+01 6.021513e+01 lineto -8.664989e+01 6.068139e+01 lineto -8.603339e+01 6.257411e+01 lineto -8.368962e+01 6.212113e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.309919e+01 6.399035e+01 moveto -8.368962e+01 6.212113e+01 lineto -8.603339e+01 6.257411e+01 lineto -8.536892e+01 6.442902e+01 lineto -8.309919e+01 6.399035e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.246747e+01 6.581854e+01 moveto -8.309919e+01 6.399035e+01 lineto -8.536892e+01 6.442902e+01 lineto -8.465798e+01 6.624189e+01 lineto -8.246747e+01 6.581854e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.17959e+01 6.760151e+01 moveto -8.246747e+01 6.581854e+01 lineto -8.465798e+01 6.624189e+01 lineto -8.390219e+01 6.800859e+01 lineto -8.17959e+01 6.760151e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.108602e+01 6.933521e+01 moveto -8.17959e+01 6.760151e+01 lineto -8.390219e+01 6.800859e+01 lineto -8.310329e+01 6.972509e+01 lineto -8.108602e+01 6.933521e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.033945e+01 7.101568e+01 moveto -8.108602e+01 6.933521e+01 lineto -8.310329e+01 6.972509e+01 lineto -8.226309e+01 7.138746e+01 lineto -8.033945e+01 7.101568e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.955788e+01 7.263908e+01 moveto -8.033945e+01 7.101568e+01 lineto -8.226309e+01 7.138746e+01 lineto -8.138351e+01 7.299192e+01 lineto -7.955788e+01 7.263908e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.874311e+01 7.420172e+01 moveto -7.955788e+01 7.263908e+01 lineto -8.138351e+01 7.299192e+01 lineto -8.046656e+01 7.453481e+01 lineto -7.874311e+01 7.420172e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.789698e+01 7.570002e+01 moveto -7.874311e+01 7.420172e+01 lineto -8.046656e+01 7.453481e+01 lineto -7.951433e+01 7.60126e+01 lineto -7.789698e+01 7.570002e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.702144e+01 7.713058e+01 moveto -7.789698e+01 7.570002e+01 lineto -7.951433e+01 7.60126e+01 lineto -7.852898e+01 7.742194e+01 lineto -7.702144e+01 7.713058e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.611847e+01 7.849012e+01 moveto -7.702144e+01 7.713058e+01 lineto -7.852898e+01 7.742194e+01 lineto -7.751278e+01 7.875959e+01 lineto -7.611847e+01 7.849012e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.519014e+01 7.977554e+01 moveto -7.611847e+01 7.849012e+01 lineto -7.751278e+01 7.875959e+01 lineto -7.646803e+01 8.002252e+01 lineto -7.519014e+01 7.977554e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.423856e+01 8.098392e+01 moveto -7.519014e+01 7.977554e+01 lineto -7.646803e+01 8.002252e+01 lineto -7.539712e+01 8.120784e+01 lineto -7.423856e+01 8.098392e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.326591e+01 8.21125e+01 moveto -7.423856e+01 8.098392e+01 lineto -7.539712e+01 8.120784e+01 lineto -7.43025e+01 8.231284e+01 lineto -7.326591e+01 8.21125e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.227441e+01 8.31587e+01 moveto -7.326591e+01 8.21125e+01 lineto -7.43025e+01 8.231284e+01 lineto -7.318665e+01 8.333501e+01 lineto -7.227441e+01 8.31587e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.126631e+01 8.412013e+01 moveto -7.227441e+01 8.31587e+01 lineto -7.318665e+01 8.333501e+01 lineto -7.205213e+01 8.427201e+01 lineto -7.126631e+01 8.412013e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.024391e+01 8.499461e+01 moveto -7.126631e+01 8.412013e+01 lineto -7.205213e+01 8.427201e+01 lineto -7.090153e+01 8.512171e+01 lineto -7.024391e+01 8.499461e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.920956e+01 8.578013e+01 moveto -7.024391e+01 8.499461e+01 lineto -7.090153e+01 8.512171e+01 lineto -6.973746e+01 8.588216e+01 lineto -6.920956e+01 8.578013e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.81656e+01 8.647492e+01 moveto -6.920956e+01 8.578013e+01 lineto -6.973746e+01 8.588216e+01 lineto -6.856258e+01 8.655164e+01 lineto -6.81656e+01 8.647492e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.711442e+01 8.707737e+01 moveto -6.81656e+01 8.647492e+01 lineto -6.856258e+01 8.655164e+01 lineto -6.737958e+01 8.712861e+01 lineto -6.711442e+01 8.707737e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.605842e+01 8.758612e+01 moveto -6.711442e+01 8.707737e+01 lineto -6.737958e+01 8.712861e+01 lineto -6.619115e+01 8.761177e+01 lineto -6.605842e+01 8.758612e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.605842e+01 8.758612e+01 lineto -6.619115e+01 8.761177e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.889022e+01 2.70809e+01 moveto -8.852e+01 2.528e+01 lineto -9.099585e+01 2.582796e+01 lineto -9.140504e+01 2.763749e+01 lineto -8.889022e+01 2.70809e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.920595e+01 2.892496e+01 moveto -8.889022e+01 2.70809e+01 lineto -9.140504e+01 2.763749e+01 lineto -9.1754e+01 2.94889e+01 lineto -8.920595e+01 2.892496e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.946646e+01 3.080797e+01 moveto -8.920595e+01 2.892496e+01 lineto -9.1754e+01 2.94889e+01 lineto -9.204193e+01 3.137798e+01 lineto -8.946646e+01 3.080797e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.967116e+01 3.272563e+01 moveto -8.946646e+01 3.080797e+01 lineto -9.204193e+01 3.137798e+01 lineto -9.226818e+01 3.330041e+01 lineto -8.967116e+01 3.272563e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.981958e+01 3.467358e+01 moveto -8.967116e+01 3.272563e+01 lineto -9.226818e+01 3.330041e+01 lineto -9.243222e+01 3.525181e+01 lineto -8.981958e+01 3.467358e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.991138e+01 3.664736e+01 moveto -8.981958e+01 3.467358e+01 lineto -9.243222e+01 3.525181e+01 lineto -9.253369e+01 3.722774e+01 lineto -8.991138e+01 3.664736e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.994635e+01 3.864248e+01 moveto -8.991138e+01 3.664736e+01 lineto -9.253369e+01 3.722774e+01 lineto -9.257235e+01 3.922367e+01 lineto -8.994635e+01 3.864248e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.992442e+01 4.065438e+01 moveto -8.994635e+01 3.864248e+01 lineto -9.257235e+01 3.922367e+01 lineto -9.254811e+01 4.123506e+01 lineto -8.992442e+01 4.065438e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.984564e+01 4.267847e+01 moveto -8.992442e+01 4.065438e+01 lineto -9.254811e+01 4.123506e+01 lineto -9.246103e+01 4.325732e+01 lineto -8.984564e+01 4.267847e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.971017e+01 4.471014e+01 moveto -8.984564e+01 4.267847e+01 lineto -9.246103e+01 4.325732e+01 lineto -9.231131e+01 4.528583e+01 lineto -8.971017e+01 4.471014e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.951834e+01 4.674475e+01 moveto -8.971017e+01 4.471014e+01 lineto -9.231131e+01 4.528583e+01 lineto -9.209928e+01 4.731597e+01 lineto -8.951834e+01 4.674475e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.927058e+01 4.877767e+01 moveto -8.951834e+01 4.674475e+01 lineto -9.209928e+01 4.731597e+01 lineto -9.182544e+01 4.934312e+01 lineto -8.927058e+01 4.877767e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.896746e+01 5.080425e+01 moveto -8.927058e+01 4.877767e+01 lineto -9.182544e+01 4.934312e+01 lineto -9.149041e+01 5.136263e+01 lineto -8.896746e+01 5.080425e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.860966e+01 5.281987e+01 moveto -8.896746e+01 5.080425e+01 lineto -9.149041e+01 5.136263e+01 lineto -9.109495e+01 5.336992e+01 lineto -8.860966e+01 5.281987e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.819801e+01 5.481993e+01 moveto -8.860966e+01 5.281987e+01 lineto -9.109495e+01 5.336992e+01 lineto -9.063996e+01 5.536039e+01 lineto -8.819801e+01 5.481993e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.773343e+01 5.679987e+01 moveto -8.819801e+01 5.481993e+01 lineto -9.063996e+01 5.536039e+01 lineto -9.012648e+01 5.732951e+01 lineto -8.773343e+01 5.679987e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.7217e+01 5.875518e+01 moveto -8.773343e+01 5.679987e+01 lineto -9.012648e+01 5.732951e+01 lineto -8.955569e+01 5.927278e+01 lineto -8.7217e+01 5.875518e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.664989e+01 6.068139e+01 moveto -8.7217e+01 5.875518e+01 lineto -8.955569e+01 5.927278e+01 lineto -8.892888e+01 6.118578e+01 lineto -8.664989e+01 6.068139e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.603339e+01 6.257411e+01 moveto -8.664989e+01 6.068139e+01 lineto -8.892888e+01 6.118578e+01 lineto -8.824749e+01 6.306414e+01 lineto -8.603339e+01 6.257411e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.536892e+01 6.442902e+01 moveto -8.603339e+01 6.257411e+01 lineto -8.824749e+01 6.306414e+01 lineto -8.751306e+01 6.490357e+01 lineto -8.536892e+01 6.442902e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.465798e+01 6.624189e+01 moveto -8.536892e+01 6.442902e+01 lineto -8.751306e+01 6.490357e+01 lineto -8.672728e+01 6.669988e+01 lineto -8.465798e+01 6.624189e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.390219e+01 6.800859e+01 moveto -8.465798e+01 6.624189e+01 lineto -8.672728e+01 6.669988e+01 lineto -8.589194e+01 6.844897e+01 lineto -8.390219e+01 6.800859e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.310329e+01 6.972509e+01 moveto -8.390219e+01 6.800859e+01 lineto -8.589194e+01 6.844897e+01 lineto -8.500894e+01 7.014685e+01 lineto -8.310329e+01 6.972509e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.226309e+01 7.138746e+01 moveto -8.310329e+01 6.972509e+01 lineto -8.500894e+01 7.014685e+01 lineto -8.40803e+01 7.178965e+01 lineto -8.226309e+01 7.138746e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.138351e+01 7.299192e+01 moveto -8.226309e+01 7.138746e+01 lineto -8.40803e+01 7.178965e+01 lineto -8.310813e+01 7.337362e+01 lineto -8.138351e+01 7.299192e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.046656e+01 7.453481e+01 moveto -8.138351e+01 7.299192e+01 lineto -8.310813e+01 7.337362e+01 lineto -8.209466e+01 7.489514e+01 lineto -8.046656e+01 7.453481e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.951433e+01 7.60126e+01 moveto -8.046656e+01 7.453481e+01 lineto -8.209466e+01 7.489514e+01 lineto -8.104218e+01 7.635075e+01 lineto -7.951433e+01 7.60126e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.852898e+01 7.742194e+01 moveto -7.951433e+01 7.60126e+01 lineto -8.104218e+01 7.635075e+01 lineto -7.995312e+01 7.773713e+01 lineto -7.852898e+01 7.742194e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.751278e+01 7.875959e+01 moveto -7.852898e+01 7.742194e+01 lineto -7.995312e+01 7.773713e+01 lineto -7.882994e+01 7.905111e+01 lineto -7.751278e+01 7.875959e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.646803e+01 8.002252e+01 moveto -7.751278e+01 7.875959e+01 lineto -7.882994e+01 7.905111e+01 lineto -7.767522e+01 8.02897e+01 lineto -7.646803e+01 8.002252e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.539712e+01 8.120784e+01 moveto -7.646803e+01 8.002252e+01 lineto -7.767522e+01 8.02897e+01 lineto -7.649158e+01 8.145007e+01 lineto -7.539712e+01 8.120784e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.43025e+01 8.231284e+01 moveto -7.539712e+01 8.120784e+01 lineto -7.649158e+01 8.145007e+01 lineto -7.528173e+01 8.252957e+01 lineto -7.43025e+01 8.231284e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.318665e+01 8.333501e+01 moveto -7.43025e+01 8.231284e+01 lineto -7.528173e+01 8.252957e+01 lineto -7.404843e+01 8.352574e+01 lineto -7.318665e+01 8.333501e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.205213e+01 8.427201e+01 moveto -7.318665e+01 8.333501e+01 lineto -7.404843e+01 8.352574e+01 lineto -7.279448e+01 8.443631e+01 lineto -7.205213e+01 8.427201e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.090153e+01 8.512171e+01 moveto -7.205213e+01 8.427201e+01 lineto -7.279448e+01 8.443631e+01 lineto -7.152275e+01 8.52592e+01 lineto -7.090153e+01 8.512171e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.973746e+01 8.588216e+01 moveto -7.090153e+01 8.512171e+01 lineto -7.152275e+01 8.52592e+01 lineto -7.023615e+01 8.599253e+01 lineto -6.973746e+01 8.588216e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.856258e+01 8.655164e+01 moveto -6.973746e+01 8.588216e+01 lineto -7.023615e+01 8.599253e+01 lineto -6.89376e+01 8.663464e+01 lineto -6.856258e+01 8.655164e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.737958e+01 8.712861e+01 moveto -6.856258e+01 8.655164e+01 lineto -6.89376e+01 8.663464e+01 lineto -6.763007e+01 8.718405e+01 lineto -6.737958e+01 8.712861e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.619115e+01 8.761177e+01 moveto -6.737958e+01 8.712861e+01 lineto -6.763007e+01 8.718405e+01 lineto -6.631654e+01 8.763952e+01 lineto -6.619115e+01 8.761177e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.619115e+01 8.761177e+01 lineto -6.631654e+01 8.763952e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.140504e+01 2.763749e+01 moveto -9.099585e+01 2.582796e+01 lineto -9.331142e+01 2.641397e+01 lineto -9.375707e+01 2.823272e+01 lineto -9.140504e+01 2.763749e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.1754e+01 2.94889e+01 moveto -9.140504e+01 2.763749e+01 lineto -9.375707e+01 2.823272e+01 lineto -9.413711e+01 3.009201e+01 lineto -9.1754e+01 2.94889e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.204193e+01 3.137798e+01 moveto -9.1754e+01 2.94889e+01 lineto -9.413711e+01 3.009201e+01 lineto -9.445069e+01 3.198757e+01 lineto -9.204193e+01 3.137798e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.226818e+01 3.330041e+01 moveto -9.204193e+01 3.137798e+01 lineto -9.445069e+01 3.198757e+01 lineto -9.469709e+01 3.391511e+01 lineto -9.226818e+01 3.330041e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.243222e+01 3.525181e+01 moveto -9.226818e+01 3.330041e+01 lineto -9.469709e+01 3.391511e+01 lineto -9.487574e+01 3.587021e+01 lineto -9.243222e+01 3.525181e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.253369e+01 3.722774e+01 moveto -9.243222e+01 3.525181e+01 lineto -9.487574e+01 3.587021e+01 lineto -9.498625e+01 3.784842e+01 lineto -9.253369e+01 3.722774e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.257235e+01 3.922367e+01 moveto -9.253369e+01 3.722774e+01 lineto -9.498625e+01 3.784842e+01 lineto -9.502835e+01 3.984522e+01 lineto -9.257235e+01 3.922367e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.254811e+01 4.123506e+01 moveto -9.257235e+01 3.922367e+01 lineto -9.502835e+01 3.984522e+01 lineto -9.500195e+01 4.185606e+01 lineto -9.254811e+01 4.123506e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.246103e+01 4.325732e+01 moveto -9.254811e+01 4.123506e+01 lineto -9.500195e+01 4.185606e+01 lineto -9.490711e+01 4.387636e+01 lineto -9.246103e+01 4.325732e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.231131e+01 4.528583e+01 moveto -9.246103e+01 4.325732e+01 lineto -9.490711e+01 4.387636e+01 lineto -9.474405e+01 4.59015e+01 lineto -9.231131e+01 4.528583e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.209928e+01 4.731597e+01 moveto -9.231131e+01 4.528583e+01 lineto -9.474405e+01 4.59015e+01 lineto -9.451314e+01 4.792686e+01 lineto -9.209928e+01 4.731597e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.182544e+01 4.934312e+01 moveto -9.209928e+01 4.731597e+01 lineto -9.451314e+01 4.792686e+01 lineto -9.421491e+01 4.994783e+01 lineto -9.182544e+01 4.934312e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.149041e+01 5.136263e+01 moveto -9.182544e+01 4.934312e+01 lineto -9.421491e+01 4.994783e+01 lineto -9.385004e+01 5.19598e+01 lineto -9.149041e+01 5.136263e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.109495e+01 5.336992e+01 moveto -9.149041e+01 5.136263e+01 lineto -9.385004e+01 5.19598e+01 lineto -9.341935e+01 5.395816e+01 lineto -9.109495e+01 5.336992e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.063996e+01 5.536039e+01 moveto -9.109495e+01 5.336992e+01 lineto -9.341935e+01 5.395816e+01 lineto -9.292383e+01 5.593838e+01 lineto -9.063996e+01 5.536039e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.012648e+01 5.732951e+01 moveto -9.063996e+01 5.536039e+01 lineto -9.292383e+01 5.593838e+01 lineto -9.236462e+01 5.789592e+01 lineto -9.012648e+01 5.732951e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.955569e+01 5.927278e+01 moveto -9.012648e+01 5.732951e+01 lineto -9.236462e+01 5.789592e+01 lineto -9.174298e+01 5.982633e+01 lineto -8.955569e+01 5.927278e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.892888e+01 6.118578e+01 moveto -8.955569e+01 5.927278e+01 lineto -9.174298e+01 5.982633e+01 lineto -9.106034e+01 6.17252e+01 lineto -8.892888e+01 6.118578e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.824749e+01 6.306414e+01 moveto -8.892888e+01 6.118578e+01 lineto -9.106034e+01 6.17252e+01 lineto -9.031825e+01 6.35882e+01 lineto -8.824749e+01 6.306414e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.751306e+01 6.490357e+01 moveto -8.824749e+01 6.306414e+01 lineto -9.031825e+01 6.35882e+01 lineto -8.951841e+01 6.541107e+01 lineto -8.751306e+01 6.490357e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.672728e+01 6.669988e+01 moveto -8.751306e+01 6.490357e+01 lineto -8.951841e+01 6.541107e+01 lineto -8.866264e+01 6.718967e+01 lineto -8.672728e+01 6.669988e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.589194e+01 6.844897e+01 moveto -8.672728e+01 6.669988e+01 lineto -8.866264e+01 6.718967e+01 lineto -8.775289e+01 6.891993e+01 lineto -8.589194e+01 6.844897e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.500894e+01 7.014685e+01 moveto -8.589194e+01 6.844897e+01 lineto -8.775289e+01 6.891993e+01 lineto -8.679123e+01 7.05979e+01 lineto -8.500894e+01 7.014685e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.40803e+01 7.178965e+01 moveto -8.500894e+01 7.014685e+01 lineto -8.679123e+01 7.05979e+01 lineto -8.577987e+01 7.221977e+01 lineto -8.40803e+01 7.178965e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.310813e+01 7.337362e+01 moveto -8.40803e+01 7.178965e+01 lineto -8.577987e+01 7.221977e+01 lineto -8.472111e+01 7.378182e+01 lineto -8.310813e+01 7.337362e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.209466e+01 7.489514e+01 moveto -8.310813e+01 7.337362e+01 lineto -8.472111e+01 7.378182e+01 lineto -8.361736e+01 7.52805e+01 lineto -8.209466e+01 7.489514e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.104218e+01 7.635075e+01 moveto -8.209466e+01 7.489514e+01 lineto -8.361736e+01 7.52805e+01 lineto -8.247114e+01 7.671239e+01 lineto -8.104218e+01 7.635075e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.995312e+01 7.773713e+01 moveto -8.104218e+01 7.635075e+01 lineto -8.247114e+01 7.671239e+01 lineto -8.128507e+01 7.807421e+01 lineto -7.995312e+01 7.773713e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.882994e+01 7.905111e+01 moveto -7.995312e+01 7.773713e+01 lineto -8.128507e+01 7.807421e+01 lineto -8.006184e+01 7.936287e+01 lineto -7.882994e+01 7.905111e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.767522e+01 8.02897e+01 moveto -7.882994e+01 7.905111e+01 lineto -8.006184e+01 7.936287e+01 lineto -7.880426e+01 8.057543e+01 lineto -7.767522e+01 8.02897e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.649158e+01 8.145007e+01 moveto -7.767522e+01 8.02897e+01 lineto -7.880426e+01 8.057543e+01 lineto -7.751519e+01 8.170912e+01 lineto -7.649158e+01 8.145007e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.528173e+01 8.252957e+01 moveto -7.649158e+01 8.145007e+01 lineto -7.751519e+01 8.170912e+01 lineto -7.619758e+01 8.276134e+01 lineto -7.528173e+01 8.252957e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.404843e+01 8.352574e+01 moveto -7.528173e+01 8.252957e+01 lineto -7.619758e+01 8.276134e+01 lineto -7.485441e+01 8.372971e+01 lineto -7.404843e+01 8.352574e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.279448e+01 8.443631e+01 moveto -7.404843e+01 8.352574e+01 lineto -7.485441e+01 8.372971e+01 lineto -7.348877e+01 8.461201e+01 lineto -7.279448e+01 8.443631e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.152275e+01 8.52592e+01 moveto -7.279448e+01 8.443631e+01 lineto -7.348877e+01 8.461201e+01 lineto -7.210377e+01 8.540624e+01 lineto -7.152275e+01 8.52592e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.023615e+01 8.599253e+01 moveto -7.152275e+01 8.52592e+01 lineto -7.210377e+01 8.540624e+01 lineto -7.070256e+01 8.611057e+01 lineto -7.023615e+01 8.599253e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.89376e+01 8.663464e+01 moveto -7.023615e+01 8.599253e+01 lineto -7.070256e+01 8.611057e+01 lineto -6.928834e+01 8.67234e+01 lineto -6.89376e+01 8.663464e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.763007e+01 8.718405e+01 moveto -6.89376e+01 8.663464e+01 lineto -6.928834e+01 8.67234e+01 lineto -6.786434e+01 8.724334e+01 lineto -6.763007e+01 8.718405e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.631654e+01 8.763952e+01 moveto -6.763007e+01 8.718405e+01 lineto -6.786434e+01 8.724334e+01 lineto -6.643381e+01 8.76692e+01 lineto -6.631654e+01 8.763952e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.631654e+01 8.763952e+01 lineto -6.643381e+01 8.76692e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.375707e+01 2.823272e+01 moveto -9.331142e+01 2.641397e+01 lineto -9.545245e+01 2.703443e+01 lineto -9.593179e+01 2.886294e+01 lineto -9.375707e+01 2.823272e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.413711e+01 3.009201e+01 moveto -9.375707e+01 2.823272e+01 lineto -9.593179e+01 2.886294e+01 lineto -9.634058e+01 3.073055e+01 lineto -9.413711e+01 3.009201e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.445069e+01 3.198757e+01 moveto -9.413711e+01 3.009201e+01 lineto -9.634058e+01 3.073055e+01 lineto -9.667787e+01 3.263299e+01 lineto -9.445069e+01 3.198757e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.469709e+01 3.391511e+01 moveto -9.445069e+01 3.198757e+01 lineto -9.667787e+01 3.263299e+01 lineto -9.69429e+01 3.456593e+01 lineto -9.469709e+01 3.391511e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.487574e+01 3.587021e+01 moveto -9.469709e+01 3.391511e+01 lineto -9.69429e+01 3.456593e+01 lineto -9.713507e+01 3.652494e+01 lineto -9.487574e+01 3.587021e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.498625e+01 3.784842e+01 moveto -9.487574e+01 3.587021e+01 lineto -9.713507e+01 3.652494e+01 lineto -9.725393e+01 3.850557e+01 lineto -9.498625e+01 3.784842e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.502835e+01 3.984522e+01 moveto -9.498625e+01 3.784842e+01 lineto -9.725393e+01 3.850557e+01 lineto -9.729921e+01 4.05033e+01 lineto -9.502835e+01 3.984522e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.500195e+01 4.185606e+01 moveto -9.502835e+01 3.984522e+01 lineto -9.729921e+01 4.05033e+01 lineto -9.727082e+01 4.251356e+01 lineto -9.500195e+01 4.185606e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.490711e+01 4.387636e+01 moveto -9.500195e+01 4.185606e+01 lineto -9.727082e+01 4.251356e+01 lineto -9.716881e+01 4.453178e+01 lineto -9.490711e+01 4.387636e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.474405e+01 4.59015e+01 moveto -9.490711e+01 4.387636e+01 lineto -9.716881e+01 4.453178e+01 lineto -9.699342e+01 4.655335e+01 lineto -9.474405e+01 4.59015e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.451314e+01 4.792686e+01 moveto -9.474405e+01 4.59015e+01 lineto -9.699342e+01 4.655335e+01 lineto -9.674505e+01 4.857365e+01 lineto -9.451314e+01 4.792686e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.421491e+01 4.994783e+01 moveto -9.451314e+01 4.792686e+01 lineto -9.674505e+01 4.857365e+01 lineto -9.642426e+01 5.058808e+01 lineto -9.421491e+01 4.994783e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.385004e+01 5.19598e+01 moveto -9.421491e+01 4.994783e+01 lineto -9.642426e+01 5.058808e+01 lineto -9.603179e+01 5.259205e+01 lineto -9.385004e+01 5.19598e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.341935e+01 5.395816e+01 moveto -9.385004e+01 5.19598e+01 lineto -9.603179e+01 5.259205e+01 lineto -9.556853e+01 5.458098e+01 lineto -9.341935e+01 5.395816e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.292383e+01 5.593838e+01 moveto -9.341935e+01 5.395816e+01 lineto -9.556853e+01 5.458098e+01 lineto -9.503555e+01 5.655034e+01 lineto -9.292383e+01 5.593838e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.236462e+01 5.789592e+01 moveto -9.292383e+01 5.593838e+01 lineto -9.503555e+01 5.655034e+01 lineto -9.443404e+01 5.849563e+01 lineto -9.236462e+01 5.789592e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.174298e+01 5.982633e+01 moveto -9.236462e+01 5.789592e+01 lineto -9.443404e+01 5.849563e+01 lineto -9.376539e+01 6.041241e+01 lineto -9.174298e+01 5.982633e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.106034e+01 6.17252e+01 moveto -9.174298e+01 5.982633e+01 lineto -9.376539e+01 6.041241e+01 lineto -9.303113e+01 6.229632e+01 lineto -9.106034e+01 6.17252e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.031825e+01 6.35882e+01 moveto -9.106034e+01 6.17252e+01 lineto -9.303113e+01 6.229632e+01 lineto -9.223292e+01 6.414305e+01 lineto -9.031825e+01 6.35882e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.951841e+01 6.541107e+01 moveto -9.031825e+01 6.35882e+01 lineto -9.223292e+01 6.414305e+01 lineto -9.137259e+01 6.59484e+01 lineto -8.951841e+01 6.541107e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.866264e+01 6.718967e+01 moveto -8.951841e+01 6.541107e+01 lineto -9.137259e+01 6.59484e+01 lineto -9.04521e+01 6.770824e+01 lineto -8.866264e+01 6.718967e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.775289e+01 6.891993e+01 moveto -8.866264e+01 6.718967e+01 lineto -9.04521e+01 6.770824e+01 lineto -8.947355e+01 6.941856e+01 lineto -8.775289e+01 6.891993e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.679123e+01 7.05979e+01 moveto -8.775289e+01 6.891993e+01 lineto -8.947355e+01 6.941856e+01 lineto -8.843918e+01 7.107546e+01 lineto -8.679123e+01 7.05979e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.577987e+01 7.221977e+01 moveto -8.679123e+01 7.05979e+01 lineto -8.843918e+01 7.107546e+01 lineto -8.735133e+01 7.267516e+01 lineto -8.577987e+01 7.221977e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.472111e+01 7.378182e+01 moveto -8.577987e+01 7.221977e+01 lineto -8.735133e+01 7.267516e+01 lineto -8.62125e+01 7.421401e+01 lineto -8.472111e+01 7.378182e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.361736e+01 7.52805e+01 moveto -8.472111e+01 7.378182e+01 lineto -8.62125e+01 7.421401e+01 lineto -8.502528e+01 7.56885e+01 lineto -8.361736e+01 7.52805e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.247114e+01 7.671239e+01 moveto -8.361736e+01 7.52805e+01 lineto -8.502528e+01 7.56885e+01 lineto -8.379238e+01 7.709527e+01 lineto -8.247114e+01 7.671239e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.128507e+01 7.807421e+01 moveto -8.247114e+01 7.671239e+01 lineto -8.379238e+01 7.709527e+01 lineto -8.251661e+01 7.843111e+01 lineto -8.128507e+01 7.807421e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.006184e+01 7.936287e+01 moveto -8.128507e+01 7.807421e+01 lineto -8.251661e+01 7.843111e+01 lineto -8.120088e+01 7.969296e+01 lineto -8.006184e+01 7.936287e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.880426e+01 8.057543e+01 moveto -8.006184e+01 7.936287e+01 lineto -8.120088e+01 7.969296e+01 lineto -7.98482e+01 8.087796e+01 lineto -7.880426e+01 8.057543e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.751519e+01 8.170912e+01 moveto -7.880426e+01 8.057543e+01 lineto -7.98482e+01 8.087796e+01 lineto -7.846164e+01 8.198339e+01 lineto -7.751519e+01 8.170912e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.619758e+01 8.276134e+01 moveto -7.751519e+01 8.170912e+01 lineto -7.846164e+01 8.198339e+01 lineto -7.704438e+01 8.300674e+01 lineto -7.619758e+01 8.276134e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.485441e+01 8.372971e+01 moveto -7.619758e+01 8.276134e+01 lineto -7.704438e+01 8.300674e+01 lineto -7.559964e+01 8.394567e+01 lineto -7.485441e+01 8.372971e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.348877e+01 8.461201e+01 moveto -7.485441e+01 8.372971e+01 lineto -7.559964e+01 8.394567e+01 lineto -7.413073e+01 8.479805e+01 lineto -7.348877e+01 8.461201e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.210377e+01 8.540624e+01 moveto -7.348877e+01 8.461201e+01 lineto -7.413073e+01 8.479805e+01 lineto -7.264098e+01 8.556192e+01 lineto -7.210377e+01 8.540624e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.070256e+01 8.611057e+01 moveto -7.210377e+01 8.540624e+01 lineto -7.264098e+01 8.556192e+01 lineto -7.113381e+01 8.623554e+01 lineto -7.070256e+01 8.611057e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.928834e+01 8.67234e+01 moveto -7.070256e+01 8.611057e+01 lineto -7.113381e+01 8.623554e+01 lineto -6.961264e+01 8.681738e+01 lineto -6.928834e+01 8.67234e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.786434e+01 8.724334e+01 moveto -6.928834e+01 8.67234e+01 lineto -6.961264e+01 8.681738e+01 lineto -6.808095e+01 8.730611e+01 lineto -6.786434e+01 8.724334e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.643381e+01 8.76692e+01 moveto -6.786434e+01 8.724334e+01 lineto -6.808095e+01 8.730611e+01 lineto -6.654224e+01 8.770062e+01 lineto -6.643381e+01 8.76692e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.643381e+01 8.76692e+01 lineto -6.654224e+01 8.770062e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.593179e+01 2.886294e+01 moveto -9.545245e+01 2.703443e+01 lineto -9.740572e+01 2.768549e+01 lineto -9.791581e+01 2.952426e+01 lineto -9.593179e+01 2.886294e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.634058e+01 3.073055e+01 moveto -9.593179e+01 2.886294e+01 lineto -9.791581e+01 2.952426e+01 lineto -9.835082e+01 3.140061e+01 lineto -9.634058e+01 3.073055e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.667787e+01 3.263299e+01 moveto -9.634058e+01 3.073055e+01 lineto -9.835082e+01 3.140061e+01 lineto -9.870975e+01 3.331026e+01 lineto -9.667787e+01 3.263299e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.69429e+01 3.456593e+01 moveto -9.667787e+01 3.263299e+01 lineto -9.870975e+01 3.331026e+01 lineto -9.899178e+01 3.524886e+01 lineto -9.69429e+01 3.456593e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.713507e+01 3.652494e+01 moveto -9.69429e+01 3.456593e+01 lineto -9.899178e+01 3.524886e+01 lineto -9.919627e+01 3.721198e+01 lineto -9.713507e+01 3.652494e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.725393e+01 3.850557e+01 moveto -9.713507e+01 3.652494e+01 lineto -9.919627e+01 3.721198e+01 lineto -9.932275e+01 3.919516e+01 lineto -9.725393e+01 3.850557e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.729921e+01 4.05033e+01 moveto -9.725393e+01 3.850557e+01 lineto -9.932275e+01 3.919516e+01 lineto -9.937094e+01 4.119385e+01 lineto -9.729921e+01 4.05033e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.727082e+01 4.251356e+01 moveto -9.729921e+01 4.05033e+01 lineto -9.937094e+01 4.119385e+01 lineto -9.934073e+01 4.320351e+01 lineto -9.727082e+01 4.251356e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.716881e+01 4.453178e+01 moveto -9.727082e+01 4.251356e+01 lineto -9.934073e+01 4.320351e+01 lineto -9.923218e+01 4.521954e+01 lineto -9.716881e+01 4.453178e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.699342e+01 4.655335e+01 moveto -9.716881e+01 4.453178e+01 lineto -9.923218e+01 4.521954e+01 lineto -9.904554e+01 4.723736e+01 lineto -9.699342e+01 4.655335e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.674505e+01 4.857365e+01 moveto -9.699342e+01 4.655335e+01 lineto -9.904554e+01 4.723736e+01 lineto -9.878123e+01 4.925235e+01 lineto -9.674505e+01 4.857365e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.642426e+01 5.058808e+01 moveto -9.674505e+01 4.857365e+01 lineto -9.878123e+01 4.925235e+01 lineto -9.843987e+01 5.125993e+01 lineto -9.642426e+01 5.058808e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.603179e+01 5.259205e+01 moveto -9.642426e+01 5.058808e+01 lineto -9.843987e+01 5.125993e+01 lineto -9.802223e+01 5.325551e+01 lineto -9.603179e+01 5.259205e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.556853e+01 5.458098e+01 moveto -9.603179e+01 5.259205e+01 lineto -9.802223e+01 5.325551e+01 lineto -9.752926e+01 5.523453e+01 lineto -9.556853e+01 5.458098e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.503555e+01 5.655034e+01 moveto -9.556853e+01 5.458098e+01 lineto -9.752926e+01 5.523453e+01 lineto -9.696208e+01 5.719249e+01 lineto -9.503555e+01 5.655034e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.443404e+01 5.849563e+01 moveto -9.503555e+01 5.655034e+01 lineto -9.696208e+01 5.719249e+01 lineto -9.6322e+01 5.912492e+01 lineto -9.443404e+01 5.849563e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.376539e+01 6.041241e+01 moveto -9.443404e+01 5.849563e+01 lineto -9.6322e+01 5.912492e+01 lineto -9.561046e+01 6.102741e+01 lineto -9.376539e+01 6.041241e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.303113e+01 6.229632e+01 moveto -9.376539e+01 6.041241e+01 lineto -9.561046e+01 6.102741e+01 lineto -9.48291e+01 6.289562e+01 lineto -9.303113e+01 6.229632e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.223292e+01 6.414305e+01 moveto -9.303113e+01 6.229632e+01 lineto -9.48291e+01 6.289562e+01 lineto -9.397969e+01 6.472529e+01 lineto -9.223292e+01 6.414305e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.137259e+01 6.59484e+01 moveto -9.223292e+01 6.414305e+01 lineto -9.397969e+01 6.472529e+01 lineto -9.306418e+01 6.651224e+01 lineto -9.137259e+01 6.59484e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.04521e+01 6.770824e+01 moveto -9.137259e+01 6.59484e+01 lineto -9.306418e+01 6.651224e+01 lineto -9.208465e+01 6.82524e+01 lineto -9.04521e+01 6.770824e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.947355e+01 6.941856e+01 moveto -9.04521e+01 6.770824e+01 lineto -9.208465e+01 6.82524e+01 lineto -9.104333e+01 6.99418e+01 lineto -8.947355e+01 6.941856e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.843918e+01 7.107546e+01 moveto -8.947355e+01 6.941856e+01 lineto -9.104333e+01 6.99418e+01 lineto -8.994261e+01 7.157659e+01 lineto -8.843918e+01 7.107546e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.735133e+01 7.267516e+01 moveto -8.843918e+01 7.107546e+01 lineto -8.994261e+01 7.157659e+01 lineto -8.878499e+01 7.315303e+01 lineto -8.735133e+01 7.267516e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.62125e+01 7.421401e+01 moveto -8.735133e+01 7.267516e+01 lineto -8.878499e+01 7.315303e+01 lineto -8.757311e+01 7.466753e+01 lineto -8.62125e+01 7.421401e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.502528e+01 7.56885e+01 moveto -8.62125e+01 7.421401e+01 lineto -8.757311e+01 7.466753e+01 lineto -8.630974e+01 7.611664e+01 lineto -8.502528e+01 7.56885e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.379238e+01 7.709527e+01 moveto -8.502528e+01 7.56885e+01 lineto -8.630974e+01 7.611664e+01 lineto -8.499775e+01 7.749705e+01 lineto -8.379238e+01 7.709527e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.251661e+01 7.843111e+01 moveto -8.379238e+01 7.709527e+01 lineto -8.499775e+01 7.749705e+01 lineto -8.364016e+01 7.880561e+01 lineto -8.251661e+01 7.843111e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.120088e+01 7.969296e+01 moveto -8.251661e+01 7.843111e+01 lineto -8.364016e+01 7.880561e+01 lineto -8.224004e+01 8.003933e+01 lineto -8.120088e+01 7.969296e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.98482e+01 8.087796e+01 moveto -8.120088e+01 7.969296e+01 lineto -8.224004e+01 8.003933e+01 lineto -8.080059e+01 8.119541e+01 lineto -7.98482e+01 8.087796e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.846164e+01 8.198339e+01 moveto -7.98482e+01 8.087796e+01 lineto -8.080059e+01 8.119541e+01 lineto -7.93251e+01 8.22712e+01 lineto -7.846164e+01 8.198339e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.704438e+01 8.300674e+01 moveto -7.846164e+01 8.198339e+01 lineto -7.93251e+01 8.22712e+01 lineto -7.781693e+01 8.326425e+01 lineto -7.704438e+01 8.300674e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.559964e+01 8.394567e+01 moveto -7.704438e+01 8.300674e+01 lineto -7.781693e+01 8.326425e+01 lineto -7.627952e+01 8.417229e+01 lineto -7.559964e+01 8.394567e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.413073e+01 8.479805e+01 moveto -7.559964e+01 8.394567e+01 lineto -7.627952e+01 8.417229e+01 lineto -7.471639e+01 8.499326e+01 lineto -7.413073e+01 8.479805e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.264098e+01 8.556192e+01 moveto -7.413073e+01 8.479805e+01 lineto -7.471639e+01 8.499326e+01 lineto -7.313109e+01 8.572528e+01 lineto -7.264098e+01 8.556192e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.113381e+01 8.623554e+01 moveto -7.264098e+01 8.556192e+01 lineto -7.313109e+01 8.572528e+01 lineto -7.152724e+01 8.636668e+01 lineto -7.113381e+01 8.623554e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.961264e+01 8.681738e+01 moveto -7.113381e+01 8.623554e+01 lineto -7.152724e+01 8.636668e+01 lineto -6.99085e+01 8.6916e+01 lineto -6.961264e+01 8.681738e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.808095e+01 8.730611e+01 moveto -6.961264e+01 8.681738e+01 lineto -6.99085e+01 8.6916e+01 lineto -6.827857e+01 8.737198e+01 lineto -6.808095e+01 8.730611e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.654224e+01 8.770062e+01 moveto -6.808095e+01 8.730611e+01 lineto -6.827857e+01 8.737198e+01 lineto -6.664116e+01 8.773359e+01 lineto -6.654224e+01 8.770062e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.654224e+01 8.770062e+01 lineto -6.664116e+01 8.773359e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.791581e+01 2.952426e+01 moveto -9.740572e+01 2.768549e+01 lineto -9.91592e+01 2.836316e+01 lineto -9.96969e+01 3.021259e+01 lineto -9.791581e+01 2.952426e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.835082e+01 3.140061e+01 moveto -9.791581e+01 2.952426e+01 lineto -9.96969e+01 3.021259e+01 lineto -1.001554e+02 3.209804e+01 lineto -9.835082e+01 3.140061e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.870975e+01 3.331026e+01 moveto -9.835082e+01 3.140061e+01 lineto -1.001554e+02 3.209804e+01 lineto -1.005338e+02 3.40152e+01 lineto -9.870975e+01 3.331026e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.899178e+01 3.524886e+01 moveto -9.870975e+01 3.331026e+01 lineto -1.005338e+02 3.40152e+01 lineto -1.008311e+02 3.59597e+01 lineto -9.899178e+01 3.524886e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.919627e+01 3.721198e+01 moveto -9.899178e+01 3.524886e+01 lineto -1.008311e+02 3.59597e+01 lineto -1.010466e+02 3.79271e+01 lineto -9.919627e+01 3.721198e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.932275e+01 3.919516e+01 moveto -9.919627e+01 3.721198e+01 lineto -1.010466e+02 3.79271e+01 lineto -1.0118e+02 3.991291e+01 lineto -9.932275e+01 3.919516e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.937094e+01 4.119385e+01 moveto -9.932275e+01 3.919516e+01 lineto -1.0118e+02 3.991291e+01 lineto -1.012308e+02 4.191261e+01 lineto -9.937094e+01 4.119385e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.934073e+01 4.320351e+01 moveto -9.937094e+01 4.119385e+01 lineto -1.012308e+02 4.191261e+01 lineto -1.011989e+02 4.392164e+01 lineto -9.934073e+01 4.320351e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.923218e+01 4.521954e+01 moveto -9.934073e+01 4.320351e+01 lineto -1.011989e+02 4.392164e+01 lineto -1.010845e+02 4.593541e+01 lineto -9.923218e+01 4.521954e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.904554e+01 4.723736e+01 moveto -9.923218e+01 4.521954e+01 lineto -1.010845e+02 4.593541e+01 lineto -1.008877e+02 4.794932e+01 lineto -9.904554e+01 4.723736e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.878123e+01 4.925235e+01 moveto -9.904554e+01 4.723736e+01 lineto -1.008877e+02 4.794932e+01 lineto -1.006091e+02 4.995879e+01 lineto -9.878123e+01 4.925235e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.843987e+01 5.125993e+01 moveto -9.878123e+01 4.925235e+01 lineto -1.006091e+02 4.995879e+01 lineto -1.002493e+02 5.195922e+01 lineto -9.843987e+01 5.125993e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.802223e+01 5.325551e+01 moveto -9.843987e+01 5.125993e+01 lineto -1.002493e+02 5.195922e+01 lineto -9.980907e+01 5.394607e+01 lineto -9.802223e+01 5.325551e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.752926e+01 5.523453e+01 moveto -9.802223e+01 5.325551e+01 lineto -9.980907e+01 5.394607e+01 lineto -9.928942e+01 5.591478e+01 lineto -9.752926e+01 5.523453e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.696208e+01 5.719249e+01 moveto -9.752926e+01 5.523453e+01 lineto -9.928942e+01 5.591478e+01 lineto -9.869156e+01 5.786088e+01 lineto -9.696208e+01 5.719249e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.6322e+01 5.912492e+01 moveto -9.696208e+01 5.719249e+01 lineto -9.869156e+01 5.786088e+01 lineto -9.801684e+01 5.977993e+01 lineto -9.6322e+01 5.912492e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.561046e+01 6.102741e+01 moveto -9.6322e+01 5.912492e+01 lineto -9.801684e+01 5.977993e+01 lineto -9.72668e+01 6.166753e+01 lineto -9.561046e+01 6.102741e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.48291e+01 6.289562e+01 moveto -9.561046e+01 6.102741e+01 lineto -9.72668e+01 6.166753e+01 lineto -9.644316e+01 6.35194e+01 lineto -9.48291e+01 6.289562e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.397969e+01 6.472529e+01 moveto -9.48291e+01 6.289562e+01 lineto -9.644316e+01 6.35194e+01 lineto -9.554779e+01 6.533131e+01 lineto -9.397969e+01 6.472529e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.306418e+01 6.651224e+01 moveto -9.397969e+01 6.472529e+01 lineto -9.554779e+01 6.533131e+01 lineto -9.458274e+01 6.709912e+01 lineto -9.306418e+01 6.651224e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.208465e+01 6.82524e+01 moveto -9.306418e+01 6.651224e+01 lineto -9.458274e+01 6.709912e+01 lineto -9.35502e+01 6.88188e+01 lineto -9.208465e+01 6.82524e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.104333e+01 6.99418e+01 moveto -9.208465e+01 6.82524e+01 lineto -9.35502e+01 6.88188e+01 lineto -9.245254e+01 7.048642e+01 lineto -9.104333e+01 6.99418e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.994261e+01 7.157659e+01 moveto -9.104333e+01 6.99418e+01 lineto -9.245254e+01 7.048642e+01 lineto -9.129226e+01 7.209819e+01 lineto -8.994261e+01 7.157659e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.878499e+01 7.315303e+01 moveto -8.994261e+01 7.157659e+01 lineto -9.129226e+01 7.209819e+01 lineto -9.0072e+01 7.365042e+01 lineto -8.878499e+01 7.315303e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.757311e+01 7.466753e+01 moveto -8.878499e+01 7.315303e+01 lineto -9.0072e+01 7.365042e+01 lineto -8.879454e+01 7.513958e+01 lineto -8.757311e+01 7.466753e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.630974e+01 7.611664e+01 moveto -8.757311e+01 7.466753e+01 lineto -8.879454e+01 7.513958e+01 lineto -8.746281e+01 7.656227e+01 lineto -8.630974e+01 7.611664e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.499775e+01 7.749705e+01 moveto -8.630974e+01 7.611664e+01 lineto -8.746281e+01 7.656227e+01 lineto -8.607984e+01 7.791524e+01 lineto -8.499775e+01 7.749705e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.364016e+01 7.880561e+01 moveto -8.499775e+01 7.749705e+01 lineto -8.607984e+01 7.791524e+01 lineto -8.464878e+01 7.919541e+01 lineto -8.364016e+01 7.880561e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.224004e+01 8.003933e+01 moveto -8.364016e+01 7.880561e+01 lineto -8.464878e+01 7.919541e+01 lineto -8.31729e+01 8.039985e+01 lineto -8.224004e+01 8.003933e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.080059e+01 8.119541e+01 moveto -8.224004e+01 8.003933e+01 lineto -8.31729e+01 8.039985e+01 lineto -8.165556e+01 8.152583e+01 lineto -8.080059e+01 8.119541e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.93251e+01 8.22712e+01 moveto -8.080059e+01 8.119541e+01 lineto -8.165556e+01 8.152583e+01 lineto -8.010023e+01 8.257076e+01 lineto -7.93251e+01 8.22712e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.781693e+01 8.326425e+01 moveto -7.93251e+01 8.22712e+01 lineto -8.010023e+01 8.257076e+01 lineto -7.851046e+01 8.353227e+01 lineto -7.781693e+01 8.326425e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.627952e+01 8.417229e+01 moveto -7.781693e+01 8.326425e+01 lineto -7.851046e+01 8.353227e+01 lineto -7.688986e+01 8.440817e+01 lineto -7.627952e+01 8.417229e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.471639e+01 8.499326e+01 moveto -7.627952e+01 8.417229e+01 lineto -7.688986e+01 8.440817e+01 lineto -7.524215e+01 8.519645e+01 lineto -7.471639e+01 8.499326e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.313109e+01 8.572528e+01 moveto -7.471639e+01 8.499326e+01 lineto -7.524215e+01 8.519645e+01 lineto -7.357107e+01 8.589532e+01 lineto -7.313109e+01 8.572528e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.152724e+01 8.636668e+01 moveto -7.313109e+01 8.572528e+01 lineto -7.357107e+01 8.589532e+01 lineto -7.188043e+01 8.650318e+01 lineto -7.152724e+01 8.636668e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.99085e+01 8.6916e+01 moveto -7.152724e+01 8.636668e+01 lineto -7.188043e+01 8.650318e+01 lineto -7.017411e+01 8.701865e+01 lineto -6.99085e+01 8.6916e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.827857e+01 8.737198e+01 moveto -6.99085e+01 8.6916e+01 lineto -7.017411e+01 8.701865e+01 lineto -6.845597e+01 8.744055e+01 lineto -6.827857e+01 8.737198e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.664116e+01 8.773359e+01 moveto -6.827857e+01 8.737198e+01 lineto -6.845597e+01 8.744055e+01 lineto -6.672996e+01 8.776791e+01 lineto -6.664116e+01 8.773359e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.664116e+01 8.773359e+01 lineto -6.672996e+01 8.776791e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.96969e+01 3.021259e+01 moveto -9.91592e+01 2.836316e+01 lineto -1.007021e+02 2.906325e+01 lineto -1.012641e+02 3.09237e+01 lineto -9.96969e+01 3.021259e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.001554e+02 3.209804e+01 moveto -9.96969e+01 3.021259e+01 lineto -1.012641e+02 3.09237e+01 lineto -1.017433e+02 3.281855e+01 lineto -1.001554e+02 3.209804e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.005338e+02 3.40152e+01 moveto -1.001554e+02 3.209804e+01 lineto -1.017433e+02 3.281855e+01 lineto -1.021388e+02 3.474346e+01 lineto -1.005338e+02 3.40152e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.008311e+02 3.59597e+01 moveto -1.005338e+02 3.40152e+01 lineto -1.021388e+02 3.474346e+01 lineto -1.024495e+02 3.669405e+01 lineto -1.008311e+02 3.59597e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.010466e+02 3.79271e+01 moveto -1.008311e+02 3.59597e+01 lineto -1.024495e+02 3.669405e+01 lineto -1.026748e+02 3.866587e+01 lineto -1.010466e+02 3.79271e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.0118e+02 3.991291e+01 moveto -1.010466e+02 3.79271e+01 lineto -1.026748e+02 3.866587e+01 lineto -1.028141e+02 4.065442e+01 lineto -1.0118e+02 3.991291e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.012308e+02 4.191261e+01 moveto -1.0118e+02 3.991291e+01 lineto -1.028141e+02 4.065442e+01 lineto -1.028672e+02 4.265516e+01 lineto -1.012308e+02 4.191261e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.011989e+02 4.392164e+01 moveto -1.012308e+02 4.191261e+01 lineto -1.028672e+02 4.265516e+01 lineto -1.028339e+02 4.466353e+01 lineto -1.011989e+02 4.392164e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.010845e+02 4.593541e+01 moveto -1.011989e+02 4.392164e+01 lineto -1.028339e+02 4.466353e+01 lineto -1.027143e+02 4.667495e+01 lineto -1.010845e+02 4.593541e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.008877e+02 4.794932e+01 moveto -1.010845e+02 4.593541e+01 lineto -1.027143e+02 4.667495e+01 lineto -1.025087e+02 4.868484e+01 lineto -1.008877e+02 4.794932e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.006091e+02 4.995879e+01 moveto -1.008877e+02 4.794932e+01 lineto -1.025087e+02 4.868484e+01 lineto -1.022175e+02 5.068859e+01 lineto -1.006091e+02 4.995879e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.002493e+02 5.195922e+01 moveto -1.006091e+02 4.995879e+01 lineto -1.022175e+02 5.068859e+01 lineto -1.018414e+02 5.268166e+01 lineto -1.002493e+02 5.195922e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.980907e+01 5.394607e+01 moveto -1.002493e+02 5.195922e+01 lineto -1.018414e+02 5.268166e+01 lineto -1.013813e+02 5.465948e+01 lineto -9.980907e+01 5.394607e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.928942e+01 5.591478e+01 moveto -9.980907e+01 5.394607e+01 lineto -1.013813e+02 5.465948e+01 lineto -1.008382e+02 5.661754e+01 lineto -9.928942e+01 5.591478e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.869156e+01 5.786088e+01 moveto -9.928942e+01 5.591478e+01 lineto -1.008382e+02 5.661754e+01 lineto -1.002133e+02 5.855139e+01 lineto -9.869156e+01 5.786088e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.801684e+01 5.977993e+01 moveto -9.869156e+01 5.786088e+01 lineto -1.002133e+02 5.855139e+01 lineto -9.950812e+01 6.04566e+01 lineto -9.801684e+01 5.977993e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.72668e+01 6.166753e+01 moveto -9.801684e+01 5.977993e+01 lineto -9.950812e+01 6.04566e+01 lineto -9.872421e+01 6.232884e+01 lineto -9.72668e+01 6.166753e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.644316e+01 6.35194e+01 moveto -9.72668e+01 6.166753e+01 lineto -9.872421e+01 6.232884e+01 lineto -9.786336e+01 6.416383e+01 lineto -9.644316e+01 6.35194e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.554779e+01 6.533131e+01 moveto -9.644316e+01 6.35194e+01 lineto -9.786336e+01 6.416383e+01 lineto -9.692755e+01 6.595738e+01 lineto -9.554779e+01 6.533131e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.458274e+01 6.709912e+01 moveto -9.554779e+01 6.533131e+01 lineto -9.692755e+01 6.595738e+01 lineto -9.591891e+01 6.770541e+01 lineto -9.458274e+01 6.709912e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.35502e+01 6.88188e+01 moveto -9.458274e+01 6.709912e+01 lineto -9.591891e+01 6.770541e+01 lineto -9.483974e+01 6.940393e+01 lineto -9.35502e+01 6.88188e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.245254e+01 7.048642e+01 moveto -9.35502e+01 6.88188e+01 lineto -9.483974e+01 6.940393e+01 lineto -9.36925e+01 7.104906e+01 lineto -9.245254e+01 7.048642e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.129226e+01 7.209819e+01 moveto -9.245254e+01 7.048642e+01 lineto -9.36925e+01 7.104906e+01 lineto -9.247981e+01 7.263705e+01 lineto -9.129226e+01 7.209819e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.0072e+01 7.365042e+01 moveto -9.129226e+01 7.209819e+01 lineto -9.247981e+01 7.263705e+01 lineto -9.120443e+01 7.416427e+01 lineto -9.0072e+01 7.365042e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.879454e+01 7.513958e+01 moveto -9.0072e+01 7.365042e+01 lineto -9.120443e+01 7.416427e+01 lineto -8.986928e+01 7.562725e+01 lineto -8.879454e+01 7.513958e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.746281e+01 7.656227e+01 moveto -8.879454e+01 7.513958e+01 lineto -8.986928e+01 7.562725e+01 lineto -8.84774e+01 7.702264e+01 lineto -8.746281e+01 7.656227e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.607984e+01 7.791524e+01 moveto -8.746281e+01 7.656227e+01 lineto -8.84774e+01 7.702264e+01 lineto -8.703196e+01 7.834727e+01 lineto -8.607984e+01 7.791524e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.464878e+01 7.919541e+01 moveto -8.607984e+01 7.791524e+01 lineto -8.703196e+01 7.834727e+01 lineto -8.553626e+01 7.959811e+01 lineto -8.464878e+01 7.919541e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.31729e+01 8.039985e+01 moveto -8.464878e+01 7.919541e+01 lineto -8.553626e+01 7.959811e+01 lineto -8.399372e+01 8.077231e+01 lineto -8.31729e+01 8.039985e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.165556e+01 8.152583e+01 moveto -8.31729e+01 8.039985e+01 lineto -8.399372e+01 8.077231e+01 lineto -8.240785e+01 8.186718e+01 lineto -8.165556e+01 8.152583e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.010023e+01 8.257076e+01 moveto -8.165556e+01 8.152583e+01 lineto -8.240785e+01 8.186718e+01 lineto -8.078227e+01 8.288024e+01 lineto -8.010023e+01 8.257076e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.851046e+01 8.353227e+01 moveto -8.010023e+01 8.257076e+01 lineto -8.078227e+01 8.288024e+01 lineto -7.912069e+01 8.380917e+01 lineto -7.851046e+01 8.353227e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.688986e+01 8.440817e+01 moveto -7.851046e+01 8.353227e+01 lineto -7.912069e+01 8.380917e+01 lineto -7.74269e+01 8.465185e+01 lineto -7.688986e+01 8.440817e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.524215e+01 8.519645e+01 moveto -7.688986e+01 8.440817e+01 lineto -7.74269e+01 8.465185e+01 lineto -7.570476e+01 8.540636e+01 lineto -7.524215e+01 8.519645e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.357107e+01 8.589532e+01 moveto -7.524215e+01 8.519645e+01 lineto -7.570476e+01 8.540636e+01 lineto -7.39582e+01 8.607098e+01 lineto -7.357107e+01 8.589532e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.188043e+01 8.650318e+01 moveto -7.357107e+01 8.589532e+01 lineto -7.39582e+01 8.607098e+01 lineto -7.21912e+01 8.664419e+01 lineto -7.188043e+01 8.650318e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.017411e+01 8.701865e+01 moveto -7.188043e+01 8.650318e+01 lineto -7.21912e+01 8.664419e+01 lineto -7.040781e+01 8.712469e+01 lineto -7.017411e+01 8.701865e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.845597e+01 8.744055e+01 moveto -7.017411e+01 8.701865e+01 lineto -7.040781e+01 8.712469e+01 lineto -6.861207e+01 8.751138e+01 lineto -6.845597e+01 8.744055e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.672996e+01 8.776791e+01 moveto -6.845597e+01 8.744055e+01 lineto -6.861207e+01 8.751138e+01 lineto -6.68081e+01 8.780337e+01 lineto -6.672996e+01 8.776791e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.672996e+01 8.776791e+01 lineto -6.68081e+01 8.780337e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.012641e+02 3.09237e+01 moveto -1.007021e+02 2.906325e+01 lineto -1.020249e+02 2.978145e+01 lineto -1.026077e+02 3.165321e+01 lineto -1.012641e+02 3.09237e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.017433e+02 3.281855e+01 moveto -1.012641e+02 3.09237e+01 lineto -1.026077e+02 3.165321e+01 lineto -1.031047e+02 3.355769e+01 lineto -1.017433e+02 3.281855e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.021388e+02 3.474346e+01 moveto -1.017433e+02 3.281855e+01 lineto -1.031047e+02 3.355769e+01 lineto -1.035148e+02 3.549056e+01 lineto -1.021388e+02 3.474346e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.024495e+02 3.669405e+01 moveto -1.021388e+02 3.474346e+01 lineto -1.035148e+02 3.549056e+01 lineto -1.03837e+02 3.74474e+01 lineto -1.024495e+02 3.669405e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.026748e+02 3.866587e+01 moveto -1.024495e+02 3.669405e+01 lineto -1.03837e+02 3.74474e+01 lineto -1.040706e+02 3.942375e+01 lineto -1.026748e+02 3.866587e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.028141e+02 4.065442e+01 moveto -1.026748e+02 3.866587e+01 lineto -1.040706e+02 3.942375e+01 lineto -1.042151e+02 4.14151e+01 lineto -1.028141e+02 4.065442e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.028672e+02 4.265516e+01 moveto -1.028141e+02 4.065442e+01 lineto -1.042151e+02 4.14151e+01 lineto -1.042702e+02 4.341691e+01 lineto -1.028672e+02 4.265516e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.028339e+02 4.466353e+01 moveto -1.028672e+02 4.265516e+01 lineto -1.042702e+02 4.341691e+01 lineto -1.042357e+02 4.542461e+01 lineto -1.028339e+02 4.466353e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.027143e+02 4.667495e+01 moveto -1.028339e+02 4.466353e+01 lineto -1.042357e+02 4.542461e+01 lineto -1.041116e+02 4.743363e+01 lineto -1.027143e+02 4.667495e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.025087e+02 4.868484e+01 moveto -1.027143e+02 4.667495e+01 lineto -1.041116e+02 4.743363e+01 lineto -1.038984e+02 4.943937e+01 lineto -1.025087e+02 4.868484e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.022175e+02 5.068859e+01 moveto -1.025087e+02 4.868484e+01 lineto -1.038984e+02 4.943937e+01 lineto -1.035964e+02 5.143727e+01 lineto -1.022175e+02 5.068859e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.018414e+02 5.268166e+01 moveto -1.022175e+02 5.068859e+01 lineto -1.035964e+02 5.143727e+01 lineto -1.032064e+02 5.342277e+01 lineto -1.018414e+02 5.268166e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.013813e+02 5.465948e+01 moveto -1.018414e+02 5.268166e+01 lineto -1.032064e+02 5.342277e+01 lineto -1.027292e+02 5.539133e+01 lineto -1.013813e+02 5.465948e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.008382e+02 5.661754e+01 moveto -1.013813e+02 5.465948e+01 lineto -1.027292e+02 5.539133e+01 lineto -1.02166e+02 5.733848e+01 lineto -1.008382e+02 5.661754e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.002133e+02 5.855139e+01 moveto -1.008382e+02 5.661754e+01 lineto -1.02166e+02 5.733848e+01 lineto -1.01518e+02 5.925975e+01 lineto -1.002133e+02 5.855139e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.950812e+01 6.04566e+01 moveto -1.002133e+02 5.855139e+01 lineto -1.01518e+02 5.925975e+01 lineto -1.007866e+02 6.115078e+01 lineto -9.950812e+01 6.04566e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.872421e+01 6.232884e+01 moveto -9.950812e+01 6.04566e+01 lineto -1.007866e+02 6.115078e+01 lineto -9.997369e+01 6.300725e+01 lineto -9.872421e+01 6.232884e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.786336e+01 6.416383e+01 moveto -9.872421e+01 6.232884e+01 lineto -9.997369e+01 6.300725e+01 lineto -9.908095e+01 6.482492e+01 lineto -9.786336e+01 6.416383e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.692755e+01 6.595738e+01 moveto -9.786336e+01 6.416383e+01 lineto -9.908095e+01 6.482492e+01 lineto -9.811047e+01 6.659965e+01 lineto -9.692755e+01 6.595738e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.591891e+01 6.770541e+01 moveto -9.692755e+01 6.595738e+01 lineto -9.811047e+01 6.659965e+01 lineto -9.706446e+01 6.832739e+01 lineto -9.591891e+01 6.770541e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.483974e+01 6.940393e+01 moveto -9.591891e+01 6.770541e+01 lineto -9.706446e+01 6.832739e+01 lineto -9.594531e+01 7.00042e+01 lineto -9.483974e+01 6.940393e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.36925e+01 7.104906e+01 moveto -9.483974e+01 6.940393e+01 lineto -9.594531e+01 7.00042e+01 lineto -9.475556e+01 7.162625e+01 lineto -9.36925e+01 7.104906e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.247981e+01 7.263705e+01 moveto -9.36925e+01 7.104906e+01 lineto -9.475556e+01 7.162625e+01 lineto -9.349794e+01 7.318984e+01 lineto -9.247981e+01 7.263705e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.120443e+01 7.416427e+01 moveto -9.247981e+01 7.263705e+01 lineto -9.349794e+01 7.318984e+01 lineto -9.217531e+01 7.469141e+01 lineto -9.120443e+01 7.416427e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.986928e+01 7.562725e+01 moveto -9.120443e+01 7.416427e+01 lineto -9.217531e+01 7.469141e+01 lineto -9.079069e+01 7.612753e+01 lineto -8.986928e+01 7.562725e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.84774e+01 7.702264e+01 moveto -8.986928e+01 7.562725e+01 lineto -9.079069e+01 7.612753e+01 lineto -8.934724e+01 7.749492e+01 lineto -8.84774e+01 7.702264e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.703196e+01 7.834727e+01 moveto -8.84774e+01 7.702264e+01 lineto -8.934724e+01 7.749492e+01 lineto -8.784824e+01 7.879047e+01 lineto -8.703196e+01 7.834727e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.553626e+01 7.959811e+01 moveto -8.703196e+01 7.834727e+01 lineto -8.784824e+01 7.879047e+01 lineto -8.629713e+01 8.001122e+01 lineto -8.553626e+01 7.959811e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.399372e+01 8.077231e+01 moveto -8.553626e+01 7.959811e+01 lineto -8.629713e+01 8.001122e+01 lineto -8.469744e+01 8.115439e+01 lineto -8.399372e+01 8.077231e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.240785e+01 8.186718e+01 moveto -8.399372e+01 8.077231e+01 lineto -8.469744e+01 8.115439e+01 lineto -8.305281e+01 8.221737e+01 lineto -8.240785e+01 8.186718e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.078227e+01 8.288024e+01 moveto -8.240785e+01 8.186718e+01 lineto -8.305281e+01 8.221737e+01 lineto -8.1367e+01 8.319772e+01 lineto -8.078227e+01 8.288024e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.912069e+01 8.380917e+01 moveto -8.078227e+01 8.288024e+01 lineto -8.1367e+01 8.319772e+01 lineto -7.964386e+01 8.409323e+01 lineto -7.912069e+01 8.380917e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.74269e+01 8.465185e+01 moveto -7.912069e+01 8.380917e+01 lineto -7.964386e+01 8.409323e+01 lineto -7.788731e+01 8.490184e+01 lineto -7.74269e+01 8.465185e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.570476e+01 8.540636e+01 moveto -7.74269e+01 8.465185e+01 lineto -7.788731e+01 8.490184e+01 lineto -7.610137e+01 8.56217e+01 lineto -7.570476e+01 8.540636e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.39582e+01 8.607098e+01 moveto -7.570476e+01 8.540636e+01 lineto -7.610137e+01 8.56217e+01 lineto -7.42901e+01 8.625119e+01 lineto -7.39582e+01 8.607098e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.21912e+01 8.664419e+01 moveto -7.39582e+01 8.607098e+01 lineto -7.42901e+01 8.625119e+01 lineto -7.245764e+01 8.678885e+01 lineto -7.21912e+01 8.664419e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.040781e+01 8.712469e+01 moveto -7.21912e+01 8.664419e+01 lineto -7.245764e+01 8.678885e+01 lineto -7.060817e+01 8.723348e+01 lineto -7.040781e+01 8.712469e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.861207e+01 8.751138e+01 moveto -7.040781e+01 8.712469e+01 lineto -7.060817e+01 8.723348e+01 lineto -6.87459e+01 8.758404e+01 lineto -6.861207e+01 8.751138e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.68081e+01 8.780337e+01 moveto -6.861207e+01 8.751138e+01 lineto -6.87459e+01 8.758404e+01 lineto -6.687509e+01 8.783974e+01 lineto -6.68081e+01 8.780337e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.68081e+01 8.780337e+01 lineto -6.687509e+01 8.783974e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.026077e+02 3.165321e+01 moveto -1.020249e+02 2.978145e+01 lineto -1.031193e+02 3.051332e+01 lineto -1.037194e+02 3.23966e+01 lineto -1.026077e+02 3.165321e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.031047e+02 3.355769e+01 moveto -1.026077e+02 3.165321e+01 lineto -1.037194e+02 3.23966e+01 lineto -1.042311e+02 3.431091e+01 lineto -1.031047e+02 3.355769e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.035148e+02 3.549056e+01 moveto -1.031047e+02 3.355769e+01 lineto -1.042311e+02 3.431091e+01 lineto -1.046533e+02 3.625188e+01 lineto -1.035148e+02 3.549056e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.03837e+02 3.74474e+01 moveto -1.035148e+02 3.549056e+01 lineto -1.046533e+02 3.625188e+01 lineto -1.04985e+02 3.821509e+01 lineto -1.03837e+02 3.74474e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.040706e+02 3.942375e+01 moveto -1.03837e+02 3.74474e+01 lineto -1.04985e+02 3.821509e+01 lineto -1.052256e+02 4.019606e+01 lineto -1.040706e+02 3.942375e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.042151e+02 4.14151e+01 moveto -1.040706e+02 3.942375e+01 lineto -1.052256e+02 4.019606e+01 lineto -1.053744e+02 4.219027e+01 lineto -1.042151e+02 4.14151e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.042702e+02 4.341691e+01 moveto -1.042151e+02 4.14151e+01 lineto -1.053744e+02 4.219027e+01 lineto -1.054311e+02 4.419317e+01 lineto -1.042702e+02 4.341691e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.042357e+02 4.542461e+01 moveto -1.042702e+02 4.341691e+01 lineto -1.054311e+02 4.419317e+01 lineto -1.053955e+02 4.620019e+01 lineto -1.042357e+02 4.542461e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.041116e+02 4.743363e+01 moveto -1.042357e+02 4.542461e+01 lineto -1.053955e+02 4.620019e+01 lineto -1.052678e+02 4.820675e+01 lineto -1.041116e+02 4.743363e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.038984e+02 4.943937e+01 moveto -1.041116e+02 4.743363e+01 lineto -1.052678e+02 4.820675e+01 lineto -1.050483e+02 5.020828e+01 lineto -1.038984e+02 4.943937e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.035964e+02 5.143727e+01 moveto -1.038984e+02 4.943937e+01 lineto -1.050483e+02 5.020828e+01 lineto -1.047374e+02 5.220021e+01 lineto -1.035964e+02 5.143727e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.032064e+02 5.342277e+01 moveto -1.035964e+02 5.143727e+01 lineto -1.047374e+02 5.220021e+01 lineto -1.043358e+02 5.4178e+01 lineto -1.032064e+02 5.342277e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.027292e+02 5.539133e+01 moveto -1.032064e+02 5.342277e+01 lineto -1.043358e+02 5.4178e+01 lineto -1.038446e+02 5.613713e+01 lineto -1.027292e+02 5.539133e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.02166e+02 5.733848e+01 moveto -1.027292e+02 5.539133e+01 lineto -1.038446e+02 5.613713e+01 lineto -1.032647e+02 5.807314e+01 lineto -1.02166e+02 5.733848e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.01518e+02 5.925975e+01 moveto -1.02166e+02 5.733848e+01 lineto -1.032647e+02 5.807314e+01 lineto -1.025975e+02 5.998161e+01 lineto -1.01518e+02 5.925975e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.007866e+02 6.115078e+01 moveto -1.01518e+02 5.925975e+01 lineto -1.025975e+02 5.998161e+01 lineto -1.018445e+02 6.185818e+01 lineto -1.007866e+02 6.115078e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.997369e+01 6.300725e+01 moveto -1.007866e+02 6.115078e+01 lineto -1.018445e+02 6.185818e+01 lineto -1.010076e+02 6.369858e+01 lineto -9.997369e+01 6.300725e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.908095e+01 6.482492e+01 moveto -9.997369e+01 6.300725e+01 lineto -1.010076e+02 6.369858e+01 lineto -1.000884e+02 6.54986e+01 lineto -9.908095e+01 6.482492e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.811047e+01 6.659965e+01 moveto -9.908095e+01 6.482492e+01 lineto -1.000884e+02 6.54986e+01 lineto -9.908925e+01 6.725415e+01 lineto -9.811047e+01 6.659965e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.706446e+01 6.832739e+01 moveto -9.811047e+01 6.659965e+01 lineto -9.908925e+01 6.725415e+01 lineto -9.801232e+01 6.896121e+01 lineto -9.706446e+01 6.832739e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.594531e+01 7.00042e+01 moveto -9.706446e+01 6.832739e+01 lineto -9.801232e+01 6.896121e+01 lineto -9.686008e+01 7.06159e+01 lineto -9.594531e+01 7.00042e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.475556e+01 7.162625e+01 moveto -9.594531e+01 7.00042e+01 lineto -9.686008e+01 7.06159e+01 lineto -9.563517e+01 7.221443e+01 lineto -9.475556e+01 7.162625e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.349794e+01 7.318984e+01 moveto -9.475556e+01 7.162625e+01 lineto -9.563517e+01 7.221443e+01 lineto -9.434037e+01 7.375316e+01 lineto -9.349794e+01 7.318984e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.217531e+01 7.469141e+01 moveto -9.349794e+01 7.318984e+01 lineto -9.434037e+01 7.375316e+01 lineto -9.297864e+01 7.522859e+01 lineto -9.217531e+01 7.469141e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.079069e+01 7.612753e+01 moveto -9.217531e+01 7.469141e+01 lineto -9.297864e+01 7.522859e+01 lineto -9.155309e+01 7.663734e+01 lineto -9.079069e+01 7.612753e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.934724e+01 7.749492e+01 moveto -9.079069e+01 7.612753e+01 lineto -9.155309e+01 7.663734e+01 lineto -9.006697e+01 7.79762e+01 lineto -8.934724e+01 7.749492e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.784824e+01 7.879047e+01 moveto -8.934724e+01 7.749492e+01 lineto -9.006697e+01 7.79762e+01 lineto -8.852366e+01 7.924212e+01 lineto -8.784824e+01 7.879047e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.629713e+01 8.001122e+01 moveto -8.784824e+01 7.879047e+01 lineto -8.852366e+01 7.924212e+01 lineto -8.69267e+01 8.043221e+01 lineto -8.629713e+01 8.001122e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.469744e+01 8.115439e+01 moveto -8.629713e+01 8.001122e+01 lineto -8.69267e+01 8.043221e+01 lineto -8.527972e+01 8.154375e+01 lineto -8.469744e+01 8.115439e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.305281e+01 8.221737e+01 moveto -8.469744e+01 8.115439e+01 lineto -8.527972e+01 8.154375e+01 lineto -8.358647e+01 8.257422e+01 lineto -8.305281e+01 8.221737e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.1367e+01 8.319772e+01 moveto -8.305281e+01 8.221737e+01 lineto -8.358647e+01 8.257422e+01 lineto -8.185083e+01 8.352125e+01 lineto -8.1367e+01 8.319772e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.964386e+01 8.409323e+01 moveto -8.1367e+01 8.319772e+01 lineto -8.185083e+01 8.352125e+01 lineto -8.007675e+01 8.438269e+01 lineto -7.964386e+01 8.409323e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.788731e+01 8.490184e+01 moveto -7.964386e+01 8.409323e+01 lineto -8.007675e+01 8.438269e+01 lineto -7.826828e+01 8.515658e+01 lineto -7.788731e+01 8.490184e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.610137e+01 8.56217e+01 moveto -7.788731e+01 8.490184e+01 lineto -7.826828e+01 8.515658e+01 lineto -7.642954e+01 8.584114e+01 lineto -7.610137e+01 8.56217e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.42901e+01 8.625119e+01 moveto -7.610137e+01 8.56217e+01 lineto -7.642954e+01 8.584114e+01 lineto -7.456473e+01 8.643483e+01 lineto -7.42901e+01 8.625119e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.245764e+01 8.678885e+01 moveto -7.42901e+01 8.625119e+01 lineto -7.456473e+01 8.643483e+01 lineto -7.267809e+01 8.693627e+01 lineto -7.245764e+01 8.678885e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.060817e+01 8.723348e+01 moveto -7.245764e+01 8.678885e+01 lineto -7.267809e+01 8.693627e+01 lineto -7.077395e+01 8.734433e+01 lineto -7.060817e+01 8.723348e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.87459e+01 8.758404e+01 moveto -7.060817e+01 8.723348e+01 lineto -7.077395e+01 8.734433e+01 lineto -6.885663e+01 8.765808e+01 lineto -6.87459e+01 8.758404e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.687509e+01 8.783974e+01 moveto -6.87459e+01 8.758404e+01 lineto -6.885663e+01 8.765808e+01 lineto -6.693052e+01 8.78768e+01 lineto -6.687509e+01 8.783974e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.687509e+01 8.783974e+01 lineto -6.693052e+01 8.78768e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.037194e+02 3.23966e+01 moveto -1.031193e+02 3.051332e+01 lineto -1.039788e+02 3.125436e+01 lineto -1.045924e+02 3.314931e+01 lineto -1.037194e+02 3.23966e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.042311e+02 3.431091e+01 moveto -1.037194e+02 3.23966e+01 lineto -1.045924e+02 3.314931e+01 lineto -1.051156e+02 3.507356e+01 lineto -1.042311e+02 3.431091e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.046533e+02 3.625188e+01 moveto -1.042311e+02 3.431091e+01 lineto -1.051156e+02 3.507356e+01 lineto -1.055474e+02 3.702274e+01 lineto -1.046533e+02 3.625188e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.04985e+02 3.821509e+01 moveto -1.046533e+02 3.625188e+01 lineto -1.055474e+02 3.702274e+01 lineto -1.058866e+02 3.89924e+01 lineto -1.04985e+02 3.821509e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.052256e+02 4.019606e+01 moveto -1.04985e+02 3.821509e+01 lineto -1.058866e+02 3.89924e+01 lineto -1.061326e+02 4.097805e+01 lineto -1.052256e+02 4.019606e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.053744e+02 4.219027e+01 moveto -1.052256e+02 4.019606e+01 lineto -1.061326e+02 4.097805e+01 lineto -1.062847e+02 4.297515e+01 lineto -1.053744e+02 4.219027e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.054311e+02 4.419317e+01 moveto -1.053744e+02 4.219027e+01 lineto -1.062847e+02 4.297515e+01 lineto -1.063427e+02 4.497915e+01 lineto -1.054311e+02 4.419317e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.053955e+02 4.620019e+01 moveto -1.054311e+02 4.419317e+01 lineto -1.063427e+02 4.497915e+01 lineto -1.063063e+02 4.698548e+01 lineto -1.053955e+02 4.620019e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.052678e+02 4.820675e+01 moveto -1.053955e+02 4.620019e+01 lineto -1.063063e+02 4.698548e+01 lineto -1.061757e+02 4.898956e+01 lineto -1.052678e+02 4.820675e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.050483e+02 5.020828e+01 moveto -1.052678e+02 4.820675e+01 lineto -1.061757e+02 4.898956e+01 lineto -1.059513e+02 5.098682e+01 lineto -1.050483e+02 5.020828e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.047374e+02 5.220021e+01 moveto -1.050483e+02 5.020828e+01 lineto -1.059513e+02 5.098682e+01 lineto -1.056333e+02 5.297271e+01 lineto -1.047374e+02 5.220021e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.043358e+02 5.4178e+01 moveto -1.047374e+02 5.220021e+01 lineto -1.056333e+02 5.297271e+01 lineto -1.052227e+02 5.494269e+01 lineto -1.043358e+02 5.4178e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.038446e+02 5.613713e+01 moveto -1.043358e+02 5.4178e+01 lineto -1.052227e+02 5.494269e+01 lineto -1.047204e+02 5.689227e+01 lineto -1.038446e+02 5.613713e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.032647e+02 5.807314e+01 moveto -1.038446e+02 5.613713e+01 lineto -1.047204e+02 5.689227e+01 lineto -1.041274e+02 5.8817e+01 lineto -1.032647e+02 5.807314e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.025975e+02 5.998161e+01 moveto -1.032647e+02 5.807314e+01 lineto -1.041274e+02 5.8817e+01 lineto -1.034452e+02 6.07125e+01 lineto -1.025975e+02 5.998161e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.018445e+02 6.185818e+01 moveto -1.025975e+02 5.998161e+01 lineto -1.034452e+02 6.07125e+01 lineto -1.026753e+02 6.257444e+01 lineto -1.018445e+02 6.185818e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.010076e+02 6.369858e+01 moveto -1.018445e+02 6.185818e+01 lineto -1.026753e+02 6.257444e+01 lineto -1.018194e+02 6.439856e+01 lineto -1.010076e+02 6.369858e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.000884e+02 6.54986e+01 moveto -1.010076e+02 6.369858e+01 lineto -1.018194e+02 6.439856e+01 lineto -1.008796e+02 6.618072e+01 lineto -1.000884e+02 6.54986e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.908925e+01 6.725415e+01 moveto -1.000884e+02 6.54986e+01 lineto -1.008796e+02 6.618072e+01 lineto -9.985786e+01 6.791684e+01 lineto -9.908925e+01 6.725415e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.801232e+01 6.896121e+01 moveto -9.908925e+01 6.725415e+01 lineto -9.985786e+01 6.791684e+01 lineto -9.875665e+01 6.960297e+01 lineto -9.801232e+01 6.896121e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.686008e+01 7.06159e+01 moveto -9.801232e+01 6.896121e+01 lineto -9.875665e+01 6.960297e+01 lineto -9.757843e+01 7.123526e+01 lineto -9.686008e+01 7.06159e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.563517e+01 7.221443e+01 moveto -9.686008e+01 7.06159e+01 lineto -9.757843e+01 7.123526e+01 lineto -9.63259e+01 7.280998e+01 lineto -9.563517e+01 7.221443e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.434037e+01 7.375316e+01 moveto -9.563517e+01 7.221443e+01 lineto -9.63259e+01 7.280998e+01 lineto -9.500191e+01 7.432354e+01 lineto -9.434037e+01 7.375316e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.297864e+01 7.522859e+01 moveto -9.434037e+01 7.375316e+01 lineto -9.500191e+01 7.432354e+01 lineto -9.360948e+01 7.577249e+01 lineto -9.297864e+01 7.522859e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.155309e+01 7.663734e+01 moveto -9.297864e+01 7.522859e+01 lineto -9.360948e+01 7.577249e+01 lineto -9.215178e+01 7.715353e+01 lineto -9.155309e+01 7.663734e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.006697e+01 7.79762e+01 moveto -9.155309e+01 7.663734e+01 lineto -9.215178e+01 7.715353e+01 lineto -9.063215e+01 7.84635e+01 lineto -9.006697e+01 7.79762e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.852366e+01 7.924212e+01 moveto -9.006697e+01 7.79762e+01 lineto -9.063215e+01 7.84635e+01 lineto -8.905405e+01 7.969942e+01 lineto -8.852366e+01 7.924212e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.69267e+01 8.043221e+01 moveto -8.852366e+01 7.924212e+01 lineto -8.905405e+01 7.969942e+01 lineto -8.742108e+01 8.085846e+01 lineto -8.69267e+01 8.043221e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.527972e+01 8.154375e+01 moveto -8.69267e+01 8.043221e+01 lineto -8.742108e+01 8.085846e+01 lineto -8.573696e+01 8.193799e+01 lineto -8.527972e+01 8.154375e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.358647e+01 8.257422e+01 moveto -8.527972e+01 8.154375e+01 lineto -8.573696e+01 8.193799e+01 lineto -8.400554e+01 8.293554e+01 lineto -8.358647e+01 8.257422e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.185083e+01 8.352125e+01 moveto -8.358647e+01 8.257422e+01 lineto -8.400554e+01 8.293554e+01 lineto -8.223077e+01 8.384883e+01 lineto -8.185083e+01 8.352125e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.007675e+01 8.438269e+01 moveto -8.185083e+01 8.352125e+01 lineto -8.223077e+01 8.384883e+01 lineto -8.041669e+01 8.467579e+01 lineto -8.007675e+01 8.438269e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.826828e+01 8.515658e+01 moveto -8.007675e+01 8.438269e+01 lineto -8.041669e+01 8.467579e+01 lineto -7.856744e+01 8.541452e+01 lineto -7.826828e+01 8.515658e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.642954e+01 8.584114e+01 moveto -7.826828e+01 8.515658e+01 lineto -7.856744e+01 8.541452e+01 lineto -7.668724e+01 8.606333e+01 lineto -7.642954e+01 8.584114e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.456473e+01 8.643483e+01 moveto -7.642954e+01 8.584114e+01 lineto -7.668724e+01 8.606333e+01 lineto -7.478038e+01 8.662076e+01 lineto -7.456473e+01 8.643483e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.267809e+01 8.693627e+01 moveto -7.456473e+01 8.643483e+01 lineto -7.478038e+01 8.662076e+01 lineto -7.285121e+01 8.708553e+01 lineto -7.267809e+01 8.693627e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.077395e+01 8.734433e+01 moveto -7.267809e+01 8.693627e+01 lineto -7.285121e+01 8.708553e+01 lineto -7.090413e+01 8.745658e+01 lineto -7.077395e+01 8.734433e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.885663e+01 8.765808e+01 moveto -7.077395e+01 8.734433e+01 lineto -7.090413e+01 8.745658e+01 lineto -6.894359e+01 8.773306e+01 lineto -6.885663e+01 8.765808e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.693052e+01 8.78768e+01 moveto -6.885663e+01 8.765808e+01 lineto -6.894359e+01 8.773306e+01 lineto -6.697405e+01 8.791433e+01 lineto -6.693052e+01 8.78768e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.693052e+01 8.78768e+01 lineto -6.697405e+01 8.791433e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.045924e+02 3.314931e+01 moveto -1.039788e+02 3.125436e+01 lineto -1.04598e+02 3.2e+01 lineto -1.052213e+02 3.390668e+01 lineto -1.045924e+02 3.314931e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.051156e+02 3.507356e+01 moveto -1.045924e+02 3.314931e+01 lineto -1.052213e+02 3.390668e+01 lineto -1.057528e+02 3.584095e+01 lineto -1.051156e+02 3.507356e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.055474e+02 3.702274e+01 moveto -1.051156e+02 3.507356e+01 lineto -1.057528e+02 3.584095e+01 lineto -1.061914e+02 3.779839e+01 lineto -1.055474e+02 3.702274e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.058866e+02 3.89924e+01 moveto -1.055474e+02 3.702274e+01 lineto -1.061914e+02 3.779839e+01 lineto -1.065361e+02 3.977453e+01 lineto -1.058866e+02 3.89924e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.061326e+02 4.097805e+01 moveto -1.058866e+02 3.89924e+01 lineto -1.065361e+02 3.977453e+01 lineto -1.067859e+02 4.176488e+01 lineto -1.061326e+02 4.097805e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.062847e+02 4.297515e+01 moveto -1.061326e+02 4.097805e+01 lineto -1.067859e+02 4.176488e+01 lineto -1.069405e+02 4.37649e+01 lineto -1.062847e+02 4.297515e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.063427e+02 4.497915e+01 moveto -1.062847e+02 4.297515e+01 lineto -1.069405e+02 4.37649e+01 lineto -1.069994e+02 4.577001e+01 lineto -1.063427e+02 4.497915e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.063063e+02 4.698548e+01 moveto -1.063427e+02 4.497915e+01 lineto -1.069994e+02 4.577001e+01 lineto -1.069624e+02 4.777564e+01 lineto -1.063063e+02 4.698548e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.061757e+02 4.898956e+01 moveto -1.063063e+02 4.698548e+01 lineto -1.069624e+02 4.777564e+01 lineto -1.068298e+02 4.977722e+01 lineto -1.061757e+02 4.898956e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.059513e+02 5.098682e+01 moveto -1.061757e+02 4.898956e+01 lineto -1.068298e+02 4.977722e+01 lineto -1.066017e+02 5.177019e+01 lineto -1.059513e+02 5.098682e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.056333e+02 5.297271e+01 moveto -1.059513e+02 5.098682e+01 lineto -1.066017e+02 5.177019e+01 lineto -1.062788e+02 5.375e+01 lineto -1.056333e+02 5.297271e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.052227e+02 5.494269e+01 moveto -1.056333e+02 5.297271e+01 lineto -1.062788e+02 5.375e+01 lineto -1.058617e+02 5.571212e+01 lineto -1.052227e+02 5.494269e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.047204e+02 5.689227e+01 moveto -1.052227e+02 5.494269e+01 lineto -1.058617e+02 5.571212e+01 lineto -1.053513e+02 5.765209e+01 lineto -1.047204e+02 5.689227e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.041274e+02 5.8817e+01 moveto -1.047204e+02 5.689227e+01 lineto -1.053513e+02 5.765209e+01 lineto -1.047489e+02 5.956548e+01 lineto -1.041274e+02 5.8817e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.034452e+02 6.07125e+01 moveto -1.041274e+02 5.8817e+01 lineto -1.047489e+02 5.956548e+01 lineto -1.040559e+02 6.144793e+01 lineto -1.034452e+02 6.07125e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.026753e+02 6.257444e+01 moveto -1.034452e+02 6.07125e+01 lineto -1.040559e+02 6.144793e+01 lineto -1.032737e+02 6.329514e+01 lineto -1.026753e+02 6.257444e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.018194e+02 6.439856e+01 moveto -1.026753e+02 6.257444e+01 lineto -1.032737e+02 6.329514e+01 lineto -1.024043e+02 6.510289e+01 lineto -1.018194e+02 6.439856e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.008796e+02 6.618072e+01 moveto -1.018194e+02 6.439856e+01 lineto -1.024043e+02 6.510289e+01 lineto -1.014495e+02 6.686707e+01 lineto -1.008796e+02 6.618072e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.985786e+01 6.791684e+01 moveto -1.008796e+02 6.618072e+01 lineto -1.014495e+02 6.686707e+01 lineto -1.004116e+02 6.858365e+01 lineto -9.985786e+01 6.791684e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.875665e+01 6.960297e+01 moveto -9.985786e+01 6.791684e+01 lineto -1.004116e+02 6.858365e+01 lineto -9.929286e+01 7.024871e+01 lineto -9.875665e+01 6.960297e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.757843e+01 7.123526e+01 moveto -9.875665e+01 6.960297e+01 lineto -9.929286e+01 7.024871e+01 lineto -9.809592e+01 7.185846e+01 lineto -9.757843e+01 7.123526e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.63259e+01 7.280998e+01 moveto -9.757843e+01 7.123526e+01 lineto -9.809592e+01 7.185846e+01 lineto -9.682349e+01 7.340922e+01 lineto -9.63259e+01 7.280998e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.500191e+01 7.432354e+01 moveto -9.63259e+01 7.280998e+01 lineto -9.682349e+01 7.340922e+01 lineto -9.547847e+01 7.489745e+01 lineto -9.500191e+01 7.432354e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.360948e+01 7.577249e+01 moveto -9.500191e+01 7.432354e+01 lineto -9.547847e+01 7.489745e+01 lineto -9.406392e+01 7.631977e+01 lineto -9.360948e+01 7.577249e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.215178e+01 7.715353e+01 moveto -9.360948e+01 7.577249e+01 lineto -9.406392e+01 7.631977e+01 lineto -9.258307e+01 7.767292e+01 lineto -9.215178e+01 7.715353e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.063215e+01 7.84635e+01 moveto -9.215178e+01 7.715353e+01 lineto -9.258307e+01 7.767292e+01 lineto -9.103931e+01 7.895382e+01 lineto -9.063215e+01 7.84635e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.905405e+01 7.969942e+01 moveto -9.063215e+01 7.84635e+01 lineto -9.103931e+01 7.895382e+01 lineto -8.943614e+01 8.015955e+01 lineto -8.905405e+01 7.969942e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.742108e+01 8.085846e+01 moveto -8.905405e+01 7.969942e+01 lineto -8.943614e+01 8.015955e+01 lineto -8.777723e+01 8.128736e+01 lineto -8.742108e+01 8.085846e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.573696e+01 8.193799e+01 moveto -8.742108e+01 8.085846e+01 lineto -8.777723e+01 8.128736e+01 lineto -8.606636e+01 8.233467e+01 lineto -8.573696e+01 8.193799e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.400554e+01 8.293554e+01 moveto -8.573696e+01 8.193799e+01 lineto -8.606636e+01 8.233467e+01 lineto -8.430744e+01 8.32991e+01 lineto -8.400554e+01 8.293554e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.223077e+01 8.384883e+01 moveto -8.400554e+01 8.293554e+01 lineto -8.430744e+01 8.32991e+01 lineto -8.250447e+01 8.417844e+01 lineto -8.223077e+01 8.384883e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.041669e+01 8.467579e+01 moveto -8.223077e+01 8.384883e+01 lineto -8.250447e+01 8.417844e+01 lineto -8.066157e+01 8.49707e+01 lineto -8.041669e+01 8.467579e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.856744e+01 8.541452e+01 moveto -8.041669e+01 8.467579e+01 lineto -8.066157e+01 8.49707e+01 lineto -7.878295e+01 8.567405e+01 lineto -7.856744e+01 8.541452e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.668724e+01 8.606333e+01 moveto -7.856744e+01 8.541452e+01 lineto -7.878295e+01 8.567405e+01 lineto -7.687289e+01 8.62869e+01 lineto -7.668724e+01 8.606333e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.478038e+01 8.662076e+01 moveto -7.668724e+01 8.606333e+01 lineto -7.687289e+01 8.62869e+01 lineto -7.493574e+01 8.680786e+01 lineto -7.478038e+01 8.662076e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.285121e+01 8.708553e+01 moveto -7.478038e+01 8.662076e+01 lineto -7.493574e+01 8.680786e+01 lineto -7.297593e+01 8.723572e+01 lineto -7.285121e+01 8.708553e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.090413e+01 8.745658e+01 moveto -7.285121e+01 8.708553e+01 lineto -7.297593e+01 8.723572e+01 lineto -7.099792e+01 8.756952e+01 lineto -7.090413e+01 8.745658e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.894359e+01 8.773306e+01 moveto -7.090413e+01 8.745658e+01 lineto -7.099792e+01 8.756952e+01 lineto -6.900623e+01 8.780849e+01 lineto -6.894359e+01 8.773306e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.697405e+01 8.791433e+01 moveto -6.894359e+01 8.773306e+01 lineto -6.900623e+01 8.780849e+01 lineto -6.70054e+01 8.79521e+01 lineto -6.697405e+01 8.791433e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.697405e+01 8.791433e+01 lineto -6.70054e+01 8.79521e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.052213e+02 3.390668e+01 moveto -1.04598e+02 3.2e+01 lineto -1.04973e+02 3.274564e+01 lineto -1.056022e+02 3.466405e+01 lineto -1.052213e+02 3.390668e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.057528e+02 3.584095e+01 moveto -1.052213e+02 3.390668e+01 lineto -1.056022e+02 3.466405e+01 lineto -1.061388e+02 3.660833e+01 lineto -1.057528e+02 3.584095e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.061914e+02 3.779839e+01 moveto -1.057528e+02 3.584095e+01 lineto -1.061388e+02 3.660833e+01 lineto -1.065815e+02 3.857403e+01 lineto -1.061914e+02 3.779839e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.065361e+02 3.977453e+01 moveto -1.061914e+02 3.779839e+01 lineto -1.065815e+02 3.857403e+01 lineto -1.069294e+02 4.055667e+01 lineto -1.065361e+02 3.977453e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.067859e+02 4.176488e+01 moveto -1.065361e+02 3.977453e+01 lineto -1.069294e+02 4.055667e+01 lineto -1.071817e+02 4.255172e+01 lineto -1.067859e+02 4.176488e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.069405e+02 4.37649e+01 moveto -1.067859e+02 4.176488e+01 lineto -1.071817e+02 4.255172e+01 lineto -1.073377e+02 4.455464e+01 lineto -1.069405e+02 4.37649e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.069994e+02 4.577001e+01 moveto -1.069405e+02 4.37649e+01 lineto -1.073377e+02 4.455464e+01 lineto -1.073971e+02 4.656086e+01 lineto -1.069994e+02 4.577001e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.069624e+02 4.777564e+01 moveto -1.069994e+02 4.577001e+01 lineto -1.073971e+02 4.656086e+01 lineto -1.073599e+02 4.85658e+01 lineto -1.069624e+02 4.777564e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.068298e+02 4.977722e+01 moveto -1.069624e+02 4.777564e+01 lineto -1.073599e+02 4.85658e+01 lineto -1.07226e+02 5.056489e+01 lineto -1.068298e+02 4.977722e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.066017e+02 5.177019e+01 moveto -1.068298e+02 4.977722e+01 lineto -1.07226e+02 5.056489e+01 lineto -1.069957e+02 5.255356e+01 lineto -1.066017e+02 5.177019e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.062788e+02 5.375e+01 moveto -1.066017e+02 5.177019e+01 lineto -1.069957e+02 5.255356e+01 lineto -1.066697e+02 5.452728e+01 lineto -1.062788e+02 5.375e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.058617e+02 5.571212e+01 moveto -1.062788e+02 5.375e+01 lineto -1.066697e+02 5.452728e+01 lineto -1.062486e+02 5.648155e+01 lineto -1.058617e+02 5.571212e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.053513e+02 5.765209e+01 moveto -1.058617e+02 5.571212e+01 lineto -1.062486e+02 5.648155e+01 lineto -1.057335e+02 5.841192e+01 lineto -1.053513e+02 5.765209e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.047489e+02 5.956548e+01 moveto -1.053513e+02 5.765209e+01 lineto -1.057335e+02 5.841192e+01 lineto -1.051254e+02 6.031396e+01 lineto -1.047489e+02 5.956548e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.040559e+02 6.144793e+01 moveto -1.047489e+02 5.956548e+01 lineto -1.051254e+02 6.031396e+01 lineto -1.044258e+02 6.218336e+01 lineto -1.040559e+02 6.144793e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.032737e+02 6.329514e+01 moveto -1.040559e+02 6.144793e+01 lineto -1.044258e+02 6.218336e+01 lineto -1.036362e+02 6.401584e+01 lineto -1.032737e+02 6.329514e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.024043e+02 6.510289e+01 moveto -1.032737e+02 6.329514e+01 lineto -1.036362e+02 6.401584e+01 lineto -1.027585e+02 6.580722e+01 lineto -1.024043e+02 6.510289e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.014495e+02 6.686707e+01 moveto -1.024043e+02 6.510289e+01 lineto -1.027585e+02 6.580722e+01 lineto -1.017947e+02 6.755342e+01 lineto -1.014495e+02 6.686707e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.004116e+02 6.858365e+01 moveto -1.014495e+02 6.686707e+01 lineto -1.017947e+02 6.755342e+01 lineto -1.007469e+02 6.925046e+01 lineto -1.004116e+02 6.858365e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.929286e+01 7.024871e+01 moveto -1.004116e+02 6.858365e+01 lineto -1.007469e+02 6.925046e+01 lineto -9.961764e+01 7.089445e+01 lineto -9.929286e+01 7.024871e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.809592e+01 7.185846e+01 moveto -9.929286e+01 7.024871e+01 lineto -9.961764e+01 7.089445e+01 lineto -9.840937e+01 7.248166e+01 lineto -9.809592e+01 7.185846e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.682349e+01 7.340922e+01 moveto -9.809592e+01 7.185846e+01 lineto -9.840937e+01 7.248166e+01 lineto -9.712489e+01 7.400846e+01 lineto -9.682349e+01 7.340922e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.547847e+01 7.489745e+01 moveto -9.682349e+01 7.340922e+01 lineto -9.712489e+01 7.400846e+01 lineto -9.576713e+01 7.547137e+01 lineto -9.547847e+01 7.489745e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.406392e+01 7.631977e+01 moveto -9.547847e+01 7.489745e+01 lineto -9.576713e+01 7.547137e+01 lineto -9.433918e+01 7.686705e+01 lineto -9.406392e+01 7.631977e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.258307e+01 7.767292e+01 moveto -9.406392e+01 7.631977e+01 lineto -9.433918e+01 7.686705e+01 lineto -9.284431e+01 7.819232e+01 lineto -9.258307e+01 7.767292e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.103931e+01 7.895382e+01 moveto -9.258307e+01 7.767292e+01 lineto -9.284431e+01 7.819232e+01 lineto -9.128592e+01 7.944415e+01 lineto -9.103931e+01 7.895382e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.943614e+01 8.015955e+01 moveto -9.103931e+01 7.895382e+01 lineto -9.128592e+01 7.944415e+01 lineto -8.966757e+01 8.061969e+01 lineto -8.943614e+01 8.015955e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.777723e+01 8.128736e+01 moveto -8.943614e+01 8.015955e+01 lineto -8.966757e+01 8.061969e+01 lineto -8.799295e+01 8.171626e+01 lineto -8.777723e+01 8.128736e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.606636e+01 8.233467e+01 moveto -8.777723e+01 8.128736e+01 lineto -8.799295e+01 8.171626e+01 lineto -8.626587e+01 8.273136e+01 lineto -8.606636e+01 8.233467e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.430744e+01 8.32991e+01 moveto -8.606636e+01 8.233467e+01 lineto -8.626587e+01 8.273136e+01 lineto -8.449029e+01 8.366266e+01 lineto -8.430744e+01 8.32991e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.250447e+01 8.417844e+01 moveto -8.430744e+01 8.32991e+01 lineto -8.449029e+01 8.366266e+01 lineto -8.267025e+01 8.450806e+01 lineto -8.250447e+01 8.417844e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.066157e+01 8.49707e+01 moveto -8.250447e+01 8.417844e+01 lineto -8.267025e+01 8.450806e+01 lineto -8.08099e+01 8.526561e+01 lineto -8.066157e+01 8.49707e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.878295e+01 8.567405e+01 moveto -8.066157e+01 8.49707e+01 lineto -8.08099e+01 8.526561e+01 lineto -7.891348e+01 8.593359e+01 lineto -7.878295e+01 8.567405e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.687289e+01 8.62869e+01 moveto -7.878295e+01 8.567405e+01 lineto -7.891348e+01 8.593359e+01 lineto -7.698533e+01 8.651047e+01 lineto -7.687289e+01 8.62869e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.493574e+01 8.680786e+01 moveto -7.687289e+01 8.62869e+01 lineto -7.698533e+01 8.651047e+01 lineto -7.502984e+01 8.699495e+01 lineto -7.493574e+01 8.680786e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.297593e+01 8.723572e+01 moveto -7.493574e+01 8.680786e+01 lineto -7.502984e+01 8.699495e+01 lineto -7.305146e+01 8.738591e+01 lineto -7.297593e+01 8.723572e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.099792e+01 8.756952e+01 moveto -7.297593e+01 8.723572e+01 lineto -7.305146e+01 8.738591e+01 lineto -7.105472e+01 8.768246e+01 lineto -7.099792e+01 8.756952e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.900623e+01 8.780849e+01 moveto -7.099792e+01 8.756952e+01 lineto -7.105472e+01 8.768246e+01 lineto -6.904417e+01 8.788393e+01 lineto -6.900623e+01 8.780849e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.70054e+01 8.79521e+01 moveto -6.900623e+01 8.780849e+01 lineto -6.904417e+01 8.788393e+01 lineto -6.702439e+01 8.798986e+01 lineto -6.70054e+01 8.79521e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.70054e+01 8.79521e+01 lineto -6.702439e+01 8.798986e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.071817e+02 4.255172e+01 moveto -1.069294e+02 4.055667e+01 lineto -1.070643e+02 4.133397e+01 lineto -1.073174e+02 4.333371e+01 lineto -1.071817e+02 4.255172e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.073377e+02 4.455464e+01 moveto -1.071817e+02 4.255172e+01 lineto -1.073174e+02 4.333371e+01 lineto -1.074739e+02 4.533952e+01 lineto -1.073377e+02 4.455464e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.073971e+02 4.656086e+01 moveto -1.073377e+02 4.455464e+01 lineto -1.074739e+02 4.533952e+01 lineto -1.075335e+02 4.734684e+01 lineto -1.073971e+02 4.656086e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.073599e+02 4.85658e+01 moveto -1.073971e+02 4.656086e+01 lineto -1.075335e+02 4.734684e+01 lineto -1.074961e+02 4.935109e+01 lineto -1.073599e+02 4.85658e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.07226e+02 5.056489e+01 moveto -1.073599e+02 4.85658e+01 lineto -1.074961e+02 4.935109e+01 lineto -1.073618e+02 5.134769e+01 lineto -1.07226e+02 5.056489e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.069957e+02 5.255356e+01 moveto -1.07226e+02 5.056489e+01 lineto -1.073618e+02 5.134769e+01 lineto -1.071308e+02 5.33321e+01 lineto -1.069957e+02 5.255356e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.066697e+02 5.452728e+01 moveto -1.069957e+02 5.255356e+01 lineto -1.071308e+02 5.33321e+01 lineto -1.068038e+02 5.529978e+01 lineto -1.066697e+02 5.452728e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.062486e+02 5.648155e+01 moveto -1.066697e+02 5.452728e+01 lineto -1.068038e+02 5.529978e+01 lineto -1.063813e+02 5.724624e+01 lineto -1.062486e+02 5.648155e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.057335e+02 5.841192e+01 moveto -1.062486e+02 5.648155e+01 lineto -1.063813e+02 5.724624e+01 lineto -1.058645e+02 5.916705e+01 lineto -1.057335e+02 5.841192e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.051254e+02 6.031396e+01 moveto -1.057335e+02 5.841192e+01 lineto -1.058645e+02 5.916705e+01 lineto -1.052545e+02 6.105783e+01 lineto -1.051254e+02 6.031396e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.044258e+02 6.218336e+01 moveto -1.051254e+02 6.031396e+01 lineto -1.052545e+02 6.105783e+01 lineto -1.045526e+02 6.291426e+01 lineto -1.044258e+02 6.218336e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.036362e+02 6.401584e+01 moveto -1.044258e+02 6.218336e+01 lineto -1.045526e+02 6.291426e+01 lineto -1.037605e+02 6.47321e+01 lineto -1.036362e+02 6.401584e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.027585e+02 6.580722e+01 moveto -1.036362e+02 6.401584e+01 lineto -1.037605e+02 6.47321e+01 lineto -1.0288e+02 6.650721e+01 lineto -1.027585e+02 6.580722e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.017947e+02 6.755342e+01 moveto -1.027585e+02 6.580722e+01 lineto -1.0288e+02 6.650721e+01 lineto -1.01913e+02 6.823554e+01 lineto -1.017947e+02 6.755342e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.007469e+02 6.925046e+01 moveto -1.017947e+02 6.755342e+01 lineto -1.01913e+02 6.823554e+01 lineto -1.008619e+02 6.991315e+01 lineto -1.007469e+02 6.925046e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.961764e+01 7.089445e+01 moveto -1.007469e+02 6.925046e+01 lineto -1.008619e+02 6.991315e+01 lineto -9.972899e+01 7.153621e+01 lineto -9.961764e+01 7.089445e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.840937e+01 7.248166e+01 moveto -9.961764e+01 7.089445e+01 lineto -9.972899e+01 7.153621e+01 lineto -9.851683e+01 7.310102e+01 lineto -9.840937e+01 7.248166e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.712489e+01 7.400846e+01 moveto -9.840937e+01 7.248166e+01 lineto -9.851683e+01 7.310102e+01 lineto -9.722822e+01 7.460401e+01 lineto -9.712489e+01 7.400846e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.576713e+01 7.547137e+01 moveto -9.712489e+01 7.400846e+01 lineto -9.722822e+01 7.460401e+01 lineto -9.586609e+01 7.604175e+01 lineto -9.576713e+01 7.547137e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.433918e+01 7.686705e+01 moveto -9.576713e+01 7.547137e+01 lineto -9.586609e+01 7.604175e+01 lineto -9.443355e+01 7.741095e+01 lineto -9.433918e+01 7.686705e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.284431e+01 7.819232e+01 moveto -9.433918e+01 7.686705e+01 lineto -9.443355e+01 7.741095e+01 lineto -9.293387e+01 7.870851e+01 lineto -9.284431e+01 7.819232e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.128592e+01 7.944415e+01 moveto -9.284431e+01 7.819232e+01 lineto -9.293387e+01 7.870851e+01 lineto -9.137047e+01 7.993145e+01 lineto -9.128592e+01 7.944415e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.966757e+01 8.061969e+01 moveto -9.128592e+01 7.944415e+01 lineto -9.137047e+01 7.993145e+01 lineto -8.974691e+01 8.107699e+01 lineto -8.966757e+01 8.061969e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.799295e+01 8.171626e+01 moveto -8.966757e+01 8.061969e+01 lineto -8.974691e+01 8.107699e+01 lineto -8.80669e+01 8.214252e+01 lineto -8.799295e+01 8.171626e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.626587e+01 8.273136e+01 moveto -8.799295e+01 8.171626e+01 lineto -8.80669e+01 8.214252e+01 lineto -8.633428e+01 8.312559e+01 lineto -8.626587e+01 8.273136e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.449029e+01 8.366266e+01 moveto -8.626587e+01 8.273136e+01 lineto -8.633428e+01 8.312559e+01 lineto -8.455298e+01 8.402398e+01 lineto -8.449029e+01 8.366266e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.267025e+01 8.450806e+01 moveto -8.449029e+01 8.366266e+01 lineto -8.455298e+01 8.402398e+01 lineto -8.272709e+01 8.483564e+01 lineto -8.267025e+01 8.450806e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.08099e+01 8.526561e+01 moveto -8.267025e+01 8.450806e+01 lineto -8.272709e+01 8.483564e+01 lineto -8.086075e+01 8.55587e+01 lineto -8.08099e+01 8.526561e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.891348e+01 8.593359e+01 moveto -8.08099e+01 8.526561e+01 lineto -8.086075e+01 8.55587e+01 lineto -7.895824e+01 8.619152e+01 lineto -7.891348e+01 8.593359e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.698533e+01 8.651047e+01 moveto -7.891348e+01 8.593359e+01 lineto -7.895824e+01 8.619152e+01 lineto -7.702388e+01 8.673266e+01 lineto -7.698533e+01 8.651047e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.502984e+01 8.699495e+01 moveto -7.698533e+01 8.651047e+01 lineto -7.702388e+01 8.673266e+01 lineto -7.50621e+01 8.718089e+01 lineto -7.502984e+01 8.699495e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.305146e+01 8.738591e+01 moveto -7.502984e+01 8.699495e+01 lineto -7.50621e+01 8.718089e+01 lineto -7.307736e+01 8.753517e+01 lineto -7.305146e+01 8.738591e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.105472e+01 8.768246e+01 moveto -7.305146e+01 8.738591e+01 lineto -7.307736e+01 8.753517e+01 lineto -7.10742e+01 8.779471e+01 lineto -7.105472e+01 8.768246e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.904417e+01 8.788393e+01 moveto -7.105472e+01 8.768246e+01 lineto -7.10742e+01 8.779471e+01 lineto -6.905718e+01 8.79589e+01 lineto -6.904417e+01 8.788393e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.702439e+01 8.798986e+01 moveto -6.904417e+01 8.788393e+01 lineto -6.905718e+01 8.79589e+01 lineto -6.703091e+01 8.802739e+01 lineto -6.702439e+01 8.798986e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.702439e+01 8.798986e+01 lineto -6.703091e+01 8.802739e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.068038e+02 5.529978e+01 moveto -1.071308e+02 5.33321e+01 lineto -1.070062e+02 5.410101e+01 lineto -1.066801e+02 5.606272e+01 lineto -1.068038e+02 5.529978e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.063813e+02 5.724624e+01 moveto -1.068038e+02 5.529978e+01 lineto -1.066801e+02 5.606272e+01 lineto -1.062589e+02 5.800147e+01 lineto -1.063813e+02 5.724624e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.058645e+02 5.916705e+01 moveto -1.063813e+02 5.724624e+01 lineto -1.062589e+02 5.800147e+01 lineto -1.057436e+02 5.991285e+01 lineto -1.058645e+02 5.916705e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.052545e+02 6.105783e+01 moveto -1.058645e+02 5.916705e+01 lineto -1.057436e+02 5.991285e+01 lineto -1.051353e+02 6.179249e+01 lineto -1.052545e+02 6.105783e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.045526e+02 6.291426e+01 moveto -1.052545e+02 6.105783e+01 lineto -1.051353e+02 6.179249e+01 lineto -1.044355e+02 6.363611e+01 lineto -1.045526e+02 6.291426e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.037605e+02 6.47321e+01 moveto -1.045526e+02 6.291426e+01 lineto -1.044355e+02 6.363611e+01 lineto -1.036458e+02 6.54395e+01 lineto -1.037605e+02 6.47321e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.0288e+02 6.650721e+01 moveto -1.037605e+02 6.47321e+01 lineto -1.036458e+02 6.54395e+01 lineto -1.027679e+02 6.719854e+01 lineto -1.0288e+02 6.650721e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.01913e+02 6.823554e+01 moveto -1.0288e+02 6.650721e+01 lineto -1.027679e+02 6.719854e+01 lineto -1.018038e+02 6.890922e+01 lineto -1.01913e+02 6.823554e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.008619e+02 6.991315e+01 moveto -1.01913e+02 6.823554e+01 lineto -1.018038e+02 6.890922e+01 lineto -1.007558e+02 7.056765e+01 lineto -1.008619e+02 6.991315e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.972899e+01 7.153621e+01 moveto -1.008619e+02 6.991315e+01 lineto -1.007558e+02 7.056765e+01 lineto -9.962622e+01 7.217003e+01 lineto -9.972899e+01 7.153621e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.851683e+01 7.310102e+01 moveto -9.972899e+01 7.153621e+01 lineto -9.962622e+01 7.217003e+01 lineto -9.841765e+01 7.371272e+01 lineto -9.851683e+01 7.310102e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.722822e+01 7.460401e+01 moveto -9.851683e+01 7.310102e+01 lineto -9.841765e+01 7.371272e+01 lineto -9.713286e+01 7.519219e+01 lineto -9.722822e+01 7.460401e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.586609e+01 7.604175e+01 moveto -9.722822e+01 7.460401e+01 lineto -9.713286e+01 7.519219e+01 lineto -9.577476e+01 7.660507e+01 lineto -9.586609e+01 7.604175e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.443355e+01 7.741095e+01 moveto -9.586609e+01 7.604175e+01 lineto -9.577476e+01 7.660507e+01 lineto -9.434646e+01 7.794813e+01 lineto -9.443355e+01 7.741095e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.293387e+01 7.870851e+01 moveto -9.443355e+01 7.741095e+01 lineto -9.434646e+01 7.794813e+01 lineto -9.285121e+01 7.921832e+01 lineto -9.293387e+01 7.870851e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.137047e+01 7.993145e+01 moveto -9.293387e+01 7.870851e+01 lineto -9.285121e+01 7.921832e+01 lineto -9.129244e+01 8.041273e+01 lineto -9.137047e+01 7.993145e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.974691e+01 8.107699e+01 moveto -9.137047e+01 7.993145e+01 lineto -9.129244e+01 8.041273e+01 lineto -8.967369e+01 8.152864e+01 lineto -8.974691e+01 8.107699e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.80669e+01 8.214252e+01 moveto -8.974691e+01 8.107699e+01 lineto -8.967369e+01 8.152864e+01 lineto -8.799865e+01 8.25635e+01 lineto -8.80669e+01 8.214252e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.633428e+01 8.312559e+01 moveto -8.80669e+01 8.214252e+01 lineto -8.799865e+01 8.25635e+01 lineto -8.627115e+01 8.351496e+01 lineto -8.633428e+01 8.312559e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.455298e+01 8.402398e+01 moveto -8.633428e+01 8.312559e+01 lineto -8.627115e+01 8.351496e+01 lineto -8.449513e+01 8.438084e+01 lineto -8.455298e+01 8.402398e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.272709e+01 8.483564e+01 moveto -8.455298e+01 8.402398e+01 lineto -8.449513e+01 8.438084e+01 lineto -8.267463e+01 8.515916e+01 lineto -8.272709e+01 8.483564e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.086075e+01 8.55587e+01 moveto -8.272709e+01 8.483564e+01 lineto -8.267463e+01 8.515916e+01 lineto -8.081382e+01 8.584817e+01 lineto -8.086075e+01 8.55587e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.895824e+01 8.619152e+01 moveto -8.086075e+01 8.55587e+01 lineto -8.081382e+01 8.584817e+01 lineto -7.891694e+01 8.644627e+01 lineto -7.895824e+01 8.619152e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.702388e+01 8.673266e+01 moveto -7.895824e+01 8.619152e+01 lineto -7.891694e+01 8.644627e+01 lineto -7.69883e+01 8.69521e+01 lineto -7.702388e+01 8.673266e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.50621e+01 8.718089e+01 moveto -7.702388e+01 8.673266e+01 lineto -7.69883e+01 8.69521e+01 lineto -7.503232e+01 8.736452e+01 lineto -7.50621e+01 8.718089e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.307736e+01 8.753517e+01 moveto -7.50621e+01 8.718089e+01 lineto -7.503232e+01 8.736452e+01 lineto -7.305346e+01 8.768259e+01 lineto -7.307736e+01 8.753517e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.10742e+01 8.779471e+01 moveto -7.307736e+01 8.753517e+01 lineto -7.305346e+01 8.768259e+01 lineto -7.105623e+01 8.790556e+01 lineto -7.10742e+01 8.779471e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.905718e+01 8.79589e+01 moveto -7.10742e+01 8.779471e+01 lineto -7.105623e+01 8.790556e+01 lineto -6.904517e+01 8.803295e+01 lineto -6.905718e+01 8.79589e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.703091e+01 8.802739e+01 moveto -6.905718e+01 8.79589e+01 lineto -6.904517e+01 8.803295e+01 lineto -6.70249e+01 8.806445e+01 lineto -6.703091e+01 8.802739e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.703091e+01 8.802739e+01 lineto -6.70249e+01 8.806445e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.018038e+02 6.890922e+01 moveto -1.027679e+02 6.719854e+01 lineto -1.024229e+02 6.787695e+01 lineto -1.014677e+02 6.957031e+01 lineto -1.018038e+02 6.890922e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.007558e+02 7.056765e+01 moveto -1.018038e+02 6.890922e+01 lineto -1.014677e+02 6.957031e+01 lineto -1.004292e+02 7.120992e+01 lineto -1.007558e+02 7.056765e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.962622e+01 7.217003e+01 moveto -1.007558e+02 7.056765e+01 lineto -1.004292e+02 7.120992e+01 lineto -9.930998e+01 7.279201e+01 lineto -9.962622e+01 7.217003e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.841765e+01 7.371272e+01 moveto -9.962622e+01 7.217003e+01 lineto -9.930998e+01 7.279201e+01 lineto -9.811245e+01 7.431299e+01 lineto -9.841765e+01 7.371272e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.713286e+01 7.519219e+01 moveto -9.841765e+01 7.371272e+01 lineto -9.811245e+01 7.431299e+01 lineto -9.683938e+01 7.576938e+01 lineto -9.713286e+01 7.519219e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.577476e+01 7.660507e+01 moveto -9.713286e+01 7.519219e+01 lineto -9.683938e+01 7.576938e+01 lineto -9.549369e+01 7.715786e+01 lineto -9.577476e+01 7.660507e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.434646e+01 7.794813e+01 moveto -9.577476e+01 7.660507e+01 lineto -9.549369e+01 7.715786e+01 lineto -9.407843e+01 7.847527e+01 lineto -9.434646e+01 7.794813e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.285121e+01 7.921832e+01 moveto -9.434646e+01 7.794813e+01 lineto -9.407843e+01 7.847527e+01 lineto -9.259684e+01 7.97186e+01 lineto -9.285121e+01 7.921832e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.129244e+01 8.041273e+01 moveto -9.285121e+01 7.921832e+01 lineto -9.259684e+01 7.97186e+01 lineto -9.105231e+01 8.088501e+01 lineto -9.129244e+01 8.041273e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.967369e+01 8.152864e+01 moveto -9.129244e+01 8.041273e+01 lineto -9.105231e+01 8.088501e+01 lineto -8.944834e+01 8.197184e+01 lineto -8.967369e+01 8.152864e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.799865e+01 8.25635e+01 moveto -8.967369e+01 8.152864e+01 lineto -8.944834e+01 8.197184e+01 lineto -8.77886e+01 8.297661e+01 lineto -8.799865e+01 8.25635e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.627115e+01 8.351496e+01 moveto -8.799865e+01 8.25635e+01 lineto -8.77886e+01 8.297661e+01 lineto -8.607688e+01 8.389704e+01 lineto -8.627115e+01 8.351496e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.449513e+01 8.438084e+01 moveto -8.627115e+01 8.351496e+01 lineto -8.607688e+01 8.389704e+01 lineto -8.431707e+01 8.473102e+01 lineto -8.449513e+01 8.438084e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.267463e+01 8.515916e+01 moveto -8.449513e+01 8.438084e+01 lineto -8.431707e+01 8.473102e+01 lineto -8.251321e+01 8.547665e+01 lineto -8.267463e+01 8.515916e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.081382e+01 8.584817e+01 moveto -8.267463e+01 8.515916e+01 lineto -8.251321e+01 8.547665e+01 lineto -8.066939e+01 8.613222e+01 lineto -8.081382e+01 8.584817e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.891694e+01 8.644627e+01 moveto -8.081382e+01 8.584817e+01 lineto -8.066939e+01 8.613222e+01 lineto -7.878983e+01 8.669625e+01 lineto -7.891694e+01 8.644627e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.69883e+01 8.69521e+01 moveto -7.891694e+01 8.644627e+01 lineto -7.878983e+01 8.669625e+01 lineto -7.687881e+01 8.716745e+01 lineto -7.69883e+01 8.69521e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.503232e+01 8.736452e+01 moveto -7.69883e+01 8.69521e+01 lineto -7.687881e+01 8.716745e+01 lineto -7.49407e+01 8.754473e+01 lineto -7.503232e+01 8.736452e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.305346e+01 8.768259e+01 moveto -7.503232e+01 8.736452e+01 lineto -7.49407e+01 8.754473e+01 lineto -7.297991e+01 8.782725e+01 lineto -7.305346e+01 8.768259e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.105623e+01 8.790556e+01 moveto -7.305346e+01 8.768259e+01 lineto -7.297991e+01 8.782725e+01 lineto -7.100091e+01 8.801435e+01 lineto -7.105623e+01 8.790556e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.904517e+01 8.803295e+01 moveto -7.105623e+01 8.790556e+01 lineto -7.100091e+01 8.801435e+01 lineto -6.900823e+01 8.810561e+01 lineto -6.904517e+01 8.803295e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.70249e+01 8.806445e+01 moveto -6.904517e+01 8.803295e+01 lineto -6.900823e+01 8.810561e+01 lineto -6.70064e+01 8.810082e+01 lineto -6.70249e+01 8.806445e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.70249e+01 8.806445e+01 lineto -6.70064e+01 8.810082e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.683938e+01 7.576938e+01 moveto -9.811245e+01 7.431299e+01 lineto -9.760309e+01 7.489812e+01 lineto -9.634961e+01 7.633202e+01 lineto -9.683938e+01 7.576938e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.549369e+01 7.715786e+01 moveto -9.683938e+01 7.576938e+01 lineto -9.634961e+01 7.633202e+01 lineto -9.502461e+01 7.769672e+01 lineto -9.549369e+01 7.715786e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.407843e+01 7.847527e+01 moveto -9.549369e+01 7.715786e+01 lineto -9.502461e+01 7.769672e+01 lineto -9.363113e+01 7.898912e+01 lineto -9.407843e+01 7.847527e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.259684e+01 7.97186e+01 moveto -9.407843e+01 7.847527e+01 lineto -9.363113e+01 7.898912e+01 lineto -9.217233e+01 8.020626e+01 lineto -9.259684e+01 7.97186e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.105231e+01 8.088501e+01 moveto -9.259684e+01 7.97186e+01 lineto -9.217233e+01 8.020626e+01 lineto -9.065155e+01 8.134538e+01 lineto -9.105231e+01 8.088501e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.944834e+01 8.197184e+01 moveto -9.105231e+01 8.088501e+01 lineto -9.065155e+01 8.134538e+01 lineto -8.907226e+01 8.240387e+01 lineto -8.944834e+01 8.197184e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.77886e+01 8.297661e+01 moveto -8.944834e+01 8.197184e+01 lineto -8.907226e+01 8.240387e+01 lineto -8.743805e+01 8.337931e+01 lineto -8.77886e+01 8.297661e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.607688e+01 8.389704e+01 moveto -8.77886e+01 8.297661e+01 lineto -8.743805e+01 8.337931e+01 lineto -8.575266e+01 8.426949e+01 lineto -8.607688e+01 8.389704e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.431707e+01 8.473102e+01 moveto -8.607688e+01 8.389704e+01 lineto -8.575266e+01 8.426949e+01 lineto -8.401993e+01 8.507237e+01 lineto -8.431707e+01 8.473102e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.251321e+01 8.547665e+01 moveto -8.431707e+01 8.473102e+01 lineto -8.401993e+01 8.507237e+01 lineto -8.224381e+01 8.578612e+01 lineto -8.251321e+01 8.547665e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.066939e+01 8.613222e+01 moveto -8.251321e+01 8.547665e+01 lineto -8.224381e+01 8.578612e+01 lineto -8.042835e+01 8.640912e+01 lineto -8.066939e+01 8.613222e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.878983e+01 8.669625e+01 moveto -8.066939e+01 8.613222e+01 lineto -8.042835e+01 8.640912e+01 lineto -7.857771e+01 8.693993e+01 lineto -7.878983e+01 8.669625e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.687881e+01 8.716745e+01 moveto -7.878983e+01 8.669625e+01 lineto -7.857771e+01 8.693993e+01 lineto -7.669608e+01 8.737736e+01 lineto -7.687881e+01 8.716745e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.49407e+01 8.754473e+01 moveto -7.687881e+01 8.716745e+01 lineto -7.669608e+01 8.737736e+01 lineto -7.478778e+01 8.772039e+01 lineto -7.49407e+01 8.754473e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.297991e+01 8.782725e+01 moveto -7.49407e+01 8.754473e+01 lineto -7.478778e+01 8.772039e+01 lineto -7.285715e+01 8.796826e+01 lineto -7.297991e+01 8.782725e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.100091e+01 8.801435e+01 moveto -7.297991e+01 8.782725e+01 lineto -7.285715e+01 8.796826e+01 lineto -7.09086e+01 8.812039e+01 lineto -7.100091e+01 8.801435e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.900823e+01 8.810561e+01 moveto -7.100091e+01 8.801435e+01 lineto -7.09086e+01 8.812039e+01 lineto -6.894657e+01 8.817644e+01 lineto -6.900823e+01 8.810561e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.70064e+01 8.810082e+01 moveto -6.900823e+01 8.810561e+01 lineto -6.894657e+01 8.817644e+01 lineto -6.697554e+01 8.813628e+01 lineto -6.70064e+01 8.810082e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.70064e+01 8.810082e+01 lineto -6.697554e+01 8.813628e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -9.065155e+01 8.134538e+01 moveto -9.217233e+01 8.020626e+01 lineto -9.158029e+01 8.067831e+01 lineto -9.009265e+01 8.179101e+01 lineto -9.065155e+01 8.134538e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.907226e+01 8.240387e+01 moveto -9.065155e+01 8.134538e+01 lineto -9.009265e+01 8.179101e+01 lineto -8.854776e+01 8.282206e+01 lineto -8.907226e+01 8.240387e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.743805e+01 8.337931e+01 moveto -8.907226e+01 8.240387e+01 lineto -8.854776e+01 8.282206e+01 lineto -8.694916e+01 8.376912e+01 lineto -8.743805e+01 8.337931e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.575266e+01 8.426949e+01 moveto -8.743805e+01 8.337931e+01 lineto -8.694916e+01 8.376912e+01 lineto -8.530049e+01 8.463002e+01 lineto -8.575266e+01 8.426949e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.401993e+01 8.507237e+01 moveto -8.575266e+01 8.426949e+01 lineto -8.530049e+01 8.463002e+01 lineto -8.360551e+01 8.54028e+01 lineto -8.401993e+01 8.507237e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.224381e+01 8.578612e+01 moveto -8.401993e+01 8.507237e+01 lineto -8.360551e+01 8.54028e+01 lineto -8.186809e+01 8.608569e+01 lineto -8.224381e+01 8.578612e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.042835e+01 8.640912e+01 moveto -8.224381e+01 8.578612e+01 lineto -8.186809e+01 8.608569e+01 lineto -8.00922e+01 8.667715e+01 lineto -8.042835e+01 8.640912e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.857771e+01 8.693993e+01 moveto -8.042835e+01 8.640912e+01 lineto -8.00922e+01 8.667715e+01 lineto -7.828187e+01 8.717581e+01 lineto -7.857771e+01 8.693993e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.669608e+01 8.737736e+01 moveto -7.857771e+01 8.693993e+01 lineto -7.828187e+01 8.717581e+01 lineto -7.644125e+01 8.758055e+01 lineto -7.669608e+01 8.737736e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.478778e+01 8.772039e+01 moveto -7.669608e+01 8.737736e+01 lineto -7.644125e+01 8.758055e+01 lineto -7.457452e+01 8.789043e+01 lineto -7.478778e+01 8.772039e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.285715e+01 8.796826e+01 moveto -7.478778e+01 8.772039e+01 lineto -7.457452e+01 8.789043e+01 lineto -7.268596e+01 8.810476e+01 lineto -7.285715e+01 8.796826e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.09086e+01 8.812039e+01 moveto -7.285715e+01 8.796826e+01 lineto -7.268596e+01 8.810476e+01 lineto -7.077986e+01 8.822304e+01 lineto -7.09086e+01 8.812039e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.894657e+01 8.817644e+01 moveto -7.09086e+01 8.812039e+01 lineto -7.077986e+01 8.822304e+01 lineto -6.886058e+01 8.8245e+01 lineto -6.894657e+01 8.817644e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.697554e+01 8.813628e+01 moveto -6.894657e+01 8.817644e+01 lineto -6.886058e+01 8.8245e+01 lineto -6.69325e+01 8.81706e+01 lineto -6.697554e+01 8.813628e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.697554e+01 8.813628e+01 lineto -6.69325e+01 8.81706e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.694916e+01 8.376912e+01 moveto -8.854776e+01 8.282206e+01 lineto -8.787809e+01 8.322384e+01 lineto -8.632495e+01 8.414362e+01 lineto -8.694916e+01 8.376912e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.530049e+01 8.463002e+01 moveto -8.694916e+01 8.376912e+01 lineto -8.632495e+01 8.414362e+01 lineto -8.472317e+01 8.497639e+01 lineto -8.530049e+01 8.463002e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.360551e+01 8.54028e+01 moveto -8.530049e+01 8.463002e+01 lineto -8.472317e+01 8.497639e+01 lineto -8.307639e+01 8.572025e+01 lineto -8.360551e+01 8.54028e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.186809e+01 8.608569e+01 moveto -8.360551e+01 8.54028e+01 lineto -8.307639e+01 8.572025e+01 lineto -8.138838e+01 8.63735e+01 lineto -8.186809e+01 8.608569e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.00922e+01 8.667715e+01 moveto -8.186809e+01 8.608569e+01 lineto -8.138838e+01 8.63735e+01 lineto -7.966299e+01 8.693465e+01 lineto -8.00922e+01 8.667715e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.828187e+01 8.717581e+01 moveto -8.00922e+01 8.667715e+01 lineto -7.966299e+01 8.693465e+01 lineto -7.790415e+01 8.740243e+01 lineto -7.828187e+01 8.717581e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.644125e+01 8.758055e+01 moveto -7.828187e+01 8.717581e+01 lineto -7.790415e+01 8.740243e+01 lineto -7.611587e+01 8.777576e+01 lineto -7.644125e+01 8.758055e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.457452e+01 8.789043e+01 moveto -7.644125e+01 8.758055e+01 lineto -7.611587e+01 8.777576e+01 lineto -7.430223e+01 8.805379e+01 lineto -7.457452e+01 8.789043e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.268596e+01 8.810476e+01 moveto -7.457452e+01 8.789043e+01 lineto -7.430223e+01 8.805379e+01 lineto -7.246738e+01 8.82359e+01 lineto -7.268596e+01 8.810476e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.077986e+01 8.822304e+01 moveto -7.268596e+01 8.810476e+01 lineto -7.246738e+01 8.82359e+01 lineto -7.061549e+01 8.832166e+01 lineto -7.077986e+01 8.822304e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.886058e+01 8.8245e+01 moveto -7.077986e+01 8.822304e+01 lineto -7.061549e+01 8.832166e+01 lineto -6.875079e+01 8.831087e+01 lineto -6.886058e+01 8.8245e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.69325e+01 8.81706e+01 moveto -6.886058e+01 8.8245e+01 lineto -6.875079e+01 8.831087e+01 lineto -6.687754e+01 8.820357e+01 lineto -6.69325e+01 8.81706e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.69325e+01 8.81706e+01 lineto -6.687754e+01 8.820357e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.307639e+01 8.572025e+01 moveto -8.472317e+01 8.497639e+01 lineto -8.402424e+01 8.530647e+01 lineto -8.243582e+01 8.602277e+01 lineto -8.307639e+01 8.572025e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -8.138838e+01 8.63735e+01 moveto -8.307639e+01 8.572025e+01 lineto -8.243582e+01 8.602277e+01 lineto -8.080763e+01 8.664777e+01 lineto -8.138838e+01 8.63735e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.966299e+01 8.693465e+01 moveto -8.138838e+01 8.63735e+01 lineto -8.080763e+01 8.664777e+01 lineto -7.914338e+01 8.718005e+01 lineto -7.966299e+01 8.693465e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.790415e+01 8.740243e+01 moveto -7.966299e+01 8.693465e+01 lineto -7.914338e+01 8.718005e+01 lineto -7.744687e+01 8.761839e+01 lineto -7.790415e+01 8.740243e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.611587e+01 8.777576e+01 moveto -7.790415e+01 8.740243e+01 lineto -7.744687e+01 8.761839e+01 lineto -7.572196e+01 8.796179e+01 lineto -7.611587e+01 8.777576e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.430223e+01 8.805379e+01 moveto -7.611587e+01 8.777576e+01 lineto -7.572196e+01 8.796179e+01 lineto -7.397259e+01 8.820948e+01 lineto -7.430223e+01 8.805379e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.246738e+01 8.82359e+01 moveto -7.430223e+01 8.805379e+01 lineto -7.397259e+01 8.820948e+01 lineto -7.220276e+01 8.836087e+01 lineto -7.246738e+01 8.82359e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.061549e+01 8.832166e+01 moveto -7.246738e+01 8.82359e+01 lineto -7.220276e+01 8.836087e+01 lineto -7.04165e+01 8.841564e+01 lineto -7.061549e+01 8.832166e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.875079e+01 8.831087e+01 moveto -7.061549e+01 8.832166e+01 lineto -7.04165e+01 8.841564e+01 lineto -6.861788e+01 8.837365e+01 lineto -6.875079e+01 8.831087e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.687754e+01 8.820357e+01 moveto -6.875079e+01 8.831087e+01 lineto -6.861788e+01 8.837365e+01 lineto -6.6811e+01 8.8235e+01 lineto -6.687754e+01 8.820357e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.687754e+01 8.820357e+01 lineto -6.6811e+01 8.8235e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.914338e+01 8.718005e+01 moveto -8.080763e+01 8.664777e+01 lineto -8.012942e+01 8.690682e+01 lineto -7.853657e+01 8.741183e+01 lineto -7.914338e+01 8.718005e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.744687e+01 8.761839e+01 moveto -7.914338e+01 8.718005e+01 lineto -7.853657e+01 8.741183e+01 lineto -7.691285e+01 8.782237e+01 lineto -7.744687e+01 8.761839e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.572196e+01 8.796179e+01 moveto -7.744687e+01 8.761839e+01 lineto -7.691285e+01 8.782237e+01 lineto -7.526194e+01 8.81375e+01 lineto -7.572196e+01 8.796179e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.397259e+01 8.820948e+01 moveto -7.572196e+01 8.796179e+01 lineto -7.526194e+01 8.81375e+01 lineto -7.358763e+01 8.835651e+01 lineto -7.397259e+01 8.820948e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.220276e+01 8.836087e+01 moveto -7.397259e+01 8.820948e+01 lineto -7.358763e+01 8.835651e+01 lineto -7.189373e+01 8.847891e+01 lineto -7.220276e+01 8.836087e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.04165e+01 8.841564e+01 moveto -7.220276e+01 8.836087e+01 lineto -7.189373e+01 8.847891e+01 lineto -7.018411e+01 8.85044e+01 lineto -7.04165e+01 8.841564e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.861788e+01 8.837365e+01 moveto -7.04165e+01 8.841564e+01 lineto -7.018411e+01 8.85044e+01 lineto -6.846265e+01 8.843293e+01 lineto -6.861788e+01 8.837365e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.6811e+01 8.8235e+01 moveto -6.861788e+01 8.837365e+01 lineto -6.846265e+01 8.843293e+01 lineto -6.67333e+01 8.826467e+01 lineto -6.6811e+01 8.8235e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.6811e+01 8.8235e+01 lineto -6.67333e+01 8.826467e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.691285e+01 8.782237e+01 moveto -7.853657e+01 8.741183e+01 lineto -7.784631e+01 8.762855e+01 lineto -7.630538e+01 8.801309e+01 lineto -7.691285e+01 8.782237e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.526194e+01 8.81375e+01 moveto -7.691285e+01 8.782237e+01 lineto -7.630538e+01 8.801309e+01 lineto -7.473866e+01 8.83018e+01 lineto -7.526194e+01 8.81375e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.358763e+01 8.835651e+01 moveto -7.526194e+01 8.81375e+01 lineto -7.473866e+01 8.83018e+01 lineto -7.314973e+01 8.849401e+01 lineto -7.358763e+01 8.835651e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.189373e+01 8.847891e+01 moveto -7.358763e+01 8.835651e+01 lineto -7.314973e+01 8.849401e+01 lineto -7.15422e+01 8.858928e+01 lineto -7.189373e+01 8.847891e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.018411e+01 8.85044e+01 moveto -7.189373e+01 8.847891e+01 lineto -7.15422e+01 8.858928e+01 lineto -6.991976e+01 8.85874e+01 lineto -7.018411e+01 8.85044e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.846265e+01 8.843293e+01 moveto -7.018411e+01 8.85044e+01 lineto -6.991976e+01 8.85874e+01 lineto -6.828609e+01 8.848837e+01 lineto -6.846265e+01 8.843293e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.67333e+01 8.826467e+01 moveto -6.846265e+01 8.843293e+01 lineto -6.828609e+01 8.848837e+01 lineto -6.664492e+01 8.829242e+01 lineto -6.67333e+01 8.826467e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.67333e+01 8.826467e+01 lineto -6.664492e+01 8.829242e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.630538e+01 8.801309e+01 moveto -7.784631e+01 8.762855e+01 lineto -7.707684e+01 8.782889e+01 lineto -7.562821e+01 8.81894e+01 lineto -7.630538e+01 8.801309e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.473866e+01 8.83018e+01 moveto -7.630538e+01 8.801309e+01 lineto -7.562821e+01 8.81894e+01 lineto -7.415534e+01 8.845367e+01 lineto -7.473866e+01 8.83018e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.314973e+01 8.849401e+01 moveto -7.473866e+01 8.83018e+01 lineto -7.415534e+01 8.845367e+01 lineto -7.266158e+01 8.86211e+01 lineto -7.314973e+01 8.849401e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.15422e+01 8.858928e+01 moveto -7.314973e+01 8.849401e+01 lineto -7.266158e+01 8.86211e+01 lineto -7.115034e+01 8.869131e+01 lineto -7.15422e+01 8.858928e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.991976e+01 8.85874e+01 moveto -7.15422e+01 8.858928e+01 lineto -7.115034e+01 8.869131e+01 lineto -6.962507e+01 8.866412e+01 lineto -6.991976e+01 8.85874e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.828609e+01 8.848837e+01 moveto -6.991976e+01 8.85874e+01 lineto -6.962507e+01 8.866412e+01 lineto -6.808926e+01 8.853962e+01 lineto -6.828609e+01 8.848837e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.664492e+01 8.829242e+01 moveto -6.828609e+01 8.848837e+01 lineto -6.808926e+01 8.853962e+01 lineto -6.654639e+01 8.831808e+01 lineto -6.664492e+01 8.829242e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.664492e+01 8.829242e+01 lineto -6.654639e+01 8.831808e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.415534e+01 8.845367e+01 moveto -7.562821e+01 8.81894e+01 lineto -7.488552e+01 8.83502e+01 lineto -7.351557e+01 8.859219e+01 lineto -7.415534e+01 8.845367e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.266158e+01 8.86211e+01 moveto -7.415534e+01 8.845367e+01 lineto -7.351557e+01 8.859219e+01 lineto -7.212619e+01 8.873702e+01 lineto -7.266158e+01 8.86211e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.115034e+01 8.869131e+01 moveto -7.266158e+01 8.86211e+01 lineto -7.212619e+01 8.873702e+01 lineto -7.072056e+01 8.878436e+01 lineto -7.115034e+01 8.869131e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.962507e+01 8.866412e+01 moveto -7.115034e+01 8.869131e+01 lineto -7.072056e+01 8.878436e+01 lineto -6.930187e+01 8.87341e+01 lineto -6.962507e+01 8.866412e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.808926e+01 8.853962e+01 moveto -6.962507e+01 8.866412e+01 lineto -6.930187e+01 8.87341e+01 lineto -6.787338e+01 8.858636e+01 lineto -6.808926e+01 8.853962e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.654639e+01 8.831808e+01 moveto -6.808926e+01 8.853962e+01 lineto -6.787338e+01 8.858636e+01 lineto -6.643833e+01 8.834147e+01 lineto -6.654639e+01 8.831808e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.654639e+01 8.831808e+01 lineto -6.643833e+01 8.834147e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.351557e+01 8.859219e+01 moveto -7.488552e+01 8.83502e+01 lineto -7.408187e+01 8.849451e+01 lineto -7.282329e+01 8.87165e+01 lineto -7.351557e+01 8.859219e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.212619e+01 8.873702e+01 moveto -7.351557e+01 8.859219e+01 lineto -7.282329e+01 8.87165e+01 lineto -7.154687e+01 8.884104e+01 lineto -7.212619e+01 8.873702e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.072056e+01 8.878436e+01 moveto -7.212619e+01 8.873702e+01 lineto -7.154687e+01 8.884104e+01 lineto -7.02555e+01 8.886786e+01 lineto -7.072056e+01 8.878436e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.930187e+01 8.87341e+01 moveto -7.072056e+01 8.878436e+01 lineto -7.02555e+01 8.886786e+01 lineto -6.895215e+01 8.87969e+01 lineto -6.930187e+01 8.87341e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.787338e+01 8.858636e+01 moveto -6.930187e+01 8.87341e+01 lineto -6.895215e+01 8.87969e+01 lineto -6.763979e+01 8.86283e+01 lineto -6.787338e+01 8.858636e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.643833e+01 8.834147e+01 moveto -6.787338e+01 8.858636e+01 lineto -6.763979e+01 8.86283e+01 lineto -6.63214e+01 8.836247e+01 lineto -6.643833e+01 8.834147e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.643833e+01 8.834147e+01 lineto -6.63214e+01 8.836247e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.154687e+01 8.884104e+01 moveto -7.282329e+01 8.87165e+01 lineto -7.208279e+01 8.882582e+01 lineto -7.092718e+01 8.893253e+01 lineto -7.154687e+01 8.884104e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.02555e+01 8.886786e+01 moveto -7.154687e+01 8.884104e+01 lineto -7.092718e+01 8.893253e+01 lineto -6.975805e+01 8.89413e+01 lineto -7.02555e+01 8.886786e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.895215e+01 8.87969e+01 moveto -7.02555e+01 8.886786e+01 lineto -6.975805e+01 8.89413e+01 lineto -6.857807e+01 8.885212e+01 lineto -6.895215e+01 8.87969e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.763979e+01 8.86283e+01 moveto -6.895215e+01 8.87969e+01 lineto -6.857807e+01 8.885212e+01 lineto -6.738992e+01 8.866519e+01 lineto -6.763979e+01 8.86283e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.63214e+01 8.836247e+01 moveto -6.763979e+01 8.86283e+01 lineto -6.738992e+01 8.866519e+01 lineto -6.619633e+01 8.838093e+01 lineto -6.63214e+01 8.836247e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.63214e+01 8.836247e+01 lineto -6.619633e+01 8.838093e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.092718e+01 8.893253e+01 moveto -7.208279e+01 8.882582e+01 lineto -7.129861e+01 8.891949e+01 lineto -7.027095e+01 8.901092e+01 lineto -7.092718e+01 8.893253e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.975805e+01 8.89413e+01 moveto -7.092718e+01 8.893253e+01 lineto -7.027095e+01 8.901092e+01 lineto -6.923126e+01 8.900423e+01 lineto -6.975805e+01 8.89413e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.857807e+01 8.885212e+01 moveto -6.975805e+01 8.89413e+01 lineto -6.923126e+01 8.900423e+01 lineto -6.818192e+01 8.889944e+01 lineto -6.857807e+01 8.885212e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.738992e+01 8.866519e+01 moveto -6.857807e+01 8.885212e+01 lineto -6.818192e+01 8.889944e+01 lineto -6.712532e+01 8.86968e+01 lineto -6.738992e+01 8.866519e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.619633e+01 8.838093e+01 moveto -6.738992e+01 8.866519e+01 lineto -6.712532e+01 8.86968e+01 lineto -6.606387e+01 8.839676e+01 lineto -6.619633e+01 8.838093e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.619633e+01 8.838093e+01 lineto -6.606387e+01 8.839676e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -7.027095e+01 8.901092e+01 moveto -7.129861e+01 8.891949e+01 lineto -7.047561e+01 8.899693e+01 lineto -6.958222e+01 8.907572e+01 lineto -7.027095e+01 8.901092e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.923126e+01 8.900423e+01 moveto -7.027095e+01 8.901092e+01 lineto -6.958222e+01 8.907572e+01 lineto -6.867839e+01 8.905625e+01 lineto -6.923126e+01 8.900423e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.818192e+01 8.889944e+01 moveto -6.923126e+01 8.900423e+01 lineto -6.867839e+01 8.905625e+01 lineto -6.776616e+01 8.893857e+01 lineto -6.818192e+01 8.889944e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.712532e+01 8.86968e+01 moveto -6.818192e+01 8.889944e+01 lineto -6.776616e+01 8.893857e+01 lineto -6.684762e+01 8.872293e+01 lineto -6.712532e+01 8.86968e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.606387e+01 8.839676e+01 moveto -6.712532e+01 8.86968e+01 lineto -6.684762e+01 8.872293e+01 lineto -6.592486e+01 8.840984e+01 lineto -6.606387e+01 8.839676e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.606387e+01 8.839676e+01 lineto -6.592486e+01 8.840984e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.867839e+01 8.905625e+01 moveto -6.958222e+01 8.907572e+01 lineto -6.886525e+01 8.912655e+01 lineto -6.810283e+01 8.909705e+01 lineto -6.867839e+01 8.905625e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.776616e+01 8.893857e+01 moveto -6.867839e+01 8.905625e+01 lineto -6.810283e+01 8.909705e+01 lineto -6.733334e+01 8.896925e+01 lineto -6.776616e+01 8.893857e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.684762e+01 8.872293e+01 moveto -6.776616e+01 8.893857e+01 lineto -6.733334e+01 8.896925e+01 lineto -6.655852e+01 8.874342e+01 lineto -6.684762e+01 8.872293e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.592486e+01 8.840984e+01 moveto -6.684762e+01 8.872293e+01 lineto -6.655852e+01 8.874342e+01 lineto -6.578015e+01 8.842009e+01 lineto -6.592486e+01 8.840984e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.592486e+01 8.840984e+01 lineto -6.578015e+01 8.842009e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.810283e+01 8.909705e+01 moveto -6.886525e+01 8.912655e+01 lineto -6.812444e+01 8.916308e+01 lineto -6.750815e+01 8.912637e+01 lineto -6.810283e+01 8.909705e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.733334e+01 8.896925e+01 moveto -6.810283e+01 8.909705e+01 lineto -6.750815e+01 8.912637e+01 lineto -6.688613e+01 8.89913e+01 lineto -6.733334e+01 8.896925e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.655852e+01 8.874342e+01 moveto -6.733334e+01 8.896925e+01 lineto -6.688613e+01 8.89913e+01 lineto -6.625982e+01 8.875815e+01 lineto -6.655852e+01 8.874342e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.578015e+01 8.842009e+01 moveto -6.655852e+01 8.874342e+01 lineto -6.625982e+01 8.875815e+01 lineto -6.563063e+01 8.842747e+01 lineto -6.578015e+01 8.842009e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.578015e+01 8.842009e+01 lineto -6.563063e+01 8.842747e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.750815e+01 8.912637e+01 moveto -6.812444e+01 8.916308e+01 lineto -6.736437e+01 8.918508e+01 lineto -6.6898e+01 8.914404e+01 lineto -6.750815e+01 8.912637e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.688613e+01 8.89913e+01 moveto -6.750815e+01 8.912637e+01 lineto -6.6898e+01 8.914404e+01 lineto -6.64273e+01 8.900458e+01 lineto -6.688613e+01 8.89913e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.625982e+01 8.875815e+01 moveto -6.688613e+01 8.89913e+01 lineto -6.64273e+01 8.900458e+01 lineto -6.595335e+01 8.876702e+01 lineto -6.625982e+01 8.875815e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.563063e+01 8.842747e+01 moveto -6.625982e+01 8.875815e+01 lineto -6.595335e+01 8.876702e+01 lineto -6.547722e+01 8.843191e+01 lineto -6.563063e+01 8.842747e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.563063e+01 8.842747e+01 lineto -6.547722e+01 8.843191e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.6898e+01 8.914404e+01 moveto -6.736437e+01 8.918508e+01 lineto -6.658972e+01 8.919243e+01 lineto -6.627615e+01 8.914994e+01 lineto -6.6898e+01 8.914404e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.64273e+01 8.900458e+01 moveto -6.6898e+01 8.914404e+01 lineto -6.627615e+01 8.914994e+01 lineto -6.595967e+01 8.900902e+01 lineto -6.64273e+01 8.900458e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.595335e+01 8.876702e+01 moveto -6.64273e+01 8.900458e+01 lineto -6.595967e+01 8.900902e+01 lineto -6.5641e+01 8.876999e+01 lineto -6.595335e+01 8.876702e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.547722e+01 8.843191e+01 moveto -6.595335e+01 8.876702e+01 lineto -6.5641e+01 8.876999e+01 lineto -6.532086e+01 8.843339e+01 lineto -6.547722e+01 8.843191e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -6.5e+01 8.8e+01 moveto -6.547722e+01 8.843191e+01 lineto -6.532086e+01 8.843339e+01 lineto -6.5e+01 8.8e+01 lineto -6.5e+01 8.8e+01 lineto -closepath -gsave -8.0e-01 8.0e-01 8.0e-01 setrgbcolor -stroke -grestore -grestore -newpath -5.082419e+01 4.552849e+01 moveto -5.083627e+01 4.532053e+01 lineto -5.090424e+01 4.511525e+01 lineto -5.102784e+01 4.491347e+01 lineto -5.120659e+01 4.471597e+01 lineto -5.143977e+01 4.452354e+01 lineto -5.172646e+01 4.433694e+01 lineto -5.206554e+01 4.41569e+01 lineto -5.245567e+01 4.398413e+01 lineto -5.28953e+01 4.381932e+01 lineto -5.338271e+01 4.366312e+01 lineto -5.391596e+01 4.351614e+01 lineto -5.449296e+01 4.337896e+01 lineto -5.511142e+01 4.325213e+01 lineto -5.576891e+01 4.313614e+01 lineto -5.646283e+01 4.303145e+01 lineto -5.719045e+01 4.293848e+01 lineto -5.794888e+01 4.285759e+01 lineto -5.873514e+01 4.27891e+01 lineto -5.954613e+01 4.273329e+01 lineto -6.037864e+01 4.269037e+01 lineto -6.122938e+01 4.26605e+01 lineto -6.209501e+01 4.264382e+01 lineto -6.297211e+01 4.264038e+01 lineto -6.38572e+01 4.265021e+01 lineto -6.474681e+01 4.267325e+01 lineto -6.563741e+01 4.270942e+01 lineto -6.65255e+01 4.275858e+01 lineto -6.740757e+01 4.282053e+01 lineto -6.828014e+01 4.289503e+01 lineto -6.913977e+01 4.298178e+01 lineto -6.998305e+01 4.308044e+01 lineto -7.080667e+01 4.319063e+01 lineto -7.160737e+01 4.33119e+01 lineto -7.2382e+01 4.344378e+01 lineto -7.312749e+01 4.358575e+01 lineto -7.384091e+01 4.373725e+01 lineto -7.451944e+01 4.389768e+01 lineto -7.51604e+01 4.40664e+01 lineto -7.576126e+01 4.424276e+01 lineto -7.631965e+01 4.442605e+01 lineto -7.683336e+01 4.461555e+01 lineto -7.730038e+01 4.481052e+01 lineto -7.771885e+01 4.501018e+01 lineto -7.808713e+01 4.521374e+01 lineto -7.840375e+01 4.542041e+01 lineto -7.866748e+01 4.562937e+01 lineto -7.887727e+01 4.583979e+01 lineto -7.903229e+01 4.605084e+01 lineto -7.913194e+01 4.62617e+01 lineto -7.917581e+01 4.647151e+01 lineto -newpath -1.14e+02 4.0e+00 moveto -1.14e+02 3.2e+01 lineto -1.112e+02 4.0e+00 moveto -1.168e+02 4.0e+00 lineto -1.112e+02 3.2e+01 moveto -1.168e+02 3.2e+01 lineto -gsave stroke grestore -gsave -newpath -0 0 0 setrgbcolor - -% Comment: canvas init - -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -1.0e+01 setmiterlimit -gsave -/CMMI12 findfont -12.0 scalefont -setfont -1.176e+02 1.426401e+01 moveto -gsave -[ 0.9 0.0 0.0 0.9 66.8280595715 -639.357903855 ] concat -(\150) show -grestore -grestore -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -grestore -grestore -grestore showpage - -% --------------------------------------------------------- - -%%Trailer -%%EOF +%!PS-Adobe-2.0 EPSF-3.0 +%%BoundingBox: 0 0 130 120 +%%Pages: 1 +%%PageOrder: Ascend + +%%BeginProlog +%%BeginProcSet: +/ReEncodeFont { exch findfont << >> copy dup 3 2 roll /Encoding exch put definefont } def +%%EndProcSet +%%BeginFont: CMMI12 +%!PS-AdobeFont-1.0: CMMI12 003.002 +%%Title: CMMI12 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMMI12. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments + +FontDirectory/CMMI12 known{/CMMI12 findfont dup/UniqueID known{dup +/UniqueID get 5087386 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /CMMI12 def +/FontBBox {-31 -250 1026 750 }readonly def +/UniqueID 5087386 def +/PaintType 0 def +/FontInfo 10 dict dup begin + /version (003.002) readonly def + /Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMMI12.) readonly def + /FullName (CMMI12) readonly def + /FamilyName (Computer Modern) readonly def + /Weight (Medium) readonly def + /ItalicAngle -14.04 def + /isFixedPitch false def + /UnderlinePosition -100 def + /UnderlineThickness 50 def + /ascent 750 def +end readonly def +/Encoding 256 array + 0 1 255 { 1 index exch /.notdef put} for +dup 0 /Gamma put +dup 1 /Delta put +dup 2 /Theta put +dup 3 /Lambda put +dup 4 /Xi put +dup 5 /Pi put +dup 6 /Sigma put +dup 7 /Upsilon put +dup 8 /Phi put +dup 9 /Psi put +dup 10 /Omega put +dup 11 /alpha put +dup 12 /beta put +dup 13 /gamma put +dup 14 /delta put +dup 15 /epsilon1 put +dup 16 /zeta put +dup 17 /eta put +dup 18 /theta put +dup 19 /iota put +dup 20 /kappa put +dup 21 /lambda put +dup 22 /mu put +dup 23 /nu put +dup 24 /xi put +dup 25 /pi put +dup 26 /rho put +dup 27 /sigma put +dup 28 /tau put +dup 29 /upsilon put +dup 30 /phi put +dup 31 /chi put +dup 32 /psi put +dup 33 /omega put +dup 34 /epsilon put +dup 35 /theta1 put +dup 36 /pi1 put +dup 37 /rho1 put +dup 38 /sigma1 put +dup 39 /phi1 put +dup 40 /arrowlefttophalf put +dup 41 /arrowleftbothalf put +dup 42 /arrowrighttophalf put +dup 43 /arrowrightbothalf put +dup 44 /arrowhookleft put +dup 45 /arrowhookright put +dup 46 /triangleright put +dup 47 /triangleleft put +dup 48 /zerooldstyle put +dup 49 /oneoldstyle put +dup 50 /twooldstyle put +dup 51 /threeoldstyle put +dup 52 /fouroldstyle put +dup 53 /fiveoldstyle put +dup 54 /sixoldstyle put +dup 55 /sevenoldstyle put +dup 56 /eightoldstyle put +dup 57 /nineoldstyle put +dup 58 /period put +dup 59 /comma put +dup 60 /less put +dup 61 /slash put +dup 62 /greater put +dup 63 /star put +dup 64 /partialdiff put +dup 65 /A put +dup 66 /B put +dup 67 /C put +dup 68 /D put +dup 69 /E put +dup 70 /F put +dup 71 /G put +dup 72 /H put +dup 73 /I put +dup 74 /J put +dup 75 /K put +dup 76 /L put +dup 77 /M put +dup 78 /N put +dup 79 /O put +dup 80 /P put +dup 81 /Q put +dup 82 /R put +dup 83 /S put +dup 84 /T put +dup 85 /U put +dup 86 /V put +dup 87 /W put +dup 88 /X put +dup 89 /Y put +dup 90 /Z put +dup 91 /flat put +dup 92 /natural put +dup 93 /sharp put +dup 94 /slurbelow put +dup 95 /slurabove put +dup 96 /lscript put +dup 97 /a put +dup 98 /b put +dup 99 /c put +dup 100 /d put +dup 101 /e put +dup 102 /f put +dup 103 /g put +dup 104 /h put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 108 /l put +dup 109 /m put +dup 110 /n put +dup 111 /o put +dup 112 /p put +dup 113 /q put +dup 114 /r put +dup 115 /s put +dup 116 /t put +dup 117 /u put +dup 118 /v put +dup 119 /w put +dup 120 /x put +dup 121 /y put +dup 122 /z put +dup 123 /dotlessi put +dup 124 /dotlessj put +dup 125 /weierstrass put +dup 126 /vector put +dup 127 /tie put +dup 128 /psi put +dup 160 /space put +dup 161 /Gamma put +dup 162 /Delta put +dup 163 /Theta put +dup 164 /Lambda put +dup 165 /Xi put +dup 166 /Pi put +dup 167 /Sigma put +dup 168 /Upsilon put +dup 169 /Phi put +dup 170 /Psi put +dup 173 /Omega put +dup 174 /alpha put +dup 175 /beta put +dup 176 /gamma put +dup 177 /delta put +dup 178 /epsilon1 put +dup 179 /zeta put +dup 180 /eta put +dup 181 /theta put +dup 182 /iota put +dup 183 /kappa put +dup 184 /lambda put +dup 185 /mu put +dup 186 /nu put +dup 187 /xi put +dup 188 /pi put +dup 189 /rho put +dup 190 /sigma put +dup 191 /tau put +dup 192 /upsilon put +dup 193 /phi put +dup 194 /chi put +dup 195 /psi put +dup 196 /tie put +readonly def +currentdict end +currentfile eexec +D9D66F633B846AB284BCF8B0411B772DE5CE3C05EF98F858322DCEA45E0874C545D25FE192539D9C +DA4BAA46D9C431465E6ABF4E4271F89EDED7F37BE4B31FB47934F62D1F46E8671F6290D6FFF601D4 +937BF71C22D60FB800A15796421E3AA772C500501D8B10C0093F6467C553250F7C27B2C3D8937726 +14A846374A85BC4EBEC0B0A89C4C161C3956ECE25274B962C854E535F418279FE26D8F83E38C5C89 +974E9A224B3CBEF90A9277AF10E0C7CAC8DC11C41DC18B814A7682E5F024867411453BC81C443407 +AF41AF8A831A85A700CFC65E2181BCBFBFE3573BF464E2BE882A715BE109B49A15C32F62CF5C1025 +7E5EA12C24F72137EB63297C28625AC32274038691582D6D75FE8F895A0813982793297E49CC9B54 +053BA2ABD429156A7FFCD7B19DAA44E2107720921B74185AE507AC33141819511A6AC20BC20FB541 +0B5AAEC5743673E9E39C1976D5E6EB4E4D8E2B31BEA302E5AF1B2FBCEC6D9E69987970648B927623 +2093695D55A806D87648B1749CB537E78BB08AA83A5001F7609CD1D17FFA1043EB3807AF0B596AF3 +8C91A9675E2A53196FEF45849C95F7DC182A5EC0EC4435A8A4B6E1CDBF9A5AF457564EA72BF85228 +EB6FD244F25135360DD3EBEDA99D94828F447D52D011A8FC8B8BC124A4B367EC860C5F7CDBE58563 +4A1ACD80E37B6F2D5F33AF5A2C0814652FA37D0C6A99767C561253AF8DA3A1279D421AE11C133004 +DB273FDDC2134ECA4CC50296220A4729E4E73003AA88CE151F57F8C5DFEE1A8B3A74D7CB142B4F7A +128A4B0FD028B71FCF59841D3E8CB0450A0AB47B927D944D94C5DA562310C79E2321106D6B90FBD0 +4F5EB787AC050578011A0B24AE534B93B4108D982736464ACF5B77071ACD59B8D987EA9FE832A655 +C175AA8204DFA034D9DEB3AF510C4E948AD8DF3E799B81C5C8250B86FF8F91BE906357FC5DE9A320 +9AF78555AAA0FE720FBF0300F4FFB1E6F49CE9E00B0870D1E0EAB2CE05378850D15E9591ED19E563 +27A083671AD4BD0FAFC5A3AFA4D3E3CB1E50111ECD344168DA214E380AB12211010DA632B2CE9261 +6B94EEF181FF68119A2A0FB6AD9D3BE9E91F24484D018879EF39B3A5EF9A040B26AC1F2F6EC60EAB +B4233CC0878BF25AD526D45BA051CB36353A5A56E9BA2D1132F595F3202195681878AE92CFFC0A80 +9F8EF0DBE782E10D065658FF573553AE7EBC443C640F3F5745DA56489EFE26BBE67475C3F0ED603B +9DDB8464D40B587BBAB8F1B3F73FF9371EB27335665FA61498231EE271987F283580C7B42BF98121 +2D1460D366B3B5D0B7A7F7CD24B3C145B291FAF0B1F20996860BB42E7AF96BEE82C2B2174E9ECE34 +28A5FF9A63D7858C44BBC680770CE70BC7DF2B68CD42F9342517976533B7DA625EBDB07E071D4C17 +C3C32714C079DBEFE2F6F4977B005FCB214BF1FCEB394488CF34938B112C31AD00A54D096EC3769F +157DF59B6EC70FC6BB644470C2DB9688A9891D06145B198DEC09C5DDBFF4E1F56D8B62D172F59271 +B009EC62DBD8D48017892149618394F80F3472ABA74AAEABBA441B569394080498B5E5B56EFDC414 +BBFEBD1D53FBD880E92ABBA771A5EFBFAB1CA24C3F36686B9D9B65DBBBA23089C7D35CEF18D9751F +EB7C1E65F3B672D5E7C2BF998F65D0F49573F285279159BBCCE027E66EEEF9E47CA90DF348D89F86 +48FCB6F55AB2ED74C4043AE90F3542759B3F15932F8A52E3318F1693B2367E13AC6412B41D06DFA7 +1A3A869DA8816B26CD2CC94DA976DEE2B7ED59B4E956A0836A5E7FF5E0FAA40A121482798BF50E17 +28D3387D50CD62E1017235A3B1416CBB94C04F3E3D5FA2BDA3819A47057B8FECB3C09E0A391B5EAD +C38DC1AB744F90453026AACEDFCC190A280F0179C8A3BC1273C608A671E4ABF8BB5DCFC473240048 +1002AE9451172F2F9809B75440B987AB11DBB3569022A02F0194D73FEACA133DBB96BE3DED9623D5 +A89D652880EB4A147BD25031EE1C212E3226D5F7C4497DD9E2F767C4414323972C2B268F192113EA +4A0CD2B82760DCB2ACADC8719511F63D471F2DAAD5399A0B5DE1A15C6579712A81B432DC083E2EFD +660FDE2F155C78676E3350A9A5724512F4169C5E697897F5013D010BF75CB1920328F21DA3408BD9 +0216A18A5017D5FA51083A7C49C3D226B8AEB886083D13EECFB4EF12DE38E5F6B5B7A06D7F2BFEE4 +4690C87A7EFA5725AC793B61EE754278919EF5C5033D539A9BE0732F3D33137B6BC6D170DDF29763 +101BA0078E4BDC1562D16CDC01E05129709AD0E9532C6E6F7E74E42BF133F53314AAF732E90DC3AC +5C1BF5FD615189E12EBCE636C9129641A4879BC987E734289732F73DFF066C8C13B3735E2F2DD818 +E542EC0649DE3E37B0B5111670C45EC14E1E1FF14E41F12A20A6FCB2FDCFA350467651D697AA7E55 +49E2D4B30175244EE941B1F66BCC160A03B963A64DB7D1A06ECA645866EC4627EF2F3563FB399DC9 +B56A99A024D8FB026B8CF36E49484B98C90DA4477FB706CE1F5B136705E52A539D21C933315542DC +E71BC85955427D9DFF0DD9CB767B6B67DE7C2B8A2E2CF3A639E4C354EBC169360311D44D6F57322F +0A402C293F9FF510AF29BAAE402A218B6314495017595DC15128022B8C698ECFBAEF7ECDEE7FF01D +E305261E0119786B842B781C94E2B0138A581CD051807508F585597EBCEF7871A914FDB08466B2E9 +79C83DE884845105596546434E0EA525BEDFFF3E68F245493745A06B577C9A50E0170274210A6F6D +4A44C1EB5512ECDEA42F107E8C08A98EEB9EED0582D607DE96328ACD3D81BD759CEFB2F6DFD2AD55 +FF46D5202CCD0B518DB0008DE95594E96F77FC36BCB1EBCD388BD2E3CB674F90A8C69B4F57FBFB6A +57F07443B05B43BAD9EDEC3A90C5270A9F9198C8674972734277A7A14F22433A74CCC8182FEA974F +E66DD3A3BBE8F2494895B01B5AEDEB4173D8C3BFD4AAC413A548E0D446E0EAD5BCE288586885C116 +080C0AFB697061D021C043D2822FCDB78CFA99DE2A90A8465822A6FE4C0D03494EC045EFA80793A2 +458FA78C3353B0D5D0600CE006E31CA3131F387EC4D84B0C7C46A308D08C302C85ABF45B2D483BC6 +3DF7B0EEA1A0AFC0F844D77274C95ED477114752D0C88AE6092423DFABB3B01934699F096AF8F067 +D870F73CE45036362AC4CADCF97F42C63DFFC69EAC751C08AB6D61D34D32BFCEE1155D012314FD51 +252D2470B4D4CB16D0ACE4DDB17030C3622F56F96EBEA0FB90D92D109B956A4DC00332A9433FFE10 +43300B01D87EAD0C51E6D65545C37AA6528C214BF68831BDC78A84746E879643D9D9EE6BA5C167DB +0A370308C5EB606619A17BEC856BFF181BEBDBA0CA0BEA05C4EC948E288A941755EFA2DCFAEE67F3 +3B311CE0532CAF26FDE29474DBBEE42A623BEA14E4A4858B0496EFAFC775D48065F58DC20F727DCB +866EE68E24918AA1906073B64B0FE458B08A1B7DFA4BC03DC88CB5394F1FD149478577396F0AD201 +C4568BEBAB40DE8B864484D8D117727EA283CAA7485AA58FC506CC9B1C774FC883A3440499E3D984 +36111DC1DEF8CA30DDDBB9DDB9C89534D691555C36B5450DDE24CE5B17DA11E3E4C37A11581E4FA3 +C0D89B5CC3784BFFC14B6E98C548A7C38C53CAB973AF3DE82C6D42A01A57C9FFA790111BF79FE7F5 +91D5E2FF9E2730B7920A30D7BF713E4EBDD272DBDAFC8A676F195BA9082CD779E002FFD0785FC8DE +FFCD12E4B8DF368091E6119E135076E43DD0CD75E6429CEEA972391BA73D93B89645B2480315A49F +49AFE2F324D251AEE654ADCCA32A66E9B1B9407B055BBC615E37BF1BC8C1ADD81ABBF983C73F733F +91770D50184FCA3A0F6165CFE79002352DCDC1296D67AD671A4F4C0A60C7E9C18F3CC374A4D065FE +56D0BBD2CEEE3F70AA9398896FE22CDC4BF7332726A0E676D66D511799D63BDBE0DA140EC4EBF57D +E032B620E5ED890A6760CB7D40A05037BE3A6C5347DDFFCAAE3A5C4BC116F39969936FB483040E42 +1345EADC494523ACBDB55CEA57C40279D4AF5C7C9F3B0660ED9E725C9FADCD5361784D5C14B93C3B +13FD055F269BC7DF6D67719A2BF30D19D1A690B4CBC06DEA51884A686564B3FF6B3F8E9C9FBEC5A9 +14F525B6AE34D448B0AB85FAFA4E7F301984A9645C786DF2A19C2E6A20DD0B60AA2974A624E7CD19 +17AB87B273D04516D727FD30EFD27C983342C9BCC1D9CE95E7576AF25A4BFF02DB4588B8604C306C +04AB66E85E114C28CC47395016955AFACE381AF44B1D004D5B6B64186CD7CB9D081F93A637BBCFE8 +E292FD8D5863BFC683C9E37F0FEF0ECD16CFE63E0A584BFA4116D3AB0ED62B7B82C1630B2B78F255 +27A79267580F58005BFBD37E5C0C31029945CF6F6F72DB17EABDBB51DC8726FCD5AB2D61341B2EF7 +716F0D0AAC546DEDD22AC62FEFB1ECA0EC524C6B3233FB4E1B4CCE49F584BE7BAF33C878F2280A85 +98502001DEDB4FBC9F7DCF40D055AC35AADA869F2808F0B401C294AE378AA9B2AF2768B75D9CAE1A +C52025F18E7DDAEEA2122CE9D233A2A9046EC5EBEAE20FA928BA4AC651AF426574FAEFE31D28C771 +7DEA91429C7BD7611CDA7F5F55A070AD6776AF18DED46E5101A7D1A47F0752896669148EACDBEAD1 +C8A44801B53DDC61261499F2FCC600F635D8CDDDAD94A24BC14A2F5B5AAA6260955256256AF4A9AB +CDF541453E4190AF27139D3C6A2BE9BE4870260574C26338FF348F503DA4DC15FAC4F6ADBCBCC29D +93B9100EE126A0A28C3F0CA30B7F09E13AE59E34DA373702C5817D222DA4AC23DA5EE272805A902C +DB7001A0CCB26220D956871465BE18A323DF93CD792BBE61F3FF8C4957FA49925DFBA1569FBC1BAB +D1C3BA13F88D1D98F7034DBDF956F52646DF43AC978E86A1C532085DF36A66FF556442F3F337A699 +DEAF26EAE1AC20FB2968E58DF82ACBB647350335E4D48032E1BB49F1EA2181FBE183AACDC06761B4 +8A9EEAE514A00B4656B4CDA4BA3AC27F30C39A4274C1DAC69A7BBDEC53C9C7D78D0FAD8530073440 +C85F0A4B0003AE793731EF2A3199CD73663B05BDF83FB2B8C175F0CB3D20C52C0C8A370F9DB92304 +8CBBEA7267C828A700C5856EECBF7FFE8A67C5027BEF1B1C7D42C717ABC02FBB73A3AFEC5F57D6BE +21C2CBADC84855BFA4BDB2F127307BF437F010AF0C938F9587B153249E6EEC2ECA63E9BEE972CF4D +98627E9DFD37B325E7A6612C667296C8E9256C62690BE9D25F7C68CD984B56197148A89E8E05B9FE +98F033E9DD9EF7245EF70E63289C7947BE5F2272154E207A9B4B1FDBE41B1D4D72BE13873462B012 +F4B9D5F4164B714965F36C4101C870EFCC4BACC1A6DF744C1F91B1B7A2BF63BDFB840F5B0C062ACD +11FE47D9A3AA36CDC00ACD6DD8475034F603E859B3113B1C8A311C80B5D9EE1D881424745B573DB4 +3656FD733864CDC8978006D58309E4B226288A0DCDB9AAC8396FC9DD024BC5F00160C382B127EB4C +9FA74B62BA990E2DFBA53D3CD57A27FB68F912E5B69CFF2113D70CDCAEF634BFEB9D7A65CD1A670E +3A2CEE5D9687558A1BDA4358BE0917A4C8614B97DF5810473714F6FB8BE998BA52916F790F353DB8 +7B96194C6271147A947C664D273CDE1893D4E1EAEE9F4199941970A46AB809D4776E9310C506EDE7 +7EF1E9804829E495B0F654EB15FC2563DF6CB1B9D36D837777547CA37ADB28768A8DA2433BFD20D7 +2F9F00743272277F2C9A9F1F33CFAD44A8F3D620A0DDA13C3286760361107A0A82E0D12A9C601FE9 +3971250D47583AD68AC90892AECC54BFAB740A2F51F07A1E2C5B5E3A895F3E3001F4DEEB99E0A646 +4B0EC3753F30013E9C92525D9F651898A585DB03BB7180D652CB68ABAB55BF18402A43888772F9C3 +6C9F7CF6E00F07B33590C777B1B056B6C31210A3FEABC46BF00E7A837E93EE3464776B9D78E75C60 +CE9E0725C31784836B9CD63BA44DB0867C80D70A15FC97CC6E4526E84AE9B30CDA84C1C7857466E5 +F315C8F6DCFA0289FA937AAFF5D3CC35709E9EC3C255B355D7BC6063BFE6364804342D4BA7D015BE +58633CB781FFDEE7BFC46AFD84255D141DA1EF280D5CE22017DBC7C1A128B3F9974AD5BC1E53E43C +3EC042C17DBED744236D8AC784B9102E2FC4E94DF8C78254A6D496790CD6684EBB54035048E1DB75 +93E552C7EE7B884012517917AD46CA470ECFBDDAFA7F1FF13C0CB00005628710DD4EA93C79DE721A +89BBF27DBF7A085799B00D6AA37D7B3590C79ACAA5DFD15953E7F8B5874EF9BF34A217184100A080 +0A5675D552ADEFD930E294A50CF7A3C6344EA0871ED23AF942EC699E21537D852ADBE736EB1070D2 +C9B622EBD2384430BCB114D1DA3CBE2C6FBC839D77F20ECC999A5302705AE31AEEB8B4E5CA4046A3 +C77F8B0248E3755013CFA7C76D7248920CC203834E9328B58D5FC7C46B11B5AEA991556D067C2B24 +37634D95EA274197D3B46CA1B8446D633B6F0AAE72A599548BB3D81A337113D3EC58B0B2DD107A61 +7CA6DEADEE7003AE6F28ED6DAA5C5D99D67DFD2594800A66D11D26490156A539E286191274C30C09 +8DB77A427695BAE705DF290F97887C5DD6FD964D76FE6132016D0D58580F2EAEB727FE1B8AEFEC95 +C4629CB17D8C63D1EDD2125527D00C9E7C64AA7053A047A69F82812FD3C8C2543F269EE9C553F5BF +8A53D461D9C308C198EBF2B97DD531664229D32C3EC61D69E4E79F539E9E589FC3F57C9E4624F869 +A482062A52C9F4B640090C360DF8DC8702DB966EFADCAE94C8A2DE022E88EB388239BC517368F8C2 +6C8D96A6E8649737F902495E3F29F357B9B58EA47A9400D028B8BFFE74BAFC43E888808381C5F3E3 +18DF9BDA26F6E14DE2858A1A9CFAAB8A82B7819F748E04C8606DA94D884A13C67E3FA06F9C2834E1 +A02F4BD043C87D57297D500E4757BCEB37239A755F36FF99A3F9B6E0CC9F8938041EB931519BF0D4 +2E7A93EE62E6A59C2BBF1B2D6CE1958DAB40F1EC78C99C501CFD69864DA50EBF933D30CEAEE7456C +D0A08C78CAFAD93CACE2671F7E3DDDDA98EA56CA35648109D4E6333188ECC817F317D8979DA9FAD9 +DD45DFE5D74BBADFAC4921723F736426D5ADCC5DE4FA6703E121BFCECFB415F1D444634A7223389A +38DF2AD64101476D170DB854A220CA8433AB5DC40A841BEA6CBC538C63E0442A7764014D853AF8AF +C34F2D17A1DB8740A45C857667A59F895094867D12D06EBF72942E8ED4D6EE9EF225B4DD82A2F16A +D0A8C2C246DBA7BB9245ECC4863D14885BC30950451113123C868B8AA5B36F7B926B5ECB0A333902 +BB241B3D281550655912AE14A634D79515F00799E91F6DB093ADA1692CCB5A32CF94FA0A4E1B311A +68BD03C0F85F2F63C3C0658A3756013288704B240E14F65AC1BDA3098894BE592794245AEF119ED5 +9523983DEB2D0E9D211F62E6D6C5AAE72F3AEEDC4E590BD531EEA93C05EDB1370F140DB3034A9996 +22ED4BA8F1AAEDB368656B6C6AF920DE068E06B985FD47461276723C9944CAC87B44475767009320 +C7934FEB9B4DB8E1003000A663155C9A3FC67182BE4EA30F5FC813A8F34F3F99DEE8134252A98B21 +54FCE28C1EC23FA5E4BA8C4E005708A18FCEDE9F154576F0B3400C7FBFF197011FFB739D285819F9 +C19796979B3A0A5E4E5CB116F78DCB3A7178718D886D1A9E52BF4D9C8CA2FA2725147413CE566DC7 +4DCD7328806238F8BF9A780CE75C05A7C2BD89420F8A0B0D602498C1C83F775A231B8BED4EDA6F8C +995ACF80138D4A438EED6FB2CA44F06D664052D45B2FEEF0EC584B27E01D663D4B2F8C48E04690B3 +50AB33F10875460000D37C300CAFB3F8391E44F1AB363074FAC3E03C41BF062E5668AB0A4214C64B +171A2CBA072DED6EFAD31309A34D99DBC065106DD8F0942DE6DFD6C0743D98F214C3E3FA09DDEE4D +1080AFF99C98E001EFE2B853747CA64A6130A87AEE3583592AAD47CFA01F0B5B22C638925ED65188 +6EC83777DCCB56A808404BB5B655DBAE33483AADA292B580F02FF2494C7F3F7459BABA95373E39D2 +ABEFEC3FB56440DF99E6DC49E4D01F9286E11085D68EBE8744F307F6AAD2DE8B745E243163427A2B +90A90F6726BCF115DA15331E3F30CD025624C7B916A97B4067C60213C0B3782EEE9F4594B4B78B07 +2C5E9A30D35E1FCFB5E043404E5407A01A2ABBB636096B0ABFCA115414EBB67749D494CA030E21A9 +1206D6B090E0D94EF2D1165765010B8D39695D096825D9687F2480C851690AAEAF4AEEF413C054EB +FA49AA548B618802B62D0DD5FE7529563FD02F7CAFD93CA182B2506393AE802093C5668BE1D5D2C9 +E74C3160B5C3055A31ACD75B2CE21E1014D136FB96E44D4E6BD79A7B5FC5F1741A55B6CDE4CB5B44 +AE1EC827FD9BC083F76C8787756104E782F9D4BDEDA005B4085690CCDA8AC75A0BEFB47D0806F4A4 +6126AA280A41F0FFCFEA04B96714C7B1D4F806FA6412DDDAA68B20551C36E556647C3A7FC303C655 +79322171A7783FD7364F56ED31B5B8132815F524DC97030DFE3E47EDE35D03F4CD2CD99AE55D0BB8 +17A93C71F7C5383ADD04552F1C54557D494907D3050FC9D5514FCF80EF7039C5B076F16A3A946D59 +1165E72F2A31E906D4A57167B44D64BFAE9C408E9CE5EC8937C7B3B0AF24089A1878AF0758B7CFC8 +A787EB7CBA64BF13D3939DED996660A6487579162F56C3440764954DF160077B16CBBAAB9DBD5857 +FC44A5775ED562140DD33B3CB2173152213DF78D65AFC94347685181CDCAF3B79D755652C2B2D3EC +39449252DA027E97E534AC05ADCC39795C41F68E5F98F983CFCB4DE3BADFED909B2B6178904806B4 +0AE9F9B3577531D1C9C5793EB1C455C9895D2C858540C6B7F8B40AEDAE79FE461309AF352C80739C +5AD7612EE5970C113133502E1F59F53F8A72373A3841C37E727ABFB1E7A2AEAEF482B0942CDA1BFD +D81F7A2FC15A7D0E7F2CEFD8BC432268ACDDF3698804556E4AFE9086E6AE0CF1B144A5A7D04CE576 +F26533B611371D7F846959F2A589E54EBC0EA0AEE1C117EA3E8957E07AB8A728AB388B06BD7D98CD +44C468F7AE354304DCD93BCAF479F5C27BAC920128ED987667E94ADAB5E55EAFAB2B52BB2D83991F +9D638CC461A25738A6C33F134191A1A804EA935EF441F89129175BF705D4F7089BDE3C0AE6C61921 +487B3EDB029FFE0CDD2307B68CEFCD58591F939ED509EBA0FD070294B5158F3BF432AB18379BDA34 +86DBAC2984198FAEA711008AA454E9612B23B6C8C5AA908E5424456603D522BCAEB3EC41E1C8BBEA +B1C8CE0BEF6AB7C7008171F62B03BF9258329DCC30472DB329313606157CE246CC8D5C9E7DA2AE08 +967CB303C5E516F18F0CE530E75762541536B444925C1E123CFB615157A3169F7F10172423BF5A54 +0015BDA30A03414679A145541655B65253CC546261FF4626722942C8AF01FDA6F92200EFF2716807 +4F3BAC5692AAC160F7A0DCBD5315C4B700E3BEF31520215C093F0F1DCFD5D18538F8D4FF1997C652 +4DD972AE1CD7E11F829CC621B383390C2E7D196A8D5A9CBFBD8D3145E20CF045D1F128CA47CC9A01 +91E29D4217A1FA558F1F93DC86171E43764CC7D9377A1C76AE027D5C3FEC7A38CEE040DA280902D3 +F183134E3A95E5EF148C71BD5994BB28EDAF191EAC23BD02BD9A5F613235E97A5EE8C5C7E6A93F03 +186A29C684B6E46026A31BF1830B1ED3BB12A0648270CEE09A4F5AB891AD72D80C4057C781DFD270 +EE443E1FE4E9D8E58D2AA0A9A702836EABF544A3B4F2E1841776EA821FDB36E71AECD6A1C355127B +461FCF72A531176DB59F10D9A1222F99EE4AA579CD5CF6A288016F5DA6838536F3FE0D902543095D +90094EB79BF1592CDDE05786DAFD98AF30C6CEBF27B1315C706A63D4E868BA374EBE33145C16F181 +2AB2F8668B549A74C8A58304BAFBEE3136533542EDB8976C7550F0905546D116DD0E11384C2B99E1 +195316EC9CD53EBADB73509FDE80B1BCBCAE46E8806E0CC8CCBF2B10FC54D05C9F604B4ABFC87B25 +DB5CA90B64096B18C33E8A53F45F163AB7AC47CD6E9521230D689ACA686B5792D72097C4E67F93DC +9B7AEE088DA36BD6ACEE7E68ECFCAFE7D585F677BD1ED27595948CB7CCE21BAA375393CA45234E8F +4633D61EC657C528EDD0FF520964F8B737D0DB9A58DB146588F7F02CB77DE7D417CFC65B45CCD62F +77CC833DB5228159A552C7D6B0F7E5E5521E26C7F9A47D8F600CA820DF8B4B25B8B8D823FFB49E7B +1E779D9680AFB496C7BD8D2FDB99717F9EF91A6AFFBDAF5E6C188315BF63C3BA9B8414709D1E60FD +25D29BEA68D6D5857CF024BC2E03249A4B294F36E3BE13225319F11AED07AC2BD2E5BA6E9CD7F77C +C707F6268514BB7D50257EB4E23BD6CB9700745AF46DDD87664364A8CE71574F2D60CDBE61A3AFAB +925EFFB23273B61E93385C29C2E8B76650C1432AC8D4FF35F5419CFB553C8F10F4230CDC749B5F3A +8F5B1EC8C9FE31626378EB495A9A53BE7E1C0683550BB3AE9ED557CF4DE95399C5EAFB4B99B0889C +890FE2CEF419A20800812D0DA7795E9F519061D19D1AFE2AC77CBBF05D1A738E62B64B4224DCA36C +48B7A9D1FF785225C9852111316ACE1DAA2C21E05D767DB0DE6A0593D19029814C8BCE19DEED87EA +E4F52004EA1FE7934C099EC71AE7048D796081176AB9B8ECF42FA5581FFD859BD818411DFC4649C7 +6F82D6C03563F9B9D2DE6F274D41E0A93784EB6ED0FEAB8DB20CFD35E2DEB93A1DD1AE514F9E8A48 +279536885042D248CF3FB0872135921DFDDC41198DFEE21982D675CC3BEFA0A3986893CB55393D0D +97ABBE2E2E9B911B8E219104B22197EA04E201FF9C5F9B644E91709CFACDA783050C75212109FBBC +0422B697902D9847D764AD31E851ABB49F9BED16F1377F97198664125C1BA4E06C4C43AAD8829047 +38E1127C3CDC74167B21358CBDC8563951CA7B5DE09526FEA0B1D2AA92F3C4EDFC252BBC38463B55 +E97E8C40D6FD34403357911A1FD0A46565148F3FC891B20EC84976FB26D13A93F1B3D7162D864F8E +1C4A4CED23724105D0B7EB83EB334386912AAD93BAA8AA9CF5CDDF83D5FF76E94C8A2C40C28B5F48 +47A49D8155347392B7D2CF2731E45E0ECA9A654AEEC5DC2A6B03E93D4DA22575D824294ED80804B8 +42B898708A5FA69C5F958A935D47F57039C31771879DC8AE993CF060F6B509F8CE28FAFA8A0FF706 +9464A5D1B1FFA1793EB110F1911BFD03CD3D35BE6AE7AE186C07BC7D58A92835845B4147286802BE +9E2A7DBB73F443E0D5B1A01C9D578535802FEA3202CAE07D64F011E5052C4E3D6F0E83BE8CCDD403 +D53C97A1D398CAC1DE5B2F1610DE122A2FB4E58F711BFED8D19A2EC2F82B94D11D6A73A315376B27 +FA64746F56B77ADF14359CFBDD7C7B15EE49D8C97010E1BCAB82485E8597747E0ADA97D673399B17 +CCC088F0450BD277A82AD326535D8539C6E6D7DE5511D503552C1A1774F8185B660E0F8163A2779C +7A36AD63F628DA7CFF6853DE27AC61E6CF97264392D1DE6807D84E2F86F67DDC1056E622637755BB +E86D142CF911AB87ED0AAD5B68D9B3DE1DAFB7D210410FED42D6AB1B4D6FE4E6D9E36A314D14D1ED +EFBD137E9122D40A9C42018772A868335C52CB34E4DA8DC7194187E99394F5D6285F68B36F5207B4 +9AA42F358585CFE126B077BB52A3F3E689433C8B41364EE740F16CC3A99EABE76826DA65DB410511 +8C84 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 + +cleartomark +{restore}if +%%EndFont CMMI12 +%%EndProlog +%%Page: 1 1 +gsave +newpath +0.0e+00 0.0e+00 moveto +1.3e+02 0.0e+00 lineto +1.3e+02 1.2e+02 lineto +0.0e+00 1.2e+02 lineto +closepath +clip +1 setlinecap +1 setlinejoin +gsave +newpath +1.0e-01 setlinewidth +newpath +6.558414e+01 5.035192e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.52959e+01 5.032491e+00 lineto +6.558414e+01 5.035192e+00 lineto +closepath +gsave +5.105286e-01 5.105286e-01 5.105286e-01 setrgbcolor +fill +grestore +newpath +6.558414e+01 5.035192e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.52959e+01 5.032491e+00 lineto +6.558414e+01 5.035192e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.616386e+01 6.380506e+00 moveto +6.558414e+01 5.035192e+00 lineto +6.52959e+01 5.032491e+00 lineto +6.558955e+01 6.375124e+00 lineto +6.616386e+01 6.380506e+00 lineto +closepath +gsave +5.263016e-01 5.263016e-01 5.263016e-01 setrgbcolor +fill +grestore +newpath +6.616386e+01 6.380506e+00 moveto +6.558414e+01 5.035192e+00 lineto +6.52959e+01 5.032491e+00 lineto +6.558955e+01 6.375124e+00 lineto +6.616386e+01 6.380506e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.673477e+01 8.025757e+00 moveto +6.616386e+01 6.380506e+00 lineto +6.558955e+01 6.375124e+00 lineto +6.587874e+01 8.017735e+00 lineto +6.673477e+01 8.025757e+00 lineto +closepath +gsave +5.426778e-01 5.426778e-01 5.426778e-01 setrgbcolor +fill +grestore +newpath +6.673477e+01 8.025757e+00 moveto +6.616386e+01 6.380506e+00 lineto +6.558955e+01 6.375124e+00 lineto +6.587874e+01 8.017735e+00 lineto +6.673477e+01 8.025757e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.729255e+01 9.958489e+00 moveto +6.673477e+01 8.025757e+00 lineto +6.587874e+01 8.017735e+00 lineto +6.616128e+01 9.947889e+00 lineto +6.729255e+01 9.958489e+00 lineto +closepath +gsave +5.593781e-01 5.593781e-01 5.593781e-01 setrgbcolor +fill +grestore +newpath +6.729255e+01 9.958489e+00 moveto +6.673477e+01 8.025757e+00 lineto +6.587874e+01 8.017735e+00 lineto +6.616128e+01 9.947889e+00 lineto +6.729255e+01 9.958489e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.783297e+01 1.216407e+01 moveto +6.729255e+01 9.958489e+00 lineto +6.616128e+01 9.947889e+00 lineto +6.643503e+01 1.215097e+01 lineto +6.783297e+01 1.216407e+01 lineto +closepath +gsave +5.760874e-01 5.760874e-01 5.760874e-01 setrgbcolor +fill +grestore +newpath +6.783297e+01 1.216407e+01 moveto +6.729255e+01 9.958489e+00 lineto +6.616128e+01 9.947889e+00 lineto +6.643503e+01 1.215097e+01 lineto +6.783297e+01 1.216407e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.835194e+01 1.462581e+01 moveto +6.783297e+01 1.216407e+01 lineto +6.643503e+01 1.215097e+01 lineto +6.669792e+01 1.461031e+01 lineto +6.835194e+01 1.462581e+01 lineto +closepath +gsave +5.924643e-01 5.924643e-01 5.924643e-01 setrgbcolor +fill +grestore +newpath +6.835194e+01 1.462581e+01 moveto +6.783297e+01 1.216407e+01 lineto +6.643503e+01 1.215097e+01 lineto +6.669792e+01 1.461031e+01 lineto +6.835194e+01 1.462581e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.884554e+01 1.732506e+01 moveto +6.835194e+01 1.462581e+01 lineto +6.669792e+01 1.461031e+01 lineto +6.694795e+01 1.730728e+01 lineto +6.884554e+01 1.732506e+01 lineto +closepath +gsave +6.081517e-01 6.081517e-01 6.081517e-01 setrgbcolor +fill +grestore +newpath +6.884554e+01 1.732506e+01 moveto +6.835194e+01 1.462581e+01 lineto +6.669792e+01 1.461031e+01 lineto +6.694795e+01 1.730728e+01 lineto +6.884554e+01 1.732506e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.931002e+01 2.024139e+01 moveto +6.884554e+01 1.732506e+01 lineto +6.694795e+01 1.730728e+01 lineto +6.718323e+01 2.022146e+01 lineto +6.931002e+01 2.024139e+01 lineto +closepath +gsave +6.227892e-01 6.227892e-01 6.227892e-01 setrgbcolor +fill +grestore +newpath +6.931002e+01 2.024139e+01 moveto +6.884554e+01 1.732506e+01 lineto +6.694795e+01 1.730728e+01 lineto +6.718323e+01 2.022146e+01 lineto +6.931002e+01 2.024139e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.974188e+01 2.335273e+01 moveto +6.931002e+01 2.024139e+01 lineto +6.718323e+01 2.022146e+01 lineto +6.740199e+01 2.33308e+01 lineto +6.974188e+01 2.335273e+01 lineto +closepath +gsave +6.360258e-01 6.360258e-01 6.360258e-01 setrgbcolor +fill +grestore +newpath +6.974188e+01 2.335273e+01 moveto +6.931002e+01 2.024139e+01 lineto +6.718323e+01 2.022146e+01 lineto +6.740199e+01 2.33308e+01 lineto +6.974188e+01 2.335273e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.013784e+01 2.663552e+01 moveto +6.974188e+01 2.335273e+01 lineto +6.740199e+01 2.33308e+01 lineto +6.760256e+01 2.661176e+01 lineto +7.013784e+01 2.663552e+01 lineto +closepath +gsave +6.475331e-01 6.475331e-01 6.475331e-01 setrgbcolor +fill +grestore +newpath +7.013784e+01 2.663552e+01 moveto +6.974188e+01 2.335273e+01 lineto +6.740199e+01 2.33308e+01 lineto +6.760256e+01 2.661176e+01 lineto +7.013784e+01 2.663552e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.04949e+01 3.00649e+01 moveto +7.013784e+01 2.663552e+01 lineto +6.760256e+01 2.661176e+01 lineto +6.778343e+01 3.003949e+01 lineto +7.04949e+01 3.00649e+01 lineto +closepath +gsave +6.570176e-01 6.570176e-01 6.570176e-01 setrgbcolor +fill +grestore +newpath +7.04949e+01 3.00649e+01 moveto +7.013784e+01 2.663552e+01 lineto +6.760256e+01 2.661176e+01 lineto +6.778343e+01 3.003949e+01 lineto +7.04949e+01 3.00649e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.081037e+01 3.361492e+01 moveto +7.04949e+01 3.00649e+01 lineto +6.778343e+01 3.003949e+01 lineto +6.794323e+01 3.358806e+01 lineto +7.081037e+01 3.361492e+01 lineto +closepath +gsave +6.642327e-01 6.642327e-01 6.642327e-01 setrgbcolor +fill +grestore +newpath +7.081037e+01 3.361492e+01 moveto +7.04949e+01 3.00649e+01 lineto +6.778343e+01 3.003949e+01 lineto +6.794323e+01 3.358806e+01 lineto +7.081037e+01 3.361492e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.108184e+01 3.72587e+01 moveto +7.081037e+01 3.361492e+01 lineto +6.794323e+01 3.358806e+01 lineto +6.808075e+01 3.723058e+01 lineto +7.108184e+01 3.72587e+01 lineto +closepath +gsave +6.689878e-01 6.689878e-01 6.689878e-01 setrgbcolor +fill +grestore +newpath +7.108184e+01 3.72587e+01 moveto +7.081037e+01 3.361492e+01 lineto +6.794323e+01 3.358806e+01 lineto +6.808075e+01 3.723058e+01 lineto +7.108184e+01 3.72587e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.130728e+01 4.096866e+01 moveto +7.108184e+01 3.72587e+01 lineto +6.808075e+01 3.723058e+01 lineto +6.819494e+01 4.09395e+01 lineto +7.130728e+01 4.096866e+01 lineto +closepath +gsave +6.711563e-01 6.711563e-01 6.711563e-01 setrgbcolor +fill +grestore +newpath +7.130728e+01 4.096866e+01 moveto +7.108184e+01 3.72587e+01 lineto +6.808075e+01 3.723058e+01 lineto +6.819494e+01 4.09395e+01 lineto +7.130728e+01 4.096866e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.148496e+01 4.471671e+01 moveto +7.130728e+01 4.096866e+01 lineto +6.819494e+01 4.09395e+01 lineto +6.828495e+01 4.468672e+01 lineto +7.148496e+01 4.471671e+01 lineto +closepath +gsave +6.706806e-01 6.706806e-01 6.706806e-01 setrgbcolor +fill +grestore +newpath +7.148496e+01 4.471671e+01 moveto +7.130728e+01 4.096866e+01 lineto +6.819494e+01 4.09395e+01 lineto +6.828495e+01 4.468672e+01 lineto +7.148496e+01 4.471671e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.161356e+01 4.847447e+01 moveto +7.148496e+01 4.471671e+01 lineto +6.828495e+01 4.468672e+01 lineto +6.835008e+01 4.844389e+01 lineto +7.161356e+01 4.847447e+01 lineto +closepath +gsave +6.675741e-01 6.675741e-01 6.675741e-01 setrgbcolor +fill +grestore +newpath +7.161356e+01 4.847447e+01 moveto +7.148496e+01 4.471671e+01 lineto +6.828495e+01 4.468672e+01 lineto +6.835008e+01 4.844389e+01 lineto +7.161356e+01 4.847447e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.169208e+01 5.22135e+01 moveto +7.161356e+01 4.847447e+01 lineto +6.835008e+01 4.844389e+01 lineto +6.838986e+01 5.218255e+01 lineto +7.169208e+01 5.22135e+01 lineto +closepath +gsave +6.619211e-01 6.619211e-01 6.619211e-01 setrgbcolor +fill +grestore +newpath +7.169208e+01 5.22135e+01 moveto +7.161356e+01 4.847447e+01 lineto +6.835008e+01 4.844389e+01 lineto +6.838986e+01 5.218255e+01 lineto +7.169208e+01 5.22135e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.171994e+01 5.590549e+01 moveto +7.169208e+01 5.22135e+01 lineto +6.838986e+01 5.218255e+01 lineto +6.840397e+01 5.587441e+01 lineto +7.171994e+01 5.590549e+01 lineto +closepath +gsave +6.538726e-01 6.538726e-01 6.538726e-01 setrgbcolor +fill +grestore +newpath +7.171994e+01 5.590549e+01 moveto +7.169208e+01 5.22135e+01 lineto +6.838986e+01 5.218255e+01 lineto +6.840397e+01 5.587441e+01 lineto +7.171994e+01 5.590549e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.169693e+01 5.952249e+01 moveto +7.171994e+01 5.590549e+01 lineto +6.840397e+01 5.587441e+01 lineto +6.839232e+01 5.949152e+01 lineto +7.169693e+01 5.952249e+01 lineto +closepath +gsave +6.43641e-01 6.43641e-01 6.43641e-01 setrgbcolor +fill +grestore +newpath +7.169693e+01 5.952249e+01 moveto +7.171994e+01 5.590549e+01 lineto +6.840397e+01 5.587441e+01 lineto +6.839232e+01 5.949152e+01 lineto +7.169693e+01 5.952249e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.162322e+01 6.303712e+01 moveto +7.169693e+01 5.952249e+01 lineto +6.839232e+01 5.949152e+01 lineto +6.835498e+01 6.300649e+01 lineto +7.162322e+01 6.303712e+01 lineto +closepath +gsave +6.314909e-01 6.314909e-01 6.314909e-01 setrgbcolor +fill +grestore +newpath +7.162322e+01 6.303712e+01 moveto +7.169693e+01 5.952249e+01 lineto +6.839232e+01 5.949152e+01 lineto +6.835498e+01 6.300649e+01 lineto +7.162322e+01 6.303712e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.149937e+01 6.642277e+01 moveto +7.162322e+01 6.303712e+01 lineto +6.835498e+01 6.300649e+01 lineto +6.829224e+01 6.639271e+01 lineto +7.149937e+01 6.642277e+01 lineto +closepath +gsave +6.177291e-01 6.177291e-01 6.177291e-01 setrgbcolor +fill +grestore +newpath +7.149937e+01 6.642277e+01 moveto +7.162322e+01 6.303712e+01 lineto +6.835498e+01 6.300649e+01 lineto +6.829224e+01 6.639271e+01 lineto +7.149937e+01 6.642277e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.132632e+01 6.965381e+01 moveto +7.149937e+01 6.642277e+01 lineto +6.829224e+01 6.639271e+01 lineto +6.820458e+01 6.962456e+01 lineto +7.132632e+01 6.965381e+01 lineto +closepath +gsave +6.026927e-01 6.026927e-01 6.026927e-01 setrgbcolor +fill +grestore +newpath +7.132632e+01 6.965381e+01 moveto +7.149937e+01 6.642277e+01 lineto +6.829224e+01 6.639271e+01 lineto +6.820458e+01 6.962456e+01 lineto +7.132632e+01 6.965381e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.110537e+01 7.270578e+01 moveto +7.132632e+01 6.965381e+01 lineto +6.820458e+01 6.962456e+01 lineto +6.809266e+01 7.267755e+01 lineto +7.110537e+01 7.270578e+01 lineto +closepath +gsave +5.867362e-01 5.867362e-01 5.867362e-01 setrgbcolor +fill +grestore +newpath +7.110537e+01 7.270578e+01 moveto +7.132632e+01 6.965381e+01 lineto +6.820458e+01 6.962456e+01 lineto +6.809266e+01 7.267755e+01 lineto +7.110537e+01 7.270578e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.083821e+01 7.555558e+01 moveto +7.110537e+01 7.270578e+01 lineto +6.809266e+01 7.267755e+01 lineto +6.795733e+01 7.552858e+01 lineto +7.083821e+01 7.555558e+01 lineto +closepath +gsave +5.702188e-01 5.702188e-01 5.702188e-01 setrgbcolor +fill +grestore +newpath +7.083821e+01 7.555558e+01 moveto +7.110537e+01 7.270578e+01 lineto +6.809266e+01 7.267755e+01 lineto +6.795733e+01 7.552858e+01 lineto +7.083821e+01 7.555558e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.052684e+01 7.818163e+01 moveto +7.083821e+01 7.555558e+01 lineto +6.795733e+01 7.552858e+01 lineto +6.779961e+01 7.815607e+01 lineto +7.052684e+01 7.818163e+01 lineto +closepath +gsave +5.534918e-01 5.534918e-01 5.534918e-01 setrgbcolor +fill +grestore +newpath +7.052684e+01 7.818163e+01 moveto +7.083821e+01 7.555558e+01 lineto +6.795733e+01 7.552858e+01 lineto +6.779961e+01 7.815607e+01 lineto +7.052684e+01 7.818163e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.017364e+01 8.056405e+01 moveto +7.052684e+01 7.818163e+01 lineto +6.779961e+01 7.815607e+01 lineto +6.76207e+01 8.054012e+01 lineto +7.017364e+01 8.056405e+01 lineto +closepath +gsave +5.36887e-01 5.36887e-01 5.36887e-01 setrgbcolor +fill +grestore +newpath +7.017364e+01 8.056405e+01 moveto +7.052684e+01 7.818163e+01 lineto +6.779961e+01 7.815607e+01 lineto +6.76207e+01 8.054012e+01 lineto +7.017364e+01 8.056405e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.978127e+01 8.26848e+01 moveto +7.017364e+01 8.056405e+01 lineto +6.76207e+01 8.054012e+01 lineto +6.742194e+01 8.266269e+01 lineto +6.978127e+01 8.26848e+01 lineto +closepath +gsave +5.207064e-01 5.207064e-01 5.207064e-01 setrgbcolor +fill +grestore +newpath +6.978127e+01 8.26848e+01 moveto +7.017364e+01 8.056405e+01 lineto +6.76207e+01 8.054012e+01 lineto +6.742194e+01 8.266269e+01 lineto +6.978127e+01 8.26848e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.93527e+01 8.452784e+01 moveto +6.978127e+01 8.26848e+01 lineto +6.742194e+01 8.266269e+01 lineto +6.720485e+01 8.450771e+01 lineto +6.93527e+01 8.452784e+01 lineto +closepath +gsave +5.052141e-01 5.052141e-01 5.052141e-01 setrgbcolor +fill +grestore +newpath +6.93527e+01 8.452784e+01 moveto +6.978127e+01 8.26848e+01 lineto +6.742194e+01 8.266269e+01 lineto +6.720485e+01 8.450771e+01 lineto +6.93527e+01 8.452784e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.889118e+01 8.60792e+01 moveto +6.93527e+01 8.452784e+01 lineto +6.720485e+01 8.450771e+01 lineto +6.697107e+01 8.606121e+01 lineto +6.889118e+01 8.60792e+01 lineto +closepath +gsave +4.906297e-01 4.906297e-01 4.906297e-01 setrgbcolor +fill +grestore +newpath +6.889118e+01 8.60792e+01 moveto +6.93527e+01 8.452784e+01 lineto +6.720485e+01 8.450771e+01 lineto +6.697107e+01 8.606121e+01 lineto +6.889118e+01 8.60792e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.84002e+01 8.732714e+01 moveto +6.889118e+01 8.60792e+01 lineto +6.697107e+01 8.606121e+01 lineto +6.672237e+01 8.731142e+01 lineto +6.84002e+01 8.732714e+01 lineto +closepath +gsave +4.771248e-01 4.771248e-01 4.771248e-01 setrgbcolor +fill +grestore +newpath +6.84002e+01 8.732714e+01 moveto +6.889118e+01 8.60792e+01 lineto +6.697107e+01 8.606121e+01 lineto +6.672237e+01 8.731142e+01 lineto +6.84002e+01 8.732714e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.788348e+01 8.826222e+01 moveto +6.84002e+01 8.732714e+01 lineto +6.672237e+01 8.731142e+01 lineto +6.646062e+01 8.824889e+01 lineto +6.788348e+01 8.826222e+01 lineto +closepath +gsave +4.648212e-01 4.648212e-01 4.648212e-01 setrgbcolor +fill +grestore +newpath +6.788348e+01 8.826222e+01 moveto +6.84002e+01 8.732714e+01 lineto +6.672237e+01 8.731142e+01 lineto +6.646062e+01 8.824889e+01 lineto +6.788348e+01 8.826222e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.734493e+01 8.887736e+01 moveto +6.788348e+01 8.826222e+01 lineto +6.646062e+01 8.824889e+01 lineto +6.618782e+01 8.886652e+01 lineto +6.734493e+01 8.887736e+01 lineto +closepath +gsave +4.537921e-01 4.537921e-01 4.537921e-01 setrgbcolor +fill +grestore +newpath +6.734493e+01 8.887736e+01 moveto +6.788348e+01 8.826222e+01 lineto +6.646062e+01 8.824889e+01 lineto +6.618782e+01 8.886652e+01 lineto +6.734493e+01 8.887736e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.678863e+01 8.91679e+01 moveto +6.734493e+01 8.887736e+01 lineto +6.618782e+01 8.886652e+01 lineto +6.590603e+01 8.915963e+01 lineto +6.678863e+01 8.91679e+01 lineto +closepath +gsave +4.440642e-01 4.440642e-01 4.440642e-01 setrgbcolor +fill +grestore +newpath +6.678863e+01 8.91679e+01 moveto +6.734493e+01 8.887736e+01 lineto +6.618782e+01 8.886652e+01 lineto +6.590603e+01 8.915963e+01 lineto +6.678863e+01 8.91679e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.389115e+01 8.5761e+01 moveto +6.447148e+01 8.707713e+01 lineto +6.473228e+01 8.707957e+01 lineto +6.443831e+01 8.576613e+01 lineto +6.389115e+01 8.5761e+01 lineto +closepath +gsave +5.247662e-01 5.247662e-01 5.247662e-01 setrgbcolor +fill +grestore +newpath +6.389115e+01 8.5761e+01 moveto +6.447148e+01 8.707713e+01 lineto +6.473228e+01 8.707957e+01 lineto +6.443831e+01 8.576613e+01 lineto +6.389115e+01 8.5761e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.331921e+01 8.414388e+01 moveto +6.389115e+01 8.5761e+01 lineto +6.443831e+01 8.576613e+01 lineto +6.41486e+01 8.415165e+01 lineto +6.331921e+01 8.414388e+01 lineto +closepath +gsave +5.410963e-01 5.410963e-01 5.410963e-01 setrgbcolor +fill +grestore +newpath +6.331921e+01 8.414388e+01 moveto +6.389115e+01 8.5761e+01 lineto +6.443831e+01 8.576613e+01 lineto +6.41486e+01 8.415165e+01 lineto +6.331921e+01 8.414388e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.276e+01 8.223798e+01 moveto +6.331921e+01 8.414388e+01 lineto +6.41486e+01 8.415165e+01 lineto +6.386533e+01 8.224834e+01 lineto +6.276e+01 8.223798e+01 lineto +closepath +gsave +5.577787e-01 5.577787e-01 5.577787e-01 setrgbcolor +fill +grestore +newpath +6.276e+01 8.223798e+01 moveto +6.331921e+01 8.414388e+01 lineto +6.41486e+01 8.415165e+01 lineto +6.386533e+01 8.224834e+01 lineto +6.276e+01 8.223798e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.52959e+01 5.032491e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.500583e+01 5.024405e+00 lineto +6.52959e+01 5.032491e+00 lineto +closepath +gsave +5.110732e-01 5.110732e-01 5.110732e-01 setrgbcolor +fill +grestore +newpath +6.52959e+01 5.032491e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.500583e+01 5.024405e+00 lineto +6.52959e+01 5.032491e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.558955e+01 6.375124e+00 moveto +6.52959e+01 5.032491e+00 lineto +6.500583e+01 5.024405e+00 lineto +6.501161e+01 6.359012e+00 lineto +6.558955e+01 6.375124e+00 lineto +closepath +gsave +5.280885e-01 5.280885e-01 5.280885e-01 setrgbcolor +fill +grestore +newpath +6.558955e+01 6.375124e+00 moveto +6.52959e+01 5.032491e+00 lineto +6.500583e+01 5.024405e+00 lineto +6.501161e+01 6.359012e+00 lineto +6.558955e+01 6.375124e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.587874e+01 8.017735e+00 moveto +6.558955e+01 6.375124e+00 lineto +6.501161e+01 6.359012e+00 lineto +6.50173e+01 7.99372e+00 lineto +6.587874e+01 8.017735e+00 lineto +closepath +gsave +5.459008e-01 5.459008e-01 5.459008e-01 setrgbcolor +fill +grestore +newpath +6.587874e+01 8.017735e+00 moveto +6.558955e+01 6.375124e+00 lineto +6.501161e+01 6.359012e+00 lineto +6.50173e+01 7.99372e+00 lineto +6.587874e+01 8.017735e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.616128e+01 9.947889e+00 moveto +6.587874e+01 8.017735e+00 lineto +6.50173e+01 7.99372e+00 lineto +6.502286e+01 9.916152e+00 lineto +6.616128e+01 9.947889e+00 lineto +closepath +gsave +5.64211e-01 5.64211e-01 5.64211e-01 setrgbcolor +fill +grestore +newpath +6.616128e+01 9.947889e+00 moveto +6.587874e+01 8.017735e+00 lineto +6.50173e+01 7.99372e+00 lineto +6.502286e+01 9.916152e+00 lineto +6.616128e+01 9.947889e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.643503e+01 1.215097e+01 moveto +6.616128e+01 9.947889e+00 lineto +6.502286e+01 9.916152e+00 lineto +6.502825e+01 1.211175e+01 lineto +6.643503e+01 1.215097e+01 lineto +closepath +gsave +5.826758e-01 5.826758e-01 5.826758e-01 setrgbcolor +fill +grestore +newpath +6.643503e+01 1.215097e+01 moveto +6.616128e+01 9.947889e+00 lineto +6.502286e+01 9.916152e+00 lineto +6.502825e+01 1.211175e+01 lineto +6.643503e+01 1.215097e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.669792e+01 1.461031e+01 moveto +6.643503e+01 1.215097e+01 lineto +6.502825e+01 1.211175e+01 lineto +6.503343e+01 1.456391e+01 lineto +6.669792e+01 1.461031e+01 lineto +closepath +gsave +6.009174e-01 6.009174e-01 6.009174e-01 setrgbcolor +fill +grestore +newpath +6.669792e+01 1.461031e+01 moveto +6.643503e+01 1.215097e+01 lineto +6.502825e+01 1.211175e+01 lineto +6.503343e+01 1.456391e+01 lineto +6.669792e+01 1.461031e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.694795e+01 1.730728e+01 moveto +6.669792e+01 1.461031e+01 lineto +6.503343e+01 1.456391e+01 lineto +6.503835e+01 1.725404e+01 lineto +6.694795e+01 1.730728e+01 lineto +closepath +gsave +6.185356e-01 6.185356e-01 6.185356e-01 setrgbcolor +fill +grestore +newpath +6.694795e+01 1.730728e+01 moveto +6.669792e+01 1.461031e+01 lineto +6.503343e+01 1.456391e+01 lineto +6.503835e+01 1.725404e+01 lineto +6.694795e+01 1.730728e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.718323e+01 2.022146e+01 moveto +6.694795e+01 1.730728e+01 lineto +6.503835e+01 1.725404e+01 lineto +6.504298e+01 2.01618e+01 lineto +6.718323e+01 2.022146e+01 lineto +closepath +gsave +6.351215e-01 6.351215e-01 6.351215e-01 setrgbcolor +fill +grestore +newpath +6.718323e+01 2.022146e+01 moveto +6.694795e+01 1.730728e+01 lineto +6.503835e+01 1.725404e+01 lineto +6.504298e+01 2.01618e+01 lineto +6.718323e+01 2.022146e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.740199e+01 2.33308e+01 moveto +6.718323e+01 2.022146e+01 lineto +6.504298e+01 2.01618e+01 lineto +6.504729e+01 2.326516e+01 lineto +6.740199e+01 2.33308e+01 lineto +closepath +gsave +6.502722e-01 6.502722e-01 6.502722e-01 setrgbcolor +fill +grestore +newpath +6.740199e+01 2.33308e+01 moveto +6.718323e+01 2.022146e+01 lineto +6.504298e+01 2.01618e+01 lineto +6.504729e+01 2.326516e+01 lineto +6.740199e+01 2.33308e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.760256e+01 2.661176e+01 moveto +6.740199e+01 2.33308e+01 lineto +6.504729e+01 2.326516e+01 lineto +6.505124e+01 2.654063e+01 lineto +6.760256e+01 2.661176e+01 lineto +closepath +gsave +6.636059e-01 6.636059e-01 6.636059e-01 setrgbcolor +fill +grestore +newpath +6.760256e+01 2.661176e+01 moveto +6.740199e+01 2.33308e+01 lineto +6.504729e+01 2.326516e+01 lineto +6.505124e+01 2.654063e+01 lineto +6.760256e+01 2.661176e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.778343e+01 3.003949e+01 moveto +6.760256e+01 2.661176e+01 lineto +6.505124e+01 2.654063e+01 lineto +6.50548e+01 2.996343e+01 lineto +6.778343e+01 3.003949e+01 lineto +closepath +gsave +6.747768e-01 6.747768e-01 6.747768e-01 setrgbcolor +fill +grestore +newpath +6.778343e+01 3.003949e+01 moveto +6.760256e+01 2.661176e+01 lineto +6.505124e+01 2.654063e+01 lineto +6.50548e+01 2.996343e+01 lineto +6.778343e+01 3.003949e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.794323e+01 3.358806e+01 moveto +6.778343e+01 3.003949e+01 lineto +6.50548e+01 2.996343e+01 lineto +6.505795e+01 3.350762e+01 lineto +6.794323e+01 3.358806e+01 lineto +closepath +gsave +6.834887e-01 6.834887e-01 6.834887e-01 setrgbcolor +fill +grestore +newpath +6.794323e+01 3.358806e+01 moveto +6.778343e+01 3.003949e+01 lineto +6.50548e+01 2.996343e+01 lineto +6.505795e+01 3.350762e+01 lineto +6.794323e+01 3.358806e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.808075e+01 3.723058e+01 moveto +6.794323e+01 3.358806e+01 lineto +6.505795e+01 3.350762e+01 lineto +6.506065e+01 3.714639e+01 lineto +6.808075e+01 3.723058e+01 lineto +closepath +gsave +6.895066e-01 6.895066e-01 6.895066e-01 setrgbcolor +fill +grestore +newpath +6.808075e+01 3.723058e+01 moveto +6.794323e+01 3.358806e+01 lineto +6.505795e+01 3.350762e+01 lineto +6.506065e+01 3.714639e+01 lineto +6.808075e+01 3.723058e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.819494e+01 4.09395e+01 moveto +6.808075e+01 3.723058e+01 lineto +6.506065e+01 3.714639e+01 lineto +6.50629e+01 4.085218e+01 lineto +6.819494e+01 4.09395e+01 lineto +closepath +gsave +6.926668e-01 6.926668e-01 6.926668e-01 setrgbcolor +fill +grestore +newpath +6.819494e+01 4.09395e+01 moveto +6.808075e+01 3.723058e+01 lineto +6.506065e+01 3.714639e+01 lineto +6.50629e+01 4.085218e+01 lineto +6.819494e+01 4.09395e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.828495e+01 4.468672e+01 moveto +6.819494e+01 4.09395e+01 lineto +6.50629e+01 4.085218e+01 lineto +6.506467e+01 4.459695e+01 lineto +6.828495e+01 4.468672e+01 lineto +closepath +gsave +6.928828e-01 6.928828e-01 6.928828e-01 setrgbcolor +fill +grestore +newpath +6.828495e+01 4.468672e+01 moveto +6.819494e+01 4.09395e+01 lineto +6.50629e+01 4.085218e+01 lineto +6.506467e+01 4.459695e+01 lineto +6.828495e+01 4.468672e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.835008e+01 4.844389e+01 moveto +6.828495e+01 4.468672e+01 lineto +6.506467e+01 4.459695e+01 lineto +6.506596e+01 4.835233e+01 lineto +6.835008e+01 4.844389e+01 lineto +closepath +gsave +6.901494e-01 6.901494e-01 6.901494e-01 setrgbcolor +fill +grestore +newpath +6.835008e+01 4.844389e+01 moveto +6.828495e+01 4.468672e+01 lineto +6.506467e+01 4.459695e+01 lineto +6.506596e+01 4.835233e+01 lineto +6.835008e+01 4.844389e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.838986e+01 5.218255e+01 moveto +6.835008e+01 4.844389e+01 lineto +6.506596e+01 4.835233e+01 lineto +6.506674e+01 5.208991e+01 lineto +6.838986e+01 5.218255e+01 lineto +closepath +gsave +6.845428e-01 6.845428e-01 6.845428e-01 setrgbcolor +fill +grestore +newpath +6.838986e+01 5.218255e+01 moveto +6.835008e+01 4.844389e+01 lineto +6.506596e+01 4.835233e+01 lineto +6.506674e+01 5.208991e+01 lineto +6.838986e+01 5.218255e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.840397e+01 5.587441e+01 moveto +6.838986e+01 5.218255e+01 lineto +6.506674e+01 5.208991e+01 lineto +6.506702e+01 5.578139e+01 lineto +6.840397e+01 5.587441e+01 lineto +closepath +gsave +6.762168e-01 6.762168e-01 6.762168e-01 setrgbcolor +fill +grestore +newpath +6.840397e+01 5.587441e+01 moveto +6.838986e+01 5.218255e+01 lineto +6.506674e+01 5.208991e+01 lineto +6.506702e+01 5.578139e+01 lineto +6.840397e+01 5.587441e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.839232e+01 5.949152e+01 moveto +6.840397e+01 5.587441e+01 lineto +6.506702e+01 5.578139e+01 lineto +6.506679e+01 5.939881e+01 lineto +6.839232e+01 5.949152e+01 lineto +closepath +gsave +6.653973e-01 6.653973e-01 6.653973e-01 setrgbcolor +fill +grestore +newpath +6.839232e+01 5.949152e+01 moveto +6.840397e+01 5.587441e+01 lineto +6.506702e+01 5.578139e+01 lineto +6.506679e+01 5.939881e+01 lineto +6.839232e+01 5.949152e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.835498e+01 6.300649e+01 moveto +6.839232e+01 5.949152e+01 lineto +6.506679e+01 5.939881e+01 lineto +6.506605e+01 6.29148e+01 lineto +6.835498e+01 6.300649e+01 lineto +closepath +gsave +6.523723e-01 6.523723e-01 6.523723e-01 setrgbcolor +fill +grestore +newpath +6.835498e+01 6.300649e+01 moveto +6.839232e+01 5.949152e+01 lineto +6.506679e+01 5.939881e+01 lineto +6.506605e+01 6.29148e+01 lineto +6.835498e+01 6.300649e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.829224e+01 6.639271e+01 moveto +6.835498e+01 6.300649e+01 lineto +6.506605e+01 6.29148e+01 lineto +6.506482e+01 6.630274e+01 lineto +6.829224e+01 6.639271e+01 lineto +closepath +gsave +6.374808e-01 6.374808e-01 6.374808e-01 setrgbcolor +fill +grestore +newpath +6.829224e+01 6.639271e+01 moveto +6.835498e+01 6.300649e+01 lineto +6.506605e+01 6.29148e+01 lineto +6.506482e+01 6.630274e+01 lineto +6.829224e+01 6.639271e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.820458e+01 6.962456e+01 moveto +6.829224e+01 6.639271e+01 lineto +6.506482e+01 6.630274e+01 lineto +6.506309e+01 6.953698e+01 lineto +6.820458e+01 6.962456e+01 lineto +closepath +gsave +6.210993e-01 6.210993e-01 6.210993e-01 setrgbcolor +fill +grestore +newpath +6.820458e+01 6.962456e+01 moveto +6.829224e+01 6.639271e+01 lineto +6.506482e+01 6.630274e+01 lineto +6.506309e+01 6.953698e+01 lineto +6.820458e+01 6.962456e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.809266e+01 7.267755e+01 moveto +6.820458e+01 6.962456e+01 lineto +6.506309e+01 6.953698e+01 lineto +6.506089e+01 7.259303e+01 lineto +6.809266e+01 7.267755e+01 lineto +closepath +gsave +6.036271e-01 6.036271e-01 6.036271e-01 setrgbcolor +fill +grestore +newpath +6.809266e+01 7.267755e+01 moveto +6.820458e+01 6.962456e+01 lineto +6.506309e+01 6.953698e+01 lineto +6.506089e+01 7.259303e+01 lineto +6.809266e+01 7.267755e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.795733e+01 7.552858e+01 moveto +6.809266e+01 7.267755e+01 lineto +6.506089e+01 7.259303e+01 lineto +6.505822e+01 7.544776e+01 lineto +6.795733e+01 7.552858e+01 lineto +closepath +gsave +5.854717e-01 5.854717e-01 5.854717e-01 setrgbcolor +fill +grestore +newpath +6.795733e+01 7.552858e+01 moveto +6.809266e+01 7.267755e+01 lineto +6.506089e+01 7.259303e+01 lineto +6.505822e+01 7.544776e+01 lineto +6.795733e+01 7.552858e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.779961e+01 7.815607e+01 moveto +6.795733e+01 7.552858e+01 lineto +6.505822e+01 7.544776e+01 lineto +6.505512e+01 7.807956e+01 lineto +6.779961e+01 7.815607e+01 lineto +closepath +gsave +5.670337e-01 5.670337e-01 5.670337e-01 setrgbcolor +fill +grestore +newpath +6.779961e+01 7.815607e+01 moveto +6.795733e+01 7.552858e+01 lineto +6.505822e+01 7.544776e+01 lineto +6.505512e+01 7.807956e+01 lineto +6.779961e+01 7.815607e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.76207e+01 8.054012e+01 moveto +6.779961e+01 7.815607e+01 lineto +6.505512e+01 7.807956e+01 lineto +6.50516e+01 8.04685e+01 lineto +6.76207e+01 8.054012e+01 lineto +closepath +gsave +5.486935e-01 5.486935e-01 5.486935e-01 setrgbcolor +fill +grestore +newpath +6.76207e+01 8.054012e+01 moveto +6.779961e+01 7.815607e+01 lineto +6.505512e+01 7.807956e+01 lineto +6.50516e+01 8.04685e+01 lineto +6.76207e+01 8.054012e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.742194e+01 8.266269e+01 moveto +6.76207e+01 8.054012e+01 lineto +6.50516e+01 8.04685e+01 lineto +6.504768e+01 8.25965e+01 lineto +6.742194e+01 8.266269e+01 lineto +closepath +gsave +5.307991e-01 5.307991e-01 5.307991e-01 setrgbcolor +fill +grestore +newpath +6.742194e+01 8.266269e+01 moveto +6.76207e+01 8.054012e+01 lineto +6.50516e+01 8.04685e+01 lineto +6.504768e+01 8.25965e+01 lineto +6.742194e+01 8.266269e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.720485e+01 8.450771e+01 moveto +6.742194e+01 8.266269e+01 lineto +6.504768e+01 8.25965e+01 lineto +6.504341e+01 8.444745e+01 lineto +6.720485e+01 8.450771e+01 lineto +closepath +gsave +5.136557e-01 5.136557e-01 5.136557e-01 setrgbcolor +fill +grestore +newpath +6.720485e+01 8.450771e+01 moveto +6.742194e+01 8.266269e+01 lineto +6.504768e+01 8.25965e+01 lineto +6.504341e+01 8.444745e+01 lineto +6.720485e+01 8.450771e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.697107e+01 8.606121e+01 moveto +6.720485e+01 8.450771e+01 lineto +6.504341e+01 8.444745e+01 lineto +6.503881e+01 8.600734e+01 lineto +6.697107e+01 8.606121e+01 lineto +closepath +gsave +4.975185e-01 4.975185e-01 4.975185e-01 setrgbcolor +fill +grestore +newpath +6.697107e+01 8.606121e+01 moveto +6.720485e+01 8.450771e+01 lineto +6.504341e+01 8.444745e+01 lineto +6.503881e+01 8.600734e+01 lineto +6.697107e+01 8.606121e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.672237e+01 8.731142e+01 moveto +6.697107e+01 8.606121e+01 lineto +6.503881e+01 8.600734e+01 lineto +6.503391e+01 8.726435e+01 lineto +6.672237e+01 8.731142e+01 lineto +closepath +gsave +4.825877e-01 4.825877e-01 4.825877e-01 setrgbcolor +fill +grestore +newpath +6.672237e+01 8.731142e+01 moveto +6.697107e+01 8.606121e+01 lineto +6.503881e+01 8.600734e+01 lineto +6.503391e+01 8.726435e+01 lineto +6.672237e+01 8.731142e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.646062e+01 8.824889e+01 moveto +6.672237e+01 8.731142e+01 lineto +6.503391e+01 8.726435e+01 lineto +6.502876e+01 8.820897e+01 lineto +6.646062e+01 8.824889e+01 lineto +closepath +gsave +4.69006e-01 4.69006e-01 4.69006e-01 setrgbcolor +fill +grestore +newpath +6.646062e+01 8.824889e+01 moveto +6.672237e+01 8.731142e+01 lineto +6.503391e+01 8.726435e+01 lineto +6.502876e+01 8.820897e+01 lineto +6.646062e+01 8.824889e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.618782e+01 8.886652e+01 moveto +6.646062e+01 8.824889e+01 lineto +6.502876e+01 8.820897e+01 lineto +6.502339e+01 8.883405e+01 lineto +6.618782e+01 8.886652e+01 lineto +closepath +gsave +4.568598e-01 4.568598e-01 4.568598e-01 setrgbcolor +fill +grestore +newpath +6.618782e+01 8.886652e+01 moveto +6.646062e+01 8.824889e+01 lineto +6.502876e+01 8.820897e+01 lineto +6.502339e+01 8.883405e+01 lineto +6.618782e+01 8.886652e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.590603e+01 8.915963e+01 moveto +6.618782e+01 8.886652e+01 lineto +6.502339e+01 8.883405e+01 lineto +6.501784e+01 8.913486e+01 lineto +6.590603e+01 8.915963e+01 lineto +closepath +gsave +4.461815e-01 4.461815e-01 4.461815e-01 setrgbcolor +fill +grestore +newpath +6.590603e+01 8.915963e+01 moveto +6.618782e+01 8.886652e+01 lineto +6.502339e+01 8.883405e+01 lineto +6.501784e+01 8.913486e+01 lineto +6.590603e+01 8.915963e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.443831e+01 8.576613e+01 moveto +6.473228e+01 8.707957e+01 lineto +6.499473e+01 8.708689e+01 lineto +6.498894e+01 8.578148e+01 lineto +6.443831e+01 8.576613e+01 lineto +closepath +gsave +5.26426e-01 5.26426e-01 5.26426e-01 setrgbcolor +fill +grestore +newpath +6.443831e+01 8.576613e+01 moveto +6.473228e+01 8.707957e+01 lineto +6.499473e+01 8.708689e+01 lineto +6.498894e+01 8.578148e+01 lineto +6.443831e+01 8.576613e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.41486e+01 8.415165e+01 moveto +6.443831e+01 8.576613e+01 lineto +6.498894e+01 8.578148e+01 lineto +6.498324e+01 8.417492e+01 lineto +6.41486e+01 8.415165e+01 lineto +closepath +gsave +5.441744e-01 5.441744e-01 5.441744e-01 setrgbcolor +fill +grestore +newpath +6.41486e+01 8.415165e+01 moveto +6.443831e+01 8.576613e+01 lineto +6.498894e+01 8.578148e+01 lineto +6.498324e+01 8.417492e+01 lineto +6.41486e+01 8.415165e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.386533e+01 8.224834e+01 moveto +6.41486e+01 8.415165e+01 lineto +6.498324e+01 8.417492e+01 lineto +6.497766e+01 8.227935e+01 lineto +6.386533e+01 8.224834e+01 lineto +closepath +gsave +5.624513e-01 5.624513e-01 5.624513e-01 setrgbcolor +fill +grestore +newpath +6.386533e+01 8.224834e+01 moveto +6.41486e+01 8.415165e+01 lineto +6.498324e+01 8.417492e+01 lineto +6.497766e+01 8.227935e+01 lineto +6.386533e+01 8.224834e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.500583e+01 5.024405e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.471572e+01 5.010982e+00 lineto +6.500583e+01 5.024405e+00 lineto +closepath +gsave +5.115678e-01 5.115678e-01 5.115678e-01 setrgbcolor +fill +grestore +newpath +6.500583e+01 5.024405e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.471572e+01 5.010982e+00 lineto +6.500583e+01 5.024405e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.501161e+01 6.359012e+00 moveto +6.500583e+01 5.024405e+00 lineto +6.471572e+01 5.010982e+00 lineto +6.443359e+01 6.33227e+00 lineto +6.501161e+01 6.359012e+00 lineto +closepath +gsave +5.297203e-01 5.297203e-01 5.297203e-01 setrgbcolor +fill +grestore +newpath +6.501161e+01 6.359012e+00 moveto +6.500583e+01 5.024405e+00 lineto +6.471572e+01 5.010982e+00 lineto +6.443359e+01 6.33227e+00 lineto +6.501161e+01 6.359012e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.50173e+01 7.99372e+00 moveto +6.501161e+01 6.359012e+00 lineto +6.443359e+01 6.33227e+00 lineto +6.415575e+01 7.953859e+00 lineto +6.50173e+01 7.99372e+00 lineto +closepath +gsave +5.488593e-01 5.488593e-01 5.488593e-01 setrgbcolor +fill +grestore +newpath +6.50173e+01 7.99372e+00 moveto +6.501161e+01 6.359012e+00 lineto +6.443359e+01 6.33227e+00 lineto +6.415575e+01 7.953859e+00 lineto +6.50173e+01 7.99372e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.502286e+01 9.916152e+00 moveto +6.50173e+01 7.99372e+00 lineto +6.415575e+01 7.953859e+00 lineto +6.38843e+01 9.863474e+00 lineto +6.502286e+01 9.916152e+00 lineto +closepath +gsave +5.686685e-01 5.686685e-01 5.686685e-01 setrgbcolor +fill +grestore +newpath +6.502286e+01 9.916152e+00 moveto +6.50173e+01 7.99372e+00 lineto +6.415575e+01 7.953859e+00 lineto +6.38843e+01 9.863474e+00 lineto +6.502286e+01 9.916152e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.502825e+01 1.211175e+01 moveto +6.502286e+01 9.916152e+00 lineto +6.38843e+01 9.863474e+00 lineto +6.36213e+01 1.204666e+01 lineto +6.502825e+01 1.211175e+01 lineto +closepath +gsave +5.887786e-01 5.887786e-01 5.887786e-01 setrgbcolor +fill +grestore +newpath +6.502825e+01 1.211175e+01 moveto +6.502286e+01 9.916152e+00 lineto +6.38843e+01 9.863474e+00 lineto +6.36213e+01 1.204666e+01 lineto +6.502825e+01 1.211175e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.503343e+01 1.456391e+01 moveto +6.502825e+01 1.211175e+01 lineto +6.36213e+01 1.204666e+01 lineto +6.336873e+01 1.448689e+01 lineto +6.503343e+01 1.456391e+01 lineto +closepath +gsave +6.087781e-01 6.087781e-01 6.087781e-01 setrgbcolor +fill +grestore +newpath +6.503343e+01 1.456391e+01 moveto +6.502825e+01 1.211175e+01 lineto +6.36213e+01 1.204666e+01 lineto +6.336873e+01 1.448689e+01 lineto +6.503343e+01 1.456391e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.503835e+01 1.725404e+01 moveto +6.503343e+01 1.456391e+01 lineto +6.336873e+01 1.448689e+01 lineto +6.312852e+01 1.716568e+01 lineto +6.503835e+01 1.725404e+01 lineto +closepath +gsave +6.282263e-01 6.282263e-01 6.282263e-01 setrgbcolor +fill +grestore +newpath +6.503835e+01 1.725404e+01 moveto +6.503343e+01 1.456391e+01 lineto +6.336873e+01 1.448689e+01 lineto +6.312852e+01 1.716568e+01 lineto +6.503835e+01 1.725404e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.504298e+01 2.01618e+01 moveto +6.503835e+01 1.725404e+01 lineto +6.312852e+01 1.716568e+01 lineto +6.290247e+01 2.006276e+01 lineto +6.504298e+01 2.01618e+01 lineto +closepath +gsave +6.466678e-01 6.466678e-01 6.466678e-01 setrgbcolor +fill +grestore +newpath +6.504298e+01 2.01618e+01 moveto +6.503835e+01 1.725404e+01 lineto +6.312852e+01 1.716568e+01 lineto +6.290247e+01 2.006276e+01 lineto +6.504298e+01 2.01618e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.504729e+01 2.326516e+01 moveto +6.504298e+01 2.01618e+01 lineto +6.290247e+01 2.006276e+01 lineto +6.26923e+01 2.31562e+01 lineto +6.504729e+01 2.326516e+01 lineto +closepath +gsave +6.636501e-01 6.636501e-01 6.636501e-01 setrgbcolor +fill +grestore +newpath +6.504729e+01 2.326516e+01 moveto +6.504298e+01 2.01618e+01 lineto +6.290247e+01 2.006276e+01 lineto +6.26923e+01 2.31562e+01 lineto +6.504729e+01 2.326516e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.505124e+01 2.654063e+01 moveto +6.504729e+01 2.326516e+01 lineto +6.26923e+01 2.31562e+01 lineto +6.24996e+01 2.642258e+01 lineto +6.505124e+01 2.654063e+01 lineto +closepath +gsave +6.787394e-01 6.787394e-01 6.787394e-01 setrgbcolor +fill +grestore +newpath +6.505124e+01 2.654063e+01 moveto +6.504729e+01 2.326516e+01 lineto +6.26923e+01 2.31562e+01 lineto +6.24996e+01 2.642258e+01 lineto +6.505124e+01 2.654063e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.50548e+01 2.996343e+01 moveto +6.505124e+01 2.654063e+01 lineto +6.24996e+01 2.642258e+01 lineto +6.232583e+01 2.983717e+01 lineto +6.50548e+01 2.996343e+01 lineto +closepath +gsave +6.915389e-01 6.915389e-01 6.915389e-01 setrgbcolor +fill +grestore +newpath +6.50548e+01 2.996343e+01 moveto +6.505124e+01 2.654063e+01 lineto +6.24996e+01 2.642258e+01 lineto +6.232583e+01 2.983717e+01 lineto +6.50548e+01 2.996343e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.505795e+01 3.350762e+01 moveto +6.50548e+01 2.996343e+01 lineto +6.232583e+01 2.983717e+01 lineto +6.217231e+01 3.337411e+01 lineto +6.505795e+01 3.350762e+01 lineto +closepath +gsave +7.017033e-01 7.017033e-01 7.017033e-01 setrgbcolor +fill +grestore +newpath +6.505795e+01 3.350762e+01 moveto +6.50548e+01 2.996343e+01 lineto +6.232583e+01 2.983717e+01 lineto +6.217231e+01 3.337411e+01 lineto +6.505795e+01 3.350762e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.506065e+01 3.714639e+01 moveto +6.505795e+01 3.350762e+01 lineto +6.217231e+01 3.337411e+01 lineto +6.204019e+01 3.700664e+01 lineto +6.506065e+01 3.714639e+01 lineto +closepath +gsave +7.08954e-01 7.08954e-01 7.08954e-01 setrgbcolor +fill +grestore +newpath +6.506065e+01 3.714639e+01 moveto +6.505795e+01 3.350762e+01 lineto +6.217231e+01 3.337411e+01 lineto +6.204019e+01 3.700664e+01 lineto +6.506065e+01 3.714639e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.50629e+01 4.085218e+01 moveto +6.506065e+01 3.714639e+01 lineto +6.204019e+01 3.700664e+01 lineto +6.193048e+01 4.070726e+01 lineto +6.50629e+01 4.085218e+01 lineto +closepath +gsave +7.130897e-01 7.130897e-01 7.130897e-01 setrgbcolor +fill +grestore +newpath +6.50629e+01 4.085218e+01 moveto +6.506065e+01 3.714639e+01 lineto +6.204019e+01 3.700664e+01 lineto +6.193048e+01 4.070726e+01 lineto +6.50629e+01 4.085218e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.506467e+01 4.459695e+01 moveto +6.50629e+01 4.085218e+01 lineto +6.193048e+01 4.070726e+01 lineto +6.1844e+01 4.444794e+01 lineto +6.506467e+01 4.459695e+01 lineto +closepath +gsave +7.139951e-01 7.139951e-01 7.139951e-01 setrgbcolor +fill +grestore +newpath +6.506467e+01 4.459695e+01 moveto +6.50629e+01 4.085218e+01 lineto +6.193048e+01 4.070726e+01 lineto +6.1844e+01 4.444794e+01 lineto +6.506467e+01 4.459695e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.506596e+01 4.835233e+01 moveto +6.506467e+01 4.459695e+01 lineto +6.1844e+01 4.444794e+01 lineto +6.178142e+01 4.820037e+01 lineto +6.506596e+01 4.835233e+01 lineto +closepath +gsave +7.116454e-01 7.116454e-01 7.116454e-01 setrgbcolor +fill +grestore +newpath +6.506596e+01 4.835233e+01 moveto +6.506467e+01 4.459695e+01 lineto +6.1844e+01 4.444794e+01 lineto +6.178142e+01 4.820037e+01 lineto +6.506596e+01 4.835233e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.506674e+01 5.208991e+01 moveto +6.506596e+01 4.835233e+01 lineto +6.178142e+01 4.820037e+01 lineto +6.174321e+01 5.193614e+01 lineto +6.506674e+01 5.208991e+01 lineto +closepath +gsave +7.061075e-01 7.061075e-01 7.061075e-01 setrgbcolor +fill +grestore +newpath +6.506674e+01 5.208991e+01 moveto +6.506596e+01 4.835233e+01 lineto +6.178142e+01 4.820037e+01 lineto +6.174321e+01 5.193614e+01 lineto +6.506674e+01 5.208991e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.506702e+01 5.578139e+01 moveto +6.506674e+01 5.208991e+01 lineto +6.174321e+01 5.193614e+01 lineto +6.172965e+01 5.562698e+01 lineto +6.506702e+01 5.578139e+01 lineto +closepath +gsave +6.975369e-01 6.975369e-01 6.975369e-01 setrgbcolor +fill +grestore +newpath +6.506702e+01 5.578139e+01 moveto +6.506674e+01 5.208991e+01 lineto +6.174321e+01 5.193614e+01 lineto +6.172965e+01 5.562698e+01 lineto +6.506702e+01 5.578139e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.506679e+01 5.939881e+01 moveto +6.506702e+01 5.578139e+01 lineto +6.172965e+01 5.562698e+01 lineto +6.174085e+01 5.924493e+01 lineto +6.506679e+01 5.939881e+01 lineto +closepath +gsave +6.861716e-01 6.861716e-01 6.861716e-01 setrgbcolor +fill +grestore +newpath +6.506679e+01 5.939881e+01 moveto +6.506702e+01 5.578139e+01 lineto +6.172965e+01 5.562698e+01 lineto +6.174085e+01 5.924493e+01 lineto +6.506679e+01 5.939881e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.506605e+01 6.29148e+01 moveto +6.506679e+01 5.939881e+01 lineto +6.174085e+01 5.924493e+01 lineto +6.177672e+01 6.276262e+01 lineto +6.506605e+01 6.29148e+01 lineto +closepath +gsave +6.723214e-01 6.723214e-01 6.723214e-01 setrgbcolor +fill +grestore +newpath +6.506605e+01 6.29148e+01 moveto +6.506679e+01 5.939881e+01 lineto +6.174085e+01 5.924493e+01 lineto +6.177672e+01 6.276262e+01 lineto +6.506605e+01 6.29148e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.506482e+01 6.630274e+01 moveto +6.506605e+01 6.29148e+01 lineto +6.177672e+01 6.276262e+01 lineto +6.183699e+01 6.61534e+01 lineto +6.506482e+01 6.630274e+01 lineto +closepath +gsave +6.563562e-01 6.563562e-01 6.563562e-01 setrgbcolor +fill +grestore +newpath +6.506482e+01 6.630274e+01 moveto +6.506605e+01 6.29148e+01 lineto +6.177672e+01 6.276262e+01 lineto +6.183699e+01 6.61534e+01 lineto +6.506482e+01 6.630274e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.506309e+01 6.953698e+01 moveto +6.506482e+01 6.630274e+01 lineto +6.183699e+01 6.61534e+01 lineto +6.192121e+01 6.939161e+01 lineto +6.506309e+01 6.953698e+01 lineto +closepath +gsave +6.386902e-01 6.386902e-01 6.386902e-01 setrgbcolor +fill +grestore +newpath +6.506309e+01 6.953698e+01 moveto +6.506482e+01 6.630274e+01 lineto +6.183699e+01 6.61534e+01 lineto +6.192121e+01 6.939161e+01 lineto +6.506309e+01 6.953698e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.506089e+01 7.259303e+01 moveto +6.506309e+01 6.953698e+01 lineto +6.192121e+01 6.939161e+01 lineto +6.202874e+01 7.245274e+01 lineto +6.506089e+01 7.259303e+01 lineto +closepath +gsave +6.197662e-01 6.197662e-01 6.197662e-01 setrgbcolor +fill +grestore +newpath +6.506089e+01 7.259303e+01 moveto +6.506309e+01 6.953698e+01 lineto +6.192121e+01 6.939161e+01 lineto +6.202874e+01 7.245274e+01 lineto +6.506089e+01 7.259303e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.505822e+01 7.544776e+01 moveto +6.506089e+01 7.259303e+01 lineto +6.202874e+01 7.245274e+01 lineto +6.215876e+01 7.531361e+01 lineto +6.505822e+01 7.544776e+01 lineto +closepath +gsave +6.000386e-01 6.000386e-01 6.000386e-01 setrgbcolor +fill +grestore +newpath +6.505822e+01 7.544776e+01 moveto +6.506089e+01 7.259303e+01 lineto +6.202874e+01 7.245274e+01 lineto +6.215876e+01 7.531361e+01 lineto +6.505822e+01 7.544776e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.505512e+01 7.807956e+01 moveto +6.505822e+01 7.544776e+01 lineto +6.215876e+01 7.531361e+01 lineto +6.231029e+01 7.795257e+01 lineto +6.505512e+01 7.807956e+01 lineto +closepath +gsave +5.799564e-01 5.799564e-01 5.799564e-01 setrgbcolor +fill +grestore +newpath +6.505512e+01 7.807956e+01 moveto +6.505822e+01 7.544776e+01 lineto +6.215876e+01 7.531361e+01 lineto +6.231029e+01 7.795257e+01 lineto +6.505512e+01 7.807956e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.50516e+01 8.04685e+01 moveto +6.505512e+01 7.807956e+01 lineto +6.231029e+01 7.795257e+01 lineto +6.248218e+01 8.034962e+01 lineto +6.50516e+01 8.04685e+01 lineto +closepath +gsave +5.599476e-01 5.599476e-01 5.599476e-01 setrgbcolor +fill +grestore +newpath +6.50516e+01 8.04685e+01 moveto +6.505512e+01 7.807956e+01 lineto +6.231029e+01 7.795257e+01 lineto +6.248218e+01 8.034962e+01 lineto +6.50516e+01 8.04685e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.504768e+01 8.25965e+01 moveto +6.50516e+01 8.04685e+01 lineto +6.248218e+01 8.034962e+01 lineto +6.267313e+01 8.248664e+01 lineto +6.504768e+01 8.25965e+01 lineto +closepath +gsave +5.40405e-01 5.40405e-01 5.40405e-01 setrgbcolor +fill +grestore +newpath +6.504768e+01 8.25965e+01 moveto +6.50516e+01 8.04685e+01 lineto +6.248218e+01 8.034962e+01 lineto +6.267313e+01 8.248664e+01 lineto +6.504768e+01 8.25965e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.504341e+01 8.444745e+01 moveto +6.504768e+01 8.25965e+01 lineto +6.267313e+01 8.248664e+01 lineto +6.28817e+01 8.434744e+01 lineto +6.504341e+01 8.444745e+01 lineto +closepath +gsave +5.216747e-01 5.216747e-01 5.216747e-01 setrgbcolor +fill +grestore +newpath +6.504341e+01 8.444745e+01 moveto +6.504768e+01 8.25965e+01 lineto +6.267313e+01 8.248664e+01 lineto +6.28817e+01 8.434744e+01 lineto +6.504341e+01 8.444745e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.503881e+01 8.600734e+01 moveto +6.504341e+01 8.444745e+01 lineto +6.28817e+01 8.434744e+01 lineto +6.31063e+01 8.591793e+01 lineto +6.503881e+01 8.600734e+01 lineto +closepath +gsave +5.040466e-01 5.040466e-01 5.040466e-01 setrgbcolor +fill +grestore +newpath +6.503881e+01 8.600734e+01 moveto +6.504341e+01 8.444745e+01 lineto +6.28817e+01 8.434744e+01 lineto +6.31063e+01 8.591793e+01 lineto +6.503881e+01 8.600734e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.503391e+01 8.726435e+01 moveto +6.503881e+01 8.600734e+01 lineto +6.31063e+01 8.591793e+01 lineto +6.334525e+01 8.718622e+01 lineto +6.503391e+01 8.726435e+01 lineto +closepath +gsave +4.877491e-01 4.877491e-01 4.877491e-01 setrgbcolor +fill +grestore +newpath +6.503391e+01 8.726435e+01 moveto +6.503881e+01 8.600734e+01 lineto +6.31063e+01 8.591793e+01 lineto +6.334525e+01 8.718622e+01 lineto +6.503391e+01 8.726435e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.502876e+01 8.820897e+01 moveto +6.503391e+01 8.726435e+01 lineto +6.334525e+01 8.718622e+01 lineto +6.359671e+01 8.814272e+01 lineto +6.502876e+01 8.820897e+01 lineto +closepath +gsave +4.729454e-01 4.729454e-01 4.729454e-01 setrgbcolor +fill +grestore +newpath +6.502876e+01 8.820897e+01 moveto +6.503391e+01 8.726435e+01 lineto +6.334525e+01 8.718622e+01 lineto +6.359671e+01 8.814272e+01 lineto +6.502876e+01 8.820897e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.502339e+01 8.883405e+01 moveto +6.502876e+01 8.820897e+01 lineto +6.359671e+01 8.814272e+01 lineto +6.385881e+01 8.878017e+01 lineto +6.502339e+01 8.883405e+01 lineto +closepath +gsave +4.597348e-01 4.597348e-01 4.597348e-01 setrgbcolor +fill +grestore +newpath +6.502339e+01 8.883405e+01 moveto +6.502876e+01 8.820897e+01 lineto +6.359671e+01 8.814272e+01 lineto +6.385881e+01 8.878017e+01 lineto +6.502339e+01 8.883405e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.501784e+01 8.913486e+01 moveto +6.502339e+01 8.883405e+01 lineto +6.385881e+01 8.878017e+01 lineto +6.412954e+01 8.909377e+01 lineto +6.501784e+01 8.913486e+01 lineto +closepath +gsave +4.481553e-01 4.481553e-01 4.481553e-01 setrgbcolor +fill +grestore +newpath +6.501784e+01 8.913486e+01 moveto +6.502339e+01 8.883405e+01 lineto +6.385881e+01 8.878017e+01 lineto +6.412954e+01 8.909377e+01 lineto +6.501784e+01 8.913486e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.498894e+01 8.578148e+01 moveto +6.499473e+01 8.708689e+01 lineto +6.525721e+01 8.709903e+01 lineto +6.553964e+01 8.580696e+01 lineto +6.498894e+01 8.578148e+01 lineto +closepath +gsave +5.279409e-01 5.279409e-01 5.279409e-01 setrgbcolor +fill +grestore +newpath +6.498894e+01 8.578148e+01 moveto +6.499473e+01 8.708689e+01 lineto +6.525721e+01 8.709903e+01 lineto +6.553964e+01 8.580696e+01 lineto +6.498894e+01 8.578148e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.498324e+01 8.417492e+01 moveto +6.498894e+01 8.578148e+01 lineto +6.553964e+01 8.580696e+01 lineto +6.581798e+01 8.421354e+01 lineto +6.498324e+01 8.417492e+01 lineto +closepath +gsave +5.469985e-01 5.469985e-01 5.469985e-01 setrgbcolor +fill +grestore +newpath +6.498324e+01 8.417492e+01 moveto +6.498894e+01 8.578148e+01 lineto +6.553964e+01 8.580696e+01 lineto +6.581798e+01 8.421354e+01 lineto +6.498324e+01 8.417492e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.497766e+01 8.227935e+01 moveto +6.498324e+01 8.417492e+01 lineto +6.581798e+01 8.421354e+01 lineto +6.609013e+01 8.233082e+01 lineto +6.497766e+01 8.227935e+01 lineto +closepath +gsave +5.667589e-01 5.667589e-01 5.667589e-01 setrgbcolor +fill +grestore +newpath +6.497766e+01 8.227935e+01 moveto +6.498324e+01 8.417492e+01 lineto +6.581798e+01 8.421354e+01 lineto +6.609013e+01 8.233082e+01 lineto +6.497766e+01 8.227935e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.471572e+01 5.010982e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.442737e+01 4.992307e+00 lineto +6.471572e+01 5.010982e+00 lineto +closepath +gsave +5.120086e-01 5.120086e-01 5.120086e-01 setrgbcolor +fill +grestore +newpath +6.471572e+01 5.010982e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.442737e+01 4.992307e+00 lineto +6.471572e+01 5.010982e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.443359e+01 6.33227e+00 moveto +6.471572e+01 5.010982e+00 lineto +6.442737e+01 4.992307e+00 lineto +6.385907e+01 6.295061e+00 lineto +6.443359e+01 6.33227e+00 lineto +closepath +gsave +5.311824e-01 5.311824e-01 5.311824e-01 setrgbcolor +fill +grestore +newpath +6.443359e+01 6.33227e+00 moveto +6.471572e+01 5.010982e+00 lineto +6.442737e+01 4.992307e+00 lineto +6.385907e+01 6.295061e+00 lineto +6.443359e+01 6.33227e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.415575e+01 7.953859e+00 moveto +6.443359e+01 6.33227e+00 lineto +6.385907e+01 6.295061e+00 lineto +6.32994e+01 7.898398e+00 lineto +6.415575e+01 7.953859e+00 lineto +closepath +gsave +5.515226e-01 5.515226e-01 5.515226e-01 setrgbcolor +fill +grestore +newpath +6.415575e+01 7.953859e+00 moveto +6.443359e+01 6.33227e+00 lineto +6.385907e+01 6.295061e+00 lineto +6.32994e+01 7.898398e+00 lineto +6.415575e+01 7.953859e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.38843e+01 9.863474e+00 moveto +6.415575e+01 7.953859e+00 lineto +6.32994e+01 7.898398e+00 lineto +6.275262e+01 9.790182e+00 lineto +6.38843e+01 9.863474e+00 lineto +closepath +gsave +5.726979e-01 5.726979e-01 5.726979e-01 setrgbcolor +fill +grestore +newpath +6.38843e+01 9.863474e+00 moveto +6.415575e+01 7.953859e+00 lineto +6.32994e+01 7.898398e+00 lineto +6.275262e+01 9.790182e+00 lineto +6.38843e+01 9.863474e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.36213e+01 1.204666e+01 moveto +6.38843e+01 9.863474e+00 lineto +6.275262e+01 9.790182e+00 lineto +6.222284e+01 1.195609e+01 lineto +6.36213e+01 1.204666e+01 lineto +closepath +gsave +5.943163e-01 5.943163e-01 5.943163e-01 setrgbcolor +fill +grestore +newpath +6.36213e+01 1.204666e+01 moveto +6.38843e+01 9.863474e+00 lineto +6.275262e+01 9.790182e+00 lineto +6.222284e+01 1.195609e+01 lineto +6.36213e+01 1.204666e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.336873e+01 1.448689e+01 moveto +6.36213e+01 1.204666e+01 lineto +6.222284e+01 1.195609e+01 lineto +6.171409e+01 1.437972e+01 lineto +6.336873e+01 1.448689e+01 lineto +closepath +gsave +6.159356e-01 6.159356e-01 6.159356e-01 setrgbcolor +fill +grestore +newpath +6.336873e+01 1.448689e+01 moveto +6.36213e+01 1.204666e+01 lineto +6.222284e+01 1.195609e+01 lineto +6.171409e+01 1.437972e+01 lineto +6.336873e+01 1.448689e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.312852e+01 1.716568e+01 moveto +6.336873e+01 1.448689e+01 lineto +6.171409e+01 1.437972e+01 lineto +6.123022e+01 1.704274e+01 lineto +6.312852e+01 1.716568e+01 lineto +closepath +gsave +6.370775e-01 6.370775e-01 6.370775e-01 setrgbcolor +fill +grestore +newpath +6.312852e+01 1.716568e+01 moveto +6.336873e+01 1.448689e+01 lineto +6.171409e+01 1.437972e+01 lineto +6.123022e+01 1.704274e+01 lineto +6.312852e+01 1.716568e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.290247e+01 2.006276e+01 moveto +6.312852e+01 1.716568e+01 lineto +6.123022e+01 1.704274e+01 lineto +6.077489e+01 1.992497e+01 lineto +6.290247e+01 2.006276e+01 lineto +closepath +gsave +6.572438e-01 6.572438e-01 6.572438e-01 setrgbcolor +fill +grestore +newpath +6.290247e+01 2.006276e+01 moveto +6.312852e+01 1.716568e+01 lineto +6.123022e+01 1.704274e+01 lineto +6.077489e+01 1.992497e+01 lineto +6.290247e+01 2.006276e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.26923e+01 2.31562e+01 moveto +6.290247e+01 2.006276e+01 lineto +6.077489e+01 1.992497e+01 lineto +6.035154e+01 2.30046e+01 lineto +6.26923e+01 2.31562e+01 lineto +closepath +gsave +6.759351e-01 6.759351e-01 6.759351e-01 setrgbcolor +fill +grestore +newpath +6.26923e+01 2.31562e+01 moveto +6.290247e+01 2.006276e+01 lineto +6.077489e+01 1.992497e+01 lineto +6.035154e+01 2.30046e+01 lineto +6.26923e+01 2.31562e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.24996e+01 2.642258e+01 moveto +6.26923e+01 2.31562e+01 lineto +6.035154e+01 2.30046e+01 lineto +5.996338e+01 2.625832e+01 lineto +6.24996e+01 2.642258e+01 lineto +closepath +gsave +6.92669e-01 6.92669e-01 6.92669e-01 setrgbcolor +fill +grestore +newpath +6.24996e+01 2.642258e+01 moveto +6.26923e+01 2.31562e+01 lineto +6.035154e+01 2.30046e+01 lineto +5.996338e+01 2.625832e+01 lineto +6.24996e+01 2.642258e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.232583e+01 2.983717e+01 moveto +6.24996e+01 2.642258e+01 lineto +5.996338e+01 2.625832e+01 lineto +5.961335e+01 2.966149e+01 lineto +6.232583e+01 2.983717e+01 lineto +closepath +gsave +7.069997e-01 7.069997e-01 7.069997e-01 setrgbcolor +fill +grestore +newpath +6.232583e+01 2.983717e+01 moveto +6.24996e+01 2.642258e+01 lineto +5.996338e+01 2.625832e+01 lineto +5.961335e+01 2.966149e+01 lineto +6.232583e+01 2.983717e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.217231e+01 3.337411e+01 moveto +6.232583e+01 2.983717e+01 lineto +5.961335e+01 2.966149e+01 lineto +5.93041e+01 3.318835e+01 lineto +6.217231e+01 3.337411e+01 lineto +closepath +gsave +7.185358e-01 7.185358e-01 7.185358e-01 setrgbcolor +fill +grestore +newpath +6.217231e+01 3.337411e+01 moveto +6.232583e+01 2.983717e+01 lineto +5.961335e+01 2.966149e+01 lineto +5.93041e+01 3.318835e+01 lineto +6.217231e+01 3.337411e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.204019e+01 3.700664e+01 moveto +6.217231e+01 3.337411e+01 lineto +5.93041e+01 3.318835e+01 lineto +5.903797e+01 3.68122e+01 lineto +6.204019e+01 3.700664e+01 lineto +closepath +gsave +7.269561e-01 7.269561e-01 7.269561e-01 setrgbcolor +fill +grestore +newpath +6.204019e+01 3.700664e+01 moveto +6.217231e+01 3.337411e+01 lineto +5.93041e+01 3.318835e+01 lineto +5.903797e+01 3.68122e+01 lineto +6.204019e+01 3.700664e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.193048e+01 4.070726e+01 moveto +6.204019e+01 3.700664e+01 lineto +5.903797e+01 3.68122e+01 lineto +5.881698e+01 4.050561e+01 lineto +6.193048e+01 4.070726e+01 lineto +closepath +gsave +7.320233e-01 7.320233e-01 7.320233e-01 setrgbcolor +fill +grestore +newpath +6.193048e+01 4.070726e+01 moveto +6.204019e+01 3.700664e+01 lineto +5.903797e+01 3.68122e+01 lineto +5.881698e+01 4.050561e+01 lineto +6.193048e+01 4.070726e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.1844e+01 4.444794e+01 moveto +6.193048e+01 4.070726e+01 lineto +5.881698e+01 4.050561e+01 lineto +5.864279e+01 4.424061e+01 lineto +6.1844e+01 4.444794e+01 lineto +closepath +gsave +7.335937e-01 7.335937e-01 7.335937e-01 setrgbcolor +fill +grestore +newpath +6.1844e+01 4.444794e+01 moveto +6.193048e+01 4.070726e+01 lineto +5.881698e+01 4.050561e+01 lineto +5.864279e+01 4.424061e+01 lineto +6.1844e+01 4.444794e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.178142e+01 4.820037e+01 moveto +6.1844e+01 4.444794e+01 lineto +5.864279e+01 4.424061e+01 lineto +5.851673e+01 4.798893e+01 lineto +6.178142e+01 4.820037e+01 lineto +closepath +gsave +7.31623e-01 7.31623e-01 7.31623e-01 setrgbcolor +fill +grestore +newpath +6.178142e+01 4.820037e+01 moveto +6.1844e+01 4.444794e+01 lineto +5.864279e+01 4.424061e+01 lineto +5.851673e+01 4.798893e+01 lineto +6.178142e+01 4.820037e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.174321e+01 5.193614e+01 moveto +6.178142e+01 4.820037e+01 lineto +5.851673e+01 4.798893e+01 lineto +5.843976e+01 5.17222e+01 lineto +6.174321e+01 5.193614e+01 lineto +closepath +gsave +7.261685e-01 7.261685e-01 7.261685e-01 setrgbcolor +fill +grestore +newpath +6.174321e+01 5.193614e+01 moveto +6.178142e+01 4.820037e+01 lineto +5.851673e+01 4.798893e+01 lineto +5.843976e+01 5.17222e+01 lineto +6.174321e+01 5.193614e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.172965e+01 5.562698e+01 moveto +6.174321e+01 5.193614e+01 lineto +5.843976e+01 5.17222e+01 lineto +5.841244e+01 5.541214e+01 lineto +6.172965e+01 5.562698e+01 lineto +closepath +gsave +7.173863e-01 7.173863e-01 7.173863e-01 setrgbcolor +fill +grestore +newpath +6.172965e+01 5.562698e+01 moveto +6.174321e+01 5.193614e+01 lineto +5.843976e+01 5.17222e+01 lineto +5.841244e+01 5.541214e+01 lineto +6.172965e+01 5.562698e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.174085e+01 5.924493e+01 moveto +6.172965e+01 5.562698e+01 lineto +5.841244e+01 5.541214e+01 lineto +5.8435e+01 5.903083e+01 lineto +6.174085e+01 5.924493e+01 lineto +closepath +gsave +7.055248e-01 7.055248e-01 7.055248e-01 setrgbcolor +fill +grestore +newpath +6.174085e+01 5.924493e+01 moveto +6.172965e+01 5.562698e+01 lineto +5.841244e+01 5.541214e+01 lineto +5.8435e+01 5.903083e+01 lineto +6.174085e+01 5.924493e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.177672e+01 6.276262e+01 moveto +6.174085e+01 5.924493e+01 lineto +5.8435e+01 5.903083e+01 lineto +5.850726e+01 6.255087e+01 lineto +6.177672e+01 6.276262e+01 lineto +closepath +gsave +6.909141e-01 6.909141e-01 6.909141e-01 setrgbcolor +fill +grestore +newpath +6.177672e+01 6.276262e+01 moveto +6.174085e+01 5.924493e+01 lineto +5.8435e+01 5.903083e+01 lineto +5.850726e+01 6.255087e+01 lineto +6.177672e+01 6.276262e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.183699e+01 6.61534e+01 moveto +6.177672e+01 6.276262e+01 lineto +5.850726e+01 6.255087e+01 lineto +5.862867e+01 6.594561e+01 lineto +6.183699e+01 6.61534e+01 lineto +closepath +gsave +6.739524e-01 6.739524e-01 6.739524e-01 setrgbcolor +fill +grestore +newpath +6.183699e+01 6.61534e+01 moveto +6.177672e+01 6.276262e+01 lineto +5.850726e+01 6.255087e+01 lineto +5.862867e+01 6.594561e+01 lineto +6.183699e+01 6.61534e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.192121e+01 6.939161e+01 moveto +6.183699e+01 6.61534e+01 lineto +5.862867e+01 6.594561e+01 lineto +5.879831e+01 6.918936e+01 lineto +6.192121e+01 6.939161e+01 lineto +closepath +gsave +6.550897e-01 6.550897e-01 6.550897e-01 setrgbcolor +fill +grestore +newpath +6.192121e+01 6.939161e+01 moveto +6.183699e+01 6.61534e+01 lineto +5.862867e+01 6.594561e+01 lineto +5.879831e+01 6.918936e+01 lineto +6.192121e+01 6.939161e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.202874e+01 7.245274e+01 moveto +6.192121e+01 6.939161e+01 lineto +5.879831e+01 6.918936e+01 lineto +5.90149e+01 7.225755e+01 lineto +6.202874e+01 7.245274e+01 lineto +closepath +gsave +6.348097e-01 6.348097e-01 6.348097e-01 setrgbcolor +fill +grestore +newpath +6.202874e+01 7.245274e+01 moveto +6.192121e+01 6.939161e+01 lineto +5.879831e+01 6.918936e+01 lineto +5.90149e+01 7.225755e+01 lineto +6.202874e+01 7.245274e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.215876e+01 7.531361e+01 moveto +6.202874e+01 7.245274e+01 lineto +5.90149e+01 7.225755e+01 lineto +5.927681e+01 7.512697e+01 lineto +6.215876e+01 7.531361e+01 lineto +closepath +gsave +6.136112e-01 6.136112e-01 6.136112e-01 setrgbcolor +fill +grestore +newpath +6.215876e+01 7.531361e+01 moveto +6.202874e+01 7.245274e+01 lineto +5.90149e+01 7.225755e+01 lineto +5.927681e+01 7.512697e+01 lineto +6.215876e+01 7.531361e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.231029e+01 7.795257e+01 moveto +6.215876e+01 7.531361e+01 lineto +5.927681e+01 7.512697e+01 lineto +5.958204e+01 7.777587e+01 lineto +6.231029e+01 7.795257e+01 lineto +closepath +gsave +5.919889e-01 5.919889e-01 5.919889e-01 setrgbcolor +fill +grestore +newpath +6.231029e+01 7.795257e+01 moveto +6.215876e+01 7.531361e+01 lineto +5.927681e+01 7.512697e+01 lineto +5.958204e+01 7.777587e+01 lineto +6.231029e+01 7.795257e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.248218e+01 8.034962e+01 moveto +6.231029e+01 7.795257e+01 lineto +5.958204e+01 7.777587e+01 lineto +5.992828e+01 8.018422e+01 lineto +6.248218e+01 8.034962e+01 lineto +closepath +gsave +5.704163e-01 5.704163e-01 5.704163e-01 setrgbcolor +fill +grestore +newpath +6.248218e+01 8.034962e+01 moveto +6.231029e+01 7.795257e+01 lineto +5.958204e+01 7.777587e+01 lineto +5.992828e+01 8.018422e+01 lineto +6.248218e+01 8.034962e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.267313e+01 8.248664e+01 moveto +6.248218e+01 8.034962e+01 lineto +5.992828e+01 8.018422e+01 lineto +6.031293e+01 8.233378e+01 lineto +6.267313e+01 8.248664e+01 lineto +closepath +gsave +5.493291e-01 5.493291e-01 5.493291e-01 setrgbcolor +fill +grestore +newpath +6.267313e+01 8.248664e+01 moveto +6.248218e+01 8.034962e+01 lineto +5.992828e+01 8.018422e+01 lineto +6.031293e+01 8.233378e+01 lineto +6.267313e+01 8.248664e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.28817e+01 8.434744e+01 moveto +6.267313e+01 8.248664e+01 lineto +6.031293e+01 8.233378e+01 lineto +6.073305e+01 8.420828e+01 lineto +6.28817e+01 8.434744e+01 lineto +closepath +gsave +5.291121e-01 5.291121e-01 5.291121e-01 setrgbcolor +fill +grestore +newpath +6.28817e+01 8.434744e+01 moveto +6.267313e+01 8.248664e+01 lineto +6.031293e+01 8.233378e+01 lineto +6.073305e+01 8.420828e+01 lineto +6.28817e+01 8.434744e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.31063e+01 8.591793e+01 moveto +6.28817e+01 8.434744e+01 lineto +6.073305e+01 8.420828e+01 lineto +6.118548e+01 8.579353e+01 lineto +6.31063e+01 8.591793e+01 lineto +closepath +gsave +5.100888e-01 5.100888e-01 5.100888e-01 setrgbcolor +fill +grestore +newpath +6.31063e+01 8.591793e+01 moveto +6.28817e+01 8.434744e+01 lineto +6.073305e+01 8.420828e+01 lineto +6.118548e+01 8.579353e+01 lineto +6.31063e+01 8.591793e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.334525e+01 8.718622e+01 moveto +6.31063e+01 8.591793e+01 lineto +6.118548e+01 8.579353e+01 lineto +6.166678e+01 8.707752e+01 lineto +6.334525e+01 8.718622e+01 lineto +closepath +gsave +4.925139e-01 4.925139e-01 4.925139e-01 setrgbcolor +fill +grestore +newpath +6.334525e+01 8.718622e+01 moveto +6.31063e+01 8.591793e+01 lineto +6.118548e+01 8.579353e+01 lineto +6.166678e+01 8.707752e+01 lineto +6.334525e+01 8.718622e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.359671e+01 8.814272e+01 moveto +6.334525e+01 8.718622e+01 lineto +6.166678e+01 8.707752e+01 lineto +6.217332e+01 8.805053e+01 lineto +6.359671e+01 8.814272e+01 lineto +closepath +gsave +4.765707e-01 4.765707e-01 4.765707e-01 setrgbcolor +fill +grestore +newpath +6.359671e+01 8.814272e+01 moveto +6.334525e+01 8.718622e+01 lineto +6.166678e+01 8.707752e+01 lineto +6.217332e+01 8.805053e+01 lineto +6.359671e+01 8.814272e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.385881e+01 8.878017e+01 moveto +6.359671e+01 8.814272e+01 lineto +6.217332e+01 8.805053e+01 lineto +6.270126e+01 8.870521e+01 lineto +6.385881e+01 8.878017e+01 lineto +closepath +gsave +4.623705e-01 4.623705e-01 4.623705e-01 setrgbcolor +fill +grestore +newpath +6.385881e+01 8.878017e+01 moveto +6.359671e+01 8.814272e+01 lineto +6.217332e+01 8.805053e+01 lineto +6.270126e+01 8.870521e+01 lineto +6.385881e+01 8.878017e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.412954e+01 8.909377e+01 moveto +6.385881e+01 8.878017e+01 lineto +6.270126e+01 8.870521e+01 lineto +6.32466e+01 8.903658e+01 lineto +6.412954e+01 8.909377e+01 lineto +closepath +gsave +4.499564e-01 4.499564e-01 4.499564e-01 setrgbcolor +fill +grestore +newpath +6.412954e+01 8.909377e+01 moveto +6.385881e+01 8.878017e+01 lineto +6.270126e+01 8.870521e+01 lineto +6.32466e+01 8.903658e+01 lineto +6.412954e+01 8.909377e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.553964e+01 8.580696e+01 moveto +6.525721e+01 8.709903e+01 lineto +6.551811e+01 8.711593e+01 lineto +6.6087e+01 8.584241e+01 lineto +6.553964e+01 8.580696e+01 lineto +closepath +gsave +5.292976e-01 5.292976e-01 5.292976e-01 setrgbcolor +fill +grestore +newpath +6.553964e+01 8.580696e+01 moveto +6.525721e+01 8.709903e+01 lineto +6.551811e+01 8.711593e+01 lineto +6.6087e+01 8.584241e+01 lineto +6.553964e+01 8.580696e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.581798e+01 8.421354e+01 moveto +6.553964e+01 8.580696e+01 lineto +6.6087e+01 8.584241e+01 lineto +6.664767e+01 8.426727e+01 lineto +6.581798e+01 8.421354e+01 lineto +closepath +gsave +5.495397e-01 5.495397e-01 5.495397e-01 setrgbcolor +fill +grestore +newpath +6.581798e+01 8.421354e+01 moveto +6.553964e+01 8.580696e+01 lineto +6.6087e+01 8.584241e+01 lineto +6.664767e+01 8.426727e+01 lineto +6.581798e+01 8.421354e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.609013e+01 8.233082e+01 moveto +6.581798e+01 8.421354e+01 lineto +6.664767e+01 8.426727e+01 lineto +6.719587e+01 8.240243e+01 lineto +6.609013e+01 8.233082e+01 lineto +closepath +gsave +5.706514e-01 5.706514e-01 5.706514e-01 setrgbcolor +fill +grestore +newpath +6.609013e+01 8.233082e+01 moveto +6.581798e+01 8.421354e+01 lineto +6.664767e+01 8.426727e+01 lineto +6.719587e+01 8.240243e+01 lineto +6.609013e+01 8.233082e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.442737e+01 4.992307e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.414254e+01 4.968494e+00 lineto +6.442737e+01 4.992307e+00 lineto +closepath +gsave +5.123925e-01 5.123925e-01 5.123925e-01 setrgbcolor +fill +grestore +newpath +6.442737e+01 4.992307e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.414254e+01 4.968494e+00 lineto +6.442737e+01 4.992307e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.385907e+01 6.295061e+00 moveto +6.442737e+01 4.992307e+00 lineto +6.414254e+01 4.968494e+00 lineto +6.329158e+01 6.247616e+00 lineto +6.385907e+01 6.295061e+00 lineto +closepath +gsave +5.324617e-01 5.324617e-01 5.324617e-01 setrgbcolor +fill +grestore +newpath +6.385907e+01 6.295061e+00 moveto +6.442737e+01 4.992307e+00 lineto +6.414254e+01 4.968494e+00 lineto +6.329158e+01 6.247616e+00 lineto +6.385907e+01 6.295061e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.32994e+01 7.898398e+00 moveto +6.385907e+01 6.295061e+00 lineto +6.329158e+01 6.247616e+00 lineto +6.245354e+01 7.82768e+00 lineto +6.32994e+01 7.898398e+00 lineto +closepath +gsave +5.538622e-01 5.538622e-01 5.538622e-01 setrgbcolor +fill +grestore +newpath +6.32994e+01 7.898398e+00 moveto +6.385907e+01 6.295061e+00 lineto +6.329158e+01 6.247616e+00 lineto +6.245354e+01 7.82768e+00 lineto +6.32994e+01 7.898398e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.275262e+01 9.790182e+00 moveto +6.32994e+01 7.898398e+00 lineto +6.245354e+01 7.82768e+00 lineto +6.163479e+01 9.696725e+00 lineto +6.275262e+01 9.790182e+00 lineto +closepath +gsave +5.762507e-01 5.762507e-01 5.762507e-01 setrgbcolor +fill +grestore +newpath +6.275262e+01 9.790182e+00 moveto +6.32994e+01 7.898398e+00 lineto +6.245354e+01 7.82768e+00 lineto +6.163479e+01 9.696725e+00 lineto +6.275262e+01 9.790182e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.222284e+01 1.195609e+01 moveto +6.275262e+01 9.790182e+00 lineto +6.163479e+01 9.696725e+00 lineto +6.084151e+01 1.18406e+01 lineto +6.222284e+01 1.195609e+01 lineto +closepath +gsave +5.99215e-01 5.99215e-01 5.99215e-01 setrgbcolor +fill +grestore +newpath +6.222284e+01 1.195609e+01 moveto +6.275262e+01 9.790182e+00 lineto +6.163479e+01 9.696725e+00 lineto +6.084151e+01 1.18406e+01 lineto +6.222284e+01 1.195609e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.171409e+01 1.437972e+01 moveto +6.222284e+01 1.195609e+01 lineto +6.084151e+01 1.18406e+01 lineto +6.007971e+01 1.424308e+01 lineto +6.171409e+01 1.437972e+01 lineto +closepath +gsave +6.222859e-01 6.222859e-01 6.222859e-01 setrgbcolor +fill +grestore +newpath +6.171409e+01 1.437972e+01 moveto +6.222284e+01 1.195609e+01 lineto +6.084151e+01 1.18406e+01 lineto +6.007971e+01 1.424308e+01 lineto +6.171409e+01 1.437972e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.123022e+01 1.704274e+01 moveto +6.171409e+01 1.437972e+01 lineto +6.007971e+01 1.424308e+01 lineto +5.935517e+01 1.688597e+01 lineto +6.123022e+01 1.704274e+01 lineto +closepath +gsave +6.449515e-01 6.449515e-01 6.449515e-01 setrgbcolor +fill +grestore +newpath +6.123022e+01 1.704274e+01 moveto +6.171409e+01 1.437972e+01 lineto +6.007971e+01 1.424308e+01 lineto +5.935517e+01 1.688597e+01 lineto +6.123022e+01 1.704274e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.077489e+01 1.992497e+01 moveto +6.123022e+01 1.704274e+01 lineto +5.935517e+01 1.688597e+01 lineto +5.867335e+01 1.974927e+01 lineto +6.077489e+01 1.992497e+01 lineto +closepath +gsave +6.66675e-01 6.66675e-01 6.66675e-01 setrgbcolor +fill +grestore +newpath +6.077489e+01 1.992497e+01 moveto +6.123022e+01 1.704274e+01 lineto +5.935517e+01 1.688597e+01 lineto +5.867335e+01 1.974927e+01 lineto +6.077489e+01 1.992497e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.035154e+01 2.30046e+01 moveto +6.077489e+01 1.992497e+01 lineto +5.867335e+01 1.974927e+01 lineto +5.803943e+01 2.28113e+01 lineto +6.035154e+01 2.30046e+01 lineto +closepath +gsave +6.869143e-01 6.869143e-01 6.869143e-01 setrgbcolor +fill +grestore +newpath +6.035154e+01 2.30046e+01 moveto +6.077489e+01 1.992497e+01 lineto +5.867335e+01 1.974927e+01 lineto +5.803943e+01 2.28113e+01 lineto +6.035154e+01 2.30046e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.996338e+01 2.625832e+01 moveto +6.035154e+01 2.30046e+01 lineto +5.803943e+01 2.28113e+01 lineto +5.745821e+01 2.604888e+01 lineto +5.996338e+01 2.625832e+01 lineto +closepath +gsave +7.051425e-01 7.051425e-01 7.051425e-01 setrgbcolor +fill +grestore +newpath +5.996338e+01 2.625832e+01 moveto +6.035154e+01 2.30046e+01 lineto +5.803943e+01 2.28113e+01 lineto +5.745821e+01 2.604888e+01 lineto +5.996338e+01 2.625832e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.961335e+01 2.966149e+01 moveto +5.996338e+01 2.625832e+01 lineto +5.745821e+01 2.604888e+01 lineto +5.693408e+01 2.943749e+01 lineto +5.961335e+01 2.966149e+01 lineto +closepath +gsave +7.208692e-01 7.208692e-01 7.208692e-01 setrgbcolor +fill +grestore +newpath +5.961335e+01 2.966149e+01 moveto +5.996338e+01 2.625832e+01 lineto +5.745821e+01 2.604888e+01 lineto +5.693408e+01 2.943749e+01 lineto +5.961335e+01 2.966149e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.93041e+01 3.318835e+01 moveto +5.961335e+01 2.966149e+01 lineto +5.693408e+01 2.943749e+01 lineto +5.647101e+01 3.295149e+01 lineto +5.93041e+01 3.318835e+01 lineto +closepath +gsave +7.336599e-01 7.336599e-01 7.336599e-01 setrgbcolor +fill +grestore +newpath +5.93041e+01 3.318835e+01 moveto +5.961335e+01 2.966149e+01 lineto +5.693408e+01 2.943749e+01 lineto +5.647101e+01 3.295149e+01 lineto +5.93041e+01 3.318835e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.903797e+01 3.68122e+01 moveto +5.93041e+01 3.318835e+01 lineto +5.647101e+01 3.295149e+01 lineto +5.607251e+01 3.656428e+01 lineto +5.903797e+01 3.68122e+01 lineto +closepath +gsave +7.431544e-01 7.431544e-01 7.431544e-01 setrgbcolor +fill +grestore +newpath +5.903797e+01 3.68122e+01 moveto +5.93041e+01 3.318835e+01 lineto +5.647101e+01 3.295149e+01 lineto +5.607251e+01 3.656428e+01 lineto +5.903797e+01 3.68122e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.881698e+01 4.050561e+01 moveto +5.903797e+01 3.68122e+01 lineto +5.607251e+01 3.656428e+01 lineto +5.57416e+01 4.024849e+01 lineto +5.881698e+01 4.050561e+01 lineto +closepath +gsave +7.490815e-01 7.490815e-01 7.490815e-01 setrgbcolor +fill +grestore +newpath +5.881698e+01 4.050561e+01 moveto +5.903797e+01 3.68122e+01 lineto +5.607251e+01 3.656428e+01 lineto +5.57416e+01 4.024849e+01 lineto +5.881698e+01 4.050561e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.864279e+01 4.424061e+01 moveto +5.881698e+01 4.050561e+01 lineto +5.57416e+01 4.024849e+01 lineto +5.548077e+01 4.397625e+01 lineto +5.864279e+01 4.424061e+01 lineto +closepath +gsave +7.512708e-01 7.512708e-01 7.512708e-01 setrgbcolor +fill +grestore +newpath +5.864279e+01 4.424061e+01 moveto +5.881698e+01 4.050561e+01 lineto +5.57416e+01 4.024849e+01 lineto +5.548077e+01 4.397625e+01 lineto +5.864279e+01 4.424061e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.851673e+01 4.798893e+01 moveto +5.864279e+01 4.424061e+01 lineto +5.548077e+01 4.397625e+01 lineto +5.529202e+01 4.771933e+01 lineto +5.851673e+01 4.798893e+01 lineto +closepath +gsave +7.496594e-01 7.496594e-01 7.496594e-01 setrgbcolor +fill +grestore +newpath +5.851673e+01 4.798893e+01 moveto +5.864279e+01 4.424061e+01 lineto +5.548077e+01 4.397625e+01 lineto +5.529202e+01 4.771933e+01 lineto +5.851673e+01 4.798893e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.843976e+01 5.17222e+01 moveto +5.851673e+01 4.798893e+01 lineto +5.529202e+01 4.771933e+01 lineto +5.517675e+01 5.144939e+01 lineto +5.843976e+01 5.17222e+01 lineto +closepath +gsave +7.442951e-01 7.442951e-01 7.442951e-01 setrgbcolor +fill +grestore +newpath +5.843976e+01 5.17222e+01 moveto +5.851673e+01 4.798893e+01 lineto +5.529202e+01 4.771933e+01 lineto +5.517675e+01 5.144939e+01 lineto +5.843976e+01 5.17222e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.841244e+01 5.541214e+01 moveto +5.843976e+01 5.17222e+01 lineto +5.517675e+01 5.144939e+01 lineto +5.513585e+01 5.51382e+01 lineto +5.841244e+01 5.541214e+01 lineto +closepath +gsave +7.353337e-01 7.353337e-01 7.353337e-01 setrgbcolor +fill +grestore +newpath +5.841244e+01 5.541214e+01 moveto +5.843976e+01 5.17222e+01 lineto +5.517675e+01 5.144939e+01 lineto +5.513585e+01 5.51382e+01 lineto +5.841244e+01 5.541214e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.8435e+01 5.903083e+01 moveto +5.841244e+01 5.541214e+01 lineto +5.513585e+01 5.51382e+01 lineto +5.516963e+01 5.875783e+01 lineto +5.8435e+01 5.903083e+01 lineto +closepath +gsave +7.230328e-01 7.230328e-01 7.230328e-01 setrgbcolor +fill +grestore +newpath +5.8435e+01 5.903083e+01 moveto +5.841244e+01 5.541214e+01 lineto +5.513585e+01 5.51382e+01 lineto +5.516963e+01 5.875783e+01 lineto +5.8435e+01 5.903083e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.850726e+01 6.255087e+01 moveto +5.8435e+01 5.903083e+01 lineto +5.516963e+01 5.875783e+01 lineto +5.527783e+01 6.228087e+01 lineto +5.850726e+01 6.255087e+01 lineto +closepath +gsave +7.077403e-01 7.077403e-01 7.077403e-01 setrgbcolor +fill +grestore +newpath +5.850726e+01 6.255087e+01 moveto +5.8435e+01 5.903083e+01 lineto +5.516963e+01 5.875783e+01 lineto +5.527783e+01 6.228087e+01 lineto +5.850726e+01 6.255087e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.862867e+01 6.594561e+01 moveto +5.850726e+01 6.255087e+01 lineto +5.527783e+01 6.228087e+01 lineto +5.545962e+01 6.568066e+01 lineto +5.862867e+01 6.594561e+01 lineto +closepath +gsave +6.898802e-01 6.898802e-01 6.898802e-01 setrgbcolor +fill +grestore +newpath +5.862867e+01 6.594561e+01 moveto +5.850726e+01 6.255087e+01 lineto +5.527783e+01 6.228087e+01 lineto +5.545962e+01 6.568066e+01 lineto +5.862867e+01 6.594561e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.879831e+01 6.918936e+01 moveto +5.862867e+01 6.594561e+01 lineto +5.545962e+01 6.568066e+01 lineto +5.571365e+01 6.893147e+01 lineto +5.879831e+01 6.918936e+01 lineto +closepath +gsave +6.699348e-01 6.699348e-01 6.699348e-01 setrgbcolor +fill +grestore +newpath +5.879831e+01 6.918936e+01 moveto +5.862867e+01 6.594561e+01 lineto +5.545962e+01 6.568066e+01 lineto +5.571365e+01 6.893147e+01 lineto +5.879831e+01 6.918936e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.90149e+01 7.225755e+01 moveto +5.879831e+01 6.918936e+01 lineto +5.571365e+01 6.893147e+01 lineto +5.603797e+01 7.200867e+01 lineto +5.90149e+01 7.225755e+01 lineto +closepath +gsave +6.484253e-01 6.484253e-01 6.484253e-01 setrgbcolor +fill +grestore +newpath +5.90149e+01 7.225755e+01 moveto +5.879831e+01 6.918936e+01 lineto +5.571365e+01 6.893147e+01 lineto +5.603797e+01 7.200867e+01 lineto +5.90149e+01 7.225755e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.927681e+01 7.512697e+01 moveto +5.90149e+01 7.225755e+01 lineto +5.603797e+01 7.200867e+01 lineto +5.643014e+01 7.488897e+01 lineto +5.927681e+01 7.512697e+01 lineto +closepath +gsave +6.258912e-01 6.258912e-01 6.258912e-01 setrgbcolor +fill +grestore +newpath +5.927681e+01 7.512697e+01 moveto +5.90149e+01 7.225755e+01 lineto +5.603797e+01 7.200867e+01 lineto +5.643014e+01 7.488897e+01 lineto +5.927681e+01 7.512697e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.958204e+01 7.777587e+01 moveto +5.927681e+01 7.512697e+01 lineto +5.643014e+01 7.488897e+01 lineto +5.688719e+01 7.755057e+01 lineto +5.958204e+01 7.777587e+01 lineto +closepath +gsave +6.028694e-01 6.028694e-01 6.028694e-01 setrgbcolor +fill +grestore +newpath +5.958204e+01 7.777587e+01 moveto +5.927681e+01 7.512697e+01 lineto +5.643014e+01 7.488897e+01 lineto +5.688719e+01 7.755057e+01 lineto +5.958204e+01 7.777587e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.992828e+01 8.018422e+01 moveto +5.958204e+01 7.777587e+01 lineto +5.688719e+01 7.755057e+01 lineto +5.740566e+01 7.997332e+01 lineto +5.992828e+01 8.018422e+01 lineto +closepath +gsave +5.798751e-01 5.798751e-01 5.798751e-01 setrgbcolor +fill +grestore +newpath +5.992828e+01 8.018422e+01 moveto +5.958204e+01 7.777587e+01 lineto +5.688719e+01 7.755057e+01 lineto +5.740566e+01 7.997332e+01 lineto +5.992828e+01 8.018422e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.031293e+01 8.233378e+01 moveto +5.992828e+01 8.018422e+01 lineto +5.740566e+01 7.997332e+01 lineto +5.798162e+01 8.213887e+01 lineto +6.031293e+01 8.233378e+01 lineto +closepath +gsave +5.573836e-01 5.573836e-01 5.573836e-01 setrgbcolor +fill +grestore +newpath +6.031293e+01 8.233378e+01 moveto +5.992828e+01 8.018422e+01 lineto +5.740566e+01 7.997332e+01 lineto +5.798162e+01 8.213887e+01 lineto +6.031293e+01 8.233378e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.073305e+01 8.420828e+01 moveto +6.031293e+01 8.233378e+01 lineto +5.798162e+01 8.213887e+01 lineto +5.861071e+01 8.403084e+01 lineto +6.073305e+01 8.420828e+01 lineto +closepath +gsave +5.358155e-01 5.358155e-01 5.358155e-01 setrgbcolor +fill +grestore +newpath +6.073305e+01 8.420828e+01 moveto +6.031293e+01 8.233378e+01 lineto +5.798162e+01 8.213887e+01 lineto +5.861071e+01 8.403084e+01 lineto +6.073305e+01 8.420828e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.118548e+01 8.579353e+01 moveto +6.073305e+01 8.420828e+01 lineto +5.861071e+01 8.403084e+01 lineto +5.928817e+01 8.56349e+01 lineto +6.118548e+01 8.579353e+01 lineto +closepath +gsave +5.155248e-01 5.155248e-01 5.155248e-01 setrgbcolor +fill +grestore +newpath +6.118548e+01 8.579353e+01 moveto +6.073305e+01 8.420828e+01 lineto +5.861071e+01 8.403084e+01 lineto +5.928817e+01 8.56349e+01 lineto +6.118548e+01 8.579353e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.166678e+01 8.707752e+01 moveto +6.118548e+01 8.579353e+01 lineto +5.928817e+01 8.56349e+01 lineto +6.000887e+01 8.693891e+01 lineto +6.166678e+01 8.707752e+01 lineto +closepath +gsave +4.967915e-01 4.967915e-01 4.967915e-01 setrgbcolor +fill +grestore +newpath +6.166678e+01 8.707752e+01 moveto +6.118548e+01 8.579353e+01 lineto +5.928817e+01 8.56349e+01 lineto +6.000887e+01 8.693891e+01 lineto +6.166678e+01 8.707752e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.217332e+01 8.805053e+01 moveto +6.166678e+01 8.707752e+01 lineto +6.000887e+01 8.693891e+01 lineto +6.076736e+01 8.793299e+01 lineto +6.217332e+01 8.805053e+01 lineto +closepath +gsave +4.798165e-01 4.798165e-01 4.798165e-01 setrgbcolor +fill +grestore +newpath +6.217332e+01 8.805053e+01 moveto +6.166678e+01 8.707752e+01 lineto +6.000887e+01 8.693891e+01 lineto +6.076736e+01 8.793299e+01 lineto +6.217332e+01 8.805053e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.270126e+01 8.870521e+01 moveto +6.217332e+01 8.805053e+01 lineto +6.076736e+01 8.793299e+01 lineto +6.155789e+01 8.860961e+01 lineto +6.270126e+01 8.870521e+01 lineto +closepath +gsave +4.647226e-01 4.647226e-01 4.647226e-01 setrgbcolor +fill +grestore +newpath +6.270126e+01 8.870521e+01 moveto +6.217332e+01 8.805053e+01 lineto +6.076736e+01 8.793299e+01 lineto +6.155789e+01 8.860961e+01 lineto +6.270126e+01 8.870521e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.32466e+01 8.903658e+01 moveto +6.270126e+01 8.870521e+01 lineto +6.155789e+01 8.860961e+01 lineto +6.237448e+01 8.896367e+01 lineto +6.32466e+01 8.903658e+01 lineto +closepath +gsave +4.515573e-01 4.515573e-01 4.515573e-01 setrgbcolor +fill +grestore +newpath +6.32466e+01 8.903658e+01 moveto +6.270126e+01 8.870521e+01 lineto +6.155789e+01 8.860961e+01 lineto +6.237448e+01 8.896367e+01 lineto +6.32466e+01 8.903658e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.6087e+01 8.584241e+01 moveto +6.551811e+01 8.711593e+01 lineto +6.577581e+01 8.713747e+01 lineto +6.662767e+01 8.588761e+01 lineto +6.6087e+01 8.584241e+01 lineto +closepath +gsave +5.304842e-01 5.304842e-01 5.304842e-01 setrgbcolor +fill +grestore +newpath +6.6087e+01 8.584241e+01 moveto +6.551811e+01 8.711593e+01 lineto +6.577581e+01 8.713747e+01 lineto +6.662767e+01 8.588761e+01 lineto +6.6087e+01 8.584241e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.664767e+01 8.426727e+01 moveto +6.6087e+01 8.584241e+01 lineto +6.662767e+01 8.588761e+01 lineto +6.746721e+01 8.433579e+01 lineto +6.664767e+01 8.426727e+01 lineto +closepath +gsave +5.517713e-01 5.517713e-01 5.517713e-01 setrgbcolor +fill +grestore +newpath +6.664767e+01 8.426727e+01 moveto +6.6087e+01 8.584241e+01 lineto +6.662767e+01 8.588761e+01 lineto +6.746721e+01 8.433579e+01 lineto +6.664767e+01 8.426727e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.719587e+01 8.240243e+01 moveto +6.664767e+01 8.426727e+01 lineto +6.746721e+01 8.433579e+01 lineto +6.828808e+01 8.249374e+01 lineto +6.719587e+01 8.240243e+01 lineto +closepath +gsave +5.740823e-01 5.740823e-01 5.740823e-01 setrgbcolor +fill +grestore +newpath +6.719587e+01 8.240243e+01 moveto +6.664767e+01 8.426727e+01 lineto +6.746721e+01 8.433579e+01 lineto +6.828808e+01 8.249374e+01 lineto +6.719587e+01 8.240243e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.414254e+01 4.968494e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.386301e+01 4.939691e+00 lineto +6.414254e+01 4.968494e+00 lineto +closepath +gsave +5.127169e-01 5.127169e-01 5.127169e-01 setrgbcolor +fill +grestore +newpath +6.414254e+01 4.968494e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.386301e+01 4.939691e+00 lineto +6.414254e+01 4.968494e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.329158e+01 6.247616e+00 moveto +6.414254e+01 4.968494e+00 lineto +6.386301e+01 4.939691e+00 lineto +6.273462e+01 6.190226e+00 lineto +6.329158e+01 6.247616e+00 lineto +closepath +gsave +5.335465e-01 5.335465e-01 5.335465e-01 setrgbcolor +fill +grestore +newpath +6.329158e+01 6.247616e+00 moveto +6.414254e+01 4.968494e+00 lineto +6.386301e+01 4.939691e+00 lineto +6.273462e+01 6.190226e+00 lineto +6.329158e+01 6.247616e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.245354e+01 7.82768e+00 moveto +6.329158e+01 6.247616e+00 lineto +6.273462e+01 6.190226e+00 lineto +6.162338e+01 7.742139e+00 lineto +6.245354e+01 7.82768e+00 lineto +closepath +gsave +5.55853e-01 5.55853e-01 5.55853e-01 setrgbcolor +fill +grestore +newpath +6.245354e+01 7.82768e+00 moveto +6.329158e+01 6.247616e+00 lineto +6.273462e+01 6.190226e+00 lineto +6.162338e+01 7.742139e+00 lineto +6.245354e+01 7.82768e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.163479e+01 9.696725e+00 moveto +6.245354e+01 7.82768e+00 lineto +6.162338e+01 7.742139e+00 lineto +6.053771e+01 9.58368e+00 lineto +6.163479e+01 9.696725e+00 lineto +closepath +gsave +5.79283e-01 5.79283e-01 5.79283e-01 setrgbcolor +fill +grestore +newpath +6.163479e+01 9.696725e+00 moveto +6.245354e+01 7.82768e+00 lineto +6.162338e+01 7.742139e+00 lineto +6.053771e+01 9.58368e+00 lineto +6.163479e+01 9.696725e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.084151e+01 1.18406e+01 moveto +6.163479e+01 9.696725e+00 lineto +6.053771e+01 9.58368e+00 lineto +5.948582e+01 1.170091e+01 lineto +6.084151e+01 1.18406e+01 lineto +closepath +gsave +6.034077e-01 6.034077e-01 6.034077e-01 setrgbcolor +fill +grestore +newpath +6.084151e+01 1.18406e+01 moveto +6.163479e+01 9.696725e+00 lineto +6.053771e+01 9.58368e+00 lineto +5.948582e+01 1.170091e+01 lineto +6.084151e+01 1.18406e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.007971e+01 1.424308e+01 moveto +6.084151e+01 1.18406e+01 lineto +5.948582e+01 1.170091e+01 lineto +5.847567e+01 1.40778e+01 lineto +6.007971e+01 1.424308e+01 lineto +closepath +gsave +6.277345e-01 6.277345e-01 6.277345e-01 setrgbcolor +fill +grestore +newpath +6.007971e+01 1.424308e+01 moveto +6.084151e+01 1.18406e+01 lineto +5.948582e+01 1.170091e+01 lineto +5.847567e+01 1.40778e+01 lineto +6.007971e+01 1.424308e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.935517e+01 1.688597e+01 moveto +6.007971e+01 1.424308e+01 lineto +5.847567e+01 1.40778e+01 lineto +5.751491e+01 1.669635e+01 lineto +5.935517e+01 1.688597e+01 lineto +closepath +gsave +6.517226e-01 6.517226e-01 6.517226e-01 setrgbcolor +fill +grestore +newpath +5.935517e+01 1.688597e+01 moveto +6.007971e+01 1.424308e+01 lineto +5.847567e+01 1.40778e+01 lineto +5.751491e+01 1.669635e+01 lineto +5.935517e+01 1.688597e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.867335e+01 1.974927e+01 moveto +5.935517e+01 1.688597e+01 lineto +5.751491e+01 1.669635e+01 lineto +5.661082e+01 1.953675e+01 lineto +5.867335e+01 1.974927e+01 lineto +closepath +gsave +6.748016e-01 6.748016e-01 6.748016e-01 setrgbcolor +fill +grestore +newpath +5.867335e+01 1.974927e+01 moveto +5.935517e+01 1.688597e+01 lineto +5.751491e+01 1.669635e+01 lineto +5.661082e+01 1.953675e+01 lineto +5.867335e+01 1.974927e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.803943e+01 2.28113e+01 moveto +5.867335e+01 1.974927e+01 lineto +5.661082e+01 1.953675e+01 lineto +5.577024e+01 2.257748e+01 lineto +5.803943e+01 2.28113e+01 lineto +closepath +gsave +6.963921e-01 6.963921e-01 6.963921e-01 setrgbcolor +fill +grestore +newpath +5.803943e+01 2.28113e+01 moveto +5.867335e+01 1.974927e+01 lineto +5.661082e+01 1.953675e+01 lineto +5.577024e+01 2.257748e+01 lineto +5.803943e+01 2.28113e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.745821e+01 2.604888e+01 moveto +5.803943e+01 2.28113e+01 lineto +5.577024e+01 2.257748e+01 lineto +5.499954e+01 2.579553e+01 lineto +5.745821e+01 2.604888e+01 lineto +closepath +gsave +7.159281e-01 7.159281e-01 7.159281e-01 setrgbcolor +fill +grestore +newpath +5.745821e+01 2.604888e+01 moveto +5.803943e+01 2.28113e+01 lineto +5.577024e+01 2.257748e+01 lineto +5.499954e+01 2.579553e+01 lineto +5.745821e+01 2.604888e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.693408e+01 2.943749e+01 moveto +5.745821e+01 2.604888e+01 lineto +5.499954e+01 2.579553e+01 lineto +5.430454e+01 2.916654e+01 lineto +5.693408e+01 2.943749e+01 lineto +closepath +gsave +7.328796e-01 7.328796e-01 7.328796e-01 setrgbcolor +fill +grestore +newpath +5.693408e+01 2.943749e+01 moveto +5.745821e+01 2.604888e+01 lineto +5.499954e+01 2.579553e+01 lineto +5.430454e+01 2.916654e+01 lineto +5.693408e+01 2.943749e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.647101e+01 3.295149e+01 moveto +5.693408e+01 2.943749e+01 lineto +5.430454e+01 2.916654e+01 lineto +5.369051e+01 3.266499e+01 lineto +5.647101e+01 3.295149e+01 lineto +closepath +gsave +7.467743e-01 7.467743e-01 7.467743e-01 setrgbcolor +fill +grestore +newpath +5.647101e+01 3.295149e+01 moveto +5.693408e+01 2.943749e+01 lineto +5.430454e+01 2.916654e+01 lineto +5.369051e+01 3.266499e+01 lineto +5.647101e+01 3.295149e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.607251e+01 3.656428e+01 moveto +5.647101e+01 3.295149e+01 lineto +5.369051e+01 3.266499e+01 lineto +5.316209e+01 3.626438e+01 lineto +5.607251e+01 3.656428e+01 lineto +closepath +gsave +7.572169e-01 7.572169e-01 7.572169e-01 setrgbcolor +fill +grestore +newpath +5.607251e+01 3.656428e+01 moveto +5.647101e+01 3.295149e+01 lineto +5.369051e+01 3.266499e+01 lineto +5.316209e+01 3.626438e+01 lineto +5.607251e+01 3.656428e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.57416e+01 4.024849e+01 moveto +5.607251e+01 3.656428e+01 lineto +5.316209e+01 3.626438e+01 lineto +5.27233e+01 3.993748e+01 lineto +5.57416e+01 4.024849e+01 lineto +closepath +gsave +7.639062e-01 7.639062e-01 7.639062e-01 setrgbcolor +fill +grestore +newpath +5.57416e+01 4.024849e+01 moveto +5.607251e+01 3.656428e+01 lineto +5.316209e+01 3.626438e+01 lineto +5.27233e+01 3.993748e+01 lineto +5.57416e+01 4.024849e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.548077e+01 4.397625e+01 moveto +5.57416e+01 4.024849e+01 lineto +5.27233e+01 3.993748e+01 lineto +5.237745e+01 4.365648e+01 lineto +5.548077e+01 4.397625e+01 lineto +closepath +gsave +7.666476e-01 7.666476e-01 7.666476e-01 setrgbcolor +fill +grestore +newpath +5.548077e+01 4.397625e+01 moveto +5.57416e+01 4.024849e+01 lineto +5.27233e+01 3.993748e+01 lineto +5.237745e+01 4.365648e+01 lineto +5.548077e+01 4.397625e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.529202e+01 4.771933e+01 moveto +5.548077e+01 4.397625e+01 lineto +5.237745e+01 4.365648e+01 lineto +5.212715e+01 4.739322e+01 lineto +5.529202e+01 4.771933e+01 lineto +closepath +gsave +7.653614e-01 7.653614e-01 7.653614e-01 setrgbcolor +fill +grestore +newpath +5.529202e+01 4.771933e+01 moveto +5.548077e+01 4.397625e+01 lineto +5.237745e+01 4.365648e+01 lineto +5.212715e+01 4.739322e+01 lineto +5.529202e+01 4.771933e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.517675e+01 5.144939e+01 moveto +5.529202e+01 4.771933e+01 lineto +5.212715e+01 4.739322e+01 lineto +5.197431e+01 5.111941e+01 lineto +5.517675e+01 5.144939e+01 lineto +closepath +gsave +7.600863e-01 7.600863e-01 7.600863e-01 setrgbcolor +fill +grestore +newpath +5.517675e+01 5.144939e+01 moveto +5.529202e+01 4.771933e+01 lineto +5.212715e+01 4.739322e+01 lineto +5.197431e+01 5.111941e+01 lineto +5.517675e+01 5.144939e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.513585e+01 5.51382e+01 moveto +5.517675e+01 5.144939e+01 lineto +5.197431e+01 5.111941e+01 lineto +5.192008e+01 5.480684e+01 lineto +5.513585e+01 5.51382e+01 lineto +closepath +gsave +7.509776e-01 7.509776e-01 7.509776e-01 setrgbcolor +fill +grestore +newpath +5.513585e+01 5.51382e+01 moveto +5.517675e+01 5.144939e+01 lineto +5.197431e+01 5.111941e+01 lineto +5.192008e+01 5.480684e+01 lineto +5.513585e+01 5.51382e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.516963e+01 5.875783e+01 moveto +5.513585e+01 5.51382e+01 lineto +5.192008e+01 5.480684e+01 lineto +5.196486e+01 5.84276e+01 lineto +5.516963e+01 5.875783e+01 lineto +closepath +gsave +7.383002e-01 7.383002e-01 7.383002e-01 setrgbcolor +fill +grestore +newpath +5.516963e+01 5.875783e+01 moveto +5.513585e+01 5.51382e+01 lineto +5.192008e+01 5.480684e+01 lineto +5.196486e+01 5.84276e+01 lineto +5.516963e+01 5.875783e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.527783e+01 6.228087e+01 moveto +5.516963e+01 5.875783e+01 lineto +5.196486e+01 5.84276e+01 lineto +5.210833e+01 6.195428e+01 lineto +5.527783e+01 6.228087e+01 lineto +closepath +gsave +7.224176e-01 7.224176e-01 7.224176e-01 setrgbcolor +fill +grestore +newpath +5.527783e+01 6.228087e+01 moveto +5.516963e+01 5.875783e+01 lineto +5.196486e+01 5.84276e+01 lineto +5.210833e+01 6.195428e+01 lineto +5.527783e+01 6.228087e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.545962e+01 6.568066e+01 moveto +5.527783e+01 6.228087e+01 lineto +5.210833e+01 6.195428e+01 lineto +5.23494e+01 6.536018e+01 lineto +5.545962e+01 6.568066e+01 lineto +closepath +gsave +7.037762e-01 7.037762e-01 7.037762e-01 setrgbcolor +fill +grestore +newpath +5.545962e+01 6.568066e+01 moveto +5.527783e+01 6.228087e+01 lineto +5.210833e+01 6.195428e+01 lineto +5.23494e+01 6.536018e+01 lineto +5.545962e+01 6.568066e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.571365e+01 6.893147e+01 moveto +5.545962e+01 6.568066e+01 lineto +5.23494e+01 6.536018e+01 lineto +5.268624e+01 6.861952e+01 lineto +5.571365e+01 6.893147e+01 lineto +closepath +gsave +6.828866e-01 6.828866e-01 6.828866e-01 setrgbcolor +fill +grestore +newpath +5.571365e+01 6.893147e+01 moveto +5.545962e+01 6.568066e+01 lineto +5.23494e+01 6.536018e+01 lineto +5.268624e+01 6.861952e+01 lineto +5.571365e+01 6.893147e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.603797e+01 7.200867e+01 moveto +5.571365e+01 6.893147e+01 lineto +5.268624e+01 6.861952e+01 lineto +5.311629e+01 7.170761e+01 lineto +5.603797e+01 7.200867e+01 lineto +closepath +gsave +6.603031e-01 6.603031e-01 6.603031e-01 setrgbcolor +fill +grestore +newpath +5.603797e+01 7.200867e+01 moveto +5.571365e+01 6.893147e+01 lineto +5.268624e+01 6.861952e+01 lineto +5.311629e+01 7.170761e+01 lineto +5.603797e+01 7.200867e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.643014e+01 7.488897e+01 moveto +5.603797e+01 7.200867e+01 lineto +5.311629e+01 7.170761e+01 lineto +5.363631e+01 7.460109e+01 lineto +5.643014e+01 7.488897e+01 lineto +closepath +gsave +6.366008e-01 6.366008e-01 6.366008e-01 setrgbcolor +fill +grestore +newpath +5.643014e+01 7.488897e+01 moveto +5.603797e+01 7.200867e+01 lineto +5.311629e+01 7.170761e+01 lineto +5.363631e+01 7.460109e+01 lineto +5.643014e+01 7.488897e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.688719e+01 7.755057e+01 moveto +5.643014e+01 7.488897e+01 lineto +5.363631e+01 7.460109e+01 lineto +5.424236e+01 7.727804e+01 lineto +5.688719e+01 7.755057e+01 lineto +closepath +gsave +6.123541e-01 6.123541e-01 6.123541e-01 setrgbcolor +fill +grestore +newpath +5.688719e+01 7.755057e+01 moveto +5.643014e+01 7.488897e+01 lineto +5.363631e+01 7.460109e+01 lineto +5.424236e+01 7.727804e+01 lineto +5.688719e+01 7.755057e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.740566e+01 7.997332e+01 moveto +5.688719e+01 7.755057e+01 lineto +5.424236e+01 7.727804e+01 lineto +5.492985e+01 7.971821e+01 lineto +5.740566e+01 7.997332e+01 lineto +closepath +gsave +5.881149e-01 5.881149e-01 5.881149e-01 setrgbcolor +fill +grestore +newpath +5.740566e+01 7.997332e+01 moveto +5.688719e+01 7.755057e+01 lineto +5.424236e+01 7.727804e+01 lineto +5.492985e+01 7.971821e+01 lineto +5.740566e+01 7.997332e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.798162e+01 8.213887e+01 moveto +5.740566e+01 7.997332e+01 lineto +5.492985e+01 7.971821e+01 lineto +5.569358e+01 8.190311e+01 lineto +5.798162e+01 8.213887e+01 lineto +closepath +gsave +5.643938e-01 5.643938e-01 5.643938e-01 setrgbcolor +fill +grestore +newpath +5.798162e+01 8.213887e+01 moveto +5.740566e+01 7.997332e+01 lineto +5.492985e+01 7.971821e+01 lineto +5.569358e+01 8.190311e+01 lineto +5.798162e+01 8.213887e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.861071e+01 8.403084e+01 moveto +5.798162e+01 8.213887e+01 lineto +5.569358e+01 8.190311e+01 lineto +5.652776e+01 8.381621e+01 lineto +5.861071e+01 8.403084e+01 lineto +closepath +gsave +5.416429e-01 5.416429e-01 5.416429e-01 setrgbcolor +fill +grestore +newpath +5.861071e+01 8.403084e+01 moveto +5.798162e+01 8.213887e+01 lineto +5.569358e+01 8.190311e+01 lineto +5.652776e+01 8.381621e+01 lineto +5.861071e+01 8.403084e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.928817e+01 8.56349e+01 moveto +5.861071e+01 8.403084e+01 lineto +5.652776e+01 8.381621e+01 lineto +5.742608e+01 8.544303e+01 lineto +5.928817e+01 8.56349e+01 lineto +closepath +gsave +5.202437e-01 5.202437e-01 5.202437e-01 setrgbcolor +fill +grestore +newpath +5.928817e+01 8.56349e+01 moveto +5.861071e+01 8.403084e+01 lineto +5.652776e+01 8.381621e+01 lineto +5.742608e+01 8.544303e+01 lineto +5.928817e+01 8.56349e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.000887e+01 8.693891e+01 moveto +5.928817e+01 8.56349e+01 lineto +5.742608e+01 8.544303e+01 lineto +5.838173e+01 8.677124e+01 lineto +6.000887e+01 8.693891e+01 lineto +closepath +gsave +5.00498e-01 5.00498e-01 5.00498e-01 setrgbcolor +fill +grestore +newpath +6.000887e+01 8.693891e+01 moveto +5.928817e+01 8.56349e+01 lineto +5.742608e+01 8.544303e+01 lineto +5.838173e+01 8.677124e+01 lineto +6.000887e+01 8.693891e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.076736e+01 8.793299e+01 moveto +6.000887e+01 8.693891e+01 lineto +5.838173e+01 8.677124e+01 lineto +5.938749e+01 8.77908e+01 lineto +6.076736e+01 8.793299e+01 lineto +closepath +gsave +4.826228e-01 4.826228e-01 4.826228e-01 setrgbcolor +fill +grestore +newpath +6.076736e+01 8.793299e+01 moveto +6.000887e+01 8.693891e+01 lineto +5.838173e+01 8.677124e+01 lineto +5.938749e+01 8.77908e+01 lineto +6.076736e+01 8.793299e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.155789e+01 8.860961e+01 moveto +6.076736e+01 8.793299e+01 lineto +5.938749e+01 8.77908e+01 lineto +6.043574e+01 8.849399e+01 lineto +6.155789e+01 8.860961e+01 lineto +closepath +gsave +4.667507e-01 4.667507e-01 4.667507e-01 setrgbcolor +fill +grestore +newpath +6.155789e+01 8.860961e+01 moveto +6.076736e+01 8.793299e+01 lineto +5.938749e+01 8.77908e+01 lineto +6.043574e+01 8.849399e+01 lineto +6.155789e+01 8.860961e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.237448e+01 8.896367e+01 moveto +6.155789e+01 8.860961e+01 lineto +6.043574e+01 8.849399e+01 lineto +6.151854e+01 8.887547e+01 lineto +6.237448e+01 8.896367e+01 lineto +closepath +gsave +4.52933e-01 4.52933e-01 4.52933e-01 setrgbcolor +fill +grestore +newpath +6.237448e+01 8.896367e+01 moveto +6.155789e+01 8.860961e+01 lineto +6.043574e+01 8.849399e+01 lineto +6.151854e+01 8.887547e+01 lineto +6.237448e+01 8.896367e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.662767e+01 8.588761e+01 moveto +6.577581e+01 8.713747e+01 lineto +6.602872e+01 8.716353e+01 lineto +6.71583e+01 8.594229e+01 lineto +6.662767e+01 8.588761e+01 lineto +closepath +gsave +5.3149e-01 5.3149e-01 5.3149e-01 setrgbcolor +fill +grestore +newpath +6.662767e+01 8.588761e+01 moveto +6.577581e+01 8.713747e+01 lineto +6.602872e+01 8.716353e+01 lineto +6.71583e+01 8.594229e+01 lineto +6.662767e+01 8.588761e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.746721e+01 8.433579e+01 moveto +6.662767e+01 8.588761e+01 lineto +6.71583e+01 8.594229e+01 lineto +6.827154e+01 8.441867e+01 lineto +6.746721e+01 8.433579e+01 lineto +closepath +gsave +5.536696e-01 5.536696e-01 5.536696e-01 setrgbcolor +fill +grestore +newpath +6.746721e+01 8.433579e+01 moveto +6.662767e+01 8.588761e+01 lineto +6.71583e+01 8.594229e+01 lineto +6.827154e+01 8.441867e+01 lineto +6.746721e+01 8.433579e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.828808e+01 8.249374e+01 moveto +6.746721e+01 8.433579e+01 lineto +6.827154e+01 8.441867e+01 lineto +6.936001e+01 8.26042e+01 lineto +6.828808e+01 8.249374e+01 lineto +closepath +gsave +5.770098e-01 5.770098e-01 5.770098e-01 setrgbcolor +fill +grestore +newpath +6.828808e+01 8.249374e+01 moveto +6.746721e+01 8.433579e+01 lineto +6.827154e+01 8.441867e+01 lineto +6.936001e+01 8.26042e+01 lineto +6.828808e+01 8.249374e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.386301e+01 4.939691e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.359048e+01 4.906074e+00 lineto +6.386301e+01 4.939691e+00 lineto +closepath +gsave +5.129792e-01 5.129792e-01 5.129792e-01 setrgbcolor +fill +grestore +newpath +6.386301e+01 4.939691e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.359048e+01 4.906074e+00 lineto +6.386301e+01 4.939691e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.273462e+01 6.190226e+00 moveto +6.386301e+01 4.939691e+00 lineto +6.359048e+01 4.906074e+00 lineto +6.219163e+01 6.123246e+00 lineto +6.273462e+01 6.190226e+00 lineto +closepath +gsave +5.344267e-01 5.344267e-01 5.344267e-01 setrgbcolor +fill +grestore +newpath +6.273462e+01 6.190226e+00 moveto +6.386301e+01 4.939691e+00 lineto +6.359048e+01 4.906074e+00 lineto +6.219163e+01 6.123246e+00 lineto +6.273462e+01 6.190226e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.162338e+01 7.742139e+00 moveto +6.273462e+01 6.190226e+00 lineto +6.219163e+01 6.123246e+00 lineto +6.081404e+01 7.642304e+00 lineto +6.162338e+01 7.742139e+00 lineto +closepath +gsave +5.574731e-01 5.574731e-01 5.574731e-01 setrgbcolor +fill +grestore +newpath +6.162338e+01 7.742139e+00 moveto +6.273462e+01 6.190226e+00 lineto +6.219163e+01 6.123246e+00 lineto +6.081404e+01 7.642304e+00 lineto +6.162338e+01 7.742139e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.053771e+01 9.58368e+00 moveto +6.162338e+01 7.742139e+00 lineto +6.081404e+01 7.642304e+00 lineto +5.946814e+01 9.451745e+00 lineto +6.053771e+01 9.58368e+00 lineto +closepath +gsave +5.817569e-01 5.817569e-01 5.817569e-01 setrgbcolor +fill +grestore +newpath +6.053771e+01 9.58368e+00 moveto +6.162338e+01 7.742139e+00 lineto +6.081404e+01 7.642304e+00 lineto +5.946814e+01 9.451745e+00 lineto +6.053771e+01 9.58368e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.948582e+01 1.170091e+01 moveto +6.053771e+01 9.58368e+00 lineto +5.946814e+01 9.451745e+00 lineto +5.816412e+01 1.153787e+01 lineto +5.948582e+01 1.170091e+01 lineto +closepath +gsave +6.068359e-01 6.068359e-01 6.068359e-01 setrgbcolor +fill +grestore +newpath +5.948582e+01 1.170091e+01 moveto +6.053771e+01 9.58368e+00 lineto +5.946814e+01 9.451745e+00 lineto +5.816412e+01 1.153787e+01 lineto +5.948582e+01 1.170091e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.847567e+01 1.40778e+01 moveto +5.948582e+01 1.170091e+01 lineto +5.816412e+01 1.153787e+01 lineto +5.691185e+01 1.38849e+01 lineto +5.847567e+01 1.40778e+01 lineto +closepath +gsave +6.321986e-01 6.321986e-01 6.321986e-01 setrgbcolor +fill +grestore +newpath +5.847567e+01 1.40778e+01 moveto +5.948582e+01 1.170091e+01 lineto +5.816412e+01 1.153787e+01 lineto +5.691185e+01 1.38849e+01 lineto +5.847567e+01 1.40778e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.751491e+01 1.669635e+01 moveto +5.847567e+01 1.40778e+01 lineto +5.691185e+01 1.38849e+01 lineto +5.572081e+01 1.647504e+01 lineto +5.751491e+01 1.669635e+01 lineto +closepath +gsave +6.572805e-01 6.572805e-01 6.572805e-01 setrgbcolor +fill +grestore +newpath +5.751491e+01 1.669635e+01 moveto +5.847567e+01 1.40778e+01 lineto +5.691185e+01 1.38849e+01 lineto +5.572081e+01 1.647504e+01 lineto +5.751491e+01 1.669635e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.661082e+01 1.953675e+01 moveto +5.751491e+01 1.669635e+01 lineto +5.572081e+01 1.647504e+01 lineto +5.460002e+01 1.928871e+01 lineto +5.661082e+01 1.953675e+01 lineto +closepath +gsave +6.814831e-01 6.814831e-01 6.814831e-01 setrgbcolor +fill +grestore +newpath +5.661082e+01 1.953675e+01 moveto +5.751491e+01 1.669635e+01 lineto +5.572081e+01 1.647504e+01 lineto +5.460002e+01 1.928871e+01 lineto +5.661082e+01 1.953675e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.577024e+01 2.257748e+01 moveto +5.661082e+01 1.953675e+01 lineto +5.460002e+01 1.928871e+01 lineto +5.355796e+01 2.230459e+01 lineto +5.577024e+01 2.257748e+01 lineto +closepath +gsave +7.04196e-01 7.04196e-01 7.04196e-01 setrgbcolor +fill +grestore +newpath +5.577024e+01 2.257748e+01 moveto +5.661082e+01 1.953675e+01 lineto +5.460002e+01 1.928871e+01 lineto +5.355796e+01 2.230459e+01 lineto +5.577024e+01 2.257748e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.499954e+01 2.579553e+01 moveto +5.577024e+01 2.257748e+01 lineto +5.355796e+01 2.230459e+01 lineto +5.260252e+01 2.549985e+01 lineto +5.499954e+01 2.579553e+01 lineto +closepath +gsave +7.248206e-01 7.248206e-01 7.248206e-01 setrgbcolor +fill +grestore +newpath +5.499954e+01 2.579553e+01 moveto +5.577024e+01 2.257748e+01 lineto +5.355796e+01 2.230459e+01 lineto +5.260252e+01 2.549985e+01 lineto +5.499954e+01 2.579553e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.430454e+01 2.916654e+01 moveto +5.499954e+01 2.579553e+01 lineto +5.260252e+01 2.549985e+01 lineto +5.174093e+01 2.885031e+01 lineto +5.430454e+01 2.916654e+01 lineto +closepath +gsave +7.427939e-01 7.427939e-01 7.427939e-01 setrgbcolor +fill +grestore +newpath +5.430454e+01 2.916654e+01 moveto +5.499954e+01 2.579553e+01 lineto +5.260252e+01 2.549985e+01 lineto +5.174093e+01 2.885031e+01 lineto +5.430454e+01 2.916654e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.369051e+01 3.266499e+01 moveto +5.430454e+01 2.916654e+01 lineto +5.174093e+01 2.885031e+01 lineto +5.097973e+01 3.23306e+01 lineto +5.369051e+01 3.266499e+01 lineto +closepath +gsave +7.576115e-01 7.576115e-01 7.576115e-01 setrgbcolor +fill +grestore +newpath +5.369051e+01 3.266499e+01 moveto +5.430454e+01 2.916654e+01 lineto +5.174093e+01 2.885031e+01 lineto +5.097973e+01 3.23306e+01 lineto +5.369051e+01 3.266499e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.316209e+01 3.626438e+01 moveto +5.369051e+01 3.266499e+01 lineto +5.097973e+01 3.23306e+01 lineto +5.032466e+01 3.591438e+01 lineto +5.316209e+01 3.626438e+01 lineto +closepath +gsave +7.688488e-01 7.688488e-01 7.688488e-01 setrgbcolor +fill +grestore +newpath +5.316209e+01 3.626438e+01 moveto +5.369051e+01 3.266499e+01 lineto +5.097973e+01 3.23306e+01 lineto +5.032466e+01 3.591438e+01 lineto +5.316209e+01 3.626438e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.27233e+01 3.993748e+01 moveto +5.316209e+01 3.626438e+01 lineto +5.032466e+01 3.591438e+01 lineto +4.978069e+01 3.95745e+01 lineto +5.27233e+01 3.993748e+01 lineto +closepath +gsave +7.761789e-01 7.761789e-01 7.761789e-01 setrgbcolor +fill +grestore +newpath +5.27233e+01 3.993748e+01 moveto +5.316209e+01 3.626438e+01 lineto +5.032466e+01 3.591438e+01 lineto +4.978069e+01 3.95745e+01 lineto +5.27233e+01 3.993748e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.237745e+01 4.365648e+01 moveto +5.27233e+01 3.993748e+01 lineto +4.978069e+01 3.95745e+01 lineto +4.935194e+01 4.328327e+01 lineto +5.237745e+01 4.365648e+01 lineto +closepath +gsave +7.793869e-01 7.793869e-01 7.793869e-01 setrgbcolor +fill +grestore +newpath +5.237745e+01 4.365648e+01 moveto +5.27233e+01 3.993748e+01 lineto +4.978069e+01 3.95745e+01 lineto +4.935194e+01 4.328327e+01 lineto +5.237745e+01 4.365648e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.212715e+01 4.739322e+01 moveto +5.237745e+01 4.365648e+01 lineto +4.935194e+01 4.328327e+01 lineto +4.904165e+01 4.701261e+01 lineto +5.212715e+01 4.739322e+01 lineto +closepath +gsave +7.783785e-01 7.783785e-01 7.783785e-01 setrgbcolor +fill +grestore +newpath +5.212715e+01 4.739322e+01 moveto +5.237745e+01 4.365648e+01 lineto +4.935194e+01 4.328327e+01 lineto +4.904165e+01 4.701261e+01 lineto +5.212715e+01 4.739322e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.197431e+01 5.111941e+01 moveto +5.212715e+01 4.739322e+01 lineto +4.904165e+01 4.701261e+01 lineto +4.885217e+01 5.073428e+01 lineto +5.197431e+01 5.111941e+01 lineto +closepath +gsave +7.731845e-01 7.731845e-01 7.731845e-01 setrgbcolor +fill +grestore +newpath +5.197431e+01 5.111941e+01 moveto +5.212715e+01 4.739322e+01 lineto +4.904165e+01 4.701261e+01 lineto +4.885217e+01 5.073428e+01 lineto +5.197431e+01 5.111941e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.192008e+01 5.480684e+01 moveto +5.197431e+01 5.111941e+01 lineto +4.885217e+01 5.073428e+01 lineto +4.878494e+01 5.442011e+01 lineto +5.192008e+01 5.480684e+01 lineto +closepath +gsave +7.639593e-01 7.639593e-01 7.639593e-01 setrgbcolor +fill +grestore +newpath +5.192008e+01 5.480684e+01 moveto +5.197431e+01 5.111941e+01 lineto +4.885217e+01 5.073428e+01 lineto +4.878494e+01 5.442011e+01 lineto +5.192008e+01 5.480684e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.196486e+01 5.84276e+01 moveto +5.192008e+01 5.480684e+01 lineto +4.878494e+01 5.442011e+01 lineto +4.884047e+01 5.80422e+01 lineto +5.196486e+01 5.84276e+01 lineto +closepath +gsave +7.509739e-01 7.509739e-01 7.509739e-01 setrgbcolor +fill +grestore +newpath +5.196486e+01 5.84276e+01 moveto +5.192008e+01 5.480684e+01 lineto +4.878494e+01 5.442011e+01 lineto +4.884047e+01 5.80422e+01 lineto +5.196486e+01 5.84276e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.210833e+01 6.195428e+01 moveto +5.196486e+01 5.84276e+01 lineto +4.884047e+01 5.80422e+01 lineto +4.901832e+01 6.157312e+01 lineto +5.210833e+01 6.195428e+01 lineto +closepath +gsave +7.346045e-01 7.346045e-01 7.346045e-01 setrgbcolor +fill +grestore +newpath +5.210833e+01 6.195428e+01 moveto +5.196486e+01 5.84276e+01 lineto +4.884047e+01 5.80422e+01 lineto +4.901832e+01 6.157312e+01 lineto +5.210833e+01 6.195428e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.23494e+01 6.536018e+01 moveto +5.210833e+01 6.195428e+01 lineto +4.901832e+01 6.157312e+01 lineto +4.931717e+01 6.498615e+01 lineto +5.23494e+01 6.536018e+01 lineto +closepath +gsave +7.153159e-01 7.153159e-01 7.153159e-01 setrgbcolor +fill +grestore +newpath +5.23494e+01 6.536018e+01 moveto +5.210833e+01 6.195428e+01 lineto +4.901832e+01 6.157312e+01 lineto +4.931717e+01 6.498615e+01 lineto +5.23494e+01 6.536018e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.268624e+01 6.861952e+01 moveto +5.23494e+01 6.536018e+01 lineto +4.931717e+01 6.498615e+01 lineto +4.973474e+01 6.825544e+01 lineto +5.268624e+01 6.861952e+01 lineto +closepath +gsave +6.936426e-01 6.936426e-01 6.936426e-01 setrgbcolor +fill +grestore +newpath +5.268624e+01 6.861952e+01 moveto +5.23494e+01 6.536018e+01 lineto +4.931717e+01 6.498615e+01 lineto +4.973474e+01 6.825544e+01 lineto +5.268624e+01 6.861952e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.311629e+01 7.170761e+01 moveto +5.268624e+01 6.861952e+01 lineto +4.973474e+01 6.825544e+01 lineto +5.026788e+01 7.135625e+01 lineto +5.311629e+01 7.170761e+01 lineto +closepath +gsave +6.701661e-01 6.701661e-01 6.701661e-01 setrgbcolor +fill +grestore +newpath +5.311629e+01 7.170761e+01 moveto +5.268624e+01 6.861952e+01 lineto +4.973474e+01 6.825544e+01 lineto +5.026788e+01 7.135625e+01 lineto +5.311629e+01 7.170761e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.363631e+01 7.460109e+01 moveto +5.311629e+01 7.170761e+01 lineto +5.026788e+01 7.135625e+01 lineto +5.091255e+01 7.42651e+01 lineto +5.363631e+01 7.460109e+01 lineto +closepath +gsave +6.454918e-01 6.454918e-01 6.454918e-01 setrgbcolor +fill +grestore +newpath +5.363631e+01 7.460109e+01 moveto +5.311629e+01 7.170761e+01 lineto +5.026788e+01 7.135625e+01 lineto +5.091255e+01 7.42651e+01 lineto +5.363631e+01 7.460109e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.424236e+01 7.727804e+01 moveto +5.363631e+01 7.460109e+01 lineto +5.091255e+01 7.42651e+01 lineto +5.166386e+01 7.695998e+01 lineto +5.424236e+01 7.727804e+01 lineto +closepath +gsave +6.202252e-01 6.202252e-01 6.202252e-01 setrgbcolor +fill +grestore +newpath +5.424236e+01 7.727804e+01 moveto +5.363631e+01 7.460109e+01 lineto +5.091255e+01 7.42651e+01 lineto +5.166386e+01 7.695998e+01 lineto +5.424236e+01 7.727804e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.492985e+01 7.971821e+01 moveto +5.424236e+01 7.727804e+01 lineto +5.166386e+01 7.695998e+01 lineto +5.251614e+01 7.942047e+01 lineto +5.492985e+01 7.971821e+01 lineto +closepath +gsave +5.949493e-01 5.949493e-01 5.949493e-01 setrgbcolor +fill +grestore +newpath +5.492985e+01 7.971821e+01 moveto +5.424236e+01 7.727804e+01 lineto +5.166386e+01 7.695998e+01 lineto +5.251614e+01 7.942047e+01 lineto +5.492985e+01 7.971821e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.569358e+01 8.190311e+01 moveto +5.492985e+01 7.971821e+01 lineto +5.251614e+01 7.942047e+01 lineto +5.346292e+01 8.162795e+01 lineto +5.569358e+01 8.190311e+01 lineto +closepath +gsave +5.702041e-01 5.702041e-01 5.702041e-01 setrgbcolor +fill +grestore +newpath +5.569358e+01 8.190311e+01 moveto +5.492985e+01 7.971821e+01 lineto +5.251614e+01 7.942047e+01 lineto +5.346292e+01 8.162795e+01 lineto +5.569358e+01 8.190311e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.652776e+01 8.381621e+01 moveto +5.569358e+01 8.190311e+01 lineto +5.346292e+01 8.162795e+01 lineto +5.449704e+01 8.356572e+01 lineto +5.652776e+01 8.381621e+01 lineto +closepath +gsave +5.464684e-01 5.464684e-01 5.464684e-01 setrgbcolor +fill +grestore +newpath +5.652776e+01 8.381621e+01 moveto +5.569358e+01 8.190311e+01 lineto +5.346292e+01 8.162795e+01 lineto +5.449704e+01 8.356572e+01 lineto +5.652776e+01 8.381621e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.742608e+01 8.544303e+01 moveto +5.652776e+01 8.381621e+01 lineto +5.449704e+01 8.356572e+01 lineto +5.561068e+01 8.521909e+01 lineto +5.742608e+01 8.544303e+01 lineto +closepath +gsave +5.241467e-01 5.241467e-01 5.241467e-01 setrgbcolor +fill +grestore +newpath +5.742608e+01 8.544303e+01 moveto +5.652776e+01 8.381621e+01 lineto +5.449704e+01 8.356572e+01 lineto +5.561068e+01 8.521909e+01 lineto +5.742608e+01 8.544303e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.838173e+01 8.677124e+01 moveto +5.742608e+01 8.544303e+01 lineto +5.561068e+01 8.521909e+01 lineto +5.67954e+01 8.657556e+01 lineto +5.838173e+01 8.677124e+01 lineto +closepath +gsave +5.035591e-01 5.035591e-01 5.035591e-01 setrgbcolor +fill +grestore +newpath +5.838173e+01 8.677124e+01 moveto +5.742608e+01 8.544303e+01 lineto +5.561068e+01 8.521909e+01 lineto +5.67954e+01 8.657556e+01 lineto +5.838173e+01 8.677124e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.938749e+01 8.77908e+01 moveto +5.838173e+01 8.677124e+01 lineto +5.67954e+01 8.657556e+01 lineto +5.804223e+01 8.762486e+01 lineto +5.938749e+01 8.77908e+01 lineto +closepath +gsave +4.849362e-01 4.849362e-01 4.849362e-01 setrgbcolor +fill +grestore +newpath +5.938749e+01 8.77908e+01 moveto +5.838173e+01 8.677124e+01 lineto +5.67954e+01 8.657556e+01 lineto +5.804223e+01 8.762486e+01 lineto +5.938749e+01 8.77908e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.043574e+01 8.849399e+01 moveto +5.938749e+01 8.77908e+01 lineto +5.804223e+01 8.762486e+01 lineto +5.934173e+01 8.835904e+01 lineto +6.043574e+01 8.849399e+01 lineto +closepath +gsave +4.684189e-01 4.684189e-01 4.684189e-01 setrgbcolor +fill +grestore +newpath +6.043574e+01 8.849399e+01 moveto +5.938749e+01 8.77908e+01 lineto +5.804223e+01 8.762486e+01 lineto +5.934173e+01 8.835904e+01 lineto +6.043574e+01 8.849399e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.151854e+01 8.887547e+01 moveto +6.043574e+01 8.849399e+01 lineto +5.934173e+01 8.835904e+01 lineto +6.068407e+01 8.877254e+01 lineto +6.151854e+01 8.887547e+01 lineto +closepath +gsave +4.540617e-01 4.540617e-01 4.540617e-01 setrgbcolor +fill +grestore +newpath +6.151854e+01 8.887547e+01 moveto +6.043574e+01 8.849399e+01 lineto +5.934173e+01 8.835904e+01 lineto +6.068407e+01 8.877254e+01 lineto +6.151854e+01 8.887547e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.71583e+01 8.594229e+01 moveto +6.602872e+01 8.716353e+01 lineto +6.62753e+01 8.719395e+01 lineto +6.767563e+01 8.60061e+01 lineto +6.71583e+01 8.594229e+01 lineto +closepath +gsave +5.323059e-01 5.323059e-01 5.323059e-01 setrgbcolor +fill +grestore +newpath +6.71583e+01 8.594229e+01 moveto +6.602872e+01 8.716353e+01 lineto +6.62753e+01 8.719395e+01 lineto +6.767563e+01 8.60061e+01 lineto +6.71583e+01 8.594229e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.827154e+01 8.441867e+01 moveto +6.71583e+01 8.594229e+01 lineto +6.767563e+01 8.60061e+01 lineto +6.90557e+01 8.45154e+01 lineto +6.827154e+01 8.441867e+01 lineto +closepath +gsave +5.55214e-01 5.55214e-01 5.55214e-01 setrgbcolor +fill +grestore +newpath +6.827154e+01 8.441867e+01 moveto +6.71583e+01 8.594229e+01 lineto +6.767563e+01 8.60061e+01 lineto +6.90557e+01 8.45154e+01 lineto +6.827154e+01 8.441867e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.936001e+01 8.26042e+01 moveto +6.827154e+01 8.441867e+01 lineto +6.90557e+01 8.45154e+01 lineto +7.040507e+01 8.273311e+01 lineto +6.936001e+01 8.26042e+01 lineto +closepath +gsave +5.793976e-01 5.793976e-01 5.793976e-01 setrgbcolor +fill +grestore +newpath +6.936001e+01 8.26042e+01 moveto +6.827154e+01 8.441867e+01 lineto +6.90557e+01 8.45154e+01 lineto +7.040507e+01 8.273311e+01 lineto +6.936001e+01 8.26042e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.359048e+01 4.906074e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.332664e+01 4.86785e+00 lineto +6.359048e+01 4.906074e+00 lineto +closepath +gsave +5.131777e-01 5.131777e-01 5.131777e-01 setrgbcolor +fill +grestore +newpath +6.359048e+01 4.906074e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.332664e+01 4.86785e+00 lineto +6.359048e+01 4.906074e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.219163e+01 6.123246e+00 moveto +6.359048e+01 4.906074e+00 lineto +6.332664e+01 4.86785e+00 lineto +6.166595e+01 6.047089e+00 lineto +6.219163e+01 6.123246e+00 lineto +closepath +gsave +5.350943e-01 5.350943e-01 5.350943e-01 setrgbcolor +fill +grestore +newpath +6.219163e+01 6.123246e+00 moveto +6.359048e+01 4.906074e+00 lineto +6.332664e+01 4.86785e+00 lineto +6.166595e+01 6.047089e+00 lineto +6.219163e+01 6.123246e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.081404e+01 7.642304e+00 moveto +6.219163e+01 6.123246e+00 lineto +6.166595e+01 6.047089e+00 lineto +6.003051e+01 7.528789e+00 lineto +6.081404e+01 7.642304e+00 lineto +closepath +gsave +5.587044e-01 5.587044e-01 5.587044e-01 setrgbcolor +fill +grestore +newpath +6.081404e+01 7.642304e+00 moveto +6.219163e+01 6.123246e+00 lineto +6.166595e+01 6.047089e+00 lineto +6.003051e+01 7.528789e+00 lineto +6.081404e+01 7.642304e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.946814e+01 9.451745e+00 moveto +6.081404e+01 7.642304e+00 lineto +6.003051e+01 7.528789e+00 lineto +5.843268e+01 9.301733e+00 lineto +5.946814e+01 9.451745e+00 lineto +closepath +gsave +5.836407e-01 5.836407e-01 5.836407e-01 setrgbcolor +fill +grestore +newpath +5.946814e+01 9.451745e+00 moveto +6.081404e+01 7.642304e+00 lineto +6.003051e+01 7.528789e+00 lineto +5.843268e+01 9.301733e+00 lineto +5.946814e+01 9.451745e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.816412e+01 1.153787e+01 moveto +5.946814e+01 9.451745e+00 lineto +5.843268e+01 9.301733e+00 lineto +5.688457e+01 1.13525e+01 lineto +5.816412e+01 1.153787e+01 lineto +closepath +gsave +6.09451e-01 6.09451e-01 6.09451e-01 setrgbcolor +fill +grestore +newpath +5.816412e+01 1.153787e+01 moveto +5.946814e+01 9.451745e+00 lineto +5.843268e+01 9.301733e+00 lineto +5.688457e+01 1.13525e+01 lineto +5.816412e+01 1.153787e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.691185e+01 1.38849e+01 moveto +5.816412e+01 1.153787e+01 lineto +5.688457e+01 1.13525e+01 lineto +5.539789e+01 1.366556e+01 lineto +5.691185e+01 1.38849e+01 lineto +closepath +gsave +6.356094e-01 6.356094e-01 6.356094e-01 setrgbcolor +fill +grestore +newpath +5.691185e+01 1.38849e+01 moveto +5.816412e+01 1.153787e+01 lineto +5.688457e+01 1.13525e+01 lineto +5.539789e+01 1.366556e+01 lineto +5.691185e+01 1.38849e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.572081e+01 1.647504e+01 moveto +5.691185e+01 1.38849e+01 lineto +5.539789e+01 1.366556e+01 lineto +5.398391e+01 1.622341e+01 lineto +5.572081e+01 1.647504e+01 lineto +closepath +gsave +6.61533e-01 6.61533e-01 6.61533e-01 setrgbcolor +fill +grestore +newpath +5.572081e+01 1.647504e+01 moveto +5.691185e+01 1.38849e+01 lineto +5.539789e+01 1.366556e+01 lineto +5.398391e+01 1.622341e+01 lineto +5.572081e+01 1.647504e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.460002e+01 1.928871e+01 moveto +5.572081e+01 1.647504e+01 lineto +5.398391e+01 1.622341e+01 lineto +5.265333e+01 1.900668e+01 lineto +5.460002e+01 1.928871e+01 lineto +closepath +gsave +6.866017e-01 6.866017e-01 6.866017e-01 setrgbcolor +fill +grestore +newpath +5.460002e+01 1.928871e+01 moveto +5.572081e+01 1.647504e+01 lineto +5.398391e+01 1.622341e+01 lineto +5.265333e+01 1.900668e+01 lineto +5.460002e+01 1.928871e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.355796e+01 2.230459e+01 moveto +5.460002e+01 1.928871e+01 lineto +5.265333e+01 1.900668e+01 lineto +5.141622e+01 2.19943e+01 lineto +5.355796e+01 2.230459e+01 lineto +closepath +gsave +7.101814e-01 7.101814e-01 7.101814e-01 setrgbcolor +fill +grestore +newpath +5.355796e+01 2.230459e+01 moveto +5.460002e+01 1.928871e+01 lineto +5.265333e+01 1.900668e+01 lineto +5.141622e+01 2.19943e+01 lineto +5.355796e+01 2.230459e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.260252e+01 2.549985e+01 moveto +5.355796e+01 2.230459e+01 lineto +5.141622e+01 2.19943e+01 lineto +5.028194e+01 2.516366e+01 lineto +5.260252e+01 2.549985e+01 lineto +closepath +gsave +7.31648e-01 7.31648e-01 7.31648e-01 setrgbcolor +fill +grestore +newpath +5.260252e+01 2.549985e+01 moveto +5.355796e+01 2.230459e+01 lineto +5.141622e+01 2.19943e+01 lineto +5.028194e+01 2.516366e+01 lineto +5.260252e+01 2.549985e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.174093e+01 2.885031e+01 moveto +5.260252e+01 2.549985e+01 lineto +5.028194e+01 2.516366e+01 lineto +4.925908e+01 2.849075e+01 lineto +5.174093e+01 2.885031e+01 lineto +closepath +gsave +7.504128e-01 7.504128e-01 7.504128e-01 setrgbcolor +fill +grestore +newpath +5.174093e+01 2.885031e+01 moveto +5.260252e+01 2.549985e+01 lineto +5.028194e+01 2.516366e+01 lineto +4.925908e+01 2.849075e+01 lineto +5.174093e+01 2.885031e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.097973e+01 3.23306e+01 moveto +5.174093e+01 2.885031e+01 lineto +4.925908e+01 2.849075e+01 lineto +4.835539e+01 3.19504e+01 lineto +5.097973e+01 3.23306e+01 lineto +closepath +gsave +7.659465e-01 7.659465e-01 7.659465e-01 setrgbcolor +fill +grestore +newpath +5.097973e+01 3.23306e+01 moveto +5.174093e+01 2.885031e+01 lineto +4.925908e+01 2.849075e+01 lineto +4.835539e+01 3.19504e+01 lineto +5.097973e+01 3.23306e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.032466e+01 3.591438e+01 moveto +5.097973e+01 3.23306e+01 lineto +4.835539e+01 3.19504e+01 lineto +4.757771e+01 3.551641e+01 lineto +5.032466e+01 3.591438e+01 lineto +closepath +gsave +7.778015e-01 7.778015e-01 7.778015e-01 setrgbcolor +fill +grestore +newpath +5.032466e+01 3.591438e+01 moveto +5.097973e+01 3.23306e+01 lineto +4.835539e+01 3.19504e+01 lineto +4.757771e+01 3.551641e+01 lineto +5.032466e+01 3.591438e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.978069e+01 3.95745e+01 moveto +5.032466e+01 3.591438e+01 lineto +4.757771e+01 3.551641e+01 lineto +4.693192e+01 3.916179e+01 lineto +4.978069e+01 3.95745e+01 lineto +closepath +gsave +7.856311e-01 7.856311e-01 7.856311e-01 setrgbcolor +fill +grestore +newpath +4.978069e+01 3.95745e+01 moveto +5.032466e+01 3.591438e+01 lineto +4.757771e+01 3.551641e+01 lineto +4.693192e+01 3.916179e+01 lineto +4.978069e+01 3.95745e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.935194e+01 4.328327e+01 moveto +4.978069e+01 3.95745e+01 lineto +4.693192e+01 3.916179e+01 lineto +4.642291e+01 4.285893e+01 lineto +4.935194e+01 4.328327e+01 lineto +closepath +gsave +7.89204e-01 7.89204e-01 7.89204e-01 setrgbcolor +fill +grestore +newpath +4.935194e+01 4.328327e+01 moveto +4.978069e+01 3.95745e+01 lineto +4.693192e+01 3.916179e+01 lineto +4.642291e+01 4.285893e+01 lineto +4.935194e+01 4.328327e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.904165e+01 4.701261e+01 moveto +4.935194e+01 4.328327e+01 lineto +4.642291e+01 4.285893e+01 lineto +4.605454e+01 4.657985e+01 lineto +4.904165e+01 4.701261e+01 lineto +closepath +gsave +7.884146e-01 7.884146e-01 7.884146e-01 setrgbcolor +fill +grestore +newpath +4.904165e+01 4.701261e+01 moveto +4.935194e+01 4.328327e+01 lineto +4.642291e+01 4.285893e+01 lineto +4.605454e+01 4.657985e+01 lineto +4.904165e+01 4.701261e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.885217e+01 5.073428e+01 moveto +4.904165e+01 4.701261e+01 lineto +4.605454e+01 4.657985e+01 lineto +4.58296e+01 5.029639e+01 lineto +4.885217e+01 5.073428e+01 lineto +closepath +gsave +7.832873e-01 7.832873e-01 7.832873e-01 setrgbcolor +fill +grestore +newpath +4.885217e+01 5.073428e+01 moveto +4.904165e+01 4.701261e+01 lineto +4.605454e+01 4.657985e+01 lineto +4.58296e+01 5.029639e+01 lineto +4.885217e+01 5.073428e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.878494e+01 5.442011e+01 moveto +4.885217e+01 5.073428e+01 lineto +4.58296e+01 5.029639e+01 lineto +4.574978e+01 5.398039e+01 lineto +4.878494e+01 5.442011e+01 lineto +closepath +gsave +7.739757e-01 7.739757e-01 7.739757e-01 setrgbcolor +fill +grestore +newpath +4.878494e+01 5.442011e+01 moveto +4.885217e+01 5.073428e+01 lineto +4.58296e+01 5.029639e+01 lineto +4.574978e+01 5.398039e+01 lineto +4.878494e+01 5.442011e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.884047e+01 5.80422e+01 moveto +4.878494e+01 5.442011e+01 lineto +4.574978e+01 5.398039e+01 lineto +4.58157e+01 5.760399e+01 lineto +4.884047e+01 5.80422e+01 lineto +closepath +gsave +7.607553e-01 7.607553e-01 7.607553e-01 setrgbcolor +fill +grestore +newpath +4.884047e+01 5.80422e+01 moveto +4.878494e+01 5.442011e+01 lineto +4.574978e+01 5.398039e+01 lineto +4.58157e+01 5.760399e+01 lineto +4.884047e+01 5.80422e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.901832e+01 6.157312e+01 moveto +4.884047e+01 5.80422e+01 lineto +4.58157e+01 5.760399e+01 lineto +4.602685e+01 6.113973e+01 lineto +4.901832e+01 6.157312e+01 lineto +closepath +gsave +7.440119e-01 7.440119e-01 7.440119e-01 setrgbcolor +fill +grestore +newpath +4.901832e+01 6.157312e+01 moveto +4.884047e+01 5.80422e+01 lineto +4.58157e+01 5.760399e+01 lineto +4.602685e+01 6.113973e+01 lineto +4.901832e+01 6.157312e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.931717e+01 6.498615e+01 moveto +4.901832e+01 6.157312e+01 lineto +4.602685e+01 6.113973e+01 lineto +4.638163e+01 6.456086e+01 lineto +4.931717e+01 6.498615e+01 lineto +closepath +gsave +7.242247e-01 7.242247e-01 7.242247e-01 setrgbcolor +fill +grestore +newpath +4.931717e+01 6.498615e+01 moveto +4.901832e+01 6.157312e+01 lineto +4.602685e+01 6.113973e+01 lineto +4.638163e+01 6.456086e+01 lineto +4.931717e+01 6.498615e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.973474e+01 6.825544e+01 moveto +4.931717e+01 6.498615e+01 lineto +4.638163e+01 6.456086e+01 lineto +4.687737e+01 6.784148e+01 lineto +4.973474e+01 6.825544e+01 lineto +closepath +gsave +7.019464e-01 7.019464e-01 7.019464e-01 setrgbcolor +fill +grestore +newpath +4.973474e+01 6.825544e+01 moveto +4.931717e+01 6.498615e+01 lineto +4.638163e+01 6.456086e+01 lineto +4.687737e+01 6.784148e+01 lineto +4.973474e+01 6.825544e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.026788e+01 7.135625e+01 moveto +4.973474e+01 6.825544e+01 lineto +4.687737e+01 6.784148e+01 lineto +4.75103e+01 7.095675e+01 lineto +5.026788e+01 7.135625e+01 lineto +closepath +gsave +6.7778e-01 6.7778e-01 6.7778e-01 setrgbcolor +fill +grestore +newpath +5.026788e+01 7.135625e+01 moveto +4.973474e+01 6.825544e+01 lineto +4.687737e+01 6.784148e+01 lineto +4.75103e+01 7.095675e+01 lineto +5.026788e+01 7.135625e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.091255e+01 7.42651e+01 moveto +5.026788e+01 7.135625e+01 lineto +4.75103e+01 7.095675e+01 lineto +4.827563e+01 7.388308e+01 lineto +5.091255e+01 7.42651e+01 lineto +closepath +gsave +6.523541e-01 6.523541e-01 6.523541e-01 setrgbcolor +fill +grestore +newpath +5.091255e+01 7.42651e+01 moveto +5.026788e+01 7.135625e+01 lineto +4.75103e+01 7.095675e+01 lineto +4.827563e+01 7.388308e+01 lineto +5.091255e+01 7.42651e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.166386e+01 7.695998e+01 moveto +5.091255e+01 7.42651e+01 lineto +4.827563e+01 7.388308e+01 lineto +4.916758e+01 7.659833e+01 lineto +5.166386e+01 7.695998e+01 lineto +closepath +gsave +6.262986e-01 6.262986e-01 6.262986e-01 setrgbcolor +fill +grestore +newpath +5.166386e+01 7.695998e+01 moveto +5.091255e+01 7.42651e+01 lineto +4.827563e+01 7.388308e+01 lineto +4.916758e+01 7.659833e+01 lineto +5.166386e+01 7.695998e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.251614e+01 7.942047e+01 moveto +5.166386e+01 7.695998e+01 lineto +4.916758e+01 7.659833e+01 lineto +5.017939e+01 7.908193e+01 lineto +5.251614e+01 7.942047e+01 lineto +closepath +gsave +6.002207e-01 6.002207e-01 6.002207e-01 setrgbcolor +fill +grestore +newpath +5.251614e+01 7.942047e+01 moveto +5.166386e+01 7.695998e+01 lineto +4.916758e+01 7.659833e+01 lineto +5.017939e+01 7.908193e+01 lineto +5.251614e+01 7.942047e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.346292e+01 8.162795e+01 moveto +5.251614e+01 7.942047e+01 lineto +5.017939e+01 7.908193e+01 lineto +5.130339e+01 8.131509e+01 lineto +5.346292e+01 8.162795e+01 lineto +closepath +gsave +5.746831e-01 5.746831e-01 5.746831e-01 setrgbcolor +fill +grestore +newpath +5.346292e+01 8.162795e+01 moveto +5.251614e+01 7.942047e+01 lineto +5.017939e+01 7.908193e+01 lineto +5.130339e+01 8.131509e+01 lineto +5.346292e+01 8.162795e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.449704e+01 8.356572e+01 moveto +5.346292e+01 8.162795e+01 lineto +5.130339e+01 8.131509e+01 lineto +5.253108e+01 8.32809e+01 lineto +5.449704e+01 8.356572e+01 lineto +closepath +gsave +5.501856e-01 5.501856e-01 5.501856e-01 setrgbcolor +fill +grestore +newpath +5.449704e+01 8.356572e+01 moveto +5.346292e+01 8.162795e+01 lineto +5.130339e+01 8.131509e+01 lineto +5.253108e+01 8.32809e+01 lineto +5.449704e+01 8.356572e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.561068e+01 8.521909e+01 moveto +5.449704e+01 8.356572e+01 lineto +5.253108e+01 8.32809e+01 lineto +5.385317e+01 8.496447e+01 lineto +5.561068e+01 8.521909e+01 lineto +closepath +gsave +5.271505e-01 5.271505e-01 5.271505e-01 setrgbcolor +fill +grestore +newpath +5.561068e+01 8.521909e+01 moveto +5.449704e+01 8.356572e+01 lineto +5.253108e+01 8.32809e+01 lineto +5.385317e+01 8.496447e+01 lineto +5.561068e+01 8.521909e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.67954e+01 8.657556e+01 moveto +5.561068e+01 8.521909e+01 lineto +5.385317e+01 8.496447e+01 lineto +5.525964e+01 8.635307e+01 lineto +5.67954e+01 8.657556e+01 lineto +closepath +gsave +5.059124e-01 5.059124e-01 5.059124e-01 setrgbcolor +fill +grestore +newpath +5.67954e+01 8.657556e+01 moveto +5.561068e+01 8.521909e+01 lineto +5.385317e+01 8.496447e+01 lineto +5.525964e+01 8.635307e+01 lineto +5.67954e+01 8.657556e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.804223e+01 8.762486e+01 moveto +5.67954e+01 8.657556e+01 lineto +5.525964e+01 8.635307e+01 lineto +5.673986e+01 8.743618e+01 lineto +5.804223e+01 8.762486e+01 lineto +closepath +gsave +4.867122e-01 4.867122e-01 4.867122e-01 setrgbcolor +fill +grestore +newpath +5.804223e+01 8.762486e+01 moveto +5.67954e+01 8.657556e+01 lineto +5.525964e+01 8.635307e+01 lineto +5.673986e+01 8.743618e+01 lineto +5.804223e+01 8.762486e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.934173e+01 8.835904e+01 moveto +5.804223e+01 8.762486e+01 lineto +5.673986e+01 8.743618e+01 lineto +5.82826e+01 8.82056e+01 lineto +5.934173e+01 8.835904e+01 lineto +closepath +gsave +4.696973e-01 4.696973e-01 4.696973e-01 setrgbcolor +fill +grestore +newpath +5.934173e+01 8.835904e+01 moveto +5.804223e+01 8.762486e+01 lineto +5.673986e+01 8.743618e+01 lineto +5.82826e+01 8.82056e+01 lineto +5.934173e+01 8.835904e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.068407e+01 8.877254e+01 moveto +5.934173e+01 8.835904e+01 lineto +5.82826e+01 8.82056e+01 lineto +5.98762e+01 8.86555e+01 lineto +6.068407e+01 8.877254e+01 lineto +closepath +gsave +4.549248e-01 4.549248e-01 4.549248e-01 setrgbcolor +fill +grestore +newpath +6.068407e+01 8.877254e+01 moveto +5.934173e+01 8.835904e+01 lineto +5.82826e+01 8.82056e+01 lineto +5.98762e+01 8.86555e+01 lineto +6.068407e+01 8.877254e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.767563e+01 8.60061e+01 moveto +6.62753e+01 8.719395e+01 lineto +6.651401e+01 8.722853e+01 lineto +6.817645e+01 8.607866e+01 lineto +6.767563e+01 8.60061e+01 lineto +closepath +gsave +5.329246e-01 5.329246e-01 5.329246e-01 setrgbcolor +fill +grestore +newpath +6.767563e+01 8.60061e+01 moveto +6.62753e+01 8.719395e+01 lineto +6.651401e+01 8.722853e+01 lineto +6.817645e+01 8.607866e+01 lineto +6.767563e+01 8.60061e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.90557e+01 8.45154e+01 moveto +6.767563e+01 8.60061e+01 lineto +6.817645e+01 8.607866e+01 lineto +6.981485e+01 8.462538e+01 lineto +6.90557e+01 8.45154e+01 lineto +closepath +gsave +5.563875e-01 5.563875e-01 5.563875e-01 setrgbcolor +fill +grestore +newpath +6.90557e+01 8.45154e+01 moveto +6.767563e+01 8.60061e+01 lineto +6.817645e+01 8.607866e+01 lineto +6.981485e+01 8.462538e+01 lineto +6.90557e+01 8.45154e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.040507e+01 8.273311e+01 moveto +6.90557e+01 8.45154e+01 lineto +6.981485e+01 8.462538e+01 lineto +7.14168e+01 8.287968e+01 lineto +7.040507e+01 8.273311e+01 lineto +closepath +gsave +5.812156e-01 5.812156e-01 5.812156e-01 setrgbcolor +fill +grestore +newpath +7.040507e+01 8.273311e+01 moveto +6.90557e+01 8.45154e+01 lineto +6.981485e+01 8.462538e+01 lineto +7.14168e+01 8.287968e+01 lineto +7.040507e+01 8.273311e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.332664e+01 4.86785e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.307312e+01 4.825257e+00 lineto +6.332664e+01 4.86785e+00 lineto +closepath +gsave +5.133108e-01 5.133108e-01 5.133108e-01 setrgbcolor +fill +grestore +newpath +6.332664e+01 4.86785e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.307312e+01 4.825257e+00 lineto +6.332664e+01 4.86785e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.166595e+01 6.047089e+00 moveto +6.332664e+01 4.86785e+00 lineto +6.307312e+01 4.825257e+00 lineto +6.116083e+01 5.962225e+00 lineto +6.166595e+01 6.047089e+00 lineto +closepath +gsave +5.355429e-01 5.355429e-01 5.355429e-01 setrgbcolor +fill +grestore +newpath +6.166595e+01 6.047089e+00 moveto +6.332664e+01 4.86785e+00 lineto +6.307312e+01 4.825257e+00 lineto +6.116083e+01 5.962225e+00 lineto +6.166595e+01 6.047089e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.003051e+01 7.528789e+00 moveto +6.166595e+01 6.047089e+00 lineto +6.116083e+01 5.962225e+00 lineto +5.927761e+01 7.402296e+00 lineto +6.003051e+01 7.528789e+00 lineto +closepath +gsave +5.59533e-01 5.59533e-01 5.59533e-01 setrgbcolor +fill +grestore +newpath +6.003051e+01 7.528789e+00 moveto +6.166595e+01 6.047089e+00 lineto +6.116083e+01 5.962225e+00 lineto +5.927761e+01 7.402296e+00 lineto +6.003051e+01 7.528789e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.843268e+01 9.301733e+00 moveto +6.003051e+01 7.528789e+00 lineto +5.927761e+01 7.402296e+00 lineto +5.74377e+01 9.134569e+00 lineto +5.843268e+01 9.301733e+00 lineto +closepath +gsave +5.849104e-01 5.849104e-01 5.849104e-01 setrgbcolor +fill +grestore +newpath +5.843268e+01 9.301733e+00 moveto +6.003051e+01 7.528789e+00 lineto +5.927761e+01 7.402296e+00 lineto +5.74377e+01 9.134569e+00 lineto +5.843268e+01 9.301733e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.688457e+01 1.13525e+01 moveto +5.843268e+01 9.301733e+00 lineto +5.74377e+01 9.134569e+00 lineto +5.565505e+01 1.114593e+01 lineto +5.688457e+01 1.13525e+01 lineto +closepath +gsave +6.112158e-01 6.112158e-01 6.112158e-01 setrgbcolor +fill +grestore +newpath +5.688457e+01 1.13525e+01 moveto +5.843268e+01 9.301733e+00 lineto +5.74377e+01 9.134569e+00 lineto +5.565505e+01 1.114593e+01 lineto +5.688457e+01 1.13525e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.539789e+01 1.366556e+01 moveto +5.688457e+01 1.13525e+01 lineto +5.565505e+01 1.114593e+01 lineto +5.394314e+01 1.342115e+01 lineto +5.539789e+01 1.366556e+01 lineto +closepath +gsave +6.379136e-01 6.379136e-01 6.379136e-01 setrgbcolor +fill +grestore +newpath +5.539789e+01 1.366556e+01 moveto +5.688457e+01 1.13525e+01 lineto +5.565505e+01 1.114593e+01 lineto +5.394314e+01 1.342115e+01 lineto +5.539789e+01 1.366556e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.398391e+01 1.622341e+01 moveto +5.539789e+01 1.366556e+01 lineto +5.394314e+01 1.342115e+01 lineto +5.231494e+01 1.594301e+01 lineto +5.398391e+01 1.622341e+01 lineto +closepath +gsave +6.644087e-01 6.644087e-01 6.644087e-01 setrgbcolor +fill +grestore +newpath +5.398391e+01 1.622341e+01 moveto +5.539789e+01 1.366556e+01 lineto +5.394314e+01 1.342115e+01 lineto +5.231494e+01 1.594301e+01 lineto +5.398391e+01 1.622341e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.265333e+01 1.900668e+01 moveto +5.398391e+01 1.622341e+01 lineto +5.231494e+01 1.594301e+01 lineto +5.078277e+01 1.869241e+01 lineto +5.265333e+01 1.900668e+01 lineto +closepath +gsave +6.900663e-01 6.900663e-01 6.900663e-01 setrgbcolor +fill +grestore +newpath +5.265333e+01 1.900668e+01 moveto +5.398391e+01 1.622341e+01 lineto +5.231494e+01 1.594301e+01 lineto +5.078277e+01 1.869241e+01 lineto +5.265333e+01 1.900668e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.141622e+01 2.19943e+01 moveto +5.265333e+01 1.900668e+01 lineto +5.078277e+01 1.869241e+01 lineto +4.935822e+01 2.164854e+01 lineto +5.141622e+01 2.19943e+01 lineto +closepath +gsave +7.142359e-01 7.142359e-01 7.142359e-01 setrgbcolor +fill +grestore +newpath +5.141622e+01 2.19943e+01 moveto +5.265333e+01 1.900668e+01 lineto +5.078277e+01 1.869241e+01 lineto +4.935822e+01 2.164854e+01 lineto +5.141622e+01 2.19943e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.028194e+01 2.516366e+01 moveto +5.141622e+01 2.19943e+01 lineto +4.935822e+01 2.164854e+01 lineto +4.80521e+01 2.478902e+01 lineto +5.028194e+01 2.516366e+01 lineto +closepath +gsave +7.362762e-01 7.362762e-01 7.362762e-01 setrgbcolor +fill +grestore +newpath +5.028194e+01 2.516366e+01 moveto +5.141622e+01 2.19943e+01 lineto +4.935822e+01 2.164854e+01 lineto +4.80521e+01 2.478902e+01 lineto +5.028194e+01 2.516366e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.925908e+01 2.849075e+01 moveto +5.028194e+01 2.516366e+01 lineto +4.80521e+01 2.478902e+01 lineto +4.687427e+01 2.809008e+01 lineto +4.925908e+01 2.849075e+01 lineto +closepath +gsave +7.55581e-01 7.55581e-01 7.55581e-01 setrgbcolor +fill +grestore +newpath +4.925908e+01 2.849075e+01 moveto +5.028194e+01 2.516366e+01 lineto +4.80521e+01 2.478902e+01 lineto +4.687427e+01 2.809008e+01 lineto +4.925908e+01 2.849075e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.835539e+01 3.19504e+01 moveto +4.925908e+01 2.849075e+01 lineto +4.687427e+01 2.809008e+01 lineto +4.583367e+01 3.152673e+01 lineto +4.835539e+01 3.19504e+01 lineto +closepath +gsave +7.716037e-01 7.716037e-01 7.716037e-01 setrgbcolor +fill +grestore +newpath +4.835539e+01 3.19504e+01 moveto +4.925908e+01 2.849075e+01 lineto +4.687427e+01 2.809008e+01 lineto +4.583367e+01 3.152673e+01 lineto +4.835539e+01 3.19504e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.757771e+01 3.551641e+01 moveto +4.835539e+01 3.19504e+01 lineto +4.583367e+01 3.152673e+01 lineto +4.493816e+01 3.507295e+01 lineto +4.757771e+01 3.551641e+01 lineto +closepath +gsave +7.838812e-01 7.838812e-01 7.838812e-01 setrgbcolor +fill +grestore +newpath +4.757771e+01 3.551641e+01 moveto +4.835539e+01 3.19504e+01 lineto +4.583367e+01 3.152673e+01 lineto +4.493816e+01 3.507295e+01 lineto +4.757771e+01 3.551641e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.693192e+01 3.916179e+01 moveto +4.757771e+01 3.551641e+01 lineto +4.493816e+01 3.507295e+01 lineto +4.419454e+01 3.870188e+01 lineto +4.693192e+01 3.916179e+01 lineto +closepath +gsave +7.920529e-01 7.920529e-01 7.920529e-01 setrgbcolor +fill +grestore +newpath +4.693192e+01 3.916179e+01 moveto +4.757771e+01 3.551641e+01 lineto +4.493816e+01 3.507295e+01 lineto +4.419454e+01 3.870188e+01 lineto +4.693192e+01 3.916179e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.642291e+01 4.285893e+01 moveto +4.693192e+01 3.916179e+01 lineto +4.419454e+01 3.870188e+01 lineto +4.360841e+01 4.238607e+01 lineto +4.642291e+01 4.285893e+01 lineto +closepath +gsave +7.958764e-01 7.958764e-01 7.958764e-01 setrgbcolor +fill +grestore +newpath +4.642291e+01 4.285893e+01 moveto +4.693192e+01 3.916179e+01 lineto +4.419454e+01 3.870188e+01 lineto +4.360841e+01 4.238607e+01 lineto +4.642291e+01 4.285893e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.605454e+01 4.657985e+01 moveto +4.642291e+01 4.285893e+01 lineto +4.360841e+01 4.238607e+01 lineto +4.318423e+01 4.609762e+01 lineto +4.605454e+01 4.657985e+01 lineto +closepath +gsave +7.952382e-01 7.952382e-01 7.952382e-01 setrgbcolor +fill +grestore +newpath +4.605454e+01 4.657985e+01 moveto +4.642291e+01 4.285893e+01 lineto +4.360841e+01 4.238607e+01 lineto +4.318423e+01 4.609762e+01 lineto +4.605454e+01 4.657985e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.58296e+01 5.029639e+01 moveto +4.605454e+01 4.657985e+01 lineto +4.318423e+01 4.609762e+01 lineto +4.292521e+01 4.980842e+01 lineto +4.58296e+01 5.029639e+01 lineto +closepath +gsave +7.901584e-01 7.901584e-01 7.901584e-01 setrgbcolor +fill +grestore +newpath +4.58296e+01 5.029639e+01 moveto +4.605454e+01 4.657985e+01 lineto +4.318423e+01 4.609762e+01 lineto +4.292521e+01 4.980842e+01 lineto +4.58296e+01 5.029639e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.574978e+01 5.398039e+01 moveto +4.58296e+01 5.029639e+01 lineto +4.292521e+01 4.980842e+01 lineto +4.28333e+01 5.34904e+01 lineto +4.574978e+01 5.398039e+01 lineto +closepath +gsave +7.807897e-01 7.807897e-01 7.807897e-01 setrgbcolor +fill +grestore +newpath +4.574978e+01 5.398039e+01 moveto +4.58296e+01 5.029639e+01 lineto +4.292521e+01 4.980842e+01 lineto +4.28333e+01 5.34904e+01 lineto +4.574978e+01 5.398039e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.58157e+01 5.760399e+01 moveto +4.574978e+01 5.398039e+01 lineto +4.28333e+01 5.34904e+01 lineto +4.29092e+01 5.711567e+01 lineto +4.58157e+01 5.760399e+01 lineto +closepath +gsave +7.674106e-01 7.674106e-01 7.674106e-01 setrgbcolor +fill +grestore +newpath +4.58157e+01 5.760399e+01 moveto +4.574978e+01 5.398039e+01 lineto +4.28333e+01 5.34904e+01 lineto +4.29092e+01 5.711567e+01 lineto +4.58157e+01 5.760399e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.602685e+01 6.113973e+01 moveto +4.58157e+01 5.760399e+01 lineto +4.29092e+01 5.711567e+01 lineto +4.315235e+01 6.065679e+01 lineto +4.602685e+01 6.113973e+01 lineto +closepath +gsave +7.504136e-01 7.504136e-01 7.504136e-01 setrgbcolor +fill +grestore +newpath +4.602685e+01 6.113973e+01 moveto +4.58157e+01 5.760399e+01 lineto +4.29092e+01 5.711567e+01 lineto +4.315235e+01 6.065679e+01 lineto +4.602685e+01 6.113973e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.638163e+01 6.456086e+01 moveto +4.602685e+01 6.113973e+01 lineto +4.315235e+01 6.065679e+01 lineto +4.356088e+01 6.408695e+01 lineto +4.638163e+01 6.456086e+01 lineto +closepath +gsave +7.302875e-01 7.302875e-01 7.302875e-01 setrgbcolor +fill +grestore +newpath +4.638163e+01 6.456086e+01 moveto +4.602685e+01 6.113973e+01 lineto +4.315235e+01 6.065679e+01 lineto +4.356088e+01 6.408695e+01 lineto +4.638163e+01 6.456086e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.687737e+01 6.784148e+01 moveto +4.638163e+01 6.456086e+01 lineto +4.356088e+01 6.408695e+01 lineto +4.413172e+01 6.738019e+01 lineto +4.687737e+01 6.784148e+01 lineto +closepath +gsave +7.075977e-01 7.075977e-01 7.075977e-01 setrgbcolor +fill +grestore +newpath +4.687737e+01 6.784148e+01 moveto +4.638163e+01 6.456086e+01 lineto +4.356088e+01 6.408695e+01 lineto +4.413172e+01 6.738019e+01 lineto +4.687737e+01 6.784148e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.75103e+01 7.095675e+01 moveto +4.687737e+01 6.784148e+01 lineto +4.413172e+01 6.738019e+01 lineto +4.486054e+01 7.051156e+01 lineto +4.75103e+01 7.095675e+01 lineto +closepath +gsave +6.829614e-01 6.829614e-01 6.829614e-01 setrgbcolor +fill +grestore +newpath +4.75103e+01 7.095675e+01 moveto +4.687737e+01 6.784148e+01 lineto +4.413172e+01 6.738019e+01 lineto +4.486054e+01 7.051156e+01 lineto +4.75103e+01 7.095675e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.827563e+01 7.388308e+01 moveto +4.75103e+01 7.095675e+01 lineto +4.486054e+01 7.051156e+01 lineto +4.574183e+01 7.345738e+01 lineto +4.827563e+01 7.388308e+01 lineto +closepath +gsave +6.570235e-01 6.570235e-01 6.570235e-01 setrgbcolor +fill +grestore +newpath +4.827563e+01 7.388308e+01 moveto +4.75103e+01 7.095675e+01 lineto +4.486054e+01 7.051156e+01 lineto +4.574183e+01 7.345738e+01 lineto +4.827563e+01 7.388308e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.916758e+01 7.659833e+01 moveto +4.827563e+01 7.388308e+01 lineto +4.574183e+01 7.345738e+01 lineto +4.676891e+01 7.619533e+01 lineto +4.916758e+01 7.659833e+01 lineto +closepath +gsave +6.304304e-01 6.304304e-01 6.304304e-01 setrgbcolor +fill +grestore +newpath +4.916758e+01 7.659833e+01 moveto +4.827563e+01 7.388308e+01 lineto +4.574183e+01 7.345738e+01 lineto +4.676891e+01 7.619533e+01 lineto +4.916758e+01 7.659833e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.017939e+01 7.908193e+01 moveto +4.916758e+01 7.659833e+01 lineto +4.676891e+01 7.619533e+01 lineto +4.793401e+01 7.870469e+01 lineto +5.017939e+01 7.908193e+01 lineto +closepath +gsave +6.038057e-01 6.038057e-01 6.038057e-01 setrgbcolor +fill +grestore +newpath +5.017939e+01 7.908193e+01 moveto +4.916758e+01 7.659833e+01 lineto +4.676891e+01 7.619533e+01 lineto +4.793401e+01 7.870469e+01 lineto +5.017939e+01 7.908193e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.130339e+01 8.131509e+01 moveto +5.017939e+01 7.908193e+01 lineto +4.793401e+01 7.870469e+01 lineto +4.92283e+01 8.096646e+01 lineto +5.130339e+01 8.131509e+01 lineto +closepath +gsave +5.77728e-01 5.77728e-01 5.77728e-01 setrgbcolor +fill +grestore +newpath +5.130339e+01 8.131509e+01 moveto +5.017939e+01 7.908193e+01 lineto +4.793401e+01 7.870469e+01 lineto +4.92283e+01 8.096646e+01 lineto +5.130339e+01 8.131509e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.253108e+01 8.32809e+01 moveto +5.130339e+01 8.131509e+01 lineto +4.92283e+01 8.096646e+01 lineto +5.0642e+01 8.296352e+01 lineto +5.253108e+01 8.32809e+01 lineto +closepath +gsave +5.527114e-01 5.527114e-01 5.527114e-01 setrgbcolor +fill +grestore +newpath +5.253108e+01 8.32809e+01 moveto +5.130339e+01 8.131509e+01 lineto +4.92283e+01 8.096646e+01 lineto +5.0642e+01 8.296352e+01 lineto +5.253108e+01 8.32809e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.385317e+01 8.496447e+01 moveto +5.253108e+01 8.32809e+01 lineto +5.0642e+01 8.296352e+01 lineto +5.216438e+01 8.468074e+01 lineto +5.385317e+01 8.496447e+01 lineto +closepath +gsave +5.291903e-01 5.291903e-01 5.291903e-01 setrgbcolor +fill +grestore +newpath +5.385317e+01 8.496447e+01 moveto +5.253108e+01 8.32809e+01 lineto +5.0642e+01 8.296352e+01 lineto +5.216438e+01 8.468074e+01 lineto +5.385317e+01 8.496447e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.525964e+01 8.635307e+01 moveto +5.385317e+01 8.496447e+01 lineto +5.216438e+01 8.468074e+01 lineto +5.378394e+01 8.610514e+01 lineto +5.525964e+01 8.635307e+01 lineto +closepath +gsave +5.075091e-01 5.075091e-01 5.075091e-01 setrgbcolor +fill +grestore +newpath +5.525964e+01 8.635307e+01 moveto +5.385317e+01 8.496447e+01 lineto +5.216438e+01 8.468074e+01 lineto +5.378394e+01 8.610514e+01 lineto +5.525964e+01 8.635307e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.673986e+01 8.743618e+01 moveto +5.525964e+01 8.635307e+01 lineto +5.378394e+01 8.610514e+01 lineto +5.548842e+01 8.722593e+01 lineto +5.673986e+01 8.743618e+01 lineto +closepath +gsave +4.879161e-01 4.879161e-01 4.879161e-01 setrgbcolor +fill +grestore +newpath +5.673986e+01 8.743618e+01 moveto +5.525964e+01 8.635307e+01 lineto +5.378394e+01 8.610514e+01 lineto +5.548842e+01 8.722593e+01 lineto +5.673986e+01 8.743618e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.82826e+01 8.82056e+01 moveto +5.673986e+01 8.743618e+01 lineto +5.548842e+01 8.722593e+01 lineto +5.726489e+01 8.803461e+01 lineto +5.82826e+01 8.82056e+01 lineto +closepath +gsave +4.705629e-01 4.705629e-01 4.705629e-01 setrgbcolor +fill +grestore +newpath +5.82826e+01 8.82056e+01 moveto +5.673986e+01 8.743618e+01 lineto +5.548842e+01 8.722593e+01 lineto +5.726489e+01 8.803461e+01 lineto +5.82826e+01 8.82056e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.98762e+01 8.86555e+01 moveto +5.82826e+01 8.82056e+01 lineto +5.726489e+01 8.803461e+01 lineto +5.909993e+01 8.852508e+01 lineto +5.98762e+01 8.86555e+01 lineto +closepath +gsave +4.555084e-01 4.555084e-01 4.555084e-01 setrgbcolor +fill +grestore +newpath +5.98762e+01 8.86555e+01 moveto +5.82826e+01 8.82056e+01 lineto +5.726489e+01 8.803461e+01 lineto +5.909993e+01 8.852508e+01 lineto +5.98762e+01 8.86555e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.817645e+01 8.607866e+01 moveto +6.651401e+01 8.722853e+01 lineto +6.674339e+01 8.726707e+01 lineto +6.86577e+01 8.615952e+01 lineto +6.817645e+01 8.607866e+01 lineto +closepath +gsave +5.333402e-01 5.333402e-01 5.333402e-01 setrgbcolor +fill +grestore +newpath +6.817645e+01 8.607866e+01 moveto +6.651401e+01 8.722853e+01 lineto +6.674339e+01 8.726707e+01 lineto +6.86577e+01 8.615952e+01 lineto +6.817645e+01 8.607866e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.981485e+01 8.462538e+01 moveto +6.817645e+01 8.607866e+01 lineto +6.86577e+01 8.615952e+01 lineto +7.054432e+01 8.474793e+01 lineto +6.981485e+01 8.462538e+01 lineto +closepath +gsave +5.571772e-01 5.571772e-01 5.571772e-01 setrgbcolor +fill +grestore +newpath +6.981485e+01 8.462538e+01 moveto +6.817645e+01 8.607866e+01 lineto +6.86577e+01 8.615952e+01 lineto +7.054432e+01 8.474793e+01 lineto +6.981485e+01 8.462538e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.14168e+01 8.287968e+01 moveto +6.981485e+01 8.462538e+01 lineto +7.054432e+01 8.474793e+01 lineto +7.238896e+01 8.304302e+01 lineto +7.14168e+01 8.287968e+01 lineto +closepath +gsave +5.824407e-01 5.824407e-01 5.824407e-01 setrgbcolor +fill +grestore +newpath +7.14168e+01 8.287968e+01 moveto +6.981485e+01 8.462538e+01 lineto +7.054432e+01 8.474793e+01 lineto +7.238896e+01 8.304302e+01 lineto +7.14168e+01 8.287968e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.307312e+01 4.825257e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.283148e+01 4.778555e+00 lineto +6.307312e+01 4.825257e+00 lineto +closepath +gsave +5.133776e-01 5.133776e-01 5.133776e-01 setrgbcolor +fill +grestore +newpath +6.307312e+01 4.825257e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.283148e+01 4.778555e+00 lineto +6.307312e+01 4.825257e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.116083e+01 5.962225e+00 moveto +6.307312e+01 4.825257e+00 lineto +6.283148e+01 4.778555e+00 lineto +6.067938e+01 5.869175e+00 lineto +6.116083e+01 5.962225e+00 lineto +closepath +gsave +5.357682e-01 5.357682e-01 5.357682e-01 setrgbcolor +fill +grestore +newpath +6.116083e+01 5.962225e+00 moveto +6.307312e+01 4.825257e+00 lineto +6.283148e+01 4.778555e+00 lineto +6.067938e+01 5.869175e+00 lineto +6.116083e+01 5.962225e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.927761e+01 7.402296e+00 moveto +6.116083e+01 5.962225e+00 lineto +6.067938e+01 5.869175e+00 lineto +5.855999e+01 7.263603e+00 lineto +5.927761e+01 7.402296e+00 lineto +closepath +gsave +5.599497e-01 5.599497e-01 5.599497e-01 setrgbcolor +fill +grestore +newpath +5.927761e+01 7.402296e+00 moveto +6.116083e+01 5.962225e+00 lineto +6.067938e+01 5.869175e+00 lineto +5.855999e+01 7.263603e+00 lineto +5.927761e+01 7.402296e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.74377e+01 9.134569e+00 moveto +5.927761e+01 7.402296e+00 lineto +5.855999e+01 7.263603e+00 lineto +5.648936e+01 8.951282e+00 lineto +5.74377e+01 9.134569e+00 lineto +closepath +gsave +5.855494e-01 5.855494e-01 5.855494e-01 setrgbcolor +fill +grestore +newpath +5.74377e+01 9.134569e+00 moveto +5.927761e+01 7.402296e+00 lineto +5.855999e+01 7.263603e+00 lineto +5.648936e+01 8.951282e+00 lineto +5.74377e+01 9.134569e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.565505e+01 1.114593e+01 moveto +5.74377e+01 9.134569e+00 lineto +5.648936e+01 8.951282e+00 lineto +5.448315e+01 1.091944e+01 lineto +5.565505e+01 1.114593e+01 lineto +closepath +gsave +6.121046e-01 6.121046e-01 6.121046e-01 setrgbcolor +fill +grestore +newpath +5.565505e+01 1.114593e+01 moveto +5.74377e+01 9.134569e+00 lineto +5.648936e+01 8.951282e+00 lineto +5.448315e+01 1.091944e+01 lineto +5.565505e+01 1.114593e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.394314e+01 1.342115e+01 moveto +5.565505e+01 1.114593e+01 lineto +5.448315e+01 1.091944e+01 lineto +5.255656e+01 1.315317e+01 lineto +5.394314e+01 1.342115e+01 lineto +closepath +gsave +6.39075e-01 6.39075e-01 6.39075e-01 setrgbcolor +fill +grestore +newpath +5.394314e+01 1.342115e+01 moveto +5.565505e+01 1.114593e+01 lineto +5.448315e+01 1.091944e+01 lineto +5.255656e+01 1.315317e+01 lineto +5.394314e+01 1.342115e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.231494e+01 1.594301e+01 moveto +5.394314e+01 1.342115e+01 lineto +5.255656e+01 1.315317e+01 lineto +5.072417e+01 1.563556e+01 lineto +5.231494e+01 1.594301e+01 lineto +closepath +gsave +6.658589e-01 6.658589e-01 6.658589e-01 setrgbcolor +fill +grestore +newpath +5.231494e+01 1.594301e+01 moveto +5.394314e+01 1.342115e+01 lineto +5.255656e+01 1.315317e+01 lineto +5.072417e+01 1.563556e+01 lineto +5.231494e+01 1.594301e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.078277e+01 1.869241e+01 moveto +5.231494e+01 1.594301e+01 lineto +5.072417e+01 1.563556e+01 lineto +4.899985e+01 1.834783e+01 lineto +5.078277e+01 1.869241e+01 lineto +closepath +gsave +6.918144e-01 6.918144e-01 6.918144e-01 setrgbcolor +fill +grestore +newpath +5.078277e+01 1.869241e+01 moveto +5.231494e+01 1.594301e+01 lineto +5.072417e+01 1.563556e+01 lineto +4.899985e+01 1.834783e+01 lineto +5.078277e+01 1.869241e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.935822e+01 2.164854e+01 moveto +5.078277e+01 1.869241e+01 lineto +4.899985e+01 1.834783e+01 lineto +4.739667e+01 2.126943e+01 lineto +4.935822e+01 2.164854e+01 lineto +closepath +gsave +7.162827e-01 7.162827e-01 7.162827e-01 setrgbcolor +fill +grestore +newpath +4.935822e+01 2.164854e+01 moveto +5.078277e+01 1.869241e+01 lineto +4.899985e+01 1.834783e+01 lineto +4.739667e+01 2.126943e+01 lineto +4.935822e+01 2.164854e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.80521e+01 2.478902e+01 moveto +4.935822e+01 2.164854e+01 lineto +4.739667e+01 2.126943e+01 lineto +4.592675e+01 2.437826e+01 lineto +4.80521e+01 2.478902e+01 lineto +closepath +gsave +7.386136e-01 7.386136e-01 7.386136e-01 setrgbcolor +fill +grestore +newpath +4.80521e+01 2.478902e+01 moveto +4.935822e+01 2.164854e+01 lineto +4.739667e+01 2.126943e+01 lineto +4.592675e+01 2.437826e+01 lineto +4.80521e+01 2.478902e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.687427e+01 2.809008e+01 moveto +4.80521e+01 2.478902e+01 lineto +4.592675e+01 2.437826e+01 lineto +4.460122e+01 2.765077e+01 lineto +4.687427e+01 2.809008e+01 lineto +closepath +gsave +7.58192e-01 7.58192e-01 7.58192e-01 setrgbcolor +fill +grestore +newpath +4.687427e+01 2.809008e+01 moveto +4.80521e+01 2.478902e+01 lineto +4.592675e+01 2.437826e+01 lineto +4.460122e+01 2.765077e+01 lineto +4.687427e+01 2.809008e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.583367e+01 3.152673e+01 moveto +4.687427e+01 2.809008e+01 lineto +4.460122e+01 2.765077e+01 lineto +4.343012e+01 3.10622e+01 lineto +4.583367e+01 3.152673e+01 lineto +closepath +gsave +7.744629e-01 7.744629e-01 7.744629e-01 setrgbcolor +fill +grestore +newpath +4.583367e+01 3.152673e+01 moveto +4.687427e+01 2.809008e+01 lineto +4.460122e+01 2.765077e+01 lineto +4.343012e+01 3.10622e+01 lineto +4.583367e+01 3.152673e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.493816e+01 3.507295e+01 moveto +4.583367e+01 3.152673e+01 lineto +4.343012e+01 3.10622e+01 lineto +4.242231e+01 3.458671e+01 lineto +4.493816e+01 3.507295e+01 lineto +closepath +gsave +7.869549e-01 7.869549e-01 7.869549e-01 setrgbcolor +fill +grestore +newpath +4.493816e+01 3.507295e+01 moveto +4.583367e+01 3.152673e+01 lineto +4.343012e+01 3.10622e+01 lineto +4.242231e+01 3.458671e+01 lineto +4.493816e+01 3.507295e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.419454e+01 3.870188e+01 moveto +4.493816e+01 3.507295e+01 lineto +4.242231e+01 3.458671e+01 lineto +4.158543e+01 3.819762e+01 lineto +4.419454e+01 3.870188e+01 lineto +closepath +gsave +7.953004e-01 7.953004e-01 7.953004e-01 setrgbcolor +fill +grestore +newpath +4.419454e+01 3.870188e+01 moveto +4.493816e+01 3.507295e+01 lineto +4.242231e+01 3.458671e+01 lineto +4.158543e+01 3.819762e+01 lineto +4.419454e+01 3.870188e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.360841e+01 4.238607e+01 moveto +4.419454e+01 3.870188e+01 lineto +4.158543e+01 3.819762e+01 lineto +4.09258e+01 4.18676e+01 lineto +4.360841e+01 4.238607e+01 lineto +closepath +gsave +7.992514e-01 7.992514e-01 7.992514e-01 setrgbcolor +fill +grestore +newpath +4.360841e+01 4.238607e+01 moveto +4.419454e+01 3.870188e+01 lineto +4.158543e+01 3.819762e+01 lineto +4.09258e+01 4.18676e+01 lineto +4.360841e+01 4.238607e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.318423e+01 4.609762e+01 moveto +4.360841e+01 4.238607e+01 lineto +4.09258e+01 4.18676e+01 lineto +4.044843e+01 4.556887e+01 lineto +4.318423e+01 4.609762e+01 lineto +closepath +gsave +7.986905e-01 7.986905e-01 7.986905e-01 setrgbcolor +fill +grestore +newpath +4.318423e+01 4.609762e+01 moveto +4.360841e+01 4.238607e+01 lineto +4.09258e+01 4.18676e+01 lineto +4.044843e+01 4.556887e+01 lineto +4.318423e+01 4.609762e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.292521e+01 4.980842e+01 moveto +4.318423e+01 4.609762e+01 lineto +4.044843e+01 4.556887e+01 lineto +4.015692e+01 4.92734e+01 lineto +4.292521e+01 4.980842e+01 lineto +closepath +gsave +7.936353e-01 7.936353e-01 7.936353e-01 setrgbcolor +fill +grestore +newpath +4.292521e+01 4.980842e+01 moveto +4.318423e+01 4.609762e+01 lineto +4.044843e+01 4.556887e+01 lineto +4.015692e+01 4.92734e+01 lineto +4.292521e+01 4.980842e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.28333e+01 5.34904e+01 moveto +4.292521e+01 4.980842e+01 lineto +4.015692e+01 4.92734e+01 lineto +4.005349e+01 5.295315e+01 lineto +4.28333e+01 5.34904e+01 lineto +closepath +gsave +7.842381e-01 7.842381e-01 7.842381e-01 setrgbcolor +fill +grestore +newpath +4.28333e+01 5.34904e+01 moveto +4.292521e+01 4.980842e+01 lineto +4.015692e+01 4.92734e+01 lineto +4.005349e+01 5.295315e+01 lineto +4.28333e+01 5.34904e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.29092e+01 5.711567e+01 moveto +4.28333e+01 5.34904e+01 lineto +4.005349e+01 5.295315e+01 lineto +4.013891e+01 5.658026e+01 lineto +4.29092e+01 5.711567e+01 lineto +closepath +gsave +7.707792e-01 7.707792e-01 7.707792e-01 setrgbcolor +fill +grestore +newpath +4.29092e+01 5.711567e+01 moveto +4.28333e+01 5.34904e+01 lineto +4.005349e+01 5.295315e+01 lineto +4.013891e+01 5.658026e+01 lineto +4.29092e+01 5.711567e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.315235e+01 6.065679e+01 moveto +4.29092e+01 5.711567e+01 lineto +4.013891e+01 5.658026e+01 lineto +4.041254e+01 6.012727e+01 lineto +4.315235e+01 6.065679e+01 lineto +closepath +gsave +7.53654e-01 7.53654e-01 7.53654e-01 setrgbcolor +fill +grestore +newpath +4.315235e+01 6.065679e+01 moveto +4.29092e+01 5.711567e+01 lineto +4.013891e+01 5.658026e+01 lineto +4.041254e+01 6.012727e+01 lineto +4.315235e+01 6.065679e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.356088e+01 6.408695e+01 moveto +4.315235e+01 6.065679e+01 lineto +4.041254e+01 6.012727e+01 lineto +4.087231e+01 6.356733e+01 lineto +4.356088e+01 6.408695e+01 lineto +closepath +gsave +7.333566e-01 7.333566e-01 7.333566e-01 setrgbcolor +fill +grestore +newpath +4.356088e+01 6.408695e+01 moveto +4.315235e+01 6.065679e+01 lineto +4.041254e+01 6.012727e+01 lineto +4.087231e+01 6.356733e+01 lineto +4.356088e+01 6.408695e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.413172e+01 6.738019e+01 moveto +4.356088e+01 6.408695e+01 lineto +4.087231e+01 6.356733e+01 lineto +4.151474e+01 6.687441e+01 lineto +4.413172e+01 6.738019e+01 lineto +closepath +gsave +7.104584e-01 7.104584e-01 7.104584e-01 setrgbcolor +fill +grestore +newpath +4.413172e+01 6.738019e+01 moveto +4.356088e+01 6.408695e+01 lineto +4.087231e+01 6.356733e+01 lineto +4.151474e+01 6.687441e+01 lineto +4.413172e+01 6.738019e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.486054e+01 7.051156e+01 moveto +4.413172e+01 6.738019e+01 lineto +4.151474e+01 6.687441e+01 lineto +4.233496e+01 7.002345e+01 lineto +4.486054e+01 7.051156e+01 lineto +closepath +gsave +6.855842e-01 6.855842e-01 6.855842e-01 setrgbcolor +fill +grestore +newpath +4.486054e+01 7.051156e+01 moveto +4.413172e+01 6.738019e+01 lineto +4.151474e+01 6.687441e+01 lineto +4.233496e+01 7.002345e+01 lineto +4.486054e+01 7.051156e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.574183e+01 7.345738e+01 moveto +4.486054e+01 7.051156e+01 lineto +4.233496e+01 7.002345e+01 lineto +4.332676e+01 7.299062e+01 lineto +4.574183e+01 7.345738e+01 lineto +closepath +gsave +6.59387e-01 6.59387e-01 6.59387e-01 setrgbcolor +fill +grestore +newpath +4.574183e+01 7.345738e+01 moveto +4.486054e+01 7.051156e+01 lineto +4.233496e+01 7.002345e+01 lineto +4.332676e+01 7.299062e+01 lineto +4.574183e+01 7.345738e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.676891e+01 7.619533e+01 moveto +4.574183e+01 7.345738e+01 lineto +4.332676e+01 7.299062e+01 lineto +4.448264e+01 7.575347e+01 lineto +4.676891e+01 7.619533e+01 lineto +closepath +gsave +6.325215e-01 6.325215e-01 6.325215e-01 setrgbcolor +fill +grestore +newpath +4.676891e+01 7.619533e+01 moveto +4.574183e+01 7.345738e+01 lineto +4.332676e+01 7.299062e+01 lineto +4.448264e+01 7.575347e+01 lineto +4.676891e+01 7.619533e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.793401e+01 7.870469e+01 moveto +4.676891e+01 7.619533e+01 lineto +4.448264e+01 7.575347e+01 lineto +4.579385e+01 7.829106e+01 lineto +4.793401e+01 7.870469e+01 lineto +closepath +gsave +6.056198e-01 6.056198e-01 6.056198e-01 setrgbcolor +fill +grestore +newpath +4.793401e+01 7.870469e+01 moveto +4.676891e+01 7.619533e+01 lineto +4.448264e+01 7.575347e+01 lineto +4.579385e+01 7.829106e+01 lineto +4.793401e+01 7.870469e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.92283e+01 8.096646e+01 moveto +4.793401e+01 7.870469e+01 lineto +4.579385e+01 7.829106e+01 lineto +4.725045e+01 8.05842e+01 lineto +4.92283e+01 8.096646e+01 lineto +closepath +gsave +5.792685e-01 5.792685e-01 5.792685e-01 setrgbcolor +fill +grestore +newpath +4.92283e+01 8.096646e+01 moveto +4.793401e+01 7.870469e+01 lineto +4.579385e+01 7.829106e+01 lineto +4.725045e+01 8.05842e+01 lineto +4.92283e+01 8.096646e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.0642e+01 8.296352e+01 moveto +4.92283e+01 8.096646e+01 lineto +4.725045e+01 8.05842e+01 lineto +4.884143e+01 8.261552e+01 lineto +5.0642e+01 8.296352e+01 lineto +closepath +gsave +5.539888e-01 5.539888e-01 5.539888e-01 setrgbcolor +fill +grestore +newpath +5.0642e+01 8.296352e+01 moveto +4.92283e+01 8.096646e+01 lineto +4.725045e+01 8.05842e+01 lineto +4.884143e+01 8.261552e+01 lineto +5.0642e+01 8.296352e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.216438e+01 8.468074e+01 moveto +5.0642e+01 8.296352e+01 lineto +4.884143e+01 8.261552e+01 lineto +5.055474e+01 8.436965e+01 lineto +5.216438e+01 8.468074e+01 lineto +closepath +gsave +5.302215e-01 5.302215e-01 5.302215e-01 setrgbcolor +fill +grestore +newpath +5.216438e+01 8.468074e+01 moveto +5.0642e+01 8.296352e+01 lineto +4.884143e+01 8.261552e+01 lineto +5.055474e+01 8.436965e+01 lineto +5.216438e+01 8.468074e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.378394e+01 8.610514e+01 moveto +5.216438e+01 8.468074e+01 lineto +5.055474e+01 8.436965e+01 lineto +5.23774e+01 8.58333e+01 lineto +5.378394e+01 8.610514e+01 lineto +closepath +gsave +5.08316e-01 5.08316e-01 5.08316e-01 setrgbcolor +fill +grestore +newpath +5.378394e+01 8.610514e+01 moveto +5.216438e+01 8.468074e+01 lineto +5.055474e+01 8.436965e+01 lineto +5.23774e+01 8.58333e+01 lineto +5.378394e+01 8.610514e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.548842e+01 8.722593e+01 moveto +5.378394e+01 8.610514e+01 lineto +5.23774e+01 8.58333e+01 lineto +5.429562e+01 8.699539e+01 lineto +5.548842e+01 8.722593e+01 lineto +closepath +gsave +4.885241e-01 4.885241e-01 4.885241e-01 setrgbcolor +fill +grestore +newpath +5.548842e+01 8.722593e+01 moveto +5.378394e+01 8.610514e+01 lineto +5.23774e+01 8.58333e+01 lineto +5.429562e+01 8.699539e+01 lineto +5.548842e+01 8.722593e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.726489e+01 8.803461e+01 moveto +5.548842e+01 8.722593e+01 lineto +5.429562e+01 8.699539e+01 lineto +5.629487e+01 8.784714e+01 lineto +5.726489e+01 8.803461e+01 lineto +closepath +gsave +4.709997e-01 4.709997e-01 4.709997e-01 setrgbcolor +fill +grestore +newpath +5.726489e+01 8.803461e+01 moveto +5.548842e+01 8.722593e+01 lineto +5.429562e+01 8.699539e+01 lineto +5.629487e+01 8.784714e+01 lineto +5.726489e+01 8.803461e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.909993e+01 8.852508e+01 moveto +5.726489e+01 8.803461e+01 lineto +5.629487e+01 8.784714e+01 lineto +5.836003e+01 8.838208e+01 lineto +5.909993e+01 8.852508e+01 lineto +closepath +gsave +4.558026e-01 4.558026e-01 4.558026e-01 setrgbcolor +fill +grestore +newpath +5.909993e+01 8.852508e+01 moveto +5.726489e+01 8.803461e+01 lineto +5.629487e+01 8.784714e+01 lineto +5.836003e+01 8.838208e+01 lineto +5.909993e+01 8.852508e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.86577e+01 8.615952e+01 moveto +6.674339e+01 8.726707e+01 lineto +6.696202e+01 8.730932e+01 lineto +6.911639e+01 8.624817e+01 lineto +6.86577e+01 8.615952e+01 lineto +closepath +gsave +5.33549e-01 5.33549e-01 5.33549e-01 setrgbcolor +fill +grestore +newpath +6.86577e+01 8.615952e+01 moveto +6.674339e+01 8.726707e+01 lineto +6.696202e+01 8.730932e+01 lineto +6.911639e+01 8.624817e+01 lineto +6.86577e+01 8.615952e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.054432e+01 8.474793e+01 moveto +6.86577e+01 8.615952e+01 lineto +6.911639e+01 8.624817e+01 lineto +7.12396e+01 8.488231e+01 lineto +7.054432e+01 8.474793e+01 lineto +closepath +gsave +5.575742e-01 5.575742e-01 5.575742e-01 setrgbcolor +fill +grestore +newpath +7.054432e+01 8.474793e+01 moveto +6.86577e+01 8.615952e+01 lineto +6.911639e+01 8.624817e+01 lineto +7.12396e+01 8.488231e+01 lineto +7.054432e+01 8.474793e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.238896e+01 8.304302e+01 moveto +7.054432e+01 8.474793e+01 lineto +7.12396e+01 8.488231e+01 lineto +7.331558e+01 8.32221e+01 lineto +7.238896e+01 8.304302e+01 lineto +closepath +gsave +5.830572e-01 5.830572e-01 5.830572e-01 setrgbcolor +fill +grestore +newpath +7.238896e+01 8.304302e+01 moveto +7.054432e+01 8.474793e+01 lineto +7.12396e+01 8.488231e+01 lineto +7.331558e+01 8.32221e+01 lineto +7.238896e+01 8.304302e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.283148e+01 4.778555e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.260321e+01 4.728034e+00 lineto +6.283148e+01 4.778555e+00 lineto +closepath +gsave +5.133776e-01 5.133776e-01 5.133776e-01 setrgbcolor +fill +grestore +newpath +6.283148e+01 4.778555e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.260321e+01 4.728034e+00 lineto +6.283148e+01 4.778555e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.067938e+01 5.869175e+00 moveto +6.283148e+01 4.778555e+00 lineto +6.260321e+01 4.728034e+00 lineto +6.022457e+01 5.768515e+00 lineto +6.067938e+01 5.869175e+00 lineto +closepath +gsave +5.357682e-01 5.357682e-01 5.357682e-01 setrgbcolor +fill +grestore +newpath +6.067938e+01 5.869175e+00 moveto +6.283148e+01 4.778555e+00 lineto +6.260321e+01 4.728034e+00 lineto +6.022457e+01 5.768515e+00 lineto +6.067938e+01 5.869175e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.855999e+01 7.263603e+00 moveto +6.067938e+01 5.869175e+00 lineto +6.022457e+01 5.768515e+00 lineto +5.788208e+01 7.113566e+00 lineto +5.855999e+01 7.263603e+00 lineto +closepath +gsave +5.599497e-01 5.599497e-01 5.599497e-01 setrgbcolor +fill +grestore +newpath +5.855999e+01 7.263603e+00 moveto +6.067938e+01 5.869175e+00 lineto +6.022457e+01 5.768515e+00 lineto +5.788208e+01 7.113566e+00 lineto +5.855999e+01 7.263603e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.648936e+01 8.951282e+00 moveto +5.855999e+01 7.263603e+00 lineto +5.788208e+01 7.113566e+00 lineto +5.559348e+01 8.753004e+00 lineto +5.648936e+01 8.951282e+00 lineto +closepath +gsave +5.855494e-01 5.855494e-01 5.855494e-01 setrgbcolor +fill +grestore +newpath +5.648936e+01 8.951282e+00 moveto +5.855999e+01 7.263603e+00 lineto +5.788208e+01 7.113566e+00 lineto +5.559348e+01 8.753004e+00 lineto +5.648936e+01 8.951282e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.448315e+01 1.091944e+01 moveto +5.648936e+01 8.951282e+00 lineto +5.559348e+01 8.753004e+00 lineto +5.337608e+01 1.067442e+01 lineto +5.448315e+01 1.091944e+01 lineto +closepath +gsave +6.121046e-01 6.121046e-01 6.121046e-01 setrgbcolor +fill +grestore +newpath +5.448315e+01 1.091944e+01 moveto +5.648936e+01 8.951282e+00 lineto +5.559348e+01 8.753004e+00 lineto +5.337608e+01 1.067442e+01 lineto +5.448315e+01 1.091944e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.255656e+01 1.315317e+01 moveto +5.448315e+01 1.091944e+01 lineto +5.337608e+01 1.067442e+01 lineto +5.124669e+01 1.286326e+01 lineto +5.255656e+01 1.315317e+01 lineto +closepath +gsave +6.39075e-01 6.39075e-01 6.39075e-01 setrgbcolor +fill +grestore +newpath +5.255656e+01 1.315317e+01 moveto +5.448315e+01 1.091944e+01 lineto +5.337608e+01 1.067442e+01 lineto +5.124669e+01 1.286326e+01 lineto +5.255656e+01 1.315317e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.072417e+01 1.563556e+01 moveto +5.255656e+01 1.315317e+01 lineto +5.124669e+01 1.286326e+01 lineto +4.922141e+01 1.530297e+01 lineto +5.072417e+01 1.563556e+01 lineto +closepath +gsave +6.658589e-01 6.658589e-01 6.658589e-01 setrgbcolor +fill +grestore +newpath +5.072417e+01 1.563556e+01 moveto +5.255656e+01 1.315317e+01 lineto +5.124669e+01 1.286326e+01 lineto +4.922141e+01 1.530297e+01 lineto +5.072417e+01 1.563556e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.899985e+01 1.834783e+01 moveto +5.072417e+01 1.563556e+01 lineto +4.922141e+01 1.530297e+01 lineto +4.731559e+01 1.797506e+01 lineto +4.899985e+01 1.834783e+01 lineto +closepath +gsave +6.918144e-01 6.918144e-01 6.918144e-01 setrgbcolor +fill +grestore +newpath +4.899985e+01 1.834783e+01 moveto +5.072417e+01 1.563556e+01 lineto +4.922141e+01 1.530297e+01 lineto +4.731559e+01 1.797506e+01 lineto +4.899985e+01 1.834783e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.739667e+01 2.126943e+01 moveto +4.899985e+01 1.834783e+01 lineto +4.731559e+01 1.797506e+01 lineto +4.554364e+01 2.085932e+01 lineto +4.739667e+01 2.126943e+01 lineto +closepath +gsave +7.162827e-01 7.162827e-01 7.162827e-01 setrgbcolor +fill +grestore +newpath +4.739667e+01 2.126943e+01 moveto +4.899985e+01 1.834783e+01 lineto +4.731559e+01 1.797506e+01 lineto +4.554364e+01 2.085932e+01 lineto +4.739667e+01 2.126943e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.592675e+01 2.437826e+01 moveto +4.739667e+01 2.126943e+01 lineto +4.554364e+01 2.085932e+01 lineto +4.391899e+01 2.39339e+01 lineto +4.592675e+01 2.437826e+01 lineto +closepath +gsave +7.386136e-01 7.386136e-01 7.386136e-01 setrgbcolor +fill +grestore +newpath +4.592675e+01 2.437826e+01 moveto +4.739667e+01 2.126943e+01 lineto +4.554364e+01 2.085932e+01 lineto +4.391899e+01 2.39339e+01 lineto +4.592675e+01 2.437826e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.460122e+01 2.765077e+01 moveto +4.592675e+01 2.437826e+01 lineto +4.391899e+01 2.39339e+01 lineto +4.245393e+01 2.717553e+01 lineto +4.460122e+01 2.765077e+01 lineto +closepath +gsave +7.58192e-01 7.58192e-01 7.58192e-01 setrgbcolor +fill +grestore +newpath +4.460122e+01 2.765077e+01 moveto +4.592675e+01 2.437826e+01 lineto +4.391899e+01 2.39339e+01 lineto +4.245393e+01 2.717553e+01 lineto +4.460122e+01 2.765077e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.343012e+01 3.10622e+01 moveto +4.460122e+01 2.765077e+01 lineto +4.245393e+01 2.717553e+01 lineto +4.115955e+01 3.055967e+01 lineto +4.343012e+01 3.10622e+01 lineto +closepath +gsave +7.744629e-01 7.744629e-01 7.744629e-01 setrgbcolor +fill +grestore +newpath +4.343012e+01 3.10622e+01 moveto +4.460122e+01 2.765077e+01 lineto +4.245393e+01 2.717553e+01 lineto +4.115955e+01 3.055967e+01 lineto +4.343012e+01 3.10622e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.242231e+01 3.458671e+01 moveto +4.343012e+01 3.10622e+01 lineto +4.115955e+01 3.055967e+01 lineto +4.004566e+01 3.40607e+01 lineto +4.242231e+01 3.458671e+01 lineto +closepath +gsave +7.869549e-01 7.869549e-01 7.869549e-01 setrgbcolor +fill +grestore +newpath +4.242231e+01 3.458671e+01 moveto +4.343012e+01 3.10622e+01 lineto +4.115955e+01 3.055967e+01 lineto +4.004566e+01 3.40607e+01 lineto +4.242231e+01 3.458671e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.158543e+01 3.819762e+01 moveto +4.242231e+01 3.458671e+01 lineto +4.004566e+01 3.40607e+01 lineto +3.912068e+01 3.765212e+01 lineto +4.158543e+01 3.819762e+01 lineto +closepath +gsave +7.953004e-01 7.953004e-01 7.953004e-01 setrgbcolor +fill +grestore +newpath +4.158543e+01 3.819762e+01 moveto +4.242231e+01 3.458671e+01 lineto +4.004566e+01 3.40607e+01 lineto +3.912068e+01 3.765212e+01 lineto +4.158543e+01 3.819762e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.09258e+01 4.18676e+01 moveto +4.158543e+01 3.819762e+01 lineto +3.912068e+01 3.765212e+01 lineto +3.839162e+01 4.130673e+01 lineto +4.09258e+01 4.18676e+01 lineto +closepath +gsave +7.992514e-01 7.992514e-01 7.992514e-01 setrgbcolor +fill +grestore +newpath +4.09258e+01 4.18676e+01 moveto +4.158543e+01 3.819762e+01 lineto +3.912068e+01 3.765212e+01 lineto +3.839162e+01 4.130673e+01 lineto +4.09258e+01 4.18676e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.044843e+01 4.556887e+01 moveto +4.09258e+01 4.18676e+01 lineto +3.839162e+01 4.130673e+01 lineto +3.786399e+01 4.499688e+01 lineto +4.044843e+01 4.556887e+01 lineto +closepath +gsave +7.986905e-01 7.986905e-01 7.986905e-01 setrgbcolor +fill +grestore +newpath +4.044843e+01 4.556887e+01 moveto +4.09258e+01 4.18676e+01 lineto +3.839162e+01 4.130673e+01 lineto +3.786399e+01 4.499688e+01 lineto +4.044843e+01 4.556887e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.015692e+01 4.92734e+01 moveto +4.044843e+01 4.556887e+01 lineto +3.786399e+01 4.499688e+01 lineto +3.75418e+01 4.869461e+01 lineto +4.015692e+01 4.92734e+01 lineto +closepath +gsave +7.936353e-01 7.936353e-01 7.936353e-01 setrgbcolor +fill +grestore +newpath +4.015692e+01 4.92734e+01 moveto +4.044843e+01 4.556887e+01 lineto +3.786399e+01 4.499688e+01 lineto +3.75418e+01 4.869461e+01 lineto +4.015692e+01 4.92734e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.005349e+01 5.295315e+01 moveto +4.015692e+01 4.92734e+01 lineto +3.75418e+01 4.869461e+01 lineto +3.742748e+01 5.237195e+01 lineto +4.005349e+01 5.295315e+01 lineto +closepath +gsave +7.842381e-01 7.842381e-01 7.842381e-01 setrgbcolor +fill +grestore +newpath +4.005349e+01 5.295315e+01 moveto +4.015692e+01 4.92734e+01 lineto +3.75418e+01 4.869461e+01 lineto +3.742748e+01 5.237195e+01 lineto +4.005349e+01 5.295315e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.013891e+01 5.658026e+01 moveto +4.005349e+01 5.295315e+01 lineto +3.742748e+01 5.237195e+01 lineto +3.752189e+01 5.600105e+01 lineto +4.013891e+01 5.658026e+01 lineto +closepath +gsave +7.707792e-01 7.707792e-01 7.707792e-01 setrgbcolor +fill +grestore +newpath +4.013891e+01 5.658026e+01 moveto +4.005349e+01 5.295315e+01 lineto +3.742748e+01 5.237195e+01 lineto +3.752189e+01 5.600105e+01 lineto +4.013891e+01 5.658026e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.041254e+01 6.012727e+01 moveto +4.013891e+01 5.658026e+01 lineto +3.752189e+01 5.600105e+01 lineto +3.782433e+01 5.955444e+01 lineto +4.041254e+01 6.012727e+01 lineto +closepath +gsave +7.53654e-01 7.53654e-01 7.53654e-01 setrgbcolor +fill +grestore +newpath +4.041254e+01 6.012727e+01 moveto +4.013891e+01 5.658026e+01 lineto +3.752189e+01 5.600105e+01 lineto +3.782433e+01 5.955444e+01 lineto +4.041254e+01 6.012727e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.087231e+01 6.356733e+01 moveto +4.041254e+01 6.012727e+01 lineto +3.782433e+01 5.955444e+01 lineto +3.83325e+01 6.300522e+01 lineto +4.087231e+01 6.356733e+01 lineto +closepath +gsave +7.333566e-01 7.333566e-01 7.333566e-01 setrgbcolor +fill +grestore +newpath +4.087231e+01 6.356733e+01 moveto +4.041254e+01 6.012727e+01 lineto +3.782433e+01 5.955444e+01 lineto +3.83325e+01 6.300522e+01 lineto +4.087231e+01 6.356733e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.151474e+01 6.687441e+01 moveto +4.087231e+01 6.356733e+01 lineto +3.83325e+01 6.300522e+01 lineto +3.904255e+01 6.632725e+01 lineto +4.151474e+01 6.687441e+01 lineto +closepath +gsave +7.104584e-01 7.104584e-01 7.104584e-01 setrgbcolor +fill +grestore +newpath +4.151474e+01 6.687441e+01 moveto +4.087231e+01 6.356733e+01 lineto +3.83325e+01 6.300522e+01 lineto +3.904255e+01 6.632725e+01 lineto +4.151474e+01 6.687441e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.233496e+01 7.002345e+01 moveto +4.151474e+01 6.687441e+01 lineto +3.904255e+01 6.632725e+01 lineto +3.994911e+01 6.949541e+01 lineto +4.233496e+01 7.002345e+01 lineto +closepath +gsave +6.855842e-01 6.855842e-01 6.855842e-01 setrgbcolor +fill +grestore +newpath +4.233496e+01 7.002345e+01 moveto +4.151474e+01 6.687441e+01 lineto +3.904255e+01 6.632725e+01 lineto +3.994911e+01 6.949541e+01 lineto +4.233496e+01 7.002345e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.332676e+01 7.299062e+01 moveto +4.233496e+01 7.002345e+01 lineto +3.994911e+01 6.949541e+01 lineto +4.104532e+01 7.248569e+01 lineto +4.332676e+01 7.299062e+01 lineto +closepath +gsave +6.59387e-01 6.59387e-01 6.59387e-01 setrgbcolor +fill +grestore +newpath +4.332676e+01 7.299062e+01 moveto +4.233496e+01 7.002345e+01 lineto +3.994911e+01 6.949541e+01 lineto +4.104532e+01 7.248569e+01 lineto +4.332676e+01 7.299062e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.448264e+01 7.575347e+01 moveto +4.332676e+01 7.299062e+01 lineto +4.104532e+01 7.248569e+01 lineto +4.232287e+01 7.527546e+01 lineto +4.448264e+01 7.575347e+01 lineto +closepath +gsave +6.325215e-01 6.325215e-01 6.325215e-01 setrgbcolor +fill +grestore +newpath +4.448264e+01 7.575347e+01 moveto +4.332676e+01 7.299062e+01 lineto +4.104532e+01 7.248569e+01 lineto +4.232287e+01 7.527546e+01 lineto +4.448264e+01 7.575347e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.579385e+01 7.829106e+01 moveto +4.448264e+01 7.575347e+01 lineto +4.232287e+01 7.527546e+01 lineto +4.37721e+01 7.78436e+01 lineto +4.579385e+01 7.829106e+01 lineto +closepath +gsave +6.056198e-01 6.056198e-01 6.056198e-01 setrgbcolor +fill +grestore +newpath +4.579385e+01 7.829106e+01 moveto +4.448264e+01 7.575347e+01 lineto +4.232287e+01 7.527546e+01 lineto +4.37721e+01 7.78436e+01 lineto +4.579385e+01 7.829106e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.725045e+01 8.05842e+01 moveto +4.579385e+01 7.829106e+01 lineto +4.37721e+01 7.78436e+01 lineto +4.538204e+01 8.017068e+01 lineto +4.725045e+01 8.05842e+01 lineto +closepath +gsave +5.792685e-01 5.792685e-01 5.792685e-01 setrgbcolor +fill +grestore +newpath +4.725045e+01 8.05842e+01 moveto +4.579385e+01 7.829106e+01 lineto +4.37721e+01 7.78436e+01 lineto +4.538204e+01 8.017068e+01 lineto +4.725045e+01 8.05842e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.884143e+01 8.261552e+01 moveto +4.725045e+01 8.05842e+01 lineto +4.538204e+01 8.017068e+01 lineto +4.714049e+01 8.223907e+01 lineto +4.884143e+01 8.261552e+01 lineto +closepath +gsave +5.539888e-01 5.539888e-01 5.539888e-01 setrgbcolor +fill +grestore +newpath +4.884143e+01 8.261552e+01 moveto +4.725045e+01 8.05842e+01 lineto +4.538204e+01 8.017068e+01 lineto +4.714049e+01 8.223907e+01 lineto +4.884143e+01 8.261552e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.055474e+01 8.436965e+01 moveto +4.884143e+01 8.261552e+01 lineto +4.714049e+01 8.223907e+01 lineto +4.903415e+01 8.403311e+01 lineto +5.055474e+01 8.436965e+01 lineto +closepath +gsave +5.302215e-01 5.302215e-01 5.302215e-01 setrgbcolor +fill +grestore +newpath +5.055474e+01 8.436965e+01 moveto +4.884143e+01 8.261552e+01 lineto +4.714049e+01 8.223907e+01 lineto +4.903415e+01 8.403311e+01 lineto +5.055474e+01 8.436965e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.23774e+01 8.58333e+01 moveto +5.055474e+01 8.436965e+01 lineto +4.903415e+01 8.403311e+01 lineto +5.104867e+01 8.553922e+01 lineto +5.23774e+01 8.58333e+01 lineto +closepath +gsave +5.08316e-01 5.08316e-01 5.08316e-01 setrgbcolor +fill +grestore +newpath +5.23774e+01 8.58333e+01 moveto +5.055474e+01 8.436965e+01 lineto +4.903415e+01 8.403311e+01 lineto +5.104867e+01 8.553922e+01 lineto +5.23774e+01 8.58333e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.429562e+01 8.699539e+01 moveto +5.23774e+01 8.58333e+01 lineto +5.104867e+01 8.553922e+01 lineto +5.316881e+01 8.674601e+01 lineto +5.429562e+01 8.699539e+01 lineto +closepath +gsave +4.885241e-01 4.885241e-01 4.885241e-01 setrgbcolor +fill +grestore +newpath +5.429562e+01 8.699539e+01 moveto +5.23774e+01 8.58333e+01 lineto +5.104867e+01 8.553922e+01 lineto +5.316881e+01 8.674601e+01 lineto +5.429562e+01 8.699539e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.629487e+01 8.784714e+01 moveto +5.429562e+01 8.699539e+01 lineto +5.316881e+01 8.674601e+01 lineto +5.537852e+01 8.764433e+01 lineto +5.629487e+01 8.784714e+01 lineto +closepath +gsave +4.709997e-01 4.709997e-01 4.709997e-01 setrgbcolor +fill +grestore +newpath +5.629487e+01 8.784714e+01 moveto +5.429562e+01 8.699539e+01 lineto +5.316881e+01 8.674601e+01 lineto +5.537852e+01 8.764433e+01 lineto +5.629487e+01 8.784714e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.836003e+01 8.838208e+01 moveto +5.629487e+01 8.784714e+01 lineto +5.537852e+01 8.764433e+01 lineto +5.766107e+01 8.822738e+01 lineto +5.836003e+01 8.838208e+01 lineto +closepath +gsave +4.558026e-01 4.558026e-01 4.558026e-01 setrgbcolor +fill +grestore +newpath +5.836003e+01 8.838208e+01 moveto +5.629487e+01 8.784714e+01 lineto +5.537852e+01 8.764433e+01 lineto +5.766107e+01 8.822738e+01 lineto +5.836003e+01 8.838208e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.911639e+01 8.624817e+01 moveto +6.696202e+01 8.730932e+01 lineto +6.716855e+01 8.735503e+01 lineto +6.954971e+01 8.634407e+01 lineto +6.911639e+01 8.624817e+01 lineto +closepath +gsave +5.33549e-01 5.33549e-01 5.33549e-01 setrgbcolor +fill +grestore +newpath +6.911639e+01 8.624817e+01 moveto +6.696202e+01 8.730932e+01 lineto +6.716855e+01 8.735503e+01 lineto +6.954971e+01 8.634407e+01 lineto +6.911639e+01 8.624817e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.12396e+01 8.488231e+01 moveto +6.911639e+01 8.624817e+01 lineto +6.954971e+01 8.634407e+01 lineto +7.189642e+01 8.502768e+01 lineto +7.12396e+01 8.488231e+01 lineto +closepath +gsave +5.575742e-01 5.575742e-01 5.575742e-01 setrgbcolor +fill +grestore +newpath +7.12396e+01 8.488231e+01 moveto +6.911639e+01 8.624817e+01 lineto +6.954971e+01 8.634407e+01 lineto +7.189642e+01 8.502768e+01 lineto +7.12396e+01 8.488231e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.331558e+01 8.32221e+01 moveto +7.12396e+01 8.488231e+01 lineto +7.189642e+01 8.502768e+01 lineto +7.419092e+01 8.341583e+01 lineto +7.331558e+01 8.32221e+01 lineto +closepath +gsave +5.830572e-01 5.830572e-01 5.830572e-01 setrgbcolor +fill +grestore +newpath +7.331558e+01 8.32221e+01 moveto +7.12396e+01 8.488231e+01 lineto +7.189642e+01 8.502768e+01 lineto +7.419092e+01 8.341583e+01 lineto +7.331558e+01 8.32221e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.260321e+01 4.728034e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.238972e+01 4.674004e+00 lineto +6.260321e+01 4.728034e+00 lineto +closepath +gsave +5.133108e-01 5.133108e-01 5.133108e-01 setrgbcolor +fill +grestore +newpath +6.260321e+01 4.728034e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.238972e+01 4.674004e+00 lineto +6.260321e+01 4.728034e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.022457e+01 5.768515e+00 moveto +6.260321e+01 4.728034e+00 lineto +6.238972e+01 4.674004e+00 lineto +5.97992e+01 5.660865e+00 lineto +6.022457e+01 5.768515e+00 lineto +closepath +gsave +5.355429e-01 5.355429e-01 5.355429e-01 setrgbcolor +fill +grestore +newpath +6.022457e+01 5.768515e+00 moveto +6.260321e+01 4.728034e+00 lineto +6.238972e+01 4.674004e+00 lineto +5.97992e+01 5.660865e+00 lineto +6.022457e+01 5.768515e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.788208e+01 7.113566e+00 moveto +6.022457e+01 5.768515e+00 lineto +5.97992e+01 5.660865e+00 lineto +5.724805e+01 6.95311e+00 lineto +5.788208e+01 7.113566e+00 lineto +closepath +gsave +5.59533e-01 5.59533e-01 5.59533e-01 setrgbcolor +fill +grestore +newpath +5.788208e+01 7.113566e+00 moveto +6.022457e+01 5.768515e+00 lineto +5.97992e+01 5.660865e+00 lineto +5.724805e+01 6.95311e+00 lineto +5.788208e+01 7.113566e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.559348e+01 8.753004e+00 moveto +5.788208e+01 7.113566e+00 lineto +5.724805e+01 6.95311e+00 lineto +5.475559e+01 8.540957e+00 lineto +5.559348e+01 8.753004e+00 lineto +closepath +gsave +5.849104e-01 5.849104e-01 5.849104e-01 setrgbcolor +fill +grestore +newpath +5.559348e+01 8.753004e+00 moveto +5.788208e+01 7.113566e+00 lineto +5.724805e+01 6.95311e+00 lineto +5.475559e+01 8.540957e+00 lineto +5.559348e+01 8.753004e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.337608e+01 1.067442e+01 moveto +5.559348e+01 8.753004e+00 lineto +5.475559e+01 8.540957e+00 lineto +5.234069e+01 1.041239e+01 lineto +5.337608e+01 1.067442e+01 lineto +closepath +gsave +6.112158e-01 6.112158e-01 6.112158e-01 setrgbcolor +fill +grestore +newpath +5.337608e+01 1.067442e+01 moveto +5.559348e+01 8.753004e+00 lineto +5.475559e+01 8.540957e+00 lineto +5.234069e+01 1.041239e+01 lineto +5.337608e+01 1.067442e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.124669e+01 1.286326e+01 moveto +5.337608e+01 1.067442e+01 lineto +5.234069e+01 1.041239e+01 lineto +5.002162e+01 1.255323e+01 lineto +5.124669e+01 1.286326e+01 lineto +closepath +gsave +6.379136e-01 6.379136e-01 6.379136e-01 setrgbcolor +fill +grestore +newpath +5.124669e+01 1.286326e+01 moveto +5.337608e+01 1.067442e+01 lineto +5.234069e+01 1.041239e+01 lineto +5.002162e+01 1.255323e+01 lineto +5.124669e+01 1.286326e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.922141e+01 1.530297e+01 moveto +5.124669e+01 1.286326e+01 lineto +5.002162e+01 1.255323e+01 lineto +4.781594e+01 1.494728e+01 lineto +4.922141e+01 1.530297e+01 lineto +closepath +gsave +6.644087e-01 6.644087e-01 6.644087e-01 setrgbcolor +fill +grestore +newpath +4.922141e+01 1.530297e+01 moveto +5.124669e+01 1.286326e+01 lineto +5.002162e+01 1.255323e+01 lineto +4.781594e+01 1.494728e+01 lineto +4.922141e+01 1.530297e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.731559e+01 1.797506e+01 moveto +4.922141e+01 1.530297e+01 lineto +4.781594e+01 1.494728e+01 lineto +4.574035e+01 1.757641e+01 lineto +4.731559e+01 1.797506e+01 lineto +closepath +gsave +6.900663e-01 6.900663e-01 6.900663e-01 setrgbcolor +fill +grestore +newpath +4.731559e+01 1.797506e+01 moveto +4.922141e+01 1.530297e+01 lineto +4.781594e+01 1.494728e+01 lineto +4.574035e+01 1.757641e+01 lineto +4.731559e+01 1.797506e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.554364e+01 2.085932e+01 moveto +4.731559e+01 1.797506e+01 lineto +4.574035e+01 1.757641e+01 lineto +4.381057e+01 2.042072e+01 lineto +4.554364e+01 2.085932e+01 lineto +closepath +gsave +7.142359e-01 7.142359e-01 7.142359e-01 setrgbcolor +fill +grestore +newpath +4.554364e+01 2.085932e+01 moveto +4.731559e+01 1.797506e+01 lineto +4.574035e+01 1.757641e+01 lineto +4.381057e+01 2.042072e+01 lineto +4.554364e+01 2.085932e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.391899e+01 2.39339e+01 moveto +4.554364e+01 2.085932e+01 lineto +4.381057e+01 2.042072e+01 lineto +4.20412e+01 2.345868e+01 lineto +4.391899e+01 2.39339e+01 lineto +closepath +gsave +7.362762e-01 7.362762e-01 7.362762e-01 setrgbcolor +fill +grestore +newpath +4.391899e+01 2.39339e+01 moveto +4.554364e+01 2.085932e+01 lineto +4.381057e+01 2.042072e+01 lineto +4.20412e+01 2.345868e+01 lineto +4.391899e+01 2.39339e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.245393e+01 2.717553e+01 moveto +4.391899e+01 2.39339e+01 lineto +4.20412e+01 2.345868e+01 lineto +4.044564e+01 2.666728e+01 lineto +4.245393e+01 2.717553e+01 lineto +closepath +gsave +7.55581e-01 7.55581e-01 7.55581e-01 setrgbcolor +fill +grestore +newpath +4.245393e+01 2.717553e+01 moveto +4.391899e+01 2.39339e+01 lineto +4.20412e+01 2.345868e+01 lineto +4.044564e+01 2.666728e+01 lineto +4.245393e+01 2.717553e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.115955e+01 3.055967e+01 moveto +4.245393e+01 2.717553e+01 lineto +4.044564e+01 2.666728e+01 lineto +3.903597e+01 3.002225e+01 lineto +4.115955e+01 3.055967e+01 lineto +closepath +gsave +7.716037e-01 7.716037e-01 7.716037e-01 setrgbcolor +fill +grestore +newpath +4.115955e+01 3.055967e+01 moveto +4.245393e+01 2.717553e+01 lineto +4.044564e+01 2.666728e+01 lineto +3.903597e+01 3.002225e+01 lineto +4.115955e+01 3.055967e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.004566e+01 3.40607e+01 moveto +4.115955e+01 3.055967e+01 lineto +3.903597e+01 3.002225e+01 lineto +3.782285e+01 3.349817e+01 lineto +4.004566e+01 3.40607e+01 lineto +closepath +gsave +7.838812e-01 7.838812e-01 7.838812e-01 setrgbcolor +fill +grestore +newpath +4.004566e+01 3.40607e+01 moveto +4.115955e+01 3.055967e+01 lineto +3.903597e+01 3.002225e+01 lineto +3.782285e+01 3.349817e+01 lineto +4.004566e+01 3.40607e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.912068e+01 3.765212e+01 moveto +4.004566e+01 3.40607e+01 lineto +3.782285e+01 3.349817e+01 lineto +3.681548e+01 3.706873e+01 lineto +3.912068e+01 3.765212e+01 lineto +closepath +gsave +7.920529e-01 7.920529e-01 7.920529e-01 setrgbcolor +fill +grestore +newpath +3.912068e+01 3.765212e+01 moveto +4.004566e+01 3.40607e+01 lineto +3.782285e+01 3.349817e+01 lineto +3.681548e+01 3.706873e+01 lineto +3.912068e+01 3.765212e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.839162e+01 4.130673e+01 moveto +3.912068e+01 3.765212e+01 lineto +3.681548e+01 3.706873e+01 lineto +3.602148e+01 4.070691e+01 lineto +3.839162e+01 4.130673e+01 lineto +closepath +gsave +7.958764e-01 7.958764e-01 7.958764e-01 setrgbcolor +fill +grestore +newpath +3.839162e+01 4.130673e+01 moveto +3.912068e+01 3.765212e+01 lineto +3.681548e+01 3.706873e+01 lineto +3.602148e+01 4.070691e+01 lineto +3.839162e+01 4.130673e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.786399e+01 4.499688e+01 moveto +3.839162e+01 4.130673e+01 lineto +3.602148e+01 4.070691e+01 lineto +3.544686e+01 4.438516e+01 lineto +3.786399e+01 4.499688e+01 lineto +closepath +gsave +7.952382e-01 7.952382e-01 7.952382e-01 setrgbcolor +fill +grestore +newpath +3.786399e+01 4.499688e+01 moveto +3.839162e+01 4.130673e+01 lineto +3.602148e+01 4.070691e+01 lineto +3.544686e+01 4.438516e+01 lineto +3.786399e+01 4.499688e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.75418e+01 4.869461e+01 moveto +3.786399e+01 4.499688e+01 lineto +3.544686e+01 4.438516e+01 lineto +3.509597e+01 4.807564e+01 lineto +3.75418e+01 4.869461e+01 lineto +closepath +gsave +7.901584e-01 7.901584e-01 7.901584e-01 setrgbcolor +fill +grestore +newpath +3.75418e+01 4.869461e+01 moveto +3.786399e+01 4.499688e+01 lineto +3.544686e+01 4.438516e+01 lineto +3.509597e+01 4.807564e+01 lineto +3.75418e+01 4.869461e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.742748e+01 5.237195e+01 moveto +3.75418e+01 4.869461e+01 lineto +3.509597e+01 4.807564e+01 lineto +3.497146e+01 5.17504e+01 lineto +3.742748e+01 5.237195e+01 lineto +closepath +gsave +7.807897e-01 7.807897e-01 7.807897e-01 setrgbcolor +fill +grestore +newpath +3.742748e+01 5.237195e+01 moveto +3.75418e+01 4.869461e+01 lineto +3.509597e+01 4.807564e+01 lineto +3.497146e+01 5.17504e+01 lineto +3.742748e+01 5.237195e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.752189e+01 5.600105e+01 moveto +3.742748e+01 5.237195e+01 lineto +3.497146e+01 5.17504e+01 lineto +3.507429e+01 5.538163e+01 lineto +3.752189e+01 5.600105e+01 lineto +closepath +gsave +7.674106e-01 7.674106e-01 7.674106e-01 setrgbcolor +fill +grestore +newpath +3.752189e+01 5.600105e+01 moveto +3.742748e+01 5.237195e+01 lineto +3.497146e+01 5.17504e+01 lineto +3.507429e+01 5.538163e+01 lineto +3.752189e+01 5.600105e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.782433e+01 5.955444e+01 moveto +3.752189e+01 5.600105e+01 lineto +3.507429e+01 5.538163e+01 lineto +3.540366e+01 5.894183e+01 lineto +3.782433e+01 5.955444e+01 lineto +closepath +gsave +7.504136e-01 7.504136e-01 7.504136e-01 setrgbcolor +fill +grestore +newpath +3.782433e+01 5.955444e+01 moveto +3.752189e+01 5.600105e+01 lineto +3.507429e+01 5.538163e+01 lineto +3.540366e+01 5.894183e+01 lineto +3.782433e+01 5.955444e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.83325e+01 6.300522e+01 moveto +3.782433e+01 5.955444e+01 lineto +3.540366e+01 5.894183e+01 lineto +3.595709e+01 6.240406e+01 lineto +3.83325e+01 6.300522e+01 lineto +closepath +gsave +7.302875e-01 7.302875e-01 7.302875e-01 setrgbcolor +fill +grestore +newpath +3.83325e+01 6.300522e+01 moveto +3.782433e+01 5.955444e+01 lineto +3.540366e+01 5.894183e+01 lineto +3.595709e+01 6.240406e+01 lineto +3.83325e+01 6.300522e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.904255e+01 6.632725e+01 moveto +3.83325e+01 6.300522e+01 lineto +3.595709e+01 6.240406e+01 lineto +3.673039e+01 6.574211e+01 lineto +3.904255e+01 6.632725e+01 lineto +closepath +gsave +7.075977e-01 7.075977e-01 7.075977e-01 setrgbcolor +fill +grestore +newpath +3.904255e+01 6.632725e+01 moveto +3.83325e+01 6.300522e+01 lineto +3.595709e+01 6.240406e+01 lineto +3.673039e+01 6.574211e+01 lineto +3.904255e+01 6.632725e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.994911e+01 6.949541e+01 moveto +3.904255e+01 6.632725e+01 lineto +3.673039e+01 6.574211e+01 lineto +3.771771e+01 6.893069e+01 lineto +3.994911e+01 6.949541e+01 lineto +closepath +gsave +6.829614e-01 6.829614e-01 6.829614e-01 setrgbcolor +fill +grestore +newpath +3.994911e+01 6.949541e+01 moveto +3.904255e+01 6.632725e+01 lineto +3.673039e+01 6.574211e+01 lineto +3.771771e+01 6.893069e+01 lineto +3.994911e+01 6.949541e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.104532e+01 7.248569e+01 moveto +3.994911e+01 6.949541e+01 lineto +3.771771e+01 6.893069e+01 lineto +3.891156e+01 7.194569e+01 lineto +4.104532e+01 7.248569e+01 lineto +closepath +gsave +6.570235e-01 6.570235e-01 6.570235e-01 setrgbcolor +fill +grestore +newpath +4.104532e+01 7.248569e+01 moveto +3.994911e+01 6.949541e+01 lineto +3.771771e+01 6.893069e+01 lineto +3.891156e+01 7.194569e+01 lineto +4.104532e+01 7.248569e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.232287e+01 7.527546e+01 moveto +4.104532e+01 7.248569e+01 lineto +3.891156e+01 7.194569e+01 lineto +4.030291e+01 7.476426e+01 lineto +4.232287e+01 7.527546e+01 lineto +closepath +gsave +6.304304e-01 6.304304e-01 6.304304e-01 setrgbcolor +fill +grestore +newpath +4.232287e+01 7.527546e+01 moveto +4.104532e+01 7.248569e+01 lineto +3.891156e+01 7.194569e+01 lineto +4.030291e+01 7.476426e+01 lineto +4.232287e+01 7.527546e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.37721e+01 7.78436e+01 moveto +4.232287e+01 7.527546e+01 lineto +4.030291e+01 7.476426e+01 lineto +4.188123e+01 7.736507e+01 lineto +4.37721e+01 7.78436e+01 lineto +closepath +gsave +6.038057e-01 6.038057e-01 6.038057e-01 setrgbcolor +fill +grestore +newpath +4.37721e+01 7.78436e+01 moveto +4.232287e+01 7.527546e+01 lineto +4.030291e+01 7.476426e+01 lineto +4.188123e+01 7.736507e+01 lineto +4.37721e+01 7.78436e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.538204e+01 8.017068e+01 moveto +4.37721e+01 7.78436e+01 lineto +4.188123e+01 7.736507e+01 lineto +4.363457e+01 7.972844e+01 lineto +4.538204e+01 8.017068e+01 lineto +closepath +gsave +5.77728e-01 5.77728e-01 5.77728e-01 setrgbcolor +fill +grestore +newpath +4.538204e+01 8.017068e+01 moveto +4.37721e+01 7.78436e+01 lineto +4.188123e+01 7.736507e+01 lineto +4.363457e+01 7.972844e+01 lineto +4.538204e+01 8.017068e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.714049e+01 8.223907e+01 moveto +4.538204e+01 8.017068e+01 lineto +4.363457e+01 7.972844e+01 lineto +4.554966e+01 8.183647e+01 lineto +4.714049e+01 8.223907e+01 lineto +closepath +gsave +5.527114e-01 5.527114e-01 5.527114e-01 setrgbcolor +fill +grestore +newpath +4.714049e+01 8.223907e+01 moveto +4.538204e+01 8.017068e+01 lineto +4.363457e+01 7.972844e+01 lineto +4.554966e+01 8.183647e+01 lineto +4.714049e+01 8.223907e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.903415e+01 8.403311e+01 moveto +4.714049e+01 8.223907e+01 lineto +4.554966e+01 8.183647e+01 lineto +4.761199e+01 8.36732e+01 lineto +4.903415e+01 8.403311e+01 lineto +closepath +gsave +5.291903e-01 5.291903e-01 5.291903e-01 setrgbcolor +fill +grestore +newpath +4.903415e+01 8.403311e+01 moveto +4.714049e+01 8.223907e+01 lineto +4.554966e+01 8.183647e+01 lineto +4.761199e+01 8.36732e+01 lineto +4.903415e+01 8.403311e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.104867e+01 8.553922e+01 moveto +4.903415e+01 8.403311e+01 lineto +4.761199e+01 8.36732e+01 lineto +4.980596e+01 8.522472e+01 lineto +5.104867e+01 8.553922e+01 lineto +closepath +gsave +5.075091e-01 5.075091e-01 5.075091e-01 setrgbcolor +fill +grestore +newpath +5.104867e+01 8.553922e+01 moveto +4.903415e+01 8.403311e+01 lineto +4.761199e+01 8.36732e+01 lineto +4.980596e+01 8.522472e+01 lineto +5.104867e+01 8.553922e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.316881e+01 8.674601e+01 moveto +5.104867e+01 8.553922e+01 lineto +4.980596e+01 8.522472e+01 lineto +5.211495e+01 8.64793e+01 lineto +5.316881e+01 8.674601e+01 lineto +closepath +gsave +4.879161e-01 4.879161e-01 4.879161e-01 setrgbcolor +fill +grestore +newpath +5.316881e+01 8.674601e+01 moveto +5.104867e+01 8.553922e+01 lineto +4.980596e+01 8.522472e+01 lineto +5.211495e+01 8.64793e+01 lineto +5.316881e+01 8.674601e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.537852e+01 8.764433e+01 moveto +5.316881e+01 8.674601e+01 lineto +5.211495e+01 8.64793e+01 lineto +5.452149e+01 8.742743e+01 lineto +5.537852e+01 8.764433e+01 lineto +closepath +gsave +4.705629e-01 4.705629e-01 4.705629e-01 setrgbcolor +fill +grestore +newpath +5.537852e+01 8.764433e+01 moveto +5.316881e+01 8.674601e+01 lineto +5.211495e+01 8.64793e+01 lineto +5.452149e+01 8.742743e+01 lineto +5.537852e+01 8.764433e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.766107e+01 8.822738e+01 moveto +5.537852e+01 8.764433e+01 lineto +5.452149e+01 8.742743e+01 lineto +5.700736e+01 8.806194e+01 lineto +5.766107e+01 8.822738e+01 lineto +closepath +gsave +4.555084e-01 4.555084e-01 4.555084e-01 setrgbcolor +fill +grestore +newpath +5.766107e+01 8.822738e+01 moveto +5.537852e+01 8.764433e+01 lineto +5.452149e+01 8.742743e+01 lineto +5.700736e+01 8.806194e+01 lineto +5.766107e+01 8.822738e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.954971e+01 8.634407e+01 moveto +6.716855e+01 8.735503e+01 lineto +6.736172e+01 8.740392e+01 lineto +6.995497e+01 8.644663e+01 lineto +6.954971e+01 8.634407e+01 lineto +closepath +gsave +5.333402e-01 5.333402e-01 5.333402e-01 setrgbcolor +fill +grestore +newpath +6.954971e+01 8.634407e+01 moveto +6.716855e+01 8.735503e+01 lineto +6.736172e+01 8.740392e+01 lineto +6.995497e+01 8.644663e+01 lineto +6.954971e+01 8.634407e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.189642e+01 8.502768e+01 moveto +6.954971e+01 8.634407e+01 lineto +6.995497e+01 8.644663e+01 lineto +7.251071e+01 8.518314e+01 lineto +7.189642e+01 8.502768e+01 lineto +closepath +gsave +5.571772e-01 5.571772e-01 5.571772e-01 setrgbcolor +fill +grestore +newpath +7.189642e+01 8.502768e+01 moveto +6.954971e+01 8.634407e+01 lineto +6.995497e+01 8.644663e+01 lineto +7.251071e+01 8.518314e+01 lineto +7.189642e+01 8.502768e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.419092e+01 8.341583e+01 moveto +7.189642e+01 8.502768e+01 lineto +7.251071e+01 8.518314e+01 lineto +7.50096e+01 8.362302e+01 lineto +7.419092e+01 8.341583e+01 lineto +closepath +gsave +5.824407e-01 5.824407e-01 5.824407e-01 setrgbcolor +fill +grestore +newpath +7.419092e+01 8.341583e+01 moveto +7.189642e+01 8.502768e+01 lineto +7.251071e+01 8.518314e+01 lineto +7.50096e+01 8.362302e+01 lineto +7.419092e+01 8.341583e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.238972e+01 4.674004e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.219232e+01 4.616799e+00 lineto +6.238972e+01 4.674004e+00 lineto +closepath +gsave +5.131777e-01 5.131777e-01 5.131777e-01 setrgbcolor +fill +grestore +newpath +6.238972e+01 4.674004e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.219232e+01 4.616799e+00 lineto +6.238972e+01 4.674004e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.97992e+01 5.660865e+00 moveto +6.238972e+01 4.674004e+00 lineto +6.219232e+01 4.616799e+00 lineto +5.94059e+01 5.546888e+00 lineto +5.97992e+01 5.660865e+00 lineto +closepath +gsave +5.350943e-01 5.350943e-01 5.350943e-01 setrgbcolor +fill +grestore +newpath +5.97992e+01 5.660865e+00 moveto +6.238972e+01 4.674004e+00 lineto +6.219232e+01 4.616799e+00 lineto +5.94059e+01 5.546888e+00 lineto +5.97992e+01 5.660865e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.724805e+01 6.95311e+00 moveto +5.97992e+01 5.660865e+00 lineto +5.94059e+01 5.546888e+00 lineto +5.666182e+01 6.783224e+00 lineto +5.724805e+01 6.95311e+00 lineto +closepath +gsave +5.587044e-01 5.587044e-01 5.587044e-01 setrgbcolor +fill +grestore +newpath +5.724805e+01 6.95311e+00 moveto +5.97992e+01 5.660865e+00 lineto +5.94059e+01 5.546888e+00 lineto +5.666182e+01 6.783224e+00 lineto +5.724805e+01 6.95311e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.475559e+01 8.540957e+00 moveto +5.724805e+01 6.95311e+00 lineto +5.666182e+01 6.783224e+00 lineto +5.398087e+01 8.316448e+00 lineto +5.475559e+01 8.540957e+00 lineto +closepath +gsave +5.836407e-01 5.836407e-01 5.836407e-01 setrgbcolor +fill +grestore +newpath +5.475559e+01 8.540957e+00 moveto +5.724805e+01 6.95311e+00 lineto +5.666182e+01 6.783224e+00 lineto +5.398087e+01 8.316448e+00 lineto +5.475559e+01 8.540957e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.234069e+01 1.041239e+01 moveto +5.475559e+01 8.540957e+00 lineto +5.398087e+01 8.316448e+00 lineto +5.138334e+01 1.013495e+01 lineto +5.234069e+01 1.041239e+01 lineto +closepath +gsave +6.09451e-01 6.09451e-01 6.09451e-01 setrgbcolor +fill +grestore +newpath +5.234069e+01 1.041239e+01 moveto +5.475559e+01 8.540957e+00 lineto +5.398087e+01 8.316448e+00 lineto +5.138334e+01 1.013495e+01 lineto +5.234069e+01 1.041239e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.002162e+01 1.255323e+01 moveto +5.234069e+01 1.041239e+01 lineto +5.138334e+01 1.013495e+01 lineto +4.888889e+01 1.222497e+01 lineto +5.002162e+01 1.255323e+01 lineto +closepath +gsave +6.356094e-01 6.356094e-01 6.356094e-01 setrgbcolor +fill +grestore +newpath +5.002162e+01 1.255323e+01 moveto +5.234069e+01 1.041239e+01 lineto +5.138334e+01 1.013495e+01 lineto +4.888889e+01 1.222497e+01 lineto +5.002162e+01 1.255323e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.781594e+01 1.494728e+01 moveto +5.002162e+01 1.255323e+01 lineto +4.888889e+01 1.222497e+01 lineto +4.651641e+01 1.457068e+01 lineto +4.781594e+01 1.494728e+01 lineto +closepath +gsave +6.61533e-01 6.61533e-01 6.61533e-01 setrgbcolor +fill +grestore +newpath +4.781594e+01 1.494728e+01 moveto +5.002162e+01 1.255323e+01 lineto +4.888889e+01 1.222497e+01 lineto +4.651641e+01 1.457068e+01 lineto +4.781594e+01 1.494728e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.574035e+01 1.757641e+01 moveto +4.781594e+01 1.494728e+01 lineto +4.651641e+01 1.457068e+01 lineto +4.428386e+01 1.715433e+01 lineto +4.574035e+01 1.757641e+01 lineto +closepath +gsave +6.866017e-01 6.866017e-01 6.866017e-01 setrgbcolor +fill +grestore +newpath +4.574035e+01 1.757641e+01 moveto +4.781594e+01 1.494728e+01 lineto +4.651641e+01 1.457068e+01 lineto +4.428386e+01 1.715433e+01 lineto +4.574035e+01 1.757641e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.381057e+01 2.042072e+01 moveto +4.574035e+01 1.757641e+01 lineto +4.428386e+01 1.715433e+01 lineto +4.220814e+01 1.995635e+01 lineto +4.381057e+01 2.042072e+01 lineto +closepath +gsave +7.101814e-01 7.101814e-01 7.101814e-01 setrgbcolor +fill +grestore +newpath +4.381057e+01 2.042072e+01 moveto +4.574035e+01 1.757641e+01 lineto +4.428386e+01 1.715433e+01 lineto +4.220814e+01 1.995635e+01 lineto +4.381057e+01 2.042072e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.20412e+01 2.345868e+01 moveto +4.381057e+01 2.042072e+01 lineto +4.220814e+01 1.995635e+01 lineto +4.030497e+01 2.295553e+01 lineto +4.20412e+01 2.345868e+01 lineto +closepath +gsave +7.31648e-01 7.31648e-01 7.31648e-01 setrgbcolor +fill +grestore +newpath +4.20412e+01 2.345868e+01 moveto +4.381057e+01 2.042072e+01 lineto +4.220814e+01 1.995635e+01 lineto +4.030497e+01 2.295553e+01 lineto +4.20412e+01 2.345868e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.044564e+01 2.666728e+01 moveto +4.20412e+01 2.345868e+01 lineto +4.030497e+01 2.295553e+01 lineto +3.858874e+01 2.612917e+01 lineto +4.044564e+01 2.666728e+01 lineto +closepath +gsave +7.504128e-01 7.504128e-01 7.504128e-01 setrgbcolor +fill +grestore +newpath +4.044564e+01 2.666728e+01 moveto +4.20412e+01 2.345868e+01 lineto +4.030497e+01 2.295553e+01 lineto +3.858874e+01 2.612917e+01 lineto +4.044564e+01 2.666728e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.903597e+01 3.002225e+01 moveto +4.044564e+01 2.666728e+01 lineto +3.858874e+01 2.612917e+01 lineto +3.707246e+01 2.945324e+01 lineto +3.903597e+01 3.002225e+01 lineto +closepath +gsave +7.659465e-01 7.659465e-01 7.659465e-01 setrgbcolor +fill +grestore +newpath +3.903597e+01 3.002225e+01 moveto +4.044564e+01 2.666728e+01 lineto +3.858874e+01 2.612917e+01 lineto +3.707246e+01 2.945324e+01 lineto +3.903597e+01 3.002225e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.782285e+01 3.349817e+01 moveto +3.903597e+01 3.002225e+01 lineto +3.707246e+01 2.945324e+01 lineto +3.576761e+01 3.290257e+01 lineto +3.782285e+01 3.349817e+01 lineto +closepath +gsave +7.778015e-01 7.778015e-01 7.778015e-01 setrgbcolor +fill +grestore +newpath +3.782285e+01 3.349817e+01 moveto +3.903597e+01 3.002225e+01 lineto +3.707246e+01 2.945324e+01 lineto +3.576761e+01 3.290257e+01 lineto +3.782285e+01 3.349817e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.681548e+01 3.706873e+01 moveto +3.782285e+01 3.349817e+01 lineto +3.576761e+01 3.290257e+01 lineto +3.468406e+01 3.645106e+01 lineto +3.681548e+01 3.706873e+01 lineto +closepath +gsave +7.856311e-01 7.856311e-01 7.856311e-01 setrgbcolor +fill +grestore +newpath +3.681548e+01 3.706873e+01 moveto +3.782285e+01 3.349817e+01 lineto +3.576761e+01 3.290257e+01 lineto +3.468406e+01 3.645106e+01 lineto +3.681548e+01 3.706873e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.602148e+01 4.070691e+01 moveto +3.681548e+01 3.706873e+01 lineto +3.468406e+01 3.645106e+01 lineto +3.383001e+01 4.007184e+01 lineto +3.602148e+01 4.070691e+01 lineto +closepath +gsave +7.89204e-01 7.89204e-01 7.89204e-01 setrgbcolor +fill +grestore +newpath +3.602148e+01 4.070691e+01 moveto +3.681548e+01 3.706873e+01 lineto +3.468406e+01 3.645106e+01 lineto +3.383001e+01 4.007184e+01 lineto +3.602148e+01 4.070691e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.544686e+01 4.438516e+01 moveto +3.602148e+01 4.070691e+01 lineto +3.383001e+01 4.007184e+01 lineto +3.321193e+01 4.37375e+01 lineto +3.544686e+01 4.438516e+01 lineto +closepath +gsave +7.884146e-01 7.884146e-01 7.884146e-01 setrgbcolor +fill +grestore +newpath +3.544686e+01 4.438516e+01 moveto +3.602148e+01 4.070691e+01 lineto +3.383001e+01 4.007184e+01 lineto +3.321193e+01 4.37375e+01 lineto +3.544686e+01 4.438516e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.509597e+01 4.807564e+01 moveto +3.544686e+01 4.438516e+01 lineto +3.321193e+01 4.37375e+01 lineto +3.28345e+01 4.742028e+01 lineto +3.509597e+01 4.807564e+01 lineto +closepath +gsave +7.832873e-01 7.832873e-01 7.832873e-01 setrgbcolor +fill +grestore +newpath +3.509597e+01 4.807564e+01 moveto +3.544686e+01 4.438516e+01 lineto +3.321193e+01 4.37375e+01 lineto +3.28345e+01 4.742028e+01 lineto +3.509597e+01 4.807564e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.497146e+01 5.17504e+01 moveto +3.509597e+01 4.807564e+01 lineto +3.28345e+01 4.742028e+01 lineto +3.270058e+01 5.109231e+01 lineto +3.497146e+01 5.17504e+01 lineto +closepath +gsave +7.739757e-01 7.739757e-01 7.739757e-01 setrgbcolor +fill +grestore +newpath +3.497146e+01 5.17504e+01 moveto +3.509597e+01 4.807564e+01 lineto +3.28345e+01 4.742028e+01 lineto +3.270058e+01 5.109231e+01 lineto +3.497146e+01 5.17504e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.507429e+01 5.538163e+01 moveto +3.497146e+01 5.17504e+01 lineto +3.270058e+01 5.109231e+01 lineto +3.281118e+01 5.47258e+01 lineto +3.507429e+01 5.538163e+01 lineto +closepath +gsave +7.607553e-01 7.607553e-01 7.607553e-01 setrgbcolor +fill +grestore +newpath +3.507429e+01 5.538163e+01 moveto +3.497146e+01 5.17504e+01 lineto +3.270058e+01 5.109231e+01 lineto +3.281118e+01 5.47258e+01 lineto +3.507429e+01 5.538163e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.540366e+01 5.894183e+01 moveto +3.507429e+01 5.538163e+01 lineto +3.281118e+01 5.47258e+01 lineto +3.316547e+01 5.829322e+01 lineto +3.540366e+01 5.894183e+01 lineto +closepath +gsave +7.440119e-01 7.440119e-01 7.440119e-01 setrgbcolor +fill +grestore +newpath +3.540366e+01 5.894183e+01 moveto +3.507429e+01 5.538163e+01 lineto +3.281118e+01 5.47258e+01 lineto +3.316547e+01 5.829322e+01 lineto +3.540366e+01 5.894183e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.595709e+01 6.240406e+01 moveto +3.540366e+01 5.894183e+01 lineto +3.316547e+01 5.829322e+01 lineto +3.376075e+01 6.176758e+01 lineto +3.595709e+01 6.240406e+01 lineto +closepath +gsave +7.242247e-01 7.242247e-01 7.242247e-01 setrgbcolor +fill +grestore +newpath +3.595709e+01 6.240406e+01 moveto +3.540366e+01 5.894183e+01 lineto +3.316547e+01 5.829322e+01 lineto +3.376075e+01 6.176758e+01 lineto +3.595709e+01 6.240406e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.673039e+01 6.574211e+01 moveto +3.595709e+01 6.240406e+01 lineto +3.376075e+01 6.176758e+01 lineto +3.459253e+01 6.512257e+01 lineto +3.673039e+01 6.574211e+01 lineto +closepath +gsave +7.019464e-01 7.019464e-01 7.019464e-01 setrgbcolor +fill +grestore +newpath +3.673039e+01 6.574211e+01 moveto +3.595709e+01 6.240406e+01 lineto +3.376075e+01 6.176758e+01 lineto +3.459253e+01 6.512257e+01 lineto +3.673039e+01 6.574211e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.771771e+01 6.893069e+01 moveto +3.673039e+01 6.574211e+01 lineto +3.459253e+01 6.512257e+01 lineto +3.565451e+01 6.833279e+01 lineto +3.771771e+01 6.893069e+01 lineto +closepath +gsave +6.7778e-01 6.7778e-01 6.7778e-01 setrgbcolor +fill +grestore +newpath +3.771771e+01 6.893069e+01 moveto +3.673039e+01 6.574211e+01 lineto +3.459253e+01 6.512257e+01 lineto +3.565451e+01 6.833279e+01 lineto +3.771771e+01 6.893069e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.891156e+01 7.194569e+01 moveto +3.771771e+01 6.893069e+01 lineto +3.565451e+01 6.833279e+01 lineto +3.693864e+01 7.137395e+01 lineto +3.891156e+01 7.194569e+01 lineto +closepath +gsave +6.523541e-01 6.523541e-01 6.523541e-01 setrgbcolor +fill +grestore +newpath +3.891156e+01 7.194569e+01 moveto +3.771771e+01 6.893069e+01 lineto +3.565451e+01 6.833279e+01 lineto +3.693864e+01 7.137395e+01 lineto +3.891156e+01 7.194569e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.030291e+01 7.476426e+01 moveto +3.891156e+01 7.194569e+01 lineto +3.693864e+01 7.137395e+01 lineto +3.843522e+01 7.422301e+01 lineto +4.030291e+01 7.476426e+01 lineto +closepath +gsave +6.262986e-01 6.262986e-01 6.262986e-01 setrgbcolor +fill +grestore +newpath +4.030291e+01 7.476426e+01 moveto +3.891156e+01 7.194569e+01 lineto +3.693864e+01 7.137395e+01 lineto +3.843522e+01 7.422301e+01 lineto +4.030291e+01 7.476426e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.188123e+01 7.736507e+01 moveto +4.030291e+01 7.476426e+01 lineto +3.843522e+01 7.422301e+01 lineto +4.01329e+01 7.685842e+01 lineto +4.188123e+01 7.736507e+01 lineto +closepath +gsave +6.002207e-01 6.002207e-01 6.002207e-01 setrgbcolor +fill +grestore +newpath +4.188123e+01 7.736507e+01 moveto +4.030291e+01 7.476426e+01 lineto +3.843522e+01 7.422301e+01 lineto +4.01329e+01 7.685842e+01 lineto +4.188123e+01 7.736507e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.363457e+01 7.972844e+01 moveto +4.188123e+01 7.736507e+01 lineto +4.01329e+01 7.685842e+01 lineto +4.201883e+01 7.926021e+01 lineto +4.363457e+01 7.972844e+01 lineto +closepath +gsave +5.746831e-01 5.746831e-01 5.746831e-01 setrgbcolor +fill +grestore +newpath +4.363457e+01 7.972844e+01 moveto +4.188123e+01 7.736507e+01 lineto +4.01329e+01 7.685842e+01 lineto +4.201883e+01 7.926021e+01 lineto +4.363457e+01 7.972844e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.554966e+01 8.183647e+01 moveto +4.363457e+01 7.972844e+01 lineto +4.201883e+01 7.926021e+01 lineto +4.407874e+01 8.141021e+01 lineto +4.554966e+01 8.183647e+01 lineto +closepath +gsave +5.501856e-01 5.501856e-01 5.501856e-01 setrgbcolor +fill +grestore +newpath +4.554966e+01 8.183647e+01 moveto +4.363457e+01 7.972844e+01 lineto +4.201883e+01 7.926021e+01 lineto +4.407874e+01 8.141021e+01 lineto +4.554966e+01 8.183647e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.761199e+01 8.36732e+01 moveto +4.554966e+01 8.183647e+01 lineto +4.407874e+01 8.141021e+01 lineto +4.629704e+01 8.329213e+01 lineto +4.761199e+01 8.36732e+01 lineto +closepath +gsave +5.271505e-01 5.271505e-01 5.271505e-01 setrgbcolor +fill +grestore +newpath +4.761199e+01 8.36732e+01 moveto +4.554966e+01 8.183647e+01 lineto +4.407874e+01 8.141021e+01 lineto +4.629704e+01 8.329213e+01 lineto +4.761199e+01 8.36732e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.980596e+01 8.522472e+01 moveto +4.761199e+01 8.36732e+01 lineto +4.629704e+01 8.329213e+01 lineto +4.865692e+01 8.489174e+01 lineto +4.980596e+01 8.522472e+01 lineto +closepath +gsave +5.059124e-01 5.059124e-01 5.059124e-01 setrgbcolor +fill +grestore +newpath +4.980596e+01 8.522472e+01 moveto +4.761199e+01 8.36732e+01 lineto +4.629704e+01 8.329213e+01 lineto +4.865692e+01 8.489174e+01 lineto +4.980596e+01 8.522472e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.211495e+01 8.64793e+01 moveto +4.980596e+01 8.522472e+01 lineto +4.865692e+01 8.489174e+01 lineto +5.114053e+01 8.619692e+01 lineto +5.211495e+01 8.64793e+01 lineto +closepath +gsave +4.867122e-01 4.867122e-01 4.867122e-01 setrgbcolor +fill +grestore +newpath +5.211495e+01 8.64793e+01 moveto +4.980596e+01 8.522472e+01 lineto +4.865692e+01 8.489174e+01 lineto +5.114053e+01 8.619692e+01 lineto +5.211495e+01 8.64793e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.452149e+01 8.742743e+01 moveto +5.211495e+01 8.64793e+01 lineto +5.114053e+01 8.619692e+01 lineto +5.372906e+01 8.71978e+01 lineto +5.452149e+01 8.742743e+01 lineto +closepath +gsave +4.696973e-01 4.696973e-01 4.696973e-01 setrgbcolor +fill +grestore +newpath +5.452149e+01 8.742743e+01 moveto +5.211495e+01 8.64793e+01 lineto +5.114053e+01 8.619692e+01 lineto +5.372906e+01 8.71978e+01 lineto +5.452149e+01 8.742743e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.995497e+01 8.644663e+01 moveto +6.736172e+01 8.740392e+01 lineto +6.754032e+01 8.745568e+01 lineto +7.032969e+01 8.655522e+01 lineto +6.995497e+01 8.644663e+01 lineto +closepath +gsave +5.329246e-01 5.329246e-01 5.329246e-01 setrgbcolor +fill +grestore +newpath +6.995497e+01 8.644663e+01 moveto +6.736172e+01 8.740392e+01 lineto +6.754032e+01 8.745568e+01 lineto +7.032969e+01 8.655522e+01 lineto +6.995497e+01 8.644663e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.251071e+01 8.518314e+01 moveto +6.995497e+01 8.644663e+01 lineto +7.032969e+01 8.655522e+01 lineto +7.307871e+01 8.534774e+01 lineto +7.251071e+01 8.518314e+01 lineto +closepath +gsave +5.563875e-01 5.563875e-01 5.563875e-01 setrgbcolor +fill +grestore +newpath +7.251071e+01 8.518314e+01 moveto +6.995497e+01 8.644663e+01 lineto +7.032969e+01 8.655522e+01 lineto +7.307871e+01 8.534774e+01 lineto +7.251071e+01 8.518314e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.50096e+01 8.362302e+01 moveto +7.251071e+01 8.518314e+01 lineto +7.307871e+01 8.534774e+01 lineto +7.576657e+01 8.384238e+01 lineto +7.50096e+01 8.362302e+01 lineto +closepath +gsave +5.812156e-01 5.812156e-01 5.812156e-01 setrgbcolor +fill +grestore +newpath +7.50096e+01 8.362302e+01 moveto +7.251071e+01 8.518314e+01 lineto +7.307871e+01 8.534774e+01 lineto +7.576657e+01 8.384238e+01 lineto +7.50096e+01 8.362302e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.219232e+01 4.616799e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.201223e+01 4.556772e+00 lineto +6.219232e+01 4.616799e+00 lineto +closepath +gsave +5.129792e-01 5.129792e-01 5.129792e-01 setrgbcolor +fill +grestore +newpath +6.219232e+01 4.616799e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.201223e+01 4.556772e+00 lineto +6.219232e+01 4.616799e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.94059e+01 5.546888e+00 moveto +6.219232e+01 4.616799e+00 lineto +6.201223e+01 4.556772e+00 lineto +5.904708e+01 5.427287e+00 lineto +5.94059e+01 5.546888e+00 lineto +closepath +gsave +5.344267e-01 5.344267e-01 5.344267e-01 setrgbcolor +fill +grestore +newpath +5.94059e+01 5.546888e+00 moveto +6.219232e+01 4.616799e+00 lineto +6.201223e+01 4.556772e+00 lineto +5.904708e+01 5.427287e+00 lineto +5.94059e+01 5.546888e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.666182e+01 6.783224e+00 moveto +5.94059e+01 5.546888e+00 lineto +5.904708e+01 5.427287e+00 lineto +5.612699e+01 6.604955e+00 lineto +5.666182e+01 6.783224e+00 lineto +closepath +gsave +5.574731e-01 5.574731e-01 5.574731e-01 setrgbcolor +fill +grestore +newpath +5.666182e+01 6.783224e+00 moveto +5.94059e+01 5.546888e+00 lineto +5.904708e+01 5.427287e+00 lineto +5.612699e+01 6.604955e+00 lineto +5.666182e+01 6.783224e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.398087e+01 8.316448e+00 moveto +5.666182e+01 6.783224e+00 lineto +5.612699e+01 6.604955e+00 lineto +5.327408e+01 8.080861e+00 lineto +5.398087e+01 8.316448e+00 lineto +closepath +gsave +5.817569e-01 5.817569e-01 5.817569e-01 setrgbcolor +fill +grestore +newpath +5.398087e+01 8.316448e+00 moveto +5.666182e+01 6.783224e+00 lineto +5.612699e+01 6.604955e+00 lineto +5.327408e+01 8.080861e+00 lineto +5.398087e+01 8.316448e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.138334e+01 1.013495e+01 moveto +5.398087e+01 8.316448e+00 lineto +5.327408e+01 8.080861e+00 lineto +5.050994e+01 9.843832e+00 lineto +5.138334e+01 1.013495e+01 lineto +closepath +gsave +6.068359e-01 6.068359e-01 6.068359e-01 setrgbcolor +fill +grestore +newpath +5.138334e+01 1.013495e+01 moveto +5.398087e+01 8.316448e+00 lineto +5.327408e+01 8.080861e+00 lineto +5.050994e+01 9.843832e+00 lineto +5.138334e+01 1.013495e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.888889e+01 1.222497e+01 moveto +5.138334e+01 1.013495e+01 lineto +5.050994e+01 9.843832e+00 lineto +4.785549e+01 1.188052e+01 lineto +4.888889e+01 1.222497e+01 lineto +closepath +gsave +6.321986e-01 6.321986e-01 6.321986e-01 setrgbcolor +fill +grestore +newpath +4.888889e+01 1.222497e+01 moveto +5.138334e+01 1.013495e+01 lineto +5.050994e+01 9.843832e+00 lineto +4.785549e+01 1.188052e+01 lineto +4.888889e+01 1.222497e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.651641e+01 1.457068e+01 moveto +4.888889e+01 1.222497e+01 lineto +4.785549e+01 1.188052e+01 lineto +4.533084e+01 1.417551e+01 lineto +4.651641e+01 1.457068e+01 lineto +closepath +gsave +6.572805e-01 6.572805e-01 6.572805e-01 setrgbcolor +fill +grestore +newpath +4.651641e+01 1.457068e+01 moveto +4.888889e+01 1.222497e+01 lineto +4.785549e+01 1.188052e+01 lineto +4.533084e+01 1.417551e+01 lineto +4.651641e+01 1.457068e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.428386e+01 1.715433e+01 moveto +4.651641e+01 1.457068e+01 lineto +4.533084e+01 1.417551e+01 lineto +4.295509e+01 1.671142e+01 lineto +4.428386e+01 1.715433e+01 lineto +closepath +gsave +6.814831e-01 6.814831e-01 6.814831e-01 setrgbcolor +fill +grestore +newpath +4.428386e+01 1.715433e+01 moveto +4.651641e+01 1.457068e+01 lineto +4.533084e+01 1.417551e+01 lineto +4.295509e+01 1.671142e+01 lineto +4.428386e+01 1.715433e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.220814e+01 1.995635e+01 moveto +4.428386e+01 1.715433e+01 lineto +4.295509e+01 1.671142e+01 lineto +4.074623e+01 1.946906e+01 lineto +4.220814e+01 1.995635e+01 lineto +closepath +gsave +7.04196e-01 7.04196e-01 7.04196e-01 setrgbcolor +fill +grestore +newpath +4.220814e+01 1.995635e+01 moveto +4.428386e+01 1.715433e+01 lineto +4.295509e+01 1.671142e+01 lineto +4.074623e+01 1.946906e+01 lineto +4.220814e+01 1.995635e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.030497e+01 2.295553e+01 moveto +4.220814e+01 1.995635e+01 lineto +4.074623e+01 1.946906e+01 lineto +3.872098e+01 2.242755e+01 lineto +4.030497e+01 2.295553e+01 lineto +closepath +gsave +7.248206e-01 7.248206e-01 7.248206e-01 setrgbcolor +fill +grestore +newpath +4.030497e+01 2.295553e+01 moveto +4.220814e+01 1.995635e+01 lineto +4.074623e+01 1.946906e+01 lineto +3.872098e+01 2.242755e+01 lineto +4.030497e+01 2.295553e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.858874e+01 2.612917e+01 moveto +4.030497e+01 2.295553e+01 lineto +3.872098e+01 2.242755e+01 lineto +3.689468e+01 2.55645e+01 lineto +3.858874e+01 2.612917e+01 lineto +closepath +gsave +7.427939e-01 7.427939e-01 7.427939e-01 setrgbcolor +fill +grestore +newpath +3.858874e+01 2.612917e+01 moveto +4.030497e+01 2.295553e+01 lineto +3.872098e+01 2.242755e+01 lineto +3.689468e+01 2.55645e+01 lineto +3.858874e+01 2.612917e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.707246e+01 2.945324e+01 moveto +3.858874e+01 2.612917e+01 lineto +3.689468e+01 2.55645e+01 lineto +3.528114e+01 2.885615e+01 lineto +3.707246e+01 2.945324e+01 lineto +closepath +gsave +7.576115e-01 7.576115e-01 7.576115e-01 setrgbcolor +fill +grestore +newpath +3.707246e+01 2.945324e+01 moveto +3.858874e+01 2.612917e+01 lineto +3.689468e+01 2.55645e+01 lineto +3.528114e+01 2.885615e+01 lineto +3.707246e+01 2.945324e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.576761e+01 3.290257e+01 moveto +3.707246e+01 2.945324e+01 lineto +3.528114e+01 2.885615e+01 lineto +3.389259e+01 3.227759e+01 lineto +3.576761e+01 3.290257e+01 lineto +closepath +gsave +7.688488e-01 7.688488e-01 7.688488e-01 setrgbcolor +fill +grestore +newpath +3.576761e+01 3.290257e+01 moveto +3.707246e+01 2.945324e+01 lineto +3.528114e+01 2.885615e+01 lineto +3.389259e+01 3.227759e+01 lineto +3.576761e+01 3.290257e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.468406e+01 3.645106e+01 moveto +3.576761e+01 3.290257e+01 lineto +3.389259e+01 3.227759e+01 lineto +3.273954e+01 3.580291e+01 lineto +3.468406e+01 3.645106e+01 lineto +closepath +gsave +7.761789e-01 7.761789e-01 7.761789e-01 setrgbcolor +fill +grestore +newpath +3.468406e+01 3.645106e+01 moveto +3.576761e+01 3.290257e+01 lineto +3.389259e+01 3.227759e+01 lineto +3.273954e+01 3.580291e+01 lineto +3.468406e+01 3.645106e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.383001e+01 4.007184e+01 moveto +3.468406e+01 3.645106e+01 lineto +3.273954e+01 3.580291e+01 lineto +3.183071e+01 3.940543e+01 lineto +3.383001e+01 4.007184e+01 lineto +closepath +gsave +7.793869e-01 7.793869e-01 7.793869e-01 setrgbcolor +fill +grestore +newpath +3.383001e+01 4.007184e+01 moveto +3.468406e+01 3.645106e+01 lineto +3.273954e+01 3.580291e+01 lineto +3.183071e+01 3.940543e+01 lineto +3.383001e+01 4.007184e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.321193e+01 4.37375e+01 moveto +3.383001e+01 4.007184e+01 lineto +3.183071e+01 3.940543e+01 lineto +3.117299e+01 4.305787e+01 lineto +3.321193e+01 4.37375e+01 lineto +closepath +gsave +7.783785e-01 7.783785e-01 7.783785e-01 setrgbcolor +fill +grestore +newpath +3.321193e+01 4.37375e+01 moveto +3.383001e+01 4.007184e+01 lineto +3.183071e+01 3.940543e+01 lineto +3.117299e+01 4.305787e+01 lineto +3.321193e+01 4.37375e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.28345e+01 4.742028e+01 moveto +3.321193e+01 4.37375e+01 lineto +3.117299e+01 4.305787e+01 lineto +3.077135e+01 4.673259e+01 lineto +3.28345e+01 4.742028e+01 lineto +closepath +gsave +7.731845e-01 7.731845e-01 7.731845e-01 setrgbcolor +fill +grestore +newpath +3.28345e+01 4.742028e+01 moveto +3.321193e+01 4.37375e+01 lineto +3.117299e+01 4.305787e+01 lineto +3.077135e+01 4.673259e+01 lineto +3.28345e+01 4.742028e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.270058e+01 5.109231e+01 moveto +3.28345e+01 4.742028e+01 lineto +3.077135e+01 4.673259e+01 lineto +3.062884e+01 5.040176e+01 lineto +3.270058e+01 5.109231e+01 lineto +closepath +gsave +7.639593e-01 7.639593e-01 7.639593e-01 setrgbcolor +fill +grestore +newpath +3.270058e+01 5.109231e+01 moveto +3.28345e+01 4.742028e+01 lineto +3.077135e+01 4.673259e+01 lineto +3.062884e+01 5.040176e+01 lineto +3.270058e+01 5.109231e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.281118e+01 5.47258e+01 moveto +3.270058e+01 5.109231e+01 lineto +3.062884e+01 5.040176e+01 lineto +3.074653e+01 5.40376e+01 lineto +3.281118e+01 5.47258e+01 lineto +closepath +gsave +7.509739e-01 7.509739e-01 7.509739e-01 setrgbcolor +fill +grestore +newpath +3.281118e+01 5.47258e+01 moveto +3.270058e+01 5.109231e+01 lineto +3.062884e+01 5.040176e+01 lineto +3.074653e+01 5.40376e+01 lineto +3.281118e+01 5.47258e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.316547e+01 5.829322e+01 moveto +3.281118e+01 5.47258e+01 lineto +3.074653e+01 5.40376e+01 lineto +3.112354e+01 5.76126e+01 lineto +3.316547e+01 5.829322e+01 lineto +closepath +gsave +7.346045e-01 7.346045e-01 7.346045e-01 setrgbcolor +fill +grestore +newpath +3.316547e+01 5.829322e+01 moveto +3.281118e+01 5.47258e+01 lineto +3.074653e+01 5.40376e+01 lineto +3.112354e+01 5.76126e+01 lineto +3.316547e+01 5.829322e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.376075e+01 6.176758e+01 moveto +3.316547e+01 5.829322e+01 lineto +3.112354e+01 5.76126e+01 lineto +3.175701e+01 6.109969e+01 lineto +3.376075e+01 6.176758e+01 lineto +closepath +gsave +7.153159e-01 7.153159e-01 7.153159e-01 setrgbcolor +fill +grestore +newpath +3.376075e+01 6.176758e+01 moveto +3.316547e+01 5.829322e+01 lineto +3.112354e+01 5.76126e+01 lineto +3.175701e+01 6.109969e+01 lineto +3.376075e+01 6.176758e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.459253e+01 6.512257e+01 moveto +3.376075e+01 6.176758e+01 lineto +3.175701e+01 6.109969e+01 lineto +3.264214e+01 6.447246e+01 lineto +3.459253e+01 6.512257e+01 lineto +closepath +gsave +6.936426e-01 6.936426e-01 6.936426e-01 setrgbcolor +fill +grestore +newpath +3.459253e+01 6.512257e+01 moveto +3.376075e+01 6.176758e+01 lineto +3.175701e+01 6.109969e+01 lineto +3.264214e+01 6.447246e+01 lineto +3.459253e+01 6.512257e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.565451e+01 6.833279e+01 moveto +3.459253e+01 6.512257e+01 lineto +3.264214e+01 6.447246e+01 lineto +3.377223e+01 6.770539e+01 lineto +3.565451e+01 6.833279e+01 lineto +closepath +gsave +6.701661e-01 6.701661e-01 6.701661e-01 setrgbcolor +fill +grestore +newpath +3.565451e+01 6.833279e+01 moveto +3.459253e+01 6.512257e+01 lineto +3.264214e+01 6.447246e+01 lineto +3.377223e+01 6.770539e+01 lineto +3.565451e+01 6.833279e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.693864e+01 7.137395e+01 moveto +3.565451e+01 6.833279e+01 lineto +3.377223e+01 6.770539e+01 lineto +3.513874e+01 7.0774e+01 lineto +3.693864e+01 7.137395e+01 lineto +closepath +gsave +6.454918e-01 6.454918e-01 6.454918e-01 setrgbcolor +fill +grestore +newpath +3.693864e+01 7.137395e+01 moveto +3.565451e+01 6.833279e+01 lineto +3.377223e+01 6.770539e+01 lineto +3.513874e+01 7.0774e+01 lineto +3.693864e+01 7.137395e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.843522e+01 7.422301e+01 moveto +3.693864e+01 7.137395e+01 lineto +3.513874e+01 7.0774e+01 lineto +3.67313e+01 7.365506e+01 lineto +3.843522e+01 7.422301e+01 lineto +closepath +gsave +6.202252e-01 6.202252e-01 6.202252e-01 setrgbcolor +fill +grestore +newpath +3.843522e+01 7.422301e+01 moveto +3.693864e+01 7.137395e+01 lineto +3.513874e+01 7.0774e+01 lineto +3.67313e+01 7.365506e+01 lineto +3.843522e+01 7.422301e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.01329e+01 7.685842e+01 moveto +3.843522e+01 7.422301e+01 lineto +3.67313e+01 7.365506e+01 lineto +3.853788e+01 7.632676e+01 lineto +4.01329e+01 7.685842e+01 lineto +closepath +gsave +5.949493e-01 5.949493e-01 5.949493e-01 setrgbcolor +fill +grestore +newpath +4.01329e+01 7.685842e+01 moveto +3.843522e+01 7.422301e+01 lineto +3.67313e+01 7.365506e+01 lineto +3.853788e+01 7.632676e+01 lineto +4.01329e+01 7.685842e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.201883e+01 7.926021e+01 moveto +4.01329e+01 7.685842e+01 lineto +3.853788e+01 7.632676e+01 lineto +4.054478e+01 7.876888e+01 lineto +4.201883e+01 7.926021e+01 lineto +closepath +gsave +5.702041e-01 5.702041e-01 5.702041e-01 setrgbcolor +fill +grestore +newpath +4.201883e+01 7.926021e+01 moveto +4.01329e+01 7.685842e+01 lineto +3.853788e+01 7.632676e+01 lineto +4.054478e+01 7.876888e+01 lineto +4.201883e+01 7.926021e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.407874e+01 8.141021e+01 moveto +4.201883e+01 7.926021e+01 lineto +4.054478e+01 7.876888e+01 lineto +4.273682e+01 8.096291e+01 lineto +4.407874e+01 8.141021e+01 lineto +closepath +gsave +5.464684e-01 5.464684e-01 5.464684e-01 setrgbcolor +fill +grestore +newpath +4.407874e+01 8.141021e+01 moveto +4.201883e+01 7.926021e+01 lineto +4.054478e+01 7.876888e+01 lineto +4.273682e+01 8.096291e+01 lineto +4.407874e+01 8.141021e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.629704e+01 8.329213e+01 moveto +4.407874e+01 8.141021e+01 lineto +4.273682e+01 8.096291e+01 lineto +4.50974e+01 8.289227e+01 lineto +4.629704e+01 8.329213e+01 lineto +closepath +gsave +5.241467e-01 5.241467e-01 5.241467e-01 setrgbcolor +fill +grestore +newpath +4.629704e+01 8.329213e+01 moveto +4.407874e+01 8.141021e+01 lineto +4.273682e+01 8.096291e+01 lineto +4.50974e+01 8.289227e+01 lineto +4.629704e+01 8.329213e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.865692e+01 8.489174e+01 moveto +4.629704e+01 8.329213e+01 lineto +4.50974e+01 8.289227e+01 lineto +4.760865e+01 8.454233e+01 lineto +4.865692e+01 8.489174e+01 lineto +closepath +gsave +5.035591e-01 5.035591e-01 5.035591e-01 setrgbcolor +fill +grestore +newpath +4.865692e+01 8.489174e+01 moveto +4.629704e+01 8.329213e+01 lineto +4.50974e+01 8.289227e+01 lineto +4.760865e+01 8.454233e+01 lineto +4.865692e+01 8.489174e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.114053e+01 8.619692e+01 moveto +4.865692e+01 8.489174e+01 lineto +4.760865e+01 8.454233e+01 lineto +5.025156e+01 8.590061e+01 lineto +5.114053e+01 8.619692e+01 lineto +closepath +gsave +4.849362e-01 4.849362e-01 4.849362e-01 setrgbcolor +fill +grestore +newpath +5.114053e+01 8.619692e+01 moveto +4.865692e+01 8.489174e+01 lineto +4.760865e+01 8.454233e+01 lineto +5.025156e+01 8.590061e+01 lineto +5.114053e+01 8.619692e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.372906e+01 8.71978e+01 moveto +5.114053e+01 8.619692e+01 lineto +5.025156e+01 8.590061e+01 lineto +5.300613e+01 8.695682e+01 lineto +5.372906e+01 8.71978e+01 lineto +closepath +gsave +4.684189e-01 4.684189e-01 4.684189e-01 setrgbcolor +fill +grestore +newpath +5.372906e+01 8.71978e+01 moveto +5.114053e+01 8.619692e+01 lineto +5.025156e+01 8.590061e+01 lineto +5.300613e+01 8.695682e+01 lineto +5.372906e+01 8.71978e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.032969e+01 8.655522e+01 moveto +6.754032e+01 8.745568e+01 lineto +6.770326e+01 8.750999e+01 lineto +7.067154e+01 8.666917e+01 lineto +7.032969e+01 8.655522e+01 lineto +closepath +gsave +5.323059e-01 5.323059e-01 5.323059e-01 setrgbcolor +fill +grestore +newpath +7.032969e+01 8.655522e+01 moveto +6.754032e+01 8.745568e+01 lineto +6.770326e+01 8.750999e+01 lineto +7.067154e+01 8.666917e+01 lineto +7.032969e+01 8.655522e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.307871e+01 8.534774e+01 moveto +7.032969e+01 8.655522e+01 lineto +7.067154e+01 8.666917e+01 lineto +7.359689e+01 8.552046e+01 lineto +7.307871e+01 8.534774e+01 lineto +closepath +gsave +5.55214e-01 5.55214e-01 5.55214e-01 setrgbcolor +fill +grestore +newpath +7.307871e+01 8.534774e+01 moveto +7.032969e+01 8.655522e+01 lineto +7.067154e+01 8.666917e+01 lineto +7.359689e+01 8.552046e+01 lineto +7.307871e+01 8.534774e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.576657e+01 8.384238e+01 moveto +7.307871e+01 8.534774e+01 lineto +7.359689e+01 8.552046e+01 lineto +7.645715e+01 8.407257e+01 lineto +7.576657e+01 8.384238e+01 lineto +closepath +gsave +5.793976e-01 5.793976e-01 5.793976e-01 setrgbcolor +fill +grestore +newpath +7.576657e+01 8.384238e+01 moveto +7.307871e+01 8.534774e+01 lineto +7.359689e+01 8.552046e+01 lineto +7.645715e+01 8.407257e+01 lineto +7.576657e+01 8.384238e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.201223e+01 4.556772e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.185056e+01 4.494291e+00 lineto +6.201223e+01 4.556772e+00 lineto +closepath +gsave +5.127169e-01 5.127169e-01 5.127169e-01 setrgbcolor +fill +grestore +newpath +6.201223e+01 4.556772e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.185056e+01 4.494291e+00 lineto +6.201223e+01 4.556772e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.904708e+01 5.427287e+00 moveto +6.201223e+01 4.556772e+00 lineto +6.185056e+01 4.494291e+00 lineto +5.872496e+01 5.302799e+00 lineto +5.904708e+01 5.427287e+00 lineto +closepath +gsave +5.335465e-01 5.335465e-01 5.335465e-01 setrgbcolor +fill +grestore +newpath +5.904708e+01 5.427287e+00 moveto +6.201223e+01 4.556772e+00 lineto +6.185056e+01 4.494291e+00 lineto +5.872496e+01 5.302799e+00 lineto +5.904708e+01 5.427287e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.612699e+01 6.604955e+00 moveto +5.904708e+01 5.427287e+00 lineto +5.872496e+01 5.302799e+00 lineto +5.564687e+01 6.419403e+00 lineto +5.612699e+01 6.604955e+00 lineto +closepath +gsave +5.55853e-01 5.55853e-01 5.55853e-01 setrgbcolor +fill +grestore +newpath +5.612699e+01 6.604955e+00 moveto +5.904708e+01 5.427287e+00 lineto +5.872496e+01 5.302799e+00 lineto +5.564687e+01 6.419403e+00 lineto +5.612699e+01 6.604955e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.327408e+01 8.080861e+00 moveto +5.612699e+01 6.604955e+00 lineto +5.564687e+01 6.419403e+00 lineto +5.263959e+01 7.835649e+00 lineto +5.327408e+01 8.080861e+00 lineto +closepath +gsave +5.79283e-01 5.79283e-01 5.79283e-01 setrgbcolor +fill +grestore +newpath +5.327408e+01 8.080861e+00 moveto +5.612699e+01 6.604955e+00 lineto +5.564687e+01 6.419403e+00 lineto +5.263959e+01 7.835649e+00 lineto +5.327408e+01 8.080861e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.050994e+01 9.843832e+00 moveto +5.327408e+01 8.080861e+00 lineto +5.263959e+01 7.835649e+00 lineto +4.972588e+01 9.540816e+00 lineto +5.050994e+01 9.843832e+00 lineto +closepath +gsave +6.034077e-01 6.034077e-01 6.034077e-01 setrgbcolor +fill +grestore +newpath +5.050994e+01 9.843832e+00 moveto +5.327408e+01 8.080861e+00 lineto +5.263959e+01 7.835649e+00 lineto +4.972588e+01 9.540816e+00 lineto +5.050994e+01 9.843832e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.785549e+01 1.188052e+01 moveto +5.050994e+01 9.843832e+00 lineto +4.972588e+01 9.540816e+00 lineto +4.69278e+01 1.152199e+01 lineto +4.785549e+01 1.188052e+01 lineto +closepath +gsave +6.277345e-01 6.277345e-01 6.277345e-01 setrgbcolor +fill +grestore +newpath +4.785549e+01 1.188052e+01 moveto +5.050994e+01 9.843832e+00 lineto +4.972588e+01 9.540816e+00 lineto +4.69278e+01 1.152199e+01 lineto +4.785549e+01 1.188052e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.533084e+01 1.417551e+01 moveto +4.785549e+01 1.188052e+01 lineto +4.69278e+01 1.152199e+01 lineto +4.426654e+01 1.376419e+01 lineto +4.533084e+01 1.417551e+01 lineto +closepath +gsave +6.517226e-01 6.517226e-01 6.517226e-01 setrgbcolor +fill +grestore +newpath +4.533084e+01 1.417551e+01 moveto +4.785549e+01 1.188052e+01 lineto +4.69278e+01 1.152199e+01 lineto +4.426654e+01 1.376419e+01 lineto +4.533084e+01 1.417551e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.295509e+01 1.671142e+01 moveto +4.533084e+01 1.417551e+01 lineto +4.426654e+01 1.376419e+01 lineto +4.176223e+01 1.625042e+01 lineto +4.295509e+01 1.671142e+01 lineto +closepath +gsave +6.748016e-01 6.748016e-01 6.748016e-01 setrgbcolor +fill +grestore +newpath +4.295509e+01 1.671142e+01 moveto +4.533084e+01 1.417551e+01 lineto +4.426654e+01 1.376419e+01 lineto +4.176223e+01 1.625042e+01 lineto +4.295509e+01 1.671142e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.074623e+01 1.946906e+01 moveto +4.295509e+01 1.671142e+01 lineto +4.176223e+01 1.625042e+01 lineto +3.943385e+01 1.896187e+01 lineto +4.074623e+01 1.946906e+01 lineto +closepath +gsave +6.963921e-01 6.963921e-01 6.963921e-01 setrgbcolor +fill +grestore +newpath +4.074623e+01 1.946906e+01 moveto +4.295509e+01 1.671142e+01 lineto +4.176223e+01 1.625042e+01 lineto +3.943385e+01 1.896187e+01 lineto +4.074623e+01 1.946906e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.872098e+01 2.242755e+01 moveto +4.074623e+01 1.946906e+01 lineto +3.943385e+01 1.896187e+01 lineto +3.729902e+01 2.187801e+01 lineto +3.872098e+01 2.242755e+01 lineto +closepath +gsave +7.159281e-01 7.159281e-01 7.159281e-01 setrgbcolor +fill +grestore +newpath +3.872098e+01 2.242755e+01 moveto +4.074623e+01 1.946906e+01 lineto +3.943385e+01 1.896187e+01 lineto +3.729902e+01 2.187801e+01 lineto +3.872098e+01 2.242755e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.689468e+01 2.55645e+01 moveto +3.872098e+01 2.242755e+01 lineto +3.729902e+01 2.187801e+01 lineto +3.537389e+01 2.497676e+01 lineto +3.689468e+01 2.55645e+01 lineto +closepath +gsave +7.328796e-01 7.328796e-01 7.328796e-01 setrgbcolor +fill +grestore +newpath +3.689468e+01 2.55645e+01 moveto +3.872098e+01 2.242755e+01 lineto +3.729902e+01 2.187801e+01 lineto +3.537389e+01 2.497676e+01 lineto +3.689468e+01 2.55645e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.528114e+01 2.885615e+01 moveto +3.689468e+01 2.55645e+01 lineto +3.537389e+01 2.497676e+01 lineto +3.367304e+01 2.823467e+01 lineto +3.528114e+01 2.885615e+01 lineto +closepath +gsave +7.467743e-01 7.467743e-01 7.467743e-01 setrgbcolor +fill +grestore +newpath +3.528114e+01 2.885615e+01 moveto +3.689468e+01 2.55645e+01 lineto +3.537389e+01 2.497676e+01 lineto +3.367304e+01 2.823467e+01 lineto +3.528114e+01 2.885615e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.389259e+01 3.227759e+01 moveto +3.528114e+01 2.885615e+01 lineto +3.367304e+01 2.823467e+01 lineto +3.220936e+01 3.162707e+01 lineto +3.389259e+01 3.227759e+01 lineto +closepath +gsave +7.572169e-01 7.572169e-01 7.572169e-01 setrgbcolor +fill +grestore +newpath +3.389259e+01 3.227759e+01 moveto +3.528114e+01 2.885615e+01 lineto +3.367304e+01 2.823467e+01 lineto +3.220936e+01 3.162707e+01 lineto +3.389259e+01 3.227759e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.273954e+01 3.580291e+01 moveto +3.389259e+01 3.227759e+01 lineto +3.220936e+01 3.162707e+01 lineto +3.099391e+01 3.512828e+01 lineto +3.273954e+01 3.580291e+01 lineto +closepath +gsave +7.639062e-01 7.639062e-01 7.639062e-01 setrgbcolor +fill +grestore +newpath +3.273954e+01 3.580291e+01 moveto +3.389259e+01 3.227759e+01 lineto +3.220936e+01 3.162707e+01 lineto +3.099391e+01 3.512828e+01 lineto +3.273954e+01 3.580291e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.183071e+01 3.940543e+01 moveto +3.273954e+01 3.580291e+01 lineto +3.099391e+01 3.512828e+01 lineto +3.003591e+01 3.871179e+01 lineto +3.183071e+01 3.940543e+01 lineto +closepath +gsave +7.666476e-01 7.666476e-01 7.666476e-01 setrgbcolor +fill +grestore +newpath +3.183071e+01 3.940543e+01 moveto +3.273954e+01 3.580291e+01 lineto +3.099391e+01 3.512828e+01 lineto +3.003591e+01 3.871179e+01 lineto +3.183071e+01 3.940543e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.117299e+01 4.305787e+01 moveto +3.183071e+01 3.940543e+01 lineto +3.003591e+01 3.871179e+01 lineto +2.93426e+01 4.235048e+01 lineto +3.117299e+01 4.305787e+01 lineto +closepath +gsave +7.653614e-01 7.653614e-01 7.653614e-01 setrgbcolor +fill +grestore +newpath +3.117299e+01 4.305787e+01 moveto +3.183071e+01 3.940543e+01 lineto +3.003591e+01 3.871179e+01 lineto +2.93426e+01 4.235048e+01 lineto +3.117299e+01 4.305787e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.077135e+01 4.673259e+01 moveto +3.117299e+01 4.305787e+01 lineto +2.93426e+01 4.235048e+01 lineto +2.891923e+01 4.60168e+01 lineto +3.077135e+01 4.673259e+01 lineto +closepath +gsave +7.600863e-01 7.600863e-01 7.600863e-01 setrgbcolor +fill +grestore +newpath +3.077135e+01 4.673259e+01 moveto +3.117299e+01 4.305787e+01 lineto +2.93426e+01 4.235048e+01 lineto +2.891923e+01 4.60168e+01 lineto +3.077135e+01 4.673259e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.062884e+01 5.040176e+01 moveto +3.077135e+01 4.673259e+01 lineto +2.891923e+01 4.60168e+01 lineto +2.8769e+01 4.968299e+01 lineto +3.062884e+01 5.040176e+01 lineto +closepath +gsave +7.509776e-01 7.509776e-01 7.509776e-01 setrgbcolor +fill +grestore +newpath +3.062884e+01 5.040176e+01 moveto +3.077135e+01 4.673259e+01 lineto +2.891923e+01 4.60168e+01 lineto +2.8769e+01 4.968299e+01 lineto +3.062884e+01 5.040176e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.074653e+01 5.40376e+01 moveto +3.062884e+01 5.040176e+01 lineto +2.8769e+01 4.968299e+01 lineto +2.889307e+01 5.33213e+01 lineto +3.074653e+01 5.40376e+01 lineto +closepath +gsave +7.383002e-01 7.383002e-01 7.383002e-01 setrgbcolor +fill +grestore +newpath +3.074653e+01 5.40376e+01 moveto +3.062884e+01 5.040176e+01 lineto +2.8769e+01 4.968299e+01 lineto +2.889307e+01 5.33213e+01 lineto +3.074653e+01 5.40376e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.112354e+01 5.76126e+01 moveto +3.074653e+01 5.40376e+01 lineto +2.889307e+01 5.33213e+01 lineto +2.929048e+01 5.690418e+01 lineto +3.112354e+01 5.76126e+01 lineto +closepath +gsave +7.224176e-01 7.224176e-01 7.224176e-01 setrgbcolor +fill +grestore +newpath +3.112354e+01 5.76126e+01 moveto +3.074653e+01 5.40376e+01 lineto +2.889307e+01 5.33213e+01 lineto +2.929048e+01 5.690418e+01 lineto +3.112354e+01 5.76126e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.175701e+01 6.109969e+01 moveto +3.112354e+01 5.76126e+01 lineto +2.929048e+01 5.690418e+01 lineto +2.995822e+01 6.040451e+01 lineto +3.175701e+01 6.109969e+01 lineto +closepath +gsave +7.037762e-01 7.037762e-01 7.037762e-01 setrgbcolor +fill +grestore +newpath +3.175701e+01 6.109969e+01 moveto +3.112354e+01 5.76126e+01 lineto +2.929048e+01 5.690418e+01 lineto +2.995822e+01 6.040451e+01 lineto +3.175701e+01 6.109969e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.264214e+01 6.447246e+01 moveto +3.175701e+01 6.109969e+01 lineto +2.995822e+01 6.040451e+01 lineto +3.089125e+01 6.37958e+01 lineto +3.264214e+01 6.447246e+01 lineto +closepath +gsave +6.828866e-01 6.828866e-01 6.828866e-01 setrgbcolor +fill +grestore +newpath +3.264214e+01 6.447246e+01 moveto +3.175701e+01 6.109969e+01 lineto +2.995822e+01 6.040451e+01 lineto +3.089125e+01 6.37958e+01 lineto +3.264214e+01 6.447246e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.377223e+01 6.770539e+01 moveto +3.264214e+01 6.447246e+01 lineto +3.089125e+01 6.37958e+01 lineto +3.208249e+01 6.705236e+01 lineto +3.377223e+01 6.770539e+01 lineto +closepath +gsave +6.603031e-01 6.603031e-01 6.603031e-01 setrgbcolor +fill +grestore +newpath +3.377223e+01 6.770539e+01 moveto +3.264214e+01 6.447246e+01 lineto +3.089125e+01 6.37958e+01 lineto +3.208249e+01 6.705236e+01 lineto +3.377223e+01 6.770539e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.513874e+01 7.0774e+01 moveto +3.377223e+01 6.770539e+01 lineto +3.208249e+01 6.705236e+01 lineto +3.352294e+01 7.014955e+01 lineto +3.513874e+01 7.0774e+01 lineto +closepath +gsave +6.366008e-01 6.366008e-01 6.366008e-01 setrgbcolor +fill +grestore +newpath +3.513874e+01 7.0774e+01 moveto +3.377223e+01 6.770539e+01 lineto +3.208249e+01 6.705236e+01 lineto +3.352294e+01 7.014955e+01 lineto +3.513874e+01 7.0774e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.67313e+01 7.365506e+01 moveto +3.513874e+01 7.0774e+01 lineto +3.352294e+01 7.014955e+01 lineto +3.520168e+01 7.306391e+01 lineto +3.67313e+01 7.365506e+01 lineto +closepath +gsave +6.123541e-01 6.123541e-01 6.123541e-01 setrgbcolor +fill +grestore +newpath +3.67313e+01 7.365506e+01 moveto +3.513874e+01 7.0774e+01 lineto +3.352294e+01 7.014955e+01 lineto +3.520168e+01 7.306391e+01 lineto +3.67313e+01 7.365506e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.853788e+01 7.632676e+01 moveto +3.67313e+01 7.365506e+01 lineto +3.520168e+01 7.306391e+01 lineto +3.7106e+01 7.577339e+01 lineto +3.853788e+01 7.632676e+01 lineto +closepath +gsave +5.881149e-01 5.881149e-01 5.881149e-01 setrgbcolor +fill +grestore +newpath +3.853788e+01 7.632676e+01 moveto +3.67313e+01 7.365506e+01 lineto +3.520168e+01 7.306391e+01 lineto +3.7106e+01 7.577339e+01 lineto +3.853788e+01 7.632676e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.054478e+01 7.876888e+01 moveto +3.853788e+01 7.632676e+01 lineto +3.7106e+01 7.577339e+01 lineto +3.92215e+01 7.825747e+01 lineto +4.054478e+01 7.876888e+01 lineto +closepath +gsave +5.643938e-01 5.643938e-01 5.643938e-01 setrgbcolor +fill +grestore +newpath +4.054478e+01 7.876888e+01 moveto +3.853788e+01 7.632676e+01 lineto +3.7106e+01 7.577339e+01 lineto +3.92215e+01 7.825747e+01 lineto +4.054478e+01 7.876888e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.273682e+01 8.096291e+01 moveto +4.054478e+01 7.876888e+01 lineto +3.92215e+01 7.825747e+01 lineto +4.153215e+01 8.049735e+01 lineto +4.273682e+01 8.096291e+01 lineto +closepath +gsave +5.416429e-01 5.416429e-01 5.416429e-01 setrgbcolor +fill +grestore +newpath +4.273682e+01 8.096291e+01 moveto +4.054478e+01 7.876888e+01 lineto +3.92215e+01 7.825747e+01 lineto +4.153215e+01 8.049735e+01 lineto +4.273682e+01 8.096291e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.50974e+01 8.289227e+01 moveto +4.273682e+01 8.096291e+01 lineto +4.153215e+01 8.049735e+01 lineto +4.402046e+01 8.247606e+01 lineto +4.50974e+01 8.289227e+01 lineto +closepath +gsave +5.202437e-01 5.202437e-01 5.202437e-01 setrgbcolor +fill +grestore +newpath +4.50974e+01 8.289227e+01 moveto +4.273682e+01 8.096291e+01 lineto +4.153215e+01 8.049735e+01 lineto +4.402046e+01 8.247606e+01 lineto +4.50974e+01 8.289227e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.760865e+01 8.454233e+01 moveto +4.50974e+01 8.289227e+01 lineto +4.402046e+01 8.247606e+01 lineto +4.66676e+01 8.417864e+01 lineto +4.760865e+01 8.454233e+01 lineto +closepath +gsave +5.00498e-01 5.00498e-01 5.00498e-01 setrgbcolor +fill +grestore +newpath +4.760865e+01 8.454233e+01 moveto +4.50974e+01 8.289227e+01 lineto +4.402046e+01 8.247606e+01 lineto +4.66676e+01 8.417864e+01 lineto +4.760865e+01 8.454233e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.025156e+01 8.590061e+01 moveto +4.760865e+01 8.454233e+01 lineto +4.66676e+01 8.417864e+01 lineto +4.945352e+01 8.559219e+01 lineto +5.025156e+01 8.590061e+01 lineto +closepath +gsave +4.826228e-01 4.826228e-01 4.826228e-01 setrgbcolor +fill +grestore +newpath +5.025156e+01 8.590061e+01 moveto +4.760865e+01 8.454233e+01 lineto +4.66676e+01 8.417864e+01 lineto +4.945352e+01 8.559219e+01 lineto +5.025156e+01 8.590061e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.067154e+01 8.666917e+01 moveto +6.770326e+01 8.750999e+01 lineto +6.784953e+01 8.756652e+01 lineto +7.097843e+01 8.678777e+01 lineto +7.067154e+01 8.666917e+01 lineto +closepath +gsave +5.3149e-01 5.3149e-01 5.3149e-01 setrgbcolor +fill +grestore +newpath +7.067154e+01 8.666917e+01 moveto +6.770326e+01 8.750999e+01 lineto +6.784953e+01 8.756652e+01 lineto +7.097843e+01 8.678777e+01 lineto +7.067154e+01 8.666917e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.359689e+01 8.552046e+01 moveto +7.067154e+01 8.666917e+01 lineto +7.097843e+01 8.678777e+01 lineto +7.406207e+01 8.570024e+01 lineto +7.359689e+01 8.552046e+01 lineto +closepath +gsave +5.536696e-01 5.536696e-01 5.536696e-01 setrgbcolor +fill +grestore +newpath +7.359689e+01 8.552046e+01 moveto +7.067154e+01 8.666917e+01 lineto +7.097843e+01 8.678777e+01 lineto +7.406207e+01 8.570024e+01 lineto +7.359689e+01 8.552046e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.645715e+01 8.407257e+01 moveto +7.359689e+01 8.552046e+01 lineto +7.406207e+01 8.570024e+01 lineto +7.70771e+01 8.431216e+01 lineto +7.645715e+01 8.407257e+01 lineto +closepath +gsave +5.770098e-01 5.770098e-01 5.770098e-01 setrgbcolor +fill +grestore +newpath +7.645715e+01 8.407257e+01 moveto +7.359689e+01 8.552046e+01 lineto +7.406207e+01 8.570024e+01 lineto +7.70771e+01 8.431216e+01 lineto +7.645715e+01 8.407257e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.185056e+01 4.494291e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.170831e+01 4.429744e+00 lineto +6.185056e+01 4.494291e+00 lineto +closepath +gsave +5.123925e-01 5.123925e-01 5.123925e-01 setrgbcolor +fill +grestore +newpath +6.185056e+01 4.494291e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.170831e+01 4.429744e+00 lineto +6.185056e+01 4.494291e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.872496e+01 5.302799e+00 moveto +6.185056e+01 4.494291e+00 lineto +6.170831e+01 4.429744e+00 lineto +5.844154e+01 5.174193e+00 lineto +5.872496e+01 5.302799e+00 lineto +closepath +gsave +5.324617e-01 5.324617e-01 5.324617e-01 setrgbcolor +fill +grestore +newpath +5.872496e+01 5.302799e+00 moveto +6.185056e+01 4.494291e+00 lineto +6.170831e+01 4.429744e+00 lineto +5.844154e+01 5.174193e+00 lineto +5.872496e+01 5.302799e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.564687e+01 6.419403e+00 moveto +5.872496e+01 5.302799e+00 lineto +5.844154e+01 5.174193e+00 lineto +5.522442e+01 6.227711e+00 lineto +5.564687e+01 6.419403e+00 lineto +closepath +gsave +5.538622e-01 5.538622e-01 5.538622e-01 setrgbcolor +fill +grestore +newpath +5.564687e+01 6.419403e+00 moveto +5.872496e+01 5.302799e+00 lineto +5.844154e+01 5.174193e+00 lineto +5.522442e+01 6.227711e+00 lineto +5.564687e+01 6.419403e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.263959e+01 7.835649e+00 moveto +5.564687e+01 6.419403e+00 lineto +5.522442e+01 6.227711e+00 lineto +5.20813e+01 7.582323e+00 lineto +5.263959e+01 7.835649e+00 lineto +closepath +gsave +5.762507e-01 5.762507e-01 5.762507e-01 setrgbcolor +fill +grestore +newpath +5.263959e+01 7.835649e+00 moveto +5.564687e+01 6.419403e+00 lineto +5.522442e+01 6.227711e+00 lineto +5.20813e+01 7.582323e+00 lineto +5.263959e+01 7.835649e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.972588e+01 9.540816e+00 moveto +5.263959e+01 7.835649e+00 lineto +5.20813e+01 7.582323e+00 lineto +4.903599e+01 9.227774e+00 lineto +4.972588e+01 9.540816e+00 lineto +closepath +gsave +5.99215e-01 5.99215e-01 5.99215e-01 setrgbcolor +fill +grestore +newpath +4.972588e+01 9.540816e+00 moveto +5.263959e+01 7.835649e+00 lineto +5.20813e+01 7.582323e+00 lineto +4.903599e+01 9.227774e+00 lineto +4.972588e+01 9.540816e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.69278e+01 1.152199e+01 moveto +4.972588e+01 9.540816e+00 lineto +4.903599e+01 9.227774e+00 lineto +4.611153e+01 1.115161e+01 lineto +4.69278e+01 1.152199e+01 lineto +closepath +gsave +6.222859e-01 6.222859e-01 6.222859e-01 setrgbcolor +fill +grestore +newpath +4.69278e+01 1.152199e+01 moveto +4.972588e+01 9.540816e+00 lineto +4.903599e+01 9.227774e+00 lineto +4.611153e+01 1.115161e+01 lineto +4.69278e+01 1.152199e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.426654e+01 1.376419e+01 moveto +4.69278e+01 1.152199e+01 lineto +4.611153e+01 1.115161e+01 lineto +4.333006e+01 1.333926e+01 lineto +4.426654e+01 1.376419e+01 lineto +closepath +gsave +6.449515e-01 6.449515e-01 6.449515e-01 setrgbcolor +fill +grestore +newpath +4.426654e+01 1.376419e+01 moveto +4.69278e+01 1.152199e+01 lineto +4.611153e+01 1.115161e+01 lineto +4.333006e+01 1.333926e+01 lineto +4.426654e+01 1.376419e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.176223e+01 1.625042e+01 moveto +4.426654e+01 1.376419e+01 lineto +4.333006e+01 1.333926e+01 lineto +4.071265e+01 1.577416e+01 lineto +4.176223e+01 1.625042e+01 lineto +closepath +gsave +6.66675e-01 6.66675e-01 6.66675e-01 setrgbcolor +fill +grestore +newpath +4.176223e+01 1.625042e+01 moveto +4.426654e+01 1.376419e+01 lineto +4.333006e+01 1.333926e+01 lineto +4.071265e+01 1.577416e+01 lineto +4.176223e+01 1.625042e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.943385e+01 1.896187e+01 moveto +4.176223e+01 1.625042e+01 lineto +4.071265e+01 1.577416e+01 lineto +3.82791e+01 1.843789e+01 lineto +3.943385e+01 1.896187e+01 lineto +closepath +gsave +6.869143e-01 6.869143e-01 6.869143e-01 setrgbcolor +fill +grestore +newpath +3.943385e+01 1.896187e+01 moveto +4.176223e+01 1.625042e+01 lineto +4.071265e+01 1.577416e+01 lineto +3.82791e+01 1.843789e+01 lineto +3.943385e+01 1.896187e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.729902e+01 2.187801e+01 moveto +3.943385e+01 1.896187e+01 lineto +3.82791e+01 1.843789e+01 lineto +3.604784e+01 2.131028e+01 lineto +3.729902e+01 2.187801e+01 lineto +closepath +gsave +7.051425e-01 7.051425e-01 7.051425e-01 setrgbcolor +fill +grestore +newpath +3.729902e+01 2.187801e+01 moveto +3.943385e+01 1.896187e+01 lineto +3.82791e+01 1.843789e+01 lineto +3.604784e+01 2.131028e+01 lineto +3.729902e+01 2.187801e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.537389e+01 2.497676e+01 moveto +3.729902e+01 2.187801e+01 lineto +3.604784e+01 2.131028e+01 lineto +3.403576e+01 2.436958e+01 lineto +3.537389e+01 2.497676e+01 lineto +closepath +gsave +7.208692e-01 7.208692e-01 7.208692e-01 setrgbcolor +fill +grestore +newpath +3.537389e+01 2.497676e+01 moveto +3.729902e+01 2.187801e+01 lineto +3.604784e+01 2.131028e+01 lineto +3.403576e+01 2.436958e+01 lineto +3.537389e+01 2.497676e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.367304e+01 2.823467e+01 moveto +3.537389e+01 2.497676e+01 lineto +3.403576e+01 2.436958e+01 lineto +3.225809e+01 2.759263e+01 lineto +3.367304e+01 2.823467e+01 lineto +closepath +gsave +7.336599e-01 7.336599e-01 7.336599e-01 setrgbcolor +fill +grestore +newpath +3.367304e+01 2.823467e+01 moveto +3.537389e+01 2.497676e+01 lineto +3.403576e+01 2.436958e+01 lineto +3.225809e+01 2.759263e+01 lineto +3.367304e+01 2.823467e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.220936e+01 3.162707e+01 moveto +3.367304e+01 2.823467e+01 lineto +3.225809e+01 2.759263e+01 lineto +3.072829e+01 3.095503e+01 lineto +3.220936e+01 3.162707e+01 lineto +closepath +gsave +7.431544e-01 7.431544e-01 7.431544e-01 setrgbcolor +fill +grestore +newpath +3.220936e+01 3.162707e+01 moveto +3.367304e+01 2.823467e+01 lineto +3.225809e+01 2.759263e+01 lineto +3.072829e+01 3.095503e+01 lineto +3.220936e+01 3.162707e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.099391e+01 3.512828e+01 moveto +3.220936e+01 3.162707e+01 lineto +3.072829e+01 3.095503e+01 lineto +2.945795e+01 3.443133e+01 lineto +3.099391e+01 3.512828e+01 lineto +closepath +gsave +7.490815e-01 7.490815e-01 7.490815e-01 setrgbcolor +fill +grestore +newpath +3.099391e+01 3.512828e+01 moveto +3.220936e+01 3.162707e+01 lineto +3.072829e+01 3.095503e+01 lineto +2.945795e+01 3.443133e+01 lineto +3.099391e+01 3.512828e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.003591e+01 3.871179e+01 moveto +3.099391e+01 3.512828e+01 lineto +2.945795e+01 3.443133e+01 lineto +2.845667e+01 3.799521e+01 lineto +3.003591e+01 3.871179e+01 lineto +closepath +gsave +7.512708e-01 7.512708e-01 7.512708e-01 setrgbcolor +fill +grestore +newpath +3.003591e+01 3.871179e+01 moveto +3.099391e+01 3.512828e+01 lineto +2.945795e+01 3.443133e+01 lineto +2.845667e+01 3.799521e+01 lineto +3.003591e+01 3.871179e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.93426e+01 4.235048e+01 moveto +3.003591e+01 3.871179e+01 lineto +2.845667e+01 3.799521e+01 lineto +2.773205e+01 4.161969e+01 lineto +2.93426e+01 4.235048e+01 lineto +closepath +gsave +7.496594e-01 7.496594e-01 7.496594e-01 setrgbcolor +fill +grestore +newpath +2.93426e+01 4.235048e+01 moveto +3.003591e+01 3.871179e+01 lineto +2.845667e+01 3.799521e+01 lineto +2.773205e+01 4.161969e+01 lineto +2.93426e+01 4.235048e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.891923e+01 4.60168e+01 moveto +2.93426e+01 4.235048e+01 lineto +2.773205e+01 4.161969e+01 lineto +2.728955e+01 4.527733e+01 lineto +2.891923e+01 4.60168e+01 lineto +closepath +gsave +7.442951e-01 7.442951e-01 7.442951e-01 setrgbcolor +fill +grestore +newpath +2.891923e+01 4.60168e+01 moveto +2.93426e+01 4.235048e+01 lineto +2.773205e+01 4.161969e+01 lineto +2.728955e+01 4.527733e+01 lineto +2.891923e+01 4.60168e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.8769e+01 4.968299e+01 moveto +2.891923e+01 4.60168e+01 lineto +2.728955e+01 4.527733e+01 lineto +2.713255e+01 4.894044e+01 lineto +2.8769e+01 4.968299e+01 lineto +closepath +gsave +7.353337e-01 7.353337e-01 7.353337e-01 setrgbcolor +fill +grestore +newpath +2.8769e+01 4.968299e+01 moveto +2.891923e+01 4.60168e+01 lineto +2.728955e+01 4.527733e+01 lineto +2.713255e+01 4.894044e+01 lineto +2.8769e+01 4.968299e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.889307e+01 5.33213e+01 moveto +2.8769e+01 4.968299e+01 lineto +2.713255e+01 4.894044e+01 lineto +2.726221e+01 5.258129e+01 lineto +2.889307e+01 5.33213e+01 lineto +closepath +gsave +7.230328e-01 7.230328e-01 7.230328e-01 setrgbcolor +fill +grestore +newpath +2.889307e+01 5.33213e+01 moveto +2.8769e+01 4.968299e+01 lineto +2.713255e+01 4.894044e+01 lineto +2.726221e+01 5.258129e+01 lineto +2.889307e+01 5.33213e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.929048e+01 5.690418e+01 moveto +2.889307e+01 5.33213e+01 lineto +2.726221e+01 5.258129e+01 lineto +2.767757e+01 5.617232e+01 lineto +2.929048e+01 5.690418e+01 lineto +closepath +gsave +7.077403e-01 7.077403e-01 7.077403e-01 setrgbcolor +fill +grestore +newpath +2.929048e+01 5.690418e+01 moveto +2.889307e+01 5.33213e+01 lineto +2.726221e+01 5.258129e+01 lineto +2.767757e+01 5.617232e+01 lineto +2.929048e+01 5.690418e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.995822e+01 6.040451e+01 moveto +2.929048e+01 5.690418e+01 lineto +2.767757e+01 5.617232e+01 lineto +2.837548e+01 5.968633e+01 lineto +2.995822e+01 6.040451e+01 lineto +closepath +gsave +6.898802e-01 6.898802e-01 6.898802e-01 setrgbcolor +fill +grestore +newpath +2.995822e+01 6.040451e+01 moveto +2.929048e+01 5.690418e+01 lineto +2.767757e+01 5.617232e+01 lineto +2.837548e+01 5.968633e+01 lineto +2.995822e+01 6.040451e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.089125e+01 6.37958e+01 moveto +2.995822e+01 6.040451e+01 lineto +2.837548e+01 5.968633e+01 lineto +2.935064e+01 6.309674e+01 lineto +3.089125e+01 6.37958e+01 lineto +closepath +gsave +6.699348e-01 6.699348e-01 6.699348e-01 setrgbcolor +fill +grestore +newpath +3.089125e+01 6.37958e+01 moveto +2.995822e+01 6.040451e+01 lineto +2.837548e+01 5.968633e+01 lineto +2.935064e+01 6.309674e+01 lineto +3.089125e+01 6.37958e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.208249e+01 6.705236e+01 moveto +3.089125e+01 6.37958e+01 lineto +2.935064e+01 6.309674e+01 lineto +3.059569e+01 6.637772e+01 lineto +3.208249e+01 6.705236e+01 lineto +closepath +gsave +6.484253e-01 6.484253e-01 6.484253e-01 setrgbcolor +fill +grestore +newpath +3.208249e+01 6.705236e+01 moveto +3.089125e+01 6.37958e+01 lineto +2.935064e+01 6.309674e+01 lineto +3.059569e+01 6.637772e+01 lineto +3.208249e+01 6.705236e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.352294e+01 7.014955e+01 moveto +3.208249e+01 6.705236e+01 lineto +3.059569e+01 6.637772e+01 lineto +3.21012e+01 6.950443e+01 lineto +3.352294e+01 7.014955e+01 lineto +closepath +gsave +6.258912e-01 6.258912e-01 6.258912e-01 setrgbcolor +fill +grestore +newpath +3.352294e+01 7.014955e+01 moveto +3.208249e+01 6.705236e+01 lineto +3.059569e+01 6.637772e+01 lineto +3.21012e+01 6.950443e+01 lineto +3.352294e+01 7.014955e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.520168e+01 7.306391e+01 moveto +3.352294e+01 7.014955e+01 lineto +3.21012e+01 6.950443e+01 lineto +3.385576e+01 7.24532e+01 lineto +3.520168e+01 7.306391e+01 lineto +closepath +gsave +6.028694e-01 6.028694e-01 6.028694e-01 setrgbcolor +fill +grestore +newpath +3.520168e+01 7.306391e+01 moveto +3.352294e+01 7.014955e+01 lineto +3.21012e+01 6.950443e+01 lineto +3.385576e+01 7.24532e+01 lineto +3.520168e+01 7.306391e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.7106e+01 7.577339e+01 moveto +3.520168e+01 7.306391e+01 lineto +3.385576e+01 7.24532e+01 lineto +3.58461e+01 7.52017e+01 lineto +3.7106e+01 7.577339e+01 lineto +closepath +gsave +5.798751e-01 5.798751e-01 5.798751e-01 setrgbcolor +fill +grestore +newpath +3.7106e+01 7.577339e+01 moveto +3.520168e+01 7.306391e+01 lineto +3.385576e+01 7.24532e+01 lineto +3.58461e+01 7.52017e+01 lineto +3.7106e+01 7.577339e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.92215e+01 7.825747e+01 moveto +3.7106e+01 7.577339e+01 lineto +3.58461e+01 7.52017e+01 lineto +3.805715e+01 7.772914e+01 lineto +3.92215e+01 7.825747e+01 lineto +closepath +gsave +5.573836e-01 5.573836e-01 5.573836e-01 setrgbcolor +fill +grestore +newpath +3.92215e+01 7.825747e+01 moveto +3.7106e+01 7.577339e+01 lineto +3.58461e+01 7.52017e+01 lineto +3.805715e+01 7.772914e+01 lineto +3.92215e+01 7.825747e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.153215e+01 8.049735e+01 moveto +3.92215e+01 7.825747e+01 lineto +3.805715e+01 7.772914e+01 lineto +4.047217e+01 8.001638e+01 lineto +4.153215e+01 8.049735e+01 lineto +closepath +gsave +5.358155e-01 5.358155e-01 5.358155e-01 setrgbcolor +fill +grestore +newpath +4.153215e+01 8.049735e+01 moveto +3.92215e+01 7.825747e+01 lineto +3.805715e+01 7.772914e+01 lineto +4.047217e+01 8.001638e+01 lineto +4.153215e+01 8.049735e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.402046e+01 8.247606e+01 moveto +4.153215e+01 8.049735e+01 lineto +4.047217e+01 8.001638e+01 lineto +4.307287e+01 8.204609e+01 lineto +4.402046e+01 8.247606e+01 lineto +closepath +gsave +5.155248e-01 5.155248e-01 5.155248e-01 setrgbcolor +fill +grestore +newpath +4.402046e+01 8.247606e+01 moveto +4.153215e+01 8.049735e+01 lineto +4.047217e+01 8.001638e+01 lineto +4.307287e+01 8.204609e+01 lineto +4.402046e+01 8.247606e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.66676e+01 8.417864e+01 moveto +4.402046e+01 8.247606e+01 lineto +4.307287e+01 8.204609e+01 lineto +4.583957e+01 8.380292e+01 lineto +4.66676e+01 8.417864e+01 lineto +closepath +gsave +4.967915e-01 4.967915e-01 4.967915e-01 setrgbcolor +fill +grestore +newpath +4.66676e+01 8.417864e+01 moveto +4.402046e+01 8.247606e+01 lineto +4.307287e+01 8.204609e+01 lineto +4.583957e+01 8.380292e+01 lineto +4.66676e+01 8.417864e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.945352e+01 8.559219e+01 moveto +4.66676e+01 8.417864e+01 lineto +4.583957e+01 8.380292e+01 lineto +4.875133e+01 8.527357e+01 lineto +4.945352e+01 8.559219e+01 lineto +closepath +gsave +4.798165e-01 4.798165e-01 4.798165e-01 setrgbcolor +fill +grestore +newpath +4.945352e+01 8.559219e+01 moveto +4.66676e+01 8.417864e+01 lineto +4.583957e+01 8.380292e+01 lineto +4.875133e+01 8.527357e+01 lineto +4.945352e+01 8.559219e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.097843e+01 8.678777e+01 moveto +6.784953e+01 8.756652e+01 lineto +6.797824e+01 8.762492e+01 lineto +7.124846e+01 8.69103e+01 lineto +7.097843e+01 8.678777e+01 lineto +closepath +gsave +5.304842e-01 5.304842e-01 5.304842e-01 setrgbcolor +fill +grestore +newpath +7.097843e+01 8.678777e+01 moveto +6.784953e+01 8.756652e+01 lineto +6.797824e+01 8.762492e+01 lineto +7.124846e+01 8.69103e+01 lineto +7.097843e+01 8.678777e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.406207e+01 8.570024e+01 moveto +7.097843e+01 8.678777e+01 lineto +7.124846e+01 8.69103e+01 lineto +7.447138e+01 8.588597e+01 lineto +7.406207e+01 8.570024e+01 lineto +closepath +gsave +5.517713e-01 5.517713e-01 5.517713e-01 setrgbcolor +fill +grestore +newpath +7.406207e+01 8.570024e+01 moveto +7.097843e+01 8.678777e+01 lineto +7.124846e+01 8.69103e+01 lineto +7.447138e+01 8.588597e+01 lineto +7.406207e+01 8.570024e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.70771e+01 8.431216e+01 moveto +7.406207e+01 8.570024e+01 lineto +7.447138e+01 8.588597e+01 lineto +7.762259e+01 8.455968e+01 lineto +7.70771e+01 8.431216e+01 lineto +closepath +gsave +5.740823e-01 5.740823e-01 5.740823e-01 setrgbcolor +fill +grestore +newpath +7.70771e+01 8.431216e+01 moveto +7.406207e+01 8.570024e+01 lineto +7.447138e+01 8.588597e+01 lineto +7.762259e+01 8.455968e+01 lineto +7.70771e+01 8.431216e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.170831e+01 4.429744e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.158635e+01 4.363527e+00 lineto +6.170831e+01 4.429744e+00 lineto +closepath +gsave +5.120086e-01 5.120086e-01 5.120086e-01 setrgbcolor +fill +grestore +newpath +6.170831e+01 4.429744e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.158635e+01 4.363527e+00 lineto +6.170831e+01 4.429744e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.844154e+01 5.174193e+00 moveto +6.170831e+01 4.429744e+00 lineto +6.158635e+01 4.363527e+00 lineto +5.819855e+01 5.042261e+00 lineto +5.844154e+01 5.174193e+00 lineto +closepath +gsave +5.311824e-01 5.311824e-01 5.311824e-01 setrgbcolor +fill +grestore +newpath +5.844154e+01 5.174193e+00 moveto +6.170831e+01 4.429744e+00 lineto +6.158635e+01 4.363527e+00 lineto +5.819855e+01 5.042261e+00 lineto +5.844154e+01 5.174193e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.522442e+01 6.227711e+00 moveto +5.844154e+01 5.174193e+00 lineto +5.819855e+01 5.042261e+00 lineto +5.486223e+01 6.031062e+00 lineto +5.522442e+01 6.227711e+00 lineto +closepath +gsave +5.515226e-01 5.515226e-01 5.515226e-01 setrgbcolor +fill +grestore +newpath +5.522442e+01 6.227711e+00 moveto +5.844154e+01 5.174193e+00 lineto +5.819855e+01 5.042261e+00 lineto +5.486223e+01 6.031062e+00 lineto +5.522442e+01 6.227711e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.20813e+01 7.582323e+00 moveto +5.522442e+01 6.227711e+00 lineto +5.486223e+01 6.031062e+00 lineto +5.160266e+01 7.322446e+00 lineto +5.20813e+01 7.582323e+00 lineto +closepath +gsave +5.726979e-01 5.726979e-01 5.726979e-01 setrgbcolor +fill +grestore +newpath +5.20813e+01 7.582323e+00 moveto +5.522442e+01 6.227711e+00 lineto +5.486223e+01 6.031062e+00 lineto +5.160266e+01 7.322446e+00 lineto +5.20813e+01 7.582323e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.903599e+01 9.227774e+00 moveto +5.20813e+01 7.582323e+00 lineto +5.160266e+01 7.322446e+00 lineto +4.844452e+01 8.906636e+00 lineto +4.903599e+01 9.227774e+00 lineto +closepath +gsave +5.943163e-01 5.943163e-01 5.943163e-01 setrgbcolor +fill +grestore +newpath +4.903599e+01 9.227774e+00 moveto +5.20813e+01 7.582323e+00 lineto +5.160266e+01 7.322446e+00 lineto +4.844452e+01 8.906636e+00 lineto +4.903599e+01 9.227774e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.611153e+01 1.115161e+01 moveto +4.903599e+01 9.227774e+00 lineto +4.844452e+01 8.906636e+00 lineto +4.541171e+01 1.077164e+01 lineto +4.611153e+01 1.115161e+01 lineto +closepath +gsave +6.159356e-01 6.159356e-01 6.159356e-01 setrgbcolor +fill +grestore +newpath +4.611153e+01 1.115161e+01 moveto +4.903599e+01 9.227774e+00 lineto +4.844452e+01 8.906636e+00 lineto +4.541171e+01 1.077164e+01 lineto +4.611153e+01 1.115161e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.333006e+01 1.333926e+01 moveto +4.611153e+01 1.115161e+01 lineto +4.541171e+01 1.077164e+01 lineto +4.252719e+01 1.290334e+01 lineto +4.333006e+01 1.333926e+01 lineto +closepath +gsave +6.370775e-01 6.370775e-01 6.370775e-01 setrgbcolor +fill +grestore +newpath +4.333006e+01 1.333926e+01 moveto +4.611153e+01 1.115161e+01 lineto +4.541171e+01 1.077164e+01 lineto +4.252719e+01 1.290334e+01 lineto +4.333006e+01 1.333926e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.071265e+01 1.577416e+01 moveto +4.333006e+01 1.333926e+01 lineto +4.252719e+01 1.290334e+01 lineto +3.98128e+01 1.528559e+01 lineto +4.071265e+01 1.577416e+01 lineto +closepath +gsave +6.572438e-01 6.572438e-01 6.572438e-01 setrgbcolor +fill +grestore +newpath +4.071265e+01 1.577416e+01 moveto +4.333006e+01 1.333926e+01 lineto +4.252719e+01 1.290334e+01 lineto +3.98128e+01 1.528559e+01 lineto +4.071265e+01 1.577416e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.82791e+01 1.843789e+01 moveto +4.071265e+01 1.577416e+01 lineto +3.98128e+01 1.528559e+01 lineto +3.728908e+01 1.790036e+01 lineto +3.82791e+01 1.843789e+01 lineto +closepath +gsave +6.759351e-01 6.759351e-01 6.759351e-01 setrgbcolor +fill +grestore +newpath +3.82791e+01 1.843789e+01 moveto +4.071265e+01 1.577416e+01 lineto +3.98128e+01 1.528559e+01 lineto +3.728908e+01 1.790036e+01 lineto +3.82791e+01 1.843789e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.604784e+01 2.131028e+01 moveto +3.82791e+01 1.843789e+01 lineto +3.728908e+01 1.790036e+01 lineto +3.497516e+01 2.072787e+01 lineto +3.604784e+01 2.131028e+01 lineto +closepath +gsave +6.92669e-01 6.92669e-01 6.92669e-01 setrgbcolor +fill +grestore +newpath +3.604784e+01 2.131028e+01 moveto +3.82791e+01 1.843789e+01 lineto +3.728908e+01 1.790036e+01 lineto +3.497516e+01 2.072787e+01 lineto +3.604784e+01 2.131028e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.403576e+01 2.436958e+01 moveto +3.604784e+01 2.131028e+01 lineto +3.497516e+01 2.072787e+01 lineto +3.288853e+01 2.374669e+01 lineto +3.403576e+01 2.436958e+01 lineto +closepath +gsave +7.069997e-01 7.069997e-01 7.069997e-01 setrgbcolor +fill +grestore +newpath +3.403576e+01 2.436958e+01 moveto +3.604784e+01 2.131028e+01 lineto +3.497516e+01 2.072787e+01 lineto +3.288853e+01 2.374669e+01 lineto +3.403576e+01 2.436958e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.225809e+01 2.759263e+01 moveto +3.403576e+01 2.436958e+01 lineto +3.288853e+01 2.374669e+01 lineto +3.1045e+01 2.693398e+01 lineto +3.225809e+01 2.759263e+01 lineto +closepath +gsave +7.185358e-01 7.185358e-01 7.185358e-01 setrgbcolor +fill +grestore +newpath +3.225809e+01 2.759263e+01 moveto +3.403576e+01 2.436958e+01 lineto +3.288853e+01 2.374669e+01 lineto +3.1045e+01 2.693398e+01 lineto +3.225809e+01 2.759263e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.072829e+01 3.095503e+01 moveto +3.225809e+01 2.759263e+01 lineto +3.1045e+01 2.693398e+01 lineto +2.945852e+01 3.026561e+01 lineto +3.072829e+01 3.095503e+01 lineto +closepath +gsave +7.269561e-01 7.269561e-01 7.269561e-01 setrgbcolor +fill +grestore +newpath +3.072829e+01 3.095503e+01 moveto +3.225809e+01 2.759263e+01 lineto +3.1045e+01 2.693398e+01 lineto +2.945852e+01 3.026561e+01 lineto +3.072829e+01 3.095503e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.945795e+01 3.443133e+01 moveto +3.072829e+01 3.095503e+01 lineto +2.945852e+01 3.026561e+01 lineto +2.814111e+01 3.371635e+01 lineto +2.945795e+01 3.443133e+01 lineto +closepath +gsave +7.320233e-01 7.320233e-01 7.320233e-01 setrgbcolor +fill +grestore +newpath +2.945795e+01 3.443133e+01 moveto +3.072829e+01 3.095503e+01 lineto +2.945852e+01 3.026561e+01 lineto +2.814111e+01 3.371635e+01 lineto +2.945795e+01 3.443133e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.845667e+01 3.799521e+01 moveto +2.945795e+01 3.443133e+01 lineto +2.814111e+01 3.371635e+01 lineto +2.710274e+01 3.726009e+01 lineto +2.845667e+01 3.799521e+01 lineto +closepath +gsave +7.335937e-01 7.335937e-01 7.335937e-01 setrgbcolor +fill +grestore +newpath +2.845667e+01 3.799521e+01 moveto +2.945795e+01 3.443133e+01 lineto +2.814111e+01 3.371635e+01 lineto +2.710274e+01 3.726009e+01 lineto +2.845667e+01 3.799521e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.773205e+01 4.161969e+01 moveto +2.845667e+01 3.799521e+01 lineto +2.710274e+01 3.726009e+01 lineto +2.635127e+01 4.086999e+01 lineto +2.773205e+01 4.161969e+01 lineto +closepath +gsave +7.31623e-01 7.31623e-01 7.31623e-01 setrgbcolor +fill +grestore +newpath +2.773205e+01 4.161969e+01 moveto +2.845667e+01 3.799521e+01 lineto +2.710274e+01 3.726009e+01 lineto +2.635127e+01 4.086999e+01 lineto +2.773205e+01 4.161969e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.728955e+01 4.527733e+01 moveto +2.773205e+01 4.161969e+01 lineto +2.635127e+01 4.086999e+01 lineto +2.589238e+01 4.451873e+01 lineto +2.728955e+01 4.527733e+01 lineto +closepath +gsave +7.261685e-01 7.261685e-01 7.261685e-01 setrgbcolor +fill +grestore +newpath +2.728955e+01 4.527733e+01 moveto +2.773205e+01 4.161969e+01 lineto +2.635127e+01 4.086999e+01 lineto +2.589238e+01 4.451873e+01 lineto +2.728955e+01 4.527733e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.713255e+01 4.894044e+01 moveto +2.728955e+01 4.527733e+01 lineto +2.589238e+01 4.451873e+01 lineto +2.572955e+01 4.817868e+01 lineto +2.713255e+01 4.894044e+01 lineto +closepath +gsave +7.173863e-01 7.173863e-01 7.173863e-01 setrgbcolor +fill +grestore +newpath +2.713255e+01 4.894044e+01 moveto +2.728955e+01 4.527733e+01 lineto +2.589238e+01 4.451873e+01 lineto +2.572955e+01 4.817868e+01 lineto +2.713255e+01 4.894044e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.726221e+01 5.258129e+01 moveto +2.713255e+01 4.894044e+01 lineto +2.572955e+01 4.817868e+01 lineto +2.586403e+01 5.182214e+01 lineto +2.726221e+01 5.258129e+01 lineto +closepath +gsave +7.055248e-01 7.055248e-01 7.055248e-01 setrgbcolor +fill +grestore +newpath +2.726221e+01 5.258129e+01 moveto +2.713255e+01 4.894044e+01 lineto +2.572955e+01 4.817868e+01 lineto +2.586403e+01 5.182214e+01 lineto +2.726221e+01 5.258129e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.767757e+01 5.617232e+01 moveto +2.726221e+01 5.258129e+01 lineto +2.586403e+01 5.182214e+01 lineto +2.629477e+01 5.542152e+01 lineto +2.767757e+01 5.617232e+01 lineto +closepath +gsave +6.909141e-01 6.909141e-01 6.909141e-01 setrgbcolor +fill +grestore +newpath +2.767757e+01 5.617232e+01 moveto +2.726221e+01 5.258129e+01 lineto +2.586403e+01 5.182214e+01 lineto +2.629477e+01 5.542152e+01 lineto +2.767757e+01 5.617232e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.837548e+01 5.968633e+01 moveto +2.767757e+01 5.617232e+01 lineto +2.629477e+01 5.542152e+01 lineto +2.701853e+01 5.894958e+01 lineto +2.837548e+01 5.968633e+01 lineto +closepath +gsave +6.739524e-01 6.739524e-01 6.739524e-01 setrgbcolor +fill +grestore +newpath +2.837548e+01 5.968633e+01 moveto +2.767757e+01 5.617232e+01 lineto +2.629477e+01 5.542152e+01 lineto +2.701853e+01 5.894958e+01 lineto +2.837548e+01 5.968633e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.935064e+01 6.309674e+01 moveto +2.837548e+01 5.968633e+01 lineto +2.701853e+01 5.894958e+01 lineto +2.802983e+01 6.237961e+01 lineto +2.935064e+01 6.309674e+01 lineto +closepath +gsave +6.550897e-01 6.550897e-01 6.550897e-01 setrgbcolor +fill +grestore +newpath +2.935064e+01 6.309674e+01 moveto +2.837548e+01 5.968633e+01 lineto +2.701853e+01 5.894958e+01 lineto +2.802983e+01 6.237961e+01 lineto +2.935064e+01 6.309674e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.059569e+01 6.637772e+01 moveto +2.935064e+01 6.309674e+01 lineto +2.802983e+01 6.237961e+01 lineto +2.932101e+01 6.568563e+01 lineto +3.059569e+01 6.637772e+01 lineto +closepath +gsave +6.348097e-01 6.348097e-01 6.348097e-01 setrgbcolor +fill +grestore +newpath +3.059569e+01 6.637772e+01 moveto +2.935064e+01 6.309674e+01 lineto +2.802983e+01 6.237961e+01 lineto +2.932101e+01 6.568563e+01 lineto +3.059569e+01 6.637772e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.21012e+01 6.950443e+01 moveto +3.059569e+01 6.637772e+01 lineto +2.932101e+01 6.568563e+01 lineto +3.08823e+01 6.884262e+01 lineto +3.21012e+01 6.950443e+01 lineto +closepath +gsave +6.136112e-01 6.136112e-01 6.136112e-01 setrgbcolor +fill +grestore +newpath +3.21012e+01 6.950443e+01 moveto +3.059569e+01 6.637772e+01 lineto +2.932101e+01 6.568563e+01 lineto +3.08823e+01 6.884262e+01 lineto +3.21012e+01 6.950443e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.385576e+01 7.24532e+01 moveto +3.21012e+01 6.950443e+01 lineto +3.08823e+01 6.884262e+01 lineto +3.270187e+01 7.182669e+01 lineto +3.385576e+01 7.24532e+01 lineto +closepath +gsave +5.919889e-01 5.919889e-01 5.919889e-01 setrgbcolor +fill +grestore +newpath +3.385576e+01 7.24532e+01 moveto +3.21012e+01 6.950443e+01 lineto +3.08823e+01 6.884262e+01 lineto +3.270187e+01 7.182669e+01 lineto +3.385576e+01 7.24532e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.58461e+01 7.52017e+01 moveto +3.385576e+01 7.24532e+01 lineto +3.270187e+01 7.182669e+01 lineto +3.476595e+01 7.461523e+01 lineto +3.58461e+01 7.52017e+01 lineto +closepath +gsave +5.704163e-01 5.704163e-01 5.704163e-01 setrgbcolor +fill +grestore +newpath +3.58461e+01 7.52017e+01 moveto +3.385576e+01 7.24532e+01 lineto +3.270187e+01 7.182669e+01 lineto +3.476595e+01 7.461523e+01 lineto +3.58461e+01 7.52017e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.805715e+01 7.772914e+01 moveto +3.58461e+01 7.52017e+01 lineto +3.476595e+01 7.461523e+01 lineto +3.705892e+01 7.718715e+01 lineto +3.805715e+01 7.772914e+01 lineto +closepath +gsave +5.493291e-01 5.493291e-01 5.493291e-01 setrgbcolor +fill +grestore +newpath +3.805715e+01 7.772914e+01 moveto +3.58461e+01 7.52017e+01 lineto +3.476595e+01 7.461523e+01 lineto +3.705892e+01 7.718715e+01 lineto +3.805715e+01 7.772914e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.047217e+01 8.001638e+01 moveto +3.805715e+01 7.772914e+01 lineto +3.705892e+01 7.718715e+01 lineto +3.956341e+01 7.952296e+01 lineto +4.047217e+01 8.001638e+01 lineto +closepath +gsave +5.291121e-01 5.291121e-01 5.291121e-01 setrgbcolor +fill +grestore +newpath +4.047217e+01 8.001638e+01 moveto +3.805715e+01 7.772914e+01 lineto +3.705892e+01 7.718715e+01 lineto +3.956341e+01 7.952296e+01 lineto +4.047217e+01 8.001638e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.307287e+01 8.204609e+01 moveto +4.047217e+01 8.001638e+01 lineto +3.956341e+01 7.952296e+01 lineto +4.226047e+01 8.1605e+01 lineto +4.307287e+01 8.204609e+01 lineto +closepath +gsave +5.100888e-01 5.100888e-01 5.100888e-01 setrgbcolor +fill +grestore +newpath +4.307287e+01 8.204609e+01 moveto +4.047217e+01 8.001638e+01 lineto +3.956341e+01 7.952296e+01 lineto +4.226047e+01 8.1605e+01 lineto +4.307287e+01 8.204609e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.583957e+01 8.380292e+01 moveto +4.307287e+01 8.204609e+01 lineto +4.226047e+01 8.1605e+01 lineto +4.512968e+01 8.341748e+01 lineto +4.583957e+01 8.380292e+01 lineto +closepath +gsave +4.925139e-01 4.925139e-01 4.925139e-01 setrgbcolor +fill +grestore +newpath +4.583957e+01 8.380292e+01 moveto +4.307287e+01 8.204609e+01 lineto +4.226047e+01 8.1605e+01 lineto +4.512968e+01 8.341748e+01 lineto +4.583957e+01 8.380292e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.124846e+01 8.69103e+01 moveto +6.797824e+01 8.762492e+01 lineto +6.808858e+01 8.768483e+01 lineto +7.147997e+01 8.703599e+01 lineto +7.124846e+01 8.69103e+01 lineto +closepath +gsave +5.292976e-01 5.292976e-01 5.292976e-01 setrgbcolor +fill +grestore +newpath +7.124846e+01 8.69103e+01 moveto +6.797824e+01 8.762492e+01 lineto +6.808858e+01 8.768483e+01 lineto +7.147997e+01 8.703599e+01 lineto +7.124846e+01 8.69103e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.447138e+01 8.588597e+01 moveto +7.124846e+01 8.69103e+01 lineto +7.147997e+01 8.703599e+01 lineto +7.482229e+01 8.60765e+01 lineto +7.447138e+01 8.588597e+01 lineto +closepath +gsave +5.495397e-01 5.495397e-01 5.495397e-01 setrgbcolor +fill +grestore +newpath +7.447138e+01 8.588597e+01 moveto +7.124846e+01 8.69103e+01 lineto +7.147997e+01 8.703599e+01 lineto +7.482229e+01 8.60765e+01 lineto +7.447138e+01 8.588597e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.762259e+01 8.455968e+01 moveto +7.447138e+01 8.588597e+01 lineto +7.482229e+01 8.60765e+01 lineto +7.809026e+01 8.48136e+01 lineto +7.762259e+01 8.455968e+01 lineto +closepath +gsave +5.706514e-01 5.706514e-01 5.706514e-01 setrgbcolor +fill +grestore +newpath +7.762259e+01 8.455968e+01 moveto +7.447138e+01 8.588597e+01 lineto +7.482229e+01 8.60765e+01 lineto +7.809026e+01 8.48136e+01 lineto +7.762259e+01 8.455968e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.158635e+01 4.363527e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.148544e+01 4.296049e+00 lineto +6.158635e+01 4.363527e+00 lineto +closepath +gsave +5.115678e-01 5.115678e-01 5.115678e-01 setrgbcolor +fill +grestore +newpath +6.158635e+01 4.363527e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.148544e+01 4.296049e+00 lineto +6.158635e+01 4.363527e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.819855e+01 5.042261e+00 moveto +6.158635e+01 4.363527e+00 lineto +6.148544e+01 4.296049e+00 lineto +5.799749e+01 4.907815e+00 lineto +5.819855e+01 5.042261e+00 lineto +closepath +gsave +5.297203e-01 5.297203e-01 5.297203e-01 setrgbcolor +fill +grestore +newpath +5.819855e+01 5.042261e+00 moveto +6.158635e+01 4.363527e+00 lineto +6.148544e+01 4.296049e+00 lineto +5.799749e+01 4.907815e+00 lineto +5.819855e+01 5.042261e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.486223e+01 6.031062e+00 moveto +5.819855e+01 5.042261e+00 lineto +5.799749e+01 4.907815e+00 lineto +5.456255e+01 5.830668e+00 lineto +5.486223e+01 6.031062e+00 lineto +closepath +gsave +5.488593e-01 5.488593e-01 5.488593e-01 setrgbcolor +fill +grestore +newpath +5.486223e+01 6.031062e+00 moveto +5.819855e+01 5.042261e+00 lineto +5.799749e+01 4.907815e+00 lineto +5.456255e+01 5.830668e+00 lineto +5.486223e+01 6.031062e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.160266e+01 7.322446e+00 moveto +5.486223e+01 6.031062e+00 lineto +5.456255e+01 5.830668e+00 lineto +5.120662e+01 7.057619e+00 lineto +5.160266e+01 7.322446e+00 lineto +closepath +gsave +5.686685e-01 5.686685e-01 5.686685e-01 setrgbcolor +fill +grestore +newpath +5.160266e+01 7.322446e+00 moveto +5.486223e+01 6.031062e+00 lineto +5.456255e+01 5.830668e+00 lineto +5.120662e+01 7.057619e+00 lineto +5.160266e+01 7.322446e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.844452e+01 8.906636e+00 moveto +5.160266e+01 7.322446e+00 lineto +5.120662e+01 7.057619e+00 lineto +4.795512e+01 8.579382e+00 lineto +4.844452e+01 8.906636e+00 lineto +closepath +gsave +5.887786e-01 5.887786e-01 5.887786e-01 setrgbcolor +fill +grestore +newpath +4.844452e+01 8.906636e+00 moveto +5.160266e+01 7.322446e+00 lineto +5.120662e+01 7.057619e+00 lineto +4.795512e+01 8.579382e+00 lineto +4.844452e+01 8.906636e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.541171e+01 1.077164e+01 moveto +4.844452e+01 8.906636e+00 lineto +4.795512e+01 8.579382e+00 lineto +4.483266e+01 1.038444e+01 lineto +4.541171e+01 1.077164e+01 lineto +closepath +gsave +6.087781e-01 6.087781e-01 6.087781e-01 setrgbcolor +fill +grestore +newpath +4.541171e+01 1.077164e+01 moveto +4.844452e+01 8.906636e+00 lineto +4.795512e+01 8.579382e+00 lineto +4.483266e+01 1.038444e+01 lineto +4.541171e+01 1.077164e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.252719e+01 1.290334e+01 moveto +4.541171e+01 1.077164e+01 lineto +4.483266e+01 1.038444e+01 lineto +4.186287e+01 1.245911e+01 lineto +4.252719e+01 1.290334e+01 lineto +closepath +gsave +6.282263e-01 6.282263e-01 6.282263e-01 setrgbcolor +fill +grestore +newpath +4.252719e+01 1.290334e+01 moveto +4.541171e+01 1.077164e+01 lineto +4.483266e+01 1.038444e+01 lineto +4.186287e+01 1.245911e+01 lineto +4.252719e+01 1.290334e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.98128e+01 1.528559e+01 moveto +4.252719e+01 1.290334e+01 lineto +4.186287e+01 1.245911e+01 lineto +3.906824e+01 1.478771e+01 lineto +3.98128e+01 1.528559e+01 lineto +closepath +gsave +6.466678e-01 6.466678e-01 6.466678e-01 setrgbcolor +fill +grestore +newpath +3.98128e+01 1.528559e+01 moveto +4.252719e+01 1.290334e+01 lineto +4.186287e+01 1.245911e+01 lineto +3.906824e+01 1.478771e+01 lineto +3.98128e+01 1.528559e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.728908e+01 1.790036e+01 moveto +3.98128e+01 1.528559e+01 lineto +3.906824e+01 1.478771e+01 lineto +3.646992e+01 1.73526e+01 lineto +3.728908e+01 1.790036e+01 lineto +closepath +gsave +6.636501e-01 6.636501e-01 6.636501e-01 setrgbcolor +fill +grestore +newpath +3.728908e+01 1.790036e+01 moveto +3.98128e+01 1.528559e+01 lineto +3.906824e+01 1.478771e+01 lineto +3.646992e+01 1.73526e+01 lineto +3.728908e+01 1.790036e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.497516e+01 2.072787e+01 moveto +3.728908e+01 1.790036e+01 lineto +3.646992e+01 1.73526e+01 lineto +3.408759e+01 2.013436e+01 lineto +3.497516e+01 2.072787e+01 lineto +closepath +gsave +6.787394e-01 6.787394e-01 6.787394e-01 setrgbcolor +fill +grestore +newpath +3.497516e+01 2.072787e+01 moveto +3.728908e+01 1.790036e+01 lineto +3.646992e+01 1.73526e+01 lineto +3.408759e+01 2.013436e+01 lineto +3.497516e+01 2.072787e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.288853e+01 2.374669e+01 moveto +3.497516e+01 2.072787e+01 lineto +3.408759e+01 2.013436e+01 lineto +3.193928e+01 2.311194e+01 lineto +3.288853e+01 2.374669e+01 lineto +closepath +gsave +6.915389e-01 6.915389e-01 6.915389e-01 setrgbcolor +fill +grestore +newpath +3.288853e+01 2.374669e+01 moveto +3.497516e+01 2.072787e+01 lineto +3.408759e+01 2.013436e+01 lineto +3.193928e+01 2.311194e+01 lineto +3.288853e+01 2.374669e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.1045e+01 2.693398e+01 moveto +3.288853e+01 2.374669e+01 lineto +3.193928e+01 2.311194e+01 lineto +3.004125e+01 2.626279e+01 lineto +3.1045e+01 2.693398e+01 lineto +closepath +gsave +7.017033e-01 7.017033e-01 7.017033e-01 setrgbcolor +fill +grestore +newpath +3.1045e+01 2.693398e+01 moveto +3.288853e+01 2.374669e+01 lineto +3.193928e+01 2.311194e+01 lineto +3.004125e+01 2.626279e+01 lineto +3.1045e+01 2.693398e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.945852e+01 3.026561e+01 moveto +3.1045e+01 2.693398e+01 lineto +3.004125e+01 2.626279e+01 lineto +2.840788e+01 2.956306e+01 lineto +2.945852e+01 3.026561e+01 lineto +closepath +gsave +7.08954e-01 7.08954e-01 7.08954e-01 setrgbcolor +fill +grestore +newpath +2.945852e+01 3.026561e+01 moveto +3.1045e+01 2.693398e+01 lineto +3.004125e+01 2.626279e+01 lineto +2.840788e+01 2.956306e+01 lineto +2.945852e+01 3.026561e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.814111e+01 3.371635e+01 moveto +2.945852e+01 3.026561e+01 lineto +2.840788e+01 2.956306e+01 lineto +2.705152e+01 3.298776e+01 lineto +2.814111e+01 3.371635e+01 lineto +closepath +gsave +7.130897e-01 7.130897e-01 7.130897e-01 setrgbcolor +fill +grestore +newpath +2.814111e+01 3.371635e+01 moveto +2.945852e+01 3.026561e+01 lineto +2.840788e+01 2.956306e+01 lineto +2.705152e+01 3.298776e+01 lineto +2.814111e+01 3.371635e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.710274e+01 3.726009e+01 moveto +2.814111e+01 3.371635e+01 lineto +2.705152e+01 3.298776e+01 lineto +2.598245e+01 3.651097e+01 lineto +2.710274e+01 3.726009e+01 lineto +closepath +gsave +7.139951e-01 7.139951e-01 7.139951e-01 setrgbcolor +fill +grestore +newpath +2.710274e+01 3.726009e+01 moveto +2.814111e+01 3.371635e+01 lineto +2.705152e+01 3.298776e+01 lineto +2.598245e+01 3.651097e+01 lineto +2.710274e+01 3.726009e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.635127e+01 4.086999e+01 moveto +2.710274e+01 3.726009e+01 lineto +2.598245e+01 3.651097e+01 lineto +2.520877e+01 4.010602e+01 lineto +2.635127e+01 4.086999e+01 lineto +closepath +gsave +7.116454e-01 7.116454e-01 7.116454e-01 setrgbcolor +fill +grestore +newpath +2.635127e+01 4.086999e+01 moveto +2.710274e+01 3.726009e+01 lineto +2.598245e+01 3.651097e+01 lineto +2.520877e+01 4.010602e+01 lineto +2.635127e+01 4.086999e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.589238e+01 4.451873e+01 moveto +2.635127e+01 4.086999e+01 lineto +2.520877e+01 4.010602e+01 lineto +2.473632e+01 4.374569e+01 lineto +2.589238e+01 4.451873e+01 lineto +closepath +gsave +7.061075e-01 7.061075e-01 7.061075e-01 setrgbcolor +fill +grestore +newpath +2.589238e+01 4.451873e+01 moveto +2.635127e+01 4.086999e+01 lineto +2.520877e+01 4.010602e+01 lineto +2.473632e+01 4.374569e+01 lineto +2.589238e+01 4.451873e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.572955e+01 4.817868e+01 moveto +2.589238e+01 4.451873e+01 lineto +2.473632e+01 4.374569e+01 lineto +2.456868e+01 4.740242e+01 lineto +2.572955e+01 4.817868e+01 lineto +closepath +gsave +6.975369e-01 6.975369e-01 6.975369e-01 setrgbcolor +fill +grestore +newpath +2.572955e+01 4.817868e+01 moveto +2.589238e+01 4.451873e+01 lineto +2.473632e+01 4.374569e+01 lineto +2.456868e+01 4.740242e+01 lineto +2.572955e+01 4.817868e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.586403e+01 5.182214e+01 moveto +2.572955e+01 4.817868e+01 lineto +2.456868e+01 4.740242e+01 lineto +2.470712e+01 5.104854e+01 lineto +2.586403e+01 5.182214e+01 lineto +closepath +gsave +6.861716e-01 6.861716e-01 6.861716e-01 setrgbcolor +fill +grestore +newpath +2.586403e+01 5.182214e+01 moveto +2.572955e+01 4.817868e+01 lineto +2.456868e+01 4.740242e+01 lineto +2.470712e+01 5.104854e+01 lineto +2.586403e+01 5.182214e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.629477e+01 5.542152e+01 moveto +2.586403e+01 5.182214e+01 lineto +2.470712e+01 5.104854e+01 lineto +2.51506e+01 5.465643e+01 lineto +2.629477e+01 5.542152e+01 lineto +closepath +gsave +6.723214e-01 6.723214e-01 6.723214e-01 setrgbcolor +fill +grestore +newpath +2.629477e+01 5.542152e+01 moveto +2.586403e+01 5.182214e+01 lineto +2.470712e+01 5.104854e+01 lineto +2.51506e+01 5.465643e+01 lineto +2.629477e+01 5.542152e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.701853e+01 5.894958e+01 moveto +2.629477e+01 5.542152e+01 lineto +2.51506e+01 5.465643e+01 lineto +2.589576e+01 5.81988e+01 lineto +2.701853e+01 5.894958e+01 lineto +closepath +gsave +6.563562e-01 6.563562e-01 6.563562e-01 setrgbcolor +fill +grestore +newpath +2.701853e+01 5.894958e+01 moveto +2.629477e+01 5.542152e+01 lineto +2.51506e+01 5.465643e+01 lineto +2.589576e+01 5.81988e+01 lineto +2.701853e+01 5.894958e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.802983e+01 6.237961e+01 moveto +2.701853e+01 5.894958e+01 lineto +2.589576e+01 5.81988e+01 lineto +2.693696e+01 6.164881e+01 lineto +2.802983e+01 6.237961e+01 lineto +closepath +gsave +6.386902e-01 6.386902e-01 6.386902e-01 setrgbcolor +fill +grestore +newpath +2.802983e+01 6.237961e+01 moveto +2.701853e+01 5.894958e+01 lineto +2.589576e+01 5.81988e+01 lineto +2.693696e+01 6.164881e+01 lineto +2.802983e+01 6.237961e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.932101e+01 6.568563e+01 moveto +2.802983e+01 6.237961e+01 lineto +2.693696e+01 6.164881e+01 lineto +2.82663e+01 6.498036e+01 lineto +2.932101e+01 6.568563e+01 lineto +closepath +gsave +6.197662e-01 6.197662e-01 6.197662e-01 setrgbcolor +fill +grestore +newpath +2.932101e+01 6.568563e+01 moveto +2.802983e+01 6.237961e+01 lineto +2.693696e+01 6.164881e+01 lineto +2.82663e+01 6.498036e+01 lineto +2.932101e+01 6.568563e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.08823e+01 6.884262e+01 moveto +2.932101e+01 6.568563e+01 lineto +2.82663e+01 6.498036e+01 lineto +2.987374e+01 6.816821e+01 lineto +3.08823e+01 6.884262e+01 lineto +closepath +gsave +6.000386e-01 6.000386e-01 6.000386e-01 setrgbcolor +fill +grestore +newpath +3.08823e+01 6.884262e+01 moveto +2.932101e+01 6.568563e+01 lineto +2.82663e+01 6.498036e+01 lineto +2.987374e+01 6.816821e+01 lineto +3.08823e+01 6.884262e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.270187e+01 7.182669e+01 moveto +3.08823e+01 6.884262e+01 lineto +2.987374e+01 6.816821e+01 lineto +3.17471e+01 7.118825e+01 lineto +3.270187e+01 7.182669e+01 lineto +closepath +gsave +5.799564e-01 5.799564e-01 5.799564e-01 setrgbcolor +fill +grestore +newpath +3.270187e+01 7.182669e+01 moveto +3.08823e+01 6.884262e+01 lineto +2.987374e+01 6.816821e+01 lineto +3.17471e+01 7.118825e+01 lineto +3.270187e+01 7.182669e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.476595e+01 7.461523e+01 moveto +3.270187e+01 7.182669e+01 lineto +3.17471e+01 7.118825e+01 lineto +3.38722e+01 7.401759e+01 lineto +3.476595e+01 7.461523e+01 lineto +closepath +gsave +5.599476e-01 5.599476e-01 5.599476e-01 setrgbcolor +fill +grestore +newpath +3.476595e+01 7.461523e+01 moveto +3.270187e+01 7.182669e+01 lineto +3.17471e+01 7.118825e+01 lineto +3.38722e+01 7.401759e+01 lineto +3.476595e+01 7.461523e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.705892e+01 7.718715e+01 moveto +3.476595e+01 7.461523e+01 lineto +3.38722e+01 7.401759e+01 lineto +3.623295e+01 7.663483e+01 lineto +3.705892e+01 7.718715e+01 lineto +closepath +gsave +5.40405e-01 5.40405e-01 5.40405e-01 setrgbcolor +fill +grestore +newpath +3.705892e+01 7.718715e+01 moveto +3.476595e+01 7.461523e+01 lineto +3.38722e+01 7.401759e+01 lineto +3.623295e+01 7.663483e+01 lineto +3.705892e+01 7.718715e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.956341e+01 7.952296e+01 moveto +3.705892e+01 7.718715e+01 lineto +3.623295e+01 7.663483e+01 lineto +3.881148e+01 7.902016e+01 lineto +3.956341e+01 7.952296e+01 lineto +closepath +gsave +5.216747e-01 5.216747e-01 5.216747e-01 setrgbcolor +fill +grestore +newpath +3.956341e+01 7.952296e+01 moveto +3.705892e+01 7.718715e+01 lineto +3.623295e+01 7.663483e+01 lineto +3.881148e+01 7.902016e+01 lineto +3.956341e+01 7.952296e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.226047e+01 8.1605e+01 moveto +3.956341e+01 7.952296e+01 lineto +3.881148e+01 7.902016e+01 lineto +4.158826e+01 8.11555e+01 lineto +4.226047e+01 8.1605e+01 lineto +closepath +gsave +5.040466e-01 5.040466e-01 5.040466e-01 setrgbcolor +fill +grestore +newpath +4.226047e+01 8.1605e+01 moveto +3.956341e+01 7.952296e+01 lineto +3.881148e+01 7.902016e+01 lineto +4.158826e+01 8.11555e+01 lineto +4.226047e+01 8.1605e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.147997e+01 8.703599e+01 moveto +6.808858e+01 8.768483e+01 lineto +6.817989e+01 8.774588e+01 lineto +7.167152e+01 8.716409e+01 lineto +7.147997e+01 8.703599e+01 lineto +closepath +gsave +5.279409e-01 5.279409e-01 5.279409e-01 setrgbcolor +fill +grestore +newpath +7.147997e+01 8.703599e+01 moveto +6.808858e+01 8.768483e+01 lineto +6.817989e+01 8.774588e+01 lineto +7.167152e+01 8.716409e+01 lineto +7.147997e+01 8.703599e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.482229e+01 8.60765e+01 moveto +7.147997e+01 8.703599e+01 lineto +7.167152e+01 8.716409e+01 lineto +7.511265e+01 8.627066e+01 lineto +7.482229e+01 8.60765e+01 lineto +closepath +gsave +5.469985e-01 5.469985e-01 5.469985e-01 setrgbcolor +fill +grestore +newpath +7.482229e+01 8.60765e+01 moveto +7.147997e+01 8.703599e+01 lineto +7.167152e+01 8.716409e+01 lineto +7.511265e+01 8.627066e+01 lineto +7.482229e+01 8.60765e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.809026e+01 8.48136e+01 moveto +7.482229e+01 8.60765e+01 lineto +7.511265e+01 8.627066e+01 lineto +7.847722e+01 8.507236e+01 lineto +7.809026e+01 8.48136e+01 lineto +closepath +gsave +5.667589e-01 5.667589e-01 5.667589e-01 setrgbcolor +fill +grestore +newpath +7.809026e+01 8.48136e+01 moveto +7.482229e+01 8.60765e+01 lineto +7.511265e+01 8.627066e+01 lineto +7.847722e+01 8.507236e+01 lineto +7.809026e+01 8.48136e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.148544e+01 4.296049e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.14062e+01 4.227726e+00 lineto +6.148544e+01 4.296049e+00 lineto +closepath +gsave +5.110732e-01 5.110732e-01 5.110732e-01 setrgbcolor +fill +grestore +newpath +6.148544e+01 4.296049e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.14062e+01 4.227726e+00 lineto +6.148544e+01 4.296049e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.799749e+01 4.907815e+00 moveto +6.148544e+01 4.296049e+00 lineto +6.14062e+01 4.227726e+00 lineto +5.78396e+01 4.771687e+00 lineto +5.799749e+01 4.907815e+00 lineto +closepath +gsave +5.280885e-01 5.280885e-01 5.280885e-01 setrgbcolor +fill +grestore +newpath +5.799749e+01 4.907815e+00 moveto +6.148544e+01 4.296049e+00 lineto +6.14062e+01 4.227726e+00 lineto +5.78396e+01 4.771687e+00 lineto +5.799749e+01 4.907815e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.456255e+01 5.830668e+00 moveto +5.799749e+01 4.907815e+00 lineto +5.78396e+01 4.771687e+00 lineto +5.432722e+01 5.627764e+00 lineto +5.456255e+01 5.830668e+00 lineto +closepath +gsave +5.459008e-01 5.459008e-01 5.459008e-01 setrgbcolor +fill +grestore +newpath +5.456255e+01 5.830668e+00 moveto +5.799749e+01 4.907815e+00 lineto +5.78396e+01 4.771687e+00 lineto +5.432722e+01 5.627764e+00 lineto +5.456255e+01 5.830668e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.120662e+01 7.057619e+00 moveto +5.456255e+01 5.830668e+00 lineto +5.432722e+01 5.627764e+00 lineto +5.089562e+01 6.789476e+00 lineto +5.120662e+01 7.057619e+00 lineto +closepath +gsave +5.64211e-01 5.64211e-01 5.64211e-01 setrgbcolor +fill +grestore +newpath +5.120662e+01 7.057619e+00 moveto +5.456255e+01 5.830668e+00 lineto +5.432722e+01 5.627764e+00 lineto +5.089562e+01 6.789476e+00 lineto +5.120662e+01 7.057619e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.795512e+01 8.579382e+00 moveto +5.120662e+01 7.057619e+00 lineto +5.089562e+01 6.789476e+00 lineto +4.757081e+01 8.24803e+00 lineto +4.795512e+01 8.579382e+00 lineto +closepath +gsave +5.826758e-01 5.826758e-01 5.826758e-01 setrgbcolor +fill +grestore +newpath +4.795512e+01 8.579382e+00 moveto +5.120662e+01 7.057619e+00 lineto +5.089562e+01 6.789476e+00 lineto +4.757081e+01 8.24803e+00 lineto +4.795512e+01 8.579382e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.483266e+01 1.038444e+01 moveto +4.795512e+01 8.579382e+00 lineto +4.757081e+01 8.24803e+00 lineto +4.437794e+01 9.992382e+00 lineto +4.483266e+01 1.038444e+01 lineto +closepath +gsave +6.009174e-01 6.009174e-01 6.009174e-01 setrgbcolor +fill +grestore +newpath +4.483266e+01 1.038444e+01 moveto +4.795512e+01 8.579382e+00 lineto +4.757081e+01 8.24803e+00 lineto +4.437794e+01 9.992382e+00 lineto +4.483266e+01 1.038444e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.186287e+01 1.245911e+01 moveto +4.483266e+01 1.038444e+01 lineto +4.437794e+01 9.992382e+00 lineto +4.134119e+01 1.200933e+01 lineto +4.186287e+01 1.245911e+01 lineto +closepath +gsave +6.185356e-01 6.185356e-01 6.185356e-01 setrgbcolor +fill +grestore +newpath +4.186287e+01 1.245911e+01 moveto +4.483266e+01 1.038444e+01 lineto +4.437794e+01 9.992382e+00 lineto +4.134119e+01 1.200933e+01 lineto +4.186287e+01 1.245911e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.906824e+01 1.478771e+01 moveto +4.186287e+01 1.245911e+01 lineto +4.134119e+01 1.200933e+01 lineto +3.848355e+01 1.42836e+01 lineto +3.906824e+01 1.478771e+01 lineto +closepath +gsave +6.351215e-01 6.351215e-01 6.351215e-01 setrgbcolor +fill +grestore +newpath +3.906824e+01 1.478771e+01 moveto +4.186287e+01 1.245911e+01 lineto +4.134119e+01 1.200933e+01 lineto +3.848355e+01 1.42836e+01 lineto +3.906824e+01 1.478771e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.646992e+01 1.73526e+01 moveto +3.906824e+01 1.478771e+01 lineto +3.848355e+01 1.42836e+01 lineto +3.582665e+01 1.679798e+01 lineto +3.646992e+01 1.73526e+01 lineto +closepath +gsave +6.502722e-01 6.502722e-01 6.502722e-01 setrgbcolor +fill +grestore +newpath +3.646992e+01 1.73526e+01 moveto +3.906824e+01 1.478771e+01 lineto +3.848355e+01 1.42836e+01 lineto +3.582665e+01 1.679798e+01 lineto +3.646992e+01 1.73526e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.408759e+01 2.013436e+01 moveto +3.646992e+01 1.73526e+01 lineto +3.582665e+01 1.679798e+01 lineto +3.339061e+01 1.953342e+01 lineto +3.408759e+01 2.013436e+01 lineto +closepath +gsave +6.636059e-01 6.636059e-01 6.636059e-01 setrgbcolor +fill +grestore +newpath +3.408759e+01 2.013436e+01 moveto +3.646992e+01 1.73526e+01 lineto +3.582665e+01 1.679798e+01 lineto +3.339061e+01 1.953342e+01 lineto +3.408759e+01 2.013436e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.193928e+01 2.311194e+01 moveto +3.408759e+01 2.013436e+01 lineto +3.339061e+01 1.953342e+01 lineto +3.119386e+01 2.246924e+01 lineto +3.193928e+01 2.311194e+01 lineto +closepath +gsave +6.747768e-01 6.747768e-01 6.747768e-01 setrgbcolor +fill +grestore +newpath +3.193928e+01 2.311194e+01 moveto +3.408759e+01 2.013436e+01 lineto +3.339061e+01 1.953342e+01 lineto +3.119386e+01 2.246924e+01 lineto +3.193928e+01 2.311194e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.004125e+01 2.626279e+01 moveto +3.193928e+01 2.311194e+01 lineto +3.119386e+01 2.246924e+01 lineto +2.925304e+01 2.558319e+01 lineto +3.004125e+01 2.626279e+01 lineto +closepath +gsave +6.834887e-01 6.834887e-01 6.834887e-01 setrgbcolor +fill +grestore +newpath +3.004125e+01 2.626279e+01 moveto +3.193928e+01 2.311194e+01 lineto +3.119386e+01 2.246924e+01 lineto +2.925304e+01 2.558319e+01 lineto +3.004125e+01 2.626279e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.840788e+01 2.956306e+01 moveto +3.004125e+01 2.626279e+01 lineto +2.925304e+01 2.558319e+01 lineto +2.758284e+01 2.88517e+01 lineto +2.840788e+01 2.956306e+01 lineto +closepath +gsave +6.895066e-01 6.895066e-01 6.895066e-01 setrgbcolor +fill +grestore +newpath +2.840788e+01 2.956306e+01 moveto +3.004125e+01 2.626279e+01 lineto +2.925304e+01 2.558319e+01 lineto +2.758284e+01 2.88517e+01 lineto +2.840788e+01 2.956306e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.705152e+01 3.298776e+01 moveto +2.840788e+01 2.956306e+01 lineto +2.758284e+01 2.88517e+01 lineto +2.61959e+01 3.225004e+01 lineto +2.705152e+01 3.298776e+01 lineto +closepath +gsave +6.926668e-01 6.926668e-01 6.926668e-01 setrgbcolor +fill +grestore +newpath +2.705152e+01 3.298776e+01 moveto +2.840788e+01 2.956306e+01 lineto +2.758284e+01 2.88517e+01 lineto +2.61959e+01 3.225004e+01 lineto +2.705152e+01 3.298776e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.598245e+01 3.651097e+01 moveto +2.705152e+01 3.298776e+01 lineto +2.61959e+01 3.225004e+01 lineto +2.510273e+01 3.575247e+01 lineto +2.598245e+01 3.651097e+01 lineto +closepath +gsave +6.928828e-01 6.928828e-01 6.928828e-01 setrgbcolor +fill +grestore +newpath +2.598245e+01 3.651097e+01 moveto +2.705152e+01 3.298776e+01 lineto +2.61959e+01 3.225004e+01 lineto +2.510273e+01 3.575247e+01 lineto +2.598245e+01 3.651097e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.520877e+01 4.010602e+01 moveto +2.598245e+01 3.651097e+01 lineto +2.510273e+01 3.575247e+01 lineto +2.431159e+01 3.933248e+01 lineto +2.520877e+01 4.010602e+01 lineto +closepath +gsave +6.901494e-01 6.901494e-01 6.901494e-01 setrgbcolor +fill +grestore +newpath +2.520877e+01 4.010602e+01 moveto +2.598245e+01 3.651097e+01 lineto +2.510273e+01 3.575247e+01 lineto +2.431159e+01 3.933248e+01 lineto +2.520877e+01 4.010602e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.473632e+01 4.374569e+01 moveto +2.520877e+01 4.010602e+01 lineto +2.431159e+01 3.933248e+01 lineto +2.382849e+01 4.296296e+01 lineto +2.473632e+01 4.374569e+01 lineto +closepath +gsave +6.845428e-01 6.845428e-01 6.845428e-01 setrgbcolor +fill +grestore +newpath +2.473632e+01 4.374569e+01 moveto +2.520877e+01 4.010602e+01 lineto +2.431159e+01 3.933248e+01 lineto +2.382849e+01 4.296296e+01 lineto +2.473632e+01 4.374569e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.456868e+01 4.740242e+01 moveto +2.473632e+01 4.374569e+01 lineto +2.382849e+01 4.296296e+01 lineto +2.365707e+01 4.661643e+01 lineto +2.456868e+01 4.740242e+01 lineto +closepath +gsave +6.762168e-01 6.762168e-01 6.762168e-01 setrgbcolor +fill +grestore +newpath +2.456868e+01 4.740242e+01 moveto +2.473632e+01 4.374569e+01 lineto +2.382849e+01 4.296296e+01 lineto +2.365707e+01 4.661643e+01 lineto +2.456868e+01 4.740242e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.470712e+01 5.104854e+01 moveto +2.456868e+01 4.740242e+01 lineto +2.365707e+01 4.661643e+01 lineto +2.379864e+01 5.026524e+01 lineto +2.470712e+01 5.104854e+01 lineto +closepath +gsave +6.653973e-01 6.653973e-01 6.653973e-01 setrgbcolor +fill +grestore +newpath +2.470712e+01 5.104854e+01 moveto +2.456868e+01 4.740242e+01 lineto +2.365707e+01 4.661643e+01 lineto +2.379864e+01 5.026524e+01 lineto +2.470712e+01 5.104854e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.51506e+01 5.465643e+01 moveto +2.470712e+01 5.104854e+01 lineto +2.379864e+01 5.026524e+01 lineto +2.425212e+01 5.388176e+01 lineto +2.51506e+01 5.465643e+01 lineto +closepath +gsave +6.523723e-01 6.523723e-01 6.523723e-01 setrgbcolor +fill +grestore +newpath +2.51506e+01 5.465643e+01 moveto +2.470712e+01 5.104854e+01 lineto +2.379864e+01 5.026524e+01 lineto +2.425212e+01 5.388176e+01 lineto +2.51506e+01 5.465643e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.589576e+01 5.81988e+01 moveto +2.51506e+01 5.465643e+01 lineto +2.425212e+01 5.388176e+01 lineto +2.501408e+01 5.743861e+01 lineto +2.589576e+01 5.81988e+01 lineto +closepath +gsave +6.374808e-01 6.374808e-01 6.374808e-01 setrgbcolor +fill +grestore +newpath +2.589576e+01 5.81988e+01 moveto +2.51506e+01 5.465643e+01 lineto +2.425212e+01 5.388176e+01 lineto +2.501408e+01 5.743861e+01 lineto +2.589576e+01 5.81988e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.693696e+01 6.164881e+01 moveto +2.589576e+01 5.81988e+01 lineto +2.501408e+01 5.743861e+01 lineto +2.607875e+01 6.090887e+01 lineto +2.693696e+01 6.164881e+01 lineto +closepath +gsave +6.210993e-01 6.210993e-01 6.210993e-01 setrgbcolor +fill +grestore +newpath +2.693696e+01 6.164881e+01 moveto +2.589576e+01 5.81988e+01 lineto +2.501408e+01 5.743861e+01 lineto +2.607875e+01 6.090887e+01 lineto +2.693696e+01 6.164881e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.82663e+01 6.498036e+01 moveto +2.693696e+01 6.164881e+01 lineto +2.607875e+01 6.090887e+01 lineto +2.743807e+01 6.426625e+01 lineto +2.82663e+01 6.498036e+01 lineto +closepath +gsave +6.036271e-01 6.036271e-01 6.036271e-01 setrgbcolor +fill +grestore +newpath +2.82663e+01 6.498036e+01 moveto +2.693696e+01 6.164881e+01 lineto +2.607875e+01 6.090887e+01 lineto +2.743807e+01 6.426625e+01 lineto +2.82663e+01 6.498036e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.987374e+01 6.816821e+01 moveto +2.82663e+01 6.498036e+01 lineto +2.743807e+01 6.426625e+01 lineto +2.908175e+01 6.748536e+01 lineto +2.987374e+01 6.816821e+01 lineto +closepath +gsave +5.854717e-01 5.854717e-01 5.854717e-01 setrgbcolor +fill +grestore +newpath +2.987374e+01 6.816821e+01 moveto +2.82663e+01 6.498036e+01 lineto +2.743807e+01 6.426625e+01 lineto +2.908175e+01 6.748536e+01 lineto +2.987374e+01 6.816821e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.17471e+01 7.118825e+01 moveto +2.987374e+01 6.816821e+01 lineto +2.908175e+01 6.748536e+01 lineto +3.099735e+01 7.054181e+01 lineto +3.17471e+01 7.118825e+01 lineto +closepath +gsave +5.670337e-01 5.670337e-01 5.670337e-01 setrgbcolor +fill +grestore +newpath +3.17471e+01 7.118825e+01 moveto +2.987374e+01 6.816821e+01 lineto +2.908175e+01 6.748536e+01 lineto +3.099735e+01 7.054181e+01 lineto +3.17471e+01 7.118825e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.38722e+01 7.401759e+01 moveto +3.17471e+01 7.118825e+01 lineto +3.099735e+01 7.054181e+01 lineto +3.317036e+01 7.341247e+01 lineto +3.38722e+01 7.401759e+01 lineto +closepath +gsave +5.486935e-01 5.486935e-01 5.486935e-01 setrgbcolor +fill +grestore +newpath +3.38722e+01 7.401759e+01 moveto +3.17471e+01 7.118825e+01 lineto +3.099735e+01 7.054181e+01 lineto +3.317036e+01 7.341247e+01 lineto +3.38722e+01 7.401759e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.623295e+01 7.663483e+01 moveto +3.38722e+01 7.401759e+01 lineto +3.317036e+01 7.341247e+01 lineto +3.558434e+01 7.60756e+01 lineto +3.623295e+01 7.663483e+01 lineto +closepath +gsave +5.307991e-01 5.307991e-01 5.307991e-01 setrgbcolor +fill +grestore +newpath +3.623295e+01 7.663483e+01 moveto +3.38722e+01 7.401759e+01 lineto +3.317036e+01 7.341247e+01 lineto +3.558434e+01 7.60756e+01 lineto +3.623295e+01 7.663483e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.881148e+01 7.902016e+01 moveto +3.623295e+01 7.663483e+01 lineto +3.558434e+01 7.60756e+01 lineto +3.8221e+01 7.851105e+01 lineto +3.881148e+01 7.902016e+01 lineto +closepath +gsave +5.136557e-01 5.136557e-01 5.136557e-01 setrgbcolor +fill +grestore +newpath +3.881148e+01 7.902016e+01 moveto +3.623295e+01 7.663483e+01 lineto +3.558434e+01 7.60756e+01 lineto +3.8221e+01 7.851105e+01 lineto +3.881148e+01 7.902016e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.167152e+01 8.716409e+01 moveto +6.817989e+01 8.774588e+01 lineto +6.825158e+01 8.78077e+01 lineto +7.182194e+01 8.729378e+01 lineto +7.167152e+01 8.716409e+01 lineto +closepath +gsave +5.26426e-01 5.26426e-01 5.26426e-01 setrgbcolor +fill +grestore +newpath +7.167152e+01 8.716409e+01 moveto +6.817989e+01 8.774588e+01 lineto +6.825158e+01 8.78077e+01 lineto +7.182194e+01 8.729378e+01 lineto +7.167152e+01 8.716409e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.511265e+01 8.627066e+01 moveto +7.167152e+01 8.716409e+01 lineto +7.182194e+01 8.729378e+01 lineto +7.534066e+01 8.646725e+01 lineto +7.511265e+01 8.627066e+01 lineto +closepath +gsave +5.441744e-01 5.441744e-01 5.441744e-01 setrgbcolor +fill +grestore +newpath +7.511265e+01 8.627066e+01 moveto +7.167152e+01 8.716409e+01 lineto +7.182194e+01 8.729378e+01 lineto +7.534066e+01 8.646725e+01 lineto +7.511265e+01 8.627066e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.847722e+01 8.507236e+01 moveto +7.511265e+01 8.627066e+01 lineto +7.534066e+01 8.646725e+01 lineto +7.878109e+01 8.533436e+01 lineto +7.847722e+01 8.507236e+01 lineto +closepath +gsave +5.624513e-01 5.624513e-01 5.624513e-01 setrgbcolor +fill +grestore +newpath +7.847722e+01 8.507236e+01 moveto +7.511265e+01 8.627066e+01 lineto +7.534066e+01 8.646725e+01 lineto +7.878109e+01 8.533436e+01 lineto +7.847722e+01 8.507236e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.14062e+01 4.227726e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.134911e+01 4.158979e+00 lineto +6.14062e+01 4.227726e+00 lineto +closepath +gsave +5.105286e-01 5.105286e-01 5.105286e-01 setrgbcolor +fill +grestore +newpath +6.14062e+01 4.227726e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.134911e+01 4.158979e+00 lineto +6.14062e+01 4.227726e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.78396e+01 4.771687e+00 moveto +6.14062e+01 4.227726e+00 lineto +6.134911e+01 4.158979e+00 lineto +5.772586e+01 4.634713e+00 lineto +5.78396e+01 4.771687e+00 lineto +closepath +gsave +5.263016e-01 5.263016e-01 5.263016e-01 setrgbcolor +fill +grestore +newpath +5.78396e+01 4.771687e+00 moveto +6.14062e+01 4.227726e+00 lineto +6.134911e+01 4.158979e+00 lineto +5.772586e+01 4.634713e+00 lineto +5.78396e+01 4.771687e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.432722e+01 5.627764e+00 moveto +5.78396e+01 4.771687e+00 lineto +5.772586e+01 4.634713e+00 lineto +5.415768e+01 5.423601e+00 lineto +5.432722e+01 5.627764e+00 lineto +closepath +gsave +5.426778e-01 5.426778e-01 5.426778e-01 setrgbcolor +fill +grestore +newpath +5.432722e+01 5.627764e+00 moveto +5.78396e+01 4.771687e+00 lineto +5.772586e+01 4.634713e+00 lineto +5.415768e+01 5.423601e+00 lineto +5.432722e+01 5.627764e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.089562e+01 6.789476e+00 moveto +5.432722e+01 5.627764e+00 lineto +5.415768e+01 5.423601e+00 lineto +5.067158e+01 6.51967e+00 lineto +5.089562e+01 6.789476e+00 lineto +closepath +gsave +5.593781e-01 5.593781e-01 5.593781e-01 setrgbcolor +fill +grestore +newpath +5.089562e+01 6.789476e+00 moveto +5.432722e+01 5.627764e+00 lineto +5.415768e+01 5.423601e+00 lineto +5.067158e+01 6.51967e+00 lineto +5.089562e+01 6.789476e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.757081e+01 8.24803e+00 moveto +5.089562e+01 6.789476e+00 lineto +5.067158e+01 6.51967e+00 lineto +4.729396e+01 7.914622e+00 lineto +4.757081e+01 8.24803e+00 lineto +closepath +gsave +5.760874e-01 5.760874e-01 5.760874e-01 setrgbcolor +fill +grestore +newpath +4.757081e+01 8.24803e+00 moveto +5.089562e+01 6.789476e+00 lineto +5.067158e+01 6.51967e+00 lineto +4.729396e+01 7.914622e+00 lineto +4.757081e+01 8.24803e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.437794e+01 9.992382e+00 moveto +4.757081e+01 8.24803e+00 lineto +4.729396e+01 7.914622e+00 lineto +4.405037e+01 9.597897e+00 lineto +4.437794e+01 9.992382e+00 lineto +closepath +gsave +5.924643e-01 5.924643e-01 5.924643e-01 setrgbcolor +fill +grestore +newpath +4.437794e+01 9.992382e+00 moveto +4.757081e+01 8.24803e+00 lineto +4.729396e+01 7.914622e+00 lineto +4.405037e+01 9.597897e+00 lineto +4.437794e+01 9.992382e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.134119e+01 1.200933e+01 moveto +4.437794e+01 9.992382e+00 lineto +4.405037e+01 9.597897e+00 lineto +4.096539e+01 1.155675e+01 lineto +4.134119e+01 1.200933e+01 lineto +closepath +gsave +6.081517e-01 6.081517e-01 6.081517e-01 setrgbcolor +fill +grestore +newpath +4.134119e+01 1.200933e+01 moveto +4.437794e+01 9.992382e+00 lineto +4.405037e+01 9.597897e+00 lineto +4.096539e+01 1.155675e+01 lineto +4.134119e+01 1.200933e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.848355e+01 1.42836e+01 moveto +4.134119e+01 1.200933e+01 lineto +4.096539e+01 1.155675e+01 lineto +3.806235e+01 1.377636e+01 lineto +3.848355e+01 1.42836e+01 lineto +closepath +gsave +6.227892e-01 6.227892e-01 6.227892e-01 setrgbcolor +fill +grestore +newpath +3.848355e+01 1.42836e+01 moveto +4.134119e+01 1.200933e+01 lineto +4.096539e+01 1.155675e+01 lineto +3.806235e+01 1.377636e+01 lineto +3.848355e+01 1.42836e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.582665e+01 1.679798e+01 moveto +3.848355e+01 1.42836e+01 lineto +3.806235e+01 1.377636e+01 lineto +3.536325e+01 1.623991e+01 lineto +3.582665e+01 1.679798e+01 lineto +closepath +gsave +6.360258e-01 6.360258e-01 6.360258e-01 setrgbcolor +fill +grestore +newpath +3.582665e+01 1.679798e+01 moveto +3.848355e+01 1.42836e+01 lineto +3.806235e+01 1.377636e+01 lineto +3.536325e+01 1.623991e+01 lineto +3.582665e+01 1.679798e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.339061e+01 1.953342e+01 moveto +3.582665e+01 1.679798e+01 lineto +3.536325e+01 1.623991e+01 lineto +3.288851e+01 1.892876e+01 lineto +3.339061e+01 1.953342e+01 lineto +closepath +gsave +6.475331e-01 6.475331e-01 6.475331e-01 setrgbcolor +fill +grestore +newpath +3.339061e+01 1.953342e+01 moveto +3.582665e+01 1.679798e+01 lineto +3.536325e+01 1.623991e+01 lineto +3.288851e+01 1.892876e+01 lineto +3.339061e+01 1.953342e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.119386e+01 2.246924e+01 moveto +3.339061e+01 1.953342e+01 lineto +3.288851e+01 1.892876e+01 lineto +3.065686e+01 2.182255e+01 lineto +3.119386e+01 2.246924e+01 lineto +closepath +gsave +6.570176e-01 6.570176e-01 6.570176e-01 setrgbcolor +fill +grestore +newpath +3.119386e+01 2.246924e+01 moveto +3.339061e+01 1.953342e+01 lineto +3.288851e+01 1.892876e+01 lineto +3.065686e+01 2.182255e+01 lineto +3.119386e+01 2.246924e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.925304e+01 2.558319e+01 moveto +3.119386e+01 2.246924e+01 lineto +3.065686e+01 2.182255e+01 lineto +2.868521e+01 2.489938e+01 lineto +2.925304e+01 2.558319e+01 lineto +closepath +gsave +6.642327e-01 6.642327e-01 6.642327e-01 setrgbcolor +fill +grestore +newpath +2.925304e+01 2.558319e+01 moveto +3.119386e+01 2.246924e+01 lineto +3.065686e+01 2.182255e+01 lineto +2.868521e+01 2.489938e+01 lineto +2.925304e+01 2.558319e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.758284e+01 2.88517e+01 moveto +2.925304e+01 2.558319e+01 lineto +2.868521e+01 2.489938e+01 lineto +2.698848e+01 2.813594e+01 lineto +2.758284e+01 2.88517e+01 lineto +closepath +gsave +6.689878e-01 6.689878e-01 6.689878e-01 setrgbcolor +fill +grestore +newpath +2.758284e+01 2.88517e+01 moveto +2.925304e+01 2.558319e+01 lineto +2.868521e+01 2.489938e+01 lineto +2.698848e+01 2.813594e+01 lineto +2.758284e+01 2.88517e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.61959e+01 3.225004e+01 moveto +2.758284e+01 2.88517e+01 lineto +2.698848e+01 2.813594e+01 lineto +2.557952e+01 3.150775e+01 lineto +2.61959e+01 3.225004e+01 lineto +closepath +gsave +6.711563e-01 6.711563e-01 6.711563e-01 setrgbcolor +fill +grestore +newpath +2.61959e+01 3.225004e+01 moveto +2.758284e+01 2.88517e+01 lineto +2.698848e+01 2.813594e+01 lineto +2.557952e+01 3.150775e+01 lineto +2.61959e+01 3.225004e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.510273e+01 3.575247e+01 moveto +2.61959e+01 3.225004e+01 lineto +2.557952e+01 3.150775e+01 lineto +2.446898e+01 3.498926e+01 lineto +2.510273e+01 3.575247e+01 lineto +closepath +gsave +6.706806e-01 6.706806e-01 6.706806e-01 setrgbcolor +fill +grestore +newpath +2.510273e+01 3.575247e+01 moveto +2.61959e+01 3.225004e+01 lineto +2.557952e+01 3.150775e+01 lineto +2.446898e+01 3.498926e+01 lineto +2.510273e+01 3.575247e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.431159e+01 3.933248e+01 moveto +2.510273e+01 3.575247e+01 lineto +2.446898e+01 3.498926e+01 lineto +2.366528e+01 3.855414e+01 lineto +2.431159e+01 3.933248e+01 lineto +closepath +gsave +6.675741e-01 6.675741e-01 6.675741e-01 setrgbcolor +fill +grestore +newpath +2.431159e+01 3.933248e+01 moveto +2.510273e+01 3.575247e+01 lineto +2.446898e+01 3.498926e+01 lineto +2.366528e+01 3.855414e+01 lineto +2.431159e+01 3.933248e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.382849e+01 4.296296e+01 moveto +2.431159e+01 3.933248e+01 lineto +2.366528e+01 3.855414e+01 lineto +2.31745e+01 4.217538e+01 lineto +2.382849e+01 4.296296e+01 lineto +closepath +gsave +6.619211e-01 6.619211e-01 6.619211e-01 setrgbcolor +fill +grestore +newpath +2.382849e+01 4.296296e+01 moveto +2.431159e+01 3.933248e+01 lineto +2.366528e+01 3.855414e+01 lineto +2.31745e+01 4.217538e+01 lineto +2.382849e+01 4.296296e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.365707e+01 4.661643e+01 moveto +2.382849e+01 4.296296e+01 lineto +2.31745e+01 4.217538e+01 lineto +2.300036e+01 4.582557e+01 lineto +2.365707e+01 4.661643e+01 lineto +closepath +gsave +6.538726e-01 6.538726e-01 6.538726e-01 setrgbcolor +fill +grestore +newpath +2.365707e+01 4.661643e+01 moveto +2.382849e+01 4.296296e+01 lineto +2.31745e+01 4.217538e+01 lineto +2.300036e+01 4.582557e+01 lineto +2.365707e+01 4.661643e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.379864e+01 5.026524e+01 moveto +2.365707e+01 4.661643e+01 lineto +2.300036e+01 4.582557e+01 lineto +2.314418e+01 4.947709e+01 lineto +2.379864e+01 5.026524e+01 lineto +closepath +gsave +6.43641e-01 6.43641e-01 6.43641e-01 setrgbcolor +fill +grestore +newpath +2.379864e+01 5.026524e+01 moveto +2.365707e+01 4.661643e+01 lineto +2.300036e+01 4.582557e+01 lineto +2.314418e+01 4.947709e+01 lineto +2.379864e+01 5.026524e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.425212e+01 5.388176e+01 moveto +2.379864e+01 5.026524e+01 lineto +2.314418e+01 4.947709e+01 lineto +2.360486e+01 5.310228e+01 lineto +2.425212e+01 5.388176e+01 lineto +closepath +gsave +6.314909e-01 6.314909e-01 6.314909e-01 setrgbcolor +fill +grestore +newpath +2.425212e+01 5.388176e+01 moveto +2.379864e+01 5.026524e+01 lineto +2.314418e+01 4.947709e+01 lineto +2.360486e+01 5.310228e+01 lineto +2.425212e+01 5.388176e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.501408e+01 5.743861e+01 moveto +2.425212e+01 5.388176e+01 lineto +2.360486e+01 5.310228e+01 lineto +2.437892e+01 5.667371e+01 lineto +2.501408e+01 5.743861e+01 lineto +closepath +gsave +6.177291e-01 6.177291e-01 6.177291e-01 setrgbcolor +fill +grestore +newpath +2.501408e+01 5.743861e+01 moveto +2.425212e+01 5.388176e+01 lineto +2.360486e+01 5.310228e+01 lineto +2.437892e+01 5.667371e+01 lineto +2.501408e+01 5.743861e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.607875e+01 6.090887e+01 moveto +2.501408e+01 5.743861e+01 lineto +2.437892e+01 5.667371e+01 lineto +2.54605e+01 6.016433e+01 lineto +2.607875e+01 6.090887e+01 lineto +closepath +gsave +6.026927e-01 6.026927e-01 6.026927e-01 setrgbcolor +fill +grestore +newpath +2.607875e+01 6.090887e+01 moveto +2.501408e+01 5.743861e+01 lineto +2.437892e+01 5.667371e+01 lineto +2.54605e+01 6.016433e+01 lineto +2.607875e+01 6.090887e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.743807e+01 6.426625e+01 moveto +2.607875e+01 6.090887e+01 lineto +2.54605e+01 6.016433e+01 lineto +2.684142e+01 6.354772e+01 lineto +2.743807e+01 6.426625e+01 lineto +closepath +gsave +5.867362e-01 5.867362e-01 5.867362e-01 setrgbcolor +fill +grestore +newpath +2.743807e+01 6.426625e+01 moveto +2.607875e+01 6.090887e+01 lineto +2.54605e+01 6.016433e+01 lineto +2.684142e+01 6.354772e+01 lineto +2.743807e+01 6.426625e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.908175e+01 6.748536e+01 moveto +2.743807e+01 6.426625e+01 lineto +2.684142e+01 6.354772e+01 lineto +2.851121e+01 6.679827e+01 lineto +2.908175e+01 6.748536e+01 lineto +closepath +gsave +5.702188e-01 5.702188e-01 5.702188e-01 setrgbcolor +fill +grestore +newpath +2.908175e+01 6.748536e+01 moveto +2.743807e+01 6.426625e+01 lineto +2.684142e+01 6.354772e+01 lineto +2.851121e+01 6.679827e+01 lineto +2.908175e+01 6.748536e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.099735e+01 7.054181e+01 moveto +2.908175e+01 6.748536e+01 lineto +2.851121e+01 6.679827e+01 lineto +3.045723e+01 6.989136e+01 lineto +3.099735e+01 7.054181e+01 lineto +closepath +gsave +5.534918e-01 5.534918e-01 5.534918e-01 setrgbcolor +fill +grestore +newpath +3.099735e+01 7.054181e+01 moveto +2.908175e+01 6.748536e+01 lineto +2.851121e+01 6.679827e+01 lineto +3.045723e+01 6.989136e+01 lineto +3.099735e+01 7.054181e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.317036e+01 7.341247e+01 moveto +3.099735e+01 7.054181e+01 lineto +3.045723e+01 6.989136e+01 lineto +3.266476e+01 7.280359e+01 lineto +3.317036e+01 7.341247e+01 lineto +closepath +gsave +5.36887e-01 5.36887e-01 5.36887e-01 setrgbcolor +fill +grestore +newpath +3.317036e+01 7.341247e+01 moveto +3.099735e+01 7.054181e+01 lineto +3.045723e+01 6.989136e+01 lineto +3.266476e+01 7.280359e+01 lineto +3.317036e+01 7.341247e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.182194e+01 8.729378e+01 moveto +6.825158e+01 8.78077e+01 lineto +6.830323e+01 8.78699e+01 lineto +7.193031e+01 8.742428e+01 lineto +7.182194e+01 8.729378e+01 lineto +closepath +gsave +5.247662e-01 5.247662e-01 5.247662e-01 setrgbcolor +fill +grestore +newpath +7.182194e+01 8.729378e+01 moveto +6.825158e+01 8.78077e+01 lineto +6.830323e+01 8.78699e+01 lineto +7.193031e+01 8.742428e+01 lineto +7.182194e+01 8.729378e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.534066e+01 8.646725e+01 moveto +7.182194e+01 8.729378e+01 lineto +7.193031e+01 8.742428e+01 lineto +7.550492e+01 8.666506e+01 lineto +7.534066e+01 8.646725e+01 lineto +closepath +gsave +5.410963e-01 5.410963e-01 5.410963e-01 setrgbcolor +fill +grestore +newpath +7.534066e+01 8.646725e+01 moveto +7.182194e+01 8.729378e+01 lineto +7.193031e+01 8.742428e+01 lineto +7.550492e+01 8.666506e+01 lineto +7.534066e+01 8.646725e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.878109e+01 8.533436e+01 moveto +7.534066e+01 8.646725e+01 lineto +7.550492e+01 8.666506e+01 lineto +7.9e+01 8.559798e+01 lineto +7.878109e+01 8.533436e+01 lineto +closepath +gsave +5.577787e-01 5.577787e-01 5.577787e-01 setrgbcolor +fill +grestore +newpath +7.878109e+01 8.533436e+01 moveto +7.534066e+01 8.646725e+01 lineto +7.550492e+01 8.666506e+01 lineto +7.9e+01 8.559798e+01 lineto +7.878109e+01 8.533436e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.134911e+01 4.158979e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.131454e+01 4.090232e+00 lineto +6.134911e+01 4.158979e+00 lineto +closepath +gsave +5.099375e-01 5.099375e-01 5.099375e-01 setrgbcolor +fill +grestore +newpath +6.134911e+01 4.158979e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.131454e+01 4.090232e+00 lineto +6.134911e+01 4.158979e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.772586e+01 4.634713e+00 moveto +6.134911e+01 4.158979e+00 lineto +6.131454e+01 4.090232e+00 lineto +5.765697e+01 4.49774e+00 lineto +5.772586e+01 4.634713e+00 lineto +closepath +gsave +5.24375e-01 5.24375e-01 5.24375e-01 setrgbcolor +fill +grestore +newpath +5.772586e+01 4.634713e+00 moveto +6.134911e+01 4.158979e+00 lineto +6.131454e+01 4.090232e+00 lineto +5.765697e+01 4.49774e+00 lineto +5.772586e+01 4.634713e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.415768e+01 5.423601e+00 moveto +5.772586e+01 4.634713e+00 lineto +5.765697e+01 4.49774e+00 lineto +5.4055e+01 5.219438e+00 lineto +5.415768e+01 5.423601e+00 lineto +closepath +gsave +5.392231e-01 5.392231e-01 5.392231e-01 setrgbcolor +fill +grestore +newpath +5.415768e+01 5.423601e+00 moveto +5.772586e+01 4.634713e+00 lineto +5.765697e+01 4.49774e+00 lineto +5.4055e+01 5.219438e+00 lineto +5.415768e+01 5.423601e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.067158e+01 6.51967e+00 moveto +5.415768e+01 5.423601e+00 lineto +5.4055e+01 5.219438e+00 lineto +5.053588e+01 6.249863e+00 lineto +5.067158e+01 6.51967e+00 lineto +closepath +gsave +5.542249e-01 5.542249e-01 5.542249e-01 setrgbcolor +fill +grestore +newpath +5.067158e+01 6.51967e+00 moveto +5.415768e+01 5.423601e+00 lineto +5.4055e+01 5.219438e+00 lineto +5.053588e+01 6.249863e+00 lineto +5.067158e+01 6.51967e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.729396e+01 7.914622e+00 moveto +5.067158e+01 6.51967e+00 lineto +5.053588e+01 6.249863e+00 lineto +4.712627e+01 7.581214e+00 lineto +4.729396e+01 7.914622e+00 lineto +closepath +gsave +5.690963e-01 5.690963e-01 5.690963e-01 setrgbcolor +fill +grestore +newpath +4.729396e+01 7.914622e+00 moveto +5.067158e+01 6.51967e+00 lineto +5.053588e+01 6.249863e+00 lineto +4.712627e+01 7.581214e+00 lineto +4.729396e+01 7.914622e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.405037e+01 9.597897e+00 moveto +4.729396e+01 7.914622e+00 lineto +4.712627e+01 7.581214e+00 lineto +4.385196e+01 9.203411e+00 lineto +4.405037e+01 9.597897e+00 lineto +closepath +gsave +5.83534e-01 5.83534e-01 5.83534e-01 setrgbcolor +fill +grestore +newpath +4.405037e+01 9.597897e+00 moveto +4.729396e+01 7.914622e+00 lineto +4.712627e+01 7.581214e+00 lineto +4.385196e+01 9.203411e+00 lineto +4.405037e+01 9.597897e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.096539e+01 1.155675e+01 moveto +4.405037e+01 9.597897e+00 lineto +4.385196e+01 9.203411e+00 lineto +4.073776e+01 1.110418e+01 lineto +4.096539e+01 1.155675e+01 lineto +closepath +gsave +5.972259e-01 5.972259e-01 5.972259e-01 setrgbcolor +fill +grestore +newpath +4.096539e+01 1.155675e+01 moveto +4.405037e+01 9.597897e+00 lineto +4.385196e+01 9.203411e+00 lineto +4.073776e+01 1.110418e+01 lineto +4.096539e+01 1.155675e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.806235e+01 1.377636e+01 moveto +4.096539e+01 1.155675e+01 lineto +4.073776e+01 1.110418e+01 lineto +3.780723e+01 1.326912e+01 lineto +3.806235e+01 1.377636e+01 lineto +closepath +gsave +6.09861e-01 6.09861e-01 6.09861e-01 setrgbcolor +fill +grestore +newpath +3.806235e+01 1.377636e+01 moveto +4.096539e+01 1.155675e+01 lineto +4.073776e+01 1.110418e+01 lineto +3.780723e+01 1.326912e+01 lineto +3.806235e+01 1.377636e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.536325e+01 1.623991e+01 moveto +3.806235e+01 1.377636e+01 lineto +3.780723e+01 1.326912e+01 lineto +3.508257e+01 1.568184e+01 lineto +3.536325e+01 1.623991e+01 lineto +closepath +gsave +6.211411e-01 6.211411e-01 6.211411e-01 setrgbcolor +fill +grestore +newpath +3.536325e+01 1.623991e+01 moveto +3.806235e+01 1.377636e+01 lineto +3.780723e+01 1.326912e+01 lineto +3.508257e+01 1.568184e+01 lineto +3.536325e+01 1.623991e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.288851e+01 1.892876e+01 moveto +3.536325e+01 1.623991e+01 lineto +3.508257e+01 1.568184e+01 lineto +3.258439e+01 1.832409e+01 lineto +3.288851e+01 1.892876e+01 lineto +closepath +gsave +6.307912e-01 6.307912e-01 6.307912e-01 setrgbcolor +fill +grestore +newpath +3.288851e+01 1.892876e+01 moveto +3.536325e+01 1.623991e+01 lineto +3.508257e+01 1.568184e+01 lineto +3.258439e+01 1.832409e+01 lineto +3.288851e+01 1.892876e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.065686e+01 2.182255e+01 moveto +3.288851e+01 1.892876e+01 lineto +3.258439e+01 1.832409e+01 lineto +3.033161e+01 2.117586e+01 lineto +3.065686e+01 2.182255e+01 lineto +closepath +gsave +6.385705e-01 6.385705e-01 6.385705e-01 setrgbcolor +fill +grestore +newpath +3.065686e+01 2.182255e+01 moveto +3.288851e+01 1.892876e+01 lineto +3.258439e+01 1.832409e+01 lineto +3.033161e+01 2.117586e+01 lineto +3.065686e+01 2.182255e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.868521e+01 2.489938e+01 moveto +3.065686e+01 2.182255e+01 lineto +3.033161e+01 2.117586e+01 lineto +2.834129e+01 2.421556e+01 lineto +2.868521e+01 2.489938e+01 lineto +closepath +gsave +6.442811e-01 6.442811e-01 6.442811e-01 setrgbcolor +fill +grestore +newpath +2.868521e+01 2.489938e+01 moveto +3.065686e+01 2.182255e+01 lineto +3.033161e+01 2.117586e+01 lineto +2.834129e+01 2.421556e+01 lineto +2.868521e+01 2.489938e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.698848e+01 2.813594e+01 moveto +2.868521e+01 2.489938e+01 lineto +2.834129e+01 2.421556e+01 lineto +2.662848e+01 2.742018e+01 lineto +2.698848e+01 2.813594e+01 lineto +closepath +gsave +6.477758e-01 6.477758e-01 6.477758e-01 setrgbcolor +fill +grestore +newpath +2.698848e+01 2.813594e+01 moveto +2.868521e+01 2.489938e+01 lineto +2.834129e+01 2.421556e+01 lineto +2.662848e+01 2.742018e+01 lineto +2.698848e+01 2.813594e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.557952e+01 3.150775e+01 moveto +2.698848e+01 2.813594e+01 lineto +2.662848e+01 2.742018e+01 lineto +2.520617e+01 3.076545e+01 lineto +2.557952e+01 3.150775e+01 lineto +closepath +gsave +6.489641e-01 6.489641e-01 6.489641e-01 setrgbcolor +fill +grestore +newpath +2.557952e+01 3.150775e+01 moveto +2.698848e+01 2.813594e+01 lineto +2.662848e+01 2.742018e+01 lineto +2.520617e+01 3.076545e+01 lineto +2.557952e+01 3.150775e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.446898e+01 3.498926e+01 moveto +2.557952e+01 3.150775e+01 lineto +2.520617e+01 3.076545e+01 lineto +2.408512e+01 3.422606e+01 lineto +2.446898e+01 3.498926e+01 lineto +closepath +gsave +6.478155e-01 6.478155e-01 6.478155e-01 setrgbcolor +fill +grestore +newpath +2.446898e+01 3.498926e+01 moveto +2.557952e+01 3.150775e+01 lineto +2.520617e+01 3.076545e+01 lineto +2.408512e+01 3.422606e+01 lineto +2.446898e+01 3.498926e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.366528e+01 3.855414e+01 moveto +2.446898e+01 3.498926e+01 lineto +2.408512e+01 3.422606e+01 lineto +2.327381e+01 3.77758e+01 lineto +2.366528e+01 3.855414e+01 lineto +closepath +gsave +6.443608e-01 6.443608e-01 6.443608e-01 setrgbcolor +fill +grestore +newpath +2.366528e+01 3.855414e+01 moveto +2.446898e+01 3.498926e+01 lineto +2.408512e+01 3.422606e+01 lineto +2.327381e+01 3.77758e+01 lineto +2.366528e+01 3.855414e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.31745e+01 4.217538e+01 moveto +2.366528e+01 3.855414e+01 lineto +2.327381e+01 3.77758e+01 lineto +2.277838e+01 4.13878e+01 lineto +2.31745e+01 4.217538e+01 lineto +closepath +gsave +6.386906e-01 6.386906e-01 6.386906e-01 setrgbcolor +fill +grestore +newpath +2.31745e+01 4.217538e+01 moveto +2.366528e+01 3.855414e+01 lineto +2.327381e+01 3.77758e+01 lineto +2.277838e+01 4.13878e+01 lineto +2.31745e+01 4.217538e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.300036e+01 4.582557e+01 moveto +2.31745e+01 4.217538e+01 lineto +2.277838e+01 4.13878e+01 lineto +2.260259e+01 4.503471e+01 lineto +2.300036e+01 4.582557e+01 lineto +closepath +gsave +6.30952e-01 6.30952e-01 6.30952e-01 setrgbcolor +fill +grestore +newpath +2.300036e+01 4.582557e+01 moveto +2.31745e+01 4.217538e+01 lineto +2.277838e+01 4.13878e+01 lineto +2.260259e+01 4.503471e+01 lineto +2.300036e+01 4.582557e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.314418e+01 4.947709e+01 moveto +2.300036e+01 4.582557e+01 lineto +2.260259e+01 4.503471e+01 lineto +2.274777e+01 4.868894e+01 lineto +2.314418e+01 4.947709e+01 lineto +closepath +gsave +6.213423e-01 6.213423e-01 6.213423e-01 setrgbcolor +fill +grestore +newpath +2.314418e+01 4.947709e+01 moveto +2.300036e+01 4.582557e+01 lineto +2.260259e+01 4.503471e+01 lineto +2.274777e+01 4.868894e+01 lineto +2.314418e+01 4.947709e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.360486e+01 5.310228e+01 moveto +2.314418e+01 4.947709e+01 lineto +2.274777e+01 4.868894e+01 lineto +2.321282e+01 5.232281e+01 lineto +2.360486e+01 5.310228e+01 lineto +closepath +gsave +6.101017e-01 6.101017e-01 6.101017e-01 setrgbcolor +fill +grestore +newpath +2.360486e+01 5.310228e+01 moveto +2.314418e+01 4.947709e+01 lineto +2.274777e+01 4.868894e+01 lineto +2.321282e+01 5.232281e+01 lineto +2.360486e+01 5.310228e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.437892e+01 5.667371e+01 moveto +2.360486e+01 5.310228e+01 lineto +2.321282e+01 5.232281e+01 lineto +2.399421e+01 5.590881e+01 lineto +2.437892e+01 5.667371e+01 lineto +closepath +gsave +5.975039e-01 5.975039e-01 5.975039e-01 setrgbcolor +fill +grestore +newpath +2.437892e+01 5.667371e+01 moveto +2.360486e+01 5.310228e+01 lineto +2.321282e+01 5.232281e+01 lineto +2.399421e+01 5.590881e+01 lineto +2.437892e+01 5.667371e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.54605e+01 6.016433e+01 moveto +2.437892e+01 5.667371e+01 lineto +2.399421e+01 5.590881e+01 lineto +2.508603e+01 5.941979e+01 lineto +2.54605e+01 6.016433e+01 lineto +closepath +gsave +5.83846e-01 5.83846e-01 5.83846e-01 setrgbcolor +fill +grestore +newpath +2.54605e+01 6.016433e+01 moveto +2.437892e+01 5.667371e+01 lineto +2.399421e+01 5.590881e+01 lineto +2.508603e+01 5.941979e+01 lineto +2.54605e+01 6.016433e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.684142e+01 6.354772e+01 moveto +2.54605e+01 6.016433e+01 lineto +2.508603e+01 5.941979e+01 lineto +2.648002e+01 6.282919e+01 lineto +2.684142e+01 6.354772e+01 lineto +closepath +gsave +5.694373e-01 5.694373e-01 5.694373e-01 setrgbcolor +fill +grestore +newpath +2.684142e+01 6.354772e+01 moveto +2.54605e+01 6.016433e+01 lineto +2.508603e+01 5.941979e+01 lineto +2.648002e+01 6.282919e+01 lineto +2.684142e+01 6.354772e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.193031e+01 8.742428e+01 moveto +6.830323e+01 8.78699e+01 lineto +6.833452e+01 8.79321e+01 lineto +7.199594e+01 8.755478e+01 lineto +7.193031e+01 8.742428e+01 lineto +closepath +gsave +5.229756e-01 5.229756e-01 5.229756e-01 setrgbcolor +fill +grestore +newpath +7.193031e+01 8.742428e+01 moveto +6.830323e+01 8.78699e+01 lineto +6.833452e+01 8.79321e+01 lineto +7.199594e+01 8.755478e+01 lineto +7.193031e+01 8.742428e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.550492e+01 8.666506e+01 moveto +7.193031e+01 8.742428e+01 lineto +7.199594e+01 8.755478e+01 lineto +7.560441e+01 8.686286e+01 lineto +7.550492e+01 8.666506e+01 lineto +closepath +gsave +5.377951e-01 5.377951e-01 5.377951e-01 setrgbcolor +fill +grestore +newpath +7.550492e+01 8.666506e+01 moveto +7.193031e+01 8.742428e+01 lineto +7.199594e+01 8.755478e+01 lineto +7.560441e+01 8.686286e+01 lineto +7.550492e+01 8.666506e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.9e+01 8.559798e+01 moveto +7.550492e+01 8.666506e+01 lineto +7.560441e+01 8.686286e+01 lineto +7.913259e+01 8.58616e+01 lineto +7.9e+01 8.559798e+01 lineto +closepath +gsave +5.527942e-01 5.527942e-01 5.527942e-01 setrgbcolor +fill +grestore +newpath +7.9e+01 8.559798e+01 moveto +7.550492e+01 8.666506e+01 lineto +7.560441e+01 8.686286e+01 lineto +7.913259e+01 8.58616e+01 lineto +7.9e+01 8.559798e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.131454e+01 4.090232e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.130268e+01 4.021909e+00 lineto +6.131454e+01 4.090232e+00 lineto +closepath +gsave +5.093043e-01 5.093043e-01 5.093043e-01 setrgbcolor +fill +grestore +newpath +6.131454e+01 4.090232e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.130268e+01 4.021909e+00 lineto +6.131454e+01 4.090232e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.765697e+01 4.49774e+00 moveto +6.131454e+01 4.090232e+00 lineto +6.130268e+01 4.021909e+00 lineto +5.763335e+01 4.361611e+00 lineto +5.765697e+01 4.49774e+00 lineto +closepath +gsave +5.223251e-01 5.223251e-01 5.223251e-01 setrgbcolor +fill +grestore +newpath +5.765697e+01 4.49774e+00 moveto +6.131454e+01 4.090232e+00 lineto +6.130268e+01 4.021909e+00 lineto +5.763335e+01 4.361611e+00 lineto +5.765697e+01 4.49774e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.4055e+01 5.219438e+00 moveto +5.765697e+01 4.49774e+00 lineto +5.763335e+01 4.361611e+00 lineto +5.401979e+01 5.016534e+00 lineto +5.4055e+01 5.219438e+00 lineto +closepath +gsave +5.355706e-01 5.355706e-01 5.355706e-01 setrgbcolor +fill +grestore +newpath +5.4055e+01 5.219438e+00 moveto +5.765697e+01 4.49774e+00 lineto +5.763335e+01 4.361611e+00 lineto +5.401979e+01 5.016534e+00 lineto +5.4055e+01 5.219438e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.053588e+01 6.249863e+00 moveto +5.4055e+01 5.219438e+00 lineto +5.401979e+01 5.016534e+00 lineto +5.048936e+01 5.98172e+00 lineto +5.053588e+01 6.249863e+00 lineto +closepath +gsave +5.488086e-01 5.488086e-01 5.488086e-01 setrgbcolor +fill +grestore +newpath +5.053588e+01 6.249863e+00 moveto +5.4055e+01 5.219438e+00 lineto +5.401979e+01 5.016534e+00 lineto +5.048936e+01 5.98172e+00 lineto +5.053588e+01 6.249863e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.712627e+01 7.581214e+00 moveto +5.053588e+01 6.249863e+00 lineto +5.048936e+01 5.98172e+00 lineto +4.706877e+01 7.249861e+00 lineto +4.712627e+01 7.581214e+00 lineto +closepath +gsave +5.617874e-01 5.617874e-01 5.617874e-01 setrgbcolor +fill +grestore +newpath +4.712627e+01 7.581214e+00 moveto +5.053588e+01 6.249863e+00 lineto +5.048936e+01 5.98172e+00 lineto +4.706877e+01 7.249861e+00 lineto +4.712627e+01 7.581214e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.385196e+01 9.203411e+00 moveto +4.712627e+01 7.581214e+00 lineto +4.706877e+01 7.249861e+00 lineto +4.378394e+01 8.811358e+00 lineto +4.385196e+01 9.203411e+00 lineto +closepath +gsave +5.742436e-01 5.742436e-01 5.742436e-01 setrgbcolor +fill +grestore +newpath +4.385196e+01 9.203411e+00 moveto +4.712627e+01 7.581214e+00 lineto +4.706877e+01 7.249861e+00 lineto +4.378394e+01 8.811358e+00 lineto +4.385196e+01 9.203411e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.073776e+01 1.110418e+01 moveto +4.385196e+01 9.203411e+00 lineto +4.378394e+01 8.811358e+00 lineto +4.065972e+01 1.065439e+01 lineto +4.073776e+01 1.110418e+01 lineto +closepath +gsave +5.859106e-01 5.859106e-01 5.859106e-01 setrgbcolor +fill +grestore +newpath +4.073776e+01 1.110418e+01 moveto +4.385196e+01 9.203411e+00 lineto +4.378394e+01 8.811358e+00 lineto +4.065972e+01 1.065439e+01 lineto +4.073776e+01 1.110418e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.780723e+01 1.326912e+01 moveto +4.073776e+01 1.110418e+01 lineto +4.065972e+01 1.065439e+01 lineto +3.771976e+01 1.2765e+01 lineto +3.780723e+01 1.326912e+01 lineto +closepath +gsave +5.965272e-01 5.965272e-01 5.965272e-01 setrgbcolor +fill +grestore +newpath +3.780723e+01 1.326912e+01 moveto +4.073776e+01 1.110418e+01 lineto +4.065972e+01 1.065439e+01 lineto +3.771976e+01 1.2765e+01 lineto +3.780723e+01 1.326912e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.508257e+01 1.568184e+01 moveto +3.780723e+01 1.326912e+01 lineto +3.771976e+01 1.2765e+01 lineto +3.498633e+01 1.512722e+01 lineto +3.508257e+01 1.568184e+01 lineto +closepath +gsave +6.058474e-01 6.058474e-01 6.058474e-01 setrgbcolor +fill +grestore +newpath +3.508257e+01 1.568184e+01 moveto +3.780723e+01 1.326912e+01 lineto +3.771976e+01 1.2765e+01 lineto +3.498633e+01 1.512722e+01 lineto +3.508257e+01 1.568184e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.258439e+01 1.832409e+01 moveto +3.508257e+01 1.568184e+01 lineto +3.498633e+01 1.512722e+01 lineto +3.248012e+01 1.772316e+01 lineto +3.258439e+01 1.832409e+01 lineto +closepath +gsave +6.136489e-01 6.136489e-01 6.136489e-01 setrgbcolor +fill +grestore +newpath +3.258439e+01 1.832409e+01 moveto +3.508257e+01 1.568184e+01 lineto +3.498633e+01 1.512722e+01 lineto +3.248012e+01 1.772316e+01 lineto +3.258439e+01 1.832409e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.033161e+01 2.117586e+01 moveto +3.258439e+01 1.832409e+01 lineto +3.248012e+01 1.772316e+01 lineto +3.022009e+01 2.053316e+01 lineto +3.033161e+01 2.117586e+01 lineto +closepath +gsave +6.197417e-01 6.197417e-01 6.197417e-01 setrgbcolor +fill +grestore +newpath +3.033161e+01 2.117586e+01 moveto +3.258439e+01 1.832409e+01 lineto +3.248012e+01 1.772316e+01 lineto +3.022009e+01 2.053316e+01 lineto +3.033161e+01 2.117586e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.834129e+01 2.421556e+01 moveto +3.033161e+01 2.117586e+01 lineto +3.022009e+01 2.053316e+01 lineto +2.822337e+01 2.353596e+01 lineto +2.834129e+01 2.421556e+01 lineto +closepath +gsave +6.239748e-01 6.239748e-01 6.239748e-01 setrgbcolor +fill +grestore +newpath +2.834129e+01 2.421556e+01 moveto +3.033161e+01 2.117586e+01 lineto +3.022009e+01 2.053316e+01 lineto +2.822337e+01 2.353596e+01 lineto +2.834129e+01 2.421556e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.662848e+01 2.742018e+01 moveto +2.834129e+01 2.421556e+01 lineto +2.822337e+01 2.353596e+01 lineto +2.650506e+01 2.670883e+01 lineto +2.662848e+01 2.742018e+01 lineto +closepath +gsave +6.262423e-01 6.262423e-01 6.262423e-01 setrgbcolor +fill +grestore +newpath +2.662848e+01 2.742018e+01 moveto +2.834129e+01 2.421556e+01 lineto +2.822337e+01 2.353596e+01 lineto +2.650506e+01 2.670883e+01 lineto +2.662848e+01 2.742018e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.520617e+01 3.076545e+01 moveto +2.662848e+01 2.742018e+01 lineto +2.650506e+01 2.670883e+01 lineto +2.507817e+01 3.002773e+01 lineto +2.520617e+01 3.076545e+01 lineto +closepath +gsave +6.264875e-01 6.264875e-01 6.264875e-01 setrgbcolor +fill +grestore +newpath +2.520617e+01 3.076545e+01 moveto +2.662848e+01 2.742018e+01 lineto +2.650506e+01 2.670883e+01 lineto +2.507817e+01 3.002773e+01 lineto +2.520617e+01 3.076545e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.408512e+01 3.422606e+01 moveto +2.520617e+01 3.076545e+01 lineto +2.507817e+01 3.002773e+01 lineto +2.395351e+01 3.346755e+01 lineto +2.408512e+01 3.422606e+01 lineto +closepath +gsave +6.247048e-01 6.247048e-01 6.247048e-01 setrgbcolor +fill +grestore +newpath +2.408512e+01 3.422606e+01 moveto +2.520617e+01 3.076545e+01 lineto +2.507817e+01 3.002773e+01 lineto +2.395351e+01 3.346755e+01 lineto +2.408512e+01 3.422606e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.327381e+01 3.77758e+01 moveto +2.408512e+01 3.422606e+01 lineto +2.395351e+01 3.346755e+01 lineto +2.313959e+01 3.700225e+01 lineto +2.327381e+01 3.77758e+01 lineto +closepath +gsave +6.209398e-01 6.209398e-01 6.209398e-01 setrgbcolor +fill +grestore +newpath +2.327381e+01 3.77758e+01 moveto +2.408512e+01 3.422606e+01 lineto +2.395351e+01 3.346755e+01 lineto +2.313959e+01 3.700225e+01 lineto +2.327381e+01 3.77758e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.277838e+01 4.13878e+01 moveto +2.327381e+01 3.77758e+01 lineto +2.313959e+01 3.700225e+01 lineto +2.264257e+01 4.060507e+01 lineto +2.277838e+01 4.13878e+01 lineto +closepath +gsave +6.152879e-01 6.152879e-01 6.152879e-01 setrgbcolor +fill +grestore +newpath +2.277838e+01 4.13878e+01 moveto +2.327381e+01 3.77758e+01 lineto +2.313959e+01 3.700225e+01 lineto +2.264257e+01 4.060507e+01 lineto +2.277838e+01 4.13878e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.260259e+01 4.503471e+01 moveto +2.277838e+01 4.13878e+01 lineto +2.264257e+01 4.060507e+01 lineto +2.246622e+01 4.424873e+01 lineto +2.260259e+01 4.503471e+01 lineto +closepath +gsave +6.078902e-01 6.078902e-01 6.078902e-01 setrgbcolor +fill +grestore +newpath +2.260259e+01 4.503471e+01 moveto +2.277838e+01 4.13878e+01 lineto +2.264257e+01 4.060507e+01 lineto +2.246622e+01 4.424873e+01 lineto +2.260259e+01 4.503471e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.274777e+01 4.868894e+01 moveto +2.260259e+01 4.503471e+01 lineto +2.246622e+01 4.424873e+01 lineto +2.261186e+01 4.790564e+01 lineto +2.274777e+01 4.868894e+01 lineto +closepath +gsave +5.98928e-01 5.98928e-01 5.98928e-01 setrgbcolor +fill +grestore +newpath +2.274777e+01 4.868894e+01 moveto +2.260259e+01 4.503471e+01 lineto +2.246622e+01 4.424873e+01 lineto +2.261186e+01 4.790564e+01 lineto +2.274777e+01 4.868894e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.321282e+01 5.232281e+01 moveto +2.274777e+01 4.868894e+01 lineto +2.261186e+01 4.790564e+01 lineto +2.30784e+01 5.154813e+01 lineto +2.321282e+01 5.232281e+01 lineto +closepath +gsave +5.886164e-01 5.886164e-01 5.886164e-01 setrgbcolor +fill +grestore +newpath +2.321282e+01 5.232281e+01 moveto +2.274777e+01 4.868894e+01 lineto +2.261186e+01 4.790564e+01 lineto +2.30784e+01 5.154813e+01 lineto +2.321282e+01 5.232281e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.199594e+01 8.755478e+01 moveto +6.833452e+01 8.79321e+01 lineto +6.834524e+01 8.799392e+01 lineto +7.201845e+01 8.768447e+01 lineto +7.199594e+01 8.755478e+01 lineto +closepath +gsave +5.210693e-01 5.210693e-01 5.210693e-01 setrgbcolor +fill +grestore +newpath +7.199594e+01 8.755478e+01 moveto +6.833452e+01 8.79321e+01 lineto +6.834524e+01 8.799392e+01 lineto +7.201845e+01 8.768447e+01 lineto +7.199594e+01 8.755478e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.560441e+01 8.686286e+01 moveto +7.199594e+01 8.755478e+01 lineto +7.201845e+01 8.768447e+01 lineto +7.563852e+01 8.705945e+01 lineto +7.560441e+01 8.686286e+01 lineto +closepath +gsave +5.34303e-01 5.34303e-01 5.34303e-01 setrgbcolor +fill +grestore +newpath +7.560441e+01 8.686286e+01 moveto +7.199594e+01 8.755478e+01 lineto +7.201845e+01 8.768447e+01 lineto +7.563852e+01 8.705945e+01 lineto +7.560441e+01 8.686286e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.913259e+01 8.58616e+01 moveto +7.560441e+01 8.686286e+01 lineto +7.563852e+01 8.705945e+01 lineto +7.917805e+01 8.61236e+01 lineto +7.913259e+01 8.58616e+01 lineto +closepath +gsave +5.475524e-01 5.475524e-01 5.475524e-01 setrgbcolor +fill +grestore +newpath +7.913259e+01 8.58616e+01 moveto +7.560441e+01 8.686286e+01 lineto +7.563852e+01 8.705945e+01 lineto +7.917805e+01 8.61236e+01 lineto +7.913259e+01 8.58616e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.130268e+01 4.021909e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.131362e+01 3.954431e+00 lineto +6.130268e+01 4.021909e+00 lineto +closepath +gsave +5.086333e-01 5.086333e-01 5.086333e-01 setrgbcolor +fill +grestore +newpath +6.130268e+01 4.021909e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.131362e+01 3.954431e+00 lineto +6.130268e+01 4.021909e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.763335e+01 4.361611e+00 moveto +6.130268e+01 4.021909e+00 lineto +6.131362e+01 3.954431e+00 lineto +5.765515e+01 4.227166e+00 lineto +5.763335e+01 4.361611e+00 lineto +closepath +gsave +5.20169e-01 5.20169e-01 5.20169e-01 setrgbcolor +fill +grestore +newpath +5.763335e+01 4.361611e+00 moveto +6.130268e+01 4.021909e+00 lineto +6.131362e+01 3.954431e+00 lineto +5.765515e+01 4.227166e+00 lineto +5.763335e+01 4.361611e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.401979e+01 5.016534e+00 moveto +5.763335e+01 4.361611e+00 lineto +5.765515e+01 4.227166e+00 lineto +5.405228e+01 4.81614e+00 lineto +5.401979e+01 5.016534e+00 lineto +closepath +gsave +5.317554e-01 5.317554e-01 5.317554e-01 setrgbcolor +fill +grestore +newpath +5.401979e+01 5.016534e+00 moveto +5.763335e+01 4.361611e+00 lineto +5.765515e+01 4.227166e+00 lineto +5.405228e+01 4.81614e+00 lineto +5.401979e+01 5.016534e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.048936e+01 5.98172e+00 moveto +5.401979e+01 5.016534e+00 lineto +5.405228e+01 4.81614e+00 lineto +5.053229e+01 5.716893e+00 lineto +5.048936e+01 5.98172e+00 lineto +closepath +gsave +5.431869e-01 5.431869e-01 5.431869e-01 setrgbcolor +fill +grestore +newpath +5.048936e+01 5.98172e+00 moveto +5.401979e+01 5.016534e+00 lineto +5.405228e+01 4.81614e+00 lineto +5.053229e+01 5.716893e+00 lineto +5.048936e+01 5.98172e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.706877e+01 7.249861e+00 moveto +5.048936e+01 5.98172e+00 lineto +5.053229e+01 5.716893e+00 lineto +4.712183e+01 6.922607e+00 lineto +4.706877e+01 7.249861e+00 lineto +closepath +gsave +5.542459e-01 5.542459e-01 5.542459e-01 setrgbcolor +fill +grestore +newpath +4.706877e+01 7.249861e+00 moveto +5.048936e+01 5.98172e+00 lineto +5.053229e+01 5.716893e+00 lineto +4.712183e+01 6.922607e+00 lineto +4.706877e+01 7.249861e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.378394e+01 8.811358e+00 moveto +4.706877e+01 7.249861e+00 lineto +4.712183e+01 6.922607e+00 lineto +4.384672e+01 8.424154e+00 lineto +4.378394e+01 8.811358e+00 lineto +closepath +gsave +5.647094e-01 5.647094e-01 5.647094e-01 setrgbcolor +fill +grestore +newpath +4.378394e+01 8.811358e+00 moveto +4.706877e+01 7.249861e+00 lineto +4.712183e+01 6.922607e+00 lineto +4.384672e+01 8.424154e+00 lineto +4.378394e+01 8.811358e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.065972e+01 1.065439e+01 moveto +4.378394e+01 8.811358e+00 lineto +4.384672e+01 8.424154e+00 lineto +4.073174e+01 1.021017e+01 lineto +4.065972e+01 1.065439e+01 lineto +closepath +gsave +5.743562e-01 5.743562e-01 5.743562e-01 setrgbcolor +fill +grestore +newpath +4.065972e+01 1.065439e+01 moveto +4.378394e+01 8.811358e+00 lineto +4.384672e+01 8.424154e+00 lineto +4.073174e+01 1.021017e+01 lineto +4.065972e+01 1.065439e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.771976e+01 1.2765e+01 moveto +4.065972e+01 1.065439e+01 lineto +4.073174e+01 1.021017e+01 lineto +3.780049e+01 1.226712e+01 lineto +3.771976e+01 1.2765e+01 lineto +closepath +gsave +5.829743e-01 5.829743e-01 5.829743e-01 setrgbcolor +fill +grestore +newpath +3.771976e+01 1.2765e+01 moveto +4.065972e+01 1.065439e+01 lineto +4.073174e+01 1.021017e+01 lineto +3.780049e+01 1.226712e+01 lineto +3.771976e+01 1.2765e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.498633e+01 1.512722e+01 moveto +3.771976e+01 1.2765e+01 lineto +3.780049e+01 1.226712e+01 lineto +3.507514e+01 1.457946e+01 lineto +3.498633e+01 1.512722e+01 lineto +closepath +gsave +5.903682e-01 5.903682e-01 5.903682e-01 setrgbcolor +fill +grestore +newpath +3.498633e+01 1.512722e+01 moveto +3.771976e+01 1.2765e+01 lineto +3.780049e+01 1.226712e+01 lineto +3.507514e+01 1.457946e+01 lineto +3.498633e+01 1.512722e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.248012e+01 1.772316e+01 moveto +3.498633e+01 1.512722e+01 lineto +3.507514e+01 1.457946e+01 lineto +3.257635e+01 1.712965e+01 lineto +3.248012e+01 1.772316e+01 lineto +closepath +gsave +5.963661e-01 5.963661e-01 5.963661e-01 setrgbcolor +fill +grestore +newpath +3.248012e+01 1.772316e+01 moveto +3.498633e+01 1.512722e+01 lineto +3.507514e+01 1.457946e+01 lineto +3.257635e+01 1.712965e+01 lineto +3.248012e+01 1.772316e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.022009e+01 2.053316e+01 moveto +3.248012e+01 1.772316e+01 lineto +3.257635e+01 1.712965e+01 lineto +3.032301e+01 1.989841e+01 lineto +3.022009e+01 2.053316e+01 lineto +closepath +gsave +6.008259e-01 6.008259e-01 6.008259e-01 setrgbcolor +fill +grestore +newpath +3.022009e+01 2.053316e+01 moveto +3.248012e+01 1.772316e+01 lineto +3.257635e+01 1.712965e+01 lineto +3.032301e+01 1.989841e+01 lineto +3.022009e+01 2.053316e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.822337e+01 2.353596e+01 moveto +3.022009e+01 2.053316e+01 lineto +3.032301e+01 1.989841e+01 lineto +2.833219e+01 2.286477e+01 lineto +2.822337e+01 2.353596e+01 lineto +closepath +gsave +6.036406e-01 6.036406e-01 6.036406e-01 setrgbcolor +fill +grestore +newpath +2.822337e+01 2.353596e+01 moveto +3.022009e+01 2.053316e+01 lineto +3.032301e+01 1.989841e+01 lineto +2.833219e+01 2.286477e+01 lineto +2.822337e+01 2.353596e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.650506e+01 2.670883e+01 moveto +2.822337e+01 2.353596e+01 lineto +2.833219e+01 2.286477e+01 lineto +2.661897e+01 2.600627e+01 lineto +2.650506e+01 2.670883e+01 lineto +closepath +gsave +6.047424e-01 6.047424e-01 6.047424e-01 setrgbcolor +fill +grestore +newpath +2.650506e+01 2.670883e+01 moveto +2.822337e+01 2.353596e+01 lineto +2.833219e+01 2.286477e+01 lineto +2.661897e+01 2.600627e+01 lineto +2.650506e+01 2.670883e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.507817e+01 3.002773e+01 moveto +2.650506e+01 2.670883e+01 lineto +2.661897e+01 2.600627e+01 lineto +2.51963e+01 2.929914e+01 lineto +2.507817e+01 3.002773e+01 lineto +closepath +gsave +6.041049e-01 6.041049e-01 6.041049e-01 setrgbcolor +fill +grestore +newpath +2.507817e+01 3.002773e+01 moveto +2.650506e+01 2.670883e+01 lineto +2.661897e+01 2.600627e+01 lineto +2.51963e+01 2.929914e+01 lineto +2.507817e+01 3.002773e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.395351e+01 3.346755e+01 moveto +2.507817e+01 3.002773e+01 lineto +2.51963e+01 2.929914e+01 lineto +2.407497e+01 3.271844e+01 lineto +2.395351e+01 3.346755e+01 lineto +closepath +gsave +6.017442e-01 6.017442e-01 6.017442e-01 setrgbcolor +fill +grestore +newpath +2.395351e+01 3.346755e+01 moveto +2.507817e+01 3.002773e+01 lineto +2.51963e+01 2.929914e+01 lineto +2.407497e+01 3.271844e+01 lineto +2.395351e+01 3.346755e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.313959e+01 3.700225e+01 moveto +2.395351e+01 3.346755e+01 lineto +2.407497e+01 3.271844e+01 lineto +2.326346e+01 3.623828e+01 lineto +2.313959e+01 3.700225e+01 lineto +closepath +gsave +5.977183e-01 5.977183e-01 5.977183e-01 setrgbcolor +fill +grestore +newpath +2.313959e+01 3.700225e+01 moveto +2.395351e+01 3.346755e+01 lineto +2.407497e+01 3.271844e+01 lineto +2.326346e+01 3.623828e+01 lineto +2.313959e+01 3.700225e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.201845e+01 8.768447e+01 moveto +6.834524e+01 8.799392e+01 lineto +6.833534e+01 8.805497e+01 lineto +7.199768e+01 8.781256e+01 lineto +7.201845e+01 8.768447e+01 lineto +closepath +gsave +5.190628e-01 5.190628e-01 5.190628e-01 setrgbcolor +fill +grestore +newpath +7.201845e+01 8.768447e+01 moveto +6.834524e+01 8.799392e+01 lineto +6.833534e+01 8.805497e+01 lineto +7.199768e+01 8.781256e+01 lineto +7.201845e+01 8.768447e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.563852e+01 8.705945e+01 moveto +7.201845e+01 8.768447e+01 lineto +7.199768e+01 8.781256e+01 lineto +7.560704e+01 8.725361e+01 lineto +7.563852e+01 8.705945e+01 lineto +closepath +gsave +5.30653e-01 5.30653e-01 5.30653e-01 setrgbcolor +fill +grestore +newpath +7.563852e+01 8.705945e+01 moveto +7.201845e+01 8.768447e+01 lineto +7.199768e+01 8.781256e+01 lineto +7.560704e+01 8.725361e+01 lineto +7.563852e+01 8.705945e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.917805e+01 8.61236e+01 moveto +7.563852e+01 8.705945e+01 lineto +7.560704e+01 8.725361e+01 lineto +7.91361e+01 8.638236e+01 lineto +7.917805e+01 8.61236e+01 lineto +closepath +gsave +5.421085e-01 5.421085e-01 5.421085e-01 setrgbcolor +fill +grestore +newpath +7.917805e+01 8.61236e+01 moveto +7.563852e+01 8.705945e+01 lineto +7.560704e+01 8.725361e+01 lineto +7.91361e+01 8.638236e+01 lineto +7.917805e+01 8.61236e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.131362e+01 3.954431e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.134729e+01 3.888215e+00 lineto +6.131362e+01 3.954431e+00 lineto +closepath +gsave +5.079291e-01 5.079291e-01 5.079291e-01 setrgbcolor +fill +grestore +newpath +6.131362e+01 3.954431e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.134729e+01 3.888215e+00 lineto +6.131362e+01 3.954431e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.765515e+01 4.227166e+00 moveto +6.131362e+01 3.954431e+00 lineto +6.134729e+01 3.888215e+00 lineto +5.772223e+01 4.095234e+00 lineto +5.765515e+01 4.227166e+00 lineto +closepath +gsave +5.179243e-01 5.179243e-01 5.179243e-01 setrgbcolor +fill +grestore +newpath +5.765515e+01 4.227166e+00 moveto +6.131362e+01 3.954431e+00 lineto +6.134729e+01 3.888215e+00 lineto +5.772223e+01 4.095234e+00 lineto +5.765515e+01 4.227166e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.405228e+01 4.81614e+00 moveto +5.765515e+01 4.227166e+00 lineto +5.772223e+01 4.095234e+00 lineto +5.415227e+01 4.61949e+00 lineto +5.405228e+01 4.81614e+00 lineto +closepath +gsave +5.278127e-01 5.278127e-01 5.278127e-01 setrgbcolor +fill +grestore +newpath +5.405228e+01 4.81614e+00 moveto +5.765515e+01 4.227166e+00 lineto +5.772223e+01 4.095234e+00 lineto +5.415227e+01 4.61949e+00 lineto +5.405228e+01 4.81614e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.053229e+01 5.716893e+00 moveto +5.405228e+01 4.81614e+00 lineto +5.415227e+01 4.61949e+00 lineto +5.066443e+01 5.457016e+00 lineto +5.053229e+01 5.716893e+00 lineto +closepath +gsave +5.374172e-01 5.374172e-01 5.374172e-01 setrgbcolor +fill +grestore +newpath +5.053229e+01 5.716893e+00 moveto +5.405228e+01 4.81614e+00 lineto +5.415227e+01 4.61949e+00 lineto +5.066443e+01 5.457016e+00 lineto +5.053229e+01 5.716893e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.712183e+01 6.922607e+00 moveto +5.053229e+01 5.716893e+00 lineto +5.066443e+01 5.457016e+00 lineto +4.728512e+01 6.601469e+00 lineto +4.712183e+01 6.922607e+00 lineto +closepath +gsave +5.465553e-01 5.465553e-01 5.465553e-01 setrgbcolor +fill +grestore +newpath +4.712183e+01 6.922607e+00 moveto +5.053229e+01 5.716893e+00 lineto +5.066443e+01 5.457016e+00 lineto +4.728512e+01 6.601469e+00 lineto +4.712183e+01 6.922607e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.384672e+01 8.424154e+00 moveto +4.712183e+01 6.922607e+00 lineto +4.728512e+01 6.601469e+00 lineto +4.403991e+01 8.044187e+00 lineto +4.384672e+01 8.424154e+00 lineto +closepath +gsave +5.550444e-01 5.550444e-01 5.550444e-01 setrgbcolor +fill +grestore +newpath +4.384672e+01 8.424154e+00 moveto +4.712183e+01 6.922607e+00 lineto +4.728512e+01 6.601469e+00 lineto +4.403991e+01 8.044187e+00 lineto +4.384672e+01 8.424154e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.073174e+01 1.021017e+01 moveto +4.384672e+01 8.424154e+00 lineto +4.403991e+01 8.044187e+00 lineto +4.095339e+01 9.774247e+00 lineto +4.073174e+01 1.021017e+01 lineto +closepath +gsave +5.627078e-01 5.627078e-01 5.627078e-01 setrgbcolor +fill +grestore +newpath +4.073174e+01 1.021017e+01 moveto +4.384672e+01 8.424154e+00 lineto +4.403991e+01 8.044187e+00 lineto +4.095339e+01 9.774247e+00 lineto +4.073174e+01 1.021017e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.780049e+01 1.226712e+01 moveto +4.073174e+01 1.021017e+01 lineto +4.095339e+01 9.774247e+00 lineto +3.80489e+01 1.177855e+01 lineto +3.780049e+01 1.226712e+01 lineto +closepath +gsave +5.693807e-01 5.693807e-01 5.693807e-01 setrgbcolor +fill +grestore +newpath +3.780049e+01 1.226712e+01 moveto +4.073174e+01 1.021017e+01 lineto +4.095339e+01 9.774247e+00 lineto +3.80489e+01 1.177855e+01 lineto +3.780049e+01 1.226712e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.507514e+01 1.457946e+01 moveto +3.780049e+01 1.226712e+01 lineto +3.80489e+01 1.177855e+01 lineto +3.534845e+01 1.404193e+01 lineto +3.507514e+01 1.457946e+01 lineto +closepath +gsave +5.749156e-01 5.749156e-01 5.749156e-01 setrgbcolor +fill +grestore +newpath +3.507514e+01 1.457946e+01 moveto +3.780049e+01 1.226712e+01 lineto +3.80489e+01 1.177855e+01 lineto +3.534845e+01 1.404193e+01 lineto +3.507514e+01 1.457946e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.257635e+01 1.712965e+01 moveto +3.507514e+01 1.457946e+01 lineto +3.534845e+01 1.404193e+01 lineto +3.287248e+01 1.654724e+01 lineto +3.257635e+01 1.712965e+01 lineto +closepath +gsave +5.791878e-01 5.791878e-01 5.791878e-01 setrgbcolor +fill +grestore +newpath +3.257635e+01 1.712965e+01 moveto +3.507514e+01 1.457946e+01 lineto +3.534845e+01 1.404193e+01 lineto +3.287248e+01 1.654724e+01 lineto +3.257635e+01 1.712965e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.032301e+01 1.989841e+01 moveto +3.257635e+01 1.712965e+01 lineto +3.287248e+01 1.654724e+01 lineto +3.063972e+01 1.927552e+01 lineto +3.032301e+01 1.989841e+01 lineto +closepath +gsave +5.820994e-01 5.820994e-01 5.820994e-01 setrgbcolor +fill +grestore +newpath +3.032301e+01 1.989841e+01 moveto +3.257635e+01 1.712965e+01 lineto +3.287248e+01 1.654724e+01 lineto +3.063972e+01 1.927552e+01 lineto +3.032301e+01 1.989841e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.833219e+01 2.286477e+01 moveto +3.032301e+01 1.989841e+01 lineto +3.063972e+01 1.927552e+01 lineto +2.866709e+01 2.220612e+01 lineto +2.833219e+01 2.286477e+01 lineto +closepath +gsave +5.835833e-01 5.835833e-01 5.835833e-01 setrgbcolor +fill +grestore +newpath +2.833219e+01 2.286477e+01 moveto +3.032301e+01 1.989841e+01 lineto +3.063972e+01 1.927552e+01 lineto +2.866709e+01 2.220612e+01 lineto +2.833219e+01 2.286477e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.661897e+01 2.600627e+01 moveto +2.833219e+01 2.286477e+01 lineto +2.866709e+01 2.220612e+01 lineto +2.696951e+01 2.531685e+01 lineto +2.661897e+01 2.600627e+01 lineto +closepath +gsave +5.836053e-01 5.836053e-01 5.836053e-01 setrgbcolor +fill +grestore +newpath +2.661897e+01 2.600627e+01 moveto +2.833219e+01 2.286477e+01 lineto +2.866709e+01 2.220612e+01 lineto +2.696951e+01 2.531685e+01 lineto +2.661897e+01 2.600627e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.199768e+01 8.781256e+01 moveto +6.833534e+01 8.805497e+01 lineto +6.830488e+01 8.811488e+01 lineto +7.193377e+01 8.793826e+01 lineto +7.199768e+01 8.781256e+01 lineto +closepath +gsave +5.169723e-01 5.169723e-01 5.169723e-01 setrgbcolor +fill +grestore +newpath +7.199768e+01 8.781256e+01 moveto +6.833534e+01 8.805497e+01 lineto +6.830488e+01 8.811488e+01 lineto +7.193377e+01 8.793826e+01 lineto +7.199768e+01 8.781256e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.560704e+01 8.725361e+01 moveto +7.199768e+01 8.781256e+01 lineto +7.193377e+01 8.793826e+01 lineto +7.551016e+01 8.744414e+01 lineto +7.560704e+01 8.725361e+01 lineto +closepath +gsave +5.268784e-01 5.268784e-01 5.268784e-01 setrgbcolor +fill +grestore +newpath +7.560704e+01 8.725361e+01 moveto +7.199768e+01 8.781256e+01 lineto +7.193377e+01 8.793826e+01 lineto +7.551016e+01 8.744414e+01 lineto +7.560704e+01 8.725361e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.91361e+01 8.638236e+01 moveto +7.560704e+01 8.725361e+01 lineto +7.551016e+01 8.744414e+01 lineto +7.900699e+01 8.663628e+01 lineto +7.91361e+01 8.638236e+01 lineto +closepath +gsave +5.365178e-01 5.365178e-01 5.365178e-01 setrgbcolor +fill +grestore +newpath +7.91361e+01 8.638236e+01 moveto +7.560704e+01 8.725361e+01 lineto +7.551016e+01 8.744414e+01 lineto +7.900699e+01 8.663628e+01 lineto +7.91361e+01 8.638236e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.134729e+01 3.888215e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.140348e+01 3.823667e+00 lineto +6.134729e+01 3.888215e+00 lineto +closepath +gsave +5.071964e-01 5.071964e-01 5.071964e-01 setrgbcolor +fill +grestore +newpath +6.134729e+01 3.888215e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.140348e+01 3.823667e+00 lineto +6.134729e+01 3.888215e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.772223e+01 4.095234e+00 moveto +6.134729e+01 3.888215e+00 lineto +6.140348e+01 3.823667e+00 lineto +5.783418e+01 3.966627e+00 lineto +5.772223e+01 4.095234e+00 lineto +closepath +gsave +5.156086e-01 5.156086e-01 5.156086e-01 setrgbcolor +fill +grestore +newpath +5.772223e+01 4.095234e+00 moveto +6.134729e+01 3.888215e+00 lineto +6.140348e+01 3.823667e+00 lineto +5.783418e+01 3.966627e+00 lineto +5.772223e+01 4.095234e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.415227e+01 4.61949e+00 moveto +5.772223e+01 4.095234e+00 lineto +5.783418e+01 3.966627e+00 lineto +5.431914e+01 4.427799e+00 lineto +5.415227e+01 4.61949e+00 lineto +closepath +gsave +5.237774e-01 5.237774e-01 5.237774e-01 setrgbcolor +fill +grestore +newpath +5.415227e+01 4.61949e+00 moveto +5.772223e+01 4.095234e+00 lineto +5.783418e+01 3.966627e+00 lineto +5.431914e+01 4.427799e+00 lineto +5.415227e+01 4.61949e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.066443e+01 5.457016e+00 moveto +5.415227e+01 4.61949e+00 lineto +5.431914e+01 4.427799e+00 lineto +5.088495e+01 5.20369e+00 lineto +5.066443e+01 5.457016e+00 lineto +closepath +gsave +5.315557e-01 5.315557e-01 5.315557e-01 setrgbcolor +fill +grestore +newpath +5.066443e+01 5.457016e+00 moveto +5.415227e+01 4.61949e+00 lineto +5.431914e+01 4.427799e+00 lineto +5.088495e+01 5.20369e+00 lineto +5.066443e+01 5.457016e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.728512e+01 6.601469e+00 moveto +5.066443e+01 5.457016e+00 lineto +5.088495e+01 5.20369e+00 lineto +4.755762e+01 6.288427e+00 lineto +4.728512e+01 6.601469e+00 lineto +closepath +gsave +5.387964e-01 5.387964e-01 5.387964e-01 setrgbcolor +fill +grestore +newpath +4.728512e+01 6.601469e+00 moveto +5.066443e+01 5.457016e+00 lineto +5.088495e+01 5.20369e+00 lineto +4.755762e+01 6.288427e+00 lineto +4.728512e+01 6.601469e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.403991e+01 8.044187e+00 moveto +4.728512e+01 6.601469e+00 lineto +4.755762e+01 6.288427e+00 lineto +4.436234e+01 7.673799e+00 lineto +4.403991e+01 8.044187e+00 lineto +closepath +gsave +5.453564e-01 5.453564e-01 5.453564e-01 setrgbcolor +fill +grestore +newpath +4.403991e+01 8.044187e+00 moveto +4.728512e+01 6.601469e+00 lineto +4.755762e+01 6.288427e+00 lineto +4.436234e+01 7.673799e+00 lineto +4.403991e+01 8.044187e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.095339e+01 9.774247e+00 moveto +4.403991e+01 8.044187e+00 lineto +4.436234e+01 7.673799e+00 lineto +4.132329e+01 9.349316e+00 lineto +4.095339e+01 9.774247e+00 lineto +closepath +gsave +5.511021e-01 5.511021e-01 5.511021e-01 setrgbcolor +fill +grestore +newpath +4.095339e+01 9.774247e+00 moveto +4.403991e+01 8.044187e+00 lineto +4.436234e+01 7.673799e+00 lineto +4.132329e+01 9.349316e+00 lineto +4.095339e+01 9.774247e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.80489e+01 1.177855e+01 moveto +4.095339e+01 9.774247e+00 lineto +4.132329e+01 9.349316e+00 lineto +3.846348e+01 1.13023e+01 lineto +3.80489e+01 1.177855e+01 lineto +closepath +gsave +5.559129e-01 5.559129e-01 5.559129e-01 setrgbcolor +fill +grestore +newpath +3.80489e+01 1.177855e+01 moveto +4.095339e+01 9.774247e+00 lineto +4.132329e+01 9.349316e+00 lineto +3.846348e+01 1.13023e+01 lineto +3.80489e+01 1.177855e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.534845e+01 1.404193e+01 moveto +3.80489e+01 1.177855e+01 lineto +3.846348e+01 1.13023e+01 lineto +3.580457e+01 1.351795e+01 lineto +3.534845e+01 1.404193e+01 lineto +closepath +gsave +5.596859e-01 5.596859e-01 5.596859e-01 setrgbcolor +fill +grestore +newpath +3.534845e+01 1.404193e+01 moveto +3.80489e+01 1.177855e+01 lineto +3.846348e+01 1.13023e+01 lineto +3.580457e+01 1.351795e+01 lineto +3.534845e+01 1.404193e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.287248e+01 1.654724e+01 moveto +3.534845e+01 1.404193e+01 lineto +3.580457e+01 1.351795e+01 lineto +3.336668e+01 1.597951e+01 lineto +3.287248e+01 1.654724e+01 lineto +closepath +gsave +5.62339e-01 5.62339e-01 5.62339e-01 setrgbcolor +fill +grestore +newpath +3.287248e+01 1.654724e+01 moveto +3.534845e+01 1.404193e+01 lineto +3.580457e+01 1.351795e+01 lineto +3.336668e+01 1.597951e+01 lineto +3.287248e+01 1.654724e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.193377e+01 8.793826e+01 moveto +6.830488e+01 8.811488e+01 lineto +6.825404e+01 8.817328e+01 lineto +7.182711e+01 8.806079e+01 lineto +7.193377e+01 8.793826e+01 lineto +closepath +gsave +5.14814e-01 5.14814e-01 5.14814e-01 setrgbcolor +fill +grestore +newpath +7.193377e+01 8.793826e+01 moveto +6.830488e+01 8.811488e+01 lineto +6.825404e+01 8.817328e+01 lineto +7.182711e+01 8.806079e+01 lineto +7.193377e+01 8.793826e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.551016e+01 8.744414e+01 moveto +7.193377e+01 8.793826e+01 lineto +7.182711e+01 8.806079e+01 lineto +7.534849e+01 8.762987e+01 lineto +7.551016e+01 8.744414e+01 lineto +closepath +gsave +5.230124e-01 5.230124e-01 5.230124e-01 setrgbcolor +fill +grestore +newpath +7.551016e+01 8.744414e+01 moveto +7.193377e+01 8.793826e+01 lineto +7.182711e+01 8.806079e+01 lineto +7.534849e+01 8.762987e+01 lineto +7.551016e+01 8.744414e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.900699e+01 8.663628e+01 moveto +7.551016e+01 8.744414e+01 lineto +7.534849e+01 8.762987e+01 lineto +7.879152e+01 8.68838e+01 lineto +7.900699e+01 8.663628e+01 lineto +closepath +gsave +5.308343e-01 5.308343e-01 5.308343e-01 setrgbcolor +fill +grestore +newpath +7.900699e+01 8.663628e+01 moveto +7.551016e+01 8.744414e+01 lineto +7.534849e+01 8.762987e+01 lineto +7.879152e+01 8.68838e+01 lineto +7.900699e+01 8.663628e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.140348e+01 3.823667e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.148184e+01 3.761187e+00 lineto +6.140348e+01 3.823667e+00 lineto +closepath +gsave +5.064403e-01 5.064403e-01 5.064403e-01 setrgbcolor +fill +grestore +newpath +6.140348e+01 3.823667e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.148184e+01 3.761187e+00 lineto +6.140348e+01 3.823667e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.783418e+01 3.966627e+00 moveto +6.140348e+01 3.823667e+00 lineto +6.148184e+01 3.761187e+00 lineto +5.799031e+01 3.84214e+00 lineto +5.783418e+01 3.966627e+00 lineto +closepath +gsave +5.132397e-01 5.132397e-01 5.132397e-01 setrgbcolor +fill +grestore +newpath +5.783418e+01 3.966627e+00 moveto +6.140348e+01 3.823667e+00 lineto +6.148184e+01 3.761187e+00 lineto +5.799031e+01 3.84214e+00 lineto +5.783418e+01 3.966627e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.431914e+01 4.427799e+00 moveto +5.783418e+01 3.966627e+00 lineto +5.799031e+01 3.84214e+00 lineto +5.455186e+01 4.242247e+00 lineto +5.431914e+01 4.427799e+00 lineto +closepath +gsave +5.196839e-01 5.196839e-01 5.196839e-01 setrgbcolor +fill +grestore +newpath +5.431914e+01 4.427799e+00 moveto +5.783418e+01 3.966627e+00 lineto +5.799031e+01 3.84214e+00 lineto +5.455186e+01 4.242247e+00 lineto +5.431914e+01 4.427799e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.088495e+01 5.20369e+00 moveto +5.431914e+01 4.427799e+00 lineto +5.455186e+01 4.242247e+00 lineto +5.119249e+01 4.958478e+00 lineto +5.088495e+01 5.20369e+00 lineto +closepath +gsave +5.256566e-01 5.256566e-01 5.256566e-01 setrgbcolor +fill +grestore +newpath +5.088495e+01 5.20369e+00 moveto +5.431914e+01 4.427799e+00 lineto +5.455186e+01 4.242247e+00 lineto +5.119249e+01 4.958478e+00 lineto +5.088495e+01 5.20369e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.755762e+01 6.288427e+00 moveto +5.088495e+01 5.20369e+00 lineto +5.119249e+01 4.958478e+00 lineto +4.793766e+01 5.985412e+00 lineto +4.755762e+01 6.288427e+00 lineto +closepath +gsave +5.310455e-01 5.310455e-01 5.310455e-01 setrgbcolor +fill +grestore +newpath +4.755762e+01 6.288427e+00 moveto +5.088495e+01 5.20369e+00 lineto +5.119249e+01 4.958478e+00 lineto +4.793766e+01 5.985412e+00 lineto +4.755762e+01 6.288427e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.436234e+01 7.673799e+00 moveto +4.755762e+01 6.288427e+00 lineto +4.793766e+01 5.985412e+00 lineto +4.4812e+01 7.315273e+00 lineto +4.436234e+01 7.673799e+00 lineto +closepath +gsave +5.357462e-01 5.357462e-01 5.357462e-01 setrgbcolor +fill +grestore +newpath +4.436234e+01 7.673799e+00 moveto +4.755762e+01 6.288427e+00 lineto +4.793766e+01 5.985412e+00 lineto +4.4812e+01 7.315273e+00 lineto +4.436234e+01 7.673799e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.132329e+01 9.349316e+00 moveto +4.436234e+01 7.673799e+00 lineto +4.4812e+01 7.315273e+00 lineto +4.183916e+01 8.937995e+00 lineto +4.132329e+01 9.349316e+00 lineto +closepath +gsave +5.396652e-01 5.396652e-01 5.396652e-01 setrgbcolor +fill +grestore +newpath +4.132329e+01 9.349316e+00 moveto +4.436234e+01 7.673799e+00 lineto +4.4812e+01 7.315273e+00 lineto +4.183916e+01 8.937995e+00 lineto +4.132329e+01 9.349316e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.846348e+01 1.13023e+01 moveto +4.132329e+01 9.349316e+00 lineto +4.183916e+01 8.937995e+00 lineto +3.904167e+01 1.084129e+01 lineto +3.846348e+01 1.13023e+01 lineto +closepath +gsave +5.427227e-01 5.427227e-01 5.427227e-01 setrgbcolor +fill +grestore +newpath +3.846348e+01 1.13023e+01 moveto +4.132329e+01 9.349316e+00 lineto +4.183916e+01 8.937995e+00 lineto +3.904167e+01 1.084129e+01 lineto +3.846348e+01 1.13023e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.182711e+01 8.806079e+01 moveto +6.825404e+01 8.817328e+01 lineto +6.818314e+01 8.822981e+01 lineto +7.167836e+01 8.817939e+01 lineto +7.182711e+01 8.806079e+01 lineto +closepath +gsave +5.126043e-01 5.126043e-01 5.126043e-01 setrgbcolor +fill +grestore +newpath +7.182711e+01 8.806079e+01 moveto +6.825404e+01 8.817328e+01 lineto +6.818314e+01 8.822981e+01 lineto +7.167836e+01 8.817939e+01 lineto +7.182711e+01 8.806079e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.534849e+01 8.762987e+01 moveto +7.182711e+01 8.806079e+01 lineto +7.167836e+01 8.817939e+01 lineto +7.512301e+01 8.780965e+01 lineto +7.534849e+01 8.762987e+01 lineto +closepath +gsave +5.190875e-01 5.190875e-01 5.190875e-01 setrgbcolor +fill +grestore +newpath +7.534849e+01 8.762987e+01 moveto +7.182711e+01 8.806079e+01 lineto +7.167836e+01 8.817939e+01 lineto +7.512301e+01 8.780965e+01 lineto +7.534849e+01 8.762987e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.879152e+01 8.68838e+01 moveto +7.534849e+01 8.762987e+01 lineto +7.512301e+01 8.780965e+01 lineto +7.849103e+01 8.712339e+01 lineto +7.879152e+01 8.68838e+01 lineto +closepath +gsave +5.251101e-01 5.251101e-01 5.251101e-01 setrgbcolor +fill +grestore +newpath +7.879152e+01 8.68838e+01 moveto +7.534849e+01 8.762987e+01 lineto +7.512301e+01 8.780965e+01 lineto +7.849103e+01 8.712339e+01 lineto +7.879152e+01 8.68838e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.148184e+01 3.761187e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.158189e+01 3.701159e+00 lineto +6.148184e+01 3.761187e+00 lineto +closepath +gsave +5.056656e-01 5.056656e-01 5.056656e-01 setrgbcolor +fill +grestore +newpath +6.148184e+01 3.761187e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.158189e+01 3.701159e+00 lineto +6.148184e+01 3.761187e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.799031e+01 3.84214e+00 moveto +6.148184e+01 3.761187e+00 lineto +6.158189e+01 3.701159e+00 lineto +5.818966e+01 3.722539e+00 lineto +5.799031e+01 3.84214e+00 lineto +closepath +gsave +5.108352e-01 5.108352e-01 5.108352e-01 setrgbcolor +fill +grestore +newpath +5.799031e+01 3.84214e+00 moveto +6.148184e+01 3.761187e+00 lineto +6.158189e+01 3.701159e+00 lineto +5.818966e+01 3.722539e+00 lineto +5.799031e+01 3.84214e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.455186e+01 4.242247e+00 moveto +5.799031e+01 3.84214e+00 lineto +5.818966e+01 3.722539e+00 lineto +5.484899e+01 4.063978e+00 lineto +5.455186e+01 4.242247e+00 lineto +closepath +gsave +5.155653e-01 5.155653e-01 5.155653e-01 setrgbcolor +fill +grestore +newpath +5.455186e+01 4.242247e+00 moveto +5.799031e+01 3.84214e+00 lineto +5.818966e+01 3.722539e+00 lineto +5.484899e+01 4.063978e+00 lineto +5.455186e+01 4.242247e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.119249e+01 4.958478e+00 moveto +5.455186e+01 4.242247e+00 lineto +5.484899e+01 4.063978e+00 lineto +5.158516e+01 4.722891e+00 lineto +5.119249e+01 4.958478e+00 lineto +closepath +gsave +5.197708e-01 5.197708e-01 5.197708e-01 setrgbcolor +fill +grestore +newpath +5.119249e+01 4.958478e+00 moveto +5.455186e+01 4.242247e+00 lineto +5.484899e+01 4.063978e+00 lineto +5.158516e+01 4.722891e+00 lineto +5.119249e+01 4.958478e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.793766e+01 5.985412e+00 moveto +5.119249e+01 4.958478e+00 lineto +5.158516e+01 4.722891e+00 lineto +4.84229e+01 5.69429e+00 lineto +4.793766e+01 5.985412e+00 lineto +closepath +gsave +5.233738e-01 5.233738e-01 5.233738e-01 setrgbcolor +fill +grestore +newpath +4.793766e+01 5.985412e+00 moveto +5.119249e+01 4.958478e+00 lineto +5.158516e+01 4.722891e+00 lineto +4.84229e+01 5.69429e+00 lineto +4.793766e+01 5.985412e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.4812e+01 7.315273e+00 moveto +4.793766e+01 5.985412e+00 lineto +4.84229e+01 5.69429e+00 lineto +4.538612e+01 6.970821e+00 lineto +4.4812e+01 7.315273e+00 lineto +closepath +gsave +5.263058e-01 5.263058e-01 5.263058e-01 setrgbcolor +fill +grestore +newpath +4.4812e+01 7.315273e+00 moveto +4.793766e+01 5.985412e+00 lineto +4.84229e+01 5.69429e+00 lineto +4.538612e+01 6.970821e+00 lineto +4.4812e+01 7.315273e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.183916e+01 8.937995e+00 moveto +4.4812e+01 7.315273e+00 lineto +4.538612e+01 6.970821e+00 lineto +4.249783e+01 8.54282e+00 lineto +4.183916e+01 8.937995e+00 lineto +closepath +gsave +5.285102e-01 5.285102e-01 5.285102e-01 setrgbcolor +fill +grestore +newpath +4.183916e+01 8.937995e+00 moveto +4.4812e+01 7.315273e+00 lineto +4.538612e+01 6.970821e+00 lineto +4.249783e+01 8.54282e+00 lineto +4.183916e+01 8.937995e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.167836e+01 8.817939e+01 moveto +6.818314e+01 8.822981e+01 lineto +6.809262e+01 8.828413e+01 lineto +7.148843e+01 8.829334e+01 lineto +7.167836e+01 8.817939e+01 lineto +closepath +gsave +5.103594e-01 5.103594e-01 5.103594e-01 setrgbcolor +fill +grestore +newpath +7.167836e+01 8.817939e+01 moveto +6.818314e+01 8.822981e+01 lineto +6.809262e+01 8.828413e+01 lineto +7.148843e+01 8.829334e+01 lineto +7.167836e+01 8.817939e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.512301e+01 8.780965e+01 moveto +7.167836e+01 8.817939e+01 lineto +7.148843e+01 8.829334e+01 lineto +7.483512e+01 8.798237e+01 lineto +7.512301e+01 8.780965e+01 lineto +closepath +gsave +5.151352e-01 5.151352e-01 5.151352e-01 setrgbcolor +fill +grestore +newpath +7.512301e+01 8.780965e+01 moveto +7.167836e+01 8.817939e+01 lineto +7.148843e+01 8.829334e+01 lineto +7.483512e+01 8.798237e+01 lineto +7.512301e+01 8.780965e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.849103e+01 8.712339e+01 moveto +7.512301e+01 8.780965e+01 lineto +7.483512e+01 8.798237e+01 lineto +7.810736e+01 8.735357e+01 lineto +7.849103e+01 8.712339e+01 lineto +closepath +gsave +5.193943e-01 5.193943e-01 5.193943e-01 setrgbcolor +fill +grestore +newpath +7.849103e+01 8.712339e+01 moveto +7.512301e+01 8.780965e+01 lineto +7.483512e+01 8.798237e+01 lineto +7.810736e+01 8.735357e+01 lineto +7.849103e+01 8.712339e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.158189e+01 3.701159e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.170302e+01 3.643954e+00 lineto +6.158189e+01 3.701159e+00 lineto +closepath +gsave +5.048774e-01 5.048774e-01 5.048774e-01 setrgbcolor +fill +grestore +newpath +6.158189e+01 3.701159e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.170302e+01 3.643954e+00 lineto +6.158189e+01 3.701159e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.818966e+01 3.722539e+00 moveto +6.158189e+01 3.701159e+00 lineto +6.170302e+01 3.643954e+00 lineto +5.8431e+01 3.608562e+00 lineto +5.818966e+01 3.722539e+00 lineto +closepath +gsave +5.084122e-01 5.084122e-01 5.084122e-01 setrgbcolor +fill +grestore +newpath +5.818966e+01 3.722539e+00 moveto +6.158189e+01 3.701159e+00 lineto +6.170302e+01 3.643954e+00 lineto +5.8431e+01 3.608562e+00 lineto +5.818966e+01 3.722539e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.484899e+01 4.063978e+00 moveto +5.818966e+01 3.722539e+00 lineto +5.8431e+01 3.608562e+00 lineto +5.520871e+01 3.894092e+00 lineto +5.484899e+01 4.063978e+00 lineto +closepath +gsave +5.114532e-01 5.114532e-01 5.114532e-01 setrgbcolor +fill +grestore +newpath +5.484899e+01 4.063978e+00 moveto +5.818966e+01 3.722539e+00 lineto +5.8431e+01 3.608562e+00 lineto +5.520871e+01 3.894092e+00 lineto +5.484899e+01 4.063978e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.158516e+01 4.722891e+00 moveto +5.484899e+01 4.063978e+00 lineto +5.520871e+01 3.894092e+00 lineto +5.206054e+01 4.498382e+00 lineto +5.158516e+01 4.722891e+00 lineto +closepath +gsave +5.139463e-01 5.139463e-01 5.139463e-01 setrgbcolor +fill +grestore +newpath +5.158516e+01 4.722891e+00 moveto +5.484899e+01 4.063978e+00 lineto +5.520871e+01 3.894092e+00 lineto +5.206054e+01 4.498382e+00 lineto +5.158516e+01 4.722891e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.84229e+01 5.69429e+00 moveto +5.158516e+01 4.722891e+00 lineto +5.206054e+01 4.498382e+00 lineto +4.901033e+01 5.416857e+00 lineto +4.84229e+01 5.69429e+00 lineto +closepath +gsave +5.158458e-01 5.158458e-01 5.158458e-01 setrgbcolor +fill +grestore +newpath +4.84229e+01 5.69429e+00 moveto +5.158516e+01 4.722891e+00 lineto +5.206054e+01 4.498382e+00 lineto +4.901033e+01 5.416857e+00 lineto +4.84229e+01 5.69429e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.538612e+01 6.970821e+00 moveto +4.84229e+01 5.69429e+00 lineto +4.901033e+01 5.416857e+00 lineto +4.608117e+01 6.642565e+00 lineto +4.538612e+01 6.970821e+00 lineto +closepath +gsave +5.17117e-01 5.17117e-01 5.17117e-01 setrgbcolor +fill +grestore +newpath +4.538612e+01 6.970821e+00 moveto +4.84229e+01 5.69429e+00 lineto +4.901033e+01 5.416857e+00 lineto +4.608117e+01 6.642565e+00 lineto +4.538612e+01 6.970821e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.148843e+01 8.829334e+01 moveto +6.809262e+01 8.828413e+01 lineto +6.798303e+01 8.833588e+01 lineto +7.12585e+01 8.840193e+01 lineto +7.148843e+01 8.829334e+01 lineto +closepath +gsave +5.080952e-01 5.080952e-01 5.080952e-01 setrgbcolor +fill +grestore +newpath +7.148843e+01 8.829334e+01 moveto +6.809262e+01 8.828413e+01 lineto +6.798303e+01 8.833588e+01 lineto +7.12585e+01 8.840193e+01 lineto +7.148843e+01 8.829334e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.483512e+01 8.798237e+01 moveto +7.148843e+01 8.829334e+01 lineto +7.12585e+01 8.840193e+01 lineto +7.44866e+01 8.814697e+01 lineto +7.483512e+01 8.798237e+01 lineto +closepath +gsave +5.111859e-01 5.111859e-01 5.111859e-01 setrgbcolor +fill +grestore +newpath +7.483512e+01 8.798237e+01 moveto +7.148843e+01 8.829334e+01 lineto +7.12585e+01 8.840193e+01 lineto +7.44866e+01 8.814697e+01 lineto +7.483512e+01 8.798237e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.810736e+01 8.735357e+01 moveto +7.483512e+01 8.798237e+01 lineto +7.44866e+01 8.814697e+01 lineto +7.764288e+01 8.757294e+01 lineto +7.810736e+01 8.735357e+01 lineto +closepath +gsave +5.137333e-01 5.137333e-01 5.137333e-01 setrgbcolor +fill +grestore +newpath +7.810736e+01 8.735357e+01 moveto +7.483512e+01 8.798237e+01 lineto +7.44866e+01 8.814697e+01 lineto +7.764288e+01 8.757294e+01 lineto +7.810736e+01 8.735357e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.170302e+01 3.643954e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.184447e+01 3.589924e+00 lineto +6.170302e+01 3.643954e+00 lineto +closepath +gsave +5.040809e-01 5.040809e-01 5.040809e-01 setrgbcolor +fill +grestore +newpath +6.170302e+01 3.643954e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.184447e+01 3.589924e+00 lineto +6.170302e+01 3.643954e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.8431e+01 3.608562e+00 moveto +6.170302e+01 3.643954e+00 lineto +6.184447e+01 3.589924e+00 lineto +5.871284e+01 3.500912e+00 lineto +5.8431e+01 3.608562e+00 lineto +closepath +gsave +5.059874e-01 5.059874e-01 5.059874e-01 setrgbcolor +fill +grestore +newpath +5.8431e+01 3.608562e+00 moveto +6.170302e+01 3.643954e+00 lineto +6.184447e+01 3.589924e+00 lineto +5.871284e+01 3.500912e+00 lineto +5.8431e+01 3.608562e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.520871e+01 3.894092e+00 moveto +5.8431e+01 3.608562e+00 lineto +5.871284e+01 3.500912e+00 lineto +5.562879e+01 3.733636e+00 lineto +5.520871e+01 3.894092e+00 lineto +closepath +gsave +5.073774e-01 5.073774e-01 5.073774e-01 setrgbcolor +fill +grestore +newpath +5.520871e+01 3.894092e+00 moveto +5.8431e+01 3.608562e+00 lineto +5.871284e+01 3.500912e+00 lineto +5.562879e+01 3.733636e+00 lineto +5.520871e+01 3.894092e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.206054e+01 4.498382e+00 moveto +5.520871e+01 3.894092e+00 lineto +5.562879e+01 3.733636e+00 lineto +5.26157e+01 4.286335e+00 lineto +5.206054e+01 4.498382e+00 lineto +closepath +gsave +5.082264e-01 5.082264e-01 5.082264e-01 setrgbcolor +fill +grestore +newpath +5.206054e+01 4.498382e+00 moveto +5.520871e+01 3.894092e+00 lineto +5.562879e+01 3.733636e+00 lineto +5.26157e+01 4.286335e+00 lineto +5.206054e+01 4.498382e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.901033e+01 5.416857e+00 moveto +5.206054e+01 4.498382e+00 lineto +5.26157e+01 4.286335e+00 lineto +4.969635e+01 5.154824e+00 lineto +4.901033e+01 5.416857e+00 lineto +closepath +gsave +5.085193e-01 5.085193e-01 5.085193e-01 setrgbcolor +fill +grestore +newpath +4.901033e+01 5.416857e+00 moveto +5.206054e+01 4.498382e+00 lineto +5.26157e+01 4.286335e+00 lineto +4.969635e+01 5.154824e+00 lineto +4.901033e+01 5.416857e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.12585e+01 8.840193e+01 moveto +6.798303e+01 8.833588e+01 lineto +6.785504e+01 8.838477e+01 lineto +7.098999e+01 8.850449e+01 lineto +7.12585e+01 8.840193e+01 lineto +closepath +gsave +5.058273e-01 5.058273e-01 5.058273e-01 setrgbcolor +fill +grestore +newpath +7.12585e+01 8.840193e+01 moveto +6.798303e+01 8.833588e+01 lineto +6.785504e+01 8.838477e+01 lineto +7.098999e+01 8.850449e+01 lineto +7.12585e+01 8.840193e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.44866e+01 8.814697e+01 moveto +7.12585e+01 8.840193e+01 lineto +7.098999e+01 8.850449e+01 lineto +7.407959e+01 8.830243e+01 lineto +7.44866e+01 8.814697e+01 lineto +closepath +gsave +5.072678e-01 5.072678e-01 5.072678e-01 setrgbcolor +fill +grestore +newpath +7.44866e+01 8.814697e+01 moveto +7.12585e+01 8.840193e+01 lineto +7.098999e+01 8.850449e+01 lineto +7.407959e+01 8.830243e+01 lineto +7.44866e+01 8.814697e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.764288e+01 8.757294e+01 moveto +7.44866e+01 8.814697e+01 lineto +7.407959e+01 8.830243e+01 lineto +7.710045e+01 8.778013e+01 lineto +7.764288e+01 8.757294e+01 lineto +closepath +gsave +5.081692e-01 5.081692e-01 5.081692e-01 setrgbcolor +fill +grestore +newpath +7.764288e+01 8.757294e+01 moveto +7.44866e+01 8.814697e+01 lineto +7.407959e+01 8.830243e+01 lineto +7.710045e+01 8.778013e+01 lineto +7.764288e+01 8.757294e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.184447e+01 3.589924e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.200538e+01 3.539403e+00 lineto +6.184447e+01 3.589924e+00 lineto +closepath +gsave +5.03281e-01 5.03281e-01 5.03281e-01 setrgbcolor +fill +grestore +newpath +6.184447e+01 3.589924e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.200538e+01 3.539403e+00 lineto +6.184447e+01 3.589924e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.871284e+01 3.500912e+00 moveto +6.184447e+01 3.589924e+00 lineto +6.200538e+01 3.539403e+00 lineto +5.903343e+01 3.400251e+00 lineto +5.871284e+01 3.500912e+00 lineto +closepath +gsave +5.035769e-01 5.035769e-01 5.035769e-01 setrgbcolor +fill +grestore +newpath +5.871284e+01 3.500912e+00 moveto +6.184447e+01 3.589924e+00 lineto +6.200538e+01 3.539403e+00 lineto +5.903343e+01 3.400251e+00 lineto +5.871284e+01 3.500912e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.562879e+01 3.733636e+00 moveto +5.871284e+01 3.500912e+00 lineto +5.903343e+01 3.400251e+00 lineto +5.610666e+01 3.583599e+00 lineto +5.562879e+01 3.733636e+00 lineto +closepath +gsave +5.033656e-01 5.033656e-01 5.033656e-01 setrgbcolor +fill +grestore +newpath +5.562879e+01 3.733636e+00 moveto +5.871284e+01 3.500912e+00 lineto +5.903343e+01 3.400251e+00 lineto +5.610666e+01 3.583599e+00 lineto +5.562879e+01 3.733636e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.26157e+01 4.286335e+00 moveto +5.562879e+01 3.733636e+00 lineto +5.610666e+01 3.583599e+00 lineto +5.32472e+01 4.088057e+00 lineto +5.26157e+01 4.286335e+00 lineto +closepath +gsave +5.026505e-01 5.026505e-01 5.026505e-01 setrgbcolor +fill +grestore +newpath +5.26157e+01 4.286335e+00 moveto +5.562879e+01 3.733636e+00 lineto +5.610666e+01 3.583599e+00 lineto +5.32472e+01 4.088057e+00 lineto +5.26157e+01 4.286335e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.969635e+01 5.154824e+00 moveto +5.26157e+01 4.286335e+00 lineto +5.32472e+01 4.088057e+00 lineto +5.047673e+01 4.909806e+00 lineto +4.969635e+01 5.154824e+00 lineto +closepath +gsave +5.014444e-01 5.014444e-01 5.014444e-01 setrgbcolor +fill +grestore +newpath +4.969635e+01 5.154824e+00 moveto +5.26157e+01 4.286335e+00 lineto +5.32472e+01 4.088057e+00 lineto +5.047673e+01 4.909806e+00 lineto +4.969635e+01 5.154824e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.098999e+01 8.850449e+01 moveto +6.785504e+01 8.838477e+01 lineto +6.770946e+01 8.843048e+01 lineto +7.068454e+01 8.860039e+01 lineto +7.098999e+01 8.850449e+01 lineto +closepath +gsave +5.035706e-01 5.035706e-01 5.035706e-01 setrgbcolor +fill +grestore +newpath +7.098999e+01 8.850449e+01 moveto +6.785504e+01 8.838477e+01 lineto +6.770946e+01 8.843048e+01 lineto +7.068454e+01 8.860039e+01 lineto +7.098999e+01 8.850449e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.407959e+01 8.830243e+01 moveto +7.098999e+01 8.850449e+01 lineto +7.068454e+01 8.860039e+01 lineto +7.361659e+01 8.84478e+01 lineto +7.407959e+01 8.830243e+01 lineto +closepath +gsave +5.034076e-01 5.034076e-01 5.034076e-01 setrgbcolor +fill +grestore +newpath +7.407959e+01 8.830243e+01 moveto +7.098999e+01 8.850449e+01 lineto +7.068454e+01 8.860039e+01 lineto +7.361659e+01 8.84478e+01 lineto +7.407959e+01 8.830243e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.710045e+01 8.778013e+01 moveto +7.407959e+01 8.830243e+01 lineto +7.361659e+01 8.84478e+01 lineto +7.648341e+01 8.797386e+01 lineto +7.710045e+01 8.778013e+01 lineto +closepath +gsave +5.027402e-01 5.027402e-01 5.027402e-01 setrgbcolor +fill +grestore +newpath +7.710045e+01 8.778013e+01 moveto +7.407959e+01 8.830243e+01 lineto +7.361659e+01 8.84478e+01 lineto +7.648341e+01 8.797386e+01 lineto +7.710045e+01 8.778013e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.200538e+01 3.539403e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.218475e+01 3.492702e+00 lineto +6.200538e+01 3.539403e+00 lineto +closepath +gsave +5.024827e-01 5.024827e-01 5.024827e-01 setrgbcolor +fill +grestore +newpath +6.200538e+01 3.539403e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.218475e+01 3.492702e+00 lineto +6.200538e+01 3.539403e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.903343e+01 3.400251e+00 moveto +6.200538e+01 3.539403e+00 lineto +6.218475e+01 3.492702e+00 lineto +5.939082e+01 3.307202e+00 lineto +5.903343e+01 3.400251e+00 lineto +closepath +gsave +5.01196e-01 5.01196e-01 5.01196e-01 setrgbcolor +fill +grestore +newpath +5.903343e+01 3.400251e+00 moveto +6.200538e+01 3.539403e+00 lineto +6.218475e+01 3.492702e+00 lineto +5.939082e+01 3.307202e+00 lineto +5.903343e+01 3.400251e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.610666e+01 3.583599e+00 moveto +5.903343e+01 3.400251e+00 lineto +5.939082e+01 3.307202e+00 lineto +5.663935e+01 3.444906e+00 lineto +5.610666e+01 3.583599e+00 lineto +closepath +gsave +4.994429e-01 4.994429e-01 4.994429e-01 setrgbcolor +fill +grestore +newpath +5.610666e+01 3.583599e+00 moveto +5.903343e+01 3.400251e+00 lineto +5.939082e+01 3.307202e+00 lineto +5.663935e+01 3.444906e+00 lineto +5.610666e+01 3.583599e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.32472e+01 4.088057e+00 moveto +5.610666e+01 3.583599e+00 lineto +5.663935e+01 3.444906e+00 lineto +5.395117e+01 3.90477e+00 lineto +5.32472e+01 4.088057e+00 lineto +closepath +gsave +4.972532e-01 4.972532e-01 4.972532e-01 setrgbcolor +fill +grestore +newpath +5.32472e+01 4.088057e+00 moveto +5.610666e+01 3.583599e+00 lineto +5.663935e+01 3.444906e+00 lineto +5.395117e+01 3.90477e+00 lineto +5.32472e+01 4.088057e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.068454e+01 8.860039e+01 moveto +6.770946e+01 8.843048e+01 lineto +6.754717e+01 8.847273e+01 lineto +7.034405e+01 8.868904e+01 lineto +7.068454e+01 8.860039e+01 lineto +closepath +gsave +5.013393e-01 5.013393e-01 5.013393e-01 setrgbcolor +fill +grestore +newpath +7.068454e+01 8.860039e+01 moveto +6.770946e+01 8.843048e+01 lineto +6.754717e+01 8.847273e+01 lineto +7.034405e+01 8.868904e+01 lineto +7.068454e+01 8.860039e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.361659e+01 8.84478e+01 moveto +7.068454e+01 8.860039e+01 lineto +7.034405e+01 8.868904e+01 lineto +7.310048e+01 8.858218e+01 lineto +7.361659e+01 8.84478e+01 lineto +closepath +gsave +4.996296e-01 4.996296e-01 4.996296e-01 setrgbcolor +fill +grestore +newpath +7.361659e+01 8.84478e+01 moveto +7.068454e+01 8.860039e+01 lineto +7.034405e+01 8.868904e+01 lineto +7.310048e+01 8.858218e+01 lineto +7.361659e+01 8.84478e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.648341e+01 8.797386e+01 moveto +7.361659e+01 8.84478e+01 lineto +7.310048e+01 8.858218e+01 lineto +7.579558e+01 8.815294e+01 lineto +7.648341e+01 8.797386e+01 lineto +closepath +gsave +4.974801e-01 4.974801e-01 4.974801e-01 setrgbcolor +fill +grestore +newpath +7.648341e+01 8.797386e+01 moveto +7.361659e+01 8.84478e+01 lineto +7.310048e+01 8.858218e+01 lineto +7.579558e+01 8.815294e+01 lineto +7.648341e+01 8.797386e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.218475e+01 3.492702e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.238148e+01 3.450108e+00 lineto +6.218475e+01 3.492702e+00 lineto +closepath +gsave +5.01691e-01 5.01691e-01 5.01691e-01 setrgbcolor +fill +grestore +newpath +6.218475e+01 3.492702e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.238148e+01 3.450108e+00 lineto +6.218475e+01 3.492702e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.939082e+01 3.307202e+00 moveto +6.218475e+01 3.492702e+00 lineto +6.238148e+01 3.450108e+00 lineto +5.978279e+01 3.222337e+00 lineto +5.939082e+01 3.307202e+00 lineto +closepath +gsave +4.98859e-01 4.98859e-01 4.98859e-01 setrgbcolor +fill +grestore +newpath +5.939082e+01 3.307202e+00 moveto +6.218475e+01 3.492702e+00 lineto +6.238148e+01 3.450108e+00 lineto +5.978279e+01 3.222337e+00 lineto +5.939082e+01 3.307202e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.663935e+01 3.444906e+00 moveto +5.939082e+01 3.307202e+00 lineto +5.978279e+01 3.222337e+00 lineto +5.722359e+01 3.318412e+00 lineto +5.663935e+01 3.444906e+00 lineto +closepath +gsave +4.956325e-01 4.956325e-01 4.956325e-01 setrgbcolor +fill +grestore +newpath +5.663935e+01 3.444906e+00 moveto +5.939082e+01 3.307202e+00 lineto +5.978279e+01 3.222337e+00 lineto +5.722359e+01 3.318412e+00 lineto +5.663935e+01 3.444906e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.395117e+01 3.90477e+00 moveto +5.663935e+01 3.444906e+00 lineto +5.722359e+01 3.318412e+00 lineto +5.472326e+01 3.737606e+00 lineto +5.395117e+01 3.90477e+00 lineto +closepath +gsave +4.920642e-01 4.920642e-01 4.920642e-01 setrgbcolor +fill +grestore +newpath +5.395117e+01 3.90477e+00 moveto +5.663935e+01 3.444906e+00 lineto +5.722359e+01 3.318412e+00 lineto +5.472326e+01 3.737606e+00 lineto +5.395117e+01 3.90477e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.034405e+01 8.868904e+01 moveto +6.754717e+01 8.847273e+01 lineto +6.736917e+01 8.851127e+01 lineto +6.997061e+01 8.87699e+01 lineto +7.034405e+01 8.868904e+01 lineto +closepath +gsave +4.991471e-01 4.991471e-01 4.991471e-01 setrgbcolor +fill +grestore +newpath +7.034405e+01 8.868904e+01 moveto +6.754717e+01 8.847273e+01 lineto +6.736917e+01 8.851127e+01 lineto +6.997061e+01 8.87699e+01 lineto +7.034405e+01 8.868904e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.310048e+01 8.858218e+01 moveto +7.034405e+01 8.868904e+01 lineto +6.997061e+01 8.87699e+01 lineto +7.253442e+01 8.870473e+01 lineto +7.310048e+01 8.858218e+01 lineto +closepath +gsave +4.95956e-01 4.95956e-01 4.95956e-01 setrgbcolor +fill +grestore +newpath +7.310048e+01 8.858218e+01 moveto +7.034405e+01 8.868904e+01 lineto +6.997061e+01 8.87699e+01 lineto +7.253442e+01 8.870473e+01 lineto +7.310048e+01 8.858218e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.579558e+01 8.815294e+01 moveto +7.310048e+01 8.858218e+01 lineto +7.253442e+01 8.870473e+01 lineto +7.504119e+01 8.831628e+01 lineto +7.579558e+01 8.815294e+01 lineto +closepath +gsave +4.92418e-01 4.92418e-01 4.92418e-01 setrgbcolor +fill +grestore +newpath +7.579558e+01 8.815294e+01 moveto +7.310048e+01 8.858218e+01 lineto +7.253442e+01 8.870473e+01 lineto +7.504119e+01 8.831628e+01 lineto +7.579558e+01 8.815294e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.238148e+01 3.450108e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.259435e+01 3.411885e+00 lineto +6.238148e+01 3.450108e+00 lineto +closepath +gsave +5.009107e-01 5.009107e-01 5.009107e-01 setrgbcolor +fill +grestore +newpath +6.238148e+01 3.450108e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.259435e+01 3.411885e+00 lineto +6.238148e+01 3.450108e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.978279e+01 3.222337e+00 moveto +6.238148e+01 3.450108e+00 lineto +6.259435e+01 3.411885e+00 lineto +6.020692e+01 3.14618e+00 lineto +5.978279e+01 3.222337e+00 lineto +closepath +gsave +4.965794e-01 4.965794e-01 4.965794e-01 setrgbcolor +fill +grestore +newpath +5.978279e+01 3.222337e+00 moveto +6.238148e+01 3.450108e+00 lineto +6.259435e+01 3.411885e+00 lineto +6.020692e+01 3.14618e+00 lineto +5.978279e+01 3.222337e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.722359e+01 3.318412e+00 moveto +5.978279e+01 3.222337e+00 lineto +6.020692e+01 3.14618e+00 lineto +5.785577e+01 3.204898e+00 lineto +5.722359e+01 3.318412e+00 lineto +closepath +gsave +4.919545e-01 4.919545e-01 4.919545e-01 setrgbcolor +fill +grestore +newpath +5.722359e+01 3.318412e+00 moveto +5.978279e+01 3.222337e+00 lineto +6.020692e+01 3.14618e+00 lineto +5.785577e+01 3.204898e+00 lineto +5.722359e+01 3.318412e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.472326e+01 3.737606e+00 moveto +5.722359e+01 3.318412e+00 lineto +5.785577e+01 3.204898e+00 lineto +5.555871e+01 3.587594e+00 lineto +5.472326e+01 3.737606e+00 lineto +closepath +gsave +4.871086e-01 4.871086e-01 4.871086e-01 setrgbcolor +fill +grestore +newpath +5.472326e+01 3.737606e+00 moveto +5.722359e+01 3.318412e+00 lineto +5.785577e+01 3.204898e+00 lineto +5.555871e+01 3.587594e+00 lineto +5.472326e+01 3.737606e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.997061e+01 8.87699e+01 moveto +6.736917e+01 8.851127e+01 lineto +6.717657e+01 8.854585e+01 lineto +6.956652e+01 8.884245e+01 lineto +6.997061e+01 8.87699e+01 lineto +closepath +gsave +4.970066e-01 4.970066e-01 4.970066e-01 setrgbcolor +fill +grestore +newpath +6.997061e+01 8.87699e+01 moveto +6.736917e+01 8.851127e+01 lineto +6.717657e+01 8.854585e+01 lineto +6.956652e+01 8.884245e+01 lineto +6.997061e+01 8.87699e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.253442e+01 8.870473e+01 moveto +6.997061e+01 8.87699e+01 lineto +6.956652e+01 8.884245e+01 lineto +7.192191e+01 8.881471e+01 lineto +7.253442e+01 8.870473e+01 lineto +closepath +gsave +4.924066e-01 4.924066e-01 4.924066e-01 setrgbcolor +fill +grestore +newpath +7.253442e+01 8.870473e+01 moveto +6.997061e+01 8.87699e+01 lineto +6.956652e+01 8.884245e+01 lineto +7.192191e+01 8.881471e+01 lineto +7.253442e+01 8.870473e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.504119e+01 8.831628e+01 moveto +7.253442e+01 8.870473e+01 lineto +7.192191e+01 8.881471e+01 lineto +7.422489e+01 8.846285e+01 lineto +7.504119e+01 8.831628e+01 lineto +closepath +gsave +4.875786e-01 4.875786e-01 4.875786e-01 setrgbcolor +fill +grestore +newpath +7.504119e+01 8.831628e+01 moveto +7.253442e+01 8.870473e+01 lineto +7.192191e+01 8.881471e+01 lineto +7.422489e+01 8.846285e+01 lineto +7.504119e+01 8.831628e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.259435e+01 3.411885e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.282206e+01 3.378268e+00 lineto +6.259435e+01 3.411885e+00 lineto +closepath +gsave +5.001464e-01 5.001464e-01 5.001464e-01 setrgbcolor +fill +grestore +newpath +6.259435e+01 3.411885e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.282206e+01 3.378268e+00 lineto +6.259435e+01 3.411885e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.020692e+01 3.14618e+00 moveto +6.259435e+01 3.411885e+00 lineto +6.282206e+01 3.378268e+00 lineto +6.06606e+01 3.079201e+00 lineto +6.020692e+01 3.14618e+00 lineto +closepath +gsave +4.943697e-01 4.943697e-01 4.943697e-01 setrgbcolor +fill +grestore +newpath +6.020692e+01 3.14618e+00 moveto +6.259435e+01 3.411885e+00 lineto +6.282206e+01 3.378268e+00 lineto +6.06606e+01 3.079201e+00 lineto +6.020692e+01 3.14618e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.785577e+01 3.204898e+00 moveto +6.020692e+01 3.14618e+00 lineto +6.06606e+01 3.079201e+00 lineto +5.8532e+01 3.105063e+00 lineto +5.785577e+01 3.204898e+00 lineto +closepath +gsave +4.884269e-01 4.884269e-01 4.884269e-01 setrgbcolor +fill +grestore +newpath +5.785577e+01 3.204898e+00 moveto +6.020692e+01 3.14618e+00 lineto +6.06606e+01 3.079201e+00 lineto +5.8532e+01 3.105063e+00 lineto +5.785577e+01 3.204898e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.956652e+01 8.884245e+01 moveto +6.717657e+01 8.854585e+01 lineto +6.697055e+01 8.857627e+01 lineto +6.913429e+01 8.890627e+01 lineto +6.956652e+01 8.884245e+01 lineto +closepath +gsave +4.949296e-01 4.949296e-01 4.949296e-01 setrgbcolor +fill +grestore +newpath +6.956652e+01 8.884245e+01 moveto +6.717657e+01 8.854585e+01 lineto +6.697055e+01 8.857627e+01 lineto +6.913429e+01 8.890627e+01 lineto +6.956652e+01 8.884245e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.192191e+01 8.881471e+01 moveto +6.956652e+01 8.884245e+01 lineto +6.913429e+01 8.890627e+01 lineto +7.126672e+01 8.891144e+01 lineto +7.192191e+01 8.881471e+01 lineto +closepath +gsave +4.889988e-01 4.889988e-01 4.889988e-01 setrgbcolor +fill +grestore +newpath +7.192191e+01 8.881471e+01 moveto +6.956652e+01 8.884245e+01 lineto +6.913429e+01 8.890627e+01 lineto +7.126672e+01 8.891144e+01 lineto +7.192191e+01 8.881471e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.282206e+01 3.378268e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.306319e+01 3.349464e+00 lineto +6.282206e+01 3.378268e+00 lineto +closepath +gsave +4.994026e-01 4.994026e-01 4.994026e-01 setrgbcolor +fill +grestore +newpath +6.282206e+01 3.378268e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.306319e+01 3.349464e+00 lineto +6.282206e+01 3.378268e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.06606e+01 3.079201e+00 moveto +6.282206e+01 3.378268e+00 lineto +6.306319e+01 3.349464e+00 lineto +6.114104e+01 3.021811e+00 lineto +6.06606e+01 3.079201e+00 lineto +closepath +gsave +4.922413e-01 4.922413e-01 4.922413e-01 setrgbcolor +fill +grestore +newpath +6.06606e+01 3.079201e+00 moveto +6.282206e+01 3.378268e+00 lineto +6.306319e+01 3.349464e+00 lineto +6.114104e+01 3.021811e+00 lineto +6.06606e+01 3.079201e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.8532e+01 3.105063e+00 moveto +6.06606e+01 3.079201e+00 lineto +6.114104e+01 3.021811e+00 lineto +5.924811e+01 3.019522e+00 lineto +5.8532e+01 3.105063e+00 lineto +closepath +gsave +4.850651e-01 4.850651e-01 4.850651e-01 setrgbcolor +fill +grestore +newpath +5.8532e+01 3.105063e+00 moveto +6.06606e+01 3.079201e+00 lineto +6.114104e+01 3.021811e+00 lineto +5.924811e+01 3.019522e+00 lineto +5.8532e+01 3.105063e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.913429e+01 8.890627e+01 moveto +6.697055e+01 8.857627e+01 lineto +6.675238e+01 8.860233e+01 lineto +6.867656e+01 8.896094e+01 lineto +6.913429e+01 8.890627e+01 lineto +closepath +gsave +4.92927e-01 4.92927e-01 4.92927e-01 setrgbcolor +fill +grestore +newpath +6.913429e+01 8.890627e+01 moveto +6.697055e+01 8.857627e+01 lineto +6.675238e+01 8.860233e+01 lineto +6.867656e+01 8.896094e+01 lineto +6.913429e+01 8.890627e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.126672e+01 8.891144e+01 moveto +6.913429e+01 8.890627e+01 lineto +6.867656e+01 8.896094e+01 lineto +7.05729e+01 8.899432e+01 lineto +7.126672e+01 8.891144e+01 lineto +closepath +gsave +4.857477e-01 4.857477e-01 4.857477e-01 setrgbcolor +fill +grestore +newpath +7.126672e+01 8.891144e+01 moveto +6.913429e+01 8.890627e+01 lineto +6.867656e+01 8.896094e+01 lineto +7.05729e+01 8.899432e+01 lineto +7.126672e+01 8.891144e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.306319e+01 3.349464e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.331626e+01 3.325651e+00 lineto +6.306319e+01 3.349464e+00 lineto +closepath +gsave +4.986836e-01 4.986836e-01 4.986836e-01 setrgbcolor +fill +grestore +newpath +6.306319e+01 3.349464e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.331626e+01 3.325651e+00 lineto +6.306319e+01 3.349464e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.114104e+01 3.021811e+00 moveto +6.306319e+01 3.349464e+00 lineto +6.331626e+01 3.325651e+00 lineto +6.164527e+01 2.974366e+00 lineto +6.114104e+01 3.021811e+00 lineto +closepath +gsave +4.902045e-01 4.902045e-01 4.902045e-01 setrgbcolor +fill +grestore +newpath +6.114104e+01 3.021811e+00 moveto +6.306319e+01 3.349464e+00 lineto +6.331626e+01 3.325651e+00 lineto +6.164527e+01 2.974366e+00 lineto +6.114104e+01 3.021811e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.924811e+01 3.019522e+00 moveto +6.114104e+01 3.021811e+00 lineto +6.164527e+01 2.974366e+00 lineto +5.999967e+01 2.948803e+00 lineto +5.924811e+01 3.019522e+00 lineto +closepath +gsave +4.818819e-01 4.818819e-01 4.818819e-01 setrgbcolor +fill +grestore +newpath +5.924811e+01 3.019522e+00 moveto +6.114104e+01 3.021811e+00 lineto +6.164527e+01 2.974366e+00 lineto +5.999967e+01 2.948803e+00 lineto +5.924811e+01 3.019522e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.867656e+01 8.896094e+01 moveto +6.675238e+01 8.860233e+01 lineto +6.65234e+01 8.862388e+01 lineto +6.819616e+01 8.900615e+01 lineto +6.867656e+01 8.896094e+01 lineto +closepath +gsave +4.910088e-01 4.910088e-01 4.910088e-01 setrgbcolor +fill +grestore +newpath +6.867656e+01 8.896094e+01 moveto +6.675238e+01 8.860233e+01 lineto +6.65234e+01 8.862388e+01 lineto +6.819616e+01 8.900615e+01 lineto +6.867656e+01 8.896094e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.05729e+01 8.899432e+01 moveto +6.867656e+01 8.896094e+01 lineto +6.819616e+01 8.900615e+01 lineto +6.984472e+01 8.906284e+01 lineto +7.05729e+01 8.899432e+01 lineto +closepath +gsave +4.826663e-01 4.826663e-01 4.826663e-01 setrgbcolor +fill +grestore +newpath +7.05729e+01 8.899432e+01 moveto +6.867656e+01 8.896094e+01 lineto +6.819616e+01 8.900615e+01 lineto +6.984472e+01 8.906284e+01 lineto +7.05729e+01 8.899432e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.331626e+01 3.325651e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.357972e+01 3.306976e+00 lineto +6.331626e+01 3.325651e+00 lineto +closepath +gsave +4.979935e-01 4.979935e-01 4.979935e-01 setrgbcolor +fill +grestore +newpath +6.331626e+01 3.325651e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.357972e+01 3.306976e+00 lineto +6.331626e+01 3.325651e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.164527e+01 2.974366e+00 moveto +6.331626e+01 3.325651e+00 lineto +6.357972e+01 3.306976e+00 lineto +6.217018e+01 2.937157e+00 lineto +6.164527e+01 2.974366e+00 lineto +closepath +gsave +4.882689e-01 4.882689e-01 4.882689e-01 setrgbcolor +fill +grestore +newpath +6.164527e+01 2.974366e+00 moveto +6.331626e+01 3.325651e+00 lineto +6.357972e+01 3.306976e+00 lineto +6.217018e+01 2.937157e+00 lineto +6.164527e+01 2.974366e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.999967e+01 2.948803e+00 moveto +6.164527e+01 2.974366e+00 lineto +6.217018e+01 2.937157e+00 lineto +6.078207e+01 2.893343e+00 lineto +5.999967e+01 2.948803e+00 lineto +closepath +gsave +4.788883e-01 4.788883e-01 4.788883e-01 setrgbcolor +fill +grestore +newpath +5.999967e+01 2.948803e+00 moveto +6.164527e+01 2.974366e+00 lineto +6.217018e+01 2.937157e+00 lineto +6.078207e+01 2.893343e+00 lineto +5.999967e+01 2.948803e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.819616e+01 8.900615e+01 moveto +6.65234e+01 8.862388e+01 lineto +6.628504e+01 8.864077e+01 lineto +6.769606e+01 8.90416e+01 lineto +6.819616e+01 8.900615e+01 lineto +closepath +gsave +4.89184e-01 4.89184e-01 4.89184e-01 setrgbcolor +fill +grestore +newpath +6.819616e+01 8.900615e+01 moveto +6.65234e+01 8.862388e+01 lineto +6.628504e+01 8.864077e+01 lineto +6.769606e+01 8.90416e+01 lineto +6.819616e+01 8.900615e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.984472e+01 8.906284e+01 moveto +6.819616e+01 8.900615e+01 lineto +6.769606e+01 8.90416e+01 lineto +6.908667e+01 8.911657e+01 lineto +6.984472e+01 8.906284e+01 lineto +closepath +gsave +4.797654e-01 4.797654e-01 4.797654e-01 setrgbcolor +fill +grestore +newpath +6.984472e+01 8.906284e+01 moveto +6.819616e+01 8.900615e+01 lineto +6.769606e+01 8.90416e+01 lineto +6.908667e+01 8.911657e+01 lineto +6.984472e+01 8.906284e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.357972e+01 3.306976e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.385193e+01 3.293554e+00 lineto +6.357972e+01 3.306976e+00 lineto +closepath +gsave +4.973361e-01 4.973361e-01 4.973361e-01 setrgbcolor +fill +grestore +newpath +6.357972e+01 3.306976e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.385193e+01 3.293554e+00 lineto +6.357972e+01 3.306976e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.217018e+01 2.937157e+00 moveto +6.357972e+01 3.306976e+00 lineto +6.385193e+01 3.293554e+00 lineto +6.271254e+01 2.910414e+00 lineto +6.217018e+01 2.937157e+00 lineto +closepath +gsave +4.864427e-01 4.864427e-01 4.864427e-01 setrgbcolor +fill +grestore +newpath +6.217018e+01 2.937157e+00 moveto +6.357972e+01 3.306976e+00 lineto +6.385193e+01 3.293554e+00 lineto +6.271254e+01 2.910414e+00 lineto +6.217018e+01 2.937157e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.078207e+01 2.893343e+00 moveto +6.217018e+01 2.937157e+00 lineto +6.271254e+01 2.910414e+00 lineto +6.159048e+01 2.853482e+00 lineto +6.078207e+01 2.893343e+00 lineto +closepath +gsave +4.760927e-01 4.760927e-01 4.760927e-01 setrgbcolor +fill +grestore +newpath +6.078207e+01 2.893343e+00 moveto +6.217018e+01 2.937157e+00 lineto +6.271254e+01 2.910414e+00 lineto +6.159048e+01 2.853482e+00 lineto +6.078207e+01 2.893343e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.769606e+01 8.90416e+01 moveto +6.628504e+01 8.864077e+01 lineto +6.603875e+01 8.865292e+01 lineto +6.717934e+01 8.906707e+01 lineto +6.769606e+01 8.90416e+01 lineto +closepath +gsave +4.874608e-01 4.874608e-01 4.874608e-01 setrgbcolor +fill +grestore +newpath +6.769606e+01 8.90416e+01 moveto +6.628504e+01 8.864077e+01 lineto +6.603875e+01 8.865292e+01 lineto +6.717934e+01 8.906707e+01 lineto +6.769606e+01 8.90416e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.908667e+01 8.911657e+01 moveto +6.769606e+01 8.90416e+01 lineto +6.717934e+01 8.906707e+01 lineto +6.830342e+01 8.91552e+01 lineto +6.908667e+01 8.911657e+01 lineto +closepath +gsave +4.770537e-01 4.770537e-01 4.770537e-01 setrgbcolor +fill +grestore +newpath +6.908667e+01 8.911657e+01 moveto +6.769606e+01 8.90416e+01 lineto +6.717934e+01 8.906707e+01 lineto +6.830342e+01 8.91552e+01 lineto +6.908667e+01 8.911657e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.385193e+01 3.293554e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.413121e+01 3.285467e+00 lineto +6.385193e+01 3.293554e+00 lineto +closepath +gsave +4.96715e-01 4.96715e-01 4.96715e-01 setrgbcolor +fill +grestore +newpath +6.385193e+01 3.293554e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.413121e+01 3.285467e+00 lineto +6.385193e+01 3.293554e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.271254e+01 2.910414e+00 moveto +6.385193e+01 3.293554e+00 lineto +6.413121e+01 3.285467e+00 lineto +6.3269e+01 2.894302e+00 lineto +6.271254e+01 2.910414e+00 lineto +closepath +gsave +4.847334e-01 4.847334e-01 4.847334e-01 setrgbcolor +fill +grestore +newpath +6.271254e+01 2.910414e+00 moveto +6.385193e+01 3.293554e+00 lineto +6.413121e+01 3.285467e+00 lineto +6.3269e+01 2.894302e+00 lineto +6.271254e+01 2.910414e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.159048e+01 2.853482e+00 moveto +6.271254e+01 2.910414e+00 lineto +6.3269e+01 2.894302e+00 lineto +6.24199e+01 2.829466e+00 lineto +6.159048e+01 2.853482e+00 lineto +closepath +gsave +4.735019e-01 4.735019e-01 4.735019e-01 setrgbcolor +fill +grestore +newpath +6.159048e+01 2.853482e+00 moveto +6.271254e+01 2.910414e+00 lineto +6.3269e+01 2.894302e+00 lineto +6.24199e+01 2.829466e+00 lineto +6.159048e+01 2.853482e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.717934e+01 8.906707e+01 moveto +6.603875e+01 8.865292e+01 lineto +6.578606e+01 8.866023e+01 lineto +6.664918e+01 8.908242e+01 lineto +6.717934e+01 8.906707e+01 lineto +closepath +gsave +4.858464e-01 4.858464e-01 4.858464e-01 setrgbcolor +fill +grestore +newpath +6.717934e+01 8.906707e+01 moveto +6.603875e+01 8.865292e+01 lineto +6.578606e+01 8.866023e+01 lineto +6.664918e+01 8.908242e+01 lineto +6.717934e+01 8.906707e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.830342e+01 8.91552e+01 moveto +6.717934e+01 8.906707e+01 lineto +6.664918e+01 8.908242e+01 lineto +6.749981e+01 8.917846e+01 lineto +6.830342e+01 8.91552e+01 lineto +closepath +gsave +4.745382e-01 4.745382e-01 4.745382e-01 setrgbcolor +fill +grestore +newpath +6.830342e+01 8.91552e+01 moveto +6.717934e+01 8.906707e+01 lineto +6.664918e+01 8.908242e+01 lineto +6.749981e+01 8.917846e+01 lineto +6.830342e+01 8.91552e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.413121e+01 3.285467e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.441586e+01 3.282766e+00 lineto +6.413121e+01 3.285467e+00 lineto +closepath +gsave +4.961337e-01 4.961337e-01 4.961337e-01 setrgbcolor +fill +grestore +newpath +6.413121e+01 3.285467e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.441586e+01 3.282766e+00 lineto +6.413121e+01 3.285467e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.3269e+01 2.894302e+00 moveto +6.413121e+01 3.285467e+00 lineto +6.441586e+01 3.282766e+00 lineto +6.383614e+01 2.888921e+00 lineto +6.3269e+01 2.894302e+00 lineto +closepath +gsave +4.831474e-01 4.831474e-01 4.831474e-01 setrgbcolor +fill +grestore +newpath +6.3269e+01 2.894302e+00 moveto +6.413121e+01 3.285467e+00 lineto +6.441586e+01 3.282766e+00 lineto +6.383614e+01 2.888921e+00 lineto +6.3269e+01 2.894302e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.24199e+01 2.829466e+00 moveto +6.3269e+01 2.894302e+00 lineto +6.383614e+01 2.888921e+00 lineto +6.326523e+01 2.821445e+00 lineto +6.24199e+01 2.829466e+00 lineto +closepath +gsave +4.711211e-01 4.711211e-01 4.711211e-01 setrgbcolor +fill +grestore +newpath +6.24199e+01 2.829466e+00 moveto +6.3269e+01 2.894302e+00 lineto +6.383614e+01 2.888921e+00 lineto +6.326523e+01 2.821445e+00 lineto +6.24199e+01 2.829466e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.664918e+01 8.908242e+01 moveto +6.578606e+01 8.866023e+01 lineto +6.552852e+01 8.866268e+01 lineto +6.610885e+01 8.908755e+01 lineto +6.664918e+01 8.908242e+01 lineto +closepath +gsave +4.843473e-01 4.843473e-01 4.843473e-01 setrgbcolor +fill +grestore +newpath +6.664918e+01 8.908242e+01 moveto +6.578606e+01 8.866023e+01 lineto +6.552852e+01 8.866268e+01 lineto +6.610885e+01 8.908755e+01 lineto +6.664918e+01 8.908242e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.749981e+01 8.917846e+01 moveto +6.664918e+01 8.908242e+01 lineto +6.610885e+01 8.908755e+01 lineto +6.668079e+01 8.918624e+01 lineto +6.749981e+01 8.917846e+01 lineto +closepath +gsave +4.722243e-01 4.722243e-01 4.722243e-01 setrgbcolor +fill +grestore +newpath +6.749981e+01 8.917846e+01 moveto +6.664918e+01 8.908242e+01 lineto +6.610885e+01 8.908755e+01 lineto +6.668079e+01 8.918624e+01 lineto +6.749981e+01 8.917846e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.441586e+01 3.282766e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.47041e+01 3.285467e+00 lineto +6.441586e+01 3.282766e+00 lineto +closepath +gsave +4.955952e-01 4.955952e-01 4.955952e-01 setrgbcolor +fill +grestore +newpath +6.441586e+01 3.282766e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.47041e+01 3.285467e+00 lineto +6.441586e+01 3.282766e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.383614e+01 2.888921e+00 moveto +6.441586e+01 3.282766e+00 lineto +6.47041e+01 3.285467e+00 lineto +6.441045e+01 2.894302e+00 lineto +6.383614e+01 2.888921e+00 lineto +closepath +gsave +4.816906e-01 4.816906e-01 4.816906e-01 setrgbcolor +fill +grestore +newpath +6.383614e+01 2.888921e+00 moveto +6.441586e+01 3.282766e+00 lineto +6.47041e+01 3.285467e+00 lineto +6.441045e+01 2.894302e+00 lineto +6.383614e+01 2.888921e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.326523e+01 2.821445e+00 moveto +6.383614e+01 2.888921e+00 lineto +6.441045e+01 2.894302e+00 lineto +6.412126e+01 2.829466e+00 lineto +6.326523e+01 2.821445e+00 lineto +closepath +gsave +4.689538e-01 4.689538e-01 4.689538e-01 setrgbcolor +fill +grestore +newpath +6.326523e+01 2.821445e+00 moveto +6.383614e+01 2.888921e+00 lineto +6.441045e+01 2.894302e+00 lineto +6.412126e+01 2.829466e+00 lineto +6.326523e+01 2.821445e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.610885e+01 8.908755e+01 moveto +6.552852e+01 8.866268e+01 lineto +6.526772e+01 8.866023e+01 lineto +6.556169e+01 8.908242e+01 lineto +6.610885e+01 8.908755e+01 lineto +closepath +gsave +4.829689e-01 4.829689e-01 4.829689e-01 setrgbcolor +fill +grestore +newpath +6.610885e+01 8.908755e+01 moveto +6.552852e+01 8.866268e+01 lineto +6.526772e+01 8.866023e+01 lineto +6.556169e+01 8.908242e+01 lineto +6.610885e+01 8.908755e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.668079e+01 8.918624e+01 moveto +6.610885e+01 8.908755e+01 lineto +6.556169e+01 8.908242e+01 lineto +6.58514e+01 8.917846e+01 lineto +6.668079e+01 8.918624e+01 lineto +closepath +gsave +4.70116e-01 4.70116e-01 4.70116e-01 setrgbcolor +fill +grestore +newpath +6.668079e+01 8.918624e+01 moveto +6.610885e+01 8.908755e+01 lineto +6.556169e+01 8.908242e+01 lineto +6.58514e+01 8.917846e+01 lineto +6.668079e+01 8.918624e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.47041e+01 3.285467e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.499417e+01 3.293554e+00 lineto +6.47041e+01 3.285467e+00 lineto +closepath +gsave +4.951024e-01 4.951024e-01 4.951024e-01 setrgbcolor +fill +grestore +newpath +6.47041e+01 3.285467e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.499417e+01 3.293554e+00 lineto +6.47041e+01 3.285467e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.441045e+01 2.894302e+00 moveto +6.47041e+01 3.285467e+00 lineto +6.499417e+01 3.293554e+00 lineto +6.498839e+01 2.910414e+00 lineto +6.441045e+01 2.894302e+00 lineto +closepath +gsave +4.803676e-01 4.803676e-01 4.803676e-01 setrgbcolor +fill +grestore +newpath +6.441045e+01 2.894302e+00 moveto +6.47041e+01 3.285467e+00 lineto +6.499417e+01 3.293554e+00 lineto +6.498839e+01 2.910414e+00 lineto +6.441045e+01 2.894302e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.412126e+01 2.829466e+00 moveto +6.441045e+01 2.894302e+00 lineto +6.498839e+01 2.910414e+00 lineto +6.49827e+01 2.853482e+00 lineto +6.412126e+01 2.829466e+00 lineto +closepath +gsave +4.670024e-01 4.670024e-01 4.670024e-01 setrgbcolor +fill +grestore +newpath +6.412126e+01 2.829466e+00 moveto +6.441045e+01 2.894302e+00 lineto +6.498839e+01 2.910414e+00 lineto +6.49827e+01 2.853482e+00 lineto +6.412126e+01 2.829466e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.556169e+01 8.908242e+01 moveto +6.526772e+01 8.866023e+01 lineto +6.500527e+01 8.865292e+01 lineto +6.501106e+01 8.906707e+01 lineto +6.556169e+01 8.908242e+01 lineto +closepath +gsave +4.817163e-01 4.817163e-01 4.817163e-01 setrgbcolor +fill +grestore +newpath +6.556169e+01 8.908242e+01 moveto +6.526772e+01 8.866023e+01 lineto +6.500527e+01 8.865292e+01 lineto +6.501106e+01 8.906707e+01 lineto +6.556169e+01 8.908242e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.58514e+01 8.917846e+01 moveto +6.556169e+01 8.908242e+01 lineto +6.501106e+01 8.906707e+01 lineto +6.501676e+01 8.91552e+01 lineto +6.58514e+01 8.917846e+01 lineto +closepath +gsave +4.682162e-01 4.682162e-01 4.682162e-01 setrgbcolor +fill +grestore +newpath +6.58514e+01 8.917846e+01 moveto +6.556169e+01 8.908242e+01 lineto +6.501106e+01 8.906707e+01 lineto +6.501676e+01 8.91552e+01 lineto +6.58514e+01 8.917846e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.499417e+01 3.293554e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.528428e+01 3.306976e+00 lineto +6.499417e+01 3.293554e+00 lineto +closepath +gsave +4.946579e-01 4.946579e-01 4.946579e-01 setrgbcolor +fill +grestore +newpath +6.499417e+01 3.293554e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.528428e+01 3.306976e+00 lineto +6.499417e+01 3.293554e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.498839e+01 2.910414e+00 moveto +6.499417e+01 3.293554e+00 lineto +6.528428e+01 3.306976e+00 lineto +6.556641e+01 2.937157e+00 lineto +6.498839e+01 2.910414e+00 lineto +closepath +gsave +4.791826e-01 4.791826e-01 4.791826e-01 setrgbcolor +fill +grestore +newpath +6.498839e+01 2.910414e+00 moveto +6.499417e+01 3.293554e+00 lineto +6.528428e+01 3.306976e+00 lineto +6.556641e+01 2.937157e+00 lineto +6.498839e+01 2.910414e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.49827e+01 2.853482e+00 moveto +6.498839e+01 2.910414e+00 lineto +6.556641e+01 2.937157e+00 lineto +6.584425e+01 2.893343e+00 lineto +6.49827e+01 2.853482e+00 lineto +closepath +gsave +4.652683e-01 4.652683e-01 4.652683e-01 setrgbcolor +fill +grestore +newpath +6.49827e+01 2.853482e+00 moveto +6.498839e+01 2.910414e+00 lineto +6.556641e+01 2.937157e+00 lineto +6.584425e+01 2.893343e+00 lineto +6.49827e+01 2.853482e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.501106e+01 8.906707e+01 moveto +6.500527e+01 8.865292e+01 lineto +6.474279e+01 8.864077e+01 lineto +6.446036e+01 8.90416e+01 lineto +6.501106e+01 8.906707e+01 lineto +closepath +gsave +4.805935e-01 4.805935e-01 4.805935e-01 setrgbcolor +fill +grestore +newpath +6.501106e+01 8.906707e+01 moveto +6.500527e+01 8.865292e+01 lineto +6.474279e+01 8.864077e+01 lineto +6.446036e+01 8.90416e+01 lineto +6.501106e+01 8.906707e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.501676e+01 8.91552e+01 moveto +6.501106e+01 8.906707e+01 lineto +6.446036e+01 8.90416e+01 lineto +6.418202e+01 8.911657e+01 lineto +6.501676e+01 8.91552e+01 lineto +closepath +gsave +4.665266e-01 4.665266e-01 4.665266e-01 setrgbcolor +fill +grestore +newpath +6.501676e+01 8.91552e+01 moveto +6.501106e+01 8.906707e+01 lineto +6.446036e+01 8.90416e+01 lineto +6.418202e+01 8.911657e+01 lineto +6.501676e+01 8.91552e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.528428e+01 3.306976e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.557263e+01 3.325651e+00 lineto +6.528428e+01 3.306976e+00 lineto +closepath +gsave +4.942639e-01 4.942639e-01 4.942639e-01 setrgbcolor +fill +grestore +newpath +6.528428e+01 3.306976e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.557263e+01 3.325651e+00 lineto +6.528428e+01 3.306976e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.556641e+01 2.937157e+00 moveto +6.528428e+01 3.306976e+00 lineto +6.557263e+01 3.325651e+00 lineto +6.614093e+01 2.974366e+00 lineto +6.556641e+01 2.937157e+00 lineto +closepath +gsave +4.78139e-01 4.78139e-01 4.78139e-01 setrgbcolor +fill +grestore +newpath +6.556641e+01 2.937157e+00 moveto +6.528428e+01 3.306976e+00 lineto +6.557263e+01 3.325651e+00 lineto +6.614093e+01 2.974366e+00 lineto +6.556641e+01 2.937157e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.584425e+01 2.893343e+00 moveto +6.556641e+01 2.937157e+00 lineto +6.614093e+01 2.974366e+00 lineto +6.67006e+01 2.948803e+00 lineto +6.584425e+01 2.893343e+00 lineto +closepath +gsave +4.637522e-01 4.637522e-01 4.637522e-01 setrgbcolor +fill +grestore +newpath +6.584425e+01 2.893343e+00 moveto +6.556641e+01 2.937157e+00 lineto +6.614093e+01 2.974366e+00 lineto +6.67006e+01 2.948803e+00 lineto +6.584425e+01 2.893343e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.446036e+01 8.90416e+01 moveto +6.474279e+01 8.864077e+01 lineto +6.448189e+01 8.862388e+01 lineto +6.3913e+01 8.900615e+01 lineto +6.446036e+01 8.90416e+01 lineto +closepath +gsave +4.796041e-01 4.796041e-01 4.796041e-01 setrgbcolor +fill +grestore +newpath +6.446036e+01 8.90416e+01 moveto +6.474279e+01 8.864077e+01 lineto +6.448189e+01 8.862388e+01 lineto +6.3913e+01 8.900615e+01 lineto +6.446036e+01 8.90416e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.418202e+01 8.911657e+01 moveto +6.446036e+01 8.90416e+01 lineto +6.3913e+01 8.900615e+01 lineto +6.335233e+01 8.906284e+01 lineto +6.418202e+01 8.911657e+01 lineto +closepath +gsave +4.650483e-01 4.650483e-01 4.650483e-01 setrgbcolor +fill +grestore +newpath +6.418202e+01 8.911657e+01 moveto +6.446036e+01 8.90416e+01 lineto +6.3913e+01 8.900615e+01 lineto +6.335233e+01 8.906284e+01 lineto +6.418202e+01 8.911657e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.557263e+01 3.325651e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.585746e+01 3.349464e+00 lineto +6.557263e+01 3.325651e+00 lineto +closepath +gsave +4.939224e-01 4.939224e-01 4.939224e-01 setrgbcolor +fill +grestore +newpath +6.557263e+01 3.325651e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.585746e+01 3.349464e+00 lineto +6.557263e+01 3.325651e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.614093e+01 2.974366e+00 moveto +6.557263e+01 3.325651e+00 lineto +6.585746e+01 3.349464e+00 lineto +6.670842e+01 3.021811e+00 lineto +6.614093e+01 2.974366e+00 lineto +closepath +gsave +4.772398e-01 4.772398e-01 4.772398e-01 setrgbcolor +fill +grestore +newpath +6.614093e+01 2.974366e+00 moveto +6.557263e+01 3.325651e+00 lineto +6.585746e+01 3.349464e+00 lineto +6.670842e+01 3.021811e+00 lineto +6.614093e+01 2.974366e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.67006e+01 2.948803e+00 moveto +6.614093e+01 2.974366e+00 lineto +6.670842e+01 3.021811e+00 lineto +6.754646e+01 3.019522e+00 lineto +6.67006e+01 2.948803e+00 lineto +closepath +gsave +4.624541e-01 4.624541e-01 4.624541e-01 setrgbcolor +fill +grestore +newpath +6.67006e+01 2.948803e+00 moveto +6.614093e+01 2.974366e+00 lineto +6.670842e+01 3.021811e+00 lineto +6.754646e+01 3.019522e+00 lineto +6.67006e+01 2.948803e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.3913e+01 8.900615e+01 moveto +6.448189e+01 8.862388e+01 lineto +6.422419e+01 8.860233e+01 lineto +6.337233e+01 8.896094e+01 lineto +6.3913e+01 8.900615e+01 lineto +closepath +gsave +4.787511e-01 4.787511e-01 4.787511e-01 setrgbcolor +fill +grestore +newpath +6.3913e+01 8.900615e+01 moveto +6.448189e+01 8.862388e+01 lineto +6.422419e+01 8.860233e+01 lineto +6.337233e+01 8.896094e+01 lineto +6.3913e+01 8.900615e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.335233e+01 8.906284e+01 moveto +6.3913e+01 8.900615e+01 lineto +6.337233e+01 8.896094e+01 lineto +6.253279e+01 8.899432e+01 lineto +6.335233e+01 8.906284e+01 lineto +closepath +gsave +4.637818e-01 4.637818e-01 4.637818e-01 setrgbcolor +fill +grestore +newpath +6.335233e+01 8.906284e+01 moveto +6.3913e+01 8.900615e+01 lineto +6.337233e+01 8.896094e+01 lineto +6.253279e+01 8.899432e+01 lineto +6.335233e+01 8.906284e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.585746e+01 3.349464e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.613699e+01 3.378268e+00 lineto +6.585746e+01 3.349464e+00 lineto +closepath +gsave +4.936353e-01 4.936353e-01 4.936353e-01 setrgbcolor +fill +grestore +newpath +6.585746e+01 3.349464e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.613699e+01 3.378268e+00 lineto +6.585746e+01 3.349464e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.670842e+01 3.021811e+00 moveto +6.585746e+01 3.349464e+00 lineto +6.613699e+01 3.378268e+00 lineto +6.726538e+01 3.079201e+00 lineto +6.670842e+01 3.021811e+00 lineto +closepath +gsave +4.764871e-01 4.764871e-01 4.764871e-01 setrgbcolor +fill +grestore +newpath +6.670842e+01 3.021811e+00 moveto +6.585746e+01 3.349464e+00 lineto +6.613699e+01 3.378268e+00 lineto +6.726538e+01 3.079201e+00 lineto +6.670842e+01 3.021811e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.754646e+01 3.019522e+00 moveto +6.670842e+01 3.021811e+00 lineto +6.726538e+01 3.079201e+00 lineto +6.837662e+01 3.105063e+00 lineto +6.754646e+01 3.019522e+00 lineto +closepath +gsave +4.613737e-01 4.613737e-01 4.613737e-01 setrgbcolor +fill +grestore +newpath +6.754646e+01 3.019522e+00 moveto +6.670842e+01 3.021811e+00 lineto +6.726538e+01 3.079201e+00 lineto +6.837662e+01 3.105063e+00 lineto +6.754646e+01 3.019522e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.337233e+01 8.896094e+01 moveto +6.422419e+01 8.860233e+01 lineto +6.397128e+01 8.857627e+01 lineto +6.28417e+01 8.890627e+01 lineto +6.337233e+01 8.896094e+01 lineto +closepath +gsave +4.780368e-01 4.780368e-01 4.780368e-01 setrgbcolor +fill +grestore +newpath +6.337233e+01 8.896094e+01 moveto +6.422419e+01 8.860233e+01 lineto +6.397128e+01 8.857627e+01 lineto +6.28417e+01 8.890627e+01 lineto +6.337233e+01 8.896094e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.253279e+01 8.899432e+01 moveto +6.337233e+01 8.896094e+01 lineto +6.28417e+01 8.890627e+01 lineto +6.172846e+01 8.891144e+01 lineto +6.253279e+01 8.899432e+01 lineto +closepath +gsave +4.62727e-01 4.62727e-01 4.62727e-01 setrgbcolor +fill +grestore +newpath +6.253279e+01 8.899432e+01 moveto +6.337233e+01 8.896094e+01 lineto +6.28417e+01 8.890627e+01 lineto +6.172846e+01 8.891144e+01 lineto +6.253279e+01 8.899432e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.613699e+01 3.378268e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.640952e+01 3.411885e+00 lineto +6.613699e+01 3.378268e+00 lineto +closepath +gsave +4.934038e-01 4.934038e-01 4.934038e-01 setrgbcolor +fill +grestore +newpath +6.613699e+01 3.378268e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.640952e+01 3.411885e+00 lineto +6.613699e+01 3.378268e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.726538e+01 3.079201e+00 moveto +6.613699e+01 3.378268e+00 lineto +6.640952e+01 3.411885e+00 lineto +6.780837e+01 3.14618e+00 lineto +6.726538e+01 3.079201e+00 lineto +closepath +gsave +4.75883e-01 4.75883e-01 4.75883e-01 setrgbcolor +fill +grestore +newpath +6.726538e+01 3.079201e+00 moveto +6.613699e+01 3.378268e+00 lineto +6.640952e+01 3.411885e+00 lineto +6.780837e+01 3.14618e+00 lineto +6.726538e+01 3.079201e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.837662e+01 3.105063e+00 moveto +6.726538e+01 3.079201e+00 lineto +6.780837e+01 3.14618e+00 lineto +6.918596e+01 3.204898e+00 lineto +6.837662e+01 3.105063e+00 lineto +closepath +gsave +4.605104e-01 4.605104e-01 4.605104e-01 setrgbcolor +fill +grestore +newpath +6.837662e+01 3.105063e+00 moveto +6.726538e+01 3.079201e+00 lineto +6.780837e+01 3.14618e+00 lineto +6.918596e+01 3.204898e+00 lineto +6.837662e+01 3.105063e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.28417e+01 8.890627e+01 moveto +6.397128e+01 8.857627e+01 lineto +6.37247e+01 8.854585e+01 lineto +6.232437e+01 8.884245e+01 lineto +6.28417e+01 8.890627e+01 lineto +closepath +gsave +4.774631e-01 4.774631e-01 4.774631e-01 setrgbcolor +fill +grestore +newpath +6.28417e+01 8.890627e+01 moveto +6.397128e+01 8.857627e+01 lineto +6.37247e+01 8.854585e+01 lineto +6.232437e+01 8.884245e+01 lineto +6.28417e+01 8.890627e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.172846e+01 8.891144e+01 moveto +6.28417e+01 8.890627e+01 lineto +6.232437e+01 8.884245e+01 lineto +6.09443e+01 8.881471e+01 lineto +6.172846e+01 8.891144e+01 lineto +closepath +gsave +4.618838e-01 4.618838e-01 4.618838e-01 setrgbcolor +fill +grestore +newpath +6.172846e+01 8.891144e+01 moveto +6.28417e+01 8.890627e+01 lineto +6.232437e+01 8.884245e+01 lineto +6.09443e+01 8.881471e+01 lineto +6.172846e+01 8.891144e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.640952e+01 3.411885e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.667336e+01 3.450108e+00 lineto +6.640952e+01 3.411885e+00 lineto +closepath +gsave +4.932292e-01 4.932292e-01 4.932292e-01 setrgbcolor +fill +grestore +newpath +6.640952e+01 3.411885e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.667336e+01 3.450108e+00 lineto +6.640952e+01 3.411885e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.780837e+01 3.14618e+00 moveto +6.640952e+01 3.411885e+00 lineto +6.667336e+01 3.450108e+00 lineto +6.833405e+01 3.222337e+00 lineto +6.780837e+01 3.14618e+00 lineto +closepath +gsave +4.754287e-01 4.754287e-01 4.754287e-01 setrgbcolor +fill +grestore +newpath +6.780837e+01 3.14618e+00 moveto +6.640952e+01 3.411885e+00 lineto +6.667336e+01 3.450108e+00 lineto +6.833405e+01 3.222337e+00 lineto +6.780837e+01 3.14618e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.918596e+01 3.204898e+00 moveto +6.780837e+01 3.14618e+00 lineto +6.833405e+01 3.222337e+00 lineto +6.996949e+01 3.318412e+00 lineto +6.918596e+01 3.204898e+00 lineto +closepath +gsave +4.598636e-01 4.598636e-01 4.598636e-01 setrgbcolor +fill +grestore +newpath +6.918596e+01 3.204898e+00 moveto +6.780837e+01 3.14618e+00 lineto +6.833405e+01 3.222337e+00 lineto +6.996949e+01 3.318412e+00 lineto +6.918596e+01 3.204898e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.232437e+01 8.884245e+01 moveto +6.37247e+01 8.854585e+01 lineto +6.348599e+01 8.851127e+01 lineto +6.182355e+01 8.87699e+01 lineto +6.232437e+01 8.884245e+01 lineto +closepath +gsave +4.770316e-01 4.770316e-01 4.770316e-01 setrgbcolor +fill +grestore +newpath +6.232437e+01 8.884245e+01 moveto +6.37247e+01 8.854585e+01 lineto +6.348599e+01 8.851127e+01 lineto +6.182355e+01 8.87699e+01 lineto +6.232437e+01 8.884245e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.09443e+01 8.881471e+01 moveto +6.232437e+01 8.884245e+01 lineto +6.182355e+01 8.87699e+01 lineto +6.018515e+01 8.870473e+01 lineto +6.09443e+01 8.881471e+01 lineto +closepath +gsave +4.612519e-01 4.612519e-01 4.612519e-01 setrgbcolor +fill +grestore +newpath +6.09443e+01 8.881471e+01 moveto +6.232437e+01 8.884245e+01 lineto +6.182355e+01 8.87699e+01 lineto +6.018515e+01 8.870473e+01 lineto +6.09443e+01 8.881471e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.667336e+01 3.450108e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.692688e+01 3.492702e+00 lineto +6.667336e+01 3.450108e+00 lineto +closepath +gsave +4.931123e-01 4.931123e-01 4.931123e-01 setrgbcolor +fill +grestore +newpath +6.667336e+01 3.450108e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.692688e+01 3.492702e+00 lineto +6.667336e+01 3.450108e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.833405e+01 3.222337e+00 moveto +6.667336e+01 3.450108e+00 lineto +6.692688e+01 3.492702e+00 lineto +6.883917e+01 3.307202e+00 lineto +6.833405e+01 3.222337e+00 lineto +closepath +gsave +4.751252e-01 4.751252e-01 4.751252e-01 setrgbcolor +fill +grestore +newpath +6.833405e+01 3.222337e+00 moveto +6.667336e+01 3.450108e+00 lineto +6.692688e+01 3.492702e+00 lineto +6.883917e+01 3.307202e+00 lineto +6.833405e+01 3.222337e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.996949e+01 3.318412e+00 moveto +6.833405e+01 3.222337e+00 lineto +6.883917e+01 3.307202e+00 lineto +7.072239e+01 3.444906e+00 lineto +6.996949e+01 3.318412e+00 lineto +closepath +gsave +4.594328e-01 4.594328e-01 4.594328e-01 setrgbcolor +fill +grestore +newpath +6.996949e+01 3.318412e+00 moveto +6.833405e+01 3.222337e+00 lineto +6.883917e+01 3.307202e+00 lineto +7.072239e+01 3.444906e+00 lineto +6.996949e+01 3.318412e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.182355e+01 8.87699e+01 moveto +6.348599e+01 8.851127e+01 lineto +6.325661e+01 8.847273e+01 lineto +6.13423e+01 8.868904e+01 lineto +6.182355e+01 8.87699e+01 lineto +closepath +gsave +4.767434e-01 4.767434e-01 4.767434e-01 setrgbcolor +fill +grestore +newpath +6.182355e+01 8.87699e+01 moveto +6.348599e+01 8.851127e+01 lineto +6.325661e+01 8.847273e+01 lineto +6.13423e+01 8.868904e+01 lineto +6.182355e+01 8.87699e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.018515e+01 8.870473e+01 moveto +6.182355e+01 8.87699e+01 lineto +6.13423e+01 8.868904e+01 lineto +5.945568e+01 8.858218e+01 lineto +6.018515e+01 8.870473e+01 lineto +closepath +gsave +4.608308e-01 4.608308e-01 4.608308e-01 setrgbcolor +fill +grestore +newpath +6.018515e+01 8.870473e+01 moveto +6.182355e+01 8.87699e+01 lineto +6.13423e+01 8.868904e+01 lineto +5.945568e+01 8.858218e+01 lineto +6.018515e+01 8.870473e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.692688e+01 3.492702e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.716852e+01 3.539403e+00 lineto +6.692688e+01 3.492702e+00 lineto +closepath +gsave +4.930537e-01 4.930537e-01 4.930537e-01 setrgbcolor +fill +grestore +newpath +6.692688e+01 3.492702e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.716852e+01 3.539403e+00 lineto +6.692688e+01 3.492702e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.883917e+01 3.307202e+00 moveto +6.692688e+01 3.492702e+00 lineto +6.716852e+01 3.539403e+00 lineto +6.932062e+01 3.400251e+00 lineto +6.883917e+01 3.307202e+00 lineto +closepath +gsave +4.749734e-01 4.749734e-01 4.749734e-01 setrgbcolor +fill +grestore +newpath +6.883917e+01 3.307202e+00 moveto +6.692688e+01 3.492702e+00 lineto +6.716852e+01 3.539403e+00 lineto +6.932062e+01 3.400251e+00 lineto +6.883917e+01 3.307202e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.072239e+01 3.444906e+00 moveto +6.883917e+01 3.307202e+00 lineto +6.932062e+01 3.400251e+00 lineto +7.144001e+01 3.583599e+00 lineto +7.072239e+01 3.444906e+00 lineto +closepath +gsave +4.592175e-01 4.592175e-01 4.592175e-01 setrgbcolor +fill +grestore +newpath +7.072239e+01 3.444906e+00 moveto +6.883917e+01 3.307202e+00 lineto +6.932062e+01 3.400251e+00 lineto +7.144001e+01 3.583599e+00 lineto +7.072239e+01 3.444906e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.13423e+01 8.868904e+01 moveto +6.325661e+01 8.847273e+01 lineto +6.303798e+01 8.843048e+01 lineto +6.088361e+01 8.860039e+01 lineto +6.13423e+01 8.868904e+01 lineto +closepath +gsave +4.765991e-01 4.765991e-01 4.765991e-01 setrgbcolor +fill +grestore +newpath +6.13423e+01 8.868904e+01 moveto +6.325661e+01 8.847273e+01 lineto +6.303798e+01 8.843048e+01 lineto +6.088361e+01 8.860039e+01 lineto +6.13423e+01 8.868904e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.945568e+01 8.858218e+01 moveto +6.13423e+01 8.868904e+01 lineto +6.088361e+01 8.860039e+01 lineto +5.87604e+01 8.84478e+01 lineto +5.945568e+01 8.858218e+01 lineto +closepath +gsave +4.606204e-01 4.606204e-01 4.606204e-01 setrgbcolor +fill +grestore +newpath +5.945568e+01 8.858218e+01 moveto +6.13423e+01 8.868904e+01 lineto +6.088361e+01 8.860039e+01 lineto +5.87604e+01 8.84478e+01 lineto +5.945568e+01 8.858218e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.716852e+01 3.539403e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.739679e+01 3.589924e+00 lineto +6.716852e+01 3.539403e+00 lineto +closepath +gsave +4.930537e-01 4.930537e-01 4.930537e-01 setrgbcolor +fill +grestore +newpath +6.716852e+01 3.539403e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.739679e+01 3.589924e+00 lineto +6.716852e+01 3.539403e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.932062e+01 3.400251e+00 moveto +6.716852e+01 3.539403e+00 lineto +6.739679e+01 3.589924e+00 lineto +6.977543e+01 3.500912e+00 lineto +6.932062e+01 3.400251e+00 lineto +closepath +gsave +4.749734e-01 4.749734e-01 4.749734e-01 setrgbcolor +fill +grestore +newpath +6.932062e+01 3.400251e+00 moveto +6.716852e+01 3.539403e+00 lineto +6.739679e+01 3.589924e+00 lineto +6.977543e+01 3.500912e+00 lineto +6.932062e+01 3.400251e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.144001e+01 3.583599e+00 moveto +6.932062e+01 3.400251e+00 lineto +6.977543e+01 3.500912e+00 lineto +7.211792e+01 3.733636e+00 lineto +7.144001e+01 3.583599e+00 lineto +closepath +gsave +4.592175e-01 4.592175e-01 4.592175e-01 setrgbcolor +fill +grestore +newpath +7.144001e+01 3.583599e+00 moveto +6.932062e+01 3.400251e+00 lineto +6.977543e+01 3.500912e+00 lineto +7.211792e+01 3.733636e+00 lineto +7.144001e+01 3.583599e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.088361e+01 8.860039e+01 moveto +6.303798e+01 8.843048e+01 lineto +6.283145e+01 8.838477e+01 lineto +6.045029e+01 8.850449e+01 lineto +6.088361e+01 8.860039e+01 lineto +closepath +gsave +4.765991e-01 4.765991e-01 4.765991e-01 setrgbcolor +fill +grestore +newpath +6.088361e+01 8.860039e+01 moveto +6.303798e+01 8.843048e+01 lineto +6.283145e+01 8.838477e+01 lineto +6.045029e+01 8.850449e+01 lineto +6.088361e+01 8.860039e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.87604e+01 8.84478e+01 moveto +6.088361e+01 8.860039e+01 lineto +6.045029e+01 8.850449e+01 lineto +5.810358e+01 8.830243e+01 lineto +5.87604e+01 8.84478e+01 lineto +closepath +gsave +4.606204e-01 4.606204e-01 4.606204e-01 setrgbcolor +fill +grestore +newpath +5.87604e+01 8.84478e+01 moveto +6.088361e+01 8.860039e+01 lineto +6.045029e+01 8.850449e+01 lineto +5.810358e+01 8.830243e+01 lineto +5.87604e+01 8.84478e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.739679e+01 3.589924e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.761028e+01 3.643954e+00 lineto +6.739679e+01 3.589924e+00 lineto +closepath +gsave +4.931123e-01 4.931123e-01 4.931123e-01 setrgbcolor +fill +grestore +newpath +6.739679e+01 3.589924e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.761028e+01 3.643954e+00 lineto +6.739679e+01 3.589924e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.977543e+01 3.500912e+00 moveto +6.739679e+01 3.589924e+00 lineto +6.761028e+01 3.643954e+00 lineto +7.02008e+01 3.608562e+00 lineto +6.977543e+01 3.500912e+00 lineto +closepath +gsave +4.751252e-01 4.751252e-01 4.751252e-01 setrgbcolor +fill +grestore +newpath +6.977543e+01 3.500912e+00 moveto +6.739679e+01 3.589924e+00 lineto +6.761028e+01 3.643954e+00 lineto +7.02008e+01 3.608562e+00 lineto +6.977543e+01 3.500912e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.211792e+01 3.733636e+00 moveto +6.977543e+01 3.500912e+00 lineto +7.02008e+01 3.608562e+00 lineto +7.275195e+01 3.894092e+00 lineto +7.211792e+01 3.733636e+00 lineto +closepath +gsave +4.594328e-01 4.594328e-01 4.594328e-01 setrgbcolor +fill +grestore +newpath +7.211792e+01 3.733636e+00 moveto +6.977543e+01 3.500912e+00 lineto +7.02008e+01 3.608562e+00 lineto +7.275195e+01 3.894092e+00 lineto +7.211792e+01 3.733636e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.440652e+01 4.286335e+00 moveto +7.211792e+01 3.733636e+00 lineto +7.275195e+01 3.894092e+00 lineto +7.524441e+01 4.498382e+00 lineto +7.440652e+01 4.286335e+00 lineto +closepath +gsave +4.460304e-01 4.460304e-01 4.460304e-01 setrgbcolor +fill +grestore +newpath +7.440652e+01 4.286335e+00 moveto +7.211792e+01 3.733636e+00 lineto +7.275195e+01 3.894092e+00 lineto +7.524441e+01 4.498382e+00 lineto +7.440652e+01 4.286335e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.045029e+01 8.850449e+01 moveto +6.283145e+01 8.838477e+01 lineto +6.263828e+01 8.833588e+01 lineto +6.004503e+01 8.840193e+01 lineto +6.045029e+01 8.850449e+01 lineto +closepath +gsave +4.767434e-01 4.767434e-01 4.767434e-01 setrgbcolor +fill +grestore +newpath +6.045029e+01 8.850449e+01 moveto +6.283145e+01 8.838477e+01 lineto +6.263828e+01 8.833588e+01 lineto +6.004503e+01 8.840193e+01 lineto +6.045029e+01 8.850449e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.810358e+01 8.830243e+01 moveto +6.045029e+01 8.850449e+01 lineto +6.004503e+01 8.840193e+01 lineto +5.748929e+01 8.814697e+01 lineto +5.810358e+01 8.830243e+01 lineto +closepath +gsave +4.608308e-01 4.608308e-01 4.608308e-01 setrgbcolor +fill +grestore +newpath +5.810358e+01 8.830243e+01 moveto +6.045029e+01 8.850449e+01 lineto +6.004503e+01 8.840193e+01 lineto +5.748929e+01 8.814697e+01 lineto +5.810358e+01 8.830243e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.580908e+01 8.778013e+01 moveto +5.810358e+01 8.830243e+01 lineto +5.748929e+01 8.814697e+01 lineto +5.49904e+01 8.757294e+01 lineto +5.580908e+01 8.778013e+01 lineto +closepath +gsave +4.472123e-01 4.472123e-01 4.472123e-01 setrgbcolor +fill +grestore +newpath +5.580908e+01 8.778013e+01 moveto +5.810358e+01 8.830243e+01 lineto +5.748929e+01 8.814697e+01 lineto +5.49904e+01 8.757294e+01 lineto +5.580908e+01 8.778013e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.761028e+01 3.643954e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.780768e+01 3.701159e+00 lineto +6.761028e+01 3.643954e+00 lineto +closepath +gsave +4.932292e-01 4.932292e-01 4.932292e-01 setrgbcolor +fill +grestore +newpath +6.761028e+01 3.643954e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.780768e+01 3.701159e+00 lineto +6.761028e+01 3.643954e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.02008e+01 3.608562e+00 moveto +6.761028e+01 3.643954e+00 lineto +6.780768e+01 3.701159e+00 lineto +7.05941e+01 3.722539e+00 lineto +7.02008e+01 3.608562e+00 lineto +closepath +gsave +4.754287e-01 4.754287e-01 4.754287e-01 setrgbcolor +fill +grestore +newpath +7.02008e+01 3.608562e+00 moveto +6.761028e+01 3.643954e+00 lineto +6.780768e+01 3.701159e+00 lineto +7.05941e+01 3.722539e+00 lineto +7.02008e+01 3.608562e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.275195e+01 3.894092e+00 moveto +7.02008e+01 3.608562e+00 lineto +7.05941e+01 3.722539e+00 lineto +7.333818e+01 4.063978e+00 lineto +7.275195e+01 3.894092e+00 lineto +closepath +gsave +4.598636e-01 4.598636e-01 4.598636e-01 setrgbcolor +fill +grestore +newpath +7.275195e+01 3.894092e+00 moveto +7.02008e+01 3.608562e+00 lineto +7.05941e+01 3.722539e+00 lineto +7.333818e+01 4.063978e+00 lineto +7.275195e+01 3.894092e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.524441e+01 4.498382e+00 moveto +7.275195e+01 3.894092e+00 lineto +7.333818e+01 4.063978e+00 lineto +7.601913e+01 4.722891e+00 lineto +7.524441e+01 4.498382e+00 lineto +closepath +gsave +4.465358e-01 4.465358e-01 4.465358e-01 setrgbcolor +fill +grestore +newpath +7.524441e+01 4.498382e+00 moveto +7.275195e+01 3.894092e+00 lineto +7.333818e+01 4.063978e+00 lineto +7.601913e+01 4.722891e+00 lineto +7.524441e+01 4.498382e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.004503e+01 8.840193e+01 moveto +6.263828e+01 8.833588e+01 lineto +6.245968e+01 8.828413e+01 lineto +5.967031e+01 8.829334e+01 lineto +6.004503e+01 8.840193e+01 lineto +closepath +gsave +4.770316e-01 4.770316e-01 4.770316e-01 setrgbcolor +fill +grestore +newpath +6.004503e+01 8.840193e+01 moveto +6.263828e+01 8.833588e+01 lineto +6.245968e+01 8.828413e+01 lineto +5.967031e+01 8.829334e+01 lineto +6.004503e+01 8.840193e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.748929e+01 8.814697e+01 moveto +6.004503e+01 8.840193e+01 lineto +5.967031e+01 8.829334e+01 lineto +5.692129e+01 8.798237e+01 lineto +5.748929e+01 8.814697e+01 lineto +closepath +gsave +4.612519e-01 4.612519e-01 4.612519e-01 setrgbcolor +fill +grestore +newpath +5.748929e+01 8.814697e+01 moveto +6.004503e+01 8.840193e+01 lineto +5.967031e+01 8.829334e+01 lineto +5.692129e+01 8.798237e+01 lineto +5.748929e+01 8.814697e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.49904e+01 8.757294e+01 moveto +5.748929e+01 8.814697e+01 lineto +5.692129e+01 8.798237e+01 lineto +5.423343e+01 8.735357e+01 lineto +5.49904e+01 8.757294e+01 lineto +closepath +gsave +4.477127e-01 4.477127e-01 4.477127e-01 setrgbcolor +fill +grestore +newpath +5.49904e+01 8.757294e+01 moveto +5.748929e+01 8.814697e+01 lineto +5.692129e+01 8.798237e+01 lineto +5.423343e+01 8.735357e+01 lineto +5.49904e+01 8.757294e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.780768e+01 3.701159e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.798777e+01 3.761187e+00 lineto +6.780768e+01 3.701159e+00 lineto +closepath +gsave +4.934038e-01 4.934038e-01 4.934038e-01 setrgbcolor +fill +grestore +newpath +6.780768e+01 3.701159e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.798777e+01 3.761187e+00 lineto +6.780768e+01 3.701159e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.05941e+01 3.722539e+00 moveto +6.780768e+01 3.701159e+00 lineto +6.798777e+01 3.761187e+00 lineto +7.095292e+01 3.84214e+00 lineto +7.05941e+01 3.722539e+00 lineto +closepath +gsave +4.75883e-01 4.75883e-01 4.75883e-01 setrgbcolor +fill +grestore +newpath +7.05941e+01 3.722539e+00 moveto +6.780768e+01 3.701159e+00 lineto +6.798777e+01 3.761187e+00 lineto +7.095292e+01 3.84214e+00 lineto +7.05941e+01 3.722539e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.333818e+01 4.063978e+00 moveto +7.05941e+01 3.722539e+00 lineto +7.095292e+01 3.84214e+00 lineto +7.387301e+01 4.242247e+00 lineto +7.333818e+01 4.063978e+00 lineto +closepath +gsave +4.605104e-01 4.605104e-01 4.605104e-01 setrgbcolor +fill +grestore +newpath +7.333818e+01 4.063978e+00 moveto +7.05941e+01 3.722539e+00 lineto +7.095292e+01 3.84214e+00 lineto +7.387301e+01 4.242247e+00 lineto +7.333818e+01 4.063978e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.601913e+01 4.722891e+00 moveto +7.333818e+01 4.063978e+00 lineto +7.387301e+01 4.242247e+00 lineto +7.672592e+01 4.958478e+00 lineto +7.601913e+01 4.722891e+00 lineto +closepath +gsave +4.472969e-01 4.472969e-01 4.472969e-01 setrgbcolor +fill +grestore +newpath +7.601913e+01 4.722891e+00 moveto +7.333818e+01 4.063978e+00 lineto +7.387301e+01 4.242247e+00 lineto +7.672592e+01 4.958478e+00 lineto +7.601913e+01 4.722891e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.967031e+01 8.829334e+01 moveto +6.245968e+01 8.828413e+01 lineto +6.229674e+01 8.822981e+01 lineto +5.932846e+01 8.817939e+01 lineto +5.967031e+01 8.829334e+01 lineto +closepath +gsave +4.774631e-01 4.774631e-01 4.774631e-01 setrgbcolor +fill +grestore +newpath +5.967031e+01 8.829334e+01 moveto +6.245968e+01 8.828413e+01 lineto +6.229674e+01 8.822981e+01 lineto +5.932846e+01 8.817939e+01 lineto +5.967031e+01 8.829334e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.692129e+01 8.798237e+01 moveto +5.967031e+01 8.829334e+01 lineto +5.932846e+01 8.817939e+01 lineto +5.640311e+01 8.780965e+01 lineto +5.692129e+01 8.798237e+01 lineto +closepath +gsave +4.618838e-01 4.618838e-01 4.618838e-01 setrgbcolor +fill +grestore +newpath +5.692129e+01 8.798237e+01 moveto +5.967031e+01 8.829334e+01 lineto +5.932846e+01 8.817939e+01 lineto +5.640311e+01 8.780965e+01 lineto +5.692129e+01 8.798237e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.423343e+01 8.735357e+01 moveto +5.692129e+01 8.798237e+01 lineto +5.640311e+01 8.780965e+01 lineto +5.354285e+01 8.712339e+01 lineto +5.423343e+01 8.735357e+01 lineto +closepath +gsave +4.484659e-01 4.484659e-01 4.484659e-01 setrgbcolor +fill +grestore +newpath +5.423343e+01 8.735357e+01 moveto +5.692129e+01 8.798237e+01 lineto +5.640311e+01 8.780965e+01 lineto +5.354285e+01 8.712339e+01 lineto +5.423343e+01 8.735357e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.798777e+01 3.761187e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.814944e+01 3.823667e+00 lineto +6.798777e+01 3.761187e+00 lineto +closepath +gsave +4.936353e-01 4.936353e-01 4.936353e-01 setrgbcolor +fill +grestore +newpath +6.798777e+01 3.761187e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.814944e+01 3.823667e+00 lineto +6.798777e+01 3.761187e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.095292e+01 3.84214e+00 moveto +6.798777e+01 3.761187e+00 lineto +6.814944e+01 3.823667e+00 lineto +7.127504e+01 3.966627e+00 lineto +7.095292e+01 3.84214e+00 lineto +closepath +gsave +4.764871e-01 4.764871e-01 4.764871e-01 setrgbcolor +fill +grestore +newpath +7.095292e+01 3.84214e+00 moveto +6.798777e+01 3.761187e+00 lineto +6.814944e+01 3.823667e+00 lineto +7.127504e+01 3.966627e+00 lineto +7.095292e+01 3.84214e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.387301e+01 4.242247e+00 moveto +7.095292e+01 3.84214e+00 lineto +7.127504e+01 3.966627e+00 lineto +7.435313e+01 4.427799e+00 lineto +7.387301e+01 4.242247e+00 lineto +closepath +gsave +4.613737e-01 4.613737e-01 4.613737e-01 setrgbcolor +fill +grestore +newpath +7.387301e+01 4.242247e+00 moveto +7.095292e+01 3.84214e+00 lineto +7.127504e+01 3.966627e+00 lineto +7.435313e+01 4.427799e+00 lineto +7.387301e+01 4.242247e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.672592e+01 4.958478e+00 moveto +7.387301e+01 4.242247e+00 lineto +7.435313e+01 4.427799e+00 lineto +7.736041e+01 5.20369e+00 lineto +7.672592e+01 4.958478e+00 lineto +closepath +gsave +4.483171e-01 4.483171e-01 4.483171e-01 setrgbcolor +fill +grestore +newpath +7.672592e+01 4.958478e+00 moveto +7.387301e+01 4.242247e+00 lineto +7.435313e+01 4.427799e+00 lineto +7.736041e+01 5.20369e+00 lineto +7.672592e+01 4.958478e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.949006e+01 5.985412e+00 moveto +7.672592e+01 4.958478e+00 lineto +7.736041e+01 5.20369e+00 lineto +8.027412e+01 6.288427e+00 lineto +7.949006e+01 5.985412e+00 lineto +closepath +gsave +4.372689e-01 4.372689e-01 4.372689e-01 setrgbcolor +fill +grestore +newpath +7.949006e+01 5.985412e+00 moveto +7.672592e+01 4.958478e+00 lineto +7.736041e+01 5.20369e+00 lineto +8.027412e+01 6.288427e+00 lineto +7.949006e+01 5.985412e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.932846e+01 8.817939e+01 moveto +6.229674e+01 8.822981e+01 lineto +6.215047e+01 8.817328e+01 lineto +5.902157e+01 8.806079e+01 lineto +5.932846e+01 8.817939e+01 lineto +closepath +gsave +4.780368e-01 4.780368e-01 4.780368e-01 setrgbcolor +fill +grestore +newpath +5.932846e+01 8.817939e+01 moveto +6.229674e+01 8.822981e+01 lineto +6.215047e+01 8.817328e+01 lineto +5.902157e+01 8.806079e+01 lineto +5.932846e+01 8.817939e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.640311e+01 8.780965e+01 moveto +5.932846e+01 8.817939e+01 lineto +5.902157e+01 8.806079e+01 lineto +5.593793e+01 8.762987e+01 lineto +5.640311e+01 8.780965e+01 lineto +closepath +gsave +4.62727e-01 4.62727e-01 4.62727e-01 setrgbcolor +fill +grestore +newpath +5.640311e+01 8.780965e+01 moveto +5.932846e+01 8.817939e+01 lineto +5.902157e+01 8.806079e+01 lineto +5.593793e+01 8.762987e+01 lineto +5.640311e+01 8.780965e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.354285e+01 8.712339e+01 moveto +5.640311e+01 8.780965e+01 lineto +5.593793e+01 8.762987e+01 lineto +5.29229e+01 8.68838e+01 lineto +5.354285e+01 8.712339e+01 lineto +closepath +gsave +4.494752e-01 4.494752e-01 4.494752e-01 setrgbcolor +fill +grestore +newpath +5.354285e+01 8.712339e+01 moveto +5.640311e+01 8.780965e+01 lineto +5.593793e+01 8.762987e+01 lineto +5.29229e+01 8.68838e+01 lineto +5.354285e+01 8.712339e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.814944e+01 3.823667e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.829169e+01 3.888215e+00 lineto +6.814944e+01 3.823667e+00 lineto +closepath +gsave +4.939224e-01 4.939224e-01 4.939224e-01 setrgbcolor +fill +grestore +newpath +6.814944e+01 3.823667e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.829169e+01 3.888215e+00 lineto +6.814944e+01 3.823667e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.127504e+01 3.966627e+00 moveto +6.814944e+01 3.823667e+00 lineto +6.829169e+01 3.888215e+00 lineto +7.155846e+01 4.095234e+00 lineto +7.127504e+01 3.966627e+00 lineto +closepath +gsave +4.772398e-01 4.772398e-01 4.772398e-01 setrgbcolor +fill +grestore +newpath +7.127504e+01 3.966627e+00 moveto +6.814944e+01 3.823667e+00 lineto +6.829169e+01 3.888215e+00 lineto +7.155846e+01 4.095234e+00 lineto +7.127504e+01 3.966627e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.435313e+01 4.427799e+00 moveto +7.127504e+01 3.966627e+00 lineto +7.155846e+01 4.095234e+00 lineto +7.477558e+01 4.61949e+00 lineto +7.435313e+01 4.427799e+00 lineto +closepath +gsave +4.624541e-01 4.624541e-01 4.624541e-01 setrgbcolor +fill +grestore +newpath +7.435313e+01 4.427799e+00 moveto +7.127504e+01 3.966627e+00 lineto +7.155846e+01 4.095234e+00 lineto +7.477558e+01 4.61949e+00 lineto +7.435313e+01 4.427799e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.736041e+01 5.20369e+00 moveto +7.435313e+01 4.427799e+00 lineto +7.477558e+01 4.61949e+00 lineto +7.79187e+01 5.457016e+00 lineto +7.736041e+01 5.20369e+00 lineto +closepath +gsave +4.496007e-01 4.496007e-01 4.496007e-01 setrgbcolor +fill +grestore +newpath +7.736041e+01 5.20369e+00 moveto +7.435313e+01 4.427799e+00 lineto +7.477558e+01 4.61949e+00 lineto +7.79187e+01 5.457016e+00 lineto +7.736041e+01 5.20369e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.027412e+01 6.288427e+00 moveto +7.736041e+01 5.20369e+00 lineto +7.79187e+01 5.457016e+00 lineto +8.096401e+01 6.601469e+00 lineto +8.027412e+01 6.288427e+00 lineto +closepath +gsave +4.386474e-01 4.386474e-01 4.386474e-01 setrgbcolor +fill +grestore +newpath +8.027412e+01 6.288427e+00 moveto +7.736041e+01 5.20369e+00 lineto +7.79187e+01 5.457016e+00 lineto +8.096401e+01 6.601469e+00 lineto +8.027412e+01 6.288427e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.902157e+01 8.806079e+01 moveto +6.215047e+01 8.817328e+01 lineto +6.202176e+01 8.811488e+01 lineto +5.875154e+01 8.793826e+01 lineto +5.902157e+01 8.806079e+01 lineto +closepath +gsave +4.787511e-01 4.787511e-01 4.787511e-01 setrgbcolor +fill +grestore +newpath +5.902157e+01 8.806079e+01 moveto +6.215047e+01 8.817328e+01 lineto +6.202176e+01 8.811488e+01 lineto +5.875154e+01 8.793826e+01 lineto +5.902157e+01 8.806079e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.593793e+01 8.762987e+01 moveto +5.902157e+01 8.806079e+01 lineto +5.875154e+01 8.793826e+01 lineto +5.552862e+01 8.744414e+01 lineto +5.593793e+01 8.762987e+01 lineto +closepath +gsave +4.637818e-01 4.637818e-01 4.637818e-01 setrgbcolor +fill +grestore +newpath +5.593793e+01 8.762987e+01 moveto +5.902157e+01 8.806079e+01 lineto +5.875154e+01 8.793826e+01 lineto +5.552862e+01 8.744414e+01 lineto +5.593793e+01 8.762987e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.29229e+01 8.68838e+01 moveto +5.593793e+01 8.762987e+01 lineto +5.552862e+01 8.744414e+01 lineto +5.237741e+01 8.663628e+01 lineto +5.29229e+01 8.68838e+01 lineto +closepath +gsave +4.507443e-01 4.507443e-01 4.507443e-01 setrgbcolor +fill +grestore +newpath +5.29229e+01 8.68838e+01 moveto +5.593793e+01 8.762987e+01 lineto +5.552862e+01 8.744414e+01 lineto +5.237741e+01 8.663628e+01 lineto +5.29229e+01 8.68838e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.829169e+01 3.888215e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.841365e+01 3.954431e+00 lineto +6.829169e+01 3.888215e+00 lineto +closepath +gsave +4.942639e-01 4.942639e-01 4.942639e-01 setrgbcolor +fill +grestore +newpath +6.829169e+01 3.888215e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.841365e+01 3.954431e+00 lineto +6.829169e+01 3.888215e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.155846e+01 4.095234e+00 moveto +6.829169e+01 3.888215e+00 lineto +6.841365e+01 3.954431e+00 lineto +7.180145e+01 4.227166e+00 lineto +7.155846e+01 4.095234e+00 lineto +closepath +gsave +4.78139e-01 4.78139e-01 4.78139e-01 setrgbcolor +fill +grestore +newpath +7.155846e+01 4.095234e+00 moveto +6.829169e+01 3.888215e+00 lineto +6.841365e+01 3.954431e+00 lineto +7.180145e+01 4.227166e+00 lineto +7.155846e+01 4.095234e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.477558e+01 4.61949e+00 moveto +7.155846e+01 4.095234e+00 lineto +7.180145e+01 4.227166e+00 lineto +7.513777e+01 4.81614e+00 lineto +7.477558e+01 4.61949e+00 lineto +closepath +gsave +4.637522e-01 4.637522e-01 4.637522e-01 setrgbcolor +fill +grestore +newpath +7.477558e+01 4.61949e+00 moveto +7.155846e+01 4.095234e+00 lineto +7.180145e+01 4.227166e+00 lineto +7.513777e+01 4.81614e+00 lineto +7.477558e+01 4.61949e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.79187e+01 5.457016e+00 moveto +7.477558e+01 4.61949e+00 lineto +7.513777e+01 4.81614e+00 lineto +7.839734e+01 5.716893e+00 lineto +7.79187e+01 5.457016e+00 lineto +closepath +gsave +4.511527e-01 4.511527e-01 4.511527e-01 setrgbcolor +fill +grestore +newpath +7.79187e+01 5.457016e+00 moveto +7.477558e+01 4.61949e+00 lineto +7.513777e+01 4.81614e+00 lineto +7.839734e+01 5.716893e+00 lineto +7.79187e+01 5.457016e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.096401e+01 6.601469e+00 moveto +7.79187e+01 5.457016e+00 lineto +7.839734e+01 5.716893e+00 lineto +8.155548e+01 6.922607e+00 lineto +8.096401e+01 6.601469e+00 lineto +closepath +gsave +4.403265e-01 4.403265e-01 4.403265e-01 setrgbcolor +fill +grestore +newpath +8.096401e+01 6.601469e+00 moveto +7.79187e+01 5.457016e+00 lineto +7.839734e+01 5.716893e+00 lineto +8.155548e+01 6.922607e+00 lineto +8.096401e+01 6.601469e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.388847e+01 8.044187e+00 moveto +8.096401e+01 6.601469e+00 lineto +8.155548e+01 6.922607e+00 lineto +8.458829e+01 8.424154e+00 lineto +8.388847e+01 8.044187e+00 lineto +closepath +gsave +4.312051e-01 4.312051e-01 4.312051e-01 setrgbcolor +fill +grestore +newpath +8.388847e+01 8.044187e+00 moveto +8.096401e+01 6.601469e+00 lineto +8.155548e+01 6.922607e+00 lineto +8.458829e+01 8.424154e+00 lineto +8.388847e+01 8.044187e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.875154e+01 8.793826e+01 moveto +6.202176e+01 8.811488e+01 lineto +6.191142e+01 8.805497e+01 lineto +5.852003e+01 8.781256e+01 lineto +5.875154e+01 8.793826e+01 lineto +closepath +gsave +4.796041e-01 4.796041e-01 4.796041e-01 setrgbcolor +fill +grestore +newpath +5.875154e+01 8.793826e+01 moveto +6.202176e+01 8.811488e+01 lineto +6.191142e+01 8.805497e+01 lineto +5.852003e+01 8.781256e+01 lineto +5.875154e+01 8.793826e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.552862e+01 8.744414e+01 moveto +5.875154e+01 8.793826e+01 lineto +5.852003e+01 8.781256e+01 lineto +5.517771e+01 8.725361e+01 lineto +5.552862e+01 8.744414e+01 lineto +closepath +gsave +4.650483e-01 4.650483e-01 4.650483e-01 setrgbcolor +fill +grestore +newpath +5.552862e+01 8.744414e+01 moveto +5.875154e+01 8.793826e+01 lineto +5.852003e+01 8.781256e+01 lineto +5.517771e+01 8.725361e+01 lineto +5.552862e+01 8.744414e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.237741e+01 8.663628e+01 moveto +5.552862e+01 8.744414e+01 lineto +5.517771e+01 8.725361e+01 lineto +5.190974e+01 8.638236e+01 lineto +5.237741e+01 8.663628e+01 lineto +closepath +gsave +4.522779e-01 4.522779e-01 4.522779e-01 setrgbcolor +fill +grestore +newpath +5.237741e+01 8.663628e+01 moveto +5.552862e+01 8.744414e+01 lineto +5.517771e+01 8.725361e+01 lineto +5.190974e+01 8.638236e+01 lineto +5.237741e+01 8.663628e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.841365e+01 3.954431e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.851456e+01 4.021909e+00 lineto +6.841365e+01 3.954431e+00 lineto +closepath +gsave +4.946579e-01 4.946579e-01 4.946579e-01 setrgbcolor +fill +grestore +newpath +6.841365e+01 3.954431e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.851456e+01 4.021909e+00 lineto +6.841365e+01 3.954431e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.180145e+01 4.227166e+00 moveto +6.841365e+01 3.954431e+00 lineto +6.851456e+01 4.021909e+00 lineto +7.200251e+01 4.361611e+00 lineto +7.180145e+01 4.227166e+00 lineto +closepath +gsave +4.791826e-01 4.791826e-01 4.791826e-01 setrgbcolor +fill +grestore +newpath +7.180145e+01 4.227166e+00 moveto +6.841365e+01 3.954431e+00 lineto +6.851456e+01 4.021909e+00 lineto +7.200251e+01 4.361611e+00 lineto +7.180145e+01 4.227166e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.513777e+01 4.81614e+00 moveto +7.180145e+01 4.227166e+00 lineto +7.200251e+01 4.361611e+00 lineto +7.543745e+01 5.016534e+00 lineto +7.513777e+01 4.81614e+00 lineto +closepath +gsave +4.652683e-01 4.652683e-01 4.652683e-01 setrgbcolor +fill +grestore +newpath +7.513777e+01 4.81614e+00 moveto +7.180145e+01 4.227166e+00 lineto +7.200251e+01 4.361611e+00 lineto +7.543745e+01 5.016534e+00 lineto +7.513777e+01 4.81614e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.839734e+01 5.716893e+00 moveto +7.513777e+01 4.81614e+00 lineto +7.543745e+01 5.016534e+00 lineto +7.879338e+01 5.98172e+00 lineto +7.839734e+01 5.716893e+00 lineto +closepath +gsave +4.529786e-01 4.529786e-01 4.529786e-01 setrgbcolor +fill +grestore +newpath +7.839734e+01 5.716893e+00 moveto +7.513777e+01 4.81614e+00 lineto +7.543745e+01 5.016534e+00 lineto +7.879338e+01 5.98172e+00 lineto +7.839734e+01 5.716893e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.155548e+01 6.922607e+00 moveto +7.839734e+01 5.716893e+00 lineto +7.879338e+01 5.98172e+00 lineto +8.204488e+01 7.249861e+00 lineto +8.155548e+01 6.922607e+00 lineto +closepath +gsave +4.423183e-01 4.423183e-01 4.423183e-01 setrgbcolor +fill +grestore +newpath +8.155548e+01 6.922607e+00 moveto +7.839734e+01 5.716893e+00 lineto +7.879338e+01 5.98172e+00 lineto +8.204488e+01 7.249861e+00 lineto +8.155548e+01 6.922607e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.458829e+01 8.424154e+00 moveto +8.155548e+01 6.922607e+00 lineto +8.204488e+01 7.249861e+00 lineto +8.516734e+01 8.811358e+00 lineto +8.458829e+01 8.424154e+00 lineto +closepath +gsave +4.332411e-01 4.332411e-01 4.332411e-01 setrgbcolor +fill +grestore +newpath +8.458829e+01 8.424154e+00 moveto +8.155548e+01 6.922607e+00 lineto +8.204488e+01 7.249861e+00 lineto +8.516734e+01 8.811358e+00 lineto +8.458829e+01 8.424154e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.747281e+01 1.021017e+01 moveto +8.458829e+01 8.424154e+00 lineto +8.516734e+01 8.811358e+00 lineto +8.813713e+01 1.065439e+01 lineto +8.747281e+01 1.021017e+01 lineto +closepath +gsave +4.256579e-01 4.256579e-01 4.256579e-01 setrgbcolor +fill +grestore +newpath +8.747281e+01 1.021017e+01 moveto +8.458829e+01 8.424154e+00 lineto +8.516734e+01 8.811358e+00 lineto +8.813713e+01 1.065439e+01 lineto +8.747281e+01 1.021017e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.852003e+01 8.781256e+01 moveto +6.191142e+01 8.805497e+01 lineto +6.182011e+01 8.799392e+01 lineto +5.832848e+01 8.768447e+01 lineto +5.852003e+01 8.781256e+01 lineto +closepath +gsave +4.805935e-01 4.805935e-01 4.805935e-01 setrgbcolor +fill +grestore +newpath +5.852003e+01 8.781256e+01 moveto +6.191142e+01 8.805497e+01 lineto +6.182011e+01 8.799392e+01 lineto +5.832848e+01 8.768447e+01 lineto +5.852003e+01 8.781256e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.517771e+01 8.725361e+01 moveto +5.852003e+01 8.781256e+01 lineto +5.832848e+01 8.768447e+01 lineto +5.488735e+01 8.705945e+01 lineto +5.517771e+01 8.725361e+01 lineto +closepath +gsave +4.665266e-01 4.665266e-01 4.665266e-01 setrgbcolor +fill +grestore +newpath +5.517771e+01 8.725361e+01 moveto +5.852003e+01 8.781256e+01 lineto +5.832848e+01 8.768447e+01 lineto +5.488735e+01 8.705945e+01 lineto +5.517771e+01 8.725361e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.190974e+01 8.638236e+01 moveto +5.517771e+01 8.725361e+01 lineto +5.488735e+01 8.705945e+01 lineto +5.152278e+01 8.61236e+01 lineto +5.190974e+01 8.638236e+01 lineto +closepath +gsave +4.540807e-01 4.540807e-01 4.540807e-01 setrgbcolor +fill +grestore +newpath +5.190974e+01 8.638236e+01 moveto +5.517771e+01 8.725361e+01 lineto +5.488735e+01 8.705945e+01 lineto +5.152278e+01 8.61236e+01 lineto +5.190974e+01 8.638236e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.851456e+01 4.021909e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.85938e+01 4.090232e+00 lineto +6.851456e+01 4.021909e+00 lineto +closepath +gsave +4.951024e-01 4.951024e-01 4.951024e-01 setrgbcolor +fill +grestore +newpath +6.851456e+01 4.021909e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.85938e+01 4.090232e+00 lineto +6.851456e+01 4.021909e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.200251e+01 4.361611e+00 moveto +6.851456e+01 4.021909e+00 lineto +6.85938e+01 4.090232e+00 lineto +7.21604e+01 4.49774e+00 lineto +7.200251e+01 4.361611e+00 lineto +closepath +gsave +4.803676e-01 4.803676e-01 4.803676e-01 setrgbcolor +fill +grestore +newpath +7.200251e+01 4.361611e+00 moveto +6.851456e+01 4.021909e+00 lineto +6.85938e+01 4.090232e+00 lineto +7.21604e+01 4.49774e+00 lineto +7.200251e+01 4.361611e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.543745e+01 5.016534e+00 moveto +7.200251e+01 4.361611e+00 lineto +7.21604e+01 4.49774e+00 lineto +7.567278e+01 5.219438e+00 lineto +7.543745e+01 5.016534e+00 lineto +closepath +gsave +4.670024e-01 4.670024e-01 4.670024e-01 setrgbcolor +fill +grestore +newpath +7.543745e+01 5.016534e+00 moveto +7.200251e+01 4.361611e+00 lineto +7.21604e+01 4.49774e+00 lineto +7.567278e+01 5.219438e+00 lineto +7.543745e+01 5.016534e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.879338e+01 5.98172e+00 moveto +7.543745e+01 5.016534e+00 lineto +7.567278e+01 5.219438e+00 lineto +7.910438e+01 6.249863e+00 lineto +7.879338e+01 5.98172e+00 lineto +closepath +gsave +4.550839e-01 4.550839e-01 4.550839e-01 setrgbcolor +fill +grestore +newpath +7.879338e+01 5.98172e+00 moveto +7.543745e+01 5.016534e+00 lineto +7.567278e+01 5.219438e+00 lineto +7.910438e+01 6.249863e+00 lineto +7.879338e+01 5.98172e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.204488e+01 7.249861e+00 moveto +7.879338e+01 5.98172e+00 lineto +7.910438e+01 6.249863e+00 lineto +8.242919e+01 7.581214e+00 lineto +8.204488e+01 7.249861e+00 lineto +closepath +gsave +4.446361e-01 4.446361e-01 4.446361e-01 setrgbcolor +fill +grestore +newpath +8.204488e+01 7.249861e+00 moveto +7.879338e+01 5.98172e+00 lineto +7.910438e+01 6.249863e+00 lineto +8.242919e+01 7.581214e+00 lineto +8.204488e+01 7.249861e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.516734e+01 8.811358e+00 moveto +8.204488e+01 7.249861e+00 lineto +8.242919e+01 7.581214e+00 lineto +8.562206e+01 9.203411e+00 lineto +8.516734e+01 8.811358e+00 lineto +closepath +gsave +4.356351e-01 4.356351e-01 4.356351e-01 setrgbcolor +fill +grestore +newpath +8.516734e+01 8.811358e+00 moveto +8.204488e+01 7.249861e+00 lineto +8.242919e+01 7.581214e+00 lineto +8.562206e+01 9.203411e+00 lineto +8.516734e+01 8.811358e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.813713e+01 1.065439e+01 moveto +8.516734e+01 8.811358e+00 lineto +8.562206e+01 9.203411e+00 lineto +8.865881e+01 1.110418e+01 lineto +8.813713e+01 1.065439e+01 lineto +closepath +gsave +4.280168e-01 4.280168e-01 4.280168e-01 setrgbcolor +fill +grestore +newpath +8.813713e+01 1.065439e+01 moveto +8.516734e+01 8.811358e+00 lineto +8.562206e+01 9.203411e+00 lineto +8.865881e+01 1.110418e+01 lineto +8.813713e+01 1.065439e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.093176e+01 1.2765e+01 moveto +8.813713e+01 1.065439e+01 lineto +8.865881e+01 1.110418e+01 lineto +9.151645e+01 1.326912e+01 lineto +9.093176e+01 1.2765e+01 lineto +closepath +gsave +4.216847e-01 4.216847e-01 4.216847e-01 setrgbcolor +fill +grestore +newpath +9.093176e+01 1.2765e+01 moveto +8.813713e+01 1.065439e+01 lineto +8.865881e+01 1.110418e+01 lineto +9.151645e+01 1.326912e+01 lineto +9.093176e+01 1.2765e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.832848e+01 8.768447e+01 moveto +6.182011e+01 8.799392e+01 lineto +6.174842e+01 8.79321e+01 lineto +5.817806e+01 8.755478e+01 lineto +5.832848e+01 8.768447e+01 lineto +closepath +gsave +4.817163e-01 4.817163e-01 4.817163e-01 setrgbcolor +fill +grestore +newpath +5.832848e+01 8.768447e+01 moveto +6.182011e+01 8.799392e+01 lineto +6.174842e+01 8.79321e+01 lineto +5.817806e+01 8.755478e+01 lineto +5.832848e+01 8.768447e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.488735e+01 8.705945e+01 moveto +5.832848e+01 8.768447e+01 lineto +5.817806e+01 8.755478e+01 lineto +5.465934e+01 8.686286e+01 lineto +5.488735e+01 8.705945e+01 lineto +closepath +gsave +4.682162e-01 4.682162e-01 4.682162e-01 setrgbcolor +fill +grestore +newpath +5.488735e+01 8.705945e+01 moveto +5.832848e+01 8.768447e+01 lineto +5.817806e+01 8.755478e+01 lineto +5.465934e+01 8.686286e+01 lineto +5.488735e+01 8.705945e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.152278e+01 8.61236e+01 moveto +5.488735e+01 8.705945e+01 lineto +5.465934e+01 8.686286e+01 lineto +5.121891e+01 8.58616e+01 lineto +5.152278e+01 8.61236e+01 lineto +closepath +gsave +4.561579e-01 4.561579e-01 4.561579e-01 setrgbcolor +fill +grestore +newpath +5.152278e+01 8.61236e+01 moveto +5.488735e+01 8.705945e+01 lineto +5.465934e+01 8.686286e+01 lineto +5.121891e+01 8.58616e+01 lineto +5.152278e+01 8.61236e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.85938e+01 4.090232e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.865089e+01 4.158979e+00 lineto +6.85938e+01 4.090232e+00 lineto +closepath +gsave +4.955952e-01 4.955952e-01 4.955952e-01 setrgbcolor +fill +grestore +newpath +6.85938e+01 4.090232e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.865089e+01 4.158979e+00 lineto +6.85938e+01 4.090232e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.21604e+01 4.49774e+00 moveto +6.85938e+01 4.090232e+00 lineto +6.865089e+01 4.158979e+00 lineto +7.227414e+01 4.634713e+00 lineto +7.21604e+01 4.49774e+00 lineto +closepath +gsave +4.816906e-01 4.816906e-01 4.816906e-01 setrgbcolor +fill +grestore +newpath +7.21604e+01 4.49774e+00 moveto +6.85938e+01 4.090232e+00 lineto +6.865089e+01 4.158979e+00 lineto +7.227414e+01 4.634713e+00 lineto +7.21604e+01 4.49774e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.567278e+01 5.219438e+00 moveto +7.21604e+01 4.49774e+00 lineto +7.227414e+01 4.634713e+00 lineto +7.584232e+01 5.423601e+00 lineto +7.567278e+01 5.219438e+00 lineto +closepath +gsave +4.689538e-01 4.689538e-01 4.689538e-01 setrgbcolor +fill +grestore +newpath +7.567278e+01 5.219438e+00 moveto +7.21604e+01 4.49774e+00 lineto +7.227414e+01 4.634713e+00 lineto +7.584232e+01 5.423601e+00 lineto +7.567278e+01 5.219438e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.910438e+01 6.249863e+00 moveto +7.567278e+01 5.219438e+00 lineto +7.584232e+01 5.423601e+00 lineto +7.932842e+01 6.51967e+00 lineto +7.910438e+01 6.249863e+00 lineto +closepath +gsave +4.574742e-01 4.574742e-01 4.574742e-01 setrgbcolor +fill +grestore +newpath +7.910438e+01 6.249863e+00 moveto +7.567278e+01 5.219438e+00 lineto +7.584232e+01 5.423601e+00 lineto +7.932842e+01 6.51967e+00 lineto +7.910438e+01 6.249863e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.242919e+01 7.581214e+00 moveto +7.910438e+01 6.249863e+00 lineto +7.932842e+01 6.51967e+00 lineto +8.270604e+01 7.914622e+00 lineto +8.242919e+01 7.581214e+00 lineto +closepath +gsave +4.472938e-01 4.472938e-01 4.472938e-01 setrgbcolor +fill +grestore +newpath +8.242919e+01 7.581214e+00 moveto +7.910438e+01 6.249863e+00 lineto +7.932842e+01 6.51967e+00 lineto +8.270604e+01 7.914622e+00 lineto +8.242919e+01 7.581214e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.562206e+01 9.203411e+00 moveto +8.242919e+01 7.581214e+00 lineto +8.270604e+01 7.914622e+00 lineto +8.594963e+01 9.597897e+00 lineto +8.562206e+01 9.203411e+00 lineto +closepath +gsave +4.38411e-01 4.38411e-01 4.38411e-01 setrgbcolor +fill +grestore +newpath +8.562206e+01 9.203411e+00 moveto +8.242919e+01 7.581214e+00 lineto +8.270604e+01 7.914622e+00 lineto +8.594963e+01 9.597897e+00 lineto +8.562206e+01 9.203411e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.865881e+01 1.110418e+01 moveto +8.562206e+01 9.203411e+00 lineto +8.594963e+01 9.597897e+00 lineto +8.903461e+01 1.155675e+01 lineto +8.865881e+01 1.110418e+01 lineto +closepath +gsave +4.307864e-01 4.307864e-01 4.307864e-01 setrgbcolor +fill +grestore +newpath +8.865881e+01 1.110418e+01 moveto +8.562206e+01 9.203411e+00 lineto +8.594963e+01 9.597897e+00 lineto +8.903461e+01 1.155675e+01 lineto +8.865881e+01 1.110418e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.151645e+01 1.326912e+01 moveto +8.865881e+01 1.110418e+01 lineto +8.903461e+01 1.155675e+01 lineto +9.193765e+01 1.377636e+01 lineto +9.151645e+01 1.326912e+01 lineto +closepath +gsave +4.243497e-01 4.243497e-01 4.243497e-01 setrgbcolor +fill +grestore +newpath +9.151645e+01 1.326912e+01 moveto +8.865881e+01 1.110418e+01 lineto +8.903461e+01 1.155675e+01 lineto +9.193765e+01 1.377636e+01 lineto +9.151645e+01 1.326912e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.417335e+01 1.568184e+01 moveto +9.151645e+01 1.326912e+01 lineto +9.193765e+01 1.377636e+01 lineto +9.463675e+01 1.623991e+01 lineto +9.417335e+01 1.568184e+01 lineto +closepath +gsave +4.190066e-01 4.190066e-01 4.190066e-01 setrgbcolor +fill +grestore +newpath +9.417335e+01 1.568184e+01 moveto +9.151645e+01 1.326912e+01 lineto +9.193765e+01 1.377636e+01 lineto +9.463675e+01 1.623991e+01 lineto +9.417335e+01 1.568184e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.660939e+01 1.832409e+01 moveto +9.417335e+01 1.568184e+01 lineto +9.463675e+01 1.623991e+01 lineto +9.711149e+01 1.892876e+01 lineto +9.660939e+01 1.832409e+01 lineto +closepath +gsave +4.146468e-01 4.146468e-01 4.146468e-01 setrgbcolor +fill +grestore +newpath +9.660939e+01 1.832409e+01 moveto +9.417335e+01 1.568184e+01 lineto +9.463675e+01 1.623991e+01 lineto +9.711149e+01 1.892876e+01 lineto +9.660939e+01 1.832409e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.817806e+01 8.755478e+01 moveto +6.174842e+01 8.79321e+01 lineto +6.169677e+01 8.78699e+01 lineto +5.806969e+01 8.742428e+01 lineto +5.817806e+01 8.755478e+01 lineto +closepath +gsave +4.829689e-01 4.829689e-01 4.829689e-01 setrgbcolor +fill +grestore +newpath +5.817806e+01 8.755478e+01 moveto +6.174842e+01 8.79321e+01 lineto +6.169677e+01 8.78699e+01 lineto +5.806969e+01 8.742428e+01 lineto +5.817806e+01 8.755478e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.465934e+01 8.686286e+01 moveto +5.817806e+01 8.755478e+01 lineto +5.806969e+01 8.742428e+01 lineto +5.449508e+01 8.666506e+01 lineto +5.465934e+01 8.686286e+01 lineto +closepath +gsave +4.70116e-01 4.70116e-01 4.70116e-01 setrgbcolor +fill +grestore +newpath +5.465934e+01 8.686286e+01 moveto +5.817806e+01 8.755478e+01 lineto +5.806969e+01 8.742428e+01 lineto +5.449508e+01 8.666506e+01 lineto +5.465934e+01 8.686286e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.121891e+01 8.58616e+01 moveto +5.465934e+01 8.686286e+01 lineto +5.449508e+01 8.666506e+01 lineto +5.1e+01 8.559798e+01 lineto +5.121891e+01 8.58616e+01 lineto +closepath +gsave +4.58514e-01 4.58514e-01 4.58514e-01 setrgbcolor +fill +grestore +newpath +5.121891e+01 8.58616e+01 moveto +5.465934e+01 8.686286e+01 lineto +5.449508e+01 8.666506e+01 lineto +5.1e+01 8.559798e+01 lineto +5.121891e+01 8.58616e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.865089e+01 4.158979e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.868546e+01 4.227726e+00 lineto +6.865089e+01 4.158979e+00 lineto +closepath +gsave +4.961337e-01 4.961337e-01 4.961337e-01 setrgbcolor +fill +grestore +newpath +6.865089e+01 4.158979e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.868546e+01 4.227726e+00 lineto +6.865089e+01 4.158979e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.227414e+01 4.634713e+00 moveto +6.865089e+01 4.158979e+00 lineto +6.868546e+01 4.227726e+00 lineto +7.234303e+01 4.771687e+00 lineto +7.227414e+01 4.634713e+00 lineto +closepath +gsave +4.831474e-01 4.831474e-01 4.831474e-01 setrgbcolor +fill +grestore +newpath +7.227414e+01 4.634713e+00 moveto +6.865089e+01 4.158979e+00 lineto +6.868546e+01 4.227726e+00 lineto +7.234303e+01 4.771687e+00 lineto +7.227414e+01 4.634713e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.584232e+01 5.423601e+00 moveto +7.227414e+01 4.634713e+00 lineto +7.234303e+01 4.771687e+00 lineto +7.5945e+01 5.627764e+00 lineto +7.584232e+01 5.423601e+00 lineto +closepath +gsave +4.711211e-01 4.711211e-01 4.711211e-01 setrgbcolor +fill +grestore +newpath +7.584232e+01 5.423601e+00 moveto +7.227414e+01 4.634713e+00 lineto +7.234303e+01 4.771687e+00 lineto +7.5945e+01 5.627764e+00 lineto +7.584232e+01 5.423601e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.932842e+01 6.51967e+00 moveto +7.584232e+01 5.423601e+00 lineto +7.5945e+01 5.627764e+00 lineto +7.946412e+01 6.789476e+00 lineto +7.932842e+01 6.51967e+00 lineto +closepath +gsave +4.601543e-01 4.601543e-01 4.601543e-01 setrgbcolor +fill +grestore +newpath +7.932842e+01 6.51967e+00 moveto +7.584232e+01 5.423601e+00 lineto +7.5945e+01 5.627764e+00 lineto +7.946412e+01 6.789476e+00 lineto +7.932842e+01 6.51967e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.270604e+01 7.914622e+00 moveto +7.932842e+01 6.51967e+00 lineto +7.946412e+01 6.789476e+00 lineto +8.287373e+01 8.24803e+00 lineto +8.270604e+01 7.914622e+00 lineto +closepath +gsave +4.503052e-01 4.503052e-01 4.503052e-01 setrgbcolor +fill +grestore +newpath +8.270604e+01 7.914622e+00 moveto +7.932842e+01 6.51967e+00 lineto +7.946412e+01 6.789476e+00 lineto +8.287373e+01 8.24803e+00 lineto +8.270604e+01 7.914622e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.594963e+01 9.597897e+00 moveto +8.270604e+01 7.914622e+00 lineto +8.287373e+01 8.24803e+00 lineto +8.614804e+01 9.992382e+00 lineto +8.594963e+01 9.597897e+00 lineto +closepath +gsave +4.415932e-01 4.415932e-01 4.415932e-01 setrgbcolor +fill +grestore +newpath +8.594963e+01 9.597897e+00 moveto +8.270604e+01 7.914622e+00 lineto +8.287373e+01 8.24803e+00 lineto +8.614804e+01 9.992382e+00 lineto +8.594963e+01 9.597897e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.903461e+01 1.155675e+01 moveto +8.594963e+01 9.597897e+00 lineto +8.614804e+01 9.992382e+00 lineto +8.926224e+01 1.200933e+01 lineto +8.903461e+01 1.155675e+01 lineto +closepath +gsave +4.340031e-01 4.340031e-01 4.340031e-01 setrgbcolor +fill +grestore +newpath +8.903461e+01 1.155675e+01 moveto +8.594963e+01 9.597897e+00 lineto +8.614804e+01 9.992382e+00 lineto +8.926224e+01 1.200933e+01 lineto +8.903461e+01 1.155675e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.193765e+01 1.377636e+01 moveto +8.903461e+01 1.155675e+01 lineto +8.926224e+01 1.200933e+01 lineto +9.219277e+01 1.42836e+01 lineto +9.193765e+01 1.377636e+01 lineto +closepath +gsave +4.274902e-01 4.274902e-01 4.274902e-01 setrgbcolor +fill +grestore +newpath +9.193765e+01 1.377636e+01 moveto +8.903461e+01 1.155675e+01 lineto +8.926224e+01 1.200933e+01 lineto +9.219277e+01 1.42836e+01 lineto +9.193765e+01 1.377636e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.463675e+01 1.623991e+01 moveto +9.193765e+01 1.377636e+01 lineto +9.219277e+01 1.42836e+01 lineto +9.491743e+01 1.679798e+01 lineto +9.463675e+01 1.623991e+01 lineto +closepath +gsave +4.219862e-01 4.219862e-01 4.219862e-01 setrgbcolor +fill +grestore +newpath +9.463675e+01 1.623991e+01 moveto +9.193765e+01 1.377636e+01 lineto +9.219277e+01 1.42836e+01 lineto +9.491743e+01 1.679798e+01 lineto +9.463675e+01 1.623991e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.711149e+01 1.892876e+01 moveto +9.463675e+01 1.623991e+01 lineto +9.491743e+01 1.679798e+01 lineto +9.741561e+01 1.953342e+01 lineto +9.711149e+01 1.892876e+01 lineto +closepath +gsave +4.174057e-01 4.174057e-01 4.174057e-01 setrgbcolor +fill +grestore +newpath +9.711149e+01 1.892876e+01 moveto +9.463675e+01 1.623991e+01 lineto +9.491743e+01 1.679798e+01 lineto +9.741561e+01 1.953342e+01 lineto +9.711149e+01 1.892876e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.934314e+01 2.182255e+01 moveto +9.711149e+01 1.892876e+01 lineto +9.741561e+01 1.953342e+01 lineto +9.966839e+01 2.246924e+01 lineto +9.934314e+01 2.182255e+01 lineto +closepath +gsave +4.136517e-01 4.136517e-01 4.136517e-01 setrgbcolor +fill +grestore +newpath +9.934314e+01 2.182255e+01 moveto +9.711149e+01 1.892876e+01 lineto +9.741561e+01 1.953342e+01 lineto +9.966839e+01 2.246924e+01 lineto +9.934314e+01 2.182255e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.013148e+02 2.489938e+01 moveto +9.934314e+01 2.182255e+01 lineto +9.966839e+01 2.246924e+01 lineto +1.016587e+02 2.558319e+01 lineto +1.013148e+02 2.489938e+01 lineto +closepath +gsave +4.106222e-01 4.106222e-01 4.106222e-01 setrgbcolor +fill +grestore +newpath +1.013148e+02 2.489938e+01 moveto +9.934314e+01 2.182255e+01 lineto +9.966839e+01 2.246924e+01 lineto +1.016587e+02 2.558319e+01 lineto +1.013148e+02 2.489938e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.030115e+02 2.813594e+01 moveto +1.013148e+02 2.489938e+01 lineto +1.016587e+02 2.558319e+01 lineto +1.033715e+02 2.88517e+01 lineto +1.030115e+02 2.813594e+01 lineto +closepath +gsave +4.082145e-01 4.082145e-01 4.082145e-01 setrgbcolor +fill +grestore +newpath +1.030115e+02 2.813594e+01 moveto +1.013148e+02 2.489938e+01 lineto +1.016587e+02 2.558319e+01 lineto +1.033715e+02 2.88517e+01 lineto +1.030115e+02 2.813594e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.806969e+01 8.742428e+01 moveto +6.169677e+01 8.78699e+01 lineto +6.166548e+01 8.78077e+01 lineto +5.800406e+01 8.729378e+01 lineto +5.806969e+01 8.742428e+01 lineto +closepath +gsave +4.843473e-01 4.843473e-01 4.843473e-01 setrgbcolor +fill +grestore +newpath +5.806969e+01 8.742428e+01 moveto +6.169677e+01 8.78699e+01 lineto +6.166548e+01 8.78077e+01 lineto +5.800406e+01 8.729378e+01 lineto +5.806969e+01 8.742428e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.449508e+01 8.666506e+01 moveto +5.806969e+01 8.742428e+01 lineto +5.800406e+01 8.729378e+01 lineto +5.439559e+01 8.646725e+01 lineto +5.449508e+01 8.666506e+01 lineto +closepath +gsave +4.722243e-01 4.722243e-01 4.722243e-01 setrgbcolor +fill +grestore +newpath +5.449508e+01 8.666506e+01 moveto +5.806969e+01 8.742428e+01 lineto +5.800406e+01 8.729378e+01 lineto +5.439559e+01 8.646725e+01 lineto +5.449508e+01 8.666506e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.1e+01 8.559798e+01 moveto +5.449508e+01 8.666506e+01 lineto +5.439559e+01 8.646725e+01 lineto +5.086741e+01 8.533436e+01 lineto +5.1e+01 8.559798e+01 lineto +closepath +gsave +4.611532e-01 4.611532e-01 4.611532e-01 setrgbcolor +fill +grestore +newpath +5.1e+01 8.559798e+01 moveto +5.449508e+01 8.666506e+01 lineto +5.439559e+01 8.646725e+01 lineto +5.086741e+01 8.533436e+01 lineto +5.1e+01 8.559798e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.868546e+01 4.227726e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.869732e+01 4.296049e+00 lineto +6.868546e+01 4.227726e+00 lineto +closepath +gsave +4.96715e-01 4.96715e-01 4.96715e-01 setrgbcolor +fill +grestore +newpath +6.868546e+01 4.227726e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.869732e+01 4.296049e+00 lineto +6.868546e+01 4.227726e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.234303e+01 4.771687e+00 moveto +6.868546e+01 4.227726e+00 lineto +6.869732e+01 4.296049e+00 lineto +7.236665e+01 4.907815e+00 lineto +7.234303e+01 4.771687e+00 lineto +closepath +gsave +4.847334e-01 4.847334e-01 4.847334e-01 setrgbcolor +fill +grestore +newpath +7.234303e+01 4.771687e+00 moveto +6.868546e+01 4.227726e+00 lineto +6.869732e+01 4.296049e+00 lineto +7.236665e+01 4.907815e+00 lineto +7.234303e+01 4.771687e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.5945e+01 5.627764e+00 moveto +7.234303e+01 4.771687e+00 lineto +7.236665e+01 4.907815e+00 lineto +7.598021e+01 5.830668e+00 lineto +7.5945e+01 5.627764e+00 lineto +closepath +gsave +4.735019e-01 4.735019e-01 4.735019e-01 setrgbcolor +fill +grestore +newpath +7.5945e+01 5.627764e+00 moveto +7.234303e+01 4.771687e+00 lineto +7.236665e+01 4.907815e+00 lineto +7.598021e+01 5.830668e+00 lineto +7.5945e+01 5.627764e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.946412e+01 6.789476e+00 moveto +7.5945e+01 5.627764e+00 lineto +7.598021e+01 5.830668e+00 lineto +7.951064e+01 7.057619e+00 lineto +7.946412e+01 6.789476e+00 lineto +closepath +gsave +4.631279e-01 4.631279e-01 4.631279e-01 setrgbcolor +fill +grestore +newpath +7.946412e+01 6.789476e+00 moveto +7.5945e+01 5.627764e+00 lineto +7.598021e+01 5.830668e+00 lineto +7.951064e+01 7.057619e+00 lineto +7.946412e+01 6.789476e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.287373e+01 8.24803e+00 moveto +7.946412e+01 6.789476e+00 lineto +7.951064e+01 7.057619e+00 lineto +8.293123e+01 8.579382e+00 lineto +8.287373e+01 8.24803e+00 lineto +closepath +gsave +4.536833e-01 4.536833e-01 4.536833e-01 setrgbcolor +fill +grestore +newpath +8.287373e+01 8.24803e+00 moveto +7.946412e+01 6.789476e+00 lineto +7.951064e+01 7.057619e+00 lineto +8.293123e+01 8.579382e+00 lineto +8.287373e+01 8.24803e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.614804e+01 9.992382e+00 moveto +8.287373e+01 8.24803e+00 lineto +8.293123e+01 8.579382e+00 lineto +8.621606e+01 1.038444e+01 lineto +8.614804e+01 9.992382e+00 lineto +closepath +gsave +4.452064e-01 4.452064e-01 4.452064e-01 setrgbcolor +fill +grestore +newpath +8.614804e+01 9.992382e+00 moveto +8.287373e+01 8.24803e+00 lineto +8.293123e+01 8.579382e+00 lineto +8.621606e+01 1.038444e+01 lineto +8.614804e+01 9.992382e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.926224e+01 1.200933e+01 moveto +8.614804e+01 9.992382e+00 lineto +8.621606e+01 1.038444e+01 lineto +8.934028e+01 1.245911e+01 lineto +8.926224e+01 1.200933e+01 lineto +closepath +gsave +4.377042e-01 4.377042e-01 4.377042e-01 setrgbcolor +fill +grestore +newpath +8.926224e+01 1.200933e+01 moveto +8.614804e+01 9.992382e+00 lineto +8.621606e+01 1.038444e+01 lineto +8.934028e+01 1.245911e+01 lineto +8.926224e+01 1.200933e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.219277e+01 1.42836e+01 moveto +8.926224e+01 1.200933e+01 lineto +8.934028e+01 1.245911e+01 lineto +9.228024e+01 1.478771e+01 lineto +9.219277e+01 1.42836e+01 lineto +closepath +gsave +4.311568e-01 4.311568e-01 4.311568e-01 setrgbcolor +fill +grestore +newpath +9.219277e+01 1.42836e+01 moveto +8.926224e+01 1.200933e+01 lineto +8.934028e+01 1.245911e+01 lineto +9.228024e+01 1.478771e+01 lineto +9.219277e+01 1.42836e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.491743e+01 1.679798e+01 moveto +9.219277e+01 1.42836e+01 lineto +9.228024e+01 1.478771e+01 lineto +9.501367e+01 1.73526e+01 lineto +9.491743e+01 1.679798e+01 lineto +closepath +gsave +4.255213e-01 4.255213e-01 4.255213e-01 setrgbcolor +fill +grestore +newpath +9.491743e+01 1.679798e+01 moveto +9.219277e+01 1.42836e+01 lineto +9.228024e+01 1.478771e+01 lineto +9.501367e+01 1.73526e+01 lineto +9.491743e+01 1.679798e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.741561e+01 1.953342e+01 moveto +9.491743e+01 1.679798e+01 lineto +9.501367e+01 1.73526e+01 lineto +9.751988e+01 2.013436e+01 lineto +9.741561e+01 1.953342e+01 lineto +closepath +gsave +4.207372e-01 4.207372e-01 4.207372e-01 setrgbcolor +fill +grestore +newpath +9.741561e+01 1.953342e+01 moveto +9.491743e+01 1.679798e+01 lineto +9.501367e+01 1.73526e+01 lineto +9.751988e+01 2.013436e+01 lineto +9.741561e+01 1.953342e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.966839e+01 2.246924e+01 moveto +9.741561e+01 1.953342e+01 lineto +9.751988e+01 2.013436e+01 lineto +9.977991e+01 2.311194e+01 lineto +9.966839e+01 2.246924e+01 lineto +closepath +gsave +4.167309e-01 4.167309e-01 4.167309e-01 setrgbcolor +fill +grestore +newpath +9.966839e+01 2.246924e+01 moveto +9.741561e+01 1.953342e+01 lineto +9.751988e+01 2.013436e+01 lineto +9.977991e+01 2.311194e+01 lineto +9.966839e+01 2.246924e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.016587e+02 2.558319e+01 moveto +9.966839e+01 2.246924e+01 lineto +9.977991e+01 2.311194e+01 lineto +1.017766e+02 2.626279e+01 lineto +1.016587e+02 2.558319e+01 lineto +closepath +gsave +4.134214e-01 4.134214e-01 4.134214e-01 setrgbcolor +fill +grestore +newpath +1.016587e+02 2.558319e+01 moveto +9.966839e+01 2.246924e+01 lineto +9.977991e+01 2.311194e+01 lineto +1.017766e+02 2.626279e+01 lineto +1.016587e+02 2.558319e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.033715e+02 2.88517e+01 moveto +1.016587e+02 2.558319e+01 lineto +1.017766e+02 2.626279e+01 lineto +1.034949e+02 2.956306e+01 lineto +1.033715e+02 2.88517e+01 lineto +closepath +gsave +4.107238e-01 4.107238e-01 4.107238e-01 setrgbcolor +fill +grestore +newpath +1.033715e+02 2.88517e+01 moveto +1.016587e+02 2.558319e+01 lineto +1.017766e+02 2.626279e+01 lineto +1.034949e+02 2.956306e+01 lineto +1.033715e+02 2.88517e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.047938e+02 3.225004e+01 moveto +1.033715e+02 2.88517e+01 lineto +1.034949e+02 2.956306e+01 lineto +1.049218e+02 3.298776e+01 lineto +1.047938e+02 3.225004e+01 lineto +closepath +gsave +4.085542e-01 4.085542e-01 4.085542e-01 setrgbcolor +fill +grestore +newpath +1.047938e+02 3.225004e+01 moveto +1.033715e+02 2.88517e+01 lineto +1.034949e+02 2.956306e+01 lineto +1.049218e+02 3.298776e+01 lineto +1.047938e+02 3.225004e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.059149e+02 3.575247e+01 moveto +1.047938e+02 3.225004e+01 lineto +1.049218e+02 3.298776e+01 lineto +1.060465e+02 3.651097e+01 lineto +1.059149e+02 3.575247e+01 lineto +closepath +gsave +4.06832e-01 4.06832e-01 4.06832e-01 setrgbcolor +fill +grestore +newpath +1.059149e+02 3.575247e+01 moveto +1.047938e+02 3.225004e+01 lineto +1.049218e+02 3.298776e+01 lineto +1.060465e+02 3.651097e+01 lineto +1.059149e+02 3.575247e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.067262e+02 3.933248e+01 moveto +1.059149e+02 3.575247e+01 lineto +1.060465e+02 3.651097e+01 lineto +1.068604e+02 4.010602e+01 lineto +1.067262e+02 3.933248e+01 lineto +closepath +gsave +4.054832e-01 4.054832e-01 4.054832e-01 setrgbcolor +fill +grestore +newpath +1.067262e+02 3.933248e+01 moveto +1.059149e+02 3.575247e+01 lineto +1.060465e+02 3.651097e+01 lineto +1.068604e+02 4.010602e+01 lineto +1.067262e+02 3.933248e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.800406e+01 8.729378e+01 moveto +6.166548e+01 8.78077e+01 lineto +6.165476e+01 8.774588e+01 lineto +5.798155e+01 8.716409e+01 lineto +5.800406e+01 8.729378e+01 lineto +closepath +gsave +4.858464e-01 4.858464e-01 4.858464e-01 setrgbcolor +fill +grestore +newpath +5.800406e+01 8.729378e+01 moveto +6.166548e+01 8.78077e+01 lineto +6.165476e+01 8.774588e+01 lineto +5.798155e+01 8.716409e+01 lineto +5.800406e+01 8.729378e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.439559e+01 8.646725e+01 moveto +5.800406e+01 8.729378e+01 lineto +5.798155e+01 8.716409e+01 lineto +5.436148e+01 8.627066e+01 lineto +5.439559e+01 8.646725e+01 lineto +closepath +gsave +4.745382e-01 4.745382e-01 4.745382e-01 setrgbcolor +fill +grestore +newpath +5.439559e+01 8.646725e+01 moveto +5.800406e+01 8.729378e+01 lineto +5.798155e+01 8.716409e+01 lineto +5.436148e+01 8.627066e+01 lineto +5.439559e+01 8.646725e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.086741e+01 8.533436e+01 moveto +5.439559e+01 8.646725e+01 lineto +5.436148e+01 8.627066e+01 lineto +5.082195e+01 8.507236e+01 lineto +5.086741e+01 8.533436e+01 lineto +closepath +gsave +4.640787e-01 4.640787e-01 4.640787e-01 setrgbcolor +fill +grestore +newpath +5.086741e+01 8.533436e+01 moveto +5.439559e+01 8.646725e+01 lineto +5.436148e+01 8.627066e+01 lineto +5.082195e+01 8.507236e+01 lineto +5.086741e+01 8.533436e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.869732e+01 4.296049e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.868638e+01 4.363527e+00 lineto +6.869732e+01 4.296049e+00 lineto +closepath +gsave +4.973361e-01 4.973361e-01 4.973361e-01 setrgbcolor +fill +grestore +newpath +6.869732e+01 4.296049e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.868638e+01 4.363527e+00 lineto +6.869732e+01 4.296049e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.236665e+01 4.907815e+00 moveto +6.869732e+01 4.296049e+00 lineto +6.868638e+01 4.363527e+00 lineto +7.234485e+01 5.042261e+00 lineto +7.236665e+01 4.907815e+00 lineto +closepath +gsave +4.864427e-01 4.864427e-01 4.864427e-01 setrgbcolor +fill +grestore +newpath +7.236665e+01 4.907815e+00 moveto +6.869732e+01 4.296049e+00 lineto +6.868638e+01 4.363527e+00 lineto +7.234485e+01 5.042261e+00 lineto +7.236665e+01 4.907815e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.598021e+01 5.830668e+00 moveto +7.236665e+01 4.907815e+00 lineto +7.234485e+01 5.042261e+00 lineto +7.594772e+01 6.031062e+00 lineto +7.598021e+01 5.830668e+00 lineto +closepath +gsave +4.760927e-01 4.760927e-01 4.760927e-01 setrgbcolor +fill +grestore +newpath +7.598021e+01 5.830668e+00 moveto +7.236665e+01 4.907815e+00 lineto +7.234485e+01 5.042261e+00 lineto +7.594772e+01 6.031062e+00 lineto +7.598021e+01 5.830668e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.951064e+01 7.057619e+00 moveto +7.598021e+01 5.830668e+00 lineto +7.594772e+01 6.031062e+00 lineto +7.946771e+01 7.322446e+00 lineto +7.951064e+01 7.057619e+00 lineto +closepath +gsave +4.663976e-01 4.663976e-01 4.663976e-01 setrgbcolor +fill +grestore +newpath +7.951064e+01 7.057619e+00 moveto +7.598021e+01 5.830668e+00 lineto +7.594772e+01 6.031062e+00 lineto +7.946771e+01 7.322446e+00 lineto +7.951064e+01 7.057619e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.293123e+01 8.579382e+00 moveto +7.951064e+01 7.057619e+00 lineto +7.946771e+01 7.322446e+00 lineto +8.287817e+01 8.906636e+00 lineto +8.293123e+01 8.579382e+00 lineto +closepath +gsave +4.574399e-01 4.574399e-01 4.574399e-01 setrgbcolor +fill +grestore +newpath +8.293123e+01 8.579382e+00 moveto +7.951064e+01 7.057619e+00 lineto +7.946771e+01 7.322446e+00 lineto +8.287817e+01 8.906636e+00 lineto +8.293123e+01 8.579382e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.621606e+01 1.038444e+01 moveto +8.293123e+01 8.579382e+00 lineto +8.287817e+01 8.906636e+00 lineto +8.615328e+01 1.077164e+01 lineto +8.621606e+01 1.038444e+01 lineto +closepath +gsave +4.492739e-01 4.492739e-01 4.492739e-01 setrgbcolor +fill +grestore +newpath +8.621606e+01 1.038444e+01 moveto +8.293123e+01 8.579382e+00 lineto +8.287817e+01 8.906636e+00 lineto +8.615328e+01 1.077164e+01 lineto +8.621606e+01 1.038444e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.934028e+01 1.245911e+01 moveto +8.621606e+01 1.038444e+01 lineto +8.615328e+01 1.077164e+01 lineto +8.926826e+01 1.290334e+01 lineto +8.934028e+01 1.245911e+01 lineto +closepath +gsave +4.419268e-01 4.419268e-01 4.419268e-01 setrgbcolor +fill +grestore +newpath +8.934028e+01 1.245911e+01 moveto +8.621606e+01 1.038444e+01 lineto +8.615328e+01 1.077164e+01 lineto +8.926826e+01 1.290334e+01 lineto +8.934028e+01 1.245911e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.228024e+01 1.478771e+01 moveto +8.934028e+01 1.245911e+01 lineto +8.926826e+01 1.290334e+01 lineto +9.219951e+01 1.528559e+01 lineto +9.228024e+01 1.478771e+01 lineto +closepath +gsave +4.35401e-01 4.35401e-01 4.35401e-01 setrgbcolor +fill +grestore +newpath +9.228024e+01 1.478771e+01 moveto +8.934028e+01 1.245911e+01 lineto +8.926826e+01 1.290334e+01 lineto +9.219951e+01 1.528559e+01 lineto +9.228024e+01 1.478771e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.501367e+01 1.73526e+01 moveto +9.228024e+01 1.478771e+01 lineto +9.219951e+01 1.528559e+01 lineto +9.492486e+01 1.790036e+01 lineto +9.501367e+01 1.73526e+01 lineto +closepath +gsave +4.29678e-01 4.29678e-01 4.29678e-01 setrgbcolor +fill +grestore +newpath +9.501367e+01 1.73526e+01 moveto +9.228024e+01 1.478771e+01 lineto +9.219951e+01 1.528559e+01 lineto +9.492486e+01 1.790036e+01 lineto +9.501367e+01 1.73526e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.751988e+01 2.013436e+01 moveto +9.501367e+01 1.73526e+01 lineto +9.492486e+01 1.790036e+01 lineto +9.742365e+01 2.072787e+01 lineto +9.751988e+01 2.013436e+01 lineto +closepath +gsave +4.247214e-01 4.247214e-01 4.247214e-01 setrgbcolor +fill +grestore +newpath +9.751988e+01 2.013436e+01 moveto +9.501367e+01 1.73526e+01 lineto +9.492486e+01 1.790036e+01 lineto +9.742365e+01 2.072787e+01 lineto +9.751988e+01 2.013436e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.977991e+01 2.311194e+01 moveto +9.751988e+01 2.013436e+01 lineto +9.742365e+01 2.072787e+01 lineto +9.967699e+01 2.374669e+01 lineto +9.977991e+01 2.311194e+01 lineto +closepath +gsave +4.204812e-01 4.204812e-01 4.204812e-01 setrgbcolor +fill +grestore +newpath +9.977991e+01 2.311194e+01 moveto +9.751988e+01 2.013436e+01 lineto +9.742365e+01 2.072787e+01 lineto +9.967699e+01 2.374669e+01 lineto +9.977991e+01 2.311194e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.017766e+02 2.626279e+01 moveto +9.977991e+01 2.311194e+01 lineto +9.967699e+01 2.374669e+01 lineto +1.016678e+02 2.693398e+01 lineto +1.017766e+02 2.626279e+01 lineto +closepath +gsave +4.168977e-01 4.168977e-01 4.168977e-01 setrgbcolor +fill +grestore +newpath +1.017766e+02 2.626279e+01 moveto +9.977991e+01 2.311194e+01 lineto +9.967699e+01 2.374669e+01 lineto +1.016678e+02 2.693398e+01 lineto +1.017766e+02 2.626279e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.034949e+02 2.956306e+01 moveto +1.017766e+02 2.626279e+01 lineto +1.016678e+02 2.693398e+01 lineto +1.03381e+02 3.026561e+01 lineto +1.034949e+02 2.956306e+01 lineto +closepath +gsave +4.139052e-01 4.139052e-01 4.139052e-01 setrgbcolor +fill +grestore +newpath +1.034949e+02 2.956306e+01 moveto +1.017766e+02 2.626279e+01 lineto +1.016678e+02 2.693398e+01 lineto +1.03381e+02 3.026561e+01 lineto +1.034949e+02 2.956306e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.049218e+02 3.298776e+01 moveto +1.034949e+02 2.956306e+01 lineto +1.03381e+02 3.026561e+01 lineto +1.048037e+02 3.371635e+01 lineto +1.049218e+02 3.298776e+01 lineto +closepath +gsave +4.114356e-01 4.114356e-01 4.114356e-01 setrgbcolor +fill +grestore +newpath +1.049218e+02 3.298776e+01 moveto +1.034949e+02 2.956306e+01 lineto +1.03381e+02 3.026561e+01 lineto +1.048037e+02 3.371635e+01 lineto +1.049218e+02 3.298776e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.060465e+02 3.651097e+01 moveto +1.049218e+02 3.298776e+01 lineto +1.048037e+02 3.371635e+01 lineto +1.05925e+02 3.726009e+01 lineto +1.060465e+02 3.651097e+01 lineto +closepath +gsave +4.094215e-01 4.094215e-01 4.094215e-01 setrgbcolor +fill +grestore +newpath +1.060465e+02 3.651097e+01 moveto +1.049218e+02 3.298776e+01 lineto +1.048037e+02 3.371635e+01 lineto +1.05925e+02 3.726009e+01 lineto +1.060465e+02 3.651097e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.068604e+02 4.010602e+01 moveto +1.060465e+02 3.651097e+01 lineto +1.05925e+02 3.726009e+01 lineto +1.067365e+02 4.086999e+01 lineto +1.068604e+02 4.010602e+01 lineto +closepath +gsave +4.077984e-01 4.077984e-01 4.077984e-01 setrgbcolor +fill +grestore +newpath +1.068604e+02 4.010602e+01 moveto +1.060465e+02 3.651097e+01 lineto +1.05925e+02 3.726009e+01 lineto +1.067365e+02 4.086999e+01 lineto +1.068604e+02 4.010602e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.073574e+02 4.374569e+01 moveto +1.068604e+02 4.010602e+01 lineto +1.067365e+02 4.086999e+01 lineto +1.072321e+02 4.451873e+01 lineto +1.073574e+02 4.374569e+01 lineto +closepath +gsave +4.06507e-01 4.06507e-01 4.06507e-01 setrgbcolor +fill +grestore +newpath +1.073574e+02 4.374569e+01 moveto +1.068604e+02 4.010602e+01 lineto +1.067365e+02 4.086999e+01 lineto +1.072321e+02 4.451873e+01 lineto +1.073574e+02 4.374569e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.075338e+02 4.740242e+01 moveto +1.073574e+02 4.374569e+01 lineto +1.072321e+02 4.451873e+01 lineto +1.074079e+02 4.817868e+01 lineto +1.075338e+02 4.740242e+01 lineto +closepath +gsave +4.05494e-01 4.05494e-01 4.05494e-01 setrgbcolor +fill +grestore +newpath +1.075338e+02 4.740242e+01 moveto +1.073574e+02 4.374569e+01 lineto +1.072321e+02 4.451873e+01 lineto +1.074079e+02 4.817868e+01 lineto +1.075338e+02 4.740242e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.073881e+02 5.104854e+01 moveto +1.075338e+02 4.740242e+01 lineto +1.074079e+02 4.817868e+01 lineto +1.072627e+02 5.182214e+01 lineto +1.073881e+02 5.104854e+01 lineto +closepath +gsave +4.047133e-01 4.047133e-01 4.047133e-01 setrgbcolor +fill +grestore +newpath +1.073881e+02 5.104854e+01 moveto +1.075338e+02 4.740242e+01 lineto +1.074079e+02 4.817868e+01 lineto +1.072627e+02 5.182214e+01 lineto +1.073881e+02 5.104854e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.069216e+02 5.465643e+01 moveto +1.073881e+02 5.104854e+01 lineto +1.072627e+02 5.182214e+01 lineto +1.067975e+02 5.542152e+01 lineto +1.069216e+02 5.465643e+01 lineto +closepath +gsave +4.041263e-01 4.041263e-01 4.041263e-01 setrgbcolor +fill +grestore +newpath +1.069216e+02 5.465643e+01 moveto +1.073881e+02 5.104854e+01 lineto +1.072627e+02 5.182214e+01 lineto +1.067975e+02 5.542152e+01 lineto +1.069216e+02 5.465643e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.798155e+01 8.716409e+01 moveto +6.165476e+01 8.774588e+01 lineto +6.166466e+01 8.768483e+01 lineto +5.800232e+01 8.703599e+01 lineto +5.798155e+01 8.716409e+01 lineto +closepath +gsave +4.874608e-01 4.874608e-01 4.874608e-01 setrgbcolor +fill +grestore +newpath +5.798155e+01 8.716409e+01 moveto +6.165476e+01 8.774588e+01 lineto +6.166466e+01 8.768483e+01 lineto +5.800232e+01 8.703599e+01 lineto +5.798155e+01 8.716409e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.436148e+01 8.627066e+01 moveto +5.798155e+01 8.716409e+01 lineto +5.800232e+01 8.703599e+01 lineto +5.439296e+01 8.60765e+01 lineto +5.436148e+01 8.627066e+01 lineto +closepath +gsave +4.770537e-01 4.770537e-01 4.770537e-01 setrgbcolor +fill +grestore +newpath +5.436148e+01 8.627066e+01 moveto +5.798155e+01 8.716409e+01 lineto +5.800232e+01 8.703599e+01 lineto +5.439296e+01 8.60765e+01 lineto +5.436148e+01 8.627066e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.082195e+01 8.507236e+01 moveto +5.436148e+01 8.627066e+01 lineto +5.439296e+01 8.60765e+01 lineto +5.08639e+01 8.48136e+01 lineto +5.082195e+01 8.507236e+01 lineto +closepath +gsave +4.67292e-01 4.67292e-01 4.67292e-01 setrgbcolor +fill +grestore +newpath +5.082195e+01 8.507236e+01 moveto +5.436148e+01 8.627066e+01 lineto +5.439296e+01 8.60765e+01 lineto +5.08639e+01 8.48136e+01 lineto +5.082195e+01 8.507236e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.868638e+01 4.363527e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.865271e+01 4.429744e+00 lineto +6.868638e+01 4.363527e+00 lineto +closepath +gsave +4.979935e-01 4.979935e-01 4.979935e-01 setrgbcolor +fill +grestore +newpath +6.868638e+01 4.363527e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.865271e+01 4.429744e+00 lineto +6.868638e+01 4.363527e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.234485e+01 5.042261e+00 moveto +6.868638e+01 4.363527e+00 lineto +6.865271e+01 4.429744e+00 lineto +7.227777e+01 5.174193e+00 lineto +7.234485e+01 5.042261e+00 lineto +closepath +gsave +4.882689e-01 4.882689e-01 4.882689e-01 setrgbcolor +fill +grestore +newpath +7.234485e+01 5.042261e+00 moveto +6.868638e+01 4.363527e+00 lineto +6.865271e+01 4.429744e+00 lineto +7.227777e+01 5.174193e+00 lineto +7.234485e+01 5.042261e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.594772e+01 6.031062e+00 moveto +7.234485e+01 5.042261e+00 lineto +7.227777e+01 5.174193e+00 lineto +7.584773e+01 6.227711e+00 lineto +7.594772e+01 6.031062e+00 lineto +closepath +gsave +4.788883e-01 4.788883e-01 4.788883e-01 setrgbcolor +fill +grestore +newpath +7.594772e+01 6.031062e+00 moveto +7.234485e+01 5.042261e+00 lineto +7.227777e+01 5.174193e+00 lineto +7.584773e+01 6.227711e+00 lineto +7.594772e+01 6.031062e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.946771e+01 7.322446e+00 moveto +7.594772e+01 6.031062e+00 lineto +7.584773e+01 6.227711e+00 lineto +7.933557e+01 7.582323e+00 lineto +7.946771e+01 7.322446e+00 lineto +closepath +gsave +4.699637e-01 4.699637e-01 4.699637e-01 setrgbcolor +fill +grestore +newpath +7.946771e+01 7.322446e+00 moveto +7.594772e+01 6.031062e+00 lineto +7.584773e+01 6.227711e+00 lineto +7.933557e+01 7.582323e+00 lineto +7.946771e+01 7.322446e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.287817e+01 8.906636e+00 moveto +7.946771e+01 7.322446e+00 lineto +7.933557e+01 7.582323e+00 lineto +8.271488e+01 9.227774e+00 lineto +8.287817e+01 8.906636e+00 lineto +closepath +gsave +4.615846e-01 4.615846e-01 4.615846e-01 setrgbcolor +fill +grestore +newpath +8.287817e+01 8.906636e+00 moveto +7.946771e+01 7.322446e+00 lineto +7.933557e+01 7.582323e+00 lineto +8.271488e+01 9.227774e+00 lineto +8.287817e+01 8.906636e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.615328e+01 1.077164e+01 moveto +8.287817e+01 8.906636e+00 lineto +8.271488e+01 9.227774e+00 lineto +8.596009e+01 1.115161e+01 lineto +8.615328e+01 1.077164e+01 lineto +closepath +gsave +4.538175e-01 4.538175e-01 4.538175e-01 setrgbcolor +fill +grestore +newpath +8.615328e+01 1.077164e+01 moveto +8.287817e+01 8.906636e+00 lineto +8.271488e+01 9.227774e+00 lineto +8.596009e+01 1.115161e+01 lineto +8.615328e+01 1.077164e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.926826e+01 1.290334e+01 moveto +8.615328e+01 1.077164e+01 lineto +8.596009e+01 1.115161e+01 lineto +8.904661e+01 1.333926e+01 lineto +8.926826e+01 1.290334e+01 lineto +closepath +gsave +4.467063e-01 4.467063e-01 4.467063e-01 setrgbcolor +fill +grestore +newpath +8.926826e+01 1.290334e+01 moveto +8.615328e+01 1.077164e+01 lineto +8.596009e+01 1.115161e+01 lineto +8.904661e+01 1.333926e+01 lineto +8.926826e+01 1.290334e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.219951e+01 1.528559e+01 moveto +8.926826e+01 1.290334e+01 lineto +8.904661e+01 1.333926e+01 lineto +9.19511e+01 1.577416e+01 lineto +9.219951e+01 1.528559e+01 lineto +closepath +gsave +4.402737e-01 4.402737e-01 4.402737e-01 setrgbcolor +fill +grestore +newpath +9.219951e+01 1.528559e+01 moveto +8.926826e+01 1.290334e+01 lineto +8.904661e+01 1.333926e+01 lineto +9.19511e+01 1.577416e+01 lineto +9.219951e+01 1.528559e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.492486e+01 1.790036e+01 moveto +9.219951e+01 1.528559e+01 lineto +9.19511e+01 1.577416e+01 lineto +9.465155e+01 1.843789e+01 lineto +9.492486e+01 1.790036e+01 lineto +closepath +gsave +4.34523e-01 4.34523e-01 4.34523e-01 setrgbcolor +fill +grestore +newpath +9.492486e+01 1.790036e+01 moveto +9.219951e+01 1.528559e+01 lineto +9.19511e+01 1.577416e+01 lineto +9.465155e+01 1.843789e+01 lineto +9.492486e+01 1.790036e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.742365e+01 2.072787e+01 moveto +9.492486e+01 1.790036e+01 lineto +9.465155e+01 1.843789e+01 lineto +9.712752e+01 2.131028e+01 lineto +9.742365e+01 2.072787e+01 lineto +closepath +gsave +4.294408e-01 4.294408e-01 4.294408e-01 setrgbcolor +fill +grestore +newpath +9.742365e+01 2.072787e+01 moveto +9.492486e+01 1.790036e+01 lineto +9.465155e+01 1.843789e+01 lineto +9.712752e+01 2.131028e+01 lineto +9.742365e+01 2.072787e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.967699e+01 2.374669e+01 moveto +9.742365e+01 2.072787e+01 lineto +9.712752e+01 2.131028e+01 lineto +9.936028e+01 2.436958e+01 lineto +9.967699e+01 2.374669e+01 lineto +closepath +gsave +4.249997e-01 4.249997e-01 4.249997e-01 setrgbcolor +fill +grestore +newpath +9.967699e+01 2.374669e+01 moveto +9.742365e+01 2.072787e+01 lineto +9.712752e+01 2.131028e+01 lineto +9.936028e+01 2.436958e+01 lineto +9.967699e+01 2.374669e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.016678e+02 2.693398e+01 moveto +9.967699e+01 2.374669e+01 lineto +9.936028e+01 2.436958e+01 lineto +1.013329e+02 2.759263e+01 lineto +1.016678e+02 2.693398e+01 lineto +closepath +gsave +4.211616e-01 4.211616e-01 4.211616e-01 setrgbcolor +fill +grestore +newpath +1.016678e+02 2.693398e+01 moveto +9.967699e+01 2.374669e+01 lineto +9.936028e+01 2.436958e+01 lineto +1.013329e+02 2.759263e+01 lineto +1.016678e+02 2.693398e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.03381e+02 3.026561e+01 moveto +1.016678e+02 2.693398e+01 lineto +1.013329e+02 2.759263e+01 lineto +1.030305e+02 3.095503e+01 lineto +1.03381e+02 3.026561e+01 lineto +closepath +gsave +4.178803e-01 4.178803e-01 4.178803e-01 setrgbcolor +fill +grestore +newpath +1.03381e+02 3.026561e+01 moveto +1.016678e+02 2.693398e+01 lineto +1.013329e+02 2.759263e+01 lineto +1.030305e+02 3.095503e+01 lineto +1.03381e+02 3.026561e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.048037e+02 3.371635e+01 moveto +1.03381e+02 3.026561e+01 lineto +1.030305e+02 3.095503e+01 lineto +1.044402e+02 3.443133e+01 lineto +1.048037e+02 3.371635e+01 lineto +closepath +gsave +4.151052e-01 4.151052e-01 4.151052e-01 setrgbcolor +fill +grestore +newpath +1.048037e+02 3.371635e+01 moveto +1.03381e+02 3.026561e+01 lineto +1.030305e+02 3.095503e+01 lineto +1.044402e+02 3.443133e+01 lineto +1.048037e+02 3.371635e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.05925e+02 3.726009e+01 moveto +1.048037e+02 3.371635e+01 lineto +1.044402e+02 3.443133e+01 lineto +1.055513e+02 3.799521e+01 lineto +1.05925e+02 3.726009e+01 lineto +closepath +gsave +4.127831e-01 4.127831e-01 4.127831e-01 setrgbcolor +fill +grestore +newpath +1.05925e+02 3.726009e+01 moveto +1.048037e+02 3.371635e+01 lineto +1.044402e+02 3.443133e+01 lineto +1.055513e+02 3.799521e+01 lineto +1.05925e+02 3.726009e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.067365e+02 4.086999e+01 moveto +1.05925e+02 3.726009e+01 lineto +1.055513e+02 3.799521e+01 lineto +1.063554e+02 4.161969e+01 lineto +1.067365e+02 4.086999e+01 lineto +closepath +gsave +4.108613e-01 4.108613e-01 4.108613e-01 setrgbcolor +fill +grestore +newpath +1.067365e+02 4.086999e+01 moveto +1.05925e+02 3.726009e+01 lineto +1.055513e+02 3.799521e+01 lineto +1.063554e+02 4.161969e+01 lineto +1.067365e+02 4.086999e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.072321e+02 4.451873e+01 moveto +1.067365e+02 4.086999e+01 lineto +1.063554e+02 4.161969e+01 lineto +1.068464e+02 4.527733e+01 lineto +1.072321e+02 4.451873e+01 lineto +closepath +gsave +4.09289e-01 4.09289e-01 4.09289e-01 setrgbcolor +fill +grestore +newpath +1.072321e+02 4.451873e+01 moveto +1.067365e+02 4.086999e+01 lineto +1.063554e+02 4.161969e+01 lineto +1.068464e+02 4.527733e+01 lineto +1.072321e+02 4.451873e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.074079e+02 4.817868e+01 moveto +1.072321e+02 4.451873e+01 lineto +1.068464e+02 4.527733e+01 lineto +1.070206e+02 4.894044e+01 lineto +1.074079e+02 4.817868e+01 lineto +closepath +gsave +4.080192e-01 4.080192e-01 4.080192e-01 setrgbcolor +fill +grestore +newpath +1.074079e+02 4.817868e+01 moveto +1.072321e+02 4.451873e+01 lineto +1.068464e+02 4.527733e+01 lineto +1.070206e+02 4.894044e+01 lineto +1.074079e+02 4.817868e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.072627e+02 5.182214e+01 moveto +1.074079e+02 4.817868e+01 lineto +1.070206e+02 4.894044e+01 lineto +1.068767e+02 5.258129e+01 lineto +1.072627e+02 5.182214e+01 lineto +closepath +gsave +4.070095e-01 4.070095e-01 4.070095e-01 setrgbcolor +fill +grestore +newpath +1.072627e+02 5.182214e+01 moveto +1.074079e+02 4.817868e+01 lineto +1.070206e+02 4.894044e+01 lineto +1.068767e+02 5.258129e+01 lineto +1.072627e+02 5.182214e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.067975e+02 5.542152e+01 moveto +1.072627e+02 5.182214e+01 lineto +1.068767e+02 5.258129e+01 lineto +1.064158e+02 5.617232e+01 lineto +1.067975e+02 5.542152e+01 lineto +closepath +gsave +4.062232e-01 4.062232e-01 4.062232e-01 setrgbcolor +fill +grestore +newpath +1.067975e+02 5.542152e+01 moveto +1.072627e+02 5.182214e+01 lineto +1.068767e+02 5.258129e+01 lineto +1.064158e+02 5.617232e+01 lineto +1.067975e+02 5.542152e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.06016e+02 5.894958e+01 moveto +1.067975e+02 5.542152e+01 lineto +1.064158e+02 5.617232e+01 lineto +1.056414e+02 5.968633e+01 lineto +1.06016e+02 5.894958e+01 lineto +closepath +gsave +4.056294e-01 4.056294e-01 4.056294e-01 setrgbcolor +fill +grestore +newpath +1.06016e+02 5.894958e+01 moveto +1.067975e+02 5.542152e+01 lineto +1.064158e+02 5.617232e+01 lineto +1.056414e+02 5.968633e+01 lineto +1.06016e+02 5.894958e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.049239e+02 6.237961e+01 moveto +1.06016e+02 5.894958e+01 lineto +1.056414e+02 5.968633e+01 lineto +1.045592e+02 6.309674e+01 lineto +1.049239e+02 6.237961e+01 lineto +closepath +gsave +4.052032e-01 4.052032e-01 4.052032e-01 setrgbcolor +fill +grestore +newpath +1.049239e+02 6.237961e+01 moveto +1.06016e+02 5.894958e+01 lineto +1.056414e+02 5.968633e+01 lineto +1.045592e+02 6.309674e+01 lineto +1.049239e+02 6.237961e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.035295e+02 6.568563e+01 moveto +1.049239e+02 6.237961e+01 lineto +1.045592e+02 6.309674e+01 lineto +1.031776e+02 6.637772e+01 lineto +1.035295e+02 6.568563e+01 lineto +closepath +gsave +4.049261e-01 4.049261e-01 4.049261e-01 setrgbcolor +fill +grestore +newpath +1.035295e+02 6.568563e+01 moveto +1.049239e+02 6.237961e+01 lineto +1.045592e+02 6.309674e+01 lineto +1.031776e+02 6.637772e+01 lineto +1.035295e+02 6.568563e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.800232e+01 8.703599e+01 moveto +6.166466e+01 8.768483e+01 lineto +6.169512e+01 8.762492e+01 lineto +5.806623e+01 8.69103e+01 lineto +5.800232e+01 8.703599e+01 lineto +closepath +gsave +4.89184e-01 4.89184e-01 4.89184e-01 setrgbcolor +fill +grestore +newpath +5.800232e+01 8.703599e+01 moveto +6.166466e+01 8.768483e+01 lineto +6.169512e+01 8.762492e+01 lineto +5.806623e+01 8.69103e+01 lineto +5.800232e+01 8.703599e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.439296e+01 8.60765e+01 moveto +5.800232e+01 8.703599e+01 lineto +5.806623e+01 8.69103e+01 lineto +5.448984e+01 8.588597e+01 lineto +5.439296e+01 8.60765e+01 lineto +closepath +gsave +4.797654e-01 4.797654e-01 4.797654e-01 setrgbcolor +fill +grestore +newpath +5.439296e+01 8.60765e+01 moveto +5.800232e+01 8.703599e+01 lineto +5.806623e+01 8.69103e+01 lineto +5.448984e+01 8.588597e+01 lineto +5.439296e+01 8.60765e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.08639e+01 8.48136e+01 moveto +5.439296e+01 8.60765e+01 lineto +5.448984e+01 8.588597e+01 lineto +5.099301e+01 8.455968e+01 lineto +5.08639e+01 8.48136e+01 lineto +closepath +gsave +4.707931e-01 4.707931e-01 4.707931e-01 setrgbcolor +fill +grestore +newpath +5.08639e+01 8.48136e+01 moveto +5.439296e+01 8.60765e+01 lineto +5.448984e+01 8.588597e+01 lineto +5.099301e+01 8.455968e+01 lineto +5.08639e+01 8.48136e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.865271e+01 4.429744e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.859652e+01 4.494291e+00 lineto +6.865271e+01 4.429744e+00 lineto +closepath +gsave +4.986836e-01 4.986836e-01 4.986836e-01 setrgbcolor +fill +grestore +newpath +6.865271e+01 4.429744e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.859652e+01 4.494291e+00 lineto +6.865271e+01 4.429744e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.227777e+01 5.174193e+00 moveto +6.865271e+01 4.429744e+00 lineto +6.859652e+01 4.494291e+00 lineto +7.216582e+01 5.302799e+00 lineto +7.227777e+01 5.174193e+00 lineto +closepath +gsave +4.902045e-01 4.902045e-01 4.902045e-01 setrgbcolor +fill +grestore +newpath +7.227777e+01 5.174193e+00 moveto +6.865271e+01 4.429744e+00 lineto +6.859652e+01 4.494291e+00 lineto +7.216582e+01 5.302799e+00 lineto +7.227777e+01 5.174193e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.584773e+01 6.227711e+00 moveto +7.227777e+01 5.174193e+00 lineto +7.216582e+01 5.302799e+00 lineto +7.568086e+01 6.419403e+00 lineto +7.584773e+01 6.227711e+00 lineto +closepath +gsave +4.818819e-01 4.818819e-01 4.818819e-01 setrgbcolor +fill +grestore +newpath +7.584773e+01 6.227711e+00 moveto +7.227777e+01 5.174193e+00 lineto +7.216582e+01 5.302799e+00 lineto +7.568086e+01 6.419403e+00 lineto +7.584773e+01 6.227711e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.933557e+01 7.582323e+00 moveto +7.584773e+01 6.227711e+00 lineto +7.568086e+01 6.419403e+00 lineto +7.911505e+01 7.835649e+00 lineto +7.933557e+01 7.582323e+00 lineto +closepath +gsave +4.738243e-01 4.738243e-01 4.738243e-01 setrgbcolor +fill +grestore +newpath +7.933557e+01 7.582323e+00 moveto +7.584773e+01 6.227711e+00 lineto +7.568086e+01 6.419403e+00 lineto +7.911505e+01 7.835649e+00 lineto +7.933557e+01 7.582323e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.271488e+01 9.227774e+00 moveto +7.933557e+01 7.582323e+00 lineto +7.911505e+01 7.835649e+00 lineto +8.244238e+01 9.540816e+00 lineto +8.271488e+01 9.227774e+00 lineto +closepath +gsave +4.661238e-01 4.661238e-01 4.661238e-01 setrgbcolor +fill +grestore +newpath +8.271488e+01 9.227774e+00 moveto +7.933557e+01 7.582323e+00 lineto +7.911505e+01 7.835649e+00 lineto +8.244238e+01 9.540816e+00 lineto +8.271488e+01 9.227774e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.596009e+01 1.115161e+01 moveto +8.271488e+01 9.227774e+00 lineto +8.244238e+01 9.540816e+00 lineto +8.563766e+01 1.152199e+01 lineto +8.596009e+01 1.115161e+01 lineto +closepath +gsave +4.588552e-01 4.588552e-01 4.588552e-01 setrgbcolor +fill +grestore +newpath +8.596009e+01 1.115161e+01 moveto +8.271488e+01 9.227774e+00 lineto +8.244238e+01 9.540816e+00 lineto +8.563766e+01 1.152199e+01 lineto +8.596009e+01 1.115161e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.904661e+01 1.333926e+01 moveto +8.596009e+01 1.115161e+01 lineto +8.563766e+01 1.152199e+01 lineto +8.867671e+01 1.376419e+01 lineto +8.904661e+01 1.333926e+01 lineto +closepath +gsave +4.520751e-01 4.520751e-01 4.520751e-01 setrgbcolor +fill +grestore +newpath +8.904661e+01 1.333926e+01 moveto +8.596009e+01 1.115161e+01 lineto +8.563766e+01 1.152199e+01 lineto +8.867671e+01 1.376419e+01 lineto +8.904661e+01 1.333926e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.19511e+01 1.577416e+01 moveto +8.904661e+01 1.333926e+01 lineto +8.867671e+01 1.376419e+01 lineto +9.153652e+01 1.625042e+01 lineto +9.19511e+01 1.577416e+01 lineto +closepath +gsave +4.45823e-01 4.45823e-01 4.45823e-01 setrgbcolor +fill +grestore +newpath +9.19511e+01 1.577416e+01 moveto +8.904661e+01 1.333926e+01 lineto +8.867671e+01 1.376419e+01 lineto +9.153652e+01 1.625042e+01 lineto +9.19511e+01 1.577416e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.465155e+01 1.843789e+01 moveto +9.19511e+01 1.577416e+01 lineto +9.153652e+01 1.625042e+01 lineto +9.419543e+01 1.896187e+01 lineto +9.465155e+01 1.843789e+01 lineto +closepath +gsave +4.401212e-01 4.401212e-01 4.401212e-01 setrgbcolor +fill +grestore +newpath +9.465155e+01 1.843789e+01 moveto +9.19511e+01 1.577416e+01 lineto +9.153652e+01 1.625042e+01 lineto +9.419543e+01 1.896187e+01 lineto +9.465155e+01 1.843789e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.712752e+01 2.131028e+01 moveto +9.465155e+01 1.843789e+01 lineto +9.419543e+01 1.896187e+01 lineto +9.663332e+01 2.187801e+01 lineto +9.712752e+01 2.131028e+01 lineto +closepath +gsave +4.349772e-01 4.349772e-01 4.349772e-01 setrgbcolor +fill +grestore +newpath +9.712752e+01 2.131028e+01 moveto +9.465155e+01 1.843789e+01 lineto +9.419543e+01 1.896187e+01 lineto +9.663332e+01 2.187801e+01 lineto +9.712752e+01 2.131028e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.936028e+01 2.436958e+01 moveto +9.712752e+01 2.131028e+01 lineto +9.663332e+01 2.187801e+01 lineto +9.883173e+01 2.497676e+01 lineto +9.936028e+01 2.436958e+01 lineto +closepath +gsave +4.303847e-01 4.303847e-01 4.303847e-01 setrgbcolor +fill +grestore +newpath +9.936028e+01 2.436958e+01 moveto +9.712752e+01 2.131028e+01 lineto +9.663332e+01 2.187801e+01 lineto +9.883173e+01 2.497676e+01 lineto +9.936028e+01 2.436958e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.013329e+02 2.759263e+01 moveto +9.936028e+01 2.436958e+01 lineto +9.883173e+01 2.497676e+01 lineto +1.00774e+02 2.823467e+01 lineto +1.013329e+02 2.759263e+01 lineto +closepath +gsave +4.263265e-01 4.263265e-01 4.263265e-01 setrgbcolor +fill +grestore +newpath +1.013329e+02 2.759263e+01 moveto +9.936028e+01 2.436958e+01 lineto +9.883173e+01 2.497676e+01 lineto +1.00774e+02 2.823467e+01 lineto +1.013329e+02 2.759263e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.030305e+02 3.095503e+01 moveto +1.013329e+02 2.759263e+01 lineto +1.00774e+02 2.823467e+01 lineto +1.024455e+02 3.162707e+01 lineto +1.030305e+02 3.095503e+01 lineto +closepath +gsave +4.227762e-01 4.227762e-01 4.227762e-01 setrgbcolor +fill +grestore +newpath +1.030305e+02 3.095503e+01 moveto +1.013329e+02 2.759263e+01 lineto +1.00774e+02 2.823467e+01 lineto +1.024455e+02 3.162707e+01 lineto +1.030305e+02 3.095503e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.044402e+02 3.443133e+01 moveto +1.030305e+02 3.095503e+01 lineto +1.024455e+02 3.162707e+01 lineto +1.038335e+02 3.512828e+01 lineto +1.044402e+02 3.443133e+01 lineto +closepath +gsave +4.19701e-01 4.19701e-01 4.19701e-01 setrgbcolor +fill +grestore +newpath +1.044402e+02 3.443133e+01 moveto +1.030305e+02 3.095503e+01 lineto +1.024455e+02 3.162707e+01 lineto +1.038335e+02 3.512828e+01 lineto +1.044402e+02 3.443133e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.055513e+02 3.799521e+01 moveto +1.044402e+02 3.443133e+01 lineto +1.038335e+02 3.512828e+01 lineto +1.049275e+02 3.871179e+01 lineto +1.055513e+02 3.799521e+01 lineto +closepath +gsave +4.170635e-01 4.170635e-01 4.170635e-01 setrgbcolor +fill +grestore +newpath +1.055513e+02 3.799521e+01 moveto +1.044402e+02 3.443133e+01 lineto +1.038335e+02 3.512828e+01 lineto +1.049275e+02 3.871179e+01 lineto +1.055513e+02 3.799521e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.063554e+02 4.161969e+01 moveto +1.055513e+02 3.799521e+01 lineto +1.049275e+02 3.871179e+01 lineto +1.057192e+02 4.235048e+01 lineto +1.063554e+02 4.161969e+01 lineto +closepath +gsave +4.148242e-01 4.148242e-01 4.148242e-01 setrgbcolor +fill +grestore +newpath +1.063554e+02 4.161969e+01 moveto +1.055513e+02 3.799521e+01 lineto +1.049275e+02 3.871179e+01 lineto +1.057192e+02 4.235048e+01 lineto +1.063554e+02 4.161969e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.068464e+02 4.527733e+01 moveto +1.063554e+02 4.161969e+01 lineto +1.057192e+02 4.235048e+01 lineto +1.062027e+02 4.60168e+01 lineto +1.068464e+02 4.527733e+01 lineto +closepath +gsave +4.129428e-01 4.129428e-01 4.129428e-01 setrgbcolor +fill +grestore +newpath +1.068464e+02 4.527733e+01 moveto +1.063554e+02 4.161969e+01 lineto +1.057192e+02 4.235048e+01 lineto +1.062027e+02 4.60168e+01 lineto +1.068464e+02 4.527733e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.070206e+02 4.894044e+01 moveto +1.068464e+02 4.527733e+01 lineto +1.062027e+02 4.60168e+01 lineto +1.063742e+02 4.968299e+01 lineto +1.070206e+02 4.894044e+01 lineto +closepath +gsave +4.113804e-01 4.113804e-01 4.113804e-01 setrgbcolor +fill +grestore +newpath +1.070206e+02 4.894044e+01 moveto +1.068464e+02 4.527733e+01 lineto +1.062027e+02 4.60168e+01 lineto +1.063742e+02 4.968299e+01 lineto +1.070206e+02 4.894044e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.068767e+02 5.258129e+01 moveto +1.070206e+02 4.894044e+01 lineto +1.063742e+02 4.968299e+01 lineto +1.062325e+02 5.33213e+01 lineto +1.068767e+02 5.258129e+01 lineto +closepath +gsave +4.101004e-01 4.101004e-01 4.101004e-01 setrgbcolor +fill +grestore +newpath +1.068767e+02 5.258129e+01 moveto +1.070206e+02 4.894044e+01 lineto +1.063742e+02 4.968299e+01 lineto +1.062325e+02 5.33213e+01 lineto +1.068767e+02 5.258129e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.064158e+02 5.617232e+01 moveto +1.068767e+02 5.258129e+01 lineto +1.062325e+02 5.33213e+01 lineto +1.057787e+02 5.690418e+01 lineto +1.064158e+02 5.617232e+01 lineto +closepath +gsave +4.090694e-01 4.090694e-01 4.090694e-01 setrgbcolor +fill +grestore +newpath +1.064158e+02 5.617232e+01 moveto +1.068767e+02 5.258129e+01 lineto +1.062325e+02 5.33213e+01 lineto +1.057787e+02 5.690418e+01 lineto +1.064158e+02 5.617232e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.056414e+02 5.968633e+01 moveto +1.064158e+02 5.617232e+01 lineto +1.057787e+02 5.690418e+01 lineto +1.050162e+02 6.040451e+01 lineto +1.056414e+02 5.968633e+01 lineto +closepath +gsave +4.082583e-01 4.082583e-01 4.082583e-01 setrgbcolor +fill +grestore +newpath +1.056414e+02 5.968633e+01 moveto +1.064158e+02 5.617232e+01 lineto +1.057787e+02 5.690418e+01 lineto +1.050162e+02 6.040451e+01 lineto +1.056414e+02 5.968633e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.045592e+02 6.309674e+01 moveto +1.056414e+02 5.968633e+01 lineto +1.050162e+02 6.040451e+01 lineto +1.039507e+02 6.37958e+01 lineto +1.045592e+02 6.309674e+01 lineto +closepath +gsave +4.076424e-01 4.076424e-01 4.076424e-01 setrgbcolor +fill +grestore +newpath +1.045592e+02 6.309674e+01 moveto +1.056414e+02 5.968633e+01 lineto +1.050162e+02 6.040451e+01 lineto +1.039507e+02 6.37958e+01 lineto +1.045592e+02 6.309674e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.031776e+02 6.637772e+01 moveto +1.045592e+02 6.309674e+01 lineto +1.039507e+02 6.37958e+01 lineto +1.025904e+02 6.705236e+01 lineto +1.031776e+02 6.637772e+01 lineto +closepath +gsave +4.072019e-01 4.072019e-01 4.072019e-01 setrgbcolor +fill +grestore +newpath +1.031776e+02 6.637772e+01 moveto +1.045592e+02 6.309674e+01 lineto +1.039507e+02 6.37958e+01 lineto +1.025904e+02 6.705236e+01 lineto +1.031776e+02 6.637772e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.01507e+02 6.950443e+01 moveto +1.031776e+02 6.637772e+01 lineto +1.025904e+02 6.705236e+01 lineto +1.009454e+02 7.014955e+01 lineto +1.01507e+02 6.950443e+01 lineto +closepath +gsave +4.069221e-01 4.069221e-01 4.069221e-01 setrgbcolor +fill +grestore +newpath +1.01507e+02 6.950443e+01 moveto +1.031776e+02 6.637772e+01 lineto +1.025904e+02 6.705236e+01 lineto +1.009454e+02 7.014955e+01 lineto +1.01507e+02 6.950443e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.956001e+01 7.24532e+01 moveto +1.01507e+02 6.950443e+01 lineto +1.009454e+02 7.014955e+01 lineto +9.902839e+01 7.306391e+01 lineto +9.956001e+01 7.24532e+01 lineto +closepath +gsave +4.067933e-01 4.067933e-01 4.067933e-01 setrgbcolor +fill +grestore +newpath +9.956001e+01 7.24532e+01 moveto +1.01507e+02 6.950443e+01 lineto +1.009454e+02 7.014955e+01 lineto +9.902839e+01 7.306391e+01 lineto +9.956001e+01 7.24532e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.735138e+01 7.52017e+01 moveto +9.956001e+01 7.24532e+01 lineto +9.902839e+01 7.306391e+01 lineto +9.685373e+01 7.577339e+01 lineto +9.735138e+01 7.52017e+01 lineto +closepath +gsave +4.068111e-01 4.068111e-01 4.068111e-01 setrgbcolor +fill +grestore +newpath +9.735138e+01 7.52017e+01 moveto +9.956001e+01 7.24532e+01 lineto +9.902839e+01 7.306391e+01 lineto +9.685373e+01 7.577339e+01 lineto +9.735138e+01 7.52017e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.806623e+01 8.69103e+01 moveto +6.169512e+01 8.762492e+01 lineto +6.174596e+01 8.756652e+01 lineto +5.817289e+01 8.678777e+01 lineto +5.806623e+01 8.69103e+01 lineto +closepath +gsave +4.910088e-01 4.910088e-01 4.910088e-01 setrgbcolor +fill +grestore +newpath +5.806623e+01 8.69103e+01 moveto +6.169512e+01 8.762492e+01 lineto +6.174596e+01 8.756652e+01 lineto +5.817289e+01 8.678777e+01 lineto +5.806623e+01 8.69103e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.448984e+01 8.588597e+01 moveto +5.806623e+01 8.69103e+01 lineto +5.817289e+01 8.678777e+01 lineto +5.465151e+01 8.570024e+01 lineto +5.448984e+01 8.588597e+01 lineto +closepath +gsave +4.826663e-01 4.826663e-01 4.826663e-01 setrgbcolor +fill +grestore +newpath +5.448984e+01 8.588597e+01 moveto +5.806623e+01 8.69103e+01 lineto +5.817289e+01 8.678777e+01 lineto +5.465151e+01 8.570024e+01 lineto +5.448984e+01 8.588597e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.099301e+01 8.455968e+01 moveto +5.448984e+01 8.588597e+01 lineto +5.465151e+01 8.570024e+01 lineto +5.120848e+01 8.431216e+01 lineto +5.099301e+01 8.455968e+01 lineto +closepath +gsave +4.745792e-01 4.745792e-01 4.745792e-01 setrgbcolor +fill +grestore +newpath +5.099301e+01 8.455968e+01 moveto +5.448984e+01 8.588597e+01 lineto +5.465151e+01 8.570024e+01 lineto +5.120848e+01 8.431216e+01 lineto +5.099301e+01 8.455968e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.859652e+01 4.494291e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.851816e+01 4.556772e+00 lineto +6.859652e+01 4.494291e+00 lineto +closepath +gsave +4.994026e-01 4.994026e-01 4.994026e-01 setrgbcolor +fill +grestore +newpath +6.859652e+01 4.494291e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.851816e+01 4.556772e+00 lineto +6.859652e+01 4.494291e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.216582e+01 5.302799e+00 moveto +6.859652e+01 4.494291e+00 lineto +6.851816e+01 4.556772e+00 lineto +7.200969e+01 5.427287e+00 lineto +7.216582e+01 5.302799e+00 lineto +closepath +gsave +4.922413e-01 4.922413e-01 4.922413e-01 setrgbcolor +fill +grestore +newpath +7.216582e+01 5.302799e+00 moveto +6.859652e+01 4.494291e+00 lineto +6.851816e+01 4.556772e+00 lineto +7.200969e+01 5.427287e+00 lineto +7.216582e+01 5.302799e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.568086e+01 6.419403e+00 moveto +7.216582e+01 5.302799e+00 lineto +7.200969e+01 5.427287e+00 lineto +7.544814e+01 6.604955e+00 lineto +7.568086e+01 6.419403e+00 lineto +closepath +gsave +4.850651e-01 4.850651e-01 4.850651e-01 setrgbcolor +fill +grestore +newpath +7.568086e+01 6.419403e+00 moveto +7.216582e+01 5.302799e+00 lineto +7.200969e+01 5.427287e+00 lineto +7.544814e+01 6.604955e+00 lineto +7.568086e+01 6.419403e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.911505e+01 7.835649e+00 moveto +7.568086e+01 6.419403e+00 lineto +7.544814e+01 6.604955e+00 lineto +7.880751e+01 8.080861e+00 lineto +7.911505e+01 7.835649e+00 lineto +closepath +gsave +4.779747e-01 4.779747e-01 4.779747e-01 setrgbcolor +fill +grestore +newpath +7.911505e+01 7.835649e+00 moveto +7.568086e+01 6.419403e+00 lineto +7.544814e+01 6.604955e+00 lineto +7.880751e+01 8.080861e+00 lineto +7.911505e+01 7.835649e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.244238e+01 9.540816e+00 moveto +7.911505e+01 7.835649e+00 lineto +7.880751e+01 8.080861e+00 lineto +8.206234e+01 9.843832e+00 lineto +8.244238e+01 9.540816e+00 lineto +closepath +gsave +4.710606e-01 4.710606e-01 4.710606e-01 setrgbcolor +fill +grestore +newpath +8.244238e+01 9.540816e+00 moveto +7.911505e+01 7.835649e+00 lineto +7.880751e+01 8.080861e+00 lineto +8.206234e+01 9.843832e+00 lineto +8.244238e+01 9.540816e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.563766e+01 1.152199e+01 moveto +8.244238e+01 9.540816e+00 lineto +8.206234e+01 9.843832e+00 lineto +8.5188e+01 1.188052e+01 lineto +8.563766e+01 1.152199e+01 lineto +closepath +gsave +4.644009e-01 4.644009e-01 4.644009e-01 setrgbcolor +fill +grestore +newpath +8.563766e+01 1.152199e+01 moveto +8.244238e+01 9.540816e+00 lineto +8.206234e+01 9.843832e+00 lineto +8.5188e+01 1.188052e+01 lineto +8.563766e+01 1.152199e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.867671e+01 1.376419e+01 moveto +8.563766e+01 1.152199e+01 lineto +8.5188e+01 1.188052e+01 lineto +8.816084e+01 1.417551e+01 lineto +8.867671e+01 1.376419e+01 lineto +closepath +gsave +4.580609e-01 4.580609e-01 4.580609e-01 setrgbcolor +fill +grestore +newpath +8.867671e+01 1.376419e+01 moveto +8.563766e+01 1.152199e+01 lineto +8.5188e+01 1.188052e+01 lineto +8.816084e+01 1.417551e+01 lineto +8.867671e+01 1.376419e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.153652e+01 1.625042e+01 moveto +8.867671e+01 1.376419e+01 lineto +8.816084e+01 1.417551e+01 lineto +9.095833e+01 1.671142e+01 lineto +9.153652e+01 1.625042e+01 lineto +closepath +gsave +4.520923e-01 4.520923e-01 4.520923e-01 setrgbcolor +fill +grestore +newpath +9.153652e+01 1.625042e+01 moveto +8.867671e+01 1.376419e+01 lineto +8.816084e+01 1.417551e+01 lineto +9.095833e+01 1.671142e+01 lineto +9.153652e+01 1.625042e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.419543e+01 1.896187e+01 moveto +9.153652e+01 1.625042e+01 lineto +9.095833e+01 1.671142e+01 lineto +9.355931e+01 1.946906e+01 lineto +9.419543e+01 1.896187e+01 lineto +closepath +gsave +4.465332e-01 4.465332e-01 4.465332e-01 setrgbcolor +fill +grestore +newpath +9.419543e+01 1.896187e+01 moveto +9.153652e+01 1.625042e+01 lineto +9.095833e+01 1.671142e+01 lineto +9.355931e+01 1.946906e+01 lineto +9.419543e+01 1.896187e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.663332e+01 2.187801e+01 moveto +9.419543e+01 1.896187e+01 lineto +9.355931e+01 1.946906e+01 lineto +9.594408e+01 2.242755e+01 lineto +9.663332e+01 2.187801e+01 lineto +closepath +gsave +4.414088e-01 4.414088e-01 4.414088e-01 setrgbcolor +fill +grestore +newpath +9.663332e+01 2.187801e+01 moveto +9.419543e+01 1.896187e+01 lineto +9.355931e+01 1.946906e+01 lineto +9.594408e+01 2.242755e+01 lineto +9.663332e+01 2.187801e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.883173e+01 2.497676e+01 moveto +9.663332e+01 2.187801e+01 lineto +9.594408e+01 2.242755e+01 lineto +9.809459e+01 2.55645e+01 lineto +9.883173e+01 2.497676e+01 lineto +closepath +gsave +4.36732e-01 4.36732e-01 4.36732e-01 setrgbcolor +fill +grestore +newpath +9.883173e+01 2.497676e+01 moveto +9.663332e+01 2.187801e+01 lineto +9.594408e+01 2.242755e+01 lineto +9.809459e+01 2.55645e+01 lineto +9.883173e+01 2.497676e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.00774e+02 2.823467e+01 moveto +9.883173e+01 2.497676e+01 lineto +9.809459e+01 2.55645e+01 lineto +9.999456e+01 2.885615e+01 lineto +1.00774e+02 2.823467e+01 lineto +closepath +gsave +4.325049e-01 4.325049e-01 4.325049e-01 setrgbcolor +fill +grestore +newpath +1.00774e+02 2.823467e+01 moveto +9.883173e+01 2.497676e+01 lineto +9.809459e+01 2.55645e+01 lineto +9.999456e+01 2.885615e+01 lineto +1.00774e+02 2.823467e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.024455e+02 3.162707e+01 moveto +1.00774e+02 2.823467e+01 lineto +9.999456e+01 2.885615e+01 lineto +1.016296e+02 3.227759e+01 lineto +1.024455e+02 3.162707e+01 lineto +closepath +gsave +4.287205e-01 4.287205e-01 4.287205e-01 setrgbcolor +fill +grestore +newpath +1.024455e+02 3.162707e+01 moveto +1.00774e+02 2.823467e+01 lineto +9.999456e+01 2.885615e+01 lineto +1.016296e+02 3.227759e+01 lineto +1.024455e+02 3.162707e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.038335e+02 3.512828e+01 moveto +1.024455e+02 3.162707e+01 lineto +1.016296e+02 3.227759e+01 lineto +1.029874e+02 3.580291e+01 lineto +1.038335e+02 3.512828e+01 lineto +closepath +gsave +4.253637e-01 4.253637e-01 4.253637e-01 setrgbcolor +fill +grestore +newpath +1.038335e+02 3.512828e+01 moveto +1.024455e+02 3.162707e+01 lineto +1.016296e+02 3.227759e+01 lineto +1.029874e+02 3.580291e+01 lineto +1.038335e+02 3.512828e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.049275e+02 3.871179e+01 moveto +1.038335e+02 3.512828e+01 lineto +1.029874e+02 3.580291e+01 lineto +1.040575e+02 3.940543e+01 lineto +1.049275e+02 3.871179e+01 lineto +closepath +gsave +4.224138e-01 4.224138e-01 4.224138e-01 setrgbcolor +fill +grestore +newpath +1.049275e+02 3.871179e+01 moveto +1.038335e+02 3.512828e+01 lineto +1.029874e+02 3.580291e+01 lineto +1.040575e+02 3.940543e+01 lineto +1.049275e+02 3.871179e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.057192e+02 4.235048e+01 moveto +1.049275e+02 3.871179e+01 lineto +1.040575e+02 3.940543e+01 lineto +1.04832e+02 4.305787e+01 lineto +1.057192e+02 4.235048e+01 lineto +closepath +gsave +4.198455e-01 4.198455e-01 4.198455e-01 setrgbcolor +fill +grestore +newpath +1.057192e+02 4.235048e+01 moveto +1.049275e+02 3.871179e+01 lineto +1.040575e+02 3.940543e+01 lineto +1.04832e+02 4.305787e+01 lineto +1.057192e+02 4.235048e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.062027e+02 4.60168e+01 moveto +1.057192e+02 4.235048e+01 lineto +1.04832e+02 4.305787e+01 lineto +1.053049e+02 4.673259e+01 lineto +1.062027e+02 4.60168e+01 lineto +closepath +gsave +4.176311e-01 4.176311e-01 4.176311e-01 setrgbcolor +fill +grestore +newpath +1.062027e+02 4.60168e+01 moveto +1.057192e+02 4.235048e+01 lineto +1.04832e+02 4.305787e+01 lineto +1.053049e+02 4.673259e+01 lineto +1.062027e+02 4.60168e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.063742e+02 4.968299e+01 moveto +1.062027e+02 4.60168e+01 lineto +1.053049e+02 4.673259e+01 lineto +1.054727e+02 5.040176e+01 lineto +1.063742e+02 4.968299e+01 lineto +closepath +gsave +4.157414e-01 4.157414e-01 4.157414e-01 setrgbcolor +fill +grestore +newpath +1.063742e+02 4.968299e+01 moveto +1.062027e+02 4.60168e+01 lineto +1.053049e+02 4.673259e+01 lineto +1.054727e+02 5.040176e+01 lineto +1.063742e+02 4.968299e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.062325e+02 5.33213e+01 moveto +1.063742e+02 4.968299e+01 lineto +1.054727e+02 5.040176e+01 lineto +1.053342e+02 5.40376e+01 lineto +1.062325e+02 5.33213e+01 lineto +closepath +gsave +4.141476e-01 4.141476e-01 4.141476e-01 setrgbcolor +fill +grestore +newpath +1.062325e+02 5.33213e+01 moveto +1.063742e+02 4.968299e+01 lineto +1.054727e+02 5.040176e+01 lineto +1.053342e+02 5.40376e+01 lineto +1.062325e+02 5.33213e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.057787e+02 5.690418e+01 moveto +1.062325e+02 5.33213e+01 lineto +1.053342e+02 5.40376e+01 lineto +1.048902e+02 5.76126e+01 lineto +1.057787e+02 5.690418e+01 lineto +closepath +gsave +4.128216e-01 4.128216e-01 4.128216e-01 setrgbcolor +fill +grestore +newpath +1.057787e+02 5.690418e+01 moveto +1.062325e+02 5.33213e+01 lineto +1.053342e+02 5.40376e+01 lineto +1.048902e+02 5.76126e+01 lineto +1.057787e+02 5.690418e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.050162e+02 6.040451e+01 moveto +1.057787e+02 5.690418e+01 lineto +1.048902e+02 5.76126e+01 lineto +1.041443e+02 6.109969e+01 lineto +1.050162e+02 6.040451e+01 lineto +closepath +gsave +4.117378e-01 4.117378e-01 4.117378e-01 setrgbcolor +fill +grestore +newpath +1.050162e+02 6.040451e+01 moveto +1.057787e+02 5.690418e+01 lineto +1.048902e+02 5.76126e+01 lineto +1.041443e+02 6.109969e+01 lineto +1.050162e+02 6.040451e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.039507e+02 6.37958e+01 moveto +1.050162e+02 6.040451e+01 lineto +1.041443e+02 6.109969e+01 lineto +1.03102e+02 6.447246e+01 lineto +1.039507e+02 6.37958e+01 lineto +closepath +gsave +4.108732e-01 4.108732e-01 4.108732e-01 setrgbcolor +fill +grestore +newpath +1.039507e+02 6.37958e+01 moveto +1.050162e+02 6.040451e+01 lineto +1.041443e+02 6.109969e+01 lineto +1.03102e+02 6.447246e+01 lineto +1.039507e+02 6.37958e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.025904e+02 6.705236e+01 moveto +1.039507e+02 6.37958e+01 lineto +1.03102e+02 6.447246e+01 lineto +1.017713e+02 6.770539e+01 lineto +1.025904e+02 6.705236e+01 lineto +closepath +gsave +4.10208e-01 4.10208e-01 4.10208e-01 setrgbcolor +fill +grestore +newpath +1.025904e+02 6.705236e+01 moveto +1.039507e+02 6.37958e+01 lineto +1.03102e+02 6.447246e+01 lineto +1.017713e+02 6.770539e+01 lineto +1.025904e+02 6.705236e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.009454e+02 7.014955e+01 moveto +1.025904e+02 6.705236e+01 lineto +1.017713e+02 6.770539e+01 lineto +1.001622e+02 7.0774e+01 lineto +1.009454e+02 7.014955e+01 lineto +closepath +gsave +4.097262e-01 4.097262e-01 4.097262e-01 setrgbcolor +fill +grestore +newpath +1.009454e+02 7.014955e+01 moveto +1.025904e+02 6.705236e+01 lineto +1.017713e+02 6.770539e+01 lineto +1.001622e+02 7.0774e+01 lineto +1.009454e+02 7.014955e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.902839e+01 7.306391e+01 moveto +1.009454e+02 7.014955e+01 lineto +1.001622e+02 7.0774e+01 lineto +9.828697e+01 7.365506e+01 lineto +9.902839e+01 7.306391e+01 lineto +closepath +gsave +4.094157e-01 4.094157e-01 4.094157e-01 setrgbcolor +fill +grestore +newpath +9.902839e+01 7.306391e+01 moveto +1.009454e+02 7.014955e+01 lineto +1.001622e+02 7.0774e+01 lineto +9.828697e+01 7.365506e+01 lineto +9.902839e+01 7.306391e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.685373e+01 7.577339e+01 moveto +9.902839e+01 7.306391e+01 lineto +9.828697e+01 7.365506e+01 lineto +9.615969e+01 7.632676e+01 lineto +9.685373e+01 7.577339e+01 lineto +closepath +gsave +4.092684e-01 4.092684e-01 4.092684e-01 setrgbcolor +fill +grestore +newpath +9.685373e+01 7.577339e+01 moveto +9.902839e+01 7.306391e+01 lineto +9.828697e+01 7.365506e+01 lineto +9.615969e+01 7.632676e+01 lineto +9.685373e+01 7.577339e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.443793e+01 7.825747e+01 moveto +9.685373e+01 7.577339e+01 lineto +9.615969e+01 7.632676e+01 lineto +9.379652e+01 7.876888e+01 lineto +9.443793e+01 7.825747e+01 lineto +closepath +gsave +4.092805e-01 4.092805e-01 4.092805e-01 setrgbcolor +fill +grestore +newpath +9.443793e+01 7.825747e+01 moveto +9.685373e+01 7.577339e+01 lineto +9.615969e+01 7.632676e+01 lineto +9.379652e+01 7.876888e+01 lineto +9.443793e+01 7.825747e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.179926e+01 8.049735e+01 moveto +9.443793e+01 7.825747e+01 lineto +9.379652e+01 7.876888e+01 lineto +9.121535e+01 8.096291e+01 lineto +9.179926e+01 8.049735e+01 lineto +closepath +gsave +4.094523e-01 4.094523e-01 4.094523e-01 setrgbcolor +fill +grestore +newpath +9.179926e+01 8.049735e+01 moveto +9.443793e+01 7.825747e+01 lineto +9.379652e+01 7.876888e+01 lineto +9.121535e+01 8.096291e+01 lineto +9.179926e+01 8.049735e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.817289e+01 8.678777e+01 moveto +6.174596e+01 8.756652e+01 lineto +6.181686e+01 8.750999e+01 lineto +5.832164e+01 8.666917e+01 lineto +5.817289e+01 8.678777e+01 lineto +closepath +gsave +4.92927e-01 4.92927e-01 4.92927e-01 setrgbcolor +fill +grestore +newpath +5.817289e+01 8.678777e+01 moveto +6.174596e+01 8.756652e+01 lineto +6.181686e+01 8.750999e+01 lineto +5.832164e+01 8.666917e+01 lineto +5.817289e+01 8.678777e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.465151e+01 8.570024e+01 moveto +5.817289e+01 8.678777e+01 lineto +5.832164e+01 8.666917e+01 lineto +5.487699e+01 8.552046e+01 lineto +5.465151e+01 8.570024e+01 lineto +closepath +gsave +4.857477e-01 4.857477e-01 4.857477e-01 setrgbcolor +fill +grestore +newpath +5.465151e+01 8.570024e+01 moveto +5.817289e+01 8.678777e+01 lineto +5.832164e+01 8.666917e+01 lineto +5.487699e+01 8.552046e+01 lineto +5.465151e+01 8.570024e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.120848e+01 8.431216e+01 moveto +5.465151e+01 8.570024e+01 lineto +5.487699e+01 8.552046e+01 lineto +5.150897e+01 8.407257e+01 lineto +5.120848e+01 8.431216e+01 lineto +closepath +gsave +4.786451e-01 4.786451e-01 4.786451e-01 setrgbcolor +fill +grestore +newpath +5.120848e+01 8.431216e+01 moveto +5.465151e+01 8.570024e+01 lineto +5.487699e+01 8.552046e+01 lineto +5.150897e+01 8.407257e+01 lineto +5.120848e+01 8.431216e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.851816e+01 4.556772e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.841811e+01 4.616799e+00 lineto +6.851816e+01 4.556772e+00 lineto +closepath +gsave +5.001464e-01 5.001464e-01 5.001464e-01 setrgbcolor +fill +grestore +newpath +6.851816e+01 4.556772e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.841811e+01 4.616799e+00 lineto +6.851816e+01 4.556772e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.200969e+01 5.427287e+00 moveto +6.851816e+01 4.556772e+00 lineto +6.841811e+01 4.616799e+00 lineto +7.181034e+01 5.546888e+00 lineto +7.200969e+01 5.427287e+00 lineto +closepath +gsave +4.943697e-01 4.943697e-01 4.943697e-01 setrgbcolor +fill +grestore +newpath +7.200969e+01 5.427287e+00 moveto +6.851816e+01 4.556772e+00 lineto +6.841811e+01 4.616799e+00 lineto +7.181034e+01 5.546888e+00 lineto +7.200969e+01 5.427287e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.544814e+01 6.604955e+00 moveto +7.200969e+01 5.427287e+00 lineto +7.181034e+01 5.546888e+00 lineto +7.515101e+01 6.783224e+00 lineto +7.544814e+01 6.604955e+00 lineto +closepath +gsave +4.884269e-01 4.884269e-01 4.884269e-01 setrgbcolor +fill +grestore +newpath +7.544814e+01 6.604955e+00 moveto +7.200969e+01 5.427287e+00 lineto +7.181034e+01 5.546888e+00 lineto +7.515101e+01 6.783224e+00 lineto +7.544814e+01 6.604955e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.880751e+01 8.080861e+00 moveto +7.544814e+01 6.604955e+00 lineto +7.515101e+01 6.783224e+00 lineto +7.841484e+01 8.316448e+00 lineto +7.880751e+01 8.080861e+00 lineto +closepath +gsave +4.824068e-01 4.824068e-01 4.824068e-01 setrgbcolor +fill +grestore +newpath +7.880751e+01 8.080861e+00 moveto +7.544814e+01 6.604955e+00 lineto +7.515101e+01 6.783224e+00 lineto +7.841484e+01 8.316448e+00 lineto +7.880751e+01 8.080861e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.206234e+01 9.843832e+00 moveto +7.880751e+01 8.080861e+00 lineto +7.841484e+01 8.316448e+00 lineto +8.15771e+01 1.013495e+01 lineto +8.206234e+01 9.843832e+00 lineto +closepath +gsave +4.763931e-01 4.763931e-01 4.763931e-01 setrgbcolor +fill +grestore +newpath +8.206234e+01 9.843832e+00 moveto +7.880751e+01 8.080861e+00 lineto +7.841484e+01 8.316448e+00 lineto +8.15771e+01 1.013495e+01 lineto +8.206234e+01 9.843832e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.5188e+01 1.188052e+01 moveto +8.206234e+01 9.843832e+00 lineto +8.15771e+01 1.013495e+01 lineto +8.461388e+01 1.222497e+01 lineto +8.5188e+01 1.188052e+01 lineto +closepath +gsave +4.704628e-01 4.704628e-01 4.704628e-01 setrgbcolor +fill +grestore +newpath +8.5188e+01 1.188052e+01 moveto +8.206234e+01 9.843832e+00 lineto +8.15771e+01 1.013495e+01 lineto +8.461388e+01 1.222497e+01 lineto +8.5188e+01 1.188052e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.816084e+01 1.417551e+01 moveto +8.5188e+01 1.188052e+01 lineto +8.461388e+01 1.222497e+01 lineto +8.750217e+01 1.457068e+01 lineto +8.816084e+01 1.417551e+01 lineto +closepath +gsave +4.646846e-01 4.646846e-01 4.646846e-01 setrgbcolor +fill +grestore +newpath +8.816084e+01 1.417551e+01 moveto +8.5188e+01 1.188052e+01 lineto +8.461388e+01 1.222497e+01 lineto +8.750217e+01 1.457068e+01 lineto +8.816084e+01 1.417551e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.095833e+01 1.671142e+01 moveto +8.816084e+01 1.417551e+01 lineto +8.750217e+01 1.457068e+01 lineto +9.02201e+01 1.715433e+01 lineto +9.095833e+01 1.671142e+01 lineto +closepath +gsave +4.591179e-01 4.591179e-01 4.591179e-01 setrgbcolor +fill +grestore +newpath +9.095833e+01 1.671142e+01 moveto +8.816084e+01 1.417551e+01 lineto +8.750217e+01 1.457068e+01 lineto +9.02201e+01 1.715433e+01 lineto +9.095833e+01 1.671142e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.355931e+01 1.946906e+01 moveto +9.095833e+01 1.671142e+01 lineto +9.02201e+01 1.715433e+01 lineto +9.274711e+01 1.995635e+01 lineto +9.355931e+01 1.946906e+01 lineto +closepath +gsave +4.538123e-01 4.538123e-01 4.538123e-01 setrgbcolor +fill +grestore +newpath +9.355931e+01 1.946906e+01 moveto +9.095833e+01 1.671142e+01 lineto +9.02201e+01 1.715433e+01 lineto +9.274711e+01 1.995635e+01 lineto +9.355931e+01 1.946906e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.594408e+01 2.242755e+01 moveto +9.355931e+01 1.946906e+01 lineto +9.274711e+01 1.995635e+01 lineto +9.506406e+01 2.295553e+01 lineto +9.594408e+01 2.242755e+01 lineto +closepath +gsave +4.488069e-01 4.488069e-01 4.488069e-01 setrgbcolor +fill +grestore +newpath +9.594408e+01 2.242755e+01 moveto +9.355931e+01 1.946906e+01 lineto +9.274711e+01 1.995635e+01 lineto +9.506406e+01 2.295553e+01 lineto +9.594408e+01 2.242755e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.809459e+01 2.55645e+01 moveto +9.594408e+01 2.242755e+01 lineto +9.506406e+01 2.295553e+01 lineto +9.715341e+01 2.612917e+01 lineto +9.809459e+01 2.55645e+01 lineto +closepath +gsave +4.441309e-01 4.441309e-01 4.441309e-01 setrgbcolor +fill +grestore +newpath +9.809459e+01 2.55645e+01 moveto +9.594408e+01 2.242755e+01 lineto +9.506406e+01 2.295553e+01 lineto +9.715341e+01 2.612917e+01 lineto +9.809459e+01 2.55645e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.999456e+01 2.885615e+01 moveto +9.809459e+01 2.55645e+01 lineto +9.715341e+01 2.612917e+01 lineto +9.899935e+01 2.945324e+01 lineto +9.999456e+01 2.885615e+01 lineto +closepath +gsave +4.398039e-01 4.398039e-01 4.398039e-01 setrgbcolor +fill +grestore +newpath +9.999456e+01 2.885615e+01 moveto +9.809459e+01 2.55645e+01 lineto +9.715341e+01 2.612917e+01 lineto +9.899935e+01 2.945324e+01 lineto +9.999456e+01 2.885615e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.016296e+02 3.227759e+01 moveto +9.999456e+01 2.885615e+01 lineto +9.899935e+01 2.945324e+01 lineto +1.005879e+02 3.290257e+01 lineto +1.016296e+02 3.227759e+01 lineto +closepath +gsave +4.358363e-01 4.358363e-01 4.358363e-01 setrgbcolor +fill +grestore +newpath +1.016296e+02 3.227759e+01 moveto +9.999456e+01 2.885615e+01 lineto +9.899935e+01 2.945324e+01 lineto +1.005879e+02 3.290257e+01 lineto +1.016296e+02 3.227759e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.029874e+02 3.580291e+01 moveto +1.016296e+02 3.227759e+01 lineto +1.005879e+02 3.290257e+01 lineto +1.01907e+02 3.645106e+01 lineto +1.029874e+02 3.580291e+01 lineto +closepath +gsave +4.322308e-01 4.322308e-01 4.322308e-01 setrgbcolor +fill +grestore +newpath +1.029874e+02 3.580291e+01 moveto +1.016296e+02 3.227759e+01 lineto +1.005879e+02 3.290257e+01 lineto +1.01907e+02 3.645106e+01 lineto +1.029874e+02 3.580291e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.040575e+02 3.940543e+01 moveto +1.029874e+02 3.580291e+01 lineto +1.01907e+02 3.645106e+01 lineto +1.029468e+02 4.007184e+01 lineto +1.040575e+02 3.940543e+01 lineto +closepath +gsave +4.289831e-01 4.289831e-01 4.289831e-01 setrgbcolor +fill +grestore +newpath +1.040575e+02 3.940543e+01 moveto +1.029874e+02 3.580291e+01 lineto +1.01907e+02 3.645106e+01 lineto +1.029468e+02 4.007184e+01 lineto +1.040575e+02 3.940543e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.04832e+02 4.305787e+01 moveto +1.040575e+02 3.940543e+01 lineto +1.029468e+02 4.007184e+01 lineto +1.036992e+02 4.37375e+01 lineto +1.04832e+02 4.305787e+01 lineto +closepath +gsave +4.260835e-01 4.260835e-01 4.260835e-01 setrgbcolor +fill +grestore +newpath +1.04832e+02 4.305787e+01 moveto +1.040575e+02 3.940543e+01 lineto +1.029468e+02 4.007184e+01 lineto +1.036992e+02 4.37375e+01 lineto +1.04832e+02 4.305787e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.053049e+02 4.673259e+01 moveto +1.04832e+02 4.305787e+01 lineto +1.036992e+02 4.37375e+01 lineto +1.041587e+02 4.742028e+01 lineto +1.053049e+02 4.673259e+01 lineto +closepath +gsave +4.235177e-01 4.235177e-01 4.235177e-01 setrgbcolor +fill +grestore +newpath +1.053049e+02 4.673259e+01 moveto +1.04832e+02 4.305787e+01 lineto +1.036992e+02 4.37375e+01 lineto +1.041587e+02 4.742028e+01 lineto +1.053049e+02 4.673259e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.054727e+02 5.040176e+01 moveto +1.053049e+02 4.673259e+01 lineto +1.041587e+02 4.742028e+01 lineto +1.043217e+02 5.109231e+01 lineto +1.054727e+02 5.040176e+01 lineto +closepath +gsave +4.212682e-01 4.212682e-01 4.212682e-01 setrgbcolor +fill +grestore +newpath +1.054727e+02 5.040176e+01 moveto +1.053049e+02 4.673259e+01 lineto +1.041587e+02 4.742028e+01 lineto +1.043217e+02 5.109231e+01 lineto +1.054727e+02 5.040176e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.053342e+02 5.40376e+01 moveto +1.054727e+02 5.040176e+01 lineto +1.043217e+02 5.109231e+01 lineto +1.041871e+02 5.47258e+01 lineto +1.053342e+02 5.40376e+01 lineto +closepath +gsave +4.193157e-01 4.193157e-01 4.193157e-01 setrgbcolor +fill +grestore +newpath +1.053342e+02 5.40376e+01 moveto +1.054727e+02 5.040176e+01 lineto +1.043217e+02 5.109231e+01 lineto +1.041871e+02 5.47258e+01 lineto +1.053342e+02 5.40376e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.048902e+02 5.76126e+01 moveto +1.053342e+02 5.40376e+01 lineto +1.041871e+02 5.47258e+01 lineto +1.037558e+02 5.829322e+01 lineto +1.048902e+02 5.76126e+01 lineto +closepath +gsave +4.176399e-01 4.176399e-01 4.176399e-01 setrgbcolor +fill +grestore +newpath +1.048902e+02 5.76126e+01 moveto +1.053342e+02 5.40376e+01 lineto +1.041871e+02 5.47258e+01 lineto +1.037558e+02 5.829322e+01 lineto +1.048902e+02 5.76126e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.041443e+02 6.109969e+01 moveto +1.048902e+02 5.76126e+01 lineto +1.037558e+02 5.829322e+01 lineto +1.030311e+02 6.176758e+01 lineto +1.041443e+02 6.109969e+01 lineto +closepath +gsave +4.162204e-01 4.162204e-01 4.162204e-01 setrgbcolor +fill +grestore +newpath +1.041443e+02 6.109969e+01 moveto +1.048902e+02 5.76126e+01 lineto +1.037558e+02 5.829322e+01 lineto +1.030311e+02 6.176758e+01 lineto +1.041443e+02 6.109969e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.03102e+02 6.447246e+01 moveto +1.041443e+02 6.109969e+01 lineto +1.030311e+02 6.176758e+01 lineto +1.020185e+02 6.512257e+01 lineto +1.03102e+02 6.447246e+01 lineto +closepath +gsave +4.150378e-01 4.150378e-01 4.150378e-01 setrgbcolor +fill +grestore +newpath +1.03102e+02 6.447246e+01 moveto +1.041443e+02 6.109969e+01 lineto +1.030311e+02 6.176758e+01 lineto +1.020185e+02 6.512257e+01 lineto +1.03102e+02 6.447246e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.017713e+02 6.770539e+01 moveto +1.03102e+02 6.447246e+01 lineto +1.020185e+02 6.512257e+01 lineto +1.007256e+02 6.833279e+01 lineto +1.017713e+02 6.770539e+01 lineto +closepath +gsave +4.140742e-01 4.140742e-01 4.140742e-01 setrgbcolor +fill +grestore +newpath +1.017713e+02 6.770539e+01 moveto +1.03102e+02 6.447246e+01 lineto +1.020185e+02 6.512257e+01 lineto +1.007256e+02 6.833279e+01 lineto +1.017713e+02 6.770539e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.001622e+02 7.0774e+01 moveto +1.017713e+02 6.770539e+01 lineto +1.007256e+02 6.833279e+01 lineto +9.916227e+01 7.137395e+01 lineto +1.001622e+02 7.0774e+01 lineto +closepath +gsave +4.133138e-01 4.133138e-01 4.133138e-01 setrgbcolor +fill +grestore +newpath +1.001622e+02 7.0774e+01 moveto +1.017713e+02 6.770539e+01 lineto +1.007256e+02 6.833279e+01 lineto +9.916227e+01 7.137395e+01 lineto +1.001622e+02 7.0774e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.828697e+01 7.365506e+01 moveto +1.001622e+02 7.0774e+01 lineto +9.916227e+01 7.137395e+01 lineto +9.734032e+01 7.422301e+01 lineto +9.828697e+01 7.365506e+01 lineto +closepath +gsave +4.127431e-01 4.127431e-01 4.127431e-01 setrgbcolor +fill +grestore +newpath +9.828697e+01 7.365506e+01 moveto +1.001622e+02 7.0774e+01 lineto +9.916227e+01 7.137395e+01 lineto +9.734032e+01 7.422301e+01 lineto +9.828697e+01 7.365506e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.615969e+01 7.632676e+01 moveto +9.828697e+01 7.365506e+01 lineto +9.734032e+01 7.422301e+01 lineto +9.527354e+01 7.685842e+01 lineto +9.615969e+01 7.632676e+01 lineto +closepath +gsave +4.123518e-01 4.123518e-01 4.123518e-01 setrgbcolor +fill +grestore +newpath +9.615969e+01 7.632676e+01 moveto +9.828697e+01 7.365506e+01 lineto +9.734032e+01 7.422301e+01 lineto +9.527354e+01 7.685842e+01 lineto +9.615969e+01 7.632676e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.379652e+01 7.876888e+01 moveto +9.615969e+01 7.632676e+01 lineto +9.527354e+01 7.685842e+01 lineto +9.297758e+01 7.926021e+01 lineto +9.379652e+01 7.876888e+01 lineto +closepath +gsave +4.121322e-01 4.121322e-01 4.121322e-01 setrgbcolor +fill +grestore +newpath +9.379652e+01 7.876888e+01 moveto +9.615969e+01 7.632676e+01 lineto +9.527354e+01 7.685842e+01 lineto +9.297758e+01 7.926021e+01 lineto +9.379652e+01 7.876888e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.121535e+01 8.096291e+01 moveto +9.379652e+01 7.876888e+01 lineto +9.297758e+01 7.926021e+01 lineto +9.046981e+01 8.141021e+01 lineto +9.121535e+01 8.096291e+01 lineto +closepath +gsave +4.120802e-01 4.120802e-01 4.120802e-01 setrgbcolor +fill +grestore +newpath +9.121535e+01 8.096291e+01 moveto +9.379652e+01 7.876888e+01 lineto +9.297758e+01 7.926021e+01 lineto +9.046981e+01 8.141021e+01 lineto +9.121535e+01 8.096291e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.843572e+01 8.289227e+01 moveto +9.121535e+01 8.096291e+01 lineto +9.046981e+01 8.141021e+01 lineto +8.776923e+01 8.329213e+01 lineto +8.843572e+01 8.289227e+01 lineto +closepath +gsave +4.121949e-01 4.121949e-01 4.121949e-01 setrgbcolor +fill +grestore +newpath +8.843572e+01 8.289227e+01 moveto +9.121535e+01 8.096291e+01 lineto +9.046981e+01 8.141021e+01 lineto +8.776923e+01 8.329213e+01 lineto +8.843572e+01 8.289227e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.832164e+01 8.666917e+01 moveto +6.181686e+01 8.750999e+01 lineto +6.190738e+01 8.745568e+01 lineto +5.851157e+01 8.655522e+01 lineto +5.832164e+01 8.666917e+01 lineto +closepath +gsave +4.949296e-01 4.949296e-01 4.949296e-01 setrgbcolor +fill +grestore +newpath +5.832164e+01 8.666917e+01 moveto +6.181686e+01 8.750999e+01 lineto +6.190738e+01 8.745568e+01 lineto +5.851157e+01 8.655522e+01 lineto +5.832164e+01 8.666917e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.487699e+01 8.552046e+01 moveto +5.832164e+01 8.666917e+01 lineto +5.851157e+01 8.655522e+01 lineto +5.516488e+01 8.534774e+01 lineto +5.487699e+01 8.552046e+01 lineto +closepath +gsave +4.889988e-01 4.889988e-01 4.889988e-01 setrgbcolor +fill +grestore +newpath +5.487699e+01 8.552046e+01 moveto +5.832164e+01 8.666917e+01 lineto +5.851157e+01 8.655522e+01 lineto +5.516488e+01 8.534774e+01 lineto +5.487699e+01 8.552046e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.150897e+01 8.407257e+01 moveto +5.487699e+01 8.552046e+01 lineto +5.516488e+01 8.534774e+01 lineto +5.189264e+01 8.384238e+01 lineto +5.150897e+01 8.407257e+01 lineto +closepath +gsave +4.829823e-01 4.829823e-01 4.829823e-01 setrgbcolor +fill +grestore +newpath +5.150897e+01 8.407257e+01 moveto +5.487699e+01 8.552046e+01 lineto +5.516488e+01 8.534774e+01 lineto +5.189264e+01 8.384238e+01 lineto +5.150897e+01 8.407257e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.841811e+01 4.616799e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.829698e+01 4.674004e+00 lineto +6.841811e+01 4.616799e+00 lineto +closepath +gsave +5.009107e-01 5.009107e-01 5.009107e-01 setrgbcolor +fill +grestore +newpath +6.841811e+01 4.616799e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.829698e+01 4.674004e+00 lineto +6.841811e+01 4.616799e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.181034e+01 5.546888e+00 moveto +6.841811e+01 4.616799e+00 lineto +6.829698e+01 4.674004e+00 lineto +7.1569e+01 5.660865e+00 lineto +7.181034e+01 5.546888e+00 lineto +closepath +gsave +4.965794e-01 4.965794e-01 4.965794e-01 setrgbcolor +fill +grestore +newpath +7.181034e+01 5.546888e+00 moveto +6.841811e+01 4.616799e+00 lineto +6.829698e+01 4.674004e+00 lineto +7.1569e+01 5.660865e+00 lineto +7.181034e+01 5.546888e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.515101e+01 6.783224e+00 moveto +7.181034e+01 5.546888e+00 lineto +7.1569e+01 5.660865e+00 lineto +7.479129e+01 6.95311e+00 lineto +7.515101e+01 6.783224e+00 lineto +closepath +gsave +4.919545e-01 4.919545e-01 4.919545e-01 setrgbcolor +fill +grestore +newpath +7.515101e+01 6.783224e+00 moveto +7.181034e+01 5.546888e+00 lineto +7.1569e+01 5.660865e+00 lineto +7.479129e+01 6.95311e+00 lineto +7.515101e+01 6.783224e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.841484e+01 8.316448e+00 moveto +7.515101e+01 6.783224e+00 lineto +7.479129e+01 6.95311e+00 lineto +7.793946e+01 8.540957e+00 lineto +7.841484e+01 8.316448e+00 lineto +closepath +gsave +4.871086e-01 4.871086e-01 4.871086e-01 setrgbcolor +fill +grestore +newpath +7.841484e+01 8.316448e+00 moveto +7.515101e+01 6.783224e+00 lineto +7.479129e+01 6.95311e+00 lineto +7.793946e+01 8.540957e+00 lineto +7.841484e+01 8.316448e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.15771e+01 1.013495e+01 moveto +7.841484e+01 8.316448e+00 lineto +7.793946e+01 8.540957e+00 lineto +8.098967e+01 1.041239e+01 lineto +8.15771e+01 1.013495e+01 lineto +closepath +gsave +4.821143e-01 4.821143e-01 4.821143e-01 setrgbcolor +fill +grestore +newpath +8.15771e+01 1.013495e+01 moveto +7.841484e+01 8.316448e+00 lineto +7.793946e+01 8.540957e+00 lineto +8.098967e+01 1.041239e+01 lineto +8.15771e+01 1.013495e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.461388e+01 1.222497e+01 moveto +8.15771e+01 1.013495e+01 lineto +8.098967e+01 1.041239e+01 lineto +8.391883e+01 1.255323e+01 lineto +8.461388e+01 1.222497e+01 lineto +closepath +gsave +4.77042e-01 4.77042e-01 4.77042e-01 setrgbcolor +fill +grestore +newpath +8.461388e+01 1.222497e+01 moveto +8.15771e+01 1.013495e+01 lineto +8.098967e+01 1.041239e+01 lineto +8.391883e+01 1.255323e+01 lineto +8.461388e+01 1.222497e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.750217e+01 1.457068e+01 moveto +8.461388e+01 1.222497e+01 lineto +8.391883e+01 1.255323e+01 lineto +8.670476e+01 1.494728e+01 lineto +8.750217e+01 1.457068e+01 lineto +closepath +gsave +4.719587e-01 4.719587e-01 4.719587e-01 setrgbcolor +fill +grestore +newpath +8.750217e+01 1.457068e+01 moveto +8.461388e+01 1.222497e+01 lineto +8.391883e+01 1.255323e+01 lineto +8.670476e+01 1.494728e+01 lineto +8.750217e+01 1.457068e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.02201e+01 1.715433e+01 moveto +8.750217e+01 1.457068e+01 lineto +8.670476e+01 1.494728e+01 lineto +8.932638e+01 1.757641e+01 lineto +9.02201e+01 1.715433e+01 lineto +closepath +gsave +4.669265e-01 4.669265e-01 4.669265e-01 setrgbcolor +fill +grestore +newpath +9.02201e+01 1.715433e+01 moveto +8.750217e+01 1.457068e+01 lineto +8.670476e+01 1.494728e+01 lineto +8.932638e+01 1.757641e+01 lineto +9.02201e+01 1.715433e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.274711e+01 1.995635e+01 moveto +9.02201e+01 1.715433e+01 lineto +8.932638e+01 1.757641e+01 lineto +9.176384e+01 2.042072e+01 lineto +9.274711e+01 1.995635e+01 lineto +closepath +gsave +4.620012e-01 4.620012e-01 4.620012e-01 setrgbcolor +fill +grestore +newpath +9.274711e+01 1.995635e+01 moveto +9.02201e+01 1.715433e+01 lineto +8.932638e+01 1.757641e+01 lineto +9.176384e+01 2.042072e+01 lineto +9.274711e+01 1.995635e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.506406e+01 2.295553e+01 moveto +9.274711e+01 1.995635e+01 lineto +9.176384e+01 2.042072e+01 lineto +9.399869e+01 2.345868e+01 lineto +9.506406e+01 2.295553e+01 lineto +closepath +gsave +4.572318e-01 4.572318e-01 4.572318e-01 setrgbcolor +fill +grestore +newpath +9.506406e+01 2.295553e+01 moveto +9.274711e+01 1.995635e+01 lineto +9.176384e+01 2.042072e+01 lineto +9.399869e+01 2.345868e+01 lineto +9.506406e+01 2.295553e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.715341e+01 2.612917e+01 moveto +9.506406e+01 2.295553e+01 lineto +9.399869e+01 2.345868e+01 lineto +9.6014e+01 2.666728e+01 lineto +9.715341e+01 2.612917e+01 lineto +closepath +gsave +4.5266e-01 4.5266e-01 4.5266e-01 setrgbcolor +fill +grestore +newpath +9.715341e+01 2.612917e+01 moveto +9.506406e+01 2.295553e+01 lineto +9.399869e+01 2.345868e+01 lineto +9.6014e+01 2.666728e+01 lineto +9.715341e+01 2.612917e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.899935e+01 2.945324e+01 moveto +9.715341e+01 2.612917e+01 lineto +9.6014e+01 2.666728e+01 lineto +9.779453e+01 3.002225e+01 lineto +9.899935e+01 2.945324e+01 lineto +closepath +gsave +4.483196e-01 4.483196e-01 4.483196e-01 setrgbcolor +fill +grestore +newpath +9.899935e+01 2.945324e+01 moveto +9.715341e+01 2.612917e+01 lineto +9.6014e+01 2.666728e+01 lineto +9.779453e+01 3.002225e+01 lineto +9.899935e+01 2.945324e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.005879e+02 3.290257e+01 moveto +9.899935e+01 2.945324e+01 lineto +9.779453e+01 3.002225e+01 lineto +9.932678e+01 3.349817e+01 lineto +1.005879e+02 3.290257e+01 lineto +closepath +gsave +4.442367e-01 4.442367e-01 4.442367e-01 setrgbcolor +fill +grestore +newpath +1.005879e+02 3.290257e+01 moveto +9.899935e+01 2.945324e+01 lineto +9.779453e+01 3.002225e+01 lineto +9.932678e+01 3.349817e+01 lineto +1.005879e+02 3.290257e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.01907e+02 3.645106e+01 moveto +1.005879e+02 3.290257e+01 lineto +9.932678e+01 3.349817e+01 lineto +1.005992e+02 3.706873e+01 lineto +1.01907e+02 3.645106e+01 lineto +closepath +gsave +4.404304e-01 4.404304e-01 4.404304e-01 setrgbcolor +fill +grestore +newpath +1.01907e+02 3.645106e+01 moveto +1.005879e+02 3.290257e+01 lineto +9.932678e+01 3.349817e+01 lineto +1.005992e+02 3.706873e+01 lineto +1.01907e+02 3.645106e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.029468e+02 4.007184e+01 moveto +1.01907e+02 3.645106e+01 lineto +1.005992e+02 3.706873e+01 lineto +1.016021e+02 4.070691e+01 lineto +1.029468e+02 4.007184e+01 lineto +closepath +gsave +4.369126e-01 4.369126e-01 4.369126e-01 setrgbcolor +fill +grestore +newpath +1.029468e+02 4.007184e+01 moveto +1.01907e+02 3.645106e+01 lineto +1.005992e+02 3.706873e+01 lineto +1.016021e+02 4.070691e+01 lineto +1.029468e+02 4.007184e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.036992e+02 4.37375e+01 moveto +1.029468e+02 4.007184e+01 lineto +1.016021e+02 4.070691e+01 lineto +1.023278e+02 4.438516e+01 lineto +1.036992e+02 4.37375e+01 lineto +closepath +gsave +4.336891e-01 4.336891e-01 4.336891e-01 setrgbcolor +fill +grestore +newpath +1.036992e+02 4.37375e+01 moveto +1.029468e+02 4.007184e+01 lineto +1.016021e+02 4.070691e+01 lineto +1.023278e+02 4.438516e+01 lineto +1.036992e+02 4.37375e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.041587e+02 4.742028e+01 moveto +1.036992e+02 4.37375e+01 lineto +1.023278e+02 4.438516e+01 lineto +1.02771e+02 4.807564e+01 lineto +1.041587e+02 4.742028e+01 lineto +closepath +gsave +4.307601e-01 4.307601e-01 4.307601e-01 setrgbcolor +fill +grestore +newpath +1.041587e+02 4.742028e+01 moveto +1.036992e+02 4.37375e+01 lineto +1.023278e+02 4.438516e+01 lineto +1.02771e+02 4.807564e+01 lineto +1.041587e+02 4.742028e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.043217e+02 5.109231e+01 moveto +1.041587e+02 4.742028e+01 lineto +1.02771e+02 4.807564e+01 lineto +1.029283e+02 5.17504e+01 lineto +1.043217e+02 5.109231e+01 lineto +closepath +gsave +4.281214e-01 4.281214e-01 4.281214e-01 setrgbcolor +fill +grestore +newpath +1.043217e+02 5.109231e+01 moveto +1.041587e+02 4.742028e+01 lineto +1.02771e+02 4.807564e+01 lineto +1.029283e+02 5.17504e+01 lineto +1.043217e+02 5.109231e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.041871e+02 5.47258e+01 moveto +1.043217e+02 5.109231e+01 lineto +1.029283e+02 5.17504e+01 lineto +1.027984e+02 5.538163e+01 lineto +1.041871e+02 5.47258e+01 lineto +closepath +gsave +4.257652e-01 4.257652e-01 4.257652e-01 setrgbcolor +fill +grestore +newpath +1.041871e+02 5.47258e+01 moveto +1.043217e+02 5.109231e+01 lineto +1.029283e+02 5.17504e+01 lineto +1.027984e+02 5.538163e+01 lineto +1.041871e+02 5.47258e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.037558e+02 5.829322e+01 moveto +1.041871e+02 5.47258e+01 lineto +1.027984e+02 5.538163e+01 lineto +1.023824e+02 5.894183e+01 lineto +1.037558e+02 5.829322e+01 lineto +closepath +gsave +4.236807e-01 4.236807e-01 4.236807e-01 setrgbcolor +fill +grestore +newpath +1.037558e+02 5.829322e+01 moveto +1.041871e+02 5.47258e+01 lineto +1.027984e+02 5.538163e+01 lineto +1.023824e+02 5.894183e+01 lineto +1.037558e+02 5.829322e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.030311e+02 6.176758e+01 moveto +1.037558e+02 5.829322e+01 lineto +1.023824e+02 5.894183e+01 lineto +1.016834e+02 6.240406e+01 lineto +1.030311e+02 6.176758e+01 lineto +closepath +gsave +4.218554e-01 4.218554e-01 4.218554e-01 setrgbcolor +fill +grestore +newpath +1.030311e+02 6.176758e+01 moveto +1.037558e+02 5.829322e+01 lineto +1.023824e+02 5.894183e+01 lineto +1.016834e+02 6.240406e+01 lineto +1.030311e+02 6.176758e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.020185e+02 6.512257e+01 moveto +1.030311e+02 6.176758e+01 lineto +1.016834e+02 6.240406e+01 lineto +1.007066e+02 6.574211e+01 lineto +1.020185e+02 6.512257e+01 lineto +closepath +gsave +4.202757e-01 4.202757e-01 4.202757e-01 setrgbcolor +fill +grestore +newpath +1.020185e+02 6.512257e+01 moveto +1.030311e+02 6.176758e+01 lineto +1.016834e+02 6.240406e+01 lineto +1.007066e+02 6.574211e+01 lineto +1.020185e+02 6.512257e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.007256e+02 6.833279e+01 moveto +1.020185e+02 6.512257e+01 lineto +1.007066e+02 6.574211e+01 lineto +9.945959e+01 6.893069e+01 lineto +1.007256e+02 6.833279e+01 lineto +closepath +gsave +4.189277e-01 4.189277e-01 4.189277e-01 setrgbcolor +fill +grestore +newpath +1.007256e+02 6.833279e+01 moveto +1.020185e+02 6.512257e+01 lineto +1.007066e+02 6.574211e+01 lineto +9.945959e+01 6.893069e+01 lineto +1.007256e+02 6.833279e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.916227e+01 7.137395e+01 moveto +1.007256e+02 6.833279e+01 lineto +9.945959e+01 6.893069e+01 lineto +9.795167e+01 7.194569e+01 lineto +9.916227e+01 7.137395e+01 lineto +closepath +gsave +4.177978e-01 4.177978e-01 4.177978e-01 setrgbcolor +fill +grestore +newpath +9.916227e+01 7.137395e+01 moveto +1.007256e+02 6.833279e+01 lineto +9.945959e+01 6.893069e+01 lineto +9.795167e+01 7.194569e+01 lineto +9.916227e+01 7.137395e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.734032e+01 7.422301e+01 moveto +9.916227e+01 7.137395e+01 lineto +9.795167e+01 7.194569e+01 lineto +9.619428e+01 7.476426e+01 lineto +9.734032e+01 7.422301e+01 lineto +closepath +gsave +4.168734e-01 4.168734e-01 4.168734e-01 setrgbcolor +fill +grestore +newpath +9.734032e+01 7.422301e+01 moveto +9.916227e+01 7.137395e+01 lineto +9.795167e+01 7.194569e+01 lineto +9.619428e+01 7.476426e+01 lineto +9.734032e+01 7.422301e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.527354e+01 7.685842e+01 moveto +9.734032e+01 7.422301e+01 lineto +9.619428e+01 7.476426e+01 lineto +9.420074e+01 7.736507e+01 lineto +9.527354e+01 7.685842e+01 lineto +closepath +gsave +4.161432e-01 4.161432e-01 4.161432e-01 setrgbcolor +fill +grestore +newpath +9.527354e+01 7.685842e+01 moveto +9.734032e+01 7.422301e+01 lineto +9.619428e+01 7.476426e+01 lineto +9.420074e+01 7.736507e+01 lineto +9.527354e+01 7.685842e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.297758e+01 7.926021e+01 moveto +9.527354e+01 7.685842e+01 lineto +9.420074e+01 7.736507e+01 lineto +9.198614e+01 7.972844e+01 lineto +9.297758e+01 7.926021e+01 lineto +closepath +gsave +4.155977e-01 4.155977e-01 4.155977e-01 setrgbcolor +fill +grestore +newpath +9.297758e+01 7.926021e+01 moveto +9.527354e+01 7.685842e+01 lineto +9.420074e+01 7.736507e+01 lineto +9.198614e+01 7.972844e+01 lineto +9.297758e+01 7.926021e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.046981e+01 8.141021e+01 moveto +9.297758e+01 7.926021e+01 lineto +9.198614e+01 7.972844e+01 lineto +8.956725e+01 8.183647e+01 lineto +9.046981e+01 8.141021e+01 lineto +closepath +gsave +4.152293e-01 4.152293e-01 4.152293e-01 setrgbcolor +fill +grestore +newpath +9.046981e+01 8.141021e+01 moveto +9.297758e+01 7.926021e+01 lineto +9.198614e+01 7.972844e+01 lineto +8.956725e+01 8.183647e+01 lineto +9.046981e+01 8.141021e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.776923e+01 8.329213e+01 moveto +9.046981e+01 8.141021e+01 lineto +8.956725e+01 8.183647e+01 lineto +8.696236e+01 8.36732e+01 lineto +8.776923e+01 8.329213e+01 lineto +closepath +gsave +4.150328e-01 4.150328e-01 4.150328e-01 setrgbcolor +fill +grestore +newpath +8.776923e+01 8.329213e+01 moveto +9.046981e+01 8.141021e+01 lineto +8.956725e+01 8.183647e+01 lineto +8.696236e+01 8.36732e+01 lineto +8.776923e+01 8.329213e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.489628e+01 8.489174e+01 moveto +8.776923e+01 8.329213e+01 lineto +8.696236e+01 8.36732e+01 lineto +8.419122e+01 8.522472e+01 lineto +8.489628e+01 8.489174e+01 lineto +closepath +gsave +4.150055e-01 4.150055e-01 4.150055e-01 setrgbcolor +fill +grestore +newpath +8.489628e+01 8.489174e+01 moveto +8.776923e+01 8.329213e+01 lineto +8.696236e+01 8.36732e+01 lineto +8.419122e+01 8.522472e+01 lineto +8.489628e+01 8.489174e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.851157e+01 8.655522e+01 moveto +6.190738e+01 8.745568e+01 lineto +6.201697e+01 8.740392e+01 lineto +5.87415e+01 8.644663e+01 lineto +5.851157e+01 8.655522e+01 lineto +closepath +gsave +4.970066e-01 4.970066e-01 4.970066e-01 setrgbcolor +fill +grestore +newpath +5.851157e+01 8.655522e+01 moveto +6.190738e+01 8.745568e+01 lineto +6.201697e+01 8.740392e+01 lineto +5.87415e+01 8.644663e+01 lineto +5.851157e+01 8.655522e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.516488e+01 8.534774e+01 moveto +5.851157e+01 8.655522e+01 lineto +5.87415e+01 8.644663e+01 lineto +5.55134e+01 8.518314e+01 lineto +5.516488e+01 8.534774e+01 lineto +closepath +gsave +4.924066e-01 4.924066e-01 4.924066e-01 setrgbcolor +fill +grestore +newpath +5.516488e+01 8.534774e+01 moveto +5.851157e+01 8.655522e+01 lineto +5.87415e+01 8.644663e+01 lineto +5.55134e+01 8.518314e+01 lineto +5.516488e+01 8.534774e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.189264e+01 8.384238e+01 moveto +5.516488e+01 8.534774e+01 lineto +5.55134e+01 8.518314e+01 lineto +5.235712e+01 8.362302e+01 lineto +5.189264e+01 8.384238e+01 lineto +closepath +gsave +4.875786e-01 4.875786e-01 4.875786e-01 setrgbcolor +fill +grestore +newpath +5.189264e+01 8.384238e+01 moveto +5.516488e+01 8.534774e+01 lineto +5.55134e+01 8.518314e+01 lineto +5.235712e+01 8.362302e+01 lineto +5.189264e+01 8.384238e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.829698e+01 4.674004e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.815553e+01 4.728034e+00 lineto +6.829698e+01 4.674004e+00 lineto +closepath +gsave +5.01691e-01 5.01691e-01 5.01691e-01 setrgbcolor +fill +grestore +newpath +6.829698e+01 4.674004e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.815553e+01 4.728034e+00 lineto +6.829698e+01 4.674004e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.1569e+01 5.660865e+00 moveto +6.829698e+01 4.674004e+00 lineto +6.815553e+01 4.728034e+00 lineto +7.128716e+01 5.768515e+00 lineto +7.1569e+01 5.660865e+00 lineto +closepath +gsave +4.98859e-01 4.98859e-01 4.98859e-01 setrgbcolor +fill +grestore +newpath +7.1569e+01 5.660865e+00 moveto +6.829698e+01 4.674004e+00 lineto +6.815553e+01 4.728034e+00 lineto +7.128716e+01 5.768515e+00 lineto +7.1569e+01 5.660865e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.479129e+01 6.95311e+00 moveto +7.1569e+01 5.660865e+00 lineto +7.128716e+01 5.768515e+00 lineto +7.437121e+01 7.113566e+00 lineto +7.479129e+01 6.95311e+00 lineto +closepath +gsave +4.956325e-01 4.956325e-01 4.956325e-01 setrgbcolor +fill +grestore +newpath +7.479129e+01 6.95311e+00 moveto +7.1569e+01 5.660865e+00 lineto +7.128716e+01 5.768515e+00 lineto +7.437121e+01 7.113566e+00 lineto +7.479129e+01 6.95311e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.793946e+01 8.540957e+00 moveto +7.479129e+01 6.95311e+00 lineto +7.437121e+01 7.113566e+00 lineto +7.73843e+01 8.753004e+00 lineto +7.793946e+01 8.540957e+00 lineto +closepath +gsave +4.920642e-01 4.920642e-01 4.920642e-01 setrgbcolor +fill +grestore +newpath +7.793946e+01 8.540957e+00 moveto +7.479129e+01 6.95311e+00 lineto +7.437121e+01 7.113566e+00 lineto +7.73843e+01 8.753004e+00 lineto +7.793946e+01 8.540957e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.098967e+01 1.041239e+01 moveto +7.793946e+01 8.540957e+00 lineto +7.73843e+01 8.753004e+00 lineto +8.030365e+01 1.067442e+01 lineto +8.098967e+01 1.041239e+01 lineto +closepath +gsave +4.88211e-01 4.88211e-01 4.88211e-01 setrgbcolor +fill +grestore +newpath +8.098967e+01 1.041239e+01 moveto +7.793946e+01 8.540957e+00 lineto +7.73843e+01 8.753004e+00 lineto +8.030365e+01 1.067442e+01 lineto +8.098967e+01 1.041239e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.391883e+01 1.255323e+01 moveto +8.098967e+01 1.041239e+01 lineto +8.030365e+01 1.067442e+01 lineto +8.310713e+01 1.286326e+01 lineto +8.391883e+01 1.255323e+01 lineto +closepath +gsave +4.841317e-01 4.841317e-01 4.841317e-01 setrgbcolor +fill +grestore +newpath +8.391883e+01 1.255323e+01 moveto +8.098967e+01 1.041239e+01 lineto +8.030365e+01 1.067442e+01 lineto +8.310713e+01 1.286326e+01 lineto +8.391883e+01 1.255323e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.670476e+01 1.494728e+01 moveto +8.391883e+01 1.255323e+01 lineto +8.310713e+01 1.286326e+01 lineto +8.577354e+01 1.530297e+01 lineto +8.670476e+01 1.494728e+01 lineto +closepath +gsave +4.79886e-01 4.79886e-01 4.79886e-01 setrgbcolor +fill +grestore +newpath +8.670476e+01 1.494728e+01 moveto +8.391883e+01 1.255323e+01 lineto +8.310713e+01 1.286326e+01 lineto +8.577354e+01 1.530297e+01 lineto +8.670476e+01 1.494728e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.932638e+01 1.757641e+01 moveto +8.670476e+01 1.494728e+01 lineto +8.577354e+01 1.530297e+01 lineto +8.828268e+01 1.797506e+01 lineto +8.932638e+01 1.757641e+01 lineto +closepath +gsave +4.755329e-01 4.755329e-01 4.755329e-01 setrgbcolor +fill +grestore +newpath +8.932638e+01 1.757641e+01 moveto +8.670476e+01 1.494728e+01 lineto +8.577354e+01 1.530297e+01 lineto +8.828268e+01 1.797506e+01 lineto +8.932638e+01 1.757641e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.176384e+01 2.042072e+01 moveto +8.932638e+01 1.757641e+01 lineto +8.828268e+01 1.797506e+01 lineto +9.061557e+01 2.085932e+01 lineto +9.176384e+01 2.042072e+01 lineto +closepath +gsave +4.711294e-01 4.711294e-01 4.711294e-01 setrgbcolor +fill +grestore +newpath +9.176384e+01 2.042072e+01 moveto +8.932638e+01 1.757641e+01 lineto +8.828268e+01 1.797506e+01 lineto +9.061557e+01 2.085932e+01 lineto +9.176384e+01 2.042072e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.399869e+01 2.345868e+01 moveto +9.176384e+01 2.042072e+01 lineto +9.061557e+01 2.085932e+01 lineto +9.275453e+01 2.39339e+01 lineto +9.399869e+01 2.345868e+01 lineto +closepath +gsave +4.667292e-01 4.667292e-01 4.667292e-01 setrgbcolor +fill +grestore +newpath +9.399869e+01 2.345868e+01 moveto +9.176384e+01 2.042072e+01 lineto +9.061557e+01 2.085932e+01 lineto +9.275453e+01 2.39339e+01 lineto +9.399869e+01 2.345868e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.6014e+01 2.666728e+01 moveto +9.399869e+01 2.345868e+01 lineto +9.275453e+01 2.39339e+01 lineto +9.468338e+01 2.717553e+01 lineto +9.6014e+01 2.666728e+01 lineto +closepath +gsave +4.62382e-01 4.62382e-01 4.62382e-01 setrgbcolor +fill +grestore +newpath +9.6014e+01 2.666728e+01 moveto +9.399869e+01 2.345868e+01 lineto +9.275453e+01 2.39339e+01 lineto +9.468338e+01 2.717553e+01 lineto +9.6014e+01 2.666728e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.779453e+01 3.002225e+01 moveto +9.6014e+01 2.666728e+01 lineto +9.468338e+01 2.717553e+01 lineto +9.638751e+01 3.055967e+01 lineto +9.779453e+01 3.002225e+01 lineto +closepath +gsave +4.581321e-01 4.581321e-01 4.581321e-01 setrgbcolor +fill +grestore +newpath +9.779453e+01 3.002225e+01 moveto +9.6014e+01 2.666728e+01 lineto +9.468338e+01 2.717553e+01 lineto +9.638751e+01 3.055967e+01 lineto +9.779453e+01 3.002225e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.932678e+01 3.349817e+01 moveto +9.779453e+01 3.002225e+01 lineto +9.638751e+01 3.055967e+01 lineto +9.785402e+01 3.40607e+01 lineto +9.932678e+01 3.349817e+01 lineto +closepath +gsave +4.540188e-01 4.540188e-01 4.540188e-01 setrgbcolor +fill +grestore +newpath +9.932678e+01 3.349817e+01 moveto +9.779453e+01 3.002225e+01 lineto +9.638751e+01 3.055967e+01 lineto +9.785402e+01 3.40607e+01 lineto +9.932678e+01 3.349817e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.005992e+02 3.706873e+01 moveto +9.932678e+01 3.349817e+01 lineto +9.785402e+01 3.40607e+01 lineto +9.907182e+01 3.765212e+01 lineto +1.005992e+02 3.706873e+01 lineto +closepath +gsave +4.500749e-01 4.500749e-01 4.500749e-01 setrgbcolor +fill +grestore +newpath +1.005992e+02 3.706873e+01 moveto +9.932678e+01 3.349817e+01 lineto +9.785402e+01 3.40607e+01 lineto +9.907182e+01 3.765212e+01 lineto +1.005992e+02 3.706873e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.016021e+02 4.070691e+01 moveto +1.005992e+02 3.706873e+01 lineto +9.907182e+01 3.765212e+01 lineto +1.000317e+02 4.130673e+01 lineto +1.016021e+02 4.070691e+01 lineto +closepath +gsave +4.463277e-01 4.463277e-01 4.463277e-01 setrgbcolor +fill +grestore +newpath +1.016021e+02 4.070691e+01 moveto +1.005992e+02 3.706873e+01 lineto +9.907182e+01 3.765212e+01 lineto +1.000317e+02 4.130673e+01 lineto +1.016021e+02 4.070691e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.023278e+02 4.438516e+01 moveto +1.016021e+02 4.070691e+01 lineto +1.000317e+02 4.130673e+01 lineto +1.007263e+02 4.499688e+01 lineto +1.023278e+02 4.438516e+01 lineto +closepath +gsave +4.427981e-01 4.427981e-01 4.427981e-01 setrgbcolor +fill +grestore +newpath +1.023278e+02 4.438516e+01 moveto +1.016021e+02 4.070691e+01 lineto +1.000317e+02 4.130673e+01 lineto +1.007263e+02 4.499688e+01 lineto +1.023278e+02 4.438516e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.02771e+02 4.807564e+01 moveto +1.023278e+02 4.438516e+01 lineto +1.007263e+02 4.499688e+01 lineto +1.011505e+02 4.869461e+01 lineto +1.02771e+02 4.807564e+01 lineto +closepath +gsave +4.395017e-01 4.395017e-01 4.395017e-01 setrgbcolor +fill +grestore +newpath +1.02771e+02 4.807564e+01 moveto +1.023278e+02 4.438516e+01 lineto +1.007263e+02 4.499688e+01 lineto +1.011505e+02 4.869461e+01 lineto +1.02771e+02 4.807564e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.029283e+02 5.17504e+01 moveto +1.02771e+02 4.807564e+01 lineto +1.011505e+02 4.869461e+01 lineto +1.01301e+02 5.237195e+01 lineto +1.029283e+02 5.17504e+01 lineto +closepath +gsave +4.364485e-01 4.364485e-01 4.364485e-01 setrgbcolor +fill +grestore +newpath +1.029283e+02 5.17504e+01 moveto +1.02771e+02 4.807564e+01 lineto +1.011505e+02 4.869461e+01 lineto +1.01301e+02 5.237195e+01 lineto +1.029283e+02 5.17504e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.027984e+02 5.538163e+01 moveto +1.029283e+02 5.17504e+01 lineto +1.01301e+02 5.237195e+01 lineto +1.011767e+02 5.600105e+01 lineto +1.027984e+02 5.538163e+01 lineto +closepath +gsave +4.336438e-01 4.336438e-01 4.336438e-01 setrgbcolor +fill +grestore +newpath +1.027984e+02 5.538163e+01 moveto +1.029283e+02 5.17504e+01 lineto +1.01301e+02 5.237195e+01 lineto +1.011767e+02 5.600105e+01 lineto +1.027984e+02 5.538163e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.023824e+02 5.894183e+01 moveto +1.027984e+02 5.538163e+01 lineto +1.011767e+02 5.600105e+01 lineto +1.007785e+02 5.955444e+01 lineto +1.023824e+02 5.894183e+01 lineto +closepath +gsave +4.310889e-01 4.310889e-01 4.310889e-01 setrgbcolor +fill +grestore +newpath +1.023824e+02 5.894183e+01 moveto +1.027984e+02 5.538163e+01 lineto +1.011767e+02 5.600105e+01 lineto +1.007785e+02 5.955444e+01 lineto +1.023824e+02 5.894183e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.016834e+02 6.240406e+01 moveto +1.023824e+02 5.894183e+01 lineto +1.007785e+02 5.955444e+01 lineto +1.001095e+02 6.300522e+01 lineto +1.016834e+02 6.240406e+01 lineto +closepath +gsave +4.287814e-01 4.287814e-01 4.287814e-01 setrgbcolor +fill +grestore +newpath +1.016834e+02 6.240406e+01 moveto +1.023824e+02 5.894183e+01 lineto +1.007785e+02 5.955444e+01 lineto +1.001095e+02 6.300522e+01 lineto +1.016834e+02 6.240406e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.007066e+02 6.574211e+01 moveto +1.016834e+02 6.240406e+01 lineto +1.001095e+02 6.300522e+01 lineto +9.917468e+01 6.632725e+01 lineto +1.007066e+02 6.574211e+01 lineto +closepath +gsave +4.267163e-01 4.267163e-01 4.267163e-01 setrgbcolor +fill +grestore +newpath +1.007066e+02 6.574211e+01 moveto +1.016834e+02 6.240406e+01 lineto +1.001095e+02 6.300522e+01 lineto +9.917468e+01 6.632725e+01 lineto +1.007066e+02 6.574211e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.945959e+01 6.893069e+01 moveto +1.007066e+02 6.574211e+01 lineto +9.917468e+01 6.632725e+01 lineto +9.798114e+01 6.949541e+01 lineto +9.945959e+01 6.893069e+01 lineto +closepath +gsave +4.248863e-01 4.248863e-01 4.248863e-01 setrgbcolor +fill +grestore +newpath +9.945959e+01 6.893069e+01 moveto +1.007066e+02 6.574211e+01 lineto +9.917468e+01 6.632725e+01 lineto +9.798114e+01 6.949541e+01 lineto +9.945959e+01 6.893069e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.795167e+01 7.194569e+01 moveto +9.945959e+01 6.893069e+01 lineto +9.798114e+01 6.949541e+01 lineto +9.653791e+01 7.248569e+01 lineto +9.795167e+01 7.194569e+01 lineto +closepath +gsave +4.232828e-01 4.232828e-01 4.232828e-01 setrgbcolor +fill +grestore +newpath +9.795167e+01 7.194569e+01 moveto +9.945959e+01 6.893069e+01 lineto +9.798114e+01 6.949541e+01 lineto +9.653791e+01 7.248569e+01 lineto +9.795167e+01 7.194569e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.619428e+01 7.476426e+01 moveto +9.795167e+01 7.194569e+01 lineto +9.653791e+01 7.248569e+01 lineto +9.485592e+01 7.527546e+01 lineto +9.619428e+01 7.476426e+01 lineto +closepath +gsave +4.218964e-01 4.218964e-01 4.218964e-01 setrgbcolor +fill +grestore +newpath +9.619428e+01 7.476426e+01 moveto +9.795167e+01 7.194569e+01 lineto +9.653791e+01 7.248569e+01 lineto +9.485592e+01 7.527546e+01 lineto +9.619428e+01 7.476426e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.420074e+01 7.736507e+01 moveto +9.619428e+01 7.476426e+01 lineto +9.485592e+01 7.527546e+01 lineto +9.294792e+01 7.78436e+01 lineto +9.420074e+01 7.736507e+01 lineto +closepath +gsave +4.207174e-01 4.207174e-01 4.207174e-01 setrgbcolor +fill +grestore +newpath +9.420074e+01 7.736507e+01 moveto +9.619428e+01 7.476426e+01 lineto +9.485592e+01 7.527546e+01 lineto +9.294792e+01 7.78436e+01 lineto +9.420074e+01 7.736507e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.198614e+01 7.972844e+01 moveto +9.420074e+01 7.736507e+01 lineto +9.294792e+01 7.78436e+01 lineto +9.082833e+01 8.017068e+01 lineto +9.198614e+01 7.972844e+01 lineto +closepath +gsave +4.197363e-01 4.197363e-01 4.197363e-01 setrgbcolor +fill +grestore +newpath +9.198614e+01 7.972844e+01 moveto +9.420074e+01 7.736507e+01 lineto +9.294792e+01 7.78436e+01 lineto +9.082833e+01 8.017068e+01 lineto +9.198614e+01 7.972844e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.956725e+01 8.183647e+01 moveto +9.198614e+01 7.972844e+01 lineto +9.082833e+01 8.017068e+01 lineto +8.851321e+01 8.223907e+01 lineto +8.956725e+01 8.183647e+01 lineto +closepath +gsave +4.189446e-01 4.189446e-01 4.189446e-01 setrgbcolor +fill +grestore +newpath +8.956725e+01 8.183647e+01 moveto +9.198614e+01 7.972844e+01 lineto +9.082833e+01 8.017068e+01 lineto +8.851321e+01 8.223907e+01 lineto +8.956725e+01 8.183647e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.696236e+01 8.36732e+01 moveto +8.956725e+01 8.183647e+01 lineto +8.851321e+01 8.223907e+01 lineto +8.602009e+01 8.403311e+01 lineto +8.696236e+01 8.36732e+01 lineto +closepath +gsave +4.183346e-01 4.183346e-01 4.183346e-01 setrgbcolor +fill +grestore +newpath +8.696236e+01 8.36732e+01 moveto +8.956725e+01 8.183647e+01 lineto +8.851321e+01 8.223907e+01 lineto +8.602009e+01 8.403311e+01 lineto +8.696236e+01 8.36732e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.419122e+01 8.522472e+01 moveto +8.696236e+01 8.36732e+01 lineto +8.602009e+01 8.403311e+01 lineto +8.336784e+01 8.553922e+01 lineto +8.419122e+01 8.522472e+01 lineto +closepath +gsave +4.179001e-01 4.179001e-01 4.179001e-01 setrgbcolor +fill +grestore +newpath +8.419122e+01 8.522472e+01 moveto +8.696236e+01 8.36732e+01 lineto +8.602009e+01 8.403311e+01 lineto +8.336784e+01 8.553922e+01 lineto +8.419122e+01 8.522472e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.127478e+01 8.64793e+01 moveto +8.419122e+01 8.522472e+01 lineto +8.336784e+01 8.553922e+01 lineto +8.057653e+01 8.674601e+01 lineto +8.127478e+01 8.64793e+01 lineto +closepath +gsave +4.176364e-01 4.176364e-01 4.176364e-01 setrgbcolor +fill +grestore +newpath +8.127478e+01 8.64793e+01 moveto +8.419122e+01 8.522472e+01 lineto +8.336784e+01 8.553922e+01 lineto +8.057653e+01 8.674601e+01 lineto +8.127478e+01 8.64793e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.87415e+01 8.644663e+01 moveto +6.201697e+01 8.740392e+01 lineto +6.214496e+01 8.735503e+01 lineto +5.901001e+01 8.634407e+01 lineto +5.87415e+01 8.644663e+01 lineto +closepath +gsave +4.991471e-01 4.991471e-01 4.991471e-01 setrgbcolor +fill +grestore +newpath +5.87415e+01 8.644663e+01 moveto +6.201697e+01 8.740392e+01 lineto +6.214496e+01 8.735503e+01 lineto +5.901001e+01 8.634407e+01 lineto +5.87415e+01 8.644663e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.55134e+01 8.518314e+01 moveto +5.87415e+01 8.644663e+01 lineto +5.901001e+01 8.634407e+01 lineto +5.592041e+01 8.502768e+01 lineto +5.55134e+01 8.518314e+01 lineto +closepath +gsave +4.95956e-01 4.95956e-01 4.95956e-01 setrgbcolor +fill +grestore +newpath +5.55134e+01 8.518314e+01 moveto +5.87415e+01 8.644663e+01 lineto +5.901001e+01 8.634407e+01 lineto +5.592041e+01 8.502768e+01 lineto +5.55134e+01 8.518314e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.235712e+01 8.362302e+01 moveto +5.55134e+01 8.518314e+01 lineto +5.592041e+01 8.502768e+01 lineto +5.289955e+01 8.341583e+01 lineto +5.235712e+01 8.362302e+01 lineto +closepath +gsave +4.92418e-01 4.92418e-01 4.92418e-01 setrgbcolor +fill +grestore +newpath +5.235712e+01 8.362302e+01 moveto +5.55134e+01 8.518314e+01 lineto +5.592041e+01 8.502768e+01 lineto +5.289955e+01 8.341583e+01 lineto +5.235712e+01 8.362302e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.815553e+01 4.728034e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.799462e+01 4.778555e+00 lineto +6.815553e+01 4.728034e+00 lineto +closepath +gsave +5.024827e-01 5.024827e-01 5.024827e-01 setrgbcolor +fill +grestore +newpath +6.815553e+01 4.728034e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.799462e+01 4.778555e+00 lineto +6.815553e+01 4.728034e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.128716e+01 5.768515e+00 moveto +6.815553e+01 4.728034e+00 lineto +6.799462e+01 4.778555e+00 lineto +7.096657e+01 5.869175e+00 lineto +7.128716e+01 5.768515e+00 lineto +closepath +gsave +5.01196e-01 5.01196e-01 5.01196e-01 setrgbcolor +fill +grestore +newpath +7.128716e+01 5.768515e+00 moveto +6.815553e+01 4.728034e+00 lineto +6.799462e+01 4.778555e+00 lineto +7.096657e+01 5.869175e+00 lineto +7.128716e+01 5.768515e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.437121e+01 7.113566e+00 moveto +7.128716e+01 5.768515e+00 lineto +7.096657e+01 5.869175e+00 lineto +7.389334e+01 7.263603e+00 lineto +7.437121e+01 7.113566e+00 lineto +closepath +gsave +4.994429e-01 4.994429e-01 4.994429e-01 setrgbcolor +fill +grestore +newpath +7.437121e+01 7.113566e+00 moveto +7.128716e+01 5.768515e+00 lineto +7.096657e+01 5.869175e+00 lineto +7.389334e+01 7.263603e+00 lineto +7.437121e+01 7.113566e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.73843e+01 8.753004e+00 moveto +7.437121e+01 7.113566e+00 lineto +7.389334e+01 7.263603e+00 lineto +7.67528e+01 8.951282e+00 lineto +7.73843e+01 8.753004e+00 lineto +closepath +gsave +4.972532e-01 4.972532e-01 4.972532e-01 setrgbcolor +fill +grestore +newpath +7.73843e+01 8.753004e+00 moveto +7.437121e+01 7.113566e+00 lineto +7.389334e+01 7.263603e+00 lineto +7.67528e+01 8.951282e+00 lineto +7.73843e+01 8.753004e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.030365e+01 1.067442e+01 moveto +7.73843e+01 8.753004e+00 lineto +7.67528e+01 8.951282e+00 lineto +7.952327e+01 1.091944e+01 lineto +8.030365e+01 1.067442e+01 lineto +closepath +gsave +4.946634e-01 4.946634e-01 4.946634e-01 setrgbcolor +fill +grestore +newpath +8.030365e+01 1.067442e+01 moveto +7.73843e+01 8.753004e+00 lineto +7.67528e+01 8.951282e+00 lineto +7.952327e+01 1.091944e+01 lineto +8.030365e+01 1.067442e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.310713e+01 1.286326e+01 moveto +8.030365e+01 1.067442e+01 lineto +7.952327e+01 1.091944e+01 lineto +8.21838e+01 1.315317e+01 lineto +8.310713e+01 1.286326e+01 lineto +closepath +gsave +4.917157e-01 4.917157e-01 4.917157e-01 setrgbcolor +fill +grestore +newpath +8.310713e+01 1.286326e+01 moveto +8.030365e+01 1.067442e+01 lineto +7.952327e+01 1.091944e+01 lineto +8.21838e+01 1.315317e+01 lineto +8.310713e+01 1.286326e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.577354e+01 1.530297e+01 moveto +8.310713e+01 1.286326e+01 lineto +8.21838e+01 1.315317e+01 lineto +8.471424e+01 1.563556e+01 lineto +8.577354e+01 1.530297e+01 lineto +closepath +gsave +4.884571e-01 4.884571e-01 4.884571e-01 setrgbcolor +fill +grestore +newpath +8.577354e+01 1.530297e+01 moveto +8.310713e+01 1.286326e+01 lineto +8.21838e+01 1.315317e+01 lineto +8.471424e+01 1.563556e+01 lineto +8.577354e+01 1.530297e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.828268e+01 1.797506e+01 moveto +8.577354e+01 1.530297e+01 lineto +8.471424e+01 1.563556e+01 lineto +8.709544e+01 1.834783e+01 lineto +8.828268e+01 1.797506e+01 lineto +closepath +gsave +4.849377e-01 4.849377e-01 4.849377e-01 setrgbcolor +fill +grestore +newpath +8.828268e+01 1.797506e+01 moveto +8.577354e+01 1.530297e+01 lineto +8.471424e+01 1.563556e+01 lineto +8.709544e+01 1.834783e+01 lineto +8.828268e+01 1.797506e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.061557e+01 2.085932e+01 moveto +8.828268e+01 1.797506e+01 lineto +8.709544e+01 1.834783e+01 lineto +8.930936e+01 2.126943e+01 lineto +9.061557e+01 2.085932e+01 lineto +closepath +gsave +4.812097e-01 4.812097e-01 4.812097e-01 setrgbcolor +fill +grestore +newpath +9.061557e+01 2.085932e+01 moveto +8.828268e+01 1.797506e+01 lineto +8.709544e+01 1.834783e+01 lineto +8.930936e+01 2.126943e+01 lineto +9.061557e+01 2.085932e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.275453e+01 2.39339e+01 moveto +9.061557e+01 2.085932e+01 lineto +8.930936e+01 2.126943e+01 lineto +9.133925e+01 2.437826e+01 lineto +9.275453e+01 2.39339e+01 lineto +closepath +gsave +4.773261e-01 4.773261e-01 4.773261e-01 setrgbcolor +fill +grestore +newpath +9.275453e+01 2.39339e+01 moveto +9.061557e+01 2.085932e+01 lineto +8.930936e+01 2.126943e+01 lineto +9.133925e+01 2.437826e+01 lineto +9.275453e+01 2.39339e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.468338e+01 2.717553e+01 moveto +9.275453e+01 2.39339e+01 lineto +9.133925e+01 2.437826e+01 lineto +9.316975e+01 2.765077e+01 lineto +9.468338e+01 2.717553e+01 lineto +closepath +gsave +4.733393e-01 4.733393e-01 4.733393e-01 setrgbcolor +fill +grestore +newpath +9.468338e+01 2.717553e+01 moveto +9.275453e+01 2.39339e+01 lineto +9.133925e+01 2.437826e+01 lineto +9.316975e+01 2.765077e+01 lineto +9.468338e+01 2.717553e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.638751e+01 3.055967e+01 moveto +9.468338e+01 2.717553e+01 lineto +9.316975e+01 2.765077e+01 lineto +9.478698e+01 3.10622e+01 lineto +9.638751e+01 3.055967e+01 lineto +closepath +gsave +4.693001e-01 4.693001e-01 4.693001e-01 setrgbcolor +fill +grestore +newpath +9.638751e+01 3.055967e+01 moveto +9.468338e+01 2.717553e+01 lineto +9.316975e+01 2.765077e+01 lineto +9.478698e+01 3.10622e+01 lineto +9.638751e+01 3.055967e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.785402e+01 3.40607e+01 moveto +9.638751e+01 3.055967e+01 lineto +9.478698e+01 3.10622e+01 lineto +9.617871e+01 3.458671e+01 lineto +9.785402e+01 3.40607e+01 lineto +closepath +gsave +4.652566e-01 4.652566e-01 4.652566e-01 setrgbcolor +fill +grestore +newpath +9.785402e+01 3.40607e+01 moveto +9.638751e+01 3.055967e+01 lineto +9.478698e+01 3.10622e+01 lineto +9.617871e+01 3.458671e+01 lineto +9.785402e+01 3.40607e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.907182e+01 3.765212e+01 moveto +9.785402e+01 3.40607e+01 lineto +9.617871e+01 3.458671e+01 lineto +9.733441e+01 3.819762e+01 lineto +9.907182e+01 3.765212e+01 lineto +closepath +gsave +4.612532e-01 4.612532e-01 4.612532e-01 setrgbcolor +fill +grestore +newpath +9.907182e+01 3.765212e+01 moveto +9.785402e+01 3.40607e+01 lineto +9.617871e+01 3.458671e+01 lineto +9.733441e+01 3.819762e+01 lineto +9.907182e+01 3.765212e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.000317e+02 4.130673e+01 moveto +9.907182e+01 3.765212e+01 lineto +9.733441e+01 3.819762e+01 lineto +9.824532e+01 4.18676e+01 lineto +1.000317e+02 4.130673e+01 lineto +closepath +gsave +4.573303e-01 4.573303e-01 4.573303e-01 setrgbcolor +fill +grestore +newpath +1.000317e+02 4.130673e+01 moveto +9.907182e+01 3.765212e+01 lineto +9.733441e+01 3.819762e+01 lineto +9.824532e+01 4.18676e+01 lineto +1.000317e+02 4.130673e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.007263e+02 4.499688e+01 moveto +1.000317e+02 4.130673e+01 lineto +9.824532e+01 4.18676e+01 lineto +9.890455e+01 4.556887e+01 lineto +1.007263e+02 4.499688e+01 lineto +closepath +gsave +4.535235e-01 4.535235e-01 4.535235e-01 setrgbcolor +fill +grestore +newpath +1.007263e+02 4.499688e+01 moveto +1.000317e+02 4.130673e+01 lineto +9.824532e+01 4.18676e+01 lineto +9.890455e+01 4.556887e+01 lineto +1.007263e+02 4.499688e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.011505e+02 4.869461e+01 moveto +1.007263e+02 4.499688e+01 lineto +9.890455e+01 4.556887e+01 lineto +9.930711e+01 4.92734e+01 lineto +1.011505e+02 4.869461e+01 lineto +closepath +gsave +4.498633e-01 4.498633e-01 4.498633e-01 setrgbcolor +fill +grestore +newpath +1.011505e+02 4.869461e+01 moveto +1.007263e+02 4.499688e+01 lineto +9.890455e+01 4.556887e+01 lineto +9.930711e+01 4.92734e+01 lineto +1.011505e+02 4.869461e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.01301e+02 5.237195e+01 moveto +1.011505e+02 4.869461e+01 lineto +9.930711e+01 4.92734e+01 lineto +9.944995e+01 5.295315e+01 lineto +1.01301e+02 5.237195e+01 lineto +closepath +gsave +4.46375e-01 4.46375e-01 4.46375e-01 setrgbcolor +fill +grestore +newpath +1.01301e+02 5.237195e+01 moveto +1.011505e+02 4.869461e+01 lineto +9.930711e+01 4.92734e+01 lineto +9.944995e+01 5.295315e+01 lineto +1.01301e+02 5.237195e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.011767e+02 5.600105e+01 moveto +1.01301e+02 5.237195e+01 lineto +9.944995e+01 5.295315e+01 lineto +9.933198e+01 5.658026e+01 lineto +1.011767e+02 5.600105e+01 lineto +closepath +gsave +4.430787e-01 4.430787e-01 4.430787e-01 setrgbcolor +fill +grestore +newpath +1.011767e+02 5.600105e+01 moveto +1.01301e+02 5.237195e+01 lineto +9.944995e+01 5.295315e+01 lineto +9.933198e+01 5.658026e+01 lineto +1.011767e+02 5.600105e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.007785e+02 5.955444e+01 moveto +1.011767e+02 5.600105e+01 lineto +9.933198e+01 5.658026e+01 lineto +9.895411e+01 6.012727e+01 lineto +1.007785e+02 5.955444e+01 lineto +closepath +gsave +4.399898e-01 4.399898e-01 4.399898e-01 setrgbcolor +fill +grestore +newpath +1.007785e+02 5.955444e+01 moveto +1.011767e+02 5.600105e+01 lineto +9.933198e+01 5.658026e+01 lineto +9.895411e+01 6.012727e+01 lineto +1.007785e+02 5.955444e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.001095e+02 6.300522e+01 moveto +1.007785e+02 5.955444e+01 lineto +9.895411e+01 6.012727e+01 lineto +9.831919e+01 6.356733e+01 lineto +1.001095e+02 6.300522e+01 lineto +closepath +gsave +4.371187e-01 4.371187e-01 4.371187e-01 setrgbcolor +fill +grestore +newpath +1.001095e+02 6.300522e+01 moveto +1.007785e+02 5.955444e+01 lineto +9.895411e+01 6.012727e+01 lineto +9.831919e+01 6.356733e+01 lineto +1.001095e+02 6.300522e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.917468e+01 6.632725e+01 moveto +1.001095e+02 6.300522e+01 lineto +9.831919e+01 6.356733e+01 lineto +9.743203e+01 6.687441e+01 lineto +9.917468e+01 6.632725e+01 lineto +closepath +gsave +4.344719e-01 4.344719e-01 4.344719e-01 setrgbcolor +fill +grestore +newpath +9.917468e+01 6.632725e+01 moveto +1.001095e+02 6.300522e+01 lineto +9.831919e+01 6.356733e+01 lineto +9.743203e+01 6.687441e+01 lineto +9.917468e+01 6.632725e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.798114e+01 6.949541e+01 moveto +9.917468e+01 6.632725e+01 lineto +9.743203e+01 6.687441e+01 lineto +9.629934e+01 7.002345e+01 lineto +9.798114e+01 6.949541e+01 lineto +closepath +gsave +4.320521e-01 4.320521e-01 4.320521e-01 setrgbcolor +fill +grestore +newpath +9.798114e+01 6.949541e+01 moveto +9.917468e+01 6.632725e+01 lineto +9.743203e+01 6.687441e+01 lineto +9.629934e+01 7.002345e+01 lineto +9.798114e+01 6.949541e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.653791e+01 7.248569e+01 moveto +9.798114e+01 6.949541e+01 lineto +9.629934e+01 7.002345e+01 lineto +9.492971e+01 7.299062e+01 lineto +9.653791e+01 7.248569e+01 lineto +closepath +gsave +4.298586e-01 4.298586e-01 4.298586e-01 setrgbcolor +fill +grestore +newpath +9.653791e+01 7.248569e+01 moveto +9.798114e+01 6.949541e+01 lineto +9.629934e+01 7.002345e+01 lineto +9.492971e+01 7.299062e+01 lineto +9.653791e+01 7.248569e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.485592e+01 7.527546e+01 moveto +9.653791e+01 7.248569e+01 lineto +9.492971e+01 7.299062e+01 lineto +9.333349e+01 7.575347e+01 lineto +9.485592e+01 7.527546e+01 lineto +closepath +gsave +4.278886e-01 4.278886e-01 4.278886e-01 setrgbcolor +fill +grestore +newpath +9.485592e+01 7.527546e+01 moveto +9.653791e+01 7.248569e+01 lineto +9.492971e+01 7.299062e+01 lineto +9.333349e+01 7.575347e+01 lineto +9.485592e+01 7.527546e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.294792e+01 7.78436e+01 moveto +9.485592e+01 7.527546e+01 lineto +9.333349e+01 7.575347e+01 lineto +9.152278e+01 7.829106e+01 lineto +9.294792e+01 7.78436e+01 lineto +closepath +gsave +4.26137e-01 4.26137e-01 4.26137e-01 setrgbcolor +fill +grestore +newpath +9.294792e+01 7.78436e+01 moveto +9.485592e+01 7.527546e+01 lineto +9.333349e+01 7.575347e+01 lineto +9.152278e+01 7.829106e+01 lineto +9.294792e+01 7.78436e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.082833e+01 8.017068e+01 moveto +9.294792e+01 7.78436e+01 lineto +9.152278e+01 7.829106e+01 lineto +8.951128e+01 8.05842e+01 lineto +9.082833e+01 8.017068e+01 lineto +closepath +gsave +4.245975e-01 4.245975e-01 4.245975e-01 setrgbcolor +fill +grestore +newpath +9.082833e+01 8.017068e+01 moveto +9.294792e+01 7.78436e+01 lineto +9.152278e+01 7.829106e+01 lineto +8.951128e+01 8.05842e+01 lineto +9.082833e+01 8.017068e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.851321e+01 8.223907e+01 moveto +9.082833e+01 8.017068e+01 lineto +8.951128e+01 8.05842e+01 lineto +8.731421e+01 8.261552e+01 lineto +8.851321e+01 8.223907e+01 lineto +closepath +gsave +4.232626e-01 4.232626e-01 4.232626e-01 setrgbcolor +fill +grestore +newpath +8.851321e+01 8.223907e+01 moveto +9.082833e+01 8.017068e+01 lineto +8.951128e+01 8.05842e+01 lineto +8.731421e+01 8.261552e+01 lineto +8.851321e+01 8.223907e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.602009e+01 8.403311e+01 moveto +8.851321e+01 8.223907e+01 lineto +8.731421e+01 8.261552e+01 lineto +8.494822e+01 8.436965e+01 lineto +8.602009e+01 8.403311e+01 lineto +closepath +gsave +4.22125e-01 4.22125e-01 4.22125e-01 setrgbcolor +fill +grestore +newpath +8.602009e+01 8.403311e+01 moveto +8.851321e+01 8.223907e+01 lineto +8.731421e+01 8.261552e+01 lineto +8.494822e+01 8.436965e+01 lineto +8.602009e+01 8.403311e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.336784e+01 8.553922e+01 moveto +8.602009e+01 8.403311e+01 lineto +8.494822e+01 8.436965e+01 lineto +8.243121e+01 8.58333e+01 lineto +8.336784e+01 8.553922e+01 lineto +closepath +gsave +4.21177e-01 4.21177e-01 4.21177e-01 setrgbcolor +fill +grestore +newpath +8.336784e+01 8.553922e+01 moveto +8.602009e+01 8.403311e+01 lineto +8.494822e+01 8.436965e+01 lineto +8.243121e+01 8.58333e+01 lineto +8.336784e+01 8.553922e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.057653e+01 8.674601e+01 moveto +8.336784e+01 8.553922e+01 lineto +8.243121e+01 8.58333e+01 lineto +7.978224e+01 8.699539e+01 lineto +8.057653e+01 8.674601e+01 lineto +closepath +gsave +4.204117e-01 4.204117e-01 4.204117e-01 setrgbcolor +fill +grestore +newpath +8.057653e+01 8.674601e+01 moveto +8.336784e+01 8.553922e+01 lineto +8.243121e+01 8.58333e+01 lineto +7.978224e+01 8.699539e+01 lineto +8.057653e+01 8.674601e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.901001e+01 8.634407e+01 moveto +6.214496e+01 8.735503e+01 lineto +6.229054e+01 8.730932e+01 lineto +5.931546e+01 8.624817e+01 lineto +5.901001e+01 8.634407e+01 lineto +closepath +gsave +5.013393e-01 5.013393e-01 5.013393e-01 setrgbcolor +fill +grestore +newpath +5.901001e+01 8.634407e+01 moveto +6.214496e+01 8.735503e+01 lineto +6.229054e+01 8.730932e+01 lineto +5.931546e+01 8.624817e+01 lineto +5.901001e+01 8.634407e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.592041e+01 8.502768e+01 moveto +5.901001e+01 8.634407e+01 lineto +5.931546e+01 8.624817e+01 lineto +5.638341e+01 8.488231e+01 lineto +5.592041e+01 8.502768e+01 lineto +closepath +gsave +4.996296e-01 4.996296e-01 4.996296e-01 setrgbcolor +fill +grestore +newpath +5.592041e+01 8.502768e+01 moveto +5.901001e+01 8.634407e+01 lineto +5.931546e+01 8.624817e+01 lineto +5.638341e+01 8.488231e+01 lineto +5.592041e+01 8.502768e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.289955e+01 8.341583e+01 moveto +5.592041e+01 8.502768e+01 lineto +5.638341e+01 8.488231e+01 lineto +5.351659e+01 8.32221e+01 lineto +5.289955e+01 8.341583e+01 lineto +closepath +gsave +4.974801e-01 4.974801e-01 4.974801e-01 setrgbcolor +fill +grestore +newpath +5.289955e+01 8.341583e+01 moveto +5.592041e+01 8.502768e+01 lineto +5.638341e+01 8.488231e+01 lineto +5.351659e+01 8.32221e+01 lineto +5.289955e+01 8.341583e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.799462e+01 4.778555e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.781525e+01 4.825257e+00 lineto +6.799462e+01 4.778555e+00 lineto +closepath +gsave +5.03281e-01 5.03281e-01 5.03281e-01 setrgbcolor +fill +grestore +newpath +6.799462e+01 4.778555e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.781525e+01 4.825257e+00 lineto +6.799462e+01 4.778555e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.096657e+01 5.869175e+00 moveto +6.799462e+01 4.778555e+00 lineto +6.781525e+01 4.825257e+00 lineto +7.060918e+01 5.962225e+00 lineto +7.096657e+01 5.869175e+00 lineto +closepath +gsave +5.035769e-01 5.035769e-01 5.035769e-01 setrgbcolor +fill +grestore +newpath +7.096657e+01 5.869175e+00 moveto +6.799462e+01 4.778555e+00 lineto +6.781525e+01 4.825257e+00 lineto +7.060918e+01 5.962225e+00 lineto +7.096657e+01 5.869175e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.389334e+01 7.263603e+00 moveto +7.096657e+01 5.869175e+00 lineto +7.060918e+01 5.962225e+00 lineto +7.336065e+01 7.402296e+00 lineto +7.389334e+01 7.263603e+00 lineto +closepath +gsave +5.033656e-01 5.033656e-01 5.033656e-01 setrgbcolor +fill +grestore +newpath +7.389334e+01 7.263603e+00 moveto +7.096657e+01 5.869175e+00 lineto +7.060918e+01 5.962225e+00 lineto +7.336065e+01 7.402296e+00 lineto +7.389334e+01 7.263603e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.67528e+01 8.951282e+00 moveto +7.389334e+01 7.263603e+00 lineto +7.336065e+01 7.402296e+00 lineto +7.604883e+01 9.134569e+00 lineto +7.67528e+01 8.951282e+00 lineto +closepath +gsave +5.026505e-01 5.026505e-01 5.026505e-01 setrgbcolor +fill +grestore +newpath +7.67528e+01 8.951282e+00 moveto +7.389334e+01 7.263603e+00 lineto +7.336065e+01 7.402296e+00 lineto +7.604883e+01 9.134569e+00 lineto +7.67528e+01 8.951282e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.952327e+01 1.091944e+01 moveto +7.67528e+01 8.951282e+00 lineto +7.604883e+01 9.134569e+00 lineto +7.865336e+01 1.114593e+01 lineto +7.952327e+01 1.091944e+01 lineto +closepath +gsave +5.014444e-01 5.014444e-01 5.014444e-01 setrgbcolor +fill +grestore +newpath +7.952327e+01 1.091944e+01 moveto +7.67528e+01 8.951282e+00 lineto +7.604883e+01 9.134569e+00 lineto +7.865336e+01 1.114593e+01 lineto +7.952327e+01 1.091944e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.21838e+01 1.315317e+01 moveto +7.952327e+01 1.091944e+01 lineto +7.865336e+01 1.114593e+01 lineto +8.115453e+01 1.342115e+01 lineto +8.21838e+01 1.315317e+01 lineto +closepath +gsave +4.997679e-01 4.997679e-01 4.997679e-01 setrgbcolor +fill +grestore +newpath +8.21838e+01 1.315317e+01 moveto +7.952327e+01 1.091944e+01 lineto +7.865336e+01 1.114593e+01 lineto +8.115453e+01 1.342115e+01 lineto +8.21838e+01 1.315317e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.471424e+01 1.563556e+01 moveto +8.21838e+01 1.315317e+01 lineto +8.115453e+01 1.342115e+01 lineto +8.35334e+01 1.594301e+01 lineto +8.471424e+01 1.563556e+01 lineto +closepath +gsave +4.976496e-01 4.976496e-01 4.976496e-01 setrgbcolor +fill +grestore +newpath +8.471424e+01 1.563556e+01 moveto +8.21838e+01 1.315317e+01 lineto +8.115453e+01 1.342115e+01 lineto +8.35334e+01 1.594301e+01 lineto +8.471424e+01 1.563556e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.709544e+01 1.834783e+01 moveto +8.471424e+01 1.563556e+01 lineto +8.35334e+01 1.594301e+01 lineto +8.577197e+01 1.869241e+01 lineto +8.709544e+01 1.834783e+01 lineto +closepath +gsave +4.95125e-01 4.95125e-01 4.95125e-01 setrgbcolor +fill +grestore +newpath +8.709544e+01 1.834783e+01 moveto +8.471424e+01 1.563556e+01 lineto +8.35334e+01 1.594301e+01 lineto +8.577197e+01 1.869241e+01 lineto +8.709544e+01 1.834783e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.930936e+01 2.126943e+01 moveto +8.709544e+01 1.834783e+01 lineto +8.577197e+01 1.869241e+01 lineto +8.785328e+01 2.164854e+01 lineto +8.930936e+01 2.126943e+01 lineto +closepath +gsave +4.922354e-01 4.922354e-01 4.922354e-01 setrgbcolor +fill +grestore +newpath +8.930936e+01 2.126943e+01 moveto +8.709544e+01 1.834783e+01 lineto +8.577197e+01 1.869241e+01 lineto +8.785328e+01 2.164854e+01 lineto +8.930936e+01 2.126943e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.133925e+01 2.437826e+01 moveto +8.930936e+01 2.126943e+01 lineto +8.785328e+01 2.164854e+01 lineto +8.976159e+01 2.478902e+01 lineto +9.133925e+01 2.437826e+01 lineto +closepath +gsave +4.890271e-01 4.890271e-01 4.890271e-01 setrgbcolor +fill +grestore +newpath +9.133925e+01 2.437826e+01 moveto +8.930936e+01 2.126943e+01 lineto +8.785328e+01 2.164854e+01 lineto +8.976159e+01 2.478902e+01 lineto +9.133925e+01 2.437826e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.316975e+01 2.765077e+01 moveto +9.133925e+01 2.437826e+01 lineto +8.976159e+01 2.478902e+01 lineto +9.148244e+01 2.809008e+01 lineto +9.316975e+01 2.765077e+01 lineto +closepath +gsave +4.855496e-01 4.855496e-01 4.855496e-01 setrgbcolor +fill +grestore +newpath +9.316975e+01 2.765077e+01 moveto +9.133925e+01 2.437826e+01 lineto +8.976159e+01 2.478902e+01 lineto +9.148244e+01 2.809008e+01 lineto +9.316975e+01 2.765077e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.478698e+01 3.10622e+01 moveto +9.316975e+01 2.765077e+01 lineto +9.148244e+01 2.809008e+01 lineto +9.30028e+01 3.152673e+01 lineto +9.478698e+01 3.10622e+01 lineto +closepath +gsave +4.818548e-01 4.818548e-01 4.818548e-01 setrgbcolor +fill +grestore +newpath +9.478698e+01 3.10622e+01 moveto +9.316975e+01 2.765077e+01 lineto +9.148244e+01 2.809008e+01 lineto +9.30028e+01 3.152673e+01 lineto +9.478698e+01 3.10622e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.617871e+01 3.458671e+01 moveto +9.478698e+01 3.10622e+01 lineto +9.30028e+01 3.152673e+01 lineto +9.431117e+01 3.507295e+01 lineto +9.617871e+01 3.458671e+01 lineto +closepath +gsave +4.779955e-01 4.779955e-01 4.779955e-01 setrgbcolor +fill +grestore +newpath +9.617871e+01 3.458671e+01 moveto +9.478698e+01 3.10622e+01 lineto +9.30028e+01 3.152673e+01 lineto +9.431117e+01 3.507295e+01 lineto +9.617871e+01 3.458671e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.733441e+01 3.819762e+01 moveto +9.617871e+01 3.458671e+01 lineto +9.431117e+01 3.507295e+01 lineto +9.539765e+01 3.870188e+01 lineto +9.733441e+01 3.819762e+01 lineto +closepath +gsave +4.740242e-01 4.740242e-01 4.740242e-01 setrgbcolor +fill +grestore +newpath +9.733441e+01 3.819762e+01 moveto +9.617871e+01 3.458671e+01 lineto +9.431117e+01 3.507295e+01 lineto +9.539765e+01 3.870188e+01 lineto +9.733441e+01 3.819762e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.824532e+01 4.18676e+01 moveto +9.733441e+01 3.819762e+01 lineto +9.539765e+01 3.870188e+01 lineto +9.6254e+01 4.238607e+01 lineto +9.824532e+01 4.18676e+01 lineto +closepath +gsave +4.699918e-01 4.699918e-01 4.699918e-01 setrgbcolor +fill +grestore +newpath +9.824532e+01 4.18676e+01 moveto +9.733441e+01 3.819762e+01 lineto +9.539765e+01 3.870188e+01 lineto +9.6254e+01 4.238607e+01 lineto +9.824532e+01 4.18676e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.890455e+01 4.556887e+01 moveto +9.824532e+01 4.18676e+01 lineto +9.6254e+01 4.238607e+01 lineto +9.687374e+01 4.609762e+01 lineto +9.890455e+01 4.556887e+01 lineto +closepath +gsave +4.65947e-01 4.65947e-01 4.65947e-01 setrgbcolor +fill +grestore +newpath +9.890455e+01 4.556887e+01 moveto +9.824532e+01 4.18676e+01 lineto +9.6254e+01 4.238607e+01 lineto +9.687374e+01 4.609762e+01 lineto +9.890455e+01 4.556887e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.930711e+01 4.92734e+01 moveto +9.890455e+01 4.556887e+01 lineto +9.687374e+01 4.609762e+01 lineto +9.725219e+01 4.980842e+01 lineto +9.930711e+01 4.92734e+01 lineto +closepath +gsave +4.619348e-01 4.619348e-01 4.619348e-01 setrgbcolor +fill +grestore +newpath +9.930711e+01 4.92734e+01 moveto +9.890455e+01 4.556887e+01 lineto +9.687374e+01 4.609762e+01 lineto +9.725219e+01 4.980842e+01 lineto +9.930711e+01 4.92734e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.944995e+01 5.295315e+01 moveto +9.930711e+01 4.92734e+01 lineto +9.725219e+01 4.980842e+01 lineto +9.738647e+01 5.34904e+01 lineto +9.944995e+01 5.295315e+01 lineto +closepath +gsave +4.579962e-01 4.579962e-01 4.579962e-01 setrgbcolor +fill +grestore +newpath +9.944995e+01 5.295315e+01 moveto +9.930711e+01 4.92734e+01 lineto +9.725219e+01 4.980842e+01 lineto +9.738647e+01 5.34904e+01 lineto +9.944995e+01 5.295315e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.933198e+01 5.658026e+01 moveto +9.944995e+01 5.295315e+01 lineto +9.738647e+01 5.34904e+01 lineto +9.727557e+01 5.711567e+01 lineto +9.933198e+01 5.658026e+01 lineto +closepath +gsave +4.541676e-01 4.541676e-01 4.541676e-01 setrgbcolor +fill +grestore +newpath +9.933198e+01 5.658026e+01 moveto +9.944995e+01 5.295315e+01 lineto +9.738647e+01 5.34904e+01 lineto +9.727557e+01 5.711567e+01 lineto +9.933198e+01 5.658026e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.895411e+01 6.012727e+01 moveto +9.933198e+01 5.658026e+01 lineto +9.727557e+01 5.711567e+01 lineto +9.692033e+01 6.065679e+01 lineto +9.895411e+01 6.012727e+01 lineto +closepath +gsave +4.504804e-01 4.504804e-01 4.504804e-01 setrgbcolor +fill +grestore +newpath +9.895411e+01 6.012727e+01 moveto +9.933198e+01 5.658026e+01 lineto +9.727557e+01 5.711567e+01 lineto +9.692033e+01 6.065679e+01 lineto +9.895411e+01 6.012727e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.831919e+01 6.356733e+01 moveto +9.895411e+01 6.012727e+01 lineto +9.692033e+01 6.065679e+01 lineto +9.632344e+01 6.408695e+01 lineto +9.831919e+01 6.356733e+01 lineto +closepath +gsave +4.469609e-01 4.469609e-01 4.469609e-01 setrgbcolor +fill +grestore +newpath +9.831919e+01 6.356733e+01 moveto +9.895411e+01 6.012727e+01 lineto +9.692033e+01 6.065679e+01 lineto +9.632344e+01 6.408695e+01 lineto +9.831919e+01 6.356733e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.743203e+01 6.687441e+01 moveto +9.831919e+01 6.356733e+01 lineto +9.632344e+01 6.408695e+01 lineto +9.548942e+01 6.738019e+01 lineto +9.743203e+01 6.687441e+01 lineto +closepath +gsave +4.436301e-01 4.436301e-01 4.436301e-01 setrgbcolor +fill +grestore +newpath +9.743203e+01 6.687441e+01 moveto +9.831919e+01 6.356733e+01 lineto +9.632344e+01 6.408695e+01 lineto +9.548942e+01 6.738019e+01 lineto +9.743203e+01 6.687441e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.629934e+01 7.002345e+01 moveto +9.743203e+01 6.687441e+01 lineto +9.548942e+01 6.738019e+01 lineto +9.442458e+01 7.051156e+01 lineto +9.629934e+01 7.002345e+01 lineto +closepath +gsave +4.405042e-01 4.405042e-01 4.405042e-01 setrgbcolor +fill +grestore +newpath +9.629934e+01 7.002345e+01 moveto +9.743203e+01 6.687441e+01 lineto +9.548942e+01 6.738019e+01 lineto +9.442458e+01 7.051156e+01 lineto +9.629934e+01 7.002345e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.492971e+01 7.299062e+01 moveto +9.629934e+01 7.002345e+01 lineto +9.442458e+01 7.051156e+01 lineto +9.313698e+01 7.345738e+01 lineto +9.492971e+01 7.299062e+01 lineto +closepath +gsave +4.375946e-01 4.375946e-01 4.375946e-01 setrgbcolor +fill +grestore +newpath +9.492971e+01 7.299062e+01 moveto +9.629934e+01 7.002345e+01 lineto +9.442458e+01 7.051156e+01 lineto +9.313698e+01 7.345738e+01 lineto +9.492971e+01 7.299062e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.333349e+01 7.575347e+01 moveto +9.492971e+01 7.299062e+01 lineto +9.313698e+01 7.345738e+01 lineto +9.163638e+01 7.619533e+01 lineto +9.333349e+01 7.575347e+01 lineto +closepath +gsave +4.349083e-01 4.349083e-01 4.349083e-01 setrgbcolor +fill +grestore +newpath +9.333349e+01 7.575347e+01 moveto +9.492971e+01 7.299062e+01 lineto +9.313698e+01 7.345738e+01 lineto +9.163638e+01 7.619533e+01 lineto +9.333349e+01 7.575347e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.152278e+01 7.829106e+01 moveto +9.333349e+01 7.575347e+01 lineto +9.163638e+01 7.619533e+01 lineto +8.993412e+01 7.870469e+01 lineto +9.152278e+01 7.829106e+01 lineto +closepath +gsave +4.324488e-01 4.324488e-01 4.324488e-01 setrgbcolor +fill +grestore +newpath +9.152278e+01 7.829106e+01 moveto +9.333349e+01 7.575347e+01 lineto +9.163638e+01 7.619533e+01 lineto +8.993412e+01 7.870469e+01 lineto +9.152278e+01 7.829106e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.951128e+01 8.05842e+01 moveto +9.152278e+01 7.829106e+01 lineto +8.993412e+01 7.870469e+01 lineto +8.80431e+01 8.096646e+01 lineto +8.951128e+01 8.05842e+01 lineto +closepath +gsave +4.302161e-01 4.302161e-01 4.302161e-01 setrgbcolor +fill +grestore +newpath +8.951128e+01 8.05842e+01 moveto +9.152278e+01 7.829106e+01 lineto +8.993412e+01 7.870469e+01 lineto +8.80431e+01 8.096646e+01 lineto +8.951128e+01 8.05842e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.731421e+01 8.261552e+01 moveto +8.951128e+01 8.05842e+01 lineto +8.80431e+01 8.096646e+01 lineto +8.597764e+01 8.296352e+01 lineto +8.731421e+01 8.261552e+01 lineto +closepath +gsave +4.282076e-01 4.282076e-01 4.282076e-01 setrgbcolor +fill +grestore +newpath +8.731421e+01 8.261552e+01 moveto +8.951128e+01 8.05842e+01 lineto +8.80431e+01 8.096646e+01 lineto +8.597764e+01 8.296352e+01 lineto +8.731421e+01 8.261552e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.494822e+01 8.436965e+01 moveto +8.731421e+01 8.261552e+01 lineto +8.597764e+01 8.296352e+01 lineto +8.375337e+01 8.468074e+01 lineto +8.494822e+01 8.436965e+01 lineto +closepath +gsave +4.264187e-01 4.264187e-01 4.264187e-01 setrgbcolor +fill +grestore +newpath +8.494822e+01 8.436965e+01 moveto +8.731421e+01 8.261552e+01 lineto +8.597764e+01 8.296352e+01 lineto +8.375337e+01 8.468074e+01 lineto +8.494822e+01 8.436965e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.243121e+01 8.58333e+01 moveto +8.494822e+01 8.436965e+01 lineto +8.375337e+01 8.468074e+01 lineto +8.138712e+01 8.610514e+01 lineto +8.243121e+01 8.58333e+01 lineto +closepath +gsave +4.24843e-01 4.24843e-01 4.24843e-01 setrgbcolor +fill +grestore +newpath +8.243121e+01 8.58333e+01 moveto +8.494822e+01 8.436965e+01 lineto +8.375337e+01 8.468074e+01 lineto +8.138712e+01 8.610514e+01 lineto +8.243121e+01 8.58333e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.978224e+01 8.699539e+01 moveto +8.243121e+01 8.58333e+01 lineto +8.138712e+01 8.610514e+01 lineto +7.889682e+01 8.722593e+01 lineto +7.978224e+01 8.699539e+01 lineto +closepath +gsave +4.234736e-01 4.234736e-01 4.234736e-01 setrgbcolor +fill +grestore +newpath +7.978224e+01 8.699539e+01 moveto +8.243121e+01 8.58333e+01 lineto +8.138712e+01 8.610514e+01 lineto +7.889682e+01 8.722593e+01 lineto +7.978224e+01 8.699539e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.702137e+01 8.784714e+01 moveto +7.978224e+01 8.699539e+01 lineto +7.889682e+01 8.722593e+01 lineto +7.630131e+01 8.803461e+01 lineto +7.702137e+01 8.784714e+01 lineto +closepath +gsave +4.223028e-01 4.223028e-01 4.223028e-01 setrgbcolor +fill +grestore +newpath +7.702137e+01 8.784714e+01 moveto +7.978224e+01 8.699539e+01 lineto +7.889682e+01 8.722593e+01 lineto +7.630131e+01 8.803461e+01 lineto +7.702137e+01 8.784714e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.931546e+01 8.624817e+01 moveto +6.229054e+01 8.730932e+01 lineto +6.245283e+01 8.726707e+01 lineto +5.965595e+01 8.615952e+01 lineto +5.931546e+01 8.624817e+01 lineto +closepath +gsave +5.035706e-01 5.035706e-01 5.035706e-01 setrgbcolor +fill +grestore +newpath +5.931546e+01 8.624817e+01 moveto +6.229054e+01 8.730932e+01 lineto +6.245283e+01 8.726707e+01 lineto +5.965595e+01 8.615952e+01 lineto +5.931546e+01 8.624817e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.638341e+01 8.488231e+01 moveto +5.931546e+01 8.624817e+01 lineto +5.965595e+01 8.615952e+01 lineto +5.689952e+01 8.474793e+01 lineto +5.638341e+01 8.488231e+01 lineto +closepath +gsave +5.034076e-01 5.034076e-01 5.034076e-01 setrgbcolor +fill +grestore +newpath +5.638341e+01 8.488231e+01 moveto +5.931546e+01 8.624817e+01 lineto +5.965595e+01 8.615952e+01 lineto +5.689952e+01 8.474793e+01 lineto +5.638341e+01 8.488231e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.351659e+01 8.32221e+01 moveto +5.638341e+01 8.488231e+01 lineto +5.689952e+01 8.474793e+01 lineto +5.420442e+01 8.304302e+01 lineto +5.351659e+01 8.32221e+01 lineto +closepath +gsave +5.027402e-01 5.027402e-01 5.027402e-01 setrgbcolor +fill +grestore +newpath +5.351659e+01 8.32221e+01 moveto +5.638341e+01 8.488231e+01 lineto +5.689952e+01 8.474793e+01 lineto +5.420442e+01 8.304302e+01 lineto +5.351659e+01 8.32221e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.781525e+01 4.825257e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.761852e+01 4.86785e+00 lineto +6.781525e+01 4.825257e+00 lineto +closepath +gsave +5.040809e-01 5.040809e-01 5.040809e-01 setrgbcolor +fill +grestore +newpath +6.781525e+01 4.825257e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.761852e+01 4.86785e+00 lineto +6.781525e+01 4.825257e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.060918e+01 5.962225e+00 moveto +6.781525e+01 4.825257e+00 lineto +6.761852e+01 4.86785e+00 lineto +7.021721e+01 6.047089e+00 lineto +7.060918e+01 5.962225e+00 lineto +closepath +gsave +5.059874e-01 5.059874e-01 5.059874e-01 setrgbcolor +fill +grestore +newpath +7.060918e+01 5.962225e+00 moveto +6.781525e+01 4.825257e+00 lineto +6.761852e+01 4.86785e+00 lineto +7.021721e+01 6.047089e+00 lineto +7.060918e+01 5.962225e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.336065e+01 7.402296e+00 moveto +7.060918e+01 5.962225e+00 lineto +7.021721e+01 6.047089e+00 lineto +7.277641e+01 7.528789e+00 lineto +7.336065e+01 7.402296e+00 lineto +closepath +gsave +5.073774e-01 5.073774e-01 5.073774e-01 setrgbcolor +fill +grestore +newpath +7.336065e+01 7.402296e+00 moveto +7.060918e+01 5.962225e+00 lineto +7.021721e+01 6.047089e+00 lineto +7.277641e+01 7.528789e+00 lineto +7.336065e+01 7.402296e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.604883e+01 9.134569e+00 moveto +7.336065e+01 7.402296e+00 lineto +7.277641e+01 7.528789e+00 lineto +7.527674e+01 9.301733e+00 lineto +7.604883e+01 9.134569e+00 lineto +closepath +gsave +5.082264e-01 5.082264e-01 5.082264e-01 setrgbcolor +fill +grestore +newpath +7.604883e+01 9.134569e+00 moveto +7.336065e+01 7.402296e+00 lineto +7.277641e+01 7.528789e+00 lineto +7.527674e+01 9.301733e+00 lineto +7.604883e+01 9.134569e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.865336e+01 1.114593e+01 moveto +7.604883e+01 9.134569e+00 lineto +7.527674e+01 9.301733e+00 lineto +7.769927e+01 1.13525e+01 lineto +7.865336e+01 1.114593e+01 lineto +closepath +gsave +5.085193e-01 5.085193e-01 5.085193e-01 setrgbcolor +fill +grestore +newpath +7.865336e+01 1.114593e+01 moveto +7.604883e+01 9.134569e+00 lineto +7.527674e+01 9.301733e+00 lineto +7.769927e+01 1.13525e+01 lineto +7.865336e+01 1.114593e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.115453e+01 1.342115e+01 moveto +7.865336e+01 1.114593e+01 lineto +7.769927e+01 1.13525e+01 lineto +8.002566e+01 1.366556e+01 lineto +8.115453e+01 1.342115e+01 lineto +closepath +gsave +5.082511e-01 5.082511e-01 5.082511e-01 setrgbcolor +fill +grestore +newpath +8.115453e+01 1.342115e+01 moveto +7.865336e+01 1.114593e+01 lineto +7.769927e+01 1.13525e+01 lineto +8.002566e+01 1.366556e+01 lineto +8.115453e+01 1.342115e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.35334e+01 1.594301e+01 moveto +8.115453e+01 1.342115e+01 lineto +8.002566e+01 1.366556e+01 lineto +8.22383e+01 1.622341e+01 lineto +8.35334e+01 1.594301e+01 lineto +closepath +gsave +5.074266e-01 5.074266e-01 5.074266e-01 setrgbcolor +fill +grestore +newpath +8.35334e+01 1.594301e+01 moveto +8.115453e+01 1.342115e+01 lineto +8.002566e+01 1.366556e+01 lineto +8.22383e+01 1.622341e+01 lineto +8.35334e+01 1.594301e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.577197e+01 1.869241e+01 moveto +8.35334e+01 1.594301e+01 lineto +8.22383e+01 1.622341e+01 lineto +8.432043e+01 1.900668e+01 lineto +8.577197e+01 1.869241e+01 lineto +closepath +gsave +5.060609e-01 5.060609e-01 5.060609e-01 setrgbcolor +fill +grestore +newpath +8.577197e+01 1.869241e+01 moveto +8.35334e+01 1.594301e+01 lineto +8.22383e+01 1.622341e+01 lineto +8.432043e+01 1.900668e+01 lineto +8.577197e+01 1.869241e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.785328e+01 2.164854e+01 moveto +8.577197e+01 1.869241e+01 lineto +8.432043e+01 1.900668e+01 lineto +8.625631e+01 2.19943e+01 lineto +8.785328e+01 2.164854e+01 lineto +closepath +gsave +5.041781e-01 5.041781e-01 5.041781e-01 setrgbcolor +fill +grestore +newpath +8.785328e+01 2.164854e+01 moveto +8.577197e+01 1.869241e+01 lineto +8.432043e+01 1.900668e+01 lineto +8.625631e+01 2.19943e+01 lineto +8.785328e+01 2.164854e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.976159e+01 2.478902e+01 moveto +8.785328e+01 2.164854e+01 lineto +8.625631e+01 2.19943e+01 lineto +8.803126e+01 2.516366e+01 lineto +8.976159e+01 2.478902e+01 lineto +closepath +gsave +5.018114e-01 5.018114e-01 5.018114e-01 setrgbcolor +fill +grestore +newpath +8.976159e+01 2.478902e+01 moveto +8.785328e+01 2.164854e+01 lineto +8.625631e+01 2.19943e+01 lineto +8.803126e+01 2.516366e+01 lineto +8.976159e+01 2.478902e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.148244e+01 2.809008e+01 moveto +8.976159e+01 2.478902e+01 lineto +8.803126e+01 2.516366e+01 lineto +8.963186e+01 2.849075e+01 lineto +9.148244e+01 2.809008e+01 lineto +closepath +gsave +4.990015e-01 4.990015e-01 4.990015e-01 setrgbcolor +fill +grestore +newpath +9.148244e+01 2.809008e+01 moveto +8.976159e+01 2.478902e+01 lineto +8.803126e+01 2.516366e+01 lineto +8.963186e+01 2.849075e+01 lineto +9.148244e+01 2.809008e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.30028e+01 3.152673e+01 moveto +9.148244e+01 2.809008e+01 lineto +8.963186e+01 2.849075e+01 lineto +9.104598e+01 3.19504e+01 lineto +9.30028e+01 3.152673e+01 lineto +closepath +gsave +4.957956e-01 4.957956e-01 4.957956e-01 setrgbcolor +fill +grestore +newpath +9.30028e+01 3.152673e+01 moveto +9.148244e+01 2.809008e+01 lineto +8.963186e+01 2.849075e+01 lineto +9.104598e+01 3.19504e+01 lineto +9.30028e+01 3.152673e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.431117e+01 3.507295e+01 moveto +9.30028e+01 3.152673e+01 lineto +9.104598e+01 3.19504e+01 lineto +9.226292e+01 3.551641e+01 lineto +9.431117e+01 3.507295e+01 lineto +closepath +gsave +4.922464e-01 4.922464e-01 4.922464e-01 setrgbcolor +fill +grestore +newpath +9.431117e+01 3.507295e+01 moveto +9.30028e+01 3.152673e+01 lineto +9.104598e+01 3.19504e+01 lineto +9.226292e+01 3.551641e+01 lineto +9.431117e+01 3.507295e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.539765e+01 3.870188e+01 moveto +9.431117e+01 3.507295e+01 lineto +9.226292e+01 3.551641e+01 lineto +9.327347e+01 3.916179e+01 lineto +9.539765e+01 3.870188e+01 lineto +closepath +gsave +4.884101e-01 4.884101e-01 4.884101e-01 setrgbcolor +fill +grestore +newpath +9.539765e+01 3.870188e+01 moveto +9.431117e+01 3.507295e+01 lineto +9.226292e+01 3.551641e+01 lineto +9.327347e+01 3.916179e+01 lineto +9.539765e+01 3.870188e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.6254e+01 4.238607e+01 moveto +9.539765e+01 3.870188e+01 lineto +9.327347e+01 3.916179e+01 lineto +9.406998e+01 4.285893e+01 lineto +9.6254e+01 4.238607e+01 lineto +closepath +gsave +4.843453e-01 4.843453e-01 4.843453e-01 setrgbcolor +fill +grestore +newpath +9.6254e+01 4.238607e+01 moveto +9.539765e+01 3.870188e+01 lineto +9.327347e+01 3.916179e+01 lineto +9.406998e+01 4.285893e+01 lineto +9.6254e+01 4.238607e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.687374e+01 4.609762e+01 moveto +9.6254e+01 4.238607e+01 lineto +9.406998e+01 4.285893e+01 lineto +9.464642e+01 4.657985e+01 lineto +9.687374e+01 4.609762e+01 lineto +closepath +gsave +4.801112e-01 4.801112e-01 4.801112e-01 setrgbcolor +fill +grestore +newpath +9.687374e+01 4.609762e+01 moveto +9.6254e+01 4.238607e+01 lineto +9.406998e+01 4.285893e+01 lineto +9.464642e+01 4.657985e+01 lineto +9.687374e+01 4.609762e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.725219e+01 4.980842e+01 moveto +9.687374e+01 4.609762e+01 lineto +9.464642e+01 4.657985e+01 lineto +9.499842e+01 5.029639e+01 lineto +9.725219e+01 4.980842e+01 lineto +closepath +gsave +4.757666e-01 4.757666e-01 4.757666e-01 setrgbcolor +fill +grestore +newpath +9.725219e+01 4.980842e+01 moveto +9.687374e+01 4.609762e+01 lineto +9.464642e+01 4.657985e+01 lineto +9.499842e+01 5.029639e+01 lineto +9.725219e+01 4.980842e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.738647e+01 5.34904e+01 moveto +9.725219e+01 4.980842e+01 lineto +9.499842e+01 5.029639e+01 lineto +9.512332e+01 5.398039e+01 lineto +9.738647e+01 5.34904e+01 lineto +closepath +gsave +4.713684e-01 4.713684e-01 4.713684e-01 setrgbcolor +fill +grestore +newpath +9.738647e+01 5.34904e+01 moveto +9.725219e+01 4.980842e+01 lineto +9.499842e+01 5.029639e+01 lineto +9.512332e+01 5.398039e+01 lineto +9.738647e+01 5.34904e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.727557e+01 5.711567e+01 moveto +9.738647e+01 5.34904e+01 lineto +9.512332e+01 5.398039e+01 lineto +9.502017e+01 5.760399e+01 lineto +9.727557e+01 5.711567e+01 lineto +closepath +gsave +4.669702e-01 4.669702e-01 4.669702e-01 setrgbcolor +fill +grestore +newpath +9.727557e+01 5.711567e+01 moveto +9.738647e+01 5.34904e+01 lineto +9.512332e+01 5.398039e+01 lineto +9.502017e+01 5.760399e+01 lineto +9.727557e+01 5.711567e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.692033e+01 6.065679e+01 moveto +9.727557e+01 5.711567e+01 lineto +9.502017e+01 5.760399e+01 lineto +9.468975e+01 6.113973e+01 lineto +9.692033e+01 6.065679e+01 lineto +closepath +gsave +4.626215e-01 4.626215e-01 4.626215e-01 setrgbcolor +fill +grestore +newpath +9.692033e+01 6.065679e+01 moveto +9.727557e+01 5.711567e+01 lineto +9.502017e+01 5.760399e+01 lineto +9.468975e+01 6.113973e+01 lineto +9.692033e+01 6.065679e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.632344e+01 6.408695e+01 moveto +9.692033e+01 6.065679e+01 lineto +9.468975e+01 6.113973e+01 lineto +9.413457e+01 6.456086e+01 lineto +9.632344e+01 6.408695e+01 lineto +closepath +gsave +4.583672e-01 4.583672e-01 4.583672e-01 setrgbcolor +fill +grestore +newpath +9.632344e+01 6.408695e+01 moveto +9.692033e+01 6.065679e+01 lineto +9.468975e+01 6.113973e+01 lineto +9.413457e+01 6.456086e+01 lineto +9.632344e+01 6.408695e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.548942e+01 6.738019e+01 moveto +9.632344e+01 6.408695e+01 lineto +9.413457e+01 6.456086e+01 lineto +9.335883e+01 6.784148e+01 lineto +9.548942e+01 6.738019e+01 lineto +closepath +gsave +4.542464e-01 4.542464e-01 4.542464e-01 setrgbcolor +fill +grestore +newpath +9.548942e+01 6.738019e+01 moveto +9.632344e+01 6.408695e+01 lineto +9.413457e+01 6.456086e+01 lineto +9.335883e+01 6.784148e+01 lineto +9.548942e+01 6.738019e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.442458e+01 7.051156e+01 moveto +9.548942e+01 6.738019e+01 lineto +9.335883e+01 6.784148e+01 lineto +9.23684e+01 7.095675e+01 lineto +9.442458e+01 7.051156e+01 lineto +closepath +gsave +4.502927e-01 4.502927e-01 4.502927e-01 setrgbcolor +fill +grestore +newpath +9.442458e+01 7.051156e+01 moveto +9.548942e+01 6.738019e+01 lineto +9.335883e+01 6.784148e+01 lineto +9.23684e+01 7.095675e+01 lineto +9.442458e+01 7.051156e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.313698e+01 7.345738e+01 moveto +9.442458e+01 7.051156e+01 lineto +9.23684e+01 7.095675e+01 lineto +9.117078e+01 7.388308e+01 lineto +9.313698e+01 7.345738e+01 lineto +closepath +gsave +4.465334e-01 4.465334e-01 4.465334e-01 setrgbcolor +fill +grestore +newpath +9.313698e+01 7.345738e+01 moveto +9.442458e+01 7.051156e+01 lineto +9.23684e+01 7.095675e+01 lineto +9.117078e+01 7.388308e+01 lineto +9.313698e+01 7.345738e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.163638e+01 7.619533e+01 moveto +9.313698e+01 7.345738e+01 lineto +9.117078e+01 7.388308e+01 lineto +8.977504e+01 7.659833e+01 lineto +9.163638e+01 7.619533e+01 lineto +closepath +gsave +4.429902e-01 4.429902e-01 4.429902e-01 setrgbcolor +fill +grestore +newpath +9.163638e+01 7.619533e+01 moveto +9.313698e+01 7.345738e+01 lineto +9.117078e+01 7.388308e+01 lineto +8.977504e+01 7.659833e+01 lineto +9.163638e+01 7.619533e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.993412e+01 7.870469e+01 moveto +9.163638e+01 7.619533e+01 lineto +8.977504e+01 7.659833e+01 lineto +8.819174e+01 7.908193e+01 lineto +8.993412e+01 7.870469e+01 lineto +closepath +gsave +4.396789e-01 4.396789e-01 4.396789e-01 setrgbcolor +fill +grestore +newpath +8.993412e+01 7.870469e+01 moveto +9.163638e+01 7.619533e+01 lineto +8.977504e+01 7.659833e+01 lineto +8.819174e+01 7.908193e+01 lineto +8.993412e+01 7.870469e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.80431e+01 8.096646e+01 moveto +8.993412e+01 7.870469e+01 lineto +8.819174e+01 7.908193e+01 lineto +8.643286e+01 8.131509e+01 lineto +8.80431e+01 8.096646e+01 lineto +closepath +gsave +4.366102e-01 4.366102e-01 4.366102e-01 setrgbcolor +fill +grestore +newpath +8.80431e+01 8.096646e+01 moveto +8.993412e+01 7.870469e+01 lineto +8.819174e+01 7.908193e+01 lineto +8.643286e+01 8.131509e+01 lineto +8.80431e+01 8.096646e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.597764e+01 8.296352e+01 moveto +8.80431e+01 8.096646e+01 lineto +8.643286e+01 8.131509e+01 lineto +8.451173e+01 8.32809e+01 lineto +8.597764e+01 8.296352e+01 lineto +closepath +gsave +4.337897e-01 4.337897e-01 4.337897e-01 setrgbcolor +fill +grestore +newpath +8.597764e+01 8.296352e+01 moveto +8.80431e+01 8.096646e+01 lineto +8.643286e+01 8.131509e+01 lineto +8.451173e+01 8.32809e+01 lineto +8.597764e+01 8.296352e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.375337e+01 8.468074e+01 moveto +8.597764e+01 8.296352e+01 lineto +8.451173e+01 8.32809e+01 lineto +8.244289e+01 8.496447e+01 lineto +8.375337e+01 8.468074e+01 lineto +closepath +gsave +4.312191e-01 4.312191e-01 4.312191e-01 setrgbcolor +fill +grestore +newpath +8.375337e+01 8.468074e+01 moveto +8.597764e+01 8.296352e+01 lineto +8.451173e+01 8.32809e+01 lineto +8.244289e+01 8.496447e+01 lineto +8.375337e+01 8.468074e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.138712e+01 8.610514e+01 moveto +8.375337e+01 8.468074e+01 lineto +8.244289e+01 8.496447e+01 lineto +8.0242e+01 8.635307e+01 lineto +8.138712e+01 8.610514e+01 lineto +closepath +gsave +4.288964e-01 4.288964e-01 4.288964e-01 setrgbcolor +fill +grestore +newpath +8.138712e+01 8.610514e+01 moveto +8.375337e+01 8.468074e+01 lineto +8.244289e+01 8.496447e+01 lineto +8.0242e+01 8.635307e+01 lineto +8.138712e+01 8.610514e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.889682e+01 8.722593e+01 moveto +8.138712e+01 8.610514e+01 lineto +8.0242e+01 8.635307e+01 lineto +7.792572e+01 8.743618e+01 lineto +7.889682e+01 8.722593e+01 lineto +closepath +gsave +4.268166e-01 4.268166e-01 4.268166e-01 setrgbcolor +fill +grestore +newpath +7.889682e+01 8.722593e+01 moveto +8.138712e+01 8.610514e+01 lineto +8.0242e+01 8.635307e+01 lineto +7.792572e+01 8.743618e+01 lineto +7.889682e+01 8.722593e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.630131e+01 8.803461e+01 moveto +7.889682e+01 8.722593e+01 lineto +7.792572e+01 8.743618e+01 lineto +7.551158e+01 8.82056e+01 lineto +7.630131e+01 8.803461e+01 lineto +closepath +gsave +4.249729e-01 4.249729e-01 4.249729e-01 setrgbcolor +fill +grestore +newpath +7.630131e+01 8.803461e+01 moveto +7.889682e+01 8.722593e+01 lineto +7.792572e+01 8.743618e+01 lineto +7.551158e+01 8.82056e+01 lineto +7.630131e+01 8.803461e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.965595e+01 8.615952e+01 moveto +6.245283e+01 8.726707e+01 lineto +6.263083e+01 8.722853e+01 lineto +6.002939e+01 8.607866e+01 lineto +5.965595e+01 8.615952e+01 lineto +closepath +gsave +5.058273e-01 5.058273e-01 5.058273e-01 setrgbcolor +fill +grestore +newpath +5.965595e+01 8.615952e+01 moveto +6.245283e+01 8.726707e+01 lineto +6.263083e+01 8.722853e+01 lineto +6.002939e+01 8.607866e+01 lineto +5.965595e+01 8.615952e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.689952e+01 8.474793e+01 moveto +5.965595e+01 8.615952e+01 lineto +6.002939e+01 8.607866e+01 lineto +5.746558e+01 8.462538e+01 lineto +5.689952e+01 8.474793e+01 lineto +closepath +gsave +5.072678e-01 5.072678e-01 5.072678e-01 setrgbcolor +fill +grestore +newpath +5.689952e+01 8.474793e+01 moveto +5.965595e+01 8.615952e+01 lineto +6.002939e+01 8.607866e+01 lineto +5.746558e+01 8.462538e+01 lineto +5.689952e+01 8.474793e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.420442e+01 8.304302e+01 moveto +5.689952e+01 8.474793e+01 lineto +5.746558e+01 8.462538e+01 lineto +5.495881e+01 8.287968e+01 lineto +5.420442e+01 8.304302e+01 lineto +closepath +gsave +5.081692e-01 5.081692e-01 5.081692e-01 setrgbcolor +fill +grestore +newpath +5.420442e+01 8.304302e+01 moveto +5.689952e+01 8.474793e+01 lineto +5.746558e+01 8.462538e+01 lineto +5.495881e+01 8.287968e+01 lineto +5.420442e+01 8.304302e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.761852e+01 4.86785e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.740565e+01 4.906074e+00 lineto +6.761852e+01 4.86785e+00 lineto +closepath +gsave +5.048774e-01 5.048774e-01 5.048774e-01 setrgbcolor +fill +grestore +newpath +6.761852e+01 4.86785e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.740565e+01 4.906074e+00 lineto +6.761852e+01 4.86785e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.021721e+01 6.047089e+00 moveto +6.761852e+01 4.86785e+00 lineto +6.740565e+01 4.906074e+00 lineto +6.979308e+01 6.123246e+00 lineto +7.021721e+01 6.047089e+00 lineto +closepath +gsave +5.084122e-01 5.084122e-01 5.084122e-01 setrgbcolor +fill +grestore +newpath +7.021721e+01 6.047089e+00 moveto +6.761852e+01 4.86785e+00 lineto +6.740565e+01 4.906074e+00 lineto +6.979308e+01 6.123246e+00 lineto +7.021721e+01 6.047089e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.277641e+01 7.528789e+00 moveto +7.021721e+01 6.047089e+00 lineto +6.979308e+01 6.123246e+00 lineto +7.214423e+01 7.642304e+00 lineto +7.277641e+01 7.528789e+00 lineto +closepath +gsave +5.114532e-01 5.114532e-01 5.114532e-01 setrgbcolor +fill +grestore +newpath +7.277641e+01 7.528789e+00 moveto +7.021721e+01 6.047089e+00 lineto +6.979308e+01 6.123246e+00 lineto +7.214423e+01 7.642304e+00 lineto +7.277641e+01 7.528789e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.527674e+01 9.301733e+00 moveto +7.277641e+01 7.528789e+00 lineto +7.214423e+01 7.642304e+00 lineto +7.444129e+01 9.451745e+00 lineto +7.527674e+01 9.301733e+00 lineto +closepath +gsave +5.139463e-01 5.139463e-01 5.139463e-01 setrgbcolor +fill +grestore +newpath +7.527674e+01 9.301733e+00 moveto +7.277641e+01 7.528789e+00 lineto +7.214423e+01 7.642304e+00 lineto +7.444129e+01 9.451745e+00 lineto +7.527674e+01 9.301733e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.769927e+01 1.13525e+01 moveto +7.527674e+01 9.301733e+00 lineto +7.444129e+01 9.451745e+00 lineto +7.666688e+01 1.153787e+01 lineto +7.769927e+01 1.13525e+01 lineto +closepath +gsave +5.158458e-01 5.158458e-01 5.158458e-01 setrgbcolor +fill +grestore +newpath +7.769927e+01 1.13525e+01 moveto +7.527674e+01 9.301733e+00 lineto +7.444129e+01 9.451745e+00 lineto +7.666688e+01 1.153787e+01 lineto +7.769927e+01 1.13525e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.002566e+01 1.366556e+01 moveto +7.769927e+01 1.13525e+01 lineto +7.666688e+01 1.153787e+01 lineto +7.880415e+01 1.38849e+01 lineto +8.002566e+01 1.366556e+01 lineto +closepath +gsave +5.17117e-01 5.17117e-01 5.17117e-01 setrgbcolor +fill +grestore +newpath +8.002566e+01 1.366556e+01 moveto +7.769927e+01 1.13525e+01 lineto +7.666688e+01 1.153787e+01 lineto +7.880415e+01 1.38849e+01 lineto +8.002566e+01 1.366556e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.22383e+01 1.622341e+01 moveto +8.002566e+01 1.366556e+01 lineto +7.880415e+01 1.38849e+01 lineto +8.083691e+01 1.647504e+01 lineto +8.22383e+01 1.622341e+01 lineto +closepath +gsave +5.177361e-01 5.177361e-01 5.177361e-01 setrgbcolor +fill +grestore +newpath +8.22383e+01 1.622341e+01 moveto +8.002566e+01 1.366556e+01 lineto +7.880415e+01 1.38849e+01 lineto +8.083691e+01 1.647504e+01 lineto +8.22383e+01 1.622341e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.432043e+01 1.900668e+01 moveto +8.22383e+01 1.622341e+01 lineto +8.083691e+01 1.647504e+01 lineto +8.274978e+01 1.928871e+01 lineto +8.432043e+01 1.900668e+01 lineto +closepath +gsave +5.176918e-01 5.176918e-01 5.176918e-01 setrgbcolor +fill +grestore +newpath +8.432043e+01 1.900668e+01 moveto +8.22383e+01 1.622341e+01 lineto +8.083691e+01 1.647504e+01 lineto +8.274978e+01 1.928871e+01 lineto +8.432043e+01 1.900668e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.625631e+01 2.19943e+01 moveto +8.432043e+01 1.900668e+01 lineto +8.274978e+01 1.928871e+01 lineto +8.452828e+01 2.230459e+01 lineto +8.625631e+01 2.19943e+01 lineto +closepath +gsave +5.169852e-01 5.169852e-01 5.169852e-01 setrgbcolor +fill +grestore +newpath +8.625631e+01 2.19943e+01 moveto +8.432043e+01 1.900668e+01 lineto +8.274978e+01 1.928871e+01 lineto +8.452828e+01 2.230459e+01 lineto +8.625631e+01 2.19943e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.803126e+01 2.516366e+01 moveto +8.625631e+01 2.19943e+01 lineto +8.452828e+01 2.230459e+01 lineto +8.615894e+01 2.549985e+01 lineto +8.803126e+01 2.516366e+01 lineto +closepath +gsave +5.156298e-01 5.156298e-01 5.156298e-01 setrgbcolor +fill +grestore +newpath +8.803126e+01 2.516366e+01 moveto +8.625631e+01 2.19943e+01 lineto +8.452828e+01 2.230459e+01 lineto +8.615894e+01 2.549985e+01 lineto +8.803126e+01 2.516366e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.963186e+01 2.849075e+01 moveto +8.803126e+01 2.516366e+01 lineto +8.615894e+01 2.549985e+01 lineto +8.762941e+01 2.885031e+01 lineto +8.963186e+01 2.849075e+01 lineto +closepath +gsave +5.13651e-01 5.13651e-01 5.13651e-01 setrgbcolor +fill +grestore +newpath +8.963186e+01 2.849075e+01 moveto +8.803126e+01 2.516366e+01 lineto +8.615894e+01 2.549985e+01 lineto +8.762941e+01 2.885031e+01 lineto +8.963186e+01 2.849075e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.104598e+01 3.19504e+01 moveto +8.963186e+01 2.849075e+01 lineto +8.762941e+01 2.885031e+01 lineto +8.892857e+01 3.23306e+01 lineto +9.104598e+01 3.19504e+01 lineto +closepath +gsave +5.110857e-01 5.110857e-01 5.110857e-01 setrgbcolor +fill +grestore +newpath +9.104598e+01 3.19504e+01 moveto +8.963186e+01 2.849075e+01 lineto +8.762941e+01 2.885031e+01 lineto +8.892857e+01 3.23306e+01 lineto +9.104598e+01 3.19504e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.226292e+01 3.551641e+01 moveto +9.104598e+01 3.19504e+01 lineto +8.892857e+01 3.23306e+01 lineto +9.004659e+01 3.591438e+01 lineto +9.226292e+01 3.551641e+01 lineto +closepath +gsave +5.079805e-01 5.079805e-01 5.079805e-01 setrgbcolor +fill +grestore +newpath +9.226292e+01 3.551641e+01 moveto +9.104598e+01 3.19504e+01 lineto +8.892857e+01 3.23306e+01 lineto +9.004659e+01 3.591438e+01 lineto +9.226292e+01 3.551641e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.327347e+01 3.916179e+01 moveto +9.226292e+01 3.551641e+01 lineto +9.004659e+01 3.591438e+01 lineto +9.097498e+01 3.95745e+01 lineto +9.327347e+01 3.916179e+01 lineto +closepath +gsave +5.043909e-01 5.043909e-01 5.043909e-01 setrgbcolor +fill +grestore +newpath +9.327347e+01 3.916179e+01 moveto +9.226292e+01 3.551641e+01 lineto +9.004659e+01 3.591438e+01 lineto +9.097498e+01 3.95745e+01 lineto +9.327347e+01 3.916179e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.406998e+01 4.285893e+01 moveto +9.327347e+01 3.916179e+01 lineto +9.097498e+01 3.95745e+01 lineto +9.170674e+01 4.328327e+01 lineto +9.406998e+01 4.285893e+01 lineto +closepath +gsave +5.003793e-01 5.003793e-01 5.003793e-01 setrgbcolor +fill +grestore +newpath +9.406998e+01 4.285893e+01 moveto +9.327347e+01 3.916179e+01 lineto +9.097498e+01 3.95745e+01 lineto +9.170674e+01 4.328327e+01 lineto +9.406998e+01 4.285893e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.464642e+01 4.657985e+01 moveto +9.406998e+01 4.285893e+01 lineto +9.170674e+01 4.328327e+01 lineto +9.223631e+01 4.701261e+01 lineto +9.464642e+01 4.657985e+01 lineto +closepath +gsave +4.960131e-01 4.960131e-01 4.960131e-01 setrgbcolor +fill +grestore +newpath +9.464642e+01 4.657985e+01 moveto +9.406998e+01 4.285893e+01 lineto +9.170674e+01 4.328327e+01 lineto +9.223631e+01 4.701261e+01 lineto +9.464642e+01 4.657985e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.499842e+01 5.029639e+01 moveto +9.464642e+01 4.657985e+01 lineto +9.223631e+01 4.701261e+01 lineto +9.25597e+01 5.073428e+01 lineto +9.499842e+01 5.029639e+01 lineto +closepath +gsave +4.913633e-01 4.913633e-01 4.913633e-01 setrgbcolor +fill +grestore +newpath +9.499842e+01 5.029639e+01 moveto +9.464642e+01 4.657985e+01 lineto +9.223631e+01 4.701261e+01 lineto +9.25597e+01 5.073428e+01 lineto +9.499842e+01 5.029639e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.512332e+01 5.398039e+01 moveto +9.499842e+01 5.029639e+01 lineto +9.25597e+01 5.073428e+01 lineto +9.267444e+01 5.442011e+01 lineto +9.512332e+01 5.398039e+01 lineto +closepath +gsave +4.865021e-01 4.865021e-01 4.865021e-01 setrgbcolor +fill +grestore +newpath +9.512332e+01 5.398039e+01 moveto +9.499842e+01 5.029639e+01 lineto +9.25597e+01 5.073428e+01 lineto +9.267444e+01 5.442011e+01 lineto +9.512332e+01 5.398039e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.502017e+01 5.760399e+01 moveto +9.512332e+01 5.398039e+01 lineto +9.267444e+01 5.442011e+01 lineto +9.257968e+01 5.80422e+01 lineto +9.502017e+01 5.760399e+01 lineto +closepath +gsave +4.815012e-01 4.815012e-01 4.815012e-01 setrgbcolor +fill +grestore +newpath +9.502017e+01 5.760399e+01 moveto +9.512332e+01 5.398039e+01 lineto +9.267444e+01 5.442011e+01 lineto +9.257968e+01 5.80422e+01 lineto +9.502017e+01 5.760399e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.468975e+01 6.113973e+01 moveto +9.502017e+01 5.760399e+01 lineto +9.257968e+01 5.80422e+01 lineto +9.227613e+01 6.157312e+01 lineto +9.468975e+01 6.113973e+01 lineto +closepath +gsave +4.764305e-01 4.764305e-01 4.764305e-01 setrgbcolor +fill +grestore +newpath +9.468975e+01 6.113973e+01 moveto +9.502017e+01 5.760399e+01 lineto +9.257968e+01 5.80422e+01 lineto +9.227613e+01 6.157312e+01 lineto +9.468975e+01 6.113973e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.413457e+01 6.456086e+01 moveto +9.468975e+01 6.113973e+01 lineto +9.227613e+01 6.157312e+01 lineto +9.176608e+01 6.498615e+01 lineto +9.413457e+01 6.456086e+01 lineto +closepath +gsave +4.713557e-01 4.713557e-01 4.713557e-01 setrgbcolor +fill +grestore +newpath +9.413457e+01 6.456086e+01 moveto +9.468975e+01 6.113973e+01 lineto +9.227613e+01 6.157312e+01 lineto +9.176608e+01 6.498615e+01 lineto +9.413457e+01 6.456086e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.335883e+01 6.784148e+01 moveto +9.413457e+01 6.456086e+01 lineto +9.176608e+01 6.498615e+01 lineto +9.10534e+01 6.825544e+01 lineto +9.335883e+01 6.784148e+01 lineto +closepath +gsave +4.66338e-01 4.66338e-01 4.66338e-01 setrgbcolor +fill +grestore +newpath +9.335883e+01 6.784148e+01 moveto +9.413457e+01 6.456086e+01 lineto +9.176608e+01 6.498615e+01 lineto +9.10534e+01 6.825544e+01 lineto +9.335883e+01 6.784148e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.23684e+01 7.095675e+01 moveto +9.335883e+01 6.784148e+01 lineto +9.10534e+01 6.825544e+01 lineto +9.014349e+01 7.135625e+01 lineto +9.23684e+01 7.095675e+01 lineto +closepath +gsave +4.614322e-01 4.614322e-01 4.614322e-01 setrgbcolor +fill +grestore +newpath +9.23684e+01 7.095675e+01 moveto +9.335883e+01 6.784148e+01 lineto +9.10534e+01 6.825544e+01 lineto +9.014349e+01 7.135625e+01 lineto +9.23684e+01 7.095675e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.117078e+01 7.388308e+01 moveto +9.23684e+01 7.095675e+01 lineto +9.014349e+01 7.135625e+01 lineto +8.904323e+01 7.42651e+01 lineto +9.117078e+01 7.388308e+01 lineto +closepath +gsave +4.566863e-01 4.566863e-01 4.566863e-01 setrgbcolor +fill +grestore +newpath +9.117078e+01 7.388308e+01 moveto +9.23684e+01 7.095675e+01 lineto +9.014349e+01 7.135625e+01 lineto +8.904323e+01 7.42651e+01 lineto +9.117078e+01 7.388308e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.977504e+01 7.659833e+01 moveto +9.117078e+01 7.388308e+01 lineto +8.904323e+01 7.42651e+01 lineto +8.776095e+01 7.695998e+01 lineto +8.977504e+01 7.659833e+01 lineto +closepath +gsave +4.52141e-01 4.52141e-01 4.52141e-01 setrgbcolor +fill +grestore +newpath +8.977504e+01 7.659833e+01 moveto +9.117078e+01 7.388308e+01 lineto +8.904323e+01 7.42651e+01 lineto +8.776095e+01 7.695998e+01 lineto +8.977504e+01 7.659833e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.819174e+01 7.908193e+01 moveto +8.977504e+01 7.659833e+01 lineto +8.776095e+01 7.695998e+01 lineto +8.630637e+01 7.942047e+01 lineto +8.819174e+01 7.908193e+01 lineto +closepath +gsave +4.478294e-01 4.478294e-01 4.478294e-01 setrgbcolor +fill +grestore +newpath +8.819174e+01 7.908193e+01 moveto +8.977504e+01 7.659833e+01 lineto +8.776095e+01 7.695998e+01 lineto +8.630637e+01 7.942047e+01 lineto +8.819174e+01 7.908193e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.643286e+01 8.131509e+01 moveto +8.819174e+01 7.908193e+01 lineto +8.630637e+01 7.942047e+01 lineto +8.469048e+01 8.162795e+01 lineto +8.643286e+01 8.131509e+01 lineto +closepath +gsave +4.43777e-01 4.43777e-01 4.43777e-01 setrgbcolor +fill +grestore +newpath +8.643286e+01 8.131509e+01 moveto +8.819174e+01 7.908193e+01 lineto +8.630637e+01 7.942047e+01 lineto +8.469048e+01 8.162795e+01 lineto +8.643286e+01 8.131509e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.451173e+01 8.32809e+01 moveto +8.643286e+01 8.131509e+01 lineto +8.469048e+01 8.162795e+01 lineto +8.292553e+01 8.356572e+01 lineto +8.451173e+01 8.32809e+01 lineto +closepath +gsave +4.400022e-01 4.400022e-01 4.400022e-01 setrgbcolor +fill +grestore +newpath +8.451173e+01 8.32809e+01 moveto +8.643286e+01 8.131509e+01 lineto +8.469048e+01 8.162795e+01 lineto +8.292553e+01 8.356572e+01 lineto +8.451173e+01 8.32809e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.244289e+01 8.496447e+01 moveto +8.451173e+01 8.32809e+01 lineto +8.292553e+01 8.356572e+01 lineto +8.102487e+01 8.521909e+01 lineto +8.244289e+01 8.496447e+01 lineto +closepath +gsave +4.365163e-01 4.365163e-01 4.365163e-01 setrgbcolor +fill +grestore +newpath +8.244289e+01 8.496447e+01 moveto +8.451173e+01 8.32809e+01 lineto +8.292553e+01 8.356572e+01 lineto +8.102487e+01 8.521909e+01 lineto +8.244289e+01 8.496447e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.0242e+01 8.635307e+01 moveto +8.244289e+01 8.496447e+01 lineto +8.102487e+01 8.521909e+01 lineto +7.90029e+01 8.657556e+01 lineto +8.0242e+01 8.635307e+01 lineto +closepath +gsave +4.333248e-01 4.333248e-01 4.333248e-01 setrgbcolor +fill +grestore +newpath +8.0242e+01 8.635307e+01 moveto +8.244289e+01 8.496447e+01 lineto +8.102487e+01 8.521909e+01 lineto +7.90029e+01 8.657556e+01 lineto +8.0242e+01 8.635307e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.792572e+01 8.743618e+01 moveto +8.0242e+01 8.635307e+01 lineto +7.90029e+01 8.657556e+01 lineto +7.687492e+01 8.762486e+01 lineto +7.792572e+01 8.743618e+01 lineto +closepath +gsave +4.304277e-01 4.304277e-01 4.304277e-01 setrgbcolor +fill +grestore +newpath +7.792572e+01 8.743618e+01 moveto +8.0242e+01 8.635307e+01 lineto +7.90029e+01 8.657556e+01 lineto +7.687492e+01 8.762486e+01 lineto +7.792572e+01 8.743618e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.551158e+01 8.82056e+01 moveto +7.792572e+01 8.743618e+01 lineto +7.687492e+01 8.762486e+01 lineto +7.465704e+01 8.835904e+01 lineto +7.551158e+01 8.82056e+01 lineto +closepath +gsave +4.278204e-01 4.278204e-01 4.278204e-01 setrgbcolor +fill +grestore +newpath +7.551158e+01 8.82056e+01 moveto +7.792572e+01 8.743618e+01 lineto +7.687492e+01 8.762486e+01 lineto +7.465704e+01 8.835904e+01 lineto +7.551158e+01 8.82056e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.301787e+01 8.86555e+01 moveto +7.551158e+01 8.82056e+01 lineto +7.465704e+01 8.835904e+01 lineto +7.236606e+01 8.877254e+01 lineto +7.301787e+01 8.86555e+01 lineto +closepath +gsave +4.254948e-01 4.254948e-01 4.254948e-01 setrgbcolor +fill +grestore +newpath +7.301787e+01 8.86555e+01 moveto +7.551158e+01 8.82056e+01 lineto +7.465704e+01 8.835904e+01 lineto +7.236606e+01 8.877254e+01 lineto +7.301787e+01 8.86555e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.002939e+01 8.607866e+01 moveto +6.263083e+01 8.722853e+01 lineto +6.282343e+01 8.719395e+01 lineto +6.043348e+01 8.60061e+01 lineto +6.002939e+01 8.607866e+01 lineto +closepath +gsave +5.080952e-01 5.080952e-01 5.080952e-01 setrgbcolor +fill +grestore +newpath +6.002939e+01 8.607866e+01 moveto +6.263083e+01 8.722853e+01 lineto +6.282343e+01 8.719395e+01 lineto +6.043348e+01 8.60061e+01 lineto +6.002939e+01 8.607866e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.746558e+01 8.462538e+01 moveto +6.002939e+01 8.607866e+01 lineto +6.043348e+01 8.60061e+01 lineto +5.807809e+01 8.45154e+01 lineto +5.746558e+01 8.462538e+01 lineto +closepath +gsave +5.111859e-01 5.111859e-01 5.111859e-01 setrgbcolor +fill +grestore +newpath +5.746558e+01 8.462538e+01 moveto +6.002939e+01 8.607866e+01 lineto +6.043348e+01 8.60061e+01 lineto +5.807809e+01 8.45154e+01 lineto +5.746558e+01 8.462538e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.495881e+01 8.287968e+01 moveto +5.746558e+01 8.462538e+01 lineto +5.807809e+01 8.45154e+01 lineto +5.577511e+01 8.273311e+01 lineto +5.495881e+01 8.287968e+01 lineto +closepath +gsave +5.137333e-01 5.137333e-01 5.137333e-01 setrgbcolor +fill +grestore +newpath +5.495881e+01 8.287968e+01 moveto +5.746558e+01 8.462538e+01 lineto +5.807809e+01 8.45154e+01 lineto +5.577511e+01 8.273311e+01 lineto +5.495881e+01 8.287968e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.740565e+01 4.906074e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.717794e+01 4.939691e+00 lineto +6.740565e+01 4.906074e+00 lineto +closepath +gsave +5.056656e-01 5.056656e-01 5.056656e-01 setrgbcolor +fill +grestore +newpath +6.740565e+01 4.906074e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.717794e+01 4.939691e+00 lineto +6.740565e+01 4.906074e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.979308e+01 6.123246e+00 moveto +6.740565e+01 4.906074e+00 lineto +6.717794e+01 4.939691e+00 lineto +6.93394e+01 6.190226e+00 lineto +6.979308e+01 6.123246e+00 lineto +closepath +gsave +5.108352e-01 5.108352e-01 5.108352e-01 setrgbcolor +fill +grestore +newpath +6.979308e+01 6.123246e+00 moveto +6.740565e+01 4.906074e+00 lineto +6.717794e+01 4.939691e+00 lineto +6.93394e+01 6.190226e+00 lineto +6.979308e+01 6.123246e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.214423e+01 7.642304e+00 moveto +6.979308e+01 6.123246e+00 lineto +6.93394e+01 6.190226e+00 lineto +7.1468e+01 7.742139e+00 lineto +7.214423e+01 7.642304e+00 lineto +closepath +gsave +5.155653e-01 5.155653e-01 5.155653e-01 setrgbcolor +fill +grestore +newpath +7.214423e+01 7.642304e+00 moveto +6.979308e+01 6.123246e+00 lineto +6.93394e+01 6.190226e+00 lineto +7.1468e+01 7.742139e+00 lineto +7.214423e+01 7.642304e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.444129e+01 9.451745e+00 moveto +7.214423e+01 7.642304e+00 lineto +7.1468e+01 7.742139e+00 lineto +7.354764e+01 9.58368e+00 lineto +7.444129e+01 9.451745e+00 lineto +closepath +gsave +5.197708e-01 5.197708e-01 5.197708e-01 setrgbcolor +fill +grestore +newpath +7.444129e+01 9.451745e+00 moveto +7.214423e+01 7.642304e+00 lineto +7.1468e+01 7.742139e+00 lineto +7.354764e+01 9.58368e+00 lineto +7.444129e+01 9.451745e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.666688e+01 1.153787e+01 moveto +7.444129e+01 9.451745e+00 lineto +7.354764e+01 9.58368e+00 lineto +7.556257e+01 1.170091e+01 lineto +7.666688e+01 1.153787e+01 lineto +closepath +gsave +5.233738e-01 5.233738e-01 5.233738e-01 setrgbcolor +fill +grestore +newpath +7.666688e+01 1.153787e+01 moveto +7.444129e+01 9.451745e+00 lineto +7.354764e+01 9.58368e+00 lineto +7.556257e+01 1.170091e+01 lineto +7.666688e+01 1.153787e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.880415e+01 1.38849e+01 moveto +7.666688e+01 1.153787e+01 lineto +7.556257e+01 1.170091e+01 lineto +7.749753e+01 1.40778e+01 lineto +7.880415e+01 1.38849e+01 lineto +closepath +gsave +5.263058e-01 5.263058e-01 5.263058e-01 setrgbcolor +fill +grestore +newpath +7.880415e+01 1.38849e+01 moveto +7.666688e+01 1.153787e+01 lineto +7.556257e+01 1.170091e+01 lineto +7.749753e+01 1.40778e+01 lineto +7.880415e+01 1.38849e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.083691e+01 1.647504e+01 moveto +7.880415e+01 1.38849e+01 lineto +7.749753e+01 1.40778e+01 lineto +7.933789e+01 1.669635e+01 lineto +8.083691e+01 1.647504e+01 lineto +closepath +gsave +5.285102e-01 5.285102e-01 5.285102e-01 setrgbcolor +fill +grestore +newpath +8.083691e+01 1.647504e+01 moveto +7.880415e+01 1.38849e+01 lineto +7.749753e+01 1.40778e+01 lineto +7.933789e+01 1.669635e+01 lineto +8.083691e+01 1.647504e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.274978e+01 1.928871e+01 moveto +8.083691e+01 1.647504e+01 lineto +7.933789e+01 1.669635e+01 lineto +8.10697e+01 1.953675e+01 lineto +8.274978e+01 1.928871e+01 lineto +closepath +gsave +5.29944e-01 5.29944e-01 5.29944e-01 setrgbcolor +fill +grestore +newpath +8.274978e+01 1.928871e+01 moveto +8.083691e+01 1.647504e+01 lineto +7.933789e+01 1.669635e+01 lineto +8.10697e+01 1.953675e+01 lineto +8.274978e+01 1.928871e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.452828e+01 2.230459e+01 moveto +8.274978e+01 1.928871e+01 lineto +8.10697e+01 1.953675e+01 lineto +8.267985e+01 2.257748e+01 lineto +8.452828e+01 2.230459e+01 lineto +closepath +gsave +5.30579e-01 5.30579e-01 5.30579e-01 setrgbcolor +fill +grestore +newpath +8.452828e+01 2.230459e+01 moveto +8.274978e+01 1.928871e+01 lineto +8.10697e+01 1.953675e+01 lineto +8.267985e+01 2.257748e+01 lineto +8.452828e+01 2.230459e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.615894e+01 2.549985e+01 moveto +8.452828e+01 2.230459e+01 lineto +8.267985e+01 2.257748e+01 lineto +8.415616e+01 2.579553e+01 lineto +8.615894e+01 2.549985e+01 lineto +closepath +gsave +5.304028e-01 5.304028e-01 5.304028e-01 setrgbcolor +fill +grestore +newpath +8.615894e+01 2.549985e+01 moveto +8.452828e+01 2.230459e+01 lineto +8.267985e+01 2.257748e+01 lineto +8.415616e+01 2.579553e+01 lineto +8.615894e+01 2.549985e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.762941e+01 2.885031e+01 moveto +8.615894e+01 2.549985e+01 lineto +8.415616e+01 2.579553e+01 lineto +8.548745e+01 2.916654e+01 lineto +8.762941e+01 2.885031e+01 lineto +closepath +gsave +5.294194e-01 5.294194e-01 5.294194e-01 setrgbcolor +fill +grestore +newpath +8.762941e+01 2.885031e+01 moveto +8.615894e+01 2.549985e+01 lineto +8.415616e+01 2.579553e+01 lineto +8.548745e+01 2.916654e+01 lineto +8.762941e+01 2.885031e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.892857e+01 3.23306e+01 moveto +8.762941e+01 2.885031e+01 lineto +8.548745e+01 2.916654e+01 lineto +8.666364e+01 3.266499e+01 lineto +8.892857e+01 3.23306e+01 lineto +closepath +gsave +5.276485e-01 5.276485e-01 5.276485e-01 setrgbcolor +fill +grestore +newpath +8.892857e+01 3.23306e+01 moveto +8.762941e+01 2.885031e+01 lineto +8.548745e+01 2.916654e+01 lineto +8.666364e+01 3.266499e+01 lineto +8.892857e+01 3.23306e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.004659e+01 3.591438e+01 moveto +8.892857e+01 3.23306e+01 lineto +8.666364e+01 3.266499e+01 lineto +8.767583e+01 3.626438e+01 lineto +9.004659e+01 3.591438e+01 lineto +closepath +gsave +5.251254e-01 5.251254e-01 5.251254e-01 setrgbcolor +fill +grestore +newpath +9.004659e+01 3.591438e+01 moveto +8.892857e+01 3.23306e+01 lineto +8.666364e+01 3.266499e+01 lineto +8.767583e+01 3.626438e+01 lineto +9.004659e+01 3.591438e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.097498e+01 3.95745e+01 moveto +9.004659e+01 3.591438e+01 lineto +8.767583e+01 3.626438e+01 lineto +8.851635e+01 3.993748e+01 lineto +9.097498e+01 3.95745e+01 lineto +closepath +gsave +5.218996e-01 5.218996e-01 5.218996e-01 setrgbcolor +fill +grestore +newpath +9.097498e+01 3.95745e+01 moveto +9.004659e+01 3.591438e+01 lineto +8.767583e+01 3.626438e+01 lineto +8.851635e+01 3.993748e+01 lineto +9.097498e+01 3.95745e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.170674e+01 4.328327e+01 moveto +9.097498e+01 3.95745e+01 lineto +8.851635e+01 3.993748e+01 lineto +8.917884e+01 4.365648e+01 lineto +9.170674e+01 4.328327e+01 lineto +closepath +gsave +5.18033e-01 5.18033e-01 5.18033e-01 setrgbcolor +fill +grestore +newpath +9.170674e+01 4.328327e+01 moveto +9.097498e+01 3.95745e+01 lineto +8.851635e+01 3.993748e+01 lineto +8.917884e+01 4.365648e+01 lineto +9.170674e+01 4.328327e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.223631e+01 4.701261e+01 moveto +9.170674e+01 4.328327e+01 lineto +8.917884e+01 4.365648e+01 lineto +8.965829e+01 4.739322e+01 lineto +9.223631e+01 4.701261e+01 lineto +closepath +gsave +5.135984e-01 5.135984e-01 5.135984e-01 setrgbcolor +fill +grestore +newpath +9.223631e+01 4.701261e+01 moveto +9.170674e+01 4.328327e+01 lineto +8.917884e+01 4.365648e+01 lineto +8.965829e+01 4.739322e+01 lineto +9.223631e+01 4.701261e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.25597e+01 5.073428e+01 moveto +9.223631e+01 4.701261e+01 lineto +8.965829e+01 4.739322e+01 lineto +8.995107e+01 5.111941e+01 lineto +9.25597e+01 5.073428e+01 lineto +closepath +gsave +5.086767e-01 5.086767e-01 5.086767e-01 setrgbcolor +fill +grestore +newpath +9.25597e+01 5.073428e+01 moveto +9.223631e+01 4.701261e+01 lineto +8.965829e+01 4.739322e+01 lineto +8.995107e+01 5.111941e+01 lineto +9.25597e+01 5.073428e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.267444e+01 5.442011e+01 moveto +9.25597e+01 5.073428e+01 lineto +8.995107e+01 5.111941e+01 lineto +9.005495e+01 5.480684e+01 lineto +9.267444e+01 5.442011e+01 lineto +closepath +gsave +5.033551e-01 5.033551e-01 5.033551e-01 setrgbcolor +fill +grestore +newpath +9.267444e+01 5.442011e+01 moveto +9.25597e+01 5.073428e+01 lineto +8.995107e+01 5.111941e+01 lineto +9.005495e+01 5.480684e+01 lineto +9.267444e+01 5.442011e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.257968e+01 5.80422e+01 moveto +9.267444e+01 5.442011e+01 lineto +9.005495e+01 5.480684e+01 lineto +8.996916e+01 5.84276e+01 lineto +9.257968e+01 5.80422e+01 lineto +closepath +gsave +4.97724e-01 4.97724e-01 4.97724e-01 setrgbcolor +fill +grestore +newpath +9.257968e+01 5.80422e+01 moveto +9.267444e+01 5.442011e+01 lineto +9.005495e+01 5.480684e+01 lineto +8.996916e+01 5.84276e+01 lineto +9.257968e+01 5.80422e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.227613e+01 6.157312e+01 moveto +9.257968e+01 5.80422e+01 lineto +8.996916e+01 5.84276e+01 lineto +8.969433e+01 6.195428e+01 lineto +9.227613e+01 6.157312e+01 lineto +closepath +gsave +4.918747e-01 4.918747e-01 4.918747e-01 setrgbcolor +fill +grestore +newpath +9.227613e+01 6.157312e+01 moveto +9.257968e+01 5.80422e+01 lineto +8.996916e+01 5.84276e+01 lineto +8.969433e+01 6.195428e+01 lineto +9.227613e+01 6.157312e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.176608e+01 6.498615e+01 moveto +9.227613e+01 6.157312e+01 lineto +8.969433e+01 6.195428e+01 lineto +8.923257e+01 6.536018e+01 lineto +9.176608e+01 6.498615e+01 lineto +closepath +gsave +4.858973e-01 4.858973e-01 4.858973e-01 setrgbcolor +fill +grestore +newpath +9.176608e+01 6.498615e+01 moveto +9.227613e+01 6.157312e+01 lineto +8.969433e+01 6.195428e+01 lineto +8.923257e+01 6.536018e+01 lineto +9.176608e+01 6.498615e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.10534e+01 6.825544e+01 moveto +9.176608e+01 6.498615e+01 lineto +8.923257e+01 6.536018e+01 lineto +8.858735e+01 6.861952e+01 lineto +9.10534e+01 6.825544e+01 lineto +closepath +gsave +4.798779e-01 4.798779e-01 4.798779e-01 setrgbcolor +fill +grestore +newpath +9.10534e+01 6.825544e+01 moveto +9.176608e+01 6.498615e+01 lineto +8.923257e+01 6.536018e+01 lineto +8.858735e+01 6.861952e+01 lineto +9.10534e+01 6.825544e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.014349e+01 7.135625e+01 moveto +9.10534e+01 6.825544e+01 lineto +8.858735e+01 6.861952e+01 lineto +8.776356e+01 7.170761e+01 lineto +9.014349e+01 7.135625e+01 lineto +closepath +gsave +4.738971e-01 4.738971e-01 4.738971e-01 setrgbcolor +fill +grestore +newpath +9.014349e+01 7.135625e+01 moveto +9.10534e+01 6.825544e+01 lineto +8.858735e+01 6.861952e+01 lineto +8.776356e+01 7.170761e+01 lineto +9.014349e+01 7.135625e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.904323e+01 7.42651e+01 moveto +9.014349e+01 7.135625e+01 lineto +8.776356e+01 7.170761e+01 lineto +8.676745e+01 7.460109e+01 lineto +8.904323e+01 7.42651e+01 lineto +closepath +gsave +4.680281e-01 4.680281e-01 4.680281e-01 setrgbcolor +fill +grestore +newpath +8.904323e+01 7.42651e+01 moveto +9.014349e+01 7.135625e+01 lineto +8.776356e+01 7.170761e+01 lineto +8.676745e+01 7.460109e+01 lineto +8.904323e+01 7.42651e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.776095e+01 7.695998e+01 moveto +8.904323e+01 7.42651e+01 lineto +8.676745e+01 7.460109e+01 lineto +8.560654e+01 7.727804e+01 lineto +8.776095e+01 7.695998e+01 lineto +closepath +gsave +4.623356e-01 4.623356e-01 4.623356e-01 setrgbcolor +fill +grestore +newpath +8.776095e+01 7.695998e+01 moveto +8.904323e+01 7.42651e+01 lineto +8.676745e+01 7.460109e+01 lineto +8.560654e+01 7.727804e+01 lineto +8.776095e+01 7.695998e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.630637e+01 7.942047e+01 moveto +8.776095e+01 7.695998e+01 lineto +8.560654e+01 7.727804e+01 lineto +8.428964e+01 7.971821e+01 lineto +8.630637e+01 7.942047e+01 lineto +closepath +gsave +4.568749e-01 4.568749e-01 4.568749e-01 setrgbcolor +fill +grestore +newpath +8.630637e+01 7.942047e+01 moveto +8.776095e+01 7.695998e+01 lineto +8.560654e+01 7.727804e+01 lineto +8.428964e+01 7.971821e+01 lineto +8.630637e+01 7.942047e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.469048e+01 8.162795e+01 moveto +8.630637e+01 7.942047e+01 lineto +8.428964e+01 7.971821e+01 lineto +8.28267e+01 8.190311e+01 lineto +8.469048e+01 8.162795e+01 lineto +closepath +gsave +4.516912e-01 4.516912e-01 4.516912e-01 setrgbcolor +fill +grestore +newpath +8.469048e+01 8.162795e+01 moveto +8.630637e+01 7.942047e+01 lineto +8.428964e+01 7.971821e+01 lineto +8.28267e+01 8.190311e+01 lineto +8.469048e+01 8.162795e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.292553e+01 8.356572e+01 moveto +8.469048e+01 8.162795e+01 lineto +8.28267e+01 8.190311e+01 lineto +8.122881e+01 8.381621e+01 lineto +8.292553e+01 8.356572e+01 lineto +closepath +gsave +4.468197e-01 4.468197e-01 4.468197e-01 setrgbcolor +fill +grestore +newpath +8.292553e+01 8.356572e+01 moveto +8.469048e+01 8.162795e+01 lineto +8.28267e+01 8.190311e+01 lineto +8.122881e+01 8.381621e+01 lineto +8.292553e+01 8.356572e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.102487e+01 8.521909e+01 moveto +8.292553e+01 8.356572e+01 lineto +8.122881e+01 8.381621e+01 lineto +7.950806e+01 8.544303e+01 lineto +8.102487e+01 8.521909e+01 lineto +closepath +gsave +4.422858e-01 4.422858e-01 4.422858e-01 setrgbcolor +fill +grestore +newpath +8.102487e+01 8.521909e+01 moveto +8.292553e+01 8.356572e+01 lineto +8.122881e+01 8.381621e+01 lineto +7.950806e+01 8.544303e+01 lineto +8.102487e+01 8.521909e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.90029e+01 8.657556e+01 moveto +8.102487e+01 8.521909e+01 lineto +7.950806e+01 8.544303e+01 lineto +7.767747e+01 8.677124e+01 lineto +7.90029e+01 8.657556e+01 lineto +closepath +gsave +4.381053e-01 4.381053e-01 4.381053e-01 setrgbcolor +fill +grestore +newpath +7.90029e+01 8.657556e+01 moveto +8.102487e+01 8.521909e+01 lineto +7.950806e+01 8.544303e+01 lineto +7.767747e+01 8.677124e+01 lineto +7.90029e+01 8.657556e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.687492e+01 8.762486e+01 moveto +7.90029e+01 8.657556e+01 lineto +7.767747e+01 8.677124e+01 lineto +7.575091e+01 8.77908e+01 lineto +7.687492e+01 8.762486e+01 lineto +closepath +gsave +4.342859e-01 4.342859e-01 4.342859e-01 setrgbcolor +fill +grestore +newpath +7.687492e+01 8.762486e+01 moveto +7.90029e+01 8.657556e+01 lineto +7.767747e+01 8.677124e+01 lineto +7.575091e+01 8.77908e+01 lineto +7.687492e+01 8.762486e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.465704e+01 8.835904e+01 moveto +7.687492e+01 8.762486e+01 lineto +7.575091e+01 8.77908e+01 lineto +7.374297e+01 8.849399e+01 lineto +7.465704e+01 8.835904e+01 lineto +closepath +gsave +4.308275e-01 4.308275e-01 4.308275e-01 setrgbcolor +fill +grestore +newpath +7.465704e+01 8.835904e+01 moveto +7.687492e+01 8.762486e+01 lineto +7.575091e+01 8.77908e+01 lineto +7.374297e+01 8.849399e+01 lineto +7.465704e+01 8.835904e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.236606e+01 8.877254e+01 moveto +7.465704e+01 8.835904e+01 lineto +7.374297e+01 8.849399e+01 lineto +7.166883e+01 8.887547e+01 lineto +7.236606e+01 8.877254e+01 lineto +closepath +gsave +4.277235e-01 4.277235e-01 4.277235e-01 setrgbcolor +fill +grestore +newpath +7.236606e+01 8.877254e+01 moveto +7.465704e+01 8.835904e+01 lineto +7.374297e+01 8.849399e+01 lineto +7.166883e+01 8.887547e+01 lineto +7.236606e+01 8.877254e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.043348e+01 8.60061e+01 moveto +6.282343e+01 8.719395e+01 lineto +6.302945e+01 8.716353e+01 lineto +6.086571e+01 8.594229e+01 lineto +6.043348e+01 8.60061e+01 lineto +closepath +gsave +5.103594e-01 5.103594e-01 5.103594e-01 setrgbcolor +fill +grestore +newpath +6.043348e+01 8.60061e+01 moveto +6.282343e+01 8.719395e+01 lineto +6.302945e+01 8.716353e+01 lineto +6.086571e+01 8.594229e+01 lineto +6.043348e+01 8.60061e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.807809e+01 8.45154e+01 moveto +6.043348e+01 8.60061e+01 lineto +6.086571e+01 8.594229e+01 lineto +5.873328e+01 8.441867e+01 lineto +5.807809e+01 8.45154e+01 lineto +closepath +gsave +5.151352e-01 5.151352e-01 5.151352e-01 setrgbcolor +fill +grestore +newpath +5.807809e+01 8.45154e+01 moveto +6.043348e+01 8.60061e+01 lineto +6.086571e+01 8.594229e+01 lineto +5.873328e+01 8.441867e+01 lineto +5.807809e+01 8.45154e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.577511e+01 8.273311e+01 moveto +5.807809e+01 8.45154e+01 lineto +5.873328e+01 8.441867e+01 lineto +5.664828e+01 8.26042e+01 lineto +5.577511e+01 8.273311e+01 lineto +closepath +gsave +5.193943e-01 5.193943e-01 5.193943e-01 setrgbcolor +fill +grestore +newpath +5.577511e+01 8.273311e+01 moveto +5.807809e+01 8.45154e+01 lineto +5.873328e+01 8.441867e+01 lineto +5.664828e+01 8.26042e+01 lineto +5.577511e+01 8.273311e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.717794e+01 4.939691e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.693681e+01 4.968494e+00 lineto +6.717794e+01 4.939691e+00 lineto +closepath +gsave +5.064403e-01 5.064403e-01 5.064403e-01 setrgbcolor +fill +grestore +newpath +6.717794e+01 4.939691e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.693681e+01 4.968494e+00 lineto +6.717794e+01 4.939691e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.93394e+01 6.190226e+00 moveto +6.717794e+01 4.939691e+00 lineto +6.693681e+01 4.968494e+00 lineto +6.885896e+01 6.247616e+00 lineto +6.93394e+01 6.190226e+00 lineto +closepath +gsave +5.132397e-01 5.132397e-01 5.132397e-01 setrgbcolor +fill +grestore +newpath +6.93394e+01 6.190226e+00 moveto +6.717794e+01 4.939691e+00 lineto +6.693681e+01 4.968494e+00 lineto +6.885896e+01 6.247616e+00 lineto +6.93394e+01 6.190226e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.1468e+01 7.742139e+00 moveto +6.93394e+01 6.190226e+00 lineto +6.885896e+01 6.247616e+00 lineto +7.075189e+01 7.82768e+00 lineto +7.1468e+01 7.742139e+00 lineto +closepath +gsave +5.196839e-01 5.196839e-01 5.196839e-01 setrgbcolor +fill +grestore +newpath +7.1468e+01 7.742139e+00 moveto +6.93394e+01 6.190226e+00 lineto +6.885896e+01 6.247616e+00 lineto +7.075189e+01 7.82768e+00 lineto +7.1468e+01 7.742139e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.354764e+01 9.58368e+00 moveto +7.1468e+01 7.742139e+00 lineto +7.075189e+01 7.82768e+00 lineto +7.260128e+01 9.696725e+00 lineto +7.354764e+01 9.58368e+00 lineto +closepath +gsave +5.256566e-01 5.256566e-01 5.256566e-01 setrgbcolor +fill +grestore +newpath +7.354764e+01 9.58368e+00 moveto +7.1468e+01 7.742139e+00 lineto +7.075189e+01 7.82768e+00 lineto +7.260128e+01 9.696725e+00 lineto +7.354764e+01 9.58368e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.556257e+01 1.170091e+01 moveto +7.354764e+01 9.58368e+00 lineto +7.260128e+01 9.696725e+00 lineto +7.439313e+01 1.18406e+01 lineto +7.556257e+01 1.170091e+01 lineto +closepath +gsave +5.310455e-01 5.310455e-01 5.310455e-01 setrgbcolor +fill +grestore +newpath +7.556257e+01 1.170091e+01 moveto +7.354764e+01 9.58368e+00 lineto +7.260128e+01 9.696725e+00 lineto +7.439313e+01 1.18406e+01 lineto +7.556257e+01 1.170091e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.749753e+01 1.40778e+01 moveto +7.556257e+01 1.170091e+01 lineto +7.439313e+01 1.18406e+01 lineto +7.611386e+01 1.424308e+01 lineto +7.749753e+01 1.40778e+01 lineto +closepath +gsave +5.357462e-01 5.357462e-01 5.357462e-01 setrgbcolor +fill +grestore +newpath +7.749753e+01 1.40778e+01 moveto +7.556257e+01 1.170091e+01 lineto +7.439313e+01 1.18406e+01 lineto +7.611386e+01 1.424308e+01 lineto +7.749753e+01 1.40778e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.933789e+01 1.669635e+01 moveto +7.749753e+01 1.40778e+01 lineto +7.611386e+01 1.424308e+01 lineto +7.775046e+01 1.688597e+01 lineto +7.933789e+01 1.669635e+01 lineto +closepath +gsave +5.396652e-01 5.396652e-01 5.396652e-01 setrgbcolor +fill +grestore +newpath +7.933789e+01 1.669635e+01 moveto +7.749753e+01 1.40778e+01 lineto +7.611386e+01 1.424308e+01 lineto +7.775046e+01 1.688597e+01 lineto +7.933789e+01 1.669635e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.10697e+01 1.953675e+01 moveto +7.933789e+01 1.669635e+01 lineto +7.775046e+01 1.688597e+01 lineto +7.929053e+01 1.974927e+01 lineto +8.10697e+01 1.953675e+01 lineto +closepath +gsave +5.427227e-01 5.427227e-01 5.427227e-01 setrgbcolor +fill +grestore +newpath +8.10697e+01 1.953675e+01 moveto +7.933789e+01 1.669635e+01 lineto +7.775046e+01 1.688597e+01 lineto +7.929053e+01 1.974927e+01 lineto +8.10697e+01 1.953675e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.267985e+01 2.257748e+01 moveto +8.10697e+01 1.953675e+01 lineto +7.929053e+01 1.974927e+01 lineto +8.072242e+01 2.28113e+01 lineto +8.267985e+01 2.257748e+01 lineto +closepath +gsave +5.448557e-01 5.448557e-01 5.448557e-01 setrgbcolor +fill +grestore +newpath +8.267985e+01 2.257748e+01 moveto +8.10697e+01 1.953675e+01 lineto +7.929053e+01 1.974927e+01 lineto +8.072242e+01 2.28113e+01 lineto +8.267985e+01 2.257748e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.415616e+01 2.579553e+01 moveto +8.267985e+01 2.257748e+01 lineto +8.072242e+01 2.28113e+01 lineto +8.203528e+01 2.604888e+01 lineto +8.415616e+01 2.579553e+01 lineto +closepath +gsave +5.460199e-01 5.460199e-01 5.460199e-01 setrgbcolor +fill +grestore +newpath +8.415616e+01 2.579553e+01 moveto +8.267985e+01 2.257748e+01 lineto +8.072242e+01 2.28113e+01 lineto +8.203528e+01 2.604888e+01 lineto +8.415616e+01 2.579553e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.548745e+01 2.916654e+01 moveto +8.415616e+01 2.579553e+01 lineto +8.203528e+01 2.604888e+01 lineto +8.321918e+01 2.943749e+01 lineto +8.548745e+01 2.916654e+01 lineto +closepath +gsave +5.461911e-01 5.461911e-01 5.461911e-01 setrgbcolor +fill +grestore +newpath +8.548745e+01 2.916654e+01 moveto +8.415616e+01 2.579553e+01 lineto +8.203528e+01 2.604888e+01 lineto +8.321918e+01 2.943749e+01 lineto +8.548745e+01 2.916654e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.666364e+01 3.266499e+01 moveto +8.548745e+01 2.916654e+01 lineto +8.321918e+01 2.943749e+01 lineto +8.426514e+01 3.295149e+01 lineto +8.666364e+01 3.266499e+01 lineto +closepath +gsave +5.453661e-01 5.453661e-01 5.453661e-01 setrgbcolor +fill +grestore +newpath +8.666364e+01 3.266499e+01 moveto +8.548745e+01 2.916654e+01 lineto +8.321918e+01 2.943749e+01 lineto +8.426514e+01 3.295149e+01 lineto +8.666364e+01 3.266499e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.767583e+01 3.626438e+01 moveto +8.666364e+01 3.266499e+01 lineto +8.426514e+01 3.295149e+01 lineto +8.516527e+01 3.656428e+01 lineto +8.767583e+01 3.626438e+01 lineto +closepath +gsave +5.435627e-01 5.435627e-01 5.435627e-01 setrgbcolor +fill +grestore +newpath +8.767583e+01 3.626438e+01 moveto +8.666364e+01 3.266499e+01 lineto +8.426514e+01 3.295149e+01 lineto +8.516527e+01 3.656428e+01 lineto +8.767583e+01 3.626438e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.851635e+01 3.993748e+01 moveto +8.767583e+01 3.626438e+01 lineto +8.516527e+01 3.656428e+01 lineto +8.591273e+01 4.024849e+01 lineto +8.851635e+01 3.993748e+01 lineto +closepath +gsave +5.408191e-01 5.408191e-01 5.408191e-01 setrgbcolor +fill +grestore +newpath +8.851635e+01 3.993748e+01 moveto +8.767583e+01 3.626438e+01 lineto +8.516527e+01 3.656428e+01 lineto +8.591273e+01 4.024849e+01 lineto +8.851635e+01 3.993748e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.917884e+01 4.365648e+01 moveto +8.851635e+01 3.993748e+01 lineto +8.591273e+01 4.024849e+01 lineto +8.650188e+01 4.397625e+01 lineto +8.917884e+01 4.365648e+01 lineto +closepath +gsave +5.371924e-01 5.371924e-01 5.371924e-01 setrgbcolor +fill +grestore +newpath +8.917884e+01 4.365648e+01 moveto +8.851635e+01 3.993748e+01 lineto +8.591273e+01 4.024849e+01 lineto +8.650188e+01 4.397625e+01 lineto +8.917884e+01 4.365648e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.965829e+01 4.739322e+01 moveto +8.917884e+01 4.365648e+01 lineto +8.650188e+01 4.397625e+01 lineto +8.692824e+01 4.771933e+01 lineto +8.965829e+01 4.739322e+01 lineto +closepath +gsave +5.327572e-01 5.327572e-01 5.327572e-01 setrgbcolor +fill +grestore +newpath +8.965829e+01 4.739322e+01 moveto +8.917884e+01 4.365648e+01 lineto +8.650188e+01 4.397625e+01 lineto +8.692824e+01 4.771933e+01 lineto +8.965829e+01 4.739322e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.995107e+01 5.111941e+01 moveto +8.965829e+01 4.739322e+01 lineto +8.692824e+01 4.771933e+01 lineto +8.71886e+01 5.144939e+01 lineto +8.995107e+01 5.111941e+01 lineto +closepath +gsave +5.276024e-01 5.276024e-01 5.276024e-01 setrgbcolor +fill +grestore +newpath +8.995107e+01 5.111941e+01 moveto +8.965829e+01 4.739322e+01 lineto +8.692824e+01 4.771933e+01 lineto +8.71886e+01 5.144939e+01 lineto +8.995107e+01 5.111941e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.005495e+01 5.480684e+01 moveto +8.995107e+01 5.111941e+01 lineto +8.71886e+01 5.144939e+01 lineto +8.728098e+01 5.51382e+01 lineto +9.005495e+01 5.480684e+01 lineto +closepath +gsave +5.218288e-01 5.218288e-01 5.218288e-01 setrgbcolor +fill +grestore +newpath +9.005495e+01 5.480684e+01 moveto +8.995107e+01 5.111941e+01 lineto +8.71886e+01 5.144939e+01 lineto +8.728098e+01 5.51382e+01 lineto +9.005495e+01 5.480684e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.996916e+01 5.84276e+01 moveto +9.005495e+01 5.480684e+01 lineto +8.728098e+01 5.51382e+01 lineto +8.720469e+01 5.875783e+01 lineto +8.996916e+01 5.84276e+01 lineto +closepath +gsave +5.155458e-01 5.155458e-01 5.155458e-01 setrgbcolor +fill +grestore +newpath +8.996916e+01 5.84276e+01 moveto +9.005495e+01 5.480684e+01 lineto +8.728098e+01 5.51382e+01 lineto +8.720469e+01 5.875783e+01 lineto +8.996916e+01 5.84276e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.969433e+01 6.195428e+01 moveto +8.996916e+01 5.84276e+01 lineto +8.720469e+01 5.875783e+01 lineto +8.696029e+01 6.228087e+01 lineto +8.969433e+01 6.195428e+01 lineto +closepath +gsave +5.088678e-01 5.088678e-01 5.088678e-01 setrgbcolor +fill +grestore +newpath +8.969433e+01 6.195428e+01 moveto +8.996916e+01 5.84276e+01 lineto +8.720469e+01 5.875783e+01 lineto +8.696029e+01 6.228087e+01 lineto +8.969433e+01 6.195428e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.923257e+01 6.536018e+01 moveto +8.969433e+01 6.195428e+01 lineto +8.696029e+01 6.228087e+01 lineto +8.654965e+01 6.568066e+01 lineto +8.923257e+01 6.536018e+01 lineto +closepath +gsave +5.019114e-01 5.019114e-01 5.019114e-01 setrgbcolor +fill +grestore +newpath +8.923257e+01 6.536018e+01 moveto +8.969433e+01 6.195428e+01 lineto +8.696029e+01 6.228087e+01 lineto +8.654965e+01 6.568066e+01 lineto +8.923257e+01 6.536018e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.858735e+01 6.861952e+01 moveto +8.923257e+01 6.536018e+01 lineto +8.654965e+01 6.568066e+01 lineto +8.597587e+01 6.893147e+01 lineto +8.858735e+01 6.861952e+01 lineto +closepath +gsave +4.947913e-01 4.947913e-01 4.947913e-01 setrgbcolor +fill +grestore +newpath +8.858735e+01 6.861952e+01 moveto +8.923257e+01 6.536018e+01 lineto +8.654965e+01 6.568066e+01 lineto +8.597587e+01 6.893147e+01 lineto +8.858735e+01 6.861952e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.776356e+01 7.170761e+01 moveto +8.858735e+01 6.861952e+01 lineto +8.597587e+01 6.893147e+01 lineto +8.524329e+01 7.200867e+01 lineto +8.776356e+01 7.170761e+01 lineto +closepath +gsave +4.876179e-01 4.876179e-01 4.876179e-01 setrgbcolor +fill +grestore +newpath +8.776356e+01 7.170761e+01 moveto +8.858735e+01 6.861952e+01 lineto +8.597587e+01 6.893147e+01 lineto +8.524329e+01 7.200867e+01 lineto +8.776356e+01 7.170761e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.676745e+01 7.460109e+01 moveto +8.776356e+01 7.170761e+01 lineto +8.524329e+01 7.200867e+01 lineto +8.435746e+01 7.488897e+01 lineto +8.676745e+01 7.460109e+01 lineto +closepath +gsave +4.804945e-01 4.804945e-01 4.804945e-01 setrgbcolor +fill +grestore +newpath +8.676745e+01 7.460109e+01 moveto +8.776356e+01 7.170761e+01 lineto +8.524329e+01 7.200867e+01 lineto +8.435746e+01 7.488897e+01 lineto +8.676745e+01 7.460109e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.560654e+01 7.727804e+01 moveto +8.676745e+01 7.460109e+01 lineto +8.435746e+01 7.488897e+01 lineto +8.332508e+01 7.755057e+01 lineto +8.560654e+01 7.727804e+01 lineto +closepath +gsave +4.735146e-01 4.735146e-01 4.735146e-01 setrgbcolor +fill +grestore +newpath +8.560654e+01 7.727804e+01 moveto +8.676745e+01 7.460109e+01 lineto +8.435746e+01 7.488897e+01 lineto +8.332508e+01 7.755057e+01 lineto +8.560654e+01 7.727804e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.428964e+01 7.971821e+01 moveto +8.560654e+01 7.727804e+01 lineto +8.332508e+01 7.755057e+01 lineto +8.215398e+01 7.997332e+01 lineto +8.428964e+01 7.971821e+01 lineto +closepath +gsave +4.667608e-01 4.667608e-01 4.667608e-01 setrgbcolor +fill +grestore +newpath +8.428964e+01 7.971821e+01 moveto +8.560654e+01 7.727804e+01 lineto +8.332508e+01 7.755057e+01 lineto +8.215398e+01 7.997332e+01 lineto +8.428964e+01 7.971821e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.28267e+01 8.190311e+01 moveto +8.428964e+01 7.971821e+01 lineto +8.215398e+01 7.997332e+01 lineto +8.085301e+01 8.213887e+01 lineto +8.28267e+01 8.190311e+01 lineto +closepath +gsave +4.603028e-01 4.603028e-01 4.603028e-01 setrgbcolor +fill +grestore +newpath +8.28267e+01 8.190311e+01 moveto +8.428964e+01 7.971821e+01 lineto +8.215398e+01 7.997332e+01 lineto +8.085301e+01 8.213887e+01 lineto +8.28267e+01 8.190311e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.122881e+01 8.381621e+01 moveto +8.28267e+01 8.190311e+01 lineto +8.085301e+01 8.213887e+01 lineto +7.943203e+01 8.403084e+01 lineto +8.122881e+01 8.381621e+01 lineto +closepath +gsave +4.541974e-01 4.541974e-01 4.541974e-01 setrgbcolor +fill +grestore +newpath +8.122881e+01 8.381621e+01 moveto +8.28267e+01 8.190311e+01 lineto +8.085301e+01 8.213887e+01 lineto +7.943203e+01 8.403084e+01 lineto +8.122881e+01 8.381621e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.950806e+01 8.544303e+01 moveto +8.122881e+01 8.381621e+01 lineto +7.943203e+01 8.403084e+01 lineto +7.790179e+01 8.56349e+01 lineto +7.950806e+01 8.544303e+01 lineto +closepath +gsave +4.484875e-01 4.484875e-01 4.484875e-01 setrgbcolor +fill +grestore +newpath +7.950806e+01 8.544303e+01 moveto +8.122881e+01 8.381621e+01 lineto +7.943203e+01 8.403084e+01 lineto +7.790179e+01 8.56349e+01 lineto +7.950806e+01 8.544303e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.767747e+01 8.677124e+01 moveto +7.950806e+01 8.544303e+01 lineto +7.790179e+01 8.56349e+01 lineto +7.627388e+01 8.693891e+01 lineto +7.767747e+01 8.677124e+01 lineto +closepath +gsave +4.432033e-01 4.432033e-01 4.432033e-01 setrgbcolor +fill +grestore +newpath +7.767747e+01 8.677124e+01 moveto +7.950806e+01 8.544303e+01 lineto +7.790179e+01 8.56349e+01 lineto +7.627388e+01 8.693891e+01 lineto +7.767747e+01 8.677124e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.575091e+01 8.77908e+01 moveto +7.767747e+01 8.677124e+01 lineto +7.627388e+01 8.693891e+01 lineto +7.456062e+01 8.793299e+01 lineto +7.575091e+01 8.77908e+01 lineto +closepath +gsave +4.383624e-01 4.383624e-01 4.383624e-01 setrgbcolor +fill +grestore +newpath +7.575091e+01 8.77908e+01 moveto +7.767747e+01 8.677124e+01 lineto +7.627388e+01 8.693891e+01 lineto +7.456062e+01 8.793299e+01 lineto +7.575091e+01 8.77908e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.374297e+01 8.849399e+01 moveto +7.575091e+01 8.77908e+01 lineto +7.456062e+01 8.793299e+01 lineto +7.277499e+01 8.860961e+01 lineto +7.374297e+01 8.849399e+01 lineto +closepath +gsave +4.33971e-01 4.33971e-01 4.33971e-01 setrgbcolor +fill +grestore +newpath +7.374297e+01 8.849399e+01 moveto +7.575091e+01 8.77908e+01 lineto +7.456062e+01 8.793299e+01 lineto +7.277499e+01 8.860961e+01 lineto +7.374297e+01 8.849399e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.166883e+01 8.887547e+01 moveto +7.374297e+01 8.849399e+01 lineto +7.277499e+01 8.860961e+01 lineto +7.093049e+01 8.896367e+01 lineto +7.166883e+01 8.887547e+01 lineto +closepath +gsave +4.300256e-01 4.300256e-01 4.300256e-01 setrgbcolor +fill +grestore +newpath +7.166883e+01 8.887547e+01 moveto +7.374297e+01 8.849399e+01 lineto +7.277499e+01 8.860961e+01 lineto +7.093049e+01 8.896367e+01 lineto +7.166883e+01 8.887547e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.086571e+01 8.594229e+01 moveto +6.302945e+01 8.716353e+01 lineto +6.324762e+01 8.713747e+01 lineto +6.132344e+01 8.588761e+01 lineto +6.086571e+01 8.594229e+01 lineto +closepath +gsave +5.126043e-01 5.126043e-01 5.126043e-01 setrgbcolor +fill +grestore +newpath +6.086571e+01 8.594229e+01 moveto +6.302945e+01 8.716353e+01 lineto +6.324762e+01 8.713747e+01 lineto +6.132344e+01 8.588761e+01 lineto +6.086571e+01 8.594229e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.873328e+01 8.441867e+01 moveto +6.086571e+01 8.594229e+01 lineto +6.132344e+01 8.588761e+01 lineto +5.94271e+01 8.433579e+01 lineto +5.873328e+01 8.441867e+01 lineto +closepath +gsave +5.190875e-01 5.190875e-01 5.190875e-01 setrgbcolor +fill +grestore +newpath +5.873328e+01 8.441867e+01 moveto +6.086571e+01 8.594229e+01 lineto +6.132344e+01 8.588761e+01 lineto +5.94271e+01 8.433579e+01 lineto +5.873328e+01 8.441867e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.664828e+01 8.26042e+01 moveto +5.873328e+01 8.441867e+01 lineto +5.94271e+01 8.433579e+01 lineto +5.757294e+01 8.249374e+01 lineto +5.664828e+01 8.26042e+01 lineto +closepath +gsave +5.251101e-01 5.251101e-01 5.251101e-01 setrgbcolor +fill +grestore +newpath +5.664828e+01 8.26042e+01 moveto +5.873328e+01 8.441867e+01 lineto +5.94271e+01 8.433579e+01 lineto +5.757294e+01 8.249374e+01 lineto +5.664828e+01 8.26042e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.693681e+01 4.968494e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.668374e+01 4.992307e+00 lineto +6.693681e+01 4.968494e+00 lineto +closepath +gsave +5.071964e-01 5.071964e-01 5.071964e-01 setrgbcolor +fill +grestore +newpath +6.693681e+01 4.968494e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.668374e+01 4.992307e+00 lineto +6.693681e+01 4.968494e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.885896e+01 6.247616e+00 moveto +6.693681e+01 4.968494e+00 lineto +6.668374e+01 4.992307e+00 lineto +6.835473e+01 6.295061e+00 lineto +6.885896e+01 6.247616e+00 lineto +closepath +gsave +5.156086e-01 5.156086e-01 5.156086e-01 setrgbcolor +fill +grestore +newpath +6.885896e+01 6.247616e+00 moveto +6.693681e+01 4.968494e+00 lineto +6.668374e+01 4.992307e+00 lineto +6.835473e+01 6.295061e+00 lineto +6.885896e+01 6.247616e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.075189e+01 7.82768e+00 moveto +6.885896e+01 6.247616e+00 lineto +6.835473e+01 6.295061e+00 lineto +7.000033e+01 7.898398e+00 lineto +7.075189e+01 7.82768e+00 lineto +closepath +gsave +5.237774e-01 5.237774e-01 5.237774e-01 setrgbcolor +fill +grestore +newpath +7.075189e+01 7.82768e+00 moveto +6.885896e+01 6.247616e+00 lineto +6.835473e+01 6.295061e+00 lineto +7.000033e+01 7.898398e+00 lineto +7.075189e+01 7.82768e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.260128e+01 9.696725e+00 moveto +7.075189e+01 7.82768e+00 lineto +7.000033e+01 7.898398e+00 lineto +7.160807e+01 9.790182e+00 lineto +7.260128e+01 9.696725e+00 lineto +closepath +gsave +5.315557e-01 5.315557e-01 5.315557e-01 setrgbcolor +fill +grestore +newpath +7.260128e+01 9.696725e+00 moveto +7.075189e+01 7.82768e+00 lineto +7.000033e+01 7.898398e+00 lineto +7.160807e+01 9.790182e+00 lineto +7.260128e+01 9.696725e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.439313e+01 1.18406e+01 moveto +7.260128e+01 9.696725e+00 lineto +7.160807e+01 9.790182e+00 lineto +7.316578e+01 1.195609e+01 lineto +7.439313e+01 1.18406e+01 lineto +closepath +gsave +5.387964e-01 5.387964e-01 5.387964e-01 setrgbcolor +fill +grestore +newpath +7.439313e+01 1.18406e+01 moveto +7.260128e+01 9.696725e+00 lineto +7.160807e+01 9.790182e+00 lineto +7.316578e+01 1.195609e+01 lineto +7.439313e+01 1.18406e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.611386e+01 1.424308e+01 moveto +7.439313e+01 1.18406e+01 lineto +7.316578e+01 1.195609e+01 lineto +7.466168e+01 1.437972e+01 lineto +7.611386e+01 1.424308e+01 lineto +closepath +gsave +5.453564e-01 5.453564e-01 5.453564e-01 setrgbcolor +fill +grestore +newpath +7.611386e+01 1.424308e+01 moveto +7.439313e+01 1.18406e+01 lineto +7.316578e+01 1.195609e+01 lineto +7.466168e+01 1.437972e+01 lineto +7.611386e+01 1.424308e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.775046e+01 1.688597e+01 moveto +7.611386e+01 1.424308e+01 lineto +7.466168e+01 1.437972e+01 lineto +7.608443e+01 1.704274e+01 lineto +7.775046e+01 1.688597e+01 lineto +closepath +gsave +5.511021e-01 5.511021e-01 5.511021e-01 setrgbcolor +fill +grestore +newpath +7.775046e+01 1.688597e+01 moveto +7.611386e+01 1.424308e+01 lineto +7.466168e+01 1.437972e+01 lineto +7.608443e+01 1.704274e+01 lineto +7.775046e+01 1.688597e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.929053e+01 1.974927e+01 moveto +7.775046e+01 1.688597e+01 lineto +7.608443e+01 1.704274e+01 lineto +7.742327e+01 1.992497e+01 lineto +7.929053e+01 1.974927e+01 lineto +closepath +gsave +5.559129e-01 5.559129e-01 5.559129e-01 setrgbcolor +fill +grestore +newpath +7.929053e+01 1.974927e+01 moveto +7.775046e+01 1.688597e+01 lineto +7.608443e+01 1.704274e+01 lineto +7.742327e+01 1.992497e+01 lineto +7.929053e+01 1.974927e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.072242e+01 2.28113e+01 moveto +7.929053e+01 1.974927e+01 lineto +7.742327e+01 1.992497e+01 lineto +7.866806e+01 2.30046e+01 lineto +8.072242e+01 2.28113e+01 lineto +closepath +gsave +5.596859e-01 5.596859e-01 5.596859e-01 setrgbcolor +fill +grestore +newpath +8.072242e+01 2.28113e+01 moveto +7.929053e+01 1.974927e+01 lineto +7.742327e+01 1.992497e+01 lineto +7.866806e+01 2.30046e+01 lineto +8.072242e+01 2.28113e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.203528e+01 2.604888e+01 moveto +8.072242e+01 2.28113e+01 lineto +7.866806e+01 2.30046e+01 lineto +7.980937e+01 2.625832e+01 lineto +8.203528e+01 2.604888e+01 lineto +closepath +gsave +5.62339e-01 5.62339e-01 5.62339e-01 setrgbcolor +fill +grestore +newpath +8.203528e+01 2.604888e+01 moveto +8.072242e+01 2.28113e+01 lineto +7.866806e+01 2.30046e+01 lineto +7.980937e+01 2.625832e+01 lineto +8.203528e+01 2.604888e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.321918e+01 2.943749e+01 moveto +8.203528e+01 2.604888e+01 lineto +7.980937e+01 2.625832e+01 lineto +8.083857e+01 2.966149e+01 lineto +8.321918e+01 2.943749e+01 lineto +closepath +gsave +5.638139e-01 5.638139e-01 5.638139e-01 setrgbcolor +fill +grestore +newpath +8.321918e+01 2.943749e+01 moveto +8.203528e+01 2.604888e+01 lineto +7.980937e+01 2.625832e+01 lineto +8.083857e+01 2.966149e+01 lineto +8.321918e+01 2.943749e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.426514e+01 3.295149e+01 moveto +8.321918e+01 2.943749e+01 lineto +8.083857e+01 2.966149e+01 lineto +8.174787e+01 3.318835e+01 lineto +8.426514e+01 3.295149e+01 lineto +closepath +gsave +5.640783e-01 5.640783e-01 5.640783e-01 setrgbcolor +fill +grestore +newpath +8.426514e+01 3.295149e+01 moveto +8.321918e+01 2.943749e+01 lineto +8.083857e+01 2.966149e+01 lineto +8.174787e+01 3.318835e+01 lineto +8.426514e+01 3.295149e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.516527e+01 3.656428e+01 moveto +8.426514e+01 3.295149e+01 lineto +8.174787e+01 3.318835e+01 lineto +8.253038e+01 3.68122e+01 lineto +8.516527e+01 3.656428e+01 lineto +closepath +gsave +5.631267e-01 5.631267e-01 5.631267e-01 setrgbcolor +fill +grestore +newpath +8.516527e+01 3.656428e+01 moveto +8.426514e+01 3.295149e+01 lineto +8.174787e+01 3.318835e+01 lineto +8.253038e+01 3.68122e+01 lineto +8.516527e+01 3.656428e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.591273e+01 4.024849e+01 moveto +8.516527e+01 3.656428e+01 lineto +8.253038e+01 3.68122e+01 lineto +8.318018e+01 4.050561e+01 lineto +8.591273e+01 4.024849e+01 lineto +closepath +gsave +5.609808e-01 5.609808e-01 5.609808e-01 setrgbcolor +fill +grestore +newpath +8.591273e+01 4.024849e+01 moveto +8.516527e+01 3.656428e+01 lineto +8.253038e+01 3.68122e+01 lineto +8.318018e+01 4.050561e+01 lineto +8.591273e+01 4.024849e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.650188e+01 4.397625e+01 moveto +8.591273e+01 4.024849e+01 lineto +8.318018e+01 4.050561e+01 lineto +8.369234e+01 4.424061e+01 lineto +8.650188e+01 4.397625e+01 lineto +closepath +gsave +5.576885e-01 5.576885e-01 5.576885e-01 setrgbcolor +fill +grestore +newpath +8.650188e+01 4.397625e+01 moveto +8.591273e+01 4.024849e+01 lineto +8.318018e+01 4.050561e+01 lineto +8.369234e+01 4.424061e+01 lineto +8.650188e+01 4.397625e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.692824e+01 4.771933e+01 moveto +8.650188e+01 4.397625e+01 lineto +8.369234e+01 4.424061e+01 lineto +8.4063e+01 4.798893e+01 lineto +8.692824e+01 4.771933e+01 lineto +closepath +gsave +5.533223e-01 5.533223e-01 5.533223e-01 setrgbcolor +fill +grestore +newpath +8.692824e+01 4.771933e+01 moveto +8.650188e+01 4.397625e+01 lineto +8.369234e+01 4.424061e+01 lineto +8.4063e+01 4.798893e+01 lineto +8.692824e+01 4.771933e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.71886e+01 5.144939e+01 moveto +8.692824e+01 4.771933e+01 lineto +8.4063e+01 4.798893e+01 lineto +8.428934e+01 5.17222e+01 lineto +8.71886e+01 5.144939e+01 lineto +closepath +gsave +5.479767e-01 5.479767e-01 5.479767e-01 setrgbcolor +fill +grestore +newpath +8.71886e+01 5.144939e+01 moveto +8.692824e+01 4.771933e+01 lineto +8.4063e+01 4.798893e+01 lineto +8.428934e+01 5.17222e+01 lineto +8.71886e+01 5.144939e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.728098e+01 5.51382e+01 moveto +8.71886e+01 5.144939e+01 lineto +8.428934e+01 5.17222e+01 lineto +8.436965e+01 5.541214e+01 lineto +8.728098e+01 5.51382e+01 lineto +closepath +gsave +5.41765e-01 5.41765e-01 5.41765e-01 setrgbcolor +fill +grestore +newpath +8.728098e+01 5.51382e+01 moveto +8.71886e+01 5.144939e+01 lineto +8.428934e+01 5.17222e+01 lineto +8.436965e+01 5.541214e+01 lineto +8.728098e+01 5.51382e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.720469e+01 5.875783e+01 moveto +8.728098e+01 5.51382e+01 lineto +8.436965e+01 5.541214e+01 lineto +8.430332e+01 5.903083e+01 lineto +8.720469e+01 5.875783e+01 lineto +closepath +gsave +5.348153e-01 5.348153e-01 5.348153e-01 setrgbcolor +fill +grestore +newpath +8.720469e+01 5.875783e+01 moveto +8.728098e+01 5.51382e+01 lineto +8.436965e+01 5.541214e+01 lineto +8.430332e+01 5.903083e+01 lineto +8.720469e+01 5.875783e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.696029e+01 6.228087e+01 moveto +8.720469e+01 5.875783e+01 lineto +8.430332e+01 5.903083e+01 lineto +8.409086e+01 6.255087e+01 lineto +8.696029e+01 6.228087e+01 lineto +closepath +gsave +5.272663e-01 5.272663e-01 5.272663e-01 setrgbcolor +fill +grestore +newpath +8.696029e+01 6.228087e+01 moveto +8.720469e+01 5.875783e+01 lineto +8.430332e+01 5.903083e+01 lineto +8.409086e+01 6.255087e+01 lineto +8.696029e+01 6.228087e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.654965e+01 6.568066e+01 moveto +8.696029e+01 6.228087e+01 lineto +8.409086e+01 6.255087e+01 lineto +8.373387e+01 6.594561e+01 lineto +8.654965e+01 6.568066e+01 lineto +closepath +gsave +5.192633e-01 5.192633e-01 5.192633e-01 setrgbcolor +fill +grestore +newpath +8.654965e+01 6.568066e+01 moveto +8.696029e+01 6.228087e+01 lineto +8.409086e+01 6.255087e+01 lineto +8.373387e+01 6.594561e+01 lineto +8.654965e+01 6.568066e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.597587e+01 6.893147e+01 moveto +8.654965e+01 6.568066e+01 lineto +8.373387e+01 6.594561e+01 lineto +8.323506e+01 6.918936e+01 lineto +8.597587e+01 6.893147e+01 lineto +closepath +gsave +5.109528e-01 5.109528e-01 5.109528e-01 setrgbcolor +fill +grestore +newpath +8.597587e+01 6.893147e+01 moveto +8.654965e+01 6.568066e+01 lineto +8.373387e+01 6.594561e+01 lineto +8.323506e+01 6.918936e+01 lineto +8.597587e+01 6.893147e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.524329e+01 7.200867e+01 moveto +8.597587e+01 6.893147e+01 lineto +8.323506e+01 6.918936e+01 lineto +8.259821e+01 7.225755e+01 lineto +8.524329e+01 7.200867e+01 lineto +closepath +gsave +5.024791e-01 5.024791e-01 5.024791e-01 setrgbcolor +fill +grestore +newpath +8.524329e+01 7.200867e+01 moveto +8.597587e+01 6.893147e+01 lineto +8.323506e+01 6.918936e+01 lineto +8.259821e+01 7.225755e+01 lineto +8.524329e+01 7.200867e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.435746e+01 7.488897e+01 moveto +8.524329e+01 7.200867e+01 lineto +8.259821e+01 7.225755e+01 lineto +8.182812e+01 7.512697e+01 lineto +8.435746e+01 7.488897e+01 lineto +closepath +gsave +4.939798e-01 4.939798e-01 4.939798e-01 setrgbcolor +fill +grestore +newpath +8.435746e+01 7.488897e+01 moveto +8.524329e+01 7.200867e+01 lineto +8.259821e+01 7.225755e+01 lineto +8.182812e+01 7.512697e+01 lineto +8.435746e+01 7.488897e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.332508e+01 7.755057e+01 moveto +8.435746e+01 7.488897e+01 lineto +8.182812e+01 7.512697e+01 lineto +8.093064e+01 7.777587e+01 lineto +8.332508e+01 7.755057e+01 lineto +closepath +gsave +4.855825e-01 4.855825e-01 4.855825e-01 setrgbcolor +fill +grestore +newpath +8.332508e+01 7.755057e+01 moveto +8.435746e+01 7.488897e+01 lineto +8.182812e+01 7.512697e+01 lineto +8.093064e+01 7.777587e+01 lineto +8.332508e+01 7.755057e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.215398e+01 7.997332e+01 moveto +8.332508e+01 7.755057e+01 lineto +8.093064e+01 7.777587e+01 lineto +7.991256e+01 8.018422e+01 lineto +8.215398e+01 7.997332e+01 lineto +closepath +gsave +4.774016e-01 4.774016e-01 4.774016e-01 setrgbcolor +fill +grestore +newpath +8.215398e+01 7.997332e+01 moveto +8.332508e+01 7.755057e+01 lineto +8.093064e+01 7.777587e+01 lineto +7.991256e+01 8.018422e+01 lineto +8.215398e+01 7.997332e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.085301e+01 8.213887e+01 moveto +8.215398e+01 7.997332e+01 lineto +7.991256e+01 8.018422e+01 lineto +7.878158e+01 8.233378e+01 lineto +8.085301e+01 8.213887e+01 lineto +closepath +gsave +4.695364e-01 4.695364e-01 4.695364e-01 setrgbcolor +fill +grestore +newpath +8.085301e+01 8.213887e+01 moveto +8.215398e+01 7.997332e+01 lineto +7.991256e+01 8.018422e+01 lineto +7.878158e+01 8.233378e+01 lineto +8.085301e+01 8.213887e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.943203e+01 8.403084e+01 moveto +8.085301e+01 8.213887e+01 lineto +7.878158e+01 8.233378e+01 lineto +7.754627e+01 8.420828e+01 lineto +7.943203e+01 8.403084e+01 lineto +closepath +gsave +4.620695e-01 4.620695e-01 4.620695e-01 setrgbcolor +fill +grestore +newpath +7.943203e+01 8.403084e+01 moveto +8.085301e+01 8.213887e+01 lineto +7.878158e+01 8.233378e+01 lineto +7.754627e+01 8.420828e+01 lineto +7.943203e+01 8.403084e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.790179e+01 8.56349e+01 moveto +7.943203e+01 8.403084e+01 lineto +7.754627e+01 8.420828e+01 lineto +7.621598e+01 8.579353e+01 lineto +7.790179e+01 8.56349e+01 lineto +closepath +gsave +4.550657e-01 4.550657e-01 4.550657e-01 setrgbcolor +fill +grestore +newpath +7.790179e+01 8.56349e+01 moveto +7.943203e+01 8.403084e+01 lineto +7.754627e+01 8.420828e+01 lineto +7.621598e+01 8.579353e+01 lineto +7.790179e+01 8.56349e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.627388e+01 8.693891e+01 moveto +7.790179e+01 8.56349e+01 lineto +7.621598e+01 8.579353e+01 lineto +7.480078e+01 8.707752e+01 lineto +7.627388e+01 8.693891e+01 lineto +closepath +gsave +4.485725e-01 4.485725e-01 4.485725e-01 setrgbcolor +fill +grestore +newpath +7.627388e+01 8.693891e+01 moveto +7.790179e+01 8.56349e+01 lineto +7.621598e+01 8.579353e+01 lineto +7.480078e+01 8.707752e+01 lineto +7.627388e+01 8.693891e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.456062e+01 8.793299e+01 moveto +7.627388e+01 8.693891e+01 lineto +7.480078e+01 8.707752e+01 lineto +7.331139e+01 8.805053e+01 lineto +7.456062e+01 8.793299e+01 lineto +closepath +gsave +4.4262e-01 4.4262e-01 4.4262e-01 setrgbcolor +fill +grestore +newpath +7.456062e+01 8.793299e+01 moveto +7.627388e+01 8.693891e+01 lineto +7.480078e+01 8.707752e+01 lineto +7.331139e+01 8.805053e+01 lineto +7.456062e+01 8.793299e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.277499e+01 8.860961e+01 moveto +7.456062e+01 8.793299e+01 lineto +7.331139e+01 8.805053e+01 lineto +7.175907e+01 8.870521e+01 lineto +7.277499e+01 8.860961e+01 lineto +closepath +gsave +4.372226e-01 4.372226e-01 4.372226e-01 setrgbcolor +fill +grestore +newpath +7.277499e+01 8.860961e+01 moveto +7.456062e+01 8.793299e+01 lineto +7.331139e+01 8.805053e+01 lineto +7.175907e+01 8.870521e+01 lineto +7.277499e+01 8.860961e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.093049e+01 8.896367e+01 moveto +7.277499e+01 8.860961e+01 lineto +7.175907e+01 8.870521e+01 lineto +7.015558e+01 8.903658e+01 lineto +7.093049e+01 8.896367e+01 lineto +closepath +gsave +4.323805e-01 4.323805e-01 4.323805e-01 setrgbcolor +fill +grestore +newpath +7.093049e+01 8.896367e+01 moveto +7.277499e+01 8.860961e+01 lineto +7.175907e+01 8.870521e+01 lineto +7.015558e+01 8.903658e+01 lineto +7.093049e+01 8.896367e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.132344e+01 8.588761e+01 moveto +6.324762e+01 8.713747e+01 lineto +6.34766e+01 8.711593e+01 lineto +6.180384e+01 8.584241e+01 lineto +6.132344e+01 8.588761e+01 lineto +closepath +gsave +5.14814e-01 5.14814e-01 5.14814e-01 setrgbcolor +fill +grestore +newpath +6.132344e+01 8.588761e+01 moveto +6.324762e+01 8.713747e+01 lineto +6.34766e+01 8.711593e+01 lineto +6.180384e+01 8.584241e+01 lineto +6.132344e+01 8.588761e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.94271e+01 8.433579e+01 moveto +6.132344e+01 8.588761e+01 lineto +6.180384e+01 8.584241e+01 lineto +6.015528e+01 8.426727e+01 lineto +5.94271e+01 8.433579e+01 lineto +closepath +gsave +5.230124e-01 5.230124e-01 5.230124e-01 setrgbcolor +fill +grestore +newpath +5.94271e+01 8.433579e+01 moveto +6.132344e+01 8.588761e+01 lineto +6.180384e+01 8.584241e+01 lineto +6.015528e+01 8.426727e+01 lineto +5.94271e+01 8.433579e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.757294e+01 8.249374e+01 moveto +5.94271e+01 8.433579e+01 lineto +6.015528e+01 8.426727e+01 lineto +5.85434e+01 8.240243e+01 lineto +5.757294e+01 8.249374e+01 lineto +closepath +gsave +5.308343e-01 5.308343e-01 5.308343e-01 setrgbcolor +fill +grestore +newpath +5.757294e+01 8.249374e+01 moveto +5.94271e+01 8.433579e+01 lineto +6.015528e+01 8.426727e+01 lineto +5.85434e+01 8.240243e+01 lineto +5.757294e+01 8.249374e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.668374e+01 4.992307e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.642028e+01 5.010982e+00 lineto +6.668374e+01 4.992307e+00 lineto +closepath +gsave +5.079291e-01 5.079291e-01 5.079291e-01 setrgbcolor +fill +grestore +newpath +6.668374e+01 4.992307e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.642028e+01 5.010982e+00 lineto +6.668374e+01 4.992307e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.835473e+01 6.295061e+00 moveto +6.668374e+01 4.992307e+00 lineto +6.642028e+01 5.010982e+00 lineto +6.782982e+01 6.33227e+00 lineto +6.835473e+01 6.295061e+00 lineto +closepath +gsave +5.179243e-01 5.179243e-01 5.179243e-01 setrgbcolor +fill +grestore +newpath +6.835473e+01 6.295061e+00 moveto +6.668374e+01 4.992307e+00 lineto +6.642028e+01 5.010982e+00 lineto +6.782982e+01 6.33227e+00 lineto +6.835473e+01 6.295061e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.000033e+01 7.898398e+00 moveto +6.835473e+01 6.295061e+00 lineto +6.782982e+01 6.33227e+00 lineto +6.921793e+01 7.953859e+00 lineto +7.000033e+01 7.898398e+00 lineto +closepath +gsave +5.278127e-01 5.278127e-01 5.278127e-01 setrgbcolor +fill +grestore +newpath +7.000033e+01 7.898398e+00 moveto +6.835473e+01 6.295061e+00 lineto +6.782982e+01 6.33227e+00 lineto +6.921793e+01 7.953859e+00 lineto +7.000033e+01 7.898398e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.160807e+01 9.790182e+00 moveto +7.000033e+01 7.898398e+00 lineto +6.921793e+01 7.953859e+00 lineto +7.057411e+01 9.863474e+00 lineto +7.160807e+01 9.790182e+00 lineto +closepath +gsave +5.374172e-01 5.374172e-01 5.374172e-01 setrgbcolor +fill +grestore +newpath +7.160807e+01 9.790182e+00 moveto +7.000033e+01 7.898398e+00 lineto +6.921793e+01 7.953859e+00 lineto +7.057411e+01 9.863474e+00 lineto +7.160807e+01 9.790182e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.316578e+01 1.195609e+01 moveto +7.160807e+01 9.790182e+00 lineto +7.057411e+01 9.863474e+00 lineto +7.188809e+01 1.204666e+01 lineto +7.316578e+01 1.195609e+01 lineto +closepath +gsave +5.465553e-01 5.465553e-01 5.465553e-01 setrgbcolor +fill +grestore +newpath +7.316578e+01 1.195609e+01 moveto +7.160807e+01 9.790182e+00 lineto +7.057411e+01 9.863474e+00 lineto +7.188809e+01 1.204666e+01 lineto +7.316578e+01 1.195609e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.466168e+01 1.437972e+01 moveto +7.316578e+01 1.195609e+01 lineto +7.188809e+01 1.204666e+01 lineto +7.314992e+01 1.448689e+01 lineto +7.466168e+01 1.437972e+01 lineto +closepath +gsave +5.550444e-01 5.550444e-01 5.550444e-01 setrgbcolor +fill +grestore +newpath +7.466168e+01 1.437972e+01 moveto +7.316578e+01 1.195609e+01 lineto +7.188809e+01 1.204666e+01 lineto +7.314992e+01 1.448689e+01 lineto +7.466168e+01 1.437972e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.608443e+01 1.704274e+01 moveto +7.466168e+01 1.437972e+01 lineto +7.314992e+01 1.448689e+01 lineto +7.435005e+01 1.716568e+01 lineto +7.608443e+01 1.704274e+01 lineto +closepath +gsave +5.627078e-01 5.627078e-01 5.627078e-01 setrgbcolor +fill +grestore +newpath +7.608443e+01 1.704274e+01 moveto +7.466168e+01 1.437972e+01 lineto +7.314992e+01 1.448689e+01 lineto +7.435005e+01 1.716568e+01 lineto +7.608443e+01 1.704274e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.742327e+01 1.992497e+01 moveto +7.608443e+01 1.704274e+01 lineto +7.435005e+01 1.716568e+01 lineto +7.547941e+01 2.006276e+01 lineto +7.742327e+01 1.992497e+01 lineto +closepath +gsave +5.693807e-01 5.693807e-01 5.693807e-01 setrgbcolor +fill +grestore +newpath +7.742327e+01 1.992497e+01 moveto +7.608443e+01 1.704274e+01 lineto +7.435005e+01 1.716568e+01 lineto +7.547941e+01 2.006276e+01 lineto +7.742327e+01 1.992497e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.866806e+01 2.30046e+01 moveto +7.742327e+01 1.992497e+01 lineto +7.547941e+01 2.006276e+01 lineto +7.652942e+01 2.31562e+01 lineto +7.866806e+01 2.30046e+01 lineto +closepath +gsave +5.749156e-01 5.749156e-01 5.749156e-01 setrgbcolor +fill +grestore +newpath +7.866806e+01 2.30046e+01 moveto +7.742327e+01 1.992497e+01 lineto +7.547941e+01 2.006276e+01 lineto +7.652942e+01 2.31562e+01 lineto +7.866806e+01 2.30046e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.980937e+01 2.625832e+01 moveto +7.866806e+01 2.30046e+01 lineto +7.652942e+01 2.31562e+01 lineto +7.749216e+01 2.642258e+01 lineto +7.980937e+01 2.625832e+01 lineto +closepath +gsave +5.791878e-01 5.791878e-01 5.791878e-01 setrgbcolor +fill +grestore +newpath +7.980937e+01 2.625832e+01 moveto +7.866806e+01 2.30046e+01 lineto +7.652942e+01 2.31562e+01 lineto +7.749216e+01 2.642258e+01 lineto +7.980937e+01 2.625832e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.083857e+01 2.966149e+01 moveto +7.980937e+01 2.625832e+01 lineto +7.749216e+01 2.642258e+01 lineto +7.836032e+01 2.983717e+01 lineto +8.083857e+01 2.966149e+01 lineto +closepath +gsave +5.820994e-01 5.820994e-01 5.820994e-01 setrgbcolor +fill +grestore +newpath +8.083857e+01 2.966149e+01 moveto +7.980937e+01 2.625832e+01 lineto +7.749216e+01 2.642258e+01 lineto +7.836032e+01 2.983717e+01 lineto +8.083857e+01 2.966149e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.174787e+01 3.318835e+01 moveto +8.083857e+01 2.966149e+01 lineto +7.836032e+01 2.983717e+01 lineto +7.912734e+01 3.337411e+01 lineto +8.174787e+01 3.318835e+01 lineto +closepath +gsave +5.835833e-01 5.835833e-01 5.835833e-01 setrgbcolor +fill +grestore +newpath +8.174787e+01 3.318835e+01 moveto +8.083857e+01 2.966149e+01 lineto +7.836032e+01 2.983717e+01 lineto +7.912734e+01 3.337411e+01 lineto +8.174787e+01 3.318835e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.253038e+01 3.68122e+01 moveto +8.174787e+01 3.318835e+01 lineto +7.912734e+01 3.337411e+01 lineto +7.978741e+01 3.700664e+01 lineto +8.253038e+01 3.68122e+01 lineto +closepath +gsave +5.836053e-01 5.836053e-01 5.836053e-01 setrgbcolor +fill +grestore +newpath +8.253038e+01 3.68122e+01 moveto +8.174787e+01 3.318835e+01 lineto +7.912734e+01 3.337411e+01 lineto +7.978741e+01 3.700664e+01 lineto +8.253038e+01 3.68122e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.318018e+01 4.050561e+01 moveto +8.253038e+01 3.68122e+01 lineto +7.978741e+01 3.700664e+01 lineto +8.033554e+01 4.070726e+01 lineto +8.318018e+01 4.050561e+01 lineto +closepath +gsave +5.821654e-01 5.821654e-01 5.821654e-01 setrgbcolor +fill +grestore +newpath +8.318018e+01 4.050561e+01 moveto +8.253038e+01 3.68122e+01 lineto +7.978741e+01 3.700664e+01 lineto +8.033554e+01 4.070726e+01 lineto +8.318018e+01 4.050561e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.369234e+01 4.424061e+01 moveto +8.318018e+01 4.050561e+01 lineto +8.033554e+01 4.070726e+01 lineto +8.076756e+01 4.444794e+01 lineto +8.369234e+01 4.424061e+01 lineto +closepath +gsave +5.792977e-01 5.792977e-01 5.792977e-01 setrgbcolor +fill +grestore +newpath +8.369234e+01 4.424061e+01 moveto +8.318018e+01 4.050561e+01 lineto +8.033554e+01 4.070726e+01 lineto +8.076756e+01 4.444794e+01 lineto +8.369234e+01 4.424061e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.4063e+01 4.798893e+01 moveto +8.369234e+01 4.424061e+01 lineto +8.076756e+01 4.444794e+01 lineto +8.108022e+01 4.820037e+01 lineto +8.4063e+01 4.798893e+01 lineto +closepath +gsave +5.750692e-01 5.750692e-01 5.750692e-01 setrgbcolor +fill +grestore +newpath +8.4063e+01 4.798893e+01 moveto +8.369234e+01 4.424061e+01 lineto +8.076756e+01 4.444794e+01 lineto +8.108022e+01 4.820037e+01 lineto +8.4063e+01 4.798893e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.428934e+01 5.17222e+01 moveto +8.4063e+01 4.798893e+01 lineto +8.108022e+01 4.820037e+01 lineto +8.127115e+01 5.193614e+01 lineto +8.428934e+01 5.17222e+01 lineto +closepath +gsave +5.695772e-01 5.695772e-01 5.695772e-01 setrgbcolor +fill +grestore +newpath +8.428934e+01 5.17222e+01 moveto +8.4063e+01 4.798893e+01 lineto +8.108022e+01 4.820037e+01 lineto +8.127115e+01 5.193614e+01 lineto +8.428934e+01 5.17222e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.436965e+01 5.541214e+01 moveto +8.428934e+01 5.17222e+01 lineto +8.127115e+01 5.193614e+01 lineto +8.133889e+01 5.562698e+01 lineto +8.436965e+01 5.541214e+01 lineto +closepath +gsave +5.629461e-01 5.629461e-01 5.629461e-01 setrgbcolor +fill +grestore +newpath +8.436965e+01 5.541214e+01 moveto +8.428934e+01 5.17222e+01 lineto +8.127115e+01 5.193614e+01 lineto +8.133889e+01 5.562698e+01 lineto +8.436965e+01 5.541214e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.430332e+01 5.903083e+01 moveto +8.436965e+01 5.541214e+01 lineto +8.133889e+01 5.562698e+01 lineto +8.128294e+01 5.924493e+01 lineto +8.430332e+01 5.903083e+01 lineto +closepath +gsave +5.553223e-01 5.553223e-01 5.553223e-01 setrgbcolor +fill +grestore +newpath +8.430332e+01 5.903083e+01 moveto +8.436965e+01 5.541214e+01 lineto +8.133889e+01 5.562698e+01 lineto +8.128294e+01 5.924493e+01 lineto +8.430332e+01 5.903083e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.409086e+01 6.255087e+01 moveto +8.430332e+01 5.903083e+01 lineto +8.128294e+01 5.924493e+01 lineto +8.110373e+01 6.276262e+01 lineto +8.409086e+01 6.255087e+01 lineto +closepath +gsave +5.468697e-01 5.468697e-01 5.468697e-01 setrgbcolor +fill +grestore +newpath +8.409086e+01 6.255087e+01 moveto +8.430332e+01 5.903083e+01 lineto +8.128294e+01 5.924493e+01 lineto +8.110373e+01 6.276262e+01 lineto +8.409086e+01 6.255087e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.373387e+01 6.594561e+01 moveto +8.409086e+01 6.255087e+01 lineto +8.110373e+01 6.276262e+01 lineto +8.08026e+01 6.61534e+01 lineto +8.373387e+01 6.594561e+01 lineto +closepath +gsave +5.377639e-01 5.377639e-01 5.377639e-01 setrgbcolor +fill +grestore +newpath +8.373387e+01 6.594561e+01 moveto +8.409086e+01 6.255087e+01 lineto +8.110373e+01 6.276262e+01 lineto +8.08026e+01 6.61534e+01 lineto +8.373387e+01 6.594561e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.323506e+01 6.918936e+01 moveto +8.373387e+01 6.594561e+01 lineto +8.08026e+01 6.61534e+01 lineto +8.038183e+01 6.939161e+01 lineto +8.323506e+01 6.918936e+01 lineto +closepath +gsave +5.281864e-01 5.281864e-01 5.281864e-01 setrgbcolor +fill +grestore +newpath +8.323506e+01 6.918936e+01 moveto +8.373387e+01 6.594561e+01 lineto +8.08026e+01 6.61534e+01 lineto +8.038183e+01 6.939161e+01 lineto +8.323506e+01 6.918936e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.259821e+01 7.225755e+01 moveto +8.323506e+01 6.918936e+01 lineto +8.038183e+01 6.939161e+01 lineto +7.984463e+01 7.245274e+01 lineto +8.259821e+01 7.225755e+01 lineto +closepath +gsave +5.183187e-01 5.183187e-01 5.183187e-01 setrgbcolor +fill +grestore +newpath +8.259821e+01 7.225755e+01 moveto +8.323506e+01 6.918936e+01 lineto +8.038183e+01 6.939161e+01 lineto +7.984463e+01 7.245274e+01 lineto +8.259821e+01 7.225755e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.182812e+01 7.512697e+01 moveto +8.259821e+01 7.225755e+01 lineto +7.984463e+01 7.245274e+01 lineto +7.919504e+01 7.531361e+01 lineto +8.182812e+01 7.512697e+01 lineto +closepath +gsave +5.08337e-01 5.08337e-01 5.08337e-01 setrgbcolor +fill +grestore +newpath +8.182812e+01 7.512697e+01 moveto +8.259821e+01 7.225755e+01 lineto +7.984463e+01 7.245274e+01 lineto +7.919504e+01 7.531361e+01 lineto +8.182812e+01 7.512697e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.093064e+01 7.777587e+01 moveto +8.182812e+01 7.512697e+01 lineto +7.919504e+01 7.531361e+01 lineto +7.843798e+01 7.795257e+01 lineto +8.093064e+01 7.777587e+01 lineto +closepath +gsave +4.984074e-01 4.984074e-01 4.984074e-01 setrgbcolor +fill +grestore +newpath +8.093064e+01 7.777587e+01 moveto +8.182812e+01 7.512697e+01 lineto +7.919504e+01 7.531361e+01 lineto +7.843798e+01 7.795257e+01 lineto +8.093064e+01 7.777587e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.991256e+01 8.018422e+01 moveto +8.093064e+01 7.777587e+01 lineto +7.843798e+01 7.795257e+01 lineto +7.75792e+01 8.034962e+01 lineto +7.991256e+01 8.018422e+01 lineto +closepath +gsave +4.88681e-01 4.88681e-01 4.88681e-01 setrgbcolor +fill +grestore +newpath +7.991256e+01 8.018422e+01 moveto +8.093064e+01 7.777587e+01 lineto +7.843798e+01 7.795257e+01 lineto +7.75792e+01 8.034962e+01 lineto +7.991256e+01 8.018422e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.878158e+01 8.233378e+01 moveto +7.991256e+01 8.018422e+01 lineto +7.75792e+01 8.034962e+01 lineto +7.662519e+01 8.248664e+01 lineto +7.878158e+01 8.233378e+01 lineto +closepath +gsave +4.792911e-01 4.792911e-01 4.792911e-01 setrgbcolor +fill +grestore +newpath +7.878158e+01 8.233378e+01 moveto +7.991256e+01 8.018422e+01 lineto +7.75792e+01 8.034962e+01 lineto +7.662519e+01 8.248664e+01 lineto +7.878158e+01 8.233378e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.754627e+01 8.420828e+01 moveto +7.878158e+01 8.233378e+01 lineto +7.662519e+01 8.248664e+01 lineto +7.558317e+01 8.434744e+01 lineto +7.754627e+01 8.420828e+01 lineto +closepath +gsave +4.703504e-01 4.703504e-01 4.703504e-01 setrgbcolor +fill +grestore +newpath +7.754627e+01 8.420828e+01 moveto +7.878158e+01 8.233378e+01 lineto +7.662519e+01 8.248664e+01 lineto +7.558317e+01 8.434744e+01 lineto +7.754627e+01 8.420828e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.621598e+01 8.579353e+01 moveto +7.754627e+01 8.420828e+01 lineto +7.558317e+01 8.434744e+01 lineto +7.446103e+01 8.591793e+01 lineto +7.621598e+01 8.579353e+01 lineto +closepath +gsave +4.619492e-01 4.619492e-01 4.619492e-01 setrgbcolor +fill +grestore +newpath +7.621598e+01 8.579353e+01 moveto +7.754627e+01 8.420828e+01 lineto +7.558317e+01 8.434744e+01 lineto +7.446103e+01 8.591793e+01 lineto +7.621598e+01 8.579353e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.480078e+01 8.707752e+01 moveto +7.621598e+01 8.579353e+01 lineto +7.446103e+01 8.591793e+01 lineto +7.326726e+01 8.718622e+01 lineto +7.480078e+01 8.707752e+01 lineto +closepath +gsave +4.541553e-01 4.541553e-01 4.541553e-01 setrgbcolor +fill +grestore +newpath +7.480078e+01 8.707752e+01 moveto +7.621598e+01 8.579353e+01 lineto +7.446103e+01 8.591793e+01 lineto +7.326726e+01 8.718622e+01 lineto +7.480078e+01 8.707752e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.331139e+01 8.805053e+01 moveto +7.480078e+01 8.707752e+01 lineto +7.326726e+01 8.718622e+01 lineto +7.201091e+01 8.814272e+01 lineto +7.331139e+01 8.805053e+01 lineto +closepath +gsave +4.470138e-01 4.470138e-01 4.470138e-01 setrgbcolor +fill +grestore +newpath +7.331139e+01 8.805053e+01 moveto +7.480078e+01 8.707752e+01 lineto +7.326726e+01 8.718622e+01 lineto +7.201091e+01 8.814272e+01 lineto +7.331139e+01 8.805053e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.175907e+01 8.870521e+01 moveto +7.331139e+01 8.805053e+01 lineto +7.201091e+01 8.814272e+01 lineto +7.070148e+01 8.878017e+01 lineto +7.175907e+01 8.870521e+01 lineto +closepath +gsave +4.40549e-01 4.40549e-01 4.40549e-01 setrgbcolor +fill +grestore +newpath +7.175907e+01 8.870521e+01 moveto +7.331139e+01 8.805053e+01 lineto +7.201091e+01 8.814272e+01 lineto +7.070148e+01 8.878017e+01 lineto +7.175907e+01 8.870521e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.015558e+01 8.903658e+01 moveto +7.175907e+01 8.870521e+01 lineto +7.070148e+01 8.878017e+01 lineto +6.934889e+01 8.909377e+01 lineto +7.015558e+01 8.903658e+01 lineto +closepath +gsave +4.347653e-01 4.347653e-01 4.347653e-01 setrgbcolor +fill +grestore +newpath +7.015558e+01 8.903658e+01 moveto +7.175907e+01 8.870521e+01 lineto +7.070148e+01 8.878017e+01 lineto +6.934889e+01 8.909377e+01 lineto +7.015558e+01 8.903658e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.180384e+01 8.584241e+01 moveto +6.34766e+01 8.711593e+01 lineto +6.371496e+01 8.709903e+01 lineto +6.230394e+01 8.580696e+01 lineto +6.180384e+01 8.584241e+01 lineto +closepath +gsave +5.169723e-01 5.169723e-01 5.169723e-01 setrgbcolor +fill +grestore +newpath +6.180384e+01 8.584241e+01 moveto +6.34766e+01 8.711593e+01 lineto +6.371496e+01 8.709903e+01 lineto +6.230394e+01 8.580696e+01 lineto +6.180384e+01 8.584241e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.015528e+01 8.426727e+01 moveto +6.180384e+01 8.584241e+01 lineto +6.230394e+01 8.580696e+01 lineto +6.091333e+01 8.421354e+01 lineto +6.015528e+01 8.426727e+01 lineto +closepath +gsave +5.268784e-01 5.268784e-01 5.268784e-01 setrgbcolor +fill +grestore +newpath +6.015528e+01 8.426727e+01 moveto +6.180384e+01 8.584241e+01 lineto +6.230394e+01 8.580696e+01 lineto +6.091333e+01 8.421354e+01 lineto +6.015528e+01 8.426727e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.85434e+01 8.240243e+01 moveto +6.015528e+01 8.426727e+01 lineto +6.091333e+01 8.421354e+01 lineto +5.955366e+01 8.233082e+01 lineto +5.85434e+01 8.240243e+01 lineto +closepath +gsave +5.365178e-01 5.365178e-01 5.365178e-01 setrgbcolor +fill +grestore +newpath +5.85434e+01 8.240243e+01 moveto +6.015528e+01 8.426727e+01 lineto +6.091333e+01 8.421354e+01 lineto +5.955366e+01 8.233082e+01 lineto +5.85434e+01 8.240243e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.642028e+01 5.010982e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.614807e+01 5.024405e+00 lineto +6.642028e+01 5.010982e+00 lineto +closepath +gsave +5.086333e-01 5.086333e-01 5.086333e-01 setrgbcolor +fill +grestore +newpath +6.642028e+01 5.010982e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.614807e+01 5.024405e+00 lineto +6.642028e+01 5.010982e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.782982e+01 6.33227e+00 moveto +6.642028e+01 5.010982e+00 lineto +6.614807e+01 5.024405e+00 lineto +6.728746e+01 6.359012e+00 lineto +6.782982e+01 6.33227e+00 lineto +closepath +gsave +5.20169e-01 5.20169e-01 5.20169e-01 setrgbcolor +fill +grestore +newpath +6.782982e+01 6.33227e+00 moveto +6.642028e+01 5.010982e+00 lineto +6.614807e+01 5.024405e+00 lineto +6.728746e+01 6.359012e+00 lineto +6.782982e+01 6.33227e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.921793e+01 7.953859e+00 moveto +6.782982e+01 6.33227e+00 lineto +6.728746e+01 6.359012e+00 lineto +6.840952e+01 7.99372e+00 lineto +6.921793e+01 7.953859e+00 lineto +closepath +gsave +5.317554e-01 5.317554e-01 5.317554e-01 setrgbcolor +fill +grestore +newpath +6.921793e+01 7.953859e+00 moveto +6.782982e+01 6.33227e+00 lineto +6.728746e+01 6.359012e+00 lineto +6.840952e+01 7.99372e+00 lineto +6.921793e+01 7.953859e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.057411e+01 9.863474e+00 moveto +6.921793e+01 7.953859e+00 lineto +6.840952e+01 7.99372e+00 lineto +6.950578e+01 9.916152e+00 lineto +7.057411e+01 9.863474e+00 lineto +closepath +gsave +5.431869e-01 5.431869e-01 5.431869e-01 setrgbcolor +fill +grestore +newpath +7.057411e+01 9.863474e+00 moveto +6.921793e+01 7.953859e+00 lineto +6.840952e+01 7.99372e+00 lineto +6.950578e+01 9.916152e+00 lineto +7.057411e+01 9.863474e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.188809e+01 1.204666e+01 moveto +7.057411e+01 9.863474e+00 lineto +6.950578e+01 9.916152e+00 lineto +7.056792e+01 1.211175e+01 lineto +7.188809e+01 1.204666e+01 lineto +closepath +gsave +5.542459e-01 5.542459e-01 5.542459e-01 setrgbcolor +fill +grestore +newpath +7.188809e+01 1.204666e+01 moveto +7.057411e+01 9.863474e+00 lineto +6.950578e+01 9.916152e+00 lineto +7.056792e+01 1.211175e+01 lineto +7.188809e+01 1.204666e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.314992e+01 1.448689e+01 moveto +7.188809e+01 1.204666e+01 lineto +7.056792e+01 1.211175e+01 lineto +7.158792e+01 1.456391e+01 lineto +7.314992e+01 1.448689e+01 lineto +closepath +gsave +5.647094e-01 5.647094e-01 5.647094e-01 setrgbcolor +fill +grestore +newpath +7.314992e+01 1.448689e+01 moveto +7.188809e+01 1.204666e+01 lineto +7.056792e+01 1.211175e+01 lineto +7.158792e+01 1.456391e+01 lineto +7.314992e+01 1.448689e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.435005e+01 1.716568e+01 moveto +7.314992e+01 1.448689e+01 lineto +7.158792e+01 1.456391e+01 lineto +7.255804e+01 1.725404e+01 lineto +7.435005e+01 1.716568e+01 lineto +closepath +gsave +5.743562e-01 5.743562e-01 5.743562e-01 setrgbcolor +fill +grestore +newpath +7.435005e+01 1.716568e+01 moveto +7.314992e+01 1.448689e+01 lineto +7.158792e+01 1.456391e+01 lineto +7.255804e+01 1.725404e+01 lineto +7.435005e+01 1.716568e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.547941e+01 2.006276e+01 moveto +7.435005e+01 1.716568e+01 lineto +7.255804e+01 1.725404e+01 lineto +7.347094e+01 2.01618e+01 lineto +7.547941e+01 2.006276e+01 lineto +closepath +gsave +5.829743e-01 5.829743e-01 5.829743e-01 setrgbcolor +fill +grestore +newpath +7.547941e+01 2.006276e+01 moveto +7.435005e+01 1.716568e+01 lineto +7.255804e+01 1.725404e+01 lineto +7.347094e+01 2.01618e+01 lineto +7.547941e+01 2.006276e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.652942e+01 2.31562e+01 moveto +7.547941e+01 2.006276e+01 lineto +7.347094e+01 2.01618e+01 lineto +7.431971e+01 2.326516e+01 lineto +7.652942e+01 2.31562e+01 lineto +closepath +gsave +5.903682e-01 5.903682e-01 5.903682e-01 setrgbcolor +fill +grestore +newpath +7.652942e+01 2.31562e+01 moveto +7.547941e+01 2.006276e+01 lineto +7.347094e+01 2.01618e+01 lineto +7.431971e+01 2.326516e+01 lineto +7.652942e+01 2.31562e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.749216e+01 2.642258e+01 moveto +7.652942e+01 2.31562e+01 lineto +7.431971e+01 2.326516e+01 lineto +7.509793e+01 2.654063e+01 lineto +7.749216e+01 2.642258e+01 lineto +closepath +gsave +5.963661e-01 5.963661e-01 5.963661e-01 setrgbcolor +fill +grestore +newpath +7.749216e+01 2.642258e+01 moveto +7.652942e+01 2.31562e+01 lineto +7.431971e+01 2.326516e+01 lineto +7.509793e+01 2.654063e+01 lineto +7.749216e+01 2.642258e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.836032e+01 2.983717e+01 moveto +7.749216e+01 2.642258e+01 lineto +7.509793e+01 2.654063e+01 lineto +7.57997e+01 2.996343e+01 lineto +7.836032e+01 2.983717e+01 lineto +closepath +gsave +6.008259e-01 6.008259e-01 6.008259e-01 setrgbcolor +fill +grestore +newpath +7.836032e+01 2.983717e+01 moveto +7.749216e+01 2.642258e+01 lineto +7.509793e+01 2.654063e+01 lineto +7.57997e+01 2.996343e+01 lineto +7.836032e+01 2.983717e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.912734e+01 3.337411e+01 moveto +7.836032e+01 2.983717e+01 lineto +7.57997e+01 2.996343e+01 lineto +7.641971e+01 3.350762e+01 lineto +7.912734e+01 3.337411e+01 lineto +closepath +gsave +6.036406e-01 6.036406e-01 6.036406e-01 setrgbcolor +fill +grestore +newpath +7.912734e+01 3.337411e+01 moveto +7.836032e+01 2.983717e+01 lineto +7.57997e+01 2.996343e+01 lineto +7.641971e+01 3.350762e+01 lineto +7.912734e+01 3.337411e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.978741e+01 3.700664e+01 moveto +7.912734e+01 3.337411e+01 lineto +7.641971e+01 3.350762e+01 lineto +7.695328e+01 3.714639e+01 lineto +7.978741e+01 3.700664e+01 lineto +closepath +gsave +6.047424e-01 6.047424e-01 6.047424e-01 setrgbcolor +fill +grestore +newpath +7.978741e+01 3.700664e+01 moveto +7.912734e+01 3.337411e+01 lineto +7.641971e+01 3.350762e+01 lineto +7.695328e+01 3.714639e+01 lineto +7.978741e+01 3.700664e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.033554e+01 4.070726e+01 moveto +7.978741e+01 3.700664e+01 lineto +7.695328e+01 3.714639e+01 lineto +7.739635e+01 4.085218e+01 lineto +8.033554e+01 4.070726e+01 lineto +closepath +gsave +6.041049e-01 6.041049e-01 6.041049e-01 setrgbcolor +fill +grestore +newpath +8.033554e+01 4.070726e+01 moveto +7.978741e+01 3.700664e+01 lineto +7.695328e+01 3.714639e+01 lineto +7.739635e+01 4.085218e+01 lineto +8.033554e+01 4.070726e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.076756e+01 4.444794e+01 moveto +8.033554e+01 4.070726e+01 lineto +7.739635e+01 4.085218e+01 lineto +7.774557e+01 4.459695e+01 lineto +8.076756e+01 4.444794e+01 lineto +closepath +gsave +6.017442e-01 6.017442e-01 6.017442e-01 setrgbcolor +fill +grestore +newpath +8.076756e+01 4.444794e+01 moveto +8.033554e+01 4.070726e+01 lineto +7.739635e+01 4.085218e+01 lineto +7.774557e+01 4.459695e+01 lineto +8.076756e+01 4.444794e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.108022e+01 4.820037e+01 moveto +8.076756e+01 4.444794e+01 lineto +7.774557e+01 4.459695e+01 lineto +7.799831e+01 4.835233e+01 lineto +8.108022e+01 4.820037e+01 lineto +closepath +gsave +5.977183e-01 5.977183e-01 5.977183e-01 setrgbcolor +fill +grestore +newpath +8.108022e+01 4.820037e+01 moveto +8.076756e+01 4.444794e+01 lineto +7.774557e+01 4.459695e+01 lineto +7.799831e+01 4.835233e+01 lineto +8.108022e+01 4.820037e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.127115e+01 5.193614e+01 moveto +8.108022e+01 4.820037e+01 lineto +7.799831e+01 4.835233e+01 lineto +7.815264e+01 5.208991e+01 lineto +8.127115e+01 5.193614e+01 lineto +closepath +gsave +5.921247e-01 5.921247e-01 5.921247e-01 setrgbcolor +fill +grestore +newpath +8.127115e+01 5.193614e+01 moveto +8.108022e+01 4.820037e+01 lineto +7.799831e+01 4.835233e+01 lineto +7.815264e+01 5.208991e+01 lineto +8.127115e+01 5.193614e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.133889e+01 5.562698e+01 moveto +8.127115e+01 5.193614e+01 lineto +7.815264e+01 5.208991e+01 lineto +7.82074e+01 5.578139e+01 lineto +8.133889e+01 5.562698e+01 lineto +closepath +gsave +5.850971e-01 5.850971e-01 5.850971e-01 setrgbcolor +fill +grestore +newpath +8.133889e+01 5.562698e+01 moveto +8.127115e+01 5.193614e+01 lineto +7.815264e+01 5.208991e+01 lineto +7.82074e+01 5.578139e+01 lineto +8.133889e+01 5.562698e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.128294e+01 5.924493e+01 moveto +8.133889e+01 5.562698e+01 lineto +7.82074e+01 5.578139e+01 lineto +7.816217e+01 5.939881e+01 lineto +8.128294e+01 5.924493e+01 lineto +closepath +gsave +5.767997e-01 5.767997e-01 5.767997e-01 setrgbcolor +fill +grestore +newpath +8.128294e+01 5.924493e+01 moveto +8.133889e+01 5.562698e+01 lineto +7.82074e+01 5.578139e+01 lineto +7.816217e+01 5.939881e+01 lineto +8.128294e+01 5.924493e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.110373e+01 6.276262e+01 moveto +8.128294e+01 5.924493e+01 lineto +7.816217e+01 5.939881e+01 lineto +7.801731e+01 6.29148e+01 lineto +8.110373e+01 6.276262e+01 lineto +closepath +gsave +5.67422e-01 5.67422e-01 5.67422e-01 setrgbcolor +fill +grestore +newpath +8.110373e+01 6.276262e+01 moveto +8.128294e+01 5.924493e+01 lineto +7.816217e+01 5.939881e+01 lineto +7.801731e+01 6.29148e+01 lineto +8.110373e+01 6.276262e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.08026e+01 6.61534e+01 moveto +8.110373e+01 6.276262e+01 lineto +7.801731e+01 6.29148e+01 lineto +7.777389e+01 6.630274e+01 lineto +8.08026e+01 6.61534e+01 lineto +closepath +gsave +5.571716e-01 5.571716e-01 5.571716e-01 setrgbcolor +fill +grestore +newpath +8.08026e+01 6.61534e+01 moveto +8.110373e+01 6.276262e+01 lineto +7.801731e+01 6.29148e+01 lineto +7.777389e+01 6.630274e+01 lineto +8.08026e+01 6.61534e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.038183e+01 6.939161e+01 moveto +8.08026e+01 6.61534e+01 lineto +7.777389e+01 6.630274e+01 lineto +7.743377e+01 6.953698e+01 lineto +8.038183e+01 6.939161e+01 lineto +closepath +gsave +5.462668e-01 5.462668e-01 5.462668e-01 setrgbcolor +fill +grestore +newpath +8.038183e+01 6.939161e+01 moveto +8.08026e+01 6.61534e+01 lineto +7.777389e+01 6.630274e+01 lineto +7.743377e+01 6.953698e+01 lineto +8.038183e+01 6.939161e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.984463e+01 7.245274e+01 moveto +8.038183e+01 6.939161e+01 lineto +7.743377e+01 6.953698e+01 lineto +7.699952e+01 7.259303e+01 lineto +7.984463e+01 7.245274e+01 lineto +closepath +gsave +5.349298e-01 5.349298e-01 5.349298e-01 setrgbcolor +fill +grestore +newpath +7.984463e+01 7.245274e+01 moveto +8.038183e+01 6.939161e+01 lineto +7.743377e+01 6.953698e+01 lineto +7.699952e+01 7.259303e+01 lineto +7.984463e+01 7.245274e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.919504e+01 7.531361e+01 moveto +7.984463e+01 7.245274e+01 lineto +7.699952e+01 7.259303e+01 lineto +7.647443e+01 7.544776e+01 lineto +7.919504e+01 7.531361e+01 lineto +closepath +gsave +5.23379e-01 5.23379e-01 5.23379e-01 setrgbcolor +fill +grestore +newpath +7.919504e+01 7.531361e+01 moveto +7.984463e+01 7.245274e+01 lineto +7.699952e+01 7.259303e+01 lineto +7.647443e+01 7.544776e+01 lineto +7.919504e+01 7.531361e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.843798e+01 7.795257e+01 moveto +7.919504e+01 7.531361e+01 lineto +7.647443e+01 7.544776e+01 lineto +7.586248e+01 7.807956e+01 lineto +7.843798e+01 7.795257e+01 lineto +closepath +gsave +5.118228e-01 5.118228e-01 5.118228e-01 setrgbcolor +fill +grestore +newpath +7.843798e+01 7.795257e+01 moveto +7.919504e+01 7.531361e+01 lineto +7.647443e+01 7.544776e+01 lineto +7.586248e+01 7.807956e+01 lineto +7.843798e+01 7.795257e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.75792e+01 8.034962e+01 moveto +7.843798e+01 7.795257e+01 lineto +7.586248e+01 7.807956e+01 lineto +7.516829e+01 8.04685e+01 lineto +7.75792e+01 8.034962e+01 lineto +closepath +gsave +5.004533e-01 5.004533e-01 5.004533e-01 setrgbcolor +fill +grestore +newpath +7.75792e+01 8.034962e+01 moveto +7.843798e+01 7.795257e+01 lineto +7.586248e+01 7.807956e+01 lineto +7.516829e+01 8.04685e+01 lineto +7.75792e+01 8.034962e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.662519e+01 8.248664e+01 moveto +7.75792e+01 8.034962e+01 lineto +7.516829e+01 8.04685e+01 lineto +7.439712e+01 8.25965e+01 lineto +7.662519e+01 8.248664e+01 lineto +closepath +gsave +4.894419e-01 4.894419e-01 4.894419e-01 setrgbcolor +fill +grestore +newpath +7.662519e+01 8.248664e+01 moveto +7.75792e+01 8.034962e+01 lineto +7.516829e+01 8.04685e+01 lineto +7.439712e+01 8.25965e+01 lineto +7.662519e+01 8.248664e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.558317e+01 8.434744e+01 moveto +7.662519e+01 8.248664e+01 lineto +7.439712e+01 8.25965e+01 lineto +7.355481e+01 8.444745e+01 lineto +7.558317e+01 8.434744e+01 lineto +closepath +gsave +4.78935e-01 4.78935e-01 4.78935e-01 setrgbcolor +fill +grestore +newpath +7.558317e+01 8.434744e+01 moveto +7.662519e+01 8.248664e+01 lineto +7.439712e+01 8.25965e+01 lineto +7.355481e+01 8.444745e+01 lineto +7.558317e+01 8.434744e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.446103e+01 8.591793e+01 moveto +7.558317e+01 8.434744e+01 lineto +7.355481e+01 8.444745e+01 lineto +7.264774e+01 8.600734e+01 lineto +7.446103e+01 8.591793e+01 lineto +closepath +gsave +4.690519e-01 4.690519e-01 4.690519e-01 setrgbcolor +fill +grestore +newpath +7.446103e+01 8.591793e+01 moveto +7.558317e+01 8.434744e+01 lineto +7.355481e+01 8.444745e+01 lineto +7.264774e+01 8.600734e+01 lineto +7.446103e+01 8.591793e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.326726e+01 8.718622e+01 moveto +7.446103e+01 8.591793e+01 lineto +7.264774e+01 8.600734e+01 lineto +7.168277e+01 8.726435e+01 lineto +7.326726e+01 8.718622e+01 lineto +closepath +gsave +4.598834e-01 4.598834e-01 4.598834e-01 setrgbcolor +fill +grestore +newpath +7.326726e+01 8.718622e+01 moveto +7.446103e+01 8.591793e+01 lineto +7.264774e+01 8.600734e+01 lineto +7.168277e+01 8.726435e+01 lineto +7.326726e+01 8.718622e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.201091e+01 8.814272e+01 moveto +7.326726e+01 8.718622e+01 lineto +7.168277e+01 8.726435e+01 lineto +7.066721e+01 8.820897e+01 lineto +7.201091e+01 8.814272e+01 lineto +closepath +gsave +4.514919e-01 4.514919e-01 4.514919e-01 setrgbcolor +fill +grestore +newpath +7.201091e+01 8.814272e+01 moveto +7.326726e+01 8.718622e+01 lineto +7.168277e+01 8.726435e+01 lineto +7.066721e+01 8.820897e+01 lineto +7.201091e+01 8.814272e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.070148e+01 8.878017e+01 moveto +7.201091e+01 8.814272e+01 lineto +7.066721e+01 8.820897e+01 lineto +6.960874e+01 8.883405e+01 lineto +7.070148e+01 8.878017e+01 lineto +closepath +gsave +4.439123e-01 4.439123e-01 4.439123e-01 setrgbcolor +fill +grestore +newpath +7.070148e+01 8.878017e+01 moveto +7.201091e+01 8.814272e+01 lineto +7.066721e+01 8.820897e+01 lineto +6.960874e+01 8.883405e+01 lineto +7.070148e+01 8.878017e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.934889e+01 8.909377e+01 moveto +7.070148e+01 8.878017e+01 lineto +6.960874e+01 8.883405e+01 lineto +6.851539e+01 8.913486e+01 lineto +6.934889e+01 8.909377e+01 lineto +closepath +gsave +4.371545e-01 4.371545e-01 4.371545e-01 setrgbcolor +fill +grestore +newpath +6.934889e+01 8.909377e+01 moveto +7.070148e+01 8.878017e+01 lineto +6.960874e+01 8.883405e+01 lineto +6.851539e+01 8.913486e+01 lineto +6.934889e+01 8.909377e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.230394e+01 8.580696e+01 moveto +6.371496e+01 8.709903e+01 lineto +6.396125e+01 8.708689e+01 lineto +6.282066e+01 8.578148e+01 lineto +6.230394e+01 8.580696e+01 lineto +closepath +gsave +5.190628e-01 5.190628e-01 5.190628e-01 setrgbcolor +fill +grestore +newpath +6.230394e+01 8.580696e+01 moveto +6.371496e+01 8.709903e+01 lineto +6.396125e+01 8.708689e+01 lineto +6.282066e+01 8.578148e+01 lineto +6.230394e+01 8.580696e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.091333e+01 8.421354e+01 moveto +6.230394e+01 8.580696e+01 lineto +6.282066e+01 8.578148e+01 lineto +6.169658e+01 8.417492e+01 lineto +6.091333e+01 8.421354e+01 lineto +closepath +gsave +5.30653e-01 5.30653e-01 5.30653e-01 setrgbcolor +fill +grestore +newpath +6.091333e+01 8.421354e+01 moveto +6.230394e+01 8.580696e+01 lineto +6.282066e+01 8.578148e+01 lineto +6.169658e+01 8.417492e+01 lineto +6.091333e+01 8.421354e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.955366e+01 8.233082e+01 moveto +6.091333e+01 8.421354e+01 lineto +6.169658e+01 8.417492e+01 lineto +6.05975e+01 8.227935e+01 lineto +5.955366e+01 8.233082e+01 lineto +closepath +gsave +5.421085e-01 5.421085e-01 5.421085e-01 setrgbcolor +fill +grestore +newpath +5.955366e+01 8.233082e+01 moveto +6.091333e+01 8.421354e+01 lineto +6.169658e+01 8.417492e+01 lineto +6.05975e+01 8.227935e+01 lineto +5.955366e+01 8.233082e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.614807e+01 5.024405e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.586879e+01 5.032491e+00 lineto +6.614807e+01 5.024405e+00 lineto +closepath +gsave +5.093043e-01 5.093043e-01 5.093043e-01 setrgbcolor +fill +grestore +newpath +6.614807e+01 5.024405e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.586879e+01 5.032491e+00 lineto +6.614807e+01 5.024405e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.728746e+01 6.359012e+00 moveto +6.614807e+01 5.024405e+00 lineto +6.586879e+01 5.032491e+00 lineto +6.6731e+01 6.375124e+00 lineto +6.728746e+01 6.359012e+00 lineto +closepath +gsave +5.223251e-01 5.223251e-01 5.223251e-01 setrgbcolor +fill +grestore +newpath +6.728746e+01 6.359012e+00 moveto +6.614807e+01 5.024405e+00 lineto +6.586879e+01 5.032491e+00 lineto +6.6731e+01 6.375124e+00 lineto +6.728746e+01 6.359012e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.840952e+01 7.99372e+00 moveto +6.728746e+01 6.359012e+00 lineto +6.6731e+01 6.375124e+00 lineto +6.75801e+01 8.017735e+00 lineto +6.840952e+01 7.99372e+00 lineto +closepath +gsave +5.355706e-01 5.355706e-01 5.355706e-01 setrgbcolor +fill +grestore +newpath +6.840952e+01 7.99372e+00 moveto +6.728746e+01 6.359012e+00 lineto +6.6731e+01 6.375124e+00 lineto +6.75801e+01 8.017735e+00 lineto +6.840952e+01 7.99372e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.950578e+01 9.916152e+00 moveto +6.840952e+01 7.99372e+00 lineto +6.75801e+01 8.017735e+00 lineto +6.840967e+01 9.947889e+00 lineto +6.950578e+01 9.916152e+00 lineto +closepath +gsave +5.488086e-01 5.488086e-01 5.488086e-01 setrgbcolor +fill +grestore +newpath +6.950578e+01 9.916152e+00 moveto +6.840952e+01 7.99372e+00 lineto +6.75801e+01 8.017735e+00 lineto +6.840967e+01 9.947889e+00 lineto +6.950578e+01 9.916152e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.056792e+01 1.211175e+01 moveto +6.950578e+01 9.916152e+00 lineto +6.840967e+01 9.947889e+00 lineto +6.921343e+01 1.215097e+01 lineto +7.056792e+01 1.211175e+01 lineto +closepath +gsave +5.617874e-01 5.617874e-01 5.617874e-01 setrgbcolor +fill +grestore +newpath +7.056792e+01 1.211175e+01 moveto +6.950578e+01 9.916152e+00 lineto +6.840967e+01 9.947889e+00 lineto +6.921343e+01 1.215097e+01 lineto +7.056792e+01 1.211175e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.158792e+01 1.456391e+01 moveto +7.056792e+01 1.211175e+01 lineto +6.921343e+01 1.215097e+01 lineto +6.99853e+01 1.461031e+01 lineto +7.158792e+01 1.456391e+01 lineto +closepath +gsave +5.742436e-01 5.742436e-01 5.742436e-01 setrgbcolor +fill +grestore +newpath +7.158792e+01 1.456391e+01 moveto +7.056792e+01 1.211175e+01 lineto +6.921343e+01 1.215097e+01 lineto +6.99853e+01 1.461031e+01 lineto +7.158792e+01 1.456391e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.255804e+01 1.725404e+01 moveto +7.158792e+01 1.456391e+01 lineto +6.99853e+01 1.461031e+01 lineto +7.071942e+01 1.730728e+01 lineto +7.255804e+01 1.725404e+01 lineto +closepath +gsave +5.859106e-01 5.859106e-01 5.859106e-01 setrgbcolor +fill +grestore +newpath +7.255804e+01 1.725404e+01 moveto +7.158792e+01 1.456391e+01 lineto +6.99853e+01 1.461031e+01 lineto +7.071942e+01 1.730728e+01 lineto +7.255804e+01 1.725404e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.347094e+01 2.01618e+01 moveto +7.255804e+01 1.725404e+01 lineto +7.071942e+01 1.730728e+01 lineto +7.141024e+01 2.022146e+01 lineto +7.347094e+01 2.01618e+01 lineto +closepath +gsave +5.965272e-01 5.965272e-01 5.965272e-01 setrgbcolor +fill +grestore +newpath +7.347094e+01 2.01618e+01 moveto +7.255804e+01 1.725404e+01 lineto +7.071942e+01 1.730728e+01 lineto +7.141024e+01 2.022146e+01 lineto +7.347094e+01 2.01618e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.431971e+01 2.326516e+01 moveto +7.347094e+01 2.01618e+01 lineto +7.141024e+01 2.022146e+01 lineto +7.205254e+01 2.33308e+01 lineto +7.431971e+01 2.326516e+01 lineto +closepath +gsave +6.058474e-01 6.058474e-01 6.058474e-01 setrgbcolor +fill +grestore +newpath +7.431971e+01 2.326516e+01 moveto +7.347094e+01 2.01618e+01 lineto +7.141024e+01 2.022146e+01 lineto +7.205254e+01 2.33308e+01 lineto +7.431971e+01 2.326516e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.509793e+01 2.654063e+01 moveto +7.431971e+01 2.326516e+01 lineto +7.205254e+01 2.33308e+01 lineto +7.264144e+01 2.661176e+01 lineto +7.509793e+01 2.654063e+01 lineto +closepath +gsave +6.136489e-01 6.136489e-01 6.136489e-01 setrgbcolor +fill +grestore +newpath +7.509793e+01 2.654063e+01 moveto +7.431971e+01 2.326516e+01 lineto +7.205254e+01 2.33308e+01 lineto +7.264144e+01 2.661176e+01 lineto +7.509793e+01 2.654063e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.57997e+01 2.996343e+01 moveto +7.509793e+01 2.654063e+01 lineto +7.264144e+01 2.661176e+01 lineto +7.317249e+01 3.003949e+01 lineto +7.57997e+01 2.996343e+01 lineto +closepath +gsave +6.197417e-01 6.197417e-01 6.197417e-01 setrgbcolor +fill +grestore +newpath +7.57997e+01 2.996343e+01 moveto +7.509793e+01 2.654063e+01 lineto +7.264144e+01 2.661176e+01 lineto +7.317249e+01 3.003949e+01 lineto +7.57997e+01 2.996343e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.641971e+01 3.350762e+01 moveto +7.57997e+01 2.996343e+01 lineto +7.317249e+01 3.003949e+01 lineto +7.364168e+01 3.358806e+01 lineto +7.641971e+01 3.350762e+01 lineto +closepath +gsave +6.239748e-01 6.239748e-01 6.239748e-01 setrgbcolor +fill +grestore +newpath +7.641971e+01 3.350762e+01 moveto +7.57997e+01 2.996343e+01 lineto +7.317249e+01 3.003949e+01 lineto +7.364168e+01 3.358806e+01 lineto +7.641971e+01 3.350762e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.695328e+01 3.714639e+01 moveto +7.641971e+01 3.350762e+01 lineto +7.364168e+01 3.358806e+01 lineto +7.404544e+01 3.723058e+01 lineto +7.695328e+01 3.714639e+01 lineto +closepath +gsave +6.262423e-01 6.262423e-01 6.262423e-01 setrgbcolor +fill +grestore +newpath +7.695328e+01 3.714639e+01 moveto +7.641971e+01 3.350762e+01 lineto +7.364168e+01 3.358806e+01 lineto +7.404544e+01 3.723058e+01 lineto +7.695328e+01 3.714639e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.739635e+01 4.085218e+01 moveto +7.695328e+01 3.714639e+01 lineto +7.404544e+01 3.723058e+01 lineto +7.438073e+01 4.09395e+01 lineto +7.739635e+01 4.085218e+01 lineto +closepath +gsave +6.264875e-01 6.264875e-01 6.264875e-01 setrgbcolor +fill +grestore +newpath +7.739635e+01 4.085218e+01 moveto +7.695328e+01 3.714639e+01 lineto +7.404544e+01 3.723058e+01 lineto +7.438073e+01 4.09395e+01 lineto +7.739635e+01 4.085218e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.774557e+01 4.459695e+01 moveto +7.739635e+01 4.085218e+01 lineto +7.438073e+01 4.09395e+01 lineto +7.4645e+01 4.468672e+01 lineto +7.774557e+01 4.459695e+01 lineto +closepath +gsave +6.247048e-01 6.247048e-01 6.247048e-01 setrgbcolor +fill +grestore +newpath +7.774557e+01 4.459695e+01 moveto +7.739635e+01 4.085218e+01 lineto +7.438073e+01 4.09395e+01 lineto +7.4645e+01 4.468672e+01 lineto +7.774557e+01 4.459695e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.799831e+01 4.835233e+01 moveto +7.774557e+01 4.459695e+01 lineto +7.4645e+01 4.468672e+01 lineto +7.483625e+01 4.844389e+01 lineto +7.799831e+01 4.835233e+01 lineto +closepath +gsave +6.209398e-01 6.209398e-01 6.209398e-01 setrgbcolor +fill +grestore +newpath +7.799831e+01 4.835233e+01 moveto +7.774557e+01 4.459695e+01 lineto +7.4645e+01 4.468672e+01 lineto +7.483625e+01 4.844389e+01 lineto +7.799831e+01 4.835233e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.815264e+01 5.208991e+01 moveto +7.799831e+01 4.835233e+01 lineto +7.483625e+01 4.844389e+01 lineto +7.495304e+01 5.218255e+01 lineto +7.815264e+01 5.208991e+01 lineto +closepath +gsave +6.152879e-01 6.152879e-01 6.152879e-01 setrgbcolor +fill +grestore +newpath +7.815264e+01 5.208991e+01 moveto +7.799831e+01 4.835233e+01 lineto +7.483625e+01 4.844389e+01 lineto +7.495304e+01 5.218255e+01 lineto +7.815264e+01 5.208991e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.82074e+01 5.578139e+01 moveto +7.815264e+01 5.208991e+01 lineto +7.495304e+01 5.218255e+01 lineto +7.499448e+01 5.587441e+01 lineto +7.82074e+01 5.578139e+01 lineto +closepath +gsave +6.078902e-01 6.078902e-01 6.078902e-01 setrgbcolor +fill +grestore +newpath +7.82074e+01 5.578139e+01 moveto +7.815264e+01 5.208991e+01 lineto +7.495304e+01 5.218255e+01 lineto +7.499448e+01 5.587441e+01 lineto +7.82074e+01 5.578139e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.816217e+01 5.939881e+01 moveto +7.82074e+01 5.578139e+01 lineto +7.499448e+01 5.587441e+01 lineto +7.496026e+01 5.949152e+01 lineto +7.816217e+01 5.939881e+01 lineto +closepath +gsave +5.98928e-01 5.98928e-01 5.98928e-01 setrgbcolor +fill +grestore +newpath +7.816217e+01 5.939881e+01 moveto +7.82074e+01 5.578139e+01 lineto +7.499448e+01 5.587441e+01 lineto +7.496026e+01 5.949152e+01 lineto +7.816217e+01 5.939881e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.801731e+01 6.29148e+01 moveto +7.816217e+01 5.939881e+01 lineto +7.496026e+01 5.949152e+01 lineto +7.485063e+01 6.300649e+01 lineto +7.801731e+01 6.29148e+01 lineto +closepath +gsave +5.886164e-01 5.886164e-01 5.886164e-01 setrgbcolor +fill +grestore +newpath +7.801731e+01 6.29148e+01 moveto +7.816217e+01 5.939881e+01 lineto +7.496026e+01 5.949152e+01 lineto +7.485063e+01 6.300649e+01 lineto +7.801731e+01 6.29148e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.777389e+01 6.630274e+01 moveto +7.801731e+01 6.29148e+01 lineto +7.485063e+01 6.300649e+01 lineto +7.466643e+01 6.639271e+01 lineto +7.777389e+01 6.630274e+01 lineto +closepath +gsave +5.771958e-01 5.771958e-01 5.771958e-01 setrgbcolor +fill +grestore +newpath +7.777389e+01 6.630274e+01 moveto +7.801731e+01 6.29148e+01 lineto +7.485063e+01 6.300649e+01 lineto +7.466643e+01 6.639271e+01 lineto +7.777389e+01 6.630274e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.743377e+01 6.953698e+01 moveto +7.777389e+01 6.630274e+01 lineto +7.466643e+01 6.639271e+01 lineto +7.440905e+01 6.962456e+01 lineto +7.743377e+01 6.953698e+01 lineto +closepath +gsave +5.649234e-01 5.649234e-01 5.649234e-01 setrgbcolor +fill +grestore +newpath +7.743377e+01 6.953698e+01 moveto +7.777389e+01 6.630274e+01 lineto +7.466643e+01 6.639271e+01 lineto +7.440905e+01 6.962456e+01 lineto +7.743377e+01 6.953698e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.699952e+01 7.259303e+01 moveto +7.743377e+01 6.953698e+01 lineto +7.440905e+01 6.962456e+01 lineto +7.408044e+01 7.267755e+01 lineto +7.699952e+01 7.259303e+01 lineto +closepath +gsave +5.520641e-01 5.520641e-01 5.520641e-01 setrgbcolor +fill +grestore +newpath +7.699952e+01 7.259303e+01 moveto +7.743377e+01 6.953698e+01 lineto +7.440905e+01 6.962456e+01 lineto +7.408044e+01 7.267755e+01 lineto +7.699952e+01 7.259303e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.647443e+01 7.544776e+01 moveto +7.699952e+01 7.259303e+01 lineto +7.408044e+01 7.267755e+01 lineto +7.368309e+01 7.552858e+01 lineto +7.647443e+01 7.544776e+01 lineto +closepath +gsave +5.388817e-01 5.388817e-01 5.388817e-01 setrgbcolor +fill +grestore +newpath +7.647443e+01 7.544776e+01 moveto +7.699952e+01 7.259303e+01 lineto +7.408044e+01 7.267755e+01 lineto +7.368309e+01 7.552858e+01 lineto +7.647443e+01 7.544776e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.586248e+01 7.807956e+01 moveto +7.647443e+01 7.544776e+01 lineto +7.368309e+01 7.552858e+01 lineto +7.322e+01 7.815607e+01 lineto +7.586248e+01 7.807956e+01 lineto +closepath +gsave +5.2563e-01 5.2563e-01 5.2563e-01 setrgbcolor +fill +grestore +newpath +7.586248e+01 7.807956e+01 moveto +7.647443e+01 7.544776e+01 lineto +7.368309e+01 7.552858e+01 lineto +7.322e+01 7.815607e+01 lineto +7.586248e+01 7.807956e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.516829e+01 8.04685e+01 moveto +7.586248e+01 7.807956e+01 lineto +7.322e+01 7.815607e+01 lineto +7.269468e+01 8.054012e+01 lineto +7.516829e+01 8.04685e+01 lineto +closepath +gsave +5.125457e-01 5.125457e-01 5.125457e-01 setrgbcolor +fill +grestore +newpath +7.516829e+01 8.04685e+01 moveto +7.586248e+01 7.807956e+01 lineto +7.322e+01 7.815607e+01 lineto +7.269468e+01 8.054012e+01 lineto +7.516829e+01 8.04685e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.439712e+01 8.25965e+01 moveto +7.516829e+01 8.04685e+01 lineto +7.269468e+01 8.054012e+01 lineto +7.211111e+01 8.266269e+01 lineto +7.439712e+01 8.25965e+01 lineto +closepath +gsave +4.998414e-01 4.998414e-01 4.998414e-01 setrgbcolor +fill +grestore +newpath +7.439712e+01 8.25965e+01 moveto +7.516829e+01 8.04685e+01 lineto +7.269468e+01 8.054012e+01 lineto +7.211111e+01 8.266269e+01 lineto +7.439712e+01 8.25965e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.355481e+01 8.444745e+01 moveto +7.439712e+01 8.25965e+01 lineto +7.211111e+01 8.266269e+01 lineto +7.147371e+01 8.450771e+01 lineto +7.355481e+01 8.444745e+01 lineto +closepath +gsave +4.877007e-01 4.877007e-01 4.877007e-01 setrgbcolor +fill +grestore +newpath +7.355481e+01 8.444745e+01 moveto +7.439712e+01 8.25965e+01 lineto +7.211111e+01 8.266269e+01 lineto +7.147371e+01 8.450771e+01 lineto +7.355481e+01 8.444745e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.264774e+01 8.600734e+01 moveto +7.355481e+01 8.444745e+01 lineto +7.147371e+01 8.450771e+01 lineto +7.07873e+01 8.606121e+01 lineto +7.264774e+01 8.600734e+01 lineto +closepath +gsave +4.762746e-01 4.762746e-01 4.762746e-01 setrgbcolor +fill +grestore +newpath +7.264774e+01 8.600734e+01 moveto +7.355481e+01 8.444745e+01 lineto +7.147371e+01 8.450771e+01 lineto +7.07873e+01 8.606121e+01 lineto +7.264774e+01 8.600734e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.168277e+01 8.726435e+01 moveto +7.264774e+01 8.600734e+01 lineto +7.07873e+01 8.606121e+01 lineto +7.005707e+01 8.731142e+01 lineto +7.168277e+01 8.726435e+01 lineto +closepath +gsave +4.656791e-01 4.656791e-01 4.656791e-01 setrgbcolor +fill +grestore +newpath +7.168277e+01 8.726435e+01 moveto +7.264774e+01 8.600734e+01 lineto +7.07873e+01 8.606121e+01 lineto +7.005707e+01 8.731142e+01 lineto +7.168277e+01 8.726435e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.066721e+01 8.820897e+01 moveto +7.168277e+01 8.726435e+01 lineto +7.005707e+01 8.731142e+01 lineto +6.928857e+01 8.824889e+01 lineto +7.066721e+01 8.820897e+01 lineto +closepath +gsave +4.559955e-01 4.559955e-01 4.559955e-01 setrgbcolor +fill +grestore +newpath +7.066721e+01 8.820897e+01 moveto +7.168277e+01 8.726435e+01 lineto +7.005707e+01 8.731142e+01 lineto +6.928857e+01 8.824889e+01 lineto +7.066721e+01 8.820897e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.960874e+01 8.883405e+01 moveto +7.066721e+01 8.820897e+01 lineto +6.928857e+01 8.824889e+01 lineto +6.848759e+01 8.886652e+01 lineto +6.960874e+01 8.883405e+01 lineto +closepath +gsave +4.472708e-01 4.472708e-01 4.472708e-01 setrgbcolor +fill +grestore +newpath +6.960874e+01 8.883405e+01 moveto +7.066721e+01 8.820897e+01 lineto +6.928857e+01 8.824889e+01 lineto +6.848759e+01 8.886652e+01 lineto +6.960874e+01 8.883405e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.851539e+01 8.913486e+01 moveto +6.960874e+01 8.883405e+01 lineto +6.848759e+01 8.886652e+01 lineto +6.766021e+01 8.915963e+01 lineto +6.851539e+01 8.913486e+01 lineto +closepath +gsave +4.395203e-01 4.395203e-01 4.395203e-01 setrgbcolor +fill +grestore +newpath +6.851539e+01 8.913486e+01 moveto +6.960874e+01 8.883405e+01 lineto +6.848759e+01 8.886652e+01 lineto +6.766021e+01 8.915963e+01 lineto +6.851539e+01 8.913486e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.282066e+01 8.578148e+01 moveto +6.396125e+01 8.708689e+01 lineto +6.421394e+01 8.707957e+01 lineto +6.335082e+01 8.576613e+01 lineto +6.282066e+01 8.578148e+01 lineto +closepath +gsave +5.210693e-01 5.210693e-01 5.210693e-01 setrgbcolor +fill +grestore +newpath +6.282066e+01 8.578148e+01 moveto +6.396125e+01 8.708689e+01 lineto +6.421394e+01 8.707957e+01 lineto +6.335082e+01 8.576613e+01 lineto +6.282066e+01 8.578148e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.169658e+01 8.417492e+01 moveto +6.282066e+01 8.578148e+01 lineto +6.335082e+01 8.576613e+01 lineto +6.250019e+01 8.415165e+01 lineto +6.169658e+01 8.417492e+01 lineto +closepath +gsave +5.34303e-01 5.34303e-01 5.34303e-01 setrgbcolor +fill +grestore +newpath +6.169658e+01 8.417492e+01 moveto +6.282066e+01 8.578148e+01 lineto +6.335082e+01 8.576613e+01 lineto +6.250019e+01 8.415165e+01 lineto +6.169658e+01 8.417492e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.05975e+01 8.227935e+01 moveto +6.169658e+01 8.417492e+01 lineto +6.250019e+01 8.415165e+01 lineto +6.166848e+01 8.224834e+01 lineto +6.05975e+01 8.227935e+01 lineto +closepath +gsave +5.475524e-01 5.475524e-01 5.475524e-01 setrgbcolor +fill +grestore +newpath +6.05975e+01 8.227935e+01 moveto +6.169658e+01 8.417492e+01 lineto +6.250019e+01 8.415165e+01 lineto +6.166848e+01 8.224834e+01 lineto +6.05975e+01 8.227935e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.586879e+01 5.032491e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.558414e+01 5.035192e+00 lineto +6.586879e+01 5.032491e+00 lineto +closepath +gsave +5.099375e-01 5.099375e-01 5.099375e-01 setrgbcolor +fill +grestore +newpath +6.586879e+01 5.032491e+00 moveto +6.5e+01 4.0e+00 lineto +6.5e+01 4.0e+00 lineto +6.558414e+01 5.035192e+00 lineto +6.586879e+01 5.032491e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.6731e+01 6.375124e+00 moveto +6.586879e+01 5.032491e+00 lineto +6.558414e+01 5.035192e+00 lineto +6.616386e+01 6.380506e+00 lineto +6.6731e+01 6.375124e+00 lineto +closepath +gsave +5.24375e-01 5.24375e-01 5.24375e-01 setrgbcolor +fill +grestore +newpath +6.6731e+01 6.375124e+00 moveto +6.586879e+01 5.032491e+00 lineto +6.558414e+01 5.035192e+00 lineto +6.616386e+01 6.380506e+00 lineto +6.6731e+01 6.375124e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.75801e+01 8.017735e+00 moveto +6.6731e+01 6.375124e+00 lineto +6.616386e+01 6.380506e+00 lineto +6.673477e+01 8.025757e+00 lineto +6.75801e+01 8.017735e+00 lineto +closepath +gsave +5.392231e-01 5.392231e-01 5.392231e-01 setrgbcolor +fill +grestore +newpath +6.75801e+01 8.017735e+00 moveto +6.6731e+01 6.375124e+00 lineto +6.616386e+01 6.380506e+00 lineto +6.673477e+01 8.025757e+00 lineto +6.75801e+01 8.017735e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.840967e+01 9.947889e+00 moveto +6.75801e+01 8.017735e+00 lineto +6.673477e+01 8.025757e+00 lineto +6.729255e+01 9.958489e+00 lineto +6.840967e+01 9.947889e+00 lineto +closepath +gsave +5.542249e-01 5.542249e-01 5.542249e-01 setrgbcolor +fill +grestore +newpath +6.840967e+01 9.947889e+00 moveto +6.75801e+01 8.017735e+00 lineto +6.673477e+01 8.025757e+00 lineto +6.729255e+01 9.958489e+00 lineto +6.840967e+01 9.947889e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.921343e+01 1.215097e+01 moveto +6.840967e+01 9.947889e+00 lineto +6.729255e+01 9.958489e+00 lineto +6.783297e+01 1.216407e+01 lineto +6.921343e+01 1.215097e+01 lineto +closepath +gsave +5.690963e-01 5.690963e-01 5.690963e-01 setrgbcolor +fill +grestore +newpath +6.921343e+01 1.215097e+01 moveto +6.840967e+01 9.947889e+00 lineto +6.729255e+01 9.958489e+00 lineto +6.783297e+01 1.216407e+01 lineto +6.921343e+01 1.215097e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.99853e+01 1.461031e+01 moveto +6.921343e+01 1.215097e+01 lineto +6.783297e+01 1.216407e+01 lineto +6.835194e+01 1.462581e+01 lineto +6.99853e+01 1.461031e+01 lineto +closepath +gsave +5.83534e-01 5.83534e-01 5.83534e-01 setrgbcolor +fill +grestore +newpath +6.99853e+01 1.461031e+01 moveto +6.921343e+01 1.215097e+01 lineto +6.783297e+01 1.216407e+01 lineto +6.835194e+01 1.462581e+01 lineto +6.99853e+01 1.461031e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.071942e+01 1.730728e+01 moveto +6.99853e+01 1.461031e+01 lineto +6.835194e+01 1.462581e+01 lineto +6.884554e+01 1.732506e+01 lineto +7.071942e+01 1.730728e+01 lineto +closepath +gsave +5.972259e-01 5.972259e-01 5.972259e-01 setrgbcolor +fill +grestore +newpath +7.071942e+01 1.730728e+01 moveto +6.99853e+01 1.461031e+01 lineto +6.835194e+01 1.462581e+01 lineto +6.884554e+01 1.732506e+01 lineto +7.071942e+01 1.730728e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.141024e+01 2.022146e+01 moveto +7.071942e+01 1.730728e+01 lineto +6.884554e+01 1.732506e+01 lineto +6.931002e+01 2.024139e+01 lineto +7.141024e+01 2.022146e+01 lineto +closepath +gsave +6.09861e-01 6.09861e-01 6.09861e-01 setrgbcolor +fill +grestore +newpath +7.141024e+01 2.022146e+01 moveto +7.071942e+01 1.730728e+01 lineto +6.884554e+01 1.732506e+01 lineto +6.931002e+01 2.024139e+01 lineto +7.141024e+01 2.022146e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.205254e+01 2.33308e+01 moveto +7.141024e+01 2.022146e+01 lineto +6.931002e+01 2.024139e+01 lineto +6.974188e+01 2.335273e+01 lineto +7.205254e+01 2.33308e+01 lineto +closepath +gsave +6.211411e-01 6.211411e-01 6.211411e-01 setrgbcolor +fill +grestore +newpath +7.205254e+01 2.33308e+01 moveto +7.141024e+01 2.022146e+01 lineto +6.931002e+01 2.024139e+01 lineto +6.974188e+01 2.335273e+01 lineto +7.205254e+01 2.33308e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.264144e+01 2.661176e+01 moveto +7.205254e+01 2.33308e+01 lineto +6.974188e+01 2.335273e+01 lineto +7.013784e+01 2.663552e+01 lineto +7.264144e+01 2.661176e+01 lineto +closepath +gsave +6.307912e-01 6.307912e-01 6.307912e-01 setrgbcolor +fill +grestore +newpath +7.264144e+01 2.661176e+01 moveto +7.205254e+01 2.33308e+01 lineto +6.974188e+01 2.335273e+01 lineto +7.013784e+01 2.663552e+01 lineto +7.264144e+01 2.661176e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.317249e+01 3.003949e+01 moveto +7.264144e+01 2.661176e+01 lineto +7.013784e+01 2.663552e+01 lineto +7.04949e+01 3.00649e+01 lineto +7.317249e+01 3.003949e+01 lineto +closepath +gsave +6.385705e-01 6.385705e-01 6.385705e-01 setrgbcolor +fill +grestore +newpath +7.317249e+01 3.003949e+01 moveto +7.264144e+01 2.661176e+01 lineto +7.013784e+01 2.663552e+01 lineto +7.04949e+01 3.00649e+01 lineto +7.317249e+01 3.003949e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.364168e+01 3.358806e+01 moveto +7.317249e+01 3.003949e+01 lineto +7.04949e+01 3.00649e+01 lineto +7.081037e+01 3.361492e+01 lineto +7.364168e+01 3.358806e+01 lineto +closepath +gsave +6.442811e-01 6.442811e-01 6.442811e-01 setrgbcolor +fill +grestore +newpath +7.364168e+01 3.358806e+01 moveto +7.317249e+01 3.003949e+01 lineto +7.04949e+01 3.00649e+01 lineto +7.081037e+01 3.361492e+01 lineto +7.364168e+01 3.358806e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.404544e+01 3.723058e+01 moveto +7.364168e+01 3.358806e+01 lineto +7.081037e+01 3.361492e+01 lineto +7.108184e+01 3.72587e+01 lineto +7.404544e+01 3.723058e+01 lineto +closepath +gsave +6.477758e-01 6.477758e-01 6.477758e-01 setrgbcolor +fill +grestore +newpath +7.404544e+01 3.723058e+01 moveto +7.364168e+01 3.358806e+01 lineto +7.081037e+01 3.361492e+01 lineto +7.108184e+01 3.72587e+01 lineto +7.404544e+01 3.723058e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.438073e+01 4.09395e+01 moveto +7.404544e+01 3.723058e+01 lineto +7.108184e+01 3.72587e+01 lineto +7.130728e+01 4.096866e+01 lineto +7.438073e+01 4.09395e+01 lineto +closepath +gsave +6.489641e-01 6.489641e-01 6.489641e-01 setrgbcolor +fill +grestore +newpath +7.438073e+01 4.09395e+01 moveto +7.404544e+01 3.723058e+01 lineto +7.108184e+01 3.72587e+01 lineto +7.130728e+01 4.096866e+01 lineto +7.438073e+01 4.09395e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.4645e+01 4.468672e+01 moveto +7.438073e+01 4.09395e+01 lineto +7.130728e+01 4.096866e+01 lineto +7.148496e+01 4.471671e+01 lineto +7.4645e+01 4.468672e+01 lineto +closepath +gsave +6.478155e-01 6.478155e-01 6.478155e-01 setrgbcolor +fill +grestore +newpath +7.4645e+01 4.468672e+01 moveto +7.438073e+01 4.09395e+01 lineto +7.130728e+01 4.096866e+01 lineto +7.148496e+01 4.471671e+01 lineto +7.4645e+01 4.468672e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.483625e+01 4.844389e+01 moveto +7.4645e+01 4.468672e+01 lineto +7.148496e+01 4.471671e+01 lineto +7.161356e+01 4.847447e+01 lineto +7.483625e+01 4.844389e+01 lineto +closepath +gsave +6.443608e-01 6.443608e-01 6.443608e-01 setrgbcolor +fill +grestore +newpath +7.483625e+01 4.844389e+01 moveto +7.4645e+01 4.468672e+01 lineto +7.148496e+01 4.471671e+01 lineto +7.161356e+01 4.847447e+01 lineto +7.483625e+01 4.844389e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.495304e+01 5.218255e+01 moveto +7.483625e+01 4.844389e+01 lineto +7.161356e+01 4.847447e+01 lineto +7.169208e+01 5.22135e+01 lineto +7.495304e+01 5.218255e+01 lineto +closepath +gsave +6.386906e-01 6.386906e-01 6.386906e-01 setrgbcolor +fill +grestore +newpath +7.495304e+01 5.218255e+01 moveto +7.483625e+01 4.844389e+01 lineto +7.161356e+01 4.847447e+01 lineto +7.169208e+01 5.22135e+01 lineto +7.495304e+01 5.218255e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.499448e+01 5.587441e+01 moveto +7.495304e+01 5.218255e+01 lineto +7.169208e+01 5.22135e+01 lineto +7.171994e+01 5.590549e+01 lineto +7.499448e+01 5.587441e+01 lineto +closepath +gsave +6.30952e-01 6.30952e-01 6.30952e-01 setrgbcolor +fill +grestore +newpath +7.499448e+01 5.587441e+01 moveto +7.495304e+01 5.218255e+01 lineto +7.169208e+01 5.22135e+01 lineto +7.171994e+01 5.590549e+01 lineto +7.499448e+01 5.587441e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.496026e+01 5.949152e+01 moveto +7.499448e+01 5.587441e+01 lineto +7.171994e+01 5.590549e+01 lineto +7.169693e+01 5.952249e+01 lineto +7.496026e+01 5.949152e+01 lineto +closepath +gsave +6.213423e-01 6.213423e-01 6.213423e-01 setrgbcolor +fill +grestore +newpath +7.496026e+01 5.949152e+01 moveto +7.499448e+01 5.587441e+01 lineto +7.171994e+01 5.590549e+01 lineto +7.169693e+01 5.952249e+01 lineto +7.496026e+01 5.949152e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.485063e+01 6.300649e+01 moveto +7.496026e+01 5.949152e+01 lineto +7.169693e+01 5.952249e+01 lineto +7.162322e+01 6.303712e+01 lineto +7.485063e+01 6.300649e+01 lineto +closepath +gsave +6.101017e-01 6.101017e-01 6.101017e-01 setrgbcolor +fill +grestore +newpath +7.485063e+01 6.300649e+01 moveto +7.496026e+01 5.949152e+01 lineto +7.169693e+01 5.952249e+01 lineto +7.162322e+01 6.303712e+01 lineto +7.485063e+01 6.300649e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.466643e+01 6.639271e+01 moveto +7.485063e+01 6.300649e+01 lineto +7.162322e+01 6.303712e+01 lineto +7.149937e+01 6.642277e+01 lineto +7.466643e+01 6.639271e+01 lineto +closepath +gsave +5.975039e-01 5.975039e-01 5.975039e-01 setrgbcolor +fill +grestore +newpath +7.466643e+01 6.639271e+01 moveto +7.485063e+01 6.300649e+01 lineto +7.162322e+01 6.303712e+01 lineto +7.149937e+01 6.642277e+01 lineto +7.466643e+01 6.639271e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.440905e+01 6.962456e+01 moveto +7.466643e+01 6.639271e+01 lineto +7.149937e+01 6.642277e+01 lineto +7.132632e+01 6.965381e+01 lineto +7.440905e+01 6.962456e+01 lineto +closepath +gsave +5.83846e-01 5.83846e-01 5.83846e-01 setrgbcolor +fill +grestore +newpath +7.440905e+01 6.962456e+01 moveto +7.466643e+01 6.639271e+01 lineto +7.149937e+01 6.642277e+01 lineto +7.132632e+01 6.965381e+01 lineto +7.440905e+01 6.962456e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.408044e+01 7.267755e+01 moveto +7.440905e+01 6.962456e+01 lineto +7.132632e+01 6.965381e+01 lineto +7.110537e+01 7.270578e+01 lineto +7.408044e+01 7.267755e+01 lineto +closepath +gsave +5.694373e-01 5.694373e-01 5.694373e-01 setrgbcolor +fill +grestore +newpath +7.408044e+01 7.267755e+01 moveto +7.440905e+01 6.962456e+01 lineto +7.132632e+01 6.965381e+01 lineto +7.110537e+01 7.270578e+01 lineto +7.408044e+01 7.267755e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.368309e+01 7.552858e+01 moveto +7.408044e+01 7.267755e+01 lineto +7.110537e+01 7.270578e+01 lineto +7.083821e+01 7.555558e+01 lineto +7.368309e+01 7.552858e+01 lineto +closepath +gsave +5.545889e-01 5.545889e-01 5.545889e-01 setrgbcolor +fill +grestore +newpath +7.368309e+01 7.552858e+01 moveto +7.408044e+01 7.267755e+01 lineto +7.110537e+01 7.270578e+01 lineto +7.083821e+01 7.555558e+01 lineto +7.368309e+01 7.552858e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.322e+01 7.815607e+01 moveto +7.368309e+01 7.552858e+01 lineto +7.083821e+01 7.555558e+01 lineto +7.052684e+01 7.818163e+01 lineto +7.322e+01 7.815607e+01 lineto +closepath +gsave +5.396026e-01 5.396026e-01 5.396026e-01 setrgbcolor +fill +grestore +newpath +7.322e+01 7.815607e+01 moveto +7.368309e+01 7.552858e+01 lineto +7.083821e+01 7.555558e+01 lineto +7.052684e+01 7.818163e+01 lineto +7.322e+01 7.815607e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.269468e+01 8.054012e+01 moveto +7.322e+01 7.815607e+01 lineto +7.052684e+01 7.818163e+01 lineto +7.017364e+01 8.056405e+01 lineto +7.269468e+01 8.054012e+01 lineto +closepath +gsave +5.247619e-01 5.247619e-01 5.247619e-01 setrgbcolor +fill +grestore +newpath +7.269468e+01 8.054012e+01 moveto +7.322e+01 7.815607e+01 lineto +7.052684e+01 7.818163e+01 lineto +7.017364e+01 8.056405e+01 lineto +7.269468e+01 8.054012e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.211111e+01 8.266269e+01 moveto +7.269468e+01 8.054012e+01 lineto +7.017364e+01 8.056405e+01 lineto +6.978127e+01 8.26848e+01 lineto +7.211111e+01 8.266269e+01 lineto +closepath +gsave +5.103234e-01 5.103234e-01 5.103234e-01 setrgbcolor +fill +grestore +newpath +7.211111e+01 8.266269e+01 moveto +7.269468e+01 8.054012e+01 lineto +7.017364e+01 8.056405e+01 lineto +6.978127e+01 8.26848e+01 lineto +7.211111e+01 8.266269e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.147371e+01 8.450771e+01 moveto +7.211111e+01 8.266269e+01 lineto +6.978127e+01 8.26848e+01 lineto +6.93527e+01 8.452784e+01 lineto +7.147371e+01 8.450771e+01 lineto +closepath +gsave +4.965101e-01 4.965101e-01 4.965101e-01 setrgbcolor +fill +grestore +newpath +7.147371e+01 8.450771e+01 moveto +7.211111e+01 8.266269e+01 lineto +6.978127e+01 8.26848e+01 lineto +6.93527e+01 8.452784e+01 lineto +7.147371e+01 8.450771e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.07873e+01 8.606121e+01 moveto +7.147371e+01 8.450771e+01 lineto +6.93527e+01 8.452784e+01 lineto +6.889118e+01 8.60792e+01 lineto +7.07873e+01 8.606121e+01 lineto +closepath +gsave +4.835068e-01 4.835068e-01 4.835068e-01 setrgbcolor +fill +grestore +newpath +7.07873e+01 8.606121e+01 moveto +7.147371e+01 8.450771e+01 lineto +6.93527e+01 8.452784e+01 lineto +6.889118e+01 8.60792e+01 lineto +7.07873e+01 8.606121e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.005707e+01 8.731142e+01 moveto +7.07873e+01 8.606121e+01 lineto +6.889118e+01 8.60792e+01 lineto +6.84002e+01 8.732714e+01 lineto +7.005707e+01 8.731142e+01 lineto +closepath +gsave +4.714568e-01 4.714568e-01 4.714568e-01 setrgbcolor +fill +grestore +newpath +7.005707e+01 8.731142e+01 moveto +7.07873e+01 8.606121e+01 lineto +6.889118e+01 8.60792e+01 lineto +6.84002e+01 8.732714e+01 lineto +7.005707e+01 8.731142e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.928857e+01 8.824889e+01 moveto +7.005707e+01 8.731142e+01 lineto +6.84002e+01 8.732714e+01 lineto +6.788348e+01 8.826222e+01 lineto +6.928857e+01 8.824889e+01 lineto +closepath +gsave +4.604612e-01 4.604612e-01 4.604612e-01 setrgbcolor +fill +grestore +newpath +6.928857e+01 8.824889e+01 moveto +7.005707e+01 8.731142e+01 lineto +6.84002e+01 8.732714e+01 lineto +6.788348e+01 8.826222e+01 lineto +6.928857e+01 8.824889e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.848759e+01 8.886652e+01 moveto +6.928857e+01 8.824889e+01 lineto +6.788348e+01 8.826222e+01 lineto +6.734493e+01 8.887736e+01 lineto +6.848759e+01 8.886652e+01 lineto +closepath +gsave +4.505797e-01 4.505797e-01 4.505797e-01 setrgbcolor +fill +grestore +newpath +6.848759e+01 8.886652e+01 moveto +6.928857e+01 8.824889e+01 lineto +6.788348e+01 8.826222e+01 lineto +6.734493e+01 8.887736e+01 lineto +6.848759e+01 8.886652e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.766021e+01 8.915963e+01 moveto +6.848759e+01 8.886652e+01 lineto +6.734493e+01 8.887736e+01 lineto +6.678863e+01 8.91679e+01 lineto +6.766021e+01 8.915963e+01 lineto +closepath +gsave +4.418336e-01 4.418336e-01 4.418336e-01 setrgbcolor +fill +grestore +newpath +6.766021e+01 8.915963e+01 moveto +6.848759e+01 8.886652e+01 lineto +6.734493e+01 8.887736e+01 lineto +6.678863e+01 8.91679e+01 lineto +6.766021e+01 8.915963e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.335082e+01 8.576613e+01 moveto +6.421394e+01 8.707957e+01 lineto +6.447148e+01 8.707713e+01 lineto +6.389115e+01 8.5761e+01 lineto +6.335082e+01 8.576613e+01 lineto +closepath +gsave +5.229756e-01 5.229756e-01 5.229756e-01 setrgbcolor +fill +grestore +newpath +6.335082e+01 8.576613e+01 moveto +6.421394e+01 8.707957e+01 lineto +6.447148e+01 8.707713e+01 lineto +6.389115e+01 8.5761e+01 lineto +6.335082e+01 8.576613e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.250019e+01 8.415165e+01 moveto +6.335082e+01 8.576613e+01 lineto +6.389115e+01 8.5761e+01 lineto +6.331921e+01 8.414388e+01 lineto +6.250019e+01 8.415165e+01 lineto +closepath +gsave +5.377951e-01 5.377951e-01 5.377951e-01 setrgbcolor +fill +grestore +newpath +6.250019e+01 8.415165e+01 moveto +6.335082e+01 8.576613e+01 lineto +6.389115e+01 8.5761e+01 lineto +6.331921e+01 8.414388e+01 lineto +6.250019e+01 8.415165e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.166848e+01 8.224834e+01 moveto +6.250019e+01 8.415165e+01 lineto +6.331921e+01 8.414388e+01 lineto +6.276e+01 8.223798e+01 lineto +6.166848e+01 8.224834e+01 lineto +closepath +gsave +5.527942e-01 5.527942e-01 5.527942e-01 setrgbcolor +fill +grestore +newpath +6.166848e+01 8.224834e+01 moveto +6.250019e+01 8.415165e+01 lineto +6.331921e+01 8.414388e+01 lineto +6.276e+01 8.223798e+01 lineto +6.166848e+01 8.224834e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +1 setlinewidth +newpath +1.0e-01 setlinewidth +newpath +6.621879e+01 8.913163e+01 moveto +6.678863e+01 8.91679e+01 lineto +6.590603e+01 8.915963e+01 lineto +6.561738e+01 8.9126e+01 lineto +6.621879e+01 8.913163e+01 lineto +closepath +gsave +4.67803e-01 4.67803e-01 4.67803e-01 setrgbcolor +fill +grestore +newpath +6.563973e+01 8.876884e+01 moveto +6.621879e+01 8.913163e+01 lineto +6.561738e+01 8.9126e+01 lineto +6.532405e+01 8.876589e+01 lineto +6.563973e+01 8.876884e+01 lineto +closepath +gsave +4.804229e-01 4.804229e-01 4.804229e-01 setrgbcolor +fill +grestore +newpath +6.505582e+01 8.808228e+01 moveto +6.563973e+01 8.876884e+01 lineto +6.532405e+01 8.876589e+01 lineto +6.502827e+01 8.808202e+01 lineto +6.505582e+01 8.808228e+01 lineto +closepath +gsave +4.942213e-01 4.942213e-01 4.942213e-01 setrgbcolor +fill +grestore +newpath +6.447148e+01 8.707713e+01 moveto +6.505582e+01 8.808228e+01 lineto +6.502827e+01 8.808202e+01 lineto +6.473228e+01 8.707957e+01 lineto +6.447148e+01 8.707713e+01 lineto +closepath +gsave +5.090638e-01 5.090638e-01 5.090638e-01 setrgbcolor +fill +grestore +newpath +6.561738e+01 8.9126e+01 moveto +6.590603e+01 8.915963e+01 lineto +6.501784e+01 8.913486e+01 lineto +6.501215e+01 8.910912e+01 lineto +6.561738e+01 8.9126e+01 lineto +closepath +gsave +4.658018e-01 4.658018e-01 4.658018e-01 setrgbcolor +fill +grestore +newpath +6.532405e+01 8.876589e+01 moveto +6.561738e+01 8.9126e+01 lineto +6.501215e+01 8.910912e+01 lineto +6.500638e+01 8.875703e+01 lineto +6.532405e+01 8.876589e+01 lineto +closepath +gsave +4.790313e-01 4.790313e-01 4.790313e-01 setrgbcolor +fill +grestore +newpath +6.502827e+01 8.808202e+01 moveto +6.532405e+01 8.876589e+01 lineto +6.500638e+01 8.875703e+01 lineto +6.500056e+01 8.808124e+01 lineto +6.502827e+01 8.808202e+01 lineto +closepath +gsave +4.936404e-01 4.936404e-01 4.936404e-01 setrgbcolor +fill +grestore +newpath +6.473228e+01 8.707957e+01 moveto +6.502827e+01 8.808202e+01 lineto +6.500056e+01 8.808124e+01 lineto +6.499473e+01 8.708689e+01 lineto +6.473228e+01 8.707957e+01 lineto +closepath +gsave +5.095006e-01 5.095006e-01 5.095006e-01 setrgbcolor +fill +grestore +newpath +6.501215e+01 8.910912e+01 moveto +6.501784e+01 8.913486e+01 lineto +6.412954e+01 8.909377e+01 lineto +6.440686e+01 8.908112e+01 lineto +6.501215e+01 8.910912e+01 lineto +closepath +gsave +4.640249e-01 4.640249e-01 4.640249e-01 setrgbcolor +fill +grestore +newpath +6.500638e+01 8.875703e+01 moveto +6.501215e+01 8.910912e+01 lineto +6.440686e+01 8.908112e+01 lineto +6.468867e+01 8.874233e+01 lineto +6.500638e+01 8.875703e+01 lineto +closepath +gsave +4.777858e-01 4.777858e-01 4.777858e-01 setrgbcolor +fill +grestore +newpath +6.500056e+01 8.808124e+01 moveto +6.500638e+01 8.875703e+01 lineto +6.468867e+01 8.874233e+01 lineto +6.497284e+01 8.807996e+01 lineto +6.500056e+01 8.808124e+01 lineto +closepath +gsave +4.931166e-01 4.931166e-01 4.931166e-01 setrgbcolor +fill +grestore +newpath +6.499473e+01 8.708689e+01 moveto +6.500056e+01 8.808124e+01 lineto +6.497284e+01 8.807996e+01 lineto +6.525721e+01 8.709903e+01 lineto +6.499473e+01 8.708689e+01 lineto +closepath +gsave +5.098969e-01 5.098969e-01 5.098969e-01 setrgbcolor +fill +grestore +newpath +6.440686e+01 8.908112e+01 moveto +6.412954e+01 8.909377e+01 lineto +6.32466e+01 8.903658e+01 lineto +6.380522e+01 8.904215e+01 lineto +6.440686e+01 8.908112e+01 lineto +closepath +gsave +4.624724e-01 4.624724e-01 4.624724e-01 setrgbcolor +fill +grestore +newpath +6.468867e+01 8.874233e+01 moveto +6.440686e+01 8.908112e+01 lineto +6.380522e+01 8.904215e+01 lineto +6.437288e+01 8.872188e+01 lineto +6.468867e+01 8.874233e+01 lineto +closepath +gsave +4.766897e-01 4.766897e-01 4.766897e-01 setrgbcolor +fill +grestore +newpath +6.497284e+01 8.807996e+01 moveto +6.468867e+01 8.874233e+01 lineto +6.437288e+01 8.872188e+01 lineto +6.494528e+01 8.807818e+01 lineto +6.497284e+01 8.807996e+01 lineto +closepath +gsave +4.926527e-01 4.926527e-01 4.926527e-01 setrgbcolor +fill +grestore +newpath +6.525721e+01 8.709903e+01 moveto +6.497284e+01 8.807996e+01 lineto +6.494528e+01 8.807818e+01 lineto +6.551811e+01 8.711593e+01 lineto +6.525721e+01 8.709903e+01 lineto +closepath +gsave +5.102499e-01 5.102499e-01 5.102499e-01 setrgbcolor +fill +grestore +newpath +6.380522e+01 8.904215e+01 moveto +6.32466e+01 8.903658e+01 lineto +6.237448e+01 8.896367e+01 lineto +6.321094e+01 8.899247e+01 lineto +6.380522e+01 8.904215e+01 lineto +closepath +gsave +4.611441e-01 4.611441e-01 4.611441e-01 setrgbcolor +fill +grestore +newpath +6.437288e+01 8.872188e+01 moveto +6.380522e+01 8.904215e+01 lineto +6.321094e+01 8.899247e+01 lineto +6.406095e+01 8.86958e+01 lineto +6.437288e+01 8.872188e+01 lineto +closepath +gsave +4.757457e-01 4.757457e-01 4.757457e-01 setrgbcolor +fill +grestore +newpath +6.494528e+01 8.807818e+01 moveto +6.437288e+01 8.872188e+01 lineto +6.406095e+01 8.86958e+01 lineto +6.491807e+01 8.80759e+01 lineto +6.494528e+01 8.807818e+01 lineto +closepath +gsave +4.922509e-01 4.922509e-01 4.922509e-01 setrgbcolor +fill +grestore +newpath +6.551811e+01 8.711593e+01 moveto +6.494528e+01 8.807818e+01 lineto +6.491807e+01 8.80759e+01 lineto +6.577581e+01 8.713747e+01 lineto +6.551811e+01 8.711593e+01 lineto +closepath +gsave +5.105573e-01 5.105573e-01 5.105573e-01 setrgbcolor +fill +grestore +newpath +6.321094e+01 8.899247e+01 moveto +6.237448e+01 8.896367e+01 lineto +6.151854e+01 8.887547e+01 lineto +6.26277e+01 8.893237e+01 lineto +6.321094e+01 8.899247e+01 lineto +closepath +gsave +4.600392e-01 4.600392e-01 4.600392e-01 setrgbcolor +fill +grestore +newpath +6.406095e+01 8.86958e+01 moveto +6.321094e+01 8.899247e+01 lineto +6.26277e+01 8.893237e+01 lineto +6.375481e+01 8.866425e+01 lineto +6.406095e+01 8.86958e+01 lineto +closepath +gsave +4.749561e-01 4.749561e-01 4.749561e-01 setrgbcolor +fill +grestore +newpath +6.491807e+01 8.80759e+01 moveto +6.406095e+01 8.86958e+01 lineto +6.375481e+01 8.866425e+01 lineto +6.489136e+01 8.807315e+01 lineto +6.491807e+01 8.80759e+01 lineto +closepath +gsave +4.919131e-01 4.919131e-01 4.919131e-01 setrgbcolor +fill +grestore +newpath +6.577581e+01 8.713747e+01 moveto +6.491807e+01 8.80759e+01 lineto +6.489136e+01 8.807315e+01 lineto +6.602872e+01 8.716353e+01 lineto +6.577581e+01 8.713747e+01 lineto +closepath +gsave +5.108168e-01 5.108168e-01 5.108168e-01 setrgbcolor +fill +grestore +newpath +6.26277e+01 8.893237e+01 moveto +6.151854e+01 8.887547e+01 lineto +6.068407e+01 8.877254e+01 lineto +6.205908e+01 8.886223e+01 lineto +6.26277e+01 8.893237e+01 lineto +closepath +gsave +4.591567e-01 4.591567e-01 4.591567e-01 setrgbcolor +fill +grestore +newpath +6.375481e+01 8.866425e+01 moveto +6.26277e+01 8.893237e+01 lineto +6.205908e+01 8.886223e+01 lineto +6.345636e+01 8.862744e+01 lineto +6.375481e+01 8.866425e+01 lineto +closepath +gsave +4.743224e-01 4.743224e-01 4.743224e-01 setrgbcolor +fill +grestore +newpath +6.489136e+01 8.807315e+01 moveto +6.375481e+01 8.866425e+01 lineto +6.345636e+01 8.862744e+01 lineto +6.486532e+01 8.806994e+01 lineto +6.489136e+01 8.807315e+01 lineto +closepath +gsave +4.916409e-01 4.916409e-01 4.916409e-01 setrgbcolor +fill +grestore +newpath +6.602872e+01 8.716353e+01 moveto +6.489136e+01 8.807315e+01 lineto +6.486532e+01 8.806994e+01 lineto +6.62753e+01 8.719395e+01 lineto +6.602872e+01 8.716353e+01 lineto +closepath +gsave +5.110267e-01 5.110267e-01 5.110267e-01 setrgbcolor +fill +grestore +newpath +6.205908e+01 8.886223e+01 moveto +6.068407e+01 8.877254e+01 lineto +5.98762e+01 8.86555e+01 lineto +6.150859e+01 8.878248e+01 lineto +6.205908e+01 8.886223e+01 lineto +closepath +gsave +4.584958e-01 4.584958e-01 4.584958e-01 setrgbcolor +fill +grestore +newpath +6.345636e+01 8.862744e+01 moveto +6.205908e+01 8.886223e+01 lineto +6.150859e+01 8.878248e+01 lineto +6.316741e+01 8.858558e+01 lineto +6.345636e+01 8.862744e+01 lineto +closepath +gsave +4.738461e-01 4.738461e-01 4.738461e-01 setrgbcolor +fill +grestore +newpath +6.486532e+01 8.806994e+01 moveto +6.345636e+01 8.862744e+01 lineto +6.316741e+01 8.858558e+01 lineto +6.484011e+01 8.806629e+01 lineto +6.486532e+01 8.806994e+01 lineto +closepath +gsave +4.914357e-01 4.914357e-01 4.914357e-01 setrgbcolor +fill +grestore +newpath +6.62753e+01 8.719395e+01 moveto +6.486532e+01 8.806994e+01 lineto +6.484011e+01 8.806629e+01 lineto +6.651401e+01 8.722853e+01 lineto +6.62753e+01 8.719395e+01 lineto +closepath +gsave +5.111855e-01 5.111855e-01 5.111855e-01 setrgbcolor +fill +grestore +newpath +6.150859e+01 8.878248e+01 moveto +5.98762e+01 8.86555e+01 lineto +5.909993e+01 8.852508e+01 lineto +6.097963e+01 8.869361e+01 lineto +6.150859e+01 8.878248e+01 lineto +closepath +gsave +4.580557e-01 4.580557e-01 4.580557e-01 setrgbcolor +fill +grestore +newpath +6.316741e+01 8.858558e+01 moveto +6.150859e+01 8.878248e+01 lineto +6.097963e+01 8.869361e+01 lineto +6.288977e+01 8.853893e+01 lineto +6.316741e+01 8.858558e+01 lineto +closepath +gsave +4.735281e-01 4.735281e-01 4.735281e-01 setrgbcolor +fill +grestore +newpath +6.484011e+01 8.806629e+01 moveto +6.316741e+01 8.858558e+01 lineto +6.288977e+01 8.853893e+01 lineto +6.481588e+01 8.806222e+01 lineto +6.484011e+01 8.806629e+01 lineto +closepath +gsave +4.912983e-01 4.912983e-01 4.912983e-01 setrgbcolor +fill +grestore +newpath +6.651401e+01 8.722853e+01 moveto +6.484011e+01 8.806629e+01 lineto +6.481588e+01 8.806222e+01 lineto +6.674339e+01 8.726707e+01 lineto +6.651401e+01 8.722853e+01 lineto +closepath +gsave +5.112919e-01 5.112919e-01 5.112919e-01 setrgbcolor +fill +grestore +newpath +6.097963e+01 8.869361e+01 moveto +5.909993e+01 8.852508e+01 lineto +5.836003e+01 8.838208e+01 lineto +6.047546e+01 8.859617e+01 lineto +6.097963e+01 8.869361e+01 lineto +closepath +gsave +4.578358e-01 4.578358e-01 4.578358e-01 setrgbcolor +fill +grestore +newpath +6.288977e+01 8.853893e+01 moveto +6.097963e+01 8.869361e+01 lineto +6.047546e+01 8.859617e+01 lineto +6.262514e+01 8.848779e+01 lineto +6.288977e+01 8.853893e+01 lineto +closepath +gsave +4.733689e-01 4.733689e-01 4.733689e-01 setrgbcolor +fill +grestore +newpath +6.481588e+01 8.806222e+01 moveto +6.288977e+01 8.853893e+01 lineto +6.262514e+01 8.848779e+01 lineto +6.479279e+01 8.805775e+01 lineto +6.481588e+01 8.806222e+01 lineto +closepath +gsave +4.912294e-01 4.912294e-01 4.912294e-01 setrgbcolor +fill +grestore +newpath +6.674339e+01 8.726707e+01 moveto +6.481588e+01 8.806222e+01 lineto +6.479279e+01 8.805775e+01 lineto +6.696202e+01 8.730932e+01 lineto +6.674339e+01 8.726707e+01 lineto +closepath +gsave +5.113453e-01 5.113453e-01 5.113453e-01 setrgbcolor +fill +grestore +newpath +6.047546e+01 8.859617e+01 moveto +5.836003e+01 8.838208e+01 lineto +5.766107e+01 8.822738e+01 lineto +5.999918e+01 8.849076e+01 lineto +6.047546e+01 8.859617e+01 lineto +closepath +gsave +4.578358e-01 4.578358e-01 4.578358e-01 setrgbcolor +fill +grestore +newpath +6.262514e+01 8.848779e+01 moveto +6.047546e+01 8.859617e+01 lineto +5.999918e+01 8.849076e+01 lineto +6.237514e+01 8.843246e+01 lineto +6.262514e+01 8.848779e+01 lineto +closepath +gsave +4.733689e-01 4.733689e-01 4.733689e-01 setrgbcolor +fill +grestore +newpath +6.479279e+01 8.805775e+01 moveto +6.262514e+01 8.848779e+01 lineto +6.237514e+01 8.843246e+01 lineto +6.477098e+01 8.805293e+01 lineto +6.479279e+01 8.805775e+01 lineto +closepath +gsave +4.912294e-01 4.912294e-01 4.912294e-01 setrgbcolor +fill +grestore +newpath +6.696202e+01 8.730932e+01 moveto +6.479279e+01 8.805775e+01 lineto +6.477098e+01 8.805293e+01 lineto +6.716855e+01 8.735503e+01 lineto +6.696202e+01 8.730932e+01 lineto +closepath +gsave +5.113453e-01 5.113453e-01 5.113453e-01 setrgbcolor +fill +grestore +newpath +5.999918e+01 8.849076e+01 moveto +5.766107e+01 8.822738e+01 lineto +5.700736e+01 8.806194e+01 lineto +5.955373e+01 8.837802e+01 lineto +5.999918e+01 8.849076e+01 lineto +closepath +gsave +4.580557e-01 4.580557e-01 4.580557e-01 setrgbcolor +fill +grestore +newpath +6.237514e+01 8.843246e+01 moveto +5.999918e+01 8.849076e+01 lineto +5.955373e+01 8.837802e+01 lineto +6.214134e+01 8.837329e+01 lineto +6.237514e+01 8.843246e+01 lineto +closepath +gsave +4.735281e-01 4.735281e-01 4.735281e-01 setrgbcolor +fill +grestore +newpath +6.477098e+01 8.805293e+01 moveto +6.237514e+01 8.843246e+01 lineto +6.214134e+01 8.837329e+01 lineto +6.475058e+01 8.804776e+01 lineto +6.477098e+01 8.805293e+01 lineto +closepath +gsave +4.912983e-01 4.912983e-01 4.912983e-01 setrgbcolor +fill +grestore +newpath +6.716855e+01 8.735503e+01 moveto +6.477098e+01 8.805293e+01 lineto +6.475058e+01 8.804776e+01 lineto +6.736172e+01 8.740392e+01 lineto +6.716855e+01 8.735503e+01 lineto +closepath +gsave +5.112919e-01 5.112919e-01 5.112919e-01 setrgbcolor +fill +grestore +newpath +5.700736e+01 8.806194e+01 moveto +5.452149e+01 8.742743e+01 lineto +5.372906e+01 8.71978e+01 lineto +5.640292e+01 8.788678e+01 lineto +5.700736e+01 8.806194e+01 lineto +closepath +gsave +4.453787e-01 4.453787e-01 4.453787e-01 setrgbcolor +fill +grestore +newpath +5.955373e+01 8.837802e+01 moveto +5.700736e+01 8.806194e+01 lineto +5.640292e+01 8.788678e+01 lineto +5.914186e+01 8.825867e+01 lineto +5.955373e+01 8.837802e+01 lineto +closepath +gsave +4.584958e-01 4.584958e-01 4.584958e-01 setrgbcolor +fill +grestore +newpath +6.214134e+01 8.837329e+01 moveto +5.955373e+01 8.837802e+01 lineto +5.914186e+01 8.825867e+01 lineto +6.192515e+01 8.831064e+01 lineto +6.214134e+01 8.837329e+01 lineto +closepath +gsave +4.738461e-01 4.738461e-01 4.738461e-01 setrgbcolor +fill +grestore +newpath +6.475058e+01 8.804776e+01 moveto +6.214134e+01 8.837329e+01 lineto +6.192515e+01 8.831064e+01 lineto +6.473172e+01 8.80423e+01 lineto +6.475058e+01 8.804776e+01 lineto +closepath +gsave +4.914357e-01 4.914357e-01 4.914357e-01 setrgbcolor +fill +grestore +newpath +6.736172e+01 8.740392e+01 moveto +6.475058e+01 8.804776e+01 lineto +6.473172e+01 8.80423e+01 lineto +6.754032e+01 8.745568e+01 lineto +6.736172e+01 8.740392e+01 lineto +closepath +gsave +5.111855e-01 5.111855e-01 5.111855e-01 setrgbcolor +fill +grestore +newpath +5.640292e+01 8.788678e+01 moveto +5.372906e+01 8.71978e+01 lineto +5.300613e+01 8.695682e+01 lineto +5.585149e+01 8.770298e+01 lineto +5.640292e+01 8.788678e+01 lineto +closepath +gsave +4.46147e-01 4.46147e-01 4.46147e-01 setrgbcolor +fill +grestore +newpath +5.914186e+01 8.825867e+01 moveto +5.640292e+01 8.788678e+01 lineto +5.585149e+01 8.770298e+01 lineto +5.876611e+01 8.813342e+01 lineto +5.914186e+01 8.825867e+01 lineto +closepath +gsave +4.591567e-01 4.591567e-01 4.591567e-01 setrgbcolor +fill +grestore +newpath +6.192515e+01 8.831064e+01 moveto +5.914186e+01 8.825867e+01 lineto +5.876611e+01 8.813342e+01 lineto +6.172793e+01 8.82449e+01 lineto +6.192515e+01 8.831064e+01 lineto +closepath +gsave +4.743224e-01 4.743224e-01 4.743224e-01 setrgbcolor +fill +grestore +newpath +6.473172e+01 8.80423e+01 moveto +6.192515e+01 8.831064e+01 lineto +6.172793e+01 8.82449e+01 lineto +6.471451e+01 8.803656e+01 lineto +6.473172e+01 8.80423e+01 lineto +closepath +gsave +4.916409e-01 4.916409e-01 4.916409e-01 setrgbcolor +fill +grestore +newpath +6.754032e+01 8.745568e+01 moveto +6.473172e+01 8.80423e+01 lineto +6.471451e+01 8.803656e+01 lineto +6.770326e+01 8.750999e+01 lineto +6.754032e+01 8.745568e+01 lineto +closepath +gsave +5.110267e-01 5.110267e-01 5.110267e-01 setrgbcolor +fill +grestore +newpath +5.300613e+01 8.695682e+01 moveto +5.025156e+01 8.590061e+01 lineto +4.945352e+01 8.559219e+01 lineto +5.235713e+01 8.670601e+01 lineto +5.300613e+01 8.695682e+01 lineto +closepath +gsave +4.36316e-01 4.36316e-01 4.36316e-01 setrgbcolor +fill +grestore +newpath +5.585149e+01 8.770298e+01 moveto +5.300613e+01 8.695682e+01 lineto +5.235713e+01 8.670601e+01 lineto +5.535646e+01 8.751167e+01 lineto +5.585149e+01 8.770298e+01 lineto +closepath +gsave +4.471774e-01 4.471774e-01 4.471774e-01 setrgbcolor +fill +grestore +newpath +5.876611e+01 8.813342e+01 moveto +5.585149e+01 8.770298e+01 lineto +5.535646e+01 8.751167e+01 lineto +5.842879e+01 8.800306e+01 lineto +5.876611e+01 8.813342e+01 lineto +closepath +gsave +4.600392e-01 4.600392e-01 4.600392e-01 setrgbcolor +fill +grestore +newpath +6.172793e+01 8.82449e+01 moveto +5.876611e+01 8.813342e+01 lineto +5.842879e+01 8.800306e+01 lineto +6.155087e+01 8.817647e+01 lineto +6.172793e+01 8.82449e+01 lineto +closepath +gsave +4.749561e-01 4.749561e-01 4.749561e-01 setrgbcolor +fill +grestore +newpath +6.471451e+01 8.803656e+01 moveto +6.172793e+01 8.82449e+01 lineto +6.155087e+01 8.817647e+01 lineto +6.469906e+01 8.803059e+01 lineto +6.471451e+01 8.803656e+01 lineto +closepath +gsave +4.919131e-01 4.919131e-01 4.919131e-01 setrgbcolor +fill +grestore +newpath +6.770326e+01 8.750999e+01 moveto +6.471451e+01 8.803656e+01 lineto +6.469906e+01 8.803059e+01 lineto +6.784953e+01 8.756652e+01 lineto +6.770326e+01 8.750999e+01 lineto +closepath +gsave +5.108168e-01 5.108168e-01 5.108168e-01 setrgbcolor +fill +grestore +newpath +5.235713e+01 8.670601e+01 moveto +4.945352e+01 8.559219e+01 lineto +4.875133e+01 8.527357e+01 lineto +5.178609e+01 8.644689e+01 lineto +5.235713e+01 8.670601e+01 lineto +closepath +gsave +4.376986e-01 4.376986e-01 4.376986e-01 setrgbcolor +fill +grestore +newpath +5.535646e+01 8.751167e+01 moveto +5.235713e+01 8.670601e+01 lineto +5.178609e+01 8.644689e+01 lineto +5.492089e+01 8.731402e+01 lineto +5.535646e+01 8.751167e+01 lineto +closepath +gsave +4.484744e-01 4.484744e-01 4.484744e-01 setrgbcolor +fill +grestore +newpath +5.842879e+01 8.800306e+01 moveto +5.535646e+01 8.751167e+01 lineto +5.492089e+01 8.731402e+01 lineto +5.813199e+01 8.786838e+01 lineto +5.842879e+01 8.800306e+01 lineto +closepath +gsave +4.611441e-01 4.611441e-01 4.611441e-01 setrgbcolor +fill +grestore +newpath +6.155087e+01 8.817647e+01 moveto +5.842879e+01 8.800306e+01 lineto +5.813199e+01 8.786838e+01 lineto +6.139509e+01 8.810578e+01 lineto +6.155087e+01 8.817647e+01 lineto +closepath +gsave +4.757457e-01 4.757457e-01 4.757457e-01 setrgbcolor +fill +grestore +newpath +6.469906e+01 8.803059e+01 moveto +6.155087e+01 8.817647e+01 lineto +6.139509e+01 8.810578e+01 lineto +6.468547e+01 8.802442e+01 lineto +6.469906e+01 8.803059e+01 lineto +closepath +gsave +4.922509e-01 4.922509e-01 4.922509e-01 setrgbcolor +fill +grestore +newpath +6.784953e+01 8.756652e+01 moveto +6.469906e+01 8.803059e+01 lineto +6.468547e+01 8.802442e+01 lineto +6.797824e+01 8.762492e+01 lineto +6.784953e+01 8.756652e+01 lineto +closepath +gsave +5.105573e-01 5.105573e-01 5.105573e-01 setrgbcolor +fill +grestore +newpath +4.875133e+01 8.527357e+01 moveto +4.583957e+01 8.380292e+01 lineto +4.512968e+01 8.341748e+01 lineto +4.814931e+01 8.49467e+01 lineto +4.875133e+01 8.527357e+01 lineto +closepath +gsave +4.304199e-01 4.304199e-01 4.304199e-01 setrgbcolor +fill +grestore +newpath +5.178609e+01 8.644689e+01 moveto +4.875133e+01 8.527357e+01 lineto +4.814931e+01 8.49467e+01 lineto +5.129651e+01 8.618108e+01 lineto +5.178609e+01 8.644689e+01 lineto +closepath +gsave +4.393839e-01 4.393839e-01 4.393839e-01 setrgbcolor +fill +grestore +newpath +5.492089e+01 8.731402e+01 moveto +5.178609e+01 8.644689e+01 lineto +5.129651e+01 8.618108e+01 lineto +5.454746e+01 8.711127e+01 lineto +5.492089e+01 8.731402e+01 lineto +closepath +gsave +4.500437e-01 4.500437e-01 4.500437e-01 setrgbcolor +fill +grestore +newpath +5.813199e+01 8.786838e+01 moveto +5.492089e+01 8.731402e+01 lineto +5.454746e+01 8.711127e+01 lineto +5.787753e+01 8.773022e+01 lineto +5.813199e+01 8.786838e+01 lineto +closepath +gsave +4.624724e-01 4.624724e-01 4.624724e-01 setrgbcolor +fill +grestore +newpath +6.139509e+01 8.810578e+01 moveto +5.813199e+01 8.786838e+01 lineto +5.787753e+01 8.773022e+01 lineto +6.126152e+01 8.803327e+01 lineto +6.139509e+01 8.810578e+01 lineto +closepath +gsave +4.766897e-01 4.766897e-01 4.766897e-01 setrgbcolor +fill +grestore +newpath +6.468547e+01 8.802442e+01 moveto +6.139509e+01 8.810578e+01 lineto +6.126152e+01 8.803327e+01 lineto +6.467382e+01 8.80181e+01 lineto +6.468547e+01 8.802442e+01 lineto +closepath +gsave +4.926527e-01 4.926527e-01 4.926527e-01 setrgbcolor +fill +grestore +newpath +6.797824e+01 8.762492e+01 moveto +6.468547e+01 8.802442e+01 lineto +6.467382e+01 8.80181e+01 lineto +6.808858e+01 8.768483e+01 lineto +6.797824e+01 8.762492e+01 lineto +closepath +gsave +5.102499e-01 5.102499e-01 5.102499e-01 setrgbcolor +fill +grestore +newpath +4.512968e+01 8.341748e+01 moveto +4.226047e+01 8.1605e+01 lineto +4.158826e+01 8.11555e+01 lineto +4.454229e+01 8.30247e+01 lineto +4.512968e+01 8.341748e+01 lineto +closepath +gsave +4.250081e-01 4.250081e-01 4.250081e-01 setrgbcolor +fill +grestore +newpath +4.814931e+01 8.49467e+01 moveto +4.512968e+01 8.341748e+01 lineto +4.454229e+01 8.30247e+01 lineto +4.765119e+01 8.461361e+01 lineto +4.814931e+01 8.49467e+01 lineto +closepath +gsave +4.324546e-01 4.324546e-01 4.324546e-01 setrgbcolor +fill +grestore +newpath +5.129651e+01 8.618108e+01 moveto +4.814931e+01 8.49467e+01 lineto +4.765119e+01 8.461361e+01 lineto +5.089142e+01 8.59102e+01 lineto +5.129651e+01 8.618108e+01 lineto +closepath +gsave +4.413848e-01 4.413848e-01 4.413848e-01 setrgbcolor +fill +grestore +newpath +5.454746e+01 8.711127e+01 moveto +5.129651e+01 8.618108e+01 lineto +5.089142e+01 8.59102e+01 lineto +5.423847e+01 8.690465e+01 lineto +5.454746e+01 8.711127e+01 lineto +closepath +gsave +4.518913e-01 4.518913e-01 4.518913e-01 setrgbcolor +fill +grestore +newpath +5.787753e+01 8.773022e+01 moveto +5.454746e+01 8.711127e+01 lineto +5.423847e+01 8.690465e+01 lineto +5.766698e+01 8.758943e+01 lineto +5.787753e+01 8.773022e+01 lineto +closepath +gsave +4.640249e-01 4.640249e-01 4.640249e-01 setrgbcolor +fill +grestore +newpath +6.126152e+01 8.803327e+01 moveto +5.787753e+01 8.773022e+01 lineto +5.766698e+01 8.758943e+01 lineto +6.115101e+01 8.795937e+01 lineto +6.126152e+01 8.803327e+01 lineto +closepath +gsave +4.777858e-01 4.777858e-01 4.777858e-01 setrgbcolor +fill +grestore +newpath +6.467382e+01 8.80181e+01 moveto +6.126152e+01 8.803327e+01 lineto +6.115101e+01 8.795937e+01 lineto +6.466418e+01 8.801165e+01 lineto +6.467382e+01 8.80181e+01 lineto +closepath +gsave +4.931166e-01 4.931166e-01 4.931166e-01 setrgbcolor +fill +grestore +newpath +6.808858e+01 8.768483e+01 moveto +6.467382e+01 8.80181e+01 lineto +6.466418e+01 8.801165e+01 lineto +6.817989e+01 8.774588e+01 lineto +6.808858e+01 8.768483e+01 lineto +closepath +gsave +5.098969e-01 5.098969e-01 5.098969e-01 setrgbcolor +fill +grestore +newpath +4.158826e+01 8.11555e+01 moveto +3.881148e+01 7.902016e+01 lineto +3.8221e+01 7.851105e+01 lineto +4.10604e+01 8.070038e+01 lineto +4.158826e+01 8.11555e+01 lineto +closepath +gsave +4.211434e-01 4.211434e-01 4.211434e-01 setrgbcolor +fill +grestore +newpath +4.454229e+01 8.30247e+01 moveto +4.158826e+01 8.11555e+01 lineto +4.10604e+01 8.070038e+01 lineto +4.408103e+01 8.262701e+01 lineto +4.454229e+01 8.30247e+01 lineto +closepath +gsave +4.273587e-01 4.273587e-01 4.273587e-01 setrgbcolor +fill +grestore +newpath +4.765119e+01 8.461361e+01 moveto +4.454229e+01 8.30247e+01 lineto +4.408103e+01 8.262701e+01 lineto +4.726002e+01 8.427635e+01 lineto +4.765119e+01 8.461361e+01 lineto +closepath +gsave +4.348497e-01 4.348497e-01 4.348497e-01 setrgbcolor +fill +grestore +newpath +5.089142e+01 8.59102e+01 moveto +4.765119e+01 8.461361e+01 lineto +4.726002e+01 8.427635e+01 lineto +5.057332e+01 8.563593e+01 lineto +5.089142e+01 8.59102e+01 lineto +closepath +gsave +4.437154e-01 4.437154e-01 4.437154e-01 setrgbcolor +fill +grestore +newpath +5.423847e+01 8.690465e+01 moveto +5.089142e+01 8.59102e+01 lineto +5.057332e+01 8.563593e+01 lineto +5.399583e+01 8.669545e+01 lineto +5.423847e+01 8.690465e+01 lineto +closepath +gsave +4.540234e-01 4.540234e-01 4.540234e-01 setrgbcolor +fill +grestore +newpath +5.766698e+01 8.758943e+01 moveto +5.423847e+01 8.690465e+01 lineto +5.399583e+01 8.669545e+01 lineto +5.750164e+01 8.744688e+01 lineto +5.766698e+01 8.758943e+01 lineto +closepath +gsave +4.658018e-01 4.658018e-01 4.658018e-01 setrgbcolor +fill +grestore +newpath +6.115101e+01 8.795937e+01 moveto +5.766698e+01 8.758943e+01 lineto +5.750164e+01 8.744688e+01 lineto +6.106423e+01 8.788454e+01 lineto +6.115101e+01 8.795937e+01 lineto +closepath +gsave +4.790313e-01 4.790313e-01 4.790313e-01 setrgbcolor +fill +grestore +newpath +6.466418e+01 8.801165e+01 moveto +6.115101e+01 8.795937e+01 lineto +6.106423e+01 8.788454e+01 lineto +6.46566e+01 8.800512e+01 lineto +6.466418e+01 8.801165e+01 lineto +closepath +gsave +4.936404e-01 4.936404e-01 4.936404e-01 setrgbcolor +fill +grestore +newpath +6.817989e+01 8.774588e+01 moveto +6.466418e+01 8.801165e+01 lineto +6.46566e+01 8.800512e+01 lineto +6.825158e+01 8.78077e+01 lineto +6.817989e+01 8.774588e+01 lineto +closepath +gsave +5.095006e-01 5.095006e-01 5.095006e-01 setrgbcolor +fill +grestore +newpath +3.558434e+01 7.60756e+01 moveto +3.317036e+01 7.341247e+01 lineto +3.266476e+01 7.280359e+01 lineto +3.511708e+01 7.55129e+01 lineto +3.558434e+01 7.60756e+01 lineto +closepath +gsave +4.142778e-01 4.142778e-01 4.142778e-01 setrgbcolor +fill +grestore +newpath +3.8221e+01 7.851105e+01 moveto +3.558434e+01 7.60756e+01 lineto +3.511708e+01 7.55129e+01 lineto +3.779563e+01 7.799879e+01 lineto +3.8221e+01 7.851105e+01 lineto +closepath +gsave +4.1855e-01 4.1855e-01 4.1855e-01 setrgbcolor +fill +grestore +newpath +4.10604e+01 8.070038e+01 moveto +3.8221e+01 7.851105e+01 lineto +3.779563e+01 7.799879e+01 lineto +4.068013e+01 8.024243e+01 lineto +4.10604e+01 8.070038e+01 lineto +closepath +gsave +4.237942e-01 4.237942e-01 4.237942e-01 setrgbcolor +fill +grestore +newpath +4.408103e+01 8.262701e+01 moveto +4.10604e+01 8.070038e+01 lineto +4.068013e+01 8.024243e+01 lineto +4.374874e+01 8.222684e+01 lineto +4.408103e+01 8.262701e+01 lineto +closepath +gsave +4.301222e-01 4.301222e-01 4.301222e-01 setrgbcolor +fill +grestore +newpath +4.726002e+01 8.427635e+01 moveto +4.408103e+01 8.262701e+01 lineto +4.374874e+01 8.222684e+01 lineto +4.697823e+01 8.3937e+01 lineto +4.726002e+01 8.427635e+01 lineto +closepath +gsave +4.376299e-01 4.376299e-01 4.376299e-01 setrgbcolor +fill +grestore +newpath +5.057332e+01 8.563593e+01 moveto +4.726002e+01 8.427635e+01 lineto +4.697823e+01 8.3937e+01 lineto +5.034416e+01 8.535996e+01 lineto +5.057332e+01 8.563593e+01 lineto +closepath +gsave +4.463905e-01 4.463905e-01 4.463905e-01 setrgbcolor +fill +grestore +newpath +5.399583e+01 8.669545e+01 moveto +5.057332e+01 8.563593e+01 lineto +5.034416e+01 8.535996e+01 lineto +5.382103e+01 8.648494e+01 lineto +5.399583e+01 8.669545e+01 lineto +closepath +gsave +4.564463e-01 4.564463e-01 4.564463e-01 setrgbcolor +fill +grestore +newpath +5.750164e+01 8.744688e+01 moveto +5.399583e+01 8.669545e+01 lineto +5.382103e+01 8.648494e+01 lineto +5.738254e+01 8.730344e+01 lineto +5.750164e+01 8.744688e+01 lineto +closepath +gsave +4.67803e-01 4.67803e-01 4.67803e-01 setrgbcolor +fill +grestore +newpath +6.106423e+01 8.788454e+01 moveto +5.750164e+01 8.744688e+01 lineto +5.738254e+01 8.730344e+01 lineto +6.100171e+01 8.780925e+01 lineto +6.106423e+01 8.788454e+01 lineto +closepath +gsave +4.804229e-01 4.804229e-01 4.804229e-01 setrgbcolor +fill +grestore +newpath +6.46566e+01 8.800512e+01 moveto +6.106423e+01 8.788454e+01 lineto +6.100171e+01 8.780925e+01 lineto +6.465115e+01 8.799855e+01 lineto +6.46566e+01 8.800512e+01 lineto +closepath +gsave +4.942213e-01 4.942213e-01 4.942213e-01 setrgbcolor +fill +grestore +newpath +6.825158e+01 8.78077e+01 moveto +6.46566e+01 8.800512e+01 lineto +6.465115e+01 8.799855e+01 lineto +6.830323e+01 8.78699e+01 lineto +6.825158e+01 8.78077e+01 lineto +closepath +gsave +5.090638e-01 5.090638e-01 5.090638e-01 setrgbcolor +fill +grestore +newpath +2.851121e+01 6.679827e+01 moveto +2.684142e+01 6.354772e+01 lineto +2.648002e+01 6.282919e+01 lineto +2.816563e+01 6.611118e+01 lineto +2.851121e+01 6.679827e+01 lineto +closepath +gsave +4.080136e-01 4.080136e-01 4.080136e-01 setrgbcolor +fill +grestore +newpath +3.045723e+01 6.989136e+01 moveto +2.851121e+01 6.679827e+01 lineto +2.816563e+01 6.611118e+01 lineto +3.013009e+01 6.924092e+01 lineto +3.045723e+01 6.989136e+01 lineto +closepath +gsave +4.103672e-01 4.103672e-01 4.103672e-01 setrgbcolor +fill +grestore +newpath +3.266476e+01 7.280359e+01 moveto +3.045723e+01 6.989136e+01 lineto +3.013009e+01 6.924092e+01 lineto +3.235852e+01 7.219471e+01 lineto +3.266476e+01 7.280359e+01 lineto +closepath +gsave +4.13333e-01 4.13333e-01 4.13333e-01 setrgbcolor +fill +grestore +newpath +3.511708e+01 7.55129e+01 moveto +3.266476e+01 7.280359e+01 lineto +3.235852e+01 7.219471e+01 lineto +3.483407e+01 7.49502e+01 lineto +3.511708e+01 7.55129e+01 lineto +closepath +gsave +4.170133e-01 4.170133e-01 4.170133e-01 setrgbcolor +fill +grestore +newpath +3.779563e+01 7.799879e+01 moveto +3.511708e+01 7.55129e+01 lineto +3.483407e+01 7.49502e+01 lineto +3.753799e+01 7.748653e+01 lineto +3.779563e+01 7.799879e+01 lineto +closepath +gsave +4.215107e-01 4.215107e-01 4.215107e-01 setrgbcolor +fill +grestore +newpath +4.068013e+01 8.024243e+01 moveto +3.779563e+01 7.799879e+01 lineto +3.753799e+01 7.748653e+01 lineto +4.04498e+01 7.978448e+01 lineto +4.068013e+01 8.024243e+01 lineto +closepath +gsave +4.269226e-01 4.269226e-01 4.269226e-01 setrgbcolor +fill +grestore +newpath +4.374874e+01 8.222684e+01 moveto +4.068013e+01 8.024243e+01 lineto +4.04498e+01 7.978448e+01 lineto +4.354748e+01 8.182668e+01 lineto +4.374874e+01 8.222684e+01 lineto +closepath +gsave +4.33336e-01 4.33336e-01 4.33336e-01 setrgbcolor +fill +grestore +newpath +4.697823e+01 8.3937e+01 moveto +4.374874e+01 8.222684e+01 lineto +4.354748e+01 8.182668e+01 lineto +4.680755e+01 8.359765e+01 lineto +4.697823e+01 8.3937e+01 lineto +closepath +gsave +4.40821e-01 4.40821e-01 4.40821e-01 setrgbcolor +fill +grestore +newpath +5.034416e+01 8.535996e+01 moveto +4.697823e+01 8.3937e+01 lineto +4.680755e+01 8.359765e+01 lineto +5.020535e+01 8.508399e+01 lineto +5.034416e+01 8.535996e+01 lineto +closepath +gsave +4.494247e-01 4.494247e-01 4.494247e-01 setrgbcolor +fill +grestore +newpath +5.382103e+01 8.648494e+01 moveto +5.034416e+01 8.535996e+01 lineto +5.020535e+01 8.508399e+01 lineto +5.371516e+01 8.627444e+01 lineto +5.382103e+01 8.648494e+01 lineto +closepath +gsave +4.591655e-01 4.591655e-01 4.591655e-01 setrgbcolor +fill +grestore +newpath +5.738254e+01 8.730344e+01 moveto +5.382103e+01 8.648494e+01 lineto +5.371516e+01 8.627444e+01 lineto +5.731039e+01 8.716e+01 lineto +5.738254e+01 8.730344e+01 lineto +closepath +gsave +4.700275e-01 4.700275e-01 4.700275e-01 setrgbcolor +fill +grestore +newpath +6.100171e+01 8.780925e+01 moveto +5.738254e+01 8.730344e+01 lineto +5.731039e+01 8.716e+01 lineto +6.096384e+01 8.773396e+01 lineto +6.100171e+01 8.780925e+01 lineto +closepath +gsave +4.819564e-01 4.819564e-01 4.819564e-01 setrgbcolor +fill +grestore +newpath +6.465115e+01 8.799855e+01 moveto +6.100171e+01 8.780925e+01 lineto +6.096384e+01 8.773396e+01 lineto +6.464785e+01 8.799198e+01 lineto +6.465115e+01 8.799855e+01 lineto +closepath +gsave +4.948565e-01 4.948565e-01 4.948565e-01 setrgbcolor +fill +grestore +newpath +6.830323e+01 8.78699e+01 moveto +6.465115e+01 8.799855e+01 lineto +6.464785e+01 8.799198e+01 lineto +6.833452e+01 8.79321e+01 lineto +6.830323e+01 8.78699e+01 lineto +closepath +gsave +5.085896e-01 5.085896e-01 5.085896e-01 setrgbcolor +fill +grestore +newpath +2.399421e+01 5.590881e+01 moveto +2.321282e+01 5.232281e+01 lineto +2.30784e+01 5.154813e+01 lineto +2.386231e+01 5.514862e+01 lineto +2.399421e+01 5.590881e+01 lineto +closepath +gsave +4.053715e-01 4.053715e-01 4.053715e-01 setrgbcolor +fill +grestore +newpath +2.508603e+01 5.941979e+01 moveto +2.399421e+01 5.590881e+01 lineto +2.386231e+01 5.514862e+01 lineto +2.495765e+01 5.867985e+01 lineto +2.508603e+01 5.941979e+01 lineto +closepath +gsave +4.066883e-01 4.066883e-01 4.066883e-01 setrgbcolor +fill +grestore +newpath +2.648002e+01 6.282919e+01 moveto +2.508603e+01 5.941979e+01 lineto +2.495765e+01 5.867985e+01 lineto +2.635612e+01 6.211508e+01 lineto +2.648002e+01 6.282919e+01 lineto +closepath +gsave +4.083717e-01 4.083717e-01 4.083717e-01 setrgbcolor +fill +grestore +newpath +2.816563e+01 6.611118e+01 moveto +2.648002e+01 6.282919e+01 lineto +2.635612e+01 6.211508e+01 lineto +2.804715e+01 6.542832e+01 lineto +2.816563e+01 6.611118e+01 lineto +closepath +gsave +4.104953e-01 4.104953e-01 4.104953e-01 setrgbcolor +fill +grestore +newpath +3.013009e+01 6.924092e+01 moveto +2.816563e+01 6.611118e+01 lineto +2.804715e+01 6.542832e+01 lineto +3.001792e+01 6.859448e+01 lineto +3.013009e+01 6.924092e+01 lineto +closepath +gsave +4.131389e-01 4.131389e-01 4.131389e-01 setrgbcolor +fill +grestore +newpath +3.235852e+01 7.219471e+01 moveto +3.013009e+01 6.924092e+01 lineto +3.001792e+01 6.859448e+01 lineto +3.225353e+01 7.158959e+01 lineto +3.235852e+01 7.219471e+01 lineto +closepath +gsave +4.163863e-01 4.163863e-01 4.163863e-01 setrgbcolor +fill +grestore +newpath +3.483407e+01 7.49502e+01 moveto +3.235852e+01 7.219471e+01 lineto +3.225353e+01 7.158959e+01 lineto +3.473704e+01 7.439097e+01 lineto +3.483407e+01 7.49502e+01 lineto +closepath +gsave +4.203225e-01 4.203225e-01 4.203225e-01 setrgbcolor +fill +grestore +newpath +3.753799e+01 7.748653e+01 moveto +3.483407e+01 7.49502e+01 lineto +3.473704e+01 7.439097e+01 lineto +3.744965e+01 7.697742e+01 lineto +3.753799e+01 7.748653e+01 lineto +closepath +gsave +4.250291e-01 4.250291e-01 4.250291e-01 setrgbcolor +fill +grestore +newpath +4.04498e+01 7.978448e+01 moveto +3.753799e+01 7.748653e+01 lineto +3.744965e+01 7.697742e+01 lineto +4.037083e+01 7.932936e+01 lineto +4.04498e+01 7.978448e+01 lineto +closepath +gsave +4.305805e-01 4.305805e-01 4.305805e-01 setrgbcolor +fill +grestore +newpath +4.354748e+01 8.182668e+01 moveto +4.04498e+01 7.978448e+01 lineto +4.037083e+01 7.932936e+01 lineto +4.347847e+01 8.142898e+01 lineto +4.354748e+01 8.182668e+01 lineto +closepath +gsave +4.370387e-01 4.370387e-01 4.370387e-01 setrgbcolor +fill +grestore +newpath +4.680755e+01 8.359765e+01 moveto +4.354748e+01 8.182668e+01 lineto +4.347847e+01 8.142898e+01 lineto +4.674903e+01 8.326038e+01 lineto +4.680755e+01 8.359765e+01 lineto +closepath +gsave +4.444485e-01 4.444485e-01 4.444485e-01 setrgbcolor +fill +grestore +newpath +5.020535e+01 8.508399e+01 moveto +4.680755e+01 8.359765e+01 lineto +4.674903e+01 8.326038e+01 lineto +5.015777e+01 8.480971e+01 lineto +5.020535e+01 8.508399e+01 lineto +closepath +gsave +4.528323e-01 4.528323e-01 4.528323e-01 setrgbcolor +fill +grestore +newpath +5.371516e+01 8.627444e+01 moveto +5.020535e+01 8.508399e+01 lineto +5.015777e+01 8.480971e+01 lineto +5.367886e+01 8.606524e+01 lineto +5.371516e+01 8.627444e+01 lineto +closepath +gsave +4.621856e-01 4.621856e-01 4.621856e-01 setrgbcolor +fill +grestore +newpath +5.731039e+01 8.716e+01 moveto +5.371516e+01 8.627444e+01 lineto +5.367886e+01 8.606524e+01 lineto +5.728566e+01 8.701745e+01 lineto +5.731039e+01 8.716e+01 lineto +closepath +gsave +4.724735e-01 4.724735e-01 4.724735e-01 setrgbcolor +fill +grestore +newpath +6.096384e+01 8.773396e+01 moveto +5.731039e+01 8.716e+01 lineto +5.728566e+01 8.701745e+01 lineto +6.095086e+01 8.765914e+01 lineto +6.096384e+01 8.773396e+01 lineto +closepath +gsave +4.836272e-01 4.836272e-01 4.836272e-01 setrgbcolor +fill +grestore +newpath +6.464785e+01 8.799198e+01 moveto +6.096384e+01 8.773396e+01 lineto +6.095086e+01 8.765914e+01 lineto +6.464671e+01 8.798545e+01 lineto +6.464785e+01 8.799198e+01 lineto +closepath +gsave +4.955428e-01 4.955428e-01 4.955428e-01 setrgbcolor +fill +grestore +newpath +6.833452e+01 8.79321e+01 moveto +6.464785e+01 8.799198e+01 lineto +6.464671e+01 8.798545e+01 lineto +6.834524e+01 8.799392e+01 lineto +6.833452e+01 8.79321e+01 lineto +closepath +gsave +5.080812e-01 5.080812e-01 5.080812e-01 setrgbcolor +fill +grestore +newpath +2.264257e+01 4.060507e+01 moveto +2.313959e+01 3.700225e+01 lineto +2.326346e+01 3.623828e+01 lineto +2.276791e+01 3.983203e+01 lineto +2.264257e+01 4.060507e+01 lineto +closepath +gsave +4.040792e-01 4.040792e-01 4.040792e-01 setrgbcolor +fill +grestore +newpath +2.246622e+01 4.424873e+01 moveto +2.264257e+01 4.060507e+01 lineto +2.276791e+01 3.983203e+01 lineto +2.259208e+01 4.347246e+01 lineto +2.246622e+01 4.424873e+01 lineto +closepath +gsave +4.046495e-01 4.046495e-01 4.046495e-01 setrgbcolor +fill +grestore +newpath +2.261186e+01 4.790564e+01 moveto +2.246622e+01 4.424873e+01 lineto +2.259208e+01 4.347246e+01 lineto +2.273729e+01 4.713204e+01 lineto +2.261186e+01 4.790564e+01 lineto +closepath +gsave +4.054102e-01 4.054102e-01 4.054102e-01 setrgbcolor +fill +grestore +newpath +2.30784e+01 5.154813e+01 moveto +2.261186e+01 4.790564e+01 lineto +2.273729e+01 4.713204e+01 lineto +2.320245e+01 5.078304e+01 lineto +2.30784e+01 5.154813e+01 lineto +closepath +gsave +4.063991e-01 4.063991e-01 4.063991e-01 setrgbcolor +fill +grestore +newpath +2.386231e+01 5.514862e+01 moveto +2.30784e+01 5.154813e+01 lineto +2.320245e+01 5.078304e+01 lineto +2.398404e+01 5.439784e+01 lineto +2.386231e+01 5.514862e+01 lineto +closepath +gsave +4.076618e-01 4.076618e-01 4.076618e-01 setrgbcolor +fill +grestore +newpath +2.495765e+01 5.867985e+01 moveto +2.386231e+01 5.514862e+01 lineto +2.398404e+01 5.439784e+01 lineto +2.507613e+01 5.794906e+01 lineto +2.495765e+01 5.867985e+01 lineto +closepath +gsave +4.092507e-01 4.092507e-01 4.092507e-01 setrgbcolor +fill +grestore +newpath +2.635612e+01 6.211508e+01 moveto +2.495765e+01 5.867985e+01 lineto +2.507613e+01 5.794906e+01 lineto +2.647047e+01 6.140981e+01 lineto +2.635612e+01 6.211508e+01 lineto +closepath +gsave +4.112247e-01 4.112247e-01 4.112247e-01 setrgbcolor +fill +grestore +newpath +2.804715e+01 6.542832e+01 moveto +2.635612e+01 6.211508e+01 lineto +2.647047e+01 6.140981e+01 lineto +2.815649e+01 6.475391e+01 lineto +2.804715e+01 6.542832e+01 lineto +closepath +gsave +4.13648e-01 4.13648e-01 4.13648e-01 setrgbcolor +fill +grestore +newpath +3.001792e+01 6.859448e+01 moveto +2.804715e+01 6.542832e+01 lineto +2.815649e+01 6.475391e+01 lineto +3.012144e+01 6.795604e+01 lineto +3.001792e+01 6.859448e+01 lineto +closepath +gsave +4.165877e-01 4.165877e-01 4.165877e-01 setrgbcolor +fill +grestore +newpath +3.225353e+01 7.158959e+01 moveto +3.001792e+01 6.859448e+01 lineto +3.012144e+01 6.795604e+01 lineto +3.235043e+01 7.099195e+01 lineto +3.225353e+01 7.158959e+01 lineto +closepath +gsave +4.201119e-01 4.201119e-01 4.201119e-01 setrgbcolor +fill +grestore +newpath +3.473704e+01 7.439097e+01 moveto +3.225353e+01 7.158959e+01 lineto +3.235043e+01 7.099195e+01 lineto +3.482659e+01 7.383866e+01 lineto +3.473704e+01 7.439097e+01 lineto +closepath +gsave +4.242867e-01 4.242867e-01 4.242867e-01 setrgbcolor +fill +grestore +newpath +3.744965e+01 7.697742e+01 moveto +3.473704e+01 7.439097e+01 lineto +3.482659e+01 7.383866e+01 lineto +3.753118e+01 7.647461e+01 lineto +3.744965e+01 7.697742e+01 lineto +closepath +gsave +4.291726e-01 4.291726e-01 4.291726e-01 setrgbcolor +fill +grestore +newpath +4.037083e+01 7.932936e+01 moveto +3.744965e+01 7.697742e+01 lineto +3.753118e+01 7.647461e+01 lineto +4.044371e+01 7.887986e+01 lineto +4.037083e+01 7.932936e+01 lineto +closepath +gsave +4.348207e-01 4.348207e-01 4.348207e-01 setrgbcolor +fill +grestore +newpath +4.347847e+01 8.142898e+01 moveto +4.037083e+01 7.932936e+01 lineto +4.044371e+01 7.887986e+01 lineto +4.354215e+01 8.10362e+01 lineto +4.347847e+01 8.142898e+01 lineto +closepath +gsave +4.412687e-01 4.412687e-01 4.412687e-01 setrgbcolor +fill +grestore +newpath +4.674903e+01 8.326038e+01 moveto +4.347847e+01 8.142898e+01 lineto +4.354215e+01 8.10362e+01 lineto +4.680304e+01 8.29273e+01 lineto +4.674903e+01 8.326038e+01 lineto +closepath +gsave +4.485372e-01 4.485372e-01 4.485372e-01 setrgbcolor +fill +grestore +newpath +5.015777e+01 8.480971e+01 moveto +4.674903e+01 8.326038e+01 lineto +4.680304e+01 8.29273e+01 lineto +5.020168e+01 8.453884e+01 lineto +5.015777e+01 8.480971e+01 lineto +closepath +gsave +4.566258e-01 4.566258e-01 4.566258e-01 setrgbcolor +fill +grestore +newpath +5.367886e+01 8.606524e+01 moveto +5.015777e+01 8.480971e+01 lineto +5.020168e+01 8.453884e+01 lineto +5.371236e+01 8.585862e+01 lineto +5.367886e+01 8.606524e+01 lineto +closepath +gsave +4.655098e-01 4.655098e-01 4.655098e-01 setrgbcolor +fill +grestore +newpath +5.728566e+01 8.701745e+01 moveto +5.367886e+01 8.606524e+01 lineto +5.371236e+01 8.585862e+01 lineto +5.730849e+01 8.687666e+01 lineto +5.728566e+01 8.701745e+01 lineto +closepath +gsave +4.751377e-01 4.751377e-01 4.751377e-01 setrgbcolor +fill +grestore +newpath +6.095086e+01 8.765914e+01 moveto +5.728566e+01 8.701745e+01 lineto +5.730849e+01 8.687666e+01 lineto +6.096284e+01 8.758524e+01 lineto +6.095086e+01 8.765914e+01 lineto +closepath +gsave +4.854295e-01 4.854295e-01 4.854295e-01 setrgbcolor +fill +grestore +newpath +6.464671e+01 8.798545e+01 moveto +6.095086e+01 8.765914e+01 lineto +6.096284e+01 8.758524e+01 lineto +6.464776e+01 8.797901e+01 lineto +6.464671e+01 8.798545e+01 lineto +closepath +gsave +4.962766e-01 4.962766e-01 4.962766e-01 setrgbcolor +fill +grestore +newpath +6.834524e+01 8.799392e+01 moveto +6.464671e+01 8.798545e+01 lineto +6.464776e+01 8.797901e+01 lineto +6.833534e+01 8.805497e+01 lineto +6.834524e+01 8.799392e+01 lineto +closepath +gsave +5.075421e-01 5.075421e-01 5.075421e-01 setrgbcolor +fill +grestore +newpath +2.51963e+01 2.929914e+01 moveto +2.661897e+01 2.600627e+01 lineto +2.696951e+01 2.531685e+01 lineto +2.555984e+01 2.858416e+01 lineto +2.51963e+01 2.929914e+01 lineto +closepath +gsave +4.049069e-01 4.049069e-01 4.049069e-01 setrgbcolor +fill +grestore +newpath +2.407497e+01 3.271844e+01 moveto +2.51963e+01 2.929914e+01 lineto +2.555984e+01 2.858416e+01 lineto +2.444874e+01 3.198332e+01 lineto +2.407497e+01 3.271844e+01 lineto +closepath +gsave +4.051705e-01 4.051705e-01 4.051705e-01 setrgbcolor +fill +grestore +newpath +2.326346e+01 3.623828e+01 moveto +2.407497e+01 3.271844e+01 lineto +2.444874e+01 3.198332e+01 lineto +2.364464e+01 3.548858e+01 lineto +2.326346e+01 3.623828e+01 lineto +closepath +gsave +4.055818e-01 4.055818e-01 4.055818e-01 setrgbcolor +fill +grestore +newpath +2.276791e+01 3.983203e+01 moveto +2.326346e+01 3.623828e+01 lineto +2.364464e+01 3.548858e+01 lineto +2.315362e+01 3.907343e+01 lineto +2.276791e+01 3.983203e+01 lineto +closepath +gsave +4.061587e-01 4.061587e-01 4.061587e-01 setrgbcolor +fill +grestore +newpath +2.259208e+01 4.347246e+01 moveto +2.276791e+01 3.983203e+01 lineto +2.315362e+01 3.907343e+01 lineto +2.297939e+01 4.271071e+01 lineto +2.259208e+01 4.347246e+01 lineto +closepath +gsave +4.069254e-01 4.069254e-01 4.069254e-01 setrgbcolor +fill +grestore +newpath +2.273729e+01 4.713204e+01 moveto +2.259208e+01 4.347246e+01 lineto +2.297939e+01 4.271071e+01 lineto +2.312328e+01 4.637289e+01 lineto +2.273729e+01 4.713204e+01 lineto +closepath +gsave +4.079122e-01 4.079122e-01 4.079122e-01 setrgbcolor +fill +grestore +newpath +2.320245e+01 5.078304e+01 moveto +2.273729e+01 4.713204e+01 lineto +2.312328e+01 4.637289e+01 lineto +2.358419e+01 5.003225e+01 lineto +2.320245e+01 5.078304e+01 lineto +closepath +gsave +4.091554e-01 4.091554e-01 4.091554e-01 setrgbcolor +fill +grestore +newpath +2.398404e+01 5.439784e+01 moveto +2.320245e+01 5.078304e+01 lineto +2.358419e+01 5.003225e+01 lineto +2.435864e+01 5.366108e+01 lineto +2.398404e+01 5.439784e+01 lineto +closepath +gsave +4.106969e-01 4.106969e-01 4.106969e-01 setrgbcolor +fill +grestore +newpath +2.507613e+01 5.794906e+01 moveto +2.398404e+01 5.439784e+01 lineto +2.435864e+01 5.366108e+01 lineto +2.544076e+01 5.723192e+01 lineto +2.507613e+01 5.794906e+01 lineto +closepath +gsave +4.125832e-01 4.125832e-01 4.125832e-01 setrgbcolor +fill +grestore +newpath +2.647047e+01 6.140981e+01 moveto +2.507613e+01 5.794906e+01 lineto +2.544076e+01 5.723192e+01 lineto +2.682237e+01 6.071772e+01 lineto +2.647047e+01 6.140981e+01 lineto +closepath +gsave +4.148649e-01 4.148649e-01 4.148649e-01 setrgbcolor +fill +grestore +newpath +2.815649e+01 6.475391e+01 moveto +2.647047e+01 6.140981e+01 lineto +2.682237e+01 6.071772e+01 lineto +2.849299e+01 6.409211e+01 lineto +2.815649e+01 6.475391e+01 lineto +closepath +gsave +4.175945e-01 4.175945e-01 4.175945e-01 setrgbcolor +fill +grestore +newpath +3.012144e+01 6.795604e+01 moveto +2.815649e+01 6.475391e+01 lineto +2.849299e+01 6.409211e+01 lineto +3.043999e+01 6.732953e+01 lineto +3.012144e+01 6.795604e+01 lineto +closepath +gsave +4.208252e-01 4.208252e-01 4.208252e-01 setrgbcolor +fill +grestore +newpath +3.235043e+01 7.099195e+01 moveto +3.012144e+01 6.795604e+01 lineto +3.043999e+01 6.732953e+01 lineto +3.264862e+01 7.040548e+01 lineto +3.235043e+01 7.099195e+01 lineto +closepath +gsave +4.246081e-01 4.246081e-01 4.246081e-01 setrgbcolor +fill +grestore +newpath +3.482659e+01 7.383866e+01 moveto +3.235043e+01 7.099195e+01 lineto +3.264862e+01 7.040548e+01 lineto +3.510217e+01 7.329666e+01 lineto +3.482659e+01 7.383866e+01 lineto +closepath +gsave +4.289899e-01 4.289899e-01 4.289899e-01 setrgbcolor +fill +grestore +newpath +3.753118e+01 7.647461e+01 moveto +3.482659e+01 7.383866e+01 lineto +3.510217e+01 7.329666e+01 lineto +3.778205e+01 7.59812e+01 lineto +3.753118e+01 7.647461e+01 lineto +closepath +gsave +4.340095e-01 4.340095e-01 4.340095e-01 setrgbcolor +fill +grestore +newpath +4.044371e+01 7.887986e+01 moveto +3.753118e+01 7.647461e+01 lineto +3.778205e+01 7.59812e+01 lineto +4.066799e+01 7.843877e+01 lineto +4.044371e+01 7.887986e+01 lineto +closepath +gsave +4.396955e-01 4.396955e-01 4.396955e-01 setrgbcolor +fill +grestore +newpath +4.354215e+01 8.10362e+01 moveto +4.044371e+01 7.887986e+01 lineto +4.066799e+01 7.843877e+01 lineto +4.373813e+01 8.065076e+01 lineto +4.354215e+01 8.10362e+01 lineto +closepath +gsave +4.460629e-01 4.460629e-01 4.460629e-01 setrgbcolor +fill +grestore +newpath +4.680304e+01 8.29273e+01 moveto +4.354215e+01 8.10362e+01 lineto +4.373813e+01 8.065076e+01 lineto +4.696924e+01 8.260043e+01 lineto +4.680304e+01 8.29273e+01 lineto +closepath +gsave +4.5311e-01 4.5311e-01 4.5311e-01 setrgbcolor +fill +grestore +newpath +5.020168e+01 8.453884e+01 moveto +4.680304e+01 8.29273e+01 lineto +4.696924e+01 8.260043e+01 lineto +5.033684e+01 8.427302e+01 lineto +5.020168e+01 8.453884e+01 lineto +closepath +gsave +4.608161e-01 4.608161e-01 4.608161e-01 setrgbcolor +fill +grestore +newpath +5.371236e+01 8.585862e+01 moveto +5.020168e+01 8.453884e+01 lineto +5.033684e+01 8.427302e+01 lineto +5.381545e+01 8.565587e+01 lineto +5.371236e+01 8.585862e+01 lineto +closepath +gsave +4.691393e-01 4.691393e-01 4.691393e-01 setrgbcolor +fill +grestore +newpath +5.730849e+01 8.687666e+01 moveto +5.371236e+01 8.585862e+01 lineto +5.381545e+01 8.565587e+01 lineto +5.737873e+01 8.67385e+01 lineto +5.730849e+01 8.687666e+01 lineto +closepath +gsave +4.780153e-01 4.780153e-01 4.780153e-01 setrgbcolor +fill +grestore +newpath +6.096284e+01 8.758524e+01 moveto +5.730849e+01 8.687666e+01 lineto +5.737873e+01 8.67385e+01 lineto +6.099971e+01 8.751272e+01 lineto +6.096284e+01 8.758524e+01 lineto +closepath +gsave +4.873569e-01 4.873569e-01 4.873569e-01 setrgbcolor +fill +grestore +newpath +6.464776e+01 8.797901e+01 moveto +6.096284e+01 8.758524e+01 lineto +6.099971e+01 8.751272e+01 lineto +6.465098e+01 8.797268e+01 lineto +6.464776e+01 8.797901e+01 lineto +closepath +gsave +4.970541e-01 4.970541e-01 4.970541e-01 setrgbcolor +fill +grestore +newpath +6.833534e+01 8.805497e+01 moveto +6.464776e+01 8.797901e+01 lineto +6.465098e+01 8.797268e+01 lineto +6.830488e+01 8.811488e+01 lineto +6.833534e+01 8.805497e+01 lineto +closepath +gsave +5.069758e-01 5.069758e-01 5.069758e-01 setrgbcolor +fill +grestore +newpath +3.063972e+01 1.927552e+01 moveto +3.287248e+01 1.654724e+01 lineto +3.336668e+01 1.597951e+01 lineto +3.116827e+01 1.866834e+01 lineto +3.063972e+01 1.927552e+01 lineto +closepath +gsave +4.068204e-01 4.068204e-01 4.068204e-01 setrgbcolor +fill +grestore +newpath +2.866709e+01 2.220612e+01 moveto +3.063972e+01 1.927552e+01 lineto +3.116827e+01 1.866834e+01 lineto +2.922598e+01 2.156408e+01 lineto +2.866709e+01 2.220612e+01 lineto +closepath +gsave +4.067887e-01 4.067887e-01 4.067887e-01 setrgbcolor +fill +grestore +newpath +2.696951e+01 2.531685e+01 moveto +2.866709e+01 2.220612e+01 lineto +2.922598e+01 2.156408e+01 lineto +2.755452e+01 2.464481e+01 lineto +2.696951e+01 2.531685e+01 lineto +closepath +gsave +4.069034e-01 4.069034e-01 4.069034e-01 setrgbcolor +fill +grestore +newpath +2.555984e+01 2.858416e+01 moveto +2.696951e+01 2.531685e+01 lineto +2.755452e+01 2.464481e+01 lineto +2.616653e+01 2.788721e+01 lineto +2.555984e+01 2.858416e+01 lineto +closepath +gsave +4.071685e-01 4.071685e-01 4.071685e-01 setrgbcolor +fill +grestore +newpath +2.444874e+01 3.198332e+01 moveto +2.555984e+01 2.858416e+01 lineto +2.616653e+01 2.788721e+01 lineto +2.507253e+01 3.126673e+01 lineto +2.444874e+01 3.198332e+01 lineto +closepath +gsave +4.075931e-01 4.075931e-01 4.075931e-01 setrgbcolor +fill +grestore +newpath +2.364464e+01 3.548858e+01 moveto +2.444874e+01 3.198332e+01 lineto +2.507253e+01 3.126673e+01 lineto +2.42808e+01 3.475779e+01 lineto +2.364464e+01 3.548858e+01 lineto +closepath +gsave +4.081915e-01 4.081915e-01 4.081915e-01 setrgbcolor +fill +grestore +newpath +2.315362e+01 3.907343e+01 moveto +2.364464e+01 3.548858e+01 lineto +2.42808e+01 3.475779e+01 lineto +2.379733e+01 3.833396e+01 lineto +2.315362e+01 3.907343e+01 lineto +closepath +gsave +4.089829e-01 4.089829e-01 4.089829e-01 setrgbcolor +fill +grestore +newpath +2.297939e+01 4.271071e+01 moveto +2.315362e+01 3.907343e+01 lineto +2.379733e+01 3.833396e+01 lineto +2.362578e+01 4.196816e+01 lineto +2.297939e+01 4.271071e+01 lineto +closepath +gsave +4.099917e-01 4.099917e-01 4.099917e-01 setrgbcolor +fill +grestore +newpath +2.312328e+01 4.637289e+01 moveto +2.297939e+01 4.271071e+01 lineto +2.362578e+01 4.196816e+01 lineto +2.376746e+01 4.563288e+01 lineto +2.312328e+01 4.637289e+01 lineto +closepath +gsave +4.112466e-01 4.112466e-01 4.112466e-01 setrgbcolor +fill +grestore +newpath +2.358419e+01 5.003225e+01 moveto +2.312328e+01 4.637289e+01 lineto +2.376746e+01 4.563288e+01 lineto +2.422128e+01 4.930039e+01 lineto +2.358419e+01 5.003225e+01 lineto +closepath +gsave +4.127805e-01 4.127805e-01 4.127805e-01 setrgbcolor +fill +grestore +newpath +2.435864e+01 5.366108e+01 moveto +2.358419e+01 5.003225e+01 lineto +2.422128e+01 4.930039e+01 lineto +2.498382e+01 5.294291e+01 lineto +2.435864e+01 5.366108e+01 lineto +closepath +gsave +4.146298e-01 4.146298e-01 4.146298e-01 setrgbcolor +fill +grestore +newpath +2.544076e+01 5.723192e+01 moveto +2.435864e+01 5.366108e+01 lineto +2.498382e+01 5.294291e+01 lineto +2.604929e+01 5.653286e+01 lineto +2.544076e+01 5.723192e+01 lineto +closepath +gsave +4.168333e-01 4.168333e-01 4.168333e-01 setrgbcolor +fill +grestore +newpath +2.682237e+01 6.071772e+01 moveto +2.544076e+01 5.723192e+01 lineto +2.604929e+01 5.653286e+01 lineto +2.740964e+01 6.004308e+01 lineto +2.682237e+01 6.071772e+01 lineto +closepath +gsave +4.19431e-01 4.19431e-01 4.19431e-01 setrgbcolor +fill +grestore +newpath +2.849299e+01 6.409211e+01 moveto +2.682237e+01 6.071772e+01 lineto +2.740964e+01 6.004308e+01 lineto +2.905457e+01 6.344699e+01 lineto +2.849299e+01 6.409211e+01 lineto +closepath +gsave +4.224628e-01 4.224628e-01 4.224628e-01 setrgbcolor +fill +grestore +newpath +3.043999e+01 6.732953e+01 moveto +2.849299e+01 6.409211e+01 lineto +2.905457e+01 6.344699e+01 lineto +3.097161e+01 6.671882e+01 lineto +3.043999e+01 6.732953e+01 lineto +closepath +gsave +4.259662e-01 4.259662e-01 4.259662e-01 setrgbcolor +fill +grestore +newpath +3.264862e+01 7.040548e+01 moveto +3.043999e+01 6.732953e+01 lineto +3.097161e+01 6.671882e+01 lineto +3.314627e+01 6.983379e+01 lineto +3.264862e+01 7.040548e+01 lineto +closepath +gsave +4.299747e-01 4.299747e-01 4.299747e-01 setrgbcolor +fill +grestore +newpath +3.510217e+01 7.329666e+01 moveto +3.264862e+01 7.040548e+01 lineto +3.314627e+01 6.983379e+01 lineto +3.556207e+01 7.276833e+01 lineto +3.510217e+01 7.329666e+01 lineto +closepath +gsave +4.345153e-01 4.345153e-01 4.345153e-01 setrgbcolor +fill +grestore +newpath +3.778205e+01 7.59812e+01 moveto +3.510217e+01 7.329666e+01 lineto +3.556207e+01 7.276833e+01 lineto +3.820074e+01 7.550023e+01 lineto +3.778205e+01 7.59812e+01 lineto +closepath +gsave +4.396063e-01 4.396063e-01 4.396063e-01 setrgbcolor +fill +grestore +newpath +4.066799e+01 7.843877e+01 moveto +3.778205e+01 7.59812e+01 lineto +3.820074e+01 7.550023e+01 lineto +4.104228e+01 7.80088e+01 lineto +4.066799e+01 7.843877e+01 lineto +closepath +gsave +4.452549e-01 4.452549e-01 4.452549e-01 setrgbcolor +fill +grestore +newpath +4.373813e+01 8.065076e+01 moveto +4.066799e+01 7.843877e+01 lineto +4.104228e+01 7.80088e+01 lineto +4.40652e+01 8.027504e+01 lineto +4.373813e+01 8.065076e+01 lineto +closepath +gsave +4.514552e-01 4.514552e-01 4.514552e-01 setrgbcolor +fill +grestore +newpath +4.696924e+01 8.260043e+01 moveto +4.373813e+01 8.065076e+01 lineto +4.40652e+01 8.027504e+01 lineto +4.72466e+01 8.228181e+01 lineto +4.696924e+01 8.260043e+01 lineto +closepath +gsave +4.581863e-01 4.581863e-01 4.581863e-01 setrgbcolor +fill +grestore +newpath +5.033684e+01 8.427302e+01 moveto +4.696924e+01 8.260043e+01 lineto +4.72466e+01 8.228181e+01 lineto +5.05624e+01 8.401391e+01 lineto +5.033684e+01 8.427302e+01 lineto +closepath +gsave +4.654105e-01 4.654105e-01 4.654105e-01 setrgbcolor +fill +grestore +newpath +5.381545e+01 8.565587e+01 moveto +5.033684e+01 8.427302e+01 lineto +5.05624e+01 8.401391e+01 lineto +5.39875e+01 8.545822e+01 lineto +5.381545e+01 8.565587e+01 lineto +closepath +gsave +4.730727e-01 4.730727e-01 4.730727e-01 setrgbcolor +fill +grestore +newpath +5.737873e+01 8.67385e+01 moveto +5.381545e+01 8.565587e+01 lineto +5.39875e+01 8.545822e+01 lineto +5.749597e+01 8.660382e+01 lineto +5.737873e+01 8.67385e+01 lineto +closepath +gsave +4.811e-01 4.811e-01 4.811e-01 setrgbcolor +fill +grestore +newpath +6.099971e+01 8.751272e+01 moveto +5.737873e+01 8.67385e+01 lineto +5.749597e+01 8.660382e+01 lineto +6.106125e+01 8.744203e+01 lineto +6.099971e+01 8.751272e+01 lineto +closepath +gsave +4.894017e-01 4.894017e-01 4.894017e-01 setrgbcolor +fill +grestore +newpath +6.465098e+01 8.797268e+01 moveto +6.099971e+01 8.751272e+01 lineto +6.106125e+01 8.744203e+01 lineto +6.465634e+01 8.796651e+01 lineto +6.465098e+01 8.797268e+01 lineto +closepath +gsave +4.978709e-01 4.978709e-01 4.978709e-01 setrgbcolor +fill +grestore +newpath +6.830488e+01 8.811488e+01 moveto +6.465098e+01 8.797268e+01 lineto +6.465634e+01 8.796651e+01 lineto +6.825404e+01 8.817328e+01 lineto +6.830488e+01 8.811488e+01 lineto +closepath +gsave +5.063862e-01 5.063862e-01 5.063862e-01 setrgbcolor +fill +grestore +newpath +3.580457e+01 1.351795e+01 moveto +3.846348e+01 1.13023e+01 lineto +3.904167e+01 1.084129e+01 lineto +3.644069e+01 1.301076e+01 lineto +3.580457e+01 1.351795e+01 lineto +closepath +gsave +4.094772e-01 4.094772e-01 4.094772e-01 setrgbcolor +fill +grestore +newpath +3.336668e+01 1.597951e+01 moveto +3.580457e+01 1.351795e+01 lineto +3.644069e+01 1.301076e+01 lineto +3.405592e+01 1.542996e+01 lineto +3.336668e+01 1.597951e+01 lineto +closepath +gsave +4.0929e-01 4.0929e-01 4.0929e-01 setrgbcolor +fill +grestore +newpath +3.116827e+01 1.866834e+01 moveto +3.336668e+01 1.597951e+01 lineto +3.405592e+01 1.542996e+01 lineto +3.190541e+01 1.80806e+01 lineto +3.116827e+01 1.866834e+01 lineto +closepath +gsave +4.092627e-01 4.092627e-01 4.092627e-01 setrgbcolor +fill +grestore +newpath +2.922598e+01 2.156408e+01 moveto +3.116827e+01 1.866834e+01 lineto +3.190541e+01 1.80806e+01 lineto +3.000544e+01 2.09426e+01 lineto +2.922598e+01 2.156408e+01 lineto +closepath +gsave +4.093947e-01 4.093947e-01 4.093947e-01 setrgbcolor +fill +grestore +newpath +2.755452e+01 2.464481e+01 moveto +2.922598e+01 2.156408e+01 lineto +3.000544e+01 2.09426e+01 lineto +2.837039e+01 2.399429e+01 lineto +2.755452e+01 2.464481e+01 lineto +closepath +gsave +4.096894e-01 4.096894e-01 4.096894e-01 setrgbcolor +fill +grestore +newpath +2.616653e+01 2.788721e+01 moveto +2.755452e+01 2.464481e+01 lineto +2.837039e+01 2.399429e+01 lineto +2.701265e+01 2.721258e+01 lineto +2.616653e+01 2.788721e+01 lineto +closepath +gsave +4.101543e-01 4.101543e-01 4.101543e-01 setrgbcolor +fill +grestore +newpath +2.507253e+01 3.126673e+01 moveto +2.616653e+01 2.788721e+01 lineto +2.701265e+01 2.721258e+01 lineto +2.594248e+01 3.057309e+01 lineto +2.507253e+01 3.126673e+01 lineto +closepath +gsave +4.108014e-01 4.108014e-01 4.108014e-01 setrgbcolor +fill +grestore +newpath +2.42808e+01 3.475779e+01 moveto +2.507253e+01 3.126673e+01 lineto +2.594248e+01 3.057309e+01 lineto +2.5168e+01 3.40504e+01 lineto +2.42808e+01 3.475779e+01 lineto +closepath +gsave +4.116462e-01 4.116462e-01 4.116462e-01 setrgbcolor +fill +grestore +newpath +2.379733e+01 3.833396e+01 moveto +2.42808e+01 3.475779e+01 lineto +2.5168e+01 3.40504e+01 lineto +2.469507e+01 3.761817e+01 lineto +2.379733e+01 3.833396e+01 lineto +closepath +gsave +4.127081e-01 4.127081e-01 4.127081e-01 setrgbcolor +fill +grestore +newpath +2.362578e+01 4.196816e+01 moveto +2.379733e+01 3.833396e+01 lineto +2.469507e+01 3.761817e+01 lineto +2.452726e+01 4.124939e+01 lineto +2.362578e+01 4.196816e+01 lineto +closepath +gsave +4.140099e-01 4.140099e-01 4.140099e-01 setrgbcolor +fill +grestore +newpath +2.376746e+01 4.563288e+01 moveto +2.362578e+01 4.196816e+01 lineto +2.452726e+01 4.124939e+01 lineto +2.466585e+01 4.491657e+01 lineto +2.376746e+01 4.563288e+01 lineto +closepath +gsave +4.15577e-01 4.15577e-01 4.15577e-01 setrgbcolor +fill +grestore +newpath +2.422128e+01 4.930039e+01 moveto +2.376746e+01 4.563288e+01 lineto +2.466585e+01 4.491657e+01 lineto +2.510978e+01 4.859196e+01 lineto +2.422128e+01 4.930039e+01 lineto +closepath +gsave +4.174372e-01 4.174372e-01 4.174372e-01 setrgbcolor +fill +grestore +newpath +2.498382e+01 5.294291e+01 moveto +2.422128e+01 4.930039e+01 lineto +2.510978e+01 4.859196e+01 lineto +2.58557e+01 5.224773e+01 lineto +2.498382e+01 5.294291e+01 lineto +closepath +gsave +4.196194e-01 4.196194e-01 4.196194e-01 setrgbcolor +fill +grestore +newpath +2.604929e+01 5.653286e+01 moveto +2.498382e+01 5.294291e+01 lineto +2.58557e+01 5.224773e+01 lineto +2.689796e+01 5.58562e+01 lineto +2.604929e+01 5.653286e+01 lineto +closepath +gsave +4.221526e-01 4.221526e-01 4.221526e-01 setrgbcolor +fill +grestore +newpath +2.740964e+01 6.004308e+01 moveto +2.604929e+01 5.653286e+01 lineto +2.689796e+01 5.58562e+01 lineto +2.822867e+01 5.939005e+01 lineto +2.740964e+01 6.004308e+01 lineto +closepath +gsave +4.25065e-01 4.25065e-01 4.25065e-01 setrgbcolor +fill +grestore +newpath +2.905457e+01 6.344699e+01 moveto +2.740964e+01 6.004308e+01 lineto +2.822867e+01 5.939005e+01 lineto +2.983776e+01 6.282253e+01 lineto +2.905457e+01 6.344699e+01 lineto +closepath +gsave +4.28382e-01 4.28382e-01 4.28382e-01 setrgbcolor +fill +grestore +newpath +3.097161e+01 6.671882e+01 moveto +2.905457e+01 6.344699e+01 lineto +2.983776e+01 6.282253e+01 lineto +3.171303e+01 6.612766e+01 lineto +3.097161e+01 6.671882e+01 lineto +closepath +gsave +4.321249e-01 4.321249e-01 4.321249e-01 setrgbcolor +fill +grestore +newpath +3.314627e+01 6.983379e+01 moveto +3.097161e+01 6.671882e+01 lineto +3.171303e+01 6.612766e+01 lineto +3.384031e+01 6.928042e+01 lineto +3.314627e+01 6.983379e+01 lineto +closepath +gsave +4.363092e-01 4.363092e-01 4.363092e-01 setrgbcolor +fill +grestore +newpath +3.556207e+01 7.276833e+01 moveto +3.314627e+01 6.983379e+01 lineto +3.384031e+01 6.928042e+01 lineto +3.620348e+01 7.225693e+01 lineto +3.556207e+01 7.276833e+01 lineto +closepath +gsave +4.40943e-01 4.40943e-01 4.40943e-01 setrgbcolor +fill +grestore +newpath +3.820074e+01 7.550023e+01 moveto +3.556207e+01 7.276833e+01 lineto +3.620348e+01 7.225693e+01 lineto +3.878465e+01 7.503466e+01 lineto +3.820074e+01 7.550023e+01 lineto +closepath +gsave +4.460252e-01 4.460252e-01 4.460252e-01 setrgbcolor +fill +grestore +newpath +4.104228e+01 7.80088e+01 moveto +3.820074e+01 7.550023e+01 lineto +3.878465e+01 7.503466e+01 lineto +4.156428e+01 7.759259e+01 lineto +4.104228e+01 7.80088e+01 lineto +closepath +gsave +4.515436e-01 4.515436e-01 4.515436e-01 setrgbcolor +fill +grestore +newpath +4.40652e+01 8.027504e+01 moveto +4.104228e+01 7.80088e+01 lineto +4.156428e+01 7.759259e+01 lineto +4.452133e+01 7.991135e+01 lineto +4.40652e+01 8.027504e+01 lineto +closepath +gsave +4.574746e-01 4.574746e-01 4.574746e-01 setrgbcolor +fill +grestore +newpath +4.72466e+01 8.228181e+01 moveto +4.40652e+01 8.027504e+01 lineto +4.452133e+01 7.991135e+01 lineto +4.763341e+01 8.197339e+01 lineto +4.72466e+01 8.228181e+01 lineto +closepath +gsave +4.637811e-01 4.637811e-01 4.637811e-01 setrgbcolor +fill +grestore +newpath +5.05624e+01 8.401391e+01 moveto +4.72466e+01 8.228181e+01 lineto +4.763341e+01 8.197339e+01 lineto +5.087697e+01 8.376309e+01 lineto +5.05624e+01 8.401391e+01 lineto +closepath +gsave +4.704129e-01 4.704129e-01 4.704129e-01 setrgbcolor +fill +grestore +newpath +5.39875e+01 8.545822e+01 moveto +5.05624e+01 8.401391e+01 lineto +5.087697e+01 8.376309e+01 lineto +5.422744e+01 8.526691e+01 lineto +5.39875e+01 8.545822e+01 lineto +closepath +gsave +4.77306e-01 4.77306e-01 4.77306e-01 setrgbcolor +fill +grestore +newpath +5.749597e+01 8.660382e+01 moveto +5.39875e+01 8.545822e+01 lineto +5.422744e+01 8.526691e+01 lineto +5.765947e+01 8.647346e+01 lineto +5.749597e+01 8.660382e+01 lineto +closepath +gsave +4.843832e-01 4.843832e-01 4.843832e-01 setrgbcolor +fill +grestore +newpath +6.106125e+01 8.744203e+01 moveto +5.749597e+01 8.660382e+01 lineto +5.765947e+01 8.647346e+01 lineto +6.114707e+01 8.737361e+01 lineto +6.106125e+01 8.744203e+01 lineto +closepath +gsave +4.915554e-01 4.915554e-01 4.915554e-01 setrgbcolor +fill +grestore +newpath +6.465634e+01 8.796651e+01 moveto +6.106125e+01 8.744203e+01 lineto +6.114707e+01 8.737361e+01 lineto +6.466383e+01 8.796054e+01 lineto +6.465634e+01 8.796651e+01 lineto +closepath +gsave +4.987228e-01 4.987228e-01 4.987228e-01 setrgbcolor +fill +grestore +newpath +6.825404e+01 8.817328e+01 moveto +6.465634e+01 8.796651e+01 lineto +6.466383e+01 8.796054e+01 lineto +6.818314e+01 8.822981e+01 lineto +6.825404e+01 8.817328e+01 lineto +closepath +gsave +5.057771e-01 5.057771e-01 5.057771e-01 setrgbcolor +fill +grestore +newpath +3.904167e+01 1.084129e+01 moveto +4.183916e+01 8.937995e+00 lineto +4.249783e+01 8.54282e+00 lineto +3.97799e+01 1.039839e+01 lineto +3.904167e+01 1.084129e+01 lineto +closepath +gsave +4.122146e-01 4.122146e-01 4.122146e-01 setrgbcolor +fill +grestore +newpath +3.644069e+01 1.301076e+01 moveto +3.904167e+01 1.084129e+01 lineto +3.97799e+01 1.039839e+01 lineto +3.725289e+01 1.252347e+01 lineto +3.644069e+01 1.301076e+01 lineto +closepath +gsave +4.12084e-01 4.12084e-01 4.12084e-01 setrgbcolor +fill +grestore +newpath +3.405592e+01 1.542996e+01 moveto +3.644069e+01 1.301076e+01 lineto +3.725289e+01 1.252347e+01 lineto +3.493594e+01 1.490199e+01 lineto +3.405592e+01 1.542996e+01 lineto +closepath +gsave +4.121201e-01 4.121201e-01 4.121201e-01 setrgbcolor +fill +grestore +newpath +3.190541e+01 1.80806e+01 moveto +3.405592e+01 1.542996e+01 lineto +3.493594e+01 1.490199e+01 lineto +3.284659e+01 1.751593e+01 lineto +3.190541e+01 1.80806e+01 lineto +closepath +gsave +4.123235e-01 4.123235e-01 4.123235e-01 setrgbcolor +fill +grestore +newpath +3.000544e+01 2.09426e+01 moveto +3.190541e+01 1.80806e+01 lineto +3.284659e+01 1.751593e+01 lineto +3.100065e+01 2.034551e+01 lineto +3.000544e+01 2.09426e+01 lineto +closepath +gsave +4.126982e-01 4.126982e-01 4.126982e-01 setrgbcolor +fill +grestore +newpath +2.837039e+01 2.399429e+01 moveto +3.000544e+01 2.09426e+01 lineto +3.100065e+01 2.034551e+01 lineto +2.94121e+01 2.336931e+01 lineto +2.837039e+01 2.399429e+01 lineto +closepath +gsave +4.132513e-01 4.132513e-01 4.132513e-01 setrgbcolor +fill +grestore +newpath +2.701265e+01 2.721258e+01 moveto +2.837039e+01 2.399429e+01 lineto +2.94121e+01 2.336931e+01 lineto +2.809297e+01 2.656443e+01 lineto +2.701265e+01 2.721258e+01 lineto +closepath +gsave +4.139931e-01 4.139931e-01 4.139931e-01 setrgbcolor +fill +grestore +newpath +2.594248e+01 3.057309e+01 moveto +2.701265e+01 2.721258e+01 lineto +2.809297e+01 2.656443e+01 lineto +2.705324e+01 2.990669e+01 lineto +2.594248e+01 3.057309e+01 lineto +closepath +gsave +4.149367e-01 4.149367e-01 4.149367e-01 setrgbcolor +fill +grestore +newpath +2.5168e+01 3.40504e+01 moveto +2.594248e+01 3.057309e+01 lineto +2.705324e+01 2.990669e+01 lineto +2.630078e+01 3.337078e+01 lineto +2.5168e+01 3.40504e+01 lineto +closepath +gsave +4.160976e-01 4.160976e-01 4.160976e-01 setrgbcolor +fill +grestore +newpath +2.469507e+01 3.761817e+01 moveto +2.5168e+01 3.40504e+01 lineto +2.630078e+01 3.337078e+01 lineto +2.58413e+01 3.693047e+01 lineto +2.469507e+01 3.761817e+01 lineto +closepath +gsave +4.174937e-01 4.174937e-01 4.174937e-01 setrgbcolor +fill +grestore +newpath +2.452726e+01 4.124939e+01 moveto +2.469507e+01 3.761817e+01 lineto +2.58413e+01 3.693047e+01 lineto +2.567826e+01 4.055883e+01 lineto +2.452726e+01 4.124939e+01 lineto +closepath +gsave +4.191442e-01 4.191442e-01 4.191442e-01 setrgbcolor +fill +grestore +newpath +2.466585e+01 4.491657e+01 moveto +2.452726e+01 4.124939e+01 lineto +2.567826e+01 4.055883e+01 lineto +2.581291e+01 4.422838e+01 lineto +2.466585e+01 4.491657e+01 lineto +closepath +gsave +4.210694e-01 4.210694e-01 4.210694e-01 setrgbcolor +fill +grestore +newpath +2.510978e+01 4.859196e+01 moveto +2.466585e+01 4.491657e+01 lineto +2.581291e+01 4.422838e+01 lineto +2.624422e+01 4.791135e+01 lineto +2.510978e+01 4.859196e+01 lineto +closepath +gsave +4.232896e-01 4.232896e-01 4.232896e-01 setrgbcolor +fill +grestore +newpath +2.58557e+01 5.224773e+01 moveto +2.510978e+01 4.859196e+01 lineto +2.624422e+01 4.791135e+01 lineto +2.696893e+01 5.157984e+01 lineto +2.58557e+01 5.224773e+01 lineto +closepath +gsave +4.258245e-01 4.258245e-01 4.258245e-01 setrgbcolor +fill +grestore +newpath +2.689796e+01 5.58562e+01 moveto +2.58557e+01 5.224773e+01 lineto +2.696893e+01 5.157984e+01 lineto +2.798154e+01 5.520609e+01 lineto +2.689796e+01 5.58562e+01 lineto +closepath +gsave +4.286916e-01 4.286916e-01 4.286916e-01 setrgbcolor +fill +grestore +newpath +2.822867e+01 5.939005e+01 moveto +2.689796e+01 5.58562e+01 lineto +2.798154e+01 5.520609e+01 lineto +2.927441e+01 5.876265e+01 lineto +2.822867e+01 5.939005e+01 lineto +closepath +gsave +4.319055e-01 4.319055e-01 4.319055e-01 setrgbcolor +fill +grestore +newpath +2.983776e+01 6.282253e+01 moveto +2.822867e+01 5.939005e+01 lineto +2.927441e+01 5.876265e+01 lineto +3.083773e+01 6.222259e+01 lineto +2.983776e+01 6.282253e+01 lineto +closepath +gsave +4.354766e-01 4.354766e-01 4.354766e-01 setrgbcolor +fill +grestore +newpath +3.171303e+01 6.612766e+01 moveto +2.983776e+01 6.282253e+01 lineto +3.083773e+01 6.222259e+01 lineto +3.265968e+01 6.555971e+01 lineto +3.171303e+01 6.612766e+01 lineto +closepath +gsave +4.394096e-01 4.394096e-01 4.394096e-01 setrgbcolor +fill +grestore +newpath +3.384031e+01 6.928042e+01 moveto +3.171303e+01 6.612766e+01 lineto +3.265968e+01 6.555971e+01 lineto +3.472646e+01 6.874876e+01 lineto +3.384031e+01 6.928042e+01 lineto +closepath +gsave +4.437027e-01 4.437027e-01 4.437027e-01 setrgbcolor +fill +grestore +newpath +3.620348e+01 7.225693e+01 moveto +3.384031e+01 6.928042e+01 lineto +3.472646e+01 6.874876e+01 lineto +3.702242e+01 7.176559e+01 lineto +3.620348e+01 7.225693e+01 lineto +closepath +gsave +4.483461e-01 4.483461e-01 4.483461e-01 setrgbcolor +fill +grestore +newpath +3.878465e+01 7.503466e+01 moveto +3.620348e+01 7.225693e+01 lineto +3.702242e+01 7.176559e+01 lineto +3.953019e+01 7.458737e+01 lineto +3.878465e+01 7.503466e+01 lineto +closepath +gsave +4.533211e-01 4.533211e-01 4.533211e-01 setrgbcolor +fill +grestore +newpath +4.156428e+01 7.759259e+01 moveto +3.878465e+01 7.503466e+01 lineto +3.953019e+01 7.458737e+01 lineto +4.223077e+01 7.719273e+01 lineto +4.156428e+01 7.759259e+01 lineto +closepath +gsave +4.585996e-01 4.585996e-01 4.585996e-01 setrgbcolor +fill +grestore +newpath +4.452133e+01 7.991135e+01 moveto +4.156428e+01 7.759259e+01 lineto +4.223077e+01 7.719273e+01 lineto +4.510372e+01 7.956194e+01 lineto +4.452133e+01 7.991135e+01 lineto +closepath +gsave +4.641433e-01 4.641433e-01 4.641433e-01 setrgbcolor +fill +grestore +newpath +4.763341e+01 8.197339e+01 moveto +4.452133e+01 7.991135e+01 lineto +4.510372e+01 7.956194e+01 lineto +4.81273e+01 8.167708e+01 lineto +4.763341e+01 8.197339e+01 lineto +closepath +gsave +4.699037e-01 4.699037e-01 4.699037e-01 setrgbcolor +fill +grestore +newpath +5.087697e+01 8.376309e+01 moveto +4.763341e+01 8.197339e+01 lineto +4.81273e+01 8.167708e+01 lineto +5.127861e+01 8.352212e+01 lineto +5.087697e+01 8.376309e+01 lineto +closepath +gsave +4.758224e-01 4.758224e-01 4.758224e-01 setrgbcolor +fill +grestore +newpath +5.422744e+01 8.526691e+01 moveto +5.087697e+01 8.376309e+01 lineto +5.127861e+01 8.352212e+01 lineto +5.45338e+01 8.50831e+01 lineto +5.422744e+01 8.526691e+01 lineto +closepath +gsave +4.818313e-01 4.818313e-01 4.818313e-01 setrgbcolor +fill +grestore +newpath +5.765947e+01 8.647346e+01 moveto +5.422744e+01 8.526691e+01 lineto +5.45338e+01 8.50831e+01 lineto +5.786823e+01 8.634821e+01 lineto +5.765947e+01 8.647346e+01 lineto +closepath +gsave +4.878544e-01 4.878544e-01 4.878544e-01 setrgbcolor +fill +grestore +newpath +6.114707e+01 8.737361e+01 moveto +5.765947e+01 8.647346e+01 lineto +5.786823e+01 8.634821e+01 lineto +6.125664e+01 8.730787e+01 lineto +6.114707e+01 8.737361e+01 lineto +closepath +gsave +4.938083e-01 4.938083e-01 4.938083e-01 setrgbcolor +fill +grestore +newpath +6.466383e+01 8.796054e+01 moveto +6.114707e+01 8.737361e+01 lineto +6.125664e+01 8.730787e+01 lineto +6.467339e+01 8.795481e+01 lineto +6.466383e+01 8.796054e+01 lineto +closepath +gsave +4.996048e-01 4.996048e-01 4.996048e-01 setrgbcolor +fill +grestore +newpath +6.818314e+01 8.822981e+01 moveto +6.466383e+01 8.796054e+01 lineto +6.467339e+01 8.795481e+01 lineto +6.809262e+01 8.828413e+01 lineto +6.818314e+01 8.822981e+01 lineto +closepath +gsave +5.051525e-01 5.051525e-01 5.051525e-01 setrgbcolor +fill +grestore +newpath +4.249783e+01 8.54282e+00 moveto +4.538612e+01 6.970821e+00 lineto +4.608117e+01 6.642565e+00 lineto +4.329524e+01 8.166226e+00 lineto +4.249783e+01 8.54282e+00 lineto +closepath +gsave +4.150117e-01 4.150117e-01 4.150117e-01 setrgbcolor +fill +grestore +newpath +3.97799e+01 1.039839e+01 moveto +4.249783e+01 8.54282e+00 lineto +4.329524e+01 8.166226e+00 lineto +4.067362e+01 9.976305e+00 lineto +3.97799e+01 1.039839e+01 lineto +closepath +gsave +4.150229e-01 4.150229e-01 4.150229e-01 setrgbcolor +fill +grestore +newpath +3.725289e+01 1.252347e+01 moveto +3.97799e+01 1.039839e+01 lineto +4.067362e+01 9.976305e+00 lineto +3.823616e+01 1.20591e+01 lineto +3.725289e+01 1.252347e+01 lineto +closepath +gsave +4.152032e-01 4.152032e-01 4.152032e-01 setrgbcolor +fill +grestore +newpath +3.493594e+01 1.490199e+01 moveto +3.725289e+01 1.252347e+01 lineto +3.823616e+01 1.20591e+01 lineto +3.600131e+01 1.439884e+01 lineto +3.493594e+01 1.490199e+01 lineto +closepath +gsave +4.155549e-01 4.155549e-01 4.155549e-01 setrgbcolor +fill +grestore +newpath +3.284659e+01 1.751593e+01 moveto +3.493594e+01 1.490199e+01 lineto +3.600131e+01 1.439884e+01 lineto +3.3986e+01 1.697782e+01 lineto +3.284659e+01 1.751593e+01 lineto +closepath +gsave +4.160833e-01 4.160833e-01 4.160833e-01 setrgbcolor +fill +grestore +newpath +3.100065e+01 2.034551e+01 moveto +3.284659e+01 1.751593e+01 lineto +3.3986e+01 1.697782e+01 lineto +3.220547e+01 1.97765e+01 lineto +3.100065e+01 2.034551e+01 lineto +closepath +gsave +4.167955e-01 4.167955e-01 4.167955e-01 setrgbcolor +fill +grestore +newpath +2.94121e+01 2.336931e+01 moveto +3.100065e+01 2.034551e+01 lineto +3.220547e+01 1.97765e+01 lineto +3.067322e+01 2.277371e+01 lineto +2.94121e+01 2.336931e+01 lineto +closepath +gsave +4.177009e-01 4.177009e-01 4.177009e-01 setrgbcolor +fill +grestore +newpath +2.809297e+01 2.656443e+01 moveto +2.94121e+01 2.336931e+01 lineto +3.067322e+01 2.277371e+01 lineto +2.940083e+01 2.594676e+01 lineto +2.809297e+01 2.656443e+01 lineto +closepath +gsave +4.188107e-01 4.188107e-01 4.188107e-01 setrgbcolor +fill +grestore +newpath +2.705324e+01 2.990669e+01 moveto +2.809297e+01 2.656443e+01 lineto +2.940083e+01 2.594676e+01 lineto +2.839795e+01 2.927161e+01 lineto +2.705324e+01 2.990669e+01 lineto +closepath +gsave +4.201373e-01 4.201373e-01 4.201373e-01 setrgbcolor +fill +grestore +newpath +2.630078e+01 3.337078e+01 moveto +2.705324e+01 2.990669e+01 lineto +2.839795e+01 2.927161e+01 lineto +2.767216e+01 3.272311e+01 lineto +2.630078e+01 3.337078e+01 lineto +closepath +gsave +4.216942e-01 4.216942e-01 4.216942e-01 setrgbcolor +fill +grestore +newpath +2.58413e+01 3.693047e+01 moveto +2.630078e+01 3.337078e+01 lineto +2.767216e+01 3.272311e+01 lineto +2.722896e+01 3.627512e+01 lineto +2.58413e+01 3.693047e+01 lineto +closepath +gsave +4.234955e-01 4.234955e-01 4.234955e-01 setrgbcolor +fill +grestore +newpath +2.567826e+01 4.055883e+01 moveto +2.58413e+01 3.693047e+01 lineto +2.722896e+01 3.627512e+01 lineto +2.70717e+01 3.990075e+01 lineto +2.567826e+01 4.055883e+01 lineto +closepath +gsave +4.255547e-01 4.255547e-01 4.255547e-01 setrgbcolor +fill +grestore +newpath +2.581291e+01 4.422838e+01 moveto +2.567826e+01 4.055883e+01 lineto +2.70717e+01 3.990075e+01 lineto +2.720157e+01 4.357255e+01 lineto +2.581291e+01 4.422838e+01 lineto +closepath +gsave +4.278845e-01 4.278845e-01 4.278845e-01 setrgbcolor +fill +grestore +newpath +2.624422e+01 4.791135e+01 moveto +2.581291e+01 4.422838e+01 lineto +2.720157e+01 4.357255e+01 lineto +2.76176e+01 4.726273e+01 lineto +2.624422e+01 4.791135e+01 lineto +closepath +gsave +4.304958e-01 4.304958e-01 4.304958e-01 setrgbcolor +fill +grestore +newpath +2.696893e+01 5.157984e+01 moveto +2.624422e+01 4.791135e+01 lineto +2.76176e+01 4.726273e+01 lineto +2.831662e+01 5.094336e+01 lineto +2.696893e+01 5.157984e+01 lineto +closepath +gsave +4.333969e-01 4.333969e-01 4.333969e-01 setrgbcolor +fill +grestore +newpath +2.798154e+01 5.520609e+01 moveto +2.696893e+01 5.157984e+01 lineto +2.831662e+01 5.094336e+01 lineto +2.929336e+01 5.458655e+01 lineto +2.798154e+01 5.520609e+01 lineto +closepath +gsave +4.365923e-01 4.365923e-01 4.365923e-01 setrgbcolor +fill +grestore +newpath +2.927441e+01 5.876265e+01 moveto +2.798154e+01 5.520609e+01 lineto +2.929336e+01 5.458655e+01 lineto +3.054041e+01 5.816475e+01 lineto +2.927441e+01 5.876265e+01 lineto +closepath +gsave +4.400821e-01 4.400821e-01 4.400821e-01 setrgbcolor +fill +grestore +newpath +3.083773e+01 6.222259e+01 moveto +2.927441e+01 5.876265e+01 lineto +3.054041e+01 5.816475e+01 lineto +3.204833e+01 6.165085e+01 lineto +3.083773e+01 6.222259e+01 lineto +closepath +gsave +4.438613e-01 4.438613e-01 4.438613e-01 setrgbcolor +fill +grestore +newpath +3.265968e+01 6.555971e+01 moveto +3.083773e+01 6.222259e+01 lineto +3.204833e+01 6.165085e+01 lineto +3.380572e+01 6.501847e+01 lineto +3.265968e+01 6.555971e+01 lineto +closepath +gsave +4.479184e-01 4.479184e-01 4.479184e-01 setrgbcolor +fill +grestore +newpath +3.472646e+01 6.874876e+01 moveto +3.265968e+01 6.555971e+01 lineto +3.380572e+01 6.501847e+01 lineto +3.579926e+01 6.824211e+01 lineto +3.472646e+01 6.874876e+01 lineto +closepath +gsave +4.522353e-01 4.522353e-01 4.522353e-01 setrgbcolor +fill +grestore +newpath +3.702242e+01 7.176559e+01 moveto +3.472646e+01 6.874876e+01 lineto +3.579926e+01 6.824211e+01 lineto +3.801386e+01 7.129737e+01 lineto +3.702242e+01 7.176559e+01 lineto +closepath +gsave +4.567864e-01 4.567864e-01 4.567864e-01 setrgbcolor +fill +grestore +newpath +3.953019e+01 7.458737e+01 moveto +3.702242e+01 7.176559e+01 lineto +3.801386e+01 7.129737e+01 lineto +4.043275e+01 7.416111e+01 lineto +3.953019e+01 7.458737e+01 lineto +closepath +gsave +4.615386e-01 4.615386e-01 4.615386e-01 setrgbcolor +fill +grestore +newpath +4.223077e+01 7.719273e+01 moveto +3.953019e+01 7.458737e+01 lineto +4.043275e+01 7.416111e+01 lineto +4.303764e+01 7.681166e+01 lineto +4.223077e+01 7.719273e+01 lineto +closepath +gsave +4.66451e-01 4.66451e-01 4.66451e-01 setrgbcolor +fill +grestore +newpath +4.510372e+01 7.956194e+01 moveto +4.223077e+01 7.719273e+01 lineto +4.303764e+01 7.681166e+01 lineto +4.580878e+01 7.922896e+01 lineto +4.510372e+01 7.956194e+01 lineto +closepath +gsave +4.714754e-01 4.714754e-01 4.714754e-01 setrgbcolor +fill +grestore +newpath +4.81273e+01 8.167708e+01 moveto +4.510372e+01 7.956194e+01 lineto +4.580878e+01 7.922896e+01 lineto +4.872522e+01 8.13947e+01 lineto +4.81273e+01 8.167708e+01 lineto +closepath +gsave +4.765563e-01 4.765563e-01 4.765563e-01 setrgbcolor +fill +grestore +newpath +5.127861e+01 8.352212e+01 moveto +4.81273e+01 8.167708e+01 lineto +4.872522e+01 8.13947e+01 lineto +5.176486e+01 8.329248e+01 lineto +5.127861e+01 8.352212e+01 lineto +closepath +gsave +4.816325e-01 4.816325e-01 4.816325e-01 setrgbcolor +fill +grestore +newpath +5.45338e+01 8.50831e+01 moveto +5.127861e+01 8.352212e+01 lineto +5.176486e+01 8.329248e+01 lineto +5.490469e+01 8.490794e+01 lineto +5.45338e+01 8.50831e+01 lineto +closepath +gsave +4.866373e-01 4.866373e-01 4.866373e-01 setrgbcolor +fill +grestore +newpath +5.786823e+01 8.634821e+01 moveto +5.45338e+01 8.50831e+01 lineto +5.490469e+01 8.490794e+01 lineto +5.812095e+01 8.622886e+01 lineto +5.786823e+01 8.634821e+01 lineto +closepath +gsave +4.915004e-01 4.915004e-01 4.915004e-01 setrgbcolor +fill +grestore +newpath +6.125664e+01 8.730787e+01 moveto +5.786823e+01 8.634821e+01 lineto +5.812095e+01 8.622886e+01 lineto +6.138929e+01 8.724522e+01 lineto +6.125664e+01 8.730787e+01 lineto +closepath +gsave +4.961496e-01 4.961496e-01 4.961496e-01 setrgbcolor +fill +grestore +newpath +6.467339e+01 8.795481e+01 moveto +6.125664e+01 8.730787e+01 lineto +6.138929e+01 8.724522e+01 lineto +6.468497e+01 8.794934e+01 lineto +6.467339e+01 8.795481e+01 lineto +closepath +gsave +5.00512e-01 5.00512e-01 5.00512e-01 setrgbcolor +fill +grestore +newpath +6.809262e+01 8.828413e+01 moveto +6.467339e+01 8.795481e+01 lineto +6.468497e+01 8.794934e+01 lineto +6.798303e+01 8.833588e+01 lineto +6.809262e+01 8.828413e+01 lineto +closepath +gsave +5.045165e-01 5.045165e-01 5.045165e-01 setrgbcolor +fill +grestore +newpath +4.608117e+01 6.642565e+00 moveto +4.901033e+01 5.416857e+00 lineto +4.969635e+01 5.154824e+00 lineto +4.689287e+01 6.33253e+00 lineto +4.608117e+01 6.642565e+00 lineto +closepath +gsave +4.176201e-01 4.176201e-01 4.176201e-01 setrgbcolor +fill +grestore +newpath +4.329524e+01 8.166226e+00 moveto +4.608117e+01 6.642565e+00 lineto +4.689287e+01 6.33253e+00 lineto +4.422646e+01 7.810536e+00 lineto +4.329524e+01 8.166226e+00 lineto +closepath +gsave +4.178676e-01 4.178676e-01 4.178676e-01 setrgbcolor +fill +grestore +newpath +4.067362e+01 9.976305e+00 moveto +4.329524e+01 8.166226e+00 lineto +4.422646e+01 7.810536e+00 lineto +4.171732e+01 9.577653e+00 lineto +4.067362e+01 9.976305e+00 lineto +closepath +gsave +4.182857e-01 4.182857e-01 4.182857e-01 setrgbcolor +fill +grestore +newpath +3.823616e+01 1.20591e+01 moveto +4.067362e+01 9.976305e+00 lineto +4.171732e+01 9.577653e+00 lineto +3.938443e+01 1.16205e+01 lineto +3.823616e+01 1.20591e+01 lineto +closepath +gsave +4.188787e-01 4.188787e-01 4.188787e-01 setrgbcolor +fill +grestore +newpath +3.600131e+01 1.439884e+01 moveto +3.823616e+01 1.20591e+01 lineto +3.938443e+01 1.16205e+01 lineto +3.724547e+01 1.392362e+01 lineto +3.600131e+01 1.439884e+01 lineto +closepath +gsave +4.196527e-01 4.196527e-01 4.196527e-01 setrgbcolor +fill +grestore +newpath +3.3986e+01 1.697782e+01 moveto +3.600131e+01 1.439884e+01 lineto +3.724547e+01 1.392362e+01 lineto +3.531662e+01 1.646957e+01 lineto +3.3986e+01 1.697782e+01 lineto +closepath +gsave +4.206153e-01 4.206153e-01 4.206153e-01 setrgbcolor +fill +grestore +newpath +3.220547e+01 1.97765e+01 moveto +3.3986e+01 1.697782e+01 lineto +3.531662e+01 1.646957e+01 lineto +3.361249e+01 1.923908e+01 lineto +3.220547e+01 1.97765e+01 lineto +closepath +gsave +4.217751e-01 4.217751e-01 4.217751e-01 setrgbcolor +fill +grestore +newpath +3.067322e+01 2.277371e+01 moveto +3.220547e+01 1.97765e+01 lineto +3.361249e+01 1.923908e+01 lineto +3.214598e+01 2.221118e+01 lineto +3.067322e+01 2.277371e+01 lineto +closepath +gsave +4.231413e-01 4.231413e-01 4.231413e-01 setrgbcolor +fill +grestore +newpath +2.940083e+01 2.594676e+01 moveto +3.067322e+01 2.277371e+01 lineto +3.214598e+01 2.221118e+01 lineto +3.092818e+01 2.536337e+01 lineto +2.940083e+01 2.594676e+01 lineto +closepath +gsave +4.247236e-01 4.247236e-01 4.247236e-01 setrgbcolor +fill +grestore +newpath +2.839795e+01 2.927161e+01 moveto +2.940083e+01 2.594676e+01 lineto +3.092818e+01 2.536337e+01 lineto +2.996832e+01 2.867179e+01 lineto +2.839795e+01 2.927161e+01 lineto +closepath +gsave +4.265316e-01 4.265316e-01 4.265316e-01 setrgbcolor +fill +grestore +newpath +2.767216e+01 3.272311e+01 moveto +2.839795e+01 2.927161e+01 lineto +2.996832e+01 2.867179e+01 lineto +2.927367e+01 3.21114e+01 lineto +2.767216e+01 3.272311e+01 lineto +closepath +gsave +4.28574e-01 4.28574e-01 4.28574e-01 setrgbcolor +fill +grestore +newpath +2.722896e+01 3.627512e+01 moveto +2.767216e+01 3.272311e+01 lineto +2.927367e+01 3.21114e+01 lineto +2.884948e+01 3.565614e+01 lineto +2.722896e+01 3.627512e+01 lineto +closepath +gsave +4.308581e-01 4.308581e-01 4.308581e-01 setrgbcolor +fill +grestore +newpath +2.70717e+01 3.990075e+01 moveto +2.722896e+01 3.627512e+01 lineto +2.884948e+01 3.565614e+01 lineto +2.869897e+01 3.927919e+01 lineto +2.70717e+01 3.990075e+01 lineto +closepath +gsave +4.333892e-01 4.333892e-01 4.333892e-01 setrgbcolor +fill +grestore +newpath +2.720157e+01 4.357255e+01 moveto +2.70717e+01 3.990075e+01 lineto +2.869897e+01 3.927919e+01 lineto +2.882327e+01 4.295313e+01 lineto +2.720157e+01 4.357255e+01 lineto +closepath +gsave +4.3617e-01 4.3617e-01 4.3617e-01 setrgbcolor +fill +grestore +newpath +2.76176e+01 4.726273e+01 moveto +2.720157e+01 4.357255e+01 lineto +2.882327e+01 4.295313e+01 lineto +2.922145e+01 4.665012e+01 lineto +2.76176e+01 4.726273e+01 lineto +closepath +gsave +4.391997e-01 4.391997e-01 4.391997e-01 setrgbcolor +fill +grestore +newpath +2.831662e+01 5.094336e+01 moveto +2.76176e+01 4.726273e+01 lineto +2.922145e+01 4.665012e+01 lineto +2.989049e+01 5.03422e+01 lineto +2.831662e+01 5.094336e+01 lineto +closepath +gsave +4.424733e-01 4.424733e-01 4.424733e-01 setrgbcolor +fill +grestore +newpath +2.929336e+01 5.458655e+01 moveto +2.831662e+01 5.094336e+01 lineto +2.989049e+01 5.03422e+01 lineto +3.082532e+01 5.400141e+01 lineto +2.929336e+01 5.458655e+01 lineto +closepath +gsave +4.459812e-01 4.459812e-01 4.459812e-01 setrgbcolor +fill +grestore +newpath +3.054041e+01 5.816475e+01 moveto +2.929336e+01 5.458655e+01 lineto +3.082532e+01 5.400141e+01 lineto +3.201886e+01 5.760004e+01 lineto +3.054041e+01 5.816475e+01 lineto +closepath +gsave +4.497085e-01 4.497085e-01 4.497085e-01 setrgbcolor +fill +grestore +newpath +3.204833e+01 6.165085e+01 moveto +3.054041e+01 5.816475e+01 lineto +3.201886e+01 5.760004e+01 lineto +3.346209e+01 6.111085e+01 lineto +3.204833e+01 6.165085e+01 lineto +closepath +gsave +4.536346e-01 4.536346e-01 4.536346e-01 setrgbcolor +fill +grestore +newpath +3.380572e+01 6.501847e+01 moveto +3.204833e+01 6.165085e+01 lineto +3.346209e+01 6.111085e+01 lineto +3.514408e+01 6.450727e+01 lineto +3.380572e+01 6.501847e+01 lineto +closepath +gsave +4.577331e-01 4.577331e-01 4.577331e-01 setrgbcolor +fill +grestore +newpath +3.579926e+01 6.824211e+01 moveto +3.380572e+01 6.501847e+01 lineto +3.514408e+01 6.450727e+01 lineto +3.705208e+01 6.776358e+01 lineto +3.579926e+01 6.824211e+01 lineto +closepath +gsave +4.619715e-01 4.619715e-01 4.619715e-01 setrgbcolor +fill +grestore +newpath +3.801386e+01 7.129737e+01 moveto +3.579926e+01 6.824211e+01 lineto +3.705208e+01 6.776358e+01 lineto +3.917167e+01 7.085513e+01 lineto +3.801386e+01 7.129737e+01 lineto +closepath +gsave +4.663113e-01 4.663113e-01 4.663113e-01 setrgbcolor +fill +grestore +newpath +4.043275e+01 7.416111e+01 moveto +3.801386e+01 7.129737e+01 lineto +3.917167e+01 7.085513e+01 lineto +4.148679e+01 7.375851e+01 lineto +4.043275e+01 7.416111e+01 lineto +closepath +gsave +4.707085e-01 4.707085e-01 4.707085e-01 setrgbcolor +fill +grestore +newpath +4.303764e+01 7.681166e+01 moveto +4.043275e+01 7.416111e+01 lineto +4.148679e+01 7.375851e+01 lineto +4.397991e+01 7.645175e+01 lineto +4.303764e+01 7.681166e+01 lineto +closepath +gsave +4.75114e-01 4.75114e-01 4.75114e-01 setrgbcolor +fill +grestore +newpath +4.580878e+01 7.922896e+01 moveto +4.303764e+01 7.681166e+01 lineto +4.397991e+01 7.645175e+01 lineto +4.663216e+01 7.891446e+01 lineto +4.580878e+01 7.922896e+01 lineto +closepath +gsave +4.794743e-01 4.794743e-01 4.794743e-01 setrgbcolor +fill +grestore +newpath +4.872522e+01 8.13947e+01 moveto +4.580878e+01 7.922896e+01 lineto +4.663216e+01 7.891446e+01 lineto +4.942347e+01 8.112799e+01 lineto +4.872522e+01 8.13947e+01 lineto +closepath +gsave +4.837327e-01 4.837327e-01 4.837327e-01 setrgbcolor +fill +grestore +newpath +5.176486e+01 8.329248e+01 moveto +4.872522e+01 8.13947e+01 lineto +4.942347e+01 8.112799e+01 lineto +5.23327e+01 8.307559e+01 lineto +5.176486e+01 8.329248e+01 lineto +closepath +gsave +4.878305e-01 4.878305e-01 4.878305e-01 setrgbcolor +fill +grestore +newpath +5.490469e+01 8.490794e+01 moveto +5.176486e+01 8.329248e+01 lineto +5.23327e+01 8.307559e+01 lineto +5.533782e+01 8.474251e+01 lineto +5.490469e+01 8.490794e+01 lineto +closepath +gsave +4.917079e-01 4.917079e-01 4.917079e-01 setrgbcolor +fill +grestore +newpath +5.812095e+01 8.622886e+01 moveto +5.490469e+01 8.490794e+01 lineto +5.533782e+01 8.474251e+01 lineto +5.841609e+01 8.611613e+01 lineto +5.812095e+01 8.622886e+01 lineto +closepath +gsave +4.953058e-01 4.953058e-01 4.953058e-01 setrgbcolor +fill +grestore +newpath +6.138929e+01 8.724522e+01 moveto +5.812095e+01 8.622886e+01 lineto +5.841609e+01 8.611613e+01 lineto +6.154421e+01 8.718605e+01 lineto +6.138929e+01 8.724522e+01 lineto +closepath +gsave +4.985673e-01 4.985673e-01 4.985673e-01 setrgbcolor +fill +grestore +newpath +6.468497e+01 8.794934e+01 moveto +6.138929e+01 8.724522e+01 lineto +6.154421e+01 8.718605e+01 lineto +6.469848e+01 8.794418e+01 lineto +6.468497e+01 8.794934e+01 lineto +closepath +gsave +5.014392e-01 5.014392e-01 5.014392e-01 setrgbcolor +fill +grestore +newpath +6.798303e+01 8.833588e+01 moveto +6.468497e+01 8.794934e+01 lineto +6.469848e+01 8.794418e+01 lineto +6.785504e+01 8.838477e+01 lineto +6.798303e+01 8.833588e+01 lineto +closepath +gsave +5.038731e-01 5.038731e-01 5.038731e-01 setrgbcolor +fill +grestore +newpath +4.689287e+01 6.33253e+00 moveto +4.969635e+01 5.154824e+00 lineto +5.047673e+01 4.909806e+00 lineto +4.78162e+01 6.042627e+00 lineto +4.689287e+01 6.33253e+00 lineto +closepath +gsave +4.20348e-01 4.20348e-01 4.20348e-01 setrgbcolor +fill +grestore +newpath +4.422646e+01 7.810536e+00 moveto +4.689287e+01 6.33253e+00 lineto +4.78162e+01 6.042627e+00 lineto +4.528576e+01 7.477943e+00 lineto +4.422646e+01 7.810536e+00 lineto +closepath +gsave +4.210962e-01 4.210962e-01 4.210962e-01 setrgbcolor +fill +grestore +newpath +4.171732e+01 9.577653e+00 moveto +4.422646e+01 7.810536e+00 lineto +4.528576e+01 7.477943e+00 lineto +4.290456e+01 9.204887e+00 lineto +4.171732e+01 9.577653e+00 lineto +closepath +gsave +4.220264e-01 4.220264e-01 4.220264e-01 setrgbcolor +fill +grestore +newpath +3.938443e+01 1.16205e+01 moveto +4.171732e+01 9.577653e+00 lineto +4.290456e+01 9.204887e+00 lineto +4.069064e+01 1.121039e+01 lineto +3.938443e+01 1.16205e+01 lineto +closepath +gsave +4.231457e-01 4.231457e-01 4.231457e-01 setrgbcolor +fill +grestore +newpath +3.724547e+01 1.392362e+01 moveto +3.938443e+01 1.16205e+01 lineto +4.069064e+01 1.121039e+01 lineto +3.866075e+01 1.347926e+01 lineto +3.724547e+01 1.392362e+01 lineto +closepath +gsave +4.244613e-01 4.244613e-01 4.244613e-01 setrgbcolor +fill +grestore +newpath +3.531662e+01 1.646957e+01 moveto +3.724547e+01 1.392362e+01 lineto +3.866075e+01 1.347926e+01 lineto +3.683025e+01 1.599433e+01 lineto +3.531662e+01 1.646957e+01 lineto +closepath +gsave +4.259811e-01 4.259811e-01 4.259811e-01 setrgbcolor +fill +grestore +newpath +3.361249e+01 1.923908e+01 moveto +3.531662e+01 1.646957e+01 lineto +3.683025e+01 1.599433e+01 lineto +3.521302e+01 1.873655e+01 lineto +3.361249e+01 1.923908e+01 lineto +closepath +gsave +4.277121e-01 4.277121e-01 4.277121e-01 setrgbcolor +fill +grestore +newpath +3.214598e+01 2.221118e+01 moveto +3.361249e+01 1.923908e+01 lineto +3.521302e+01 1.873655e+01 lineto +3.382129e+01 2.168517e+01 lineto +3.214598e+01 2.221118e+01 lineto +closepath +gsave +4.296611e-01 4.296611e-01 4.296611e-01 setrgbcolor +fill +grestore +newpath +3.092818e+01 2.536337e+01 moveto +3.214598e+01 2.221118e+01 lineto +3.382129e+01 2.168517e+01 lineto +3.266559e+01 2.481787e+01 lineto +3.092818e+01 2.536337e+01 lineto +closepath +gsave +4.31833e-01 4.31833e-01 4.31833e-01 setrgbcolor +fill +grestore +newpath +2.996832e+01 2.867179e+01 moveto +3.092818e+01 2.536337e+01 lineto +3.266559e+01 2.481787e+01 lineto +3.175468e+01 2.811092e+01 lineto +2.996832e+01 2.867179e+01 lineto +closepath +gsave +4.342312e-01 4.342312e-01 4.342312e-01 setrgbcolor +fill +grestore +newpath +2.927367e+01 3.21114e+01 moveto +2.996832e+01 2.867179e+01 lineto +3.175468e+01 2.811092e+01 lineto +3.109545e+01 3.15394e+01 lineto +2.927367e+01 3.21114e+01 lineto +closepath +gsave +4.368564e-01 4.368564e-01 4.368564e-01 setrgbcolor +fill +grestore +newpath +2.884948e+01 3.565614e+01 moveto +2.927367e+01 3.21114e+01 lineto +3.109545e+01 3.15394e+01 lineto +3.069289e+01 3.507736e+01 lineto +2.884948e+01 3.565614e+01 lineto +closepath +gsave +4.397063e-01 4.397063e-01 4.397063e-01 setrgbcolor +fill +grestore +newpath +2.869897e+01 3.927919e+01 moveto +2.884948e+01 3.565614e+01 lineto +3.069289e+01 3.507736e+01 lineto +3.055005e+01 3.8698e+01 lineto +2.869897e+01 3.927919e+01 lineto +closepath +gsave +4.427748e-01 4.427748e-01 4.427748e-01 setrgbcolor +fill +grestore +newpath +2.882327e+01 4.295313e+01 moveto +2.869897e+01 3.927919e+01 lineto +3.055005e+01 3.8698e+01 lineto +3.066802e+01 4.237392e+01 lineto +2.882327e+01 4.295313e+01 lineto +closepath +gsave +4.460519e-01 4.460519e-01 4.460519e-01 setrgbcolor +fill +grestore +newpath +2.922145e+01 4.665012e+01 moveto +2.882327e+01 4.295313e+01 lineto +3.066802e+01 4.237392e+01 lineto +3.104589e+01 4.607729e+01 lineto +2.922145e+01 4.665012e+01 lineto +closepath +gsave +4.495226e-01 4.495226e-01 4.495226e-01 setrgbcolor +fill +grestore +newpath +2.989049e+01 5.03422e+01 moveto +2.922145e+01 4.665012e+01 lineto +3.104589e+01 4.607729e+01 lineto +3.168081e+01 4.978008e+01 lineto +2.989049e+01 5.03422e+01 lineto +closepath +gsave +4.531675e-01 4.531675e-01 4.531675e-01 setrgbcolor +fill +grestore +newpath +3.082532e+01 5.400141e+01 moveto +2.989049e+01 5.03422e+01 lineto +3.168081e+01 4.978008e+01 lineto +3.256797e+01 5.345426e+01 lineto +3.082532e+01 5.400141e+01 lineto +closepath +gsave +4.569615e-01 4.569615e-01 4.569615e-01 setrgbcolor +fill +grestore +newpath +3.201886e+01 5.760004e+01 moveto +3.082532e+01 5.400141e+01 lineto +3.256797e+01 5.345426e+01 lineto +3.370066e+01 5.707199e+01 lineto +3.201886e+01 5.760004e+01 lineto +closepath +gsave +4.608748e-01 4.608748e-01 4.608748e-01 setrgbcolor +fill +grestore +newpath +3.346209e+01 6.111085e+01 moveto +3.201886e+01 5.760004e+01 lineto +3.370066e+01 5.707199e+01 lineto +3.507029e+01 6.060591e+01 lineto +3.346209e+01 6.111085e+01 lineto +closepath +gsave +4.648721e-01 4.648721e-01 4.648721e-01 setrgbcolor +fill +grestore +newpath +3.514408e+01 6.450727e+01 moveto +3.346209e+01 6.111085e+01 lineto +3.507029e+01 6.060591e+01 lineto +3.666651e+01 6.402926e+01 lineto +3.514408e+01 6.450727e+01 lineto +closepath +gsave +4.689137e-01 4.689137e-01 4.689137e-01 setrgbcolor +fill +grestore +newpath +3.705208e+01 6.776358e+01 moveto +3.514408e+01 6.450727e+01 lineto +3.666651e+01 6.402926e+01 lineto +3.847722e+01 6.731612e+01 lineto +3.705208e+01 6.776358e+01 lineto +closepath +gsave +4.729553e-01 4.729553e-01 4.729553e-01 setrgbcolor +fill +grestore +newpath +3.917167e+01 7.085513e+01 moveto +3.705208e+01 6.776358e+01 lineto +3.847722e+01 6.731612e+01 lineto +4.048872e+01 7.04416e+01 lineto +3.917167e+01 7.085513e+01 lineto +closepath +gsave +4.769493e-01 4.769493e-01 4.769493e-01 setrgbcolor +fill +grestore +newpath +4.148679e+01 7.375851e+01 moveto +3.917167e+01 7.085513e+01 lineto +4.048872e+01 7.04416e+01 lineto +4.268579e+01 7.338205e+01 lineto +4.148679e+01 7.375851e+01 lineto +closepath +gsave +4.808449e-01 4.808449e-01 4.808449e-01 setrgbcolor +fill +grestore +newpath +4.397991e+01 7.645175e+01 moveto +4.148679e+01 7.375851e+01 lineto +4.268579e+01 7.338205e+01 lineto +4.505178e+01 7.611521e+01 lineto +4.397991e+01 7.645175e+01 lineto +closepath +gsave +4.845901e-01 4.845901e-01 4.845901e-01 setrgbcolor +fill +grestore +newpath +4.663216e+01 7.891446e+01 moveto +4.397991e+01 7.645175e+01 lineto +4.505178e+01 7.611521e+01 lineto +4.756879e+01 7.862038e+01 lineto +4.663216e+01 7.891446e+01 lineto +closepath +gsave +4.881316e-01 4.881316e-01 4.881316e-01 setrgbcolor +fill +grestore +newpath +4.942347e+01 8.112799e+01 moveto +4.663216e+01 7.891446e+01 lineto +4.756879e+01 7.862038e+01 lineto +5.021776e+01 8.08786e+01 lineto +4.942347e+01 8.112799e+01 lineto +closepath +gsave +4.914174e-01 4.914174e-01 4.914174e-01 setrgbcolor +fill +grestore +newpath +5.23327e+01 8.307559e+01 moveto +4.942347e+01 8.112799e+01 lineto +5.021776e+01 8.08786e+01 lineto +5.297863e+01 8.287278e+01 lineto +5.23327e+01 8.307559e+01 lineto +closepath +gsave +4.943968e-01 4.943968e-01 4.943968e-01 setrgbcolor +fill +grestore +newpath +5.533782e+01 8.474251e+01 moveto +5.23327e+01 8.307559e+01 lineto +5.297863e+01 8.287278e+01 lineto +5.583052e+01 8.458781e+01 lineto +5.533782e+01 8.474251e+01 lineto +closepath +gsave +4.970227e-01 4.970227e-01 4.970227e-01 setrgbcolor +fill +grestore +newpath +5.841609e+01 8.611613e+01 moveto +5.533782e+01 8.474251e+01 lineto +5.583052e+01 8.458781e+01 lineto +5.875182e+01 8.601071e+01 lineto +5.841609e+01 8.611613e+01 lineto +closepath +gsave +4.992523e-01 4.992523e-01 4.992523e-01 setrgbcolor +fill +grestore +newpath +6.154421e+01 8.718605e+01 moveto +5.841609e+01 8.611613e+01 lineto +5.875182e+01 8.601071e+01 lineto +6.172043e+01 8.713072e+01 lineto +6.154421e+01 8.718605e+01 lineto +closepath +gsave +5.010484e-01 5.010484e-01 5.010484e-01 setrgbcolor +fill +grestore +newpath +6.469848e+01 8.794418e+01 moveto +6.154421e+01 8.718605e+01 lineto +6.172043e+01 8.713072e+01 lineto +6.471386e+01 8.793935e+01 lineto +6.469848e+01 8.794418e+01 lineto +closepath +gsave +5.023807e-01 5.023807e-01 5.023807e-01 setrgbcolor +fill +grestore +newpath +6.785504e+01 8.838477e+01 moveto +6.469848e+01 8.794418e+01 lineto +6.471386e+01 8.793935e+01 lineto +6.770946e+01 8.843048e+01 lineto +6.785504e+01 8.838477e+01 lineto +closepath +gsave +5.032263e-01 5.032263e-01 5.032263e-01 setrgbcolor +fill +grestore +newpath +5.047673e+01 4.909806e+00 moveto +5.32472e+01 4.088057e+00 lineto +5.395117e+01 3.90477e+00 lineto +5.134664e+01 4.683314e+00 lineto +5.047673e+01 4.909806e+00 lineto +closepath +gsave +4.222012e-01 4.222012e-01 4.222012e-01 setrgbcolor +fill +grestore +newpath +4.78162e+01 6.042627e+00 moveto +5.047673e+01 4.909806e+00 lineto +5.134664e+01 4.683314e+00 lineto +4.884547e+01 5.774644e+00 lineto +4.78162e+01 6.042627e+00 lineto +closepath +gsave +4.233534e-01 4.233534e-01 4.233534e-01 setrgbcolor +fill +grestore +newpath +4.528576e+01 7.477943e+00 moveto +4.78162e+01 6.042627e+00 lineto +4.884547e+01 5.774644e+00 lineto +4.64666e+01 7.170497e+00 lineto +4.528576e+01 7.477943e+00 lineto +closepath +gsave +4.247036e-01 4.247036e-01 4.247036e-01 setrgbcolor +fill +grestore +newpath +4.290456e+01 9.204887e+00 moveto +4.528576e+01 7.477943e+00 lineto +4.64666e+01 7.170497e+00 lineto +4.422803e+01 8.860306e+00 lineto +4.290456e+01 9.204887e+00 lineto +closepath +gsave +4.262592e-01 4.262592e-01 4.262592e-01 setrgbcolor +fill +grestore +newpath +4.069064e+01 1.121039e+01 moveto +4.290456e+01 9.204887e+00 lineto +4.422803e+01 8.860306e+00 lineto +4.214672e+01 1.083128e+01 lineto +4.069064e+01 1.121039e+01 lineto +closepath +gsave +4.280275e-01 4.280275e-01 4.280275e-01 setrgbcolor +fill +grestore +newpath +3.866075e+01 1.347926e+01 moveto +4.069064e+01 1.121039e+01 lineto +4.214672e+01 1.083128e+01 lineto +4.023841e+01 1.306849e+01 lineto +3.866075e+01 1.347926e+01 lineto +closepath +gsave +4.300148e-01 4.300148e-01 4.300148e-01 setrgbcolor +fill +grestore +newpath +3.683025e+01 1.599433e+01 moveto +3.866075e+01 1.347926e+01 lineto +4.023841e+01 1.306849e+01 lineto +3.851756e+01 1.555502e+01 lineto +3.683025e+01 1.599433e+01 lineto +closepath +gsave +4.32226e-01 4.32226e-01 4.32226e-01 setrgbcolor +fill +grestore +newpath +3.521302e+01 1.873655e+01 moveto +3.683025e+01 1.599433e+01 lineto +3.851756e+01 1.555502e+01 lineto +3.69972e+01 1.827202e+01 lineto +3.521302e+01 1.873655e+01 lineto +closepath +gsave +4.346638e-01 4.346638e-01 4.346638e-01 setrgbcolor +fill +grestore +newpath +3.382129e+01 2.168517e+01 moveto +3.521302e+01 1.873655e+01 lineto +3.69972e+01 1.827202e+01 lineto +3.568883e+01 2.119894e+01 lineto +3.382129e+01 2.168517e+01 lineto +closepath +gsave +4.373285e-01 4.373285e-01 4.373285e-01 setrgbcolor +fill +grestore +newpath +3.266559e+01 2.481787e+01 moveto +3.382129e+01 2.168517e+01 lineto +3.568883e+01 2.119894e+01 lineto +3.460235e+01 2.431361e+01 lineto +3.266559e+01 2.481787e+01 lineto +closepath +gsave +4.402171e-01 4.402171e-01 4.402171e-01 setrgbcolor +fill +grestore +newpath +3.175468e+01 2.811092e+01 moveto +3.266559e+01 2.481787e+01 lineto +3.460235e+01 2.431361e+01 lineto +3.3746e+01 2.759246e+01 lineto +3.175468e+01 2.811092e+01 lineto +closepath +gsave +4.433227e-01 4.433227e-01 4.433227e-01 setrgbcolor +fill +grestore +newpath +3.109545e+01 3.15394e+01 moveto +3.175468e+01 2.811092e+01 lineto +3.3746e+01 2.759246e+01 lineto +3.312626e+01 3.101066e+01 lineto +3.109545e+01 3.15394e+01 lineto +closepath +gsave +4.466346e-01 4.466346e-01 4.466346e-01 setrgbcolor +fill +grestore +newpath +3.069289e+01 3.507736e+01 moveto +3.109545e+01 3.15394e+01 lineto +3.312626e+01 3.101066e+01 lineto +3.274781e+01 3.454233e+01 lineto +3.069289e+01 3.507736e+01 lineto +closepath +gsave +4.501369e-01 4.501369e-01 4.501369e-01 setrgbcolor +fill +grestore +newpath +3.055005e+01 3.8698e+01 moveto +3.069289e+01 3.507736e+01 lineto +3.274781e+01 3.454233e+01 lineto +3.261353e+01 3.816075e+01 lineto +3.055005e+01 3.8698e+01 lineto +closepath +gsave +4.538091e-01 4.538091e-01 4.538091e-01 setrgbcolor +fill +grestore +newpath +3.066802e+01 4.237392e+01 moveto +3.055005e+01 3.8698e+01 lineto +3.261353e+01 3.816075e+01 lineto +3.272443e+01 4.183851e+01 lineto +3.066802e+01 4.237392e+01 lineto +closepath +gsave +4.576255e-01 4.576255e-01 4.576255e-01 setrgbcolor +fill +grestore +newpath +3.104589e+01 4.607729e+01 moveto +3.066802e+01 4.237392e+01 lineto +3.272443e+01 4.183851e+01 lineto +3.307967e+01 4.554778e+01 lineto +3.104589e+01 4.607729e+01 lineto +closepath +gsave +4.615551e-01 4.615551e-01 4.615551e-01 setrgbcolor +fill +grestore +newpath +3.168081e+01 4.978008e+01 moveto +3.104589e+01 4.607729e+01 lineto +3.307967e+01 4.554778e+01 lineto +3.367656e+01 4.926047e+01 lineto +3.168081e+01 4.978008e+01 lineto +closepath +gsave +4.65562e-01 4.65562e-01 4.65562e-01 setrgbcolor +fill +grestore +newpath +3.256797e+01 5.345426e+01 moveto +3.168081e+01 4.978008e+01 lineto +3.367656e+01 4.926047e+01 lineto +3.451058e+01 5.294847e+01 lineto +3.256797e+01 5.345426e+01 lineto +closepath +gsave +4.696056e-01 4.696056e-01 4.696056e-01 setrgbcolor +fill +grestore +newpath +3.370066e+01 5.707199e+01 moveto +3.256797e+01 5.345426e+01 lineto +3.451058e+01 5.294847e+01 lineto +3.557542e+01 5.658388e+01 lineto +3.370066e+01 5.707199e+01 lineto +closepath +gsave +4.736412e-01 4.736412e-01 4.736412e-01 setrgbcolor +fill +grestore +newpath +3.507029e+01 6.060591e+01 moveto +3.370066e+01 5.707199e+01 lineto +3.557542e+01 5.658388e+01 lineto +3.686302e+01 6.013916e+01 lineto +3.507029e+01 6.060591e+01 lineto +closepath +gsave +4.776205e-01 4.776205e-01 4.776205e-01 setrgbcolor +fill +grestore +newpath +3.666651e+01 6.402926e+01 moveto +3.507029e+01 6.060591e+01 lineto +3.686302e+01 6.013916e+01 lineto +3.836362e+01 6.35874e+01 lineto +3.666651e+01 6.402926e+01 lineto +closepath +gsave +4.814928e-01 4.814928e-01 4.814928e-01 setrgbcolor +fill +grestore +newpath +3.847722e+01 6.731612e+01 moveto +3.666651e+01 6.402926e+01 lineto +3.836362e+01 6.35874e+01 lineto +4.006588e+01 6.690249e+01 lineto +3.847722e+01 6.731612e+01 lineto +closepath +gsave +4.852056e-01 4.852056e-01 4.852056e-01 setrgbcolor +fill +grestore +newpath +4.048872e+01 7.04416e+01 moveto +3.847722e+01 6.731612e+01 lineto +4.006588e+01 6.690249e+01 lineto +4.19569e+01 7.005935e+01 lineto +4.048872e+01 7.04416e+01 lineto +closepath +gsave +4.887061e-01 4.887061e-01 4.887061e-01 setrgbcolor +fill +grestore +newpath +4.268579e+01 7.338205e+01 moveto +4.048872e+01 7.04416e+01 lineto +4.19569e+01 7.005935e+01 lineto +4.402236e+01 7.303406e+01 lineto +4.268579e+01 7.338205e+01 lineto +closepath +gsave +4.919423e-01 4.919423e-01 4.919423e-01 setrgbcolor +fill +grestore +newpath +4.505178e+01 7.611521e+01 moveto +4.268579e+01 7.338205e+01 lineto +4.402236e+01 7.303406e+01 lineto +4.624663e+01 7.580412e+01 lineto +4.505178e+01 7.611521e+01 lineto +closepath +gsave +4.948643e-01 4.948643e-01 4.948643e-01 setrgbcolor +fill +grestore +newpath +4.756879e+01 7.862038e+01 moveto +4.505178e+01 7.611521e+01 lineto +4.624663e+01 7.580412e+01 lineto +4.861288e+01 7.834854e+01 lineto +4.756879e+01 7.862038e+01 lineto +closepath +gsave +4.974256e-01 4.974256e-01 4.974256e-01 setrgbcolor +fill +grestore +newpath +5.021776e+01 8.08786e+01 moveto +4.756879e+01 7.862038e+01 lineto +4.861288e+01 7.834854e+01 lineto +5.110318e+01 8.064807e+01 lineto +5.021776e+01 8.08786e+01 lineto +closepath +gsave +4.995843e-01 4.995843e-01 4.995843e-01 setrgbcolor +fill +grestore +newpath +5.297863e+01 8.287278e+01 moveto +5.021776e+01 8.08786e+01 lineto +5.110318e+01 8.064807e+01 lineto +5.369869e+01 8.26853e+01 lineto +5.297863e+01 8.287278e+01 lineto +closepath +gsave +5.013043e-01 5.013043e-01 5.013043e-01 setrgbcolor +fill +grestore +newpath +5.583052e+01 8.458781e+01 moveto +5.297863e+01 8.287278e+01 lineto +5.369869e+01 8.26853e+01 lineto +5.637975e+01 8.444481e+01 lineto +5.583052e+01 8.458781e+01 lineto +closepath +gsave +5.025564e-01 5.025564e-01 5.025564e-01 setrgbcolor +fill +grestore +newpath +5.875182e+01 8.601071e+01 moveto +5.583052e+01 8.458781e+01 lineto +5.637975e+01 8.444481e+01 lineto +5.912607e+01 8.591327e+01 lineto +5.875182e+01 8.601071e+01 lineto +closepath +gsave +5.033189e-01 5.033189e-01 5.033189e-01 setrgbcolor +fill +grestore +newpath +6.172043e+01 8.713072e+01 moveto +5.875182e+01 8.601071e+01 lineto +5.912607e+01 8.591327e+01 lineto +6.191687e+01 8.707958e+01 lineto +6.172043e+01 8.713072e+01 lineto +closepath +gsave +5.035787e-01 5.035787e-01 5.035787e-01 setrgbcolor +fill +grestore +newpath +6.471386e+01 8.793935e+01 moveto +6.172043e+01 8.713072e+01 lineto +6.191687e+01 8.707958e+01 lineto +6.4731e+01 8.793489e+01 lineto +6.471386e+01 8.793935e+01 lineto +closepath +gsave +5.03331e-01 5.03331e-01 5.03331e-01 setrgbcolor +fill +grestore +newpath +6.770946e+01 8.843048e+01 moveto +6.471386e+01 8.793935e+01 lineto +6.4731e+01 8.793489e+01 lineto +6.754717e+01 8.847273e+01 lineto +6.770946e+01 8.843048e+01 lineto +closepath +gsave +5.025803e-01 5.025803e-01 5.025803e-01 setrgbcolor +fill +grestore +newpath +5.134664e+01 4.683314e+00 moveto +5.395117e+01 3.90477e+00 lineto +5.472326e+01 3.737606e+00 lineto +5.230073e+01 4.476744e+00 lineto +5.134664e+01 4.683314e+00 lineto +closepath +gsave +4.24809e-01 4.24809e-01 4.24809e-01 setrgbcolor +fill +grestore +newpath +4.884547e+01 5.774644e+00 moveto +5.134664e+01 4.683314e+00 lineto +5.230073e+01 4.476744e+00 lineto +4.997434e+01 5.530232e+00 lineto +4.884547e+01 5.774644e+00 lineto +closepath +gsave +4.266306e-01 4.266306e-01 4.266306e-01 setrgbcolor +fill +grestore +newpath +4.64666e+01 7.170497e+00 moveto +4.884547e+01 5.774644e+00 lineto +4.997434e+01 5.530232e+00 lineto +4.77617e+01 6.890093e+00 lineto +4.64666e+01 7.170497e+00 lineto +closepath +gsave +4.286875e-01 4.286875e-01 4.286875e-01 setrgbcolor +fill +grestore +newpath +4.422803e+01 8.860306e+00 moveto +4.64666e+01 7.170497e+00 lineto +4.77617e+01 6.890093e+00 lineto +4.567957e+01 8.546034e+00 lineto +4.422803e+01 8.860306e+00 lineto +closepath +gsave +4.309868e-01 4.309868e-01 4.309868e-01 setrgbcolor +fill +grestore +newpath +4.214672e+01 1.083128e+01 moveto +4.422803e+01 8.860306e+00 lineto +4.567957e+01 8.546034e+00 lineto +4.374369e+01 1.048552e+01 lineto +4.214672e+01 1.083128e+01 lineto +closepath +gsave +4.335336e-01 4.335336e-01 4.335336e-01 setrgbcolor +fill +grestore +newpath +4.023841e+01 1.306849e+01 moveto +4.214672e+01 1.083128e+01 lineto +4.374369e+01 1.048552e+01 lineto +4.196874e+01 1.269386e+01 lineto +4.023841e+01 1.306849e+01 lineto +closepath +gsave +4.363303e-01 4.363303e-01 4.363303e-01 setrgbcolor +fill +grestore +newpath +3.851756e+01 1.555502e+01 moveto +4.023841e+01 1.306849e+01 lineto +4.196874e+01 1.269386e+01 lineto +4.036814e+01 1.515435e+01 lineto +3.851756e+01 1.555502e+01 lineto +closepath +gsave +4.393755e-01 4.393755e-01 4.393755e-01 setrgbcolor +fill +grestore +newpath +3.69972e+01 1.827202e+01 moveto +3.851756e+01 1.555502e+01 lineto +4.036814e+01 1.515435e+01 lineto +3.895402e+01 1.784835e+01 lineto +3.69972e+01 1.827202e+01 lineto +closepath +gsave +4.42664e-01 4.42664e-01 4.42664e-01 setrgbcolor +fill +grestore +newpath +3.568883e+01 2.119894e+01 moveto +3.69972e+01 1.827202e+01 lineto +3.895402e+01 1.784835e+01 lineto +3.773708e+01 2.075547e+01 lineto +3.568883e+01 2.119894e+01 lineto +closepath +gsave +4.461857e-01 4.461857e-01 4.461857e-01 setrgbcolor +fill +grestore +newpath +3.460235e+01 2.431361e+01 moveto +3.568883e+01 2.119894e+01 lineto +3.773708e+01 2.075547e+01 lineto +3.672653e+01 2.38537e+01 lineto +3.460235e+01 2.431361e+01 lineto +closepath +gsave +4.499251e-01 4.499251e-01 4.499251e-01 setrgbcolor +fill +grestore +newpath +3.3746e+01 2.759246e+01 moveto +3.460235e+01 2.431361e+01 lineto +3.672653e+01 2.38537e+01 lineto +3.593002e+01 2.711959e+01 lineto +3.3746e+01 2.759246e+01 lineto +closepath +gsave +4.538614e-01 4.538614e-01 4.538614e-01 setrgbcolor +fill +grestore +newpath +3.312626e+01 3.101066e+01 moveto +3.3746e+01 2.759246e+01 lineto +3.593002e+01 2.711959e+01 lineto +3.535358e+01 3.052842e+01 lineto +3.312626e+01 3.101066e+01 lineto +closepath +gsave +4.579676e-01 4.579676e-01 4.579676e-01 setrgbcolor +fill +grestore +newpath +3.274781e+01 3.454233e+01 moveto +3.312626e+01 3.101066e+01 lineto +3.535358e+01 3.052842e+01 lineto +3.500158e+01 3.405437e+01 lineto +3.274781e+01 3.454233e+01 lineto +closepath +gsave +4.622108e-01 4.622108e-01 4.622108e-01 setrgbcolor +fill +grestore +newpath +3.261353e+01 3.816075e+01 moveto +3.274781e+01 3.454233e+01 lineto +3.500158e+01 3.405437e+01 lineto +3.487668e+01 3.767075e+01 lineto +3.261353e+01 3.816075e+01 lineto +closepath +gsave +4.665523e-01 4.665523e-01 4.665523e-01 setrgbcolor +fill +grestore +newpath +3.272443e+01 4.183851e+01 moveto +3.261353e+01 3.816075e+01 lineto +3.487668e+01 3.767075e+01 lineto +3.497983e+01 4.135019e+01 lineto +3.272443e+01 4.183851e+01 lineto +closepath +gsave +4.709479e-01 4.709479e-01 4.709479e-01 setrgbcolor +fill +grestore +newpath +3.307967e+01 4.554778e+01 moveto +3.272443e+01 4.183851e+01 lineto +3.497983e+01 4.135019e+01 lineto +3.531025e+01 4.506483e+01 lineto +3.307967e+01 4.554778e+01 lineto +closepath +gsave +4.753484e-01 4.753484e-01 4.753484e-01 setrgbcolor +fill +grestore +newpath +3.367656e+01 4.926047e+01 moveto +3.307967e+01 4.554778e+01 lineto +3.531025e+01 4.506483e+01 lineto +3.586543e+01 4.878655e+01 lineto +3.367656e+01 4.926047e+01 lineto +closepath +gsave +4.797004e-01 4.797004e-01 4.797004e-01 setrgbcolor +fill +grestore +newpath +3.451058e+01 5.294847e+01 moveto +3.367656e+01 4.926047e+01 lineto +3.586543e+01 4.878655e+01 lineto +3.664117e+01 5.248718e+01 lineto +3.451058e+01 5.294847e+01 lineto +closepath +gsave +4.839476e-01 4.839476e-01 4.839476e-01 setrgbcolor +fill +grestore +newpath +3.557542e+01 5.658388e+01 moveto +3.451058e+01 5.294847e+01 lineto +3.664117e+01 5.248718e+01 lineto +3.76316e+01 5.613869e+01 lineto +3.557542e+01 5.658388e+01 lineto +closepath +gsave +4.880311e-01 4.880311e-01 4.880311e-01 setrgbcolor +fill +grestore +newpath +3.686302e+01 6.013916e+01 moveto +3.557542e+01 5.658388e+01 lineto +3.76316e+01 5.613869e+01 lineto +3.882922e+01 5.971346e+01 lineto +3.686302e+01 6.013916e+01 lineto +closepath +gsave +4.918918e-01 4.918918e-01 4.918918e-01 setrgbcolor +fill +grestore +newpath +3.836362e+01 6.35874e+01 moveto +3.686302e+01 6.013916e+01 lineto +3.882922e+01 5.971346e+01 lineto +4.022496e+01 6.31844e+01 lineto +3.836362e+01 6.35874e+01 lineto +closepath +gsave +4.954709e-01 4.954709e-01 4.954709e-01 setrgbcolor +fill +grestore +newpath +4.006588e+01 6.690249e+01 moveto +3.836362e+01 6.35874e+01 lineto +4.022496e+01 6.31844e+01 lineto +4.180826e+01 6.652525e+01 lineto +4.006588e+01 6.690249e+01 lineto +closepath +gsave +4.987118e-01 4.987118e-01 4.987118e-01 setrgbcolor +fill +grestore +newpath +4.19569e+01 7.005935e+01 moveto +4.006588e+01 6.690249e+01 lineto +4.180826e+01 6.652525e+01 lineto +4.356714e+01 6.971071e+01 lineto +4.19569e+01 7.005935e+01 lineto +closepath +gsave +5.015617e-01 5.015617e-01 5.015617e-01 setrgbcolor +fill +grestore +newpath +4.402236e+01 7.303406e+01 moveto +4.19569e+01 7.005935e+01 lineto +4.356714e+01 6.971071e+01 lineto +4.548827e+01 7.271668e+01 lineto +4.402236e+01 7.303406e+01 lineto +closepath +gsave +5.039725e-01 5.039725e-01 5.039725e-01 setrgbcolor +fill +grestore +newpath +4.624663e+01 7.580412e+01 moveto +4.402236e+01 7.303406e+01 lineto +4.548827e+01 7.271668e+01 lineto +4.755711e+01 7.552038e+01 lineto +4.624663e+01 7.580412e+01 lineto +closepath +gsave +5.05903e-01 5.05903e-01 5.05903e-01 setrgbcolor +fill +grestore +newpath +4.861288e+01 7.834854e+01 moveto +4.624663e+01 7.580412e+01 lineto +4.755711e+01 7.552038e+01 lineto +4.9758e+01 7.810061e+01 lineto +4.861288e+01 7.834854e+01 lineto +closepath +gsave +5.073193e-01 5.073193e-01 5.073193e-01 setrgbcolor +fill +grestore +newpath +5.110318e+01 8.064807e+01 moveto +4.861288e+01 7.834854e+01 lineto +4.9758e+01 7.810061e+01 lineto +5.207428e+01 8.043782e+01 lineto +5.110318e+01 8.064807e+01 lineto +closepath +gsave +5.081962e-01 5.081962e-01 5.081962e-01 setrgbcolor +fill +grestore +newpath +5.369869e+01 8.26853e+01 moveto +5.110318e+01 8.064807e+01 lineto +5.207428e+01 8.043782e+01 lineto +5.448842e+01 8.251432e+01 lineto +5.369869e+01 8.26853e+01 lineto +closepath +gsave +5.085179e-01 5.085179e-01 5.085179e-01 setrgbcolor +fill +grestore +newpath +5.637975e+01 8.444481e+01 moveto +5.369869e+01 8.26853e+01 lineto +5.448842e+01 8.251432e+01 lineto +5.698213e+01 8.431439e+01 lineto +5.637975e+01 8.444481e+01 lineto +closepath +gsave +5.082785e-01 5.082785e-01 5.082785e-01 setrgbcolor +fill +grestore +newpath +5.912607e+01 8.591327e+01 moveto +5.637975e+01 8.444481e+01 lineto +5.698213e+01 8.431439e+01 lineto +5.953654e+01 8.58244e+01 lineto +5.912607e+01 8.591327e+01 lineto +closepath +gsave +5.074821e-01 5.074821e-01 5.074821e-01 setrgbcolor +fill +grestore +newpath +6.191687e+01 8.707958e+01 moveto +5.912607e+01 8.591327e+01 lineto +5.953654e+01 8.58244e+01 lineto +6.213231e+01 8.703293e+01 lineto +6.191687e+01 8.707958e+01 lineto +closepath +gsave +5.061428e-01 5.061428e-01 5.061428e-01 setrgbcolor +fill +grestore +newpath +6.4731e+01 8.793489e+01 moveto +6.191687e+01 8.707958e+01 lineto +6.213231e+01 8.703293e+01 lineto +6.47498e+01 8.793082e+01 lineto +6.4731e+01 8.793489e+01 lineto +closepath +gsave +5.042842e-01 5.042842e-01 5.042842e-01 setrgbcolor +fill +grestore +newpath +6.754717e+01 8.847273e+01 moveto +6.4731e+01 8.793489e+01 lineto +6.47498e+01 8.793082e+01 lineto +6.736917e+01 8.851127e+01 lineto +6.754717e+01 8.847273e+01 lineto +closepath +gsave +5.019389e-01 5.019389e-01 5.019389e-01 setrgbcolor +fill +grestore +newpath +5.230073e+01 4.476744e+00 moveto +5.472326e+01 3.737606e+00 lineto +5.555871e+01 3.587594e+00 lineto +5.333312e+01 4.29137e+00 lineto +5.230073e+01 4.476744e+00 lineto +closepath +gsave +4.275864e-01 4.275864e-01 4.275864e-01 setrgbcolor +fill +grestore +newpath +4.997434e+01 5.530232e+00 moveto +5.230073e+01 4.476744e+00 lineto +5.333312e+01 4.29137e+00 lineto +5.119585e+01 5.310898e+00 lineto +4.997434e+01 5.530232e+00 lineto +closepath +gsave +4.301665e-01 4.301665e-01 4.301665e-01 setrgbcolor +fill +grestore +newpath +4.77617e+01 6.890093e+00 moveto +4.997434e+01 5.530232e+00 lineto +5.119585e+01 5.310898e+00 lineto +4.916309e+01 6.638461e+00 lineto +4.77617e+01 6.890093e+00 lineto +closepath +gsave +4.330357e-01 4.330357e-01 4.330357e-01 setrgbcolor +fill +grestore +newpath +4.567957e+01 8.546034e+00 moveto +4.77617e+01 6.890093e+00 lineto +4.916309e+01 6.638461e+00 lineto +4.725022e+01 8.264008e+00 lineto +4.567957e+01 8.546034e+00 lineto +closepath +gsave +4.36199e-01 4.36199e-01 4.36199e-01 setrgbcolor +fill +grestore +newpath +4.374369e+01 1.048552e+01 moveto +4.567957e+01 8.546034e+00 lineto +4.725022e+01 8.264008e+00 lineto +4.547172e+01 1.017523e+01 lineto +4.374369e+01 1.048552e+01 lineto +closepath +gsave +4.396569e-01 4.396569e-01 4.396569e-01 setrgbcolor +fill +grestore +newpath +4.196874e+01 1.269386e+01 moveto +4.374369e+01 1.048552e+01 lineto +4.547172e+01 1.017523e+01 lineto +4.384106e+01 1.235767e+01 lineto +4.196874e+01 1.269386e+01 lineto +closepath +gsave +4.434046e-01 4.434046e-01 4.434046e-01 setrgbcolor +fill +grestore +newpath +4.036814e+01 1.515435e+01 moveto +4.196874e+01 1.269386e+01 lineto +4.384106e+01 1.235767e+01 lineto +4.237059e+01 1.479479e+01 lineto +4.036814e+01 1.515435e+01 lineto +closepath +gsave +4.474311e-01 4.474311e-01 4.474311e-01 setrgbcolor +fill +grestore +newpath +3.895402e+01 1.784835e+01 moveto +4.036814e+01 1.515435e+01 lineto +4.237059e+01 1.479479e+01 lineto +4.107143e+01 1.746815e+01 lineto +3.895402e+01 1.784835e+01 lineto +closepath +gsave +4.51719e-01 4.51719e-01 4.51719e-01 setrgbcolor +fill +grestore +newpath +3.773708e+01 2.075547e+01 moveto +3.895402e+01 1.784835e+01 lineto +4.107143e+01 1.746815e+01 lineto +3.995341e+01 2.035751e+01 lineto +3.773708e+01 2.075547e+01 lineto +closepath +gsave +4.562433e-01 4.562433e-01 4.562433e-01 setrgbcolor +fill +grestore +newpath +3.672653e+01 2.38537e+01 moveto +3.773708e+01 2.075547e+01 lineto +3.995341e+01 2.035751e+01 lineto +3.902502e+01 2.344099e+01 lineto +3.672653e+01 2.38537e+01 lineto +closepath +gsave +4.609717e-01 4.609717e-01 4.609717e-01 setrgbcolor +fill +grestore +newpath +3.593002e+01 2.711959e+01 moveto +3.672653e+01 2.38537e+01 lineto +3.902502e+01 2.344099e+01 lineto +3.829326e+01 2.669525e+01 lineto +3.593002e+01 2.711959e+01 lineto +closepath +gsave +4.658642e-01 4.658642e-01 4.658642e-01 setrgbcolor +fill +grestore +newpath +3.535358e+01 3.052842e+01 moveto +3.593002e+01 2.711959e+01 lineto +3.829326e+01 2.669525e+01 lineto +3.776369e+01 3.009566e+01 lineto +3.535358e+01 3.052842e+01 lineto +closepath +gsave +4.708735e-01 4.708735e-01 4.708735e-01 setrgbcolor +fill +grestore +newpath +3.500158e+01 3.405437e+01 moveto +3.535358e+01 3.052842e+01 lineto +3.776369e+01 3.009566e+01 lineto +3.74403e+01 3.361647e+01 lineto +3.500158e+01 3.405437e+01 lineto +closepath +gsave +4.759453e-01 4.759453e-01 4.759453e-01 setrgbcolor +fill +grestore +newpath +3.487668e+01 3.767075e+01 moveto +3.500158e+01 3.405437e+01 lineto +3.74403e+01 3.361647e+01 lineto +3.732556e+01 3.723103e+01 lineto +3.487668e+01 3.767075e+01 lineto +closepath +gsave +4.810193e-01 4.810193e-01 4.810193e-01 setrgbcolor +fill +grestore +newpath +3.497983e+01 4.135019e+01 moveto +3.487668e+01 3.767075e+01 lineto +3.732556e+01 3.723103e+01 lineto +3.742032e+01 4.091198e+01 lineto +3.497983e+01 4.135019e+01 lineto +closepath +gsave +4.860297e-01 4.860297e-01 4.860297e-01 setrgbcolor +fill +grestore +newpath +3.531025e+01 4.506483e+01 moveto +3.497983e+01 4.135019e+01 lineto +3.742032e+01 4.091198e+01 lineto +3.772387e+01 4.463145e+01 lineto +3.531025e+01 4.506483e+01 lineto +closepath +gsave +4.909074e-01 4.909074e-01 4.909074e-01 setrgbcolor +fill +grestore +newpath +3.586543e+01 4.878655e+01 moveto +3.531025e+01 4.506483e+01 lineto +3.772387e+01 4.463145e+01 lineto +3.823392e+01 4.836127e+01 lineto +3.586543e+01 4.878655e+01 lineto +closepath +gsave +4.955805e-01 4.955805e-01 4.955805e-01 setrgbcolor +fill +grestore +newpath +3.664117e+01 5.248718e+01 moveto +3.586543e+01 4.878655e+01 lineto +3.823392e+01 4.836127e+01 lineto +3.89466e+01 5.207322e+01 lineto +3.664117e+01 5.248718e+01 lineto +closepath +gsave +4.999768e-01 4.999768e-01 4.999768e-01 setrgbcolor +fill +grestore +newpath +3.76316e+01 5.613869e+01 moveto +3.664117e+01 5.248718e+01 lineto +3.89466e+01 5.207322e+01 lineto +3.985651e+01 5.573919e+01 lineto +3.76316e+01 5.613869e+01 lineto +closepath +gsave +5.040253e-01 5.040253e-01 5.040253e-01 setrgbcolor +fill +grestore +newpath +3.882922e+01 5.971346e+01 moveto +3.76316e+01 5.613869e+01 lineto +3.985651e+01 5.573919e+01 lineto +4.095677e+01 5.933143e+01 lineto +3.882922e+01 5.971346e+01 lineto +closepath +gsave +5.076579e-01 5.076579e-01 5.076579e-01 setrgbcolor +fill +grestore +newpath +4.022496e+01 6.31844e+01 moveto +3.882922e+01 5.971346e+01 lineto +4.095677e+01 5.933143e+01 lineto +4.223905e+01 6.282275e+01 lineto +4.022496e+01 6.31844e+01 lineto +closepath +gsave +5.108118e-01 5.108118e-01 5.108118e-01 setrgbcolor +fill +grestore +newpath +4.180826e+01 6.652525e+01 moveto +4.022496e+01 6.31844e+01 lineto +4.223905e+01 6.282275e+01 lineto +4.369363e+01 6.618671e+01 lineto +4.180826e+01 6.652525e+01 lineto +closepath +gsave +5.134308e-01 5.134308e-01 5.134308e-01 setrgbcolor +fill +grestore +newpath +4.356714e+01 6.971071e+01 moveto +4.180826e+01 6.652525e+01 lineto +4.369363e+01 6.618671e+01 lineto +4.530952e+01 6.939785e+01 lineto +4.356714e+01 6.971071e+01 lineto +closepath +gsave +5.154673e-01 5.154673e-01 5.154673e-01 setrgbcolor +fill +grestore +newpath +4.548827e+01 7.271668e+01 moveto +4.356714e+01 6.971071e+01 lineto +4.530952e+01 6.939785e+01 lineto +4.707447e+01 7.243186e+01 lineto +4.548827e+01 7.271668e+01 lineto +closepath +gsave +5.168835e-01 5.168835e-01 5.168835e-01 setrgbcolor +fill +grestore +newpath +4.755711e+01 7.552038e+01 moveto +4.548827e+01 7.271668e+01 lineto +4.707447e+01 7.243186e+01 lineto +4.897513e+01 7.526577e+01 lineto +4.755711e+01 7.552038e+01 lineto +closepath +gsave +5.176529e-01 5.176529e-01 5.176529e-01 setrgbcolor +fill +grestore +newpath +4.9758e+01 7.810061e+01 moveto +4.755711e+01 7.552038e+01 lineto +4.897513e+01 7.526577e+01 lineto +5.09971e+01 7.787812e+01 lineto +4.9758e+01 7.810061e+01 lineto +closepath +gsave +5.177606e-01 5.177606e-01 5.177606e-01 setrgbcolor +fill +grestore +newpath +5.207428e+01 8.043782e+01 moveto +4.9758e+01 7.810061e+01 lineto +5.09971e+01 7.787812e+01 lineto +5.312508e+01 8.024914e+01 lineto +5.207428e+01 8.043782e+01 lineto +closepath +gsave +5.172045e-01 5.172045e-01 5.172045e-01 setrgbcolor +fill +grestore +newpath +5.448842e+01 8.251432e+01 moveto +5.207428e+01 8.043782e+01 lineto +5.312508e+01 8.024914e+01 lineto +5.534296e+01 8.236088e+01 lineto +5.448842e+01 8.251432e+01 lineto +closepath +gsave +5.159947e-01 5.159947e-01 5.159947e-01 setrgbcolor +fill +grestore +newpath +5.698213e+01 8.431439e+01 moveto +5.448842e+01 8.251432e+01 lineto +5.534296e+01 8.236088e+01 lineto +5.763394e+01 8.419735e+01 lineto +5.698213e+01 8.431439e+01 lineto +closepath +gsave +5.141538e-01 5.141538e-01 5.141538e-01 setrgbcolor +fill +grestore +newpath +5.953654e+01 8.58244e+01 moveto +5.698213e+01 8.431439e+01 lineto +5.763394e+01 8.419735e+01 lineto +5.998069e+01 8.574465e+01 lineto +5.953654e+01 8.58244e+01 lineto +closepath +gsave +5.117156e-01 5.117156e-01 5.117156e-01 setrgbcolor +fill +grestore +newpath +6.213231e+01 8.703293e+01 moveto +5.953654e+01 8.58244e+01 lineto +5.998069e+01 8.574465e+01 lineto +6.236544e+01 8.699107e+01 lineto +6.213231e+01 8.703293e+01 lineto +closepath +gsave +5.087246e-01 5.087246e-01 5.087246e-01 setrgbcolor +fill +grestore +newpath +6.47498e+01 8.793082e+01 moveto +6.213231e+01 8.703293e+01 lineto +6.236544e+01 8.699107e+01 lineto +6.477014e+01 8.792716e+01 lineto +6.47498e+01 8.793082e+01 lineto +closepath +gsave +5.052344e-01 5.052344e-01 5.052344e-01 setrgbcolor +fill +grestore +newpath +6.736917e+01 8.851127e+01 moveto +6.47498e+01 8.793082e+01 lineto +6.477014e+01 8.792716e+01 lineto +6.717657e+01 8.854585e+01 lineto +6.736917e+01 8.851127e+01 lineto +closepath +gsave +5.013061e-01 5.013061e-01 5.013061e-01 setrgbcolor +fill +grestore +newpath +5.555871e+01 3.587594e+00 moveto +5.785577e+01 3.204898e+00 lineto +5.8532e+01 3.105063e+00 lineto +5.645236e+01 3.455659e+00 lineto +5.555871e+01 3.587594e+00 lineto +closepath +gsave +4.274455e-01 4.274455e-01 4.274455e-01 setrgbcolor +fill +grestore +newpath +5.333312e+01 4.29137e+00 moveto +5.555871e+01 3.587594e+00 lineto +5.645236e+01 3.455659e+00 lineto +5.443743e+01 4.128334e+00 lineto +5.333312e+01 4.29137e+00 lineto +closepath +gsave +4.305161e-01 4.305161e-01 4.305161e-01 setrgbcolor +fill +grestore +newpath +5.119585e+01 5.310898e+00 moveto +5.333312e+01 4.29137e+00 lineto +5.443743e+01 4.128334e+00 lineto +5.250247e+01 5.117996e+00 lineto +5.119585e+01 5.310898e+00 lineto +closepath +gsave +4.339403e-01 4.339403e-01 4.339403e-01 setrgbcolor +fill +grestore +newpath +4.916309e+01 6.638461e+00 moveto +5.119585e+01 5.310898e+00 lineto +5.250247e+01 5.117996e+00 lineto +5.066211e+01 6.417152e+00 lineto +4.916309e+01 6.638461e+00 lineto +closepath +gsave +4.377252e-01 4.377252e-01 4.377252e-01 setrgbcolor +fill +grestore +newpath +4.725022e+01 8.264008e+00 moveto +4.916309e+01 6.638461e+00 lineto +5.066211e+01 6.417152e+00 lineto +4.89303e+01 8.015969e+00 lineto +4.725022e+01 8.264008e+00 lineto +closepath +gsave +4.418714e-01 4.418714e-01 4.418714e-01 setrgbcolor +fill +grestore +newpath +4.547172e+01 1.017523e+01 moveto +4.725022e+01 8.264008e+00 lineto +4.89303e+01 8.015969e+00 lineto +4.732015e+01 9.902341e+00 lineto +4.547172e+01 1.017523e+01 lineto +closepath +gsave +4.463722e-01 4.463722e-01 4.463722e-01 setrgbcolor +fill +grestore +newpath +4.384106e+01 1.235767e+01 moveto +4.547172e+01 1.017523e+01 lineto +4.732015e+01 9.902341e+00 lineto +4.584384e+01 1.206199e+01 lineto +4.384106e+01 1.235767e+01 lineto +closepath +gsave +4.512124e-01 4.512124e-01 4.512124e-01 setrgbcolor +fill +grestore +newpath +4.237059e+01 1.479479e+01 moveto +4.384106e+01 1.235767e+01 lineto +4.584384e+01 1.206199e+01 lineto +4.451255e+01 1.447856e+01 lineto +4.237059e+01 1.479479e+01 lineto +closepath +gsave +4.563676e-01 4.563676e-01 4.563676e-01 setrgbcolor +fill +grestore +newpath +4.107143e+01 1.746815e+01 moveto +4.237059e+01 1.479479e+01 lineto +4.451255e+01 1.447856e+01 lineto +4.333636e+01 1.713376e+01 lineto +4.107143e+01 1.746815e+01 lineto +closepath +gsave +4.618037e-01 4.618037e-01 4.618037e-01 setrgbcolor +fill +grestore +newpath +3.995341e+01 2.035751e+01 moveto +4.107143e+01 1.746815e+01 lineto +4.333636e+01 1.713376e+01 lineto +4.232417e+01 2.00075e+01 lineto +3.995341e+01 2.035751e+01 lineto +closepath +gsave +4.674763e-01 4.674763e-01 4.674763e-01 setrgbcolor +fill +grestore +newpath +3.902502e+01 2.344099e+01 moveto +3.995341e+01 2.035751e+01 lineto +4.232417e+01 2.00075e+01 lineto +4.148365e+01 2.307801e+01 lineto +3.902502e+01 2.344099e+01 lineto +closepath +gsave +4.733311e-01 4.733311e-01 4.733311e-01 setrgbcolor +fill +grestore +newpath +3.829326e+01 2.669525e+01 moveto +3.902502e+01 2.344099e+01 lineto +4.148365e+01 2.307801e+01 lineto +4.082116e+01 2.632205e+01 lineto +3.829326e+01 2.669525e+01 lineto +closepath +gsave +4.793043e-01 4.793043e-01 4.793043e-01 setrgbcolor +fill +grestore +newpath +3.776369e+01 3.009566e+01 moveto +3.829326e+01 2.669525e+01 lineto +4.082116e+01 2.632205e+01 lineto +4.034171e+01 2.971505e+01 lineto +3.776369e+01 3.009566e+01 lineto +closepath +gsave +4.853234e-01 4.853234e-01 4.853234e-01 setrgbcolor +fill +grestore +newpath +3.74403e+01 3.361647e+01 moveto +3.776369e+01 3.009566e+01 lineto +4.034171e+01 2.971505e+01 lineto +4.004893e+01 3.323135e+01 lineto +3.74403e+01 3.361647e+01 lineto +closepath +gsave +4.913084e-01 4.913084e-01 4.913084e-01 setrgbcolor +fill +grestore +newpath +3.732556e+01 3.723103e+01 moveto +3.74403e+01 3.361647e+01 lineto +4.004893e+01 3.323135e+01 lineto +3.994505e+01 3.684431e+01 lineto +3.732556e+01 3.723103e+01 lineto +closepath +gsave +4.971738e-01 4.971738e-01 4.971738e-01 setrgbcolor +fill +grestore +newpath +3.742032e+01 4.091198e+01 moveto +3.732556e+01 3.723103e+01 lineto +3.994505e+01 3.684431e+01 lineto +4.003084e+01 4.052658e+01 lineto +3.742032e+01 4.091198e+01 lineto +closepath +gsave +5.028296e-01 5.028296e-01 5.028296e-01 setrgbcolor +fill +grestore +newpath +3.772387e+01 4.463145e+01 moveto +3.742032e+01 4.091198e+01 lineto +4.003084e+01 4.052658e+01 lineto +4.030567e+01 4.425028e+01 lineto +3.772387e+01 4.463145e+01 lineto +closepath +gsave +5.081847e-01 5.081847e-01 5.081847e-01 setrgbcolor +fill +grestore +newpath +3.823392e+01 4.836127e+01 moveto +3.772387e+01 4.463145e+01 lineto +4.030567e+01 4.425028e+01 lineto +4.076743e+01 4.798723e+01 lineto +3.823392e+01 4.836127e+01 lineto +closepath +gsave +5.131484e-01 5.131484e-01 5.131484e-01 setrgbcolor +fill +grestore +newpath +3.89466e+01 5.207322e+01 moveto +3.823392e+01 4.836127e+01 lineto +4.076743e+01 4.798723e+01 lineto +4.141265e+01 5.170914e+01 lineto +3.89466e+01 5.207322e+01 lineto +closepath +gsave +5.176331e-01 5.176331e-01 5.176331e-01 setrgbcolor +fill +grestore +newpath +3.985651e+01 5.573919e+01 moveto +3.89466e+01 5.207322e+01 lineto +4.141265e+01 5.170914e+01 lineto +4.223644e+01 5.538783e+01 lineto +3.985651e+01 5.573919e+01 lineto +closepath +gsave +5.215572e-01 5.215572e-01 5.215572e-01 setrgbcolor +fill +grestore +newpath +4.095677e+01 5.933143e+01 moveto +3.985651e+01 5.573919e+01 lineto +4.223644e+01 5.538783e+01 lineto +4.323255e+01 5.899545e+01 lineto +4.095677e+01 5.933143e+01 lineto +closepath +gsave +5.24847e-01 5.24847e-01 5.24847e-01 setrgbcolor +fill +grestore +newpath +4.223905e+01 6.282275e+01 moveto +4.095677e+01 5.933143e+01 lineto +4.323255e+01 5.899545e+01 lineto +4.439346e+01 6.250468e+01 lineto +4.223905e+01 6.282275e+01 lineto +closepath +gsave +5.274395e-01 5.274395e-01 5.274395e-01 setrgbcolor +fill +grestore +newpath +4.369363e+01 6.618671e+01 moveto +4.223905e+01 6.282275e+01 lineto +4.439346e+01 6.250468e+01 lineto +4.571036e+01 6.588897e+01 lineto +4.369363e+01 6.618671e+01 lineto +closepath +gsave +5.292839e-01 5.292839e-01 5.292839e-01 setrgbcolor +fill +grestore +newpath +4.530952e+01 6.939785e+01 moveto +4.369363e+01 6.618671e+01 lineto +4.571036e+01 6.588897e+01 lineto +4.71733e+01 6.912269e+01 lineto +4.530952e+01 6.939785e+01 lineto +closepath +gsave +5.303436e-01 5.303436e-01 5.303436e-01 setrgbcolor +fill +grestore +newpath +4.707447e+01 7.243186e+01 moveto +4.530952e+01 6.939785e+01 lineto +4.71733e+01 6.912269e+01 lineto +4.877119e+01 7.218136e+01 lineto +4.707447e+01 7.243186e+01 lineto +closepath +gsave +5.305972e-01 5.305972e-01 5.305972e-01 setrgbcolor +fill +grestore +newpath +4.897513e+01 7.526577e+01 moveto +4.707447e+01 7.243186e+01 lineto +4.877119e+01 7.218136e+01 lineto +5.049194e+01 7.504183e+01 lineto +4.897513e+01 7.526577e+01 lineto +closepath +gsave +5.300394e-01 5.300394e-01 5.300394e-01 setrgbcolor +fill +grestore +newpath +5.09971e+01 7.787812e+01 moveto +4.897513e+01 7.526577e+01 lineto +5.049194e+01 7.504183e+01 lineto +5.232253e+01 7.768244e+01 lineto +5.09971e+01 7.787812e+01 lineto +closepath +gsave +5.286808e-01 5.286808e-01 5.286808e-01 setrgbcolor +fill +grestore +newpath +5.312508e+01 8.024914e+01 moveto +5.09971e+01 7.787812e+01 lineto +5.232253e+01 7.768244e+01 lineto +5.424909e+01 8.00832e+01 lineto +5.312508e+01 8.024914e+01 lineto +closepath +gsave +5.265483e-01 5.265483e-01 5.265483e-01 setrgbcolor +fill +grestore +newpath +5.534296e+01 8.236088e+01 moveto +5.312508e+01 8.024914e+01 lineto +5.424909e+01 8.00832e+01 lineto +5.625703e+01 8.222593e+01 lineto +5.534296e+01 8.236088e+01 lineto +closepath +gsave +5.236835e-01 5.236835e-01 5.236835e-01 setrgbcolor +fill +grestore +newpath +5.763394e+01 8.419735e+01 moveto +5.534296e+01 8.236088e+01 lineto +5.625703e+01 8.222593e+01 lineto +5.833117e+01 8.409442e+01 lineto +5.763394e+01 8.419735e+01 lineto +closepath +gsave +5.201419e-01 5.201419e-01 5.201419e-01 setrgbcolor +fill +grestore +newpath +5.998069e+01 8.574465e+01 moveto +5.763394e+01 8.419735e+01 lineto +5.833117e+01 8.409442e+01 lineto +6.045579e+01 8.567451e+01 lineto +5.998069e+01 8.574465e+01 lineto +closepath +gsave +5.159906e-01 5.159906e-01 5.159906e-01 setrgbcolor +fill +grestore +newpath +6.236544e+01 8.699107e+01 moveto +5.998069e+01 8.574465e+01 lineto +6.045579e+01 8.567451e+01 lineto +6.261481e+01 8.695425e+01 lineto +6.236544e+01 8.699107e+01 lineto +closepath +gsave +5.113069e-01 5.113069e-01 5.113069e-01 setrgbcolor +fill +grestore +newpath +6.477014e+01 8.792716e+01 moveto +6.236544e+01 8.699107e+01 lineto +6.261481e+01 8.695425e+01 lineto +6.479189e+01 8.792395e+01 lineto +6.477014e+01 8.792716e+01 lineto +closepath +gsave +5.061754e-01 5.061754e-01 5.061754e-01 setrgbcolor +fill +grestore +newpath +6.717657e+01 8.854585e+01 moveto +6.477014e+01 8.792716e+01 lineto +6.479189e+01 8.792395e+01 lineto +6.697055e+01 8.857627e+01 lineto +6.717657e+01 8.854585e+01 lineto +closepath +gsave +5.006857e-01 5.006857e-01 5.006857e-01 setrgbcolor +fill +grestore +newpath +7.422489e+01 8.846285e+01 moveto +7.192191e+01 8.881471e+01 lineto +7.126672e+01 8.891144e+01 lineto +7.335172e+01 8.859176e+01 lineto +7.422489e+01 8.846285e+01 lineto +closepath +gsave +4.271705e-01 4.271705e-01 4.271705e-01 setrgbcolor +fill +grestore +newpath +5.645236e+01 3.455659e+00 moveto +5.8532e+01 3.105063e+00 lineto +5.924811e+01 3.019522e+00 lineto +5.739872e+01 3.342614e+00 lineto +5.645236e+01 3.455659e+00 lineto +closepath +gsave +4.29672e-01 4.29672e-01 4.29672e-01 setrgbcolor +fill +grestore +newpath +5.443743e+01 4.128334e+00 moveto +5.645236e+01 3.455659e+00 lineto +5.739872e+01 3.342614e+00 lineto +5.560687e+01 3.988641e+00 lineto +5.443743e+01 4.128334e+00 lineto +closepath +gsave +4.335754e-01 4.335754e-01 4.335754e-01 setrgbcolor +fill +grestore +newpath +5.250247e+01 5.117996e+00 moveto +5.443743e+01 4.128334e+00 lineto +5.560687e+01 3.988641e+00 lineto +5.388614e+01 4.952713e+00 lineto +5.250247e+01 5.117996e+00 lineto +closepath +gsave +4.379239e-01 4.379239e-01 4.379239e-01 setrgbcolor +fill +grestore +newpath +5.066211e+01 6.417152e+00 moveto +5.250247e+01 5.117996e+00 lineto +5.388614e+01 4.952713e+00 lineto +5.224954e+01 6.227531e+00 lineto +5.066211e+01 6.417152e+00 lineto +closepath +gsave +4.42722e-01 4.42722e-01 4.42722e-01 setrgbcolor +fill +grestore +newpath +4.89303e+01 8.015969e+00 moveto +5.066211e+01 6.417152e+00 lineto +5.224954e+01 6.227531e+00 lineto +5.070947e+01 7.803443e+00 lineto +4.89303e+01 8.015969e+00 lineto +closepath +gsave +4.479645e-01 4.479645e-01 4.479645e-01 setrgbcolor +fill +grestore +newpath +4.732015e+01 9.902341e+00 moveto +4.89303e+01 8.015969e+00 lineto +5.070947e+01 7.803443e+00 lineto +4.927758e+01 9.668521e+00 lineto +4.732015e+01 9.902341e+00 lineto +closepath +gsave +4.536348e-01 4.536348e-01 4.536348e-01 setrgbcolor +fill +grestore +newpath +4.584384e+01 1.206199e+01 moveto +4.732015e+01 9.902341e+00 lineto +4.927758e+01 9.668521e+00 lineto +4.796472e+01 1.180864e+01 lineto +4.584384e+01 1.206199e+01 lineto +closepath +gsave +4.597042e-01 4.597042e-01 4.597042e-01 setrgbcolor +fill +grestore +newpath +4.451255e+01 1.447856e+01 moveto +4.584384e+01 1.206199e+01 lineto +4.796472e+01 1.180864e+01 lineto +4.678082e+01 1.420761e+01 lineto +4.451255e+01 1.447856e+01 lineto +closepath +gsave +4.661307e-01 4.661307e-01 4.661307e-01 setrgbcolor +fill +grestore +newpath +4.333636e+01 1.713376e+01 moveto +4.451255e+01 1.447856e+01 lineto +4.678082e+01 1.420761e+01 lineto +4.573486e+01 1.684726e+01 lineto +4.333636e+01 1.713376e+01 lineto +closepath +gsave +4.728591e-01 4.728591e-01 4.728591e-01 setrgbcolor +fill +grestore +newpath +4.232417e+01 2.00075e+01 moveto +4.333636e+01 1.713376e+01 lineto +4.573486e+01 1.684726e+01 lineto +4.483473e+01 1.970761e+01 lineto +4.232417e+01 2.00075e+01 lineto +closepath +gsave +4.798208e-01 4.798208e-01 4.798208e-01 setrgbcolor +fill +grestore +newpath +4.148365e+01 2.307801e+01 moveto +4.232417e+01 2.00075e+01 lineto +4.483473e+01 1.970761e+01 lineto +4.408727e+01 2.2767e+01 lineto +4.148365e+01 2.307801e+01 lineto +closepath +gsave +4.869344e-01 4.869344e-01 4.869344e-01 setrgbcolor +fill +grestore +newpath +4.082116e+01 2.632205e+01 moveto +4.148365e+01 2.307801e+01 lineto +4.408727e+01 2.2767e+01 lineto +4.349812e+01 2.600228e+01 lineto +4.082116e+01 2.632205e+01 lineto +closepath +gsave +4.941073e-01 4.941073e-01 4.941073e-01 setrgbcolor +fill +grestore +newpath +4.034171e+01 2.971505e+01 moveto +4.082116e+01 2.632205e+01 lineto +4.349812e+01 2.600228e+01 lineto +4.307176e+01 2.938894e+01 lineto +4.034171e+01 2.971505e+01 lineto +closepath +gsave +5.012372e-01 5.012372e-01 5.012372e-01 setrgbcolor +fill +grestore +newpath +4.004893e+01 3.323135e+01 moveto +4.034171e+01 2.971505e+01 lineto +4.307176e+01 2.938894e+01 lineto +4.28114e+01 3.290136e+01 lineto +4.004893e+01 3.323135e+01 lineto +closepath +gsave +5.082142e-01 5.082142e-01 5.082142e-01 setrgbcolor +fill +grestore +newpath +3.994505e+01 3.684431e+01 moveto +4.004893e+01 3.323135e+01 lineto +4.28114e+01 3.290136e+01 lineto +4.271902e+01 3.651295e+01 lineto +3.994505e+01 3.684431e+01 lineto +closepath +gsave +5.149237e-01 5.149237e-01 5.149237e-01 setrgbcolor +fill +grestore +newpath +4.003084e+01 4.052658e+01 moveto +3.994505e+01 3.684431e+01 lineto +4.271902e+01 3.651295e+01 lineto +4.279531e+01 4.019635e+01 lineto +4.003084e+01 4.052658e+01 lineto +closepath +gsave +5.212494e-01 5.212494e-01 5.212494e-01 setrgbcolor +fill +grestore +newpath +4.030567e+01 4.425028e+01 moveto +4.003084e+01 4.052658e+01 lineto +4.279531e+01 4.019635e+01 lineto +4.303971e+01 4.392369e+01 lineto +4.030567e+01 4.425028e+01 lineto +closepath +gsave +5.270764e-01 5.270764e-01 5.270764e-01 setrgbcolor +fill +grestore +newpath +4.076743e+01 4.798723e+01 moveto +4.030567e+01 4.425028e+01 lineto +4.303971e+01 4.392369e+01 lineto +4.345035e+01 4.766675e+01 lineto +4.076743e+01 4.798723e+01 lineto +closepath +gsave +5.322948e-01 5.322948e-01 5.322948e-01 setrgbcolor +fill +grestore +newpath +4.141265e+01 5.170914e+01 moveto +4.076743e+01 4.798723e+01 lineto +4.345035e+01 4.766675e+01 lineto +4.402413e+01 5.139719e+01 lineto +4.141265e+01 5.170914e+01 lineto +closepath +gsave +5.368028e-01 5.368028e-01 5.368028e-01 setrgbcolor +fill +grestore +newpath +4.223644e+01 5.538783e+01 moveto +4.141265e+01 5.170914e+01 lineto +4.402413e+01 5.139719e+01 lineto +4.475671e+01 5.508678e+01 lineto +4.223644e+01 5.538783e+01 lineto +closepath +gsave +5.4051e-01 5.4051e-01 5.4051e-01 setrgbcolor +fill +grestore +newpath +4.323255e+01 5.899545e+01 moveto +4.223644e+01 5.538783e+01 lineto +4.475671e+01 5.508678e+01 lineto +4.564254e+01 5.870757e+01 lineto +4.323255e+01 5.899545e+01 lineto +closepath +gsave +5.433407e-01 5.433407e-01 5.433407e-01 setrgbcolor +fill +grestore +newpath +4.439346e+01 6.250468e+01 moveto +4.323255e+01 5.899545e+01 lineto +4.564254e+01 5.870757e+01 lineto +4.667492e+01 6.223216e+01 lineto +4.439346e+01 6.250468e+01 lineto +closepath +gsave +5.452358e-01 5.452358e-01 5.452358e-01 setrgbcolor +fill +grestore +newpath +4.571036e+01 6.588897e+01 moveto +4.439346e+01 6.250468e+01 lineto +4.667492e+01 6.223216e+01 lineto +4.784602e+01 6.563386e+01 lineto +4.571036e+01 6.588897e+01 lineto +closepath +gsave +5.461553e-01 5.461553e-01 5.461553e-01 setrgbcolor +fill +grestore +newpath +4.71733e+01 6.912269e+01 moveto +4.571036e+01 6.588897e+01 lineto +4.784602e+01 6.563386e+01 lineto +4.914699e+01 6.888693e+01 lineto +4.71733e+01 6.912269e+01 lineto +closepath +gsave +5.460793e-01 5.460793e-01 5.460793e-01 setrgbcolor +fill +grestore +newpath +4.877119e+01 7.218136e+01 moveto +4.71733e+01 6.912269e+01 lineto +4.914699e+01 6.888693e+01 lineto +5.056797e+01 7.196673e+01 lineto +4.877119e+01 7.218136e+01 lineto +closepath +gsave +5.450091e-01 5.450091e-01 5.450091e-01 setrgbcolor +fill +grestore +newpath +5.049194e+01 7.504183e+01 moveto +4.877119e+01 7.218136e+01 lineto +5.056797e+01 7.196673e+01 lineto +5.209821e+01 7.484996e+01 lineto +5.049194e+01 7.504183e+01 lineto +closepath +gsave +5.42967e-01 5.42967e-01 5.42967e-01 setrgbcolor +fill +grestore +newpath +5.232253e+01 7.768244e+01 moveto +5.049194e+01 7.504183e+01 lineto +5.209821e+01 7.484996e+01 lineto +5.372612e+01 7.751478e+01 lineto +5.232253e+01 7.768244e+01 lineto +closepath +gsave +5.399953e-01 5.399953e-01 5.399953e-01 setrgbcolor +fill +grestore +newpath +5.424909e+01 8.00832e+01 moveto +5.232253e+01 7.768244e+01 lineto +5.372612e+01 7.751478e+01 lineto +5.543938e+01 7.994101e+01 lineto +5.424909e+01 8.00832e+01 lineto +closepath +gsave +5.361554e-01 5.361554e-01 5.361554e-01 setrgbcolor +fill +grestore +newpath +5.625703e+01 8.222593e+01 moveto +5.424909e+01 8.00832e+01 lineto +5.543938e+01 7.994101e+01 lineto +5.722501e+01 8.21103e+01 lineto +5.625703e+01 8.222593e+01 lineto +closepath +gsave +5.315254e-01 5.315254e-01 5.315254e-01 setrgbcolor +fill +grestore +newpath +5.833117e+01 8.409442e+01 moveto +5.625703e+01 8.222593e+01 lineto +5.722501e+01 8.21103e+01 lineto +5.906951e+01 8.400622e+01 lineto +5.833117e+01 8.409442e+01 lineto +closepath +gsave +5.261978e-01 5.261978e-01 5.261978e-01 setrgbcolor +fill +grestore +newpath +6.045579e+01 8.567451e+01 moveto +5.833117e+01 8.409442e+01 lineto +5.906951e+01 8.400622e+01 lineto +6.09589e+01 8.561441e+01 lineto +6.045579e+01 8.567451e+01 lineto +closepath +gsave +5.202761e-01 5.202761e-01 5.202761e-01 setrgbcolor +fill +grestore +newpath +6.261481e+01 8.695425e+01 moveto +6.045579e+01 8.567451e+01 lineto +6.09589e+01 8.561441e+01 lineto +6.287889e+01 8.692271e+01 lineto +6.261481e+01 8.695425e+01 lineto +closepath +gsave +5.138719e-01 5.138719e-01 5.138719e-01 setrgbcolor +fill +grestore +newpath +6.479189e+01 8.792395e+01 moveto +6.261481e+01 8.695425e+01 lineto +6.287889e+01 8.692271e+01 lineto +6.481493e+01 8.79212e+01 lineto +6.479189e+01 8.792395e+01 lineto +closepath +gsave +5.071013e-01 5.071013e-01 5.071013e-01 setrgbcolor +fill +grestore +newpath +6.697055e+01 8.857627e+01 moveto +6.479189e+01 8.792395e+01 lineto +6.481493e+01 8.79212e+01 lineto +6.675238e+01 8.860233e+01 lineto +6.697055e+01 8.857627e+01 lineto +closepath +gsave +5.000813e-01 5.000813e-01 5.000813e-01 setrgbcolor +fill +grestore +newpath +7.335172e+01 8.859176e+01 moveto +7.126672e+01 8.891144e+01 lineto +7.05729e+01 8.899432e+01 lineto +7.242706e+01 8.870221e+01 lineto +7.335172e+01 8.859176e+01 lineto +closepath +gsave +4.293223e-01 4.293223e-01 4.293223e-01 setrgbcolor +fill +grestore +newpath +5.739872e+01 3.342614e+00 moveto +5.924811e+01 3.019522e+00 lineto +5.999967e+01 2.948803e+00 lineto +5.839193e+01 3.249157e+00 lineto +5.739872e+01 3.342614e+00 lineto +closepath +gsave +4.319471e-01 4.319471e-01 4.319471e-01 setrgbcolor +fill +grestore +newpath +5.560687e+01 3.988641e+00 moveto +5.739872e+01 3.342614e+00 lineto +5.839193e+01 3.249157e+00 lineto +5.683422e+01 3.873154e+00 lineto +5.560687e+01 3.988641e+00 lineto +closepath +gsave +4.367366e-01 4.367366e-01 4.367366e-01 setrgbcolor +fill +grestore +newpath +5.388614e+01 4.952713e+00 moveto +5.560687e+01 3.988641e+00 lineto +5.683422e+01 3.873154e+00 lineto +5.533832e+01 4.81607e+00 lineto +5.388614e+01 4.952713e+00 lineto +closepath +gsave +4.420808e-01 4.420808e-01 4.420808e-01 setrgbcolor +fill +grestore +newpath +5.224954e+01 6.227531e+00 moveto +5.388614e+01 4.952713e+00 lineto +5.533832e+01 4.81607e+00 lineto +5.391557e+01 6.070766e+00 lineto +5.224954e+01 6.227531e+00 lineto +closepath +gsave +4.479807e-01 4.479807e-01 4.479807e-01 setrgbcolor +fill +grestore +newpath +5.070947e+01 7.803443e+00 moveto +5.224954e+01 6.227531e+00 lineto +5.391557e+01 6.070766e+00 lineto +5.257673e+01 7.627743e+00 lineto +5.070947e+01 7.803443e+00 lineto +closepath +gsave +4.544234e-01 4.544234e-01 4.544234e-01 setrgbcolor +fill +grestore +newpath +4.927758e+01 9.668521e+00 moveto +5.070947e+01 7.803443e+00 lineto +5.257673e+01 7.627743e+00 lineto +5.133194e+01 9.475216e+00 lineto +4.927758e+01 9.668521e+00 lineto +closepath +gsave +4.613802e-01 4.613802e-01 4.613802e-01 setrgbcolor +fill +grestore +newpath +4.796472e+01 1.180864e+01 moveto +4.927758e+01 9.668521e+00 lineto +5.133194e+01 9.475216e+00 lineto +5.019063e+01 1.15992e+01 lineto +4.796472e+01 1.180864e+01 lineto +closepath +gsave +4.688055e-01 4.688055e-01 4.688055e-01 setrgbcolor +fill +grestore +newpath +4.678082e+01 1.420761e+01 moveto +4.796472e+01 1.180864e+01 lineto +5.019063e+01 1.15992e+01 lineto +4.916143e+01 1.398361e+01 lineto +4.678082e+01 1.420761e+01 lineto +closepath +gsave +4.766359e-01 4.766359e-01 4.766359e-01 setrgbcolor +fill +grestore +newpath +4.573486e+01 1.684726e+01 moveto +4.678082e+01 1.420761e+01 lineto +4.916143e+01 1.398361e+01 lineto +4.825213e+01 1.66104e+01 lineto +4.573486e+01 1.684726e+01 lineto +closepath +gsave +4.847907e-01 4.847907e-01 4.847907e-01 setrgbcolor +fill +grestore +newpath +4.483473e+01 1.970761e+01 moveto +4.573486e+01 1.684726e+01 lineto +4.825213e+01 1.66104e+01 lineto +4.746962e+01 1.945968e+01 lineto +4.483473e+01 1.970761e+01 lineto +closepath +gsave +4.931721e-01 4.931721e-01 4.931721e-01 setrgbcolor +fill +grestore +newpath +4.408727e+01 2.2767e+01 moveto +4.483473e+01 1.970761e+01 lineto +4.746962e+01 1.945968e+01 lineto +4.681982e+01 2.250988e+01 lineto +4.408727e+01 2.2767e+01 lineto +closepath +gsave +5.01667e-01 5.01667e-01 5.01667e-01 setrgbcolor +fill +grestore +newpath +4.349812e+01 2.600228e+01 moveto +4.408727e+01 2.2767e+01 lineto +4.681982e+01 2.250988e+01 lineto +4.630766e+01 2.573791e+01 lineto +4.349812e+01 2.600228e+01 lineto +closepath +gsave +5.10149e-01 5.10149e-01 5.10149e-01 setrgbcolor +fill +grestore +newpath +4.307176e+01 2.938894e+01 moveto +4.349812e+01 2.600228e+01 lineto +4.630766e+01 2.573791e+01 lineto +4.5937e+01 2.911934e+01 lineto +4.307176e+01 2.938894e+01 lineto +closepath +gsave +5.184812e-01 5.184812e-01 5.184812e-01 setrgbcolor +fill +grestore +newpath +4.28114e+01 3.290136e+01 moveto +4.307176e+01 2.938894e+01 lineto +4.5937e+01 2.911934e+01 lineto +4.571066e+01 3.262856e+01 lineto +4.28114e+01 3.290136e+01 lineto +closepath +gsave +5.265199e-01 5.265199e-01 5.265199e-01 setrgbcolor +fill +grestore +newpath +4.271902e+01 3.651295e+01 moveto +4.28114e+01 3.290136e+01 lineto +4.571066e+01 3.262856e+01 lineto +4.563035e+01 3.623901e+01 lineto +4.271902e+01 3.651295e+01 lineto +closepath +gsave +5.341185e-01 5.341185e-01 5.341185e-01 setrgbcolor +fill +grestore +newpath +4.279531e+01 4.019635e+01 moveto +4.271902e+01 3.651295e+01 lineto +4.563035e+01 3.623901e+01 lineto +4.569668e+01 3.992335e+01 lineto +4.279531e+01 4.019635e+01 lineto +closepath +gsave +5.411315e-01 5.411315e-01 5.411315e-01 setrgbcolor +fill +grestore +newpath +4.303971e+01 4.392369e+01 moveto +4.279531e+01 4.019635e+01 lineto +4.569668e+01 3.992335e+01 lineto +4.590914e+01 4.365369e+01 lineto +4.303971e+01 4.392369e+01 lineto +closepath +gsave +5.474194e-01 5.474194e-01 5.474194e-01 setrgbcolor +fill +grestore +newpath +4.345035e+01 4.766675e+01 moveto +4.303971e+01 4.392369e+01 lineto +4.590914e+01 4.365369e+01 lineto +4.626613e+01 4.74018e+01 lineto +4.345035e+01 4.766675e+01 lineto +closepath +gsave +5.528528e-01 5.528528e-01 5.528528e-01 setrgbcolor +fill +grestore +newpath +4.402413e+01 5.139719e+01 moveto +4.345035e+01 4.766675e+01 lineto +4.626613e+01 4.74018e+01 lineto +4.676494e+01 5.11393e+01 lineto +4.402413e+01 5.139719e+01 lineto +closepath +gsave +5.573169e-01 5.573169e-01 5.573169e-01 setrgbcolor +fill +grestore +newpath +4.475671e+01 5.508678e+01 moveto +4.402413e+01 5.139719e+01 lineto +4.676494e+01 5.11393e+01 lineto +4.740179e+01 5.483789e+01 lineto +4.475671e+01 5.508678e+01 lineto +closepath +gsave +5.607151e-01 5.607151e-01 5.607151e-01 setrgbcolor +fill +grestore +newpath +4.564254e+01 5.870757e+01 moveto +4.475671e+01 5.508678e+01 lineto +4.740179e+01 5.483789e+01 lineto +4.817188e+01 5.846957e+01 lineto +4.564254e+01 5.870757e+01 lineto +closepath +gsave +5.629729e-01 5.629729e-01 5.629729e-01 setrgbcolor +fill +grestore +newpath +4.667492e+01 6.223216e+01 moveto +4.564254e+01 5.870757e+01 lineto +4.817188e+01 5.846957e+01 lineto +4.906936e+01 6.200685e+01 lineto +4.667492e+01 6.223216e+01 lineto +closepath +gsave +5.640398e-01 5.640398e-01 5.640398e-01 setrgbcolor +fill +grestore +newpath +4.784602e+01 6.563386e+01 moveto +4.667492e+01 6.223216e+01 lineto +4.906936e+01 6.200685e+01 lineto +5.008744e+01 6.542296e+01 lineto +4.784602e+01 6.563386e+01 lineto +closepath +gsave +5.638917e-01 5.638917e-01 5.638917e-01 setrgbcolor +fill +grestore +newpath +4.914699e+01 6.888693e+01 moveto +4.784602e+01 6.563386e+01 lineto +5.008744e+01 6.542296e+01 lineto +5.121842e+01 6.869202e+01 lineto +4.914699e+01 6.888693e+01 lineto +closepath +gsave +5.625313e-01 5.625313e-01 5.625313e-01 setrgbcolor +fill +grestore +newpath +5.056797e+01 7.196673e+01 moveto +4.914699e+01 6.888693e+01 lineto +5.121842e+01 6.869202e+01 lineto +5.245373e+01 7.178929e+01 lineto +5.056797e+01 7.196673e+01 lineto +closepath +gsave +5.599885e-01 5.599885e-01 5.599885e-01 setrgbcolor +fill +grestore +newpath +5.209821e+01 7.484996e+01 moveto +5.056797e+01 7.196673e+01 lineto +5.245373e+01 7.178929e+01 lineto +5.378402e+01 7.469133e+01 lineto +5.209821e+01 7.484996e+01 lineto +closepath +gsave +5.563193e-01 5.563193e-01 5.563193e-01 setrgbcolor +fill +grestore +newpath +5.372612e+01 7.751478e+01 moveto +5.209821e+01 7.484996e+01 lineto +5.378402e+01 7.469133e+01 lineto +5.519922e+01 7.737617e+01 lineto +5.372612e+01 7.751478e+01 lineto +closepath +gsave +5.516033e-01 5.516033e-01 5.516033e-01 setrgbcolor +fill +grestore +newpath +5.543938e+01 7.994101e+01 moveto +5.372612e+01 7.751478e+01 lineto +5.519922e+01 7.737617e+01 lineto +5.668861e+01 7.982347e+01 lineto +5.543938e+01 7.994101e+01 lineto +closepath +gsave +5.459419e-01 5.459419e-01 5.459419e-01 setrgbcolor +fill +grestore +newpath +5.722501e+01 8.21103e+01 moveto +5.543938e+01 7.994101e+01 lineto +5.668861e+01 7.982347e+01 lineto +5.824093e+01 8.201471e+01 lineto +5.722501e+01 8.21103e+01 lineto +closepath +gsave +5.39454e-01 5.39454e-01 5.39454e-01 setrgbcolor +fill +grestore +newpath +5.906951e+01 8.400622e+01 moveto +5.722501e+01 8.21103e+01 lineto +5.824093e+01 8.201471e+01 lineto +5.984442e+01 8.39333e+01 lineto +5.906951e+01 8.400622e+01 lineto +closepath +gsave +5.322722e-01 5.322722e-01 5.322722e-01 setrgbcolor +fill +grestore +newpath +6.09589e+01 8.561441e+01 moveto +5.906951e+01 8.400622e+01 lineto +5.984442e+01 8.39333e+01 lineto +6.148693e+01 8.556473e+01 lineto +6.09589e+01 8.561441e+01 lineto +closepath +gsave +5.245389e-01 5.245389e-01 5.245389e-01 setrgbcolor +fill +grestore +newpath +6.287889e+01 8.692271e+01 moveto +6.09589e+01 8.561441e+01 lineto +6.148693e+01 8.556473e+01 lineto +6.315604e+01 8.689663e+01 lineto +6.287889e+01 8.692271e+01 lineto +closepath +gsave +5.16401e-01 5.16401e-01 5.16401e-01 setrgbcolor +fill +grestore +newpath +6.481493e+01 8.79212e+01 moveto +6.287889e+01 8.692271e+01 lineto +6.315604e+01 8.689663e+01 lineto +6.483912e+01 8.791892e+01 lineto +6.481493e+01 8.79212e+01 lineto +closepath +gsave +5.080058e-01 5.080058e-01 5.080058e-01 setrgbcolor +fill +grestore +newpath +6.675238e+01 8.860233e+01 moveto +6.481493e+01 8.79212e+01 lineto +6.483912e+01 8.791892e+01 lineto +6.65234e+01 8.862388e+01 lineto +6.675238e+01 8.860233e+01 lineto +closepath +gsave +4.994966e-01 4.994966e-01 4.994966e-01 setrgbcolor +fill +grestore +newpath +7.242706e+01 8.870221e+01 moveto +7.05729e+01 8.899432e+01 lineto +6.984472e+01 8.906284e+01 lineto +7.14566e+01 8.879353e+01 lineto +7.242706e+01 8.870221e+01 lineto +closepath +gsave +4.315186e-01 4.315186e-01 4.315186e-01 setrgbcolor +fill +grestore +newpath +5.839193e+01 3.249157e+00 moveto +5.999967e+01 2.948803e+00 lineto +6.078207e+01 2.893343e+00 lineto +5.942589e+01 3.175865e+00 lineto +5.839193e+01 3.249157e+00 lineto +closepath +gsave +4.342487e-01 4.342487e-01 4.342487e-01 setrgbcolor +fill +grestore +newpath +5.683422e+01 3.873154e+00 moveto +5.839193e+01 3.249157e+00 lineto +5.942589e+01 3.175865e+00 lineto +5.811191e+01 3.782584e+00 lineto +5.683422e+01 3.873154e+00 lineto +closepath +gsave +4.399677e-01 4.399677e-01 4.399677e-01 setrgbcolor +fill +grestore +newpath +5.533832e+01 4.81607e+00 moveto +5.683422e+01 3.873154e+00 lineto +5.811191e+01 3.782584e+00 lineto +5.685008e+01 4.708908e+00 lineto +5.533832e+01 4.81607e+00 lineto +closepath +gsave +4.463675e-01 4.463675e-01 4.463675e-01 setrgbcolor +fill +grestore +newpath +5.391557e+01 6.070766e+00 moveto +5.533832e+01 4.81607e+00 lineto +5.685008e+01 4.708908e+00 lineto +5.564995e+01 5.947823e+00 lineto +5.391557e+01 6.070766e+00 lineto +closepath +gsave +4.53445e-01 4.53445e-01 4.53445e-01 setrgbcolor +fill +grestore +newpath +5.257673e+01 7.627743e+00 moveto +5.391557e+01 6.070766e+00 lineto +5.564995e+01 5.947823e+00 lineto +5.452059e+01 7.489951e+00 lineto +5.257673e+01 7.627743e+00 lineto +closepath +gsave +4.611783e-01 4.611783e-01 4.611783e-01 setrgbcolor +fill +grestore +newpath +5.133194e+01 9.475216e+00 moveto +5.257673e+01 7.627743e+00 lineto +5.452059e+01 7.489951e+00 lineto +5.347058e+01 9.323617e+00 lineto +5.133194e+01 9.475216e+00 lineto +closepath +gsave +4.695241e-01 4.695241e-01 4.695241e-01 setrgbcolor +fill +grestore +newpath +5.019063e+01 1.15992e+01 moveto +5.133194e+01 9.475216e+00 lineto +5.347058e+01 9.323617e+00 lineto +5.250784e+01 1.143494e+01 lineto +5.019063e+01 1.15992e+01 lineto +closepath +gsave +4.784169e-01 4.784169e-01 4.784169e-01 setrgbcolor +fill +grestore +newpath +4.916143e+01 1.398361e+01 moveto +5.019063e+01 1.15992e+01 lineto +5.250784e+01 1.143494e+01 lineto +5.163968e+01 1.380793e+01 lineto +4.916143e+01 1.398361e+01 lineto +closepath +gsave +4.877684e-01 4.877684e-01 4.877684e-01 setrgbcolor +fill +grestore +newpath +4.825213e+01 1.66104e+01 moveto +4.916143e+01 1.398361e+01 lineto +5.163968e+01 1.380793e+01 lineto +5.087266e+01 1.642464e+01 lineto +4.825213e+01 1.66104e+01 lineto +closepath +gsave +4.974681e-01 4.974681e-01 4.974681e-01 setrgbcolor +fill +grestore +newpath +4.746962e+01 1.945968e+01 moveto +4.825213e+01 1.66104e+01 lineto +5.087266e+01 1.642464e+01 lineto +5.021259e+01 1.926524e+01 lineto +4.746962e+01 1.945968e+01 lineto +closepath +gsave +5.073847e-01 5.073847e-01 5.073847e-01 setrgbcolor +fill +grestore +newpath +4.681982e+01 2.250988e+01 moveto +4.746962e+01 1.945968e+01 lineto +5.021259e+01 1.926524e+01 lineto +4.966446e+01 2.230824e+01 lineto +4.681982e+01 2.250988e+01 lineto +closepath +gsave +5.173683e-01 5.173683e-01 5.173683e-01 setrgbcolor +fill +grestore +newpath +4.630766e+01 2.573791e+01 moveto +4.681982e+01 2.250988e+01 lineto +4.966446e+01 2.230824e+01 lineto +4.923244e+01 2.553059e+01 lineto +4.630766e+01 2.573791e+01 lineto +closepath +gsave +5.272544e-01 5.272544e-01 5.272544e-01 setrgbcolor +fill +grestore +newpath +4.5937e+01 2.911934e+01 moveto +4.630766e+01 2.573791e+01 lineto +4.923244e+01 2.553059e+01 lineto +4.891978e+01 2.89079e+01 lineto +4.5937e+01 2.911934e+01 lineto +closepath +gsave +5.368674e-01 5.368674e-01 5.368674e-01 setrgbcolor +fill +grestore +newpath +4.571066e+01 3.262856e+01 moveto +4.5937e+01 2.911934e+01 lineto +4.891978e+01 2.89079e+01 lineto +4.872885e+01 3.241461e+01 lineto +4.571066e+01 3.262856e+01 lineto +closepath +gsave +5.460261e-01 5.460261e-01 5.460261e-01 setrgbcolor +fill +grestore +newpath +4.563035e+01 3.623901e+01 moveto +4.571066e+01 3.262856e+01 lineto +4.872885e+01 3.241461e+01 lineto +4.866111e+01 3.602417e+01 lineto +4.563035e+01 3.623901e+01 lineto +closepath +gsave +5.545487e-01 5.545487e-01 5.545487e-01 setrgbcolor +fill +grestore +newpath +4.569668e+01 3.992335e+01 moveto +4.563035e+01 3.623901e+01 lineto +4.866111e+01 3.602417e+01 lineto +4.871706e+01 3.970925e+01 lineto +4.569668e+01 3.992335e+01 lineto +closepath +gsave +5.622589e-01 5.622589e-01 5.622589e-01 setrgbcolor +fill +grestore +newpath +4.590914e+01 4.365369e+01 moveto +4.569668e+01 3.992335e+01 lineto +4.871706e+01 3.970925e+01 lineto +4.889627e+01 4.344195e+01 lineto +4.590914e+01 4.365369e+01 lineto +closepath +gsave +5.689914e-01 5.689914e-01 5.689914e-01 setrgbcolor +fill +grestore +newpath +4.626613e+01 4.74018e+01 moveto +4.590914e+01 4.365369e+01 lineto +4.889627e+01 4.344195e+01 lineto +4.91974e+01 4.719402e+01 lineto +4.626613e+01 4.74018e+01 lineto +closepath +gsave +5.745978e-01 5.745978e-01 5.745978e-01 setrgbcolor +fill +grestore +newpath +4.676494e+01 5.11393e+01 moveto +4.626613e+01 4.74018e+01 lineto +4.91974e+01 4.719402e+01 lineto +4.961817e+01 5.093705e+01 lineto +4.676494e+01 5.11393e+01 lineto +closepath +gsave +5.789516e-01 5.789516e-01 5.789516e-01 setrgbcolor +fill +grestore +newpath +4.740179e+01 5.483789e+01 moveto +4.676494e+01 5.11393e+01 lineto +4.961817e+01 5.093705e+01 lineto +5.015537e+01 5.46427e+01 lineto +4.740179e+01 5.483789e+01 lineto +closepath +gsave +5.819525e-01 5.819525e-01 5.819525e-01 setrgbcolor +fill +grestore +newpath +4.817188e+01 5.846957e+01 moveto +4.740179e+01 5.483789e+01 lineto +5.015537e+01 5.46427e+01 lineto +5.080496e+01 5.828292e+01 lineto +4.817188e+01 5.846957e+01 lineto +closepath +gsave +5.835307e-01 5.835307e-01 5.835307e-01 setrgbcolor +fill +grestore +newpath +4.906936e+01 6.200685e+01 moveto +4.817188e+01 5.846957e+01 lineto +5.080496e+01 5.828292e+01 lineto +5.156202e+01 6.183016e+01 lineto +4.906936e+01 6.200685e+01 lineto +closepath +gsave +5.836488e-01 5.836488e-01 5.836488e-01 setrgbcolor +fill +grestore +newpath +5.008744e+01 6.542296e+01 moveto +4.906936e+01 6.200685e+01 lineto +5.156202e+01 6.183016e+01 lineto +5.24208e+01 6.525756e+01 lineto +5.008744e+01 6.542296e+01 lineto +closepath +gsave +5.823034e-01 5.823034e-01 5.823034e-01 setrgbcolor +fill +grestore +newpath +5.121842e+01 6.869202e+01 moveto +5.008744e+01 6.542296e+01 lineto +5.24208e+01 6.525756e+01 lineto +5.337481e+01 6.853916e+01 lineto +5.121842e+01 6.869202e+01 lineto +closepath +gsave +5.795257e-01 5.795257e-01 5.795257e-01 setrgbcolor +fill +grestore +newpath +5.245373e+01 7.178929e+01 moveto +5.121842e+01 6.869202e+01 lineto +5.337481e+01 6.853916e+01 lineto +5.441683e+01 7.165014e+01 lineto +5.245373e+01 7.178929e+01 lineto +closepath +gsave +5.753796e-01 5.753796e-01 5.753796e-01 setrgbcolor +fill +grestore +newpath +5.378402e+01 7.469133e+01 moveto +5.245373e+01 7.178929e+01 lineto +5.441683e+01 7.165014e+01 lineto +5.553897e+01 7.456693e+01 lineto +5.378402e+01 7.469133e+01 lineto +closepath +gsave +5.699602e-01 5.699602e-01 5.699602e-01 setrgbcolor +fill +grestore +newpath +5.519922e+01 7.737617e+01 moveto +5.378402e+01 7.469133e+01 lineto +5.553897e+01 7.456693e+01 lineto +5.673274e+01 7.726746e+01 lineto +5.519922e+01 7.737617e+01 lineto +closepath +gsave +5.633898e-01 5.633898e-01 5.633898e-01 setrgbcolor +fill +grestore +newpath +5.668861e+01 7.982347e+01 moveto +5.519922e+01 7.737617e+01 lineto +5.673274e+01 7.726746e+01 lineto +5.798909e+01 7.973128e+01 lineto +5.668861e+01 7.982347e+01 lineto +closepath +gsave +5.55814e-01 5.55814e-01 5.55814e-01 setrgbcolor +fill +grestore +newpath +5.824093e+01 8.201471e+01 moveto +5.668861e+01 7.982347e+01 lineto +5.798909e+01 7.973128e+01 lineto +5.929852e+01 8.193974e+01 lineto +5.824093e+01 8.201471e+01 lineto +closepath +gsave +5.473963e-01 5.473963e-01 5.473963e-01 setrgbcolor +fill +grestore +newpath +5.984442e+01 8.39333e+01 moveto +5.824093e+01 8.201471e+01 lineto +5.929852e+01 8.193974e+01 lineto +6.065111e+01 8.387612e+01 lineto +5.984442e+01 8.39333e+01 lineto +closepath +gsave +5.383123e-01 5.383123e-01 5.383123e-01 setrgbcolor +fill +grestore +newpath +6.148693e+01 8.556473e+01 moveto +5.984442e+01 8.39333e+01 lineto +6.065111e+01 8.387612e+01 lineto +6.203662e+01 8.552576e+01 lineto +6.148693e+01 8.556473e+01 lineto +closepath +gsave +5.287444e-01 5.287444e-01 5.287444e-01 setrgbcolor +fill +grestore +newpath +6.315604e+01 8.689663e+01 moveto +6.148693e+01 8.556473e+01 lineto +6.203662e+01 8.552576e+01 lineto +6.344457e+01 8.687618e+01 lineto +6.315604e+01 8.689663e+01 lineto +closepath +gsave +5.188753e-01 5.188753e-01 5.188753e-01 setrgbcolor +fill +grestore +newpath +6.483912e+01 8.791892e+01 moveto +6.315604e+01 8.689663e+01 lineto +6.344457e+01 8.687618e+01 lineto +6.486429e+01 8.791714e+01 lineto +6.483912e+01 8.791892e+01 lineto +closepath +gsave +5.088829e-01 5.088829e-01 5.088829e-01 setrgbcolor +fill +grestore +newpath +6.65234e+01 8.862388e+01 moveto +6.483912e+01 8.791892e+01 lineto +6.486429e+01 8.791714e+01 lineto +6.628504e+01 8.864077e+01 lineto +6.65234e+01 8.862388e+01 lineto +closepath +gsave +4.989348e-01 4.989348e-01 4.989348e-01 setrgbcolor +fill +grestore +newpath +7.14566e+01 8.879353e+01 moveto +6.984472e+01 8.906284e+01 lineto +6.908667e+01 8.911657e+01 lineto +7.044634e+01 8.886514e+01 lineto +7.14566e+01 8.879353e+01 lineto +closepath +gsave +4.337381e-01 4.337381e-01 4.337381e-01 setrgbcolor +fill +grestore +newpath +5.942589e+01 3.175865e+00 moveto +6.078207e+01 2.893343e+00 lineto +6.159048e+01 2.853482e+00 lineto +6.049422e+01 3.123187e+00 lineto +5.942589e+01 3.175865e+00 lineto +closepath +gsave +4.365522e-01 4.365522e-01 4.365522e-01 setrgbcolor +fill +grestore +newpath +5.811191e+01 3.782584e+00 moveto +5.942589e+01 3.175865e+00 lineto +6.049422e+01 3.123187e+00 lineto +5.943208e+01 3.717489e+00 lineto +5.811191e+01 3.782584e+00 lineto +closepath +gsave +4.43232e-01 4.43232e-01 4.43232e-01 setrgbcolor +fill +grestore +newpath +5.685008e+01 4.708908e+00 moveto +5.811191e+01 3.782584e+00 lineto +5.943208e+01 3.717489e+00 lineto +5.841208e+01 4.631888e+00 lineto +5.685008e+01 4.708908e+00 lineto +closepath +gsave +4.507331e-01 4.507331e-01 4.507331e-01 setrgbcolor +fill +grestore +newpath +5.564995e+01 5.947823e+00 moveto +5.685008e+01 4.708908e+00 lineto +5.841208e+01 4.631888e+00 lineto +5.744196e+01 5.859462e+00 lineto +5.564995e+01 5.947823e+00 lineto +closepath +gsave +4.590483e-01 4.590483e-01 4.590483e-01 setrgbcolor +fill +grestore +newpath +5.452059e+01 7.489951e+00 moveto +5.564995e+01 5.947823e+00 lineto +5.744196e+01 5.859462e+00 lineto +5.652906e+01 7.390917e+00 lineto +5.452059e+01 7.489951e+00 lineto +closepath +gsave +4.681449e-01 4.681449e-01 4.681449e-01 setrgbcolor +fill +grestore +newpath +5.347058e+01 9.323617e+00 moveto +5.452059e+01 7.489951e+00 lineto +5.652906e+01 7.390917e+00 lineto +5.568029e+01 9.21466e+00 lineto +5.347058e+01 9.323617e+00 lineto +closepath +gsave +4.779632e-01 4.779632e-01 4.779632e-01 setrgbcolor +fill +grestore +newpath +5.250784e+01 1.143494e+01 moveto +5.347058e+01 9.323617e+00 lineto +5.568029e+01 9.21466e+00 lineto +5.490207e+01 1.131688e+01 lineto +5.250784e+01 1.143494e+01 lineto +closepath +gsave +4.884153e-01 4.884153e-01 4.884153e-01 setrgbcolor +fill +grestore +newpath +5.163968e+01 1.380793e+01 moveto +5.250784e+01 1.143494e+01 lineto +5.490207e+01 1.131688e+01 lineto +5.42003e+01 1.368168e+01 lineto +5.163968e+01 1.380793e+01 lineto +closepath +gsave +4.993845e-01 4.993845e-01 4.993845e-01 setrgbcolor +fill +grestore +newpath +5.087266e+01 1.642464e+01 moveto +5.163968e+01 1.380793e+01 lineto +5.42003e+01 1.368168e+01 lineto +5.358029e+01 1.629113e+01 lineto +5.087266e+01 1.642464e+01 lineto +closepath +gsave +5.107268e-01 5.107268e-01 5.107268e-01 setrgbcolor +fill +grestore +newpath +5.021259e+01 1.926524e+01 moveto +5.087266e+01 1.642464e+01 lineto +5.358029e+01 1.629113e+01 lineto +5.304672e+01 1.912549e+01 lineto +5.021259e+01 1.926524e+01 lineto +closepath +gsave +5.222732e-01 5.222732e-01 5.222732e-01 setrgbcolor +fill +grestore +newpath +4.966446e+01 2.230824e+01 moveto +5.021259e+01 1.926524e+01 lineto +5.304672e+01 1.912549e+01 lineto +5.260365e+01 2.216331e+01 lineto +4.966446e+01 2.230824e+01 lineto +closepath +gsave +5.338333e-01 5.338333e-01 5.338333e-01 setrgbcolor +fill +grestore +newpath +4.923244e+01 2.553059e+01 moveto +4.966446e+01 2.230824e+01 lineto +5.260365e+01 2.216331e+01 lineto +5.225443e+01 2.538158e+01 lineto +4.923244e+01 2.553059e+01 lineto +closepath +gsave +5.452001e-01 5.452001e-01 5.452001e-01 setrgbcolor +fill +grestore +newpath +4.891978e+01 2.89079e+01 moveto +4.923244e+01 2.553059e+01 lineto +5.225443e+01 2.538158e+01 lineto +5.200169e+01 2.875594e+01 lineto +4.891978e+01 2.89079e+01 lineto +closepath +gsave +5.561557e-01 5.561557e-01 5.561557e-01 setrgbcolor +fill +grestore +newpath +4.872885e+01 3.241461e+01 moveto +4.891978e+01 2.89079e+01 lineto +5.200169e+01 2.875594e+01 lineto +5.184736e+01 3.226084e+01 lineto +4.872885e+01 3.241461e+01 lineto +closepath +gsave +5.664781e-01 5.664781e-01 5.664781e-01 setrgbcolor +fill +grestore +newpath +4.866111e+01 3.602417e+01 moveto +4.872885e+01 3.241461e+01 lineto +5.184736e+01 3.226084e+01 lineto +5.17926e+01 3.586976e+01 lineto +4.866111e+01 3.602417e+01 lineto +closepath +gsave +5.759482e-01 5.759482e-01 5.759482e-01 setrgbcolor +fill +grestore +newpath +4.871706e+01 3.970925e+01 moveto +4.866111e+01 3.602417e+01 lineto +5.17926e+01 3.586976e+01 lineto +5.183783e+01 3.955537e+01 lineto +4.871706e+01 3.970925e+01 lineto +closepath +gsave +5.843572e-01 5.843572e-01 5.843572e-01 setrgbcolor +fill +grestore +newpath +4.889627e+01 4.344195e+01 moveto +4.871706e+01 3.970925e+01 lineto +5.183783e+01 3.955537e+01 lineto +5.198269e+01 4.328976e+01 lineto +4.889627e+01 4.344195e+01 lineto +closepath +gsave +5.915136e-01 5.915136e-01 5.915136e-01 setrgbcolor +fill +grestore +newpath +4.91974e+01 4.719402e+01 moveto +4.889627e+01 4.344195e+01 lineto +5.198269e+01 4.328976e+01 lineto +5.222611e+01 4.704468e+01 lineto +4.91974e+01 4.719402e+01 lineto +closepath +gsave +5.972503e-01 5.972503e-01 5.972503e-01 setrgbcolor +fill +grestore +newpath +4.961817e+01 5.093705e+01 moveto +4.91974e+01 4.719402e+01 lineto +5.222611e+01 4.704468e+01 lineto +5.256623e+01 5.079168e+01 lineto +4.961817e+01 5.093705e+01 lineto +closepath +gsave +6.014306e-01 6.014306e-01 6.014306e-01 setrgbcolor +fill +grestore +newpath +5.015537e+01 5.46427e+01 moveto +4.961817e+01 5.093705e+01 lineto +5.256623e+01 5.079168e+01 lineto +5.300048e+01 5.450241e+01 lineto +5.015537e+01 5.46427e+01 lineto +closepath +gsave +6.039534e-01 6.039534e-01 6.039534e-01 setrgbcolor +fill +grestore +newpath +5.080496e+01 5.828292e+01 moveto +5.015537e+01 5.46427e+01 lineto +5.300048e+01 5.450241e+01 lineto +5.352557e+01 5.814877e+01 lineto +5.080496e+01 5.828292e+01 lineto +closepath +gsave +6.047567e-01 6.047567e-01 6.047567e-01 setrgbcolor +fill +grestore +newpath +5.156202e+01 6.183016e+01 moveto +5.080496e+01 5.828292e+01 lineto +5.352557e+01 5.814877e+01 lineto +5.413752e+01 6.170317e+01 lineto +5.156202e+01 6.183016e+01 lineto +closepath +gsave +6.038205e-01 6.038205e-01 6.038205e-01 setrgbcolor +fill +grestore +newpath +5.24208e+01 6.525756e+01 moveto +5.156202e+01 6.183016e+01 lineto +5.413752e+01 6.170317e+01 lineto +5.483171e+01 6.513868e+01 lineto +5.24208e+01 6.525756e+01 lineto +closepath +gsave +6.011669e-01 6.011669e-01 6.011669e-01 setrgbcolor +fill +grestore +newpath +5.337481e+01 6.853916e+01 moveto +5.24208e+01 6.525756e+01 lineto +5.483171e+01 6.513868e+01 lineto +5.560288e+01 6.84293e+01 lineto +5.337481e+01 6.853916e+01 lineto +closepath +gsave +5.9686e-01 5.9686e-01 5.9686e-01 setrgbcolor +fill +grestore +newpath +5.441683e+01 7.165014e+01 moveto +5.337481e+01 6.853916e+01 lineto +5.560288e+01 6.84293e+01 lineto +5.644519e+01 7.155012e+01 lineto +5.441683e+01 7.165014e+01 lineto +closepath +gsave +5.910033e-01 5.910033e-01 5.910033e-01 setrgbcolor +fill +grestore +newpath +5.553897e+01 7.456693e+01 moveto +5.441683e+01 7.165014e+01 lineto +5.644519e+01 7.155012e+01 lineto +5.735226e+01 7.447752e+01 lineto +5.553897e+01 7.456693e+01 lineto +closepath +gsave +5.837357e-01 5.837357e-01 5.837357e-01 setrgbcolor +fill +grestore +newpath +5.673274e+01 7.726746e+01 moveto +5.553897e+01 7.456693e+01 lineto +5.735226e+01 7.447752e+01 lineto +5.831723e+01 7.718933e+01 lineto +5.673274e+01 7.726746e+01 lineto +closepath +gsave +5.752263e-01 5.752263e-01 5.752263e-01 setrgbcolor +fill +grestore +newpath +5.798909e+01 7.973128e+01 moveto +5.673274e+01 7.726746e+01 lineto +5.831723e+01 7.718933e+01 lineto +5.933279e+01 7.966503e+01 lineto +5.798909e+01 7.973128e+01 lineto +closepath +gsave +5.656687e-01 5.656687e-01 5.656687e-01 setrgbcolor +fill +grestore +newpath +5.929852e+01 8.193974e+01 moveto +5.798909e+01 7.973128e+01 lineto +5.933279e+01 7.966503e+01 lineto +6.039126e+01 8.188586e+01 lineto +5.929852e+01 8.193974e+01 lineto +closepath +gsave +5.552736e-01 5.552736e-01 5.552736e-01 setrgbcolor +fill +grestore +newpath +6.065111e+01 8.387612e+01 moveto +5.929852e+01 8.193974e+01 lineto +6.039126e+01 8.188586e+01 lineto +6.148461e+01 8.383502e+01 lineto +6.065111e+01 8.387612e+01 lineto +closepath +gsave +5.442618e-01 5.442618e-01 5.442618e-01 setrgbcolor +fill +grestore +newpath +6.203662e+01 8.552576e+01 moveto +6.065111e+01 8.387612e+01 lineto +6.148461e+01 8.383502e+01 lineto +6.260458e+01 8.549776e+01 lineto +6.203662e+01 8.552576e+01 lineto +closepath +gsave +5.328564e-01 5.328564e-01 5.328564e-01 setrgbcolor +fill +grestore +newpath +6.344457e+01 8.687618e+01 moveto +6.203662e+01 8.552576e+01 lineto +6.260458e+01 8.549776e+01 lineto +6.374268e+01 8.686148e+01 lineto +6.344457e+01 8.687618e+01 lineto +closepath +gsave +5.212757e-01 5.212757e-01 5.212757e-01 setrgbcolor +fill +grestore +newpath +6.486429e+01 8.791714e+01 moveto +6.344457e+01 8.687618e+01 lineto +6.374268e+01 8.686148e+01 lineto +6.48903e+01 8.791586e+01 lineto +6.486429e+01 8.791714e+01 lineto +closepath +gsave +5.097267e-01 5.097267e-01 5.097267e-01 setrgbcolor +fill +grestore +newpath +6.628504e+01 8.864077e+01 moveto +6.486429e+01 8.791714e+01 lineto +6.48903e+01 8.791586e+01 lineto +6.603875e+01 8.865292e+01 lineto +6.628504e+01 8.864077e+01 lineto +closepath +gsave +4.983992e-01 4.983992e-01 4.983992e-01 setrgbcolor +fill +grestore +newpath +7.044634e+01 8.886514e+01 moveto +6.908667e+01 8.911657e+01 lineto +6.830342e+01 8.91552e+01 lineto +6.94025e+01 8.891661e+01 lineto +7.044634e+01 8.886514e+01 lineto +closepath +gsave +4.359573e-01 4.359573e-01 4.359573e-01 setrgbcolor +fill +grestore +newpath +6.049422e+01 3.123187e+00 moveto +6.159048e+01 2.853482e+00 lineto +6.24199e+01 2.829466e+00 lineto +6.159033e+01 3.09145e+00 lineto +6.049422e+01 3.123187e+00 lineto +closepath +gsave +4.388313e-01 4.388313e-01 4.388313e-01 setrgbcolor +fill +grestore +newpath +5.943208e+01 3.717489e+00 moveto +6.049422e+01 3.123187e+00 lineto +6.159033e+01 3.09145e+00 lineto +6.078657e+01 3.678271e+00 lineto +5.943208e+01 3.717489e+00 lineto +closepath +gsave +4.464891e-01 4.464891e-01 4.464891e-01 setrgbcolor +fill +grestore +newpath +5.841208e+01 4.631888e+00 moveto +5.943208e+01 3.717489e+00 lineto +6.078657e+01 3.678271e+00 lineto +6.00147e+01 4.585486e+00 lineto +5.841208e+01 4.631888e+00 lineto +closepath +gsave +4.551211e-01 4.551211e-01 4.551211e-01 setrgbcolor +fill +grestore +newpath +5.744196e+01 5.859462e+00 moveto +5.841208e+01 4.631888e+00 lineto +6.00147e+01 4.585486e+00 lineto +5.928058e+01 5.806226e+00 lineto +5.744196e+01 5.859462e+00 lineto +closepath +gsave +4.647146e-01 4.647146e-01 4.647146e-01 setrgbcolor +fill +grestore +newpath +5.652906e+01 7.390917e+00 moveto +5.744196e+01 5.859462e+00 lineto +5.928058e+01 5.806226e+00 lineto +5.858976e+01 7.331251e+00 lineto +5.652906e+01 7.390917e+00 lineto +closepath +gsave +4.75226e-01 4.75226e-01 4.75226e-01 setrgbcolor +fill +grestore +newpath +5.568029e+01 9.21466e+00 moveto +5.652906e+01 7.390917e+00 lineto +5.858976e+01 7.331251e+00 lineto +5.794746e+01 9.149016e+00 lineto +5.568029e+01 9.21466e+00 lineto +closepath +gsave +4.865774e-01 4.865774e-01 4.865774e-01 setrgbcolor +fill +grestore +newpath +5.490207e+01 1.131688e+01 moveto +5.568029e+01 9.21466e+00 lineto +5.794746e+01 9.149016e+00 lineto +5.735856e+01 1.124576e+01 lineto +5.490207e+01 1.131688e+01 lineto +closepath +gsave +4.986558e-01 4.986558e-01 4.986558e-01 setrgbcolor +fill +grestore +newpath +5.42003e+01 1.368168e+01 moveto +5.490207e+01 1.131688e+01 lineto +5.735856e+01 1.124576e+01 lineto +5.682751e+01 1.360561e+01 lineto +5.42003e+01 1.368168e+01 lineto +closepath +gsave +5.113138e-01 5.113138e-01 5.113138e-01 setrgbcolor +fill +grestore +newpath +5.358029e+01 1.629113e+01 moveto +5.42003e+01 1.368168e+01 lineto +5.682751e+01 1.360561e+01 lineto +5.635832e+01 1.621069e+01 lineto +5.358029e+01 1.629113e+01 lineto +closepath +gsave +5.243706e-01 5.243706e-01 5.243706e-01 setrgbcolor +fill +grestore +newpath +5.304672e+01 1.912549e+01 moveto +5.358029e+01 1.629113e+01 lineto +5.635832e+01 1.621069e+01 lineto +5.595456e+01 1.90413e+01 lineto +5.304672e+01 1.912549e+01 lineto +closepath +gsave +5.376161e-01 5.376161e-01 5.376161e-01 setrgbcolor +fill +grestore +newpath +5.260365e+01 2.216331e+01 moveto +5.304672e+01 1.912549e+01 lineto +5.595456e+01 1.90413e+01 lineto +5.561927e+01 2.207599e+01 lineto +5.260365e+01 2.216331e+01 lineto +closepath +gsave +5.508159e-01 5.508159e-01 5.508159e-01 setrgbcolor +fill +grestore +newpath +5.225443e+01 2.538158e+01 moveto +5.260365e+01 2.216331e+01 lineto +5.561927e+01 2.207599e+01 lineto +5.5355e+01 2.52918e+01 lineto +5.225443e+01 2.538158e+01 lineto +closepath +gsave +5.637173e-01 5.637173e-01 5.637173e-01 setrgbcolor +fill +grestore +newpath +5.200169e+01 2.875594e+01 moveto +5.225443e+01 2.538158e+01 lineto +5.5355e+01 2.52918e+01 lineto +5.516375e+01 2.866438e+01 lineto +5.200169e+01 2.875594e+01 lineto +closepath +gsave +5.760572e-01 5.760572e-01 5.760572e-01 setrgbcolor +fill +grestore +newpath +5.184736e+01 3.226084e+01 moveto +5.200169e+01 2.875594e+01 lineto +5.516375e+01 2.866438e+01 lineto +5.504696e+01 3.21682e+01 lineto +5.184736e+01 3.226084e+01 lineto +closepath +gsave +5.875704e-01 5.875704e-01 5.875704e-01 setrgbcolor +fill +grestore +newpath +5.17926e+01 3.586976e+01 moveto +5.184736e+01 3.226084e+01 lineto +5.504696e+01 3.21682e+01 lineto +5.500552e+01 3.577673e+01 lineto +5.17926e+01 3.586976e+01 lineto +closepath +gsave +5.979986e-01 5.979986e-01 5.979986e-01 setrgbcolor +fill +grestore +newpath +5.183783e+01 3.955537e+01 moveto +5.17926e+01 3.586976e+01 lineto +5.500552e+01 3.577673e+01 lineto +5.503974e+01 3.946266e+01 lineto +5.183783e+01 3.955537e+01 lineto +closepath +gsave +6.070993e-01 6.070993e-01 6.070993e-01 setrgbcolor +fill +grestore +newpath +5.198269e+01 4.328976e+01 moveto +5.183783e+01 3.955537e+01 lineto +5.503974e+01 3.946266e+01 lineto +5.514937e+01 4.319808e+01 lineto +5.198269e+01 4.328976e+01 lineto +closepath +gsave +6.146547e-01 6.146547e-01 6.146547e-01 setrgbcolor +fill +grestore +newpath +5.222611e+01 4.704468e+01 moveto +5.198269e+01 4.328976e+01 lineto +5.514937e+01 4.319808e+01 lineto +5.533357e+01 4.69547e+01 lineto +5.222611e+01 4.704468e+01 lineto +closepath +gsave +6.2048e-01 6.2048e-01 6.2048e-01 setrgbcolor +fill +grestore +newpath +5.256623e+01 5.079168e+01 moveto +5.222611e+01 4.704468e+01 lineto +5.533357e+01 4.69547e+01 lineto +5.559095e+01 5.07041e+01 lineto +5.256623e+01 5.079168e+01 lineto +closepath +gsave +6.244299e-01 6.244299e-01 6.244299e-01 setrgbcolor +fill +grestore +newpath +5.300048e+01 5.450241e+01 moveto +5.256623e+01 5.079168e+01 lineto +5.559095e+01 5.07041e+01 lineto +5.591956e+01 5.441789e+01 lineto +5.300048e+01 5.450241e+01 lineto +closepath +gsave +6.264046e-01 6.264046e-01 6.264046e-01 setrgbcolor +fill +grestore +newpath +5.352557e+01 5.814877e+01 moveto +5.300048e+01 5.450241e+01 lineto +5.591956e+01 5.441789e+01 lineto +5.631691e+01 5.806795e+01 lineto +5.352557e+01 5.814877e+01 lineto +closepath +gsave +6.263535e-01 6.263535e-01 6.263535e-01 setrgbcolor +fill +grestore +newpath +5.413752e+01 6.170317e+01 moveto +5.352557e+01 5.814877e+01 lineto +5.631691e+01 5.806795e+01 lineto +5.678e+01 6.162666e+01 lineto +5.413752e+01 6.170317e+01 lineto +closepath +gsave +6.242773e-01 6.242773e-01 6.242773e-01 setrgbcolor +fill +grestore +newpath +5.483171e+01 6.513868e+01 moveto +5.413752e+01 6.170317e+01 lineto +5.678e+01 6.162666e+01 lineto +5.730532e+01 6.506706e+01 lineto +5.483171e+01 6.513868e+01 lineto +closepath +gsave +6.20228e-01 6.20228e-01 6.20228e-01 setrgbcolor +fill +grestore +newpath +5.560288e+01 6.84293e+01 moveto +5.483171e+01 6.513868e+01 lineto +5.730532e+01 6.506706e+01 lineto +5.788889e+01 6.836311e+01 lineto +5.560288e+01 6.84293e+01 lineto +closepath +gsave +6.143068e-01 6.143068e-01 6.143068e-01 setrgbcolor +fill +grestore +newpath +5.644519e+01 7.155012e+01 moveto +5.560288e+01 6.84293e+01 lineto +5.788889e+01 6.836311e+01 lineto +5.852629e+01 7.148987e+01 lineto +5.644519e+01 7.155012e+01 lineto +closepath +gsave +6.066607e-01 6.066607e-01 6.066607e-01 setrgbcolor +fill +grestore +newpath +5.735226e+01 7.447752e+01 moveto +5.644519e+01 7.155012e+01 lineto +5.852629e+01 7.148987e+01 lineto +5.92127e+01 7.442365e+01 lineto +5.735226e+01 7.447752e+01 lineto +closepath +gsave +5.974763e-01 5.974763e-01 5.974763e-01 setrgbcolor +fill +grestore +newpath +5.831723e+01 7.718933e+01 moveto +5.735226e+01 7.447752e+01 lineto +5.92127e+01 7.442365e+01 lineto +5.994293e+01 7.714226e+01 lineto +5.831723e+01 7.718933e+01 lineto +closepath +gsave +5.869731e-01 5.869731e-01 5.869731e-01 setrgbcolor +fill +grestore +newpath +5.933279e+01 7.966503e+01 moveto +5.831723e+01 7.718933e+01 lineto +5.994293e+01 7.714226e+01 lineto +6.071143e+01 7.962511e+01 lineto +5.933279e+01 7.966503e+01 lineto +closepath +gsave +5.753953e-01 5.753953e-01 5.753953e-01 setrgbcolor +fill +grestore +newpath +6.039126e+01 8.188586e+01 moveto +5.933279e+01 7.966503e+01 lineto +6.071143e+01 7.962511e+01 lineto +6.151241e+01 8.18534e+01 lineto +6.039126e+01 8.188586e+01 lineto +closepath +gsave +5.630029e-01 5.630029e-01 5.630029e-01 setrgbcolor +fill +grestore +newpath +6.148461e+01 8.383502e+01 moveto +6.039126e+01 8.188586e+01 lineto +6.151241e+01 8.18534e+01 lineto +6.233979e+01 8.381026e+01 lineto +6.148461e+01 8.383502e+01 lineto +closepath +gsave +5.500625e-01 5.500625e-01 5.500625e-01 setrgbcolor +fill +grestore +newpath +6.260458e+01 8.549776e+01 moveto +6.148461e+01 8.383502e+01 lineto +6.233979e+01 8.381026e+01 lineto +6.31873e+01 8.548089e+01 lineto +6.260458e+01 8.549776e+01 lineto +closepath +gsave +5.368381e-01 5.368381e-01 5.368381e-01 setrgbcolor +fill +grestore +newpath +6.374268e+01 8.686148e+01 moveto +6.260458e+01 8.549776e+01 lineto +6.31873e+01 8.548089e+01 lineto +6.404854e+01 8.685262e+01 lineto +6.374268e+01 8.686148e+01 lineto +closepath +gsave +5.235829e-01 5.235829e-01 5.235829e-01 setrgbcolor +fill +grestore +newpath +6.48903e+01 8.791586e+01 moveto +6.374268e+01 8.686148e+01 lineto +6.404854e+01 8.685262e+01 lineto +6.491699e+01 8.791509e+01 lineto +6.48903e+01 8.791586e+01 lineto +closepath +gsave +5.105313e-01 5.105313e-01 5.105313e-01 setrgbcolor +fill +grestore +newpath +6.603875e+01 8.865292e+01 moveto +6.48903e+01 8.791586e+01 lineto +6.491699e+01 8.791509e+01 lineto +6.578606e+01 8.866023e+01 lineto +6.603875e+01 8.865292e+01 lineto +closepath +gsave +4.978927e-01 4.978927e-01 4.978927e-01 setrgbcolor +fill +grestore +newpath +6.94025e+01 8.891661e+01 moveto +6.830342e+01 8.91552e+01 lineto +6.749981e+01 8.917846e+01 lineto +6.833152e+01 8.894762e+01 lineto +6.94025e+01 8.891661e+01 lineto +closepath +gsave +4.381511e-01 4.381511e-01 4.381511e-01 setrgbcolor +fill +grestore +newpath +6.159033e+01 3.09145e+00 moveto +6.24199e+01 2.829466e+00 lineto +6.326523e+01 2.821445e+00 lineto +6.270745e+01 3.08085e+00 lineto +6.159033e+01 3.09145e+00 lineto +closepath +gsave +4.41058e-01 4.41058e-01 4.41058e-01 setrgbcolor +fill +grestore +newpath +6.078657e+01 3.678271e+00 moveto +6.159033e+01 3.09145e+00 lineto +6.270745e+01 3.08085e+00 lineto +6.216703e+01 3.665171e+00 lineto +6.078657e+01 3.678271e+00 lineto +closepath +gsave +4.49696e-01 4.49696e-01 4.49696e-01 setrgbcolor +fill +grestore +newpath +6.00147e+01 4.585486e+00 moveto +6.078657e+01 3.678271e+00 lineto +6.216703e+01 3.665171e+00 lineto +6.164806e+01 4.569986e+00 lineto +6.00147e+01 4.585486e+00 lineto +closepath +gsave +4.594695e-01 4.594695e-01 4.594695e-01 setrgbcolor +fill +grestore +newpath +5.928058e+01 5.806226e+00 moveto +6.00147e+01 4.585486e+00 lineto +6.164806e+01 4.569986e+00 lineto +6.115446e+01 5.788445e+00 lineto +5.928058e+01 5.806226e+00 lineto +closepath +gsave +4.703607e-01 4.703607e-01 4.703607e-01 setrgbcolor +fill +grestore +newpath +5.858976e+01 7.331251e+00 moveto +5.928058e+01 5.806226e+00 lineto +6.115446e+01 5.788445e+00 lineto +6.068998e+01 7.311322e+00 lineto +5.858976e+01 7.331251e+00 lineto +closepath +gsave +4.823138e-01 4.823138e-01 4.823138e-01 setrgbcolor +fill +grestore +newpath +5.794746e+01 9.149016e+00 moveto +5.858976e+01 7.331251e+00 lineto +6.068998e+01 7.311322e+00 lineto +6.025812e+01 9.12709e+00 lineto +5.794746e+01 9.149016e+00 lineto +closepath +gsave +4.952317e-01 4.952317e-01 4.952317e-01 setrgbcolor +fill +grestore +newpath +5.735856e+01 1.124576e+01 moveto +5.794746e+01 9.149016e+00 lineto +6.025812e+01 9.12709e+00 lineto +5.986216e+01 1.1222e+01 lineto +5.735856e+01 1.124576e+01 lineto +closepath +gsave +5.089749e-01 5.089749e-01 5.089749e-01 setrgbcolor +fill +grestore +newpath +5.682751e+01 1.360561e+01 moveto +5.735856e+01 1.124576e+01 lineto +5.986216e+01 1.1222e+01 lineto +5.95051e+01 1.35802e+01 lineto +5.682751e+01 1.360561e+01 lineto +closepath +gsave +5.233628e-01 5.233628e-01 5.233628e-01 setrgbcolor +fill +grestore +newpath +5.635832e+01 1.621069e+01 moveto +5.682751e+01 1.360561e+01 lineto +5.95051e+01 1.35802e+01 lineto +5.918963e+01 1.618383e+01 lineto +5.635832e+01 1.621069e+01 lineto +closepath +gsave +5.381757e-01 5.381757e-01 5.381757e-01 setrgbcolor +fill +grestore +newpath +5.595456e+01 1.90413e+01 moveto +5.635832e+01 1.621069e+01 lineto +5.918963e+01 1.618383e+01 lineto +5.891816e+01 1.901318e+01 lineto +5.595456e+01 1.90413e+01 lineto +closepath +gsave +5.5316e-01 5.5316e-01 5.5316e-01 setrgbcolor +fill +grestore +newpath +5.561927e+01 2.207599e+01 moveto +5.595456e+01 1.90413e+01 lineto +5.891816e+01 1.901318e+01 lineto +5.869272e+01 2.204683e+01 lineto +5.561927e+01 2.207599e+01 lineto +closepath +gsave +5.680344e-01 5.680344e-01 5.680344e-01 setrgbcolor +fill +grestore +newpath +5.5355e+01 2.52918e+01 moveto +5.561927e+01 2.207599e+01 lineto +5.869272e+01 2.204683e+01 lineto +5.851504e+01 2.526182e+01 lineto +5.5355e+01 2.52918e+01 lineto +closepath +gsave +5.824984e-01 5.824984e-01 5.824984e-01 setrgbcolor +fill +grestore +newpath +5.516375e+01 2.866438e+01 moveto +5.5355e+01 2.52918e+01 lineto +5.851504e+01 2.526182e+01 lineto +5.838644e+01 2.86338e+01 lineto +5.516375e+01 2.866438e+01 lineto +closepath +gsave +5.962414e-01 5.962414e-01 5.962414e-01 setrgbcolor +fill +grestore +newpath +5.504696e+01 3.21682e+01 moveto +5.516375e+01 2.866438e+01 lineto +5.838644e+01 2.86338e+01 lineto +5.830792e+01 3.213726e+01 lineto +5.504696e+01 3.21682e+01 lineto +closepath +gsave +6.089535e-01 6.089535e-01 6.089535e-01 setrgbcolor +fill +grestore +newpath +5.500552e+01 3.577673e+01 moveto +5.504696e+01 3.21682e+01 lineto +5.830792e+01 3.213726e+01 lineto +5.828006e+01 3.574566e+01 lineto +5.500552e+01 3.577673e+01 lineto +closepath +gsave +6.203358e-01 6.203358e-01 6.203358e-01 setrgbcolor +fill +grestore +newpath +5.503974e+01 3.946266e+01 moveto +5.500552e+01 3.577673e+01 lineto +5.828006e+01 3.574566e+01 lineto +5.830307e+01 3.943169e+01 lineto +5.503974e+01 3.946266e+01 lineto +closepath +gsave +6.301122e-01 6.301122e-01 6.301122e-01 setrgbcolor +fill +grestore +newpath +5.514937e+01 4.319808e+01 moveto +5.503974e+01 3.946266e+01 lineto +5.830307e+01 3.943169e+01 lineto +5.837678e+01 4.316745e+01 lineto +5.514937e+01 4.319808e+01 lineto +closepath +gsave +6.380387e-01 6.380387e-01 6.380387e-01 setrgbcolor +fill +grestore +newpath +5.533357e+01 4.69547e+01 moveto +5.514937e+01 4.319808e+01 lineto +5.837678e+01 4.316745e+01 lineto +5.850063e+01 4.692465e+01 lineto +5.533357e+01 4.69547e+01 lineto +closepath +gsave +6.439134e-01 6.439134e-01 6.439134e-01 setrgbcolor +fill +grestore +newpath +5.559095e+01 5.07041e+01 moveto +5.533357e+01 4.69547e+01 lineto +5.850063e+01 4.692465e+01 lineto +5.867368e+01 5.067485e+01 lineto +5.559095e+01 5.07041e+01 lineto +closepath +gsave +6.475844e-01 6.475844e-01 6.475844e-01 setrgbcolor +fill +grestore +newpath +5.591956e+01 5.441789e+01 moveto +5.559095e+01 5.07041e+01 lineto +5.867368e+01 5.067485e+01 lineto +5.889463e+01 5.438966e+01 lineto +5.591956e+01 5.441789e+01 lineto +closepath +gsave +6.489553e-01 6.489553e-01 6.489553e-01 setrgbcolor +fill +grestore +newpath +5.631691e+01 5.806795e+01 moveto +5.591956e+01 5.441789e+01 lineto +5.889463e+01 5.438966e+01 lineto +5.916179e+01 5.804096e+01 lineto +5.631691e+01 5.806795e+01 lineto +closepath +gsave +6.479897e-01 6.479897e-01 6.479897e-01 setrgbcolor +fill +grestore +newpath +5.678e+01 6.162666e+01 moveto +5.631691e+01 5.806795e+01 lineto +5.916179e+01 5.804096e+01 lineto +5.947316e+01 6.16011e+01 lineto +5.678e+01 6.162666e+01 lineto +closepath +gsave +6.447121e-01 6.447121e-01 6.447121e-01 setrgbcolor +fill +grestore +newpath +5.730532e+01 6.506706e+01 moveto +5.678e+01 6.162666e+01 lineto +5.947316e+01 6.16011e+01 lineto +5.982636e+01 6.504313e+01 lineto +5.730532e+01 6.506706e+01 lineto +closepath +gsave +6.392075e-01 6.392075e-01 6.392075e-01 setrgbcolor +fill +grestore +newpath +5.788889e+01 6.836311e+01 moveto +5.730532e+01 6.506706e+01 lineto +5.982636e+01 6.504313e+01 lineto +6.021873e+01 6.8341e+01 lineto +5.788889e+01 6.836311e+01 lineto +closepath +gsave +6.316179e-01 6.316179e-01 6.316179e-01 setrgbcolor +fill +grestore +newpath +5.852629e+01 7.148987e+01 moveto +5.788889e+01 6.836311e+01 lineto +6.021873e+01 6.8341e+01 lineto +6.06473e+01 7.146974e+01 lineto +5.852629e+01 7.148987e+01 lineto +closepath +gsave +6.221364e-01 6.221364e-01 6.221364e-01 setrgbcolor +fill +grestore +newpath +5.92127e+01 7.442365e+01 moveto +5.852629e+01 7.148987e+01 lineto +6.06473e+01 7.146974e+01 lineto +6.110882e+01 7.440566e+01 lineto +5.92127e+01 7.442365e+01 lineto +closepath +gsave +6.110005e-01 6.110005e-01 6.110005e-01 setrgbcolor +fill +grestore +newpath +5.994293e+01 7.714226e+01 moveto +5.92127e+01 7.442365e+01 lineto +6.110882e+01 7.440566e+01 lineto +6.15998e+01 7.712654e+01 lineto +5.994293e+01 7.714226e+01 lineto +closepath +gsave +5.984821e-01 5.984821e-01 5.984821e-01 setrgbcolor +fill +grestore +newpath +6.071143e+01 7.962511e+01 moveto +5.994293e+01 7.714226e+01 lineto +6.15998e+01 7.712654e+01 lineto +6.211652e+01 7.961177e+01 lineto +6.071143e+01 7.962511e+01 lineto +closepath +gsave +5.848778e-01 5.848778e-01 5.848778e-01 setrgbcolor +fill +grestore +newpath +6.151241e+01 8.18534e+01 moveto +6.071143e+01 7.962511e+01 lineto +6.211652e+01 7.961177e+01 lineto +6.265507e+01 8.184256e+01 lineto +6.151241e+01 8.18534e+01 lineto +closepath +gsave +5.704977e-01 5.704977e-01 5.704977e-01 setrgbcolor +fill +grestore +newpath +6.233979e+01 8.381026e+01 moveto +6.151241e+01 8.18534e+01 lineto +6.265507e+01 8.184256e+01 lineto +6.321137e+01 8.380199e+01 lineto +6.233979e+01 8.381026e+01 lineto +closepath +gsave +5.556544e-01 5.556544e-01 5.556544e-01 setrgbcolor +fill +grestore +newpath +6.31873e+01 8.548089e+01 moveto +6.233979e+01 8.381026e+01 lineto +6.321137e+01 8.380199e+01 lineto +6.378121e+01 8.547525e+01 lineto +6.31873e+01 8.548089e+01 lineto +closepath +gsave +5.406524e-01 5.406524e-01 5.406524e-01 setrgbcolor +fill +grestore +newpath +6.404854e+01 8.685262e+01 moveto +6.31873e+01 8.548089e+01 lineto +6.378121e+01 8.547525e+01 lineto +6.436027e+01 8.684966e+01 lineto +6.404854e+01 8.685262e+01 lineto +closepath +gsave +5.25778e-01 5.25778e-01 5.25778e-01 setrgbcolor +fill +grestore +newpath +6.491699e+01 8.791509e+01 moveto +6.404854e+01 8.685262e+01 lineto +6.436027e+01 8.684966e+01 lineto +6.494418e+01 8.791483e+01 lineto +6.491699e+01 8.791509e+01 lineto +closepath +gsave +5.112912e-01 5.112912e-01 5.112912e-01 setrgbcolor +fill +grestore +newpath +6.578606e+01 8.866023e+01 moveto +6.491699e+01 8.791509e+01 lineto +6.494418e+01 8.791483e+01 lineto +6.552852e+01 8.866268e+01 lineto +6.578606e+01 8.866023e+01 lineto +closepath +gsave +4.974183e-01 4.974183e-01 4.974183e-01 setrgbcolor +fill +grestore +newpath +6.833152e+01 8.894762e+01 moveto +6.749981e+01 8.917846e+01 lineto +6.668079e+01 8.918624e+01 lineto +6.724e+01 8.895798e+01 lineto +6.833152e+01 8.894762e+01 lineto +closepath +gsave +4.402927e-01 4.402927e-01 4.402927e-01 setrgbcolor +fill +grestore +newpath +6.270745e+01 3.08085e+00 moveto +6.326523e+01 2.821445e+00 lineto +6.412126e+01 2.829466e+00 lineto +6.383872e+01 3.09145e+00 lineto +6.270745e+01 3.08085e+00 lineto +closepath +gsave +4.432036e-01 4.432036e-01 4.432036e-01 setrgbcolor +fill +grestore +newpath +6.216703e+01 3.665171e+00 moveto +6.270745e+01 3.08085e+00 lineto +6.383872e+01 3.09145e+00 lineto +6.356497e+01 3.678271e+00 lineto +6.216703e+01 3.665171e+00 lineto +closepath +gsave +4.528075e-01 4.528075e-01 4.528075e-01 setrgbcolor +fill +grestore +newpath +6.164806e+01 4.569986e+00 moveto +6.216703e+01 3.665171e+00 lineto +6.356497e+01 3.678271e+00 lineto +6.330208e+01 4.585486e+00 lineto +6.164806e+01 4.569986e+00 lineto +closepath +gsave +4.637129e-01 4.637129e-01 4.637129e-01 setrgbcolor +fill +grestore +newpath +6.115446e+01 5.788445e+00 moveto +6.164806e+01 4.569986e+00 lineto +6.330208e+01 4.585486e+00 lineto +6.305205e+01 5.806226e+00 lineto +6.115446e+01 5.788445e+00 lineto +closepath +gsave +4.758972e-01 4.758972e-01 4.758972e-01 setrgbcolor +fill +grestore +newpath +6.068998e+01 7.311322e+00 moveto +6.115446e+01 5.788445e+00 lineto +6.305205e+01 5.806226e+00 lineto +6.281677e+01 7.331251e+00 lineto +6.068998e+01 7.311322e+00 lineto +closepath +gsave +4.89292e-01 4.89292e-01 4.89292e-01 setrgbcolor +fill +grestore +newpath +6.025812e+01 9.12709e+00 moveto +6.068998e+01 7.311322e+00 lineto +6.281677e+01 7.331251e+00 lineto +6.259801e+01 9.149016e+00 lineto +6.025812e+01 9.12709e+00 lineto +closepath +gsave +5.0378e-01 5.0378e-01 5.0378e-01 setrgbcolor +fill +grestore +newpath +5.986216e+01 1.1222e+01 moveto +6.025812e+01 9.12709e+00 lineto +6.259801e+01 9.149016e+00 lineto +6.239744e+01 1.124576e+01 lineto +5.986216e+01 1.1222e+01 lineto +closepath +gsave +5.191944e-01 5.191944e-01 5.191944e-01 setrgbcolor +fill +grestore +newpath +5.95051e+01 1.35802e+01 moveto +5.986216e+01 1.1222e+01 lineto +6.239744e+01 1.124576e+01 lineto +6.221657e+01 1.360561e+01 lineto +5.95051e+01 1.35802e+01 lineto +closepath +gsave +5.353201e-01 5.353201e-01 5.353201e-01 setrgbcolor +fill +grestore +newpath +5.918963e+01 1.618383e+01 moveto +5.95051e+01 1.35802e+01 lineto +6.221657e+01 1.360561e+01 lineto +6.205677e+01 1.621069e+01 lineto +5.918963e+01 1.618383e+01 lineto +closepath +gsave +5.518969e-01 5.518969e-01 5.518969e-01 setrgbcolor +fill +grestore +newpath +5.891816e+01 1.901318e+01 moveto +5.918963e+01 1.618383e+01 lineto +6.205677e+01 1.621069e+01 lineto +6.191925e+01 1.90413e+01 lineto +5.891816e+01 1.901318e+01 lineto +closepath +gsave +5.686261e-01 5.686261e-01 5.686261e-01 setrgbcolor +fill +grestore +newpath +5.869272e+01 2.204683e+01 moveto +5.891816e+01 1.901318e+01 lineto +6.191925e+01 1.90413e+01 lineto +6.180506e+01 2.207599e+01 lineto +5.869272e+01 2.204683e+01 lineto +closepath +gsave +5.851785e-01 5.851785e-01 5.851785e-01 setrgbcolor +fill +grestore +newpath +5.851504e+01 2.526182e+01 moveto +5.869272e+01 2.204683e+01 lineto +6.180506e+01 2.207599e+01 lineto +6.171505e+01 2.52918e+01 lineto +5.851504e+01 2.526182e+01 lineto +closepath +gsave +6.01204e-01 6.01204e-01 6.01204e-01 setrgbcolor +fill +grestore +newpath +5.838644e+01 2.86338e+01 moveto +5.851504e+01 2.526182e+01 lineto +6.171505e+01 2.52918e+01 lineto +6.164992e+01 2.866438e+01 lineto +5.838644e+01 2.86338e+01 lineto +closepath +gsave +6.163437e-01 6.163437e-01 6.163437e-01 setrgbcolor +fill +grestore +newpath +5.830792e+01 3.213726e+01 moveto +5.838644e+01 2.86338e+01 lineto +6.164992e+01 2.866438e+01 lineto +6.161014e+01 3.21682e+01 lineto +5.830792e+01 3.213726e+01 lineto +closepath +gsave +6.30242e-01 6.30242e-01 6.30242e-01 setrgbcolor +fill +grestore +newpath +5.828006e+01 3.574566e+01 moveto +5.830792e+01 3.213726e+01 lineto +6.161014e+01 3.21682e+01 lineto +6.159603e+01 3.577673e+01 lineto +5.828006e+01 3.574566e+01 lineto +closepath +gsave +6.425597e-01 6.425597e-01 6.425597e-01 setrgbcolor +fill +grestore +newpath +5.830307e+01 3.943169e+01 moveto +5.828006e+01 3.574566e+01 lineto +6.159603e+01 3.577673e+01 lineto +6.160768e+01 3.946266e+01 lineto +5.830307e+01 3.943169e+01 lineto +closepath +gsave +6.529866e-01 6.529866e-01 6.529866e-01 setrgbcolor +fill +grestore +newpath +5.837678e+01 4.316745e+01 moveto +5.830307e+01 3.943169e+01 lineto +6.160768e+01 3.946266e+01 lineto +6.164502e+01 4.319808e+01 lineto +5.837678e+01 4.316745e+01 lineto +closepath +gsave +6.612535e-01 6.612535e-01 6.612535e-01 setrgbcolor +fill +grestore +newpath +5.850063e+01 4.692465e+01 moveto +5.837678e+01 4.316745e+01 lineto +6.164502e+01 4.319808e+01 lineto +6.170776e+01 4.69547e+01 lineto +5.850063e+01 4.692465e+01 lineto +closepath +gsave +6.671427e-01 6.671427e-01 6.671427e-01 setrgbcolor +fill +grestore +newpath +5.867368e+01 5.067485e+01 moveto +5.850063e+01 4.692465e+01 lineto +6.170776e+01 4.69547e+01 lineto +6.179542e+01 5.07041e+01 lineto +5.867368e+01 5.067485e+01 lineto +closepath +gsave +6.704969e-01 6.704969e-01 6.704969e-01 setrgbcolor +fill +grestore +newpath +5.889463e+01 5.438966e+01 moveto +5.867368e+01 5.067485e+01 lineto +6.179542e+01 5.07041e+01 lineto +6.190734e+01 5.441789e+01 lineto +5.889463e+01 5.438966e+01 lineto +closepath +gsave +6.712254e-01 6.712254e-01 6.712254e-01 setrgbcolor +fill +grestore +newpath +5.916179e+01 5.804096e+01 moveto +5.889463e+01 5.438966e+01 lineto +6.190734e+01 5.441789e+01 lineto +6.204267e+01 5.806795e+01 lineto +5.916179e+01 5.804096e+01 lineto +closepath +gsave +6.693078e-01 6.693078e-01 6.693078e-01 setrgbcolor +fill +grestore +newpath +5.947316e+01 6.16011e+01 moveto +5.916179e+01 5.804096e+01 lineto +6.204267e+01 5.806795e+01 lineto +6.220039e+01 6.162666e+01 lineto +5.947316e+01 6.16011e+01 lineto +closepath +gsave +6.647951e-01 6.647951e-01 6.647951e-01 setrgbcolor +fill +grestore +newpath +5.982636e+01 6.504313e+01 moveto +5.947316e+01 6.16011e+01 lineto +6.220039e+01 6.162666e+01 lineto +6.23793e+01 6.506706e+01 lineto +5.982636e+01 6.504313e+01 lineto +closepath +gsave +6.578076e-01 6.578076e-01 6.578076e-01 setrgbcolor +fill +grestore +newpath +6.021873e+01 6.8341e+01 moveto +5.982636e+01 6.504313e+01 lineto +6.23793e+01 6.506706e+01 lineto +6.257806e+01 6.836311e+01 lineto +6.021873e+01 6.8341e+01 lineto +closepath +gsave +6.485298e-01 6.485298e-01 6.485298e-01 setrgbcolor +fill +grestore +newpath +6.06473e+01 7.146974e+01 moveto +6.021873e+01 6.8341e+01 lineto +6.257806e+01 6.836311e+01 lineto +6.279515e+01 7.148987e+01 lineto +6.06473e+01 7.146974e+01 lineto +closepath +gsave +6.372036e-01 6.372036e-01 6.372036e-01 setrgbcolor +fill +grestore +newpath +6.110882e+01 7.440566e+01 moveto +6.06473e+01 7.146974e+01 lineto +6.279515e+01 7.148987e+01 lineto +6.302893e+01 7.442365e+01 lineto +6.110882e+01 7.440566e+01 lineto +closepath +gsave +6.241183e-01 6.241183e-01 6.241183e-01 setrgbcolor +fill +grestore +newpath +6.15998e+01 7.712654e+01 moveto +6.110882e+01 7.440566e+01 lineto +6.302893e+01 7.442365e+01 lineto +6.327763e+01 7.714226e+01 lineto +6.15998e+01 7.712654e+01 lineto +closepath +gsave +6.095996e-01 6.095996e-01 6.095996e-01 setrgbcolor +fill +grestore +newpath +6.211652e+01 7.961177e+01 moveto +6.15998e+01 7.712654e+01 lineto +6.327763e+01 7.714226e+01 lineto +6.353938e+01 7.962511e+01 lineto +6.211652e+01 7.961177e+01 lineto +closepath +gsave +5.939968e-01 5.939968e-01 5.939968e-01 setrgbcolor +fill +grestore +newpath +6.265507e+01 8.184256e+01 moveto +6.211652e+01 7.961177e+01 lineto +6.353938e+01 7.962511e+01 lineto +6.381218e+01 8.18534e+01 lineto +6.265507e+01 8.184256e+01 lineto +closepath +gsave +5.776701e-01 5.776701e-01 5.776701e-01 setrgbcolor +fill +grestore +newpath +6.321137e+01 8.380199e+01 moveto +6.265507e+01 8.184256e+01 lineto +6.381218e+01 8.18534e+01 lineto +6.409397e+01 8.381026e+01 lineto +6.321137e+01 8.380199e+01 lineto +closepath +gsave +5.609775e-01 5.609775e-01 5.609775e-01 setrgbcolor +fill +grestore +newpath +6.378121e+01 8.547525e+01 moveto +6.321137e+01 8.380199e+01 lineto +6.409397e+01 8.381026e+01 lineto +6.438262e+01 8.548089e+01 lineto +6.378121e+01 8.547525e+01 lineto +closepath +gsave +5.442623e-01 5.442623e-01 5.442623e-01 setrgbcolor +fill +grestore +newpath +6.436027e+01 8.684966e+01 moveto +6.378121e+01 8.547525e+01 lineto +6.438262e+01 8.548089e+01 lineto +6.467595e+01 8.685262e+01 lineto +6.436027e+01 8.684966e+01 lineto +closepath +gsave +5.278425e-01 5.278425e-01 5.278425e-01 setrgbcolor +fill +grestore +newpath +6.494418e+01 8.791483e+01 moveto +6.436027e+01 8.684966e+01 lineto +6.467595e+01 8.685262e+01 lineto +6.497173e+01 8.791509e+01 lineto +6.494418e+01 8.791483e+01 lineto +closepath +gsave +5.12001e-01 5.12001e-01 5.12001e-01 setrgbcolor +fill +grestore +newpath +6.552852e+01 8.866268e+01 moveto +6.494418e+01 8.791483e+01 lineto +6.497173e+01 8.791509e+01 lineto +6.526772e+01 8.866023e+01 lineto +6.552852e+01 8.866268e+01 lineto +closepath +gsave +4.969786e-01 4.969786e-01 4.969786e-01 setrgbcolor +fill +grestore +newpath +6.724e+01 8.895798e+01 moveto +6.668079e+01 8.918624e+01 lineto +6.58514e+01 8.917846e+01 lineto +6.613467e+01 8.894762e+01 lineto +6.724e+01 8.895798e+01 lineto +closepath +gsave +4.423547e-01 4.423547e-01 4.423547e-01 setrgbcolor +fill +grestore +newpath +6.383872e+01 3.09145e+00 moveto +6.412126e+01 2.829466e+00 lineto +6.49827e+01 2.853482e+00 lineto +6.497714e+01 3.123187e+00 lineto +6.383872e+01 3.09145e+00 lineto +closepath +gsave +4.452389e-01 4.452389e-01 4.452389e-01 setrgbcolor +fill +grestore +newpath +6.356497e+01 3.678271e+00 moveto +6.383872e+01 3.09145e+00 lineto +6.497714e+01 3.123187e+00 lineto +6.497175e+01 3.717489e+00 lineto +6.356497e+01 3.678271e+00 lineto +closepath +gsave +4.557773e-01 4.557773e-01 4.557773e-01 setrgbcolor +fill +grestore +newpath +6.330208e+01 4.585486e+00 moveto +6.356497e+01 3.678271e+00 lineto +6.497175e+01 3.717489e+00 lineto +6.496657e+01 4.631888e+00 lineto +6.330208e+01 4.585486e+00 lineto +closepath +gsave +4.67784e-01 4.67784e-01 4.67784e-01 setrgbcolor +fill +grestore +newpath +6.305205e+01 5.806226e+00 moveto +6.330208e+01 4.585486e+00 lineto +6.496657e+01 4.631888e+00 lineto +6.496165e+01 5.859462e+00 lineto +6.305205e+01 5.806226e+00 lineto +closepath +gsave +4.812315e-01 4.812315e-01 4.812315e-01 setrgbcolor +fill +grestore +newpath +6.281677e+01 7.331251e+00 moveto +6.305205e+01 5.806226e+00 lineto +6.496165e+01 5.859462e+00 lineto +6.495702e+01 7.390917e+00 lineto +6.281677e+01 7.331251e+00 lineto +closepath +gsave +4.960389e-01 4.960389e-01 4.960389e-01 setrgbcolor +fill +grestore +newpath +6.259801e+01 9.149016e+00 moveto +6.281677e+01 7.331251e+00 lineto +6.495702e+01 7.390917e+00 lineto +6.495271e+01 9.21466e+00 lineto +6.259801e+01 9.149016e+00 lineto +closepath +gsave +5.120686e-01 5.120686e-01 5.120686e-01 setrgbcolor +fill +grestore +newpath +6.239744e+01 1.124576e+01 moveto +6.259801e+01 9.149016e+00 lineto +6.495271e+01 9.21466e+00 lineto +6.494876e+01 1.131688e+01 lineto +6.239744e+01 1.124576e+01 lineto +closepath +gsave +5.291262e-01 5.291262e-01 5.291262e-01 setrgbcolor +fill +grestore +newpath +6.221657e+01 1.360561e+01 moveto +6.239744e+01 1.124576e+01 lineto +6.494876e+01 1.131688e+01 lineto +6.49452e+01 1.368168e+01 lineto +6.221657e+01 1.360561e+01 lineto +closepath +gsave +5.469614e-01 5.469614e-01 5.469614e-01 setrgbcolor +fill +grestore +newpath +6.205677e+01 1.621069e+01 moveto +6.221657e+01 1.360561e+01 lineto +6.49452e+01 1.368168e+01 lineto +6.494205e+01 1.629113e+01 lineto +6.205677e+01 1.621069e+01 lineto +closepath +gsave +5.652734e-01 5.652734e-01 5.652734e-01 setrgbcolor +fill +grestore +newpath +6.191925e+01 1.90413e+01 moveto +6.205677e+01 1.621069e+01 lineto +6.494205e+01 1.629113e+01 lineto +6.493935e+01 1.912549e+01 lineto +6.191925e+01 1.90413e+01 lineto +closepath +gsave +5.837181e-01 5.837181e-01 5.837181e-01 setrgbcolor +fill +grestore +newpath +6.180506e+01 2.207599e+01 moveto +6.191925e+01 1.90413e+01 lineto +6.493935e+01 1.912549e+01 lineto +6.49371e+01 2.216331e+01 lineto +6.180506e+01 2.207599e+01 lineto +closepath +gsave +6.019176e-01 6.019176e-01 6.019176e-01 setrgbcolor +fill +grestore +newpath +6.171505e+01 2.52918e+01 moveto +6.180506e+01 2.207599e+01 lineto +6.49371e+01 2.216331e+01 lineto +6.493533e+01 2.538158e+01 lineto +6.171505e+01 2.52918e+01 lineto +closepath +gsave +6.194726e-01 6.194726e-01 6.194726e-01 setrgbcolor +fill +grestore +newpath +6.164992e+01 2.866438e+01 moveto +6.171505e+01 2.52918e+01 lineto +6.493533e+01 2.538158e+01 lineto +6.493404e+01 2.875594e+01 lineto +6.164992e+01 2.866438e+01 lineto +closepath +gsave +6.359757e-01 6.359757e-01 6.359757e-01 setrgbcolor +fill +grestore +newpath +6.161014e+01 3.21682e+01 moveto +6.164992e+01 2.866438e+01 lineto +6.493404e+01 2.875594e+01 lineto +6.493326e+01 3.226084e+01 lineto +6.161014e+01 3.21682e+01 lineto +closepath +gsave +6.510261e-01 6.510261e-01 6.510261e-01 setrgbcolor +fill +grestore +newpath +6.159603e+01 3.577673e+01 moveto +6.161014e+01 3.21682e+01 lineto +6.493326e+01 3.226084e+01 lineto +6.493298e+01 3.586976e+01 lineto +6.159603e+01 3.577673e+01 lineto +closepath +gsave +6.642445e-01 6.642445e-01 6.642445e-01 setrgbcolor +fill +grestore +newpath +6.160768e+01 3.946266e+01 moveto +6.159603e+01 3.577673e+01 lineto +6.493298e+01 3.586976e+01 lineto +6.493321e+01 3.955537e+01 lineto +6.160768e+01 3.946266e+01 lineto +closepath +gsave +6.752878e-01 6.752878e-01 6.752878e-01 setrgbcolor +fill +grestore +newpath +6.164502e+01 4.319808e+01 moveto +6.160768e+01 3.946266e+01 lineto +6.493321e+01 3.955537e+01 lineto +6.493395e+01 4.328976e+01 lineto +6.164502e+01 4.319808e+01 lineto +closepath +gsave +6.838625e-01 6.838625e-01 6.838625e-01 setrgbcolor +fill +grestore +newpath +6.170776e+01 4.69547e+01 moveto +6.164502e+01 4.319808e+01 lineto +6.493395e+01 4.328976e+01 lineto +6.493518e+01 4.704468e+01 lineto +6.170776e+01 4.69547e+01 lineto +closepath +gsave +6.897365e-01 6.897365e-01 6.897365e-01 setrgbcolor +fill +grestore +newpath +6.179542e+01 5.07041e+01 moveto +6.170776e+01 4.69547e+01 lineto +6.493518e+01 4.704468e+01 lineto +6.493691e+01 5.079168e+01 lineto +6.179542e+01 5.07041e+01 lineto +closepath +gsave +6.927486e-01 6.927486e-01 6.927486e-01 setrgbcolor +fill +grestore +newpath +6.190734e+01 5.441789e+01 moveto +6.179542e+01 5.07041e+01 lineto +6.493691e+01 5.079168e+01 lineto +6.493911e+01 5.450241e+01 lineto +6.190734e+01 5.441789e+01 lineto +closepath +gsave +6.928151e-01 6.928151e-01 6.928151e-01 setrgbcolor +fill +grestore +newpath +6.204267e+01 5.806795e+01 moveto +6.190734e+01 5.441789e+01 lineto +6.493911e+01 5.450241e+01 lineto +6.494178e+01 5.814877e+01 lineto +6.204267e+01 5.806795e+01 lineto +closepath +gsave +6.899335e-01 6.899335e-01 6.899335e-01 setrgbcolor +fill +grestore +newpath +6.220039e+01 6.162666e+01 moveto +6.204267e+01 5.806795e+01 lineto +6.494178e+01 5.814877e+01 lineto +6.494488e+01 6.170317e+01 lineto +6.220039e+01 6.162666e+01 lineto +closepath +gsave +6.841824e-01 6.841824e-01 6.841824e-01 setrgbcolor +fill +grestore +newpath +6.23793e+01 6.506706e+01 moveto +6.220039e+01 6.162666e+01 lineto +6.494488e+01 6.170317e+01 lineto +6.49484e+01 6.513868e+01 lineto +6.23793e+01 6.506706e+01 lineto +closepath +gsave +6.757185e-01 6.757185e-01 6.757185e-01 setrgbcolor +fill +grestore +newpath +6.257806e+01 6.836311e+01 moveto +6.23793e+01 6.506706e+01 lineto +6.49484e+01 6.513868e+01 lineto +6.495232e+01 6.84293e+01 lineto +6.257806e+01 6.836311e+01 lineto +closepath +gsave +6.647704e-01 6.647704e-01 6.647704e-01 setrgbcolor +fill +grestore +newpath +6.279515e+01 7.148987e+01 moveto +6.257806e+01 6.836311e+01 lineto +6.495232e+01 6.84293e+01 lineto +6.495659e+01 7.155012e+01 lineto +6.279515e+01 7.148987e+01 lineto +closepath +gsave +6.516288e-01 6.516288e-01 6.516288e-01 setrgbcolor +fill +grestore +newpath +6.302893e+01 7.442365e+01 moveto +6.279515e+01 7.148987e+01 lineto +6.495659e+01 7.155012e+01 lineto +6.496119e+01 7.447752e+01 lineto +6.302893e+01 7.442365e+01 lineto +closepath +gsave +6.366355e-01 6.366355e-01 6.366355e-01 setrgbcolor +fill +grestore +newpath +6.327763e+01 7.714226e+01 moveto +6.302893e+01 7.442365e+01 lineto +6.496119e+01 7.447752e+01 lineto +6.496609e+01 7.718933e+01 lineto +6.327763e+01 7.714226e+01 lineto +closepath +gsave +6.201694e-01 6.201694e-01 6.201694e-01 setrgbcolor +fill +grestore +newpath +6.353938e+01 7.962511e+01 moveto +6.327763e+01 7.714226e+01 lineto +6.496609e+01 7.718933e+01 lineto +6.497124e+01 7.966503e+01 lineto +6.353938e+01 7.962511e+01 lineto +closepath +gsave +6.026321e-01 6.026321e-01 6.026321e-01 setrgbcolor +fill +grestore +newpath +6.381218e+01 8.18534e+01 moveto +6.353938e+01 7.962511e+01 lineto +6.497124e+01 7.966503e+01 lineto +6.497661e+01 8.188586e+01 lineto +6.381218e+01 8.18534e+01 lineto +closepath +gsave +5.844325e-01 5.844325e-01 5.844325e-01 setrgbcolor +fill +grestore +newpath +6.409397e+01 8.381026e+01 moveto +6.381218e+01 8.18534e+01 lineto +6.497661e+01 8.188586e+01 lineto +6.498216e+01 8.383502e+01 lineto +6.409397e+01 8.381026e+01 lineto +closepath +gsave +5.659722e-01 5.659722e-01 5.659722e-01 setrgbcolor +fill +grestore +newpath +6.438262e+01 8.548089e+01 moveto +6.409397e+01 8.381026e+01 lineto +6.498216e+01 8.383502e+01 lineto +6.498785e+01 8.549776e+01 lineto +6.438262e+01 8.548089e+01 lineto +closepath +gsave +5.476318e-01 5.476318e-01 5.476318e-01 setrgbcolor +fill +grestore +newpath +6.467595e+01 8.685262e+01 moveto +6.438262e+01 8.548089e+01 lineto +6.498785e+01 8.549776e+01 lineto +6.499362e+01 8.686148e+01 lineto +6.467595e+01 8.685262e+01 lineto +closepath +gsave +5.297584e-01 5.297584e-01 5.297584e-01 setrgbcolor +fill +grestore +newpath +6.497173e+01 8.791509e+01 moveto +6.467595e+01 8.685262e+01 lineto +6.499362e+01 8.686148e+01 lineto +6.499944e+01 8.791586e+01 lineto +6.497173e+01 8.791509e+01 lineto +closepath +gsave +5.126555e-01 5.126555e-01 5.126555e-01 setrgbcolor +fill +grestore +newpath +6.526772e+01 8.866023e+01 moveto +6.497173e+01 8.791509e+01 lineto +6.499944e+01 8.791586e+01 lineto +6.500527e+01 8.865292e+01 lineto +6.526772e+01 8.866023e+01 lineto +closepath +gsave +4.965758e-01 4.965758e-01 4.965758e-01 setrgbcolor +fill +grestore +newpath +6.613467e+01 8.894762e+01 moveto +6.58514e+01 8.917846e+01 lineto +6.501676e+01 8.91552e+01 lineto +6.502234e+01 8.891661e+01 lineto +6.613467e+01 8.894762e+01 lineto +closepath +gsave +4.443096e-01 4.443096e-01 4.443096e-01 setrgbcolor +fill +grestore +newpath +6.497714e+01 3.123187e+00 moveto +6.49827e+01 2.853482e+00 lineto +6.584425e+01 2.893343e+00 lineto +6.61157e+01 3.175865e+00 lineto +6.497714e+01 3.123187e+00 lineto +closepath +gsave +4.471352e-01 4.471352e-01 4.471352e-01 setrgbcolor +fill +grestore +newpath +6.497175e+01 3.717489e+00 moveto +6.497714e+01 3.123187e+00 lineto +6.61157e+01 3.175865e+00 lineto +6.63787e+01 3.782584e+00 lineto +6.497175e+01 3.717489e+00 lineto +closepath +gsave +4.585593e-01 4.585593e-01 4.585593e-01 setrgbcolor +fill +grestore +newpath +6.496657e+01 4.631888e+00 moveto +6.497175e+01 3.717489e+00 lineto +6.63787e+01 3.782584e+00 lineto +6.663127e+01 4.708908e+00 lineto +6.496657e+01 4.631888e+00 lineto +closepath +gsave +4.716149e-01 4.716149e-01 4.716149e-01 setrgbcolor +fill +grestore +newpath +6.496165e+01 5.859462e+00 moveto +6.496657e+01 4.631888e+00 lineto +6.663127e+01 4.708908e+00 lineto +6.687148e+01 5.947823e+00 lineto +6.496165e+01 5.859462e+00 lineto +closepath +gsave +4.862698e-01 4.862698e-01 4.862698e-01 setrgbcolor +fill +grestore +newpath +6.495702e+01 7.390917e+00 moveto +6.496165e+01 5.859462e+00 lineto +6.687148e+01 5.947823e+00 lineto +6.709753e+01 7.489951e+00 lineto +6.495702e+01 7.390917e+00 lineto +closepath +gsave +5.024308e-01 5.024308e-01 5.024308e-01 setrgbcolor +fill +grestore +newpath +6.495271e+01 9.21466e+00 moveto +6.495702e+01 7.390917e+00 lineto +6.709753e+01 7.489951e+00 lineto +6.73077e+01 9.323617e+00 lineto +6.495271e+01 9.21466e+00 lineto +closepath +gsave +5.199407e-01 5.199407e-01 5.199407e-01 setrgbcolor +fill +grestore +newpath +6.494876e+01 1.131688e+01 moveto +6.495271e+01 9.21466e+00 lineto +6.73077e+01 9.323617e+00 lineto +6.75004e+01 1.143494e+01 lineto +6.494876e+01 1.131688e+01 lineto +closepath +gsave +5.385774e-01 5.385774e-01 5.385774e-01 setrgbcolor +fill +grestore +newpath +6.49452e+01 1.368168e+01 moveto +6.494876e+01 1.131688e+01 lineto +6.75004e+01 1.143494e+01 lineto +6.767417e+01 1.380793e+01 lineto +6.49452e+01 1.368168e+01 lineto +closepath +gsave +5.580566e-01 5.580566e-01 5.580566e-01 setrgbcolor +fill +grestore +newpath +6.494205e+01 1.629113e+01 moveto +6.49452e+01 1.368168e+01 lineto +6.767417e+01 1.380793e+01 lineto +6.782769e+01 1.642464e+01 lineto +6.494205e+01 1.629113e+01 lineto +closepath +gsave +5.780372e-01 5.780372e-01 5.780372e-01 setrgbcolor +fill +grestore +newpath +6.493935e+01 1.912549e+01 moveto +6.494205e+01 1.629113e+01 lineto +6.782769e+01 1.642464e+01 lineto +6.795981e+01 1.926524e+01 lineto +6.493935e+01 1.912549e+01 lineto +closepath +gsave +5.981305e-01 5.981305e-01 5.981305e-01 setrgbcolor +fill +grestore +newpath +6.49371e+01 2.216331e+01 moveto +6.493935e+01 1.912549e+01 lineto +6.795981e+01 1.926524e+01 lineto +6.806952e+01 2.230824e+01 lineto +6.49371e+01 2.216331e+01 lineto +closepath +gsave +6.179111e-01 6.179111e-01 6.179111e-01 setrgbcolor +fill +grestore +newpath +6.493533e+01 2.538158e+01 moveto +6.49371e+01 2.216331e+01 lineto +6.806952e+01 2.230824e+01 lineto +6.8156e+01 2.553059e+01 lineto +6.493533e+01 2.538158e+01 lineto +closepath +gsave +6.369314e-01 6.369314e-01 6.369314e-01 setrgbcolor +fill +grestore +newpath +6.493404e+01 2.875594e+01 moveto +6.493533e+01 2.538158e+01 lineto +6.8156e+01 2.553059e+01 lineto +6.821858e+01 2.89079e+01 lineto +6.493404e+01 2.875594e+01 lineto +closepath +gsave +6.547369e-01 6.547369e-01 6.547369e-01 setrgbcolor +fill +grestore +newpath +6.493326e+01 3.226084e+01 moveto +6.493404e+01 2.875594e+01 lineto +6.821858e+01 2.89079e+01 lineto +6.825679e+01 3.241461e+01 lineto +6.493326e+01 3.226084e+01 lineto +closepath +gsave +6.708829e-01 6.708829e-01 6.708829e-01 setrgbcolor +fill +grestore +newpath +6.493298e+01 3.586976e+01 moveto +6.493326e+01 3.226084e+01 lineto +6.825679e+01 3.241461e+01 lineto +6.827035e+01 3.602417e+01 lineto +6.493298e+01 3.586976e+01 lineto +closepath +gsave +6.849517e-01 6.849517e-01 6.849517e-01 setrgbcolor +fill +grestore +newpath +6.493321e+01 3.955537e+01 moveto +6.493298e+01 3.586976e+01 lineto +6.827035e+01 3.602417e+01 lineto +6.825915e+01 3.970925e+01 lineto +6.493321e+01 3.955537e+01 lineto +closepath +gsave +6.965686e-01 6.965686e-01 6.965686e-01 setrgbcolor +fill +grestore +newpath +6.493395e+01 4.328976e+01 moveto +6.493321e+01 3.955537e+01 lineto +6.825915e+01 3.970925e+01 lineto +6.822328e+01 4.344195e+01 lineto +6.493395e+01 4.328976e+01 lineto +closepath +gsave +7.054173e-01 7.054173e-01 7.054173e-01 setrgbcolor +fill +grestore +newpath +6.493518e+01 4.704468e+01 moveto +6.493395e+01 4.328976e+01 lineto +6.822328e+01 4.344195e+01 lineto +6.816301e+01 4.719402e+01 lineto +6.493518e+01 4.704468e+01 lineto +closepath +gsave +7.112527e-01 7.112527e-01 7.112527e-01 setrgbcolor +fill +grestore +newpath +6.493691e+01 5.079168e+01 moveto +6.493518e+01 4.704468e+01 lineto +6.816301e+01 4.719402e+01 lineto +6.807879e+01 5.093705e+01 lineto +6.493691e+01 5.079168e+01 lineto +closepath +gsave +7.13911e-01 7.13911e-01 7.13911e-01 setrgbcolor +fill +grestore +newpath +6.493911e+01 5.450241e+01 moveto +6.493691e+01 5.079168e+01 lineto +6.807879e+01 5.093705e+01 lineto +6.797126e+01 5.46427e+01 lineto +6.493911e+01 5.450241e+01 lineto +closepath +gsave +7.133167e-01 7.133167e-01 7.133167e-01 setrgbcolor +fill +grestore +newpath +6.494178e+01 5.814877e+01 moveto +6.493911e+01 5.450241e+01 lineto +6.797126e+01 5.46427e+01 lineto +6.784124e+01 5.828292e+01 lineto +6.494178e+01 5.814877e+01 lineto +closepath +gsave +7.094857e-01 7.094857e-01 7.094857e-01 setrgbcolor +fill +grestore +newpath +6.494488e+01 6.170317e+01 moveto +6.494178e+01 5.814877e+01 lineto +6.784124e+01 5.828292e+01 lineto +6.768971e+01 6.183016e+01 lineto +6.494488e+01 6.170317e+01 lineto +closepath +gsave +7.025248e-01 7.025248e-01 7.025248e-01 setrgbcolor +fill +grestore +newpath +6.49484e+01 6.513868e+01 moveto +6.494488e+01 6.170317e+01 lineto +6.768971e+01 6.183016e+01 lineto +6.751782e+01 6.525756e+01 lineto +6.49484e+01 6.513868e+01 lineto +closepath +gsave +6.926275e-01 6.926275e-01 6.926275e-01 setrgbcolor +fill +grestore +newpath +6.495232e+01 6.84293e+01 moveto +6.49484e+01 6.513868e+01 lineto +6.751782e+01 6.525756e+01 lineto +6.732687e+01 6.853916e+01 lineto +6.495232e+01 6.84293e+01 lineto +closepath +gsave +6.800656e-01 6.800656e-01 6.800656e-01 setrgbcolor +fill +grestore +newpath +6.495659e+01 7.155012e+01 moveto +6.495232e+01 6.84293e+01 lineto +6.732687e+01 6.853916e+01 lineto +6.71183e+01 7.165014e+01 lineto +6.495659e+01 7.155012e+01 lineto +closepath +gsave +6.651784e-01 6.651784e-01 6.651784e-01 setrgbcolor +fill +grestore +newpath +6.496119e+01 7.447752e+01 moveto +6.495659e+01 7.155012e+01 lineto +6.71183e+01 7.165014e+01 lineto +6.68937e+01 7.456693e+01 lineto +6.496119e+01 7.447752e+01 lineto +closepath +gsave +6.483585e-01 6.483585e-01 6.483585e-01 setrgbcolor +fill +grestore +newpath +6.496609e+01 7.718933e+01 moveto +6.496119e+01 7.447752e+01 lineto +6.68937e+01 7.456693e+01 lineto +6.665475e+01 7.726746e+01 lineto +6.496609e+01 7.718933e+01 lineto +closepath +gsave +6.300368e-01 6.300368e-01 6.300368e-01 setrgbcolor +fill +grestore +newpath +6.497124e+01 7.966503e+01 moveto +6.496609e+01 7.718933e+01 lineto +6.665475e+01 7.726746e+01 lineto +6.640329e+01 7.973128e+01 lineto +6.497124e+01 7.966503e+01 lineto +closepath +gsave +6.10665e-01 6.10665e-01 6.10665e-01 setrgbcolor +fill +grestore +newpath +6.497661e+01 8.188586e+01 moveto +6.497124e+01 7.966503e+01 lineto +6.640329e+01 7.973128e+01 lineto +6.614119e+01 8.193974e+01 lineto +6.497661e+01 8.188586e+01 lineto +closepath +gsave +5.906987e-01 5.906987e-01 5.906987e-01 setrgbcolor +fill +grestore +newpath +6.498216e+01 8.383502e+01 moveto +6.497661e+01 8.188586e+01 lineto +6.614119e+01 8.193974e+01 lineto +6.587046e+01 8.387612e+01 lineto +6.498216e+01 8.383502e+01 lineto +closepath +gsave +5.705808e-01 5.705808e-01 5.705808e-01 setrgbcolor +fill +grestore +newpath +6.498785e+01 8.549776e+01 moveto +6.498216e+01 8.383502e+01 lineto +6.587046e+01 8.387612e+01 lineto +6.559314e+01 8.552576e+01 lineto +6.498785e+01 8.549776e+01 lineto +closepath +gsave +5.507263e-01 5.507263e-01 5.507263e-01 setrgbcolor +fill +grestore +newpath +6.499362e+01 8.686148e+01 moveto +6.498785e+01 8.549776e+01 lineto +6.559314e+01 8.552576e+01 lineto +6.531133e+01 8.687618e+01 lineto +6.499362e+01 8.686148e+01 lineto +closepath +gsave +5.315088e-01 5.315088e-01 5.315088e-01 setrgbcolor +fill +grestore +newpath +6.499944e+01 8.791586e+01 moveto +6.499362e+01 8.686148e+01 lineto +6.531133e+01 8.687618e+01 lineto +6.502716e+01 8.791714e+01 lineto +6.499944e+01 8.791586e+01 lineto +closepath +gsave +5.1325e-01 5.1325e-01 5.1325e-01 setrgbcolor +fill +grestore +newpath +6.500527e+01 8.865292e+01 moveto +6.499944e+01 8.791586e+01 lineto +6.502716e+01 8.791714e+01 lineto +6.474279e+01 8.864077e+01 lineto +6.500527e+01 8.865292e+01 lineto +closepath +gsave +4.962123e-01 4.962123e-01 4.962123e-01 setrgbcolor +fill +grestore +newpath +6.502234e+01 8.891661e+01 moveto +6.501676e+01 8.91552e+01 lineto +6.418202e+01 8.911657e+01 lineto +6.390987e+01 8.886514e+01 lineto +6.502234e+01 8.891661e+01 lineto +closepath +gsave +4.461299e-01 4.461299e-01 4.461299e-01 setrgbcolor +fill +grestore +newpath +6.61157e+01 3.175865e+00 moveto +6.584425e+01 2.893343e+00 lineto +6.67006e+01 2.948803e+00 lineto +6.724738e+01 3.249157e+00 lineto +6.61157e+01 3.175865e+00 lineto +closepath +gsave +4.488648e-01 4.488648e-01 4.488648e-01 setrgbcolor +fill +grestore +newpath +6.63787e+01 3.782584e+00 moveto +6.61157e+01 3.175865e+00 lineto +6.724738e+01 3.249157e+00 lineto +6.777716e+01 3.873154e+00 lineto +6.63787e+01 3.782584e+00 lineto +closepath +gsave +4.611086e-01 4.611086e-01 4.611086e-01 setrgbcolor +fill +grestore +newpath +6.663127e+01 4.708908e+00 moveto +6.63787e+01 3.782584e+00 lineto +6.777716e+01 3.873154e+00 lineto +6.828591e+01 4.81607e+00 lineto +6.663127e+01 4.708908e+00 lineto +closepath +gsave +4.751391e-01 4.751391e-01 4.751391e-01 setrgbcolor +fill +grestore +newpath +6.687148e+01 5.947823e+00 moveto +6.663127e+01 4.708908e+00 lineto +6.828591e+01 4.81607e+00 lineto +6.876978e+01 6.070766e+00 lineto +6.687148e+01 5.947823e+00 lineto +closepath +gsave +4.909197e-01 4.909197e-01 4.909197e-01 setrgbcolor +fill +grestore +newpath +6.709753e+01 7.489951e+00 moveto +6.687148e+01 5.947823e+00 lineto +6.876978e+01 6.070766e+00 lineto +6.922511e+01 7.627743e+00 lineto +6.709753e+01 7.489951e+00 lineto +closepath +gsave +5.083456e-01 5.083456e-01 5.083456e-01 setrgbcolor +fill +grestore +newpath +6.73077e+01 9.323617e+00 moveto +6.709753e+01 7.489951e+00 lineto +6.922511e+01 7.627743e+00 lineto +6.964846e+01 9.475216e+00 lineto +6.73077e+01 9.323617e+00 lineto +closepath +gsave +5.272406e-01 5.272406e-01 5.272406e-01 setrgbcolor +fill +grestore +newpath +6.75004e+01 1.143494e+01 moveto +6.73077e+01 9.323617e+00 lineto +6.964846e+01 9.475216e+00 lineto +7.003662e+01 1.15992e+01 lineto +6.75004e+01 1.143494e+01 lineto +closepath +gsave +5.473566e-01 5.473566e-01 5.473566e-01 setrgbcolor +fill +grestore +newpath +6.767417e+01 1.380793e+01 moveto +6.75004e+01 1.143494e+01 lineto +7.003662e+01 1.15992e+01 lineto +7.038665e+01 1.398361e+01 lineto +6.767417e+01 1.380793e+01 lineto +closepath +gsave +5.683765e-01 5.683765e-01 5.683765e-01 setrgbcolor +fill +grestore +newpath +6.782769e+01 1.642464e+01 moveto +6.767417e+01 1.380793e+01 lineto +7.038665e+01 1.398361e+01 lineto +7.06959e+01 1.66104e+01 lineto +6.782769e+01 1.642464e+01 lineto +closepath +gsave +5.899208e-01 5.899208e-01 5.899208e-01 setrgbcolor +fill +grestore +newpath +6.795981e+01 1.926524e+01 moveto +6.782769e+01 1.642464e+01 lineto +7.06959e+01 1.66104e+01 lineto +7.096203e+01 1.945968e+01 lineto +6.795981e+01 1.926524e+01 lineto +closepath +gsave +6.115583e-01 6.115583e-01 6.115583e-01 setrgbcolor +fill +grestore +newpath +6.806952e+01 2.230824e+01 moveto +6.795981e+01 1.926524e+01 lineto +7.096203e+01 1.945968e+01 lineto +7.118302e+01 2.250988e+01 lineto +6.806952e+01 2.230824e+01 lineto +closepath +gsave +6.328184e-01 6.328184e-01 6.328184e-01 setrgbcolor +fill +grestore +newpath +6.8156e+01 2.553059e+01 moveto +6.806952e+01 2.230824e+01 lineto +7.118302e+01 2.250988e+01 lineto +7.135721e+01 2.573791e+01 lineto +6.8156e+01 2.553059e+01 lineto +closepath +gsave +6.532077e-01 6.532077e-01 6.532077e-01 setrgbcolor +fill +grestore +newpath +6.821858e+01 2.89079e+01 moveto +6.8156e+01 2.553059e+01 lineto +7.135721e+01 2.573791e+01 lineto +7.148327e+01 2.911934e+01 lineto +6.821858e+01 2.89079e+01 lineto +closepath +gsave +6.722269e-01 6.722269e-01 6.722269e-01 setrgbcolor +fill +grestore +newpath +6.825679e+01 3.241461e+01 moveto +6.821858e+01 2.89079e+01 lineto +7.148327e+01 2.911934e+01 lineto +7.156024e+01 3.262856e+01 lineto +6.825679e+01 3.241461e+01 lineto +closepath +gsave +6.893901e-01 6.893901e-01 6.893901e-01 setrgbcolor +fill +grestore +newpath +6.827035e+01 3.602417e+01 moveto +6.825679e+01 3.241461e+01 lineto +7.156024e+01 3.262856e+01 lineto +7.158756e+01 3.623901e+01 lineto +6.827035e+01 3.602417e+01 lineto +closepath +gsave +7.042433e-01 7.042433e-01 7.042433e-01 setrgbcolor +fill +grestore +newpath +6.825915e+01 3.970925e+01 moveto +6.827035e+01 3.602417e+01 lineto +7.158756e+01 3.623901e+01 lineto +7.1565e+01 3.992335e+01 lineto +6.825915e+01 3.970925e+01 lineto +closepath +gsave +7.163826e-01 7.163826e-01 7.163826e-01 setrgbcolor +fill +grestore +newpath +6.822328e+01 4.344195e+01 moveto +6.825915e+01 3.970925e+01 lineto +7.1565e+01 3.992335e+01 lineto +7.149274e+01 4.365369e+01 lineto +6.822328e+01 4.344195e+01 lineto +closepath +gsave +7.254708e-01 7.254708e-01 7.254708e-01 setrgbcolor +fill +grestore +newpath +6.816301e+01 4.719402e+01 moveto +6.822328e+01 4.344195e+01 lineto +7.149274e+01 4.365369e+01 lineto +7.137133e+01 4.74018e+01 lineto +6.816301e+01 4.719402e+01 lineto +closepath +gsave +7.312511e-01 7.312511e-01 7.312511e-01 setrgbcolor +fill +grestore +newpath +6.807879e+01 5.093705e+01 moveto +6.816301e+01 4.719402e+01 lineto +7.137133e+01 4.74018e+01 lineto +7.120169e+01 5.11393e+01 lineto +6.807879e+01 5.093705e+01 lineto +closepath +gsave +7.335583e-01 7.335583e-01 7.335583e-01 setrgbcolor +fill +grestore +newpath +6.797126e+01 5.46427e+01 moveto +6.807879e+01 5.093705e+01 lineto +7.120169e+01 5.11393e+01 lineto +7.09851e+01 5.483789e+01 lineto +6.797126e+01 5.46427e+01 lineto +closepath +gsave +7.323256e-01 7.323256e-01 7.323256e-01 setrgbcolor +fill +grestore +newpath +6.784124e+01 5.828292e+01 moveto +6.797126e+01 5.46427e+01 lineto +7.09851e+01 5.483789e+01 lineto +7.072319e+01 5.846957e+01 lineto +6.784124e+01 5.828292e+01 lineto +closepath +gsave +7.275874e-01 7.275874e-01 7.275874e-01 setrgbcolor +fill +grestore +newpath +6.768971e+01 6.183016e+01 moveto +6.784124e+01 5.828292e+01 lineto +7.072319e+01 5.846957e+01 lineto +7.041796e+01 6.200685e+01 lineto +6.768971e+01 6.183016e+01 lineto +closepath +gsave +7.194782e-01 7.194782e-01 7.194782e-01 setrgbcolor +fill +grestore +newpath +6.751782e+01 6.525756e+01 moveto +6.768971e+01 6.183016e+01 lineto +7.041796e+01 6.200685e+01 lineto +7.007172e+01 6.542296e+01 lineto +6.751782e+01 6.525756e+01 lineto +closepath +gsave +7.082269e-01 7.082269e-01 7.082269e-01 setrgbcolor +fill +grestore +newpath +6.732687e+01 6.853916e+01 moveto +6.751782e+01 6.525756e+01 lineto +7.007172e+01 6.542296e+01 lineto +6.968707e+01 6.869202e+01 lineto +6.732687e+01 6.853916e+01 lineto +closepath +gsave +6.941469e-01 6.941469e-01 6.941469e-01 setrgbcolor +fill +grestore +newpath +6.71183e+01 7.165014e+01 moveto +6.732687e+01 6.853916e+01 lineto +6.968707e+01 6.869202e+01 lineto +6.926695e+01 7.178929e+01 lineto +6.71183e+01 7.165014e+01 lineto +closepath +gsave +6.776239e-01 6.776239e-01 6.776239e-01 setrgbcolor +fill +grestore +newpath +6.68937e+01 7.456693e+01 moveto +6.71183e+01 7.165014e+01 lineto +6.926695e+01 7.178929e+01 lineto +6.881452e+01 7.469133e+01 lineto +6.68937e+01 7.456693e+01 lineto +closepath +gsave +6.590991e-01 6.590991e-01 6.590991e-01 setrgbcolor +fill +grestore +newpath +6.665475e+01 7.726746e+01 moveto +6.68937e+01 7.456693e+01 lineto +6.881452e+01 7.469133e+01 lineto +6.833322e+01 7.737617e+01 lineto +6.665475e+01 7.726746e+01 lineto +closepath +gsave +6.39052e-01 6.39052e-01 6.39052e-01 setrgbcolor +fill +grestore +newpath +6.640329e+01 7.973128e+01 moveto +6.665475e+01 7.726746e+01 lineto +6.833322e+01 7.737617e+01 lineto +6.782668e+01 7.982347e+01 lineto +6.640329e+01 7.973128e+01 lineto +closepath +gsave +6.179816e-01 6.179816e-01 6.179816e-01 setrgbcolor +fill +grestore +newpath +6.614119e+01 8.193974e+01 moveto +6.640329e+01 7.973128e+01 lineto +6.782668e+01 7.982347e+01 lineto +6.729874e+01 8.201471e+01 lineto +6.614119e+01 8.193974e+01 lineto +closepath +gsave +5.963868e-01 5.963868e-01 5.963868e-01 setrgbcolor +fill +grestore +newpath +6.587046e+01 8.387612e+01 moveto +6.614119e+01 8.193974e+01 lineto +6.729874e+01 8.201471e+01 lineto +6.67534e+01 8.39333e+01 lineto +6.587046e+01 8.387612e+01 lineto +closepath +gsave +5.747485e-01 5.747485e-01 5.747485e-01 setrgbcolor +fill +grestore +newpath +6.559314e+01 8.552576e+01 moveto +6.587046e+01 8.387612e+01 lineto +6.67534e+01 8.39333e+01 lineto +6.619478e+01 8.556473e+01 lineto +6.559314e+01 8.552576e+01 lineto +closepath +gsave +5.535131e-01 5.535131e-01 5.535131e-01 setrgbcolor +fill +grestore +newpath +6.531133e+01 8.687618e+01 moveto +6.559314e+01 8.552576e+01 lineto +6.619478e+01 8.556473e+01 lineto +6.562712e+01 8.689663e+01 lineto +6.531133e+01 8.687618e+01 lineto +closepath +gsave +5.330779e-01 5.330779e-01 5.330779e-01 setrgbcolor +fill +grestore +newpath +6.502716e+01 8.791714e+01 moveto +6.531133e+01 8.687618e+01 lineto +6.562712e+01 8.689663e+01 lineto +6.505472e+01 8.791892e+01 lineto +6.502716e+01 8.791714e+01 lineto +closepath +gsave +5.137803e-01 5.137803e-01 5.137803e-01 setrgbcolor +fill +grestore +newpath +6.474279e+01 8.864077e+01 moveto +6.502716e+01 8.791714e+01 lineto +6.505472e+01 8.791892e+01 lineto +6.448189e+01 8.862388e+01 lineto +6.474279e+01 8.864077e+01 lineto +closepath +gsave +4.958899e-01 4.958899e-01 4.958899e-01 setrgbcolor +fill +grestore +newpath +6.390987e+01 8.886514e+01 moveto +6.418202e+01 8.911657e+01 lineto +6.335233e+01 8.906284e+01 lineto +6.280413e+01 8.879353e+01 lineto +6.390987e+01 8.886514e+01 lineto +closepath +gsave +4.477893e-01 4.477893e-01 4.477893e-01 setrgbcolor +fill +grestore +newpath +6.724738e+01 3.249157e+00 moveto +6.67006e+01 2.948803e+00 lineto +6.754646e+01 3.019522e+00 lineto +6.836521e+01 3.342614e+00 lineto +6.724738e+01 3.249157e+00 lineto +closepath +gsave +4.504014e-01 4.504014e-01 4.504014e-01 setrgbcolor +fill +grestore +newpath +6.777716e+01 3.873154e+00 moveto +6.724738e+01 3.249157e+00 lineto +6.836521e+01 3.342614e+00 lineto +6.915849e+01 3.988641e+00 lineto +6.777716e+01 3.873154e+00 lineto +closepath +gsave +4.633828e-01 4.633828e-01 4.633828e-01 setrgbcolor +fill +grestore +newpath +6.828591e+01 4.81607e+00 moveto +6.777716e+01 3.873154e+00 lineto +6.915849e+01 3.988641e+00 lineto +6.992029e+01 4.952713e+00 lineto +6.828591e+01 4.81607e+00 lineto +closepath +gsave +4.782936e-01 4.782936e-01 4.782936e-01 setrgbcolor +fill +grestore +newpath +6.876978e+01 6.070766e+00 moveto +6.828591e+01 4.81607e+00 lineto +6.992029e+01 4.952713e+00 lineto +7.064483e+01 6.227531e+00 lineto +6.876978e+01 6.070766e+00 lineto +closepath +gsave +4.950931e-01 4.950931e-01 4.950931e-01 setrgbcolor +fill +grestore +newpath +6.922511e+01 7.627743e+00 moveto +6.876978e+01 6.070766e+00 lineto +7.064483e+01 6.227531e+00 lineto +7.132665e+01 7.803443e+00 lineto +6.922511e+01 7.627743e+00 lineto +closepath +gsave +5.136661e-01 5.136661e-01 5.136661e-01 setrgbcolor +fill +grestore +newpath +6.964846e+01 9.475216e+00 moveto +6.922511e+01 7.627743e+00 lineto +7.132665e+01 7.803443e+00 lineto +7.196057e+01 9.668521e+00 lineto +6.964846e+01 9.475216e+00 lineto +closepath +gsave +5.338189e-01 5.338189e-01 5.338189e-01 setrgbcolor +fill +grestore +newpath +7.003662e+01 1.15992e+01 moveto +6.964846e+01 9.475216e+00 lineto +7.196057e+01 9.668521e+00 lineto +7.254179e+01 1.180864e+01 lineto +7.003662e+01 1.15992e+01 lineto +closepath +gsave +5.552793e-01 5.552793e-01 5.552793e-01 setrgbcolor +fill +grestore +newpath +7.038665e+01 1.398361e+01 moveto +7.003662e+01 1.15992e+01 lineto +7.254179e+01 1.180864e+01 lineto +7.306592e+01 1.420761e+01 lineto +7.038665e+01 1.398361e+01 lineto +closepath +gsave +5.776999e-01 5.776999e-01 5.776999e-01 setrgbcolor +fill +grestore +newpath +7.06959e+01 1.66104e+01 moveto +7.038665e+01 1.398361e+01 lineto +7.306592e+01 1.420761e+01 lineto +7.352899e+01 1.684726e+01 lineto +7.06959e+01 1.66104e+01 lineto +closepath +gsave +6.00666e-01 6.00666e-01 6.00666e-01 setrgbcolor +fill +grestore +newpath +7.096203e+01 1.945968e+01 moveto +7.06959e+01 1.66104e+01 lineto +7.352899e+01 1.684726e+01 lineto +7.392749e+01 1.970761e+01 lineto +7.096203e+01 1.945968e+01 lineto +closepath +gsave +6.237068e-01 6.237068e-01 6.237068e-01 setrgbcolor +fill +grestore +newpath +7.118302e+01 2.250988e+01 moveto +7.096203e+01 1.945968e+01 lineto +7.392749e+01 1.970761e+01 lineto +7.42584e+01 2.2767e+01 lineto +7.118302e+01 2.250988e+01 lineto +closepath +gsave +6.463105e-01 6.463105e-01 6.463105e-01 setrgbcolor +fill +grestore +newpath +7.135721e+01 2.573791e+01 moveto +7.118302e+01 2.250988e+01 lineto +7.42584e+01 2.2767e+01 lineto +7.451923e+01 2.600228e+01 lineto +7.135721e+01 2.573791e+01 lineto +closepath +gsave +6.679411e-01 6.679411e-01 6.679411e-01 setrgbcolor +fill +grestore +newpath +7.148327e+01 2.911934e+01 moveto +7.135721e+01 2.573791e+01 lineto +7.451923e+01 2.600228e+01 lineto +7.470798e+01 2.938894e+01 lineto +7.148327e+01 2.911934e+01 lineto +closepath +gsave +6.880587e-01 6.880587e-01 6.880587e-01 setrgbcolor +fill +grestore +newpath +7.156024e+01 3.262856e+01 moveto +7.148327e+01 2.911934e+01 lineto +7.470798e+01 2.938894e+01 lineto +7.482325e+01 3.290136e+01 lineto +7.156024e+01 3.262856e+01 lineto +closepath +gsave +7.061394e-01 7.061394e-01 7.061394e-01 setrgbcolor +fill +grestore +newpath +7.158756e+01 3.623901e+01 moveto +7.156024e+01 3.262856e+01 lineto +7.482325e+01 3.290136e+01 lineto +7.486415e+01 3.651295e+01 lineto +7.158756e+01 3.623901e+01 lineto +closepath +gsave +7.216963e-01 7.216963e-01 7.216963e-01 setrgbcolor +fill +grestore +newpath +7.1565e+01 3.992335e+01 moveto +7.158756e+01 3.623901e+01 lineto +7.486415e+01 3.651295e+01 lineto +7.483037e+01 4.019635e+01 lineto +7.1565e+01 3.992335e+01 lineto +closepath +gsave +7.342991e-01 7.342991e-01 7.342991e-01 setrgbcolor +fill +grestore +newpath +7.149274e+01 4.365369e+01 moveto +7.1565e+01 3.992335e+01 lineto +7.483037e+01 4.019635e+01 lineto +7.472217e+01 4.392369e+01 lineto +7.149274e+01 4.365369e+01 lineto +closepath +gsave +7.435918e-01 7.435918e-01 7.435918e-01 setrgbcolor +fill +grestore +newpath +7.137133e+01 4.74018e+01 moveto +7.149274e+01 4.365369e+01 lineto +7.472217e+01 4.392369e+01 lineto +7.454038e+01 4.766675e+01 lineto +7.137133e+01 4.74018e+01 lineto +closepath +gsave +7.493078e-01 7.493078e-01 7.493078e-01 setrgbcolor +fill +grestore +newpath +7.120169e+01 5.11393e+01 moveto +7.137133e+01 4.74018e+01 lineto +7.454038e+01 4.766675e+01 lineto +7.428635e+01 5.139719e+01 lineto +7.120169e+01 5.11393e+01 lineto +closepath +gsave +7.512811e-01 7.512811e-01 7.512811e-01 setrgbcolor +fill +grestore +newpath +7.09851e+01 5.483789e+01 moveto +7.120169e+01 5.11393e+01 lineto +7.428635e+01 5.139719e+01 lineto +7.396203e+01 5.508678e+01 lineto +7.09851e+01 5.483789e+01 lineto +closepath +gsave +7.494536e-01 7.494536e-01 7.494536e-01 setrgbcolor +fill +grestore +newpath +7.072319e+01 5.846957e+01 moveto +7.09851e+01 5.483789e+01 lineto +7.396203e+01 5.508678e+01 lineto +7.356986e+01 5.870757e+01 lineto +7.072319e+01 5.846957e+01 lineto +closepath +gsave +7.438775e-01 7.438775e-01 7.438775e-01 setrgbcolor +fill +grestore +newpath +7.041796e+01 6.200685e+01 moveto +7.072319e+01 5.846957e+01 lineto +7.356986e+01 5.870757e+01 lineto +7.311281e+01 6.223216e+01 lineto +7.041796e+01 6.200685e+01 lineto +closepath +gsave +7.347132e-01 7.347132e-01 7.347132e-01 setrgbcolor +fill +grestore +newpath +7.007172e+01 6.542296e+01 moveto +7.041796e+01 6.200685e+01 lineto +7.311281e+01 6.223216e+01 lineto +7.259434e+01 6.563386e+01 lineto +7.007172e+01 6.542296e+01 lineto +closepath +gsave +7.222228e-01 7.222228e-01 7.222228e-01 setrgbcolor +fill +grestore +newpath +6.968707e+01 6.869202e+01 moveto +7.007172e+01 6.542296e+01 lineto +7.259434e+01 6.563386e+01 lineto +7.201838e+01 6.888693e+01 lineto +6.968707e+01 6.869202e+01 lineto +closepath +gsave +7.067586e-01 7.067586e-01 7.067586e-01 setrgbcolor +fill +grestore +newpath +6.926695e+01 7.178929e+01 moveto +6.968707e+01 6.869202e+01 lineto +7.201838e+01 6.888693e+01 lineto +7.138929e+01 7.196673e+01 lineto +6.926695e+01 7.178929e+01 lineto +closepath +gsave +6.887487e-01 6.887487e-01 6.887487e-01 setrgbcolor +fill +grestore +newpath +6.881452e+01 7.469133e+01 moveto +6.926695e+01 7.178929e+01 lineto +7.138929e+01 7.196673e+01 lineto +7.071183e+01 7.484996e+01 lineto +6.881452e+01 7.469133e+01 lineto +closepath +gsave +6.68679e-01 6.68679e-01 6.68679e-01 setrgbcolor +fill +grestore +newpath +6.833322e+01 7.737617e+01 moveto +6.881452e+01 7.469133e+01 lineto +7.071183e+01 7.484996e+01 lineto +6.999113e+01 7.751478e+01 lineto +6.833322e+01 7.737617e+01 lineto +closepath +gsave +6.470738e-01 6.470738e-01 6.470738e-01 setrgbcolor +fill +grestore +newpath +6.782668e+01 7.982347e+01 moveto +6.833322e+01 7.737617e+01 lineto +6.999113e+01 7.751478e+01 lineto +6.923264e+01 7.994101e+01 lineto +6.782668e+01 7.982347e+01 lineto +closepath +gsave +6.244747e-01 6.244747e-01 6.244747e-01 setrgbcolor +fill +grestore +newpath +6.729874e+01 8.201471e+01 moveto +6.782668e+01 7.982347e+01 lineto +6.923264e+01 7.994101e+01 lineto +6.844211e+01 8.21103e+01 lineto +6.729874e+01 8.201471e+01 lineto +closepath +gsave +6.014199e-01 6.014199e-01 6.014199e-01 setrgbcolor +fill +grestore +newpath +6.67534e+01 8.39333e+01 moveto +6.729874e+01 8.201471e+01 lineto +6.844211e+01 8.21103e+01 lineto +6.762552e+01 8.400622e+01 lineto +6.67534e+01 8.39333e+01 lineto +closepath +gsave +5.784244e-01 5.784244e-01 5.784244e-01 setrgbcolor +fill +grestore +newpath +6.619478e+01 8.556473e+01 moveto +6.67534e+01 8.39333e+01 lineto +6.762552e+01 8.400622e+01 lineto +6.678906e+01 8.561441e+01 lineto +6.619478e+01 8.556473e+01 lineto +closepath +gsave +5.559622e-01 5.559622e-01 5.559622e-01 setrgbcolor +fill +grestore +newpath +6.562712e+01 8.689663e+01 moveto +6.619478e+01 8.556473e+01 lineto +6.678906e+01 8.561441e+01 lineto +6.593905e+01 8.692271e+01 lineto +6.562712e+01 8.689663e+01 lineto +closepath +gsave +5.344514e-01 5.344514e-01 5.344514e-01 setrgbcolor +fill +grestore +newpath +6.505472e+01 8.791892e+01 moveto +6.562712e+01 8.689663e+01 lineto +6.593905e+01 8.692271e+01 lineto +6.508193e+01 8.79212e+01 lineto +6.505472e+01 8.791892e+01 lineto +closepath +gsave +5.142424e-01 5.142424e-01 5.142424e-01 setrgbcolor +fill +grestore +newpath +6.448189e+01 8.862388e+01 moveto +6.505472e+01 8.791892e+01 lineto +6.508193e+01 8.79212e+01 lineto +6.422419e+01 8.860233e+01 lineto +6.448189e+01 8.862388e+01 lineto +closepath +gsave +4.956103e-01 4.956103e-01 4.956103e-01 setrgbcolor +fill +grestore +newpath +6.280413e+01 8.879353e+01 moveto +6.335233e+01 8.906284e+01 lineto +6.253279e+01 8.899432e+01 lineto +6.171192e+01 8.870221e+01 lineto +6.280413e+01 8.879353e+01 lineto +closepath +gsave +4.49263e-01 4.49263e-01 4.49263e-01 setrgbcolor +fill +grestore +newpath +6.836521e+01 3.342614e+00 moveto +6.754646e+01 3.019522e+00 lineto +6.837662e+01 3.105063e+00 lineto +6.946229e+01 3.455659e+00 lineto +6.836521e+01 3.342614e+00 lineto +closepath +gsave +4.517215e-01 4.517215e-01 4.517215e-01 setrgbcolor +fill +grestore +newpath +6.915849e+01 3.988641e+00 moveto +6.836521e+01 3.342614e+00 lineto +6.946229e+01 3.455659e+00 lineto +7.051418e+01 4.128334e+00 lineto +6.915849e+01 3.988641e+00 lineto +closepath +gsave +4.653432e-01 4.653432e-01 4.653432e-01 setrgbcolor +fill +grestore +newpath +6.992029e+01 4.952713e+00 moveto +6.915849e+01 3.988641e+00 lineto +7.051418e+01 4.128334e+00 lineto +7.152433e+01 5.117996e+00 lineto +6.992029e+01 4.952713e+00 lineto +closepath +gsave +4.810202e-01 4.810202e-01 4.810202e-01 setrgbcolor +fill +grestore +newpath +7.064483e+01 6.227531e+00 moveto +6.992029e+01 4.952713e+00 lineto +7.152433e+01 5.117996e+00 lineto +7.248509e+01 6.417152e+00 lineto +7.064483e+01 6.227531e+00 lineto +closepath +gsave +4.987086e-01 4.987086e-01 4.987086e-01 setrgbcolor +fill +grestore +newpath +7.132665e+01 7.803443e+00 moveto +7.064483e+01 6.227531e+00 lineto +7.248509e+01 6.417152e+00 lineto +7.338918e+01 8.015969e+00 lineto +7.132665e+01 7.803443e+00 lineto +closepath +gsave +5.182839e-01 5.182839e-01 5.182839e-01 setrgbcolor +fill +grestore +newpath +7.196057e+01 9.668521e+00 moveto +7.132665e+01 7.803443e+00 lineto +7.338918e+01 8.015969e+00 lineto +7.422976e+01 9.902341e+00 lineto +7.196057e+01 9.668521e+00 lineto +closepath +gsave +5.39537e-01 5.39537e-01 5.39537e-01 setrgbcolor +fill +grestore +newpath +7.254179e+01 1.180864e+01 moveto +7.196057e+01 9.668521e+00 lineto +7.422976e+01 9.902341e+00 lineto +7.500046e+01 1.206199e+01 lineto +7.254179e+01 1.180864e+01 lineto +closepath +gsave +5.621741e-01 5.621741e-01 5.621741e-01 setrgbcolor +fill +grestore +newpath +7.306592e+01 1.420761e+01 moveto +7.254179e+01 1.180864e+01 lineto +7.500046e+01 1.206199e+01 lineto +7.569546e+01 1.447856e+01 lineto +7.306592e+01 1.420761e+01 lineto +closepath +gsave +5.858212e-01 5.858212e-01 5.858212e-01 setrgbcolor +fill +grestore +newpath +7.352899e+01 1.684726e+01 moveto +7.306592e+01 1.420761e+01 lineto +7.569546e+01 1.447856e+01 lineto +7.630949e+01 1.713376e+01 lineto +7.352899e+01 1.684726e+01 lineto +closepath +gsave +6.100321e-01 6.100321e-01 6.100321e-01 setrgbcolor +fill +grestore +newpath +7.392749e+01 1.970761e+01 moveto +7.352899e+01 1.684726e+01 lineto +7.630949e+01 1.713376e+01 lineto +7.683791e+01 2.00075e+01 lineto +7.392749e+01 1.970761e+01 lineto +closepath +gsave +6.343014e-01 6.343014e-01 6.343014e-01 setrgbcolor +fill +grestore +newpath +7.42584e+01 2.2767e+01 moveto +7.392749e+01 1.970761e+01 lineto +7.683791e+01 2.00075e+01 lineto +7.72767e+01 2.307801e+01 lineto +7.42584e+01 2.2767e+01 lineto +closepath +gsave +6.580802e-01 6.580802e-01 6.580802e-01 setrgbcolor +fill +grestore +newpath +7.451923e+01 2.600228e+01 moveto +7.42584e+01 2.2767e+01 lineto +7.72767e+01 2.307801e+01 lineto +7.762255e+01 2.632205e+01 lineto +7.451923e+01 2.600228e+01 lineto +closepath +gsave +6.807956e-01 6.807956e-01 6.807956e-01 setrgbcolor +fill +grestore +newpath +7.470798e+01 2.938894e+01 moveto +7.451923e+01 2.600228e+01 lineto +7.762255e+01 2.632205e+01 lineto +7.787285e+01 2.971505e+01 lineto +7.470798e+01 2.938894e+01 lineto +closepath +gsave +7.018712e-01 7.018712e-01 7.018712e-01 setrgbcolor +fill +grestore +newpath +7.482325e+01 3.290136e+01 moveto +7.470798e+01 2.938894e+01 lineto +7.787285e+01 2.971505e+01 lineto +7.802569e+01 3.323135e+01 lineto +7.482325e+01 3.290136e+01 lineto +closepath +gsave +7.2075e-01 7.2075e-01 7.2075e-01 setrgbcolor +fill +grestore +newpath +7.486415e+01 3.651295e+01 moveto +7.482325e+01 3.290136e+01 lineto +7.802569e+01 3.323135e+01 lineto +7.807992e+01 3.684431e+01 lineto +7.486415e+01 3.651295e+01 lineto +closepath +gsave +7.369164e-01 7.369164e-01 7.369164e-01 setrgbcolor +fill +grestore +newpath +7.483037e+01 4.019635e+01 moveto +7.486415e+01 3.651295e+01 lineto +7.807992e+01 3.684431e+01 lineto +7.803514e+01 4.052658e+01 lineto +7.483037e+01 4.019635e+01 lineto +closepath +gsave +7.499167e-01 7.499167e-01 7.499167e-01 setrgbcolor +fill +grestore +newpath +7.472217e+01 4.392369e+01 moveto +7.483037e+01 4.019635e+01 lineto +7.803514e+01 4.052658e+01 lineto +7.789167e+01 4.425028e+01 lineto +7.472217e+01 4.392369e+01 lineto +closepath +gsave +7.593791e-01 7.593791e-01 7.593791e-01 setrgbcolor +fill +grestore +newpath +7.454038e+01 4.766675e+01 moveto +7.472217e+01 4.392369e+01 lineto +7.789167e+01 4.425028e+01 lineto +7.76506e+01 4.798723e+01 lineto +7.454038e+01 4.766675e+01 lineto +closepath +gsave +7.650286e-01 7.650286e-01 7.650286e-01 setrgbcolor +fill +grestore +newpath +7.428635e+01 5.139719e+01 moveto +7.454038e+01 4.766675e+01 lineto +7.76506e+01 4.798723e+01 lineto +7.731376e+01 5.170914e+01 lineto +7.428635e+01 5.139719e+01 lineto +closepath +gsave +7.66699e-01 7.66699e-01 7.66699e-01 setrgbcolor +fill +grestore +newpath +7.396203e+01 5.508678e+01 moveto +7.428635e+01 5.139719e+01 lineto +7.731376e+01 5.170914e+01 lineto +7.688371e+01 5.538783e+01 lineto +7.396203e+01 5.508678e+01 lineto +closepath +gsave +7.643404e-01 7.643404e-01 7.643404e-01 setrgbcolor +fill +grestore +newpath +7.356986e+01 5.870757e+01 moveto +7.396203e+01 5.508678e+01 lineto +7.688371e+01 5.538783e+01 lineto +7.636369e+01 5.899545e+01 lineto +7.356986e+01 5.870757e+01 lineto +closepath +gsave +7.580212e-01 7.580212e-01 7.580212e-01 setrgbcolor +fill +grestore +newpath +7.311281e+01 6.223216e+01 moveto +7.356986e+01 5.870757e+01 lineto +7.636369e+01 5.899545e+01 lineto +7.575764e+01 6.250468e+01 lineto +7.311281e+01 6.223216e+01 lineto +closepath +gsave +7.479254e-01 7.479254e-01 7.479254e-01 setrgbcolor +fill +grestore +newpath +7.259434e+01 6.563386e+01 moveto +7.311281e+01 6.223216e+01 lineto +7.575764e+01 6.250468e+01 lineto +7.507015e+01 6.588897e+01 lineto +7.259434e+01 6.563386e+01 lineto +closepath +gsave +7.343444e-01 7.343444e-01 7.343444e-01 setrgbcolor +fill +grestore +newpath +7.201838e+01 6.888693e+01 moveto +7.259434e+01 6.563386e+01 lineto +7.507015e+01 6.588897e+01 lineto +7.430642e+01 6.912269e+01 lineto +7.201838e+01 6.888693e+01 lineto +closepath +gsave +7.176653e-01 7.176653e-01 7.176653e-01 setrgbcolor +fill +grestore +newpath +7.138929e+01 7.196673e+01 moveto +7.201838e+01 6.888693e+01 lineto +7.430642e+01 6.912269e+01 lineto +7.347224e+01 7.218136e+01 lineto +7.138929e+01 7.196673e+01 lineto +closepath +gsave +6.983538e-01 6.983538e-01 6.983538e-01 setrgbcolor +fill +grestore +newpath +7.071183e+01 7.484996e+01 moveto +7.138929e+01 7.196673e+01 lineto +7.347224e+01 7.218136e+01 lineto +7.257392e+01 7.504183e+01 lineto +7.071183e+01 7.484996e+01 lineto +closepath +gsave +6.769354e-01 6.769354e-01 6.769354e-01 setrgbcolor +fill +grestore +newpath +6.999113e+01 7.751478e+01 moveto +7.071183e+01 7.484996e+01 lineto +7.257392e+01 7.504183e+01 lineto +7.161827e+01 7.768244e+01 lineto +6.999113e+01 7.751478e+01 lineto +closepath +gsave +6.539735e-01 6.539735e-01 6.539735e-01 setrgbcolor +fill +grestore +newpath +6.923264e+01 7.994101e+01 moveto +6.999113e+01 7.751478e+01 lineto +7.161827e+01 7.768244e+01 lineto +7.061251e+01 8.00832e+01 lineto +6.923264e+01 7.994101e+01 lineto +closepath +gsave +6.300472e-01 6.300472e-01 6.300472e-01 setrgbcolor +fill +grestore +newpath +6.844211e+01 8.21103e+01 moveto +6.923264e+01 7.994101e+01 lineto +7.061251e+01 8.00832e+01 lineto +6.956426e+01 8.222593e+01 lineto +6.844211e+01 8.21103e+01 lineto +closepath +gsave +6.057287e-01 6.057287e-01 6.057287e-01 setrgbcolor +fill +grestore +newpath +6.762552e+01 8.400622e+01 moveto +6.844211e+01 8.21103e+01 lineto +6.956426e+01 8.222593e+01 lineto +6.848146e+01 8.409442e+01 lineto +6.762552e+01 8.400622e+01 lineto +closepath +gsave +5.815627e-01 5.815627e-01 5.815627e-01 setrgbcolor +fill +grestore +newpath +6.678906e+01 8.561441e+01 moveto +6.762552e+01 8.400622e+01 lineto +6.848146e+01 8.409442e+01 lineto +6.73723e+01 8.567451e+01 lineto +6.678906e+01 8.561441e+01 lineto +closepath +gsave +5.580468e-01 5.580468e-01 5.580468e-01 setrgbcolor +fill +grestore +newpath +6.593905e+01 8.692271e+01 moveto +6.678906e+01 8.561441e+01 lineto +6.73723e+01 8.567451e+01 lineto +6.624519e+01 8.695425e+01 lineto +6.593905e+01 8.692271e+01 lineto +closepath +gsave +5.356165e-01 5.356165e-01 5.356165e-01 setrgbcolor +fill +grestore +newpath +6.508193e+01 8.79212e+01 moveto +6.593905e+01 8.692271e+01 lineto +6.624519e+01 8.695425e+01 lineto +6.510864e+01 8.792395e+01 lineto +6.508193e+01 8.79212e+01 lineto +closepath +gsave +5.146329e-01 5.146329e-01 5.146329e-01 setrgbcolor +fill +grestore +newpath +6.422419e+01 8.860233e+01 moveto +6.508193e+01 8.79212e+01 lineto +6.510864e+01 8.792395e+01 lineto +6.397128e+01 8.857627e+01 lineto +6.422419e+01 8.860233e+01 lineto +closepath +gsave +4.953751e-01 4.953751e-01 4.953751e-01 setrgbcolor +fill +grestore +newpath +6.171192e+01 8.870221e+01 moveto +6.253279e+01 8.899432e+01 lineto +6.172846e+01 8.891144e+01 lineto +6.063999e+01 8.859176e+01 lineto +6.171192e+01 8.870221e+01 lineto +closepath +gsave +4.505285e-01 4.505285e-01 4.505285e-01 setrgbcolor +fill +grestore +newpath +6.946229e+01 3.455659e+00 moveto +6.837662e+01 3.105063e+00 lineto +6.918596e+01 3.204898e+00 lineto +7.053186e+01 3.587594e+00 lineto +6.946229e+01 3.455659e+00 lineto +closepath +gsave +4.528042e-01 4.528042e-01 4.528042e-01 setrgbcolor +fill +grestore +newpath +7.051418e+01 4.128334e+00 moveto +6.946229e+01 3.455659e+00 lineto +7.053186e+01 3.587594e+00 lineto +7.183588e+01 4.29137e+00 lineto +7.051418e+01 4.128334e+00 lineto +closepath +gsave +4.669553e-01 4.669553e-01 4.669553e-01 setrgbcolor +fill +grestore +newpath +7.152433e+01 5.117996e+00 moveto +7.051418e+01 4.128334e+00 lineto +7.183588e+01 4.29137e+00 lineto +7.308815e+01 5.310898e+00 lineto +7.152433e+01 5.117996e+00 lineto +closepath +gsave +4.832675e-01 4.832675e-01 4.832675e-01 setrgbcolor +fill +grestore +newpath +7.248509e+01 6.417152e+00 moveto +7.152433e+01 5.117996e+00 lineto +7.308815e+01 5.310898e+00 lineto +7.427919e+01 6.638461e+00 lineto +7.248509e+01 6.417152e+00 lineto +closepath +gsave +5.016942e-01 5.016942e-01 5.016942e-01 setrgbcolor +fill +grestore +newpath +7.338918e+01 8.015969e+00 moveto +7.248509e+01 6.417152e+00 lineto +7.427919e+01 6.638461e+00 lineto +7.539998e+01 8.264008e+00 lineto +7.338918e+01 8.015969e+00 lineto +closepath +gsave +5.221028e-01 5.221028e-01 5.221028e-01 setrgbcolor +fill +grestore +newpath +7.422976e+01 9.902341e+00 moveto +7.338918e+01 8.015969e+00 lineto +7.539998e+01 8.264008e+00 lineto +7.644204e+01 1.017523e+01 lineto +7.422976e+01 9.902341e+00 lineto +closepath +gsave +5.442715e-01 5.442715e-01 5.442715e-01 setrgbcolor +fill +grestore +newpath +7.500046e+01 1.206199e+01 moveto +7.422976e+01 9.902341e+00 lineto +7.644204e+01 1.017523e+01 lineto +7.739748e+01 1.235767e+01 lineto +7.500046e+01 1.206199e+01 lineto +closepath +gsave +5.678884e-01 5.678884e-01 5.678884e-01 setrgbcolor +fill +grestore +newpath +7.569546e+01 1.447856e+01 moveto +7.500046e+01 1.206199e+01 lineto +7.739748e+01 1.235767e+01 lineto +7.825907e+01 1.479479e+01 lineto +7.569546e+01 1.447856e+01 lineto +closepath +gsave +5.925569e-01 5.925569e-01 5.925569e-01 setrgbcolor +fill +grestore +newpath +7.630949e+01 1.713376e+01 moveto +7.569546e+01 1.447856e+01 lineto +7.825907e+01 1.479479e+01 lineto +7.902027e+01 1.746815e+01 lineto +7.630949e+01 1.713376e+01 lineto +closepath +gsave +6.178045e-01 6.178045e-01 6.178045e-01 setrgbcolor +fill +grestore +newpath +7.683791e+01 2.00075e+01 moveto +7.630949e+01 1.713376e+01 lineto +7.902027e+01 1.746815e+01 lineto +7.967534e+01 2.035751e+01 lineto +7.683791e+01 2.00075e+01 lineto +closepath +gsave +6.430966e-01 6.430966e-01 6.430966e-01 setrgbcolor +fill +grestore +newpath +7.72767e+01 2.307801e+01 moveto +7.683791e+01 2.00075e+01 lineto +7.967534e+01 2.035751e+01 lineto +8.021931e+01 2.344099e+01 lineto +7.72767e+01 2.307801e+01 lineto +closepath +gsave +6.678534e-01 6.678534e-01 6.678534e-01 setrgbcolor +fill +grestore +newpath +7.762255e+01 2.632205e+01 moveto +7.72767e+01 2.307801e+01 lineto +8.021931e+01 2.344099e+01 lineto +8.064806e+01 2.669525e+01 lineto +7.762255e+01 2.632205e+01 lineto +closepath +gsave +6.914705e-01 6.914705e-01 6.914705e-01 setrgbcolor +fill +grestore +newpath +7.787285e+01 2.971505e+01 moveto +7.762255e+01 2.632205e+01 lineto +8.064806e+01 2.669525e+01 lineto +8.095835e+01 3.009566e+01 lineto +7.787285e+01 2.971505e+01 lineto +closepath +gsave +7.133416e-01 7.133416e-01 7.133416e-01 setrgbcolor +fill +grestore +newpath +7.802569e+01 3.323135e+01 moveto +7.787285e+01 2.971505e+01 lineto +8.095835e+01 3.009566e+01 lineto +8.114783e+01 3.361647e+01 lineto +7.802569e+01 3.323135e+01 lineto +closepath +gsave +7.328817e-01 7.328817e-01 7.328817e-01 setrgbcolor +fill +grestore +newpath +7.807992e+01 3.684431e+01 moveto +7.802569e+01 3.323135e+01 lineto +8.114783e+01 3.361647e+01 lineto +8.121506e+01 3.723103e+01 lineto +7.807992e+01 3.684431e+01 lineto +closepath +gsave +7.495511e-01 7.495511e-01 7.495511e-01 setrgbcolor +fill +grestore +newpath +7.803514e+01 4.052658e+01 moveto +7.807992e+01 3.684431e+01 lineto +8.121506e+01 3.723103e+01 lineto +8.115953e+01 4.091198e+01 lineto +7.803514e+01 4.052658e+01 lineto +closepath +gsave +7.628772e-01 7.628772e-01 7.628772e-01 setrgbcolor +fill +grestore +newpath +7.789167e+01 4.425028e+01 moveto +7.803514e+01 4.052658e+01 lineto +8.115953e+01 4.091198e+01 lineto +8.098168e+01 4.463145e+01 lineto +7.789167e+01 4.425028e+01 lineto +closepath +gsave +7.724747e-01 7.724747e-01 7.724747e-01 setrgbcolor +fill +grestore +newpath +7.76506e+01 4.798723e+01 moveto +7.789167e+01 4.425028e+01 lineto +8.098168e+01 4.463145e+01 lineto +8.068283e+01 4.836127e+01 lineto +7.76506e+01 4.798723e+01 lineto +closepath +gsave +7.780619e-01 7.780619e-01 7.780619e-01 setrgbcolor +fill +grestore +newpath +7.731376e+01 5.170914e+01 moveto +7.76506e+01 4.798723e+01 lineto +8.068283e+01 4.836127e+01 lineto +8.026526e+01 5.207322e+01 lineto +7.731376e+01 5.170914e+01 lineto +closepath +gsave +7.794731e-01 7.794731e-01 7.794731e-01 setrgbcolor +fill +grestore +newpath +7.688371e+01 5.538783e+01 moveto +7.731376e+01 5.170914e+01 lineto +8.026526e+01 5.207322e+01 lineto +7.973212e+01 5.573919e+01 lineto +7.688371e+01 5.538783e+01 lineto +closepath +gsave +7.766654e-01 7.766654e-01 7.766654e-01 setrgbcolor +fill +grestore +newpath +7.636369e+01 5.899545e+01 moveto +7.688371e+01 5.538783e+01 lineto +7.973212e+01 5.573919e+01 lineto +7.908745e+01 5.933143e+01 lineto +7.636369e+01 5.899545e+01 lineto +closepath +gsave +7.697212e-01 7.697212e-01 7.697212e-01 setrgbcolor +fill +grestore +newpath +7.575764e+01 6.250468e+01 moveto +7.636369e+01 5.899545e+01 lineto +7.908745e+01 5.933143e+01 lineto +7.833614e+01 6.282275e+01 lineto +7.575764e+01 6.250468e+01 lineto +closepath +gsave +7.588444e-01 7.588444e-01 7.588444e-01 setrgbcolor +fill +grestore +newpath +7.507015e+01 6.588897e+01 moveto +7.575764e+01 6.250468e+01 lineto +7.833614e+01 6.282275e+01 lineto +7.748386e+01 6.618671e+01 lineto +7.507015e+01 6.588897e+01 lineto +closepath +gsave +7.443516e-01 7.443516e-01 7.443516e-01 setrgbcolor +fill +grestore +newpath +7.430642e+01 6.912269e+01 moveto +7.507015e+01 6.588897e+01 lineto +7.748386e+01 6.618671e+01 lineto +7.653708e+01 6.939785e+01 lineto +7.430642e+01 6.912269e+01 lineto +closepath +gsave +7.266588e-01 7.266588e-01 7.266588e-01 setrgbcolor +fill +grestore +newpath +7.347224e+01 7.218136e+01 moveto +7.430642e+01 6.912269e+01 lineto +7.653708e+01 6.939785e+01 lineto +7.550296e+01 7.243186e+01 lineto +7.347224e+01 7.218136e+01 lineto +closepath +gsave +7.062636e-01 7.062636e-01 7.062636e-01 setrgbcolor +fill +grestore +newpath +7.257392e+01 7.504183e+01 moveto +7.347224e+01 7.218136e+01 lineto +7.550296e+01 7.243186e+01 lineto +7.438932e+01 7.526577e+01 lineto +7.257392e+01 7.504183e+01 lineto +closepath +gsave +6.837245e-01 6.837245e-01 6.837245e-01 setrgbcolor +fill +grestore +newpath +7.161827e+01 7.768244e+01 moveto +7.257392e+01 7.504183e+01 lineto +7.438932e+01 7.526577e+01 lineto +7.32046e+01 7.787812e+01 lineto +7.161827e+01 7.768244e+01 lineto +closepath +gsave +6.596378e-01 6.596378e-01 6.596378e-01 setrgbcolor +fill +grestore +newpath +7.061251e+01 8.00832e+01 moveto +7.161827e+01 7.768244e+01 lineto +7.32046e+01 7.787812e+01 lineto +7.195777e+01 8.024914e+01 lineto +7.061251e+01 8.00832e+01 lineto +closepath +gsave +6.346136e-01 6.346136e-01 6.346136e-01 setrgbcolor +fill +grestore +newpath +6.956426e+01 8.222593e+01 moveto +7.061251e+01 8.00832e+01 lineto +7.195777e+01 8.024914e+01 lineto +7.065827e+01 8.236088e+01 lineto +6.956426e+01 8.222593e+01 lineto +closepath +gsave +6.092526e-01 6.092526e-01 6.092526e-01 setrgbcolor +fill +grestore +newpath +6.848146e+01 8.409442e+01 moveto +6.956426e+01 8.222593e+01 lineto +7.065827e+01 8.236088e+01 lineto +6.931593e+01 8.419735e+01 lineto +6.848146e+01 8.409442e+01 lineto +closepath +gsave +5.841235e-01 5.841235e-01 5.841235e-01 setrgbcolor +fill +grestore +newpath +6.73723e+01 8.567451e+01 moveto +6.848146e+01 8.409442e+01 lineto +6.931593e+01 8.419735e+01 lineto +6.794092e+01 8.574465e+01 lineto +6.73723e+01 8.567451e+01 lineto +closepath +gsave +5.597435e-01 5.597435e-01 5.597435e-01 setrgbcolor +fill +grestore +newpath +6.624519e+01 8.695425e+01 moveto +6.73723e+01 8.567451e+01 lineto +6.794092e+01 8.574465e+01 lineto +6.654364e+01 8.699107e+01 lineto +6.624519e+01 8.695425e+01 lineto +closepath +gsave +5.365621e-01 5.365621e-01 5.365621e-01 setrgbcolor +fill +grestore +newpath +6.510864e+01 8.792395e+01 moveto +6.624519e+01 8.695425e+01 lineto +6.654364e+01 8.699107e+01 lineto +6.513468e+01 8.792716e+01 lineto +6.510864e+01 8.792395e+01 lineto +closepath +gsave +5.149488e-01 5.149488e-01 5.149488e-01 setrgbcolor +fill +grestore +newpath +6.397128e+01 8.857627e+01 moveto +6.510864e+01 8.792395e+01 lineto +6.513468e+01 8.792716e+01 lineto +6.37247e+01 8.854585e+01 lineto +6.397128e+01 8.857627e+01 lineto +closepath +gsave +4.951854e-01 4.951854e-01 4.951854e-01 setrgbcolor +fill +grestore +newpath +6.063999e+01 8.859176e+01 moveto +6.172846e+01 8.891144e+01 lineto +6.09443e+01 8.881471e+01 lineto +5.959493e+01 8.846285e+01 lineto +6.063999e+01 8.859176e+01 lineto +closepath +gsave +4.515661e-01 4.515661e-01 4.515661e-01 setrgbcolor +fill +grestore +newpath +7.053186e+01 3.587594e+00 moveto +6.918596e+01 3.204898e+00 lineto +6.996949e+01 3.318412e+00 lineto +7.156732e+01 3.737606e+00 lineto +7.053186e+01 3.587594e+00 lineto +closepath +gsave +4.53632e-01 4.53632e-01 4.53632e-01 setrgbcolor +fill +grestore +newpath +7.183588e+01 4.29137e+00 moveto +7.053186e+01 3.587594e+00 lineto +7.156732e+01 3.737606e+00 lineto +7.311543e+01 4.476744e+00 lineto +7.183588e+01 4.29137e+00 lineto +closepath +gsave +4.681906e-01 4.681906e-01 4.681906e-01 setrgbcolor +fill +grestore +newpath +7.308815e+01 5.310898e+00 moveto +7.183588e+01 4.29137e+00 lineto +7.311543e+01 4.476744e+00 lineto +7.460211e+01 5.530232e+00 lineto +7.308815e+01 5.310898e+00 lineto +closepath +gsave +4.849926e-01 4.849926e-01 4.849926e-01 setrgbcolor +fill +grestore +newpath +7.427919e+01 6.638461e+00 moveto +7.308815e+01 5.310898e+00 lineto +7.460211e+01 5.530232e+00 lineto +7.601609e+01 6.890093e+00 lineto +7.427919e+01 6.638461e+00 lineto +closepath +gsave +5.039891e-01 5.039891e-01 5.039891e-01 setrgbcolor +fill +grestore +newpath +7.539998e+01 8.264008e+00 moveto +7.427919e+01 6.638461e+00 lineto +7.601609e+01 6.890093e+00 lineto +7.734667e+01 8.546034e+00 lineto +7.539998e+01 8.264008e+00 lineto +closepath +gsave +5.250417e-01 5.250417e-01 5.250417e-01 setrgbcolor +fill +grestore +newpath +7.644204e+01 1.017523e+01 moveto +7.539998e+01 8.264008e+00 lineto +7.734667e+01 8.546034e+00 lineto +7.858378e+01 1.048552e+01 lineto +7.644204e+01 1.017523e+01 lineto +closepath +gsave +5.479182e-01 5.479182e-01 5.479182e-01 setrgbcolor +fill +grestore +newpath +7.739748e+01 1.235767e+01 moveto +7.644204e+01 1.017523e+01 lineto +7.858378e+01 1.048552e+01 lineto +7.971806e+01 1.269386e+01 lineto +7.739748e+01 1.235767e+01 lineto +closepath +gsave +5.72293e-01 5.72293e-01 5.72293e-01 setrgbcolor +fill +grestore +newpath +7.825907e+01 1.479479e+01 moveto +7.739748e+01 1.235767e+01 lineto +7.971806e+01 1.269386e+01 lineto +8.074092e+01 1.515435e+01 lineto +7.825907e+01 1.479479e+01 lineto +closepath +gsave +5.977518e-01 5.977518e-01 5.977518e-01 setrgbcolor +fill +grestore +newpath +7.902027e+01 1.746815e+01 moveto +7.825907e+01 1.479479e+01 lineto +8.074092e+01 1.515435e+01 lineto +8.164461e+01 1.784835e+01 lineto +7.902027e+01 1.746815e+01 lineto +closepath +gsave +6.238017e-01 6.238017e-01 6.238017e-01 setrgbcolor +fill +grestore +newpath +7.967534e+01 2.035751e+01 moveto +7.902027e+01 1.746815e+01 lineto +8.164461e+01 1.784835e+01 lineto +8.242229e+01 2.075547e+01 lineto +7.967534e+01 2.035751e+01 lineto +closepath +gsave +6.498849e-01 6.498849e-01 6.498849e-01 setrgbcolor +fill +grestore +newpath +8.021931e+01 2.344099e+01 moveto +7.967534e+01 2.035751e+01 lineto +8.242229e+01 2.075547e+01 lineto +8.306808e+01 2.38537e+01 lineto +8.021931e+01 2.344099e+01 lineto +closepath +gsave +6.753979e-01 6.753979e-01 6.753979e-01 setrgbcolor +fill +grestore +newpath +8.064806e+01 2.669525e+01 moveto +8.021931e+01 2.344099e+01 lineto +8.306808e+01 2.38537e+01 lineto +8.357709e+01 2.711959e+01 lineto +8.064806e+01 2.669525e+01 lineto +closepath +gsave +6.997119e-01 6.997119e-01 6.997119e-01 setrgbcolor +fill +grestore +newpath +8.095835e+01 3.009566e+01 moveto +8.064806e+01 2.669525e+01 lineto +8.357709e+01 2.711959e+01 lineto +8.394546e+01 3.052842e+01 lineto +8.095835e+01 3.009566e+01 lineto +closepath +gsave +7.22197e-01 7.22197e-01 7.22197e-01 setrgbcolor +fill +grestore +newpath +8.114783e+01 3.361647e+01 moveto +8.095835e+01 3.009566e+01 lineto +8.394546e+01 3.052842e+01 lineto +8.41704e+01 3.405437e+01 lineto +8.114783e+01 3.361647e+01 lineto +closepath +gsave +7.422467e-01 7.422467e-01 7.422467e-01 setrgbcolor +fill +grestore +newpath +8.121506e+01 3.723103e+01 moveto +8.114783e+01 3.361647e+01 lineto +8.41704e+01 3.405437e+01 lineto +8.425022e+01 3.767075e+01 lineto +8.121506e+01 3.723103e+01 lineto +closepath +gsave +7.593026e-01 7.593026e-01 7.593026e-01 setrgbcolor +fill +grestore +newpath +8.115953e+01 4.091198e+01 moveto +8.121506e+01 3.723103e+01 lineto +8.425022e+01 3.767075e+01 lineto +8.41843e+01 4.135019e+01 lineto +8.115953e+01 4.091198e+01 lineto +closepath +gsave +7.728775e-01 7.728775e-01 7.728775e-01 setrgbcolor +fill +grestore +newpath +8.098168e+01 4.463145e+01 moveto +8.115953e+01 4.091198e+01 lineto +8.41843e+01 4.135019e+01 lineto +8.397315e+01 4.506483e+01 lineto +8.098168e+01 4.463145e+01 lineto +closepath +gsave +7.825759e-01 7.825759e-01 7.825759e-01 setrgbcolor +fill +grestore +newpath +8.068283e+01 4.836127e+01 moveto +8.098168e+01 4.463145e+01 lineto +8.397315e+01 4.506483e+01 lineto +8.361837e+01 4.878655e+01 lineto +8.068283e+01 4.836127e+01 lineto +closepath +gsave +7.88111e-01 7.88111e-01 7.88111e-01 setrgbcolor +fill +grestore +newpath +8.026526e+01 5.207322e+01 moveto +8.068283e+01 4.836127e+01 lineto +8.361837e+01 4.878655e+01 lineto +8.312263e+01 5.248718e+01 lineto +8.026526e+01 5.207322e+01 lineto +closepath +gsave +7.893175e-01 7.893175e-01 7.893175e-01 setrgbcolor +fill +grestore +newpath +7.973212e+01 5.573919e+01 moveto +8.026526e+01 5.207322e+01 lineto +8.312263e+01 5.248718e+01 lineto +8.24897e+01 5.613869e+01 lineto +7.973212e+01 5.573919e+01 lineto +closepath +gsave +7.861584e-01 7.861584e-01 7.861584e-01 setrgbcolor +fill +grestore +newpath +7.908745e+01 5.933143e+01 moveto +7.973212e+01 5.573919e+01 lineto +8.24897e+01 5.613869e+01 lineto +8.172437e+01 5.971346e+01 lineto +7.908745e+01 5.933143e+01 lineto +closepath +gsave +7.78727e-01 7.78727e-01 7.78727e-01 setrgbcolor +fill +grestore +newpath +7.833614e+01 6.282275e+01 moveto +7.908745e+01 5.933143e+01 lineto +8.172437e+01 5.971346e+01 lineto +8.083242e+01 6.31844e+01 lineto +7.833614e+01 6.282275e+01 lineto +closepath +gsave +7.672429e-01 7.672429e-01 7.672429e-01 setrgbcolor +fill +grestore +newpath +7.748386e+01 6.618671e+01 moveto +7.833614e+01 6.282275e+01 lineto +8.083242e+01 6.31844e+01 lineto +7.982061e+01 6.652525e+01 lineto +7.748386e+01 6.618671e+01 lineto +closepath +gsave +7.520424e-01 7.520424e-01 7.520424e-01 setrgbcolor +fill +grestore +newpath +7.653708e+01 6.939785e+01 moveto +7.748386e+01 6.618671e+01 lineto +7.982061e+01 6.652525e+01 lineto +7.869661e+01 6.971071e+01 lineto +7.653708e+01 6.939785e+01 lineto +closepath +gsave +7.335643e-01 7.335643e-01 7.335643e-01 setrgbcolor +fill +grestore +newpath +7.550296e+01 7.243186e+01 moveto +7.653708e+01 6.939785e+01 lineto +7.869661e+01 6.971071e+01 lineto +7.746892e+01 7.271668e+01 lineto +7.550296e+01 7.243186e+01 lineto +closepath +gsave +7.123308e-01 7.123308e-01 7.123308e-01 setrgbcolor +fill +grestore +newpath +7.438932e+01 7.526577e+01 moveto +7.550296e+01 7.243186e+01 lineto +7.746892e+01 7.271668e+01 lineto +7.614683e+01 7.552038e+01 lineto +7.438932e+01 7.526577e+01 lineto +closepath +gsave +6.889262e-01 6.889262e-01 6.889262e-01 setrgbcolor +fill +grestore +newpath +7.32046e+01 7.787812e+01 moveto +7.438932e+01 7.526577e+01 lineto +7.614683e+01 7.552038e+01 lineto +7.474036e+01 7.810061e+01 lineto +7.32046e+01 7.787812e+01 lineto +closepath +gsave +6.639722e-01 6.639722e-01 6.639722e-01 setrgbcolor +fill +grestore +newpath +7.195777e+01 8.024914e+01 moveto +7.32046e+01 7.787812e+01 lineto +7.474036e+01 7.810061e+01 lineto +7.326014e+01 8.043782e+01 lineto +7.195777e+01 8.024914e+01 lineto +closepath +gsave +6.381031e-01 6.381031e-01 6.381031e-01 setrgbcolor +fill +grestore +newpath +7.065827e+01 8.236088e+01 moveto +7.195777e+01 8.024914e+01 lineto +7.326014e+01 8.043782e+01 lineto +7.17174e+01 8.251432e+01 lineto +7.065827e+01 8.236088e+01 lineto +closepath +gsave +6.119412e-01 6.119412e-01 6.119412e-01 setrgbcolor +fill +grestore +newpath +6.931593e+01 8.419735e+01 moveto +7.065827e+01 8.236088e+01 lineto +7.17174e+01 8.251432e+01 lineto +7.01238e+01 8.431439e+01 lineto +6.931593e+01 8.419735e+01 lineto +closepath +gsave +5.86074e-01 5.86074e-01 5.86074e-01 setrgbcolor +fill +grestore +newpath +6.794092e+01 8.574465e+01 moveto +6.931593e+01 8.419735e+01 lineto +7.01238e+01 8.431439e+01 lineto +6.849141e+01 8.58244e+01 lineto +6.794092e+01 8.574465e+01 lineto +closepath +gsave +5.610334e-01 5.610334e-01 5.610334e-01 setrgbcolor +fill +grestore +newpath +6.654364e+01 8.699107e+01 moveto +6.794092e+01 8.574465e+01 lineto +6.849141e+01 8.58244e+01 lineto +6.683259e+01 8.703293e+01 lineto +6.654364e+01 8.699107e+01 lineto +closepath +gsave +5.372795e-01 5.372795e-01 5.372795e-01 setrgbcolor +fill +grestore +newpath +6.513468e+01 8.792716e+01 moveto +6.654364e+01 8.699107e+01 lineto +6.683259e+01 8.703293e+01 lineto +6.515989e+01 8.793082e+01 lineto +6.513468e+01 8.792716e+01 lineto +closepath +gsave +5.151879e-01 5.151879e-01 5.151879e-01 setrgbcolor +fill +grestore +newpath +6.37247e+01 8.854585e+01 moveto +6.513468e+01 8.792716e+01 lineto +6.515989e+01 8.793082e+01 lineto +6.348599e+01 8.851127e+01 lineto +6.37247e+01 8.854585e+01 lineto +closepath +gsave +4.950423e-01 4.950423e-01 4.950423e-01 setrgbcolor +fill +grestore +newpath +5.959493e+01 8.846285e+01 moveto +6.09443e+01 8.881471e+01 lineto +6.018515e+01 8.870473e+01 lineto +5.85832e+01 8.831628e+01 lineto +5.959493e+01 8.846285e+01 lineto +closepath +gsave +4.523593e-01 4.523593e-01 4.523593e-01 setrgbcolor +fill +grestore +newpath +7.156732e+01 3.737606e+00 moveto +6.996949e+01 3.318412e+00 lineto +7.072239e+01 3.444906e+00 lineto +7.25623e+01 3.90477e+00 lineto +7.156732e+01 3.737606e+00 lineto +closepath +gsave +4.541915e-01 4.541915e-01 4.541915e-01 setrgbcolor +fill +grestore +newpath +7.311543e+01 4.476744e+00 moveto +7.156732e+01 3.737606e+00 lineto +7.25623e+01 3.90477e+00 lineto +7.434495e+01 4.683314e+00 lineto +7.311543e+01 4.476744e+00 lineto +closepath +gsave +4.690268e-01 4.690268e-01 4.690268e-01 setrgbcolor +fill +grestore +newpath +7.460211e+01 5.530232e+00 moveto +7.311543e+01 4.476744e+00 lineto +7.434495e+01 4.683314e+00 lineto +7.605686e+01 5.774644e+00 lineto +7.460211e+01 5.530232e+00 lineto +closepath +gsave +4.861618e-01 4.861618e-01 4.861618e-01 setrgbcolor +fill +grestore +newpath +7.601609e+01 6.890093e+00 moveto +7.460211e+01 5.530232e+00 lineto +7.605686e+01 5.774644e+00 lineto +7.768506e+01 7.170497e+00 lineto +7.601609e+01 6.890093e+00 lineto +closepath +gsave +5.055461e-01 5.055461e-01 5.055461e-01 setrgbcolor +fill +grestore +newpath +7.734667e+01 8.546034e+00 moveto +7.601609e+01 6.890093e+00 lineto +7.768506e+01 7.170497e+00 lineto +7.921723e+01 8.860306e+00 lineto +7.734667e+01 8.546034e+00 lineto +closepath +gsave +5.270372e-01 5.270372e-01 5.270372e-01 setrgbcolor +fill +grestore +newpath +7.858378e+01 1.048552e+01 moveto +7.734667e+01 8.546034e+00 lineto +7.921723e+01 8.860306e+00 lineto +8.064178e+01 1.083128e+01 lineto +7.858378e+01 1.048552e+01 lineto +closepath +gsave +5.50396e-01 5.50396e-01 5.50396e-01 setrgbcolor +fill +grestore +newpath +7.971806e+01 1.269386e+01 moveto +7.858378e+01 1.048552e+01 lineto +8.064178e+01 1.083128e+01 lineto +8.19479e+01 1.306849e+01 lineto +7.971806e+01 1.269386e+01 lineto +closepath +gsave +5.752873e-01 5.752873e-01 5.752873e-01 setrgbcolor +fill +grestore +newpath +8.074092e+01 1.515435e+01 moveto +7.971806e+01 1.269386e+01 lineto +8.19479e+01 1.306849e+01 lineto +8.312573e+01 1.555502e+01 lineto +8.074092e+01 1.515435e+01 lineto +closepath +gsave +6.012848e-01 6.012848e-01 6.012848e-01 setrgbcolor +fill +grestore +newpath +8.164461e+01 1.784835e+01 moveto +8.074092e+01 1.515435e+01 lineto +8.312573e+01 1.555502e+01 lineto +8.416633e+01 1.827202e+01 lineto +8.164461e+01 1.784835e+01 lineto +closepath +gsave +6.278814e-01 6.278814e-01 6.278814e-01 setrgbcolor +fill +grestore +newpath +8.242229e+01 2.075547e+01 moveto +8.164461e+01 1.784835e+01 lineto +8.416633e+01 1.827202e+01 lineto +8.506184e+01 2.119894e+01 lineto +8.242229e+01 2.075547e+01 lineto +closepath +gsave +6.545039e-01 6.545039e-01 6.545039e-01 setrgbcolor +fill +grestore +newpath +8.306808e+01 2.38537e+01 moveto +8.242229e+01 2.075547e+01 lineto +8.506184e+01 2.119894e+01 lineto +8.580546e+01 2.431361e+01 lineto +8.306808e+01 2.38537e+01 lineto +closepath +gsave +6.80532e-01 6.80532e-01 6.80532e-01 setrgbcolor +fill +grestore +newpath +8.357709e+01 2.711959e+01 moveto +8.306808e+01 2.38537e+01 lineto +8.580546e+01 2.431361e+01 lineto +8.639159e+01 2.759246e+01 lineto +8.357709e+01 2.711959e+01 lineto +closepath +gsave +7.053205e-01 7.053205e-01 7.053205e-01 setrgbcolor +fill +grestore +newpath +8.394546e+01 3.052842e+01 moveto +8.357709e+01 2.711959e+01 lineto +8.639159e+01 2.759246e+01 lineto +8.681577e+01 3.101066e+01 lineto +8.394546e+01 3.052842e+01 lineto +closepath +gsave +7.282234e-01 7.282234e-01 7.282234e-01 setrgbcolor +fill +grestore +newpath +8.41704e+01 3.405437e+01 moveto +8.394546e+01 3.052842e+01 lineto +8.681577e+01 3.101066e+01 lineto +8.707479e+01 3.454233e+01 lineto +8.41704e+01 3.405437e+01 lineto +closepath +gsave +7.486195e-01 7.486195e-01 7.486195e-01 setrgbcolor +fill +grestore +newpath +8.425022e+01 3.767075e+01 moveto +8.41704e+01 3.405437e+01 lineto +8.707479e+01 3.454233e+01 lineto +8.71667e+01 3.816075e+01 lineto +8.425022e+01 3.767075e+01 lineto +closepath +gsave +7.659377e-01 7.659377e-01 7.659377e-01 setrgbcolor +fill +grestore +newpath +8.41843e+01 4.135019e+01 moveto +8.425022e+01 3.767075e+01 lineto +8.71667e+01 3.816075e+01 lineto +8.70908e+01 4.183851e+01 lineto +8.41843e+01 4.135019e+01 lineto +closepath +gsave +7.796806e-01 7.796806e-01 7.796806e-01 setrgbcolor +fill +grestore +newpath +8.397315e+01 4.506483e+01 moveto +8.41843e+01 4.135019e+01 lineto +8.70908e+01 4.183851e+01 lineto +8.684765e+01 4.554778e+01 lineto +8.397315e+01 4.506483e+01 lineto +closepath +gsave +7.89446e-01 7.89446e-01 7.89446e-01 setrgbcolor +fill +grestore +newpath +8.361837e+01 4.878655e+01 moveto +8.397315e+01 4.506483e+01 lineto +8.684765e+01 4.554778e+01 lineto +8.643912e+01 4.926047e+01 lineto +8.361837e+01 4.878655e+01 lineto +closepath +gsave +7.949437e-01 7.949437e-01 7.949437e-01 setrgbcolor +fill +grestore +newpath +8.312263e+01 5.248718e+01 moveto +8.361837e+01 4.878655e+01 lineto +8.643912e+01 4.926047e+01 lineto +8.586828e+01 5.294847e+01 lineto +8.312263e+01 5.248718e+01 lineto +closepath +gsave +7.960088e-01 7.960088e-01 7.960088e-01 setrgbcolor +fill +grestore +newpath +8.24897e+01 5.613869e+01 moveto +8.312263e+01 5.248718e+01 lineto +8.586828e+01 5.294847e+01 lineto +8.513946e+01 5.658388e+01 lineto +8.24897e+01 5.613869e+01 lineto +closepath +gsave +7.926082e-01 7.926082e-01 7.926082e-01 setrgbcolor +fill +grestore +newpath +8.172437e+01 5.971346e+01 moveto +8.24897e+01 5.613869e+01 lineto +8.513946e+01 5.658388e+01 lineto +8.425817e+01 6.013916e+01 lineto +8.172437e+01 5.971346e+01 lineto +closepath +gsave +7.84843e-01 7.84843e-01 7.84843e-01 setrgbcolor +fill +grestore +newpath +8.083242e+01 6.31844e+01 moveto +8.172437e+01 5.971346e+01 lineto +8.425817e+01 6.013916e+01 lineto +8.323109e+01 6.35874e+01 lineto +8.083242e+01 6.31844e+01 lineto +closepath +gsave +7.729436e-01 7.729436e-01 7.729436e-01 setrgbcolor +fill +grestore +newpath +7.982061e+01 6.652525e+01 moveto +8.083242e+01 6.31844e+01 lineto +8.323109e+01 6.35874e+01 lineto +8.206599e+01 6.690249e+01 lineto +7.982061e+01 6.652525e+01 lineto +closepath +gsave +7.572597e-01 7.572597e-01 7.572597e-01 setrgbcolor +fill +grestore +newpath +7.869661e+01 6.971071e+01 moveto +7.982061e+01 6.652525e+01 lineto +8.206599e+01 6.690249e+01 lineto +8.07717e+01 7.005935e+01 lineto +7.869661e+01 6.971071e+01 lineto +closepath +gsave +7.382457e-01 7.382457e-01 7.382457e-01 setrgbcolor +fill +grestore +newpath +7.746892e+01 7.271668e+01 moveto +7.869661e+01 6.971071e+01 lineto +8.07717e+01 7.005935e+01 lineto +7.9358e+01 7.303406e+01 lineto +7.746892e+01 7.271668e+01 lineto +closepath +gsave +7.164411e-01 7.164411e-01 7.164411e-01 setrgbcolor +fill +grestore +newpath +7.614683e+01 7.552038e+01 moveto +7.746892e+01 7.271668e+01 lineto +7.9358e+01 7.303406e+01 lineto +7.783562e+01 7.580412e+01 lineto +7.614683e+01 7.552038e+01 lineto +closepath +gsave +6.924473e-01 6.924473e-01 6.924473e-01 setrgbcolor +fill +grestore +newpath +7.474036e+01 7.810061e+01 moveto +7.614683e+01 7.552038e+01 lineto +7.783562e+01 7.580412e+01 lineto +7.621606e+01 7.834854e+01 lineto +7.474036e+01 7.810061e+01 lineto +closepath +gsave +6.669036e-01 6.669036e-01 6.669036e-01 setrgbcolor +fill +grestore +newpath +7.326014e+01 8.043782e+01 moveto +7.474036e+01 7.810061e+01 lineto +7.621606e+01 7.834854e+01 lineto +7.451158e+01 8.064807e+01 lineto +7.326014e+01 8.043782e+01 lineto +closepath +gsave +6.404607e-01 6.404607e-01 6.404607e-01 setrgbcolor +fill +grestore +newpath +7.17174e+01 8.251432e+01 moveto +7.326014e+01 8.043782e+01 lineto +7.451158e+01 8.064807e+01 lineto +7.273511e+01 8.26853e+01 lineto +7.17174e+01 8.251432e+01 lineto +closepath +gsave +6.137557e-01 6.137557e-01 6.137557e-01 setrgbcolor +fill +grestore +newpath +7.01238e+01 8.431439e+01 moveto +7.17174e+01 8.251432e+01 lineto +7.273511e+01 8.26853e+01 lineto +7.090007e+01 8.444481e+01 lineto +7.01238e+01 8.431439e+01 lineto +closepath +gsave +5.873887e-01 5.873887e-01 5.873887e-01 setrgbcolor +fill +grestore +newpath +6.849141e+01 8.58244e+01 moveto +7.01238e+01 8.431439e+01 lineto +7.090007e+01 8.444481e+01 lineto +6.902037e+01 8.591327e+01 lineto +6.849141e+01 8.58244e+01 lineto +closepath +gsave +5.619016e-01 5.619016e-01 5.619016e-01 setrgbcolor +fill +grestore +newpath +6.683259e+01 8.703293e+01 moveto +6.849141e+01 8.58244e+01 lineto +6.902037e+01 8.591327e+01 lineto +6.711023e+01 8.707958e+01 lineto +6.683259e+01 8.703293e+01 lineto +closepath +gsave +5.377616e-01 5.377616e-01 5.377616e-01 setrgbcolor +fill +grestore +newpath +6.515989e+01 8.793082e+01 moveto +6.683259e+01 8.703293e+01 lineto +6.711023e+01 8.707958e+01 lineto +6.518412e+01 8.793489e+01 lineto +6.515989e+01 8.793082e+01 lineto +closepath +gsave +5.153483e-01 5.153483e-01 5.153483e-01 setrgbcolor +fill +grestore +newpath +6.348599e+01 8.851127e+01 moveto +6.515989e+01 8.793082e+01 lineto +6.518412e+01 8.793489e+01 lineto +6.325661e+01 8.847273e+01 lineto +6.348599e+01 8.851127e+01 lineto +closepath +gsave +4.949465e-01 4.949465e-01 4.949465e-01 setrgbcolor +fill +grestore +newpath +5.85832e+01 8.831628e+01 moveto +6.018515e+01 8.870473e+01 lineto +5.945568e+01 8.858218e+01 lineto +5.761104e+01 8.815294e+01 lineto +5.85832e+01 8.831628e+01 lineto +closepath +gsave +4.528953e-01 4.528953e-01 4.528953e-01 setrgbcolor +fill +grestore +newpath +7.25623e+01 3.90477e+00 moveto +7.072239e+01 3.444906e+00 lineto +7.144001e+01 3.583599e+00 lineto +7.351064e+01 4.088057e+00 lineto +7.25623e+01 3.90477e+00 lineto +closepath +gsave +4.544736e-01 4.544736e-01 4.544736e-01 setrgbcolor +fill +grestore +newpath +7.434495e+01 4.683314e+00 moveto +7.25623e+01 3.90477e+00 lineto +7.351064e+01 4.088057e+00 lineto +7.551685e+01 4.909806e+00 lineto +7.434495e+01 4.683314e+00 lineto +closepath +gsave +4.694488e-01 4.694488e-01 4.694488e-01 setrgbcolor +fill +grestore +newpath +7.605686e+01 5.774644e+00 moveto +7.434495e+01 4.683314e+00 lineto +7.551685e+01 4.909806e+00 lineto +7.744344e+01 6.042627e+00 lineto +7.605686e+01 5.774644e+00 lineto +closepath +gsave +4.867522e-01 4.867522e-01 4.867522e-01 setrgbcolor +fill +grestore +newpath +7.768506e+01 7.170497e+00 moveto +7.605686e+01 5.774644e+00 lineto +7.744344e+01 6.042627e+00 lineto +7.927583e+01 7.477943e+00 lineto +7.768506e+01 7.170497e+00 lineto +closepath +gsave +5.063328e-01 5.063328e-01 5.063328e-01 setrgbcolor +fill +grestore +newpath +7.921723e+01 8.860306e+00 moveto +7.768506e+01 7.170497e+00 lineto +7.927583e+01 7.477943e+00 lineto +8.100015e+01 9.204887e+00 lineto +7.921723e+01 8.860306e+00 lineto +closepath +gsave +5.28046e-01 5.28046e-01 5.28046e-01 setrgbcolor +fill +grestore +newpath +8.064178e+01 1.083128e+01 moveto +7.921723e+01 8.860306e+00 lineto +8.100015e+01 9.204887e+00 lineto +8.260333e+01 1.121039e+01 lineto +8.064178e+01 1.083128e+01 lineto +closepath +gsave +5.516491e-01 5.516491e-01 5.516491e-01 setrgbcolor +fill +grestore +newpath +8.19479e+01 1.306849e+01 moveto +8.064178e+01 1.083128e+01 lineto +8.260333e+01 1.121039e+01 lineto +8.407325e+01 1.347926e+01 lineto +8.19479e+01 1.306849e+01 lineto +closepath +gsave +5.768021e-01 5.768021e-01 5.768021e-01 setrgbcolor +fill +grestore +newpath +8.312573e+01 1.555502e+01 moveto +8.19479e+01 1.306849e+01 lineto +8.407325e+01 1.347926e+01 lineto +8.539878e+01 1.599433e+01 lineto +8.312573e+01 1.555502e+01 lineto +closepath +gsave +6.030725e-01 6.030725e-01 6.030725e-01 setrgbcolor +fill +grestore +newpath +8.416633e+01 1.827202e+01 moveto +8.312573e+01 1.555502e+01 lineto +8.539878e+01 1.599433e+01 lineto +8.656988e+01 1.873655e+01 lineto +8.416633e+01 1.827202e+01 lineto +closepath +gsave +6.299461e-01 6.299461e-01 6.299461e-01 setrgbcolor +fill +grestore +newpath +8.506184e+01 2.119894e+01 moveto +8.416633e+01 1.827202e+01 lineto +8.656988e+01 1.873655e+01 lineto +8.757769e+01 2.168517e+01 lineto +8.506184e+01 2.119894e+01 lineto +closepath +gsave +6.568417e-01 6.568417e-01 6.568417e-01 setrgbcolor +fill +grestore +newpath +8.580546e+01 2.431361e+01 moveto +8.506184e+01 2.119894e+01 lineto +8.757769e+01 2.168517e+01 lineto +8.841457e+01 2.481787e+01 lineto +8.580546e+01 2.431361e+01 lineto +closepath +gsave +6.831309e-01 6.831309e-01 6.831309e-01 setrgbcolor +fill +grestore +newpath +8.639159e+01 2.759246e+01 moveto +8.580546e+01 2.431361e+01 lineto +8.841457e+01 2.481787e+01 lineto +8.90742e+01 2.811092e+01 lineto +8.639159e+01 2.759246e+01 lineto +closepath +gsave +7.081597e-01 7.081597e-01 7.081597e-01 setrgbcolor +fill +grestore +newpath +8.681577e+01 3.101066e+01 moveto +8.639159e+01 2.759246e+01 lineto +8.90742e+01 2.811092e+01 lineto +8.955157e+01 3.15394e+01 lineto +8.681577e+01 3.101066e+01 lineto +closepath +gsave +7.312741e-01 7.312741e-01 7.312741e-01 setrgbcolor +fill +grestore +newpath +8.707479e+01 3.454233e+01 moveto +8.681577e+01 3.101066e+01 lineto +8.955157e+01 3.15394e+01 lineto +8.984308e+01 3.507736e+01 lineto +8.707479e+01 3.454233e+01 lineto +closepath +gsave +7.518454e-01 7.518454e-01 7.518454e-01 setrgbcolor +fill +grestore +newpath +8.71667e+01 3.816075e+01 moveto +8.707479e+01 3.454233e+01 lineto +8.984308e+01 3.507736e+01 lineto +8.994651e+01 3.8698e+01 lineto +8.71667e+01 3.816075e+01 lineto +closepath +gsave +7.69296e-01 7.69296e-01 7.69296e-01 setrgbcolor +fill +grestore +newpath +8.70908e+01 4.183851e+01 moveto +8.71667e+01 3.816075e+01 lineto +8.994651e+01 3.8698e+01 lineto +8.986109e+01 4.237392e+01 lineto +8.70908e+01 4.183851e+01 lineto +closepath +gsave +7.831236e-01 7.831236e-01 7.831236e-01 setrgbcolor +fill +grestore +newpath +8.684765e+01 4.554778e+01 moveto +8.70908e+01 4.183851e+01 lineto +8.986109e+01 4.237392e+01 lineto +8.958746e+01 4.607729e+01 lineto +8.684765e+01 4.554778e+01 lineto +closepath +gsave +7.929224e-01 7.929224e-01 7.929224e-01 setrgbcolor +fill +grestore +newpath +8.643912e+01 4.926047e+01 moveto +8.684765e+01 4.554778e+01 lineto +8.958746e+01 4.607729e+01 lineto +8.912769e+01 4.978008e+01 lineto +8.643912e+01 4.926047e+01 lineto +closepath +gsave +7.984006e-01 7.984006e-01 7.984006e-01 setrgbcolor +fill +grestore +newpath +8.586828e+01 5.294847e+01 moveto +8.643912e+01 4.926047e+01 lineto +8.912769e+01 4.978008e+01 lineto +8.848526e+01 5.345426e+01 lineto +8.586828e+01 5.294847e+01 lineto +closepath +gsave +7.993934e-01 7.993934e-01 7.993934e-01 setrgbcolor +fill +grestore +newpath +8.513946e+01 5.658388e+01 moveto +8.586828e+01 5.294847e+01 lineto +8.848526e+01 5.345426e+01 lineto +8.766504e+01 5.707199e+01 lineto +8.513946e+01 5.658388e+01 lineto +closepath +gsave +7.9587e-01 7.9587e-01 7.9587e-01 setrgbcolor +fill +grestore +newpath +8.425817e+01 6.013916e+01 moveto +8.513946e+01 5.658388e+01 lineto +8.766504e+01 5.707199e+01 lineto +8.667324e+01 6.060591e+01 lineto +8.425817e+01 6.013916e+01 lineto +closepath +gsave +7.879351e-01 7.879351e-01 7.879351e-01 setrgbcolor +fill +grestore +newpath +8.323109e+01 6.35874e+01 moveto +8.425817e+01 6.013916e+01 lineto +8.667324e+01 6.060591e+01 lineto +8.551736e+01 6.402926e+01 lineto +8.323109e+01 6.35874e+01 lineto +closepath +gsave +7.758248e-01 7.758248e-01 7.758248e-01 setrgbcolor +fill +grestore +newpath +8.206599e+01 6.690249e+01 moveto +8.323109e+01 6.35874e+01 lineto +8.551736e+01 6.402926e+01 lineto +8.420615e+01 6.731612e+01 lineto +8.206599e+01 6.690249e+01 lineto +closepath +gsave +7.598957e-01 7.598957e-01 7.598957e-01 setrgbcolor +fill +grestore +newpath +8.07717e+01 7.005935e+01 moveto +8.206599e+01 6.690249e+01 lineto +8.420615e+01 6.731612e+01 lineto +8.274955e+01 7.04416e+01 lineto +8.07717e+01 7.005935e+01 lineto +closepath +gsave +7.406101e-01 7.406101e-01 7.406101e-01 setrgbcolor +fill +grestore +newpath +7.9358e+01 7.303406e+01 moveto +8.07717e+01 7.005935e+01 lineto +8.274955e+01 7.04416e+01 lineto +8.115857e+01 7.338205e+01 lineto +7.9358e+01 7.303406e+01 lineto +closepath +gsave +7.18516e-01 7.18516e-01 7.18516e-01 setrgbcolor +fill +grestore +newpath +7.783562e+01 7.580412e+01 moveto +7.9358e+01 7.303406e+01 lineto +8.115857e+01 7.338205e+01 lineto +7.944526e+01 7.611521e+01 lineto +7.783562e+01 7.580412e+01 lineto +closepath +gsave +6.94224e-01 6.94224e-01 6.94224e-01 setrgbcolor +fill +grestore +newpath +7.621606e+01 7.834854e+01 moveto +7.783562e+01 7.580412e+01 lineto +7.944526e+01 7.611521e+01 lineto +7.76226e+01 7.862038e+01 lineto +7.621606e+01 7.834854e+01 lineto +closepath +gsave +6.68382e-01 6.68382e-01 6.68382e-01 setrgbcolor +fill +grestore +newpath +7.451158e+01 8.064807e+01 moveto +7.621606e+01 7.834854e+01 lineto +7.76226e+01 7.862038e+01 lineto +7.570438e+01 8.08786e+01 lineto +7.451158e+01 8.064807e+01 lineto +closepath +gsave +6.416489e-01 6.416489e-01 6.416489e-01 setrgbcolor +fill +grestore +newpath +7.273511e+01 8.26853e+01 moveto +7.451158e+01 8.064807e+01 lineto +7.570438e+01 8.08786e+01 lineto +7.370513e+01 8.287278e+01 lineto +7.273511e+01 8.26853e+01 lineto +closepath +gsave +6.146696e-01 6.146696e-01 6.146696e-01 setrgbcolor +fill +grestore +newpath +7.090007e+01 8.444481e+01 moveto +7.273511e+01 8.26853e+01 lineto +7.370513e+01 8.287278e+01 lineto +7.163997e+01 8.458781e+01 lineto +7.090007e+01 8.444481e+01 lineto +closepath +gsave +5.880504e-01 5.880504e-01 5.880504e-01 setrgbcolor +fill +grestore +newpath +6.902037e+01 8.591327e+01 moveto +7.090007e+01 8.444481e+01 lineto +7.163997e+01 8.458781e+01 lineto +6.952454e+01 8.601071e+01 lineto +6.902037e+01 8.591327e+01 lineto +closepath +gsave +5.623382e-01 5.623382e-01 5.623382e-01 setrgbcolor +fill +grestore +newpath +6.711023e+01 8.707958e+01 moveto +6.902037e+01 8.591327e+01 lineto +6.952454e+01 8.601071e+01 lineto +6.737486e+01 8.713072e+01 lineto +6.711023e+01 8.707958e+01 lineto +closepath +gsave +5.380038e-01 5.380038e-01 5.380038e-01 setrgbcolor +fill +grestore +newpath +6.518412e+01 8.793489e+01 moveto +6.711023e+01 8.707958e+01 lineto +6.737486e+01 8.713072e+01 lineto +6.520721e+01 8.793935e+01 lineto +6.518412e+01 8.793489e+01 lineto +closepath +gsave +5.154288e-01 5.154288e-01 5.154288e-01 setrgbcolor +fill +grestore +newpath +6.325661e+01 8.847273e+01 moveto +6.518412e+01 8.793489e+01 lineto +6.520721e+01 8.793935e+01 lineto +6.303798e+01 8.843048e+01 lineto +6.325661e+01 8.847273e+01 lineto +closepath +gsave +4.948985e-01 4.948985e-01 4.948985e-01 setrgbcolor +fill +grestore +newpath +5.761104e+01 8.815294e+01 moveto +5.945568e+01 8.858218e+01 lineto +5.87604e+01 8.84478e+01 lineto +5.668442e+01 8.797386e+01 lineto +5.761104e+01 8.815294e+01 lineto +closepath +gsave +4.531656e-01 4.531656e-01 4.531656e-01 setrgbcolor +fill +grestore +newpath +7.351064e+01 4.088057e+00 moveto +7.144001e+01 3.583599e+00 lineto +7.211792e+01 3.733636e+00 lineto +7.440652e+01 4.286335e+00 lineto +7.351064e+01 4.088057e+00 lineto +closepath +gsave +4.544736e-01 4.544736e-01 4.544736e-01 setrgbcolor +fill +grestore +newpath +7.551685e+01 4.909806e+00 moveto +7.351064e+01 4.088057e+00 lineto +7.440652e+01 4.286335e+00 lineto +7.662392e+01 5.154824e+00 lineto +7.551685e+01 4.909806e+00 lineto +closepath +gsave +4.694488e-01 4.694488e-01 4.694488e-01 setrgbcolor +fill +grestore +newpath +7.744344e+01 6.042627e+00 moveto +7.551685e+01 4.909806e+00 lineto +7.662392e+01 5.154824e+00 lineto +7.875331e+01 6.33253e+00 lineto +7.744344e+01 6.042627e+00 lineto +closepath +gsave +4.867522e-01 4.867522e-01 4.867522e-01 setrgbcolor +fill +grestore +newpath +7.927583e+01 7.477943e+00 moveto +7.744344e+01 6.042627e+00 lineto +7.875331e+01 6.33253e+00 lineto +8.077859e+01 7.810536e+00 lineto +7.927583e+01 7.477943e+00 lineto +closepath +gsave +5.063328e-01 5.063328e-01 5.063328e-01 setrgbcolor +fill +grestore +newpath +8.100015e+01 9.204887e+00 moveto +7.927583e+01 7.477943e+00 lineto +8.077859e+01 7.810536e+00 lineto +8.268441e+01 9.577653e+00 lineto +8.100015e+01 9.204887e+00 lineto +closepath +gsave +5.28046e-01 5.28046e-01 5.28046e-01 setrgbcolor +fill +grestore +newpath +8.260333e+01 1.121039e+01 moveto +8.100015e+01 9.204887e+00 lineto +8.268441e+01 9.577653e+00 lineto +8.445636e+01 1.16205e+01 lineto +8.260333e+01 1.121039e+01 lineto +closepath +gsave +5.516491e-01 5.516491e-01 5.516491e-01 setrgbcolor +fill +grestore +newpath +8.407325e+01 1.347926e+01 moveto +8.260333e+01 1.121039e+01 lineto +8.445636e+01 1.16205e+01 lineto +8.608101e+01 1.392362e+01 lineto +8.407325e+01 1.347926e+01 lineto +closepath +gsave +5.768021e-01 5.768021e-01 5.768021e-01 setrgbcolor +fill +grestore +newpath +8.539878e+01 1.599433e+01 moveto +8.407325e+01 1.347926e+01 lineto +8.608101e+01 1.392362e+01 lineto +8.754607e+01 1.646957e+01 lineto +8.539878e+01 1.599433e+01 lineto +closepath +gsave +6.030725e-01 6.030725e-01 6.030725e-01 setrgbcolor +fill +grestore +newpath +8.656988e+01 1.873655e+01 moveto +8.539878e+01 1.599433e+01 lineto +8.754607e+01 1.646957e+01 lineto +8.884045e+01 1.923908e+01 lineto +8.656988e+01 1.873655e+01 lineto +closepath +gsave +6.299461e-01 6.299461e-01 6.299461e-01 setrgbcolor +fill +grestore +newpath +8.757769e+01 2.168517e+01 moveto +8.656988e+01 1.873655e+01 lineto +8.884045e+01 1.923908e+01 lineto +8.995434e+01 2.221118e+01 lineto +8.757769e+01 2.168517e+01 lineto +closepath +gsave +6.568417e-01 6.568417e-01 6.568417e-01 setrgbcolor +fill +grestore +newpath +8.841457e+01 2.481787e+01 moveto +8.757769e+01 2.168517e+01 lineto +8.995434e+01 2.221118e+01 lineto +9.087932e+01 2.536337e+01 lineto +8.841457e+01 2.481787e+01 lineto +closepath +gsave +6.831309e-01 6.831309e-01 6.831309e-01 setrgbcolor +fill +grestore +newpath +8.90742e+01 2.811092e+01 moveto +8.841457e+01 2.481787e+01 lineto +9.087932e+01 2.536337e+01 lineto +9.160838e+01 2.867179e+01 lineto +8.90742e+01 2.811092e+01 lineto +closepath +gsave +7.081597e-01 7.081597e-01 7.081597e-01 setrgbcolor +fill +grestore +newpath +8.955157e+01 3.15394e+01 moveto +8.90742e+01 2.811092e+01 lineto +9.160838e+01 2.867179e+01 lineto +9.213601e+01 3.21114e+01 lineto +8.955157e+01 3.15394e+01 lineto +closepath +gsave +7.312741e-01 7.312741e-01 7.312741e-01 setrgbcolor +fill +grestore +newpath +8.984308e+01 3.507736e+01 moveto +8.955157e+01 3.15394e+01 lineto +9.213601e+01 3.21114e+01 lineto +9.24582e+01 3.565614e+01 lineto +8.984308e+01 3.507736e+01 lineto +closepath +gsave +7.518454e-01 7.518454e-01 7.518454e-01 setrgbcolor +fill +grestore +newpath +8.994651e+01 3.8698e+01 moveto +8.984308e+01 3.507736e+01 lineto +9.24582e+01 3.565614e+01 lineto +9.257252e+01 3.927919e+01 lineto +8.994651e+01 3.8698e+01 lineto +closepath +gsave +7.69296e-01 7.69296e-01 7.69296e-01 setrgbcolor +fill +grestore +newpath +8.986109e+01 4.237392e+01 moveto +8.994651e+01 3.8698e+01 lineto +9.257252e+01 3.927919e+01 lineto +9.247811e+01 4.295313e+01 lineto +8.986109e+01 4.237392e+01 lineto +closepath +gsave +7.831236e-01 7.831236e-01 7.831236e-01 setrgbcolor +fill +grestore +newpath +8.958746e+01 4.607729e+01 moveto +8.986109e+01 4.237392e+01 lineto +9.247811e+01 4.295313e+01 lineto +9.217567e+01 4.665012e+01 lineto +8.958746e+01 4.607729e+01 lineto +closepath +gsave +7.929224e-01 7.929224e-01 7.929224e-01 setrgbcolor +fill +grestore +newpath +8.912769e+01 4.978008e+01 moveto +8.958746e+01 4.607729e+01 lineto +9.217567e+01 4.665012e+01 lineto +9.16675e+01 5.03422e+01 lineto +8.912769e+01 4.978008e+01 lineto +closepath +gsave +7.984006e-01 7.984006e-01 7.984006e-01 setrgbcolor +fill +grestore +newpath +8.848526e+01 5.345426e+01 moveto +8.912769e+01 4.978008e+01 lineto +9.16675e+01 5.03422e+01 lineto +9.095745e+01 5.400141e+01 lineto +8.848526e+01 5.345426e+01 lineto +closepath +gsave +7.993934e-01 7.993934e-01 7.993934e-01 setrgbcolor +fill +grestore +newpath +8.766504e+01 5.707199e+01 moveto +8.848526e+01 5.345426e+01 lineto +9.095745e+01 5.400141e+01 lineto +9.005089e+01 5.760004e+01 lineto +8.766504e+01 5.707199e+01 lineto +closepath +gsave +7.9587e-01 7.9587e-01 7.9587e-01 setrgbcolor +fill +grestore +newpath +8.667324e+01 6.060591e+01 moveto +8.766504e+01 5.707199e+01 lineto +9.005089e+01 5.760004e+01 lineto +8.895468e+01 6.111085e+01 lineto +8.667324e+01 6.060591e+01 lineto +closepath +gsave +7.879351e-01 7.879351e-01 7.879351e-01 setrgbcolor +fill +grestore +newpath +8.551736e+01 6.402926e+01 moveto +8.667324e+01 6.060591e+01 lineto +8.895468e+01 6.111085e+01 lineto +8.767713e+01 6.450727e+01 lineto +8.551736e+01 6.402926e+01 lineto +closepath +gsave +7.758248e-01 7.758248e-01 7.758248e-01 setrgbcolor +fill +grestore +newpath +8.420615e+01 6.731612e+01 moveto +8.551736e+01 6.402926e+01 lineto +8.767713e+01 6.450727e+01 lineto +8.62279e+01 6.776358e+01 lineto +8.420615e+01 6.731612e+01 lineto +closepath +gsave +7.598957e-01 7.598957e-01 7.598957e-01 setrgbcolor +fill +grestore +newpath +8.274955e+01 7.04416e+01 moveto +8.420615e+01 6.731612e+01 lineto +8.62279e+01 6.776358e+01 lineto +8.461796e+01 7.085513e+01 lineto +8.274955e+01 7.04416e+01 lineto +closepath +gsave +7.406101e-01 7.406101e-01 7.406101e-01 setrgbcolor +fill +grestore +newpath +8.115857e+01 7.338205e+01 moveto +8.274955e+01 7.04416e+01 lineto +8.461796e+01 7.085513e+01 lineto +8.285951e+01 7.375851e+01 lineto +8.115857e+01 7.338205e+01 lineto +closepath +gsave +7.18516e-01 7.18516e-01 7.18516e-01 setrgbcolor +fill +grestore +newpath +7.944526e+01 7.611521e+01 moveto +8.115857e+01 7.338205e+01 lineto +8.285951e+01 7.375851e+01 lineto +8.096585e+01 7.645175e+01 lineto +7.944526e+01 7.611521e+01 lineto +closepath +gsave +6.94224e-01 6.94224e-01 6.94224e-01 setrgbcolor +fill +grestore +newpath +7.76226e+01 7.862038e+01 moveto +7.944526e+01 7.611521e+01 lineto +8.096585e+01 7.645175e+01 lineto +7.895133e+01 7.891446e+01 lineto +7.76226e+01 7.862038e+01 lineto +closepath +gsave +6.68382e-01 6.68382e-01 6.68382e-01 setrgbcolor +fill +grestore +newpath +7.570438e+01 8.08786e+01 moveto +7.76226e+01 7.862038e+01 lineto +7.895133e+01 7.891446e+01 lineto +7.683119e+01 8.112799e+01 lineto +7.570438e+01 8.08786e+01 lineto +closepath +gsave +6.416489e-01 6.416489e-01 6.416489e-01 setrgbcolor +fill +grestore +newpath +7.370513e+01 8.287278e+01 moveto +7.570438e+01 8.08786e+01 lineto +7.683119e+01 8.112799e+01 lineto +7.462148e+01 8.307559e+01 lineto +7.370513e+01 8.287278e+01 lineto +closepath +gsave +6.146696e-01 6.146696e-01 6.146696e-01 setrgbcolor +fill +grestore +newpath +7.163997e+01 8.458781e+01 moveto +7.370513e+01 8.287278e+01 lineto +7.462148e+01 8.307559e+01 lineto +7.233893e+01 8.474251e+01 lineto +7.163997e+01 8.458781e+01 lineto +closepath +gsave +5.880504e-01 5.880504e-01 5.880504e-01 setrgbcolor +fill +grestore +newpath +6.952454e+01 8.601071e+01 moveto +7.163997e+01 8.458781e+01 lineto +7.233893e+01 8.474251e+01 lineto +7.000082e+01 8.611613e+01 lineto +6.952454e+01 8.601071e+01 lineto +closepath +gsave +5.623382e-01 5.623382e-01 5.623382e-01 setrgbcolor +fill +grestore +newpath +6.737486e+01 8.713072e+01 moveto +6.952454e+01 8.601071e+01 lineto +7.000082e+01 8.611613e+01 lineto +6.762486e+01 8.718605e+01 lineto +6.737486e+01 8.713072e+01 lineto +closepath +gsave +5.380038e-01 5.380038e-01 5.380038e-01 setrgbcolor +fill +grestore +newpath +6.520721e+01 8.793935e+01 moveto +6.737486e+01 8.713072e+01 lineto +6.762486e+01 8.718605e+01 lineto +6.522902e+01 8.794418e+01 lineto +6.520721e+01 8.793935e+01 lineto +closepath +gsave +5.154288e-01 5.154288e-01 5.154288e-01 setrgbcolor +fill +grestore +newpath +6.303798e+01 8.843048e+01 moveto +6.520721e+01 8.793935e+01 lineto +6.522902e+01 8.794418e+01 lineto +6.283145e+01 8.838477e+01 lineto +6.303798e+01 8.843048e+01 lineto +closepath +gsave +4.948985e-01 4.948985e-01 4.948985e-01 setrgbcolor +fill +grestore +newpath +5.668442e+01 8.797386e+01 moveto +5.87604e+01 8.84478e+01 lineto +5.810358e+01 8.830243e+01 lineto +5.580908e+01 8.778013e+01 lineto +5.668442e+01 8.797386e+01 lineto +closepath +gsave +4.531656e-01 4.531656e-01 4.531656e-01 setrgbcolor +fill +grestore +newpath +7.662392e+01 5.154824e+00 moveto +7.440652e+01 4.286335e+00 lineto +7.524441e+01 4.498382e+00 lineto +7.765931e+01 5.416857e+00 lineto +7.662392e+01 5.154824e+00 lineto +closepath +gsave +4.690268e-01 4.690268e-01 4.690268e-01 setrgbcolor +fill +grestore +newpath +7.875331e+01 6.33253e+00 moveto +7.662392e+01 5.154824e+00 lineto +7.765931e+01 5.416857e+00 lineto +7.997838e+01 6.642565e+00 lineto +7.875331e+01 6.33253e+00 lineto +closepath +gsave +4.861618e-01 4.861618e-01 4.861618e-01 setrgbcolor +fill +grestore +newpath +8.077859e+01 7.810536e+00 moveto +7.875331e+01 6.33253e+00 lineto +7.997838e+01 6.642565e+00 lineto +8.218406e+01 8.166226e+00 lineto +8.077859e+01 7.810536e+00 lineto +closepath +gsave +5.055461e-01 5.055461e-01 5.055461e-01 setrgbcolor +fill +grestore +newpath +8.268441e+01 9.577653e+00 moveto +8.077859e+01 7.810536e+00 lineto +8.218406e+01 8.166226e+00 lineto +8.425965e+01 9.976305e+00 lineto +8.268441e+01 9.577653e+00 lineto +closepath +gsave +5.270372e-01 5.270372e-01 5.270372e-01 setrgbcolor +fill +grestore +newpath +8.445636e+01 1.16205e+01 moveto +8.268441e+01 9.577653e+00 lineto +8.425965e+01 9.976305e+00 lineto +8.618943e+01 1.20591e+01 lineto +8.445636e+01 1.16205e+01 lineto +closepath +gsave +5.50396e-01 5.50396e-01 5.50396e-01 setrgbcolor +fill +grestore +newpath +8.608101e+01 1.392362e+01 moveto +8.445636e+01 1.16205e+01 lineto +8.618943e+01 1.20591e+01 lineto +8.79588e+01 1.439884e+01 lineto +8.608101e+01 1.392362e+01 lineto +closepath +gsave +5.752873e-01 5.752873e-01 5.752873e-01 setrgbcolor +fill +grestore +newpath +8.754607e+01 1.646957e+01 moveto +8.608101e+01 1.392362e+01 lineto +8.79588e+01 1.439884e+01 lineto +8.955436e+01 1.697782e+01 lineto +8.754607e+01 1.646957e+01 lineto +closepath +gsave +6.012848e-01 6.012848e-01 6.012848e-01 setrgbcolor +fill +grestore +newpath +8.884045e+01 1.923908e+01 moveto +8.754607e+01 1.646957e+01 lineto +8.955436e+01 1.697782e+01 lineto +9.096403e+01 1.97765e+01 lineto +8.884045e+01 1.923908e+01 lineto +closepath +gsave +6.278814e-01 6.278814e-01 6.278814e-01 setrgbcolor +fill +grestore +newpath +8.995434e+01 2.221118e+01 moveto +8.884045e+01 1.923908e+01 lineto +9.096403e+01 1.97765e+01 lineto +9.217715e+01 2.277371e+01 lineto +8.995434e+01 2.221118e+01 lineto +closepath +gsave +6.545039e-01 6.545039e-01 6.545039e-01 setrgbcolor +fill +grestore +newpath +9.087932e+01 2.536337e+01 moveto +8.995434e+01 2.221118e+01 lineto +9.217715e+01 2.277371e+01 lineto +9.318452e+01 2.594676e+01 lineto +9.087932e+01 2.536337e+01 lineto +closepath +gsave +6.80532e-01 6.80532e-01 6.80532e-01 setrgbcolor +fill +grestore +newpath +9.160838e+01 2.867179e+01 moveto +9.087932e+01 2.536337e+01 lineto +9.318452e+01 2.594676e+01 lineto +9.397852e+01 2.927161e+01 lineto +9.160838e+01 2.867179e+01 lineto +closepath +gsave +7.053205e-01 7.053205e-01 7.053205e-01 setrgbcolor +fill +grestore +newpath +9.213601e+01 3.21114e+01 moveto +9.160838e+01 2.867179e+01 lineto +9.397852e+01 2.927161e+01 lineto +9.455314e+01 3.272311e+01 lineto +9.213601e+01 3.21114e+01 lineto +closepath +gsave +7.282234e-01 7.282234e-01 7.282234e-01 setrgbcolor +fill +grestore +newpath +9.24582e+01 3.565614e+01 moveto +9.213601e+01 3.21114e+01 lineto +9.455314e+01 3.272311e+01 lineto +9.490403e+01 3.627512e+01 lineto +9.24582e+01 3.565614e+01 lineto +closepath +gsave +7.486195e-01 7.486195e-01 7.486195e-01 setrgbcolor +fill +grestore +newpath +9.257252e+01 3.927919e+01 moveto +9.24582e+01 3.565614e+01 lineto +9.490403e+01 3.627512e+01 lineto +9.502854e+01 3.990075e+01 lineto +9.257252e+01 3.927919e+01 lineto +closepath +gsave +7.659377e-01 7.659377e-01 7.659377e-01 setrgbcolor +fill +grestore +newpath +9.247811e+01 4.295313e+01 moveto +9.257252e+01 3.927919e+01 lineto +9.502854e+01 3.990075e+01 lineto +9.492571e+01 4.357255e+01 lineto +9.247811e+01 4.295313e+01 lineto +closepath +gsave +7.796806e-01 7.796806e-01 7.796806e-01 setrgbcolor +fill +grestore +newpath +9.217567e+01 4.665012e+01 moveto +9.247811e+01 4.295313e+01 lineto +9.492571e+01 4.357255e+01 lineto +9.459634e+01 4.726273e+01 lineto +9.217567e+01 4.665012e+01 lineto +closepath +gsave +7.89446e-01 7.89446e-01 7.89446e-01 setrgbcolor +fill +grestore +newpath +9.16675e+01 5.03422e+01 moveto +9.217567e+01 4.665012e+01 lineto +9.459634e+01 4.726273e+01 lineto +9.404291e+01 5.094336e+01 lineto +9.16675e+01 5.03422e+01 lineto +closepath +gsave +7.949437e-01 7.949437e-01 7.949437e-01 setrgbcolor +fill +grestore +newpath +9.095745e+01 5.400141e+01 moveto +9.16675e+01 5.03422e+01 lineto +9.404291e+01 5.094336e+01 lineto +9.326961e+01 5.458655e+01 lineto +9.095745e+01 5.400141e+01 lineto +closepath +gsave +7.960088e-01 7.960088e-01 7.960088e-01 setrgbcolor +fill +grestore +newpath +9.005089e+01 5.760004e+01 moveto +9.095745e+01 5.400141e+01 lineto +9.326961e+01 5.458655e+01 lineto +9.228229e+01 5.816475e+01 lineto +9.005089e+01 5.760004e+01 lineto +closepath +gsave +7.926082e-01 7.926082e-01 7.926082e-01 setrgbcolor +fill +grestore +newpath +8.895468e+01 6.111085e+01 moveto +9.005089e+01 5.760004e+01 lineto +9.228229e+01 5.816475e+01 lineto +9.108844e+01 6.165085e+01 lineto +8.895468e+01 6.111085e+01 lineto +closepath +gsave +7.84843e-01 7.84843e-01 7.84843e-01 setrgbcolor +fill +grestore +newpath +8.767713e+01 6.450727e+01 moveto +8.895468e+01 6.111085e+01 lineto +9.108844e+01 6.165085e+01 lineto +8.969709e+01 6.501847e+01 lineto +8.767713e+01 6.450727e+01 lineto +closepath +gsave +7.729436e-01 7.729436e-01 7.729436e-01 setrgbcolor +fill +grestore +newpath +8.62279e+01 6.776358e+01 moveto +8.767713e+01 6.450727e+01 lineto +8.969709e+01 6.501847e+01 lineto +8.811877e+01 6.824211e+01 lineto +8.62279e+01 6.776358e+01 lineto +closepath +gsave +7.572597e-01 7.572597e-01 7.572597e-01 setrgbcolor +fill +grestore +newpath +8.461796e+01 7.085513e+01 moveto +8.62279e+01 6.776358e+01 lineto +8.811877e+01 6.824211e+01 lineto +8.636543e+01 7.129737e+01 lineto +8.461796e+01 7.085513e+01 lineto +closepath +gsave +7.382457e-01 7.382457e-01 7.382457e-01 setrgbcolor +fill +grestore +newpath +8.285951e+01 7.375851e+01 moveto +8.461796e+01 7.085513e+01 lineto +8.636543e+01 7.129737e+01 lineto +8.445034e+01 7.416111e+01 lineto +8.285951e+01 7.375851e+01 lineto +closepath +gsave +7.164411e-01 7.164411e-01 7.164411e-01 setrgbcolor +fill +grestore +newpath +8.096585e+01 7.645175e+01 moveto +8.285951e+01 7.375851e+01 lineto +8.445034e+01 7.416111e+01 lineto +8.238801e+01 7.681166e+01 lineto +8.096585e+01 7.645175e+01 lineto +closepath +gsave +6.924473e-01 6.924473e-01 6.924473e-01 setrgbcolor +fill +grestore +newpath +7.895133e+01 7.891446e+01 moveto +8.096585e+01 7.645175e+01 lineto +8.238801e+01 7.681166e+01 lineto +8.019404e+01 7.922896e+01 lineto +7.895133e+01 7.891446e+01 lineto +closepath +gsave +6.669036e-01 6.669036e-01 6.669036e-01 setrgbcolor +fill +grestore +newpath +7.683119e+01 8.112799e+01 moveto +7.895133e+01 7.891446e+01 lineto +8.019404e+01 7.922896e+01 lineto +7.788505e+01 8.13947e+01 lineto +7.683119e+01 8.112799e+01 lineto +closepath +gsave +6.404607e-01 6.404607e-01 6.404607e-01 setrgbcolor +fill +grestore +newpath +7.462148e+01 8.307559e+01 moveto +7.683119e+01 8.112799e+01 lineto +7.788505e+01 8.13947e+01 lineto +7.547851e+01 8.329248e+01 lineto +7.462148e+01 8.307559e+01 lineto +closepath +gsave +6.137557e-01 6.137557e-01 6.137557e-01 setrgbcolor +fill +grestore +newpath +7.233893e+01 8.474251e+01 moveto +7.462148e+01 8.307559e+01 lineto +7.547851e+01 8.329248e+01 lineto +7.299264e+01 8.490794e+01 lineto +7.233893e+01 8.474251e+01 lineto +closepath +gsave +5.873887e-01 5.873887e-01 5.873887e-01 setrgbcolor +fill +grestore +newpath +7.000082e+01 8.611613e+01 moveto +7.233893e+01 8.474251e+01 lineto +7.299264e+01 8.490794e+01 lineto +7.044627e+01 8.622886e+01 lineto +7.000082e+01 8.611613e+01 lineto +closepath +gsave +5.619016e-01 5.619016e-01 5.619016e-01 setrgbcolor +fill +grestore +newpath +6.762486e+01 8.718605e+01 moveto +7.000082e+01 8.611613e+01 lineto +7.044627e+01 8.622886e+01 lineto +6.785866e+01 8.724522e+01 lineto +6.762486e+01 8.718605e+01 lineto +closepath +gsave +5.377616e-01 5.377616e-01 5.377616e-01 setrgbcolor +fill +grestore +newpath +6.522902e+01 8.794418e+01 moveto +6.762486e+01 8.718605e+01 lineto +6.785866e+01 8.724522e+01 lineto +6.524942e+01 8.794934e+01 lineto +6.522902e+01 8.794418e+01 lineto +closepath +gsave +5.153483e-01 5.153483e-01 5.153483e-01 setrgbcolor +fill +grestore +newpath +6.283145e+01 8.838477e+01 moveto +6.522902e+01 8.794418e+01 lineto +6.524942e+01 8.794934e+01 lineto +6.263828e+01 8.833588e+01 lineto +6.283145e+01 8.838477e+01 lineto +closepath +gsave +4.949465e-01 4.949465e-01 4.949465e-01 setrgbcolor +fill +grestore +newpath +7.765931e+01 5.416857e+00 moveto +7.524441e+01 4.498382e+00 lineto +7.601913e+01 4.722891e+00 lineto +7.861666e+01 5.69429e+00 lineto +7.765931e+01 5.416857e+00 lineto +closepath +gsave +4.681906e-01 4.681906e-01 4.681906e-01 setrgbcolor +fill +grestore +newpath +7.997838e+01 6.642565e+00 moveto +7.765931e+01 5.416857e+00 lineto +7.861666e+01 5.69429e+00 lineto +8.111111e+01 6.970821e+00 lineto +7.997838e+01 6.642565e+00 lineto +closepath +gsave +4.849926e-01 4.849926e-01 4.849926e-01 setrgbcolor +fill +grestore +newpath +8.218406e+01 8.166226e+00 moveto +7.997838e+01 6.642565e+00 lineto +8.111111e+01 6.970821e+00 lineto +8.348359e+01 8.54282e+00 lineto +8.218406e+01 8.166226e+00 lineto +closepath +gsave +5.039891e-01 5.039891e-01 5.039891e-01 setrgbcolor +fill +grestore +newpath +8.425965e+01 9.976305e+00 moveto +8.218406e+01 8.166226e+00 lineto +8.348359e+01 8.54282e+00 lineto +8.571614e+01 1.039839e+01 lineto +8.425965e+01 9.976305e+00 lineto +closepath +gsave +5.250417e-01 5.250417e-01 5.250417e-01 setrgbcolor +fill +grestore +newpath +8.618943e+01 1.20591e+01 moveto +8.425965e+01 9.976305e+00 lineto +8.571614e+01 1.039839e+01 lineto +8.779186e+01 1.252347e+01 lineto +8.618943e+01 1.20591e+01 lineto +closepath +gsave +5.479182e-01 5.479182e-01 5.479182e-01 setrgbcolor +fill +grestore +newpath +8.79588e+01 1.439884e+01 moveto +8.618943e+01 1.20591e+01 lineto +8.779186e+01 1.252347e+01 lineto +8.969503e+01 1.490199e+01 lineto +8.79588e+01 1.439884e+01 lineto +closepath +gsave +5.72293e-01 5.72293e-01 5.72293e-01 setrgbcolor +fill +grestore +newpath +8.955436e+01 1.697782e+01 moveto +8.79588e+01 1.439884e+01 lineto +8.969503e+01 1.490199e+01 lineto +9.141126e+01 1.751593e+01 lineto +8.955436e+01 1.697782e+01 lineto +closepath +gsave +5.977518e-01 5.977518e-01 5.977518e-01 setrgbcolor +fill +grestore +newpath +9.096403e+01 1.97765e+01 moveto +8.955436e+01 1.697782e+01 lineto +9.141126e+01 1.751593e+01 lineto +9.292754e+01 2.034551e+01 lineto +9.096403e+01 1.97765e+01 lineto +closepath +gsave +6.238017e-01 6.238017e-01 6.238017e-01 setrgbcolor +fill +grestore +newpath +9.217715e+01 2.277371e+01 moveto +9.096403e+01 1.97765e+01 lineto +9.292754e+01 2.034551e+01 lineto +9.423239e+01 2.336931e+01 lineto +9.217715e+01 2.277371e+01 lineto +closepath +gsave +6.498849e-01 6.498849e-01 6.498849e-01 setrgbcolor +fill +grestore +newpath +9.318452e+01 2.594676e+01 moveto +9.217715e+01 2.277371e+01 lineto +9.423239e+01 2.336931e+01 lineto +9.531594e+01 2.656443e+01 lineto +9.318452e+01 2.594676e+01 lineto +closepath +gsave +6.753979e-01 6.753979e-01 6.753979e-01 setrgbcolor +fill +grestore +newpath +9.397852e+01 2.927161e+01 moveto +9.318452e+01 2.594676e+01 lineto +9.531594e+01 2.656443e+01 lineto +9.616999e+01 2.990669e+01 lineto +9.397852e+01 2.927161e+01 lineto +closepath +gsave +6.997119e-01 6.997119e-01 6.997119e-01 setrgbcolor +fill +grestore +newpath +9.455314e+01 3.272311e+01 moveto +9.397852e+01 2.927161e+01 lineto +9.616999e+01 2.990669e+01 lineto +9.678807e+01 3.337078e+01 lineto +9.455314e+01 3.272311e+01 lineto +closepath +gsave +7.22197e-01 7.22197e-01 7.22197e-01 setrgbcolor +fill +grestore +newpath +9.490403e+01 3.627512e+01 moveto +9.455314e+01 3.272311e+01 lineto +9.678807e+01 3.337078e+01 lineto +9.71655e+01 3.693047e+01 lineto +9.490403e+01 3.627512e+01 lineto +closepath +gsave +7.422467e-01 7.422467e-01 7.422467e-01 setrgbcolor +fill +grestore +newpath +9.502854e+01 3.990075e+01 moveto +9.490403e+01 3.627512e+01 lineto +9.71655e+01 3.693047e+01 lineto +9.729942e+01 4.055883e+01 lineto +9.502854e+01 3.990075e+01 lineto +closepath +gsave +7.593026e-01 7.593026e-01 7.593026e-01 setrgbcolor +fill +grestore +newpath +9.492571e+01 4.357255e+01 moveto +9.502854e+01 3.990075e+01 lineto +9.729942e+01 4.055883e+01 lineto +9.718882e+01 4.422838e+01 lineto +9.492571e+01 4.357255e+01 lineto +closepath +gsave +7.728775e-01 7.728775e-01 7.728775e-01 setrgbcolor +fill +grestore +newpath +9.459634e+01 4.726273e+01 moveto +9.492571e+01 4.357255e+01 lineto +9.718882e+01 4.422838e+01 lineto +9.683453e+01 4.791135e+01 lineto +9.459634e+01 4.726273e+01 lineto +closepath +gsave +7.825759e-01 7.825759e-01 7.825759e-01 setrgbcolor +fill +grestore +newpath +9.404291e+01 5.094336e+01 moveto +9.459634e+01 4.726273e+01 lineto +9.683453e+01 4.791135e+01 lineto +9.623925e+01 5.157984e+01 lineto +9.404291e+01 5.094336e+01 lineto +closepath +gsave +7.88111e-01 7.88111e-01 7.88111e-01 setrgbcolor +fill +grestore +newpath +9.326961e+01 5.458655e+01 moveto +9.404291e+01 5.094336e+01 lineto +9.623925e+01 5.157984e+01 lineto +9.540747e+01 5.520609e+01 lineto +9.326961e+01 5.458655e+01 lineto +closepath +gsave +7.893175e-01 7.893175e-01 7.893175e-01 setrgbcolor +fill +grestore +newpath +9.228229e+01 5.816475e+01 moveto +9.326961e+01 5.458655e+01 lineto +9.540747e+01 5.520609e+01 lineto +9.434549e+01 5.876265e+01 lineto +9.228229e+01 5.816475e+01 lineto +closepath +gsave +7.861584e-01 7.861584e-01 7.861584e-01 setrgbcolor +fill +grestore +newpath +9.108844e+01 6.165085e+01 moveto +9.228229e+01 5.816475e+01 lineto +9.434549e+01 5.876265e+01 lineto +9.306136e+01 6.222259e+01 lineto +9.108844e+01 6.165085e+01 lineto +closepath +gsave +7.78727e-01 7.78727e-01 7.78727e-01 setrgbcolor +fill +grestore +newpath +8.969709e+01 6.501847e+01 moveto +9.108844e+01 6.165085e+01 lineto +9.306136e+01 6.222259e+01 lineto +9.156478e+01 6.555971e+01 lineto +8.969709e+01 6.501847e+01 lineto +closepath +gsave +7.672429e-01 7.672429e-01 7.672429e-01 setrgbcolor +fill +grestore +newpath +8.811877e+01 6.824211e+01 moveto +8.969709e+01 6.501847e+01 lineto +9.156478e+01 6.555971e+01 lineto +8.98671e+01 6.874876e+01 lineto +8.811877e+01 6.824211e+01 lineto +closepath +gsave +7.520424e-01 7.520424e-01 7.520424e-01 setrgbcolor +fill +grestore +newpath +8.636543e+01 7.129737e+01 moveto +8.811877e+01 6.824211e+01 lineto +8.98671e+01 6.874876e+01 lineto +8.798117e+01 7.176559e+01 lineto +8.636543e+01 7.129737e+01 lineto +closepath +gsave +7.335643e-01 7.335643e-01 7.335643e-01 setrgbcolor +fill +grestore +newpath +8.445034e+01 7.416111e+01 moveto +8.636543e+01 7.129737e+01 lineto +8.798117e+01 7.176559e+01 lineto +8.592126e+01 7.458737e+01 lineto +8.445034e+01 7.416111e+01 lineto +closepath +gsave +7.123308e-01 7.123308e-01 7.123308e-01 setrgbcolor +fill +grestore +newpath +8.238801e+01 7.681166e+01 moveto +8.445034e+01 7.416111e+01 lineto +8.592126e+01 7.458737e+01 lineto +8.370296e+01 7.719273e+01 lineto +8.238801e+01 7.681166e+01 lineto +closepath +gsave +6.889262e-01 6.889262e-01 6.889262e-01 setrgbcolor +fill +grestore +newpath +8.019404e+01 7.922896e+01 moveto +8.238801e+01 7.681166e+01 lineto +8.370296e+01 7.719273e+01 lineto +8.134308e+01 7.956194e+01 lineto +8.019404e+01 7.922896e+01 lineto +closepath +gsave +6.639722e-01 6.639722e-01 6.639722e-01 setrgbcolor +fill +grestore +newpath +7.788505e+01 8.13947e+01 moveto +8.019404e+01 7.922896e+01 lineto +8.134308e+01 7.956194e+01 lineto +7.885947e+01 8.167708e+01 lineto +7.788505e+01 8.13947e+01 lineto +closepath +gsave +6.381031e-01 6.381031e-01 6.381031e-01 setrgbcolor +fill +grestore +newpath +7.547851e+01 8.329248e+01 moveto +7.788505e+01 8.13947e+01 lineto +7.885947e+01 8.167708e+01 lineto +7.627094e+01 8.352212e+01 lineto +7.547851e+01 8.329248e+01 lineto +closepath +gsave +6.119412e-01 6.119412e-01 6.119412e-01 setrgbcolor +fill +grestore +newpath +7.299264e+01 8.490794e+01 moveto +7.547851e+01 8.329248e+01 lineto +7.627094e+01 8.352212e+01 lineto +7.359708e+01 8.50831e+01 lineto +7.299264e+01 8.490794e+01 lineto +closepath +gsave +5.86074e-01 5.86074e-01 5.86074e-01 setrgbcolor +fill +grestore +newpath +7.044627e+01 8.622886e+01 moveto +7.299264e+01 8.490794e+01 lineto +7.359708e+01 8.50831e+01 lineto +7.085814e+01 8.634821e+01 lineto +7.044627e+01 8.622886e+01 lineto +closepath +gsave +5.610334e-01 5.610334e-01 5.610334e-01 setrgbcolor +fill +grestore +newpath +6.785866e+01 8.724522e+01 moveto +7.044627e+01 8.622886e+01 lineto +7.085814e+01 8.634821e+01 lineto +6.807485e+01 8.730787e+01 lineto +6.785866e+01 8.724522e+01 lineto +closepath +gsave +5.372795e-01 5.372795e-01 5.372795e-01 setrgbcolor +fill +grestore +newpath +6.524942e+01 8.794934e+01 moveto +6.785866e+01 8.724522e+01 lineto +6.807485e+01 8.730787e+01 lineto +6.526828e+01 8.795481e+01 lineto +6.524942e+01 8.794934e+01 lineto +closepath +gsave +5.151879e-01 5.151879e-01 5.151879e-01 setrgbcolor +fill +grestore +newpath +6.263828e+01 8.833588e+01 moveto +6.524942e+01 8.794934e+01 lineto +6.526828e+01 8.795481e+01 lineto +6.245968e+01 8.828413e+01 lineto +6.263828e+01 8.833588e+01 lineto +closepath +gsave +4.950423e-01 4.950423e-01 4.950423e-01 setrgbcolor +fill +grestore +newpath +7.861666e+01 5.69429e+00 moveto +7.601913e+01 4.722891e+00 lineto +7.672592e+01 4.958478e+00 lineto +7.949006e+01 5.985412e+00 lineto +7.861666e+01 5.69429e+00 lineto +closepath +gsave +4.669553e-01 4.669553e-01 4.669553e-01 setrgbcolor +fill +grestore +newpath +8.111111e+01 6.970821e+00 moveto +7.861666e+01 5.69429e+00 lineto +7.949006e+01 5.985412e+00 lineto +8.214451e+01 7.315273e+00 lineto +8.111111e+01 6.970821e+00 lineto +closepath +gsave +4.832675e-01 4.832675e-01 4.832675e-01 setrgbcolor +fill +grestore +newpath +8.348359e+01 8.54282e+00 moveto +8.111111e+01 6.970821e+00 lineto +8.214451e+01 7.315273e+00 lineto +8.466916e+01 8.937995e+00 lineto +8.348359e+01 8.54282e+00 lineto +closepath +gsave +5.016942e-01 5.016942e-01 5.016942e-01 setrgbcolor +fill +grestore +newpath +8.571614e+01 1.039839e+01 moveto +8.348359e+01 8.54282e+00 lineto +8.466916e+01 8.937995e+00 lineto +8.704491e+01 1.084129e+01 lineto +8.571614e+01 1.039839e+01 lineto +closepath +gsave +5.221028e-01 5.221028e-01 5.221028e-01 setrgbcolor +fill +grestore +newpath +8.779186e+01 1.252347e+01 moveto +8.571614e+01 1.039839e+01 lineto +8.704491e+01 1.084129e+01 lineto +8.925377e+01 1.301076e+01 lineto +8.779186e+01 1.252347e+01 lineto +closepath +gsave +5.442715e-01 5.442715e-01 5.442715e-01 setrgbcolor +fill +grestore +newpath +8.969503e+01 1.490199e+01 moveto +8.779186e+01 1.252347e+01 lineto +8.925377e+01 1.301076e+01 lineto +9.127902e+01 1.542996e+01 lineto +8.969503e+01 1.490199e+01 lineto +closepath +gsave +5.678884e-01 5.678884e-01 5.678884e-01 setrgbcolor +fill +grestore +newpath +9.141126e+01 1.751593e+01 moveto +8.969503e+01 1.490199e+01 lineto +9.127902e+01 1.542996e+01 lineto +9.310532e+01 1.80806e+01 lineto +9.141126e+01 1.751593e+01 lineto +closepath +gsave +5.925569e-01 5.925569e-01 5.925569e-01 setrgbcolor +fill +grestore +newpath +9.292754e+01 2.034551e+01 moveto +9.141126e+01 1.751593e+01 lineto +9.310532e+01 1.80806e+01 lineto +9.471886e+01 2.09426e+01 lineto +9.292754e+01 2.034551e+01 lineto +closepath +gsave +6.178045e-01 6.178045e-01 6.178045e-01 setrgbcolor +fill +grestore +newpath +9.423239e+01 2.336931e+01 moveto +9.292754e+01 2.034551e+01 lineto +9.471886e+01 2.09426e+01 lineto +9.610741e+01 2.399429e+01 lineto +9.423239e+01 2.336931e+01 lineto +closepath +gsave +6.430966e-01 6.430966e-01 6.430966e-01 setrgbcolor +fill +grestore +newpath +9.531594e+01 2.656443e+01 moveto +9.423239e+01 2.336931e+01 lineto +9.610741e+01 2.399429e+01 lineto +9.726046e+01 2.721258e+01 lineto +9.531594e+01 2.656443e+01 lineto +closepath +gsave +6.678534e-01 6.678534e-01 6.678534e-01 setrgbcolor +fill +grestore +newpath +9.616999e+01 2.990669e+01 moveto +9.531594e+01 2.656443e+01 lineto +9.726046e+01 2.721258e+01 lineto +9.816929e+01 3.057309e+01 lineto +9.616999e+01 2.990669e+01 lineto +closepath +gsave +6.914705e-01 6.914705e-01 6.914705e-01 setrgbcolor +fill +grestore +newpath +9.678807e+01 3.337078e+01 moveto +9.616999e+01 2.990669e+01 lineto +9.816929e+01 3.057309e+01 lineto +9.882701e+01 3.40504e+01 lineto +9.678807e+01 3.337078e+01 lineto +closepath +gsave +7.133416e-01 7.133416e-01 7.133416e-01 setrgbcolor +fill +grestore +newpath +9.71655e+01 3.693047e+01 moveto +9.678807e+01 3.337078e+01 lineto +9.882701e+01 3.40504e+01 lineto +9.922865e+01 3.761817e+01 lineto +9.71655e+01 3.693047e+01 lineto +closepath +gsave +7.328817e-01 7.328817e-01 7.328817e-01 setrgbcolor +fill +grestore +newpath +9.729942e+01 4.055883e+01 moveto +9.71655e+01 3.693047e+01 lineto +9.922865e+01 3.761817e+01 lineto +9.937116e+01 4.124939e+01 lineto +9.729942e+01 4.055883e+01 lineto +closepath +gsave +7.495511e-01 7.495511e-01 7.495511e-01 setrgbcolor +fill +grestore +newpath +9.718882e+01 4.422838e+01 moveto +9.729942e+01 4.055883e+01 lineto +9.937116e+01 4.124939e+01 lineto +9.925347e+01 4.491657e+01 lineto +9.718882e+01 4.422838e+01 lineto +closepath +gsave +7.628772e-01 7.628772e-01 7.628772e-01 setrgbcolor +fill +grestore +newpath +9.683453e+01 4.791135e+01 moveto +9.718882e+01 4.422838e+01 lineto +9.925347e+01 4.491657e+01 lineto +9.887646e+01 4.859196e+01 lineto +9.683453e+01 4.791135e+01 lineto +closepath +gsave +7.724747e-01 7.724747e-01 7.724747e-01 setrgbcolor +fill +grestore +newpath +9.623925e+01 5.157984e+01 moveto +9.683453e+01 4.791135e+01 lineto +9.887646e+01 4.859196e+01 lineto +9.824299e+01 5.224773e+01 lineto +9.623925e+01 5.157984e+01 lineto +closepath +gsave +7.780619e-01 7.780619e-01 7.780619e-01 setrgbcolor +fill +grestore +newpath +9.540747e+01 5.520609e+01 moveto +9.623925e+01 5.157984e+01 lineto +9.824299e+01 5.224773e+01 lineto +9.735786e+01 5.58562e+01 lineto +9.540747e+01 5.520609e+01 lineto +closepath +gsave +7.794731e-01 7.794731e-01 7.794731e-01 setrgbcolor +fill +grestore +newpath +9.434549e+01 5.876265e+01 moveto +9.540747e+01 5.520609e+01 lineto +9.735786e+01 5.58562e+01 lineto +9.622777e+01 5.939005e+01 lineto +9.434549e+01 5.876265e+01 lineto +closepath +gsave +7.766654e-01 7.766654e-01 7.766654e-01 setrgbcolor +fill +grestore +newpath +9.306136e+01 6.222259e+01 moveto +9.434549e+01 5.876265e+01 lineto +9.622777e+01 5.939005e+01 lineto +9.486126e+01 6.282253e+01 lineto +9.306136e+01 6.222259e+01 lineto +closepath +gsave +7.697212e-01 7.697212e-01 7.697212e-01 setrgbcolor +fill +grestore +newpath +9.156478e+01 6.555971e+01 moveto +9.306136e+01 6.222259e+01 lineto +9.486126e+01 6.282253e+01 lineto +9.32687e+01 6.612766e+01 lineto +9.156478e+01 6.555971e+01 lineto +closepath +gsave +7.588444e-01 7.588444e-01 7.588444e-01 setrgbcolor +fill +grestore +newpath +8.98671e+01 6.874876e+01 moveto +9.156478e+01 6.555971e+01 lineto +9.32687e+01 6.612766e+01 lineto +9.146212e+01 6.928042e+01 lineto +8.98671e+01 6.874876e+01 lineto +closepath +gsave +7.443516e-01 7.443516e-01 7.443516e-01 setrgbcolor +fill +grestore +newpath +8.798117e+01 7.176559e+01 moveto +8.98671e+01 6.874876e+01 lineto +9.146212e+01 6.928042e+01 lineto +8.945522e+01 7.225693e+01 lineto +8.798117e+01 7.176559e+01 lineto +closepath +gsave +7.266588e-01 7.266588e-01 7.266588e-01 setrgbcolor +fill +grestore +newpath +8.592126e+01 7.458737e+01 moveto +8.798117e+01 7.176559e+01 lineto +8.945522e+01 7.225693e+01 lineto +8.726318e+01 7.503466e+01 lineto +8.592126e+01 7.458737e+01 lineto +closepath +gsave +7.062636e-01 7.062636e-01 7.062636e-01 setrgbcolor +fill +grestore +newpath +8.370296e+01 7.719273e+01 moveto +8.592126e+01 7.458737e+01 lineto +8.726318e+01 7.503466e+01 lineto +8.49026e+01 7.759259e+01 lineto +8.370296e+01 7.719273e+01 lineto +closepath +gsave +6.837245e-01 6.837245e-01 6.837245e-01 setrgbcolor +fill +grestore +newpath +8.134308e+01 7.956194e+01 moveto +8.370296e+01 7.719273e+01 lineto +8.49026e+01 7.759259e+01 lineto +8.239135e+01 7.991135e+01 lineto +8.134308e+01 7.956194e+01 lineto +closepath +gsave +6.596378e-01 6.596378e-01 6.596378e-01 setrgbcolor +fill +grestore +newpath +7.885947e+01 8.167708e+01 moveto +8.134308e+01 7.956194e+01 lineto +8.239135e+01 7.991135e+01 lineto +7.974844e+01 8.197339e+01 lineto +7.885947e+01 8.167708e+01 lineto +closepath +gsave +6.346136e-01 6.346136e-01 6.346136e-01 setrgbcolor +fill +grestore +newpath +7.627094e+01 8.352212e+01 moveto +7.885947e+01 8.167708e+01 lineto +7.974844e+01 8.197339e+01 lineto +7.699387e+01 8.376309e+01 lineto +7.627094e+01 8.352212e+01 lineto +closepath +gsave +6.092526e-01 6.092526e-01 6.092526e-01 setrgbcolor +fill +grestore +newpath +7.359708e+01 8.50831e+01 moveto +7.627094e+01 8.352212e+01 lineto +7.699387e+01 8.376309e+01 lineto +7.414851e+01 8.526691e+01 lineto +7.359708e+01 8.50831e+01 lineto +closepath +gsave +5.841235e-01 5.841235e-01 5.841235e-01 setrgbcolor +fill +grestore +newpath +7.085814e+01 8.634821e+01 moveto +7.359708e+01 8.50831e+01 lineto +7.414851e+01 8.526691e+01 lineto +7.123389e+01 8.647346e+01 lineto +7.085814e+01 8.634821e+01 lineto +closepath +gsave +5.597435e-01 5.597435e-01 5.597435e-01 setrgbcolor +fill +grestore +newpath +6.807485e+01 8.730787e+01 moveto +7.085814e+01 8.634821e+01 lineto +7.123389e+01 8.647346e+01 lineto +6.827207e+01 8.737361e+01 lineto +6.807485e+01 8.730787e+01 lineto +closepath +gsave +5.365621e-01 5.365621e-01 5.365621e-01 setrgbcolor +fill +grestore +newpath +6.526828e+01 8.795481e+01 moveto +6.807485e+01 8.730787e+01 lineto +6.827207e+01 8.737361e+01 lineto +6.528549e+01 8.796054e+01 lineto +6.526828e+01 8.795481e+01 lineto +closepath +gsave +5.149488e-01 5.149488e-01 5.149488e-01 setrgbcolor +fill +grestore +newpath +6.245968e+01 8.828413e+01 moveto +6.526828e+01 8.795481e+01 lineto +6.528549e+01 8.796054e+01 lineto +6.229674e+01 8.822981e+01 lineto +6.245968e+01 8.828413e+01 lineto +closepath +gsave +4.951854e-01 4.951854e-01 4.951854e-01 setrgbcolor +fill +grestore +newpath +8.214451e+01 7.315273e+00 moveto +7.949006e+01 5.985412e+00 lineto +8.027412e+01 6.288427e+00 lineto +8.30722e+01 7.673799e+00 lineto +8.214451e+01 7.315273e+00 lineto +closepath +gsave +4.810202e-01 4.810202e-01 4.810202e-01 setrgbcolor +fill +grestore +newpath +8.466916e+01 8.937995e+00 moveto +8.214451e+01 7.315273e+00 lineto +8.30722e+01 7.673799e+00 lineto +8.573346e+01 9.349316e+00 lineto +8.466916e+01 8.937995e+00 lineto +closepath +gsave +4.987086e-01 4.987086e-01 4.987086e-01 setrgbcolor +fill +grestore +newpath +8.704491e+01 1.084129e+01 moveto +8.466916e+01 8.937995e+00 lineto +8.573346e+01 9.349316e+00 lineto +8.823777e+01 1.13023e+01 lineto +8.704491e+01 1.084129e+01 lineto +closepath +gsave +5.182839e-01 5.182839e-01 5.182839e-01 setrgbcolor +fill +grestore +newpath +8.925377e+01 1.301076e+01 moveto +8.704491e+01 1.084129e+01 lineto +8.823777e+01 1.13023e+01 lineto +9.056615e+01 1.351795e+01 lineto +8.925377e+01 1.301076e+01 lineto +closepath +gsave +5.39537e-01 5.39537e-01 5.39537e-01 setrgbcolor +fill +grestore +newpath +9.127902e+01 1.542996e+01 moveto +8.925377e+01 1.301076e+01 lineto +9.056615e+01 1.351795e+01 lineto +9.270098e+01 1.597951e+01 lineto +9.127902e+01 1.542996e+01 lineto +closepath +gsave +5.621741e-01 5.621741e-01 5.621741e-01 setrgbcolor +fill +grestore +newpath +9.310532e+01 1.80806e+01 moveto +9.127902e+01 1.542996e+01 lineto +9.270098e+01 1.597951e+01 lineto +9.462611e+01 1.866834e+01 lineto +9.310532e+01 1.80806e+01 lineto +closepath +gsave +5.858212e-01 5.858212e-01 5.858212e-01 setrgbcolor +fill +grestore +newpath +9.471886e+01 2.09426e+01 moveto +9.310532e+01 1.80806e+01 lineto +9.462611e+01 1.866834e+01 lineto +9.632696e+01 2.156408e+01 lineto +9.471886e+01 2.09426e+01 lineto +closepath +gsave +6.100321e-01 6.100321e-01 6.100321e-01 setrgbcolor +fill +grestore +newpath +9.610741e+01 2.399429e+01 moveto +9.471886e+01 2.09426e+01 lineto +9.632696e+01 2.156408e+01 lineto +9.779064e+01 2.464481e+01 lineto +9.610741e+01 2.399429e+01 lineto +closepath +gsave +6.343014e-01 6.343014e-01 6.343014e-01 setrgbcolor +fill +grestore +newpath +9.726046e+01 2.721258e+01 moveto +9.610741e+01 2.399429e+01 lineto +9.779064e+01 2.464481e+01 lineto +9.900609e+01 2.788721e+01 lineto +9.726046e+01 2.721258e+01 lineto +closepath +gsave +6.580802e-01 6.580802e-01 6.580802e-01 setrgbcolor +fill +grestore +newpath +9.816929e+01 3.057309e+01 moveto +9.726046e+01 2.721258e+01 lineto +9.900609e+01 2.788721e+01 lineto +9.996409e+01 3.126673e+01 lineto +9.816929e+01 3.057309e+01 lineto +closepath +gsave +6.807956e-01 6.807956e-01 6.807956e-01 setrgbcolor +fill +grestore +newpath +9.882701e+01 3.40504e+01 moveto +9.816929e+01 3.057309e+01 lineto +9.996409e+01 3.126673e+01 lineto +1.006574e+02 3.475779e+01 lineto +9.882701e+01 3.40504e+01 lineto +closepath +gsave +7.018712e-01 7.018712e-01 7.018712e-01 setrgbcolor +fill +grestore +newpath +9.922865e+01 3.761817e+01 moveto +9.882701e+01 3.40504e+01 lineto +1.006574e+02 3.475779e+01 lineto +1.010808e+02 3.833396e+01 lineto +9.922865e+01 3.761817e+01 lineto +closepath +gsave +7.2075e-01 7.2075e-01 7.2075e-01 setrgbcolor +fill +grestore +newpath +9.937116e+01 4.124939e+01 moveto +9.922865e+01 3.761817e+01 lineto +1.010808e+02 3.833396e+01 lineto +1.01231e+02 4.196816e+01 lineto +9.937116e+01 4.124939e+01 lineto +closepath +gsave +7.369164e-01 7.369164e-01 7.369164e-01 setrgbcolor +fill +grestore +newpath +9.925347e+01 4.491657e+01 moveto +9.937116e+01 4.124939e+01 lineto +1.01231e+02 4.196816e+01 lineto +1.011069e+02 4.563288e+01 lineto +9.925347e+01 4.491657e+01 lineto +closepath +gsave +7.499167e-01 7.499167e-01 7.499167e-01 setrgbcolor +fill +grestore +newpath +9.887646e+01 4.859196e+01 moveto +9.925347e+01 4.491657e+01 lineto +1.011069e+02 4.563288e+01 lineto +1.007095e+02 4.930039e+01 lineto +9.887646e+01 4.859196e+01 lineto +closepath +gsave +7.593791e-01 7.593791e-01 7.593791e-01 setrgbcolor +fill +grestore +newpath +9.824299e+01 5.224773e+01 moveto +9.887646e+01 4.859196e+01 lineto +1.007095e+02 4.930039e+01 lineto +1.000418e+02 5.294291e+01 lineto +9.824299e+01 5.224773e+01 lineto +closepath +gsave +7.650286e-01 7.650286e-01 7.650286e-01 setrgbcolor +fill +grestore +newpath +9.735786e+01 5.58562e+01 moveto +9.824299e+01 5.224773e+01 lineto +1.000418e+02 5.294291e+01 lineto +9.910875e+01 5.653286e+01 lineto +9.735786e+01 5.58562e+01 lineto +closepath +gsave +7.66699e-01 7.66699e-01 7.66699e-01 setrgbcolor +fill +grestore +newpath +9.622777e+01 5.939005e+01 moveto +9.735786e+01 5.58562e+01 lineto +9.910875e+01 5.653286e+01 lineto +9.791751e+01 6.004308e+01 lineto +9.622777e+01 5.939005e+01 lineto +closepath +gsave +7.643404e-01 7.643404e-01 7.643404e-01 setrgbcolor +fill +grestore +newpath +9.486126e+01 6.282253e+01 moveto +9.622777e+01 5.939005e+01 lineto +9.791751e+01 6.004308e+01 lineto +9.647706e+01 6.344699e+01 lineto +9.486126e+01 6.282253e+01 lineto +closepath +gsave +7.580212e-01 7.580212e-01 7.580212e-01 setrgbcolor +fill +grestore +newpath +9.32687e+01 6.612766e+01 moveto +9.486126e+01 6.282253e+01 lineto +9.647706e+01 6.344699e+01 lineto +9.479832e+01 6.671882e+01 lineto +9.32687e+01 6.612766e+01 lineto +closepath +gsave +7.479254e-01 7.479254e-01 7.479254e-01 setrgbcolor +fill +grestore +newpath +9.146212e+01 6.928042e+01 moveto +9.32687e+01 6.612766e+01 lineto +9.479832e+01 6.671882e+01 lineto +9.2894e+01 6.983379e+01 lineto +9.146212e+01 6.928042e+01 lineto +closepath +gsave +7.343444e-01 7.343444e-01 7.343444e-01 setrgbcolor +fill +grestore +newpath +8.945522e+01 7.225693e+01 moveto +9.146212e+01 6.928042e+01 lineto +9.2894e+01 6.983379e+01 lineto +9.07785e+01 7.276833e+01 lineto +8.945522e+01 7.225693e+01 lineto +closepath +gsave +7.176653e-01 7.176653e-01 7.176653e-01 setrgbcolor +fill +grestore +newpath +8.726318e+01 7.503466e+01 moveto +8.945522e+01 7.225693e+01 lineto +9.07785e+01 7.276833e+01 lineto +8.846785e+01 7.550023e+01 lineto +8.726318e+01 7.503466e+01 lineto +closepath +gsave +6.983538e-01 6.983538e-01 6.983538e-01 setrgbcolor +fill +grestore +newpath +8.49026e+01 7.759259e+01 moveto +8.726318e+01 7.503466e+01 lineto +8.846785e+01 7.550023e+01 lineto +8.597954e+01 7.80088e+01 lineto +8.49026e+01 7.759259e+01 lineto +closepath +gsave +6.769354e-01 6.769354e-01 6.769354e-01 setrgbcolor +fill +grestore +newpath +8.239135e+01 7.991135e+01 moveto +8.49026e+01 7.759259e+01 lineto +8.597954e+01 7.80088e+01 lineto +8.33324e+01 8.027504e+01 lineto +8.239135e+01 7.991135e+01 lineto +closepath +gsave +6.539735e-01 6.539735e-01 6.539735e-01 setrgbcolor +fill +grestore +newpath +7.974844e+01 8.197339e+01 moveto +8.239135e+01 7.991135e+01 lineto +8.33324e+01 8.027504e+01 lineto +8.054648e+01 8.228181e+01 lineto +7.974844e+01 8.197339e+01 lineto +closepath +gsave +6.300472e-01 6.300472e-01 6.300472e-01 setrgbcolor +fill +grestore +newpath +7.699387e+01 8.376309e+01 moveto +7.974844e+01 8.197339e+01 lineto +8.054648e+01 8.228181e+01 lineto +7.764287e+01 8.401391e+01 lineto +7.699387e+01 8.376309e+01 lineto +closepath +gsave +6.057287e-01 6.057287e-01 6.057287e-01 setrgbcolor +fill +grestore +newpath +7.414851e+01 8.526691e+01 moveto +7.699387e+01 8.376309e+01 lineto +7.764287e+01 8.401391e+01 lineto +7.464354e+01 8.545822e+01 lineto +7.414851e+01 8.526691e+01 lineto +closepath +gsave +5.815627e-01 5.815627e-01 5.815627e-01 setrgbcolor +fill +grestore +newpath +7.123389e+01 8.647346e+01 moveto +7.414851e+01 8.526691e+01 lineto +7.464354e+01 8.545822e+01 lineto +7.157121e+01 8.660382e+01 lineto +7.123389e+01 8.647346e+01 lineto +closepath +gsave +5.580468e-01 5.580468e-01 5.580468e-01 setrgbcolor +fill +grestore +newpath +6.827207e+01 8.737361e+01 moveto +7.123389e+01 8.647346e+01 lineto +7.157121e+01 8.660382e+01 lineto +6.844913e+01 8.744203e+01 lineto +6.827207e+01 8.737361e+01 lineto +closepath +gsave +5.356165e-01 5.356165e-01 5.356165e-01 setrgbcolor +fill +grestore +newpath +6.528549e+01 8.796054e+01 moveto +6.827207e+01 8.737361e+01 lineto +6.844913e+01 8.744203e+01 lineto +6.530094e+01 8.796651e+01 lineto +6.528549e+01 8.796054e+01 lineto +closepath +gsave +5.146329e-01 5.146329e-01 5.146329e-01 setrgbcolor +fill +grestore +newpath +6.229674e+01 8.822981e+01 moveto +6.528549e+01 8.796054e+01 lineto +6.530094e+01 8.796651e+01 lineto +6.215047e+01 8.817328e+01 lineto +6.229674e+01 8.822981e+01 lineto +closepath +gsave +4.953751e-01 4.953751e-01 4.953751e-01 setrgbcolor +fill +grestore +newpath +8.30722e+01 7.673799e+00 moveto +8.027412e+01 6.288427e+00 lineto +8.096401e+01 6.601469e+00 lineto +8.388847e+01 8.044187e+00 lineto +8.30722e+01 7.673799e+00 lineto +closepath +gsave +4.782936e-01 4.782936e-01 4.782936e-01 setrgbcolor +fill +grestore +newpath +8.573346e+01 9.349316e+00 moveto +8.30722e+01 7.673799e+00 lineto +8.388847e+01 8.044187e+00 lineto +8.666994e+01 9.774247e+00 lineto +8.573346e+01 9.349316e+00 lineto +closepath +gsave +4.950931e-01 4.950931e-01 4.950931e-01 setrgbcolor +fill +grestore +newpath +8.823777e+01 1.13023e+01 moveto +8.573346e+01 9.349316e+00 lineto +8.666994e+01 9.774247e+00 lineto +8.928735e+01 1.177855e+01 lineto +8.823777e+01 1.13023e+01 lineto +closepath +gsave +5.136661e-01 5.136661e-01 5.136661e-01 setrgbcolor +fill +grestore +newpath +9.056615e+01 1.351795e+01 moveto +8.823777e+01 1.13023e+01 lineto +8.928735e+01 1.177855e+01 lineto +9.17209e+01 1.404193e+01 lineto +9.056615e+01 1.351795e+01 lineto +closepath +gsave +5.338189e-01 5.338189e-01 5.338189e-01 setrgbcolor +fill +grestore +newpath +9.270098e+01 1.597951e+01 moveto +9.056615e+01 1.351795e+01 lineto +9.17209e+01 1.404193e+01 lineto +9.395216e+01 1.654724e+01 lineto +9.270098e+01 1.597951e+01 lineto +closepath +gsave +5.552793e-01 5.552793e-01 5.552793e-01 setrgbcolor +fill +grestore +newpath +9.462611e+01 1.866834e+01 moveto +9.270098e+01 1.597951e+01 lineto +9.395216e+01 1.654724e+01 lineto +9.596424e+01 1.927552e+01 lineto +9.462611e+01 1.866834e+01 lineto +closepath +gsave +5.776999e-01 5.776999e-01 5.776999e-01 setrgbcolor +fill +grestore +newpath +9.632696e+01 2.156408e+01 moveto +9.462611e+01 1.866834e+01 lineto +9.596424e+01 1.927552e+01 lineto +9.774191e+01 2.220612e+01 lineto +9.632696e+01 2.156408e+01 lineto +closepath +gsave +6.00666e-01 6.00666e-01 6.00666e-01 setrgbcolor +fill +grestore +newpath +9.779064e+01 2.464481e+01 moveto +9.632696e+01 2.156408e+01 lineto +9.774191e+01 2.220612e+01 lineto +9.927171e+01 2.531685e+01 lineto +9.779064e+01 2.464481e+01 lineto +closepath +gsave +6.237068e-01 6.237068e-01 6.237068e-01 setrgbcolor +fill +grestore +newpath +9.900609e+01 2.788721e+01 moveto +9.779064e+01 2.464481e+01 lineto +9.927171e+01 2.531685e+01 lineto +1.005421e+02 2.858416e+01 lineto +9.900609e+01 2.788721e+01 lineto +closepath +gsave +6.463105e-01 6.463105e-01 6.463105e-01 setrgbcolor +fill +grestore +newpath +9.996409e+01 3.126673e+01 moveto +9.900609e+01 2.788721e+01 lineto +1.005421e+02 2.858416e+01 lineto +1.015433e+02 3.198332e+01 lineto +9.996409e+01 3.126673e+01 lineto +closepath +gsave +6.679411e-01 6.679411e-01 6.679411e-01 setrgbcolor +fill +grestore +newpath +1.006574e+02 3.475779e+01 moveto +9.996409e+01 3.126673e+01 lineto +1.015433e+02 3.198332e+01 lineto +1.02268e+02 3.548858e+01 lineto +1.006574e+02 3.475779e+01 lineto +closepath +gsave +6.880587e-01 6.880587e-01 6.880587e-01 setrgbcolor +fill +grestore +newpath +1.010808e+02 3.833396e+01 moveto +1.006574e+02 3.475779e+01 lineto +1.02268e+02 3.548858e+01 lineto +1.027104e+02 3.907343e+01 lineto +1.010808e+02 3.833396e+01 lineto +closepath +gsave +7.061394e-01 7.061394e-01 7.061394e-01 setrgbcolor +fill +grestore +newpath +1.01231e+02 4.196816e+01 moveto +1.010808e+02 3.833396e+01 lineto +1.027104e+02 3.907343e+01 lineto +1.028675e+02 4.271071e+01 lineto +1.01231e+02 4.196816e+01 lineto +closepath +gsave +7.216963e-01 7.216963e-01 7.216963e-01 setrgbcolor +fill +grestore +newpath +1.011069e+02 4.563288e+01 moveto +1.01231e+02 4.196816e+01 lineto +1.028675e+02 4.271071e+01 lineto +1.027378e+02 4.637289e+01 lineto +1.011069e+02 4.563288e+01 lineto +closepath +gsave +7.342991e-01 7.342991e-01 7.342991e-01 setrgbcolor +fill +grestore +newpath +1.007095e+02 4.930039e+01 moveto +1.011069e+02 4.563288e+01 lineto +1.027378e+02 4.637289e+01 lineto +1.023224e+02 5.003225e+01 lineto +1.007095e+02 4.930039e+01 lineto +closepath +gsave +7.435918e-01 7.435918e-01 7.435918e-01 setrgbcolor +fill +grestore +newpath +1.000418e+02 5.294291e+01 moveto +1.007095e+02 4.930039e+01 lineto +1.023224e+02 5.003225e+01 lineto +1.016245e+02 5.366108e+01 lineto +1.000418e+02 5.294291e+01 lineto +closepath +gsave +7.493078e-01 7.493078e-01 7.493078e-01 setrgbcolor +fill +grestore +newpath +9.910875e+01 5.653286e+01 moveto +1.000418e+02 5.294291e+01 lineto +1.016245e+02 5.366108e+01 lineto +1.006494e+02 5.723192e+01 lineto +9.910875e+01 5.653286e+01 lineto +closepath +gsave +7.512811e-01 7.512811e-01 7.512811e-01 setrgbcolor +fill +grestore +newpath +9.791751e+01 6.004308e+01 moveto +9.910875e+01 5.653286e+01 lineto +1.006494e+02 5.723192e+01 lineto +9.940431e+01 6.071772e+01 lineto +9.791751e+01 6.004308e+01 lineto +closepath +gsave +7.494536e-01 7.494536e-01 7.494536e-01 setrgbcolor +fill +grestore +newpath +9.647706e+01 6.344699e+01 moveto +9.791751e+01 6.004308e+01 lineto +9.940431e+01 6.071772e+01 lineto +9.78988e+01 6.409211e+01 lineto +9.647706e+01 6.344699e+01 lineto +closepath +gsave +7.438775e-01 7.438775e-01 7.438775e-01 setrgbcolor +fill +grestore +newpath +9.479832e+01 6.671882e+01 moveto +9.647706e+01 6.344699e+01 lineto +9.78988e+01 6.409211e+01 lineto +9.614424e+01 6.732953e+01 lineto +9.479832e+01 6.671882e+01 lineto +closepath +gsave +7.347132e-01 7.347132e-01 7.347132e-01 setrgbcolor +fill +grestore +newpath +9.2894e+01 6.983379e+01 moveto +9.479832e+01 6.671882e+01 lineto +9.614424e+01 6.732953e+01 lineto +9.41539e+01 7.040548e+01 lineto +9.2894e+01 6.983379e+01 lineto +closepath +gsave +7.222228e-01 7.222228e-01 7.222228e-01 setrgbcolor +fill +grestore +newpath +9.07785e+01 7.276833e+01 moveto +9.2894e+01 6.983379e+01 lineto +9.41539e+01 7.040548e+01 lineto +9.194285e+01 7.329666e+01 lineto +9.07785e+01 7.276833e+01 lineto +closepath +gsave +7.067586e-01 7.067586e-01 7.067586e-01 setrgbcolor +fill +grestore +newpath +8.846785e+01 7.550023e+01 moveto +9.07785e+01 7.276833e+01 lineto +9.194285e+01 7.329666e+01 lineto +8.952783e+01 7.59812e+01 lineto +8.846785e+01 7.550023e+01 lineto +closepath +gsave +6.887487e-01 6.887487e-01 6.887487e-01 setrgbcolor +fill +grestore +newpath +8.597954e+01 7.80088e+01 moveto +8.846785e+01 7.550023e+01 lineto +8.952783e+01 7.59812e+01 lineto +8.692713e+01 7.843877e+01 lineto +8.597954e+01 7.80088e+01 lineto +closepath +gsave +6.68679e-01 6.68679e-01 6.68679e-01 setrgbcolor +fill +grestore +newpath +8.33324e+01 8.027504e+01 moveto +8.597954e+01 7.80088e+01 lineto +8.692713e+01 7.843877e+01 lineto +8.416043e+01 8.065076e+01 lineto +8.33324e+01 8.027504e+01 lineto +closepath +gsave +6.470738e-01 6.470738e-01 6.470738e-01 setrgbcolor +fill +grestore +newpath +8.054648e+01 8.228181e+01 moveto +8.33324e+01 8.027504e+01 lineto +8.416043e+01 8.065076e+01 lineto +8.124867e+01 8.260043e+01 lineto +8.054648e+01 8.228181e+01 lineto +closepath +gsave +6.244747e-01 6.244747e-01 6.244747e-01 setrgbcolor +fill +grestore +newpath +7.764287e+01 8.401391e+01 moveto +8.054648e+01 8.228181e+01 lineto +8.124867e+01 8.260043e+01 lineto +7.821391e+01 8.427302e+01 lineto +7.764287e+01 8.401391e+01 lineto +closepath +gsave +6.014199e-01 6.014199e-01 6.014199e-01 setrgbcolor +fill +grestore +newpath +7.464354e+01 8.545822e+01 moveto +7.764287e+01 8.401391e+01 lineto +7.821391e+01 8.427302e+01 lineto +7.507911e+01 8.565587e+01 lineto +7.464354e+01 8.545822e+01 lineto +closepath +gsave +5.784244e-01 5.784244e-01 5.784244e-01 setrgbcolor +fill +grestore +newpath +7.157121e+01 8.660382e+01 moveto +7.464354e+01 8.545822e+01 lineto +7.507911e+01 8.565587e+01 lineto +7.186801e+01 8.67385e+01 lineto +7.157121e+01 8.660382e+01 lineto +closepath +gsave +5.559622e-01 5.559622e-01 5.559622e-01 setrgbcolor +fill +grestore +newpath +6.844913e+01 8.744203e+01 moveto +7.157121e+01 8.660382e+01 lineto +7.186801e+01 8.67385e+01 lineto +6.860491e+01 8.751272e+01 lineto +6.844913e+01 8.744203e+01 lineto +closepath +gsave +5.344514e-01 5.344514e-01 5.344514e-01 setrgbcolor +fill +grestore +newpath +6.530094e+01 8.796651e+01 moveto +6.844913e+01 8.744203e+01 lineto +6.860491e+01 8.751272e+01 lineto +6.531453e+01 8.797268e+01 lineto +6.530094e+01 8.796651e+01 lineto +closepath +gsave +5.142424e-01 5.142424e-01 5.142424e-01 setrgbcolor +fill +grestore +newpath +6.215047e+01 8.817328e+01 moveto +6.530094e+01 8.796651e+01 lineto +6.531453e+01 8.797268e+01 lineto +6.202176e+01 8.811488e+01 lineto +6.215047e+01 8.817328e+01 lineto +closepath +gsave +4.956103e-01 4.956103e-01 4.956103e-01 setrgbcolor +fill +grestore +newpath +8.666994e+01 9.774247e+00 moveto +8.388847e+01 8.044187e+00 lineto +8.458829e+01 8.424154e+00 lineto +8.747281e+01 1.021017e+01 lineto +8.666994e+01 9.774247e+00 lineto +closepath +gsave +4.909197e-01 4.909197e-01 4.909197e-01 setrgbcolor +fill +grestore +newpath +8.928735e+01 1.177855e+01 moveto +8.666994e+01 9.774247e+00 lineto +8.747281e+01 1.021017e+01 lineto +9.01872e+01 1.226712e+01 lineto +8.928735e+01 1.177855e+01 lineto +closepath +gsave +5.083456e-01 5.083456e-01 5.083456e-01 setrgbcolor +fill +grestore +newpath +9.17209e+01 1.404193e+01 moveto +8.928735e+01 1.177855e+01 lineto +9.01872e+01 1.226712e+01 lineto +9.271092e+01 1.457946e+01 lineto +9.17209e+01 1.404193e+01 lineto +closepath +gsave +5.272406e-01 5.272406e-01 5.272406e-01 setrgbcolor +fill +grestore +newpath +9.395216e+01 1.654724e+01 moveto +9.17209e+01 1.404193e+01 lineto +9.271092e+01 1.457946e+01 lineto +9.502484e+01 1.712965e+01 lineto +9.395216e+01 1.654724e+01 lineto +closepath +gsave +5.473566e-01 5.473566e-01 5.473566e-01 setrgbcolor +fill +grestore +newpath +9.596424e+01 1.927552e+01 moveto +9.395216e+01 1.654724e+01 lineto +9.502484e+01 1.712965e+01 lineto +9.711147e+01 1.989841e+01 lineto +9.596424e+01 1.927552e+01 lineto +closepath +gsave +5.683765e-01 5.683765e-01 5.683765e-01 setrgbcolor +fill +grestore +newpath +9.774191e+01 2.220612e+01 moveto +9.596424e+01 1.927552e+01 lineto +9.711147e+01 1.989841e+01 lineto +9.8955e+01 2.286477e+01 lineto +9.774191e+01 2.220612e+01 lineto +closepath +gsave +5.899208e-01 5.899208e-01 5.899208e-01 setrgbcolor +fill +grestore +newpath +9.927171e+01 2.531685e+01 moveto +9.774191e+01 2.220612e+01 lineto +9.8955e+01 2.286477e+01 lineto +1.005415e+02 2.600627e+01 lineto +9.927171e+01 2.531685e+01 lineto +closepath +gsave +6.115583e-01 6.115583e-01 6.115583e-01 setrgbcolor +fill +grestore +newpath +1.005421e+02 2.858416e+01 moveto +9.927171e+01 2.531685e+01 lineto +1.005415e+02 2.600627e+01 lineto +1.018589e+02 2.929914e+01 lineto +1.005421e+02 2.858416e+01 lineto +closepath +gsave +6.328184e-01 6.328184e-01 6.328184e-01 setrgbcolor +fill +grestore +newpath +1.015433e+02 3.198332e+01 moveto +1.005421e+02 2.858416e+01 lineto +1.018589e+02 2.929914e+01 lineto +1.028973e+02 3.271844e+01 lineto +1.015433e+02 3.198332e+01 lineto +closepath +gsave +6.532077e-01 6.532077e-01 6.532077e-01 setrgbcolor +fill +grestore +newpath +1.02268e+02 3.548858e+01 moveto +1.015433e+02 3.198332e+01 lineto +1.028973e+02 3.271844e+01 lineto +1.036487e+02 3.623828e+01 lineto +1.02268e+02 3.548858e+01 lineto +closepath +gsave +6.722269e-01 6.722269e-01 6.722269e-01 setrgbcolor +fill +grestore +newpath +1.027104e+02 3.907343e+01 moveto +1.02268e+02 3.548858e+01 lineto +1.036487e+02 3.623828e+01 lineto +1.041076e+02 3.983203e+01 lineto +1.027104e+02 3.907343e+01 lineto +closepath +gsave +6.893901e-01 6.893901e-01 6.893901e-01 setrgbcolor +fill +grestore +newpath +1.028675e+02 4.271071e+01 moveto +1.027104e+02 3.907343e+01 lineto +1.041076e+02 3.983203e+01 lineto +1.042704e+02 4.347246e+01 lineto +1.028675e+02 4.271071e+01 lineto +closepath +gsave +7.042433e-01 7.042433e-01 7.042433e-01 setrgbcolor +fill +grestore +newpath +1.027378e+02 4.637289e+01 moveto +1.028675e+02 4.271071e+01 lineto +1.042704e+02 4.347246e+01 lineto +1.04136e+02 4.713204e+01 lineto +1.027378e+02 4.637289e+01 lineto +closepath +gsave +7.163826e-01 7.163826e-01 7.163826e-01 setrgbcolor +fill +grestore +newpath +1.023224e+02 5.003225e+01 moveto +1.027378e+02 4.637289e+01 lineto +1.04136e+02 4.713204e+01 lineto +1.037052e+02 5.078304e+01 lineto +1.023224e+02 5.003225e+01 lineto +closepath +gsave +7.254708e-01 7.254708e-01 7.254708e-01 setrgbcolor +fill +grestore +newpath +1.016245e+02 5.366108e+01 moveto +1.023224e+02 5.003225e+01 lineto +1.037052e+02 5.078304e+01 lineto +1.029815e+02 5.439784e+01 lineto +1.016245e+02 5.366108e+01 lineto +closepath +gsave +7.312511e-01 7.312511e-01 7.312511e-01 setrgbcolor +fill +grestore +newpath +1.006494e+02 5.723192e+01 moveto +1.016245e+02 5.366108e+01 lineto +1.029815e+02 5.439784e+01 lineto +1.019702e+02 5.794906e+01 lineto +1.006494e+02 5.723192e+01 lineto +closepath +gsave +7.335583e-01 7.335583e-01 7.335583e-01 setrgbcolor +fill +grestore +newpath +9.940431e+01 6.071772e+01 moveto +1.006494e+02 5.723192e+01 lineto +1.019702e+02 5.794906e+01 lineto +1.00679e+02 6.140981e+01 lineto +9.940431e+01 6.071772e+01 lineto +closepath +gsave +7.323256e-01 7.323256e-01 7.323256e-01 setrgbcolor +fill +grestore +newpath +9.78988e+01 6.409211e+01 moveto +9.940431e+01 6.071772e+01 lineto +1.00679e+02 6.140981e+01 lineto +9.91177e+01 6.475391e+01 lineto +9.78988e+01 6.409211e+01 lineto +closepath +gsave +7.275874e-01 7.275874e-01 7.275874e-01 setrgbcolor +fill +grestore +newpath +9.614424e+01 6.732953e+01 moveto +9.78988e+01 6.409211e+01 lineto +9.91177e+01 6.475391e+01 lineto +9.729813e+01 6.795604e+01 lineto +9.614424e+01 6.732953e+01 lineto +closepath +gsave +7.194782e-01 7.194782e-01 7.194782e-01 setrgbcolor +fill +grestore +newpath +9.41539e+01 7.040548e+01 moveto +9.614424e+01 6.732953e+01 lineto +9.729813e+01 6.795604e+01 lineto +9.523405e+01 7.099195e+01 lineto +9.41539e+01 7.040548e+01 lineto +closepath +gsave +7.082269e-01 7.082269e-01 7.082269e-01 setrgbcolor +fill +grestore +newpath +9.194285e+01 7.329666e+01 moveto +9.41539e+01 7.040548e+01 lineto +9.523405e+01 7.099195e+01 lineto +9.294108e+01 7.383866e+01 lineto +9.194285e+01 7.329666e+01 lineto +closepath +gsave +6.941469e-01 6.941469e-01 6.941469e-01 setrgbcolor +fill +grestore +newpath +8.952783e+01 7.59812e+01 moveto +9.194285e+01 7.329666e+01 lineto +9.294108e+01 7.383866e+01 lineto +9.043659e+01 7.647461e+01 lineto +8.952783e+01 7.59812e+01 lineto +closepath +gsave +6.776239e-01 6.776239e-01 6.776239e-01 setrgbcolor +fill +grestore +newpath +8.692713e+01 7.843877e+01 moveto +8.952783e+01 7.59812e+01 lineto +9.043659e+01 7.647461e+01 lineto +8.773953e+01 7.887986e+01 lineto +8.692713e+01 7.843877e+01 lineto +closepath +gsave +6.590991e-01 6.590991e-01 6.590991e-01 setrgbcolor +fill +grestore +newpath +8.416043e+01 8.065076e+01 moveto +8.692713e+01 7.843877e+01 lineto +8.773953e+01 7.887986e+01 lineto +8.487032e+01 8.10362e+01 lineto +8.416043e+01 8.065076e+01 lineto +closepath +gsave +6.39052e-01 6.39052e-01 6.39052e-01 setrgbcolor +fill +grestore +newpath +8.124867e+01 8.260043e+01 moveto +8.416043e+01 8.065076e+01 lineto +8.487032e+01 8.10362e+01 lineto +8.185069e+01 8.29273e+01 lineto +8.124867e+01 8.260043e+01 lineto +closepath +gsave +6.179816e-01 6.179816e-01 6.179816e-01 setrgbcolor +fill +grestore +newpath +7.821391e+01 8.427302e+01 moveto +8.124867e+01 8.260043e+01 lineto +8.185069e+01 8.29273e+01 lineto +7.870349e+01 8.453884e+01 lineto +7.821391e+01 8.427302e+01 lineto +closepath +gsave +5.963868e-01 5.963868e-01 5.963868e-01 setrgbcolor +fill +grestore +newpath +7.507911e+01 8.565587e+01 moveto +7.821391e+01 8.427302e+01 lineto +7.870349e+01 8.453884e+01 lineto +7.545254e+01 8.585862e+01 lineto +7.507911e+01 8.565587e+01 lineto +closepath +gsave +5.747485e-01 5.747485e-01 5.747485e-01 setrgbcolor +fill +grestore +newpath +7.186801e+01 8.67385e+01 moveto +7.507911e+01 8.565587e+01 lineto +7.545254e+01 8.585862e+01 lineto +7.212247e+01 8.687666e+01 lineto +7.186801e+01 8.67385e+01 lineto +closepath +gsave +5.535131e-01 5.535131e-01 5.535131e-01 setrgbcolor +fill +grestore +newpath +6.860491e+01 8.751272e+01 moveto +7.186801e+01 8.67385e+01 lineto +7.212247e+01 8.687666e+01 lineto +6.873848e+01 8.758524e+01 lineto +6.860491e+01 8.751272e+01 lineto +closepath +gsave +5.330779e-01 5.330779e-01 5.330779e-01 setrgbcolor +fill +grestore +newpath +6.531453e+01 8.797268e+01 moveto +6.860491e+01 8.751272e+01 lineto +6.873848e+01 8.758524e+01 lineto +6.532618e+01 8.797901e+01 lineto +6.531453e+01 8.797268e+01 lineto +closepath +gsave +5.137803e-01 5.137803e-01 5.137803e-01 setrgbcolor +fill +grestore +newpath +6.202176e+01 8.811488e+01 moveto +6.531453e+01 8.797268e+01 lineto +6.532618e+01 8.797901e+01 lineto +6.191142e+01 8.805497e+01 lineto +6.202176e+01 8.811488e+01 lineto +closepath +gsave +4.958899e-01 4.958899e-01 4.958899e-01 setrgbcolor +fill +grestore +newpath +9.01872e+01 1.226712e+01 moveto +8.747281e+01 1.021017e+01 lineto +8.813713e+01 1.065439e+01 lineto +9.093176e+01 1.2765e+01 lineto +9.01872e+01 1.226712e+01 lineto +closepath +gsave +5.024308e-01 5.024308e-01 5.024308e-01 setrgbcolor +fill +grestore +newpath +9.271092e+01 1.457946e+01 moveto +9.01872e+01 1.226712e+01 lineto +9.093176e+01 1.2765e+01 lineto +9.353008e+01 1.512722e+01 lineto +9.271092e+01 1.457946e+01 lineto +closepath +gsave +5.199407e-01 5.199407e-01 5.199407e-01 setrgbcolor +fill +grestore +newpath +9.502484e+01 1.712965e+01 moveto +9.271092e+01 1.457946e+01 lineto +9.353008e+01 1.512722e+01 lineto +9.591241e+01 1.772316e+01 lineto +9.502484e+01 1.712965e+01 lineto +closepath +gsave +5.385774e-01 5.385774e-01 5.385774e-01 setrgbcolor +fill +grestore +newpath +9.711147e+01 1.989841e+01 moveto +9.502484e+01 1.712965e+01 lineto +9.591241e+01 1.772316e+01 lineto +9.806072e+01 2.053316e+01 lineto +9.711147e+01 1.989841e+01 lineto +closepath +gsave +5.580566e-01 5.580566e-01 5.580566e-01 setrgbcolor +fill +grestore +newpath +9.8955e+01 2.286477e+01 moveto +9.711147e+01 1.989841e+01 lineto +9.806072e+01 2.053316e+01 lineto +9.995875e+01 2.353596e+01 lineto +9.8955e+01 2.286477e+01 lineto +closepath +gsave +5.780372e-01 5.780372e-01 5.780372e-01 setrgbcolor +fill +grestore +newpath +1.005415e+02 2.600627e+01 moveto +9.8955e+01 2.286477e+01 lineto +9.995875e+01 2.353596e+01 lineto +1.015921e+02 2.670883e+01 lineto +1.005415e+02 2.600627e+01 lineto +closepath +gsave +5.981305e-01 5.981305e-01 5.981305e-01 setrgbcolor +fill +grestore +newpath +1.018589e+02 2.929914e+01 moveto +1.005415e+02 2.600627e+01 lineto +1.015921e+02 2.670883e+01 lineto +1.029485e+02 3.002773e+01 lineto +1.018589e+02 2.929914e+01 lineto +closepath +gsave +6.179111e-01 6.179111e-01 6.179111e-01 setrgbcolor +fill +grestore +newpath +1.028973e+02 3.271844e+01 moveto +1.018589e+02 2.929914e+01 lineto +1.029485e+02 3.002773e+01 lineto +1.040175e+02 3.346755e+01 lineto +1.028973e+02 3.271844e+01 lineto +closepath +gsave +6.369314e-01 6.369314e-01 6.369314e-01 setrgbcolor +fill +grestore +newpath +1.036487e+02 3.623828e+01 moveto +1.028973e+02 3.271844e+01 lineto +1.040175e+02 3.346755e+01 lineto +1.047912e+02 3.700225e+01 lineto +1.036487e+02 3.623828e+01 lineto +closepath +gsave +6.547369e-01 6.547369e-01 6.547369e-01 setrgbcolor +fill +grestore +newpath +1.041076e+02 3.983203e+01 moveto +1.036487e+02 3.623828e+01 lineto +1.047912e+02 3.700225e+01 lineto +1.052637e+02 4.060507e+01 lineto +1.041076e+02 3.983203e+01 lineto +closepath +gsave +6.708829e-01 6.708829e-01 6.708829e-01 setrgbcolor +fill +grestore +newpath +1.042704e+02 4.347246e+01 moveto +1.041076e+02 3.983203e+01 lineto +1.052637e+02 4.060507e+01 lineto +1.054313e+02 4.424873e+01 lineto +1.042704e+02 4.347246e+01 lineto +closepath +gsave +6.849517e-01 6.849517e-01 6.849517e-01 setrgbcolor +fill +grestore +newpath +1.04136e+02 4.713204e+01 moveto +1.042704e+02 4.347246e+01 lineto +1.054313e+02 4.424873e+01 lineto +1.052929e+02 4.790564e+01 lineto +1.04136e+02 4.713204e+01 lineto +closepath +gsave +6.965686e-01 6.965686e-01 6.965686e-01 setrgbcolor +fill +grestore +newpath +1.037052e+02 5.078304e+01 moveto +1.04136e+02 4.713204e+01 lineto +1.052929e+02 4.790564e+01 lineto +1.048494e+02 5.154813e+01 lineto +1.037052e+02 5.078304e+01 lineto +closepath +gsave +7.054173e-01 7.054173e-01 7.054173e-01 setrgbcolor +fill +grestore +newpath +1.029815e+02 5.439784e+01 moveto +1.037052e+02 5.078304e+01 lineto +1.048494e+02 5.154813e+01 lineto +1.041042e+02 5.514862e+01 lineto +1.029815e+02 5.439784e+01 lineto +closepath +gsave +7.112527e-01 7.112527e-01 7.112527e-01 setrgbcolor +fill +grestore +newpath +1.019702e+02 5.794906e+01 moveto +1.029815e+02 5.439784e+01 lineto +1.041042e+02 5.514862e+01 lineto +1.03063e+02 5.867985e+01 lineto +1.019702e+02 5.794906e+01 lineto +closepath +gsave +7.13911e-01 7.13911e-01 7.13911e-01 setrgbcolor +fill +grestore +newpath +1.00679e+02 6.140981e+01 moveto +1.019702e+02 5.794906e+01 lineto +1.03063e+02 5.867985e+01 lineto +1.017337e+02 6.211508e+01 lineto +1.00679e+02 6.140981e+01 lineto +closepath +gsave +7.133167e-01 7.133167e-01 7.133167e-01 setrgbcolor +fill +grestore +newpath +9.91177e+01 6.475391e+01 moveto +1.00679e+02 6.140981e+01 lineto +1.017337e+02 6.211508e+01 lineto +1.001263e+02 6.542832e+01 lineto +9.91177e+01 6.475391e+01 lineto +closepath +gsave +7.094857e-01 7.094857e-01 7.094857e-01 setrgbcolor +fill +grestore +newpath +9.729813e+01 6.795604e+01 moveto +9.91177e+01 6.475391e+01 lineto +1.001263e+02 6.542832e+01 lineto +9.82529e+01 6.859448e+01 lineto +9.729813e+01 6.795604e+01 lineto +closepath +gsave +7.025248e-01 7.025248e-01 7.025248e-01 setrgbcolor +fill +grestore +newpath +9.523405e+01 7.099195e+01 moveto +9.729813e+01 6.795604e+01 lineto +9.82529e+01 6.859448e+01 lineto +9.61278e+01 7.158959e+01 lineto +9.523405e+01 7.099195e+01 lineto +closepath +gsave +6.926275e-01 6.926275e-01 6.926275e-01 setrgbcolor +fill +grestore +newpath +9.294108e+01 7.383866e+01 moveto +9.523405e+01 7.099195e+01 lineto +9.61278e+01 7.158959e+01 lineto +9.376705e+01 7.439097e+01 lineto +9.294108e+01 7.383866e+01 lineto +closepath +gsave +6.800656e-01 6.800656e-01 6.800656e-01 setrgbcolor +fill +grestore +newpath +9.043659e+01 7.647461e+01 moveto +9.294108e+01 7.383866e+01 lineto +9.376705e+01 7.439097e+01 lineto +9.118852e+01 7.697742e+01 lineto +9.043659e+01 7.647461e+01 lineto +closepath +gsave +6.651784e-01 6.651784e-01 6.651784e-01 setrgbcolor +fill +grestore +newpath +8.773953e+01 7.887986e+01 moveto +9.043659e+01 7.647461e+01 lineto +9.118852e+01 7.697742e+01 lineto +8.841174e+01 7.932936e+01 lineto +8.773953e+01 7.887986e+01 lineto +closepath +gsave +6.483585e-01 6.483585e-01 6.483585e-01 setrgbcolor +fill +grestore +newpath +8.487032e+01 8.10362e+01 moveto +8.773953e+01 7.887986e+01 lineto +8.841174e+01 7.932936e+01 lineto +8.545771e+01 8.142898e+01 lineto +8.487032e+01 8.10362e+01 lineto +closepath +gsave +6.300368e-01 6.300368e-01 6.300368e-01 setrgbcolor +fill +grestore +newpath +8.185069e+01 8.29273e+01 moveto +8.487032e+01 8.10362e+01 lineto +8.545771e+01 8.142898e+01 lineto +8.234881e+01 8.326038e+01 lineto +8.185069e+01 8.29273e+01 lineto +closepath +gsave +6.10665e-01 6.10665e-01 6.10665e-01 setrgbcolor +fill +grestore +newpath +7.870349e+01 8.453884e+01 moveto +8.185069e+01 8.29273e+01 lineto +8.234881e+01 8.326038e+01 lineto +7.910858e+01 8.480971e+01 lineto +7.870349e+01 8.453884e+01 lineto +closepath +gsave +5.906987e-01 5.906987e-01 5.906987e-01 setrgbcolor +fill +grestore +newpath +7.545254e+01 8.585862e+01 moveto +7.870349e+01 8.453884e+01 lineto +7.910858e+01 8.480971e+01 lineto +7.576153e+01 8.606524e+01 lineto +7.545254e+01 8.585862e+01 lineto +closepath +gsave +5.705808e-01 5.705808e-01 5.705808e-01 setrgbcolor +fill +grestore +newpath +7.212247e+01 8.687666e+01 moveto +7.545254e+01 8.585862e+01 lineto +7.576153e+01 8.606524e+01 lineto +7.233302e+01 8.701745e+01 lineto +7.212247e+01 8.687666e+01 lineto +closepath +gsave +5.507263e-01 5.507263e-01 5.507263e-01 setrgbcolor +fill +grestore +newpath +6.873848e+01 8.758524e+01 moveto +7.212247e+01 8.687666e+01 lineto +7.233302e+01 8.701745e+01 lineto +6.884899e+01 8.765914e+01 lineto +6.873848e+01 8.758524e+01 lineto +closepath +gsave +5.315088e-01 5.315088e-01 5.315088e-01 setrgbcolor +fill +grestore +newpath +6.532618e+01 8.797901e+01 moveto +6.873848e+01 8.758524e+01 lineto +6.884899e+01 8.765914e+01 lineto +6.533582e+01 8.798545e+01 lineto +6.532618e+01 8.797901e+01 lineto +closepath +gsave +5.1325e-01 5.1325e-01 5.1325e-01 setrgbcolor +fill +grestore +newpath +6.191142e+01 8.805497e+01 moveto +6.532618e+01 8.797901e+01 lineto +6.533582e+01 8.798545e+01 lineto +6.182011e+01 8.799392e+01 lineto +6.191142e+01 8.805497e+01 lineto +closepath +gsave +4.962123e-01 4.962123e-01 4.962123e-01 setrgbcolor +fill +grestore +newpath +9.353008e+01 1.512722e+01 moveto +9.093176e+01 1.2765e+01 lineto +9.151645e+01 1.326912e+01 lineto +9.417335e+01 1.568184e+01 lineto +9.353008e+01 1.512722e+01 lineto +closepath +gsave +5.120686e-01 5.120686e-01 5.120686e-01 setrgbcolor +fill +grestore +newpath +9.591241e+01 1.772316e+01 moveto +9.353008e+01 1.512722e+01 lineto +9.417335e+01 1.568184e+01 lineto +9.660939e+01 1.832409e+01 lineto +9.591241e+01 1.772316e+01 lineto +closepath +gsave +5.291262e-01 5.291262e-01 5.291262e-01 setrgbcolor +fill +grestore +newpath +9.806072e+01 2.053316e+01 moveto +9.591241e+01 1.772316e+01 lineto +9.660939e+01 1.832409e+01 lineto +9.880614e+01 2.117586e+01 lineto +9.806072e+01 2.053316e+01 lineto +closepath +gsave +5.469614e-01 5.469614e-01 5.469614e-01 setrgbcolor +fill +grestore +newpath +9.995875e+01 2.353596e+01 moveto +9.806072e+01 2.053316e+01 lineto +9.880614e+01 2.117586e+01 lineto +1.00747e+02 2.421556e+01 lineto +9.995875e+01 2.353596e+01 lineto +closepath +gsave +5.652734e-01 5.652734e-01 5.652734e-01 setrgbcolor +fill +grestore +newpath +1.015921e+02 2.670883e+01 moveto +9.995875e+01 2.353596e+01 lineto +1.00747e+02 2.421556e+01 lineto +1.024172e+02 2.742018e+01 lineto +1.015921e+02 2.670883e+01 lineto +closepath +gsave +5.837181e-01 5.837181e-01 5.837181e-01 setrgbcolor +fill +grestore +newpath +1.029485e+02 3.002773e+01 moveto +1.015921e+02 2.670883e+01 lineto +1.024172e+02 2.742018e+01 lineto +1.038041e+02 3.076545e+01 lineto +1.029485e+02 3.002773e+01 lineto +closepath +gsave +6.019176e-01 6.019176e-01 6.019176e-01 setrgbcolor +fill +grestore +newpath +1.040175e+02 3.346755e+01 moveto +1.029485e+02 3.002773e+01 lineto +1.038041e+02 3.076545e+01 lineto +1.048973e+02 3.422606e+01 lineto +1.040175e+02 3.346755e+01 lineto +closepath +gsave +6.194726e-01 6.194726e-01 6.194726e-01 setrgbcolor +fill +grestore +newpath +1.047912e+02 3.700225e+01 moveto +1.040175e+02 3.346755e+01 lineto +1.048973e+02 3.422606e+01 lineto +1.056884e+02 3.77758e+01 lineto +1.047912e+02 3.700225e+01 lineto +closepath +gsave +6.359757e-01 6.359757e-01 6.359757e-01 setrgbcolor +fill +grestore +newpath +1.052637e+02 4.060507e+01 moveto +1.047912e+02 3.700225e+01 lineto +1.056884e+02 3.77758e+01 lineto +1.061715e+02 4.13878e+01 lineto +1.052637e+02 4.060507e+01 lineto +closepath +gsave +6.510261e-01 6.510261e-01 6.510261e-01 setrgbcolor +fill +grestore +newpath +1.054313e+02 4.424873e+01 moveto +1.052637e+02 4.060507e+01 lineto +1.061715e+02 4.13878e+01 lineto +1.063429e+02 4.503471e+01 lineto +1.054313e+02 4.424873e+01 lineto +closepath +gsave +6.642445e-01 6.642445e-01 6.642445e-01 setrgbcolor +fill +grestore +newpath +1.052929e+02 4.790564e+01 moveto +1.054313e+02 4.424873e+01 lineto +1.063429e+02 4.503471e+01 lineto +1.062014e+02 4.868894e+01 lineto +1.052929e+02 4.790564e+01 lineto +closepath +gsave +6.752878e-01 6.752878e-01 6.752878e-01 setrgbcolor +fill +grestore +newpath +1.048494e+02 5.154813e+01 moveto +1.052929e+02 4.790564e+01 lineto +1.062014e+02 4.868894e+01 lineto +1.057479e+02 5.232281e+01 lineto +1.048494e+02 5.154813e+01 lineto +closepath +gsave +6.838625e-01 6.838625e-01 6.838625e-01 setrgbcolor +fill +grestore +newpath +1.041042e+02 5.514862e+01 moveto +1.048494e+02 5.154813e+01 lineto +1.057479e+02 5.232281e+01 lineto +1.049859e+02 5.590881e+01 lineto +1.041042e+02 5.514862e+01 lineto +closepath +gsave +6.897365e-01 6.897365e-01 6.897365e-01 setrgbcolor +fill +grestore +newpath +1.03063e+02 5.867985e+01 moveto +1.041042e+02 5.514862e+01 lineto +1.049859e+02 5.590881e+01 lineto +1.039213e+02 5.941979e+01 lineto +1.03063e+02 5.867985e+01 lineto +closepath +gsave +6.927486e-01 6.927486e-01 6.927486e-01 setrgbcolor +fill +grestore +newpath +1.017337e+02 6.211508e+01 moveto +1.03063e+02 5.867985e+01 lineto +1.039213e+02 5.941979e+01 lineto +1.025619e+02 6.282919e+01 lineto +1.017337e+02 6.211508e+01 lineto +closepath +gsave +6.928151e-01 6.928151e-01 6.928151e-01 setrgbcolor +fill +grestore +newpath +1.001263e+02 6.542832e+01 moveto +1.017337e+02 6.211508e+01 lineto +1.025619e+02 6.282919e+01 lineto +1.009183e+02 6.611118e+01 lineto +1.001263e+02 6.542832e+01 lineto +closepath +gsave +6.899335e-01 6.899335e-01 6.899335e-01 setrgbcolor +fill +grestore +newpath +9.82529e+01 6.859448e+01 moveto +1.001263e+02 6.542832e+01 lineto +1.009183e+02 6.611118e+01 lineto +9.900265e+01 6.924092e+01 lineto +9.82529e+01 6.859448e+01 lineto +closepath +gsave +6.841824e-01 6.841824e-01 6.841824e-01 setrgbcolor +fill +grestore +newpath +9.61278e+01 7.158959e+01 moveto +9.82529e+01 6.859448e+01 lineto +9.900265e+01 6.924092e+01 lineto +9.682964e+01 7.219471e+01 lineto +9.61278e+01 7.158959e+01 lineto +closepath +gsave +6.757185e-01 6.757185e-01 6.757185e-01 setrgbcolor +fill +grestore +newpath +9.376705e+01 7.439097e+01 moveto +9.61278e+01 7.158959e+01 lineto +9.682964e+01 7.219471e+01 lineto +9.441566e+01 7.49502e+01 lineto +9.376705e+01 7.439097e+01 lineto +closepath +gsave +6.647704e-01 6.647704e-01 6.647704e-01 setrgbcolor +fill +grestore +newpath +9.118852e+01 7.697742e+01 moveto +9.376705e+01 7.439097e+01 lineto +9.441566e+01 7.49502e+01 lineto +9.1779e+01 7.748653e+01 lineto +9.118852e+01 7.697742e+01 lineto +closepath +gsave +6.516288e-01 6.516288e-01 6.516288e-01 setrgbcolor +fill +grestore +newpath +8.841174e+01 7.932936e+01 moveto +9.118852e+01 7.697742e+01 lineto +9.1779e+01 7.748653e+01 lineto +8.89396e+01 7.978448e+01 lineto +8.841174e+01 7.932936e+01 lineto +closepath +gsave +6.366355e-01 6.366355e-01 6.366355e-01 setrgbcolor +fill +grestore +newpath +8.545771e+01 8.142898e+01 moveto +8.841174e+01 7.932936e+01 lineto +8.89396e+01 7.978448e+01 lineto +8.591897e+01 8.182668e+01 lineto +8.545771e+01 8.142898e+01 lineto +closepath +gsave +6.201694e-01 6.201694e-01 6.201694e-01 setrgbcolor +fill +grestore +newpath +8.234881e+01 8.326038e+01 moveto +8.545771e+01 8.142898e+01 lineto +8.591897e+01 8.182668e+01 lineto +8.273998e+01 8.359765e+01 lineto +8.234881e+01 8.326038e+01 lineto +closepath +gsave +6.026321e-01 6.026321e-01 6.026321e-01 setrgbcolor +fill +grestore +newpath +7.910858e+01 8.480971e+01 moveto +8.234881e+01 8.326038e+01 lineto +8.273998e+01 8.359765e+01 lineto +7.942668e+01 8.508399e+01 lineto +7.910858e+01 8.480971e+01 lineto +closepath +gsave +5.844325e-01 5.844325e-01 5.844325e-01 setrgbcolor +fill +grestore +newpath +7.576153e+01 8.606524e+01 moveto +7.910858e+01 8.480971e+01 lineto +7.942668e+01 8.508399e+01 lineto +7.600417e+01 8.627444e+01 lineto +7.576153e+01 8.606524e+01 lineto +closepath +gsave +5.659722e-01 5.659722e-01 5.659722e-01 setrgbcolor +fill +grestore +newpath +7.233302e+01 8.701745e+01 moveto +7.576153e+01 8.606524e+01 lineto +7.600417e+01 8.627444e+01 lineto +7.249836e+01 8.716e+01 lineto +7.233302e+01 8.701745e+01 lineto +closepath +gsave +5.476318e-01 5.476318e-01 5.476318e-01 setrgbcolor +fill +grestore +newpath +6.884899e+01 8.765914e+01 moveto +7.233302e+01 8.701745e+01 lineto +7.249836e+01 8.716e+01 lineto +6.893577e+01 8.773396e+01 lineto +6.884899e+01 8.765914e+01 lineto +closepath +gsave +5.297584e-01 5.297584e-01 5.297584e-01 setrgbcolor +fill +grestore +newpath +6.533582e+01 8.798545e+01 moveto +6.884899e+01 8.765914e+01 lineto +6.893577e+01 8.773396e+01 lineto +6.53434e+01 8.799198e+01 lineto +6.533582e+01 8.798545e+01 lineto +closepath +gsave +5.126555e-01 5.126555e-01 5.126555e-01 setrgbcolor +fill +grestore +newpath +6.182011e+01 8.799392e+01 moveto +6.533582e+01 8.798545e+01 lineto +6.53434e+01 8.799198e+01 lineto +6.174842e+01 8.79321e+01 lineto +6.182011e+01 8.799392e+01 lineto +closepath +gsave +4.965758e-01 4.965758e-01 4.965758e-01 setrgbcolor +fill +grestore +newpath +9.880614e+01 2.117586e+01 moveto +9.660939e+01 1.832409e+01 lineto +9.711149e+01 1.892876e+01 lineto +9.934314e+01 2.182255e+01 lineto +9.880614e+01 2.117586e+01 lineto +closepath +gsave +5.353201e-01 5.353201e-01 5.353201e-01 setrgbcolor +fill +grestore +newpath +1.00747e+02 2.421556e+01 moveto +9.880614e+01 2.117586e+01 lineto +9.934314e+01 2.182255e+01 lineto +1.013148e+02 2.489938e+01 lineto +1.00747e+02 2.421556e+01 lineto +closepath +gsave +5.518969e-01 5.518969e-01 5.518969e-01 setrgbcolor +fill +grestore +newpath +1.024172e+02 2.742018e+01 moveto +1.00747e+02 2.421556e+01 lineto +1.013148e+02 2.489938e+01 lineto +1.030115e+02 2.813594e+01 lineto +1.024172e+02 2.742018e+01 lineto +closepath +gsave +5.686261e-01 5.686261e-01 5.686261e-01 setrgbcolor +fill +grestore +newpath +1.038041e+02 3.076545e+01 moveto +1.024172e+02 2.742018e+01 lineto +1.030115e+02 2.813594e+01 lineto +1.044205e+02 3.150775e+01 lineto +1.038041e+02 3.076545e+01 lineto +closepath +gsave +5.851785e-01 5.851785e-01 5.851785e-01 setrgbcolor +fill +grestore +newpath +1.048973e+02 3.422606e+01 moveto +1.038041e+02 3.076545e+01 lineto +1.044205e+02 3.150775e+01 lineto +1.05531e+02 3.498926e+01 lineto +1.048973e+02 3.422606e+01 lineto +closepath +gsave +6.01204e-01 6.01204e-01 6.01204e-01 setrgbcolor +fill +grestore +newpath +1.056884e+02 3.77758e+01 moveto +1.048973e+02 3.422606e+01 lineto +1.05531e+02 3.498926e+01 lineto +1.063347e+02 3.855414e+01 lineto +1.056884e+02 3.77758e+01 lineto +closepath +gsave +6.163437e-01 6.163437e-01 6.163437e-01 setrgbcolor +fill +grestore +newpath +1.061715e+02 4.13878e+01 moveto +1.056884e+02 3.77758e+01 lineto +1.063347e+02 3.855414e+01 lineto +1.068255e+02 4.217538e+01 lineto +1.061715e+02 4.13878e+01 lineto +closepath +gsave +6.30242e-01 6.30242e-01 6.30242e-01 setrgbcolor +fill +grestore +newpath +1.063429e+02 4.503471e+01 moveto +1.061715e+02 4.13878e+01 lineto +1.068255e+02 4.217538e+01 lineto +1.069996e+02 4.582557e+01 lineto +1.063429e+02 4.503471e+01 lineto +closepath +gsave +6.425597e-01 6.425597e-01 6.425597e-01 setrgbcolor +fill +grestore +newpath +1.062014e+02 4.868894e+01 moveto +1.063429e+02 4.503471e+01 lineto +1.069996e+02 4.582557e+01 lineto +1.068558e+02 4.947709e+01 lineto +1.062014e+02 4.868894e+01 lineto +closepath +gsave +6.529866e-01 6.529866e-01 6.529866e-01 setrgbcolor +fill +grestore +newpath +1.057479e+02 5.232281e+01 moveto +1.062014e+02 4.868894e+01 lineto +1.068558e+02 4.947709e+01 lineto +1.063951e+02 5.310228e+01 lineto +1.057479e+02 5.232281e+01 lineto +closepath +gsave +6.612535e-01 6.612535e-01 6.612535e-01 setrgbcolor +fill +grestore +newpath +1.049859e+02 5.590881e+01 moveto +1.057479e+02 5.232281e+01 lineto +1.063951e+02 5.310228e+01 lineto +1.056211e+02 5.667371e+01 lineto +1.049859e+02 5.590881e+01 lineto +closepath +gsave +6.671427e-01 6.671427e-01 6.671427e-01 setrgbcolor +fill +grestore +newpath +1.039213e+02 5.941979e+01 moveto +1.049859e+02 5.590881e+01 lineto +1.056211e+02 5.667371e+01 lineto +1.045395e+02 6.016433e+01 lineto +1.039213e+02 5.941979e+01 lineto +closepath +gsave +6.704969e-01 6.704969e-01 6.704969e-01 setrgbcolor +fill +grestore +newpath +1.025619e+02 6.282919e+01 moveto +1.039213e+02 5.941979e+01 lineto +1.045395e+02 6.016433e+01 lineto +1.031586e+02 6.354772e+01 lineto +1.025619e+02 6.282919e+01 lineto +closepath +gsave +6.712254e-01 6.712254e-01 6.712254e-01 setrgbcolor +fill +grestore +newpath +1.009183e+02 6.611118e+01 moveto +1.025619e+02 6.282919e+01 lineto +1.031586e+02 6.354772e+01 lineto +1.014888e+02 6.679827e+01 lineto +1.009183e+02 6.611118e+01 lineto +closepath +gsave +6.693078e-01 6.693078e-01 6.693078e-01 setrgbcolor +fill +grestore +newpath +9.900265e+01 6.924092e+01 moveto +1.009183e+02 6.611118e+01 lineto +1.014888e+02 6.679827e+01 lineto +9.954277e+01 6.989136e+01 lineto +9.900265e+01 6.924092e+01 lineto +closepath +gsave +6.647951e-01 6.647951e-01 6.647951e-01 setrgbcolor +fill +grestore +newpath +9.682964e+01 7.219471e+01 moveto +9.900265e+01 6.924092e+01 lineto +9.954277e+01 6.989136e+01 lineto +9.733524e+01 7.280359e+01 lineto +9.682964e+01 7.219471e+01 lineto +closepath +gsave +6.578076e-01 6.578076e-01 6.578076e-01 setrgbcolor +fill +grestore +newpath +9.441566e+01 7.49502e+01 moveto +9.682964e+01 7.219471e+01 lineto +9.733524e+01 7.280359e+01 lineto +9.488292e+01 7.55129e+01 lineto +9.441566e+01 7.49502e+01 lineto +closepath +gsave +6.485298e-01 6.485298e-01 6.485298e-01 setrgbcolor +fill +grestore +newpath +9.1779e+01 7.748653e+01 moveto +9.441566e+01 7.49502e+01 lineto +9.488292e+01 7.55129e+01 lineto +9.220437e+01 7.799879e+01 lineto +9.1779e+01 7.748653e+01 lineto +closepath +gsave +6.372036e-01 6.372036e-01 6.372036e-01 setrgbcolor +fill +grestore +newpath +8.89396e+01 7.978448e+01 moveto +9.1779e+01 7.748653e+01 lineto +9.220437e+01 7.799879e+01 lineto +8.931987e+01 8.024243e+01 lineto +8.89396e+01 7.978448e+01 lineto +closepath +gsave +6.241183e-01 6.241183e-01 6.241183e-01 setrgbcolor +fill +grestore +newpath +8.591897e+01 8.182668e+01 moveto +8.89396e+01 7.978448e+01 lineto +8.931987e+01 8.024243e+01 lineto +8.625126e+01 8.222684e+01 lineto +8.591897e+01 8.182668e+01 lineto +closepath +gsave +6.095996e-01 6.095996e-01 6.095996e-01 setrgbcolor +fill +grestore +newpath +8.273998e+01 8.359765e+01 moveto +8.591897e+01 8.182668e+01 lineto +8.625126e+01 8.222684e+01 lineto +8.302177e+01 8.3937e+01 lineto +8.273998e+01 8.359765e+01 lineto +closepath +gsave +5.939968e-01 5.939968e-01 5.939968e-01 setrgbcolor +fill +grestore +newpath +7.942668e+01 8.508399e+01 moveto +8.273998e+01 8.359765e+01 lineto +8.302177e+01 8.3937e+01 lineto +7.965584e+01 8.535996e+01 lineto +7.942668e+01 8.508399e+01 lineto +closepath +gsave +5.776701e-01 5.776701e-01 5.776701e-01 setrgbcolor +fill +grestore +newpath +7.600417e+01 8.627444e+01 moveto +7.942668e+01 8.508399e+01 lineto +7.965584e+01 8.535996e+01 lineto +7.617897e+01 8.648494e+01 lineto +7.600417e+01 8.627444e+01 lineto +closepath +gsave +5.609775e-01 5.609775e-01 5.609775e-01 setrgbcolor +fill +grestore +newpath +7.249836e+01 8.716e+01 moveto +7.600417e+01 8.627444e+01 lineto +7.617897e+01 8.648494e+01 lineto +7.261746e+01 8.730344e+01 lineto +7.249836e+01 8.716e+01 lineto +closepath +gsave +5.442623e-01 5.442623e-01 5.442623e-01 setrgbcolor +fill +grestore +newpath +6.893577e+01 8.773396e+01 moveto +7.249836e+01 8.716e+01 lineto +7.261746e+01 8.730344e+01 lineto +6.899829e+01 8.780925e+01 lineto +6.893577e+01 8.773396e+01 lineto +closepath +gsave +5.278425e-01 5.278425e-01 5.278425e-01 setrgbcolor +fill +grestore +newpath +6.53434e+01 8.799198e+01 moveto +6.893577e+01 8.773396e+01 lineto +6.899829e+01 8.780925e+01 lineto +6.534885e+01 8.799855e+01 lineto +6.53434e+01 8.799198e+01 lineto +closepath +gsave +5.12001e-01 5.12001e-01 5.12001e-01 setrgbcolor +fill +grestore +newpath +6.174842e+01 8.79321e+01 moveto +6.53434e+01 8.799198e+01 lineto +6.534885e+01 8.799855e+01 lineto +6.169677e+01 8.78699e+01 lineto +6.174842e+01 8.79321e+01 lineto +closepath +gsave +4.969786e-01 4.969786e-01 4.969786e-01 setrgbcolor +fill +grestore +newpath +1.044205e+02 3.150775e+01 moveto +1.030115e+02 2.813594e+01 lineto +1.033715e+02 2.88517e+01 lineto +1.047938e+02 3.225004e+01 lineto +1.044205e+02 3.150775e+01 lineto +closepath +gsave +5.680344e-01 5.680344e-01 5.680344e-01 setrgbcolor +fill +grestore +newpath +1.05531e+02 3.498926e+01 moveto +1.044205e+02 3.150775e+01 lineto +1.047938e+02 3.225004e+01 lineto +1.059149e+02 3.575247e+01 lineto +1.05531e+02 3.498926e+01 lineto +closepath +gsave +5.824984e-01 5.824984e-01 5.824984e-01 setrgbcolor +fill +grestore +newpath +1.063347e+02 3.855414e+01 moveto +1.05531e+02 3.498926e+01 lineto +1.059149e+02 3.575247e+01 lineto +1.067262e+02 3.933248e+01 lineto +1.063347e+02 3.855414e+01 lineto +closepath +gsave +5.962414e-01 5.962414e-01 5.962414e-01 setrgbcolor +fill +grestore +newpath +1.068255e+02 4.217538e+01 moveto +1.063347e+02 3.855414e+01 lineto +1.067262e+02 3.933248e+01 lineto +1.072216e+02 4.296296e+01 lineto +1.068255e+02 4.217538e+01 lineto +closepath +gsave +6.089535e-01 6.089535e-01 6.089535e-01 setrgbcolor +fill +grestore +newpath +1.069996e+02 4.582557e+01 moveto +1.068255e+02 4.217538e+01 lineto +1.072216e+02 4.296296e+01 lineto +1.073974e+02 4.661643e+01 lineto +1.069996e+02 4.582557e+01 lineto +closepath +gsave +6.203358e-01 6.203358e-01 6.203358e-01 setrgbcolor +fill +grestore +newpath +1.068558e+02 4.947709e+01 moveto +1.069996e+02 4.582557e+01 lineto +1.073974e+02 4.661643e+01 lineto +1.072522e+02 5.026524e+01 lineto +1.068558e+02 4.947709e+01 lineto +closepath +gsave +6.301122e-01 6.301122e-01 6.301122e-01 setrgbcolor +fill +grestore +newpath +1.063951e+02 5.310228e+01 moveto +1.068558e+02 4.947709e+01 lineto +1.072522e+02 5.026524e+01 lineto +1.067872e+02 5.388176e+01 lineto +1.063951e+02 5.310228e+01 lineto +closepath +gsave +6.380387e-01 6.380387e-01 6.380387e-01 setrgbcolor +fill +grestore +newpath +1.056211e+02 5.667371e+01 moveto +1.063951e+02 5.310228e+01 lineto +1.067872e+02 5.388176e+01 lineto +1.060058e+02 5.743861e+01 lineto +1.056211e+02 5.667371e+01 lineto +closepath +gsave +6.439134e-01 6.439134e-01 6.439134e-01 setrgbcolor +fill +grestore +newpath +1.045395e+02 6.016433e+01 moveto +1.056211e+02 5.667371e+01 lineto +1.060058e+02 5.743861e+01 lineto +1.04914e+02 6.090887e+01 lineto +1.045395e+02 6.016433e+01 lineto +closepath +gsave +6.475844e-01 6.475844e-01 6.475844e-01 setrgbcolor +fill +grestore +newpath +1.031586e+02 6.354772e+01 moveto +1.045395e+02 6.016433e+01 lineto +1.04914e+02 6.090887e+01 lineto +1.0352e+02 6.426625e+01 lineto +1.031586e+02 6.354772e+01 lineto +closepath +gsave +6.489553e-01 6.489553e-01 6.489553e-01 setrgbcolor +fill +grestore +newpath +1.014888e+02 6.679827e+01 moveto +1.031586e+02 6.354772e+01 lineto +1.0352e+02 6.426625e+01 lineto +1.018344e+02 6.748536e+01 lineto +1.014888e+02 6.679827e+01 lineto +closepath +gsave +6.479897e-01 6.479897e-01 6.479897e-01 setrgbcolor +fill +grestore +newpath +9.954277e+01 6.989136e+01 moveto +1.014888e+02 6.679827e+01 lineto +1.018344e+02 6.748536e+01 lineto +9.986991e+01 7.054181e+01 lineto +9.954277e+01 6.989136e+01 lineto +closepath +gsave +6.447121e-01 6.447121e-01 6.447121e-01 setrgbcolor +fill +grestore +newpath +9.733524e+01 7.280359e+01 moveto +9.954277e+01 6.989136e+01 lineto +9.986991e+01 7.054181e+01 lineto +9.764148e+01 7.341247e+01 lineto +9.733524e+01 7.280359e+01 lineto +closepath +gsave +6.392075e-01 6.392075e-01 6.392075e-01 setrgbcolor +fill +grestore +newpath +9.488292e+01 7.55129e+01 moveto +9.733524e+01 7.280359e+01 lineto +9.764148e+01 7.341247e+01 lineto +9.516593e+01 7.60756e+01 lineto +9.488292e+01 7.55129e+01 lineto +closepath +gsave +6.316179e-01 6.316179e-01 6.316179e-01 setrgbcolor +fill +grestore +newpath +9.220437e+01 7.799879e+01 moveto +9.488292e+01 7.55129e+01 lineto +9.516593e+01 7.60756e+01 lineto +9.246201e+01 7.851105e+01 lineto +9.220437e+01 7.799879e+01 lineto +closepath +gsave +6.221364e-01 6.221364e-01 6.221364e-01 setrgbcolor +fill +grestore +newpath +8.931987e+01 8.024243e+01 moveto +9.220437e+01 7.799879e+01 lineto +9.246201e+01 7.851105e+01 lineto +8.95502e+01 8.070038e+01 lineto +8.931987e+01 8.024243e+01 lineto +closepath +gsave +6.110005e-01 6.110005e-01 6.110005e-01 setrgbcolor +fill +grestore +newpath +8.625126e+01 8.222684e+01 moveto +8.931987e+01 8.024243e+01 lineto +8.95502e+01 8.070038e+01 lineto +8.645252e+01 8.262701e+01 lineto +8.625126e+01 8.222684e+01 lineto +closepath +gsave +5.984821e-01 5.984821e-01 5.984821e-01 setrgbcolor +fill +grestore +newpath +8.302177e+01 8.3937e+01 moveto +8.625126e+01 8.222684e+01 lineto +8.645252e+01 8.262701e+01 lineto +8.319245e+01 8.427635e+01 lineto +8.302177e+01 8.3937e+01 lineto +closepath +gsave +5.848778e-01 5.848778e-01 5.848778e-01 setrgbcolor +fill +grestore +newpath +7.965584e+01 8.535996e+01 moveto +8.302177e+01 8.3937e+01 lineto +8.319245e+01 8.427635e+01 lineto +7.979465e+01 8.563593e+01 lineto +7.965584e+01 8.535996e+01 lineto +closepath +gsave +5.704977e-01 5.704977e-01 5.704977e-01 setrgbcolor +fill +grestore +newpath +7.617897e+01 8.648494e+01 moveto +7.965584e+01 8.535996e+01 lineto +7.979465e+01 8.563593e+01 lineto +7.628484e+01 8.669545e+01 lineto +7.617897e+01 8.648494e+01 lineto +closepath +gsave +5.556544e-01 5.556544e-01 5.556544e-01 setrgbcolor +fill +grestore +newpath +7.261746e+01 8.730344e+01 moveto +7.617897e+01 8.648494e+01 lineto +7.628484e+01 8.669545e+01 lineto +7.268961e+01 8.744688e+01 lineto +7.261746e+01 8.730344e+01 lineto +closepath +gsave +5.406524e-01 5.406524e-01 5.406524e-01 setrgbcolor +fill +grestore +newpath +6.899829e+01 8.780925e+01 moveto +7.261746e+01 8.730344e+01 lineto +7.268961e+01 8.744688e+01 lineto +6.903616e+01 8.788454e+01 lineto +6.899829e+01 8.780925e+01 lineto +closepath +gsave +5.25778e-01 5.25778e-01 5.25778e-01 setrgbcolor +fill +grestore +newpath +6.534885e+01 8.799855e+01 moveto +6.899829e+01 8.780925e+01 lineto +6.903616e+01 8.788454e+01 lineto +6.535215e+01 8.800512e+01 lineto +6.534885e+01 8.799855e+01 lineto +closepath +gsave +5.112912e-01 5.112912e-01 5.112912e-01 setrgbcolor +fill +grestore +newpath +6.169677e+01 8.78699e+01 moveto +6.534885e+01 8.799855e+01 lineto +6.535215e+01 8.800512e+01 lineto +6.166548e+01 8.78077e+01 lineto +6.169677e+01 8.78699e+01 lineto +closepath +gsave +4.974183e-01 4.974183e-01 4.974183e-01 setrgbcolor +fill +grestore +newpath +1.072216e+02 4.296296e+01 moveto +1.067262e+02 3.933248e+01 lineto +1.068604e+02 4.010602e+01 lineto +1.073574e+02 4.374569e+01 lineto +1.072216e+02 4.296296e+01 lineto +closepath +gsave +5.875704e-01 5.875704e-01 5.875704e-01 setrgbcolor +fill +grestore +newpath +1.073974e+02 4.661643e+01 moveto +1.072216e+02 4.296296e+01 lineto +1.073574e+02 4.374569e+01 lineto +1.075338e+02 4.740242e+01 lineto +1.073974e+02 4.661643e+01 lineto +closepath +gsave +5.979986e-01 5.979986e-01 5.979986e-01 setrgbcolor +fill +grestore +newpath +1.072522e+02 5.026524e+01 moveto +1.073974e+02 4.661643e+01 lineto +1.075338e+02 4.740242e+01 lineto +1.073881e+02 5.104854e+01 lineto +1.072522e+02 5.026524e+01 lineto +closepath +gsave +6.070993e-01 6.070993e-01 6.070993e-01 setrgbcolor +fill +grestore +newpath +1.067872e+02 5.388176e+01 moveto +1.072522e+02 5.026524e+01 lineto +1.073881e+02 5.104854e+01 lineto +1.069216e+02 5.465643e+01 lineto +1.067872e+02 5.388176e+01 lineto +closepath +gsave +6.146547e-01 6.146547e-01 6.146547e-01 setrgbcolor +fill +grestore +newpath +1.060058e+02 5.743861e+01 moveto +1.067872e+02 5.388176e+01 lineto +1.069216e+02 5.465643e+01 lineto +1.061377e+02 5.81988e+01 lineto +1.060058e+02 5.743861e+01 lineto +closepath +gsave +6.2048e-01 6.2048e-01 6.2048e-01 setrgbcolor +fill +grestore +newpath +1.04914e+02 6.090887e+01 moveto +1.060058e+02 5.743861e+01 lineto +1.061377e+02 5.81988e+01 lineto +1.050424e+02 6.164881e+01 lineto +1.04914e+02 6.090887e+01 lineto +closepath +gsave +6.244299e-01 6.244299e-01 6.244299e-01 setrgbcolor +fill +grestore +newpath +1.0352e+02 6.426625e+01 moveto +1.04914e+02 6.090887e+01 lineto +1.050424e+02 6.164881e+01 lineto +1.036439e+02 6.498036e+01 lineto +1.0352e+02 6.426625e+01 lineto +closepath +gsave +6.264046e-01 6.264046e-01 6.264046e-01 setrgbcolor +fill +grestore +newpath +1.018344e+02 6.748536e+01 moveto +1.0352e+02 6.426625e+01 lineto +1.036439e+02 6.498036e+01 lineto +1.019529e+02 6.816821e+01 lineto +1.018344e+02 6.748536e+01 lineto +closepath +gsave +6.263535e-01 6.263535e-01 6.263535e-01 setrgbcolor +fill +grestore +newpath +9.986991e+01 7.054181e+01 moveto +1.018344e+02 6.748536e+01 lineto +1.019529e+02 6.816821e+01 lineto +9.998208e+01 7.118825e+01 lineto +9.986991e+01 7.054181e+01 lineto +closepath +gsave +6.242773e-01 6.242773e-01 6.242773e-01 setrgbcolor +fill +grestore +newpath +9.764148e+01 7.341247e+01 moveto +9.986991e+01 7.054181e+01 lineto +9.998208e+01 7.118825e+01 lineto +9.774647e+01 7.401759e+01 lineto +9.764148e+01 7.341247e+01 lineto +closepath +gsave +6.20228e-01 6.20228e-01 6.20228e-01 setrgbcolor +fill +grestore +newpath +9.516593e+01 7.60756e+01 moveto +9.764148e+01 7.341247e+01 lineto +9.774647e+01 7.401759e+01 lineto +9.526296e+01 7.663483e+01 lineto +9.516593e+01 7.60756e+01 lineto +closepath +gsave +6.143068e-01 6.143068e-01 6.143068e-01 setrgbcolor +fill +grestore +newpath +9.246201e+01 7.851105e+01 moveto +9.516593e+01 7.60756e+01 lineto +9.526296e+01 7.663483e+01 lineto +9.255035e+01 7.902016e+01 lineto +9.246201e+01 7.851105e+01 lineto +closepath +gsave +6.066607e-01 6.066607e-01 6.066607e-01 setrgbcolor +fill +grestore +newpath +8.95502e+01 8.070038e+01 moveto +9.246201e+01 7.851105e+01 lineto +9.255035e+01 7.902016e+01 lineto +8.962917e+01 8.11555e+01 lineto +8.95502e+01 8.070038e+01 lineto +closepath +gsave +5.974763e-01 5.974763e-01 5.974763e-01 setrgbcolor +fill +grestore +newpath +8.645252e+01 8.262701e+01 moveto +8.95502e+01 8.070038e+01 lineto +8.962917e+01 8.11555e+01 lineto +8.652153e+01 8.30247e+01 lineto +8.645252e+01 8.262701e+01 lineto +closepath +gsave +5.869731e-01 5.869731e-01 5.869731e-01 setrgbcolor +fill +grestore +newpath +8.319245e+01 8.427635e+01 moveto +8.645252e+01 8.262701e+01 lineto +8.652153e+01 8.30247e+01 lineto +8.325097e+01 8.461361e+01 lineto +8.319245e+01 8.427635e+01 lineto +closepath +gsave +5.753953e-01 5.753953e-01 5.753953e-01 setrgbcolor +fill +grestore +newpath +7.979465e+01 8.563593e+01 moveto +8.319245e+01 8.427635e+01 lineto +8.325097e+01 8.461361e+01 lineto +7.984223e+01 8.59102e+01 lineto +7.979465e+01 8.563593e+01 lineto +closepath +gsave +5.630029e-01 5.630029e-01 5.630029e-01 setrgbcolor +fill +grestore +newpath +7.628484e+01 8.669545e+01 moveto +7.979465e+01 8.563593e+01 lineto +7.984223e+01 8.59102e+01 lineto +7.632114e+01 8.690465e+01 lineto +7.628484e+01 8.669545e+01 lineto +closepath +gsave +5.500625e-01 5.500625e-01 5.500625e-01 setrgbcolor +fill +grestore +newpath +7.268961e+01 8.744688e+01 moveto +7.628484e+01 8.669545e+01 lineto +7.632114e+01 8.690465e+01 lineto +7.271434e+01 8.758943e+01 lineto +7.268961e+01 8.744688e+01 lineto +closepath +gsave +5.368381e-01 5.368381e-01 5.368381e-01 setrgbcolor +fill +grestore +newpath +6.903616e+01 8.788454e+01 moveto +7.268961e+01 8.744688e+01 lineto +7.271434e+01 8.758943e+01 lineto +6.904914e+01 8.795937e+01 lineto +6.903616e+01 8.788454e+01 lineto +closepath +gsave +5.235829e-01 5.235829e-01 5.235829e-01 setrgbcolor +fill +grestore +newpath +6.535215e+01 8.800512e+01 moveto +6.903616e+01 8.788454e+01 lineto +6.904914e+01 8.795937e+01 lineto +6.535329e+01 8.801165e+01 lineto +6.535215e+01 8.800512e+01 lineto +closepath +gsave +5.105313e-01 5.105313e-01 5.105313e-01 setrgbcolor +fill +grestore +newpath +6.166548e+01 8.78077e+01 moveto +6.535215e+01 8.800512e+01 lineto +6.535329e+01 8.801165e+01 lineto +6.165476e+01 8.774588e+01 lineto +6.166548e+01 8.78077e+01 lineto +closepath +gsave +4.978927e-01 4.978927e-01 4.978927e-01 setrgbcolor +fill +grestore +newpath +1.061377e+02 5.81988e+01 moveto +1.069216e+02 5.465643e+01 lineto +1.067975e+02 5.542152e+01 lineto +1.06016e+02 5.894958e+01 lineto +1.061377e+02 5.81988e+01 lineto +closepath +gsave +5.972503e-01 5.972503e-01 5.972503e-01 setrgbcolor +fill +grestore +newpath +1.050424e+02 6.164881e+01 moveto +1.061377e+02 5.81988e+01 lineto +1.06016e+02 5.894958e+01 lineto +1.049239e+02 6.237961e+01 lineto +1.050424e+02 6.164881e+01 lineto +closepath +gsave +6.014306e-01 6.014306e-01 6.014306e-01 setrgbcolor +fill +grestore +newpath +1.036439e+02 6.498036e+01 moveto +1.050424e+02 6.164881e+01 lineto +1.049239e+02 6.237961e+01 lineto +1.035295e+02 6.568563e+01 lineto +1.036439e+02 6.498036e+01 lineto +closepath +gsave +6.039534e-01 6.039534e-01 6.039534e-01 setrgbcolor +fill +grestore +newpath +1.019529e+02 6.816821e+01 moveto +1.036439e+02 6.498036e+01 lineto +1.035295e+02 6.568563e+01 lineto +1.018435e+02 6.884262e+01 lineto +1.019529e+02 6.816821e+01 lineto +closepath +gsave +6.047567e-01 6.047567e-01 6.047567e-01 setrgbcolor +fill +grestore +newpath +9.998208e+01 7.118825e+01 moveto +1.019529e+02 6.816821e+01 lineto +1.018435e+02 6.884262e+01 lineto +9.987856e+01 7.182669e+01 lineto +9.998208e+01 7.118825e+01 lineto +closepath +gsave +6.038205e-01 6.038205e-01 6.038205e-01 setrgbcolor +fill +grestore +newpath +9.774647e+01 7.401759e+01 moveto +9.998208e+01 7.118825e+01 lineto +9.987856e+01 7.182669e+01 lineto +9.764957e+01 7.461523e+01 lineto +9.774647e+01 7.401759e+01 lineto +closepath +gsave +6.011669e-01 6.011669e-01 6.011669e-01 setrgbcolor +fill +grestore +newpath +9.526296e+01 7.663483e+01 moveto +9.774647e+01 7.401759e+01 lineto +9.764957e+01 7.461523e+01 lineto +9.517341e+01 7.718715e+01 lineto +9.526296e+01 7.663483e+01 lineto +closepath +gsave +5.9686e-01 5.9686e-01 5.9686e-01 setrgbcolor +fill +grestore +newpath +9.255035e+01 7.902016e+01 moveto +9.526296e+01 7.663483e+01 lineto +9.517341e+01 7.718715e+01 lineto +9.246882e+01 7.952296e+01 lineto +9.255035e+01 7.902016e+01 lineto +closepath +gsave +5.910033e-01 5.910033e-01 5.910033e-01 setrgbcolor +fill +grestore +newpath +8.962917e+01 8.11555e+01 moveto +9.255035e+01 7.902016e+01 lineto +9.246882e+01 7.952296e+01 lineto +8.955629e+01 8.1605e+01 lineto +8.962917e+01 8.11555e+01 lineto +closepath +gsave +5.837357e-01 5.837357e-01 5.837357e-01 setrgbcolor +fill +grestore +newpath +8.652153e+01 8.30247e+01 moveto +8.962917e+01 8.11555e+01 lineto +8.955629e+01 8.1605e+01 lineto +8.645785e+01 8.341748e+01 lineto +8.652153e+01 8.30247e+01 lineto +closepath +gsave +5.752263e-01 5.752263e-01 5.752263e-01 setrgbcolor +fill +grestore +newpath +8.325097e+01 8.461361e+01 moveto +8.652153e+01 8.30247e+01 lineto +8.645785e+01 8.341748e+01 lineto +8.319696e+01 8.49467e+01 lineto +8.325097e+01 8.461361e+01 lineto +closepath +gsave +5.656687e-01 5.656687e-01 5.656687e-01 setrgbcolor +fill +grestore +newpath +7.984223e+01 8.59102e+01 moveto +8.325097e+01 8.461361e+01 lineto +8.319696e+01 8.49467e+01 lineto +7.979832e+01 8.618108e+01 lineto +7.984223e+01 8.59102e+01 lineto +closepath +gsave +5.552736e-01 5.552736e-01 5.552736e-01 setrgbcolor +fill +grestore +newpath +7.632114e+01 8.690465e+01 moveto +7.984223e+01 8.59102e+01 lineto +7.979832e+01 8.618108e+01 lineto +7.628764e+01 8.711127e+01 lineto +7.632114e+01 8.690465e+01 lineto +closepath +gsave +5.442618e-01 5.442618e-01 5.442618e-01 setrgbcolor +fill +grestore +newpath +7.271434e+01 8.758943e+01 moveto +7.632114e+01 8.690465e+01 lineto +7.628764e+01 8.711127e+01 lineto +7.269151e+01 8.773022e+01 lineto +7.271434e+01 8.758943e+01 lineto +closepath +gsave +5.328564e-01 5.328564e-01 5.328564e-01 setrgbcolor +fill +grestore +newpath +6.904914e+01 8.795937e+01 moveto +7.271434e+01 8.758943e+01 lineto +7.269151e+01 8.773022e+01 lineto +6.903716e+01 8.803327e+01 lineto +6.904914e+01 8.795937e+01 lineto +closepath +gsave +5.212757e-01 5.212757e-01 5.212757e-01 setrgbcolor +fill +grestore +newpath +6.535329e+01 8.801165e+01 moveto +6.904914e+01 8.795937e+01 lineto +6.903716e+01 8.803327e+01 lineto +6.535224e+01 8.80181e+01 lineto +6.535329e+01 8.801165e+01 lineto +closepath +gsave +5.097267e-01 5.097267e-01 5.097267e-01 setrgbcolor +fill +grestore +newpath +6.165476e+01 8.774588e+01 moveto +6.535329e+01 8.801165e+01 lineto +6.535224e+01 8.80181e+01 lineto +6.166466e+01 8.768483e+01 lineto +6.165476e+01 8.774588e+01 lineto +closepath +gsave +4.983992e-01 4.983992e-01 4.983992e-01 setrgbcolor +fill +grestore +newpath +1.018435e+02 6.884262e+01 moveto +1.035295e+02 6.568563e+01 lineto +1.031776e+02 6.637772e+01 lineto +1.01507e+02 6.950443e+01 lineto +1.018435e+02 6.884262e+01 lineto +closepath +gsave +5.835307e-01 5.835307e-01 5.835307e-01 setrgbcolor +fill +grestore +newpath +9.987856e+01 7.182669e+01 moveto +1.018435e+02 6.884262e+01 lineto +1.01507e+02 6.950443e+01 lineto +9.956001e+01 7.24532e+01 lineto +9.987856e+01 7.182669e+01 lineto +closepath +gsave +5.836488e-01 5.836488e-01 5.836488e-01 setrgbcolor +fill +grestore +newpath +9.764957e+01 7.461523e+01 moveto +9.987856e+01 7.182669e+01 lineto +9.956001e+01 7.24532e+01 lineto +9.735138e+01 7.52017e+01 lineto +9.764957e+01 7.461523e+01 lineto +closepath +gsave +5.823034e-01 5.823034e-01 5.823034e-01 setrgbcolor +fill +grestore +newpath +9.517341e+01 7.718715e+01 moveto +9.764957e+01 7.461523e+01 lineto +9.735138e+01 7.52017e+01 lineto +9.489783e+01 7.772914e+01 lineto +9.517341e+01 7.718715e+01 lineto +closepath +gsave +5.795257e-01 5.795257e-01 5.795257e-01 setrgbcolor +fill +grestore +newpath +9.246882e+01 7.952296e+01 moveto +9.517341e+01 7.718715e+01 lineto +9.489783e+01 7.772914e+01 lineto +9.221795e+01 8.001638e+01 lineto +9.246882e+01 7.952296e+01 lineto +closepath +gsave +5.753796e-01 5.753796e-01 5.753796e-01 setrgbcolor +fill +grestore +newpath +8.955629e+01 8.1605e+01 moveto +9.246882e+01 7.952296e+01 lineto +9.221795e+01 8.001638e+01 lineto +8.933201e+01 8.204609e+01 lineto +8.955629e+01 8.1605e+01 lineto +closepath +gsave +5.699602e-01 5.699602e-01 5.699602e-01 setrgbcolor +fill +grestore +newpath +8.645785e+01 8.341748e+01 moveto +8.955629e+01 8.1605e+01 lineto +8.933201e+01 8.204609e+01 lineto +8.626187e+01 8.380292e+01 lineto +8.645785e+01 8.341748e+01 lineto +closepath +gsave +5.633898e-01 5.633898e-01 5.633898e-01 setrgbcolor +fill +grestore +newpath +8.319696e+01 8.49467e+01 moveto +8.645785e+01 8.341748e+01 lineto +8.626187e+01 8.380292e+01 lineto +8.303076e+01 8.527357e+01 lineto +8.319696e+01 8.49467e+01 lineto +closepath +gsave +5.55814e-01 5.55814e-01 5.55814e-01 setrgbcolor +fill +grestore +newpath +7.979832e+01 8.618108e+01 moveto +8.319696e+01 8.49467e+01 lineto +8.303076e+01 8.527357e+01 lineto +7.966316e+01 8.644689e+01 lineto +7.979832e+01 8.618108e+01 lineto +closepath +gsave +5.473963e-01 5.473963e-01 5.473963e-01 setrgbcolor +fill +grestore +newpath +7.628764e+01 8.711127e+01 moveto +7.979832e+01 8.618108e+01 lineto +7.966316e+01 8.644689e+01 lineto +7.618455e+01 8.731402e+01 lineto +7.628764e+01 8.711127e+01 lineto +closepath +gsave +5.383123e-01 5.383123e-01 5.383123e-01 setrgbcolor +fill +grestore +newpath +7.269151e+01 8.773022e+01 moveto +7.628764e+01 8.711127e+01 lineto +7.618455e+01 8.731402e+01 lineto +7.262127e+01 8.786838e+01 lineto +7.269151e+01 8.773022e+01 lineto +closepath +gsave +5.287444e-01 5.287444e-01 5.287444e-01 setrgbcolor +fill +grestore +newpath +6.903716e+01 8.803327e+01 moveto +7.269151e+01 8.773022e+01 lineto +7.262127e+01 8.786838e+01 lineto +6.900029e+01 8.810578e+01 lineto +6.903716e+01 8.803327e+01 lineto +closepath +gsave +5.188753e-01 5.188753e-01 5.188753e-01 setrgbcolor +fill +grestore +newpath +6.535224e+01 8.80181e+01 moveto +6.903716e+01 8.803327e+01 lineto +6.900029e+01 8.810578e+01 lineto +6.534902e+01 8.802442e+01 lineto +6.535224e+01 8.80181e+01 lineto +closepath +gsave +5.088829e-01 5.088829e-01 5.088829e-01 setrgbcolor +fill +grestore +newpath +6.166466e+01 8.768483e+01 moveto +6.535224e+01 8.80181e+01 lineto +6.534902e+01 8.802442e+01 lineto +6.169512e+01 8.762492e+01 lineto +6.166466e+01 8.768483e+01 lineto +closepath +gsave +4.989348e-01 4.989348e-01 4.989348e-01 setrgbcolor +fill +grestore +newpath +9.489783e+01 7.772914e+01 moveto +9.735138e+01 7.52017e+01 lineto +9.685373e+01 7.577339e+01 lineto +9.443793e+01 7.825747e+01 lineto +9.489783e+01 7.772914e+01 lineto +closepath +gsave +5.625313e-01 5.625313e-01 5.625313e-01 setrgbcolor +fill +grestore +newpath +9.221795e+01 8.001638e+01 moveto +9.489783e+01 7.772914e+01 lineto +9.443793e+01 7.825747e+01 lineto +9.179926e+01 8.049735e+01 lineto +9.221795e+01 8.001638e+01 lineto +closepath +gsave +5.599885e-01 5.599885e-01 5.599885e-01 setrgbcolor +fill +grestore +newpath +8.933201e+01 8.204609e+01 moveto +9.221795e+01 8.001638e+01 lineto +9.179926e+01 8.049735e+01 lineto +8.895772e+01 8.247606e+01 lineto +8.933201e+01 8.204609e+01 lineto +closepath +gsave +5.563193e-01 5.563193e-01 5.563193e-01 setrgbcolor +fill +grestore +newpath +8.626187e+01 8.380292e+01 moveto +8.933201e+01 8.204609e+01 lineto +8.895772e+01 8.247606e+01 lineto +8.59348e+01 8.417864e+01 lineto +8.626187e+01 8.380292e+01 lineto +closepath +gsave +5.516033e-01 5.516033e-01 5.516033e-01 setrgbcolor +fill +grestore +newpath +8.303076e+01 8.527357e+01 moveto +8.626187e+01 8.380292e+01 lineto +8.59348e+01 8.417864e+01 lineto +8.27534e+01 8.559219e+01 lineto +8.303076e+01 8.527357e+01 lineto +closepath +gsave +5.459419e-01 5.459419e-01 5.459419e-01 setrgbcolor +fill +grestore +newpath +7.966316e+01 8.644689e+01 moveto +8.303076e+01 8.527357e+01 lineto +8.27534e+01 8.559219e+01 lineto +7.94376e+01 8.670601e+01 lineto +7.966316e+01 8.644689e+01 lineto +closepath +gsave +5.39454e-01 5.39454e-01 5.39454e-01 setrgbcolor +fill +grestore +newpath +7.618455e+01 8.731402e+01 moveto +7.966316e+01 8.644689e+01 lineto +7.94376e+01 8.670601e+01 lineto +7.60125e+01 8.751167e+01 lineto +7.618455e+01 8.731402e+01 lineto +closepath +gsave +5.322722e-01 5.322722e-01 5.322722e-01 setrgbcolor +fill +grestore +newpath +7.262127e+01 8.786838e+01 moveto +7.618455e+01 8.731402e+01 lineto +7.60125e+01 8.751167e+01 lineto +7.250403e+01 8.800306e+01 lineto +7.262127e+01 8.786838e+01 lineto +closepath +gsave +5.245389e-01 5.245389e-01 5.245389e-01 setrgbcolor +fill +grestore +newpath +6.900029e+01 8.810578e+01 moveto +7.262127e+01 8.786838e+01 lineto +7.250403e+01 8.800306e+01 lineto +6.893875e+01 8.817647e+01 lineto +6.900029e+01 8.810578e+01 lineto +closepath +gsave +5.16401e-01 5.16401e-01 5.16401e-01 setrgbcolor +fill +grestore +newpath +6.534902e+01 8.802442e+01 moveto +6.900029e+01 8.810578e+01 lineto +6.893875e+01 8.817647e+01 lineto +6.534366e+01 8.803059e+01 lineto +6.534902e+01 8.802442e+01 lineto +closepath +gsave +5.080058e-01 5.080058e-01 5.080058e-01 setrgbcolor +fill +grestore +newpath +6.169512e+01 8.762492e+01 moveto +6.534902e+01 8.802442e+01 lineto +6.534366e+01 8.803059e+01 lineto +6.174596e+01 8.756652e+01 lineto +6.169512e+01 8.762492e+01 lineto +closepath +gsave +4.994966e-01 4.994966e-01 4.994966e-01 setrgbcolor +fill +grestore +newpath +8.895772e+01 8.247606e+01 moveto +9.179926e+01 8.049735e+01 lineto +9.121535e+01 8.096291e+01 lineto +8.843572e+01 8.289227e+01 lineto +8.895772e+01 8.247606e+01 lineto +closepath +gsave +5.42967e-01 5.42967e-01 5.42967e-01 setrgbcolor +fill +grestore +newpath +8.59348e+01 8.417864e+01 moveto +8.895772e+01 8.247606e+01 lineto +8.843572e+01 8.289227e+01 lineto +8.547867e+01 8.454233e+01 lineto +8.59348e+01 8.417864e+01 lineto +closepath +gsave +5.399953e-01 5.399953e-01 5.399953e-01 setrgbcolor +fill +grestore +newpath +8.27534e+01 8.559219e+01 moveto +8.59348e+01 8.417864e+01 lineto +8.547867e+01 8.454233e+01 lineto +8.236659e+01 8.590061e+01 lineto +8.27534e+01 8.559219e+01 lineto +closepath +gsave +5.361554e-01 5.361554e-01 5.361554e-01 setrgbcolor +fill +grestore +newpath +7.94376e+01 8.670601e+01 moveto +8.27534e+01 8.559219e+01 lineto +8.236659e+01 8.590061e+01 lineto +7.912303e+01 8.695682e+01 lineto +7.94376e+01 8.670601e+01 lineto +closepath +gsave +5.315254e-01 5.315254e-01 5.315254e-01 setrgbcolor +fill +grestore +newpath +7.60125e+01 8.751167e+01 moveto +7.94376e+01 8.670601e+01 lineto +7.912303e+01 8.695682e+01 lineto +7.577256e+01 8.770298e+01 lineto +7.60125e+01 8.751167e+01 lineto +closepath +gsave +5.261978e-01 5.261978e-01 5.261978e-01 setrgbcolor +fill +grestore +newpath +7.250403e+01 8.800306e+01 moveto +7.60125e+01 8.751167e+01 lineto +7.577256e+01 8.770298e+01 lineto +7.234053e+01 8.813342e+01 lineto +7.250403e+01 8.800306e+01 lineto +closepath +gsave +5.202761e-01 5.202761e-01 5.202761e-01 setrgbcolor +fill +grestore +newpath +6.893875e+01 8.817647e+01 moveto +7.250403e+01 8.800306e+01 lineto +7.234053e+01 8.813342e+01 lineto +6.885293e+01 8.82449e+01 lineto +6.893875e+01 8.817647e+01 lineto +closepath +gsave +5.138719e-01 5.138719e-01 5.138719e-01 setrgbcolor +fill +grestore +newpath +6.534366e+01 8.803059e+01 moveto +6.893875e+01 8.817647e+01 lineto +6.885293e+01 8.82449e+01 lineto +6.533617e+01 8.803656e+01 lineto +6.534366e+01 8.803059e+01 lineto +closepath +gsave +5.071013e-01 5.071013e-01 5.071013e-01 setrgbcolor +fill +grestore +newpath +6.174596e+01 8.756652e+01 moveto +6.534366e+01 8.803059e+01 lineto +6.533617e+01 8.803656e+01 lineto +6.181686e+01 8.750999e+01 lineto +6.174596e+01 8.756652e+01 lineto +closepath +gsave +5.000813e-01 5.000813e-01 5.000813e-01 setrgbcolor +fill +grestore +newpath +8.547867e+01 8.454233e+01 moveto +8.843572e+01 8.289227e+01 lineto +8.776923e+01 8.329213e+01 lineto +8.489628e+01 8.489174e+01 lineto +8.547867e+01 8.454233e+01 lineto +closepath +gsave +5.286808e-01 5.286808e-01 5.286808e-01 setrgbcolor +fill +grestore +newpath +8.236659e+01 8.590061e+01 moveto +8.547867e+01 8.454233e+01 lineto +8.489628e+01 8.489174e+01 lineto +8.18727e+01 8.619692e+01 lineto +8.236659e+01 8.590061e+01 lineto +closepath +gsave +5.265483e-01 5.265483e-01 5.265483e-01 setrgbcolor +fill +grestore +newpath +7.912303e+01 8.695682e+01 moveto +8.236659e+01 8.590061e+01 lineto +8.18727e+01 8.619692e+01 lineto +7.872139e+01 8.71978e+01 lineto +7.912303e+01 8.695682e+01 lineto +closepath +gsave +5.236835e-01 5.236835e-01 5.236835e-01 setrgbcolor +fill +grestore +newpath +7.577256e+01 8.770298e+01 moveto +7.912303e+01 8.695682e+01 lineto +7.872139e+01 8.71978e+01 lineto +7.54662e+01 8.788678e+01 lineto +7.577256e+01 8.770298e+01 lineto +closepath +gsave +5.201419e-01 5.201419e-01 5.201419e-01 setrgbcolor +fill +grestore +newpath +7.234053e+01 8.813342e+01 moveto +7.577256e+01 8.770298e+01 lineto +7.54662e+01 8.788678e+01 lineto +7.213177e+01 8.825867e+01 lineto +7.234053e+01 8.813342e+01 lineto +closepath +gsave +5.159906e-01 5.159906e-01 5.159906e-01 setrgbcolor +fill +grestore +newpath +6.885293e+01 8.82449e+01 moveto +7.234053e+01 8.813342e+01 lineto +7.213177e+01 8.825867e+01 lineto +6.874336e+01 8.831064e+01 lineto +6.885293e+01 8.82449e+01 lineto +closepath +gsave +5.113069e-01 5.113069e-01 5.113069e-01 setrgbcolor +fill +grestore +newpath +6.533617e+01 8.803656e+01 moveto +6.885293e+01 8.82449e+01 lineto +6.874336e+01 8.831064e+01 lineto +6.532661e+01 8.80423e+01 lineto +6.533617e+01 8.803656e+01 lineto +closepath +gsave +5.061754e-01 5.061754e-01 5.061754e-01 setrgbcolor +fill +grestore +newpath +6.181686e+01 8.750999e+01 moveto +6.533617e+01 8.803656e+01 lineto +6.532661e+01 8.80423e+01 lineto +6.190738e+01 8.745568e+01 lineto +6.181686e+01 8.750999e+01 lineto +closepath +gsave +5.006857e-01 5.006857e-01 5.006857e-01 setrgbcolor +fill +grestore +newpath +8.18727e+01 8.619692e+01 moveto +8.489628e+01 8.489174e+01 lineto +8.419122e+01 8.522472e+01 lineto +8.127478e+01 8.64793e+01 lineto +8.18727e+01 8.619692e+01 lineto +closepath +gsave +5.172045e-01 5.172045e-01 5.172045e-01 setrgbcolor +fill +grestore +newpath +7.872139e+01 8.71978e+01 moveto +8.18727e+01 8.619692e+01 lineto +8.127478e+01 8.64793e+01 lineto +7.823514e+01 8.742743e+01 lineto +7.872139e+01 8.71978e+01 lineto +closepath +gsave +5.159947e-01 5.159947e-01 5.159947e-01 setrgbcolor +fill +grestore +newpath +7.54662e+01 8.788678e+01 moveto +7.872139e+01 8.71978e+01 lineto +7.823514e+01 8.742743e+01 lineto +7.509531e+01 8.806194e+01 lineto +7.54662e+01 8.788678e+01 lineto +closepath +gsave +5.141538e-01 5.141538e-01 5.141538e-01 setrgbcolor +fill +grestore +newpath +7.213177e+01 8.825867e+01 moveto +7.54662e+01 8.788678e+01 lineto +7.509531e+01 8.806194e+01 lineto +7.187905e+01 8.837802e+01 lineto +7.213177e+01 8.825867e+01 lineto +closepath +gsave +5.117156e-01 5.117156e-01 5.117156e-01 setrgbcolor +fill +grestore +newpath +6.874336e+01 8.831064e+01 moveto +7.213177e+01 8.825867e+01 lineto +7.187905e+01 8.837802e+01 lineto +6.861071e+01 8.837329e+01 lineto +6.874336e+01 8.831064e+01 lineto +closepath +gsave +5.087246e-01 5.087246e-01 5.087246e-01 setrgbcolor +fill +grestore +newpath +6.532661e+01 8.80423e+01 moveto +6.874336e+01 8.831064e+01 lineto +6.861071e+01 8.837329e+01 lineto +6.531503e+01 8.804776e+01 lineto +6.532661e+01 8.80423e+01 lineto +closepath +gsave +5.052344e-01 5.052344e-01 5.052344e-01 setrgbcolor +fill +grestore +newpath +6.190738e+01 8.745568e+01 moveto +6.532661e+01 8.80423e+01 lineto +6.531503e+01 8.804776e+01 lineto +6.201697e+01 8.740392e+01 lineto +6.190738e+01 8.745568e+01 lineto +closepath +gsave +5.013061e-01 5.013061e-01 5.013061e-01 setrgbcolor +fill +grestore +newpath +7.823514e+01 8.742743e+01 moveto +8.127478e+01 8.64793e+01 lineto +8.057653e+01 8.674601e+01 lineto +7.76673e+01 8.764433e+01 lineto +7.823514e+01 8.742743e+01 lineto +closepath +gsave +5.085179e-01 5.085179e-01 5.085179e-01 setrgbcolor +fill +grestore +newpath +7.509531e+01 8.806194e+01 moveto +7.823514e+01 8.742743e+01 lineto +7.76673e+01 8.764433e+01 lineto +7.466218e+01 8.822738e+01 lineto +7.509531e+01 8.806194e+01 lineto +closepath +gsave +5.082785e-01 5.082785e-01 5.082785e-01 setrgbcolor +fill +grestore +newpath +7.187905e+01 8.837802e+01 moveto +7.509531e+01 8.806194e+01 lineto +7.466218e+01 8.822738e+01 lineto +7.158391e+01 8.849076e+01 lineto +7.187905e+01 8.837802e+01 lineto +closepath +gsave +5.074821e-01 5.074821e-01 5.074821e-01 setrgbcolor +fill +grestore +newpath +6.861071e+01 8.837329e+01 moveto +7.187905e+01 8.837802e+01 lineto +7.158391e+01 8.849076e+01 lineto +6.845579e+01 8.843246e+01 lineto +6.861071e+01 8.837329e+01 lineto +closepath +gsave +5.061428e-01 5.061428e-01 5.061428e-01 setrgbcolor +fill +grestore +newpath +6.531503e+01 8.804776e+01 moveto +6.861071e+01 8.837329e+01 lineto +6.845579e+01 8.843246e+01 lineto +6.530152e+01 8.805293e+01 lineto +6.531503e+01 8.804776e+01 lineto +closepath +gsave +5.042842e-01 5.042842e-01 5.042842e-01 setrgbcolor +fill +grestore +newpath +6.201697e+01 8.740392e+01 moveto +6.531503e+01 8.804776e+01 lineto +6.530152e+01 8.805293e+01 lineto +6.214496e+01 8.735503e+01 lineto +6.201697e+01 8.740392e+01 lineto +closepath +gsave +5.019389e-01 5.019389e-01 5.019389e-01 setrgbcolor +fill +grestore +newpath +7.76673e+01 8.764433e+01 moveto +8.057653e+01 8.674601e+01 lineto +7.978224e+01 8.699539e+01 lineto +7.702137e+01 8.784714e+01 lineto +7.76673e+01 8.764433e+01 lineto +closepath +gsave +5.013043e-01 5.013043e-01 5.013043e-01 setrgbcolor +fill +grestore +newpath +7.466218e+01 8.822738e+01 moveto +7.76673e+01 8.764433e+01 lineto +7.702137e+01 8.784714e+01 lineto +7.416948e+01 8.838208e+01 lineto +7.466218e+01 8.822738e+01 lineto +closepath +gsave +5.025564e-01 5.025564e-01 5.025564e-01 setrgbcolor +fill +grestore +newpath +7.158391e+01 8.849076e+01 moveto +7.466218e+01 8.822738e+01 lineto +7.416948e+01 8.838208e+01 lineto +7.124818e+01 8.859617e+01 lineto +7.158391e+01 8.849076e+01 lineto +closepath +gsave +5.033189e-01 5.033189e-01 5.033189e-01 setrgbcolor +fill +grestore +newpath +6.845579e+01 8.843246e+01 moveto +7.158391e+01 8.849076e+01 lineto +7.124818e+01 8.859617e+01 lineto +6.827957e+01 8.848779e+01 lineto +6.845579e+01 8.843246e+01 lineto +closepath +gsave +5.035787e-01 5.035787e-01 5.035787e-01 setrgbcolor +fill +grestore +newpath +6.530152e+01 8.805293e+01 moveto +6.845579e+01 8.843246e+01 lineto +6.827957e+01 8.848779e+01 lineto +6.528614e+01 8.805775e+01 lineto +6.530152e+01 8.805293e+01 lineto +closepath +gsave +5.03331e-01 5.03331e-01 5.03331e-01 setrgbcolor +fill +grestore +newpath +6.214496e+01 8.735503e+01 moveto +6.530152e+01 8.805293e+01 lineto +6.528614e+01 8.805775e+01 lineto +6.229054e+01 8.730932e+01 lineto +6.214496e+01 8.735503e+01 lineto +closepath +gsave +5.025803e-01 5.025803e-01 5.025803e-01 setrgbcolor +fill +grestore +newpath +7.416948e+01 8.838208e+01 moveto +7.702137e+01 8.784714e+01 lineto +7.630131e+01 8.803461e+01 lineto +7.362025e+01 8.852508e+01 lineto +7.416948e+01 8.838208e+01 lineto +closepath +gsave +4.970227e-01 4.970227e-01 4.970227e-01 setrgbcolor +fill +grestore +newpath +7.124818e+01 8.859617e+01 moveto +7.416948e+01 8.838208e+01 lineto +7.362025e+01 8.852508e+01 lineto +7.087393e+01 8.869361e+01 lineto +7.124818e+01 8.859617e+01 lineto +closepath +gsave +4.992523e-01 4.992523e-01 4.992523e-01 setrgbcolor +fill +grestore +newpath +6.827957e+01 8.848779e+01 moveto +7.124818e+01 8.859617e+01 lineto +7.087393e+01 8.869361e+01 lineto +6.808313e+01 8.853893e+01 lineto +6.827957e+01 8.848779e+01 lineto +closepath +gsave +5.010484e-01 5.010484e-01 5.010484e-01 setrgbcolor +fill +grestore +newpath +6.528614e+01 8.805775e+01 moveto +6.827957e+01 8.848779e+01 lineto +6.808313e+01 8.853893e+01 lineto +6.5269e+01 8.806222e+01 lineto +6.528614e+01 8.805775e+01 lineto +closepath +gsave +5.023807e-01 5.023807e-01 5.023807e-01 setrgbcolor +fill +grestore +newpath +6.229054e+01 8.730932e+01 moveto +6.528614e+01 8.805775e+01 lineto +6.5269e+01 8.806222e+01 lineto +6.245283e+01 8.726707e+01 lineto +6.229054e+01 8.730932e+01 lineto +closepath +gsave +5.032263e-01 5.032263e-01 5.032263e-01 setrgbcolor +fill +grestore +newpath +7.362025e+01 8.852508e+01 moveto +7.630131e+01 8.803461e+01 lineto +7.551158e+01 8.82056e+01 lineto +7.301787e+01 8.86555e+01 lineto +7.362025e+01 8.852508e+01 lineto +closepath +gsave +4.917079e-01 4.917079e-01 4.917079e-01 setrgbcolor +fill +grestore +newpath +7.087393e+01 8.869361e+01 moveto +7.362025e+01 8.852508e+01 lineto +7.301787e+01 8.86555e+01 lineto +7.046346e+01 8.878248e+01 lineto +7.087393e+01 8.869361e+01 lineto +closepath +gsave +4.953058e-01 4.953058e-01 4.953058e-01 setrgbcolor +fill +grestore +newpath +6.808313e+01 8.853893e+01 moveto +7.087393e+01 8.869361e+01 lineto +7.046346e+01 8.878248e+01 lineto +6.786769e+01 8.858558e+01 lineto +6.808313e+01 8.853893e+01 lineto +closepath +gsave +4.985673e-01 4.985673e-01 4.985673e-01 setrgbcolor +fill +grestore +newpath +6.5269e+01 8.806222e+01 moveto +6.808313e+01 8.853893e+01 lineto +6.786769e+01 8.858558e+01 lineto +6.52502e+01 8.806629e+01 lineto +6.5269e+01 8.806222e+01 lineto +closepath +gsave +5.014392e-01 5.014392e-01 5.014392e-01 setrgbcolor +fill +grestore +newpath +6.245283e+01 8.726707e+01 moveto +6.5269e+01 8.806222e+01 lineto +6.52502e+01 8.806629e+01 lineto +6.263083e+01 8.722853e+01 lineto +6.245283e+01 8.726707e+01 lineto +closepath +gsave +5.038731e-01 5.038731e-01 5.038731e-01 setrgbcolor +fill +grestore +newpath +7.046346e+01 8.878248e+01 moveto +7.301787e+01 8.86555e+01 lineto +7.236606e+01 8.877254e+01 lineto +7.001931e+01 8.886223e+01 lineto +7.046346e+01 8.878248e+01 lineto +closepath +gsave +4.915004e-01 4.915004e-01 4.915004e-01 setrgbcolor +fill +grestore +newpath +6.786769e+01 8.858558e+01 moveto +7.046346e+01 8.878248e+01 lineto +7.001931e+01 8.886223e+01 lineto +6.763456e+01 8.862744e+01 lineto +6.786769e+01 8.858558e+01 lineto +closepath +gsave +4.961496e-01 4.961496e-01 4.961496e-01 setrgbcolor +fill +grestore +newpath +6.52502e+01 8.806629e+01 moveto +6.786769e+01 8.858558e+01 lineto +6.763456e+01 8.862744e+01 lineto +6.522986e+01 8.806994e+01 lineto +6.52502e+01 8.806629e+01 lineto +closepath +gsave +5.00512e-01 5.00512e-01 5.00512e-01 setrgbcolor +fill +grestore +newpath +6.263083e+01 8.722853e+01 moveto +6.52502e+01 8.806629e+01 lineto +6.522986e+01 8.806994e+01 lineto +6.282343e+01 8.719395e+01 lineto +6.263083e+01 8.722853e+01 lineto +closepath +gsave +5.045165e-01 5.045165e-01 5.045165e-01 setrgbcolor +fill +grestore +newpath +7.001931e+01 8.886223e+01 moveto +7.236606e+01 8.877254e+01 lineto +7.166883e+01 8.887547e+01 lineto +6.954421e+01 8.893237e+01 lineto +7.001931e+01 8.886223e+01 lineto +closepath +gsave +4.878544e-01 4.878544e-01 4.878544e-01 setrgbcolor +fill +grestore +newpath +6.763456e+01 8.862744e+01 moveto +7.001931e+01 8.886223e+01 lineto +6.954421e+01 8.893237e+01 lineto +6.738519e+01 8.866425e+01 lineto +6.763456e+01 8.862744e+01 lineto +closepath +gsave +4.938083e-01 4.938083e-01 4.938083e-01 setrgbcolor +fill +grestore +newpath +6.522986e+01 8.806994e+01 moveto +6.763456e+01 8.862744e+01 lineto +6.738519e+01 8.866425e+01 lineto +6.520811e+01 8.807315e+01 lineto +6.522986e+01 8.806994e+01 lineto +closepath +gsave +4.996048e-01 4.996048e-01 4.996048e-01 setrgbcolor +fill +grestore +newpath +6.282343e+01 8.719395e+01 moveto +6.522986e+01 8.806994e+01 lineto +6.520811e+01 8.807315e+01 lineto +6.302945e+01 8.716353e+01 lineto +6.282343e+01 8.719395e+01 lineto +closepath +gsave +5.051525e-01 5.051525e-01 5.051525e-01 setrgbcolor +fill +grestore +newpath +6.954421e+01 8.893237e+01 moveto +7.166883e+01 8.887547e+01 lineto +7.093049e+01 8.896367e+01 lineto +6.90411e+01 8.899247e+01 lineto +6.954421e+01 8.893237e+01 lineto +closepath +gsave +4.843832e-01 4.843832e-01 4.843832e-01 setrgbcolor +fill +grestore +newpath +6.738519e+01 8.866425e+01 moveto +6.954421e+01 8.893237e+01 lineto +6.90411e+01 8.899247e+01 lineto +6.712111e+01 8.86958e+01 lineto +6.738519e+01 8.866425e+01 lineto +closepath +gsave +4.915554e-01 4.915554e-01 4.915554e-01 setrgbcolor +fill +grestore +newpath +6.520811e+01 8.807315e+01 moveto +6.738519e+01 8.866425e+01 lineto +6.712111e+01 8.86958e+01 lineto +6.518507e+01 8.80759e+01 lineto +6.520811e+01 8.807315e+01 lineto +closepath +gsave +4.987228e-01 4.987228e-01 4.987228e-01 setrgbcolor +fill +grestore +newpath +6.302945e+01 8.716353e+01 moveto +6.520811e+01 8.807315e+01 lineto +6.518507e+01 8.80759e+01 lineto +6.324762e+01 8.713747e+01 lineto +6.302945e+01 8.716353e+01 lineto +closepath +gsave +5.057771e-01 5.057771e-01 5.057771e-01 setrgbcolor +fill +grestore +newpath +6.90411e+01 8.899247e+01 moveto +7.093049e+01 8.896367e+01 lineto +7.015558e+01 8.903658e+01 lineto +6.851307e+01 8.904215e+01 lineto +6.90411e+01 8.899247e+01 lineto +closepath +gsave +4.811e-01 4.811e-01 4.811e-01 setrgbcolor +fill +grestore +newpath +6.712111e+01 8.86958e+01 moveto +6.90411e+01 8.899247e+01 lineto +6.851307e+01 8.904215e+01 lineto +6.684396e+01 8.872188e+01 lineto +6.712111e+01 8.86958e+01 lineto +closepath +gsave +4.894017e-01 4.894017e-01 4.894017e-01 setrgbcolor +fill +grestore +newpath +6.518507e+01 8.80759e+01 moveto +6.712111e+01 8.86958e+01 lineto +6.684396e+01 8.872188e+01 lineto +6.516088e+01 8.807818e+01 lineto +6.518507e+01 8.80759e+01 lineto +closepath +gsave +4.978709e-01 4.978709e-01 4.978709e-01 setrgbcolor +fill +grestore +newpath +6.324762e+01 8.713747e+01 moveto +6.518507e+01 8.80759e+01 lineto +6.516088e+01 8.807818e+01 lineto +6.34766e+01 8.711593e+01 lineto +6.324762e+01 8.713747e+01 lineto +closepath +gsave +5.063862e-01 5.063862e-01 5.063862e-01 setrgbcolor +fill +grestore +newpath +6.851307e+01 8.904215e+01 moveto +7.015558e+01 8.903658e+01 lineto +6.934889e+01 8.909377e+01 lineto +6.796338e+01 8.908112e+01 lineto +6.851307e+01 8.904215e+01 lineto +closepath +gsave +4.780153e-01 4.780153e-01 4.780153e-01 setrgbcolor +fill +grestore +newpath +6.684396e+01 8.872188e+01 moveto +6.851307e+01 8.904215e+01 lineto +6.796338e+01 8.908112e+01 lineto +6.655543e+01 8.874233e+01 lineto +6.684396e+01 8.872188e+01 lineto +closepath +gsave +4.873569e-01 4.873569e-01 4.873569e-01 setrgbcolor +fill +grestore +newpath +6.516088e+01 8.807818e+01 moveto +6.684396e+01 8.872188e+01 lineto +6.655543e+01 8.874233e+01 lineto +6.513571e+01 8.807996e+01 lineto +6.516088e+01 8.807818e+01 lineto +closepath +gsave +4.970541e-01 4.970541e-01 4.970541e-01 setrgbcolor +fill +grestore +newpath +6.34766e+01 8.711593e+01 moveto +6.516088e+01 8.807818e+01 lineto +6.513571e+01 8.807996e+01 lineto +6.371496e+01 8.709903e+01 lineto +6.34766e+01 8.711593e+01 lineto +closepath +gsave +5.069758e-01 5.069758e-01 5.069758e-01 setrgbcolor +fill +grestore +newpath +6.796338e+01 8.908112e+01 moveto +6.934889e+01 8.909377e+01 lineto +6.851539e+01 8.913486e+01 lineto +6.739542e+01 8.910912e+01 lineto +6.796338e+01 8.908112e+01 lineto +closepath +gsave +4.751377e-01 4.751377e-01 4.751377e-01 setrgbcolor +fill +grestore +newpath +6.655543e+01 8.874233e+01 moveto +6.796338e+01 8.908112e+01 lineto +6.739542e+01 8.910912e+01 lineto +6.625732e+01 8.875703e+01 lineto +6.655543e+01 8.874233e+01 lineto +closepath +gsave +4.854295e-01 4.854295e-01 4.854295e-01 setrgbcolor +fill +grestore +newpath +6.513571e+01 8.807996e+01 moveto +6.655543e+01 8.874233e+01 lineto +6.625732e+01 8.875703e+01 lineto +6.51097e+01 8.808124e+01 lineto +6.513571e+01 8.807996e+01 lineto +closepath +gsave +4.962766e-01 4.962766e-01 4.962766e-01 setrgbcolor +fill +grestore +newpath +6.371496e+01 8.709903e+01 moveto +6.513571e+01 8.807996e+01 lineto +6.51097e+01 8.808124e+01 lineto +6.396125e+01 8.708689e+01 lineto +6.371496e+01 8.709903e+01 lineto +closepath +gsave +5.075421e-01 5.075421e-01 5.075421e-01 setrgbcolor +fill +grestore +newpath +6.739542e+01 8.910912e+01 moveto +6.851539e+01 8.913486e+01 lineto +6.766021e+01 8.915963e+01 lineto +6.68127e+01 8.9126e+01 lineto +6.739542e+01 8.910912e+01 lineto +closepath +gsave +4.724735e-01 4.724735e-01 4.724735e-01 setrgbcolor +fill +grestore +newpath +6.625732e+01 8.875703e+01 moveto +6.739542e+01 8.910912e+01 lineto +6.68127e+01 8.9126e+01 lineto +6.595146e+01 8.876589e+01 lineto +6.625732e+01 8.875703e+01 lineto +closepath +gsave +4.836272e-01 4.836272e-01 4.836272e-01 setrgbcolor +fill +grestore +newpath +6.51097e+01 8.808124e+01 moveto +6.625732e+01 8.875703e+01 lineto +6.595146e+01 8.876589e+01 lineto +6.508301e+01 8.808202e+01 lineto +6.51097e+01 8.808124e+01 lineto +closepath +gsave +4.955428e-01 4.955428e-01 4.955428e-01 setrgbcolor +fill +grestore +newpath +6.396125e+01 8.708689e+01 moveto +6.51097e+01 8.808124e+01 lineto +6.508301e+01 8.808202e+01 lineto +6.421394e+01 8.707957e+01 lineto +6.396125e+01 8.708689e+01 lineto +closepath +gsave +5.080812e-01 5.080812e-01 5.080812e-01 setrgbcolor +fill +grestore +newpath +6.68127e+01 8.9126e+01 moveto +6.766021e+01 8.915963e+01 lineto +6.678863e+01 8.91679e+01 lineto +6.621879e+01 8.913163e+01 lineto +6.68127e+01 8.9126e+01 lineto +closepath +gsave +4.700275e-01 4.700275e-01 4.700275e-01 setrgbcolor +fill +grestore +newpath +6.595146e+01 8.876589e+01 moveto +6.68127e+01 8.9126e+01 lineto +6.621879e+01 8.913163e+01 lineto +6.563973e+01 8.876884e+01 lineto +6.595146e+01 8.876589e+01 lineto +closepath +gsave +4.819564e-01 4.819564e-01 4.819564e-01 setrgbcolor +fill +grestore +newpath +6.508301e+01 8.808202e+01 moveto +6.595146e+01 8.876589e+01 lineto +6.563973e+01 8.876884e+01 lineto +6.505582e+01 8.808228e+01 lineto +6.508301e+01 8.808202e+01 lineto +closepath +gsave +4.948565e-01 4.948565e-01 4.948565e-01 setrgbcolor +fill +grestore +newpath +6.421394e+01 8.707957e+01 moveto +6.508301e+01 8.808202e+01 lineto +6.505582e+01 8.808228e+01 lineto +6.447148e+01 8.707713e+01 lineto +6.421394e+01 8.707957e+01 lineto +closepath +gsave +5.085896e-01 5.085896e-01 5.085896e-01 setrgbcolor +fill +grestore +1.0e-01 setlinewidth +newpath +7.917805e+01 8.89236e+01 moveto +7.917805e+01 8.61236e+01 lineto +7.91361e+01 8.638236e+01 lineto +7.91361e+01 8.918236e+01 lineto +7.917805e+01 8.89236e+01 lineto +closepath +gsave +4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor +fill +grestore +newpath +7.917805e+01 8.89236e+01 moveto +7.917805e+01 8.61236e+01 lineto +7.91361e+01 8.638236e+01 lineto +7.91361e+01 8.918236e+01 lineto +7.917805e+01 8.89236e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.917805e+01 9.17236e+01 moveto +7.917805e+01 8.89236e+01 lineto +7.91361e+01 8.918236e+01 lineto +7.91361e+01 9.198236e+01 lineto +7.917805e+01 9.17236e+01 lineto +closepath +gsave +4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor +fill +grestore +newpath +7.917805e+01 9.17236e+01 moveto +7.917805e+01 8.89236e+01 lineto +7.91361e+01 8.918236e+01 lineto +7.91361e+01 9.198236e+01 lineto +7.917805e+01 9.17236e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.917805e+01 9.45236e+01 moveto +7.917805e+01 9.17236e+01 lineto +7.91361e+01 9.198236e+01 lineto +7.91361e+01 9.478236e+01 lineto +7.917805e+01 9.45236e+01 lineto +closepath +gsave +4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor +fill +grestore +newpath +7.917805e+01 9.45236e+01 moveto +7.917805e+01 9.17236e+01 lineto +7.91361e+01 9.198236e+01 lineto +7.91361e+01 9.478236e+01 lineto +7.917805e+01 9.45236e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.917805e+01 9.73236e+01 moveto +7.917805e+01 9.45236e+01 lineto +7.91361e+01 9.478236e+01 lineto +7.91361e+01 9.758236e+01 lineto +7.917805e+01 9.73236e+01 lineto +closepath +gsave +4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor +fill +grestore +newpath +7.917805e+01 9.73236e+01 moveto +7.917805e+01 9.45236e+01 lineto +7.91361e+01 9.478236e+01 lineto +7.91361e+01 9.758236e+01 lineto +7.917805e+01 9.73236e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.917805e+01 1.001236e+02 moveto +7.917805e+01 9.73236e+01 lineto +7.91361e+01 9.758236e+01 lineto +7.91361e+01 1.003824e+02 lineto +7.917805e+01 1.001236e+02 lineto +closepath +gsave +4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor +fill +grestore +newpath +7.917805e+01 1.001236e+02 moveto +7.917805e+01 9.73236e+01 lineto +7.91361e+01 9.758236e+01 lineto +7.91361e+01 1.003824e+02 lineto +7.917805e+01 1.001236e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.917805e+01 1.029236e+02 moveto +7.917805e+01 1.001236e+02 lineto +7.91361e+01 1.003824e+02 lineto +7.91361e+01 1.031824e+02 lineto +7.917805e+01 1.029236e+02 lineto +closepath +gsave +4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor +fill +grestore +newpath +7.917805e+01 1.029236e+02 moveto +7.917805e+01 1.001236e+02 lineto +7.91361e+01 1.003824e+02 lineto +7.91361e+01 1.031824e+02 lineto +7.917805e+01 1.029236e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.917805e+01 1.057236e+02 moveto +7.917805e+01 1.029236e+02 lineto +7.91361e+01 1.031824e+02 lineto +7.91361e+01 1.059824e+02 lineto +7.917805e+01 1.057236e+02 lineto +closepath +gsave +4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor +fill +grestore +newpath +7.917805e+01 1.057236e+02 moveto +7.917805e+01 1.029236e+02 lineto +7.91361e+01 1.031824e+02 lineto +7.91361e+01 1.059824e+02 lineto +7.917805e+01 1.057236e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.917805e+01 1.085236e+02 moveto +7.917805e+01 1.057236e+02 lineto +7.91361e+01 1.059824e+02 lineto +7.91361e+01 1.087824e+02 lineto +7.917805e+01 1.085236e+02 lineto +closepath +gsave +4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor +fill +grestore +newpath +7.917805e+01 1.085236e+02 moveto +7.917805e+01 1.057236e+02 lineto +7.91361e+01 1.059824e+02 lineto +7.91361e+01 1.087824e+02 lineto +7.917805e+01 1.085236e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.917805e+01 1.113236e+02 moveto +7.917805e+01 1.085236e+02 lineto +7.91361e+01 1.087824e+02 lineto +7.91361e+01 1.115824e+02 lineto +7.917805e+01 1.113236e+02 lineto +closepath +gsave +4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor +fill +grestore +newpath +7.917805e+01 1.113236e+02 moveto +7.917805e+01 1.085236e+02 lineto +7.91361e+01 1.087824e+02 lineto +7.91361e+01 1.115824e+02 lineto +7.917805e+01 1.113236e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.917805e+01 1.141236e+02 moveto +7.917805e+01 1.113236e+02 lineto +7.91361e+01 1.115824e+02 lineto +7.91361e+01 1.143824e+02 lineto +7.917805e+01 1.141236e+02 lineto +closepath +gsave +4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor +fill +grestore +newpath +7.917805e+01 1.141236e+02 moveto +7.917805e+01 1.113236e+02 lineto +7.91361e+01 1.115824e+02 lineto +7.91361e+01 1.143824e+02 lineto +7.917805e+01 1.141236e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.91361e+01 8.918236e+01 moveto +7.91361e+01 8.638236e+01 lineto +7.900699e+01 8.663628e+01 lineto +7.900699e+01 8.943628e+01 lineto +7.91361e+01 8.918236e+01 lineto +closepath +gsave +4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor +fill +grestore +newpath +7.91361e+01 8.918236e+01 moveto +7.91361e+01 8.638236e+01 lineto +7.900699e+01 8.663628e+01 lineto +7.900699e+01 8.943628e+01 lineto +7.91361e+01 8.918236e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.91361e+01 9.198236e+01 moveto +7.91361e+01 8.918236e+01 lineto +7.900699e+01 8.943628e+01 lineto +7.900699e+01 9.223628e+01 lineto +7.91361e+01 9.198236e+01 lineto +closepath +gsave +4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor +fill +grestore +newpath +7.91361e+01 9.198236e+01 moveto +7.91361e+01 8.918236e+01 lineto +7.900699e+01 8.943628e+01 lineto +7.900699e+01 9.223628e+01 lineto +7.91361e+01 9.198236e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.91361e+01 9.478236e+01 moveto +7.91361e+01 9.198236e+01 lineto +7.900699e+01 9.223628e+01 lineto +7.900699e+01 9.503628e+01 lineto +7.91361e+01 9.478236e+01 lineto +closepath +gsave +4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor +fill +grestore +newpath +7.91361e+01 9.478236e+01 moveto +7.91361e+01 9.198236e+01 lineto +7.900699e+01 9.223628e+01 lineto +7.900699e+01 9.503628e+01 lineto +7.91361e+01 9.478236e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.91361e+01 9.758236e+01 moveto +7.91361e+01 9.478236e+01 lineto +7.900699e+01 9.503628e+01 lineto +7.900699e+01 9.783628e+01 lineto +7.91361e+01 9.758236e+01 lineto +closepath +gsave +4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor +fill +grestore +newpath +7.91361e+01 9.758236e+01 moveto +7.91361e+01 9.478236e+01 lineto +7.900699e+01 9.503628e+01 lineto +7.900699e+01 9.783628e+01 lineto +7.91361e+01 9.758236e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.91361e+01 1.003824e+02 moveto +7.91361e+01 9.758236e+01 lineto +7.900699e+01 9.783628e+01 lineto +7.900699e+01 1.006363e+02 lineto +7.91361e+01 1.003824e+02 lineto +closepath +gsave +4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor +fill +grestore +newpath +7.91361e+01 1.003824e+02 moveto +7.91361e+01 9.758236e+01 lineto +7.900699e+01 9.783628e+01 lineto +7.900699e+01 1.006363e+02 lineto +7.91361e+01 1.003824e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.91361e+01 1.031824e+02 moveto +7.91361e+01 1.003824e+02 lineto +7.900699e+01 1.006363e+02 lineto +7.900699e+01 1.034363e+02 lineto +7.91361e+01 1.031824e+02 lineto +closepath +gsave +4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor +fill +grestore +newpath +7.91361e+01 1.031824e+02 moveto +7.91361e+01 1.003824e+02 lineto +7.900699e+01 1.006363e+02 lineto +7.900699e+01 1.034363e+02 lineto +7.91361e+01 1.031824e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.91361e+01 1.059824e+02 moveto +7.91361e+01 1.031824e+02 lineto +7.900699e+01 1.034363e+02 lineto +7.900699e+01 1.062363e+02 lineto +7.91361e+01 1.059824e+02 lineto +closepath +gsave +4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor +fill +grestore +newpath +7.91361e+01 1.059824e+02 moveto +7.91361e+01 1.031824e+02 lineto +7.900699e+01 1.034363e+02 lineto +7.900699e+01 1.062363e+02 lineto +7.91361e+01 1.059824e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.91361e+01 1.087824e+02 moveto +7.91361e+01 1.059824e+02 lineto +7.900699e+01 1.062363e+02 lineto +7.900699e+01 1.090363e+02 lineto +7.91361e+01 1.087824e+02 lineto +closepath +gsave +4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor +fill +grestore +newpath +7.91361e+01 1.087824e+02 moveto +7.91361e+01 1.059824e+02 lineto +7.900699e+01 1.062363e+02 lineto +7.900699e+01 1.090363e+02 lineto +7.91361e+01 1.087824e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.91361e+01 1.115824e+02 moveto +7.91361e+01 1.087824e+02 lineto +7.900699e+01 1.090363e+02 lineto +7.900699e+01 1.118363e+02 lineto +7.91361e+01 1.115824e+02 lineto +closepath +gsave +4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor +fill +grestore +newpath +7.91361e+01 1.115824e+02 moveto +7.91361e+01 1.087824e+02 lineto +7.900699e+01 1.090363e+02 lineto +7.900699e+01 1.118363e+02 lineto +7.91361e+01 1.115824e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.91361e+01 1.143824e+02 moveto +7.91361e+01 1.115824e+02 lineto +7.900699e+01 1.118363e+02 lineto +7.900699e+01 1.146363e+02 lineto +7.91361e+01 1.143824e+02 lineto +closepath +gsave +4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor +fill +grestore +newpath +7.91361e+01 1.143824e+02 moveto +7.91361e+01 1.115824e+02 lineto +7.900699e+01 1.118363e+02 lineto +7.900699e+01 1.146363e+02 lineto +7.91361e+01 1.143824e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.900699e+01 8.943628e+01 moveto +7.900699e+01 8.663628e+01 lineto +7.879152e+01 8.68838e+01 lineto +7.879152e+01 8.96838e+01 lineto +7.900699e+01 8.943628e+01 lineto +closepath +gsave +4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor +fill +grestore +newpath +7.900699e+01 8.943628e+01 moveto +7.900699e+01 8.663628e+01 lineto +7.879152e+01 8.68838e+01 lineto +7.879152e+01 8.96838e+01 lineto +7.900699e+01 8.943628e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.900699e+01 9.223628e+01 moveto +7.900699e+01 8.943628e+01 lineto +7.879152e+01 8.96838e+01 lineto +7.879152e+01 9.24838e+01 lineto +7.900699e+01 9.223628e+01 lineto +closepath +gsave +4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor +fill +grestore +newpath +7.900699e+01 9.223628e+01 moveto +7.900699e+01 8.943628e+01 lineto +7.879152e+01 8.96838e+01 lineto +7.879152e+01 9.24838e+01 lineto +7.900699e+01 9.223628e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.900699e+01 9.503628e+01 moveto +7.900699e+01 9.223628e+01 lineto +7.879152e+01 9.24838e+01 lineto +7.879152e+01 9.52838e+01 lineto +7.900699e+01 9.503628e+01 lineto +closepath +gsave +4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor +fill +grestore +newpath +7.900699e+01 9.503628e+01 moveto +7.900699e+01 9.223628e+01 lineto +7.879152e+01 9.24838e+01 lineto +7.879152e+01 9.52838e+01 lineto +7.900699e+01 9.503628e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.900699e+01 9.783628e+01 moveto +7.900699e+01 9.503628e+01 lineto +7.879152e+01 9.52838e+01 lineto +7.879152e+01 9.80838e+01 lineto +7.900699e+01 9.783628e+01 lineto +closepath +gsave +4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor +fill +grestore +newpath +7.900699e+01 9.783628e+01 moveto +7.900699e+01 9.503628e+01 lineto +7.879152e+01 9.52838e+01 lineto +7.879152e+01 9.80838e+01 lineto +7.900699e+01 9.783628e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.900699e+01 1.006363e+02 moveto +7.900699e+01 9.783628e+01 lineto +7.879152e+01 9.80838e+01 lineto +7.879152e+01 1.008838e+02 lineto +7.900699e+01 1.006363e+02 lineto +closepath +gsave +4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor +fill +grestore +newpath +7.900699e+01 1.006363e+02 moveto +7.900699e+01 9.783628e+01 lineto +7.879152e+01 9.80838e+01 lineto +7.879152e+01 1.008838e+02 lineto +7.900699e+01 1.006363e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.900699e+01 1.034363e+02 moveto +7.900699e+01 1.006363e+02 lineto +7.879152e+01 1.008838e+02 lineto +7.879152e+01 1.036838e+02 lineto +7.900699e+01 1.034363e+02 lineto +closepath +gsave +4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor +fill +grestore +newpath +7.900699e+01 1.034363e+02 moveto +7.900699e+01 1.006363e+02 lineto +7.879152e+01 1.008838e+02 lineto +7.879152e+01 1.036838e+02 lineto +7.900699e+01 1.034363e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.900699e+01 1.062363e+02 moveto +7.900699e+01 1.034363e+02 lineto +7.879152e+01 1.036838e+02 lineto +7.879152e+01 1.064838e+02 lineto +7.900699e+01 1.062363e+02 lineto +closepath +gsave +4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor +fill +grestore +newpath +7.900699e+01 1.062363e+02 moveto +7.900699e+01 1.034363e+02 lineto +7.879152e+01 1.036838e+02 lineto +7.879152e+01 1.064838e+02 lineto +7.900699e+01 1.062363e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.900699e+01 1.090363e+02 moveto +7.900699e+01 1.062363e+02 lineto +7.879152e+01 1.064838e+02 lineto +7.879152e+01 1.092838e+02 lineto +7.900699e+01 1.090363e+02 lineto +closepath +gsave +4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor +fill +grestore +newpath +7.900699e+01 1.090363e+02 moveto +7.900699e+01 1.062363e+02 lineto +7.879152e+01 1.064838e+02 lineto +7.879152e+01 1.092838e+02 lineto +7.900699e+01 1.090363e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.900699e+01 1.118363e+02 moveto +7.900699e+01 1.090363e+02 lineto +7.879152e+01 1.092838e+02 lineto +7.879152e+01 1.120838e+02 lineto +7.900699e+01 1.118363e+02 lineto +closepath +gsave +4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor +fill +grestore +newpath +7.900699e+01 1.118363e+02 moveto +7.900699e+01 1.090363e+02 lineto +7.879152e+01 1.092838e+02 lineto +7.879152e+01 1.120838e+02 lineto +7.900699e+01 1.118363e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.900699e+01 1.146363e+02 moveto +7.900699e+01 1.118363e+02 lineto +7.879152e+01 1.120838e+02 lineto +7.879152e+01 1.148838e+02 lineto +7.900699e+01 1.146363e+02 lineto +closepath +gsave +4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor +fill +grestore +newpath +7.900699e+01 1.146363e+02 moveto +7.900699e+01 1.118363e+02 lineto +7.879152e+01 1.120838e+02 lineto +7.879152e+01 1.148838e+02 lineto +7.900699e+01 1.146363e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.879152e+01 8.96838e+01 moveto +7.879152e+01 8.68838e+01 lineto +7.849103e+01 8.712339e+01 lineto +7.849103e+01 8.992339e+01 lineto +7.879152e+01 8.96838e+01 lineto +closepath +gsave +4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor +fill +grestore +newpath +7.879152e+01 8.96838e+01 moveto +7.879152e+01 8.68838e+01 lineto +7.849103e+01 8.712339e+01 lineto +7.849103e+01 8.992339e+01 lineto +7.879152e+01 8.96838e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.879152e+01 9.24838e+01 moveto +7.879152e+01 8.96838e+01 lineto +7.849103e+01 8.992339e+01 lineto +7.849103e+01 9.272339e+01 lineto +7.879152e+01 9.24838e+01 lineto +closepath +gsave +4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor +fill +grestore +newpath +7.879152e+01 9.24838e+01 moveto +7.879152e+01 8.96838e+01 lineto +7.849103e+01 8.992339e+01 lineto +7.849103e+01 9.272339e+01 lineto +7.879152e+01 9.24838e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.879152e+01 9.52838e+01 moveto +7.879152e+01 9.24838e+01 lineto +7.849103e+01 9.272339e+01 lineto +7.849103e+01 9.552339e+01 lineto +7.879152e+01 9.52838e+01 lineto +closepath +gsave +4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor +fill +grestore +newpath +7.879152e+01 9.52838e+01 moveto +7.879152e+01 9.24838e+01 lineto +7.849103e+01 9.272339e+01 lineto +7.849103e+01 9.552339e+01 lineto +7.879152e+01 9.52838e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.879152e+01 9.80838e+01 moveto +7.879152e+01 9.52838e+01 lineto +7.849103e+01 9.552339e+01 lineto +7.849103e+01 9.832339e+01 lineto +7.879152e+01 9.80838e+01 lineto +closepath +gsave +4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor +fill +grestore +newpath +7.879152e+01 9.80838e+01 moveto +7.879152e+01 9.52838e+01 lineto +7.849103e+01 9.552339e+01 lineto +7.849103e+01 9.832339e+01 lineto +7.879152e+01 9.80838e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.879152e+01 1.008838e+02 moveto +7.879152e+01 9.80838e+01 lineto +7.849103e+01 9.832339e+01 lineto +7.849103e+01 1.011234e+02 lineto +7.879152e+01 1.008838e+02 lineto +closepath +gsave +4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor +fill +grestore +newpath +7.879152e+01 1.008838e+02 moveto +7.879152e+01 9.80838e+01 lineto +7.849103e+01 9.832339e+01 lineto +7.849103e+01 1.011234e+02 lineto +7.879152e+01 1.008838e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.879152e+01 1.036838e+02 moveto +7.879152e+01 1.008838e+02 lineto +7.849103e+01 1.011234e+02 lineto +7.849103e+01 1.039234e+02 lineto +7.879152e+01 1.036838e+02 lineto +closepath +gsave +4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor +fill +grestore +newpath +7.879152e+01 1.036838e+02 moveto +7.879152e+01 1.008838e+02 lineto +7.849103e+01 1.011234e+02 lineto +7.849103e+01 1.039234e+02 lineto +7.879152e+01 1.036838e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.879152e+01 1.064838e+02 moveto +7.879152e+01 1.036838e+02 lineto +7.849103e+01 1.039234e+02 lineto +7.849103e+01 1.067234e+02 lineto +7.879152e+01 1.064838e+02 lineto +closepath +gsave +4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor +fill +grestore +newpath +7.879152e+01 1.064838e+02 moveto +7.879152e+01 1.036838e+02 lineto +7.849103e+01 1.039234e+02 lineto +7.849103e+01 1.067234e+02 lineto +7.879152e+01 1.064838e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.879152e+01 1.092838e+02 moveto +7.879152e+01 1.064838e+02 lineto +7.849103e+01 1.067234e+02 lineto +7.849103e+01 1.095234e+02 lineto +7.879152e+01 1.092838e+02 lineto +closepath +gsave +4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor +fill +grestore +newpath +7.879152e+01 1.092838e+02 moveto +7.879152e+01 1.064838e+02 lineto +7.849103e+01 1.067234e+02 lineto +7.849103e+01 1.095234e+02 lineto +7.879152e+01 1.092838e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.879152e+01 1.120838e+02 moveto +7.879152e+01 1.092838e+02 lineto +7.849103e+01 1.095234e+02 lineto +7.849103e+01 1.123234e+02 lineto +7.879152e+01 1.120838e+02 lineto +closepath +gsave +4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor +fill +grestore +newpath +7.879152e+01 1.120838e+02 moveto +7.879152e+01 1.092838e+02 lineto +7.849103e+01 1.095234e+02 lineto +7.849103e+01 1.123234e+02 lineto +7.879152e+01 1.120838e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.879152e+01 1.148838e+02 moveto +7.879152e+01 1.120838e+02 lineto +7.849103e+01 1.123234e+02 lineto +7.849103e+01 1.151234e+02 lineto +7.879152e+01 1.148838e+02 lineto +closepath +gsave +4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor +fill +grestore +newpath +7.879152e+01 1.148838e+02 moveto +7.879152e+01 1.120838e+02 lineto +7.849103e+01 1.123234e+02 lineto +7.849103e+01 1.151234e+02 lineto +7.879152e+01 1.148838e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.849103e+01 8.992339e+01 moveto +7.849103e+01 8.712339e+01 lineto +7.810736e+01 8.735357e+01 lineto +7.810736e+01 9.015357e+01 lineto +7.849103e+01 8.992339e+01 lineto +closepath +gsave +4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor +fill +grestore +newpath +7.849103e+01 8.992339e+01 moveto +7.849103e+01 8.712339e+01 lineto +7.810736e+01 8.735357e+01 lineto +7.810736e+01 9.015357e+01 lineto +7.849103e+01 8.992339e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.849103e+01 9.272339e+01 moveto +7.849103e+01 8.992339e+01 lineto +7.810736e+01 9.015357e+01 lineto +7.810736e+01 9.295357e+01 lineto +7.849103e+01 9.272339e+01 lineto +closepath +gsave +4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor +fill +grestore +newpath +7.849103e+01 9.272339e+01 moveto +7.849103e+01 8.992339e+01 lineto +7.810736e+01 9.015357e+01 lineto +7.810736e+01 9.295357e+01 lineto +7.849103e+01 9.272339e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.849103e+01 9.552339e+01 moveto +7.849103e+01 9.272339e+01 lineto +7.810736e+01 9.295357e+01 lineto +7.810736e+01 9.575357e+01 lineto +7.849103e+01 9.552339e+01 lineto +closepath +gsave +4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor +fill +grestore +newpath +7.849103e+01 9.552339e+01 moveto +7.849103e+01 9.272339e+01 lineto +7.810736e+01 9.295357e+01 lineto +7.810736e+01 9.575357e+01 lineto +7.849103e+01 9.552339e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.849103e+01 9.832339e+01 moveto +7.849103e+01 9.552339e+01 lineto +7.810736e+01 9.575357e+01 lineto +7.810736e+01 9.855357e+01 lineto +7.849103e+01 9.832339e+01 lineto +closepath +gsave +4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor +fill +grestore +newpath +7.849103e+01 9.832339e+01 moveto +7.849103e+01 9.552339e+01 lineto +7.810736e+01 9.575357e+01 lineto +7.810736e+01 9.855357e+01 lineto +7.849103e+01 9.832339e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.849103e+01 1.011234e+02 moveto +7.849103e+01 9.832339e+01 lineto +7.810736e+01 9.855357e+01 lineto +7.810736e+01 1.013536e+02 lineto +7.849103e+01 1.011234e+02 lineto +closepath +gsave +4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor +fill +grestore +newpath +7.849103e+01 1.011234e+02 moveto +7.849103e+01 9.832339e+01 lineto +7.810736e+01 9.855357e+01 lineto +7.810736e+01 1.013536e+02 lineto +7.849103e+01 1.011234e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.849103e+01 1.039234e+02 moveto +7.849103e+01 1.011234e+02 lineto +7.810736e+01 1.013536e+02 lineto +7.810736e+01 1.041536e+02 lineto +7.849103e+01 1.039234e+02 lineto +closepath +gsave +4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor +fill +grestore +newpath +7.849103e+01 1.039234e+02 moveto +7.849103e+01 1.011234e+02 lineto +7.810736e+01 1.013536e+02 lineto +7.810736e+01 1.041536e+02 lineto +7.849103e+01 1.039234e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.849103e+01 1.067234e+02 moveto +7.849103e+01 1.039234e+02 lineto +7.810736e+01 1.041536e+02 lineto +7.810736e+01 1.069536e+02 lineto +7.849103e+01 1.067234e+02 lineto +closepath +gsave +4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor +fill +grestore +newpath +7.849103e+01 1.067234e+02 moveto +7.849103e+01 1.039234e+02 lineto +7.810736e+01 1.041536e+02 lineto +7.810736e+01 1.069536e+02 lineto +7.849103e+01 1.067234e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.849103e+01 1.095234e+02 moveto +7.849103e+01 1.067234e+02 lineto +7.810736e+01 1.069536e+02 lineto +7.810736e+01 1.097536e+02 lineto +7.849103e+01 1.095234e+02 lineto +closepath +gsave +4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor +fill +grestore +newpath +7.849103e+01 1.095234e+02 moveto +7.849103e+01 1.067234e+02 lineto +7.810736e+01 1.069536e+02 lineto +7.810736e+01 1.097536e+02 lineto +7.849103e+01 1.095234e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.849103e+01 1.123234e+02 moveto +7.849103e+01 1.095234e+02 lineto +7.810736e+01 1.097536e+02 lineto +7.810736e+01 1.125536e+02 lineto +7.849103e+01 1.123234e+02 lineto +closepath +gsave +4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor +fill +grestore +newpath +7.849103e+01 1.123234e+02 moveto +7.849103e+01 1.095234e+02 lineto +7.810736e+01 1.097536e+02 lineto +7.810736e+01 1.125536e+02 lineto +7.849103e+01 1.123234e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.849103e+01 1.151234e+02 moveto +7.849103e+01 1.123234e+02 lineto +7.810736e+01 1.125536e+02 lineto +7.810736e+01 1.153536e+02 lineto +7.849103e+01 1.151234e+02 lineto +closepath +gsave +4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor +fill +grestore +newpath +7.849103e+01 1.151234e+02 moveto +7.849103e+01 1.123234e+02 lineto +7.810736e+01 1.125536e+02 lineto +7.810736e+01 1.153536e+02 lineto +7.849103e+01 1.151234e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.810736e+01 9.015357e+01 moveto +7.810736e+01 8.735357e+01 lineto +7.764288e+01 8.757294e+01 lineto +7.764288e+01 9.037294e+01 lineto +7.810736e+01 9.015357e+01 lineto +closepath +gsave +4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor +fill +grestore +newpath +7.810736e+01 9.015357e+01 moveto +7.810736e+01 8.735357e+01 lineto +7.764288e+01 8.757294e+01 lineto +7.764288e+01 9.037294e+01 lineto +7.810736e+01 9.015357e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.810736e+01 9.295357e+01 moveto +7.810736e+01 9.015357e+01 lineto +7.764288e+01 9.037294e+01 lineto +7.764288e+01 9.317294e+01 lineto +7.810736e+01 9.295357e+01 lineto +closepath +gsave +4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor +fill +grestore +newpath +7.810736e+01 9.295357e+01 moveto +7.810736e+01 9.015357e+01 lineto +7.764288e+01 9.037294e+01 lineto +7.764288e+01 9.317294e+01 lineto +7.810736e+01 9.295357e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.810736e+01 9.575357e+01 moveto +7.810736e+01 9.295357e+01 lineto +7.764288e+01 9.317294e+01 lineto +7.764288e+01 9.597294e+01 lineto +7.810736e+01 9.575357e+01 lineto +closepath +gsave +4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor +fill +grestore +newpath +7.810736e+01 9.575357e+01 moveto +7.810736e+01 9.295357e+01 lineto +7.764288e+01 9.317294e+01 lineto +7.764288e+01 9.597294e+01 lineto +7.810736e+01 9.575357e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.810736e+01 9.855357e+01 moveto +7.810736e+01 9.575357e+01 lineto +7.764288e+01 9.597294e+01 lineto +7.764288e+01 9.877294e+01 lineto +7.810736e+01 9.855357e+01 lineto +closepath +gsave +4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor +fill +grestore +newpath +7.810736e+01 9.855357e+01 moveto +7.810736e+01 9.575357e+01 lineto +7.764288e+01 9.597294e+01 lineto +7.764288e+01 9.877294e+01 lineto +7.810736e+01 9.855357e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.810736e+01 1.013536e+02 moveto +7.810736e+01 9.855357e+01 lineto +7.764288e+01 9.877294e+01 lineto +7.764288e+01 1.015729e+02 lineto +7.810736e+01 1.013536e+02 lineto +closepath +gsave +4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor +fill +grestore +newpath +7.810736e+01 1.013536e+02 moveto +7.810736e+01 9.855357e+01 lineto +7.764288e+01 9.877294e+01 lineto +7.764288e+01 1.015729e+02 lineto +7.810736e+01 1.013536e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.810736e+01 1.041536e+02 moveto +7.810736e+01 1.013536e+02 lineto +7.764288e+01 1.015729e+02 lineto +7.764288e+01 1.043729e+02 lineto +7.810736e+01 1.041536e+02 lineto +closepath +gsave +4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor +fill +grestore +newpath +7.810736e+01 1.041536e+02 moveto +7.810736e+01 1.013536e+02 lineto +7.764288e+01 1.015729e+02 lineto +7.764288e+01 1.043729e+02 lineto +7.810736e+01 1.041536e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.810736e+01 1.069536e+02 moveto +7.810736e+01 1.041536e+02 lineto +7.764288e+01 1.043729e+02 lineto +7.764288e+01 1.071729e+02 lineto +7.810736e+01 1.069536e+02 lineto +closepath +gsave +4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor +fill +grestore +newpath +7.810736e+01 1.069536e+02 moveto +7.810736e+01 1.041536e+02 lineto +7.764288e+01 1.043729e+02 lineto +7.764288e+01 1.071729e+02 lineto +7.810736e+01 1.069536e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.810736e+01 1.097536e+02 moveto +7.810736e+01 1.069536e+02 lineto +7.764288e+01 1.071729e+02 lineto +7.764288e+01 1.099729e+02 lineto +7.810736e+01 1.097536e+02 lineto +closepath +gsave +4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor +fill +grestore +newpath +7.810736e+01 1.097536e+02 moveto +7.810736e+01 1.069536e+02 lineto +7.764288e+01 1.071729e+02 lineto +7.764288e+01 1.099729e+02 lineto +7.810736e+01 1.097536e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.810736e+01 1.125536e+02 moveto +7.810736e+01 1.097536e+02 lineto +7.764288e+01 1.099729e+02 lineto +7.764288e+01 1.127729e+02 lineto +7.810736e+01 1.125536e+02 lineto +closepath +gsave +4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor +fill +grestore +newpath +7.810736e+01 1.125536e+02 moveto +7.810736e+01 1.097536e+02 lineto +7.764288e+01 1.099729e+02 lineto +7.764288e+01 1.127729e+02 lineto +7.810736e+01 1.125536e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.810736e+01 1.153536e+02 moveto +7.810736e+01 1.125536e+02 lineto +7.764288e+01 1.127729e+02 lineto +7.764288e+01 1.155729e+02 lineto +7.810736e+01 1.153536e+02 lineto +closepath +gsave +4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor +fill +grestore +newpath +7.810736e+01 1.153536e+02 moveto +7.810736e+01 1.125536e+02 lineto +7.764288e+01 1.127729e+02 lineto +7.764288e+01 1.155729e+02 lineto +7.810736e+01 1.153536e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.764288e+01 9.037294e+01 moveto +7.764288e+01 8.757294e+01 lineto +7.710045e+01 8.778013e+01 lineto +7.710045e+01 9.058013e+01 lineto +7.764288e+01 9.037294e+01 lineto +closepath +gsave +4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor +fill +grestore +newpath +7.764288e+01 9.037294e+01 moveto +7.764288e+01 8.757294e+01 lineto +7.710045e+01 8.778013e+01 lineto +7.710045e+01 9.058013e+01 lineto +7.764288e+01 9.037294e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.764288e+01 9.317294e+01 moveto +7.764288e+01 9.037294e+01 lineto +7.710045e+01 9.058013e+01 lineto +7.710045e+01 9.338013e+01 lineto +7.764288e+01 9.317294e+01 lineto +closepath +gsave +4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor +fill +grestore +newpath +7.764288e+01 9.317294e+01 moveto +7.764288e+01 9.037294e+01 lineto +7.710045e+01 9.058013e+01 lineto +7.710045e+01 9.338013e+01 lineto +7.764288e+01 9.317294e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.764288e+01 9.597294e+01 moveto +7.764288e+01 9.317294e+01 lineto +7.710045e+01 9.338013e+01 lineto +7.710045e+01 9.618013e+01 lineto +7.764288e+01 9.597294e+01 lineto +closepath +gsave +4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor +fill +grestore +newpath +7.764288e+01 9.597294e+01 moveto +7.764288e+01 9.317294e+01 lineto +7.710045e+01 9.338013e+01 lineto +7.710045e+01 9.618013e+01 lineto +7.764288e+01 9.597294e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.764288e+01 9.877294e+01 moveto +7.764288e+01 9.597294e+01 lineto +7.710045e+01 9.618013e+01 lineto +7.710045e+01 9.898013e+01 lineto +7.764288e+01 9.877294e+01 lineto +closepath +gsave +4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor +fill +grestore +newpath +7.764288e+01 9.877294e+01 moveto +7.764288e+01 9.597294e+01 lineto +7.710045e+01 9.618013e+01 lineto +7.710045e+01 9.898013e+01 lineto +7.764288e+01 9.877294e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.764288e+01 1.015729e+02 moveto +7.764288e+01 9.877294e+01 lineto +7.710045e+01 9.898013e+01 lineto +7.710045e+01 1.017801e+02 lineto +7.764288e+01 1.015729e+02 lineto +closepath +gsave +4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor +fill +grestore +newpath +7.764288e+01 1.015729e+02 moveto +7.764288e+01 9.877294e+01 lineto +7.710045e+01 9.898013e+01 lineto +7.710045e+01 1.017801e+02 lineto +7.764288e+01 1.015729e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.764288e+01 1.043729e+02 moveto +7.764288e+01 1.015729e+02 lineto +7.710045e+01 1.017801e+02 lineto +7.710045e+01 1.045801e+02 lineto +7.764288e+01 1.043729e+02 lineto +closepath +gsave +4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor +fill +grestore +newpath +7.764288e+01 1.043729e+02 moveto +7.764288e+01 1.015729e+02 lineto +7.710045e+01 1.017801e+02 lineto +7.710045e+01 1.045801e+02 lineto +7.764288e+01 1.043729e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.764288e+01 1.071729e+02 moveto +7.764288e+01 1.043729e+02 lineto +7.710045e+01 1.045801e+02 lineto +7.710045e+01 1.073801e+02 lineto +7.764288e+01 1.071729e+02 lineto +closepath +gsave +4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor +fill +grestore +newpath +7.764288e+01 1.071729e+02 moveto +7.764288e+01 1.043729e+02 lineto +7.710045e+01 1.045801e+02 lineto +7.710045e+01 1.073801e+02 lineto +7.764288e+01 1.071729e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.764288e+01 1.099729e+02 moveto +7.764288e+01 1.071729e+02 lineto +7.710045e+01 1.073801e+02 lineto +7.710045e+01 1.101801e+02 lineto +7.764288e+01 1.099729e+02 lineto +closepath +gsave +4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor +fill +grestore +newpath +7.764288e+01 1.099729e+02 moveto +7.764288e+01 1.071729e+02 lineto +7.710045e+01 1.073801e+02 lineto +7.710045e+01 1.101801e+02 lineto +7.764288e+01 1.099729e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.764288e+01 1.127729e+02 moveto +7.764288e+01 1.099729e+02 lineto +7.710045e+01 1.101801e+02 lineto +7.710045e+01 1.129801e+02 lineto +7.764288e+01 1.127729e+02 lineto +closepath +gsave +4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor +fill +grestore +newpath +7.764288e+01 1.127729e+02 moveto +7.764288e+01 1.099729e+02 lineto +7.710045e+01 1.101801e+02 lineto +7.710045e+01 1.129801e+02 lineto +7.764288e+01 1.127729e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.764288e+01 1.155729e+02 moveto +7.764288e+01 1.127729e+02 lineto +7.710045e+01 1.129801e+02 lineto +7.710045e+01 1.157801e+02 lineto +7.764288e+01 1.155729e+02 lineto +closepath +gsave +4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor +fill +grestore +newpath +7.764288e+01 1.155729e+02 moveto +7.764288e+01 1.127729e+02 lineto +7.710045e+01 1.129801e+02 lineto +7.710045e+01 1.157801e+02 lineto +7.764288e+01 1.155729e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.710045e+01 9.058013e+01 moveto +7.710045e+01 8.778013e+01 lineto +7.648341e+01 8.797386e+01 lineto +7.648341e+01 9.077386e+01 lineto +7.710045e+01 9.058013e+01 lineto +closepath +gsave +4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor +fill +grestore +newpath +7.710045e+01 9.058013e+01 moveto +7.710045e+01 8.778013e+01 lineto +7.648341e+01 8.797386e+01 lineto +7.648341e+01 9.077386e+01 lineto +7.710045e+01 9.058013e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.710045e+01 9.338013e+01 moveto +7.710045e+01 9.058013e+01 lineto +7.648341e+01 9.077386e+01 lineto +7.648341e+01 9.357386e+01 lineto +7.710045e+01 9.338013e+01 lineto +closepath +gsave +4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor +fill +grestore +newpath +7.710045e+01 9.338013e+01 moveto +7.710045e+01 9.058013e+01 lineto +7.648341e+01 9.077386e+01 lineto +7.648341e+01 9.357386e+01 lineto +7.710045e+01 9.338013e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.710045e+01 9.618013e+01 moveto +7.710045e+01 9.338013e+01 lineto +7.648341e+01 9.357386e+01 lineto +7.648341e+01 9.637386e+01 lineto +7.710045e+01 9.618013e+01 lineto +closepath +gsave +4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor +fill +grestore +newpath +7.710045e+01 9.618013e+01 moveto +7.710045e+01 9.338013e+01 lineto +7.648341e+01 9.357386e+01 lineto +7.648341e+01 9.637386e+01 lineto +7.710045e+01 9.618013e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.710045e+01 9.898013e+01 moveto +7.710045e+01 9.618013e+01 lineto +7.648341e+01 9.637386e+01 lineto +7.648341e+01 9.917386e+01 lineto +7.710045e+01 9.898013e+01 lineto +closepath +gsave +4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor +fill +grestore +newpath +7.710045e+01 9.898013e+01 moveto +7.710045e+01 9.618013e+01 lineto +7.648341e+01 9.637386e+01 lineto +7.648341e+01 9.917386e+01 lineto +7.710045e+01 9.898013e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.710045e+01 1.017801e+02 moveto +7.710045e+01 9.898013e+01 lineto +7.648341e+01 9.917386e+01 lineto +7.648341e+01 1.019739e+02 lineto +7.710045e+01 1.017801e+02 lineto +closepath +gsave +4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor +fill +grestore +newpath +7.710045e+01 1.017801e+02 moveto +7.710045e+01 9.898013e+01 lineto +7.648341e+01 9.917386e+01 lineto +7.648341e+01 1.019739e+02 lineto +7.710045e+01 1.017801e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.710045e+01 1.045801e+02 moveto +7.710045e+01 1.017801e+02 lineto +7.648341e+01 1.019739e+02 lineto +7.648341e+01 1.047739e+02 lineto +7.710045e+01 1.045801e+02 lineto +closepath +gsave +4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor +fill +grestore +newpath +7.710045e+01 1.045801e+02 moveto +7.710045e+01 1.017801e+02 lineto +7.648341e+01 1.019739e+02 lineto +7.648341e+01 1.047739e+02 lineto +7.710045e+01 1.045801e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.710045e+01 1.073801e+02 moveto +7.710045e+01 1.045801e+02 lineto +7.648341e+01 1.047739e+02 lineto +7.648341e+01 1.075739e+02 lineto +7.710045e+01 1.073801e+02 lineto +closepath +gsave +4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor +fill +grestore +newpath +7.710045e+01 1.073801e+02 moveto +7.710045e+01 1.045801e+02 lineto +7.648341e+01 1.047739e+02 lineto +7.648341e+01 1.075739e+02 lineto +7.710045e+01 1.073801e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.710045e+01 1.101801e+02 moveto +7.710045e+01 1.073801e+02 lineto +7.648341e+01 1.075739e+02 lineto +7.648341e+01 1.103739e+02 lineto +7.710045e+01 1.101801e+02 lineto +closepath +gsave +4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor +fill +grestore +newpath +7.710045e+01 1.101801e+02 moveto +7.710045e+01 1.073801e+02 lineto +7.648341e+01 1.075739e+02 lineto +7.648341e+01 1.103739e+02 lineto +7.710045e+01 1.101801e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.710045e+01 1.129801e+02 moveto +7.710045e+01 1.101801e+02 lineto +7.648341e+01 1.103739e+02 lineto +7.648341e+01 1.131739e+02 lineto +7.710045e+01 1.129801e+02 lineto +closepath +gsave +4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor +fill +grestore +newpath +7.710045e+01 1.129801e+02 moveto +7.710045e+01 1.101801e+02 lineto +7.648341e+01 1.103739e+02 lineto +7.648341e+01 1.131739e+02 lineto +7.710045e+01 1.129801e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.710045e+01 1.157801e+02 moveto +7.710045e+01 1.129801e+02 lineto +7.648341e+01 1.131739e+02 lineto +7.648341e+01 1.159739e+02 lineto +7.710045e+01 1.157801e+02 lineto +closepath +gsave +4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor +fill +grestore +newpath +7.710045e+01 1.157801e+02 moveto +7.710045e+01 1.129801e+02 lineto +7.648341e+01 1.131739e+02 lineto +7.648341e+01 1.159739e+02 lineto +7.710045e+01 1.157801e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.648341e+01 9.077386e+01 moveto +7.648341e+01 8.797386e+01 lineto +7.579558e+01 8.815294e+01 lineto +7.579558e+01 9.095294e+01 lineto +7.648341e+01 9.077386e+01 lineto +closepath +gsave +4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor +fill +grestore +newpath +7.648341e+01 9.077386e+01 moveto +7.648341e+01 8.797386e+01 lineto +7.579558e+01 8.815294e+01 lineto +7.579558e+01 9.095294e+01 lineto +7.648341e+01 9.077386e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.648341e+01 9.357386e+01 moveto +7.648341e+01 9.077386e+01 lineto +7.579558e+01 9.095294e+01 lineto +7.579558e+01 9.375294e+01 lineto +7.648341e+01 9.357386e+01 lineto +closepath +gsave +4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor +fill +grestore +newpath +7.648341e+01 9.357386e+01 moveto +7.648341e+01 9.077386e+01 lineto +7.579558e+01 9.095294e+01 lineto +7.579558e+01 9.375294e+01 lineto +7.648341e+01 9.357386e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.648341e+01 9.637386e+01 moveto +7.648341e+01 9.357386e+01 lineto +7.579558e+01 9.375294e+01 lineto +7.579558e+01 9.655294e+01 lineto +7.648341e+01 9.637386e+01 lineto +closepath +gsave +4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor +fill +grestore +newpath +7.648341e+01 9.637386e+01 moveto +7.648341e+01 9.357386e+01 lineto +7.579558e+01 9.375294e+01 lineto +7.579558e+01 9.655294e+01 lineto +7.648341e+01 9.637386e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.648341e+01 9.917386e+01 moveto +7.648341e+01 9.637386e+01 lineto +7.579558e+01 9.655294e+01 lineto +7.579558e+01 9.935294e+01 lineto +7.648341e+01 9.917386e+01 lineto +closepath +gsave +4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor +fill +grestore +newpath +7.648341e+01 9.917386e+01 moveto +7.648341e+01 9.637386e+01 lineto +7.579558e+01 9.655294e+01 lineto +7.579558e+01 9.935294e+01 lineto +7.648341e+01 9.917386e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.648341e+01 1.019739e+02 moveto +7.648341e+01 9.917386e+01 lineto +7.579558e+01 9.935294e+01 lineto +7.579558e+01 1.021529e+02 lineto +7.648341e+01 1.019739e+02 lineto +closepath +gsave +4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor +fill +grestore +newpath +7.648341e+01 1.019739e+02 moveto +7.648341e+01 9.917386e+01 lineto +7.579558e+01 9.935294e+01 lineto +7.579558e+01 1.021529e+02 lineto +7.648341e+01 1.019739e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.648341e+01 1.047739e+02 moveto +7.648341e+01 1.019739e+02 lineto +7.579558e+01 1.021529e+02 lineto +7.579558e+01 1.049529e+02 lineto +7.648341e+01 1.047739e+02 lineto +closepath +gsave +4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor +fill +grestore +newpath +7.648341e+01 1.047739e+02 moveto +7.648341e+01 1.019739e+02 lineto +7.579558e+01 1.021529e+02 lineto +7.579558e+01 1.049529e+02 lineto +7.648341e+01 1.047739e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.648341e+01 1.075739e+02 moveto +7.648341e+01 1.047739e+02 lineto +7.579558e+01 1.049529e+02 lineto +7.579558e+01 1.077529e+02 lineto +7.648341e+01 1.075739e+02 lineto +closepath +gsave +4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor +fill +grestore +newpath +7.648341e+01 1.075739e+02 moveto +7.648341e+01 1.047739e+02 lineto +7.579558e+01 1.049529e+02 lineto +7.579558e+01 1.077529e+02 lineto +7.648341e+01 1.075739e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.648341e+01 1.103739e+02 moveto +7.648341e+01 1.075739e+02 lineto +7.579558e+01 1.077529e+02 lineto +7.579558e+01 1.105529e+02 lineto +7.648341e+01 1.103739e+02 lineto +closepath +gsave +4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor +fill +grestore +newpath +7.648341e+01 1.103739e+02 moveto +7.648341e+01 1.075739e+02 lineto +7.579558e+01 1.077529e+02 lineto +7.579558e+01 1.105529e+02 lineto +7.648341e+01 1.103739e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.648341e+01 1.131739e+02 moveto +7.648341e+01 1.103739e+02 lineto +7.579558e+01 1.105529e+02 lineto +7.579558e+01 1.133529e+02 lineto +7.648341e+01 1.131739e+02 lineto +closepath +gsave +4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor +fill +grestore +newpath +7.648341e+01 1.131739e+02 moveto +7.648341e+01 1.103739e+02 lineto +7.579558e+01 1.105529e+02 lineto +7.579558e+01 1.133529e+02 lineto +7.648341e+01 1.131739e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.648341e+01 1.159739e+02 moveto +7.648341e+01 1.131739e+02 lineto +7.579558e+01 1.133529e+02 lineto +7.579558e+01 1.161529e+02 lineto +7.648341e+01 1.159739e+02 lineto +closepath +gsave +4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor +fill +grestore +newpath +7.648341e+01 1.159739e+02 moveto +7.648341e+01 1.131739e+02 lineto +7.579558e+01 1.133529e+02 lineto +7.579558e+01 1.161529e+02 lineto +7.648341e+01 1.159739e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.579558e+01 9.095294e+01 moveto +7.579558e+01 8.815294e+01 lineto +7.504119e+01 8.831628e+01 lineto +7.504119e+01 9.111628e+01 lineto +7.579558e+01 9.095294e+01 lineto +closepath +gsave +4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor +fill +grestore +newpath +7.579558e+01 9.095294e+01 moveto +7.579558e+01 8.815294e+01 lineto +7.504119e+01 8.831628e+01 lineto +7.504119e+01 9.111628e+01 lineto +7.579558e+01 9.095294e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.579558e+01 9.375294e+01 moveto +7.579558e+01 9.095294e+01 lineto +7.504119e+01 9.111628e+01 lineto +7.504119e+01 9.391628e+01 lineto +7.579558e+01 9.375294e+01 lineto +closepath +gsave +4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor +fill +grestore +newpath +7.579558e+01 9.375294e+01 moveto +7.579558e+01 9.095294e+01 lineto +7.504119e+01 9.111628e+01 lineto +7.504119e+01 9.391628e+01 lineto +7.579558e+01 9.375294e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.579558e+01 9.655294e+01 moveto +7.579558e+01 9.375294e+01 lineto +7.504119e+01 9.391628e+01 lineto +7.504119e+01 9.671628e+01 lineto +7.579558e+01 9.655294e+01 lineto +closepath +gsave +4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor +fill +grestore +newpath +7.579558e+01 9.655294e+01 moveto +7.579558e+01 9.375294e+01 lineto +7.504119e+01 9.391628e+01 lineto +7.504119e+01 9.671628e+01 lineto +7.579558e+01 9.655294e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.579558e+01 9.935294e+01 moveto +7.579558e+01 9.655294e+01 lineto +7.504119e+01 9.671628e+01 lineto +7.504119e+01 9.951628e+01 lineto +7.579558e+01 9.935294e+01 lineto +closepath +gsave +4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor +fill +grestore +newpath +7.579558e+01 9.935294e+01 moveto +7.579558e+01 9.655294e+01 lineto +7.504119e+01 9.671628e+01 lineto +7.504119e+01 9.951628e+01 lineto +7.579558e+01 9.935294e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.579558e+01 1.021529e+02 moveto +7.579558e+01 9.935294e+01 lineto +7.504119e+01 9.951628e+01 lineto +7.504119e+01 1.023163e+02 lineto +7.579558e+01 1.021529e+02 lineto +closepath +gsave +4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor +fill +grestore +newpath +7.579558e+01 1.021529e+02 moveto +7.579558e+01 9.935294e+01 lineto +7.504119e+01 9.951628e+01 lineto +7.504119e+01 1.023163e+02 lineto +7.579558e+01 1.021529e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.579558e+01 1.049529e+02 moveto +7.579558e+01 1.021529e+02 lineto +7.504119e+01 1.023163e+02 lineto +7.504119e+01 1.051163e+02 lineto +7.579558e+01 1.049529e+02 lineto +closepath +gsave +4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor +fill +grestore +newpath +7.579558e+01 1.049529e+02 moveto +7.579558e+01 1.021529e+02 lineto +7.504119e+01 1.023163e+02 lineto +7.504119e+01 1.051163e+02 lineto +7.579558e+01 1.049529e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.579558e+01 1.077529e+02 moveto +7.579558e+01 1.049529e+02 lineto +7.504119e+01 1.051163e+02 lineto +7.504119e+01 1.079163e+02 lineto +7.579558e+01 1.077529e+02 lineto +closepath +gsave +4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor +fill +grestore +newpath +7.579558e+01 1.077529e+02 moveto +7.579558e+01 1.049529e+02 lineto +7.504119e+01 1.051163e+02 lineto +7.504119e+01 1.079163e+02 lineto +7.579558e+01 1.077529e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.579558e+01 1.105529e+02 moveto +7.579558e+01 1.077529e+02 lineto +7.504119e+01 1.079163e+02 lineto +7.504119e+01 1.107163e+02 lineto +7.579558e+01 1.105529e+02 lineto +closepath +gsave +4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor +fill +grestore +newpath +7.579558e+01 1.105529e+02 moveto +7.579558e+01 1.077529e+02 lineto +7.504119e+01 1.079163e+02 lineto +7.504119e+01 1.107163e+02 lineto +7.579558e+01 1.105529e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.579558e+01 1.133529e+02 moveto +7.579558e+01 1.105529e+02 lineto +7.504119e+01 1.107163e+02 lineto +7.504119e+01 1.135163e+02 lineto +7.579558e+01 1.133529e+02 lineto +closepath +gsave +4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor +fill +grestore +newpath +7.579558e+01 1.133529e+02 moveto +7.579558e+01 1.105529e+02 lineto +7.504119e+01 1.107163e+02 lineto +7.504119e+01 1.135163e+02 lineto +7.579558e+01 1.133529e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.579558e+01 1.161529e+02 moveto +7.579558e+01 1.133529e+02 lineto +7.504119e+01 1.135163e+02 lineto +7.504119e+01 1.163163e+02 lineto +7.579558e+01 1.161529e+02 lineto +closepath +gsave +4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor +fill +grestore +newpath +7.579558e+01 1.161529e+02 moveto +7.579558e+01 1.133529e+02 lineto +7.504119e+01 1.135163e+02 lineto +7.504119e+01 1.163163e+02 lineto +7.579558e+01 1.161529e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.504119e+01 9.111628e+01 moveto +7.504119e+01 8.831628e+01 lineto +7.422489e+01 8.846285e+01 lineto +7.422489e+01 9.126285e+01 lineto +7.504119e+01 9.111628e+01 lineto +closepath +gsave +4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor +fill +grestore +newpath +7.504119e+01 9.111628e+01 moveto +7.504119e+01 8.831628e+01 lineto +7.422489e+01 8.846285e+01 lineto +7.422489e+01 9.126285e+01 lineto +7.504119e+01 9.111628e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.504119e+01 9.391628e+01 moveto +7.504119e+01 9.111628e+01 lineto +7.422489e+01 9.126285e+01 lineto +7.422489e+01 9.406285e+01 lineto +7.504119e+01 9.391628e+01 lineto +closepath +gsave +4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor +fill +grestore +newpath +7.504119e+01 9.391628e+01 moveto +7.504119e+01 9.111628e+01 lineto +7.422489e+01 9.126285e+01 lineto +7.422489e+01 9.406285e+01 lineto +7.504119e+01 9.391628e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.504119e+01 9.671628e+01 moveto +7.504119e+01 9.391628e+01 lineto +7.422489e+01 9.406285e+01 lineto +7.422489e+01 9.686285e+01 lineto +7.504119e+01 9.671628e+01 lineto +closepath +gsave +4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor +fill +grestore +newpath +7.504119e+01 9.671628e+01 moveto +7.504119e+01 9.391628e+01 lineto +7.422489e+01 9.406285e+01 lineto +7.422489e+01 9.686285e+01 lineto +7.504119e+01 9.671628e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.504119e+01 9.951628e+01 moveto +7.504119e+01 9.671628e+01 lineto +7.422489e+01 9.686285e+01 lineto +7.422489e+01 9.966285e+01 lineto +7.504119e+01 9.951628e+01 lineto +closepath +gsave +4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor +fill +grestore +newpath +7.504119e+01 9.951628e+01 moveto +7.504119e+01 9.671628e+01 lineto +7.422489e+01 9.686285e+01 lineto +7.422489e+01 9.966285e+01 lineto +7.504119e+01 9.951628e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.504119e+01 1.023163e+02 moveto +7.504119e+01 9.951628e+01 lineto +7.422489e+01 9.966285e+01 lineto +7.422489e+01 1.024629e+02 lineto +7.504119e+01 1.023163e+02 lineto +closepath +gsave +4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor +fill +grestore +newpath +7.504119e+01 1.023163e+02 moveto +7.504119e+01 9.951628e+01 lineto +7.422489e+01 9.966285e+01 lineto +7.422489e+01 1.024629e+02 lineto +7.504119e+01 1.023163e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.504119e+01 1.051163e+02 moveto +7.504119e+01 1.023163e+02 lineto +7.422489e+01 1.024629e+02 lineto +7.422489e+01 1.052629e+02 lineto +7.504119e+01 1.051163e+02 lineto +closepath +gsave +4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor +fill +grestore +newpath +7.504119e+01 1.051163e+02 moveto +7.504119e+01 1.023163e+02 lineto +7.422489e+01 1.024629e+02 lineto +7.422489e+01 1.052629e+02 lineto +7.504119e+01 1.051163e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.504119e+01 1.079163e+02 moveto +7.504119e+01 1.051163e+02 lineto +7.422489e+01 1.052629e+02 lineto +7.422489e+01 1.080629e+02 lineto +7.504119e+01 1.079163e+02 lineto +closepath +gsave +4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor +fill +grestore +newpath +7.504119e+01 1.079163e+02 moveto +7.504119e+01 1.051163e+02 lineto +7.422489e+01 1.052629e+02 lineto +7.422489e+01 1.080629e+02 lineto +7.504119e+01 1.079163e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.504119e+01 1.107163e+02 moveto +7.504119e+01 1.079163e+02 lineto +7.422489e+01 1.080629e+02 lineto +7.422489e+01 1.108629e+02 lineto +7.504119e+01 1.107163e+02 lineto +closepath +gsave +4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor +fill +grestore +newpath +7.504119e+01 1.107163e+02 moveto +7.504119e+01 1.079163e+02 lineto +7.422489e+01 1.080629e+02 lineto +7.422489e+01 1.108629e+02 lineto +7.504119e+01 1.107163e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.504119e+01 1.135163e+02 moveto +7.504119e+01 1.107163e+02 lineto +7.422489e+01 1.108629e+02 lineto +7.422489e+01 1.136629e+02 lineto +7.504119e+01 1.135163e+02 lineto +closepath +gsave +4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor +fill +grestore +newpath +7.504119e+01 1.135163e+02 moveto +7.504119e+01 1.107163e+02 lineto +7.422489e+01 1.108629e+02 lineto +7.422489e+01 1.136629e+02 lineto +7.504119e+01 1.135163e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.504119e+01 1.163163e+02 moveto +7.504119e+01 1.135163e+02 lineto +7.422489e+01 1.136629e+02 lineto +7.422489e+01 1.164629e+02 lineto +7.504119e+01 1.163163e+02 lineto +closepath +gsave +4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor +fill +grestore +newpath +7.504119e+01 1.163163e+02 moveto +7.504119e+01 1.135163e+02 lineto +7.422489e+01 1.136629e+02 lineto +7.422489e+01 1.164629e+02 lineto +7.504119e+01 1.163163e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.422489e+01 9.126285e+01 moveto +7.422489e+01 8.846285e+01 lineto +7.335172e+01 8.859176e+01 lineto +7.335172e+01 9.139176e+01 lineto +7.422489e+01 9.126285e+01 lineto +closepath +gsave +5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor +fill +grestore +newpath +7.422489e+01 9.126285e+01 moveto +7.422489e+01 8.846285e+01 lineto +7.335172e+01 8.859176e+01 lineto +7.335172e+01 9.139176e+01 lineto +7.422489e+01 9.126285e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.422489e+01 9.406285e+01 moveto +7.422489e+01 9.126285e+01 lineto +7.335172e+01 9.139176e+01 lineto +7.335172e+01 9.419176e+01 lineto +7.422489e+01 9.406285e+01 lineto +closepath +gsave +5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor +fill +grestore +newpath +7.422489e+01 9.406285e+01 moveto +7.422489e+01 9.126285e+01 lineto +7.335172e+01 9.139176e+01 lineto +7.335172e+01 9.419176e+01 lineto +7.422489e+01 9.406285e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.422489e+01 9.686285e+01 moveto +7.422489e+01 9.406285e+01 lineto +7.335172e+01 9.419176e+01 lineto +7.335172e+01 9.699176e+01 lineto +7.422489e+01 9.686285e+01 lineto +closepath +gsave +5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor +fill +grestore +newpath +7.422489e+01 9.686285e+01 moveto +7.422489e+01 9.406285e+01 lineto +7.335172e+01 9.419176e+01 lineto +7.335172e+01 9.699176e+01 lineto +7.422489e+01 9.686285e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.422489e+01 9.966285e+01 moveto +7.422489e+01 9.686285e+01 lineto +7.335172e+01 9.699176e+01 lineto +7.335172e+01 9.979176e+01 lineto +7.422489e+01 9.966285e+01 lineto +closepath +gsave +5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor +fill +grestore +newpath +7.422489e+01 9.966285e+01 moveto +7.422489e+01 9.686285e+01 lineto +7.335172e+01 9.699176e+01 lineto +7.335172e+01 9.979176e+01 lineto +7.422489e+01 9.966285e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.422489e+01 1.024629e+02 moveto +7.422489e+01 9.966285e+01 lineto +7.335172e+01 9.979176e+01 lineto +7.335172e+01 1.025918e+02 lineto +7.422489e+01 1.024629e+02 lineto +closepath +gsave +5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor +fill +grestore +newpath +7.422489e+01 1.024629e+02 moveto +7.422489e+01 9.966285e+01 lineto +7.335172e+01 9.979176e+01 lineto +7.335172e+01 1.025918e+02 lineto +7.422489e+01 1.024629e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.422489e+01 1.052629e+02 moveto +7.422489e+01 1.024629e+02 lineto +7.335172e+01 1.025918e+02 lineto +7.335172e+01 1.053918e+02 lineto +7.422489e+01 1.052629e+02 lineto +closepath +gsave +5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor +fill +grestore +newpath +7.422489e+01 1.052629e+02 moveto +7.422489e+01 1.024629e+02 lineto +7.335172e+01 1.025918e+02 lineto +7.335172e+01 1.053918e+02 lineto +7.422489e+01 1.052629e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.422489e+01 1.080629e+02 moveto +7.422489e+01 1.052629e+02 lineto +7.335172e+01 1.053918e+02 lineto +7.335172e+01 1.081918e+02 lineto +7.422489e+01 1.080629e+02 lineto +closepath +gsave +5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor +fill +grestore +newpath +7.422489e+01 1.080629e+02 moveto +7.422489e+01 1.052629e+02 lineto +7.335172e+01 1.053918e+02 lineto +7.335172e+01 1.081918e+02 lineto +7.422489e+01 1.080629e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.422489e+01 1.108629e+02 moveto +7.422489e+01 1.080629e+02 lineto +7.335172e+01 1.081918e+02 lineto +7.335172e+01 1.109918e+02 lineto +7.422489e+01 1.108629e+02 lineto +closepath +gsave +5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor +fill +grestore +newpath +7.422489e+01 1.108629e+02 moveto +7.422489e+01 1.080629e+02 lineto +7.335172e+01 1.081918e+02 lineto +7.335172e+01 1.109918e+02 lineto +7.422489e+01 1.108629e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.422489e+01 1.136629e+02 moveto +7.422489e+01 1.108629e+02 lineto +7.335172e+01 1.109918e+02 lineto +7.335172e+01 1.137918e+02 lineto +7.422489e+01 1.136629e+02 lineto +closepath +gsave +5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor +fill +grestore +newpath +7.422489e+01 1.136629e+02 moveto +7.422489e+01 1.108629e+02 lineto +7.335172e+01 1.109918e+02 lineto +7.335172e+01 1.137918e+02 lineto +7.422489e+01 1.136629e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.422489e+01 1.164629e+02 moveto +7.422489e+01 1.136629e+02 lineto +7.335172e+01 1.137918e+02 lineto +7.335172e+01 1.165918e+02 lineto +7.422489e+01 1.164629e+02 lineto +closepath +gsave +5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor +fill +grestore +newpath +7.422489e+01 1.164629e+02 moveto +7.422489e+01 1.136629e+02 lineto +7.335172e+01 1.137918e+02 lineto +7.335172e+01 1.165918e+02 lineto +7.422489e+01 1.164629e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.335172e+01 9.139176e+01 moveto +7.335172e+01 8.859176e+01 lineto +7.242706e+01 8.870221e+01 lineto +7.242706e+01 9.150221e+01 lineto +7.335172e+01 9.139176e+01 lineto +closepath +gsave +5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor +fill +grestore +newpath +7.335172e+01 9.139176e+01 moveto +7.335172e+01 8.859176e+01 lineto +7.242706e+01 8.870221e+01 lineto +7.242706e+01 9.150221e+01 lineto +7.335172e+01 9.139176e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.335172e+01 9.419176e+01 moveto +7.335172e+01 9.139176e+01 lineto +7.242706e+01 9.150221e+01 lineto +7.242706e+01 9.430221e+01 lineto +7.335172e+01 9.419176e+01 lineto +closepath +gsave +5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor +fill +grestore +newpath +7.335172e+01 9.419176e+01 moveto +7.335172e+01 9.139176e+01 lineto +7.242706e+01 9.150221e+01 lineto +7.242706e+01 9.430221e+01 lineto +7.335172e+01 9.419176e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.335172e+01 9.699176e+01 moveto +7.335172e+01 9.419176e+01 lineto +7.242706e+01 9.430221e+01 lineto +7.242706e+01 9.710221e+01 lineto +7.335172e+01 9.699176e+01 lineto +closepath +gsave +5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor +fill +grestore +newpath +7.335172e+01 9.699176e+01 moveto +7.335172e+01 9.419176e+01 lineto +7.242706e+01 9.430221e+01 lineto +7.242706e+01 9.710221e+01 lineto +7.335172e+01 9.699176e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.335172e+01 9.979176e+01 moveto +7.335172e+01 9.699176e+01 lineto +7.242706e+01 9.710221e+01 lineto +7.242706e+01 9.990221e+01 lineto +7.335172e+01 9.979176e+01 lineto +closepath +gsave +5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor +fill +grestore +newpath +7.335172e+01 9.979176e+01 moveto +7.335172e+01 9.699176e+01 lineto +7.242706e+01 9.710221e+01 lineto +7.242706e+01 9.990221e+01 lineto +7.335172e+01 9.979176e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.335172e+01 1.025918e+02 moveto +7.335172e+01 9.979176e+01 lineto +7.242706e+01 9.990221e+01 lineto +7.242706e+01 1.027022e+02 lineto +7.335172e+01 1.025918e+02 lineto +closepath +gsave +5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor +fill +grestore +newpath +7.335172e+01 1.025918e+02 moveto +7.335172e+01 9.979176e+01 lineto +7.242706e+01 9.990221e+01 lineto +7.242706e+01 1.027022e+02 lineto +7.335172e+01 1.025918e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.335172e+01 1.053918e+02 moveto +7.335172e+01 1.025918e+02 lineto +7.242706e+01 1.027022e+02 lineto +7.242706e+01 1.055022e+02 lineto +7.335172e+01 1.053918e+02 lineto +closepath +gsave +5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor +fill +grestore +newpath +7.335172e+01 1.053918e+02 moveto +7.335172e+01 1.025918e+02 lineto +7.242706e+01 1.027022e+02 lineto +7.242706e+01 1.055022e+02 lineto +7.335172e+01 1.053918e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.335172e+01 1.081918e+02 moveto +7.335172e+01 1.053918e+02 lineto +7.242706e+01 1.055022e+02 lineto +7.242706e+01 1.083022e+02 lineto +7.335172e+01 1.081918e+02 lineto +closepath +gsave +5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor +fill +grestore +newpath +7.335172e+01 1.081918e+02 moveto +7.335172e+01 1.053918e+02 lineto +7.242706e+01 1.055022e+02 lineto +7.242706e+01 1.083022e+02 lineto +7.335172e+01 1.081918e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.335172e+01 1.109918e+02 moveto +7.335172e+01 1.081918e+02 lineto +7.242706e+01 1.083022e+02 lineto +7.242706e+01 1.111022e+02 lineto +7.335172e+01 1.109918e+02 lineto +closepath +gsave +5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor +fill +grestore +newpath +7.335172e+01 1.109918e+02 moveto +7.335172e+01 1.081918e+02 lineto +7.242706e+01 1.083022e+02 lineto +7.242706e+01 1.111022e+02 lineto +7.335172e+01 1.109918e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.335172e+01 1.137918e+02 moveto +7.335172e+01 1.109918e+02 lineto +7.242706e+01 1.111022e+02 lineto +7.242706e+01 1.139022e+02 lineto +7.335172e+01 1.137918e+02 lineto +closepath +gsave +5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor +fill +grestore +newpath +7.335172e+01 1.137918e+02 moveto +7.335172e+01 1.109918e+02 lineto +7.242706e+01 1.111022e+02 lineto +7.242706e+01 1.139022e+02 lineto +7.335172e+01 1.137918e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.335172e+01 1.165918e+02 moveto +7.335172e+01 1.137918e+02 lineto +7.242706e+01 1.139022e+02 lineto +7.242706e+01 1.167022e+02 lineto +7.335172e+01 1.165918e+02 lineto +closepath +gsave +5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor +fill +grestore +newpath +7.335172e+01 1.165918e+02 moveto +7.335172e+01 1.137918e+02 lineto +7.242706e+01 1.139022e+02 lineto +7.242706e+01 1.167022e+02 lineto +7.335172e+01 1.165918e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.242706e+01 9.150221e+01 moveto +7.242706e+01 8.870221e+01 lineto +7.14566e+01 8.879353e+01 lineto +7.14566e+01 9.159353e+01 lineto +7.242706e+01 9.150221e+01 lineto +closepath +gsave +5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor +fill +grestore +newpath +7.242706e+01 9.150221e+01 moveto +7.242706e+01 8.870221e+01 lineto +7.14566e+01 8.879353e+01 lineto +7.14566e+01 9.159353e+01 lineto +7.242706e+01 9.150221e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.242706e+01 9.430221e+01 moveto +7.242706e+01 9.150221e+01 lineto +7.14566e+01 9.159353e+01 lineto +7.14566e+01 9.439353e+01 lineto +7.242706e+01 9.430221e+01 lineto +closepath +gsave +5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor +fill +grestore +newpath +7.242706e+01 9.430221e+01 moveto +7.242706e+01 9.150221e+01 lineto +7.14566e+01 9.159353e+01 lineto +7.14566e+01 9.439353e+01 lineto +7.242706e+01 9.430221e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.242706e+01 9.710221e+01 moveto +7.242706e+01 9.430221e+01 lineto +7.14566e+01 9.439353e+01 lineto +7.14566e+01 9.719353e+01 lineto +7.242706e+01 9.710221e+01 lineto +closepath +gsave +5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor +fill +grestore +newpath +7.242706e+01 9.710221e+01 moveto +7.242706e+01 9.430221e+01 lineto +7.14566e+01 9.439353e+01 lineto +7.14566e+01 9.719353e+01 lineto +7.242706e+01 9.710221e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.242706e+01 9.990221e+01 moveto +7.242706e+01 9.710221e+01 lineto +7.14566e+01 9.719353e+01 lineto +7.14566e+01 9.999353e+01 lineto +7.242706e+01 9.990221e+01 lineto +closepath +gsave +5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor +fill +grestore +newpath +7.242706e+01 9.990221e+01 moveto +7.242706e+01 9.710221e+01 lineto +7.14566e+01 9.719353e+01 lineto +7.14566e+01 9.999353e+01 lineto +7.242706e+01 9.990221e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.242706e+01 1.027022e+02 moveto +7.242706e+01 9.990221e+01 lineto +7.14566e+01 9.999353e+01 lineto +7.14566e+01 1.027935e+02 lineto +7.242706e+01 1.027022e+02 lineto +closepath +gsave +5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor +fill +grestore +newpath +7.242706e+01 1.027022e+02 moveto +7.242706e+01 9.990221e+01 lineto +7.14566e+01 9.999353e+01 lineto +7.14566e+01 1.027935e+02 lineto +7.242706e+01 1.027022e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.242706e+01 1.055022e+02 moveto +7.242706e+01 1.027022e+02 lineto +7.14566e+01 1.027935e+02 lineto +7.14566e+01 1.055935e+02 lineto +7.242706e+01 1.055022e+02 lineto +closepath +gsave +5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor +fill +grestore +newpath +7.242706e+01 1.055022e+02 moveto +7.242706e+01 1.027022e+02 lineto +7.14566e+01 1.027935e+02 lineto +7.14566e+01 1.055935e+02 lineto +7.242706e+01 1.055022e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.242706e+01 1.083022e+02 moveto +7.242706e+01 1.055022e+02 lineto +7.14566e+01 1.055935e+02 lineto +7.14566e+01 1.083935e+02 lineto +7.242706e+01 1.083022e+02 lineto +closepath +gsave +5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor +fill +grestore +newpath +7.242706e+01 1.083022e+02 moveto +7.242706e+01 1.055022e+02 lineto +7.14566e+01 1.055935e+02 lineto +7.14566e+01 1.083935e+02 lineto +7.242706e+01 1.083022e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.242706e+01 1.111022e+02 moveto +7.242706e+01 1.083022e+02 lineto +7.14566e+01 1.083935e+02 lineto +7.14566e+01 1.111935e+02 lineto +7.242706e+01 1.111022e+02 lineto +closepath +gsave +5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor +fill +grestore +newpath +7.242706e+01 1.111022e+02 moveto +7.242706e+01 1.083022e+02 lineto +7.14566e+01 1.083935e+02 lineto +7.14566e+01 1.111935e+02 lineto +7.242706e+01 1.111022e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.242706e+01 1.139022e+02 moveto +7.242706e+01 1.111022e+02 lineto +7.14566e+01 1.111935e+02 lineto +7.14566e+01 1.139935e+02 lineto +7.242706e+01 1.139022e+02 lineto +closepath +gsave +5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor +fill +grestore +newpath +7.242706e+01 1.139022e+02 moveto +7.242706e+01 1.111022e+02 lineto +7.14566e+01 1.111935e+02 lineto +7.14566e+01 1.139935e+02 lineto +7.242706e+01 1.139022e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.242706e+01 1.167022e+02 moveto +7.242706e+01 1.139022e+02 lineto +7.14566e+01 1.139935e+02 lineto +7.14566e+01 1.167935e+02 lineto +7.242706e+01 1.167022e+02 lineto +closepath +gsave +5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor +fill +grestore +newpath +7.242706e+01 1.167022e+02 moveto +7.242706e+01 1.139022e+02 lineto +7.14566e+01 1.139935e+02 lineto +7.14566e+01 1.167935e+02 lineto +7.242706e+01 1.167022e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.14566e+01 9.159353e+01 moveto +7.14566e+01 8.879353e+01 lineto +7.044634e+01 8.886514e+01 lineto +7.044634e+01 9.166514e+01 lineto +7.14566e+01 9.159353e+01 lineto +closepath +gsave +5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor +fill +grestore +newpath +7.14566e+01 9.159353e+01 moveto +7.14566e+01 8.879353e+01 lineto +7.044634e+01 8.886514e+01 lineto +7.044634e+01 9.166514e+01 lineto +7.14566e+01 9.159353e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.14566e+01 9.439353e+01 moveto +7.14566e+01 9.159353e+01 lineto +7.044634e+01 9.166514e+01 lineto +7.044634e+01 9.446514e+01 lineto +7.14566e+01 9.439353e+01 lineto +closepath +gsave +5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor +fill +grestore +newpath +7.14566e+01 9.439353e+01 moveto +7.14566e+01 9.159353e+01 lineto +7.044634e+01 9.166514e+01 lineto +7.044634e+01 9.446514e+01 lineto +7.14566e+01 9.439353e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.14566e+01 9.719353e+01 moveto +7.14566e+01 9.439353e+01 lineto +7.044634e+01 9.446514e+01 lineto +7.044634e+01 9.726514e+01 lineto +7.14566e+01 9.719353e+01 lineto +closepath +gsave +5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor +fill +grestore +newpath +7.14566e+01 9.719353e+01 moveto +7.14566e+01 9.439353e+01 lineto +7.044634e+01 9.446514e+01 lineto +7.044634e+01 9.726514e+01 lineto +7.14566e+01 9.719353e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.14566e+01 9.999353e+01 moveto +7.14566e+01 9.719353e+01 lineto +7.044634e+01 9.726514e+01 lineto +7.044634e+01 1.000651e+02 lineto +7.14566e+01 9.999353e+01 lineto +closepath +gsave +5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor +fill +grestore +newpath +7.14566e+01 9.999353e+01 moveto +7.14566e+01 9.719353e+01 lineto +7.044634e+01 9.726514e+01 lineto +7.044634e+01 1.000651e+02 lineto +7.14566e+01 9.999353e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.14566e+01 1.027935e+02 moveto +7.14566e+01 9.999353e+01 lineto +7.044634e+01 1.000651e+02 lineto +7.044634e+01 1.028651e+02 lineto +7.14566e+01 1.027935e+02 lineto +closepath +gsave +5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor +fill +grestore +newpath +7.14566e+01 1.027935e+02 moveto +7.14566e+01 9.999353e+01 lineto +7.044634e+01 1.000651e+02 lineto +7.044634e+01 1.028651e+02 lineto +7.14566e+01 1.027935e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.14566e+01 1.055935e+02 moveto +7.14566e+01 1.027935e+02 lineto +7.044634e+01 1.028651e+02 lineto +7.044634e+01 1.056651e+02 lineto +7.14566e+01 1.055935e+02 lineto +closepath +gsave +5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor +fill +grestore +newpath +7.14566e+01 1.055935e+02 moveto +7.14566e+01 1.027935e+02 lineto +7.044634e+01 1.028651e+02 lineto +7.044634e+01 1.056651e+02 lineto +7.14566e+01 1.055935e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.14566e+01 1.083935e+02 moveto +7.14566e+01 1.055935e+02 lineto +7.044634e+01 1.056651e+02 lineto +7.044634e+01 1.084651e+02 lineto +7.14566e+01 1.083935e+02 lineto +closepath +gsave +5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor +fill +grestore +newpath +7.14566e+01 1.083935e+02 moveto +7.14566e+01 1.055935e+02 lineto +7.044634e+01 1.056651e+02 lineto +7.044634e+01 1.084651e+02 lineto +7.14566e+01 1.083935e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.14566e+01 1.111935e+02 moveto +7.14566e+01 1.083935e+02 lineto +7.044634e+01 1.084651e+02 lineto +7.044634e+01 1.112651e+02 lineto +7.14566e+01 1.111935e+02 lineto +closepath +gsave +5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor +fill +grestore +newpath +7.14566e+01 1.111935e+02 moveto +7.14566e+01 1.083935e+02 lineto +7.044634e+01 1.084651e+02 lineto +7.044634e+01 1.112651e+02 lineto +7.14566e+01 1.111935e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.14566e+01 1.139935e+02 moveto +7.14566e+01 1.111935e+02 lineto +7.044634e+01 1.112651e+02 lineto +7.044634e+01 1.140651e+02 lineto +7.14566e+01 1.139935e+02 lineto +closepath +gsave +5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor +fill +grestore +newpath +7.14566e+01 1.139935e+02 moveto +7.14566e+01 1.111935e+02 lineto +7.044634e+01 1.112651e+02 lineto +7.044634e+01 1.140651e+02 lineto +7.14566e+01 1.139935e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.14566e+01 1.167935e+02 moveto +7.14566e+01 1.139935e+02 lineto +7.044634e+01 1.140651e+02 lineto +7.044634e+01 1.168651e+02 lineto +7.14566e+01 1.167935e+02 lineto +closepath +gsave +5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor +fill +grestore +newpath +7.14566e+01 1.167935e+02 moveto +7.14566e+01 1.139935e+02 lineto +7.044634e+01 1.140651e+02 lineto +7.044634e+01 1.168651e+02 lineto +7.14566e+01 1.167935e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.044634e+01 9.166514e+01 moveto +7.044634e+01 8.886514e+01 lineto +6.94025e+01 8.891661e+01 lineto +6.94025e+01 9.171661e+01 lineto +7.044634e+01 9.166514e+01 lineto +closepath +gsave +5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor +fill +grestore +newpath +7.044634e+01 9.166514e+01 moveto +7.044634e+01 8.886514e+01 lineto +6.94025e+01 8.891661e+01 lineto +6.94025e+01 9.171661e+01 lineto +7.044634e+01 9.166514e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.044634e+01 9.446514e+01 moveto +7.044634e+01 9.166514e+01 lineto +6.94025e+01 9.171661e+01 lineto +6.94025e+01 9.451661e+01 lineto +7.044634e+01 9.446514e+01 lineto +closepath +gsave +5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor +fill +grestore +newpath +7.044634e+01 9.446514e+01 moveto +7.044634e+01 9.166514e+01 lineto +6.94025e+01 9.171661e+01 lineto +6.94025e+01 9.451661e+01 lineto +7.044634e+01 9.446514e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.044634e+01 9.726514e+01 moveto +7.044634e+01 9.446514e+01 lineto +6.94025e+01 9.451661e+01 lineto +6.94025e+01 9.731661e+01 lineto +7.044634e+01 9.726514e+01 lineto +closepath +gsave +5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor +fill +grestore +newpath +7.044634e+01 9.726514e+01 moveto +7.044634e+01 9.446514e+01 lineto +6.94025e+01 9.451661e+01 lineto +6.94025e+01 9.731661e+01 lineto +7.044634e+01 9.726514e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.044634e+01 1.000651e+02 moveto +7.044634e+01 9.726514e+01 lineto +6.94025e+01 9.731661e+01 lineto +6.94025e+01 1.001166e+02 lineto +7.044634e+01 1.000651e+02 lineto +closepath +gsave +5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor +fill +grestore +newpath +7.044634e+01 1.000651e+02 moveto +7.044634e+01 9.726514e+01 lineto +6.94025e+01 9.731661e+01 lineto +6.94025e+01 1.001166e+02 lineto +7.044634e+01 1.000651e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.044634e+01 1.028651e+02 moveto +7.044634e+01 1.000651e+02 lineto +6.94025e+01 1.001166e+02 lineto +6.94025e+01 1.029166e+02 lineto +7.044634e+01 1.028651e+02 lineto +closepath +gsave +5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor +fill +grestore +newpath +7.044634e+01 1.028651e+02 moveto +7.044634e+01 1.000651e+02 lineto +6.94025e+01 1.001166e+02 lineto +6.94025e+01 1.029166e+02 lineto +7.044634e+01 1.028651e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.044634e+01 1.056651e+02 moveto +7.044634e+01 1.028651e+02 lineto +6.94025e+01 1.029166e+02 lineto +6.94025e+01 1.057166e+02 lineto +7.044634e+01 1.056651e+02 lineto +closepath +gsave +5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor +fill +grestore +newpath +7.044634e+01 1.056651e+02 moveto +7.044634e+01 1.028651e+02 lineto +6.94025e+01 1.029166e+02 lineto +6.94025e+01 1.057166e+02 lineto +7.044634e+01 1.056651e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.044634e+01 1.084651e+02 moveto +7.044634e+01 1.056651e+02 lineto +6.94025e+01 1.057166e+02 lineto +6.94025e+01 1.085166e+02 lineto +7.044634e+01 1.084651e+02 lineto +closepath +gsave +5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor +fill +grestore +newpath +7.044634e+01 1.084651e+02 moveto +7.044634e+01 1.056651e+02 lineto +6.94025e+01 1.057166e+02 lineto +6.94025e+01 1.085166e+02 lineto +7.044634e+01 1.084651e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.044634e+01 1.112651e+02 moveto +7.044634e+01 1.084651e+02 lineto +6.94025e+01 1.085166e+02 lineto +6.94025e+01 1.113166e+02 lineto +7.044634e+01 1.112651e+02 lineto +closepath +gsave +5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor +fill +grestore +newpath +7.044634e+01 1.112651e+02 moveto +7.044634e+01 1.084651e+02 lineto +6.94025e+01 1.085166e+02 lineto +6.94025e+01 1.113166e+02 lineto +7.044634e+01 1.112651e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.044634e+01 1.140651e+02 moveto +7.044634e+01 1.112651e+02 lineto +6.94025e+01 1.113166e+02 lineto +6.94025e+01 1.141166e+02 lineto +7.044634e+01 1.140651e+02 lineto +closepath +gsave +5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor +fill +grestore +newpath +7.044634e+01 1.140651e+02 moveto +7.044634e+01 1.112651e+02 lineto +6.94025e+01 1.113166e+02 lineto +6.94025e+01 1.141166e+02 lineto +7.044634e+01 1.140651e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.044634e+01 1.168651e+02 moveto +7.044634e+01 1.140651e+02 lineto +6.94025e+01 1.141166e+02 lineto +6.94025e+01 1.169166e+02 lineto +7.044634e+01 1.168651e+02 lineto +closepath +gsave +5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor +fill +grestore +newpath +7.044634e+01 1.168651e+02 moveto +7.044634e+01 1.140651e+02 lineto +6.94025e+01 1.141166e+02 lineto +6.94025e+01 1.169166e+02 lineto +7.044634e+01 1.168651e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.94025e+01 9.171661e+01 moveto +6.94025e+01 8.891661e+01 lineto +6.833152e+01 8.894762e+01 lineto +6.833152e+01 9.174762e+01 lineto +6.94025e+01 9.171661e+01 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +6.94025e+01 9.171661e+01 moveto +6.94025e+01 8.891661e+01 lineto +6.833152e+01 8.894762e+01 lineto +6.833152e+01 9.174762e+01 lineto +6.94025e+01 9.171661e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.94025e+01 9.451661e+01 moveto +6.94025e+01 9.171661e+01 lineto +6.833152e+01 9.174762e+01 lineto +6.833152e+01 9.454762e+01 lineto +6.94025e+01 9.451661e+01 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +6.94025e+01 9.451661e+01 moveto +6.94025e+01 9.171661e+01 lineto +6.833152e+01 9.174762e+01 lineto +6.833152e+01 9.454762e+01 lineto +6.94025e+01 9.451661e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.94025e+01 9.731661e+01 moveto +6.94025e+01 9.451661e+01 lineto +6.833152e+01 9.454762e+01 lineto +6.833152e+01 9.734762e+01 lineto +6.94025e+01 9.731661e+01 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +6.94025e+01 9.731661e+01 moveto +6.94025e+01 9.451661e+01 lineto +6.833152e+01 9.454762e+01 lineto +6.833152e+01 9.734762e+01 lineto +6.94025e+01 9.731661e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.94025e+01 1.001166e+02 moveto +6.94025e+01 9.731661e+01 lineto +6.833152e+01 9.734762e+01 lineto +6.833152e+01 1.001476e+02 lineto +6.94025e+01 1.001166e+02 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +6.94025e+01 1.001166e+02 moveto +6.94025e+01 9.731661e+01 lineto +6.833152e+01 9.734762e+01 lineto +6.833152e+01 1.001476e+02 lineto +6.94025e+01 1.001166e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.94025e+01 1.029166e+02 moveto +6.94025e+01 1.001166e+02 lineto +6.833152e+01 1.001476e+02 lineto +6.833152e+01 1.029476e+02 lineto +6.94025e+01 1.029166e+02 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +6.94025e+01 1.029166e+02 moveto +6.94025e+01 1.001166e+02 lineto +6.833152e+01 1.001476e+02 lineto +6.833152e+01 1.029476e+02 lineto +6.94025e+01 1.029166e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.94025e+01 1.057166e+02 moveto +6.94025e+01 1.029166e+02 lineto +6.833152e+01 1.029476e+02 lineto +6.833152e+01 1.057476e+02 lineto +6.94025e+01 1.057166e+02 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +6.94025e+01 1.057166e+02 moveto +6.94025e+01 1.029166e+02 lineto +6.833152e+01 1.029476e+02 lineto +6.833152e+01 1.057476e+02 lineto +6.94025e+01 1.057166e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.94025e+01 1.085166e+02 moveto +6.94025e+01 1.057166e+02 lineto +6.833152e+01 1.057476e+02 lineto +6.833152e+01 1.085476e+02 lineto +6.94025e+01 1.085166e+02 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +6.94025e+01 1.085166e+02 moveto +6.94025e+01 1.057166e+02 lineto +6.833152e+01 1.057476e+02 lineto +6.833152e+01 1.085476e+02 lineto +6.94025e+01 1.085166e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.94025e+01 1.113166e+02 moveto +6.94025e+01 1.085166e+02 lineto +6.833152e+01 1.085476e+02 lineto +6.833152e+01 1.113476e+02 lineto +6.94025e+01 1.113166e+02 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +6.94025e+01 1.113166e+02 moveto +6.94025e+01 1.085166e+02 lineto +6.833152e+01 1.085476e+02 lineto +6.833152e+01 1.113476e+02 lineto +6.94025e+01 1.113166e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.94025e+01 1.141166e+02 moveto +6.94025e+01 1.113166e+02 lineto +6.833152e+01 1.113476e+02 lineto +6.833152e+01 1.141476e+02 lineto +6.94025e+01 1.141166e+02 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +6.94025e+01 1.141166e+02 moveto +6.94025e+01 1.113166e+02 lineto +6.833152e+01 1.113476e+02 lineto +6.833152e+01 1.141476e+02 lineto +6.94025e+01 1.141166e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.94025e+01 1.169166e+02 moveto +6.94025e+01 1.141166e+02 lineto +6.833152e+01 1.141476e+02 lineto +6.833152e+01 1.169476e+02 lineto +6.94025e+01 1.169166e+02 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +6.94025e+01 1.169166e+02 moveto +6.94025e+01 1.141166e+02 lineto +6.833152e+01 1.141476e+02 lineto +6.833152e+01 1.169476e+02 lineto +6.94025e+01 1.169166e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.833152e+01 9.174762e+01 moveto +6.833152e+01 8.894762e+01 lineto +6.724e+01 8.895798e+01 lineto +6.724e+01 9.175798e+01 lineto +6.833152e+01 9.174762e+01 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +6.833152e+01 9.174762e+01 moveto +6.833152e+01 8.894762e+01 lineto +6.724e+01 8.895798e+01 lineto +6.724e+01 9.175798e+01 lineto +6.833152e+01 9.174762e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.833152e+01 9.454762e+01 moveto +6.833152e+01 9.174762e+01 lineto +6.724e+01 9.175798e+01 lineto +6.724e+01 9.455798e+01 lineto +6.833152e+01 9.454762e+01 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +6.833152e+01 9.454762e+01 moveto +6.833152e+01 9.174762e+01 lineto +6.724e+01 9.175798e+01 lineto +6.724e+01 9.455798e+01 lineto +6.833152e+01 9.454762e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.833152e+01 9.734762e+01 moveto +6.833152e+01 9.454762e+01 lineto +6.724e+01 9.455798e+01 lineto +6.724e+01 9.735798e+01 lineto +6.833152e+01 9.734762e+01 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +6.833152e+01 9.734762e+01 moveto +6.833152e+01 9.454762e+01 lineto +6.724e+01 9.455798e+01 lineto +6.724e+01 9.735798e+01 lineto +6.833152e+01 9.734762e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.833152e+01 1.001476e+02 moveto +6.833152e+01 9.734762e+01 lineto +6.724e+01 9.735798e+01 lineto +6.724e+01 1.00158e+02 lineto +6.833152e+01 1.001476e+02 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +6.833152e+01 1.001476e+02 moveto +6.833152e+01 9.734762e+01 lineto +6.724e+01 9.735798e+01 lineto +6.724e+01 1.00158e+02 lineto +6.833152e+01 1.001476e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.833152e+01 1.029476e+02 moveto +6.833152e+01 1.001476e+02 lineto +6.724e+01 1.00158e+02 lineto +6.724e+01 1.02958e+02 lineto +6.833152e+01 1.029476e+02 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +6.833152e+01 1.029476e+02 moveto +6.833152e+01 1.001476e+02 lineto +6.724e+01 1.00158e+02 lineto +6.724e+01 1.02958e+02 lineto +6.833152e+01 1.029476e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.833152e+01 1.057476e+02 moveto +6.833152e+01 1.029476e+02 lineto +6.724e+01 1.02958e+02 lineto +6.724e+01 1.05758e+02 lineto +6.833152e+01 1.057476e+02 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +6.833152e+01 1.057476e+02 moveto +6.833152e+01 1.029476e+02 lineto +6.724e+01 1.02958e+02 lineto +6.724e+01 1.05758e+02 lineto +6.833152e+01 1.057476e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.833152e+01 1.085476e+02 moveto +6.833152e+01 1.057476e+02 lineto +6.724e+01 1.05758e+02 lineto +6.724e+01 1.08558e+02 lineto +6.833152e+01 1.085476e+02 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +6.833152e+01 1.085476e+02 moveto +6.833152e+01 1.057476e+02 lineto +6.724e+01 1.05758e+02 lineto +6.724e+01 1.08558e+02 lineto +6.833152e+01 1.085476e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.833152e+01 1.113476e+02 moveto +6.833152e+01 1.085476e+02 lineto +6.724e+01 1.08558e+02 lineto +6.724e+01 1.11358e+02 lineto +6.833152e+01 1.113476e+02 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +6.833152e+01 1.113476e+02 moveto +6.833152e+01 1.085476e+02 lineto +6.724e+01 1.08558e+02 lineto +6.724e+01 1.11358e+02 lineto +6.833152e+01 1.113476e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.833152e+01 1.141476e+02 moveto +6.833152e+01 1.113476e+02 lineto +6.724e+01 1.11358e+02 lineto +6.724e+01 1.14158e+02 lineto +6.833152e+01 1.141476e+02 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +6.833152e+01 1.141476e+02 moveto +6.833152e+01 1.113476e+02 lineto +6.724e+01 1.11358e+02 lineto +6.724e+01 1.14158e+02 lineto +6.833152e+01 1.141476e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.833152e+01 1.169476e+02 moveto +6.833152e+01 1.141476e+02 lineto +6.724e+01 1.14158e+02 lineto +6.724e+01 1.16958e+02 lineto +6.833152e+01 1.169476e+02 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +6.833152e+01 1.169476e+02 moveto +6.833152e+01 1.141476e+02 lineto +6.724e+01 1.14158e+02 lineto +6.724e+01 1.16958e+02 lineto +6.833152e+01 1.169476e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.724e+01 9.175798e+01 moveto +6.724e+01 8.895798e+01 lineto +6.613467e+01 8.894762e+01 lineto +6.613467e+01 9.174762e+01 lineto +6.724e+01 9.175798e+01 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +6.724e+01 9.175798e+01 moveto +6.724e+01 8.895798e+01 lineto +6.613467e+01 8.894762e+01 lineto +6.613467e+01 9.174762e+01 lineto +6.724e+01 9.175798e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.724e+01 9.455798e+01 moveto +6.724e+01 9.175798e+01 lineto +6.613467e+01 9.174762e+01 lineto +6.613467e+01 9.454762e+01 lineto +6.724e+01 9.455798e+01 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +6.724e+01 9.455798e+01 moveto +6.724e+01 9.175798e+01 lineto +6.613467e+01 9.174762e+01 lineto +6.613467e+01 9.454762e+01 lineto +6.724e+01 9.455798e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.724e+01 9.735798e+01 moveto +6.724e+01 9.455798e+01 lineto +6.613467e+01 9.454762e+01 lineto +6.613467e+01 9.734762e+01 lineto +6.724e+01 9.735798e+01 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +6.724e+01 9.735798e+01 moveto +6.724e+01 9.455798e+01 lineto +6.613467e+01 9.454762e+01 lineto +6.613467e+01 9.734762e+01 lineto +6.724e+01 9.735798e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.724e+01 1.00158e+02 moveto +6.724e+01 9.735798e+01 lineto +6.613467e+01 9.734762e+01 lineto +6.613467e+01 1.001476e+02 lineto +6.724e+01 1.00158e+02 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +6.724e+01 1.00158e+02 moveto +6.724e+01 9.735798e+01 lineto +6.613467e+01 9.734762e+01 lineto +6.613467e+01 1.001476e+02 lineto +6.724e+01 1.00158e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.724e+01 1.02958e+02 moveto +6.724e+01 1.00158e+02 lineto +6.613467e+01 1.001476e+02 lineto +6.613467e+01 1.029476e+02 lineto +6.724e+01 1.02958e+02 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +6.724e+01 1.02958e+02 moveto +6.724e+01 1.00158e+02 lineto +6.613467e+01 1.001476e+02 lineto +6.613467e+01 1.029476e+02 lineto +6.724e+01 1.02958e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.724e+01 1.05758e+02 moveto +6.724e+01 1.02958e+02 lineto +6.613467e+01 1.029476e+02 lineto +6.613467e+01 1.057476e+02 lineto +6.724e+01 1.05758e+02 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +6.724e+01 1.05758e+02 moveto +6.724e+01 1.02958e+02 lineto +6.613467e+01 1.029476e+02 lineto +6.613467e+01 1.057476e+02 lineto +6.724e+01 1.05758e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.724e+01 1.08558e+02 moveto +6.724e+01 1.05758e+02 lineto +6.613467e+01 1.057476e+02 lineto +6.613467e+01 1.085476e+02 lineto +6.724e+01 1.08558e+02 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +6.724e+01 1.08558e+02 moveto +6.724e+01 1.05758e+02 lineto +6.613467e+01 1.057476e+02 lineto +6.613467e+01 1.085476e+02 lineto +6.724e+01 1.08558e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.724e+01 1.11358e+02 moveto +6.724e+01 1.08558e+02 lineto +6.613467e+01 1.085476e+02 lineto +6.613467e+01 1.113476e+02 lineto +6.724e+01 1.11358e+02 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +6.724e+01 1.11358e+02 moveto +6.724e+01 1.08558e+02 lineto +6.613467e+01 1.085476e+02 lineto +6.613467e+01 1.113476e+02 lineto +6.724e+01 1.11358e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.724e+01 1.14158e+02 moveto +6.724e+01 1.11358e+02 lineto +6.613467e+01 1.113476e+02 lineto +6.613467e+01 1.141476e+02 lineto +6.724e+01 1.14158e+02 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +6.724e+01 1.14158e+02 moveto +6.724e+01 1.11358e+02 lineto +6.613467e+01 1.113476e+02 lineto +6.613467e+01 1.141476e+02 lineto +6.724e+01 1.14158e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.724e+01 1.16958e+02 moveto +6.724e+01 1.14158e+02 lineto +6.613467e+01 1.141476e+02 lineto +6.613467e+01 1.169476e+02 lineto +6.724e+01 1.16958e+02 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +6.724e+01 1.16958e+02 moveto +6.724e+01 1.14158e+02 lineto +6.613467e+01 1.141476e+02 lineto +6.613467e+01 1.169476e+02 lineto +6.724e+01 1.16958e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.613467e+01 9.174762e+01 moveto +6.613467e+01 8.894762e+01 lineto +6.502234e+01 8.891661e+01 lineto +6.502234e+01 9.171661e+01 lineto +6.613467e+01 9.174762e+01 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +6.613467e+01 9.174762e+01 moveto +6.613467e+01 8.894762e+01 lineto +6.502234e+01 8.891661e+01 lineto +6.502234e+01 9.171661e+01 lineto +6.613467e+01 9.174762e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.613467e+01 9.454762e+01 moveto +6.613467e+01 9.174762e+01 lineto +6.502234e+01 9.171661e+01 lineto +6.502234e+01 9.451661e+01 lineto +6.613467e+01 9.454762e+01 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +6.613467e+01 9.454762e+01 moveto +6.613467e+01 9.174762e+01 lineto +6.502234e+01 9.171661e+01 lineto +6.502234e+01 9.451661e+01 lineto +6.613467e+01 9.454762e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.613467e+01 9.734762e+01 moveto +6.613467e+01 9.454762e+01 lineto +6.502234e+01 9.451661e+01 lineto +6.502234e+01 9.731661e+01 lineto +6.613467e+01 9.734762e+01 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +6.613467e+01 9.734762e+01 moveto +6.613467e+01 9.454762e+01 lineto +6.502234e+01 9.451661e+01 lineto +6.502234e+01 9.731661e+01 lineto +6.613467e+01 9.734762e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.613467e+01 1.001476e+02 moveto +6.613467e+01 9.734762e+01 lineto +6.502234e+01 9.731661e+01 lineto +6.502234e+01 1.001166e+02 lineto +6.613467e+01 1.001476e+02 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +6.613467e+01 1.001476e+02 moveto +6.613467e+01 9.734762e+01 lineto +6.502234e+01 9.731661e+01 lineto +6.502234e+01 1.001166e+02 lineto +6.613467e+01 1.001476e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.613467e+01 1.029476e+02 moveto +6.613467e+01 1.001476e+02 lineto +6.502234e+01 1.001166e+02 lineto +6.502234e+01 1.029166e+02 lineto +6.613467e+01 1.029476e+02 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +6.613467e+01 1.029476e+02 moveto +6.613467e+01 1.001476e+02 lineto +6.502234e+01 1.001166e+02 lineto +6.502234e+01 1.029166e+02 lineto +6.613467e+01 1.029476e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.613467e+01 1.057476e+02 moveto +6.613467e+01 1.029476e+02 lineto +6.502234e+01 1.029166e+02 lineto +6.502234e+01 1.057166e+02 lineto +6.613467e+01 1.057476e+02 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +6.613467e+01 1.057476e+02 moveto +6.613467e+01 1.029476e+02 lineto +6.502234e+01 1.029166e+02 lineto +6.502234e+01 1.057166e+02 lineto +6.613467e+01 1.057476e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.613467e+01 1.085476e+02 moveto +6.613467e+01 1.057476e+02 lineto +6.502234e+01 1.057166e+02 lineto +6.502234e+01 1.085166e+02 lineto +6.613467e+01 1.085476e+02 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +6.613467e+01 1.085476e+02 moveto +6.613467e+01 1.057476e+02 lineto +6.502234e+01 1.057166e+02 lineto +6.502234e+01 1.085166e+02 lineto +6.613467e+01 1.085476e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.613467e+01 1.113476e+02 moveto +6.613467e+01 1.085476e+02 lineto +6.502234e+01 1.085166e+02 lineto +6.502234e+01 1.113166e+02 lineto +6.613467e+01 1.113476e+02 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +6.613467e+01 1.113476e+02 moveto +6.613467e+01 1.085476e+02 lineto +6.502234e+01 1.085166e+02 lineto +6.502234e+01 1.113166e+02 lineto +6.613467e+01 1.113476e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.613467e+01 1.141476e+02 moveto +6.613467e+01 1.113476e+02 lineto +6.502234e+01 1.113166e+02 lineto +6.502234e+01 1.141166e+02 lineto +6.613467e+01 1.141476e+02 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +6.613467e+01 1.141476e+02 moveto +6.613467e+01 1.113476e+02 lineto +6.502234e+01 1.113166e+02 lineto +6.502234e+01 1.141166e+02 lineto +6.613467e+01 1.141476e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.613467e+01 1.169476e+02 moveto +6.613467e+01 1.141476e+02 lineto +6.502234e+01 1.141166e+02 lineto +6.502234e+01 1.169166e+02 lineto +6.613467e+01 1.169476e+02 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +6.613467e+01 1.169476e+02 moveto +6.613467e+01 1.141476e+02 lineto +6.502234e+01 1.141166e+02 lineto +6.502234e+01 1.169166e+02 lineto +6.613467e+01 1.169476e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.502234e+01 9.171661e+01 moveto +6.502234e+01 8.891661e+01 lineto +6.390987e+01 8.886514e+01 lineto +6.390987e+01 9.166514e+01 lineto +6.502234e+01 9.171661e+01 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +6.502234e+01 9.171661e+01 moveto +6.502234e+01 8.891661e+01 lineto +6.390987e+01 8.886514e+01 lineto +6.390987e+01 9.166514e+01 lineto +6.502234e+01 9.171661e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.502234e+01 9.451661e+01 moveto +6.502234e+01 9.171661e+01 lineto +6.390987e+01 9.166514e+01 lineto +6.390987e+01 9.446514e+01 lineto +6.502234e+01 9.451661e+01 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +6.502234e+01 9.451661e+01 moveto +6.502234e+01 9.171661e+01 lineto +6.390987e+01 9.166514e+01 lineto +6.390987e+01 9.446514e+01 lineto +6.502234e+01 9.451661e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.502234e+01 9.731661e+01 moveto +6.502234e+01 9.451661e+01 lineto +6.390987e+01 9.446514e+01 lineto +6.390987e+01 9.726514e+01 lineto +6.502234e+01 9.731661e+01 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +6.502234e+01 9.731661e+01 moveto +6.502234e+01 9.451661e+01 lineto +6.390987e+01 9.446514e+01 lineto +6.390987e+01 9.726514e+01 lineto +6.502234e+01 9.731661e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.502234e+01 1.001166e+02 moveto +6.502234e+01 9.731661e+01 lineto +6.390987e+01 9.726514e+01 lineto +6.390987e+01 1.000651e+02 lineto +6.502234e+01 1.001166e+02 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +6.502234e+01 1.001166e+02 moveto +6.502234e+01 9.731661e+01 lineto +6.390987e+01 9.726514e+01 lineto +6.390987e+01 1.000651e+02 lineto +6.502234e+01 1.001166e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.502234e+01 1.029166e+02 moveto +6.502234e+01 1.001166e+02 lineto +6.390987e+01 1.000651e+02 lineto +6.390987e+01 1.028651e+02 lineto +6.502234e+01 1.029166e+02 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +6.502234e+01 1.029166e+02 moveto +6.502234e+01 1.001166e+02 lineto +6.390987e+01 1.000651e+02 lineto +6.390987e+01 1.028651e+02 lineto +6.502234e+01 1.029166e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.502234e+01 1.057166e+02 moveto +6.502234e+01 1.029166e+02 lineto +6.390987e+01 1.028651e+02 lineto +6.390987e+01 1.056651e+02 lineto +6.502234e+01 1.057166e+02 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +6.502234e+01 1.057166e+02 moveto +6.502234e+01 1.029166e+02 lineto +6.390987e+01 1.028651e+02 lineto +6.390987e+01 1.056651e+02 lineto +6.502234e+01 1.057166e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.502234e+01 1.085166e+02 moveto +6.502234e+01 1.057166e+02 lineto +6.390987e+01 1.056651e+02 lineto +6.390987e+01 1.084651e+02 lineto +6.502234e+01 1.085166e+02 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +6.502234e+01 1.085166e+02 moveto +6.502234e+01 1.057166e+02 lineto +6.390987e+01 1.056651e+02 lineto +6.390987e+01 1.084651e+02 lineto +6.502234e+01 1.085166e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.502234e+01 1.113166e+02 moveto +6.502234e+01 1.085166e+02 lineto +6.390987e+01 1.084651e+02 lineto +6.390987e+01 1.112651e+02 lineto +6.502234e+01 1.113166e+02 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +6.502234e+01 1.113166e+02 moveto +6.502234e+01 1.085166e+02 lineto +6.390987e+01 1.084651e+02 lineto +6.390987e+01 1.112651e+02 lineto +6.502234e+01 1.113166e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.502234e+01 1.141166e+02 moveto +6.502234e+01 1.113166e+02 lineto +6.390987e+01 1.112651e+02 lineto +6.390987e+01 1.140651e+02 lineto +6.502234e+01 1.141166e+02 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +6.502234e+01 1.141166e+02 moveto +6.502234e+01 1.113166e+02 lineto +6.390987e+01 1.112651e+02 lineto +6.390987e+01 1.140651e+02 lineto +6.502234e+01 1.141166e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.502234e+01 1.169166e+02 moveto +6.502234e+01 1.141166e+02 lineto +6.390987e+01 1.140651e+02 lineto +6.390987e+01 1.168651e+02 lineto +6.502234e+01 1.169166e+02 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +6.502234e+01 1.169166e+02 moveto +6.502234e+01 1.141166e+02 lineto +6.390987e+01 1.140651e+02 lineto +6.390987e+01 1.168651e+02 lineto +6.502234e+01 1.169166e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.390987e+01 9.166514e+01 moveto +6.390987e+01 8.886514e+01 lineto +6.280413e+01 8.879353e+01 lineto +6.280413e+01 9.159353e+01 lineto +6.390987e+01 9.166514e+01 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +6.390987e+01 9.166514e+01 moveto +6.390987e+01 8.886514e+01 lineto +6.280413e+01 8.879353e+01 lineto +6.280413e+01 9.159353e+01 lineto +6.390987e+01 9.166514e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.390987e+01 9.446514e+01 moveto +6.390987e+01 9.166514e+01 lineto +6.280413e+01 9.159353e+01 lineto +6.280413e+01 9.439353e+01 lineto +6.390987e+01 9.446514e+01 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +6.390987e+01 9.446514e+01 moveto +6.390987e+01 9.166514e+01 lineto +6.280413e+01 9.159353e+01 lineto +6.280413e+01 9.439353e+01 lineto +6.390987e+01 9.446514e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.390987e+01 9.726514e+01 moveto +6.390987e+01 9.446514e+01 lineto +6.280413e+01 9.439353e+01 lineto +6.280413e+01 9.719353e+01 lineto +6.390987e+01 9.726514e+01 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +6.390987e+01 9.726514e+01 moveto +6.390987e+01 9.446514e+01 lineto +6.280413e+01 9.439353e+01 lineto +6.280413e+01 9.719353e+01 lineto +6.390987e+01 9.726514e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.390987e+01 1.000651e+02 moveto +6.390987e+01 9.726514e+01 lineto +6.280413e+01 9.719353e+01 lineto +6.280413e+01 9.999353e+01 lineto +6.390987e+01 1.000651e+02 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +6.390987e+01 1.000651e+02 moveto +6.390987e+01 9.726514e+01 lineto +6.280413e+01 9.719353e+01 lineto +6.280413e+01 9.999353e+01 lineto +6.390987e+01 1.000651e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.390987e+01 1.028651e+02 moveto +6.390987e+01 1.000651e+02 lineto +6.280413e+01 9.999353e+01 lineto +6.280413e+01 1.027935e+02 lineto +6.390987e+01 1.028651e+02 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +6.390987e+01 1.028651e+02 moveto +6.390987e+01 1.000651e+02 lineto +6.280413e+01 9.999353e+01 lineto +6.280413e+01 1.027935e+02 lineto +6.390987e+01 1.028651e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.390987e+01 1.056651e+02 moveto +6.390987e+01 1.028651e+02 lineto +6.280413e+01 1.027935e+02 lineto +6.280413e+01 1.055935e+02 lineto +6.390987e+01 1.056651e+02 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +6.390987e+01 1.056651e+02 moveto +6.390987e+01 1.028651e+02 lineto +6.280413e+01 1.027935e+02 lineto +6.280413e+01 1.055935e+02 lineto +6.390987e+01 1.056651e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.390987e+01 1.084651e+02 moveto +6.390987e+01 1.056651e+02 lineto +6.280413e+01 1.055935e+02 lineto +6.280413e+01 1.083935e+02 lineto +6.390987e+01 1.084651e+02 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +6.390987e+01 1.084651e+02 moveto +6.390987e+01 1.056651e+02 lineto +6.280413e+01 1.055935e+02 lineto +6.280413e+01 1.083935e+02 lineto +6.390987e+01 1.084651e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.390987e+01 1.112651e+02 moveto +6.390987e+01 1.084651e+02 lineto +6.280413e+01 1.083935e+02 lineto +6.280413e+01 1.111935e+02 lineto +6.390987e+01 1.112651e+02 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +6.390987e+01 1.112651e+02 moveto +6.390987e+01 1.084651e+02 lineto +6.280413e+01 1.083935e+02 lineto +6.280413e+01 1.111935e+02 lineto +6.390987e+01 1.112651e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.390987e+01 1.140651e+02 moveto +6.390987e+01 1.112651e+02 lineto +6.280413e+01 1.111935e+02 lineto +6.280413e+01 1.139935e+02 lineto +6.390987e+01 1.140651e+02 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +6.390987e+01 1.140651e+02 moveto +6.390987e+01 1.112651e+02 lineto +6.280413e+01 1.111935e+02 lineto +6.280413e+01 1.139935e+02 lineto +6.390987e+01 1.140651e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.390987e+01 1.168651e+02 moveto +6.390987e+01 1.140651e+02 lineto +6.280413e+01 1.139935e+02 lineto +6.280413e+01 1.167935e+02 lineto +6.390987e+01 1.168651e+02 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +6.390987e+01 1.168651e+02 moveto +6.390987e+01 1.140651e+02 lineto +6.280413e+01 1.139935e+02 lineto +6.280413e+01 1.167935e+02 lineto +6.390987e+01 1.168651e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.280413e+01 9.159353e+01 moveto +6.280413e+01 8.879353e+01 lineto +6.171192e+01 8.870221e+01 lineto +6.171192e+01 9.150221e+01 lineto +6.280413e+01 9.159353e+01 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +6.280413e+01 9.159353e+01 moveto +6.280413e+01 8.879353e+01 lineto +6.171192e+01 8.870221e+01 lineto +6.171192e+01 9.150221e+01 lineto +6.280413e+01 9.159353e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.280413e+01 9.439353e+01 moveto +6.280413e+01 9.159353e+01 lineto +6.171192e+01 9.150221e+01 lineto +6.171192e+01 9.430221e+01 lineto +6.280413e+01 9.439353e+01 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +6.280413e+01 9.439353e+01 moveto +6.280413e+01 9.159353e+01 lineto +6.171192e+01 9.150221e+01 lineto +6.171192e+01 9.430221e+01 lineto +6.280413e+01 9.439353e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.280413e+01 9.719353e+01 moveto +6.280413e+01 9.439353e+01 lineto +6.171192e+01 9.430221e+01 lineto +6.171192e+01 9.710221e+01 lineto +6.280413e+01 9.719353e+01 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +6.280413e+01 9.719353e+01 moveto +6.280413e+01 9.439353e+01 lineto +6.171192e+01 9.430221e+01 lineto +6.171192e+01 9.710221e+01 lineto +6.280413e+01 9.719353e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.280413e+01 9.999353e+01 moveto +6.280413e+01 9.719353e+01 lineto +6.171192e+01 9.710221e+01 lineto +6.171192e+01 9.990221e+01 lineto +6.280413e+01 9.999353e+01 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +6.280413e+01 9.999353e+01 moveto +6.280413e+01 9.719353e+01 lineto +6.171192e+01 9.710221e+01 lineto +6.171192e+01 9.990221e+01 lineto +6.280413e+01 9.999353e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.280413e+01 1.027935e+02 moveto +6.280413e+01 9.999353e+01 lineto +6.171192e+01 9.990221e+01 lineto +6.171192e+01 1.027022e+02 lineto +6.280413e+01 1.027935e+02 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +6.280413e+01 1.027935e+02 moveto +6.280413e+01 9.999353e+01 lineto +6.171192e+01 9.990221e+01 lineto +6.171192e+01 1.027022e+02 lineto +6.280413e+01 1.027935e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.280413e+01 1.055935e+02 moveto +6.280413e+01 1.027935e+02 lineto +6.171192e+01 1.027022e+02 lineto +6.171192e+01 1.055022e+02 lineto +6.280413e+01 1.055935e+02 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +6.280413e+01 1.055935e+02 moveto +6.280413e+01 1.027935e+02 lineto +6.171192e+01 1.027022e+02 lineto +6.171192e+01 1.055022e+02 lineto +6.280413e+01 1.055935e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.280413e+01 1.083935e+02 moveto +6.280413e+01 1.055935e+02 lineto +6.171192e+01 1.055022e+02 lineto +6.171192e+01 1.083022e+02 lineto +6.280413e+01 1.083935e+02 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +6.280413e+01 1.083935e+02 moveto +6.280413e+01 1.055935e+02 lineto +6.171192e+01 1.055022e+02 lineto +6.171192e+01 1.083022e+02 lineto +6.280413e+01 1.083935e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.280413e+01 1.111935e+02 moveto +6.280413e+01 1.083935e+02 lineto +6.171192e+01 1.083022e+02 lineto +6.171192e+01 1.111022e+02 lineto +6.280413e+01 1.111935e+02 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +6.280413e+01 1.111935e+02 moveto +6.280413e+01 1.083935e+02 lineto +6.171192e+01 1.083022e+02 lineto +6.171192e+01 1.111022e+02 lineto +6.280413e+01 1.111935e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.280413e+01 1.139935e+02 moveto +6.280413e+01 1.111935e+02 lineto +6.171192e+01 1.111022e+02 lineto +6.171192e+01 1.139022e+02 lineto +6.280413e+01 1.139935e+02 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +6.280413e+01 1.139935e+02 moveto +6.280413e+01 1.111935e+02 lineto +6.171192e+01 1.111022e+02 lineto +6.171192e+01 1.139022e+02 lineto +6.280413e+01 1.139935e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.280413e+01 1.167935e+02 moveto +6.280413e+01 1.139935e+02 lineto +6.171192e+01 1.139022e+02 lineto +6.171192e+01 1.167022e+02 lineto +6.280413e+01 1.167935e+02 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +6.280413e+01 1.167935e+02 moveto +6.280413e+01 1.139935e+02 lineto +6.171192e+01 1.139022e+02 lineto +6.171192e+01 1.167022e+02 lineto +6.280413e+01 1.167935e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.171192e+01 9.150221e+01 moveto +6.171192e+01 8.870221e+01 lineto +6.063999e+01 8.859176e+01 lineto +6.063999e+01 9.139176e+01 lineto +6.171192e+01 9.150221e+01 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +6.171192e+01 9.150221e+01 moveto +6.171192e+01 8.870221e+01 lineto +6.063999e+01 8.859176e+01 lineto +6.063999e+01 9.139176e+01 lineto +6.171192e+01 9.150221e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.171192e+01 9.430221e+01 moveto +6.171192e+01 9.150221e+01 lineto +6.063999e+01 9.139176e+01 lineto +6.063999e+01 9.419176e+01 lineto +6.171192e+01 9.430221e+01 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +6.171192e+01 9.430221e+01 moveto +6.171192e+01 9.150221e+01 lineto +6.063999e+01 9.139176e+01 lineto +6.063999e+01 9.419176e+01 lineto +6.171192e+01 9.430221e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.171192e+01 9.710221e+01 moveto +6.171192e+01 9.430221e+01 lineto +6.063999e+01 9.419176e+01 lineto +6.063999e+01 9.699176e+01 lineto +6.171192e+01 9.710221e+01 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +6.171192e+01 9.710221e+01 moveto +6.171192e+01 9.430221e+01 lineto +6.063999e+01 9.419176e+01 lineto +6.063999e+01 9.699176e+01 lineto +6.171192e+01 9.710221e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.171192e+01 9.990221e+01 moveto +6.171192e+01 9.710221e+01 lineto +6.063999e+01 9.699176e+01 lineto +6.063999e+01 9.979176e+01 lineto +6.171192e+01 9.990221e+01 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +6.171192e+01 9.990221e+01 moveto +6.171192e+01 9.710221e+01 lineto +6.063999e+01 9.699176e+01 lineto +6.063999e+01 9.979176e+01 lineto +6.171192e+01 9.990221e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.171192e+01 1.027022e+02 moveto +6.171192e+01 9.990221e+01 lineto +6.063999e+01 9.979176e+01 lineto +6.063999e+01 1.025918e+02 lineto +6.171192e+01 1.027022e+02 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +6.171192e+01 1.027022e+02 moveto +6.171192e+01 9.990221e+01 lineto +6.063999e+01 9.979176e+01 lineto +6.063999e+01 1.025918e+02 lineto +6.171192e+01 1.027022e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.171192e+01 1.055022e+02 moveto +6.171192e+01 1.027022e+02 lineto +6.063999e+01 1.025918e+02 lineto +6.063999e+01 1.053918e+02 lineto +6.171192e+01 1.055022e+02 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +6.171192e+01 1.055022e+02 moveto +6.171192e+01 1.027022e+02 lineto +6.063999e+01 1.025918e+02 lineto +6.063999e+01 1.053918e+02 lineto +6.171192e+01 1.055022e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.171192e+01 1.083022e+02 moveto +6.171192e+01 1.055022e+02 lineto +6.063999e+01 1.053918e+02 lineto +6.063999e+01 1.081918e+02 lineto +6.171192e+01 1.083022e+02 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +6.171192e+01 1.083022e+02 moveto +6.171192e+01 1.055022e+02 lineto +6.063999e+01 1.053918e+02 lineto +6.063999e+01 1.081918e+02 lineto +6.171192e+01 1.083022e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.171192e+01 1.111022e+02 moveto +6.171192e+01 1.083022e+02 lineto +6.063999e+01 1.081918e+02 lineto +6.063999e+01 1.109918e+02 lineto +6.171192e+01 1.111022e+02 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +6.171192e+01 1.111022e+02 moveto +6.171192e+01 1.083022e+02 lineto +6.063999e+01 1.081918e+02 lineto +6.063999e+01 1.109918e+02 lineto +6.171192e+01 1.111022e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.171192e+01 1.139022e+02 moveto +6.171192e+01 1.111022e+02 lineto +6.063999e+01 1.109918e+02 lineto +6.063999e+01 1.137918e+02 lineto +6.171192e+01 1.139022e+02 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +6.171192e+01 1.139022e+02 moveto +6.171192e+01 1.111022e+02 lineto +6.063999e+01 1.109918e+02 lineto +6.063999e+01 1.137918e+02 lineto +6.171192e+01 1.139022e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.171192e+01 1.167022e+02 moveto +6.171192e+01 1.139022e+02 lineto +6.063999e+01 1.137918e+02 lineto +6.063999e+01 1.165918e+02 lineto +6.171192e+01 1.167022e+02 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +6.171192e+01 1.167022e+02 moveto +6.171192e+01 1.139022e+02 lineto +6.063999e+01 1.137918e+02 lineto +6.063999e+01 1.165918e+02 lineto +6.171192e+01 1.167022e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.063999e+01 9.139176e+01 moveto +6.063999e+01 8.859176e+01 lineto +5.959493e+01 8.846285e+01 lineto +5.959493e+01 9.126285e+01 lineto +6.063999e+01 9.139176e+01 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +6.063999e+01 9.139176e+01 moveto +6.063999e+01 8.859176e+01 lineto +5.959493e+01 8.846285e+01 lineto +5.959493e+01 9.126285e+01 lineto +6.063999e+01 9.139176e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.063999e+01 9.419176e+01 moveto +6.063999e+01 9.139176e+01 lineto +5.959493e+01 9.126285e+01 lineto +5.959493e+01 9.406285e+01 lineto +6.063999e+01 9.419176e+01 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +6.063999e+01 9.419176e+01 moveto +6.063999e+01 9.139176e+01 lineto +5.959493e+01 9.126285e+01 lineto +5.959493e+01 9.406285e+01 lineto +6.063999e+01 9.419176e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.063999e+01 9.699176e+01 moveto +6.063999e+01 9.419176e+01 lineto +5.959493e+01 9.406285e+01 lineto +5.959493e+01 9.686285e+01 lineto +6.063999e+01 9.699176e+01 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +6.063999e+01 9.699176e+01 moveto +6.063999e+01 9.419176e+01 lineto +5.959493e+01 9.406285e+01 lineto +5.959493e+01 9.686285e+01 lineto +6.063999e+01 9.699176e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.063999e+01 9.979176e+01 moveto +6.063999e+01 9.699176e+01 lineto +5.959493e+01 9.686285e+01 lineto +5.959493e+01 9.966285e+01 lineto +6.063999e+01 9.979176e+01 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +6.063999e+01 9.979176e+01 moveto +6.063999e+01 9.699176e+01 lineto +5.959493e+01 9.686285e+01 lineto +5.959493e+01 9.966285e+01 lineto +6.063999e+01 9.979176e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.063999e+01 1.025918e+02 moveto +6.063999e+01 9.979176e+01 lineto +5.959493e+01 9.966285e+01 lineto +5.959493e+01 1.024629e+02 lineto +6.063999e+01 1.025918e+02 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +6.063999e+01 1.025918e+02 moveto +6.063999e+01 9.979176e+01 lineto +5.959493e+01 9.966285e+01 lineto +5.959493e+01 1.024629e+02 lineto +6.063999e+01 1.025918e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.063999e+01 1.053918e+02 moveto +6.063999e+01 1.025918e+02 lineto +5.959493e+01 1.024629e+02 lineto +5.959493e+01 1.052629e+02 lineto +6.063999e+01 1.053918e+02 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +6.063999e+01 1.053918e+02 moveto +6.063999e+01 1.025918e+02 lineto +5.959493e+01 1.024629e+02 lineto +5.959493e+01 1.052629e+02 lineto +6.063999e+01 1.053918e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.063999e+01 1.081918e+02 moveto +6.063999e+01 1.053918e+02 lineto +5.959493e+01 1.052629e+02 lineto +5.959493e+01 1.080629e+02 lineto +6.063999e+01 1.081918e+02 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +6.063999e+01 1.081918e+02 moveto +6.063999e+01 1.053918e+02 lineto +5.959493e+01 1.052629e+02 lineto +5.959493e+01 1.080629e+02 lineto +6.063999e+01 1.081918e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.063999e+01 1.109918e+02 moveto +6.063999e+01 1.081918e+02 lineto +5.959493e+01 1.080629e+02 lineto +5.959493e+01 1.108629e+02 lineto +6.063999e+01 1.109918e+02 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +6.063999e+01 1.109918e+02 moveto +6.063999e+01 1.081918e+02 lineto +5.959493e+01 1.080629e+02 lineto +5.959493e+01 1.108629e+02 lineto +6.063999e+01 1.109918e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.063999e+01 1.137918e+02 moveto +6.063999e+01 1.109918e+02 lineto +5.959493e+01 1.108629e+02 lineto +5.959493e+01 1.136629e+02 lineto +6.063999e+01 1.137918e+02 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +6.063999e+01 1.137918e+02 moveto +6.063999e+01 1.109918e+02 lineto +5.959493e+01 1.108629e+02 lineto +5.959493e+01 1.136629e+02 lineto +6.063999e+01 1.137918e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.063999e+01 1.165918e+02 moveto +6.063999e+01 1.137918e+02 lineto +5.959493e+01 1.136629e+02 lineto +5.959493e+01 1.164629e+02 lineto +6.063999e+01 1.165918e+02 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +6.063999e+01 1.165918e+02 moveto +6.063999e+01 1.137918e+02 lineto +5.959493e+01 1.136629e+02 lineto +5.959493e+01 1.164629e+02 lineto +6.063999e+01 1.165918e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.959493e+01 9.126285e+01 moveto +5.959493e+01 8.846285e+01 lineto +5.85832e+01 8.831628e+01 lineto +5.85832e+01 9.111628e+01 lineto +5.959493e+01 9.126285e+01 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +5.959493e+01 9.126285e+01 moveto +5.959493e+01 8.846285e+01 lineto +5.85832e+01 8.831628e+01 lineto +5.85832e+01 9.111628e+01 lineto +5.959493e+01 9.126285e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.959493e+01 9.406285e+01 moveto +5.959493e+01 9.126285e+01 lineto +5.85832e+01 9.111628e+01 lineto +5.85832e+01 9.391628e+01 lineto +5.959493e+01 9.406285e+01 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +5.959493e+01 9.406285e+01 moveto +5.959493e+01 9.126285e+01 lineto +5.85832e+01 9.111628e+01 lineto +5.85832e+01 9.391628e+01 lineto +5.959493e+01 9.406285e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.959493e+01 9.686285e+01 moveto +5.959493e+01 9.406285e+01 lineto +5.85832e+01 9.391628e+01 lineto +5.85832e+01 9.671628e+01 lineto +5.959493e+01 9.686285e+01 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +5.959493e+01 9.686285e+01 moveto +5.959493e+01 9.406285e+01 lineto +5.85832e+01 9.391628e+01 lineto +5.85832e+01 9.671628e+01 lineto +5.959493e+01 9.686285e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.959493e+01 9.966285e+01 moveto +5.959493e+01 9.686285e+01 lineto +5.85832e+01 9.671628e+01 lineto +5.85832e+01 9.951628e+01 lineto +5.959493e+01 9.966285e+01 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +5.959493e+01 9.966285e+01 moveto +5.959493e+01 9.686285e+01 lineto +5.85832e+01 9.671628e+01 lineto +5.85832e+01 9.951628e+01 lineto +5.959493e+01 9.966285e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.959493e+01 1.024629e+02 moveto +5.959493e+01 9.966285e+01 lineto +5.85832e+01 9.951628e+01 lineto +5.85832e+01 1.023163e+02 lineto +5.959493e+01 1.024629e+02 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +5.959493e+01 1.024629e+02 moveto +5.959493e+01 9.966285e+01 lineto +5.85832e+01 9.951628e+01 lineto +5.85832e+01 1.023163e+02 lineto +5.959493e+01 1.024629e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.959493e+01 1.052629e+02 moveto +5.959493e+01 1.024629e+02 lineto +5.85832e+01 1.023163e+02 lineto +5.85832e+01 1.051163e+02 lineto +5.959493e+01 1.052629e+02 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +5.959493e+01 1.052629e+02 moveto +5.959493e+01 1.024629e+02 lineto +5.85832e+01 1.023163e+02 lineto +5.85832e+01 1.051163e+02 lineto +5.959493e+01 1.052629e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.959493e+01 1.080629e+02 moveto +5.959493e+01 1.052629e+02 lineto +5.85832e+01 1.051163e+02 lineto +5.85832e+01 1.079163e+02 lineto +5.959493e+01 1.080629e+02 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +5.959493e+01 1.080629e+02 moveto +5.959493e+01 1.052629e+02 lineto +5.85832e+01 1.051163e+02 lineto +5.85832e+01 1.079163e+02 lineto +5.959493e+01 1.080629e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.959493e+01 1.108629e+02 moveto +5.959493e+01 1.080629e+02 lineto +5.85832e+01 1.079163e+02 lineto +5.85832e+01 1.107163e+02 lineto +5.959493e+01 1.108629e+02 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +5.959493e+01 1.108629e+02 moveto +5.959493e+01 1.080629e+02 lineto +5.85832e+01 1.079163e+02 lineto +5.85832e+01 1.107163e+02 lineto +5.959493e+01 1.108629e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.959493e+01 1.136629e+02 moveto +5.959493e+01 1.108629e+02 lineto +5.85832e+01 1.107163e+02 lineto +5.85832e+01 1.135163e+02 lineto +5.959493e+01 1.136629e+02 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +5.959493e+01 1.136629e+02 moveto +5.959493e+01 1.108629e+02 lineto +5.85832e+01 1.107163e+02 lineto +5.85832e+01 1.135163e+02 lineto +5.959493e+01 1.136629e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.959493e+01 1.164629e+02 moveto +5.959493e+01 1.136629e+02 lineto +5.85832e+01 1.135163e+02 lineto +5.85832e+01 1.163163e+02 lineto +5.959493e+01 1.164629e+02 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +5.959493e+01 1.164629e+02 moveto +5.959493e+01 1.136629e+02 lineto +5.85832e+01 1.135163e+02 lineto +5.85832e+01 1.163163e+02 lineto +5.959493e+01 1.164629e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.85832e+01 9.111628e+01 moveto +5.85832e+01 8.831628e+01 lineto +5.761104e+01 8.815294e+01 lineto +5.761104e+01 9.095294e+01 lineto +5.85832e+01 9.111628e+01 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +5.85832e+01 9.111628e+01 moveto +5.85832e+01 8.831628e+01 lineto +5.761104e+01 8.815294e+01 lineto +5.761104e+01 9.095294e+01 lineto +5.85832e+01 9.111628e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.85832e+01 9.391628e+01 moveto +5.85832e+01 9.111628e+01 lineto +5.761104e+01 9.095294e+01 lineto +5.761104e+01 9.375294e+01 lineto +5.85832e+01 9.391628e+01 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +5.85832e+01 9.391628e+01 moveto +5.85832e+01 9.111628e+01 lineto +5.761104e+01 9.095294e+01 lineto +5.761104e+01 9.375294e+01 lineto +5.85832e+01 9.391628e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.85832e+01 9.671628e+01 moveto +5.85832e+01 9.391628e+01 lineto +5.761104e+01 9.375294e+01 lineto +5.761104e+01 9.655294e+01 lineto +5.85832e+01 9.671628e+01 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +5.85832e+01 9.671628e+01 moveto +5.85832e+01 9.391628e+01 lineto +5.761104e+01 9.375294e+01 lineto +5.761104e+01 9.655294e+01 lineto +5.85832e+01 9.671628e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.85832e+01 9.951628e+01 moveto +5.85832e+01 9.671628e+01 lineto +5.761104e+01 9.655294e+01 lineto +5.761104e+01 9.935294e+01 lineto +5.85832e+01 9.951628e+01 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +5.85832e+01 9.951628e+01 moveto +5.85832e+01 9.671628e+01 lineto +5.761104e+01 9.655294e+01 lineto +5.761104e+01 9.935294e+01 lineto +5.85832e+01 9.951628e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.85832e+01 1.023163e+02 moveto +5.85832e+01 9.951628e+01 lineto +5.761104e+01 9.935294e+01 lineto +5.761104e+01 1.021529e+02 lineto +5.85832e+01 1.023163e+02 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +5.85832e+01 1.023163e+02 moveto +5.85832e+01 9.951628e+01 lineto +5.761104e+01 9.935294e+01 lineto +5.761104e+01 1.021529e+02 lineto +5.85832e+01 1.023163e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.85832e+01 1.051163e+02 moveto +5.85832e+01 1.023163e+02 lineto +5.761104e+01 1.021529e+02 lineto +5.761104e+01 1.049529e+02 lineto +5.85832e+01 1.051163e+02 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +5.85832e+01 1.051163e+02 moveto +5.85832e+01 1.023163e+02 lineto +5.761104e+01 1.021529e+02 lineto +5.761104e+01 1.049529e+02 lineto +5.85832e+01 1.051163e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.85832e+01 1.079163e+02 moveto +5.85832e+01 1.051163e+02 lineto +5.761104e+01 1.049529e+02 lineto +5.761104e+01 1.077529e+02 lineto +5.85832e+01 1.079163e+02 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +5.85832e+01 1.079163e+02 moveto +5.85832e+01 1.051163e+02 lineto +5.761104e+01 1.049529e+02 lineto +5.761104e+01 1.077529e+02 lineto +5.85832e+01 1.079163e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.85832e+01 1.107163e+02 moveto +5.85832e+01 1.079163e+02 lineto +5.761104e+01 1.077529e+02 lineto +5.761104e+01 1.105529e+02 lineto +5.85832e+01 1.107163e+02 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +5.85832e+01 1.107163e+02 moveto +5.85832e+01 1.079163e+02 lineto +5.761104e+01 1.077529e+02 lineto +5.761104e+01 1.105529e+02 lineto +5.85832e+01 1.107163e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.85832e+01 1.135163e+02 moveto +5.85832e+01 1.107163e+02 lineto +5.761104e+01 1.105529e+02 lineto +5.761104e+01 1.133529e+02 lineto +5.85832e+01 1.135163e+02 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +5.85832e+01 1.135163e+02 moveto +5.85832e+01 1.107163e+02 lineto +5.761104e+01 1.105529e+02 lineto +5.761104e+01 1.133529e+02 lineto +5.85832e+01 1.135163e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.85832e+01 1.163163e+02 moveto +5.85832e+01 1.135163e+02 lineto +5.761104e+01 1.133529e+02 lineto +5.761104e+01 1.161529e+02 lineto +5.85832e+01 1.163163e+02 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +5.85832e+01 1.163163e+02 moveto +5.85832e+01 1.135163e+02 lineto +5.761104e+01 1.133529e+02 lineto +5.761104e+01 1.161529e+02 lineto +5.85832e+01 1.163163e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.761104e+01 9.095294e+01 moveto +5.761104e+01 8.815294e+01 lineto +5.668442e+01 8.797386e+01 lineto +5.668442e+01 9.077386e+01 lineto +5.761104e+01 9.095294e+01 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +5.761104e+01 9.095294e+01 moveto +5.761104e+01 8.815294e+01 lineto +5.668442e+01 8.797386e+01 lineto +5.668442e+01 9.077386e+01 lineto +5.761104e+01 9.095294e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.761104e+01 9.375294e+01 moveto +5.761104e+01 9.095294e+01 lineto +5.668442e+01 9.077386e+01 lineto +5.668442e+01 9.357386e+01 lineto +5.761104e+01 9.375294e+01 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +5.761104e+01 9.375294e+01 moveto +5.761104e+01 9.095294e+01 lineto +5.668442e+01 9.077386e+01 lineto +5.668442e+01 9.357386e+01 lineto +5.761104e+01 9.375294e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.761104e+01 9.655294e+01 moveto +5.761104e+01 9.375294e+01 lineto +5.668442e+01 9.357386e+01 lineto +5.668442e+01 9.637386e+01 lineto +5.761104e+01 9.655294e+01 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +5.761104e+01 9.655294e+01 moveto +5.761104e+01 9.375294e+01 lineto +5.668442e+01 9.357386e+01 lineto +5.668442e+01 9.637386e+01 lineto +5.761104e+01 9.655294e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.761104e+01 9.935294e+01 moveto +5.761104e+01 9.655294e+01 lineto +5.668442e+01 9.637386e+01 lineto +5.668442e+01 9.917386e+01 lineto +5.761104e+01 9.935294e+01 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +5.761104e+01 9.935294e+01 moveto +5.761104e+01 9.655294e+01 lineto +5.668442e+01 9.637386e+01 lineto +5.668442e+01 9.917386e+01 lineto +5.761104e+01 9.935294e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.761104e+01 1.021529e+02 moveto +5.761104e+01 9.935294e+01 lineto +5.668442e+01 9.917386e+01 lineto +5.668442e+01 1.019739e+02 lineto +5.761104e+01 1.021529e+02 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +5.761104e+01 1.021529e+02 moveto +5.761104e+01 9.935294e+01 lineto +5.668442e+01 9.917386e+01 lineto +5.668442e+01 1.019739e+02 lineto +5.761104e+01 1.021529e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.761104e+01 1.049529e+02 moveto +5.761104e+01 1.021529e+02 lineto +5.668442e+01 1.019739e+02 lineto +5.668442e+01 1.047739e+02 lineto +5.761104e+01 1.049529e+02 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +5.761104e+01 1.049529e+02 moveto +5.761104e+01 1.021529e+02 lineto +5.668442e+01 1.019739e+02 lineto +5.668442e+01 1.047739e+02 lineto +5.761104e+01 1.049529e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.761104e+01 1.077529e+02 moveto +5.761104e+01 1.049529e+02 lineto +5.668442e+01 1.047739e+02 lineto +5.668442e+01 1.075739e+02 lineto +5.761104e+01 1.077529e+02 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +5.761104e+01 1.077529e+02 moveto +5.761104e+01 1.049529e+02 lineto +5.668442e+01 1.047739e+02 lineto +5.668442e+01 1.075739e+02 lineto +5.761104e+01 1.077529e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.761104e+01 1.105529e+02 moveto +5.761104e+01 1.077529e+02 lineto +5.668442e+01 1.075739e+02 lineto +5.668442e+01 1.103739e+02 lineto +5.761104e+01 1.105529e+02 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +5.761104e+01 1.105529e+02 moveto +5.761104e+01 1.077529e+02 lineto +5.668442e+01 1.075739e+02 lineto +5.668442e+01 1.103739e+02 lineto +5.761104e+01 1.105529e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.761104e+01 1.133529e+02 moveto +5.761104e+01 1.105529e+02 lineto +5.668442e+01 1.103739e+02 lineto +5.668442e+01 1.131739e+02 lineto +5.761104e+01 1.133529e+02 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +5.761104e+01 1.133529e+02 moveto +5.761104e+01 1.105529e+02 lineto +5.668442e+01 1.103739e+02 lineto +5.668442e+01 1.131739e+02 lineto +5.761104e+01 1.133529e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.761104e+01 1.161529e+02 moveto +5.761104e+01 1.133529e+02 lineto +5.668442e+01 1.131739e+02 lineto +5.668442e+01 1.159739e+02 lineto +5.761104e+01 1.161529e+02 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +5.761104e+01 1.161529e+02 moveto +5.761104e+01 1.133529e+02 lineto +5.668442e+01 1.131739e+02 lineto +5.668442e+01 1.159739e+02 lineto +5.761104e+01 1.161529e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.668442e+01 9.077386e+01 moveto +5.668442e+01 8.797386e+01 lineto +5.580908e+01 8.778013e+01 lineto +5.580908e+01 9.058013e+01 lineto +5.668442e+01 9.077386e+01 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +5.668442e+01 9.077386e+01 moveto +5.668442e+01 8.797386e+01 lineto +5.580908e+01 8.778013e+01 lineto +5.580908e+01 9.058013e+01 lineto +5.668442e+01 9.077386e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.668442e+01 9.357386e+01 moveto +5.668442e+01 9.077386e+01 lineto +5.580908e+01 9.058013e+01 lineto +5.580908e+01 9.338013e+01 lineto +5.668442e+01 9.357386e+01 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +5.668442e+01 9.357386e+01 moveto +5.668442e+01 9.077386e+01 lineto +5.580908e+01 9.058013e+01 lineto +5.580908e+01 9.338013e+01 lineto +5.668442e+01 9.357386e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.668442e+01 9.637386e+01 moveto +5.668442e+01 9.357386e+01 lineto +5.580908e+01 9.338013e+01 lineto +5.580908e+01 9.618013e+01 lineto +5.668442e+01 9.637386e+01 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +5.668442e+01 9.637386e+01 moveto +5.668442e+01 9.357386e+01 lineto +5.580908e+01 9.338013e+01 lineto +5.580908e+01 9.618013e+01 lineto +5.668442e+01 9.637386e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.668442e+01 9.917386e+01 moveto +5.668442e+01 9.637386e+01 lineto +5.580908e+01 9.618013e+01 lineto +5.580908e+01 9.898013e+01 lineto +5.668442e+01 9.917386e+01 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +5.668442e+01 9.917386e+01 moveto +5.668442e+01 9.637386e+01 lineto +5.580908e+01 9.618013e+01 lineto +5.580908e+01 9.898013e+01 lineto +5.668442e+01 9.917386e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.668442e+01 1.019739e+02 moveto +5.668442e+01 9.917386e+01 lineto +5.580908e+01 9.898013e+01 lineto +5.580908e+01 1.017801e+02 lineto +5.668442e+01 1.019739e+02 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +5.668442e+01 1.019739e+02 moveto +5.668442e+01 9.917386e+01 lineto +5.580908e+01 9.898013e+01 lineto +5.580908e+01 1.017801e+02 lineto +5.668442e+01 1.019739e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.668442e+01 1.047739e+02 moveto +5.668442e+01 1.019739e+02 lineto +5.580908e+01 1.017801e+02 lineto +5.580908e+01 1.045801e+02 lineto +5.668442e+01 1.047739e+02 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +5.668442e+01 1.047739e+02 moveto +5.668442e+01 1.019739e+02 lineto +5.580908e+01 1.017801e+02 lineto +5.580908e+01 1.045801e+02 lineto +5.668442e+01 1.047739e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.668442e+01 1.075739e+02 moveto +5.668442e+01 1.047739e+02 lineto +5.580908e+01 1.045801e+02 lineto +5.580908e+01 1.073801e+02 lineto +5.668442e+01 1.075739e+02 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +5.668442e+01 1.075739e+02 moveto +5.668442e+01 1.047739e+02 lineto +5.580908e+01 1.045801e+02 lineto +5.580908e+01 1.073801e+02 lineto +5.668442e+01 1.075739e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.668442e+01 1.103739e+02 moveto +5.668442e+01 1.075739e+02 lineto +5.580908e+01 1.073801e+02 lineto +5.580908e+01 1.101801e+02 lineto +5.668442e+01 1.103739e+02 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +5.668442e+01 1.103739e+02 moveto +5.668442e+01 1.075739e+02 lineto +5.580908e+01 1.073801e+02 lineto +5.580908e+01 1.101801e+02 lineto +5.668442e+01 1.103739e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.668442e+01 1.131739e+02 moveto +5.668442e+01 1.103739e+02 lineto +5.580908e+01 1.101801e+02 lineto +5.580908e+01 1.129801e+02 lineto +5.668442e+01 1.131739e+02 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +5.668442e+01 1.131739e+02 moveto +5.668442e+01 1.103739e+02 lineto +5.580908e+01 1.101801e+02 lineto +5.580908e+01 1.129801e+02 lineto +5.668442e+01 1.131739e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.668442e+01 1.159739e+02 moveto +5.668442e+01 1.131739e+02 lineto +5.580908e+01 1.129801e+02 lineto +5.580908e+01 1.157801e+02 lineto +5.668442e+01 1.159739e+02 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +5.668442e+01 1.159739e+02 moveto +5.668442e+01 1.131739e+02 lineto +5.580908e+01 1.129801e+02 lineto +5.580908e+01 1.157801e+02 lineto +5.668442e+01 1.159739e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.580908e+01 9.058013e+01 moveto +5.580908e+01 8.778013e+01 lineto +5.49904e+01 8.757294e+01 lineto +5.49904e+01 9.037294e+01 lineto +5.580908e+01 9.058013e+01 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +5.580908e+01 9.058013e+01 moveto +5.580908e+01 8.778013e+01 lineto +5.49904e+01 8.757294e+01 lineto +5.49904e+01 9.037294e+01 lineto +5.580908e+01 9.058013e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.580908e+01 9.338013e+01 moveto +5.580908e+01 9.058013e+01 lineto +5.49904e+01 9.037294e+01 lineto +5.49904e+01 9.317294e+01 lineto +5.580908e+01 9.338013e+01 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +5.580908e+01 9.338013e+01 moveto +5.580908e+01 9.058013e+01 lineto +5.49904e+01 9.037294e+01 lineto +5.49904e+01 9.317294e+01 lineto +5.580908e+01 9.338013e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.580908e+01 9.618013e+01 moveto +5.580908e+01 9.338013e+01 lineto +5.49904e+01 9.317294e+01 lineto +5.49904e+01 9.597294e+01 lineto +5.580908e+01 9.618013e+01 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +5.580908e+01 9.618013e+01 moveto +5.580908e+01 9.338013e+01 lineto +5.49904e+01 9.317294e+01 lineto +5.49904e+01 9.597294e+01 lineto +5.580908e+01 9.618013e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.580908e+01 9.898013e+01 moveto +5.580908e+01 9.618013e+01 lineto +5.49904e+01 9.597294e+01 lineto +5.49904e+01 9.877294e+01 lineto +5.580908e+01 9.898013e+01 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +5.580908e+01 9.898013e+01 moveto +5.580908e+01 9.618013e+01 lineto +5.49904e+01 9.597294e+01 lineto +5.49904e+01 9.877294e+01 lineto +5.580908e+01 9.898013e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.580908e+01 1.017801e+02 moveto +5.580908e+01 9.898013e+01 lineto +5.49904e+01 9.877294e+01 lineto +5.49904e+01 1.015729e+02 lineto +5.580908e+01 1.017801e+02 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +5.580908e+01 1.017801e+02 moveto +5.580908e+01 9.898013e+01 lineto +5.49904e+01 9.877294e+01 lineto +5.49904e+01 1.015729e+02 lineto +5.580908e+01 1.017801e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.580908e+01 1.045801e+02 moveto +5.580908e+01 1.017801e+02 lineto +5.49904e+01 1.015729e+02 lineto +5.49904e+01 1.043729e+02 lineto +5.580908e+01 1.045801e+02 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +5.580908e+01 1.045801e+02 moveto +5.580908e+01 1.017801e+02 lineto +5.49904e+01 1.015729e+02 lineto +5.49904e+01 1.043729e+02 lineto +5.580908e+01 1.045801e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.580908e+01 1.073801e+02 moveto +5.580908e+01 1.045801e+02 lineto +5.49904e+01 1.043729e+02 lineto +5.49904e+01 1.071729e+02 lineto +5.580908e+01 1.073801e+02 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +5.580908e+01 1.073801e+02 moveto +5.580908e+01 1.045801e+02 lineto +5.49904e+01 1.043729e+02 lineto +5.49904e+01 1.071729e+02 lineto +5.580908e+01 1.073801e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.580908e+01 1.101801e+02 moveto +5.580908e+01 1.073801e+02 lineto +5.49904e+01 1.071729e+02 lineto +5.49904e+01 1.099729e+02 lineto +5.580908e+01 1.101801e+02 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +5.580908e+01 1.101801e+02 moveto +5.580908e+01 1.073801e+02 lineto +5.49904e+01 1.071729e+02 lineto +5.49904e+01 1.099729e+02 lineto +5.580908e+01 1.101801e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.580908e+01 1.129801e+02 moveto +5.580908e+01 1.101801e+02 lineto +5.49904e+01 1.099729e+02 lineto +5.49904e+01 1.127729e+02 lineto +5.580908e+01 1.129801e+02 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +5.580908e+01 1.129801e+02 moveto +5.580908e+01 1.101801e+02 lineto +5.49904e+01 1.099729e+02 lineto +5.49904e+01 1.127729e+02 lineto +5.580908e+01 1.129801e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.580908e+01 1.157801e+02 moveto +5.580908e+01 1.129801e+02 lineto +5.49904e+01 1.127729e+02 lineto +5.49904e+01 1.155729e+02 lineto +5.580908e+01 1.157801e+02 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +5.580908e+01 1.157801e+02 moveto +5.580908e+01 1.129801e+02 lineto +5.49904e+01 1.127729e+02 lineto +5.49904e+01 1.155729e+02 lineto +5.580908e+01 1.157801e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.49904e+01 9.037294e+01 moveto +5.49904e+01 8.757294e+01 lineto +5.423343e+01 8.735357e+01 lineto +5.423343e+01 9.015357e+01 lineto +5.49904e+01 9.037294e+01 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +5.49904e+01 9.037294e+01 moveto +5.49904e+01 8.757294e+01 lineto +5.423343e+01 8.735357e+01 lineto +5.423343e+01 9.015357e+01 lineto +5.49904e+01 9.037294e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.49904e+01 9.317294e+01 moveto +5.49904e+01 9.037294e+01 lineto +5.423343e+01 9.015357e+01 lineto +5.423343e+01 9.295357e+01 lineto +5.49904e+01 9.317294e+01 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +5.49904e+01 9.317294e+01 moveto +5.49904e+01 9.037294e+01 lineto +5.423343e+01 9.015357e+01 lineto +5.423343e+01 9.295357e+01 lineto +5.49904e+01 9.317294e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.49904e+01 9.597294e+01 moveto +5.49904e+01 9.317294e+01 lineto +5.423343e+01 9.295357e+01 lineto +5.423343e+01 9.575357e+01 lineto +5.49904e+01 9.597294e+01 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +5.49904e+01 9.597294e+01 moveto +5.49904e+01 9.317294e+01 lineto +5.423343e+01 9.295357e+01 lineto +5.423343e+01 9.575357e+01 lineto +5.49904e+01 9.597294e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.49904e+01 9.877294e+01 moveto +5.49904e+01 9.597294e+01 lineto +5.423343e+01 9.575357e+01 lineto +5.423343e+01 9.855357e+01 lineto +5.49904e+01 9.877294e+01 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +5.49904e+01 9.877294e+01 moveto +5.49904e+01 9.597294e+01 lineto +5.423343e+01 9.575357e+01 lineto +5.423343e+01 9.855357e+01 lineto +5.49904e+01 9.877294e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.49904e+01 1.015729e+02 moveto +5.49904e+01 9.877294e+01 lineto +5.423343e+01 9.855357e+01 lineto +5.423343e+01 1.013536e+02 lineto +5.49904e+01 1.015729e+02 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +5.49904e+01 1.015729e+02 moveto +5.49904e+01 9.877294e+01 lineto +5.423343e+01 9.855357e+01 lineto +5.423343e+01 1.013536e+02 lineto +5.49904e+01 1.015729e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.49904e+01 1.043729e+02 moveto +5.49904e+01 1.015729e+02 lineto +5.423343e+01 1.013536e+02 lineto +5.423343e+01 1.041536e+02 lineto +5.49904e+01 1.043729e+02 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +5.49904e+01 1.043729e+02 moveto +5.49904e+01 1.015729e+02 lineto +5.423343e+01 1.013536e+02 lineto +5.423343e+01 1.041536e+02 lineto +5.49904e+01 1.043729e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.49904e+01 1.071729e+02 moveto +5.49904e+01 1.043729e+02 lineto +5.423343e+01 1.041536e+02 lineto +5.423343e+01 1.069536e+02 lineto +5.49904e+01 1.071729e+02 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +5.49904e+01 1.071729e+02 moveto +5.49904e+01 1.043729e+02 lineto +5.423343e+01 1.041536e+02 lineto +5.423343e+01 1.069536e+02 lineto +5.49904e+01 1.071729e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.49904e+01 1.099729e+02 moveto +5.49904e+01 1.071729e+02 lineto +5.423343e+01 1.069536e+02 lineto +5.423343e+01 1.097536e+02 lineto +5.49904e+01 1.099729e+02 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +5.49904e+01 1.099729e+02 moveto +5.49904e+01 1.071729e+02 lineto +5.423343e+01 1.069536e+02 lineto +5.423343e+01 1.097536e+02 lineto +5.49904e+01 1.099729e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.49904e+01 1.127729e+02 moveto +5.49904e+01 1.099729e+02 lineto +5.423343e+01 1.097536e+02 lineto +5.423343e+01 1.125536e+02 lineto +5.49904e+01 1.127729e+02 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +5.49904e+01 1.127729e+02 moveto +5.49904e+01 1.099729e+02 lineto +5.423343e+01 1.097536e+02 lineto +5.423343e+01 1.125536e+02 lineto +5.49904e+01 1.127729e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.49904e+01 1.155729e+02 moveto +5.49904e+01 1.127729e+02 lineto +5.423343e+01 1.125536e+02 lineto +5.423343e+01 1.153536e+02 lineto +5.49904e+01 1.155729e+02 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +5.49904e+01 1.155729e+02 moveto +5.49904e+01 1.127729e+02 lineto +5.423343e+01 1.125536e+02 lineto +5.423343e+01 1.153536e+02 lineto +5.49904e+01 1.155729e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.423343e+01 9.015357e+01 moveto +5.423343e+01 8.735357e+01 lineto +5.354285e+01 8.712339e+01 lineto +5.354285e+01 8.992339e+01 lineto +5.423343e+01 9.015357e+01 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +5.423343e+01 9.015357e+01 moveto +5.423343e+01 8.735357e+01 lineto +5.354285e+01 8.712339e+01 lineto +5.354285e+01 8.992339e+01 lineto +5.423343e+01 9.015357e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.423343e+01 9.295357e+01 moveto +5.423343e+01 9.015357e+01 lineto +5.354285e+01 8.992339e+01 lineto +5.354285e+01 9.272339e+01 lineto +5.423343e+01 9.295357e+01 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +5.423343e+01 9.295357e+01 moveto +5.423343e+01 9.015357e+01 lineto +5.354285e+01 8.992339e+01 lineto +5.354285e+01 9.272339e+01 lineto +5.423343e+01 9.295357e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.423343e+01 9.575357e+01 moveto +5.423343e+01 9.295357e+01 lineto +5.354285e+01 9.272339e+01 lineto +5.354285e+01 9.552339e+01 lineto +5.423343e+01 9.575357e+01 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +5.423343e+01 9.575357e+01 moveto +5.423343e+01 9.295357e+01 lineto +5.354285e+01 9.272339e+01 lineto +5.354285e+01 9.552339e+01 lineto +5.423343e+01 9.575357e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.423343e+01 9.855357e+01 moveto +5.423343e+01 9.575357e+01 lineto +5.354285e+01 9.552339e+01 lineto +5.354285e+01 9.832339e+01 lineto +5.423343e+01 9.855357e+01 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +5.423343e+01 9.855357e+01 moveto +5.423343e+01 9.575357e+01 lineto +5.354285e+01 9.552339e+01 lineto +5.354285e+01 9.832339e+01 lineto +5.423343e+01 9.855357e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.423343e+01 1.013536e+02 moveto +5.423343e+01 9.855357e+01 lineto +5.354285e+01 9.832339e+01 lineto +5.354285e+01 1.011234e+02 lineto +5.423343e+01 1.013536e+02 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +5.423343e+01 1.013536e+02 moveto +5.423343e+01 9.855357e+01 lineto +5.354285e+01 9.832339e+01 lineto +5.354285e+01 1.011234e+02 lineto +5.423343e+01 1.013536e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.423343e+01 1.041536e+02 moveto +5.423343e+01 1.013536e+02 lineto +5.354285e+01 1.011234e+02 lineto +5.354285e+01 1.039234e+02 lineto +5.423343e+01 1.041536e+02 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +5.423343e+01 1.041536e+02 moveto +5.423343e+01 1.013536e+02 lineto +5.354285e+01 1.011234e+02 lineto +5.354285e+01 1.039234e+02 lineto +5.423343e+01 1.041536e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.423343e+01 1.069536e+02 moveto +5.423343e+01 1.041536e+02 lineto +5.354285e+01 1.039234e+02 lineto +5.354285e+01 1.067234e+02 lineto +5.423343e+01 1.069536e+02 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +5.423343e+01 1.069536e+02 moveto +5.423343e+01 1.041536e+02 lineto +5.354285e+01 1.039234e+02 lineto +5.354285e+01 1.067234e+02 lineto +5.423343e+01 1.069536e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.423343e+01 1.097536e+02 moveto +5.423343e+01 1.069536e+02 lineto +5.354285e+01 1.067234e+02 lineto +5.354285e+01 1.095234e+02 lineto +5.423343e+01 1.097536e+02 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +5.423343e+01 1.097536e+02 moveto +5.423343e+01 1.069536e+02 lineto +5.354285e+01 1.067234e+02 lineto +5.354285e+01 1.095234e+02 lineto +5.423343e+01 1.097536e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.423343e+01 1.125536e+02 moveto +5.423343e+01 1.097536e+02 lineto +5.354285e+01 1.095234e+02 lineto +5.354285e+01 1.123234e+02 lineto +5.423343e+01 1.125536e+02 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +5.423343e+01 1.125536e+02 moveto +5.423343e+01 1.097536e+02 lineto +5.354285e+01 1.095234e+02 lineto +5.354285e+01 1.123234e+02 lineto +5.423343e+01 1.125536e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.423343e+01 1.153536e+02 moveto +5.423343e+01 1.125536e+02 lineto +5.354285e+01 1.123234e+02 lineto +5.354285e+01 1.151234e+02 lineto +5.423343e+01 1.153536e+02 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +5.423343e+01 1.153536e+02 moveto +5.423343e+01 1.125536e+02 lineto +5.354285e+01 1.123234e+02 lineto +5.354285e+01 1.151234e+02 lineto +5.423343e+01 1.153536e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.354285e+01 8.992339e+01 moveto +5.354285e+01 8.712339e+01 lineto +5.29229e+01 8.68838e+01 lineto +5.29229e+01 8.96838e+01 lineto +5.354285e+01 8.992339e+01 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +5.354285e+01 8.992339e+01 moveto +5.354285e+01 8.712339e+01 lineto +5.29229e+01 8.68838e+01 lineto +5.29229e+01 8.96838e+01 lineto +5.354285e+01 8.992339e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.354285e+01 9.272339e+01 moveto +5.354285e+01 8.992339e+01 lineto +5.29229e+01 8.96838e+01 lineto +5.29229e+01 9.24838e+01 lineto +5.354285e+01 9.272339e+01 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +5.354285e+01 9.272339e+01 moveto +5.354285e+01 8.992339e+01 lineto +5.29229e+01 8.96838e+01 lineto +5.29229e+01 9.24838e+01 lineto +5.354285e+01 9.272339e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.354285e+01 9.552339e+01 moveto +5.354285e+01 9.272339e+01 lineto +5.29229e+01 9.24838e+01 lineto +5.29229e+01 9.52838e+01 lineto +5.354285e+01 9.552339e+01 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +5.354285e+01 9.552339e+01 moveto +5.354285e+01 9.272339e+01 lineto +5.29229e+01 9.24838e+01 lineto +5.29229e+01 9.52838e+01 lineto +5.354285e+01 9.552339e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.354285e+01 9.832339e+01 moveto +5.354285e+01 9.552339e+01 lineto +5.29229e+01 9.52838e+01 lineto +5.29229e+01 9.80838e+01 lineto +5.354285e+01 9.832339e+01 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +5.354285e+01 9.832339e+01 moveto +5.354285e+01 9.552339e+01 lineto +5.29229e+01 9.52838e+01 lineto +5.29229e+01 9.80838e+01 lineto +5.354285e+01 9.832339e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.354285e+01 1.011234e+02 moveto +5.354285e+01 9.832339e+01 lineto +5.29229e+01 9.80838e+01 lineto +5.29229e+01 1.008838e+02 lineto +5.354285e+01 1.011234e+02 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +5.354285e+01 1.011234e+02 moveto +5.354285e+01 9.832339e+01 lineto +5.29229e+01 9.80838e+01 lineto +5.29229e+01 1.008838e+02 lineto +5.354285e+01 1.011234e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.354285e+01 1.039234e+02 moveto +5.354285e+01 1.011234e+02 lineto +5.29229e+01 1.008838e+02 lineto +5.29229e+01 1.036838e+02 lineto +5.354285e+01 1.039234e+02 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +5.354285e+01 1.039234e+02 moveto +5.354285e+01 1.011234e+02 lineto +5.29229e+01 1.008838e+02 lineto +5.29229e+01 1.036838e+02 lineto +5.354285e+01 1.039234e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.354285e+01 1.067234e+02 moveto +5.354285e+01 1.039234e+02 lineto +5.29229e+01 1.036838e+02 lineto +5.29229e+01 1.064838e+02 lineto +5.354285e+01 1.067234e+02 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +5.354285e+01 1.067234e+02 moveto +5.354285e+01 1.039234e+02 lineto +5.29229e+01 1.036838e+02 lineto +5.29229e+01 1.064838e+02 lineto +5.354285e+01 1.067234e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.354285e+01 1.095234e+02 moveto +5.354285e+01 1.067234e+02 lineto +5.29229e+01 1.064838e+02 lineto +5.29229e+01 1.092838e+02 lineto +5.354285e+01 1.095234e+02 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +5.354285e+01 1.095234e+02 moveto +5.354285e+01 1.067234e+02 lineto +5.29229e+01 1.064838e+02 lineto +5.29229e+01 1.092838e+02 lineto +5.354285e+01 1.095234e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.354285e+01 1.123234e+02 moveto +5.354285e+01 1.095234e+02 lineto +5.29229e+01 1.092838e+02 lineto +5.29229e+01 1.120838e+02 lineto +5.354285e+01 1.123234e+02 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +5.354285e+01 1.123234e+02 moveto +5.354285e+01 1.095234e+02 lineto +5.29229e+01 1.092838e+02 lineto +5.29229e+01 1.120838e+02 lineto +5.354285e+01 1.123234e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.354285e+01 1.151234e+02 moveto +5.354285e+01 1.123234e+02 lineto +5.29229e+01 1.120838e+02 lineto +5.29229e+01 1.148838e+02 lineto +5.354285e+01 1.151234e+02 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +5.354285e+01 1.151234e+02 moveto +5.354285e+01 1.123234e+02 lineto +5.29229e+01 1.120838e+02 lineto +5.29229e+01 1.148838e+02 lineto +5.354285e+01 1.151234e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.29229e+01 8.96838e+01 moveto +5.29229e+01 8.68838e+01 lineto +5.237741e+01 8.663628e+01 lineto +5.237741e+01 8.943628e+01 lineto +5.29229e+01 8.96838e+01 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +5.29229e+01 8.96838e+01 moveto +5.29229e+01 8.68838e+01 lineto +5.237741e+01 8.663628e+01 lineto +5.237741e+01 8.943628e+01 lineto +5.29229e+01 8.96838e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.29229e+01 9.24838e+01 moveto +5.29229e+01 8.96838e+01 lineto +5.237741e+01 8.943628e+01 lineto +5.237741e+01 9.223628e+01 lineto +5.29229e+01 9.24838e+01 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +5.29229e+01 9.24838e+01 moveto +5.29229e+01 8.96838e+01 lineto +5.237741e+01 8.943628e+01 lineto +5.237741e+01 9.223628e+01 lineto +5.29229e+01 9.24838e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.29229e+01 9.52838e+01 moveto +5.29229e+01 9.24838e+01 lineto +5.237741e+01 9.223628e+01 lineto +5.237741e+01 9.503628e+01 lineto +5.29229e+01 9.52838e+01 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +5.29229e+01 9.52838e+01 moveto +5.29229e+01 9.24838e+01 lineto +5.237741e+01 9.223628e+01 lineto +5.237741e+01 9.503628e+01 lineto +5.29229e+01 9.52838e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.29229e+01 9.80838e+01 moveto +5.29229e+01 9.52838e+01 lineto +5.237741e+01 9.503628e+01 lineto +5.237741e+01 9.783628e+01 lineto +5.29229e+01 9.80838e+01 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +5.29229e+01 9.80838e+01 moveto +5.29229e+01 9.52838e+01 lineto +5.237741e+01 9.503628e+01 lineto +5.237741e+01 9.783628e+01 lineto +5.29229e+01 9.80838e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.29229e+01 1.008838e+02 moveto +5.29229e+01 9.80838e+01 lineto +5.237741e+01 9.783628e+01 lineto +5.237741e+01 1.006363e+02 lineto +5.29229e+01 1.008838e+02 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +5.29229e+01 1.008838e+02 moveto +5.29229e+01 9.80838e+01 lineto +5.237741e+01 9.783628e+01 lineto +5.237741e+01 1.006363e+02 lineto +5.29229e+01 1.008838e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.29229e+01 1.036838e+02 moveto +5.29229e+01 1.008838e+02 lineto +5.237741e+01 1.006363e+02 lineto +5.237741e+01 1.034363e+02 lineto +5.29229e+01 1.036838e+02 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +5.29229e+01 1.036838e+02 moveto +5.29229e+01 1.008838e+02 lineto +5.237741e+01 1.006363e+02 lineto +5.237741e+01 1.034363e+02 lineto +5.29229e+01 1.036838e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.29229e+01 1.064838e+02 moveto +5.29229e+01 1.036838e+02 lineto +5.237741e+01 1.034363e+02 lineto +5.237741e+01 1.062363e+02 lineto +5.29229e+01 1.064838e+02 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +5.29229e+01 1.064838e+02 moveto +5.29229e+01 1.036838e+02 lineto +5.237741e+01 1.034363e+02 lineto +5.237741e+01 1.062363e+02 lineto +5.29229e+01 1.064838e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.29229e+01 1.092838e+02 moveto +5.29229e+01 1.064838e+02 lineto +5.237741e+01 1.062363e+02 lineto +5.237741e+01 1.090363e+02 lineto +5.29229e+01 1.092838e+02 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +5.29229e+01 1.092838e+02 moveto +5.29229e+01 1.064838e+02 lineto +5.237741e+01 1.062363e+02 lineto +5.237741e+01 1.090363e+02 lineto +5.29229e+01 1.092838e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.29229e+01 1.120838e+02 moveto +5.29229e+01 1.092838e+02 lineto +5.237741e+01 1.090363e+02 lineto +5.237741e+01 1.118363e+02 lineto +5.29229e+01 1.120838e+02 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +5.29229e+01 1.120838e+02 moveto +5.29229e+01 1.092838e+02 lineto +5.237741e+01 1.090363e+02 lineto +5.237741e+01 1.118363e+02 lineto +5.29229e+01 1.120838e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.29229e+01 1.148838e+02 moveto +5.29229e+01 1.120838e+02 lineto +5.237741e+01 1.118363e+02 lineto +5.237741e+01 1.146363e+02 lineto +5.29229e+01 1.148838e+02 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +5.29229e+01 1.148838e+02 moveto +5.29229e+01 1.120838e+02 lineto +5.237741e+01 1.118363e+02 lineto +5.237741e+01 1.146363e+02 lineto +5.29229e+01 1.148838e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.237741e+01 8.943628e+01 moveto +5.237741e+01 8.663628e+01 lineto +5.190974e+01 8.638236e+01 lineto +5.190974e+01 8.918236e+01 lineto +5.237741e+01 8.943628e+01 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +5.237741e+01 8.943628e+01 moveto +5.237741e+01 8.663628e+01 lineto +5.190974e+01 8.638236e+01 lineto +5.190974e+01 8.918236e+01 lineto +5.237741e+01 8.943628e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.237741e+01 9.223628e+01 moveto +5.237741e+01 8.943628e+01 lineto +5.190974e+01 8.918236e+01 lineto +5.190974e+01 9.198236e+01 lineto +5.237741e+01 9.223628e+01 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +5.237741e+01 9.223628e+01 moveto +5.237741e+01 8.943628e+01 lineto +5.190974e+01 8.918236e+01 lineto +5.190974e+01 9.198236e+01 lineto +5.237741e+01 9.223628e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.237741e+01 9.503628e+01 moveto +5.237741e+01 9.223628e+01 lineto +5.190974e+01 9.198236e+01 lineto +5.190974e+01 9.478236e+01 lineto +5.237741e+01 9.503628e+01 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +5.237741e+01 9.503628e+01 moveto +5.237741e+01 9.223628e+01 lineto +5.190974e+01 9.198236e+01 lineto +5.190974e+01 9.478236e+01 lineto +5.237741e+01 9.503628e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.237741e+01 9.783628e+01 moveto +5.237741e+01 9.503628e+01 lineto +5.190974e+01 9.478236e+01 lineto +5.190974e+01 9.758236e+01 lineto +5.237741e+01 9.783628e+01 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +5.237741e+01 9.783628e+01 moveto +5.237741e+01 9.503628e+01 lineto +5.190974e+01 9.478236e+01 lineto +5.190974e+01 9.758236e+01 lineto +5.237741e+01 9.783628e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.237741e+01 1.006363e+02 moveto +5.237741e+01 9.783628e+01 lineto +5.190974e+01 9.758236e+01 lineto +5.190974e+01 1.003824e+02 lineto +5.237741e+01 1.006363e+02 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +5.237741e+01 1.006363e+02 moveto +5.237741e+01 9.783628e+01 lineto +5.190974e+01 9.758236e+01 lineto +5.190974e+01 1.003824e+02 lineto +5.237741e+01 1.006363e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.237741e+01 1.034363e+02 moveto +5.237741e+01 1.006363e+02 lineto +5.190974e+01 1.003824e+02 lineto +5.190974e+01 1.031824e+02 lineto +5.237741e+01 1.034363e+02 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +5.237741e+01 1.034363e+02 moveto +5.237741e+01 1.006363e+02 lineto +5.190974e+01 1.003824e+02 lineto +5.190974e+01 1.031824e+02 lineto +5.237741e+01 1.034363e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.237741e+01 1.062363e+02 moveto +5.237741e+01 1.034363e+02 lineto +5.190974e+01 1.031824e+02 lineto +5.190974e+01 1.059824e+02 lineto +5.237741e+01 1.062363e+02 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +5.237741e+01 1.062363e+02 moveto +5.237741e+01 1.034363e+02 lineto +5.190974e+01 1.031824e+02 lineto +5.190974e+01 1.059824e+02 lineto +5.237741e+01 1.062363e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.237741e+01 1.090363e+02 moveto +5.237741e+01 1.062363e+02 lineto +5.190974e+01 1.059824e+02 lineto +5.190974e+01 1.087824e+02 lineto +5.237741e+01 1.090363e+02 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +5.237741e+01 1.090363e+02 moveto +5.237741e+01 1.062363e+02 lineto +5.190974e+01 1.059824e+02 lineto +5.190974e+01 1.087824e+02 lineto +5.237741e+01 1.090363e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.237741e+01 1.118363e+02 moveto +5.237741e+01 1.090363e+02 lineto +5.190974e+01 1.087824e+02 lineto +5.190974e+01 1.115824e+02 lineto +5.237741e+01 1.118363e+02 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +5.237741e+01 1.118363e+02 moveto +5.237741e+01 1.090363e+02 lineto +5.190974e+01 1.087824e+02 lineto +5.190974e+01 1.115824e+02 lineto +5.237741e+01 1.118363e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.237741e+01 1.146363e+02 moveto +5.237741e+01 1.118363e+02 lineto +5.190974e+01 1.115824e+02 lineto +5.190974e+01 1.143824e+02 lineto +5.237741e+01 1.146363e+02 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +5.237741e+01 1.146363e+02 moveto +5.237741e+01 1.118363e+02 lineto +5.190974e+01 1.115824e+02 lineto +5.190974e+01 1.143824e+02 lineto +5.237741e+01 1.146363e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.190974e+01 8.918236e+01 moveto +5.190974e+01 8.638236e+01 lineto +5.152278e+01 8.61236e+01 lineto +5.152278e+01 8.89236e+01 lineto +5.190974e+01 8.918236e+01 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +5.190974e+01 8.918236e+01 moveto +5.190974e+01 8.638236e+01 lineto +5.152278e+01 8.61236e+01 lineto +5.152278e+01 8.89236e+01 lineto +5.190974e+01 8.918236e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.190974e+01 9.198236e+01 moveto +5.190974e+01 8.918236e+01 lineto +5.152278e+01 8.89236e+01 lineto +5.152278e+01 9.17236e+01 lineto +5.190974e+01 9.198236e+01 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +5.190974e+01 9.198236e+01 moveto +5.190974e+01 8.918236e+01 lineto +5.152278e+01 8.89236e+01 lineto +5.152278e+01 9.17236e+01 lineto +5.190974e+01 9.198236e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.190974e+01 9.478236e+01 moveto +5.190974e+01 9.198236e+01 lineto +5.152278e+01 9.17236e+01 lineto +5.152278e+01 9.45236e+01 lineto +5.190974e+01 9.478236e+01 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +5.190974e+01 9.478236e+01 moveto +5.190974e+01 9.198236e+01 lineto +5.152278e+01 9.17236e+01 lineto +5.152278e+01 9.45236e+01 lineto +5.190974e+01 9.478236e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.190974e+01 9.758236e+01 moveto +5.190974e+01 9.478236e+01 lineto +5.152278e+01 9.45236e+01 lineto +5.152278e+01 9.73236e+01 lineto +5.190974e+01 9.758236e+01 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +5.190974e+01 9.758236e+01 moveto +5.190974e+01 9.478236e+01 lineto +5.152278e+01 9.45236e+01 lineto +5.152278e+01 9.73236e+01 lineto +5.190974e+01 9.758236e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.190974e+01 1.003824e+02 moveto +5.190974e+01 9.758236e+01 lineto +5.152278e+01 9.73236e+01 lineto +5.152278e+01 1.001236e+02 lineto +5.190974e+01 1.003824e+02 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +5.190974e+01 1.003824e+02 moveto +5.190974e+01 9.758236e+01 lineto +5.152278e+01 9.73236e+01 lineto +5.152278e+01 1.001236e+02 lineto +5.190974e+01 1.003824e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.190974e+01 1.031824e+02 moveto +5.190974e+01 1.003824e+02 lineto +5.152278e+01 1.001236e+02 lineto +5.152278e+01 1.029236e+02 lineto +5.190974e+01 1.031824e+02 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +5.190974e+01 1.031824e+02 moveto +5.190974e+01 1.003824e+02 lineto +5.152278e+01 1.001236e+02 lineto +5.152278e+01 1.029236e+02 lineto +5.190974e+01 1.031824e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.190974e+01 1.059824e+02 moveto +5.190974e+01 1.031824e+02 lineto +5.152278e+01 1.029236e+02 lineto +5.152278e+01 1.057236e+02 lineto +5.190974e+01 1.059824e+02 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +5.190974e+01 1.059824e+02 moveto +5.190974e+01 1.031824e+02 lineto +5.152278e+01 1.029236e+02 lineto +5.152278e+01 1.057236e+02 lineto +5.190974e+01 1.059824e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.190974e+01 1.087824e+02 moveto +5.190974e+01 1.059824e+02 lineto +5.152278e+01 1.057236e+02 lineto +5.152278e+01 1.085236e+02 lineto +5.190974e+01 1.087824e+02 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +5.190974e+01 1.087824e+02 moveto +5.190974e+01 1.059824e+02 lineto +5.152278e+01 1.057236e+02 lineto +5.152278e+01 1.085236e+02 lineto +5.190974e+01 1.087824e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.190974e+01 1.115824e+02 moveto +5.190974e+01 1.087824e+02 lineto +5.152278e+01 1.085236e+02 lineto +5.152278e+01 1.113236e+02 lineto +5.190974e+01 1.115824e+02 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +5.190974e+01 1.115824e+02 moveto +5.190974e+01 1.087824e+02 lineto +5.152278e+01 1.085236e+02 lineto +5.152278e+01 1.113236e+02 lineto +5.190974e+01 1.115824e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.190974e+01 1.143824e+02 moveto +5.190974e+01 1.115824e+02 lineto +5.152278e+01 1.113236e+02 lineto +5.152278e+01 1.141236e+02 lineto +5.190974e+01 1.143824e+02 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +5.190974e+01 1.143824e+02 moveto +5.190974e+01 1.115824e+02 lineto +5.152278e+01 1.113236e+02 lineto +5.152278e+01 1.141236e+02 lineto +5.190974e+01 1.143824e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.152278e+01 8.89236e+01 moveto +5.152278e+01 8.61236e+01 lineto +5.121891e+01 8.58616e+01 lineto +5.121891e+01 8.86616e+01 lineto +5.152278e+01 8.89236e+01 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +5.152278e+01 8.89236e+01 moveto +5.152278e+01 8.61236e+01 lineto +5.121891e+01 8.58616e+01 lineto +5.121891e+01 8.86616e+01 lineto +5.152278e+01 8.89236e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.152278e+01 9.17236e+01 moveto +5.152278e+01 8.89236e+01 lineto +5.121891e+01 8.86616e+01 lineto +5.121891e+01 9.14616e+01 lineto +5.152278e+01 9.17236e+01 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +5.152278e+01 9.17236e+01 moveto +5.152278e+01 8.89236e+01 lineto +5.121891e+01 8.86616e+01 lineto +5.121891e+01 9.14616e+01 lineto +5.152278e+01 9.17236e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.152278e+01 9.45236e+01 moveto +5.152278e+01 9.17236e+01 lineto +5.121891e+01 9.14616e+01 lineto +5.121891e+01 9.42616e+01 lineto +5.152278e+01 9.45236e+01 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +5.152278e+01 9.45236e+01 moveto +5.152278e+01 9.17236e+01 lineto +5.121891e+01 9.14616e+01 lineto +5.121891e+01 9.42616e+01 lineto +5.152278e+01 9.45236e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.152278e+01 9.73236e+01 moveto +5.152278e+01 9.45236e+01 lineto +5.121891e+01 9.42616e+01 lineto +5.121891e+01 9.70616e+01 lineto +5.152278e+01 9.73236e+01 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +5.152278e+01 9.73236e+01 moveto +5.152278e+01 9.45236e+01 lineto +5.121891e+01 9.42616e+01 lineto +5.121891e+01 9.70616e+01 lineto +5.152278e+01 9.73236e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.152278e+01 1.001236e+02 moveto +5.152278e+01 9.73236e+01 lineto +5.121891e+01 9.70616e+01 lineto +5.121891e+01 9.98616e+01 lineto +5.152278e+01 1.001236e+02 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +5.152278e+01 1.001236e+02 moveto +5.152278e+01 9.73236e+01 lineto +5.121891e+01 9.70616e+01 lineto +5.121891e+01 9.98616e+01 lineto +5.152278e+01 1.001236e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.152278e+01 1.029236e+02 moveto +5.152278e+01 1.001236e+02 lineto +5.121891e+01 9.98616e+01 lineto +5.121891e+01 1.026616e+02 lineto +5.152278e+01 1.029236e+02 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +5.152278e+01 1.029236e+02 moveto +5.152278e+01 1.001236e+02 lineto +5.121891e+01 9.98616e+01 lineto +5.121891e+01 1.026616e+02 lineto +5.152278e+01 1.029236e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.152278e+01 1.057236e+02 moveto +5.152278e+01 1.029236e+02 lineto +5.121891e+01 1.026616e+02 lineto +5.121891e+01 1.054616e+02 lineto +5.152278e+01 1.057236e+02 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +5.152278e+01 1.057236e+02 moveto +5.152278e+01 1.029236e+02 lineto +5.121891e+01 1.026616e+02 lineto +5.121891e+01 1.054616e+02 lineto +5.152278e+01 1.057236e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.152278e+01 1.085236e+02 moveto +5.152278e+01 1.057236e+02 lineto +5.121891e+01 1.054616e+02 lineto +5.121891e+01 1.082616e+02 lineto +5.152278e+01 1.085236e+02 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +5.152278e+01 1.085236e+02 moveto +5.152278e+01 1.057236e+02 lineto +5.121891e+01 1.054616e+02 lineto +5.121891e+01 1.082616e+02 lineto +5.152278e+01 1.085236e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.152278e+01 1.113236e+02 moveto +5.152278e+01 1.085236e+02 lineto +5.121891e+01 1.082616e+02 lineto +5.121891e+01 1.110616e+02 lineto +5.152278e+01 1.113236e+02 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +5.152278e+01 1.113236e+02 moveto +5.152278e+01 1.085236e+02 lineto +5.121891e+01 1.082616e+02 lineto +5.121891e+01 1.110616e+02 lineto +5.152278e+01 1.113236e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.152278e+01 1.141236e+02 moveto +5.152278e+01 1.113236e+02 lineto +5.121891e+01 1.110616e+02 lineto +5.121891e+01 1.138616e+02 lineto +5.152278e+01 1.141236e+02 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +5.152278e+01 1.141236e+02 moveto +5.152278e+01 1.113236e+02 lineto +5.121891e+01 1.110616e+02 lineto +5.121891e+01 1.138616e+02 lineto +5.152278e+01 1.141236e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.121891e+01 8.86616e+01 moveto +5.121891e+01 8.58616e+01 lineto +5.1e+01 8.559798e+01 lineto +5.1e+01 8.839798e+01 lineto +5.121891e+01 8.86616e+01 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +5.121891e+01 8.86616e+01 moveto +5.121891e+01 8.58616e+01 lineto +5.1e+01 8.559798e+01 lineto +5.1e+01 8.839798e+01 lineto +5.121891e+01 8.86616e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.121891e+01 9.14616e+01 moveto +5.121891e+01 8.86616e+01 lineto +5.1e+01 8.839798e+01 lineto +5.1e+01 9.119798e+01 lineto +5.121891e+01 9.14616e+01 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +5.121891e+01 9.14616e+01 moveto +5.121891e+01 8.86616e+01 lineto +5.1e+01 8.839798e+01 lineto +5.1e+01 9.119798e+01 lineto +5.121891e+01 9.14616e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.121891e+01 9.42616e+01 moveto +5.121891e+01 9.14616e+01 lineto +5.1e+01 9.119798e+01 lineto +5.1e+01 9.399798e+01 lineto +5.121891e+01 9.42616e+01 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +5.121891e+01 9.42616e+01 moveto +5.121891e+01 9.14616e+01 lineto +5.1e+01 9.119798e+01 lineto +5.1e+01 9.399798e+01 lineto +5.121891e+01 9.42616e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.121891e+01 9.70616e+01 moveto +5.121891e+01 9.42616e+01 lineto +5.1e+01 9.399798e+01 lineto +5.1e+01 9.679798e+01 lineto +5.121891e+01 9.70616e+01 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +5.121891e+01 9.70616e+01 moveto +5.121891e+01 9.42616e+01 lineto +5.1e+01 9.399798e+01 lineto +5.1e+01 9.679798e+01 lineto +5.121891e+01 9.70616e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.121891e+01 9.98616e+01 moveto +5.121891e+01 9.70616e+01 lineto +5.1e+01 9.679798e+01 lineto +5.1e+01 9.959798e+01 lineto +5.121891e+01 9.98616e+01 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +5.121891e+01 9.98616e+01 moveto +5.121891e+01 9.70616e+01 lineto +5.1e+01 9.679798e+01 lineto +5.1e+01 9.959798e+01 lineto +5.121891e+01 9.98616e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.121891e+01 1.026616e+02 moveto +5.121891e+01 9.98616e+01 lineto +5.1e+01 9.959798e+01 lineto +5.1e+01 1.02398e+02 lineto +5.121891e+01 1.026616e+02 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +5.121891e+01 1.026616e+02 moveto +5.121891e+01 9.98616e+01 lineto +5.1e+01 9.959798e+01 lineto +5.1e+01 1.02398e+02 lineto +5.121891e+01 1.026616e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.121891e+01 1.054616e+02 moveto +5.121891e+01 1.026616e+02 lineto +5.1e+01 1.02398e+02 lineto +5.1e+01 1.05198e+02 lineto +5.121891e+01 1.054616e+02 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +5.121891e+01 1.054616e+02 moveto +5.121891e+01 1.026616e+02 lineto +5.1e+01 1.02398e+02 lineto +5.1e+01 1.05198e+02 lineto +5.121891e+01 1.054616e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.121891e+01 1.082616e+02 moveto +5.121891e+01 1.054616e+02 lineto +5.1e+01 1.05198e+02 lineto +5.1e+01 1.07998e+02 lineto +5.121891e+01 1.082616e+02 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +5.121891e+01 1.082616e+02 moveto +5.121891e+01 1.054616e+02 lineto +5.1e+01 1.05198e+02 lineto +5.1e+01 1.07998e+02 lineto +5.121891e+01 1.082616e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.121891e+01 1.110616e+02 moveto +5.121891e+01 1.082616e+02 lineto +5.1e+01 1.07998e+02 lineto +5.1e+01 1.10798e+02 lineto +5.121891e+01 1.110616e+02 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +5.121891e+01 1.110616e+02 moveto +5.121891e+01 1.082616e+02 lineto +5.1e+01 1.07998e+02 lineto +5.1e+01 1.10798e+02 lineto +5.121891e+01 1.110616e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.121891e+01 1.138616e+02 moveto +5.121891e+01 1.110616e+02 lineto +5.1e+01 1.10798e+02 lineto +5.1e+01 1.13598e+02 lineto +5.121891e+01 1.138616e+02 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +5.121891e+01 1.138616e+02 moveto +5.121891e+01 1.110616e+02 lineto +5.1e+01 1.10798e+02 lineto +5.1e+01 1.13598e+02 lineto +5.121891e+01 1.138616e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.1e+01 8.839798e+01 moveto +5.1e+01 8.559798e+01 lineto +5.086741e+01 8.533436e+01 lineto +5.086741e+01 8.813436e+01 lineto +5.1e+01 8.839798e+01 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +5.1e+01 8.839798e+01 moveto +5.1e+01 8.559798e+01 lineto +5.086741e+01 8.533436e+01 lineto +5.086741e+01 8.813436e+01 lineto +5.1e+01 8.839798e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.1e+01 9.119798e+01 moveto +5.1e+01 8.839798e+01 lineto +5.086741e+01 8.813436e+01 lineto +5.086741e+01 9.093436e+01 lineto +5.1e+01 9.119798e+01 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +5.1e+01 9.119798e+01 moveto +5.1e+01 8.839798e+01 lineto +5.086741e+01 8.813436e+01 lineto +5.086741e+01 9.093436e+01 lineto +5.1e+01 9.119798e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.1e+01 9.399798e+01 moveto +5.1e+01 9.119798e+01 lineto +5.086741e+01 9.093436e+01 lineto +5.086741e+01 9.373436e+01 lineto +5.1e+01 9.399798e+01 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +5.1e+01 9.399798e+01 moveto +5.1e+01 9.119798e+01 lineto +5.086741e+01 9.093436e+01 lineto +5.086741e+01 9.373436e+01 lineto +5.1e+01 9.399798e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.1e+01 9.679798e+01 moveto +5.1e+01 9.399798e+01 lineto +5.086741e+01 9.373436e+01 lineto +5.086741e+01 9.653436e+01 lineto +5.1e+01 9.679798e+01 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +5.1e+01 9.679798e+01 moveto +5.1e+01 9.399798e+01 lineto +5.086741e+01 9.373436e+01 lineto +5.086741e+01 9.653436e+01 lineto +5.1e+01 9.679798e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.1e+01 9.959798e+01 moveto +5.1e+01 9.679798e+01 lineto +5.086741e+01 9.653436e+01 lineto +5.086741e+01 9.933436e+01 lineto +5.1e+01 9.959798e+01 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +5.1e+01 9.959798e+01 moveto +5.1e+01 9.679798e+01 lineto +5.086741e+01 9.653436e+01 lineto +5.086741e+01 9.933436e+01 lineto +5.1e+01 9.959798e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.1e+01 1.02398e+02 moveto +5.1e+01 9.959798e+01 lineto +5.086741e+01 9.933436e+01 lineto +5.086741e+01 1.021344e+02 lineto +5.1e+01 1.02398e+02 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +5.1e+01 1.02398e+02 moveto +5.1e+01 9.959798e+01 lineto +5.086741e+01 9.933436e+01 lineto +5.086741e+01 1.021344e+02 lineto +5.1e+01 1.02398e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.1e+01 1.05198e+02 moveto +5.1e+01 1.02398e+02 lineto +5.086741e+01 1.021344e+02 lineto +5.086741e+01 1.049344e+02 lineto +5.1e+01 1.05198e+02 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +5.1e+01 1.05198e+02 moveto +5.1e+01 1.02398e+02 lineto +5.086741e+01 1.021344e+02 lineto +5.086741e+01 1.049344e+02 lineto +5.1e+01 1.05198e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.1e+01 1.07998e+02 moveto +5.1e+01 1.05198e+02 lineto +5.086741e+01 1.049344e+02 lineto +5.086741e+01 1.077344e+02 lineto +5.1e+01 1.07998e+02 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +5.1e+01 1.07998e+02 moveto +5.1e+01 1.05198e+02 lineto +5.086741e+01 1.049344e+02 lineto +5.086741e+01 1.077344e+02 lineto +5.1e+01 1.07998e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.1e+01 1.10798e+02 moveto +5.1e+01 1.07998e+02 lineto +5.086741e+01 1.077344e+02 lineto +5.086741e+01 1.105344e+02 lineto +5.1e+01 1.10798e+02 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +5.1e+01 1.10798e+02 moveto +5.1e+01 1.07998e+02 lineto +5.086741e+01 1.077344e+02 lineto +5.086741e+01 1.105344e+02 lineto +5.1e+01 1.10798e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.1e+01 1.13598e+02 moveto +5.1e+01 1.10798e+02 lineto +5.086741e+01 1.105344e+02 lineto +5.086741e+01 1.133344e+02 lineto +5.1e+01 1.13598e+02 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +5.1e+01 1.13598e+02 moveto +5.1e+01 1.10798e+02 lineto +5.086741e+01 1.105344e+02 lineto +5.086741e+01 1.133344e+02 lineto +5.1e+01 1.13598e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.086741e+01 8.813436e+01 moveto +5.086741e+01 8.533436e+01 lineto +5.082195e+01 8.507236e+01 lineto +5.082195e+01 8.787236e+01 lineto +5.086741e+01 8.813436e+01 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +5.086741e+01 8.813436e+01 moveto +5.086741e+01 8.533436e+01 lineto +5.082195e+01 8.507236e+01 lineto +5.082195e+01 8.787236e+01 lineto +5.086741e+01 8.813436e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.086741e+01 9.093436e+01 moveto +5.086741e+01 8.813436e+01 lineto +5.082195e+01 8.787236e+01 lineto +5.082195e+01 9.067236e+01 lineto +5.086741e+01 9.093436e+01 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +5.086741e+01 9.093436e+01 moveto +5.086741e+01 8.813436e+01 lineto +5.082195e+01 8.787236e+01 lineto +5.082195e+01 9.067236e+01 lineto +5.086741e+01 9.093436e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.086741e+01 9.373436e+01 moveto +5.086741e+01 9.093436e+01 lineto +5.082195e+01 9.067236e+01 lineto +5.082195e+01 9.347236e+01 lineto +5.086741e+01 9.373436e+01 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +5.086741e+01 9.373436e+01 moveto +5.086741e+01 9.093436e+01 lineto +5.082195e+01 9.067236e+01 lineto +5.082195e+01 9.347236e+01 lineto +5.086741e+01 9.373436e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.086741e+01 9.653436e+01 moveto +5.086741e+01 9.373436e+01 lineto +5.082195e+01 9.347236e+01 lineto +5.082195e+01 9.627236e+01 lineto +5.086741e+01 9.653436e+01 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +5.086741e+01 9.653436e+01 moveto +5.086741e+01 9.373436e+01 lineto +5.082195e+01 9.347236e+01 lineto +5.082195e+01 9.627236e+01 lineto +5.086741e+01 9.653436e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.086741e+01 9.933436e+01 moveto +5.086741e+01 9.653436e+01 lineto +5.082195e+01 9.627236e+01 lineto +5.082195e+01 9.907236e+01 lineto +5.086741e+01 9.933436e+01 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +5.086741e+01 9.933436e+01 moveto +5.086741e+01 9.653436e+01 lineto +5.082195e+01 9.627236e+01 lineto +5.082195e+01 9.907236e+01 lineto +5.086741e+01 9.933436e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.086741e+01 1.021344e+02 moveto +5.086741e+01 9.933436e+01 lineto +5.082195e+01 9.907236e+01 lineto +5.082195e+01 1.018724e+02 lineto +5.086741e+01 1.021344e+02 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +5.086741e+01 1.021344e+02 moveto +5.086741e+01 9.933436e+01 lineto +5.082195e+01 9.907236e+01 lineto +5.082195e+01 1.018724e+02 lineto +5.086741e+01 1.021344e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.086741e+01 1.049344e+02 moveto +5.086741e+01 1.021344e+02 lineto +5.082195e+01 1.018724e+02 lineto +5.082195e+01 1.046724e+02 lineto +5.086741e+01 1.049344e+02 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +5.086741e+01 1.049344e+02 moveto +5.086741e+01 1.021344e+02 lineto +5.082195e+01 1.018724e+02 lineto +5.082195e+01 1.046724e+02 lineto +5.086741e+01 1.049344e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.086741e+01 1.077344e+02 moveto +5.086741e+01 1.049344e+02 lineto +5.082195e+01 1.046724e+02 lineto +5.082195e+01 1.074724e+02 lineto +5.086741e+01 1.077344e+02 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +5.086741e+01 1.077344e+02 moveto +5.086741e+01 1.049344e+02 lineto +5.082195e+01 1.046724e+02 lineto +5.082195e+01 1.074724e+02 lineto +5.086741e+01 1.077344e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.086741e+01 1.105344e+02 moveto +5.086741e+01 1.077344e+02 lineto +5.082195e+01 1.074724e+02 lineto +5.082195e+01 1.102724e+02 lineto +5.086741e+01 1.105344e+02 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +5.086741e+01 1.105344e+02 moveto +5.086741e+01 1.077344e+02 lineto +5.082195e+01 1.074724e+02 lineto +5.082195e+01 1.102724e+02 lineto +5.086741e+01 1.105344e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.086741e+01 1.133344e+02 moveto +5.086741e+01 1.105344e+02 lineto +5.082195e+01 1.102724e+02 lineto +5.082195e+01 1.130724e+02 lineto +5.086741e+01 1.133344e+02 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +5.086741e+01 1.133344e+02 moveto +5.086741e+01 1.105344e+02 lineto +5.082195e+01 1.102724e+02 lineto +5.082195e+01 1.130724e+02 lineto +5.086741e+01 1.133344e+02 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +1.0e-01 setlinewidth +newpath +6.276e+01 8.503798e+01 moveto +6.276e+01 8.223798e+01 lineto +6.386533e+01 8.224834e+01 lineto +6.386533e+01 8.504834e+01 lineto +6.276e+01 8.503798e+01 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +6.276e+01 8.783798e+01 moveto +6.276e+01 8.503798e+01 lineto +6.386533e+01 8.504834e+01 lineto +6.386533e+01 8.784834e+01 lineto +6.276e+01 8.783798e+01 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +6.276e+01 9.063798e+01 moveto +6.276e+01 8.783798e+01 lineto +6.386533e+01 8.784834e+01 lineto +6.386533e+01 9.064834e+01 lineto +6.276e+01 9.063798e+01 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +6.276e+01 9.343798e+01 moveto +6.276e+01 9.063798e+01 lineto +6.386533e+01 9.064834e+01 lineto +6.386533e+01 9.344834e+01 lineto +6.276e+01 9.343798e+01 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +6.276e+01 9.623798e+01 moveto +6.276e+01 9.343798e+01 lineto +6.386533e+01 9.344834e+01 lineto +6.386533e+01 9.624834e+01 lineto +6.276e+01 9.623798e+01 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +6.276e+01 9.903798e+01 moveto +6.276e+01 9.623798e+01 lineto +6.386533e+01 9.624834e+01 lineto +6.386533e+01 9.904834e+01 lineto +6.276e+01 9.903798e+01 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +6.276e+01 1.01838e+02 moveto +6.276e+01 9.903798e+01 lineto +6.386533e+01 9.904834e+01 lineto +6.386533e+01 1.018483e+02 lineto +6.276e+01 1.01838e+02 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +6.276e+01 1.04638e+02 moveto +6.276e+01 1.01838e+02 lineto +6.386533e+01 1.018483e+02 lineto +6.386533e+01 1.046483e+02 lineto +6.276e+01 1.04638e+02 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +6.276e+01 1.07438e+02 moveto +6.276e+01 1.04638e+02 lineto +6.386533e+01 1.046483e+02 lineto +6.386533e+01 1.074483e+02 lineto +6.276e+01 1.07438e+02 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +6.276e+01 1.10238e+02 moveto +6.276e+01 1.07438e+02 lineto +6.386533e+01 1.074483e+02 lineto +6.386533e+01 1.102483e+02 lineto +6.276e+01 1.10238e+02 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +6.386533e+01 8.504834e+01 moveto +6.386533e+01 8.224834e+01 lineto +6.497766e+01 8.227935e+01 lineto +6.497766e+01 8.507935e+01 lineto +6.386533e+01 8.504834e+01 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +6.386533e+01 8.784834e+01 moveto +6.386533e+01 8.504834e+01 lineto +6.497766e+01 8.507935e+01 lineto +6.497766e+01 8.787935e+01 lineto +6.386533e+01 8.784834e+01 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +6.386533e+01 9.064834e+01 moveto +6.386533e+01 8.784834e+01 lineto +6.497766e+01 8.787935e+01 lineto +6.497766e+01 9.067935e+01 lineto +6.386533e+01 9.064834e+01 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +6.386533e+01 9.344834e+01 moveto +6.386533e+01 9.064834e+01 lineto +6.497766e+01 9.067935e+01 lineto +6.497766e+01 9.347935e+01 lineto +6.386533e+01 9.344834e+01 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +6.386533e+01 9.624834e+01 moveto +6.386533e+01 9.344834e+01 lineto +6.497766e+01 9.347935e+01 lineto +6.497766e+01 9.627935e+01 lineto +6.386533e+01 9.624834e+01 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +6.386533e+01 9.904834e+01 moveto +6.386533e+01 9.624834e+01 lineto +6.497766e+01 9.627935e+01 lineto +6.497766e+01 9.907935e+01 lineto +6.386533e+01 9.904834e+01 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +6.386533e+01 1.018483e+02 moveto +6.386533e+01 9.904834e+01 lineto +6.497766e+01 9.907935e+01 lineto +6.497766e+01 1.018793e+02 lineto +6.386533e+01 1.018483e+02 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +6.386533e+01 1.046483e+02 moveto +6.386533e+01 1.018483e+02 lineto +6.497766e+01 1.018793e+02 lineto +6.497766e+01 1.046793e+02 lineto +6.386533e+01 1.046483e+02 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +6.386533e+01 1.074483e+02 moveto +6.386533e+01 1.046483e+02 lineto +6.497766e+01 1.046793e+02 lineto +6.497766e+01 1.074793e+02 lineto +6.386533e+01 1.074483e+02 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +6.386533e+01 1.102483e+02 moveto +6.386533e+01 1.074483e+02 lineto +6.497766e+01 1.074793e+02 lineto +6.497766e+01 1.102793e+02 lineto +6.386533e+01 1.102483e+02 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +6.497766e+01 8.507935e+01 moveto +6.497766e+01 8.227935e+01 lineto +6.609013e+01 8.233082e+01 lineto +6.609013e+01 8.513082e+01 lineto +6.497766e+01 8.507935e+01 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +6.497766e+01 8.787935e+01 moveto +6.497766e+01 8.507935e+01 lineto +6.609013e+01 8.513082e+01 lineto +6.609013e+01 8.793082e+01 lineto +6.497766e+01 8.787935e+01 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +6.497766e+01 9.067935e+01 moveto +6.497766e+01 8.787935e+01 lineto +6.609013e+01 8.793082e+01 lineto +6.609013e+01 9.073082e+01 lineto +6.497766e+01 9.067935e+01 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +6.497766e+01 9.347935e+01 moveto +6.497766e+01 9.067935e+01 lineto +6.609013e+01 9.073082e+01 lineto +6.609013e+01 9.353082e+01 lineto +6.497766e+01 9.347935e+01 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +6.497766e+01 9.627935e+01 moveto +6.497766e+01 9.347935e+01 lineto +6.609013e+01 9.353082e+01 lineto +6.609013e+01 9.633082e+01 lineto +6.497766e+01 9.627935e+01 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +6.497766e+01 9.907935e+01 moveto +6.497766e+01 9.627935e+01 lineto +6.609013e+01 9.633082e+01 lineto +6.609013e+01 9.913082e+01 lineto +6.497766e+01 9.907935e+01 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +6.497766e+01 1.018793e+02 moveto +6.497766e+01 9.907935e+01 lineto +6.609013e+01 9.913082e+01 lineto +6.609013e+01 1.019308e+02 lineto +6.497766e+01 1.018793e+02 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +6.497766e+01 1.046793e+02 moveto +6.497766e+01 1.018793e+02 lineto +6.609013e+01 1.019308e+02 lineto +6.609013e+01 1.047308e+02 lineto +6.497766e+01 1.046793e+02 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +6.497766e+01 1.074793e+02 moveto +6.497766e+01 1.046793e+02 lineto +6.609013e+01 1.047308e+02 lineto +6.609013e+01 1.075308e+02 lineto +6.497766e+01 1.074793e+02 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +6.497766e+01 1.102793e+02 moveto +6.497766e+01 1.074793e+02 lineto +6.609013e+01 1.075308e+02 lineto +6.609013e+01 1.103308e+02 lineto +6.497766e+01 1.102793e+02 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +6.609013e+01 8.513082e+01 moveto +6.609013e+01 8.233082e+01 lineto +6.719587e+01 8.240243e+01 lineto +6.719587e+01 8.520243e+01 lineto +6.609013e+01 8.513082e+01 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +6.609013e+01 8.793082e+01 moveto +6.609013e+01 8.513082e+01 lineto +6.719587e+01 8.520243e+01 lineto +6.719587e+01 8.800243e+01 lineto +6.609013e+01 8.793082e+01 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +6.609013e+01 9.073082e+01 moveto +6.609013e+01 8.793082e+01 lineto +6.719587e+01 8.800243e+01 lineto +6.719587e+01 9.080243e+01 lineto +6.609013e+01 9.073082e+01 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +6.609013e+01 9.353082e+01 moveto +6.609013e+01 9.073082e+01 lineto +6.719587e+01 9.080243e+01 lineto +6.719587e+01 9.360243e+01 lineto +6.609013e+01 9.353082e+01 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +6.609013e+01 9.633082e+01 moveto +6.609013e+01 9.353082e+01 lineto +6.719587e+01 9.360243e+01 lineto +6.719587e+01 9.640243e+01 lineto +6.609013e+01 9.633082e+01 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +6.609013e+01 9.913082e+01 moveto +6.609013e+01 9.633082e+01 lineto +6.719587e+01 9.640243e+01 lineto +6.719587e+01 9.920243e+01 lineto +6.609013e+01 9.913082e+01 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +6.609013e+01 1.019308e+02 moveto +6.609013e+01 9.913082e+01 lineto +6.719587e+01 9.920243e+01 lineto +6.719587e+01 1.020024e+02 lineto +6.609013e+01 1.019308e+02 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +6.609013e+01 1.047308e+02 moveto +6.609013e+01 1.019308e+02 lineto +6.719587e+01 1.020024e+02 lineto +6.719587e+01 1.048024e+02 lineto +6.609013e+01 1.047308e+02 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +6.609013e+01 1.075308e+02 moveto +6.609013e+01 1.047308e+02 lineto +6.719587e+01 1.048024e+02 lineto +6.719587e+01 1.076024e+02 lineto +6.609013e+01 1.075308e+02 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +6.609013e+01 1.103308e+02 moveto +6.609013e+01 1.075308e+02 lineto +6.719587e+01 1.076024e+02 lineto +6.719587e+01 1.104024e+02 lineto +6.609013e+01 1.103308e+02 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +6.719587e+01 8.520243e+01 moveto +6.719587e+01 8.240243e+01 lineto +6.828808e+01 8.249374e+01 lineto +6.828808e+01 8.529374e+01 lineto +6.719587e+01 8.520243e+01 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +6.719587e+01 8.800243e+01 moveto +6.719587e+01 8.520243e+01 lineto +6.828808e+01 8.529374e+01 lineto +6.828808e+01 8.809374e+01 lineto +6.719587e+01 8.800243e+01 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +6.719587e+01 9.080243e+01 moveto +6.719587e+01 8.800243e+01 lineto +6.828808e+01 8.809374e+01 lineto +6.828808e+01 9.089374e+01 lineto +6.719587e+01 9.080243e+01 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +6.719587e+01 9.360243e+01 moveto +6.719587e+01 9.080243e+01 lineto +6.828808e+01 9.089374e+01 lineto +6.828808e+01 9.369374e+01 lineto +6.719587e+01 9.360243e+01 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +6.719587e+01 9.640243e+01 moveto +6.719587e+01 9.360243e+01 lineto +6.828808e+01 9.369374e+01 lineto +6.828808e+01 9.649374e+01 lineto +6.719587e+01 9.640243e+01 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +6.719587e+01 9.920243e+01 moveto +6.719587e+01 9.640243e+01 lineto +6.828808e+01 9.649374e+01 lineto +6.828808e+01 9.929374e+01 lineto +6.719587e+01 9.920243e+01 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +6.719587e+01 1.020024e+02 moveto +6.719587e+01 9.920243e+01 lineto +6.828808e+01 9.929374e+01 lineto +6.828808e+01 1.020937e+02 lineto +6.719587e+01 1.020024e+02 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +6.719587e+01 1.048024e+02 moveto +6.719587e+01 1.020024e+02 lineto +6.828808e+01 1.020937e+02 lineto +6.828808e+01 1.048937e+02 lineto +6.719587e+01 1.048024e+02 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +6.719587e+01 1.076024e+02 moveto +6.719587e+01 1.048024e+02 lineto +6.828808e+01 1.048937e+02 lineto +6.828808e+01 1.076937e+02 lineto +6.719587e+01 1.076024e+02 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +6.719587e+01 1.104024e+02 moveto +6.719587e+01 1.076024e+02 lineto +6.828808e+01 1.076937e+02 lineto +6.828808e+01 1.104937e+02 lineto +6.719587e+01 1.104024e+02 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +6.828808e+01 8.529374e+01 moveto +6.828808e+01 8.249374e+01 lineto +6.936001e+01 8.26042e+01 lineto +6.936001e+01 8.54042e+01 lineto +6.828808e+01 8.529374e+01 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +6.828808e+01 8.809374e+01 moveto +6.828808e+01 8.529374e+01 lineto +6.936001e+01 8.54042e+01 lineto +6.936001e+01 8.82042e+01 lineto +6.828808e+01 8.809374e+01 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +6.828808e+01 9.089374e+01 moveto +6.828808e+01 8.809374e+01 lineto +6.936001e+01 8.82042e+01 lineto +6.936001e+01 9.10042e+01 lineto +6.828808e+01 9.089374e+01 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +6.828808e+01 9.369374e+01 moveto +6.828808e+01 9.089374e+01 lineto +6.936001e+01 9.10042e+01 lineto +6.936001e+01 9.38042e+01 lineto +6.828808e+01 9.369374e+01 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +6.828808e+01 9.649374e+01 moveto +6.828808e+01 9.369374e+01 lineto +6.936001e+01 9.38042e+01 lineto +6.936001e+01 9.66042e+01 lineto +6.828808e+01 9.649374e+01 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +6.828808e+01 9.929374e+01 moveto +6.828808e+01 9.649374e+01 lineto +6.936001e+01 9.66042e+01 lineto +6.936001e+01 9.94042e+01 lineto +6.828808e+01 9.929374e+01 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +6.828808e+01 1.020937e+02 moveto +6.828808e+01 9.929374e+01 lineto +6.936001e+01 9.94042e+01 lineto +6.936001e+01 1.022042e+02 lineto +6.828808e+01 1.020937e+02 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +6.828808e+01 1.048937e+02 moveto +6.828808e+01 1.020937e+02 lineto +6.936001e+01 1.022042e+02 lineto +6.936001e+01 1.050042e+02 lineto +6.828808e+01 1.048937e+02 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +6.828808e+01 1.076937e+02 moveto +6.828808e+01 1.048937e+02 lineto +6.936001e+01 1.050042e+02 lineto +6.936001e+01 1.078042e+02 lineto +6.828808e+01 1.076937e+02 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +6.828808e+01 1.104937e+02 moveto +6.828808e+01 1.076937e+02 lineto +6.936001e+01 1.078042e+02 lineto +6.936001e+01 1.106042e+02 lineto +6.828808e+01 1.104937e+02 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +6.936001e+01 8.54042e+01 moveto +6.936001e+01 8.26042e+01 lineto +7.040507e+01 8.273311e+01 lineto +7.040507e+01 8.553311e+01 lineto +6.936001e+01 8.54042e+01 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +6.936001e+01 8.82042e+01 moveto +6.936001e+01 8.54042e+01 lineto +7.040507e+01 8.553311e+01 lineto +7.040507e+01 8.833311e+01 lineto +6.936001e+01 8.82042e+01 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +6.936001e+01 9.10042e+01 moveto +6.936001e+01 8.82042e+01 lineto +7.040507e+01 8.833311e+01 lineto +7.040507e+01 9.113311e+01 lineto +6.936001e+01 9.10042e+01 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +6.936001e+01 9.38042e+01 moveto +6.936001e+01 9.10042e+01 lineto +7.040507e+01 9.113311e+01 lineto +7.040507e+01 9.393311e+01 lineto +6.936001e+01 9.38042e+01 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +6.936001e+01 9.66042e+01 moveto +6.936001e+01 9.38042e+01 lineto +7.040507e+01 9.393311e+01 lineto +7.040507e+01 9.673311e+01 lineto +6.936001e+01 9.66042e+01 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +6.936001e+01 9.94042e+01 moveto +6.936001e+01 9.66042e+01 lineto +7.040507e+01 9.673311e+01 lineto +7.040507e+01 9.953311e+01 lineto +6.936001e+01 9.94042e+01 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +6.936001e+01 1.022042e+02 moveto +6.936001e+01 9.94042e+01 lineto +7.040507e+01 9.953311e+01 lineto +7.040507e+01 1.023331e+02 lineto +6.936001e+01 1.022042e+02 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +6.936001e+01 1.050042e+02 moveto +6.936001e+01 1.022042e+02 lineto +7.040507e+01 1.023331e+02 lineto +7.040507e+01 1.051331e+02 lineto +6.936001e+01 1.050042e+02 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +6.936001e+01 1.078042e+02 moveto +6.936001e+01 1.050042e+02 lineto +7.040507e+01 1.051331e+02 lineto +7.040507e+01 1.079331e+02 lineto +6.936001e+01 1.078042e+02 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +6.936001e+01 1.106042e+02 moveto +6.936001e+01 1.078042e+02 lineto +7.040507e+01 1.079331e+02 lineto +7.040507e+01 1.107331e+02 lineto +6.936001e+01 1.106042e+02 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +7.040507e+01 8.553311e+01 moveto +7.040507e+01 8.273311e+01 lineto +7.14168e+01 8.287968e+01 lineto +7.14168e+01 8.567968e+01 lineto +7.040507e+01 8.553311e+01 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +7.040507e+01 8.833311e+01 moveto +7.040507e+01 8.553311e+01 lineto +7.14168e+01 8.567968e+01 lineto +7.14168e+01 8.847968e+01 lineto +7.040507e+01 8.833311e+01 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +7.040507e+01 9.113311e+01 moveto +7.040507e+01 8.833311e+01 lineto +7.14168e+01 8.847968e+01 lineto +7.14168e+01 9.127968e+01 lineto +7.040507e+01 9.113311e+01 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +7.040507e+01 9.393311e+01 moveto +7.040507e+01 9.113311e+01 lineto +7.14168e+01 9.127968e+01 lineto +7.14168e+01 9.407968e+01 lineto +7.040507e+01 9.393311e+01 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +7.040507e+01 9.673311e+01 moveto +7.040507e+01 9.393311e+01 lineto +7.14168e+01 9.407968e+01 lineto +7.14168e+01 9.687968e+01 lineto +7.040507e+01 9.673311e+01 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +7.040507e+01 9.953311e+01 moveto +7.040507e+01 9.673311e+01 lineto +7.14168e+01 9.687968e+01 lineto +7.14168e+01 9.967968e+01 lineto +7.040507e+01 9.953311e+01 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +7.040507e+01 1.023331e+02 moveto +7.040507e+01 9.953311e+01 lineto +7.14168e+01 9.967968e+01 lineto +7.14168e+01 1.024797e+02 lineto +7.040507e+01 1.023331e+02 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +7.040507e+01 1.051331e+02 moveto +7.040507e+01 1.023331e+02 lineto +7.14168e+01 1.024797e+02 lineto +7.14168e+01 1.052797e+02 lineto +7.040507e+01 1.051331e+02 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +7.040507e+01 1.079331e+02 moveto +7.040507e+01 1.051331e+02 lineto +7.14168e+01 1.052797e+02 lineto +7.14168e+01 1.080797e+02 lineto +7.040507e+01 1.079331e+02 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +7.040507e+01 1.107331e+02 moveto +7.040507e+01 1.079331e+02 lineto +7.14168e+01 1.080797e+02 lineto +7.14168e+01 1.108797e+02 lineto +7.040507e+01 1.107331e+02 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +7.14168e+01 8.567968e+01 moveto +7.14168e+01 8.287968e+01 lineto +7.238896e+01 8.304302e+01 lineto +7.238896e+01 8.584302e+01 lineto +7.14168e+01 8.567968e+01 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +7.14168e+01 8.847968e+01 moveto +7.14168e+01 8.567968e+01 lineto +7.238896e+01 8.584302e+01 lineto +7.238896e+01 8.864302e+01 lineto +7.14168e+01 8.847968e+01 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +7.14168e+01 9.127968e+01 moveto +7.14168e+01 8.847968e+01 lineto +7.238896e+01 8.864302e+01 lineto +7.238896e+01 9.144302e+01 lineto +7.14168e+01 9.127968e+01 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +7.14168e+01 9.407968e+01 moveto +7.14168e+01 9.127968e+01 lineto +7.238896e+01 9.144302e+01 lineto +7.238896e+01 9.424302e+01 lineto +7.14168e+01 9.407968e+01 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +7.14168e+01 9.687968e+01 moveto +7.14168e+01 9.407968e+01 lineto +7.238896e+01 9.424302e+01 lineto +7.238896e+01 9.704302e+01 lineto +7.14168e+01 9.687968e+01 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +7.14168e+01 9.967968e+01 moveto +7.14168e+01 9.687968e+01 lineto +7.238896e+01 9.704302e+01 lineto +7.238896e+01 9.984302e+01 lineto +7.14168e+01 9.967968e+01 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +7.14168e+01 1.024797e+02 moveto +7.14168e+01 9.967968e+01 lineto +7.238896e+01 9.984302e+01 lineto +7.238896e+01 1.02643e+02 lineto +7.14168e+01 1.024797e+02 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +7.14168e+01 1.052797e+02 moveto +7.14168e+01 1.024797e+02 lineto +7.238896e+01 1.02643e+02 lineto +7.238896e+01 1.05443e+02 lineto +7.14168e+01 1.052797e+02 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +7.14168e+01 1.080797e+02 moveto +7.14168e+01 1.052797e+02 lineto +7.238896e+01 1.05443e+02 lineto +7.238896e+01 1.08243e+02 lineto +7.14168e+01 1.080797e+02 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +7.14168e+01 1.108797e+02 moveto +7.14168e+01 1.080797e+02 lineto +7.238896e+01 1.08243e+02 lineto +7.238896e+01 1.11043e+02 lineto +7.14168e+01 1.108797e+02 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +7.238896e+01 8.584302e+01 moveto +7.238896e+01 8.304302e+01 lineto +7.331558e+01 8.32221e+01 lineto +7.331558e+01 8.60221e+01 lineto +7.238896e+01 8.584302e+01 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +7.238896e+01 8.864302e+01 moveto +7.238896e+01 8.584302e+01 lineto +7.331558e+01 8.60221e+01 lineto +7.331558e+01 8.88221e+01 lineto +7.238896e+01 8.864302e+01 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +7.238896e+01 9.144302e+01 moveto +7.238896e+01 8.864302e+01 lineto +7.331558e+01 8.88221e+01 lineto +7.331558e+01 9.16221e+01 lineto +7.238896e+01 9.144302e+01 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +7.238896e+01 9.424302e+01 moveto +7.238896e+01 9.144302e+01 lineto +7.331558e+01 9.16221e+01 lineto +7.331558e+01 9.44221e+01 lineto +7.238896e+01 9.424302e+01 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +7.238896e+01 9.704302e+01 moveto +7.238896e+01 9.424302e+01 lineto +7.331558e+01 9.44221e+01 lineto +7.331558e+01 9.72221e+01 lineto +7.238896e+01 9.704302e+01 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +7.238896e+01 9.984302e+01 moveto +7.238896e+01 9.704302e+01 lineto +7.331558e+01 9.72221e+01 lineto +7.331558e+01 1.000221e+02 lineto +7.238896e+01 9.984302e+01 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +7.238896e+01 1.02643e+02 moveto +7.238896e+01 9.984302e+01 lineto +7.331558e+01 1.000221e+02 lineto +7.331558e+01 1.028221e+02 lineto +7.238896e+01 1.02643e+02 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +7.238896e+01 1.05443e+02 moveto +7.238896e+01 1.02643e+02 lineto +7.331558e+01 1.028221e+02 lineto +7.331558e+01 1.056221e+02 lineto +7.238896e+01 1.05443e+02 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +7.238896e+01 1.08243e+02 moveto +7.238896e+01 1.05443e+02 lineto +7.331558e+01 1.056221e+02 lineto +7.331558e+01 1.084221e+02 lineto +7.238896e+01 1.08243e+02 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +7.238896e+01 1.11043e+02 moveto +7.238896e+01 1.08243e+02 lineto +7.331558e+01 1.084221e+02 lineto +7.331558e+01 1.112221e+02 lineto +7.238896e+01 1.11043e+02 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +7.331558e+01 8.60221e+01 moveto +7.331558e+01 8.32221e+01 lineto +7.419092e+01 8.341583e+01 lineto +7.419092e+01 8.621583e+01 lineto +7.331558e+01 8.60221e+01 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +7.331558e+01 8.88221e+01 moveto +7.331558e+01 8.60221e+01 lineto +7.419092e+01 8.621583e+01 lineto +7.419092e+01 8.901583e+01 lineto +7.331558e+01 8.88221e+01 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +7.331558e+01 9.16221e+01 moveto +7.331558e+01 8.88221e+01 lineto +7.419092e+01 8.901583e+01 lineto +7.419092e+01 9.181583e+01 lineto +7.331558e+01 9.16221e+01 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +7.331558e+01 9.44221e+01 moveto +7.331558e+01 9.16221e+01 lineto +7.419092e+01 9.181583e+01 lineto +7.419092e+01 9.461583e+01 lineto +7.331558e+01 9.44221e+01 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +7.331558e+01 9.72221e+01 moveto +7.331558e+01 9.44221e+01 lineto +7.419092e+01 9.461583e+01 lineto +7.419092e+01 9.741583e+01 lineto +7.331558e+01 9.72221e+01 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +7.331558e+01 1.000221e+02 moveto +7.331558e+01 9.72221e+01 lineto +7.419092e+01 9.741583e+01 lineto +7.419092e+01 1.002158e+02 lineto +7.331558e+01 1.000221e+02 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +7.331558e+01 1.028221e+02 moveto +7.331558e+01 1.000221e+02 lineto +7.419092e+01 1.002158e+02 lineto +7.419092e+01 1.030158e+02 lineto +7.331558e+01 1.028221e+02 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +7.331558e+01 1.056221e+02 moveto +7.331558e+01 1.028221e+02 lineto +7.419092e+01 1.030158e+02 lineto +7.419092e+01 1.058158e+02 lineto +7.331558e+01 1.056221e+02 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +7.331558e+01 1.084221e+02 moveto +7.331558e+01 1.056221e+02 lineto +7.419092e+01 1.058158e+02 lineto +7.419092e+01 1.086158e+02 lineto +7.331558e+01 1.084221e+02 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +7.331558e+01 1.112221e+02 moveto +7.331558e+01 1.084221e+02 lineto +7.419092e+01 1.086158e+02 lineto +7.419092e+01 1.114158e+02 lineto +7.331558e+01 1.112221e+02 lineto +closepath +gsave +7.773468e-01 7.773468e-01 7.773468e-01 setrgbcolor +fill +grestore +newpath +7.419092e+01 8.621583e+01 moveto +7.419092e+01 8.341583e+01 lineto +7.50096e+01 8.362302e+01 lineto +7.50096e+01 8.642302e+01 lineto +7.419092e+01 8.621583e+01 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +7.419092e+01 8.901583e+01 moveto +7.419092e+01 8.621583e+01 lineto +7.50096e+01 8.642302e+01 lineto +7.50096e+01 8.922302e+01 lineto +7.419092e+01 8.901583e+01 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +7.419092e+01 9.181583e+01 moveto +7.419092e+01 8.901583e+01 lineto +7.50096e+01 8.922302e+01 lineto +7.50096e+01 9.202302e+01 lineto +7.419092e+01 9.181583e+01 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +7.419092e+01 9.461583e+01 moveto +7.419092e+01 9.181583e+01 lineto +7.50096e+01 9.202302e+01 lineto +7.50096e+01 9.482302e+01 lineto +7.419092e+01 9.461583e+01 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +7.419092e+01 9.741583e+01 moveto +7.419092e+01 9.461583e+01 lineto +7.50096e+01 9.482302e+01 lineto +7.50096e+01 9.762302e+01 lineto +7.419092e+01 9.741583e+01 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +7.419092e+01 1.002158e+02 moveto +7.419092e+01 9.741583e+01 lineto +7.50096e+01 9.762302e+01 lineto +7.50096e+01 1.00423e+02 lineto +7.419092e+01 1.002158e+02 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +7.419092e+01 1.030158e+02 moveto +7.419092e+01 1.002158e+02 lineto +7.50096e+01 1.00423e+02 lineto +7.50096e+01 1.03223e+02 lineto +7.419092e+01 1.030158e+02 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +7.419092e+01 1.058158e+02 moveto +7.419092e+01 1.030158e+02 lineto +7.50096e+01 1.03223e+02 lineto +7.50096e+01 1.06023e+02 lineto +7.419092e+01 1.058158e+02 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +7.419092e+01 1.086158e+02 moveto +7.419092e+01 1.058158e+02 lineto +7.50096e+01 1.06023e+02 lineto +7.50096e+01 1.08823e+02 lineto +7.419092e+01 1.086158e+02 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +7.419092e+01 1.114158e+02 moveto +7.419092e+01 1.086158e+02 lineto +7.50096e+01 1.08823e+02 lineto +7.50096e+01 1.11623e+02 lineto +7.419092e+01 1.114158e+02 lineto +closepath +gsave +7.739359e-01 7.739359e-01 7.739359e-01 setrgbcolor +fill +grestore +newpath +7.50096e+01 8.642302e+01 moveto +7.50096e+01 8.362302e+01 lineto +7.576657e+01 8.384238e+01 lineto +7.576657e+01 8.664238e+01 lineto +7.50096e+01 8.642302e+01 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +7.50096e+01 8.922302e+01 moveto +7.50096e+01 8.642302e+01 lineto +7.576657e+01 8.664238e+01 lineto +7.576657e+01 8.944238e+01 lineto +7.50096e+01 8.922302e+01 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +7.50096e+01 9.202302e+01 moveto +7.50096e+01 8.922302e+01 lineto +7.576657e+01 8.944238e+01 lineto +7.576657e+01 9.224238e+01 lineto +7.50096e+01 9.202302e+01 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +7.50096e+01 9.482302e+01 moveto +7.50096e+01 9.202302e+01 lineto +7.576657e+01 9.224238e+01 lineto +7.576657e+01 9.504238e+01 lineto +7.50096e+01 9.482302e+01 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +7.50096e+01 9.762302e+01 moveto +7.50096e+01 9.482302e+01 lineto +7.576657e+01 9.504238e+01 lineto +7.576657e+01 9.784238e+01 lineto +7.50096e+01 9.762302e+01 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +7.50096e+01 1.00423e+02 moveto +7.50096e+01 9.762302e+01 lineto +7.576657e+01 9.784238e+01 lineto +7.576657e+01 1.006424e+02 lineto +7.50096e+01 1.00423e+02 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +7.50096e+01 1.03223e+02 moveto +7.50096e+01 1.00423e+02 lineto +7.576657e+01 1.006424e+02 lineto +7.576657e+01 1.034424e+02 lineto +7.50096e+01 1.03223e+02 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +7.50096e+01 1.06023e+02 moveto +7.50096e+01 1.03223e+02 lineto +7.576657e+01 1.034424e+02 lineto +7.576657e+01 1.062424e+02 lineto +7.50096e+01 1.06023e+02 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +7.50096e+01 1.08823e+02 moveto +7.50096e+01 1.06023e+02 lineto +7.576657e+01 1.062424e+02 lineto +7.576657e+01 1.090424e+02 lineto +7.50096e+01 1.08823e+02 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +7.50096e+01 1.11623e+02 moveto +7.50096e+01 1.08823e+02 lineto +7.576657e+01 1.090424e+02 lineto +7.576657e+01 1.118424e+02 lineto +7.50096e+01 1.11623e+02 lineto +closepath +gsave +7.671966e-01 7.671966e-01 7.671966e-01 setrgbcolor +fill +grestore +newpath +7.576657e+01 8.664238e+01 moveto +7.576657e+01 8.384238e+01 lineto +7.645715e+01 8.407257e+01 lineto +7.645715e+01 8.687257e+01 lineto +7.576657e+01 8.664238e+01 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +7.576657e+01 8.944238e+01 moveto +7.576657e+01 8.664238e+01 lineto +7.645715e+01 8.687257e+01 lineto +7.645715e+01 8.967257e+01 lineto +7.576657e+01 8.944238e+01 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +7.576657e+01 9.224238e+01 moveto +7.576657e+01 8.944238e+01 lineto +7.645715e+01 8.967257e+01 lineto +7.645715e+01 9.247257e+01 lineto +7.576657e+01 9.224238e+01 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +7.576657e+01 9.504238e+01 moveto +7.576657e+01 9.224238e+01 lineto +7.645715e+01 9.247257e+01 lineto +7.645715e+01 9.527257e+01 lineto +7.576657e+01 9.504238e+01 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +7.576657e+01 9.784238e+01 moveto +7.576657e+01 9.504238e+01 lineto +7.645715e+01 9.527257e+01 lineto +7.645715e+01 9.807257e+01 lineto +7.576657e+01 9.784238e+01 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +7.576657e+01 1.006424e+02 moveto +7.576657e+01 9.784238e+01 lineto +7.645715e+01 9.807257e+01 lineto +7.645715e+01 1.008726e+02 lineto +7.576657e+01 1.006424e+02 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +7.576657e+01 1.034424e+02 moveto +7.576657e+01 1.006424e+02 lineto +7.645715e+01 1.008726e+02 lineto +7.645715e+01 1.036726e+02 lineto +7.576657e+01 1.034424e+02 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +7.576657e+01 1.062424e+02 moveto +7.576657e+01 1.034424e+02 lineto +7.645715e+01 1.036726e+02 lineto +7.645715e+01 1.064726e+02 lineto +7.576657e+01 1.062424e+02 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +7.576657e+01 1.090424e+02 moveto +7.576657e+01 1.062424e+02 lineto +7.645715e+01 1.064726e+02 lineto +7.645715e+01 1.092726e+02 lineto +7.576657e+01 1.090424e+02 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +7.576657e+01 1.118424e+02 moveto +7.576657e+01 1.090424e+02 lineto +7.645715e+01 1.092726e+02 lineto +7.645715e+01 1.120726e+02 lineto +7.576657e+01 1.118424e+02 lineto +closepath +gsave +7.57291e-01 7.57291e-01 7.57291e-01 setrgbcolor +fill +grestore +newpath +7.645715e+01 8.687257e+01 moveto +7.645715e+01 8.407257e+01 lineto +7.70771e+01 8.431216e+01 lineto +7.70771e+01 8.711216e+01 lineto +7.645715e+01 8.687257e+01 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +7.645715e+01 8.967257e+01 moveto +7.645715e+01 8.687257e+01 lineto +7.70771e+01 8.711216e+01 lineto +7.70771e+01 8.991216e+01 lineto +7.645715e+01 8.967257e+01 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +7.645715e+01 9.247257e+01 moveto +7.645715e+01 8.967257e+01 lineto +7.70771e+01 8.991216e+01 lineto +7.70771e+01 9.271216e+01 lineto +7.645715e+01 9.247257e+01 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +7.645715e+01 9.527257e+01 moveto +7.645715e+01 9.247257e+01 lineto +7.70771e+01 9.271216e+01 lineto +7.70771e+01 9.551216e+01 lineto +7.645715e+01 9.527257e+01 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +7.645715e+01 9.807257e+01 moveto +7.645715e+01 9.527257e+01 lineto +7.70771e+01 9.551216e+01 lineto +7.70771e+01 9.831216e+01 lineto +7.645715e+01 9.807257e+01 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +7.645715e+01 1.008726e+02 moveto +7.645715e+01 9.807257e+01 lineto +7.70771e+01 9.831216e+01 lineto +7.70771e+01 1.011122e+02 lineto +7.645715e+01 1.008726e+02 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +7.645715e+01 1.036726e+02 moveto +7.645715e+01 1.008726e+02 lineto +7.70771e+01 1.011122e+02 lineto +7.70771e+01 1.039122e+02 lineto +7.645715e+01 1.036726e+02 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +7.645715e+01 1.064726e+02 moveto +7.645715e+01 1.036726e+02 lineto +7.70771e+01 1.039122e+02 lineto +7.70771e+01 1.067122e+02 lineto +7.645715e+01 1.064726e+02 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +7.645715e+01 1.092726e+02 moveto +7.645715e+01 1.064726e+02 lineto +7.70771e+01 1.067122e+02 lineto +7.70771e+01 1.095122e+02 lineto +7.645715e+01 1.092726e+02 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +7.645715e+01 1.120726e+02 moveto +7.645715e+01 1.092726e+02 lineto +7.70771e+01 1.095122e+02 lineto +7.70771e+01 1.123122e+02 lineto +7.645715e+01 1.120726e+02 lineto +closepath +gsave +7.444549e-01 7.444549e-01 7.444549e-01 setrgbcolor +fill +grestore +newpath +7.70771e+01 8.711216e+01 moveto +7.70771e+01 8.431216e+01 lineto +7.762259e+01 8.455968e+01 lineto +7.762259e+01 8.735968e+01 lineto +7.70771e+01 8.711216e+01 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +7.70771e+01 8.991216e+01 moveto +7.70771e+01 8.711216e+01 lineto +7.762259e+01 8.735968e+01 lineto +7.762259e+01 9.015968e+01 lineto +7.70771e+01 8.991216e+01 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +7.70771e+01 9.271216e+01 moveto +7.70771e+01 8.991216e+01 lineto +7.762259e+01 9.015968e+01 lineto +7.762259e+01 9.295968e+01 lineto +7.70771e+01 9.271216e+01 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +7.70771e+01 9.551216e+01 moveto +7.70771e+01 9.271216e+01 lineto +7.762259e+01 9.295968e+01 lineto +7.762259e+01 9.575968e+01 lineto +7.70771e+01 9.551216e+01 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +7.70771e+01 9.831216e+01 moveto +7.70771e+01 9.551216e+01 lineto +7.762259e+01 9.575968e+01 lineto +7.762259e+01 9.855968e+01 lineto +7.70771e+01 9.831216e+01 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +7.70771e+01 1.011122e+02 moveto +7.70771e+01 9.831216e+01 lineto +7.762259e+01 9.855968e+01 lineto +7.762259e+01 1.013597e+02 lineto +7.70771e+01 1.011122e+02 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +7.70771e+01 1.039122e+02 moveto +7.70771e+01 1.011122e+02 lineto +7.762259e+01 1.013597e+02 lineto +7.762259e+01 1.041597e+02 lineto +7.70771e+01 1.039122e+02 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +7.70771e+01 1.067122e+02 moveto +7.70771e+01 1.039122e+02 lineto +7.762259e+01 1.041597e+02 lineto +7.762259e+01 1.069597e+02 lineto +7.70771e+01 1.067122e+02 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +7.70771e+01 1.095122e+02 moveto +7.70771e+01 1.067122e+02 lineto +7.762259e+01 1.069597e+02 lineto +7.762259e+01 1.097597e+02 lineto +7.70771e+01 1.095122e+02 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +7.70771e+01 1.123122e+02 moveto +7.70771e+01 1.095122e+02 lineto +7.762259e+01 1.097597e+02 lineto +7.762259e+01 1.125597e+02 lineto +7.70771e+01 1.123122e+02 lineto +closepath +gsave +7.289897e-01 7.289897e-01 7.289897e-01 setrgbcolor +fill +grestore +newpath +7.762259e+01 8.735968e+01 moveto +7.762259e+01 8.455968e+01 lineto +7.809026e+01 8.48136e+01 lineto +7.809026e+01 8.76136e+01 lineto +7.762259e+01 8.735968e+01 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +7.762259e+01 9.015968e+01 moveto +7.762259e+01 8.735968e+01 lineto +7.809026e+01 8.76136e+01 lineto +7.809026e+01 9.04136e+01 lineto +7.762259e+01 9.015968e+01 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +7.762259e+01 9.295968e+01 moveto +7.762259e+01 9.015968e+01 lineto +7.809026e+01 9.04136e+01 lineto +7.809026e+01 9.32136e+01 lineto +7.762259e+01 9.295968e+01 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +7.762259e+01 9.575968e+01 moveto +7.762259e+01 9.295968e+01 lineto +7.809026e+01 9.32136e+01 lineto +7.809026e+01 9.60136e+01 lineto +7.762259e+01 9.575968e+01 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +7.762259e+01 9.855968e+01 moveto +7.762259e+01 9.575968e+01 lineto +7.809026e+01 9.60136e+01 lineto +7.809026e+01 9.88136e+01 lineto +7.762259e+01 9.855968e+01 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +7.762259e+01 1.013597e+02 moveto +7.762259e+01 9.855968e+01 lineto +7.809026e+01 9.88136e+01 lineto +7.809026e+01 1.016136e+02 lineto +7.762259e+01 1.013597e+02 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +7.762259e+01 1.041597e+02 moveto +7.762259e+01 1.013597e+02 lineto +7.809026e+01 1.016136e+02 lineto +7.809026e+01 1.044136e+02 lineto +7.762259e+01 1.041597e+02 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +7.762259e+01 1.069597e+02 moveto +7.762259e+01 1.041597e+02 lineto +7.809026e+01 1.044136e+02 lineto +7.809026e+01 1.072136e+02 lineto +7.762259e+01 1.069597e+02 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +7.762259e+01 1.097597e+02 moveto +7.762259e+01 1.069597e+02 lineto +7.809026e+01 1.072136e+02 lineto +7.809026e+01 1.100136e+02 lineto +7.762259e+01 1.097597e+02 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +7.762259e+01 1.125597e+02 moveto +7.762259e+01 1.097597e+02 lineto +7.809026e+01 1.100136e+02 lineto +7.809026e+01 1.128136e+02 lineto +7.762259e+01 1.125597e+02 lineto +closepath +gsave +7.112516e-01 7.112516e-01 7.112516e-01 setrgbcolor +fill +grestore +newpath +7.809026e+01 8.76136e+01 moveto +7.809026e+01 8.48136e+01 lineto +7.847722e+01 8.507236e+01 lineto +7.847722e+01 8.787236e+01 lineto +7.809026e+01 8.76136e+01 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +7.809026e+01 9.04136e+01 moveto +7.809026e+01 8.76136e+01 lineto +7.847722e+01 8.787236e+01 lineto +7.847722e+01 9.067236e+01 lineto +7.809026e+01 9.04136e+01 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +7.809026e+01 9.32136e+01 moveto +7.809026e+01 9.04136e+01 lineto +7.847722e+01 9.067236e+01 lineto +7.847722e+01 9.347236e+01 lineto +7.809026e+01 9.32136e+01 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +7.809026e+01 9.60136e+01 moveto +7.809026e+01 9.32136e+01 lineto +7.847722e+01 9.347236e+01 lineto +7.847722e+01 9.627236e+01 lineto +7.809026e+01 9.60136e+01 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +7.809026e+01 9.88136e+01 moveto +7.809026e+01 9.60136e+01 lineto +7.847722e+01 9.627236e+01 lineto +7.847722e+01 9.907236e+01 lineto +7.809026e+01 9.88136e+01 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +7.809026e+01 1.016136e+02 moveto +7.809026e+01 9.88136e+01 lineto +7.847722e+01 9.907236e+01 lineto +7.847722e+01 1.018724e+02 lineto +7.809026e+01 1.016136e+02 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +7.809026e+01 1.044136e+02 moveto +7.809026e+01 1.016136e+02 lineto +7.847722e+01 1.018724e+02 lineto +7.847722e+01 1.046724e+02 lineto +7.809026e+01 1.044136e+02 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +7.809026e+01 1.072136e+02 moveto +7.809026e+01 1.044136e+02 lineto +7.847722e+01 1.046724e+02 lineto +7.847722e+01 1.074724e+02 lineto +7.809026e+01 1.072136e+02 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +7.809026e+01 1.100136e+02 moveto +7.809026e+01 1.072136e+02 lineto +7.847722e+01 1.074724e+02 lineto +7.847722e+01 1.102724e+02 lineto +7.809026e+01 1.100136e+02 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +7.809026e+01 1.128136e+02 moveto +7.809026e+01 1.100136e+02 lineto +7.847722e+01 1.102724e+02 lineto +7.847722e+01 1.130724e+02 lineto +7.809026e+01 1.128136e+02 lineto +closepath +gsave +6.916399e-01 6.916399e-01 6.916399e-01 setrgbcolor +fill +grestore +newpath +7.847722e+01 8.787236e+01 moveto +7.847722e+01 8.507236e+01 lineto +7.878109e+01 8.533436e+01 lineto +7.878109e+01 8.813436e+01 lineto +7.847722e+01 8.787236e+01 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +7.847722e+01 9.067236e+01 moveto +7.847722e+01 8.787236e+01 lineto +7.878109e+01 8.813436e+01 lineto +7.878109e+01 9.093436e+01 lineto +7.847722e+01 9.067236e+01 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +7.847722e+01 9.347236e+01 moveto +7.847722e+01 9.067236e+01 lineto +7.878109e+01 9.093436e+01 lineto +7.878109e+01 9.373436e+01 lineto +7.847722e+01 9.347236e+01 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +7.847722e+01 9.627236e+01 moveto +7.847722e+01 9.347236e+01 lineto +7.878109e+01 9.373436e+01 lineto +7.878109e+01 9.653436e+01 lineto +7.847722e+01 9.627236e+01 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +7.847722e+01 9.907236e+01 moveto +7.847722e+01 9.627236e+01 lineto +7.878109e+01 9.653436e+01 lineto +7.878109e+01 9.933436e+01 lineto +7.847722e+01 9.907236e+01 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +7.847722e+01 1.018724e+02 moveto +7.847722e+01 9.907236e+01 lineto +7.878109e+01 9.933436e+01 lineto +7.878109e+01 1.021344e+02 lineto +7.847722e+01 1.018724e+02 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +7.847722e+01 1.046724e+02 moveto +7.847722e+01 1.018724e+02 lineto +7.878109e+01 1.021344e+02 lineto +7.878109e+01 1.049344e+02 lineto +7.847722e+01 1.046724e+02 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +7.847722e+01 1.074724e+02 moveto +7.847722e+01 1.046724e+02 lineto +7.878109e+01 1.049344e+02 lineto +7.878109e+01 1.077344e+02 lineto +7.847722e+01 1.074724e+02 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +7.847722e+01 1.102724e+02 moveto +7.847722e+01 1.074724e+02 lineto +7.878109e+01 1.077344e+02 lineto +7.878109e+01 1.105344e+02 lineto +7.847722e+01 1.102724e+02 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +7.847722e+01 1.130724e+02 moveto +7.847722e+01 1.102724e+02 lineto +7.878109e+01 1.105344e+02 lineto +7.878109e+01 1.133344e+02 lineto +7.847722e+01 1.130724e+02 lineto +closepath +gsave +6.705826e-01 6.705826e-01 6.705826e-01 setrgbcolor +fill +grestore +newpath +7.878109e+01 8.813436e+01 moveto +7.878109e+01 8.533436e+01 lineto +7.9e+01 8.559798e+01 lineto +7.9e+01 8.839798e+01 lineto +7.878109e+01 8.813436e+01 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +7.878109e+01 9.093436e+01 moveto +7.878109e+01 8.813436e+01 lineto +7.9e+01 8.839798e+01 lineto +7.9e+01 9.119798e+01 lineto +7.878109e+01 9.093436e+01 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +7.878109e+01 9.373436e+01 moveto +7.878109e+01 9.093436e+01 lineto +7.9e+01 9.119798e+01 lineto +7.9e+01 9.399798e+01 lineto +7.878109e+01 9.373436e+01 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +7.878109e+01 9.653436e+01 moveto +7.878109e+01 9.373436e+01 lineto +7.9e+01 9.399798e+01 lineto +7.9e+01 9.679798e+01 lineto +7.878109e+01 9.653436e+01 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +7.878109e+01 9.933436e+01 moveto +7.878109e+01 9.653436e+01 lineto +7.9e+01 9.679798e+01 lineto +7.9e+01 9.959798e+01 lineto +7.878109e+01 9.933436e+01 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +7.878109e+01 1.021344e+02 moveto +7.878109e+01 9.933436e+01 lineto +7.9e+01 9.959798e+01 lineto +7.9e+01 1.02398e+02 lineto +7.878109e+01 1.021344e+02 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +7.878109e+01 1.049344e+02 moveto +7.878109e+01 1.021344e+02 lineto +7.9e+01 1.02398e+02 lineto +7.9e+01 1.05198e+02 lineto +7.878109e+01 1.049344e+02 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +7.878109e+01 1.077344e+02 moveto +7.878109e+01 1.049344e+02 lineto +7.9e+01 1.05198e+02 lineto +7.9e+01 1.07998e+02 lineto +7.878109e+01 1.077344e+02 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +7.878109e+01 1.105344e+02 moveto +7.878109e+01 1.077344e+02 lineto +7.9e+01 1.07998e+02 lineto +7.9e+01 1.10798e+02 lineto +7.878109e+01 1.105344e+02 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +7.878109e+01 1.133344e+02 moveto +7.878109e+01 1.105344e+02 lineto +7.9e+01 1.10798e+02 lineto +7.9e+01 1.13598e+02 lineto +7.878109e+01 1.133344e+02 lineto +closepath +gsave +6.485232e-01 6.485232e-01 6.485232e-01 setrgbcolor +fill +grestore +newpath +7.9e+01 8.839798e+01 moveto +7.9e+01 8.559798e+01 lineto +7.913259e+01 8.58616e+01 lineto +7.913259e+01 8.86616e+01 lineto +7.9e+01 8.839798e+01 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +7.9e+01 9.119798e+01 moveto +7.9e+01 8.839798e+01 lineto +7.913259e+01 8.86616e+01 lineto +7.913259e+01 9.14616e+01 lineto +7.9e+01 9.119798e+01 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +7.9e+01 9.399798e+01 moveto +7.9e+01 9.119798e+01 lineto +7.913259e+01 9.14616e+01 lineto +7.913259e+01 9.42616e+01 lineto +7.9e+01 9.399798e+01 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +7.9e+01 9.679798e+01 moveto +7.9e+01 9.399798e+01 lineto +7.913259e+01 9.42616e+01 lineto +7.913259e+01 9.70616e+01 lineto +7.9e+01 9.679798e+01 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +7.9e+01 9.959798e+01 moveto +7.9e+01 9.679798e+01 lineto +7.913259e+01 9.70616e+01 lineto +7.913259e+01 9.98616e+01 lineto +7.9e+01 9.959798e+01 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +7.9e+01 1.02398e+02 moveto +7.9e+01 9.959798e+01 lineto +7.913259e+01 9.98616e+01 lineto +7.913259e+01 1.026616e+02 lineto +7.9e+01 1.02398e+02 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +7.9e+01 1.05198e+02 moveto +7.9e+01 1.02398e+02 lineto +7.913259e+01 1.026616e+02 lineto +7.913259e+01 1.054616e+02 lineto +7.9e+01 1.05198e+02 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +7.9e+01 1.07998e+02 moveto +7.9e+01 1.05198e+02 lineto +7.913259e+01 1.054616e+02 lineto +7.913259e+01 1.082616e+02 lineto +7.9e+01 1.07998e+02 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +7.9e+01 1.10798e+02 moveto +7.9e+01 1.07998e+02 lineto +7.913259e+01 1.082616e+02 lineto +7.913259e+01 1.110616e+02 lineto +7.9e+01 1.10798e+02 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +7.9e+01 1.13598e+02 moveto +7.9e+01 1.10798e+02 lineto +7.913259e+01 1.110616e+02 lineto +7.913259e+01 1.138616e+02 lineto +7.9e+01 1.13598e+02 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +7.913259e+01 8.86616e+01 moveto +7.913259e+01 8.58616e+01 lineto +7.917805e+01 8.61236e+01 lineto +7.917805e+01 8.89236e+01 lineto +7.913259e+01 8.86616e+01 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +7.913259e+01 9.14616e+01 moveto +7.913259e+01 8.86616e+01 lineto +7.917805e+01 8.89236e+01 lineto +7.917805e+01 9.17236e+01 lineto +7.913259e+01 9.14616e+01 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +7.913259e+01 9.42616e+01 moveto +7.913259e+01 9.14616e+01 lineto +7.917805e+01 9.17236e+01 lineto +7.917805e+01 9.45236e+01 lineto +7.913259e+01 9.42616e+01 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +7.913259e+01 9.70616e+01 moveto +7.913259e+01 9.42616e+01 lineto +7.917805e+01 9.45236e+01 lineto +7.917805e+01 9.73236e+01 lineto +7.913259e+01 9.70616e+01 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +7.913259e+01 9.98616e+01 moveto +7.913259e+01 9.70616e+01 lineto +7.917805e+01 9.73236e+01 lineto +7.917805e+01 1.001236e+02 lineto +7.913259e+01 9.98616e+01 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +7.913259e+01 1.026616e+02 moveto +7.913259e+01 9.98616e+01 lineto +7.917805e+01 1.001236e+02 lineto +7.917805e+01 1.029236e+02 lineto +7.913259e+01 1.026616e+02 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +7.913259e+01 1.054616e+02 moveto +7.913259e+01 1.026616e+02 lineto +7.917805e+01 1.029236e+02 lineto +7.917805e+01 1.057236e+02 lineto +7.913259e+01 1.054616e+02 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +7.913259e+01 1.082616e+02 moveto +7.913259e+01 1.054616e+02 lineto +7.917805e+01 1.057236e+02 lineto +7.917805e+01 1.085236e+02 lineto +7.913259e+01 1.082616e+02 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +7.913259e+01 1.110616e+02 moveto +7.913259e+01 1.082616e+02 lineto +7.917805e+01 1.085236e+02 lineto +7.917805e+01 1.113236e+02 lineto +7.913259e+01 1.110616e+02 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +7.913259e+01 1.138616e+02 moveto +7.913259e+01 1.110616e+02 lineto +7.917805e+01 1.113236e+02 lineto +7.917805e+01 1.141236e+02 lineto +7.913259e+01 1.138616e+02 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +5.082195e+01 8.787236e+01 moveto +5.082195e+01 8.507236e+01 lineto +5.08639e+01 8.48136e+01 lineto +5.08639e+01 8.76136e+01 lineto +5.082195e+01 8.787236e+01 lineto +closepath +gsave +4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor +fill +grestore +newpath +5.082195e+01 9.067236e+01 moveto +5.082195e+01 8.787236e+01 lineto +5.08639e+01 8.76136e+01 lineto +5.08639e+01 9.04136e+01 lineto +5.082195e+01 9.067236e+01 lineto +closepath +gsave +4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor +fill +grestore +newpath +5.082195e+01 9.347236e+01 moveto +5.082195e+01 9.067236e+01 lineto +5.08639e+01 9.04136e+01 lineto +5.08639e+01 9.32136e+01 lineto +5.082195e+01 9.347236e+01 lineto +closepath +gsave +4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor +fill +grestore +newpath +5.082195e+01 9.627236e+01 moveto +5.082195e+01 9.347236e+01 lineto +5.08639e+01 9.32136e+01 lineto +5.08639e+01 9.60136e+01 lineto +5.082195e+01 9.627236e+01 lineto +closepath +gsave +4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor +fill +grestore +newpath +5.082195e+01 9.907236e+01 moveto +5.082195e+01 9.627236e+01 lineto +5.08639e+01 9.60136e+01 lineto +5.08639e+01 9.88136e+01 lineto +5.082195e+01 9.907236e+01 lineto +closepath +gsave +4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor +fill +grestore +newpath +5.082195e+01 1.018724e+02 moveto +5.082195e+01 9.907236e+01 lineto +5.08639e+01 9.88136e+01 lineto +5.08639e+01 1.016136e+02 lineto +5.082195e+01 1.018724e+02 lineto +closepath +gsave +4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor +fill +grestore +newpath +5.082195e+01 1.046724e+02 moveto +5.082195e+01 1.018724e+02 lineto +5.08639e+01 1.016136e+02 lineto +5.08639e+01 1.044136e+02 lineto +5.082195e+01 1.046724e+02 lineto +closepath +gsave +4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor +fill +grestore +newpath +5.082195e+01 1.074724e+02 moveto +5.082195e+01 1.046724e+02 lineto +5.08639e+01 1.044136e+02 lineto +5.08639e+01 1.072136e+02 lineto +5.082195e+01 1.074724e+02 lineto +closepath +gsave +4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor +fill +grestore +newpath +5.082195e+01 1.102724e+02 moveto +5.082195e+01 1.074724e+02 lineto +5.08639e+01 1.072136e+02 lineto +5.08639e+01 1.100136e+02 lineto +5.082195e+01 1.102724e+02 lineto +closepath +gsave +4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor +fill +grestore +newpath +5.082195e+01 1.130724e+02 moveto +5.082195e+01 1.102724e+02 lineto +5.08639e+01 1.100136e+02 lineto +5.08639e+01 1.128136e+02 lineto +5.082195e+01 1.130724e+02 lineto +closepath +gsave +4.050403e-01 4.050403e-01 4.050403e-01 setrgbcolor +fill +grestore +newpath +5.08639e+01 8.76136e+01 moveto +5.08639e+01 8.48136e+01 lineto +5.099301e+01 8.455968e+01 lineto +5.099301e+01 8.735968e+01 lineto +5.08639e+01 8.76136e+01 lineto +closepath +gsave +4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor +fill +grestore +newpath +5.08639e+01 9.04136e+01 moveto +5.08639e+01 8.76136e+01 lineto +5.099301e+01 8.735968e+01 lineto +5.099301e+01 9.015968e+01 lineto +5.08639e+01 9.04136e+01 lineto +closepath +gsave +4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor +fill +grestore +newpath +5.08639e+01 9.32136e+01 moveto +5.08639e+01 9.04136e+01 lineto +5.099301e+01 9.015968e+01 lineto +5.099301e+01 9.295968e+01 lineto +5.08639e+01 9.32136e+01 lineto +closepath +gsave +4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor +fill +grestore +newpath +5.08639e+01 9.60136e+01 moveto +5.08639e+01 9.32136e+01 lineto +5.099301e+01 9.295968e+01 lineto +5.099301e+01 9.575968e+01 lineto +5.08639e+01 9.60136e+01 lineto +closepath +gsave +4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor +fill +grestore +newpath +5.08639e+01 9.88136e+01 moveto +5.08639e+01 9.60136e+01 lineto +5.099301e+01 9.575968e+01 lineto +5.099301e+01 9.855968e+01 lineto +5.08639e+01 9.88136e+01 lineto +closepath +gsave +4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor +fill +grestore +newpath +5.08639e+01 1.016136e+02 moveto +5.08639e+01 9.88136e+01 lineto +5.099301e+01 9.855968e+01 lineto +5.099301e+01 1.013597e+02 lineto +5.08639e+01 1.016136e+02 lineto +closepath +gsave +4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor +fill +grestore +newpath +5.08639e+01 1.044136e+02 moveto +5.08639e+01 1.016136e+02 lineto +5.099301e+01 1.013597e+02 lineto +5.099301e+01 1.041597e+02 lineto +5.08639e+01 1.044136e+02 lineto +closepath +gsave +4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor +fill +grestore +newpath +5.08639e+01 1.072136e+02 moveto +5.08639e+01 1.044136e+02 lineto +5.099301e+01 1.041597e+02 lineto +5.099301e+01 1.069597e+02 lineto +5.08639e+01 1.072136e+02 lineto +closepath +gsave +4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor +fill +grestore +newpath +5.08639e+01 1.100136e+02 moveto +5.08639e+01 1.072136e+02 lineto +5.099301e+01 1.069597e+02 lineto +5.099301e+01 1.097597e+02 lineto +5.08639e+01 1.100136e+02 lineto +closepath +gsave +4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor +fill +grestore +newpath +5.08639e+01 1.128136e+02 moveto +5.08639e+01 1.100136e+02 lineto +5.099301e+01 1.097597e+02 lineto +5.099301e+01 1.125597e+02 lineto +5.08639e+01 1.128136e+02 lineto +closepath +gsave +4.074364e-01 4.074364e-01 4.074364e-01 setrgbcolor +fill +grestore +newpath +5.099301e+01 8.735968e+01 moveto +5.099301e+01 8.455968e+01 lineto +5.120848e+01 8.431216e+01 lineto +5.120848e+01 8.711216e+01 lineto +5.099301e+01 8.735968e+01 lineto +closepath +gsave +4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor +fill +grestore +newpath +5.099301e+01 9.015968e+01 moveto +5.099301e+01 8.735968e+01 lineto +5.120848e+01 8.711216e+01 lineto +5.120848e+01 8.991216e+01 lineto +5.099301e+01 9.015968e+01 lineto +closepath +gsave +4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor +fill +grestore +newpath +5.099301e+01 9.295968e+01 moveto +5.099301e+01 9.015968e+01 lineto +5.120848e+01 8.991216e+01 lineto +5.120848e+01 9.271216e+01 lineto +5.099301e+01 9.295968e+01 lineto +closepath +gsave +4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor +fill +grestore +newpath +5.099301e+01 9.575968e+01 moveto +5.099301e+01 9.295968e+01 lineto +5.120848e+01 9.271216e+01 lineto +5.120848e+01 9.551216e+01 lineto +5.099301e+01 9.575968e+01 lineto +closepath +gsave +4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor +fill +grestore +newpath +5.099301e+01 9.855968e+01 moveto +5.099301e+01 9.575968e+01 lineto +5.120848e+01 9.551216e+01 lineto +5.120848e+01 9.831216e+01 lineto +5.099301e+01 9.855968e+01 lineto +closepath +gsave +4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor +fill +grestore +newpath +5.099301e+01 1.013597e+02 moveto +5.099301e+01 9.855968e+01 lineto +5.120848e+01 9.831216e+01 lineto +5.120848e+01 1.011122e+02 lineto +5.099301e+01 1.013597e+02 lineto +closepath +gsave +4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor +fill +grestore +newpath +5.099301e+01 1.041597e+02 moveto +5.099301e+01 1.013597e+02 lineto +5.120848e+01 1.011122e+02 lineto +5.120848e+01 1.039122e+02 lineto +5.099301e+01 1.041597e+02 lineto +closepath +gsave +4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor +fill +grestore +newpath +5.099301e+01 1.069597e+02 moveto +5.099301e+01 1.041597e+02 lineto +5.120848e+01 1.039122e+02 lineto +5.120848e+01 1.067122e+02 lineto +5.099301e+01 1.069597e+02 lineto +closepath +gsave +4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor +fill +grestore +newpath +5.099301e+01 1.097597e+02 moveto +5.099301e+01 1.069597e+02 lineto +5.120848e+01 1.067122e+02 lineto +5.120848e+01 1.095122e+02 lineto +5.099301e+01 1.097597e+02 lineto +closepath +gsave +4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor +fill +grestore +newpath +5.099301e+01 1.125597e+02 moveto +5.099301e+01 1.097597e+02 lineto +5.120848e+01 1.095122e+02 lineto +5.120848e+01 1.123122e+02 lineto +5.099301e+01 1.125597e+02 lineto +closepath +gsave +4.106465e-01 4.106465e-01 4.106465e-01 setrgbcolor +fill +grestore +newpath +5.120848e+01 8.711216e+01 moveto +5.120848e+01 8.431216e+01 lineto +5.150897e+01 8.407257e+01 lineto +5.150897e+01 8.687257e+01 lineto +5.120848e+01 8.711216e+01 lineto +closepath +gsave +4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor +fill +grestore +newpath +5.120848e+01 8.991216e+01 moveto +5.120848e+01 8.711216e+01 lineto +5.150897e+01 8.687257e+01 lineto +5.150897e+01 8.967257e+01 lineto +5.120848e+01 8.991216e+01 lineto +closepath +gsave +4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor +fill +grestore +newpath +5.120848e+01 9.271216e+01 moveto +5.120848e+01 8.991216e+01 lineto +5.150897e+01 8.967257e+01 lineto +5.150897e+01 9.247257e+01 lineto +5.120848e+01 9.271216e+01 lineto +closepath +gsave +4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor +fill +grestore +newpath +5.120848e+01 9.551216e+01 moveto +5.120848e+01 9.271216e+01 lineto +5.150897e+01 9.247257e+01 lineto +5.150897e+01 9.527257e+01 lineto +5.120848e+01 9.551216e+01 lineto +closepath +gsave +4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor +fill +grestore +newpath +5.120848e+01 9.831216e+01 moveto +5.120848e+01 9.551216e+01 lineto +5.150897e+01 9.527257e+01 lineto +5.150897e+01 9.807257e+01 lineto +5.120848e+01 9.831216e+01 lineto +closepath +gsave +4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor +fill +grestore +newpath +5.120848e+01 1.011122e+02 moveto +5.120848e+01 9.831216e+01 lineto +5.150897e+01 9.807257e+01 lineto +5.150897e+01 1.008726e+02 lineto +5.120848e+01 1.011122e+02 lineto +closepath +gsave +4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor +fill +grestore +newpath +5.120848e+01 1.039122e+02 moveto +5.120848e+01 1.011122e+02 lineto +5.150897e+01 1.008726e+02 lineto +5.150897e+01 1.036726e+02 lineto +5.120848e+01 1.039122e+02 lineto +closepath +gsave +4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor +fill +grestore +newpath +5.120848e+01 1.067122e+02 moveto +5.120848e+01 1.039122e+02 lineto +5.150897e+01 1.036726e+02 lineto +5.150897e+01 1.064726e+02 lineto +5.120848e+01 1.067122e+02 lineto +closepath +gsave +4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor +fill +grestore +newpath +5.120848e+01 1.095122e+02 moveto +5.120848e+01 1.067122e+02 lineto +5.150897e+01 1.064726e+02 lineto +5.150897e+01 1.092726e+02 lineto +5.120848e+01 1.095122e+02 lineto +closepath +gsave +4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor +fill +grestore +newpath +5.120848e+01 1.123122e+02 moveto +5.120848e+01 1.095122e+02 lineto +5.150897e+01 1.092726e+02 lineto +5.150897e+01 1.120726e+02 lineto +5.120848e+01 1.123122e+02 lineto +closepath +gsave +4.148336e-01 4.148336e-01 4.148336e-01 setrgbcolor +fill +grestore +newpath +5.150897e+01 8.687257e+01 moveto +5.150897e+01 8.407257e+01 lineto +5.189264e+01 8.384238e+01 lineto +5.189264e+01 8.664238e+01 lineto +5.150897e+01 8.687257e+01 lineto +closepath +gsave +4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor +fill +grestore +newpath +5.150897e+01 8.967257e+01 moveto +5.150897e+01 8.687257e+01 lineto +5.189264e+01 8.664238e+01 lineto +5.189264e+01 8.944238e+01 lineto +5.150897e+01 8.967257e+01 lineto +closepath +gsave +4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor +fill +grestore +newpath +5.150897e+01 9.247257e+01 moveto +5.150897e+01 8.967257e+01 lineto +5.189264e+01 8.944238e+01 lineto +5.189264e+01 9.224238e+01 lineto +5.150897e+01 9.247257e+01 lineto +closepath +gsave +4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor +fill +grestore +newpath +5.150897e+01 9.527257e+01 moveto +5.150897e+01 9.247257e+01 lineto +5.189264e+01 9.224238e+01 lineto +5.189264e+01 9.504238e+01 lineto +5.150897e+01 9.527257e+01 lineto +closepath +gsave +4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor +fill +grestore +newpath +5.150897e+01 9.807257e+01 moveto +5.150897e+01 9.527257e+01 lineto +5.189264e+01 9.504238e+01 lineto +5.189264e+01 9.784238e+01 lineto +5.150897e+01 9.807257e+01 lineto +closepath +gsave +4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor +fill +grestore +newpath +5.150897e+01 1.008726e+02 moveto +5.150897e+01 9.807257e+01 lineto +5.189264e+01 9.784238e+01 lineto +5.189264e+01 1.006424e+02 lineto +5.150897e+01 1.008726e+02 lineto +closepath +gsave +4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor +fill +grestore +newpath +5.150897e+01 1.036726e+02 moveto +5.150897e+01 1.008726e+02 lineto +5.189264e+01 1.006424e+02 lineto +5.189264e+01 1.034424e+02 lineto +5.150897e+01 1.036726e+02 lineto +closepath +gsave +4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor +fill +grestore +newpath +5.150897e+01 1.064726e+02 moveto +5.150897e+01 1.036726e+02 lineto +5.189264e+01 1.034424e+02 lineto +5.189264e+01 1.062424e+02 lineto +5.150897e+01 1.064726e+02 lineto +closepath +gsave +4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor +fill +grestore +newpath +5.150897e+01 1.092726e+02 moveto +5.150897e+01 1.064726e+02 lineto +5.189264e+01 1.062424e+02 lineto +5.189264e+01 1.090424e+02 lineto +5.150897e+01 1.092726e+02 lineto +closepath +gsave +4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor +fill +grestore +newpath +5.150897e+01 1.120726e+02 moveto +5.150897e+01 1.092726e+02 lineto +5.189264e+01 1.090424e+02 lineto +5.189264e+01 1.118424e+02 lineto +5.150897e+01 1.120726e+02 lineto +closepath +gsave +4.201633e-01 4.201633e-01 4.201633e-01 setrgbcolor +fill +grestore +newpath +5.189264e+01 8.664238e+01 moveto +5.189264e+01 8.384238e+01 lineto +5.235712e+01 8.362302e+01 lineto +5.235712e+01 8.642302e+01 lineto +5.189264e+01 8.664238e+01 lineto +closepath +gsave +4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor +fill +grestore +newpath +5.189264e+01 8.944238e+01 moveto +5.189264e+01 8.664238e+01 lineto +5.235712e+01 8.642302e+01 lineto +5.235712e+01 8.922302e+01 lineto +5.189264e+01 8.944238e+01 lineto +closepath +gsave +4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor +fill +grestore +newpath +5.189264e+01 9.224238e+01 moveto +5.189264e+01 8.944238e+01 lineto +5.235712e+01 8.922302e+01 lineto +5.235712e+01 9.202302e+01 lineto +5.189264e+01 9.224238e+01 lineto +closepath +gsave +4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor +fill +grestore +newpath +5.189264e+01 9.504238e+01 moveto +5.189264e+01 9.224238e+01 lineto +5.235712e+01 9.202302e+01 lineto +5.235712e+01 9.482302e+01 lineto +5.189264e+01 9.504238e+01 lineto +closepath +gsave +4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor +fill +grestore +newpath +5.189264e+01 9.784238e+01 moveto +5.189264e+01 9.504238e+01 lineto +5.235712e+01 9.482302e+01 lineto +5.235712e+01 9.762302e+01 lineto +5.189264e+01 9.784238e+01 lineto +closepath +gsave +4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor +fill +grestore +newpath +5.189264e+01 1.006424e+02 moveto +5.189264e+01 9.784238e+01 lineto +5.235712e+01 9.762302e+01 lineto +5.235712e+01 1.00423e+02 lineto +5.189264e+01 1.006424e+02 lineto +closepath +gsave +4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor +fill +grestore +newpath +5.189264e+01 1.034424e+02 moveto +5.189264e+01 1.006424e+02 lineto +5.235712e+01 1.00423e+02 lineto +5.235712e+01 1.03223e+02 lineto +5.189264e+01 1.034424e+02 lineto +closepath +gsave +4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor +fill +grestore +newpath +5.189264e+01 1.062424e+02 moveto +5.189264e+01 1.034424e+02 lineto +5.235712e+01 1.03223e+02 lineto +5.235712e+01 1.06023e+02 lineto +5.189264e+01 1.062424e+02 lineto +closepath +gsave +4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor +fill +grestore +newpath +5.189264e+01 1.090424e+02 moveto +5.189264e+01 1.062424e+02 lineto +5.235712e+01 1.06023e+02 lineto +5.235712e+01 1.08823e+02 lineto +5.189264e+01 1.090424e+02 lineto +closepath +gsave +4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor +fill +grestore +newpath +5.189264e+01 1.118424e+02 moveto +5.189264e+01 1.090424e+02 lineto +5.235712e+01 1.08823e+02 lineto +5.235712e+01 1.11623e+02 lineto +5.189264e+01 1.118424e+02 lineto +closepath +gsave +4.267965e-01 4.267965e-01 4.267965e-01 setrgbcolor +fill +grestore +newpath +5.235712e+01 8.642302e+01 moveto +5.235712e+01 8.362302e+01 lineto +5.289955e+01 8.341583e+01 lineto +5.289955e+01 8.621583e+01 lineto +5.235712e+01 8.642302e+01 lineto +closepath +gsave +4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor +fill +grestore +newpath +5.235712e+01 8.922302e+01 moveto +5.235712e+01 8.642302e+01 lineto +5.289955e+01 8.621583e+01 lineto +5.289955e+01 8.901583e+01 lineto +5.235712e+01 8.922302e+01 lineto +closepath +gsave +4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor +fill +grestore +newpath +5.235712e+01 9.202302e+01 moveto +5.235712e+01 8.922302e+01 lineto +5.289955e+01 8.901583e+01 lineto +5.289955e+01 9.181583e+01 lineto +5.235712e+01 9.202302e+01 lineto +closepath +gsave +4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor +fill +grestore +newpath +5.235712e+01 9.482302e+01 moveto +5.235712e+01 9.202302e+01 lineto +5.289955e+01 9.181583e+01 lineto +5.289955e+01 9.461583e+01 lineto +5.235712e+01 9.482302e+01 lineto +closepath +gsave +4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor +fill +grestore +newpath +5.235712e+01 9.762302e+01 moveto +5.235712e+01 9.482302e+01 lineto +5.289955e+01 9.461583e+01 lineto +5.289955e+01 9.741583e+01 lineto +5.235712e+01 9.762302e+01 lineto +closepath +gsave +4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor +fill +grestore +newpath +5.235712e+01 1.00423e+02 moveto +5.235712e+01 9.762302e+01 lineto +5.289955e+01 9.741583e+01 lineto +5.289955e+01 1.002158e+02 lineto +5.235712e+01 1.00423e+02 lineto +closepath +gsave +4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor +fill +grestore +newpath +5.235712e+01 1.03223e+02 moveto +5.235712e+01 1.00423e+02 lineto +5.289955e+01 1.002158e+02 lineto +5.289955e+01 1.030158e+02 lineto +5.235712e+01 1.03223e+02 lineto +closepath +gsave +4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor +fill +grestore +newpath +5.235712e+01 1.06023e+02 moveto +5.235712e+01 1.03223e+02 lineto +5.289955e+01 1.030158e+02 lineto +5.289955e+01 1.058158e+02 lineto +5.235712e+01 1.06023e+02 lineto +closepath +gsave +4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor +fill +grestore +newpath +5.235712e+01 1.08823e+02 moveto +5.235712e+01 1.06023e+02 lineto +5.289955e+01 1.058158e+02 lineto +5.289955e+01 1.086158e+02 lineto +5.235712e+01 1.08823e+02 lineto +closepath +gsave +4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor +fill +grestore +newpath +5.235712e+01 1.11623e+02 moveto +5.235712e+01 1.08823e+02 lineto +5.289955e+01 1.086158e+02 lineto +5.289955e+01 1.114158e+02 lineto +5.235712e+01 1.11623e+02 lineto +closepath +gsave +4.348814e-01 4.348814e-01 4.348814e-01 setrgbcolor +fill +grestore +newpath +5.289955e+01 8.621583e+01 moveto +5.289955e+01 8.341583e+01 lineto +5.351659e+01 8.32221e+01 lineto +5.351659e+01 8.60221e+01 lineto +5.289955e+01 8.621583e+01 lineto +closepath +gsave +4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor +fill +grestore +newpath +5.289955e+01 8.901583e+01 moveto +5.289955e+01 8.621583e+01 lineto +5.351659e+01 8.60221e+01 lineto +5.351659e+01 8.88221e+01 lineto +5.289955e+01 8.901583e+01 lineto +closepath +gsave +4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor +fill +grestore +newpath +5.289955e+01 9.181583e+01 moveto +5.289955e+01 8.901583e+01 lineto +5.351659e+01 8.88221e+01 lineto +5.351659e+01 9.16221e+01 lineto +5.289955e+01 9.181583e+01 lineto +closepath +gsave +4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor +fill +grestore +newpath +5.289955e+01 9.461583e+01 moveto +5.289955e+01 9.181583e+01 lineto +5.351659e+01 9.16221e+01 lineto +5.351659e+01 9.44221e+01 lineto +5.289955e+01 9.461583e+01 lineto +closepath +gsave +4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor +fill +grestore +newpath +5.289955e+01 9.741583e+01 moveto +5.289955e+01 9.461583e+01 lineto +5.351659e+01 9.44221e+01 lineto +5.351659e+01 9.72221e+01 lineto +5.289955e+01 9.741583e+01 lineto +closepath +gsave +4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor +fill +grestore +newpath +5.289955e+01 1.002158e+02 moveto +5.289955e+01 9.741583e+01 lineto +5.351659e+01 9.72221e+01 lineto +5.351659e+01 1.000221e+02 lineto +5.289955e+01 1.002158e+02 lineto +closepath +gsave +4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor +fill +grestore +newpath +5.289955e+01 1.030158e+02 moveto +5.289955e+01 1.002158e+02 lineto +5.351659e+01 1.000221e+02 lineto +5.351659e+01 1.028221e+02 lineto +5.289955e+01 1.030158e+02 lineto +closepath +gsave +4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor +fill +grestore +newpath +5.289955e+01 1.058158e+02 moveto +5.289955e+01 1.030158e+02 lineto +5.351659e+01 1.028221e+02 lineto +5.351659e+01 1.056221e+02 lineto +5.289955e+01 1.058158e+02 lineto +closepath +gsave +4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor +fill +grestore +newpath +5.289955e+01 1.086158e+02 moveto +5.289955e+01 1.058158e+02 lineto +5.351659e+01 1.056221e+02 lineto +5.351659e+01 1.084221e+02 lineto +5.289955e+01 1.086158e+02 lineto +closepath +gsave +4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor +fill +grestore +newpath +5.289955e+01 1.114158e+02 moveto +5.289955e+01 1.086158e+02 lineto +5.351659e+01 1.084221e+02 lineto +5.351659e+01 1.112221e+02 lineto +5.289955e+01 1.114158e+02 lineto +closepath +gsave +4.445447e-01 4.445447e-01 4.445447e-01 setrgbcolor +fill +grestore +newpath +5.351659e+01 8.60221e+01 moveto +5.351659e+01 8.32221e+01 lineto +5.420442e+01 8.304302e+01 lineto +5.420442e+01 8.584302e+01 lineto +5.351659e+01 8.60221e+01 lineto +closepath +gsave +4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor +fill +grestore +newpath +5.351659e+01 8.88221e+01 moveto +5.351659e+01 8.60221e+01 lineto +5.420442e+01 8.584302e+01 lineto +5.420442e+01 8.864302e+01 lineto +5.351659e+01 8.88221e+01 lineto +closepath +gsave +4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor +fill +grestore +newpath +5.351659e+01 9.16221e+01 moveto +5.351659e+01 8.88221e+01 lineto +5.420442e+01 8.864302e+01 lineto +5.420442e+01 9.144302e+01 lineto +5.351659e+01 9.16221e+01 lineto +closepath +gsave +4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor +fill +grestore +newpath +5.351659e+01 9.44221e+01 moveto +5.351659e+01 9.16221e+01 lineto +5.420442e+01 9.144302e+01 lineto +5.420442e+01 9.424302e+01 lineto +5.351659e+01 9.44221e+01 lineto +closepath +gsave +4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor +fill +grestore +newpath +5.351659e+01 9.72221e+01 moveto +5.351659e+01 9.44221e+01 lineto +5.420442e+01 9.424302e+01 lineto +5.420442e+01 9.704302e+01 lineto +5.351659e+01 9.72221e+01 lineto +closepath +gsave +4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor +fill +grestore +newpath +5.351659e+01 1.000221e+02 moveto +5.351659e+01 9.72221e+01 lineto +5.420442e+01 9.704302e+01 lineto +5.420442e+01 9.984302e+01 lineto +5.351659e+01 1.000221e+02 lineto +closepath +gsave +4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor +fill +grestore +newpath +5.351659e+01 1.028221e+02 moveto +5.351659e+01 1.000221e+02 lineto +5.420442e+01 9.984302e+01 lineto +5.420442e+01 1.02643e+02 lineto +5.351659e+01 1.028221e+02 lineto +closepath +gsave +4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor +fill +grestore +newpath +5.351659e+01 1.056221e+02 moveto +5.351659e+01 1.028221e+02 lineto +5.420442e+01 1.02643e+02 lineto +5.420442e+01 1.05443e+02 lineto +5.351659e+01 1.056221e+02 lineto +closepath +gsave +4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor +fill +grestore +newpath +5.351659e+01 1.084221e+02 moveto +5.351659e+01 1.056221e+02 lineto +5.420442e+01 1.05443e+02 lineto +5.420442e+01 1.08243e+02 lineto +5.351659e+01 1.084221e+02 lineto +closepath +gsave +4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor +fill +grestore +newpath +5.351659e+01 1.112221e+02 moveto +5.351659e+01 1.084221e+02 lineto +5.420442e+01 1.08243e+02 lineto +5.420442e+01 1.11043e+02 lineto +5.351659e+01 1.112221e+02 lineto +closepath +gsave +4.558834e-01 4.558834e-01 4.558834e-01 setrgbcolor +fill +grestore +newpath +5.420442e+01 8.584302e+01 moveto +5.420442e+01 8.304302e+01 lineto +5.495881e+01 8.287968e+01 lineto +5.495881e+01 8.567968e+01 lineto +5.420442e+01 8.584302e+01 lineto +closepath +gsave +4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor +fill +grestore +newpath +5.420442e+01 8.864302e+01 moveto +5.420442e+01 8.584302e+01 lineto +5.495881e+01 8.567968e+01 lineto +5.495881e+01 8.847968e+01 lineto +5.420442e+01 8.864302e+01 lineto +closepath +gsave +4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor +fill +grestore +newpath +5.420442e+01 9.144302e+01 moveto +5.420442e+01 8.864302e+01 lineto +5.495881e+01 8.847968e+01 lineto +5.495881e+01 9.127968e+01 lineto +5.420442e+01 9.144302e+01 lineto +closepath +gsave +4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor +fill +grestore +newpath +5.420442e+01 9.424302e+01 moveto +5.420442e+01 9.144302e+01 lineto +5.495881e+01 9.127968e+01 lineto +5.495881e+01 9.407968e+01 lineto +5.420442e+01 9.424302e+01 lineto +closepath +gsave +4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor +fill +grestore +newpath +5.420442e+01 9.704302e+01 moveto +5.420442e+01 9.424302e+01 lineto +5.495881e+01 9.407968e+01 lineto +5.495881e+01 9.687968e+01 lineto +5.420442e+01 9.704302e+01 lineto +closepath +gsave +4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor +fill +grestore +newpath +5.420442e+01 9.984302e+01 moveto +5.420442e+01 9.704302e+01 lineto +5.495881e+01 9.687968e+01 lineto +5.495881e+01 9.967968e+01 lineto +5.420442e+01 9.984302e+01 lineto +closepath +gsave +4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor +fill +grestore +newpath +5.420442e+01 1.02643e+02 moveto +5.420442e+01 9.984302e+01 lineto +5.495881e+01 9.967968e+01 lineto +5.495881e+01 1.024797e+02 lineto +5.420442e+01 1.02643e+02 lineto +closepath +gsave +4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor +fill +grestore +newpath +5.420442e+01 1.05443e+02 moveto +5.420442e+01 1.02643e+02 lineto +5.495881e+01 1.024797e+02 lineto +5.495881e+01 1.052797e+02 lineto +5.420442e+01 1.05443e+02 lineto +closepath +gsave +4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor +fill +grestore +newpath +5.420442e+01 1.08243e+02 moveto +5.420442e+01 1.05443e+02 lineto +5.495881e+01 1.052797e+02 lineto +5.495881e+01 1.080797e+02 lineto +5.420442e+01 1.08243e+02 lineto +closepath +gsave +4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor +fill +grestore +newpath +5.420442e+01 1.11043e+02 moveto +5.420442e+01 1.08243e+02 lineto +5.495881e+01 1.080797e+02 lineto +5.495881e+01 1.108797e+02 lineto +5.420442e+01 1.11043e+02 lineto +closepath +gsave +4.689562e-01 4.689562e-01 4.689562e-01 setrgbcolor +fill +grestore +newpath +5.495881e+01 8.567968e+01 moveto +5.495881e+01 8.287968e+01 lineto +5.577511e+01 8.273311e+01 lineto +5.577511e+01 8.553311e+01 lineto +5.495881e+01 8.567968e+01 lineto +closepath +gsave +4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor +fill +grestore +newpath +5.495881e+01 8.847968e+01 moveto +5.495881e+01 8.567968e+01 lineto +5.577511e+01 8.553311e+01 lineto +5.577511e+01 8.833311e+01 lineto +5.495881e+01 8.847968e+01 lineto +closepath +gsave +4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor +fill +grestore +newpath +5.495881e+01 9.127968e+01 moveto +5.495881e+01 8.847968e+01 lineto +5.577511e+01 8.833311e+01 lineto +5.577511e+01 9.113311e+01 lineto +5.495881e+01 9.127968e+01 lineto +closepath +gsave +4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor +fill +grestore +newpath +5.495881e+01 9.407968e+01 moveto +5.495881e+01 9.127968e+01 lineto +5.577511e+01 9.113311e+01 lineto +5.577511e+01 9.393311e+01 lineto +5.495881e+01 9.407968e+01 lineto +closepath +gsave +4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor +fill +grestore +newpath +5.495881e+01 9.687968e+01 moveto +5.495881e+01 9.407968e+01 lineto +5.577511e+01 9.393311e+01 lineto +5.577511e+01 9.673311e+01 lineto +5.495881e+01 9.687968e+01 lineto +closepath +gsave +4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor +fill +grestore +newpath +5.495881e+01 9.967968e+01 moveto +5.495881e+01 9.687968e+01 lineto +5.577511e+01 9.673311e+01 lineto +5.577511e+01 9.953311e+01 lineto +5.495881e+01 9.967968e+01 lineto +closepath +gsave +4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor +fill +grestore +newpath +5.495881e+01 1.024797e+02 moveto +5.495881e+01 9.967968e+01 lineto +5.577511e+01 9.953311e+01 lineto +5.577511e+01 1.023331e+02 lineto +5.495881e+01 1.024797e+02 lineto +closepath +gsave +4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor +fill +grestore +newpath +5.495881e+01 1.052797e+02 moveto +5.495881e+01 1.024797e+02 lineto +5.577511e+01 1.023331e+02 lineto +5.577511e+01 1.051331e+02 lineto +5.495881e+01 1.052797e+02 lineto +closepath +gsave +4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor +fill +grestore +newpath +5.495881e+01 1.080797e+02 moveto +5.495881e+01 1.052797e+02 lineto +5.577511e+01 1.051331e+02 lineto +5.577511e+01 1.079331e+02 lineto +5.495881e+01 1.080797e+02 lineto +closepath +gsave +4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor +fill +grestore +newpath +5.495881e+01 1.108797e+02 moveto +5.495881e+01 1.080797e+02 lineto +5.577511e+01 1.079331e+02 lineto +5.577511e+01 1.107331e+02 lineto +5.495881e+01 1.108797e+02 lineto +closepath +gsave +4.837758e-01 4.837758e-01 4.837758e-01 setrgbcolor +fill +grestore +newpath +5.577511e+01 8.553311e+01 moveto +5.577511e+01 8.273311e+01 lineto +5.664828e+01 8.26042e+01 lineto +5.664828e+01 8.54042e+01 lineto +5.577511e+01 8.553311e+01 lineto +closepath +gsave +5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor +fill +grestore +newpath +5.577511e+01 8.833311e+01 moveto +5.577511e+01 8.553311e+01 lineto +5.664828e+01 8.54042e+01 lineto +5.664828e+01 8.82042e+01 lineto +5.577511e+01 8.833311e+01 lineto +closepath +gsave +5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor +fill +grestore +newpath +5.577511e+01 9.113311e+01 moveto +5.577511e+01 8.833311e+01 lineto +5.664828e+01 8.82042e+01 lineto +5.664828e+01 9.10042e+01 lineto +5.577511e+01 9.113311e+01 lineto +closepath +gsave +5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor +fill +grestore +newpath +5.577511e+01 9.393311e+01 moveto +5.577511e+01 9.113311e+01 lineto +5.664828e+01 9.10042e+01 lineto +5.664828e+01 9.38042e+01 lineto +5.577511e+01 9.393311e+01 lineto +closepath +gsave +5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor +fill +grestore +newpath +5.577511e+01 9.673311e+01 moveto +5.577511e+01 9.393311e+01 lineto +5.664828e+01 9.38042e+01 lineto +5.664828e+01 9.66042e+01 lineto +5.577511e+01 9.673311e+01 lineto +closepath +gsave +5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor +fill +grestore +newpath +5.577511e+01 9.953311e+01 moveto +5.577511e+01 9.673311e+01 lineto +5.664828e+01 9.66042e+01 lineto +5.664828e+01 9.94042e+01 lineto +5.577511e+01 9.953311e+01 lineto +closepath +gsave +5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor +fill +grestore +newpath +5.577511e+01 1.023331e+02 moveto +5.577511e+01 9.953311e+01 lineto +5.664828e+01 9.94042e+01 lineto +5.664828e+01 1.022042e+02 lineto +5.577511e+01 1.023331e+02 lineto +closepath +gsave +5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor +fill +grestore +newpath +5.577511e+01 1.051331e+02 moveto +5.577511e+01 1.023331e+02 lineto +5.664828e+01 1.022042e+02 lineto +5.664828e+01 1.050042e+02 lineto +5.577511e+01 1.051331e+02 lineto +closepath +gsave +5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor +fill +grestore +newpath +5.577511e+01 1.079331e+02 moveto +5.577511e+01 1.051331e+02 lineto +5.664828e+01 1.050042e+02 lineto +5.664828e+01 1.078042e+02 lineto +5.577511e+01 1.079331e+02 lineto +closepath +gsave +5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor +fill +grestore +newpath +5.577511e+01 1.107331e+02 moveto +5.577511e+01 1.079331e+02 lineto +5.664828e+01 1.078042e+02 lineto +5.664828e+01 1.106042e+02 lineto +5.577511e+01 1.107331e+02 lineto +closepath +gsave +5.003033e-01 5.003033e-01 5.003033e-01 setrgbcolor +fill +grestore +newpath +5.664828e+01 8.54042e+01 moveto +5.664828e+01 8.26042e+01 lineto +5.757294e+01 8.249374e+01 lineto +5.757294e+01 8.529374e+01 lineto +5.664828e+01 8.54042e+01 lineto +closepath +gsave +5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor +fill +grestore +newpath +5.664828e+01 8.82042e+01 moveto +5.664828e+01 8.54042e+01 lineto +5.757294e+01 8.529374e+01 lineto +5.757294e+01 8.809374e+01 lineto +5.664828e+01 8.82042e+01 lineto +closepath +gsave +5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor +fill +grestore +newpath +5.664828e+01 9.10042e+01 moveto +5.664828e+01 8.82042e+01 lineto +5.757294e+01 8.809374e+01 lineto +5.757294e+01 9.089374e+01 lineto +5.664828e+01 9.10042e+01 lineto +closepath +gsave +5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor +fill +grestore +newpath +5.664828e+01 9.38042e+01 moveto +5.664828e+01 9.10042e+01 lineto +5.757294e+01 9.089374e+01 lineto +5.757294e+01 9.369374e+01 lineto +5.664828e+01 9.38042e+01 lineto +closepath +gsave +5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor +fill +grestore +newpath +5.664828e+01 9.66042e+01 moveto +5.664828e+01 9.38042e+01 lineto +5.757294e+01 9.369374e+01 lineto +5.757294e+01 9.649374e+01 lineto +5.664828e+01 9.66042e+01 lineto +closepath +gsave +5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor +fill +grestore +newpath +5.664828e+01 9.94042e+01 moveto +5.664828e+01 9.66042e+01 lineto +5.757294e+01 9.649374e+01 lineto +5.757294e+01 9.929374e+01 lineto +5.664828e+01 9.94042e+01 lineto +closepath +gsave +5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor +fill +grestore +newpath +5.664828e+01 1.022042e+02 moveto +5.664828e+01 9.94042e+01 lineto +5.757294e+01 9.929374e+01 lineto +5.757294e+01 1.020937e+02 lineto +5.664828e+01 1.022042e+02 lineto +closepath +gsave +5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor +fill +grestore +newpath +5.664828e+01 1.050042e+02 moveto +5.664828e+01 1.022042e+02 lineto +5.757294e+01 1.020937e+02 lineto +5.757294e+01 1.048937e+02 lineto +5.664828e+01 1.050042e+02 lineto +closepath +gsave +5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor +fill +grestore +newpath +5.664828e+01 1.078042e+02 moveto +5.664828e+01 1.050042e+02 lineto +5.757294e+01 1.048937e+02 lineto +5.757294e+01 1.076937e+02 lineto +5.664828e+01 1.078042e+02 lineto +closepath +gsave +5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor +fill +grestore +newpath +5.664828e+01 1.106042e+02 moveto +5.664828e+01 1.078042e+02 lineto +5.757294e+01 1.076937e+02 lineto +5.757294e+01 1.104937e+02 lineto +5.664828e+01 1.106042e+02 lineto +closepath +gsave +5.184433e-01 5.184433e-01 5.184433e-01 setrgbcolor +fill +grestore +newpath +5.757294e+01 8.529374e+01 moveto +5.757294e+01 8.249374e+01 lineto +5.85434e+01 8.240243e+01 lineto +5.85434e+01 8.520243e+01 lineto +5.757294e+01 8.529374e+01 lineto +closepath +gsave +5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor +fill +grestore +newpath +5.757294e+01 8.809374e+01 moveto +5.757294e+01 8.529374e+01 lineto +5.85434e+01 8.520243e+01 lineto +5.85434e+01 8.800243e+01 lineto +5.757294e+01 8.809374e+01 lineto +closepath +gsave +5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor +fill +grestore +newpath +5.757294e+01 9.089374e+01 moveto +5.757294e+01 8.809374e+01 lineto +5.85434e+01 8.800243e+01 lineto +5.85434e+01 9.080243e+01 lineto +5.757294e+01 9.089374e+01 lineto +closepath +gsave +5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor +fill +grestore +newpath +5.757294e+01 9.369374e+01 moveto +5.757294e+01 9.089374e+01 lineto +5.85434e+01 9.080243e+01 lineto +5.85434e+01 9.360243e+01 lineto +5.757294e+01 9.369374e+01 lineto +closepath +gsave +5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor +fill +grestore +newpath +5.757294e+01 9.649374e+01 moveto +5.757294e+01 9.369374e+01 lineto +5.85434e+01 9.360243e+01 lineto +5.85434e+01 9.640243e+01 lineto +5.757294e+01 9.649374e+01 lineto +closepath +gsave +5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor +fill +grestore +newpath +5.757294e+01 9.929374e+01 moveto +5.757294e+01 9.649374e+01 lineto +5.85434e+01 9.640243e+01 lineto +5.85434e+01 9.920243e+01 lineto +5.757294e+01 9.929374e+01 lineto +closepath +gsave +5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor +fill +grestore +newpath +5.757294e+01 1.020937e+02 moveto +5.757294e+01 9.929374e+01 lineto +5.85434e+01 9.920243e+01 lineto +5.85434e+01 1.020024e+02 lineto +5.757294e+01 1.020937e+02 lineto +closepath +gsave +5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor +fill +grestore +newpath +5.757294e+01 1.048937e+02 moveto +5.757294e+01 1.020937e+02 lineto +5.85434e+01 1.020024e+02 lineto +5.85434e+01 1.048024e+02 lineto +5.757294e+01 1.048937e+02 lineto +closepath +gsave +5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor +fill +grestore +newpath +5.757294e+01 1.076937e+02 moveto +5.757294e+01 1.048937e+02 lineto +5.85434e+01 1.048024e+02 lineto +5.85434e+01 1.076024e+02 lineto +5.757294e+01 1.076937e+02 lineto +closepath +gsave +5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor +fill +grestore +newpath +5.757294e+01 1.104937e+02 moveto +5.757294e+01 1.076937e+02 lineto +5.85434e+01 1.076024e+02 lineto +5.85434e+01 1.104024e+02 lineto +5.757294e+01 1.104937e+02 lineto +closepath +gsave +5.380412e-01 5.380412e-01 5.380412e-01 setrgbcolor +fill +grestore +newpath +5.85434e+01 8.520243e+01 moveto +5.85434e+01 8.240243e+01 lineto +5.955366e+01 8.233082e+01 lineto +5.955366e+01 8.513082e+01 lineto +5.85434e+01 8.520243e+01 lineto +closepath +gsave +5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor +fill +grestore +newpath +5.85434e+01 8.800243e+01 moveto +5.85434e+01 8.520243e+01 lineto +5.955366e+01 8.513082e+01 lineto +5.955366e+01 8.793082e+01 lineto +5.85434e+01 8.800243e+01 lineto +closepath +gsave +5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor +fill +grestore +newpath +5.85434e+01 9.080243e+01 moveto +5.85434e+01 8.800243e+01 lineto +5.955366e+01 8.793082e+01 lineto +5.955366e+01 9.073082e+01 lineto +5.85434e+01 9.080243e+01 lineto +closepath +gsave +5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor +fill +grestore +newpath +5.85434e+01 9.360243e+01 moveto +5.85434e+01 9.080243e+01 lineto +5.955366e+01 9.073082e+01 lineto +5.955366e+01 9.353082e+01 lineto +5.85434e+01 9.360243e+01 lineto +closepath +gsave +5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor +fill +grestore +newpath +5.85434e+01 9.640243e+01 moveto +5.85434e+01 9.360243e+01 lineto +5.955366e+01 9.353082e+01 lineto +5.955366e+01 9.633082e+01 lineto +5.85434e+01 9.640243e+01 lineto +closepath +gsave +5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor +fill +grestore +newpath +5.85434e+01 9.920243e+01 moveto +5.85434e+01 9.640243e+01 lineto +5.955366e+01 9.633082e+01 lineto +5.955366e+01 9.913082e+01 lineto +5.85434e+01 9.920243e+01 lineto +closepath +gsave +5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor +fill +grestore +newpath +5.85434e+01 1.020024e+02 moveto +5.85434e+01 9.920243e+01 lineto +5.955366e+01 9.913082e+01 lineto +5.955366e+01 1.019308e+02 lineto +5.85434e+01 1.020024e+02 lineto +closepath +gsave +5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor +fill +grestore +newpath +5.85434e+01 1.048024e+02 moveto +5.85434e+01 1.020024e+02 lineto +5.955366e+01 1.019308e+02 lineto +5.955366e+01 1.047308e+02 lineto +5.85434e+01 1.048024e+02 lineto +closepath +gsave +5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor +fill +grestore +newpath +5.85434e+01 1.076024e+02 moveto +5.85434e+01 1.048024e+02 lineto +5.955366e+01 1.047308e+02 lineto +5.955366e+01 1.075308e+02 lineto +5.85434e+01 1.076024e+02 lineto +closepath +gsave +5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor +fill +grestore +newpath +5.85434e+01 1.104024e+02 moveto +5.85434e+01 1.076024e+02 lineto +5.955366e+01 1.075308e+02 lineto +5.955366e+01 1.103308e+02 lineto +5.85434e+01 1.104024e+02 lineto +closepath +gsave +5.588832e-01 5.588832e-01 5.588832e-01 setrgbcolor +fill +grestore +newpath +5.955366e+01 8.513082e+01 moveto +5.955366e+01 8.233082e+01 lineto +6.05975e+01 8.227935e+01 lineto +6.05975e+01 8.507935e+01 lineto +5.955366e+01 8.513082e+01 lineto +closepath +gsave +5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor +fill +grestore +newpath +5.955366e+01 8.793082e+01 moveto +5.955366e+01 8.513082e+01 lineto +6.05975e+01 8.507935e+01 lineto +6.05975e+01 8.787935e+01 lineto +5.955366e+01 8.793082e+01 lineto +closepath +gsave +5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor +fill +grestore +newpath +5.955366e+01 9.073082e+01 moveto +5.955366e+01 8.793082e+01 lineto +6.05975e+01 8.787935e+01 lineto +6.05975e+01 9.067935e+01 lineto +5.955366e+01 9.073082e+01 lineto +closepath +gsave +5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor +fill +grestore +newpath +5.955366e+01 9.353082e+01 moveto +5.955366e+01 9.073082e+01 lineto +6.05975e+01 9.067935e+01 lineto +6.05975e+01 9.347935e+01 lineto +5.955366e+01 9.353082e+01 lineto +closepath +gsave +5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor +fill +grestore +newpath +5.955366e+01 9.633082e+01 moveto +5.955366e+01 9.353082e+01 lineto +6.05975e+01 9.347935e+01 lineto +6.05975e+01 9.627935e+01 lineto +5.955366e+01 9.633082e+01 lineto +closepath +gsave +5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor +fill +grestore +newpath +5.955366e+01 9.913082e+01 moveto +5.955366e+01 9.633082e+01 lineto +6.05975e+01 9.627935e+01 lineto +6.05975e+01 9.907935e+01 lineto +5.955366e+01 9.913082e+01 lineto +closepath +gsave +5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor +fill +grestore +newpath +5.955366e+01 1.019308e+02 moveto +5.955366e+01 9.913082e+01 lineto +6.05975e+01 9.907935e+01 lineto +6.05975e+01 1.018793e+02 lineto +5.955366e+01 1.019308e+02 lineto +closepath +gsave +5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor +fill +grestore +newpath +5.955366e+01 1.047308e+02 moveto +5.955366e+01 1.019308e+02 lineto +6.05975e+01 1.018793e+02 lineto +6.05975e+01 1.046793e+02 lineto +5.955366e+01 1.047308e+02 lineto +closepath +gsave +5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor +fill +grestore +newpath +5.955366e+01 1.075308e+02 moveto +5.955366e+01 1.047308e+02 lineto +6.05975e+01 1.046793e+02 lineto +6.05975e+01 1.074793e+02 lineto +5.955366e+01 1.075308e+02 lineto +closepath +gsave +5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor +fill +grestore +newpath +5.955366e+01 1.103308e+02 moveto +5.955366e+01 1.075308e+02 lineto +6.05975e+01 1.074793e+02 lineto +6.05975e+01 1.102793e+02 lineto +5.955366e+01 1.103308e+02 lineto +closepath +gsave +5.806981e-01 5.806981e-01 5.806981e-01 setrgbcolor +fill +grestore +newpath +6.05975e+01 8.507935e+01 moveto +6.05975e+01 8.227935e+01 lineto +6.166848e+01 8.224834e+01 lineto +6.166848e+01 8.504834e+01 lineto +6.05975e+01 8.507935e+01 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +6.05975e+01 8.787935e+01 moveto +6.05975e+01 8.507935e+01 lineto +6.166848e+01 8.504834e+01 lineto +6.166848e+01 8.784834e+01 lineto +6.05975e+01 8.787935e+01 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +6.05975e+01 9.067935e+01 moveto +6.05975e+01 8.787935e+01 lineto +6.166848e+01 8.784834e+01 lineto +6.166848e+01 9.064834e+01 lineto +6.05975e+01 9.067935e+01 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +6.05975e+01 9.347935e+01 moveto +6.05975e+01 9.067935e+01 lineto +6.166848e+01 9.064834e+01 lineto +6.166848e+01 9.344834e+01 lineto +6.05975e+01 9.347935e+01 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +6.05975e+01 9.627935e+01 moveto +6.05975e+01 9.347935e+01 lineto +6.166848e+01 9.344834e+01 lineto +6.166848e+01 9.624834e+01 lineto +6.05975e+01 9.627935e+01 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +6.05975e+01 9.907935e+01 moveto +6.05975e+01 9.627935e+01 lineto +6.166848e+01 9.624834e+01 lineto +6.166848e+01 9.904834e+01 lineto +6.05975e+01 9.907935e+01 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +6.05975e+01 1.018793e+02 moveto +6.05975e+01 9.907935e+01 lineto +6.166848e+01 9.904834e+01 lineto +6.166848e+01 1.018483e+02 lineto +6.05975e+01 1.018793e+02 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +6.05975e+01 1.046793e+02 moveto +6.05975e+01 1.018793e+02 lineto +6.166848e+01 1.018483e+02 lineto +6.166848e+01 1.046483e+02 lineto +6.05975e+01 1.046793e+02 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +6.05975e+01 1.074793e+02 moveto +6.05975e+01 1.046793e+02 lineto +6.166848e+01 1.046483e+02 lineto +6.166848e+01 1.074483e+02 lineto +6.05975e+01 1.074793e+02 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +6.05975e+01 1.102793e+02 moveto +6.05975e+01 1.074793e+02 lineto +6.166848e+01 1.074483e+02 lineto +6.166848e+01 1.102483e+02 lineto +6.05975e+01 1.102793e+02 lineto +closepath +gsave +6.031622e-01 6.031622e-01 6.031622e-01 setrgbcolor +fill +grestore +newpath +6.166848e+01 8.504834e+01 moveto +6.166848e+01 8.224834e+01 lineto +6.276e+01 8.223798e+01 lineto +6.276e+01 8.503798e+01 lineto +6.166848e+01 8.504834e+01 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +6.166848e+01 8.784834e+01 moveto +6.166848e+01 8.504834e+01 lineto +6.276e+01 8.503798e+01 lineto +6.276e+01 8.783798e+01 lineto +6.166848e+01 8.784834e+01 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +6.166848e+01 9.064834e+01 moveto +6.166848e+01 8.784834e+01 lineto +6.276e+01 8.783798e+01 lineto +6.276e+01 9.063798e+01 lineto +6.166848e+01 9.064834e+01 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +6.166848e+01 9.344834e+01 moveto +6.166848e+01 9.064834e+01 lineto +6.276e+01 9.063798e+01 lineto +6.276e+01 9.343798e+01 lineto +6.166848e+01 9.344834e+01 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +6.166848e+01 9.624834e+01 moveto +6.166848e+01 9.344834e+01 lineto +6.276e+01 9.343798e+01 lineto +6.276e+01 9.623798e+01 lineto +6.166848e+01 9.624834e+01 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +6.166848e+01 9.904834e+01 moveto +6.166848e+01 9.624834e+01 lineto +6.276e+01 9.623798e+01 lineto +6.276e+01 9.903798e+01 lineto +6.166848e+01 9.904834e+01 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +6.166848e+01 1.018483e+02 moveto +6.166848e+01 9.904834e+01 lineto +6.276e+01 9.903798e+01 lineto +6.276e+01 1.01838e+02 lineto +6.166848e+01 1.018483e+02 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +6.166848e+01 1.046483e+02 moveto +6.166848e+01 1.018483e+02 lineto +6.276e+01 1.01838e+02 lineto +6.276e+01 1.04638e+02 lineto +6.166848e+01 1.046483e+02 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +6.166848e+01 1.074483e+02 moveto +6.166848e+01 1.046483e+02 lineto +6.276e+01 1.04638e+02 lineto +6.276e+01 1.07438e+02 lineto +6.166848e+01 1.074483e+02 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +newpath +6.166848e+01 1.102483e+02 moveto +6.166848e+01 1.074483e+02 lineto +6.276e+01 1.07438e+02 lineto +6.276e+01 1.10238e+02 lineto +6.166848e+01 1.102483e+02 lineto +closepath +gsave +6.259059e-01 6.259059e-01 6.259059e-01 setrgbcolor +fill +grestore +1.0e-01 setlinewidth +newpath +6.520742e+01 4.331148e+00 moveto +6.500067e+01 4.001008e+00 lineto +6.500034e+01 4.001005e+00 lineto +6.510507e+01 4.330188e+00 lineto +6.520742e+01 4.331148e+00 lineto +closepath +gsave +6.118407e-01 6.118407e-01 7.648009e-01 setrgbcolor +fill +grestore +newpath +6.520742e+01 4.331148e+00 moveto +6.500067e+01 4.001008e+00 lineto +6.500034e+01 4.001005e+00 lineto +6.510507e+01 4.330188e+00 lineto +6.520742e+01 4.331148e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.541398e+01 4.700739e+00 moveto +6.520742e+01 4.331148e+00 lineto +6.510507e+01 4.330188e+00 lineto +6.52097e+01 4.698825e+00 lineto +6.541398e+01 4.700739e+00 lineto +closepath +gsave +6.175332e-01 6.175332e-01 7.719165e-01 setrgbcolor +fill +grestore +newpath +6.541398e+01 4.700739e+00 moveto +6.520742e+01 4.331148e+00 lineto +6.510507e+01 4.330188e+00 lineto +6.52097e+01 4.698825e+00 lineto +6.541398e+01 4.700739e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.562014e+01 5.109434e+00 moveto +6.541398e+01 4.700739e+00 lineto +6.52097e+01 4.698825e+00 lineto +6.531413e+01 5.106566e+00 lineto +6.562014e+01 5.109434e+00 lineto +closepath +gsave +6.231705e-01 6.231705e-01 7.789631e-01 setrgbcolor +fill +grestore +newpath +6.562014e+01 5.109434e+00 moveto +6.541398e+01 4.700739e+00 lineto +6.52097e+01 4.698825e+00 lineto +6.531413e+01 5.106566e+00 lineto +6.562014e+01 5.109434e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.582572e+01 5.556844e+00 moveto +6.562014e+01 5.109434e+00 lineto +6.531413e+01 5.106566e+00 lineto +6.541827e+01 5.553026e+00 lineto +6.582572e+01 5.556844e+00 lineto +closepath +gsave +6.287439e-01 6.287439e-01 7.859299e-01 setrgbcolor +fill +grestore +newpath +6.582572e+01 5.556844e+00 moveto +6.562014e+01 5.109434e+00 lineto +6.531413e+01 5.106566e+00 lineto +6.541827e+01 5.553026e+00 lineto +6.582572e+01 5.556844e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.603051e+01 6.042546e+00 moveto +6.582572e+01 5.556844e+00 lineto +6.541827e+01 5.553026e+00 lineto +6.5522e+01 6.037781e+00 lineto +6.603051e+01 6.042546e+00 lineto +closepath +gsave +6.342453e-01 6.342453e-01 7.928067e-01 setrgbcolor +fill +grestore +newpath +6.603051e+01 6.042546e+00 moveto +6.582572e+01 5.556844e+00 lineto +6.541827e+01 5.553026e+00 lineto +6.5522e+01 6.037781e+00 lineto +6.603051e+01 6.042546e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.623433e+01 6.56608e+00 moveto +6.603051e+01 6.042546e+00 lineto +6.5522e+01 6.037781e+00 lineto +6.562525e+01 6.560372e+00 lineto +6.623433e+01 6.56608e+00 lineto +closepath +gsave +6.396666e-01 6.396666e-01 7.995833e-01 setrgbcolor +fill +grestore +newpath +6.623433e+01 6.56608e+00 moveto +6.603051e+01 6.042546e+00 lineto +6.5522e+01 6.037781e+00 lineto +6.562525e+01 6.560372e+00 lineto +6.623433e+01 6.56608e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.643698e+01 7.12695e+00 moveto +6.623433e+01 6.56608e+00 lineto +6.562525e+01 6.560372e+00 lineto +6.57279e+01 7.120306e+00 lineto +6.643698e+01 7.12695e+00 lineto +closepath +gsave +6.450001e-01 6.450001e-01 8.062501e-01 setrgbcolor +fill +grestore +newpath +6.643698e+01 7.12695e+00 moveto +6.623433e+01 6.56608e+00 lineto +6.562525e+01 6.560372e+00 lineto +6.57279e+01 7.120306e+00 lineto +6.643698e+01 7.12695e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.663827e+01 7.724626e+00 moveto +6.643698e+01 7.12695e+00 lineto +6.57279e+01 7.120306e+00 lineto +6.582986e+01 7.717051e+00 lineto +6.663827e+01 7.724626e+00 lineto +closepath +gsave +6.502382e-01 6.502382e-01 8.127977e-01 setrgbcolor +fill +grestore +newpath +6.663827e+01 7.724626e+00 moveto +6.643698e+01 7.12695e+00 lineto +6.57279e+01 7.120306e+00 lineto +6.582986e+01 7.717051e+00 lineto +6.663827e+01 7.724626e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.683801e+01 8.358541e+00 moveto +6.663827e+01 7.724626e+00 lineto +6.582986e+01 7.717051e+00 lineto +6.593104e+01 8.350042e+00 lineto +6.683801e+01 8.358541e+00 lineto +closepath +gsave +6.553737e-01 6.553737e-01 8.192172e-01 setrgbcolor +fill +grestore +newpath +6.683801e+01 8.358541e+00 moveto +6.663827e+01 7.724626e+00 lineto +6.582986e+01 7.717051e+00 lineto +6.593104e+01 8.350042e+00 lineto +6.683801e+01 8.358541e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.7036e+01 9.028096e+00 moveto +6.683801e+01 8.358541e+00 lineto +6.593104e+01 8.350042e+00 lineto +6.603133e+01 9.018681e+00 lineto +6.7036e+01 9.028096e+00 lineto +closepath +gsave +6.603998e-01 6.603998e-01 8.254998e-01 setrgbcolor +fill +grestore +newpath +6.7036e+01 9.028096e+00 moveto +6.683801e+01 8.358541e+00 lineto +6.593104e+01 8.350042e+00 lineto +6.603133e+01 9.018681e+00 lineto +6.7036e+01 9.028096e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.723208e+01 9.732656e+00 moveto +6.7036e+01 9.028096e+00 lineto +6.603133e+01 9.018681e+00 lineto +6.613065e+01 9.722335e+00 lineto +6.723208e+01 9.732656e+00 lineto +closepath +gsave +6.653099e-01 6.653099e-01 8.316373e-01 setrgbcolor +fill +grestore +newpath +6.723208e+01 9.732656e+00 moveto +6.7036e+01 9.028096e+00 lineto +6.603133e+01 9.018681e+00 lineto +6.613065e+01 9.722335e+00 lineto +6.723208e+01 9.732656e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.742603e+01 1.047155e+01 moveto +6.723208e+01 9.732656e+00 lineto +6.613065e+01 9.722335e+00 lineto +6.62289e+01 1.046034e+01 lineto +6.742603e+01 1.047155e+01 lineto +closepath +gsave +6.700977e-01 6.700977e-01 8.376221e-01 setrgbcolor +fill +grestore +newpath +6.742603e+01 1.047155e+01 moveto +6.723208e+01 9.732656e+00 lineto +6.613065e+01 9.722335e+00 lineto +6.62289e+01 1.046034e+01 lineto +6.742603e+01 1.047155e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.761769e+01 1.124409e+01 moveto +6.742603e+01 1.047155e+01 lineto +6.62289e+01 1.046034e+01 lineto +6.632599e+01 1.123199e+01 lineto +6.761769e+01 1.124409e+01 lineto +closepath +gsave +6.747572e-01 6.747572e-01 8.434465e-01 setrgbcolor +fill +grestore +newpath +6.761769e+01 1.124409e+01 moveto +6.742603e+01 1.047155e+01 lineto +6.62289e+01 1.046034e+01 lineto +6.632599e+01 1.123199e+01 lineto +6.761769e+01 1.124409e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.780687e+01 1.204954e+01 moveto +6.761769e+01 1.124409e+01 lineto +6.632599e+01 1.123199e+01 lineto +6.642182e+01 1.203656e+01 lineto +6.780687e+01 1.204954e+01 lineto +closepath +gsave +6.792829e-01 6.792829e-01 8.491037e-01 setrgbcolor +fill +grestore +newpath +6.780687e+01 1.204954e+01 moveto +6.761769e+01 1.124409e+01 lineto +6.632599e+01 1.123199e+01 lineto +6.642182e+01 1.203656e+01 lineto +6.780687e+01 1.204954e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.79934e+01 1.288712e+01 moveto +6.780687e+01 1.204954e+01 lineto +6.642182e+01 1.203656e+01 lineto +6.65163e+01 1.287328e+01 lineto +6.79934e+01 1.288712e+01 lineto +closepath +gsave +6.836696e-01 6.836696e-01 8.54587e-01 setrgbcolor +fill +grestore +newpath +6.79934e+01 1.288712e+01 moveto +6.780687e+01 1.204954e+01 lineto +6.642182e+01 1.203656e+01 lineto +6.65163e+01 1.287328e+01 lineto +6.79934e+01 1.288712e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.817709e+01 1.375606e+01 moveto +6.79934e+01 1.288712e+01 lineto +6.65163e+01 1.287328e+01 lineto +6.660935e+01 1.374137e+01 lineto +6.817709e+01 1.375606e+01 lineto +closepath +gsave +6.879123e-01 6.879123e-01 8.598904e-01 setrgbcolor +fill +grestore +newpath +6.817709e+01 1.375606e+01 moveto +6.79934e+01 1.288712e+01 lineto +6.65163e+01 1.287328e+01 lineto +6.660935e+01 1.374137e+01 lineto +6.817709e+01 1.375606e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.835777e+01 1.465553e+01 moveto +6.817709e+01 1.375606e+01 lineto +6.660935e+01 1.374137e+01 lineto +6.670087e+01 1.464001e+01 lineto +6.835777e+01 1.465553e+01 lineto +closepath +gsave +6.920064e-01 6.920064e-01 8.65008e-01 setrgbcolor +fill +grestore +newpath +6.835777e+01 1.465553e+01 moveto +6.817709e+01 1.375606e+01 lineto +6.660935e+01 1.374137e+01 lineto +6.670087e+01 1.464001e+01 lineto +6.835777e+01 1.465553e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.853527e+01 1.558468e+01 moveto +6.835777e+01 1.465553e+01 lineto +6.670087e+01 1.464001e+01 lineto +6.679078e+01 1.556833e+01 lineto +6.853527e+01 1.558468e+01 lineto +closepath +gsave +6.959476e-01 6.959476e-01 8.699345e-01 setrgbcolor +fill +grestore +newpath +6.853527e+01 1.558468e+01 moveto +6.835777e+01 1.465553e+01 lineto +6.670087e+01 1.464001e+01 lineto +6.679078e+01 1.556833e+01 lineto +6.853527e+01 1.558468e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.870943e+01 1.654262e+01 moveto +6.853527e+01 1.558468e+01 lineto +6.679078e+01 1.556833e+01 lineto +6.6879e+01 1.652547e+01 lineto +6.870943e+01 1.654262e+01 lineto +closepath +gsave +6.99732e-01 6.99732e-01 8.74665e-01 setrgbcolor +fill +grestore +newpath +6.870943e+01 1.654262e+01 moveto +6.853527e+01 1.558468e+01 lineto +6.679078e+01 1.556833e+01 lineto +6.6879e+01 1.652547e+01 lineto +6.870943e+01 1.654262e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.888007e+01 1.752846e+01 moveto +6.870943e+01 1.654262e+01 lineto +6.6879e+01 1.652547e+01 lineto +6.696544e+01 1.751052e+01 lineto +6.888007e+01 1.752846e+01 lineto +closepath +gsave +7.033559e-01 7.033559e-01 8.791949e-01 setrgbcolor +fill +grestore +newpath +6.888007e+01 1.752846e+01 moveto +6.870943e+01 1.654262e+01 lineto +6.6879e+01 1.652547e+01 lineto +6.696544e+01 1.751052e+01 lineto +6.888007e+01 1.752846e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.904704e+01 1.854125e+01 moveto +6.888007e+01 1.752846e+01 lineto +6.696544e+01 1.751052e+01 lineto +6.705002e+01 1.852254e+01 lineto +6.904704e+01 1.854125e+01 lineto +closepath +gsave +7.06816e-01 7.06816e-01 8.8352e-01 setrgbcolor +fill +grestore +newpath +6.904704e+01 1.854125e+01 moveto +6.888007e+01 1.752846e+01 lineto +6.696544e+01 1.751052e+01 lineto +6.705002e+01 1.852254e+01 lineto +6.904704e+01 1.854125e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.921017e+01 1.958004e+01 moveto +6.904704e+01 1.854125e+01 lineto +6.705002e+01 1.852254e+01 lineto +6.713266e+01 1.956057e+01 lineto +6.921017e+01 1.958004e+01 lineto +closepath +gsave +7.101093e-01 7.101093e-01 8.876366e-01 setrgbcolor +fill +grestore +newpath +6.921017e+01 1.958004e+01 moveto +6.904704e+01 1.854125e+01 lineto +6.705002e+01 1.852254e+01 lineto +6.713266e+01 1.956057e+01 lineto +6.921017e+01 1.958004e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.936933e+01 2.064384e+01 moveto +6.921017e+01 1.958004e+01 lineto +6.713266e+01 1.956057e+01 lineto +6.721327e+01 2.062364e+01 lineto +6.936933e+01 2.064384e+01 lineto +closepath +gsave +7.132329e-01 7.132329e-01 8.915412e-01 setrgbcolor +fill +grestore +newpath +6.936933e+01 2.064384e+01 moveto +6.921017e+01 1.958004e+01 lineto +6.713266e+01 1.956057e+01 lineto +6.721327e+01 2.062364e+01 lineto +6.936933e+01 2.064384e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.952434e+01 2.173166e+01 moveto +6.936933e+01 2.064384e+01 lineto +6.721327e+01 2.062364e+01 lineto +6.72918e+01 2.171074e+01 lineto +6.952434e+01 2.173166e+01 lineto +closepath +gsave +7.161844e-01 7.161844e-01 8.952305e-01 setrgbcolor +fill +grestore +newpath +6.952434e+01 2.173166e+01 moveto +6.936933e+01 2.064384e+01 lineto +6.721327e+01 2.062364e+01 lineto +6.72918e+01 2.171074e+01 lineto +6.952434e+01 2.173166e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.967507e+01 2.284245e+01 moveto +6.952434e+01 2.173166e+01 lineto +6.72918e+01 2.171074e+01 lineto +6.736815e+01 2.282083e+01 lineto +6.967507e+01 2.284245e+01 lineto +closepath +gsave +7.189615e-01 7.189615e-01 8.987018e-01 setrgbcolor +fill +grestore +newpath +6.967507e+01 2.284245e+01 moveto +6.952434e+01 2.173166e+01 lineto +6.72918e+01 2.171074e+01 lineto +6.736815e+01 2.282083e+01 lineto +6.967507e+01 2.284245e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.982138e+01 2.397516e+01 moveto +6.967507e+01 2.284245e+01 lineto +6.736815e+01 2.282083e+01 lineto +6.744226e+01 2.395287e+01 lineto +6.982138e+01 2.397516e+01 lineto +closepath +gsave +7.215621e-01 7.215621e-01 9.019526e-01 setrgbcolor +fill +grestore +newpath +6.982138e+01 2.397516e+01 moveto +6.967507e+01 2.284245e+01 lineto +6.736815e+01 2.282083e+01 lineto +6.744226e+01 2.395287e+01 lineto +6.982138e+01 2.397516e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.996311e+01 2.512873e+01 moveto +6.982138e+01 2.397516e+01 lineto +6.744226e+01 2.395287e+01 lineto +6.751406e+01 2.510578e+01 lineto +6.996311e+01 2.512873e+01 lineto +closepath +gsave +7.239845e-01 7.239845e-01 9.049806e-01 setrgbcolor +fill +grestore +newpath +6.996311e+01 2.512873e+01 moveto +6.982138e+01 2.397516e+01 lineto +6.744226e+01 2.395287e+01 lineto +6.751406e+01 2.510578e+01 lineto +6.996311e+01 2.512873e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.010016e+01 2.630206e+01 moveto +6.996311e+01 2.512873e+01 lineto +6.751406e+01 2.510578e+01 lineto +6.758347e+01 2.627848e+01 lineto +7.010016e+01 2.630206e+01 lineto +closepath +gsave +7.26227e-01 7.26227e-01 9.077838e-01 setrgbcolor +fill +grestore +newpath +7.010016e+01 2.630206e+01 moveto +6.996311e+01 2.512873e+01 lineto +6.751406e+01 2.510578e+01 lineto +6.758347e+01 2.627848e+01 lineto +7.010016e+01 2.630206e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.023237e+01 2.749404e+01 moveto +7.010016e+01 2.630206e+01 lineto +6.758347e+01 2.627848e+01 lineto +6.765044e+01 2.746984e+01 lineto +7.023237e+01 2.749404e+01 lineto +closepath +gsave +7.282883e-01 7.282883e-01 9.103604e-01 setrgbcolor +fill +grestore +newpath +7.023237e+01 2.749404e+01 moveto +7.010016e+01 2.630206e+01 lineto +6.758347e+01 2.627848e+01 lineto +6.765044e+01 2.746984e+01 lineto +7.023237e+01 2.749404e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.035962e+01 2.870354e+01 moveto +7.023237e+01 2.749404e+01 lineto +6.765044e+01 2.746984e+01 lineto +6.771491e+01 2.867876e+01 lineto +7.035962e+01 2.870354e+01 lineto +closepath +gsave +7.301671e-01 7.301671e-01 9.127089e-01 setrgbcolor +fill +grestore +newpath +7.035962e+01 2.870354e+01 moveto +7.023237e+01 2.749404e+01 lineto +6.765044e+01 2.746984e+01 lineto +6.771491e+01 2.867876e+01 lineto +7.035962e+01 2.870354e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.048181e+01 2.992942e+01 moveto +7.035962e+01 2.870354e+01 lineto +6.771491e+01 2.867876e+01 lineto +6.77768e+01 2.990407e+01 lineto +7.048181e+01 2.992942e+01 lineto +closepath +gsave +7.318623e-01 7.318623e-01 9.148279e-01 setrgbcolor +fill +grestore +newpath +7.048181e+01 2.992942e+01 moveto +7.035962e+01 2.870354e+01 lineto +6.771491e+01 2.867876e+01 lineto +6.77768e+01 2.990407e+01 lineto +7.048181e+01 2.992942e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.05988e+01 3.117051e+01 moveto +7.048181e+01 2.992942e+01 lineto +6.77768e+01 2.990407e+01 lineto +6.783606e+01 3.114462e+01 lineto +7.05988e+01 3.117051e+01 lineto +closepath +gsave +7.333731e-01 7.333731e-01 9.167164e-01 setrgbcolor +fill +grestore +newpath +7.05988e+01 3.117051e+01 moveto +7.048181e+01 2.992942e+01 lineto +6.77768e+01 2.990407e+01 lineto +6.783606e+01 3.114462e+01 lineto +7.05988e+01 3.117051e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.071049e+01 3.242565e+01 moveto +7.05988e+01 3.117051e+01 lineto +6.783606e+01 3.114462e+01 lineto +6.789264e+01 3.239924e+01 lineto +7.071049e+01 3.242565e+01 lineto +closepath +gsave +7.346986e-01 7.346986e-01 9.183733e-01 setrgbcolor +fill +grestore +newpath +7.071049e+01 3.242565e+01 moveto +7.05988e+01 3.117051e+01 lineto +6.783606e+01 3.114462e+01 lineto +6.789264e+01 3.239924e+01 lineto +7.071049e+01 3.242565e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.081678e+01 3.369363e+01 moveto +7.071049e+01 3.242565e+01 lineto +6.789264e+01 3.239924e+01 lineto +6.794648e+01 3.366674e+01 lineto +7.081678e+01 3.369363e+01 lineto +closepath +gsave +7.358382e-01 7.358382e-01 9.197978e-01 setrgbcolor +fill +grestore +newpath +7.081678e+01 3.369363e+01 moveto +7.071049e+01 3.242565e+01 lineto +6.789264e+01 3.239924e+01 lineto +6.794648e+01 3.366674e+01 lineto +7.081678e+01 3.369363e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.091755e+01 3.497327e+01 moveto +7.081678e+01 3.369363e+01 lineto +6.794648e+01 3.366674e+01 lineto +6.799752e+01 3.494591e+01 lineto +7.091755e+01 3.497327e+01 lineto +closepath +gsave +7.367914e-01 7.367914e-01 9.209893e-01 setrgbcolor +fill +grestore +newpath +7.091755e+01 3.497327e+01 moveto +7.081678e+01 3.369363e+01 lineto +6.794648e+01 3.366674e+01 lineto +6.799752e+01 3.494591e+01 lineto +7.091755e+01 3.497327e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.101273e+01 3.626335e+01 moveto +7.091755e+01 3.497327e+01 lineto +6.799752e+01 3.494591e+01 lineto +6.804573e+01 3.623555e+01 lineto +7.101273e+01 3.626335e+01 lineto +closepath +gsave +7.375577e-01 7.375577e-01 9.219472e-01 setrgbcolor +fill +grestore +newpath +7.101273e+01 3.626335e+01 moveto +7.091755e+01 3.497327e+01 lineto +6.799752e+01 3.494591e+01 lineto +6.804573e+01 3.623555e+01 lineto +7.101273e+01 3.626335e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.110221e+01 3.756265e+01 moveto +7.101273e+01 3.626335e+01 lineto +6.804573e+01 3.623555e+01 lineto +6.809106e+01 3.753443e+01 lineto +7.110221e+01 3.756265e+01 lineto +closepath +gsave +7.381369e-01 7.381369e-01 9.226711e-01 setrgbcolor +fill +grestore +newpath +7.110221e+01 3.756265e+01 moveto +7.101273e+01 3.626335e+01 lineto +6.804573e+01 3.623555e+01 lineto +6.809106e+01 3.753443e+01 lineto +7.110221e+01 3.756265e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.118591e+01 3.886993e+01 moveto +7.110221e+01 3.756265e+01 lineto +6.809106e+01 3.753443e+01 lineto +6.813346e+01 3.884133e+01 lineto +7.118591e+01 3.886993e+01 lineto +closepath +gsave +7.385285e-01 7.385285e-01 9.231607e-01 setrgbcolor +fill +grestore +newpath +7.118591e+01 3.886993e+01 moveto +7.110221e+01 3.756265e+01 lineto +6.809106e+01 3.753443e+01 lineto +6.813346e+01 3.884133e+01 lineto +7.118591e+01 3.886993e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.126376e+01 4.018397e+01 moveto +7.118591e+01 3.886993e+01 lineto +6.813346e+01 3.884133e+01 lineto +6.81729e+01 4.015501e+01 lineto +7.126376e+01 4.018397e+01 lineto +closepath +gsave +7.387326e-01 7.387326e-01 9.234157e-01 setrgbcolor +fill +grestore +newpath +7.126376e+01 4.018397e+01 moveto +7.118591e+01 3.886993e+01 lineto +6.813346e+01 3.884133e+01 lineto +6.81729e+01 4.015501e+01 lineto +7.126376e+01 4.018397e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.133568e+01 4.150352e+01 moveto +7.126376e+01 4.018397e+01 lineto +6.81729e+01 4.015501e+01 lineto +6.820932e+01 4.147422e+01 lineto +7.133568e+01 4.150352e+01 lineto +closepath +gsave +7.38749e-01 7.38749e-01 9.234362e-01 setrgbcolor +fill +grestore +newpath +7.133568e+01 4.150352e+01 moveto +7.126376e+01 4.018397e+01 lineto +6.81729e+01 4.015501e+01 lineto +6.820932e+01 4.147422e+01 lineto +7.133568e+01 4.150352e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.510507e+01 4.330188e+00 moveto +6.500034e+01 4.001005e+00 lineto +6.500001e+01 4.000996e+00 lineto +6.500207e+01 4.327317e+00 lineto +6.510507e+01 4.330188e+00 lineto +closepath +gsave +6.120417e-01 6.120417e-01 7.650522e-01 setrgbcolor +fill +grestore +newpath +6.510507e+01 4.330188e+00 moveto +6.500034e+01 4.001005e+00 lineto +6.500001e+01 4.000996e+00 lineto +6.500207e+01 4.327317e+00 lineto +6.510507e+01 4.330188e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.52097e+01 4.698825e+00 moveto +6.510507e+01 4.330188e+00 lineto +6.500207e+01 4.327317e+00 lineto +6.500413e+01 4.693094e+00 lineto +6.52097e+01 4.698825e+00 lineto +closepath +gsave +6.18136e-01 6.18136e-01 7.726701e-01 setrgbcolor +fill +grestore +newpath +6.52097e+01 4.698825e+00 moveto +6.510507e+01 4.330188e+00 lineto +6.500207e+01 4.327317e+00 lineto +6.500413e+01 4.693094e+00 lineto +6.52097e+01 4.698825e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.531413e+01 5.106566e+00 moveto +6.52097e+01 4.698825e+00 lineto +6.500413e+01 4.693094e+00 lineto +6.500618e+01 5.097981e+00 lineto +6.531413e+01 5.106566e+00 lineto +closepath +gsave +6.241773e-01 6.241773e-01 7.802216e-01 setrgbcolor +fill +grestore +newpath +6.531413e+01 5.106566e+00 moveto +6.52097e+01 4.698825e+00 lineto +6.500413e+01 4.693094e+00 lineto +6.500618e+01 5.097981e+00 lineto +6.531413e+01 5.106566e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.541827e+01 5.553026e+00 moveto +6.531413e+01 5.106566e+00 lineto +6.500618e+01 5.097981e+00 lineto +6.500823e+01 5.541595e+00 lineto +6.541827e+01 5.553026e+00 lineto +closepath +gsave +6.301561e-01 6.301561e-01 7.876951e-01 setrgbcolor +fill +grestore +newpath +6.541827e+01 5.553026e+00 moveto +6.531413e+01 5.106566e+00 lineto +6.500618e+01 5.097981e+00 lineto +6.500823e+01 5.541595e+00 lineto +6.541827e+01 5.553026e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.5522e+01 6.037781e+00 moveto +6.541827e+01 5.553026e+00 lineto +6.500823e+01 5.541595e+00 lineto +6.501028e+01 6.023515e+00 lineto +6.5522e+01 6.037781e+00 lineto +closepath +gsave +6.360631e-01 6.360631e-01 7.950789e-01 setrgbcolor +fill +grestore +newpath +6.5522e+01 6.037781e+00 moveto +6.541827e+01 5.553026e+00 lineto +6.500823e+01 5.541595e+00 lineto +6.501028e+01 6.023515e+00 lineto +6.5522e+01 6.037781e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.562525e+01 6.560372e+00 moveto +6.5522e+01 6.037781e+00 lineto +6.501028e+01 6.023515e+00 lineto +6.501231e+01 6.543285e+00 lineto +6.562525e+01 6.560372e+00 lineto +closepath +gsave +6.418895e-01 6.418895e-01 8.023619e-01 setrgbcolor +fill +grestore +newpath +6.562525e+01 6.560372e+00 moveto +6.5522e+01 6.037781e+00 lineto +6.501028e+01 6.023515e+00 lineto +6.501231e+01 6.543285e+00 lineto +6.562525e+01 6.560372e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.57279e+01 7.120306e+00 moveto +6.562525e+01 6.560372e+00 lineto +6.501231e+01 6.543285e+00 lineto +6.501433e+01 7.100413e+00 lineto +6.57279e+01 7.120306e+00 lineto +closepath +gsave +6.476266e-01 6.476266e-01 8.095332e-01 setrgbcolor +fill +grestore +newpath +6.57279e+01 7.120306e+00 moveto +6.562525e+01 6.560372e+00 lineto +6.501231e+01 6.543285e+00 lineto +6.501433e+01 7.100413e+00 lineto +6.57279e+01 7.120306e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.582986e+01 7.717051e+00 moveto +6.57279e+01 7.120306e+00 lineto +6.501433e+01 7.100413e+00 lineto +6.501634e+01 7.694371e+00 lineto +6.582986e+01 7.717051e+00 lineto +closepath +gsave +6.532661e-01 6.532661e-01 8.165826e-01 setrgbcolor +fill +grestore +newpath +6.582986e+01 7.717051e+00 moveto +6.57279e+01 7.120306e+00 lineto +6.501433e+01 7.100413e+00 lineto +6.501634e+01 7.694371e+00 lineto +6.582986e+01 7.717051e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.593104e+01 8.350042e+00 moveto +6.582986e+01 7.717051e+00 lineto +6.501634e+01 7.694371e+00 lineto +6.501833e+01 8.324598e+00 lineto +6.593104e+01 8.350042e+00 lineto +closepath +gsave +6.587999e-01 6.587999e-01 8.234999e-01 setrgbcolor +fill +grestore +newpath +6.593104e+01 8.350042e+00 moveto +6.582986e+01 7.717051e+00 lineto +6.501634e+01 7.694371e+00 lineto +6.501833e+01 8.324598e+00 lineto +6.593104e+01 8.350042e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.603133e+01 9.018681e+00 moveto +6.593104e+01 8.350042e+00 lineto +6.501833e+01 8.324598e+00 lineto +6.50203e+01 8.990496e+00 lineto +6.603133e+01 9.018681e+00 lineto +closepath +gsave +6.642204e-01 6.642204e-01 8.302756e-01 setrgbcolor +fill +grestore +newpath +6.603133e+01 9.018681e+00 moveto +6.593104e+01 8.350042e+00 lineto +6.501833e+01 8.324598e+00 lineto +6.50203e+01 8.990496e+00 lineto +6.603133e+01 9.018681e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.613065e+01 9.722335e+00 moveto +6.603133e+01 9.018681e+00 lineto +6.50203e+01 8.990496e+00 lineto +6.502226e+01 9.691435e+00 lineto +6.613065e+01 9.722335e+00 lineto +closepath +gsave +6.695204e-01 6.695204e-01 8.369005e-01 setrgbcolor +fill +grestore +newpath +6.613065e+01 9.722335e+00 moveto +6.603133e+01 9.018681e+00 lineto +6.50203e+01 8.990496e+00 lineto +6.502226e+01 9.691435e+00 lineto +6.613065e+01 9.722335e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.62289e+01 1.046034e+01 moveto +6.613065e+01 9.722335e+00 lineto +6.502226e+01 9.691435e+00 lineto +6.502419e+01 1.042675e+01 lineto +6.62289e+01 1.046034e+01 lineto +closepath +gsave +6.746929e-01 6.746929e-01 8.433661e-01 setrgbcolor +fill +grestore +newpath +6.62289e+01 1.046034e+01 moveto +6.613065e+01 9.722335e+00 lineto +6.502226e+01 9.691435e+00 lineto +6.502419e+01 1.042675e+01 lineto +6.62289e+01 1.046034e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.632599e+01 1.123199e+01 moveto +6.62289e+01 1.046034e+01 lineto +6.502419e+01 1.042675e+01 lineto +6.502611e+01 1.119575e+01 lineto +6.632599e+01 1.123199e+01 lineto +closepath +gsave +6.797314e-01 6.797314e-01 8.496642e-01 setrgbcolor +fill +grestore +newpath +6.632599e+01 1.123199e+01 moveto +6.62289e+01 1.046034e+01 lineto +6.502419e+01 1.042675e+01 lineto +6.502611e+01 1.119575e+01 lineto +6.632599e+01 1.123199e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.642182e+01 1.203656e+01 moveto +6.632599e+01 1.123199e+01 lineto +6.502611e+01 1.119575e+01 lineto +6.502799e+01 1.19977e+01 lineto +6.642182e+01 1.203656e+01 lineto +closepath +gsave +6.846297e-01 6.846297e-01 8.557871e-01 setrgbcolor +fill +grestore +newpath +6.642182e+01 1.203656e+01 moveto +6.632599e+01 1.123199e+01 lineto +6.502611e+01 1.119575e+01 lineto +6.502799e+01 1.19977e+01 lineto +6.642182e+01 1.203656e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.65163e+01 1.287328e+01 moveto +6.642182e+01 1.203656e+01 lineto +6.502799e+01 1.19977e+01 lineto +6.502985e+01 1.283184e+01 lineto +6.65163e+01 1.287328e+01 lineto +closepath +gsave +6.89382e-01 6.89382e-01 8.617275e-01 setrgbcolor +fill +grestore +newpath +6.65163e+01 1.287328e+01 moveto +6.642182e+01 1.203656e+01 lineto +6.502799e+01 1.19977e+01 lineto +6.502985e+01 1.283184e+01 lineto +6.65163e+01 1.287328e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.660935e+01 1.374137e+01 moveto +6.65163e+01 1.287328e+01 lineto +6.502985e+01 1.283184e+01 lineto +6.503168e+01 1.369739e+01 lineto +6.660935e+01 1.374137e+01 lineto +closepath +gsave +6.93983e-01 6.93983e-01 8.674787e-01 setrgbcolor +fill +grestore +newpath +6.660935e+01 1.374137e+01 moveto +6.65163e+01 1.287328e+01 lineto +6.502985e+01 1.283184e+01 lineto +6.503168e+01 1.369739e+01 lineto +6.660935e+01 1.374137e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.670087e+01 1.464001e+01 moveto +6.660935e+01 1.374137e+01 lineto +6.503168e+01 1.369739e+01 lineto +6.503349e+01 1.459352e+01 lineto +6.670087e+01 1.464001e+01 lineto +closepath +gsave +6.984276e-01 6.984276e-01 8.730345e-01 setrgbcolor +fill +grestore +newpath +6.670087e+01 1.464001e+01 moveto +6.660935e+01 1.374137e+01 lineto +6.503168e+01 1.369739e+01 lineto +6.503349e+01 1.459352e+01 lineto +6.670087e+01 1.464001e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.679078e+01 1.556833e+01 moveto +6.670087e+01 1.464001e+01 lineto +6.503349e+01 1.459352e+01 lineto +6.503526e+01 1.551939e+01 lineto +6.679078e+01 1.556833e+01 lineto +closepath +gsave +7.027113e-01 7.027113e-01 8.783891e-01 setrgbcolor +fill +grestore +newpath +6.679078e+01 1.556833e+01 moveto +6.670087e+01 1.464001e+01 lineto +6.503349e+01 1.459352e+01 lineto +6.503526e+01 1.551939e+01 lineto +6.679078e+01 1.556833e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.6879e+01 1.652547e+01 moveto +6.679078e+01 1.556833e+01 lineto +6.503526e+01 1.551939e+01 lineto +6.503699e+01 1.647412e+01 lineto +6.6879e+01 1.652547e+01 lineto +closepath +gsave +7.068297e-01 7.068297e-01 8.835371e-01 setrgbcolor +fill +grestore +newpath +6.6879e+01 1.652547e+01 moveto +6.679078e+01 1.556833e+01 lineto +6.503526e+01 1.551939e+01 lineto +6.503699e+01 1.647412e+01 lineto +6.6879e+01 1.652547e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.696544e+01 1.751052e+01 moveto +6.6879e+01 1.652547e+01 lineto +6.503699e+01 1.647412e+01 lineto +6.50387e+01 1.74568e+01 lineto +6.696544e+01 1.751052e+01 lineto +closepath +gsave +7.107789e-01 7.107789e-01 8.884737e-01 setrgbcolor +fill +grestore +newpath +6.696544e+01 1.751052e+01 moveto +6.6879e+01 1.652547e+01 lineto +6.503699e+01 1.647412e+01 lineto +6.50387e+01 1.74568e+01 lineto +6.696544e+01 1.751052e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.705002e+01 1.852254e+01 moveto +6.696544e+01 1.751052e+01 lineto +6.50387e+01 1.74568e+01 lineto +6.504036e+01 1.846651e+01 lineto +6.705002e+01 1.852254e+01 lineto +closepath +gsave +7.145555e-01 7.145555e-01 8.931944e-01 setrgbcolor +fill +grestore +newpath +6.705002e+01 1.852254e+01 moveto +6.696544e+01 1.751052e+01 lineto +6.50387e+01 1.74568e+01 lineto +6.504036e+01 1.846651e+01 lineto +6.705002e+01 1.852254e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.713266e+01 1.956057e+01 moveto +6.705002e+01 1.852254e+01 lineto +6.504036e+01 1.846651e+01 lineto +6.504199e+01 1.950229e+01 lineto +6.713266e+01 1.956057e+01 lineto +closepath +gsave +7.181561e-01 7.181561e-01 8.976951e-01 setrgbcolor +fill +grestore +newpath +6.713266e+01 1.956057e+01 moveto +6.705002e+01 1.852254e+01 lineto +6.504036e+01 1.846651e+01 lineto +6.504199e+01 1.950229e+01 lineto +6.713266e+01 1.956057e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.721327e+01 2.062364e+01 moveto +6.713266e+01 1.956057e+01 lineto +6.504199e+01 1.950229e+01 lineto +6.504358e+01 2.056315e+01 lineto +6.721327e+01 2.062364e+01 lineto +closepath +gsave +7.215779e-01 7.215779e-01 9.019723e-01 setrgbcolor +fill +grestore +newpath +6.721327e+01 2.062364e+01 moveto +6.713266e+01 1.956057e+01 lineto +6.504199e+01 1.950229e+01 lineto +6.504358e+01 2.056315e+01 lineto +6.721327e+01 2.062364e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.72918e+01 2.171074e+01 moveto +6.721327e+01 2.062364e+01 lineto +6.504358e+01 2.056315e+01 lineto +6.504512e+01 2.16481e+01 lineto +6.72918e+01 2.171074e+01 lineto +closepath +gsave +7.248181e-01 7.248181e-01 9.060227e-01 setrgbcolor +fill +grestore +newpath +6.72918e+01 2.171074e+01 moveto +6.721327e+01 2.062364e+01 lineto +6.504358e+01 2.056315e+01 lineto +6.504512e+01 2.16481e+01 lineto +6.72918e+01 2.171074e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.736815e+01 2.282083e+01 moveto +6.72918e+01 2.171074e+01 lineto +6.504512e+01 2.16481e+01 lineto +6.504662e+01 2.275611e+01 lineto +6.736815e+01 2.282083e+01 lineto +closepath +gsave +7.278746e-01 7.278746e-01 9.098433e-01 setrgbcolor +fill +grestore +newpath +6.736815e+01 2.282083e+01 moveto +6.72918e+01 2.171074e+01 lineto +6.504512e+01 2.16481e+01 lineto +6.504662e+01 2.275611e+01 lineto +6.736815e+01 2.282083e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.744226e+01 2.395287e+01 moveto +6.736815e+01 2.282083e+01 lineto +6.504662e+01 2.275611e+01 lineto +6.504808e+01 2.388612e+01 lineto +6.744226e+01 2.395287e+01 lineto +closepath +gsave +7.307452e-01 7.307452e-01 9.134316e-01 setrgbcolor +fill +grestore +newpath +6.744226e+01 2.395287e+01 moveto +6.736815e+01 2.282083e+01 lineto +6.504662e+01 2.275611e+01 lineto +6.504808e+01 2.388612e+01 lineto +6.744226e+01 2.395287e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.751406e+01 2.510578e+01 moveto +6.744226e+01 2.395287e+01 lineto +6.504808e+01 2.388612e+01 lineto +6.50495e+01 2.503707e+01 lineto +6.751406e+01 2.510578e+01 lineto +closepath +gsave +7.334282e-01 7.334282e-01 9.167852e-01 setrgbcolor +fill +grestore +newpath +6.751406e+01 2.510578e+01 moveto +6.744226e+01 2.395287e+01 lineto +6.504808e+01 2.388612e+01 lineto +6.50495e+01 2.503707e+01 lineto +6.751406e+01 2.510578e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.758347e+01 2.627848e+01 moveto +6.751406e+01 2.510578e+01 lineto +6.50495e+01 2.503707e+01 lineto +6.505086e+01 2.620787e+01 lineto +6.758347e+01 2.627848e+01 lineto +closepath +gsave +7.359218e-01 7.359218e-01 9.199023e-01 setrgbcolor +fill +grestore +newpath +6.758347e+01 2.627848e+01 moveto +6.751406e+01 2.510578e+01 lineto +6.50495e+01 2.503707e+01 lineto +6.505086e+01 2.620787e+01 lineto +6.758347e+01 2.627848e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.765044e+01 2.746984e+01 moveto +6.758347e+01 2.627848e+01 lineto +6.505086e+01 2.620787e+01 lineto +6.505218e+01 2.739741e+01 lineto +6.765044e+01 2.746984e+01 lineto +closepath +gsave +7.382248e-01 7.382248e-01 9.22781e-01 setrgbcolor +fill +grestore +newpath +6.765044e+01 2.746984e+01 moveto +6.758347e+01 2.627848e+01 lineto +6.505086e+01 2.620787e+01 lineto +6.505218e+01 2.739741e+01 lineto +6.765044e+01 2.746984e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.771491e+01 2.867876e+01 moveto +6.765044e+01 2.746984e+01 lineto +6.505218e+01 2.739741e+01 lineto +6.505345e+01 2.860456e+01 lineto +6.771491e+01 2.867876e+01 lineto +closepath +gsave +7.40336e-01 7.40336e-01 9.2542e-01 setrgbcolor +fill +grestore +newpath +6.771491e+01 2.867876e+01 moveto +6.765044e+01 2.746984e+01 lineto +6.505218e+01 2.739741e+01 lineto +6.505345e+01 2.860456e+01 lineto +6.771491e+01 2.867876e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.77768e+01 2.990407e+01 moveto +6.771491e+01 2.867876e+01 lineto +6.505345e+01 2.860456e+01 lineto +6.505467e+01 2.982818e+01 lineto +6.77768e+01 2.990407e+01 lineto +closepath +gsave +7.422542e-01 7.422542e-01 9.278178e-01 setrgbcolor +fill +grestore +newpath +6.77768e+01 2.990407e+01 moveto +6.771491e+01 2.867876e+01 lineto +6.505345e+01 2.860456e+01 lineto +6.505467e+01 2.982818e+01 lineto +6.77768e+01 2.990407e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.783606e+01 3.114462e+01 moveto +6.77768e+01 2.990407e+01 lineto +6.505467e+01 2.982818e+01 lineto +6.505584e+01 3.106712e+01 lineto +6.783606e+01 3.114462e+01 lineto +closepath +gsave +7.439788e-01 7.439788e-01 9.299735e-01 setrgbcolor +fill +grestore +newpath +6.783606e+01 3.114462e+01 moveto +6.77768e+01 2.990407e+01 lineto +6.505467e+01 2.982818e+01 lineto +6.505584e+01 3.106712e+01 lineto +6.783606e+01 3.114462e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.789264e+01 3.239924e+01 moveto +6.783606e+01 3.114462e+01 lineto +6.505584e+01 3.106712e+01 lineto +6.505695e+01 3.232019e+01 lineto +6.789264e+01 3.239924e+01 lineto +closepath +gsave +7.455089e-01 7.455089e-01 9.318861e-01 setrgbcolor +fill +grestore +newpath +6.789264e+01 3.239924e+01 moveto +6.783606e+01 3.114462e+01 lineto +6.505584e+01 3.106712e+01 lineto +6.505695e+01 3.232019e+01 lineto +6.789264e+01 3.239924e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.794648e+01 3.366674e+01 moveto +6.789264e+01 3.239924e+01 lineto +6.505695e+01 3.232019e+01 lineto +6.505801e+01 3.358621e+01 lineto +6.794648e+01 3.366674e+01 lineto +closepath +gsave +7.46844e-01 7.46844e-01 9.33555e-01 setrgbcolor +fill +grestore +newpath +6.794648e+01 3.366674e+01 moveto +6.789264e+01 3.239924e+01 lineto +6.505695e+01 3.232019e+01 lineto +6.505801e+01 3.358621e+01 lineto +6.794648e+01 3.366674e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.799752e+01 3.494591e+01 moveto +6.794648e+01 3.366674e+01 lineto +6.505801e+01 3.358621e+01 lineto +6.505902e+01 3.486399e+01 lineto +6.799752e+01 3.494591e+01 lineto +closepath +gsave +7.479835e-01 7.479835e-01 9.349794e-01 setrgbcolor +fill +grestore +newpath +6.799752e+01 3.494591e+01 moveto +6.794648e+01 3.366674e+01 lineto +6.505801e+01 3.358621e+01 lineto +6.505902e+01 3.486399e+01 lineto +6.799752e+01 3.494591e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.804573e+01 3.623555e+01 moveto +6.799752e+01 3.494591e+01 lineto +6.505902e+01 3.486399e+01 lineto +6.505996e+01 3.615231e+01 lineto +6.804573e+01 3.623555e+01 lineto +closepath +gsave +7.489271e-01 7.489271e-01 9.361589e-01 setrgbcolor +fill +grestore +newpath +6.804573e+01 3.623555e+01 moveto +6.799752e+01 3.494591e+01 lineto +6.505902e+01 3.486399e+01 lineto +6.505996e+01 3.615231e+01 lineto +6.804573e+01 3.623555e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.809106e+01 3.753443e+01 moveto +6.804573e+01 3.623555e+01 lineto +6.505996e+01 3.615231e+01 lineto +6.506086e+01 3.744996e+01 lineto +6.809106e+01 3.753443e+01 lineto +closepath +gsave +7.496745e-01 7.496745e-01 9.370931e-01 setrgbcolor +fill +grestore +newpath +6.809106e+01 3.753443e+01 moveto +6.804573e+01 3.623555e+01 lineto +6.505996e+01 3.615231e+01 lineto +6.506086e+01 3.744996e+01 lineto +6.809106e+01 3.753443e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.813346e+01 3.884133e+01 moveto +6.809106e+01 3.753443e+01 lineto +6.506086e+01 3.744996e+01 lineto +6.506169e+01 3.87557e+01 lineto +6.813346e+01 3.884133e+01 lineto +closepath +gsave +7.502254e-01 7.502254e-01 9.377818e-01 setrgbcolor +fill +grestore +newpath +6.813346e+01 3.884133e+01 moveto +6.809106e+01 3.753443e+01 lineto +6.506086e+01 3.744996e+01 lineto +6.506169e+01 3.87557e+01 lineto +6.813346e+01 3.884133e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.81729e+01 4.015501e+01 moveto +6.813346e+01 3.884133e+01 lineto +6.506169e+01 3.87557e+01 lineto +6.506247e+01 4.00683e+01 lineto +6.81729e+01 4.015501e+01 lineto +closepath +gsave +7.505798e-01 7.505798e-01 9.382247e-01 setrgbcolor +fill +grestore +newpath +6.81729e+01 4.015501e+01 moveto +6.813346e+01 3.884133e+01 lineto +6.506169e+01 3.87557e+01 lineto +6.506247e+01 4.00683e+01 lineto +6.81729e+01 4.015501e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.820932e+01 4.147422e+01 moveto +6.81729e+01 4.015501e+01 lineto +6.506247e+01 4.00683e+01 lineto +6.506319e+01 4.138651e+01 lineto +6.820932e+01 4.147422e+01 lineto +closepath +gsave +7.507374e-01 7.507374e-01 9.384218e-01 setrgbcolor +fill +grestore +newpath +6.820932e+01 4.147422e+01 moveto +6.81729e+01 4.015501e+01 lineto +6.506247e+01 4.00683e+01 lineto +6.506319e+01 4.138651e+01 lineto +6.820932e+01 4.147422e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.500207e+01 4.327317e+00 moveto +6.500001e+01 4.000996e+00 lineto +6.499967e+01 4.00098e+00 lineto +6.489905e+01 4.322551e+00 lineto +6.500207e+01 4.327317e+00 lineto +closepath +gsave +6.122237e-01 6.122237e-01 7.652796e-01 setrgbcolor +fill +grestore +newpath +6.500207e+01 4.327317e+00 moveto +6.500001e+01 4.000996e+00 lineto +6.499967e+01 4.00098e+00 lineto +6.489905e+01 4.322551e+00 lineto +6.500207e+01 4.327317e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.500413e+01 4.693094e+00 moveto +6.500207e+01 4.327317e+00 lineto +6.489905e+01 4.322551e+00 lineto +6.479853e+01 4.683582e+00 lineto +6.500413e+01 4.693094e+00 lineto +closepath +gsave +6.186818e-01 6.186818e-01 7.733523e-01 setrgbcolor +fill +grestore +newpath +6.500413e+01 4.693094e+00 moveto +6.500207e+01 4.327317e+00 lineto +6.489905e+01 4.322551e+00 lineto +6.479853e+01 4.683582e+00 lineto +6.500413e+01 4.693094e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.500618e+01 5.097981e+00 moveto +6.500413e+01 4.693094e+00 lineto +6.479853e+01 4.683582e+00 lineto +6.46982e+01 5.083732e+00 lineto +6.500618e+01 5.097981e+00 lineto +closepath +gsave +6.250891e-01 6.250891e-01 7.813613e-01 setrgbcolor +fill +grestore +newpath +6.500618e+01 5.097981e+00 moveto +6.500413e+01 4.693094e+00 lineto +6.479853e+01 4.683582e+00 lineto +6.46982e+01 5.083732e+00 lineto +6.500618e+01 5.097981e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.500823e+01 5.541595e+00 moveto +6.500618e+01 5.097981e+00 lineto +6.46982e+01 5.083732e+00 lineto +6.459815e+01 5.522622e+00 lineto +6.500823e+01 5.541595e+00 lineto +closepath +gsave +6.31435e-01 6.31435e-01 7.892937e-01 setrgbcolor +fill +grestore +newpath +6.500823e+01 5.541595e+00 moveto +6.500618e+01 5.097981e+00 lineto +6.46982e+01 5.083732e+00 lineto +6.459815e+01 5.522622e+00 lineto +6.500823e+01 5.541595e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.501028e+01 6.023515e+00 moveto +6.500823e+01 5.541595e+00 lineto +6.459815e+01 5.522622e+00 lineto +6.449849e+01 5.999836e+00 lineto +6.501028e+01 6.023515e+00 lineto +closepath +gsave +6.377095e-01 6.377095e-01 7.971369e-01 setrgbcolor +fill +grestore +newpath +6.501028e+01 6.023515e+00 moveto +6.500823e+01 5.541595e+00 lineto +6.459815e+01 5.522622e+00 lineto +6.449849e+01 5.999836e+00 lineto +6.501028e+01 6.023515e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.501231e+01 6.543285e+00 moveto +6.501028e+01 6.023515e+00 lineto +6.449849e+01 5.999836e+00 lineto +6.43993e+01 6.514923e+00 lineto +6.501231e+01 6.543285e+00 lineto +closepath +gsave +6.439028e-01 6.439028e-01 8.048785e-01 setrgbcolor +fill +grestore +newpath +6.501231e+01 6.543285e+00 moveto +6.501028e+01 6.023515e+00 lineto +6.449849e+01 5.999836e+00 lineto +6.43993e+01 6.514923e+00 lineto +6.501231e+01 6.543285e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.501433e+01 7.100413e+00 moveto +6.501231e+01 6.543285e+00 lineto +6.43993e+01 6.514923e+00 lineto +6.430067e+01 7.067394e+00 lineto +6.501433e+01 7.100413e+00 lineto +closepath +gsave +6.500054e-01 6.500054e-01 8.125067e-01 setrgbcolor +fill +grestore +newpath +6.501433e+01 7.100413e+00 moveto +6.501231e+01 6.543285e+00 lineto +6.43993e+01 6.514923e+00 lineto +6.430067e+01 7.067394e+00 lineto +6.501433e+01 7.100413e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.501634e+01 7.694371e+00 moveto +6.501433e+01 7.100413e+00 lineto +6.430067e+01 7.067394e+00 lineto +6.420271e+01 7.656728e+00 lineto +6.501634e+01 7.694371e+00 lineto +closepath +gsave +6.560081e-01 6.560081e-01 8.200101e-01 setrgbcolor +fill +grestore +newpath +6.501634e+01 7.694371e+00 moveto +6.501433e+01 7.100413e+00 lineto +6.430067e+01 7.067394e+00 lineto +6.420271e+01 7.656728e+00 lineto +6.501634e+01 7.694371e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.501833e+01 8.324598e+00 moveto +6.501634e+01 7.694371e+00 lineto +6.420271e+01 7.656728e+00 lineto +6.410551e+01 8.282365e+00 lineto +6.501833e+01 8.324598e+00 lineto +closepath +gsave +6.619022e-01 6.619022e-01 8.273777e-01 setrgbcolor +fill +grestore +newpath +6.501833e+01 8.324598e+00 moveto +6.501634e+01 7.694371e+00 lineto +6.420271e+01 7.656728e+00 lineto +6.410551e+01 8.282365e+00 lineto +6.501833e+01 8.324598e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.50203e+01 8.990496e+00 moveto +6.501833e+01 8.324598e+00 lineto +6.410551e+01 8.282365e+00 lineto +6.400915e+01 8.943713e+00 lineto +6.50203e+01 8.990496e+00 lineto +closepath +gsave +6.676792e-01 6.676792e-01 8.34599e-01 setrgbcolor +fill +grestore +newpath +6.50203e+01 8.990496e+00 moveto +6.501833e+01 8.324598e+00 lineto +6.410551e+01 8.282365e+00 lineto +6.400915e+01 8.943713e+00 lineto +6.50203e+01 8.990496e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.502226e+01 9.691435e+00 moveto +6.50203e+01 8.990496e+00 lineto +6.400915e+01 8.943713e+00 lineto +6.391373e+01 9.640147e+00 lineto +6.502226e+01 9.691435e+00 lineto +closepath +gsave +6.733313e-01 6.733313e-01 8.416641e-01 setrgbcolor +fill +grestore +newpath +6.502226e+01 9.691435e+00 moveto +6.50203e+01 8.990496e+00 lineto +6.400915e+01 8.943713e+00 lineto +6.391373e+01 9.640147e+00 lineto +6.502226e+01 9.691435e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.502419e+01 1.042675e+01 moveto +6.502226e+01 9.691435e+00 lineto +6.391373e+01 9.640147e+00 lineto +6.381934e+01 1.037101e+01 lineto +6.502419e+01 1.042675e+01 lineto +closepath +gsave +6.788509e-01 6.788509e-01 8.485636e-01 setrgbcolor +fill +grestore +newpath +6.502419e+01 1.042675e+01 moveto +6.502226e+01 9.691435e+00 lineto +6.391373e+01 9.640147e+00 lineto +6.381934e+01 1.037101e+01 lineto +6.502419e+01 1.042675e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.502611e+01 1.119575e+01 moveto +6.502419e+01 1.042675e+01 lineto +6.381934e+01 1.037101e+01 lineto +6.372606e+01 1.11356e+01 lineto +6.502611e+01 1.119575e+01 lineto +closepath +gsave +6.842308e-01 6.842308e-01 8.552885e-01 setrgbcolor +fill +grestore +newpath +6.502611e+01 1.119575e+01 moveto +6.502419e+01 1.042675e+01 lineto +6.381934e+01 1.037101e+01 lineto +6.372606e+01 1.11356e+01 lineto +6.502611e+01 1.119575e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.502799e+01 1.19977e+01 moveto +6.502611e+01 1.119575e+01 lineto +6.372606e+01 1.11356e+01 lineto +6.3634e+01 1.19332e+01 lineto +6.502799e+01 1.19977e+01 lineto +closepath +gsave +6.894644e-01 6.894644e-01 8.618305e-01 setrgbcolor +fill +grestore +newpath +6.502799e+01 1.19977e+01 moveto +6.502611e+01 1.119575e+01 lineto +6.372606e+01 1.11356e+01 lineto +6.3634e+01 1.19332e+01 lineto +6.502799e+01 1.19977e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.502985e+01 1.283184e+01 moveto +6.502799e+01 1.19977e+01 lineto +6.3634e+01 1.19332e+01 lineto +6.354322e+01 1.276306e+01 lineto +6.502985e+01 1.283184e+01 lineto +closepath +gsave +6.945454e-01 6.945454e-01 8.681817e-01 setrgbcolor +fill +grestore +newpath +6.502985e+01 1.283184e+01 moveto +6.502799e+01 1.19977e+01 lineto +6.3634e+01 1.19332e+01 lineto +6.354322e+01 1.276306e+01 lineto +6.502985e+01 1.283184e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.503168e+01 1.369739e+01 moveto +6.502985e+01 1.283184e+01 lineto +6.354322e+01 1.276306e+01 lineto +6.345383e+01 1.362439e+01 lineto +6.503168e+01 1.369739e+01 lineto +closepath +gsave +6.99468e-01 6.99468e-01 8.74335e-01 setrgbcolor +fill +grestore +newpath +6.503168e+01 1.369739e+01 moveto +6.502985e+01 1.283184e+01 lineto +6.354322e+01 1.276306e+01 lineto +6.345383e+01 1.362439e+01 lineto +6.503168e+01 1.369739e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.503349e+01 1.459352e+01 moveto +6.503168e+01 1.369739e+01 lineto +6.345383e+01 1.362439e+01 lineto +6.33659e+01 1.451637e+01 lineto +6.503349e+01 1.459352e+01 lineto +closepath +gsave +7.042268e-01 7.042268e-01 8.802835e-01 setrgbcolor +fill +grestore +newpath +6.503349e+01 1.459352e+01 moveto +6.503168e+01 1.369739e+01 lineto +6.345383e+01 1.362439e+01 lineto +6.33659e+01 1.451637e+01 lineto +6.503349e+01 1.459352e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.503526e+01 1.551939e+01 moveto +6.503349e+01 1.459352e+01 lineto +6.33659e+01 1.451637e+01 lineto +6.327951e+01 1.543816e+01 lineto +6.503526e+01 1.551939e+01 lineto +closepath +gsave +7.088169e-01 7.088169e-01 8.860211e-01 setrgbcolor +fill +grestore +newpath +6.503526e+01 1.551939e+01 moveto +6.503349e+01 1.459352e+01 lineto +6.33659e+01 1.451637e+01 lineto +6.327951e+01 1.543816e+01 lineto +6.503526e+01 1.551939e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.503699e+01 1.647412e+01 moveto +6.503526e+01 1.551939e+01 lineto +6.327951e+01 1.543816e+01 lineto +6.319476e+01 1.638889e+01 lineto +6.503699e+01 1.647412e+01 lineto +closepath +gsave +7.132337e-01 7.132337e-01 8.915422e-01 setrgbcolor +fill +grestore +newpath +6.503699e+01 1.647412e+01 moveto +6.503526e+01 1.551939e+01 lineto +6.327951e+01 1.543816e+01 lineto +6.319476e+01 1.638889e+01 lineto +6.503699e+01 1.647412e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.50387e+01 1.74568e+01 moveto +6.503699e+01 1.647412e+01 lineto +6.319476e+01 1.638889e+01 lineto +6.311171e+01 1.736765e+01 lineto +6.50387e+01 1.74568e+01 lineto +closepath +gsave +7.174732e-01 7.174732e-01 8.968415e-01 setrgbcolor +fill +grestore +newpath +6.50387e+01 1.74568e+01 moveto +6.503699e+01 1.647412e+01 lineto +6.319476e+01 1.638889e+01 lineto +6.311171e+01 1.736765e+01 lineto +6.50387e+01 1.74568e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.504036e+01 1.846651e+01 moveto +6.50387e+01 1.74568e+01 lineto +6.311171e+01 1.736765e+01 lineto +6.303045e+01 1.837352e+01 lineto +6.504036e+01 1.846651e+01 lineto +closepath +gsave +7.215315e-01 7.215315e-01 9.019144e-01 setrgbcolor +fill +grestore +newpath +6.504036e+01 1.846651e+01 moveto +6.50387e+01 1.74568e+01 lineto +6.311171e+01 1.736765e+01 lineto +6.303045e+01 1.837352e+01 lineto +6.504036e+01 1.846651e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.504199e+01 1.950229e+01 moveto +6.504036e+01 1.846651e+01 lineto +6.303045e+01 1.837352e+01 lineto +6.295106e+01 1.940555e+01 lineto +6.504199e+01 1.950229e+01 lineto +closepath +gsave +7.254053e-01 7.254053e-01 9.067566e-01 setrgbcolor +fill +grestore +newpath +6.504199e+01 1.950229e+01 moveto +6.504036e+01 1.846651e+01 lineto +6.303045e+01 1.837352e+01 lineto +6.295106e+01 1.940555e+01 lineto +6.504199e+01 1.950229e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.504358e+01 2.056315e+01 moveto +6.504199e+01 1.950229e+01 lineto +6.295106e+01 1.940555e+01 lineto +6.287361e+01 2.046276e+01 lineto +6.504358e+01 2.056315e+01 lineto +closepath +gsave +7.290916e-01 7.290916e-01 9.113645e-01 setrgbcolor +fill +grestore +newpath +6.504358e+01 2.056315e+01 moveto +6.504199e+01 1.950229e+01 lineto +6.295106e+01 1.940555e+01 lineto +6.287361e+01 2.046276e+01 lineto +6.504358e+01 2.056315e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.504512e+01 2.16481e+01 moveto +6.504358e+01 2.056315e+01 lineto +6.287361e+01 2.046276e+01 lineto +6.279817e+01 2.154414e+01 lineto +6.504512e+01 2.16481e+01 lineto +closepath +gsave +7.325877e-01 7.325877e-01 9.157347e-01 setrgbcolor +fill +grestore +newpath +6.504512e+01 2.16481e+01 moveto +6.504358e+01 2.056315e+01 lineto +6.287361e+01 2.046276e+01 lineto +6.279817e+01 2.154414e+01 lineto +6.504512e+01 2.16481e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.504662e+01 2.275611e+01 moveto +6.504512e+01 2.16481e+01 lineto +6.279817e+01 2.154414e+01 lineto +6.272481e+01 2.264869e+01 lineto +6.504662e+01 2.275611e+01 lineto +closepath +gsave +7.358913e-01 7.358913e-01 9.198642e-01 setrgbcolor +fill +grestore +newpath +6.504662e+01 2.275611e+01 moveto +6.504512e+01 2.16481e+01 lineto +6.279817e+01 2.154414e+01 lineto +6.272481e+01 2.264869e+01 lineto +6.504662e+01 2.275611e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.504808e+01 2.388612e+01 moveto +6.504662e+01 2.275611e+01 lineto +6.272481e+01 2.264869e+01 lineto +6.265361e+01 2.377534e+01 lineto +6.504808e+01 2.388612e+01 lineto +closepath +gsave +7.390003e-01 7.390003e-01 9.237504e-01 setrgbcolor +fill +grestore +newpath +6.504808e+01 2.388612e+01 moveto +6.504662e+01 2.275611e+01 lineto +6.272481e+01 2.264869e+01 lineto +6.265361e+01 2.377534e+01 lineto +6.504808e+01 2.388612e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.50495e+01 2.503707e+01 moveto +6.504808e+01 2.388612e+01 lineto +6.265361e+01 2.377534e+01 lineto +6.258463e+01 2.492303e+01 lineto +6.50495e+01 2.503707e+01 lineto +closepath +gsave +7.419129e-01 7.419129e-01 9.273912e-01 setrgbcolor +fill +grestore +newpath +6.50495e+01 2.503707e+01 moveto +6.504808e+01 2.388612e+01 lineto +6.265361e+01 2.377534e+01 lineto +6.258463e+01 2.492303e+01 lineto +6.50495e+01 2.503707e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.505086e+01 2.620787e+01 moveto +6.50495e+01 2.503707e+01 lineto +6.258463e+01 2.492303e+01 lineto +6.251794e+01 2.609068e+01 lineto +6.505086e+01 2.620787e+01 lineto +closepath +gsave +7.446276e-01 7.446276e-01 9.307845e-01 setrgbcolor +fill +grestore +newpath +6.505086e+01 2.620787e+01 moveto +6.50495e+01 2.503707e+01 lineto +6.258463e+01 2.492303e+01 lineto +6.251794e+01 2.609068e+01 lineto +6.505086e+01 2.620787e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.505218e+01 2.739741e+01 moveto +6.505086e+01 2.620787e+01 lineto +6.251794e+01 2.609068e+01 lineto +6.24536e+01 2.727718e+01 lineto +6.505218e+01 2.739741e+01 lineto +closepath +gsave +7.471431e-01 7.471431e-01 9.339289e-01 setrgbcolor +fill +grestore +newpath +6.505218e+01 2.739741e+01 moveto +6.505086e+01 2.620787e+01 lineto +6.251794e+01 2.609068e+01 lineto +6.24536e+01 2.727718e+01 lineto +6.505218e+01 2.739741e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.505345e+01 2.860456e+01 moveto +6.505218e+01 2.739741e+01 lineto +6.24536e+01 2.727718e+01 lineto +6.239167e+01 2.848141e+01 lineto +6.505345e+01 2.860456e+01 lineto +closepath +gsave +7.494582e-01 7.494582e-01 9.368228e-01 setrgbcolor +fill +grestore +newpath +6.505345e+01 2.860456e+01 moveto +6.505218e+01 2.739741e+01 lineto +6.24536e+01 2.727718e+01 lineto +6.239167e+01 2.848141e+01 lineto +6.505345e+01 2.860456e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.505467e+01 2.982818e+01 moveto +6.505345e+01 2.860456e+01 lineto +6.239167e+01 2.848141e+01 lineto +6.23322e+01 2.970222e+01 lineto +6.505467e+01 2.982818e+01 lineto +closepath +gsave +7.515721e-01 7.515721e-01 9.394652e-01 setrgbcolor +fill +grestore +newpath +6.505467e+01 2.982818e+01 moveto +6.505345e+01 2.860456e+01 lineto +6.239167e+01 2.848141e+01 lineto +6.23322e+01 2.970222e+01 lineto +6.505467e+01 2.982818e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.505584e+01 3.106712e+01 moveto +6.505467e+01 2.982818e+01 lineto +6.23322e+01 2.970222e+01 lineto +6.227527e+01 3.093847e+01 lineto +6.505584e+01 3.106712e+01 lineto +closepath +gsave +7.53484e-01 7.53484e-01 9.418551e-01 setrgbcolor +fill +grestore +newpath +6.505584e+01 3.106712e+01 moveto +6.505467e+01 2.982818e+01 lineto +6.23322e+01 2.970222e+01 lineto +6.227527e+01 3.093847e+01 lineto +6.505584e+01 3.106712e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.505695e+01 3.232019e+01 moveto +6.505584e+01 3.106712e+01 lineto +6.227527e+01 3.093847e+01 lineto +6.222091e+01 3.218897e+01 lineto +6.505695e+01 3.232019e+01 lineto +closepath +gsave +7.551933e-01 7.551933e-01 9.439917e-01 setrgbcolor +fill +grestore +newpath +6.505695e+01 3.232019e+01 moveto +6.505584e+01 3.106712e+01 lineto +6.227527e+01 3.093847e+01 lineto +6.222091e+01 3.218897e+01 lineto +6.505695e+01 3.232019e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.505801e+01 3.358621e+01 moveto +6.505695e+01 3.232019e+01 lineto +6.222091e+01 3.218897e+01 lineto +6.216919e+01 3.345256e+01 lineto +6.505801e+01 3.358621e+01 lineto +closepath +gsave +7.566995e-01 7.566995e-01 9.458744e-01 setrgbcolor +fill +grestore +newpath +6.505801e+01 3.358621e+01 moveto +6.505695e+01 3.232019e+01 lineto +6.222091e+01 3.218897e+01 lineto +6.216919e+01 3.345256e+01 lineto +6.505801e+01 3.358621e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.505902e+01 3.486399e+01 moveto +6.505801e+01 3.358621e+01 lineto +6.216919e+01 3.345256e+01 lineto +6.212014e+01 3.472802e+01 lineto +6.505902e+01 3.486399e+01 lineto +closepath +gsave +7.580023e-01 7.580023e-01 9.475028e-01 setrgbcolor +fill +grestore +newpath +6.505902e+01 3.486399e+01 moveto +6.505801e+01 3.358621e+01 lineto +6.216919e+01 3.345256e+01 lineto +6.212014e+01 3.472802e+01 lineto +6.505902e+01 3.486399e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.505996e+01 3.615231e+01 moveto +6.505902e+01 3.486399e+01 lineto +6.212014e+01 3.472802e+01 lineto +6.207382e+01 3.601415e+01 lineto +6.505996e+01 3.615231e+01 lineto +closepath +gsave +7.591012e-01 7.591012e-01 9.488765e-01 setrgbcolor +fill +grestore +newpath +6.505996e+01 3.615231e+01 moveto +6.505902e+01 3.486399e+01 lineto +6.212014e+01 3.472802e+01 lineto +6.207382e+01 3.601415e+01 lineto +6.505996e+01 3.615231e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.506086e+01 3.744996e+01 moveto +6.505996e+01 3.615231e+01 lineto +6.207382e+01 3.601415e+01 lineto +6.203028e+01 3.730974e+01 lineto +6.506086e+01 3.744996e+01 lineto +closepath +gsave +7.599961e-01 7.599961e-01 9.499952e-01 setrgbcolor +fill +grestore +newpath +6.506086e+01 3.744996e+01 moveto +6.505996e+01 3.615231e+01 lineto +6.207382e+01 3.601415e+01 lineto +6.203028e+01 3.730974e+01 lineto +6.506086e+01 3.744996e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.506169e+01 3.87557e+01 moveto +6.506086e+01 3.744996e+01 lineto +6.203028e+01 3.730974e+01 lineto +6.198954e+01 3.861356e+01 lineto +6.506169e+01 3.87557e+01 lineto +closepath +gsave +7.606869e-01 7.606869e-01 9.508586e-01 setrgbcolor +fill +grestore +newpath +6.506169e+01 3.87557e+01 moveto +6.506086e+01 3.744996e+01 lineto +6.203028e+01 3.730974e+01 lineto +6.198954e+01 3.861356e+01 lineto +6.506169e+01 3.87557e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.506247e+01 4.00683e+01 moveto +6.506169e+01 3.87557e+01 lineto +6.198954e+01 3.861356e+01 lineto +6.195166e+01 3.992437e+01 lineto +6.506247e+01 4.00683e+01 lineto +closepath +gsave +7.611734e-01 7.611734e-01 9.514667e-01 setrgbcolor +fill +grestore +newpath +6.506247e+01 4.00683e+01 moveto +6.506169e+01 3.87557e+01 lineto +6.198954e+01 3.861356e+01 lineto +6.195166e+01 3.992437e+01 lineto +6.506247e+01 4.00683e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.506319e+01 4.138651e+01 moveto +6.506247e+01 4.00683e+01 lineto +6.195166e+01 3.992437e+01 lineto +6.191666e+01 4.124093e+01 lineto +6.506319e+01 4.138651e+01 lineto +closepath +gsave +7.614555e-01 7.614555e-01 9.518194e-01 setrgbcolor +fill +grestore +newpath +6.506319e+01 4.138651e+01 moveto +6.506247e+01 4.00683e+01 lineto +6.195166e+01 3.992437e+01 lineto +6.191666e+01 4.124093e+01 lineto +6.506319e+01 4.138651e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.489905e+01 4.322551e+00 moveto +6.499967e+01 4.00098e+00 lineto +6.499934e+01 4.000959e+00 lineto +6.479666e+01 4.31592e+00 lineto +6.489905e+01 4.322551e+00 lineto +closepath +gsave +6.123855e-01 6.123855e-01 7.654819e-01 setrgbcolor +fill +grestore +newpath +6.489905e+01 4.322551e+00 moveto +6.499967e+01 4.00098e+00 lineto +6.499934e+01 4.000959e+00 lineto +6.479666e+01 4.31592e+00 lineto +6.489905e+01 4.322551e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.479853e+01 4.683582e+00 moveto +6.489905e+01 4.322551e+00 lineto +6.479666e+01 4.31592e+00 lineto +6.459418e+01 4.670347e+00 lineto +6.479853e+01 4.683582e+00 lineto +closepath +gsave +6.191672e-01 6.191672e-01 7.73959e-01 setrgbcolor +fill +grestore +newpath +6.479853e+01 4.683582e+00 moveto +6.489905e+01 4.322551e+00 lineto +6.479666e+01 4.31592e+00 lineto +6.459418e+01 4.670347e+00 lineto +6.479853e+01 4.683582e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.46982e+01 5.083732e+00 moveto +6.479853e+01 4.683582e+00 lineto +6.459418e+01 4.670347e+00 lineto +6.439208e+01 5.063906e+00 lineto +6.46982e+01 5.083732e+00 lineto +closepath +gsave +6.258999e-01 6.258999e-01 7.823749e-01 setrgbcolor +fill +grestore +newpath +6.46982e+01 5.083732e+00 moveto +6.479853e+01 4.683582e+00 lineto +6.459418e+01 4.670347e+00 lineto +6.439208e+01 5.063906e+00 lineto +6.46982e+01 5.083732e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.459815e+01 5.522622e+00 moveto +6.46982e+01 5.083732e+00 lineto +6.439208e+01 5.063906e+00 lineto +6.419055e+01 5.496224e+00 lineto +6.459815e+01 5.522622e+00 lineto +closepath +gsave +6.325725e-01 6.325725e-01 7.907156e-01 setrgbcolor +fill +grestore +newpath +6.459815e+01 5.522622e+00 moveto +6.46982e+01 5.083732e+00 lineto +6.439208e+01 5.063906e+00 lineto +6.419055e+01 5.496224e+00 lineto +6.459815e+01 5.522622e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.449849e+01 5.999836e+00 moveto +6.459815e+01 5.522622e+00 lineto +6.419055e+01 5.496224e+00 lineto +6.398979e+01 5.96689e+00 lineto +6.449849e+01 5.999836e+00 lineto +closepath +gsave +6.391739e-01 6.391739e-01 7.989674e-01 setrgbcolor +fill +grestore +newpath +6.449849e+01 5.999836e+00 moveto +6.459815e+01 5.522622e+00 lineto +6.419055e+01 5.496224e+00 lineto +6.398979e+01 5.96689e+00 lineto +6.449849e+01 5.999836e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.43993e+01 6.514923e+00 moveto +6.449849e+01 5.999836e+00 lineto +6.398979e+01 5.96689e+00 lineto +6.378999e+01 6.475461e+00 lineto +6.43993e+01 6.514923e+00 lineto +closepath +gsave +6.456936e-01 6.456936e-01 8.07117e-01 setrgbcolor +fill +grestore +newpath +6.43993e+01 6.514923e+00 moveto +6.449849e+01 5.999836e+00 lineto +6.398979e+01 5.96689e+00 lineto +6.378999e+01 6.475461e+00 lineto +6.43993e+01 6.514923e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.430067e+01 7.067394e+00 moveto +6.43993e+01 6.514923e+00 lineto +6.378999e+01 6.475461e+00 lineto +6.359133e+01 7.021454e+00 lineto +6.430067e+01 7.067394e+00 lineto +closepath +gsave +6.521211e-01 6.521211e-01 8.151514e-01 setrgbcolor +fill +grestore +newpath +6.430067e+01 7.067394e+00 moveto +6.43993e+01 6.514923e+00 lineto +6.378999e+01 6.475461e+00 lineto +6.359133e+01 7.021454e+00 lineto +6.430067e+01 7.067394e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.420271e+01 7.656728e+00 moveto +6.430067e+01 7.067394e+00 lineto +6.359133e+01 7.021454e+00 lineto +6.339401e+01 7.604352e+00 lineto +6.420271e+01 7.656728e+00 lineto +closepath +gsave +6.584466e-01 6.584466e-01 8.230583e-01 setrgbcolor +fill +grestore +newpath +6.420271e+01 7.656728e+00 moveto +6.430067e+01 7.067394e+00 lineto +6.359133e+01 7.021454e+00 lineto +6.339401e+01 7.604352e+00 lineto +6.420271e+01 7.656728e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.410551e+01 8.282365e+00 moveto +6.420271e+01 7.656728e+00 lineto +6.339401e+01 7.604352e+00 lineto +6.31982e+01 8.223604e+00 lineto +6.410551e+01 8.282365e+00 lineto +closepath +gsave +6.646607e-01 6.646607e-01 8.308258e-01 setrgbcolor +fill +grestore +newpath +6.410551e+01 8.282365e+00 moveto +6.420271e+01 7.656728e+00 lineto +6.339401e+01 7.604352e+00 lineto +6.31982e+01 8.223604e+00 lineto +6.410551e+01 8.282365e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.400915e+01 8.943713e+00 moveto +6.410551e+01 8.282365e+00 lineto +6.31982e+01 8.223604e+00 lineto +6.30041e+01 8.878622e+00 lineto +6.400915e+01 8.943713e+00 lineto +closepath +gsave +6.707541e-01 6.707541e-01 8.384427e-01 setrgbcolor +fill +grestore +newpath +6.400915e+01 8.943713e+00 moveto +6.410551e+01 8.282365e+00 lineto +6.31982e+01 8.223604e+00 lineto +6.30041e+01 8.878622e+00 lineto +6.400915e+01 8.943713e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.391373e+01 9.640147e+00 moveto +6.400915e+01 8.943713e+00 lineto +6.30041e+01 8.878622e+00 lineto +6.28119e+01 9.568788e+00 lineto +6.391373e+01 9.640147e+00 lineto +closepath +gsave +6.767184e-01 6.767184e-01 8.458981e-01 setrgbcolor +fill +grestore +newpath +6.391373e+01 9.640147e+00 moveto +6.400915e+01 8.943713e+00 lineto +6.30041e+01 8.878622e+00 lineto +6.28119e+01 9.568788e+00 lineto +6.391373e+01 9.640147e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.381934e+01 1.037101e+01 moveto +6.391373e+01 9.640147e+00 lineto +6.28119e+01 9.568788e+00 lineto +6.262176e+01 1.029345e+01 lineto +6.381934e+01 1.037101e+01 lineto +closepath +gsave +6.825455e-01 6.825455e-01 8.531818e-01 setrgbcolor +fill +grestore +newpath +6.381934e+01 1.037101e+01 moveto +6.391373e+01 9.640147e+00 lineto +6.28119e+01 9.568788e+00 lineto +6.262176e+01 1.029345e+01 lineto +6.381934e+01 1.037101e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.372606e+01 1.11356e+01 moveto +6.381934e+01 1.037101e+01 lineto +6.262176e+01 1.029345e+01 lineto +6.243388e+01 1.105191e+01 lineto +6.372606e+01 1.11356e+01 lineto +closepath +gsave +6.882275e-01 6.882275e-01 8.602844e-01 setrgbcolor +fill +grestore +newpath +6.372606e+01 1.11356e+01 moveto +6.381934e+01 1.037101e+01 lineto +6.262176e+01 1.029345e+01 lineto +6.243388e+01 1.105191e+01 lineto +6.372606e+01 1.11356e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.3634e+01 1.19332e+01 moveto +6.372606e+01 1.11356e+01 lineto +6.243388e+01 1.105191e+01 lineto +6.224842e+01 1.184347e+01 lineto +6.3634e+01 1.19332e+01 lineto +closepath +gsave +6.937574e-01 6.937574e-01 8.671968e-01 setrgbcolor +fill +grestore +newpath +6.3634e+01 1.19332e+01 moveto +6.372606e+01 1.11356e+01 lineto +6.243388e+01 1.105191e+01 lineto +6.224842e+01 1.184347e+01 lineto +6.3634e+01 1.19332e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.354322e+01 1.276306e+01 moveto +6.3634e+01 1.19332e+01 lineto +6.224842e+01 1.184347e+01 lineto +6.206557e+01 1.266736e+01 lineto +6.354322e+01 1.276306e+01 lineto +closepath +gsave +6.991285e-01 6.991285e-01 8.739107e-01 setrgbcolor +fill +grestore +newpath +6.354322e+01 1.276306e+01 moveto +6.3634e+01 1.19332e+01 lineto +6.224842e+01 1.184347e+01 lineto +6.206557e+01 1.266736e+01 lineto +6.354322e+01 1.276306e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.345383e+01 1.362439e+01 moveto +6.354322e+01 1.276306e+01 lineto +6.206557e+01 1.266736e+01 lineto +6.18855e+01 1.352282e+01 lineto +6.345383e+01 1.362439e+01 lineto +closepath +gsave +7.043346e-01 7.043346e-01 8.804183e-01 setrgbcolor +fill +grestore +newpath +6.345383e+01 1.362439e+01 moveto +6.354322e+01 1.276306e+01 lineto +6.206557e+01 1.266736e+01 lineto +6.18855e+01 1.352282e+01 lineto +6.345383e+01 1.362439e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.33659e+01 1.451637e+01 moveto +6.345383e+01 1.362439e+01 lineto +6.18855e+01 1.352282e+01 lineto +6.170838e+01 1.440902e+01 lineto +6.33659e+01 1.451637e+01 lineto +closepath +gsave +7.0937e-01 7.0937e-01 8.867125e-01 setrgbcolor +fill +grestore +newpath +6.33659e+01 1.451637e+01 moveto +6.345383e+01 1.362439e+01 lineto +6.18855e+01 1.352282e+01 lineto +6.170838e+01 1.440902e+01 lineto +6.33659e+01 1.451637e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.327951e+01 1.543816e+01 moveto +6.33659e+01 1.451637e+01 lineto +6.170838e+01 1.440902e+01 lineto +6.153438e+01 1.532514e+01 lineto +6.327951e+01 1.543816e+01 lineto +closepath +gsave +7.142294e-01 7.142294e-01 8.927867e-01 setrgbcolor +fill +grestore +newpath +6.327951e+01 1.543816e+01 moveto +6.33659e+01 1.451637e+01 lineto +6.170838e+01 1.440902e+01 lineto +6.153438e+01 1.532514e+01 lineto +6.327951e+01 1.543816e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.319476e+01 1.638889e+01 moveto +6.327951e+01 1.543816e+01 lineto +6.153438e+01 1.532514e+01 lineto +6.136365e+01 1.62703e+01 lineto +6.319476e+01 1.638889e+01 lineto +closepath +gsave +7.18908e-01 7.18908e-01 8.98635e-01 setrgbcolor +fill +grestore +newpath +6.319476e+01 1.638889e+01 moveto +6.327951e+01 1.543816e+01 lineto +6.153438e+01 1.532514e+01 lineto +6.136365e+01 1.62703e+01 lineto +6.319476e+01 1.638889e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.311171e+01 1.736765e+01 moveto +6.319476e+01 1.638889e+01 lineto +6.136365e+01 1.62703e+01 lineto +6.119637e+01 1.72436e+01 lineto +6.311171e+01 1.736765e+01 lineto +closepath +gsave +7.234016e-01 7.234016e-01 9.04252e-01 setrgbcolor +fill +grestore +newpath +6.311171e+01 1.736765e+01 moveto +6.319476e+01 1.638889e+01 lineto +6.136365e+01 1.62703e+01 lineto +6.119637e+01 1.72436e+01 lineto +6.311171e+01 1.736765e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.303045e+01 1.837352e+01 moveto +6.311171e+01 1.736765e+01 lineto +6.119637e+01 1.72436e+01 lineto +6.103269e+01 1.824414e+01 lineto +6.303045e+01 1.837352e+01 lineto +closepath +gsave +7.277063e-01 7.277063e-01 9.096328e-01 setrgbcolor +fill +grestore +newpath +6.303045e+01 1.837352e+01 moveto +6.311171e+01 1.736765e+01 lineto +6.119637e+01 1.72436e+01 lineto +6.103269e+01 1.824414e+01 lineto +6.303045e+01 1.837352e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.295106e+01 1.940555e+01 moveto +6.303045e+01 1.837352e+01 lineto +6.103269e+01 1.824414e+01 lineto +6.087277e+01 1.927095e+01 lineto +6.295106e+01 1.940555e+01 lineto +closepath +gsave +7.318185e-01 7.318185e-01 9.147731e-01 setrgbcolor +fill +grestore +newpath +6.295106e+01 1.940555e+01 moveto +6.303045e+01 1.837352e+01 lineto +6.103269e+01 1.824414e+01 lineto +6.087277e+01 1.927095e+01 lineto +6.295106e+01 1.940555e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.287361e+01 2.046276e+01 moveto +6.295106e+01 1.940555e+01 lineto +6.087277e+01 1.927095e+01 lineto +6.071675e+01 2.032307e+01 lineto +6.287361e+01 2.046276e+01 lineto +closepath +gsave +7.357352e-01 7.357352e-01 9.196691e-01 setrgbcolor +fill +grestore +newpath +6.287361e+01 2.046276e+01 moveto +6.295106e+01 1.940555e+01 lineto +6.087277e+01 1.927095e+01 lineto +6.071675e+01 2.032307e+01 lineto +6.287361e+01 2.046276e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.279817e+01 2.154414e+01 moveto +6.287361e+01 2.046276e+01 lineto +6.071675e+01 2.032307e+01 lineto +6.056479e+01 2.13995e+01 lineto +6.279817e+01 2.154414e+01 lineto +closepath +gsave +7.394538e-01 7.394538e-01 9.243173e-01 setrgbcolor +fill +grestore +newpath +6.279817e+01 2.154414e+01 moveto +6.287361e+01 2.046276e+01 lineto +6.071675e+01 2.032307e+01 lineto +6.056479e+01 2.13995e+01 lineto +6.279817e+01 2.154414e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.272481e+01 2.264869e+01 moveto +6.279817e+01 2.154414e+01 lineto +6.056479e+01 2.13995e+01 lineto +6.041703e+01 2.249922e+01 lineto +6.272481e+01 2.264869e+01 lineto +closepath +gsave +7.429719e-01 7.429719e-01 9.287149e-01 setrgbcolor +fill +grestore +newpath +6.272481e+01 2.264869e+01 moveto +6.279817e+01 2.154414e+01 lineto +6.056479e+01 2.13995e+01 lineto +6.041703e+01 2.249922e+01 lineto +6.272481e+01 2.264869e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.265361e+01 2.377534e+01 moveto +6.272481e+01 2.264869e+01 lineto +6.041703e+01 2.249922e+01 lineto +6.027361e+01 2.36212e+01 lineto +6.265361e+01 2.377534e+01 lineto +closepath +gsave +7.462874e-01 7.462874e-01 9.328593e-01 setrgbcolor +fill +grestore +newpath +6.265361e+01 2.377534e+01 moveto +6.272481e+01 2.264869e+01 lineto +6.041703e+01 2.249922e+01 lineto +6.027361e+01 2.36212e+01 lineto +6.265361e+01 2.377534e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.258463e+01 2.492303e+01 moveto +6.265361e+01 2.377534e+01 lineto +6.027361e+01 2.36212e+01 lineto +6.013466e+01 2.476436e+01 lineto +6.258463e+01 2.492303e+01 lineto +closepath +gsave +7.493987e-01 7.493987e-01 9.367484e-01 setrgbcolor +fill +grestore +newpath +6.258463e+01 2.492303e+01 moveto +6.265361e+01 2.377534e+01 lineto +6.027361e+01 2.36212e+01 lineto +6.013466e+01 2.476436e+01 lineto +6.258463e+01 2.492303e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.251794e+01 2.609068e+01 moveto +6.258463e+01 2.492303e+01 lineto +6.013466e+01 2.476436e+01 lineto +6.000032e+01 2.592763e+01 lineto +6.251794e+01 2.609068e+01 lineto +closepath +gsave +7.523043e-01 7.523043e-01 9.403804e-01 setrgbcolor +fill +grestore +newpath +6.251794e+01 2.609068e+01 moveto +6.258463e+01 2.492303e+01 lineto +6.013466e+01 2.476436e+01 lineto +6.000032e+01 2.592763e+01 lineto +6.251794e+01 2.609068e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.24536e+01 2.727718e+01 moveto +6.251794e+01 2.609068e+01 lineto +6.000032e+01 2.592763e+01 lineto +5.987071e+01 2.71099e+01 lineto +6.24536e+01 2.727718e+01 lineto +closepath +gsave +7.550031e-01 7.550031e-01 9.437538e-01 setrgbcolor +fill +grestore +newpath +6.24536e+01 2.727718e+01 moveto +6.251794e+01 2.609068e+01 lineto +6.000032e+01 2.592763e+01 lineto +5.987071e+01 2.71099e+01 lineto +6.24536e+01 2.727718e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.239167e+01 2.848141e+01 moveto +6.24536e+01 2.727718e+01 lineto +5.987071e+01 2.71099e+01 lineto +5.974596e+01 2.831006e+01 lineto +6.239167e+01 2.848141e+01 lineto +closepath +gsave +7.574939e-01 7.574939e-01 9.468674e-01 setrgbcolor +fill +grestore +newpath +6.239167e+01 2.848141e+01 moveto +6.24536e+01 2.727718e+01 lineto +5.987071e+01 2.71099e+01 lineto +5.974596e+01 2.831006e+01 lineto +6.239167e+01 2.848141e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.23322e+01 2.970222e+01 moveto +6.239167e+01 2.848141e+01 lineto +5.974596e+01 2.831006e+01 lineto +5.962619e+01 2.952697e+01 lineto +6.23322e+01 2.970222e+01 lineto +closepath +gsave +7.597761e-01 7.597761e-01 9.497201e-01 setrgbcolor +fill +grestore +newpath +6.23322e+01 2.970222e+01 moveto +6.239167e+01 2.848141e+01 lineto +5.974596e+01 2.831006e+01 lineto +5.962619e+01 2.952697e+01 lineto +6.23322e+01 2.970222e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.227527e+01 3.093847e+01 moveto +6.23322e+01 2.970222e+01 lineto +5.962619e+01 2.952697e+01 lineto +5.95115e+01 3.075948e+01 lineto +6.227527e+01 3.093847e+01 lineto +closepath +gsave +7.618491e-01 7.618491e-01 9.523113e-01 setrgbcolor +fill +grestore +newpath +6.227527e+01 3.093847e+01 moveto +6.23322e+01 2.970222e+01 lineto +5.962619e+01 2.952697e+01 lineto +5.95115e+01 3.075948e+01 lineto +6.227527e+01 3.093847e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.222091e+01 3.218897e+01 moveto +6.227527e+01 3.093847e+01 lineto +5.95115e+01 3.075948e+01 lineto +5.940201e+01 3.200641e+01 lineto +6.222091e+01 3.218897e+01 lineto +closepath +gsave +7.637123e-01 7.637123e-01 9.546403e-01 setrgbcolor +fill +grestore +newpath +6.222091e+01 3.218897e+01 moveto +6.227527e+01 3.093847e+01 lineto +5.95115e+01 3.075948e+01 lineto +5.940201e+01 3.200641e+01 lineto +6.222091e+01 3.218897e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.216919e+01 3.345256e+01 moveto +6.222091e+01 3.218897e+01 lineto +5.940201e+01 3.200641e+01 lineto +5.929782e+01 3.326659e+01 lineto +6.216919e+01 3.345256e+01 lineto +closepath +gsave +7.653654e-01 7.653654e-01 9.567068e-01 setrgbcolor +fill +grestore +newpath +6.216919e+01 3.345256e+01 moveto +6.222091e+01 3.218897e+01 lineto +5.940201e+01 3.200641e+01 lineto +5.929782e+01 3.326659e+01 lineto +6.216919e+01 3.345256e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.212014e+01 3.472802e+01 moveto +6.216919e+01 3.345256e+01 lineto +5.929782e+01 3.326659e+01 lineto +5.919902e+01 3.453883e+01 lineto +6.212014e+01 3.472802e+01 lineto +closepath +gsave +7.668082e-01 7.668082e-01 9.585103e-01 setrgbcolor +fill +grestore +newpath +6.212014e+01 3.472802e+01 moveto +6.216919e+01 3.345256e+01 lineto +5.929782e+01 3.326659e+01 lineto +5.919902e+01 3.453883e+01 lineto +6.212014e+01 3.472802e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.207382e+01 3.601415e+01 moveto +6.212014e+01 3.472802e+01 lineto +5.919902e+01 3.453883e+01 lineto +5.910573e+01 3.582193e+01 lineto +6.207382e+01 3.601415e+01 lineto +closepath +gsave +7.680405e-01 7.680405e-01 9.600507e-01 setrgbcolor +fill +grestore +newpath +6.207382e+01 3.601415e+01 moveto +6.212014e+01 3.472802e+01 lineto +5.919902e+01 3.453883e+01 lineto +5.910573e+01 3.582193e+01 lineto +6.207382e+01 3.601415e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.203028e+01 3.730974e+01 moveto +6.207382e+01 3.601415e+01 lineto +5.910573e+01 3.582193e+01 lineto +5.901801e+01 3.711465e+01 lineto +6.203028e+01 3.730974e+01 lineto +closepath +gsave +7.690622e-01 7.690622e-01 9.613278e-01 setrgbcolor +fill +grestore +newpath +6.203028e+01 3.730974e+01 moveto +6.207382e+01 3.601415e+01 lineto +5.910573e+01 3.582193e+01 lineto +5.901801e+01 3.711465e+01 lineto +6.203028e+01 3.730974e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.198954e+01 3.861356e+01 moveto +6.203028e+01 3.730974e+01 lineto +5.901801e+01 3.711465e+01 lineto +5.893595e+01 3.841579e+01 lineto +6.198954e+01 3.861356e+01 lineto +closepath +gsave +7.698732e-01 7.698732e-01 9.623416e-01 setrgbcolor +fill +grestore +newpath +6.198954e+01 3.861356e+01 moveto +6.203028e+01 3.730974e+01 lineto +5.901801e+01 3.711465e+01 lineto +5.893595e+01 3.841579e+01 lineto +6.198954e+01 3.861356e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.195166e+01 3.992437e+01 moveto +6.198954e+01 3.861356e+01 lineto +5.893595e+01 3.841579e+01 lineto +5.885964e+01 3.972412e+01 lineto +6.195166e+01 3.992437e+01 lineto +closepath +gsave +7.704736e-01 7.704736e-01 9.630919e-01 setrgbcolor +fill +grestore +newpath +6.195166e+01 3.992437e+01 moveto +6.198954e+01 3.861356e+01 lineto +5.893595e+01 3.841579e+01 lineto +5.885964e+01 3.972412e+01 lineto +6.195166e+01 3.992437e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.191666e+01 4.124093e+01 moveto +6.195166e+01 3.992437e+01 lineto +5.885964e+01 3.972412e+01 lineto +5.878914e+01 4.103838e+01 lineto +6.191666e+01 4.124093e+01 lineto +closepath +gsave +7.708632e-01 7.708632e-01 9.635789e-01 setrgbcolor +fill +grestore +newpath +6.191666e+01 4.124093e+01 moveto +6.195166e+01 3.992437e+01 lineto +5.885964e+01 3.972412e+01 lineto +5.878914e+01 4.103838e+01 lineto +6.191666e+01 4.124093e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.479666e+01 4.31592e+00 moveto +6.499934e+01 4.000959e+00 lineto +6.499901e+01 4.000931e+00 lineto +6.469552e+01 4.307464e+00 lineto +6.479666e+01 4.31592e+00 lineto +closepath +gsave +6.125261e-01 6.125261e-01 7.656576e-01 setrgbcolor +fill +grestore +newpath +6.479666e+01 4.31592e+00 moveto +6.499934e+01 4.000959e+00 lineto +6.499901e+01 4.000931e+00 lineto +6.469552e+01 4.307464e+00 lineto +6.479666e+01 4.31592e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.459418e+01 4.670347e+00 moveto +6.479666e+01 4.31592e+00 lineto +6.469552e+01 4.307464e+00 lineto +6.439232e+01 4.653471e+00 lineto +6.459418e+01 4.670347e+00 lineto +closepath +gsave +6.19589e-01 6.19589e-01 7.744862e-01 setrgbcolor +fill +grestore +newpath +6.459418e+01 4.670347e+00 moveto +6.479666e+01 4.31592e+00 lineto +6.469552e+01 4.307464e+00 lineto +6.439232e+01 4.653471e+00 lineto +6.459418e+01 4.670347e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.439208e+01 5.063906e+00 moveto +6.459418e+01 4.670347e+00 lineto +6.439232e+01 4.653471e+00 lineto +6.40897e+01 5.038626e+00 lineto +6.439208e+01 5.063906e+00 lineto +closepath +gsave +6.266048e-01 6.266048e-01 7.83256e-01 setrgbcolor +fill +grestore +newpath +6.439208e+01 5.063906e+00 moveto +6.459418e+01 4.670347e+00 lineto +6.439232e+01 4.653471e+00 lineto +6.40897e+01 5.038626e+00 lineto +6.439208e+01 5.063906e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.419055e+01 5.496224e+00 moveto +6.439208e+01 5.063906e+00 lineto +6.40897e+01 5.038626e+00 lineto +6.378794e+01 5.462563e+00 lineto +6.419055e+01 5.496224e+00 lineto +closepath +gsave +6.335614e-01 6.335614e-01 7.919517e-01 setrgbcolor +fill +grestore +newpath +6.419055e+01 5.496224e+00 moveto +6.439208e+01 5.063906e+00 lineto +6.40897e+01 5.038626e+00 lineto +6.378794e+01 5.462563e+00 lineto +6.419055e+01 5.496224e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.398979e+01 5.96689e+00 moveto +6.419055e+01 5.496224e+00 lineto +6.378794e+01 5.462563e+00 lineto +6.348732e+01 5.924881e+00 lineto +6.398979e+01 5.96689e+00 lineto +closepath +gsave +6.40447e-01 6.40447e-01 8.005588e-01 setrgbcolor +fill +grestore +newpath +6.398979e+01 5.96689e+00 moveto +6.419055e+01 5.496224e+00 lineto +6.378794e+01 5.462563e+00 lineto +6.348732e+01 5.924881e+00 lineto +6.398979e+01 5.96689e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.378999e+01 6.475461e+00 moveto +6.398979e+01 5.96689e+00 lineto +6.348732e+01 5.924881e+00 lineto +6.318814e+01 6.425143e+00 lineto +6.378999e+01 6.475461e+00 lineto +closepath +gsave +6.472503e-01 6.472503e-01 8.090629e-01 setrgbcolor +fill +grestore +newpath +6.378999e+01 6.475461e+00 moveto +6.398979e+01 5.96689e+00 lineto +6.348732e+01 5.924881e+00 lineto +6.318814e+01 6.425143e+00 lineto +6.378999e+01 6.475461e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.359133e+01 7.021454e+00 moveto +6.378999e+01 6.475461e+00 lineto +6.318814e+01 6.425143e+00 lineto +6.289067e+01 6.962875e+00 lineto +6.359133e+01 7.021454e+00 lineto +closepath +gsave +6.539602e-01 6.539602e-01 8.174503e-01 setrgbcolor +fill +grestore +newpath +6.359133e+01 7.021454e+00 moveto +6.378999e+01 6.475461e+00 lineto +6.318814e+01 6.425143e+00 lineto +6.289067e+01 6.962875e+00 lineto +6.359133e+01 7.021454e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.339401e+01 7.604352e+00 moveto +6.359133e+01 7.021454e+00 lineto +6.289067e+01 6.962875e+00 lineto +6.25952e+01 7.537567e+00 lineto +6.339401e+01 7.604352e+00 lineto +closepath +gsave +6.605661e-01 6.605661e-01 8.257077e-01 setrgbcolor +fill +grestore +newpath +6.339401e+01 7.604352e+00 moveto +6.359133e+01 7.021454e+00 lineto +6.289067e+01 6.962875e+00 lineto +6.25952e+01 7.537567e+00 lineto +6.339401e+01 7.604352e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.31982e+01 8.223604e+00 moveto +6.339401e+01 7.604352e+00 lineto +6.25952e+01 7.537567e+00 lineto +6.2302e+01 8.148676e+00 lineto +6.31982e+01 8.223604e+00 lineto +closepath +gsave +6.670579e-01 6.670579e-01 8.338224e-01 setrgbcolor +fill +grestore +newpath +6.31982e+01 8.223604e+00 moveto +6.339401e+01 7.604352e+00 lineto +6.25952e+01 7.537567e+00 lineto +6.2302e+01 8.148676e+00 lineto +6.31982e+01 8.223604e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.30041e+01 8.878622e+00 moveto +6.31982e+01 8.223604e+00 lineto +6.2302e+01 8.148676e+00 lineto +6.201136e+01 8.795623e+00 lineto +6.30041e+01 8.878622e+00 lineto +closepath +gsave +6.734258e-01 6.734258e-01 8.417823e-01 setrgbcolor +fill +grestore +newpath +6.30041e+01 8.878622e+00 moveto +6.31982e+01 8.223604e+00 lineto +6.2302e+01 8.148676e+00 lineto +6.201136e+01 8.795623e+00 lineto +6.30041e+01 8.878622e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.28119e+01 9.568788e+00 moveto +6.30041e+01 8.878622e+00 lineto +6.201136e+01 8.795623e+00 lineto +6.172356e+01 9.477796e+00 lineto +6.28119e+01 9.568788e+00 lineto +closepath +gsave +6.796607e-01 6.796607e-01 8.495759e-01 setrgbcolor +fill +grestore +newpath +6.28119e+01 9.568788e+00 moveto +6.30041e+01 8.878622e+00 lineto +6.201136e+01 8.795623e+00 lineto +6.172356e+01 9.477796e+00 lineto +6.28119e+01 9.568788e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.262176e+01 1.029345e+01 moveto +6.28119e+01 9.568788e+00 lineto +6.172356e+01 9.477796e+00 lineto +6.143885e+01 1.019455e+01 lineto +6.262176e+01 1.029345e+01 lineto +closepath +gsave +6.857539e-01 6.857539e-01 8.571924e-01 setrgbcolor +fill +grestore +newpath +6.262176e+01 1.029345e+01 moveto +6.28119e+01 9.568788e+00 lineto +6.172356e+01 9.477796e+00 lineto +6.143885e+01 1.019455e+01 lineto +6.262176e+01 1.029345e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.243388e+01 1.105191e+01 moveto +6.262176e+01 1.029345e+01 lineto +6.143885e+01 1.019455e+01 lineto +6.115751e+01 1.09452e+01 lineto +6.243388e+01 1.105191e+01 lineto +closepath +gsave +6.916973e-01 6.916973e-01 8.646217e-01 setrgbcolor +fill +grestore +newpath +6.243388e+01 1.105191e+01 moveto +6.262176e+01 1.029345e+01 lineto +6.143885e+01 1.019455e+01 lineto +6.115751e+01 1.09452e+01 lineto +6.243388e+01 1.105191e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.224842e+01 1.184347e+01 moveto +6.243388e+01 1.105191e+01 lineto +6.115751e+01 1.09452e+01 lineto +6.087981e+01 1.172904e+01 lineto +6.224842e+01 1.184347e+01 lineto +closepath +gsave +6.974833e-01 6.974833e-01 8.718541e-01 setrgbcolor +fill +grestore +newpath +6.224842e+01 1.184347e+01 moveto +6.243388e+01 1.105191e+01 lineto +6.115751e+01 1.09452e+01 lineto +6.087981e+01 1.172904e+01 lineto +6.224842e+01 1.184347e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.206557e+01 1.266736e+01 moveto +6.224842e+01 1.184347e+01 lineto +6.087981e+01 1.172904e+01 lineto +6.060602e+01 1.254534e+01 lineto +6.206557e+01 1.266736e+01 lineto +closepath +gsave +7.031047e-01 7.031047e-01 8.788809e-01 setrgbcolor +fill +grestore +newpath +6.206557e+01 1.266736e+01 moveto +6.224842e+01 1.184347e+01 lineto +6.087981e+01 1.172904e+01 lineto +6.060602e+01 1.254534e+01 lineto +6.206557e+01 1.266736e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.18855e+01 1.352282e+01 moveto +6.206557e+01 1.266736e+01 lineto +6.060602e+01 1.254534e+01 lineto +6.033638e+01 1.33933e+01 lineto +6.18855e+01 1.352282e+01 lineto +closepath +gsave +7.085551e-01 7.085551e-01 8.856938e-01 setrgbcolor +fill +grestore +newpath +6.18855e+01 1.352282e+01 moveto +6.206557e+01 1.266736e+01 lineto +6.060602e+01 1.254534e+01 lineto +6.033638e+01 1.33933e+01 lineto +6.18855e+01 1.352282e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.170838e+01 1.440902e+01 moveto +6.18855e+01 1.352282e+01 lineto +6.033638e+01 1.33933e+01 lineto +6.007116e+01 1.427214e+01 lineto +6.170838e+01 1.440902e+01 lineto +closepath +gsave +7.138284e-01 7.138284e-01 8.922854e-01 setrgbcolor +fill +grestore +newpath +6.170838e+01 1.440902e+01 moveto +6.18855e+01 1.352282e+01 lineto +6.033638e+01 1.33933e+01 lineto +6.007116e+01 1.427214e+01 lineto +6.170838e+01 1.440902e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.153438e+01 1.532514e+01 moveto +6.170838e+01 1.440902e+01 lineto +6.007116e+01 1.427214e+01 lineto +5.981061e+01 1.518102e+01 lineto +6.153438e+01 1.532514e+01 lineto +closepath +gsave +7.189191e-01 7.189191e-01 8.986489e-01 setrgbcolor +fill +grestore +newpath +6.153438e+01 1.532514e+01 moveto +6.170838e+01 1.440902e+01 lineto +6.007116e+01 1.427214e+01 lineto +5.981061e+01 1.518102e+01 lineto +6.153438e+01 1.532514e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.136365e+01 1.62703e+01 moveto +6.153438e+01 1.532514e+01 lineto +5.981061e+01 1.518102e+01 lineto +5.955496e+01 1.611908e+01 lineto +6.136365e+01 1.62703e+01 lineto +closepath +gsave +7.238223e-01 7.238223e-01 9.047779e-01 setrgbcolor +fill +grestore +newpath +6.136365e+01 1.62703e+01 moveto +6.153438e+01 1.532514e+01 lineto +5.981061e+01 1.518102e+01 lineto +5.955496e+01 1.611908e+01 lineto +6.136365e+01 1.62703e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.119637e+01 1.72436e+01 moveto +6.136365e+01 1.62703e+01 lineto +5.955496e+01 1.611908e+01 lineto +5.930448e+01 1.708543e+01 lineto +6.119637e+01 1.72436e+01 lineto +closepath +gsave +7.285335e-01 7.285335e-01 9.106669e-01 setrgbcolor +fill +grestore +newpath +6.119637e+01 1.72436e+01 moveto +6.136365e+01 1.62703e+01 lineto +5.955496e+01 1.611908e+01 lineto +5.930448e+01 1.708543e+01 lineto +6.119637e+01 1.72436e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.103269e+01 1.824414e+01 moveto +6.119637e+01 1.72436e+01 lineto +5.930448e+01 1.708543e+01 lineto +5.905939e+01 1.807916e+01 lineto +6.103269e+01 1.824414e+01 lineto +closepath +gsave +7.330487e-01 7.330487e-01 9.163109e-01 setrgbcolor +fill +grestore +newpath +6.103269e+01 1.824414e+01 moveto +6.119637e+01 1.72436e+01 lineto +5.930448e+01 1.708543e+01 lineto +5.905939e+01 1.807916e+01 lineto +6.103269e+01 1.824414e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.087277e+01 1.927095e+01 moveto +6.103269e+01 1.824414e+01 lineto +5.905939e+01 1.807916e+01 lineto +5.881992e+01 1.909932e+01 lineto +6.087277e+01 1.927095e+01 lineto +closepath +gsave +7.373644e-01 7.373644e-01 9.217055e-01 setrgbcolor +fill +grestore +newpath +6.087277e+01 1.927095e+01 moveto +6.103269e+01 1.824414e+01 lineto +5.905939e+01 1.807916e+01 lineto +5.881992e+01 1.909932e+01 lineto +6.087277e+01 1.927095e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.071675e+01 2.032307e+01 moveto +6.087277e+01 1.927095e+01 lineto +5.881992e+01 1.909932e+01 lineto +5.85863e+01 2.014495e+01 lineto +6.071675e+01 2.032307e+01 lineto +closepath +gsave +7.414775e-01 7.414775e-01 9.268469e-01 setrgbcolor +fill +grestore +newpath +6.071675e+01 2.032307e+01 moveto +6.087277e+01 1.927095e+01 lineto +5.881992e+01 1.909932e+01 lineto +5.85863e+01 2.014495e+01 lineto +6.071675e+01 2.032307e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.056479e+01 2.13995e+01 moveto +6.071675e+01 2.032307e+01 lineto +5.85863e+01 2.014495e+01 lineto +5.835876e+01 2.121506e+01 lineto +6.056479e+01 2.13995e+01 lineto +closepath +gsave +7.453852e-01 7.453852e-01 9.317315e-01 setrgbcolor +fill +grestore +newpath +6.056479e+01 2.13995e+01 moveto +6.071675e+01 2.032307e+01 lineto +5.85863e+01 2.014495e+01 lineto +5.835876e+01 2.121506e+01 lineto +6.056479e+01 2.13995e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.041703e+01 2.249922e+01 moveto +6.056479e+01 2.13995e+01 lineto +5.835876e+01 2.121506e+01 lineto +5.81375e+01 2.230864e+01 lineto +6.041703e+01 2.249922e+01 lineto +closepath +gsave +7.490853e-01 7.490853e-01 9.363567e-01 setrgbcolor +fill +grestore +newpath +6.041703e+01 2.249922e+01 moveto +6.056479e+01 2.13995e+01 lineto +5.835876e+01 2.121506e+01 lineto +5.81375e+01 2.230864e+01 lineto +6.041703e+01 2.249922e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.027361e+01 2.36212e+01 moveto +6.041703e+01 2.249922e+01 lineto +5.81375e+01 2.230864e+01 lineto +5.792274e+01 2.342465e+01 lineto +6.027361e+01 2.36212e+01 lineto +closepath +gsave +7.525759e-01 7.525759e-01 9.407199e-01 setrgbcolor +fill +grestore +newpath +6.027361e+01 2.36212e+01 moveto +6.041703e+01 2.249922e+01 lineto +5.81375e+01 2.230864e+01 lineto +5.792274e+01 2.342465e+01 lineto +6.027361e+01 2.36212e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.013466e+01 2.476436e+01 moveto +6.027361e+01 2.36212e+01 lineto +5.792274e+01 2.342465e+01 lineto +5.771468e+01 2.456204e+01 lineto +6.013466e+01 2.476436e+01 lineto +closepath +gsave +7.558552e-01 7.558552e-01 9.44819e-01 setrgbcolor +fill +grestore +newpath +6.013466e+01 2.476436e+01 moveto +6.027361e+01 2.36212e+01 lineto +5.792274e+01 2.342465e+01 lineto +5.771468e+01 2.456204e+01 lineto +6.013466e+01 2.476436e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.000032e+01 2.592763e+01 moveto +6.013466e+01 2.476436e+01 lineto +5.771468e+01 2.456204e+01 lineto +5.751352e+01 2.571972e+01 lineto +6.000032e+01 2.592763e+01 lineto +closepath +gsave +7.58922e-01 7.58922e-01 9.486526e-01 setrgbcolor +fill +grestore +newpath +6.000032e+01 2.592763e+01 moveto +6.013466e+01 2.476436e+01 lineto +5.771468e+01 2.456204e+01 lineto +5.751352e+01 2.571972e+01 lineto +6.000032e+01 2.592763e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.987071e+01 2.71099e+01 moveto +6.000032e+01 2.592763e+01 lineto +5.751352e+01 2.571972e+01 lineto +5.731945e+01 2.68966e+01 lineto +5.987071e+01 2.71099e+01 lineto +closepath +gsave +7.617753e-01 7.617753e-01 9.522191e-01 setrgbcolor +fill +grestore +newpath +5.987071e+01 2.71099e+01 moveto +6.000032e+01 2.592763e+01 lineto +5.751352e+01 2.571972e+01 lineto +5.731945e+01 2.68966e+01 lineto +5.987071e+01 2.71099e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.974596e+01 2.831006e+01 moveto +5.987071e+01 2.71099e+01 lineto +5.731945e+01 2.68966e+01 lineto +5.713265e+01 2.809158e+01 lineto +5.974596e+01 2.831006e+01 lineto +closepath +gsave +7.644141e-01 7.644141e-01 9.555176e-01 setrgbcolor +fill +grestore +newpath +5.974596e+01 2.831006e+01 moveto +5.987071e+01 2.71099e+01 lineto +5.731945e+01 2.68966e+01 lineto +5.713265e+01 2.809158e+01 lineto +5.974596e+01 2.831006e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.962619e+01 2.952697e+01 moveto +5.974596e+01 2.831006e+01 lineto +5.713265e+01 2.809158e+01 lineto +5.69533e+01 2.93035e+01 lineto +5.962619e+01 2.952697e+01 lineto +closepath +gsave +7.668378e-01 7.668378e-01 9.585473e-01 setrgbcolor +fill +grestore +newpath +5.962619e+01 2.952697e+01 moveto +5.974596e+01 2.831006e+01 lineto +5.713265e+01 2.809158e+01 lineto +5.69533e+01 2.93035e+01 lineto +5.962619e+01 2.952697e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.95115e+01 3.075948e+01 moveto +5.962619e+01 2.952697e+01 lineto +5.69533e+01 2.93035e+01 lineto +5.678157e+01 3.053124e+01 lineto +5.95115e+01 3.075948e+01 lineto +closepath +gsave +7.69046e-01 7.69046e-01 9.613076e-01 setrgbcolor +fill +grestore +newpath +5.95115e+01 3.075948e+01 moveto +5.962619e+01 2.952697e+01 lineto +5.69533e+01 2.93035e+01 lineto +5.678157e+01 3.053124e+01 lineto +5.95115e+01 3.075948e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.940201e+01 3.200641e+01 moveto +5.95115e+01 3.075948e+01 lineto +5.678157e+01 3.053124e+01 lineto +5.661762e+01 3.177362e+01 lineto +5.940201e+01 3.200641e+01 lineto +closepath +gsave +7.710385e-01 7.710385e-01 9.637981e-01 setrgbcolor +fill +grestore +newpath +5.940201e+01 3.200641e+01 moveto +5.95115e+01 3.075948e+01 lineto +5.678157e+01 3.053124e+01 lineto +5.661762e+01 3.177362e+01 lineto +5.940201e+01 3.200641e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.929782e+01 3.326659e+01 moveto +5.940201e+01 3.200641e+01 lineto +5.661762e+01 3.177362e+01 lineto +5.64616e+01 3.302947e+01 lineto +5.929782e+01 3.326659e+01 lineto +closepath +gsave +7.728149e-01 7.728149e-01 9.660186e-01 setrgbcolor +fill +grestore +newpath +5.929782e+01 3.326659e+01 moveto +5.940201e+01 3.200641e+01 lineto +5.661762e+01 3.177362e+01 lineto +5.64616e+01 3.302947e+01 lineto +5.929782e+01 3.326659e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.919902e+01 3.453883e+01 moveto +5.929782e+01 3.326659e+01 lineto +5.64616e+01 3.302947e+01 lineto +5.631367e+01 3.42976e+01 lineto +5.919902e+01 3.453883e+01 lineto +closepath +gsave +7.743752e-01 7.743752e-01 9.67969e-01 setrgbcolor +fill +grestore +newpath +5.919902e+01 3.453883e+01 moveto +5.929782e+01 3.326659e+01 lineto +5.64616e+01 3.302947e+01 lineto +5.631367e+01 3.42976e+01 lineto +5.919902e+01 3.453883e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.910573e+01 3.582193e+01 moveto +5.919902e+01 3.453883e+01 lineto +5.631367e+01 3.42976e+01 lineto +5.617397e+01 3.557681e+01 lineto +5.910573e+01 3.582193e+01 lineto +closepath +gsave +7.757194e-01 7.757194e-01 9.696493e-01 setrgbcolor +fill +grestore +newpath +5.910573e+01 3.582193e+01 moveto +5.919902e+01 3.453883e+01 lineto +5.631367e+01 3.42976e+01 lineto +5.617397e+01 3.557681e+01 lineto +5.910573e+01 3.582193e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.901801e+01 3.711465e+01 moveto +5.910573e+01 3.582193e+01 lineto +5.617397e+01 3.557681e+01 lineto +5.604262e+01 3.686589e+01 lineto +5.901801e+01 3.711465e+01 lineto +closepath +gsave +7.768475e-01 7.768475e-01 9.710594e-01 setrgbcolor +fill +grestore +newpath +5.901801e+01 3.711465e+01 moveto +5.910573e+01 3.582193e+01 lineto +5.617397e+01 3.557681e+01 lineto +5.604262e+01 3.686589e+01 lineto +5.901801e+01 3.711465e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.893595e+01 3.841579e+01 moveto +5.901801e+01 3.711465e+01 lineto +5.604262e+01 3.686589e+01 lineto +5.591975e+01 3.816362e+01 lineto +5.893595e+01 3.841579e+01 lineto +closepath +gsave +7.777596e-01 7.777596e-01 9.721994e-01 setrgbcolor +fill +grestore +newpath +5.893595e+01 3.841579e+01 moveto +5.901801e+01 3.711465e+01 lineto +5.604262e+01 3.686589e+01 lineto +5.591975e+01 3.816362e+01 lineto +5.893595e+01 3.841579e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.885964e+01 3.972412e+01 moveto +5.893595e+01 3.841579e+01 lineto +5.591975e+01 3.816362e+01 lineto +5.580548e+01 3.946877e+01 lineto +5.885964e+01 3.972412e+01 lineto +closepath +gsave +7.784556e-01 7.784556e-01 9.730695e-01 setrgbcolor +fill +grestore +newpath +5.885964e+01 3.972412e+01 moveto +5.893595e+01 3.841579e+01 lineto +5.591975e+01 3.816362e+01 lineto +5.580548e+01 3.946877e+01 lineto +5.885964e+01 3.972412e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.878914e+01 4.103838e+01 moveto +5.885964e+01 3.972412e+01 lineto +5.580548e+01 3.946877e+01 lineto +5.569991e+01 4.07801e+01 lineto +5.878914e+01 4.103838e+01 lineto +closepath +gsave +7.789358e-01 7.789358e-01 9.736697e-01 setrgbcolor +fill +grestore +newpath +5.878914e+01 4.103838e+01 moveto +5.885964e+01 3.972412e+01 lineto +5.580548e+01 3.946877e+01 lineto +5.569991e+01 4.07801e+01 lineto +5.878914e+01 4.103838e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.469552e+01 4.307464e+00 moveto +6.499901e+01 4.000931e+00 lineto +6.499869e+01 4.000898e+00 lineto +6.459626e+01 4.297236e+00 lineto +6.469552e+01 4.307464e+00 lineto +closepath +gsave +6.126446e-01 6.126446e-01 7.658058e-01 setrgbcolor +fill +grestore +newpath +6.469552e+01 4.307464e+00 moveto +6.499901e+01 4.000931e+00 lineto +6.499869e+01 4.000898e+00 lineto +6.459626e+01 4.297236e+00 lineto +6.469552e+01 4.307464e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.439232e+01 4.653471e+00 moveto +6.469552e+01 4.307464e+00 lineto +6.459626e+01 4.297236e+00 lineto +6.419422e+01 4.633058e+00 lineto +6.439232e+01 4.653471e+00 lineto +closepath +gsave +6.199446e-01 6.199446e-01 7.749308e-01 setrgbcolor +fill +grestore +newpath +6.439232e+01 4.653471e+00 moveto +6.469552e+01 4.307464e+00 lineto +6.459626e+01 4.297236e+00 lineto +6.419422e+01 4.633058e+00 lineto +6.439232e+01 4.653471e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.40897e+01 5.038626e+00 moveto +6.439232e+01 4.653471e+00 lineto +6.419422e+01 4.633058e+00 lineto +6.379294e+01 5.008047e+00 lineto +6.40897e+01 5.038626e+00 lineto +closepath +gsave +6.271991e-01 6.271991e-01 7.839989e-01 setrgbcolor +fill +grestore +newpath +6.40897e+01 5.038626e+00 moveto +6.439232e+01 4.653471e+00 lineto +6.419422e+01 4.633058e+00 lineto +6.379294e+01 5.008047e+00 lineto +6.40897e+01 5.038626e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.378794e+01 5.462563e+00 moveto +6.40897e+01 5.038626e+00 lineto +6.379294e+01 5.008047e+00 lineto +6.33928e+01 5.421847e+00 lineto +6.378794e+01 5.462563e+00 lineto +closepath +gsave +6.343953e-01 6.343953e-01 7.929941e-01 setrgbcolor +fill +grestore +newpath +6.378794e+01 5.462563e+00 moveto +6.40897e+01 5.038626e+00 lineto +6.379294e+01 5.008047e+00 lineto +6.33928e+01 5.421847e+00 lineto +6.378794e+01 5.462563e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.348732e+01 5.924881e+00 moveto +6.378794e+01 5.462563e+00 lineto +6.33928e+01 5.421847e+00 lineto +6.299418e+01 5.874067e+00 lineto +6.348732e+01 5.924881e+00 lineto +closepath +gsave +6.415206e-01 6.415206e-01 8.019008e-01 setrgbcolor +fill +grestore +newpath +6.348732e+01 5.924881e+00 moveto +6.378794e+01 5.462563e+00 lineto +6.33928e+01 5.421847e+00 lineto +6.299418e+01 5.874067e+00 lineto +6.348732e+01 5.924881e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.318814e+01 6.425143e+00 moveto +6.348732e+01 5.924881e+00 lineto +6.299418e+01 5.874067e+00 lineto +6.259746e+01 6.364279e+00 lineto +6.318814e+01 6.425143e+00 lineto +closepath +gsave +6.485631e-01 6.485631e-01 8.107039e-01 setrgbcolor +fill +grestore +newpath +6.318814e+01 6.425143e+00 moveto +6.348732e+01 5.924881e+00 lineto +6.299418e+01 5.874067e+00 lineto +6.259746e+01 6.364279e+00 lineto +6.318814e+01 6.425143e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.289067e+01 6.962875e+00 moveto +6.318814e+01 6.425143e+00 lineto +6.259746e+01 6.364279e+00 lineto +6.220301e+01 6.892018e+00 lineto +6.289067e+01 6.962875e+00 lineto +closepath +gsave +6.55511e-01 6.55511e-01 8.193888e-01 setrgbcolor +fill +grestore +newpath +6.289067e+01 6.962875e+00 moveto +6.318814e+01 6.425143e+00 lineto +6.259746e+01 6.364279e+00 lineto +6.220301e+01 6.892018e+00 lineto +6.289067e+01 6.962875e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.25952e+01 7.537567e+00 moveto +6.289067e+01 6.962875e+00 lineto +6.220301e+01 6.892018e+00 lineto +6.181122e+01 7.456785e+00 lineto +6.25952e+01 7.537567e+00 lineto +closepath +gsave +6.623531e-01 6.623531e-01 8.279414e-01 setrgbcolor +fill +grestore +newpath +6.25952e+01 7.537567e+00 moveto +6.289067e+01 6.962875e+00 lineto +6.220301e+01 6.892018e+00 lineto +6.181122e+01 7.456785e+00 lineto +6.25952e+01 7.537567e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.2302e+01 8.148676e+00 moveto +6.25952e+01 7.537567e+00 lineto +6.181122e+01 7.456785e+00 lineto +6.142244e+01 8.058045e+00 lineto +6.2302e+01 8.148676e+00 lineto +closepath +gsave +6.690788e-01 6.690788e-01 8.363484e-01 setrgbcolor +fill +grestore +newpath +6.2302e+01 8.148676e+00 moveto +6.25952e+01 7.537567e+00 lineto +6.181122e+01 7.456785e+00 lineto +6.142244e+01 8.058045e+00 lineto +6.2302e+01 8.148676e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.201136e+01 8.795623e+00 moveto +6.2302e+01 8.148676e+00 lineto +6.142244e+01 8.058045e+00 lineto +6.103705e+01 8.695229e+00 lineto +6.201136e+01 8.795623e+00 lineto +closepath +gsave +6.756776e-01 6.756776e-01 8.44597e-01 setrgbcolor +fill +grestore +newpath +6.201136e+01 8.795623e+00 moveto +6.2302e+01 8.148676e+00 lineto +6.142244e+01 8.058045e+00 lineto +6.103705e+01 8.695229e+00 lineto +6.201136e+01 8.795623e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.172356e+01 9.477796e+00 moveto +6.201136e+01 8.795623e+00 lineto +6.103705e+01 8.695229e+00 lineto +6.065541e+01 9.367733e+00 lineto +6.172356e+01 9.477796e+00 lineto +closepath +gsave +6.821401e-01 6.821401e-01 8.526751e-01 setrgbcolor +fill +grestore +newpath +6.172356e+01 9.477796e+00 moveto +6.201136e+01 8.795623e+00 lineto +6.103705e+01 8.695229e+00 lineto +6.065541e+01 9.367733e+00 lineto +6.172356e+01 9.477796e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.143885e+01 1.019455e+01 moveto +6.172356e+01 9.477796e+00 lineto +6.065541e+01 9.367733e+00 lineto +6.027789e+01 1.007492e+01 lineto +6.143885e+01 1.019455e+01 lineto +closepath +gsave +6.88457e-01 6.88457e-01 8.605712e-01 setrgbcolor +fill +grestore +newpath +6.143885e+01 1.019455e+01 moveto +6.172356e+01 9.477796e+00 lineto +6.065541e+01 9.367733e+00 lineto +6.027789e+01 1.007492e+01 lineto +6.143885e+01 1.019455e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.115751e+01 1.09452e+01 moveto +6.143885e+01 1.019455e+01 lineto +6.027789e+01 1.007492e+01 lineto +5.990484e+01 1.081612e+01 lineto +6.115751e+01 1.09452e+01 lineto +closepath +gsave +6.946197e-01 6.946197e-01 8.682746e-01 setrgbcolor +fill +grestore +newpath +6.115751e+01 1.09452e+01 moveto +6.143885e+01 1.019455e+01 lineto +6.027789e+01 1.007492e+01 lineto +5.990484e+01 1.081612e+01 lineto +6.115751e+01 1.09452e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.087981e+01 1.172904e+01 moveto +6.115751e+01 1.09452e+01 lineto +5.990484e+01 1.081612e+01 lineto +5.953661e+01 1.159064e+01 lineto +6.087981e+01 1.172904e+01 lineto +closepath +gsave +7.006203e-01 7.006203e-01 8.757754e-01 setrgbcolor +fill +grestore +newpath +6.087981e+01 1.172904e+01 moveto +6.115751e+01 1.09452e+01 lineto +5.990484e+01 1.081612e+01 lineto +5.953661e+01 1.159064e+01 lineto +6.087981e+01 1.172904e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.060602e+01 1.254534e+01 moveto +6.087981e+01 1.172904e+01 lineto +5.953661e+01 1.159064e+01 lineto +5.917355e+01 1.239773e+01 lineto +6.060602e+01 1.254534e+01 lineto +closepath +gsave +7.064513e-01 7.064513e-01 8.830642e-01 setrgbcolor +fill +grestore +newpath +6.060602e+01 1.254534e+01 moveto +6.087981e+01 1.172904e+01 lineto +5.953661e+01 1.159064e+01 lineto +5.917355e+01 1.239773e+01 lineto +6.060602e+01 1.254534e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.033638e+01 1.33933e+01 moveto +6.060602e+01 1.254534e+01 lineto +5.917355e+01 1.239773e+01 lineto +5.881601e+01 1.323664e+01 lineto +6.033638e+01 1.33933e+01 lineto +closepath +gsave +7.12106e-01 7.12106e-01 8.901325e-01 setrgbcolor +fill +grestore +newpath +6.033638e+01 1.33933e+01 moveto +6.060602e+01 1.254534e+01 lineto +5.917355e+01 1.239773e+01 lineto +5.881601e+01 1.323664e+01 lineto +6.033638e+01 1.33933e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.007116e+01 1.427214e+01 moveto +6.033638e+01 1.33933e+01 lineto +5.881601e+01 1.323664e+01 lineto +5.846433e+01 1.410657e+01 lineto +6.007116e+01 1.427214e+01 lineto +closepath +gsave +7.17578e-01 7.17578e-01 8.969726e-01 setrgbcolor +fill +grestore +newpath +6.007116e+01 1.427214e+01 moveto +6.033638e+01 1.33933e+01 lineto +5.881601e+01 1.323664e+01 lineto +5.846433e+01 1.410657e+01 lineto +6.007116e+01 1.427214e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.981061e+01 1.518102e+01 moveto +6.007116e+01 1.427214e+01 lineto +5.846433e+01 1.410657e+01 lineto +5.811883e+01 1.50067e+01 lineto +5.981061e+01 1.518102e+01 lineto +closepath +gsave +7.228617e-01 7.228617e-01 9.035772e-01 setrgbcolor +fill +grestore +newpath +5.981061e+01 1.518102e+01 moveto +6.007116e+01 1.427214e+01 lineto +5.846433e+01 1.410657e+01 lineto +5.811883e+01 1.50067e+01 lineto +5.981061e+01 1.518102e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.955496e+01 1.611908e+01 moveto +5.981061e+01 1.518102e+01 lineto +5.811883e+01 1.50067e+01 lineto +5.777985e+01 1.593617e+01 lineto +5.955496e+01 1.611908e+01 lineto +closepath +gsave +7.27952e-01 7.27952e-01 9.0994e-01 setrgbcolor +fill +grestore +newpath +5.955496e+01 1.611908e+01 moveto +5.981061e+01 1.518102e+01 lineto +5.811883e+01 1.50067e+01 lineto +5.777985e+01 1.593617e+01 lineto +5.955496e+01 1.611908e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.930448e+01 1.708543e+01 moveto +5.955496e+01 1.611908e+01 lineto +5.777985e+01 1.593617e+01 lineto +5.74477e+01 1.689411e+01 lineto +5.930448e+01 1.708543e+01 lineto +closepath +gsave +7.328442e-01 7.328442e-01 9.160552e-01 setrgbcolor +fill +grestore +newpath +5.930448e+01 1.708543e+01 moveto +5.955496e+01 1.611908e+01 lineto +5.777985e+01 1.593617e+01 lineto +5.74477e+01 1.689411e+01 lineto +5.930448e+01 1.708543e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.905939e+01 1.807916e+01 moveto +5.930448e+01 1.708543e+01 lineto +5.74477e+01 1.689411e+01 lineto +5.712271e+01 1.78796e+01 lineto +5.905939e+01 1.807916e+01 lineto +closepath +gsave +7.375342e-01 7.375342e-01 9.219177e-01 setrgbcolor +fill +grestore +newpath +5.905939e+01 1.807916e+01 moveto +5.930448e+01 1.708543e+01 lineto +5.74477e+01 1.689411e+01 lineto +5.712271e+01 1.78796e+01 lineto +5.905939e+01 1.807916e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.881992e+01 1.909932e+01 moveto +5.905939e+01 1.807916e+01 lineto +5.712271e+01 1.78796e+01 lineto +5.680517e+01 1.889172e+01 lineto +5.881992e+01 1.909932e+01 lineto +closepath +gsave +7.420185e-01 7.420185e-01 9.275231e-01 setrgbcolor +fill +grestore +newpath +5.881992e+01 1.909932e+01 moveto +5.905939e+01 1.807916e+01 lineto +5.712271e+01 1.78796e+01 lineto +5.680517e+01 1.889172e+01 lineto +5.881992e+01 1.909932e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.85863e+01 2.014495e+01 moveto +5.881992e+01 1.909932e+01 lineto +5.680517e+01 1.889172e+01 lineto +5.649539e+01 1.99295e+01 lineto +5.85863e+01 2.014495e+01 lineto +closepath +gsave +7.46294e-01 7.46294e-01 9.328675e-01 setrgbcolor +fill +grestore +newpath +5.85863e+01 2.014495e+01 moveto +5.881992e+01 1.909932e+01 lineto +5.680517e+01 1.889172e+01 lineto +5.649539e+01 1.99295e+01 lineto +5.85863e+01 2.014495e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.835876e+01 2.121506e+01 moveto +5.85863e+01 2.014495e+01 lineto +5.649539e+01 1.99295e+01 lineto +5.619367e+01 2.099197e+01 lineto +5.835876e+01 2.121506e+01 lineto +closepath +gsave +7.503579e-01 7.503579e-01 9.379474e-01 setrgbcolor +fill +grestore +newpath +5.835876e+01 2.121506e+01 moveto +5.85863e+01 2.014495e+01 lineto +5.649539e+01 1.99295e+01 lineto +5.619367e+01 2.099197e+01 lineto +5.835876e+01 2.121506e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.81375e+01 2.230864e+01 moveto +5.835876e+01 2.121506e+01 lineto +5.619367e+01 2.099197e+01 lineto +5.590028e+01 2.207812e+01 lineto +5.81375e+01 2.230864e+01 lineto +closepath +gsave +7.542082e-01 7.542082e-01 9.427602e-01 setrgbcolor +fill +grestore +newpath +5.81375e+01 2.230864e+01 moveto +5.835876e+01 2.121506e+01 lineto +5.619367e+01 2.099197e+01 lineto +5.590028e+01 2.207812e+01 lineto +5.81375e+01 2.230864e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.792274e+01 2.342465e+01 moveto +5.81375e+01 2.230864e+01 lineto +5.590028e+01 2.207812e+01 lineto +5.561551e+01 2.318691e+01 lineto +5.792274e+01 2.342465e+01 lineto +closepath +gsave +7.578428e-01 7.578428e-01 9.473034e-01 setrgbcolor +fill +grestore +newpath +5.792274e+01 2.342465e+01 moveto +5.81375e+01 2.230864e+01 lineto +5.590028e+01 2.207812e+01 lineto +5.561551e+01 2.318691e+01 lineto +5.792274e+01 2.342465e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.771468e+01 2.456204e+01 moveto +5.792274e+01 2.342465e+01 lineto +5.561551e+01 2.318691e+01 lineto +5.533962e+01 2.431731e+01 lineto +5.771468e+01 2.456204e+01 lineto +closepath +gsave +7.612602e-01 7.612602e-01 9.515752e-01 setrgbcolor +fill +grestore +newpath +5.771468e+01 2.456204e+01 moveto +5.792274e+01 2.342465e+01 lineto +5.561551e+01 2.318691e+01 lineto +5.533962e+01 2.431731e+01 lineto +5.771468e+01 2.456204e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.751352e+01 2.571972e+01 moveto +5.771468e+01 2.456204e+01 lineto +5.533962e+01 2.431731e+01 lineto +5.507288e+01 2.546823e+01 lineto +5.751352e+01 2.571972e+01 lineto +closepath +gsave +7.644593e-01 7.644593e-01 9.555741e-01 setrgbcolor +fill +grestore +newpath +5.751352e+01 2.571972e+01 moveto +5.771468e+01 2.456204e+01 lineto +5.533962e+01 2.431731e+01 lineto +5.507288e+01 2.546823e+01 lineto +5.751352e+01 2.571972e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.731945e+01 2.68966e+01 moveto +5.751352e+01 2.571972e+01 lineto +5.507288e+01 2.546823e+01 lineto +5.481554e+01 2.66386e+01 lineto +5.731945e+01 2.68966e+01 lineto +closepath +gsave +7.674391e-01 7.674391e-01 9.592988e-01 setrgbcolor +fill +grestore +newpath +5.731945e+01 2.68966e+01 moveto +5.751352e+01 2.571972e+01 lineto +5.507288e+01 2.546823e+01 lineto +5.481554e+01 2.66386e+01 lineto +5.731945e+01 2.68966e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.713265e+01 2.809158e+01 moveto +5.731945e+01 2.68966e+01 lineto +5.481554e+01 2.66386e+01 lineto +5.456785e+01 2.782729e+01 lineto +5.713265e+01 2.809158e+01 lineto +closepath +gsave +7.701989e-01 7.701989e-01 9.627486e-01 setrgbcolor +fill +grestore +newpath +5.713265e+01 2.809158e+01 moveto +5.731945e+01 2.68966e+01 lineto +5.481554e+01 2.66386e+01 lineto +5.456785e+01 2.782729e+01 lineto +5.713265e+01 2.809158e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.69533e+01 2.93035e+01 moveto +5.713265e+01 2.809158e+01 lineto +5.456785e+01 2.782729e+01 lineto +5.433003e+01 2.90332e+01 lineto +5.69533e+01 2.93035e+01 lineto +closepath +gsave +7.727383e-01 7.727383e-01 9.659228e-01 setrgbcolor +fill +grestore +newpath +5.69533e+01 2.93035e+01 moveto +5.713265e+01 2.809158e+01 lineto +5.456785e+01 2.782729e+01 lineto +5.433003e+01 2.90332e+01 lineto +5.69533e+01 2.93035e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.678157e+01 3.053124e+01 moveto +5.69533e+01 2.93035e+01 lineto +5.433003e+01 2.90332e+01 lineto +5.410231e+01 3.025516e+01 lineto +5.678157e+01 3.053124e+01 lineto +closepath +gsave +7.750569e-01 7.750569e-01 9.688212e-01 setrgbcolor +fill +grestore +newpath +5.678157e+01 3.053124e+01 moveto +5.69533e+01 2.93035e+01 lineto +5.433003e+01 2.90332e+01 lineto +5.410231e+01 3.025516e+01 lineto +5.678157e+01 3.053124e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.661762e+01 3.177362e+01 moveto +5.678157e+01 3.053124e+01 lineto +5.410231e+01 3.025516e+01 lineto +5.388491e+01 3.149204e+01 lineto +5.661762e+01 3.177362e+01 lineto +closepath +gsave +7.771547e-01 7.771547e-01 9.714434e-01 setrgbcolor +fill +grestore +newpath +5.661762e+01 3.177362e+01 moveto +5.678157e+01 3.053124e+01 lineto +5.410231e+01 3.025516e+01 lineto +5.388491e+01 3.149204e+01 lineto +5.661762e+01 3.177362e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.64616e+01 3.302947e+01 moveto +5.661762e+01 3.177362e+01 lineto +5.388491e+01 3.149204e+01 lineto +5.367803e+01 3.274265e+01 lineto +5.64616e+01 3.302947e+01 lineto +closepath +gsave +7.790316e-01 7.790316e-01 9.737895e-01 setrgbcolor +fill +grestore +newpath +5.64616e+01 3.302947e+01 moveto +5.661762e+01 3.177362e+01 lineto +5.388491e+01 3.149204e+01 lineto +5.367803e+01 3.274265e+01 lineto +5.64616e+01 3.302947e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.631367e+01 3.42976e+01 moveto +5.64616e+01 3.302947e+01 lineto +5.367803e+01 3.274265e+01 lineto +5.348187e+01 3.400581e+01 lineto +5.631367e+01 3.42976e+01 lineto +closepath +gsave +7.806877e-01 7.806877e-01 9.758596e-01 setrgbcolor +fill +grestore +newpath +5.631367e+01 3.42976e+01 moveto +5.64616e+01 3.302947e+01 lineto +5.367803e+01 3.274265e+01 lineto +5.348187e+01 3.400581e+01 lineto +5.631367e+01 3.42976e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.617397e+01 3.557681e+01 moveto +5.631367e+01 3.42976e+01 lineto +5.348187e+01 3.400581e+01 lineto +5.329662e+01 3.528033e+01 lineto +5.617397e+01 3.557681e+01 lineto +closepath +gsave +7.821231e-01 7.821231e-01 9.776539e-01 setrgbcolor +fill +grestore +newpath +5.617397e+01 3.557681e+01 moveto +5.631367e+01 3.42976e+01 lineto +5.348187e+01 3.400581e+01 lineto +5.329662e+01 3.528033e+01 lineto +5.617397e+01 3.557681e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.604262e+01 3.686589e+01 moveto +5.617397e+01 3.557681e+01 lineto +5.329662e+01 3.528033e+01 lineto +5.312245e+01 3.6565e+01 lineto +5.604262e+01 3.686589e+01 lineto +closepath +gsave +7.833379e-01 7.833379e-01 9.791724e-01 setrgbcolor +fill +grestore +newpath +5.604262e+01 3.686589e+01 moveto +5.617397e+01 3.557681e+01 lineto +5.329662e+01 3.528033e+01 lineto +5.312245e+01 3.6565e+01 lineto +5.604262e+01 3.686589e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.591975e+01 3.816362e+01 moveto +5.604262e+01 3.686589e+01 lineto +5.312245e+01 3.6565e+01 lineto +5.295953e+01 3.78586e+01 lineto +5.591975e+01 3.816362e+01 lineto +closepath +gsave +7.843324e-01 7.843324e-01 9.804155e-01 setrgbcolor +fill +grestore +newpath +5.591975e+01 3.816362e+01 moveto +5.604262e+01 3.686589e+01 lineto +5.312245e+01 3.6565e+01 lineto +5.295953e+01 3.78586e+01 lineto +5.591975e+01 3.816362e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.580548e+01 3.946877e+01 moveto +5.591975e+01 3.816362e+01 lineto +5.295953e+01 3.78586e+01 lineto +5.2808e+01 3.915991e+01 lineto +5.580548e+01 3.946877e+01 lineto +closepath +gsave +7.851067e-01 7.851067e-01 9.813834e-01 setrgbcolor +fill +grestore +newpath +5.580548e+01 3.946877e+01 moveto +5.591975e+01 3.816362e+01 lineto +5.295953e+01 3.78586e+01 lineto +5.2808e+01 3.915991e+01 lineto +5.580548e+01 3.946877e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.569991e+01 4.07801e+01 moveto +5.580548e+01 3.946877e+01 lineto +5.2808e+01 3.915991e+01 lineto +5.266802e+01 4.046769e+01 lineto +5.569991e+01 4.07801e+01 lineto +closepath +gsave +7.85661e-01 7.85661e-01 9.820762e-01 setrgbcolor +fill +grestore +newpath +5.569991e+01 4.07801e+01 moveto +5.580548e+01 3.946877e+01 lineto +5.2808e+01 3.915991e+01 lineto +5.266802e+01 4.046769e+01 lineto +5.569991e+01 4.07801e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.459626e+01 4.297236e+00 moveto +6.499869e+01 4.000898e+00 lineto +6.499838e+01 4.00086e+00 lineto +6.449949e+01 4.285299e+00 lineto +6.459626e+01 4.297236e+00 lineto +closepath +gsave +6.127403e-01 6.127403e-01 7.659254e-01 setrgbcolor +fill +grestore +newpath +6.459626e+01 4.297236e+00 moveto +6.499869e+01 4.000898e+00 lineto +6.499838e+01 4.00086e+00 lineto +6.449949e+01 4.285299e+00 lineto +6.459626e+01 4.297236e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.419422e+01 4.633058e+00 moveto +6.459626e+01 4.297236e+00 lineto +6.449949e+01 4.285299e+00 lineto +6.400108e+01 4.609234e+00 lineto +6.419422e+01 4.633058e+00 lineto +closepath +gsave +6.202319e-01 6.202319e-01 7.752899e-01 setrgbcolor +fill +grestore +newpath +6.419422e+01 4.633058e+00 moveto +6.459626e+01 4.297236e+00 lineto +6.449949e+01 4.285299e+00 lineto +6.400108e+01 4.609234e+00 lineto +6.419422e+01 4.633058e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.379294e+01 5.008047e+00 moveto +6.419422e+01 4.633058e+00 lineto +6.400108e+01 4.609234e+00 lineto +6.350361e+01 4.972358e+00 lineto +6.379294e+01 5.008047e+00 lineto +closepath +gsave +6.276792e-01 6.276792e-01 7.84599e-01 setrgbcolor +fill +grestore +newpath +6.379294e+01 5.008047e+00 moveto +6.419422e+01 4.633058e+00 lineto +6.400108e+01 4.609234e+00 lineto +6.350361e+01 4.972358e+00 lineto +6.379294e+01 5.008047e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.33928e+01 5.421847e+00 moveto +6.379294e+01 5.008047e+00 lineto +6.350361e+01 4.972358e+00 lineto +6.300756e+01 5.374327e+00 lineto +6.33928e+01 5.421847e+00 lineto +closepath +gsave +6.350689e-01 6.350689e-01 7.938361e-01 setrgbcolor +fill +grestore +newpath +6.33928e+01 5.421847e+00 moveto +6.379294e+01 5.008047e+00 lineto +6.350361e+01 4.972358e+00 lineto +6.300756e+01 5.374327e+00 lineto +6.33928e+01 5.421847e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.299418e+01 5.874067e+00 moveto +6.33928e+01 5.421847e+00 lineto +6.300756e+01 5.374327e+00 lineto +6.25134e+01 5.814762e+00 lineto +6.299418e+01 5.874067e+00 lineto +closepath +gsave +6.423878e-01 6.423878e-01 8.029848e-01 setrgbcolor +fill +grestore +newpath +6.299418e+01 5.874067e+00 moveto +6.33928e+01 5.421847e+00 lineto +6.300756e+01 5.374327e+00 lineto +6.25134e+01 5.814762e+00 lineto +6.299418e+01 5.874067e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.259746e+01 6.364279e+00 moveto +6.299418e+01 5.874067e+00 lineto +6.25134e+01 5.814762e+00 lineto +6.202159e+01 6.293244e+00 lineto +6.259746e+01 6.364279e+00 lineto +closepath +gsave +6.496235e-01 6.496235e-01 8.120294e-01 setrgbcolor +fill +grestore +newpath +6.259746e+01 6.364279e+00 moveto +6.299418e+01 5.874067e+00 lineto +6.25134e+01 5.814762e+00 lineto +6.202159e+01 6.293244e+00 lineto +6.259746e+01 6.364279e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.220301e+01 6.892018e+00 moveto +6.259746e+01 6.364279e+00 lineto +6.202159e+01 6.293244e+00 lineto +6.15326e+01 6.80932e+00 lineto +6.220301e+01 6.892018e+00 lineto +closepath +gsave +6.567636e-01 6.567636e-01 8.209545e-01 setrgbcolor +fill +grestore +newpath +6.220301e+01 6.892018e+00 moveto +6.259746e+01 6.364279e+00 lineto +6.202159e+01 6.293244e+00 lineto +6.15326e+01 6.80932e+00 lineto +6.220301e+01 6.892018e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.181122e+01 7.456785e+00 moveto +6.220301e+01 6.892018e+00 lineto +6.15326e+01 6.80932e+00 lineto +6.10469e+01 7.362503e+00 lineto +6.181122e+01 7.456785e+00 lineto +closepath +gsave +6.637964e-01 6.637964e-01 8.297455e-01 setrgbcolor +fill +grestore +newpath +6.181122e+01 7.456785e+00 moveto +6.220301e+01 6.892018e+00 lineto +6.15326e+01 6.80932e+00 lineto +6.10469e+01 7.362503e+00 lineto +6.181122e+01 7.456785e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.142244e+01 8.058045e+00 moveto +6.181122e+01 7.456785e+00 lineto +6.10469e+01 7.362503e+00 lineto +6.056493e+01 7.952269e+00 lineto +6.142244e+01 8.058045e+00 lineto +closepath +gsave +6.707106e-01 6.707106e-01 8.383883e-01 setrgbcolor +fill +grestore +newpath +6.142244e+01 8.058045e+00 moveto +6.181122e+01 7.456785e+00 lineto +6.10469e+01 7.362503e+00 lineto +6.056493e+01 7.952269e+00 lineto +6.142244e+01 8.058045e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.103705e+01 8.695229e+00 moveto +6.142244e+01 8.058045e+00 lineto +6.056493e+01 7.952269e+00 lineto +6.008717e+01 8.578058e+00 lineto +6.103705e+01 8.695229e+00 lineto +closepath +gsave +6.774957e-01 6.774957e-01 8.468697e-01 setrgbcolor +fill +grestore +newpath +6.103705e+01 8.695229e+00 moveto +6.142244e+01 8.058045e+00 lineto +6.056493e+01 7.952269e+00 lineto +6.008717e+01 8.578058e+00 lineto +6.103705e+01 8.695229e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.065541e+01 9.367733e+00 moveto +6.103705e+01 8.695229e+00 lineto +6.008717e+01 8.578058e+00 lineto +5.961406e+01 9.239278e+00 lineto +6.065541e+01 9.367733e+00 lineto +closepath +gsave +6.841415e-01 6.841415e-01 8.551769e-01 setrgbcolor +fill +grestore +newpath +6.065541e+01 9.367733e+00 moveto +6.103705e+01 8.695229e+00 lineto +6.008717e+01 8.578058e+00 lineto +5.961406e+01 9.239278e+00 lineto +6.065541e+01 9.367733e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.027789e+01 1.007492e+01 moveto +6.065541e+01 9.367733e+00 lineto +5.961406e+01 9.239278e+00 lineto +5.914604e+01 9.935305e+00 lineto +6.027789e+01 1.007492e+01 lineto +closepath +gsave +6.906384e-01 6.906384e-01 8.632981e-01 setrgbcolor +fill +grestore +newpath +6.027789e+01 1.007492e+01 moveto +6.065541e+01 9.367733e+00 lineto +5.961406e+01 9.239278e+00 lineto +5.914604e+01 9.935305e+00 lineto +6.027789e+01 1.007492e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.990484e+01 1.081612e+01 moveto +6.027789e+01 1.007492e+01 lineto +5.914604e+01 9.935305e+00 lineto +5.868357e+01 1.066548e+01 lineto +5.990484e+01 1.081612e+01 lineto +closepath +gsave +6.969776e-01 6.969776e-01 8.71222e-01 setrgbcolor +fill +grestore +newpath +5.990484e+01 1.081612e+01 moveto +6.027789e+01 1.007492e+01 lineto +5.914604e+01 9.935305e+00 lineto +5.868357e+01 1.066548e+01 lineto +5.990484e+01 1.081612e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.953661e+01 1.159064e+01 moveto +5.990484e+01 1.081612e+01 lineto +5.868357e+01 1.066548e+01 lineto +5.822708e+01 1.14291e+01 lineto +5.953661e+01 1.159064e+01 lineto +closepath +gsave +7.031507e-01 7.031507e-01 8.789384e-01 setrgbcolor +fill +grestore +newpath +5.953661e+01 1.159064e+01 moveto +5.990484e+01 1.081612e+01 lineto +5.868357e+01 1.066548e+01 lineto +5.822708e+01 1.14291e+01 lineto +5.953661e+01 1.159064e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.917355e+01 1.239773e+01 moveto +5.953661e+01 1.159064e+01 lineto +5.822708e+01 1.14291e+01 lineto +5.777701e+01 1.222546e+01 lineto +5.917355e+01 1.239773e+01 lineto +closepath +gsave +7.091501e-01 7.091501e-01 8.864376e-01 setrgbcolor +fill +grestore +newpath +5.917355e+01 1.239773e+01 moveto +5.953661e+01 1.159064e+01 lineto +5.822708e+01 1.14291e+01 lineto +5.777701e+01 1.222546e+01 lineto +5.917355e+01 1.239773e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.881601e+01 1.323664e+01 moveto +5.917355e+01 1.239773e+01 lineto +5.777701e+01 1.222546e+01 lineto +5.733377e+01 1.30538e+01 lineto +5.881601e+01 1.323664e+01 lineto +closepath +gsave +7.149686e-01 7.149686e-01 8.937108e-01 setrgbcolor +fill +grestore +newpath +5.881601e+01 1.323664e+01 moveto +5.917355e+01 1.239773e+01 lineto +5.777701e+01 1.222546e+01 lineto +5.733377e+01 1.30538e+01 lineto +5.881601e+01 1.323664e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.846433e+01 1.410657e+01 moveto +5.881601e+01 1.323664e+01 lineto +5.733377e+01 1.30538e+01 lineto +5.689779e+01 1.391333e+01 lineto +5.846433e+01 1.410657e+01 lineto +closepath +gsave +7.205998e-01 7.205998e-01 9.007498e-01 setrgbcolor +fill +grestore +newpath +5.846433e+01 1.410657e+01 moveto +5.881601e+01 1.323664e+01 lineto +5.733377e+01 1.30538e+01 lineto +5.689779e+01 1.391333e+01 lineto +5.846433e+01 1.410657e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.811883e+01 1.50067e+01 moveto +5.846433e+01 1.410657e+01 lineto +5.689779e+01 1.391333e+01 lineto +5.646948e+01 1.480324e+01 lineto +5.811883e+01 1.50067e+01 lineto +closepath +gsave +7.260379e-01 7.260379e-01 9.075474e-01 setrgbcolor +fill +grestore +newpath +5.811883e+01 1.50067e+01 moveto +5.846433e+01 1.410657e+01 lineto +5.689779e+01 1.391333e+01 lineto +5.646948e+01 1.480324e+01 lineto +5.811883e+01 1.50067e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.777985e+01 1.593617e+01 moveto +5.811883e+01 1.50067e+01 lineto +5.646948e+01 1.480324e+01 lineto +5.604925e+01 1.572269e+01 lineto +5.777985e+01 1.593617e+01 lineto +closepath +gsave +7.312775e-01 7.312775e-01 9.140969e-01 setrgbcolor +fill +grestore +newpath +5.777985e+01 1.593617e+01 moveto +5.811883e+01 1.50067e+01 lineto +5.646948e+01 1.480324e+01 lineto +5.604925e+01 1.572269e+01 lineto +5.777985e+01 1.593617e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.74477e+01 1.689411e+01 moveto +5.777985e+01 1.593617e+01 lineto +5.604925e+01 1.572269e+01 lineto +5.563749e+01 1.667081e+01 lineto +5.74477e+01 1.689411e+01 lineto +closepath +gsave +7.363141e-01 7.363141e-01 9.203926e-01 setrgbcolor +fill +grestore +newpath +5.74477e+01 1.689411e+01 moveto +5.777985e+01 1.593617e+01 lineto +5.604925e+01 1.572269e+01 lineto +5.563749e+01 1.667081e+01 lineto +5.74477e+01 1.689411e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.712271e+01 1.78796e+01 moveto +5.74477e+01 1.689411e+01 lineto +5.563749e+01 1.667081e+01 lineto +5.52346e+01 1.764669e+01 lineto +5.712271e+01 1.78796e+01 lineto +closepath +gsave +7.411434e-01 7.411434e-01 9.264292e-01 setrgbcolor +fill +grestore +newpath +5.712271e+01 1.78796e+01 moveto +5.74477e+01 1.689411e+01 lineto +5.563749e+01 1.667081e+01 lineto +5.52346e+01 1.764669e+01 lineto +5.712271e+01 1.78796e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.680517e+01 1.889172e+01 moveto +5.712271e+01 1.78796e+01 lineto +5.52346e+01 1.764669e+01 lineto +5.484095e+01 1.864942e+01 lineto +5.680517e+01 1.889172e+01 lineto +closepath +gsave +7.457618e-01 7.457618e-01 9.322022e-01 setrgbcolor +fill +grestore +newpath +5.680517e+01 1.889172e+01 moveto +5.712271e+01 1.78796e+01 lineto +5.52346e+01 1.764669e+01 lineto +5.484095e+01 1.864942e+01 lineto +5.680517e+01 1.889172e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.649539e+01 1.99295e+01 moveto +5.680517e+01 1.889172e+01 lineto +5.484095e+01 1.864942e+01 lineto +5.445692e+01 1.967805e+01 lineto +5.649539e+01 1.99295e+01 lineto +closepath +gsave +7.501663e-01 7.501663e-01 9.377078e-01 setrgbcolor +fill +grestore +newpath +5.649539e+01 1.99295e+01 moveto +5.680517e+01 1.889172e+01 lineto +5.484095e+01 1.864942e+01 lineto +5.445692e+01 1.967805e+01 lineto +5.649539e+01 1.99295e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.619367e+01 2.099197e+01 moveto +5.649539e+01 1.99295e+01 lineto +5.445692e+01 1.967805e+01 lineto +5.408288e+01 2.07316e+01 lineto +5.619367e+01 2.099197e+01 lineto +closepath +gsave +7.543541e-01 7.543541e-01 9.429427e-01 setrgbcolor +fill +grestore +newpath +5.619367e+01 2.099197e+01 moveto +5.649539e+01 1.99295e+01 lineto +5.445692e+01 1.967805e+01 lineto +5.408288e+01 2.07316e+01 lineto +5.619367e+01 2.099197e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.590028e+01 2.207812e+01 moveto +5.619367e+01 2.099197e+01 lineto +5.408288e+01 2.07316e+01 lineto +5.371917e+01 2.180907e+01 lineto +5.590028e+01 2.207812e+01 lineto +closepath +gsave +7.583232e-01 7.583232e-01 9.47904e-01 setrgbcolor +fill +grestore +newpath +5.590028e+01 2.207812e+01 moveto +5.619367e+01 2.099197e+01 lineto +5.408288e+01 2.07316e+01 lineto +5.371917e+01 2.180907e+01 lineto +5.590028e+01 2.207812e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.561551e+01 2.318691e+01 moveto +5.590028e+01 2.207812e+01 lineto +5.371917e+01 2.180907e+01 lineto +5.336614e+01 2.290945e+01 lineto +5.561551e+01 2.318691e+01 lineto +closepath +gsave +7.620716e-01 7.620716e-01 9.525896e-01 setrgbcolor +fill +grestore +newpath +5.561551e+01 2.318691e+01 moveto +5.590028e+01 2.207812e+01 lineto +5.371917e+01 2.180907e+01 lineto +5.336614e+01 2.290945e+01 lineto +5.561551e+01 2.318691e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.533962e+01 2.431731e+01 moveto +5.561551e+01 2.318691e+01 lineto +5.336614e+01 2.290945e+01 lineto +5.302412e+01 2.403168e+01 lineto +5.533962e+01 2.431731e+01 lineto +closepath +gsave +7.655981e-01 7.655981e-01 9.569976e-01 setrgbcolor +fill +grestore +newpath +5.533962e+01 2.431731e+01 moveto +5.561551e+01 2.318691e+01 lineto +5.336614e+01 2.290945e+01 lineto +5.302412e+01 2.403168e+01 lineto +5.533962e+01 2.431731e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.507288e+01 2.546823e+01 moveto +5.533962e+01 2.431731e+01 lineto +5.302412e+01 2.403168e+01 lineto +5.269345e+01 2.517472e+01 lineto +5.507288e+01 2.546823e+01 lineto +closepath +gsave +7.689014e-01 7.689014e-01 9.611268e-01 setrgbcolor +fill +grestore +newpath +5.507288e+01 2.546823e+01 moveto +5.533962e+01 2.431731e+01 lineto +5.302412e+01 2.403168e+01 lineto +5.269345e+01 2.517472e+01 lineto +5.507288e+01 2.546823e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.481554e+01 2.66386e+01 moveto +5.507288e+01 2.546823e+01 lineto +5.269345e+01 2.517472e+01 lineto +5.237443e+01 2.633748e+01 lineto +5.481554e+01 2.66386e+01 lineto +closepath +gsave +7.719808e-01 7.719808e-01 9.64976e-01 setrgbcolor +fill +grestore +newpath +5.481554e+01 2.66386e+01 moveto +5.507288e+01 2.546823e+01 lineto +5.269345e+01 2.517472e+01 lineto +5.237443e+01 2.633748e+01 lineto +5.481554e+01 2.66386e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.456785e+01 2.782729e+01 moveto +5.481554e+01 2.66386e+01 lineto +5.237443e+01 2.633748e+01 lineto +5.206736e+01 2.751885e+01 lineto +5.456785e+01 2.782729e+01 lineto +closepath +gsave +7.748358e-01 7.748358e-01 9.685447e-01 setrgbcolor +fill +grestore +newpath +5.456785e+01 2.782729e+01 moveto +5.481554e+01 2.66386e+01 lineto +5.237443e+01 2.633748e+01 lineto +5.206736e+01 2.751885e+01 lineto +5.456785e+01 2.782729e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.433003e+01 2.90332e+01 moveto +5.456785e+01 2.782729e+01 lineto +5.206736e+01 2.751885e+01 lineto +5.177253e+01 2.871772e+01 lineto +5.433003e+01 2.90332e+01 lineto +closepath +gsave +7.774659e-01 7.774659e-01 9.718324e-01 setrgbcolor +fill +grestore +newpath +5.433003e+01 2.90332e+01 moveto +5.456785e+01 2.782729e+01 lineto +5.206736e+01 2.751885e+01 lineto +5.177253e+01 2.871772e+01 lineto +5.433003e+01 2.90332e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.410231e+01 3.025516e+01 moveto +5.433003e+01 2.90332e+01 lineto +5.177253e+01 2.871772e+01 lineto +5.149023e+01 2.993296e+01 lineto +5.410231e+01 3.025516e+01 lineto +closepath +gsave +7.798712e-01 7.798712e-01 9.74839e-01 setrgbcolor +fill +grestore +newpath +5.410231e+01 3.025516e+01 moveto +5.433003e+01 2.90332e+01 lineto +5.177253e+01 2.871772e+01 lineto +5.149023e+01 2.993296e+01 lineto +5.410231e+01 3.025516e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.388491e+01 3.149204e+01 moveto +5.410231e+01 3.025516e+01 lineto +5.149023e+01 2.993296e+01 lineto +5.122072e+01 3.11634e+01 lineto +5.388491e+01 3.149204e+01 lineto +closepath +gsave +7.820516e-01 7.820516e-01 9.775645e-01 setrgbcolor +fill +grestore +newpath +5.388491e+01 3.149204e+01 moveto +5.410231e+01 3.025516e+01 lineto +5.149023e+01 2.993296e+01 lineto +5.122072e+01 3.11634e+01 lineto +5.388491e+01 3.149204e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.367803e+01 3.274265e+01 moveto +5.388491e+01 3.149204e+01 lineto +5.122072e+01 3.11634e+01 lineto +5.096426e+01 3.24079e+01 lineto +5.367803e+01 3.274265e+01 lineto +closepath +gsave +7.840072e-01 7.840072e-01 9.80009e-01 setrgbcolor +fill +grestore +newpath +5.367803e+01 3.274265e+01 moveto +5.388491e+01 3.149204e+01 lineto +5.122072e+01 3.11634e+01 lineto +5.096426e+01 3.24079e+01 lineto +5.367803e+01 3.274265e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.348187e+01 3.400581e+01 moveto +5.367803e+01 3.274265e+01 lineto +5.096426e+01 3.24079e+01 lineto +5.072109e+01 3.366526e+01 lineto +5.348187e+01 3.400581e+01 lineto +closepath +gsave +7.857382e-01 7.857382e-01 9.821728e-01 setrgbcolor +fill +grestore +newpath +5.348187e+01 3.400581e+01 moveto +5.367803e+01 3.274265e+01 lineto +5.096426e+01 3.24079e+01 lineto +5.072109e+01 3.366526e+01 lineto +5.348187e+01 3.400581e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.329662e+01 3.528033e+01 moveto +5.348187e+01 3.400581e+01 lineto +5.072109e+01 3.366526e+01 lineto +5.049143e+01 3.49343e+01 lineto +5.329662e+01 3.528033e+01 lineto +closepath +gsave +7.87245e-01 7.87245e-01 9.840562e-01 setrgbcolor +fill +grestore +newpath +5.329662e+01 3.528033e+01 moveto +5.348187e+01 3.400581e+01 lineto +5.072109e+01 3.366526e+01 lineto +5.049143e+01 3.49343e+01 lineto +5.329662e+01 3.528033e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.312245e+01 3.6565e+01 moveto +5.329662e+01 3.528033e+01 lineto +5.049143e+01 3.49343e+01 lineto +5.027552e+01 3.621382e+01 lineto +5.312245e+01 3.6565e+01 lineto +closepath +gsave +7.885277e-01 7.885277e-01 9.856597e-01 setrgbcolor +fill +grestore +newpath +5.312245e+01 3.6565e+01 moveto +5.329662e+01 3.528033e+01 lineto +5.049143e+01 3.49343e+01 lineto +5.027552e+01 3.621382e+01 lineto +5.312245e+01 3.6565e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.295953e+01 3.78586e+01 moveto +5.312245e+01 3.6565e+01 lineto +5.027552e+01 3.621382e+01 lineto +5.007354e+01 3.75026e+01 lineto +5.295953e+01 3.78586e+01 lineto +closepath +gsave +7.895868e-01 7.895868e-01 9.869835e-01 setrgbcolor +fill +grestore +newpath +5.295953e+01 3.78586e+01 moveto +5.312245e+01 3.6565e+01 lineto +5.027552e+01 3.621382e+01 lineto +5.007354e+01 3.75026e+01 lineto +5.295953e+01 3.78586e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.2808e+01 3.915991e+01 moveto +5.295953e+01 3.78586e+01 lineto +5.007354e+01 3.75026e+01 lineto +4.98857e+01 3.879943e+01 lineto +5.2808e+01 3.915991e+01 lineto +closepath +gsave +7.904225e-01 7.904225e-01 9.880281e-01 setrgbcolor +fill +grestore +newpath +5.2808e+01 3.915991e+01 moveto +5.295953e+01 3.78586e+01 lineto +5.007354e+01 3.75026e+01 lineto +4.98857e+01 3.879943e+01 lineto +5.2808e+01 3.915991e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.266802e+01 4.046769e+01 moveto +5.2808e+01 3.915991e+01 lineto +4.98857e+01 3.879943e+01 lineto +4.971216e+01 4.010308e+01 lineto +5.266802e+01 4.046769e+01 lineto +closepath +gsave +7.91035e-01 7.91035e-01 9.887937e-01 setrgbcolor +fill +grestore +newpath +5.266802e+01 4.046769e+01 moveto +5.2808e+01 3.915991e+01 lineto +4.98857e+01 3.879943e+01 lineto +4.971216e+01 4.010308e+01 lineto +5.266802e+01 4.046769e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.449949e+01 4.285299e+00 moveto +6.499838e+01 4.00086e+00 lineto +6.499807e+01 4.000816e+00 lineto +6.440581e+01 4.271726e+00 lineto +6.449949e+01 4.285299e+00 lineto +closepath +gsave +6.128126e-01 6.128126e-01 7.660158e-01 setrgbcolor +fill +grestore +newpath +6.449949e+01 4.285299e+00 moveto +6.499838e+01 4.00086e+00 lineto +6.499807e+01 4.000816e+00 lineto +6.440581e+01 4.271726e+00 lineto +6.449949e+01 4.285299e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.400108e+01 4.609234e+00 moveto +6.449949e+01 4.285299e+00 lineto +6.440581e+01 4.271726e+00 lineto +6.38141e+01 4.582145e+00 lineto +6.400108e+01 4.609234e+00 lineto +closepath +gsave +6.204489e-01 6.204489e-01 7.755611e-01 setrgbcolor +fill +grestore +newpath +6.400108e+01 4.609234e+00 moveto +6.449949e+01 4.285299e+00 lineto +6.440581e+01 4.271726e+00 lineto +6.38141e+01 4.582145e+00 lineto +6.400108e+01 4.609234e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.350361e+01 4.972358e+00 moveto +6.400108e+01 4.609234e+00 lineto +6.38141e+01 4.582145e+00 lineto +6.322352e+01 4.931779e+00 lineto +6.350361e+01 4.972358e+00 lineto +closepath +gsave +6.280419e-01 6.280419e-01 7.850524e-01 setrgbcolor +fill +grestore +newpath +6.350361e+01 4.972358e+00 moveto +6.400108e+01 4.609234e+00 lineto +6.38141e+01 4.582145e+00 lineto +6.322352e+01 4.931779e+00 lineto +6.350361e+01 4.972358e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.300756e+01 5.374327e+00 moveto +6.350361e+01 4.972358e+00 lineto +6.322352e+01 4.931779e+00 lineto +6.263462e+01 5.320297e+00 lineto +6.300756e+01 5.374327e+00 lineto +closepath +gsave +6.355779e-01 6.355779e-01 7.944723e-01 setrgbcolor +fill +grestore +newpath +6.300756e+01 5.374327e+00 moveto +6.350361e+01 4.972358e+00 lineto +6.322352e+01 4.931779e+00 lineto +6.263462e+01 5.320297e+00 lineto +6.300756e+01 5.374327e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.25134e+01 5.814762e+00 moveto +6.300756e+01 5.374327e+00 lineto +6.263462e+01 5.320297e+00 lineto +6.204795e+01 5.74733e+00 lineto +6.25134e+01 5.814762e+00 lineto +closepath +gsave +6.430432e-01 6.430432e-01 8.038039e-01 setrgbcolor +fill +grestore +newpath +6.25134e+01 5.814762e+00 moveto +6.300756e+01 5.374327e+00 lineto +6.263462e+01 5.320297e+00 lineto +6.204795e+01 5.74733e+00 lineto +6.25134e+01 5.814762e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.202159e+01 6.293244e+00 moveto +6.25134e+01 5.814762e+00 lineto +6.204795e+01 5.74733e+00 lineto +6.146409e+01 6.212476e+00 lineto +6.202159e+01 6.293244e+00 lineto +closepath +gsave +6.504247e-01 6.504247e-01 8.130309e-01 setrgbcolor +fill +grestore +newpath +6.202159e+01 6.293244e+00 moveto +6.25134e+01 5.814762e+00 lineto +6.204795e+01 5.74733e+00 lineto +6.146409e+01 6.212476e+00 lineto +6.202159e+01 6.293244e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.15326e+01 6.80932e+00 moveto +6.202159e+01 6.293244e+00 lineto +6.146409e+01 6.212476e+00 lineto +6.088357e+01 6.715292e+00 lineto +6.15326e+01 6.80932e+00 lineto +closepath +gsave +6.5771e-01 6.5771e-01 8.221375e-01 setrgbcolor +fill +grestore +newpath +6.15326e+01 6.80932e+00 moveto +6.202159e+01 6.293244e+00 lineto +6.146409e+01 6.212476e+00 lineto +6.088357e+01 6.715292e+00 lineto +6.15326e+01 6.80932e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.10469e+01 7.362503e+00 moveto +6.15326e+01 6.80932e+00 lineto +6.088357e+01 6.715292e+00 lineto +6.030695e+01 7.255304e+00 lineto +6.10469e+01 7.362503e+00 lineto +closepath +gsave +6.648868e-01 6.648868e-01 8.311084e-01 setrgbcolor +fill +grestore +newpath +6.10469e+01 7.362503e+00 moveto +6.15326e+01 6.80932e+00 lineto +6.088357e+01 6.715292e+00 lineto +6.030695e+01 7.255304e+00 lineto +6.10469e+01 7.362503e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.056493e+01 7.952269e+00 moveto +6.10469e+01 7.362503e+00 lineto +6.030695e+01 7.255304e+00 lineto +5.973477e+01 7.831999e+00 lineto +6.056493e+01 7.952269e+00 lineto +closepath +gsave +6.719434e-01 6.719434e-01 8.399293e-01 setrgbcolor +fill +grestore +newpath +6.056493e+01 7.952269e+00 moveto +6.10469e+01 7.362503e+00 lineto +6.030695e+01 7.255304e+00 lineto +5.973477e+01 7.831999e+00 lineto +6.056493e+01 7.952269e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.008717e+01 8.578058e+00 moveto +6.056493e+01 7.952269e+00 lineto +5.973477e+01 7.831999e+00 lineto +5.916758e+01 8.444832e+00 lineto +6.008717e+01 8.578058e+00 lineto +closepath +gsave +6.78869e-01 6.78869e-01 8.485863e-01 setrgbcolor +fill +grestore +newpath +6.008717e+01 8.578058e+00 moveto +6.056493e+01 7.952269e+00 lineto +5.973477e+01 7.831999e+00 lineto +5.916758e+01 8.444832e+00 lineto +6.008717e+01 8.578058e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.961406e+01 9.239278e+00 moveto +6.008717e+01 8.578058e+00 lineto +5.916758e+01 8.444832e+00 lineto +5.860591e+01 9.093223e+00 lineto +5.961406e+01 9.239278e+00 lineto +closepath +gsave +6.85653e-01 6.85653e-01 8.570663e-01 setrgbcolor +fill +grestore +newpath +5.961406e+01 9.239278e+00 moveto +6.008717e+01 8.578058e+00 lineto +5.916758e+01 8.444832e+00 lineto +5.860591e+01 9.093223e+00 lineto +5.961406e+01 9.239278e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.914604e+01 9.935305e+00 moveto +5.961406e+01 9.239278e+00 lineto +5.860591e+01 9.093223e+00 lineto +5.805029e+01 9.776558e+00 lineto +5.914604e+01 9.935305e+00 lineto +closepath +gsave +6.922856e-01 6.922856e-01 8.653571e-01 setrgbcolor +fill +grestore +newpath +5.914604e+01 9.935305e+00 moveto +5.961406e+01 9.239278e+00 lineto +5.860591e+01 9.093223e+00 lineto +5.805029e+01 9.776558e+00 lineto +5.914604e+01 9.935305e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.868357e+01 1.066548e+01 moveto +5.914604e+01 9.935305e+00 lineto +5.805029e+01 9.776558e+00 lineto +5.750125e+01 1.049419e+01 lineto +5.868357e+01 1.066548e+01 lineto +closepath +gsave +6.987577e-01 6.987577e-01 8.734471e-01 setrgbcolor +fill +grestore +newpath +5.868357e+01 1.066548e+01 moveto +5.914604e+01 9.935305e+00 lineto +5.805029e+01 9.776558e+00 lineto +5.750125e+01 1.049419e+01 lineto +5.868357e+01 1.066548e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.822708e+01 1.14291e+01 moveto +5.868357e+01 1.066548e+01 lineto +5.750125e+01 1.049419e+01 lineto +5.695932e+01 1.124544e+01 lineto +5.822708e+01 1.14291e+01 lineto +closepath +gsave +7.050606e-01 7.050606e-01 8.813258e-01 setrgbcolor +fill +grestore +newpath +5.822708e+01 1.14291e+01 moveto +5.868357e+01 1.066548e+01 lineto +5.750125e+01 1.049419e+01 lineto +5.695932e+01 1.124544e+01 lineto +5.822708e+01 1.14291e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.777701e+01 1.222546e+01 moveto +5.822708e+01 1.14291e+01 lineto +5.695932e+01 1.124544e+01 lineto +5.642499e+01 1.202959e+01 lineto +5.777701e+01 1.222546e+01 lineto +closepath +gsave +7.111865e-01 7.111865e-01 8.889831e-01 setrgbcolor +fill +grestore +newpath +5.777701e+01 1.222546e+01 moveto +5.822708e+01 1.14291e+01 lineto +5.695932e+01 1.124544e+01 lineto +5.642499e+01 1.202959e+01 lineto +5.777701e+01 1.222546e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.733377e+01 1.30538e+01 moveto +5.777701e+01 1.222546e+01 lineto +5.642499e+01 1.202959e+01 lineto +5.589879e+01 1.284591e+01 lineto +5.733377e+01 1.30538e+01 lineto +closepath +gsave +7.171281e-01 7.171281e-01 8.964101e-01 setrgbcolor +fill +grestore +newpath +5.733377e+01 1.30538e+01 moveto +5.777701e+01 1.222546e+01 lineto +5.642499e+01 1.202959e+01 lineto +5.589879e+01 1.284591e+01 lineto +5.733377e+01 1.30538e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.689779e+01 1.391333e+01 moveto +5.733377e+01 1.30538e+01 lineto +5.589879e+01 1.284591e+01 lineto +5.53812e+01 1.369362e+01 lineto +5.689779e+01 1.391333e+01 lineto +closepath +gsave +7.228788e-01 7.228788e-01 9.035984e-01 setrgbcolor +fill +grestore +newpath +5.689779e+01 1.391333e+01 moveto +5.733377e+01 1.30538e+01 lineto +5.589879e+01 1.284591e+01 lineto +5.53812e+01 1.369362e+01 lineto +5.689779e+01 1.391333e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.646948e+01 1.480324e+01 moveto +5.689779e+01 1.391333e+01 lineto +5.53812e+01 1.369362e+01 lineto +5.487272e+01 1.457192e+01 lineto +5.646948e+01 1.480324e+01 lineto +closepath +gsave +7.284325e-01 7.284325e-01 9.105407e-01 setrgbcolor +fill +grestore +newpath +5.646948e+01 1.480324e+01 moveto +5.689779e+01 1.391333e+01 lineto +5.53812e+01 1.369362e+01 lineto +5.487272e+01 1.457192e+01 lineto +5.646948e+01 1.480324e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.604925e+01 1.572269e+01 moveto +5.646948e+01 1.480324e+01 lineto +5.487272e+01 1.457192e+01 lineto +5.437383e+01 1.547997e+01 lineto +5.604925e+01 1.572269e+01 lineto +closepath +gsave +7.337841e-01 7.337841e-01 9.172301e-01 setrgbcolor +fill +grestore +newpath +5.604925e+01 1.572269e+01 moveto +5.646948e+01 1.480324e+01 lineto +5.487272e+01 1.457192e+01 lineto +5.437383e+01 1.547997e+01 lineto +5.604925e+01 1.572269e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.563749e+01 1.667081e+01 moveto +5.604925e+01 1.572269e+01 lineto +5.437383e+01 1.547997e+01 lineto +5.3885e+01 1.641692e+01 lineto +5.563749e+01 1.667081e+01 lineto +closepath +gsave +7.389286e-01 7.389286e-01 9.236607e-01 setrgbcolor +fill +grestore +newpath +5.563749e+01 1.667081e+01 moveto +5.604925e+01 1.572269e+01 lineto +5.437383e+01 1.547997e+01 lineto +5.3885e+01 1.641692e+01 lineto +5.563749e+01 1.667081e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.52346e+01 1.764669e+01 moveto +5.563749e+01 1.667081e+01 lineto +5.3885e+01 1.641692e+01 lineto +5.340669e+01 1.738188e+01 lineto +5.52346e+01 1.764669e+01 lineto +closepath +gsave +7.438619e-01 7.438619e-01 9.298274e-01 setrgbcolor +fill +grestore +newpath +5.52346e+01 1.764669e+01 moveto +5.563749e+01 1.667081e+01 lineto +5.3885e+01 1.641692e+01 lineto +5.340669e+01 1.738188e+01 lineto +5.52346e+01 1.764669e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.484095e+01 1.864942e+01 moveto +5.52346e+01 1.764669e+01 lineto +5.340669e+01 1.738188e+01 lineto +5.293936e+01 1.837393e+01 lineto +5.484095e+01 1.864942e+01 lineto +closepath +gsave +7.485804e-01 7.485804e-01 9.357255e-01 setrgbcolor +fill +grestore +newpath +5.484095e+01 1.864942e+01 moveto +5.52346e+01 1.764669e+01 lineto +5.340669e+01 1.738188e+01 lineto +5.293936e+01 1.837393e+01 lineto +5.484095e+01 1.864942e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.445692e+01 1.967805e+01 moveto +5.484095e+01 1.864942e+01 lineto +5.293936e+01 1.837393e+01 lineto +5.248345e+01 1.939214e+01 lineto +5.445692e+01 1.967805e+01 lineto +closepath +gsave +7.53081e-01 7.53081e-01 9.413512e-01 setrgbcolor +fill +grestore +newpath +5.445692e+01 1.967805e+01 moveto +5.484095e+01 1.864942e+01 lineto +5.293936e+01 1.837393e+01 lineto +5.248345e+01 1.939214e+01 lineto +5.445692e+01 1.967805e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.408288e+01 2.07316e+01 moveto +5.445692e+01 1.967805e+01 lineto +5.248345e+01 1.939214e+01 lineto +5.203939e+01 2.043555e+01 lineto +5.408288e+01 2.07316e+01 lineto +closepath +gsave +7.57361e-01 7.57361e-01 9.467013e-01 setrgbcolor +fill +grestore +newpath +5.408288e+01 2.07316e+01 moveto +5.445692e+01 1.967805e+01 lineto +5.248345e+01 1.939214e+01 lineto +5.203939e+01 2.043555e+01 lineto +5.408288e+01 2.07316e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.371917e+01 2.180907e+01 moveto +5.408288e+01 2.07316e+01 lineto +5.203939e+01 2.043555e+01 lineto +5.16076e+01 2.150316e+01 lineto +5.371917e+01 2.180907e+01 lineto +closepath +gsave +7.614184e-01 7.614184e-01 9.51773e-01 setrgbcolor +fill +grestore +newpath +5.371917e+01 2.180907e+01 moveto +5.408288e+01 2.07316e+01 lineto +5.203939e+01 2.043555e+01 lineto +5.16076e+01 2.150316e+01 lineto +5.371917e+01 2.180907e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.336614e+01 2.290945e+01 moveto +5.371917e+01 2.180907e+01 lineto +5.16076e+01 2.150316e+01 lineto +5.118849e+01 2.259396e+01 lineto +5.336614e+01 2.290945e+01 lineto +closepath +gsave +7.652513e-01 7.652513e-01 9.565642e-01 setrgbcolor +fill +grestore +newpath +5.336614e+01 2.290945e+01 moveto +5.371917e+01 2.180907e+01 lineto +5.16076e+01 2.150316e+01 lineto +5.118849e+01 2.259396e+01 lineto +5.336614e+01 2.290945e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.302412e+01 2.403168e+01 moveto +5.336614e+01 2.290945e+01 lineto +5.118849e+01 2.259396e+01 lineto +5.078246e+01 2.370692e+01 lineto +5.302412e+01 2.403168e+01 lineto +closepath +gsave +7.688586e-01 7.688586e-01 9.610732e-01 setrgbcolor +fill +grestore +newpath +5.302412e+01 2.403168e+01 moveto +5.336614e+01 2.290945e+01 lineto +5.118849e+01 2.259396e+01 lineto +5.078246e+01 2.370692e+01 lineto +5.302412e+01 2.403168e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.269345e+01 2.517472e+01 moveto +5.302412e+01 2.403168e+01 lineto +5.078246e+01 2.370692e+01 lineto +5.038989e+01 2.484099e+01 lineto +5.269345e+01 2.517472e+01 lineto +closepath +gsave +7.722391e-01 7.722391e-01 9.652988e-01 setrgbcolor +fill +grestore +newpath +5.269345e+01 2.517472e+01 moveto +5.302412e+01 2.403168e+01 lineto +5.078246e+01 2.370692e+01 lineto +5.038989e+01 2.484099e+01 lineto +5.269345e+01 2.517472e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.237443e+01 2.633748e+01 moveto +5.269345e+01 2.517472e+01 lineto +5.038989e+01 2.484099e+01 lineto +5.001115e+01 2.59951e+01 lineto +5.237443e+01 2.633748e+01 lineto +closepath +gsave +7.753921e-01 7.753921e-01 9.692401e-01 setrgbcolor +fill +grestore +newpath +5.237443e+01 2.633748e+01 moveto +5.269345e+01 2.517472e+01 lineto +5.038989e+01 2.484099e+01 lineto +5.001115e+01 2.59951e+01 lineto +5.237443e+01 2.633748e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.206736e+01 2.751885e+01 moveto +5.237443e+01 2.633748e+01 lineto +5.001115e+01 2.59951e+01 lineto +4.96466e+01 2.716815e+01 lineto +5.206736e+01 2.751885e+01 lineto +closepath +gsave +7.783173e-01 7.783173e-01 9.728966e-01 setrgbcolor +fill +grestore +newpath +5.206736e+01 2.751885e+01 moveto +5.237443e+01 2.633748e+01 lineto +5.001115e+01 2.59951e+01 lineto +4.96466e+01 2.716815e+01 lineto +5.206736e+01 2.751885e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.177253e+01 2.871772e+01 moveto +5.206736e+01 2.751885e+01 lineto +4.96466e+01 2.716815e+01 lineto +4.929659e+01 2.835902e+01 lineto +5.177253e+01 2.871772e+01 lineto +closepath +gsave +7.810145e-01 7.810145e-01 9.762681e-01 setrgbcolor +fill +grestore +newpath +5.177253e+01 2.871772e+01 moveto +5.206736e+01 2.751885e+01 lineto +4.96466e+01 2.716815e+01 lineto +4.929659e+01 2.835902e+01 lineto +5.177253e+01 2.871772e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.149023e+01 2.993296e+01 moveto +5.177253e+01 2.871772e+01 lineto +4.929659e+01 2.835902e+01 lineto +4.896145e+01 2.95666e+01 lineto +5.149023e+01 2.993296e+01 lineto +closepath +gsave +7.834836e-01 7.834836e-01 9.793545e-01 setrgbcolor +fill +grestore +newpath +5.149023e+01 2.993296e+01 moveto +5.177253e+01 2.871772e+01 lineto +4.929659e+01 2.835902e+01 lineto +4.896145e+01 2.95666e+01 lineto +5.149023e+01 2.993296e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.122072e+01 3.11634e+01 moveto +5.149023e+01 2.993296e+01 lineto +4.896145e+01 2.95666e+01 lineto +4.86415e+01 3.078974e+01 lineto +5.122072e+01 3.11634e+01 lineto +closepath +gsave +7.857248e-01 7.857248e-01 9.821559e-01 setrgbcolor +fill +grestore +newpath +5.122072e+01 3.11634e+01 moveto +5.149023e+01 2.993296e+01 lineto +4.896145e+01 2.95666e+01 lineto +4.86415e+01 3.078974e+01 lineto +5.122072e+01 3.11634e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.096426e+01 3.24079e+01 moveto +5.122072e+01 3.11634e+01 lineto +4.86415e+01 3.078974e+01 lineto +4.833703e+01 3.202728e+01 lineto +5.096426e+01 3.24079e+01 lineto +closepath +gsave +7.877383e-01 7.877383e-01 9.846729e-01 setrgbcolor +fill +grestore +newpath +5.096426e+01 3.24079e+01 moveto +5.122072e+01 3.11634e+01 lineto +4.86415e+01 3.078974e+01 lineto +4.833703e+01 3.202728e+01 lineto +5.096426e+01 3.24079e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.072109e+01 3.366526e+01 moveto +5.096426e+01 3.24079e+01 lineto +4.833703e+01 3.202728e+01 lineto +4.804834e+01 3.327804e+01 lineto +5.072109e+01 3.366526e+01 lineto +closepath +gsave +7.895245e-01 7.895245e-01 9.869056e-01 setrgbcolor +fill +grestore +newpath +5.072109e+01 3.366526e+01 moveto +5.096426e+01 3.24079e+01 lineto +4.833703e+01 3.202728e+01 lineto +4.804834e+01 3.327804e+01 lineto +5.072109e+01 3.366526e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.049143e+01 3.49343e+01 moveto +5.072109e+01 3.366526e+01 lineto +4.804834e+01 3.327804e+01 lineto +4.77757e+01 3.454086e+01 lineto +5.049143e+01 3.49343e+01 lineto +closepath +gsave +7.910838e-01 7.910838e-01 9.888547e-01 setrgbcolor +fill +grestore +newpath +5.049143e+01 3.49343e+01 moveto +5.072109e+01 3.366526e+01 lineto +4.804834e+01 3.327804e+01 lineto +4.77757e+01 3.454086e+01 lineto +5.049143e+01 3.49343e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.027552e+01 3.621382e+01 moveto +5.049143e+01 3.49343e+01 lineto +4.77757e+01 3.454086e+01 lineto +4.751936e+01 3.581452e+01 lineto +5.027552e+01 3.621382e+01 lineto +closepath +gsave +7.924166e-01 7.924166e-01 9.905207e-01 setrgbcolor +fill +grestore +newpath +5.027552e+01 3.621382e+01 moveto +5.049143e+01 3.49343e+01 lineto +4.77757e+01 3.454086e+01 lineto +4.751936e+01 3.581452e+01 lineto +5.027552e+01 3.621382e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.007354e+01 3.75026e+01 moveto +5.027552e+01 3.621382e+01 lineto +4.751936e+01 3.581452e+01 lineto +4.727958e+01 3.709783e+01 lineto +5.007354e+01 3.75026e+01 lineto +closepath +gsave +7.935232e-01 7.935232e-01 9.91904e-01 setrgbcolor +fill +grestore +newpath +5.007354e+01 3.75026e+01 moveto +5.027552e+01 3.621382e+01 lineto +4.751936e+01 3.581452e+01 lineto +4.727958e+01 3.709783e+01 lineto +5.007354e+01 3.75026e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.98857e+01 3.879943e+01 moveto +5.007354e+01 3.75026e+01 lineto +4.727958e+01 3.709783e+01 lineto +4.705658e+01 3.838956e+01 lineto +4.98857e+01 3.879943e+01 lineto +closepath +gsave +7.944041e-01 7.944041e-01 9.930052e-01 setrgbcolor +fill +grestore +newpath +4.98857e+01 3.879943e+01 moveto +5.007354e+01 3.75026e+01 lineto +4.727958e+01 3.709783e+01 lineto +4.705658e+01 3.838956e+01 lineto +4.98857e+01 3.879943e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.971216e+01 4.010308e+01 moveto +4.98857e+01 3.879943e+01 lineto +4.705658e+01 3.838956e+01 lineto +4.685056e+01 3.968851e+01 lineto +4.971216e+01 4.010308e+01 lineto +closepath +gsave +7.950596e-01 7.950596e-01 9.938245e-01 setrgbcolor +fill +grestore +newpath +4.971216e+01 4.010308e+01 moveto +4.98857e+01 3.879943e+01 lineto +4.705658e+01 3.838956e+01 lineto +4.685056e+01 3.968851e+01 lineto +4.971216e+01 4.010308e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.440581e+01 4.271726e+00 moveto +6.499807e+01 4.000816e+00 lineto +6.499778e+01 4.000767e+00 lineto +6.431578e+01 4.256601e+00 lineto +6.440581e+01 4.271726e+00 lineto +closepath +gsave +6.128611e-01 6.128611e-01 7.660763e-01 setrgbcolor +fill +grestore +newpath +6.440581e+01 4.271726e+00 moveto +6.499807e+01 4.000816e+00 lineto +6.499778e+01 4.000767e+00 lineto +6.431578e+01 4.256601e+00 lineto +6.440581e+01 4.271726e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.38141e+01 4.582145e+00 moveto +6.440581e+01 4.271726e+00 lineto +6.431578e+01 4.256601e+00 lineto +6.363443e+01 4.551959e+00 lineto +6.38141e+01 4.582145e+00 lineto +closepath +gsave +6.205944e-01 6.205944e-01 7.75743e-01 setrgbcolor +fill +grestore +newpath +6.38141e+01 4.582145e+00 moveto +6.440581e+01 4.271726e+00 lineto +6.431578e+01 4.256601e+00 lineto +6.363443e+01 4.551959e+00 lineto +6.38141e+01 4.582145e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.322352e+01 4.931779e+00 moveto +6.38141e+01 4.582145e+00 lineto +6.363443e+01 4.551959e+00 lineto +6.295437e+01 4.88656e+00 lineto +6.322352e+01 4.931779e+00 lineto +closepath +gsave +6.282851e-01 6.282851e-01 7.853563e-01 setrgbcolor +fill +grestore +newpath +6.322352e+01 4.931779e+00 moveto +6.38141e+01 4.582145e+00 lineto +6.363443e+01 4.551959e+00 lineto +6.295437e+01 4.88656e+00 lineto +6.322352e+01 4.931779e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.263462e+01 5.320297e+00 moveto +6.322352e+01 4.931779e+00 lineto +6.295437e+01 4.88656e+00 lineto +6.227625e+01 5.260088e+00 lineto +6.263462e+01 5.320297e+00 lineto +closepath +gsave +6.35919e-01 6.35919e-01 7.948988e-01 setrgbcolor +fill +grestore +newpath +6.263462e+01 5.320297e+00 moveto +6.322352e+01 4.931779e+00 lineto +6.295437e+01 4.88656e+00 lineto +6.227625e+01 5.260088e+00 lineto +6.263462e+01 5.320297e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.204795e+01 5.74733e+00 moveto +6.263462e+01 5.320297e+00 lineto +6.227625e+01 5.260088e+00 lineto +6.160071e+01 5.672189e+00 lineto +6.204795e+01 5.74733e+00 lineto +closepath +gsave +6.434824e-01 6.434824e-01 8.04353e-01 setrgbcolor +fill +grestore +newpath +6.204795e+01 5.74733e+00 moveto +6.263462e+01 5.320297e+00 lineto +6.227625e+01 5.260088e+00 lineto +6.160071e+01 5.672189e+00 lineto +6.204795e+01 5.74733e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.146409e+01 6.212476e+00 moveto +6.204795e+01 5.74733e+00 lineto +6.160071e+01 5.672189e+00 lineto +6.092838e+01 6.122473e+00 lineto +6.146409e+01 6.212476e+00 lineto +closepath +gsave +6.509618e-01 6.509618e-01 8.137022e-01 setrgbcolor +fill +grestore +newpath +6.146409e+01 6.212476e+00 moveto +6.204795e+01 5.74733e+00 lineto +6.160071e+01 5.672189e+00 lineto +6.092838e+01 6.122473e+00 lineto +6.146409e+01 6.212476e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.088357e+01 6.715292e+00 moveto +6.146409e+01 6.212476e+00 lineto +6.092838e+01 6.122473e+00 lineto +6.025991e+01 6.610512e+00 lineto +6.088357e+01 6.715292e+00 lineto +closepath +gsave +6.583443e-01 6.583443e-01 8.229303e-01 setrgbcolor +fill +grestore +newpath +6.088357e+01 6.715292e+00 moveto +6.146409e+01 6.212476e+00 lineto +6.092838e+01 6.122473e+00 lineto +6.025991e+01 6.610512e+00 lineto +6.088357e+01 6.715292e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.030695e+01 7.255304e+00 moveto +6.088357e+01 6.715292e+00 lineto +6.025991e+01 6.610512e+00 lineto +5.959593e+01 7.135847e+00 lineto +6.030695e+01 7.255304e+00 lineto +closepath +gsave +6.656175e-01 6.656175e-01 8.320218e-01 setrgbcolor +fill +grestore +newpath +6.030695e+01 7.255304e+00 moveto +6.088357e+01 6.715292e+00 lineto +6.025991e+01 6.610512e+00 lineto +5.959593e+01 7.135847e+00 lineto +6.030695e+01 7.255304e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.973477e+01 7.831999e+00 moveto +6.030695e+01 7.255304e+00 lineto +5.959593e+01 7.135847e+00 lineto +5.893707e+01 7.697978e+00 lineto +5.973477e+01 7.831999e+00 lineto +closepath +gsave +6.727695e-01 6.727695e-01 8.409619e-01 setrgbcolor +fill +grestore +newpath +5.973477e+01 7.831999e+00 moveto +6.030695e+01 7.255304e+00 lineto +5.959593e+01 7.135847e+00 lineto +5.893707e+01 7.697978e+00 lineto +5.973477e+01 7.831999e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.916758e+01 8.444832e+00 moveto +5.973477e+01 7.831999e+00 lineto +5.893707e+01 7.697978e+00 lineto +5.828394e+01 8.296374e+00 lineto +5.916758e+01 8.444832e+00 lineto +closepath +gsave +6.797891e-01 6.797891e-01 8.497364e-01 setrgbcolor +fill +grestore +newpath +5.916758e+01 8.444832e+00 moveto +5.973477e+01 7.831999e+00 lineto +5.893707e+01 7.697978e+00 lineto +5.828394e+01 8.296374e+00 lineto +5.916758e+01 8.444832e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.860591e+01 9.093223e+00 moveto +5.916758e+01 8.444832e+00 lineto +5.828394e+01 8.296374e+00 lineto +5.763718e+01 8.930468e+00 lineto +5.860591e+01 9.093223e+00 lineto +closepath +gsave +6.866657e-01 6.866657e-01 8.583321e-01 setrgbcolor +fill +grestore +newpath +5.860591e+01 9.093223e+00 moveto +5.916758e+01 8.444832e+00 lineto +5.828394e+01 8.296374e+00 lineto +5.763718e+01 8.930468e+00 lineto +5.860591e+01 9.093223e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.805029e+01 9.776558e+00 moveto +5.860591e+01 9.093223e+00 lineto +5.763718e+01 8.930468e+00 lineto +5.699738e+01 9.59966e+00 lineto +5.805029e+01 9.776558e+00 lineto +closepath +gsave +6.93389e-01 6.93389e-01 8.667363e-01 setrgbcolor +fill +grestore +newpath +5.805029e+01 9.776558e+00 moveto +5.860591e+01 9.093223e+00 lineto +5.763718e+01 8.930468e+00 lineto +5.699738e+01 9.59966e+00 lineto +5.805029e+01 9.776558e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.750125e+01 1.049419e+01 moveto +5.805029e+01 9.776558e+00 lineto +5.699738e+01 9.59966e+00 lineto +5.636517e+01 1.030332e+01 lineto +5.750125e+01 1.049419e+01 lineto +closepath +gsave +6.999499e-01 6.999499e-01 8.749374e-01 setrgbcolor +fill +grestore +newpath +5.750125e+01 1.049419e+01 moveto +5.805029e+01 9.776558e+00 lineto +5.699738e+01 9.59966e+00 lineto +5.636517e+01 1.030332e+01 lineto +5.750125e+01 1.049419e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.695932e+01 1.124544e+01 moveto +5.750125e+01 1.049419e+01 lineto +5.636517e+01 1.030332e+01 lineto +5.574112e+01 1.104077e+01 lineto +5.695932e+01 1.124544e+01 lineto +closepath +gsave +7.063396e-01 7.063396e-01 8.829245e-01 setrgbcolor +fill +grestore +newpath +5.695932e+01 1.124544e+01 moveto +5.750125e+01 1.049419e+01 lineto +5.636517e+01 1.030332e+01 lineto +5.574112e+01 1.104077e+01 lineto +5.695932e+01 1.124544e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.642499e+01 1.202959e+01 moveto +5.695932e+01 1.124544e+01 lineto +5.574112e+01 1.104077e+01 lineto +5.512585e+01 1.181132e+01 lineto +5.642499e+01 1.202959e+01 lineto +closepath +gsave +7.125499e-01 7.125499e-01 8.906874e-01 setrgbcolor +fill +grestore +newpath +5.642499e+01 1.202959e+01 moveto +5.695932e+01 1.124544e+01 lineto +5.574112e+01 1.104077e+01 lineto +5.512585e+01 1.181132e+01 lineto +5.642499e+01 1.202959e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.589879e+01 1.284591e+01 moveto +5.642499e+01 1.202959e+01 lineto +5.512585e+01 1.181132e+01 lineto +5.451992e+01 1.261425e+01 lineto +5.589879e+01 1.284591e+01 lineto +closepath +gsave +7.185736e-01 7.185736e-01 8.98217e-01 setrgbcolor +fill +grestore +newpath +5.589879e+01 1.284591e+01 moveto +5.642499e+01 1.202959e+01 lineto +5.512585e+01 1.181132e+01 lineto +5.451992e+01 1.261425e+01 lineto +5.589879e+01 1.284591e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.53812e+01 1.369362e+01 moveto +5.589879e+01 1.284591e+01 lineto +5.451992e+01 1.261425e+01 lineto +5.392392e+01 1.344878e+01 lineto +5.53812e+01 1.369362e+01 lineto +closepath +gsave +7.24404e-01 7.24404e-01 9.055049e-01 setrgbcolor +fill +grestore +newpath +5.53812e+01 1.369362e+01 moveto +5.589879e+01 1.284591e+01 lineto +5.451992e+01 1.261425e+01 lineto +5.392392e+01 1.344878e+01 lineto +5.53812e+01 1.369362e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.487272e+01 1.457192e+01 moveto +5.53812e+01 1.369362e+01 lineto +5.392392e+01 1.344878e+01 lineto +5.33384e+01 1.431414e+01 lineto +5.487272e+01 1.457192e+01 lineto +closepath +gsave +7.300348e-01 7.300348e-01 9.125435e-01 setrgbcolor +fill +grestore +newpath +5.487272e+01 1.457192e+01 moveto +5.53812e+01 1.369362e+01 lineto +5.392392e+01 1.344878e+01 lineto +5.33384e+01 1.431414e+01 lineto +5.487272e+01 1.457192e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.437383e+01 1.547997e+01 moveto +5.487272e+01 1.457192e+01 lineto +5.33384e+01 1.431414e+01 lineto +5.276393e+01 1.520949e+01 lineto +5.437383e+01 1.547997e+01 lineto +closepath +gsave +7.354608e-01 7.354608e-01 9.19326e-01 setrgbcolor +fill +grestore +newpath +5.437383e+01 1.547997e+01 moveto +5.487272e+01 1.457192e+01 lineto +5.33384e+01 1.431414e+01 lineto +5.276393e+01 1.520949e+01 lineto +5.437383e+01 1.547997e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.3885e+01 1.641692e+01 moveto +5.437383e+01 1.547997e+01 lineto +5.276393e+01 1.520949e+01 lineto +5.220104e+01 1.6134e+01 lineto +5.3885e+01 1.641692e+01 lineto +closepath +gsave +7.406771e-01 7.406771e-01 9.258464e-01 setrgbcolor +fill +grestore +newpath +5.3885e+01 1.641692e+01 moveto +5.437383e+01 1.547997e+01 lineto +5.276393e+01 1.520949e+01 lineto +5.220104e+01 1.6134e+01 lineto +5.3885e+01 1.641692e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.340669e+01 1.738188e+01 moveto +5.3885e+01 1.641692e+01 lineto +5.220104e+01 1.6134e+01 lineto +5.165026e+01 1.708678e+01 lineto +5.340669e+01 1.738188e+01 lineto +closepath +gsave +7.456796e-01 7.456796e-01 9.320995e-01 setrgbcolor +fill +grestore +newpath +5.340669e+01 1.738188e+01 moveto +5.3885e+01 1.641692e+01 lineto +5.220104e+01 1.6134e+01 lineto +5.165026e+01 1.708678e+01 lineto +5.340669e+01 1.738188e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.293936e+01 1.837393e+01 moveto +5.340669e+01 1.738188e+01 lineto +5.165026e+01 1.708678e+01 lineto +5.111213e+01 1.806694e+01 lineto +5.293936e+01 1.837393e+01 lineto +closepath +gsave +7.504645e-01 7.504645e-01 9.380806e-01 setrgbcolor +fill +grestore +newpath +5.293936e+01 1.837393e+01 moveto +5.340669e+01 1.738188e+01 lineto +5.165026e+01 1.708678e+01 lineto +5.111213e+01 1.806694e+01 lineto +5.293936e+01 1.837393e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.248345e+01 1.939214e+01 moveto +5.293936e+01 1.837393e+01 lineto +5.111213e+01 1.806694e+01 lineto +5.058715e+01 1.907355e+01 lineto +5.248345e+01 1.939214e+01 lineto +closepath +gsave +7.550288e-01 7.550288e-01 9.43786e-01 setrgbcolor +fill +grestore +newpath +5.248345e+01 1.939214e+01 moveto +5.293936e+01 1.837393e+01 lineto +5.111213e+01 1.806694e+01 lineto +5.058715e+01 1.907355e+01 lineto +5.248345e+01 1.939214e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.203939e+01 2.043555e+01 moveto +5.248345e+01 1.939214e+01 lineto +5.058715e+01 1.907355e+01 lineto +5.007581e+01 2.010565e+01 lineto +5.203939e+01 2.043555e+01 lineto +closepath +gsave +7.5937e-01 7.5937e-01 9.492124e-01 setrgbcolor +fill +grestore +newpath +5.203939e+01 2.043555e+01 moveto +5.248345e+01 1.939214e+01 lineto +5.058715e+01 1.907355e+01 lineto +5.007581e+01 2.010565e+01 lineto +5.203939e+01 2.043555e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.16076e+01 2.150316e+01 moveto +5.203939e+01 2.043555e+01 lineto +5.007581e+01 2.010565e+01 lineto +4.95786e+01 2.116227e+01 lineto +5.16076e+01 2.150316e+01 lineto +closepath +gsave +7.634858e-01 7.634858e-01 9.543572e-01 setrgbcolor +fill +grestore +newpath +5.16076e+01 2.150316e+01 moveto +5.203939e+01 2.043555e+01 lineto +5.007581e+01 2.010565e+01 lineto +4.95786e+01 2.116227e+01 lineto +5.16076e+01 2.150316e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.118849e+01 2.259396e+01 moveto +5.16076e+01 2.150316e+01 lineto +4.95786e+01 2.116227e+01 lineto +4.9096e+01 2.22424e+01 lineto +5.118849e+01 2.259396e+01 lineto +closepath +gsave +7.673746e-01 7.673746e-01 9.592183e-01 setrgbcolor +fill +grestore +newpath +5.118849e+01 2.259396e+01 moveto +5.16076e+01 2.150316e+01 lineto +4.95786e+01 2.116227e+01 lineto +4.9096e+01 2.22424e+01 lineto +5.118849e+01 2.259396e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.078246e+01 2.370692e+01 moveto +5.118849e+01 2.259396e+01 lineto +4.9096e+01 2.22424e+01 lineto +4.862845e+01 2.334503e+01 lineto +5.078246e+01 2.370692e+01 lineto +closepath +gsave +7.710352e-01 7.710352e-01 9.63794e-01 setrgbcolor +fill +grestore +newpath +5.078246e+01 2.370692e+01 moveto +5.118849e+01 2.259396e+01 lineto +4.9096e+01 2.22424e+01 lineto +4.862845e+01 2.334503e+01 lineto +5.078246e+01 2.370692e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.038989e+01 2.484099e+01 moveto +5.078246e+01 2.370692e+01 lineto +4.862845e+01 2.334503e+01 lineto +4.81764e+01 2.446911e+01 lineto +5.038989e+01 2.484099e+01 lineto +closepath +gsave +7.744666e-01 7.744666e-01 9.680833e-01 setrgbcolor +fill +grestore +newpath +5.038989e+01 2.484099e+01 moveto +5.078246e+01 2.370692e+01 lineto +4.862845e+01 2.334503e+01 lineto +4.81764e+01 2.446911e+01 lineto +5.038989e+01 2.484099e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.001115e+01 2.59951e+01 moveto +5.038989e+01 2.484099e+01 lineto +4.81764e+01 2.446911e+01 lineto +4.774028e+01 2.561357e+01 lineto +5.001115e+01 2.59951e+01 lineto +closepath +gsave +7.776682e-01 7.776682e-01 9.720853e-01 setrgbcolor +fill +grestore +newpath +5.001115e+01 2.59951e+01 moveto +5.038989e+01 2.484099e+01 lineto +4.81764e+01 2.446911e+01 lineto +4.774028e+01 2.561357e+01 lineto +5.001115e+01 2.59951e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.96466e+01 2.716815e+01 moveto +5.001115e+01 2.59951e+01 lineto +4.774028e+01 2.561357e+01 lineto +4.732051e+01 2.677734e+01 lineto +4.96466e+01 2.716815e+01 lineto +closepath +gsave +7.806397e-01 7.806397e-01 9.757996e-01 setrgbcolor +fill +grestore +newpath +4.96466e+01 2.716815e+01 moveto +5.001115e+01 2.59951e+01 lineto +4.774028e+01 2.561357e+01 lineto +4.732051e+01 2.677734e+01 lineto +4.96466e+01 2.716815e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.929659e+01 2.835902e+01 moveto +4.96466e+01 2.716815e+01 lineto +4.732051e+01 2.677734e+01 lineto +4.691747e+01 2.795931e+01 lineto +4.929659e+01 2.835902e+01 lineto +closepath +gsave +7.833809e-01 7.833809e-01 9.792262e-01 setrgbcolor +fill +grestore +newpath +4.929659e+01 2.835902e+01 moveto +4.96466e+01 2.716815e+01 lineto +4.732051e+01 2.677734e+01 lineto +4.691747e+01 2.795931e+01 lineto +4.929659e+01 2.835902e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.896145e+01 2.95666e+01 moveto +4.929659e+01 2.835902e+01 lineto +4.691747e+01 2.795931e+01 lineto +4.653155e+01 2.915835e+01 lineto +4.896145e+01 2.95666e+01 lineto +closepath +gsave +7.85892e-01 7.85892e-01 9.82365e-01 setrgbcolor +fill +grestore +newpath +4.896145e+01 2.95666e+01 moveto +4.929659e+01 2.835902e+01 lineto +4.691747e+01 2.795931e+01 lineto +4.653155e+01 2.915835e+01 lineto +4.896145e+01 2.95666e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.86415e+01 3.078974e+01 moveto +4.896145e+01 2.95666e+01 lineto +4.653155e+01 2.915835e+01 lineto +4.616312e+01 3.037335e+01 lineto +4.86415e+01 3.078974e+01 lineto +closepath +gsave +7.881732e-01 7.881732e-01 9.852165e-01 setrgbcolor +fill +grestore +newpath +4.86415e+01 3.078974e+01 moveto +4.896145e+01 2.95666e+01 lineto +4.653155e+01 2.915835e+01 lineto +4.616312e+01 3.037335e+01 lineto +4.86415e+01 3.078974e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.833703e+01 3.202728e+01 moveto +4.86415e+01 3.078974e+01 lineto +4.616312e+01 3.037335e+01 lineto +4.581253e+01 3.160314e+01 lineto +4.833703e+01 3.202728e+01 lineto +closepath +gsave +7.902248e-01 7.902248e-01 9.87781e-01 setrgbcolor +fill +grestore +newpath +4.833703e+01 3.202728e+01 moveto +4.86415e+01 3.078974e+01 lineto +4.616312e+01 3.037335e+01 lineto +4.581253e+01 3.160314e+01 lineto +4.833703e+01 3.202728e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.804834e+01 3.327804e+01 moveto +4.833703e+01 3.202728e+01 lineto +4.581253e+01 3.160314e+01 lineto +4.54801e+01 3.284656e+01 lineto +4.804834e+01 3.327804e+01 lineto +closepath +gsave +7.920472e-01 7.920472e-01 9.90059e-01 setrgbcolor +fill +grestore +newpath +4.804834e+01 3.327804e+01 moveto +4.833703e+01 3.202728e+01 lineto +4.581253e+01 3.160314e+01 lineto +4.54801e+01 3.284656e+01 lineto +4.804834e+01 3.327804e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.77757e+01 3.454086e+01 moveto +4.804834e+01 3.327804e+01 lineto +4.54801e+01 3.284656e+01 lineto +4.516615e+01 3.410243e+01 lineto +4.77757e+01 3.454086e+01 lineto +closepath +gsave +7.93641e-01 7.93641e-01 9.920513e-01 setrgbcolor +fill +grestore +newpath +4.77757e+01 3.454086e+01 moveto +4.804834e+01 3.327804e+01 lineto +4.54801e+01 3.284656e+01 lineto +4.516615e+01 3.410243e+01 lineto +4.77757e+01 3.454086e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.751936e+01 3.581452e+01 moveto +4.77757e+01 3.454086e+01 lineto +4.516615e+01 3.410243e+01 lineto +4.487098e+01 3.536957e+01 lineto +4.751936e+01 3.581452e+01 lineto +closepath +gsave +7.950067e-01 7.950067e-01 9.937583e-01 setrgbcolor +fill +grestore +newpath +4.751936e+01 3.581452e+01 moveto +4.77757e+01 3.454086e+01 lineto +4.516615e+01 3.410243e+01 lineto +4.487098e+01 3.536957e+01 lineto +4.751936e+01 3.581452e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.727958e+01 3.709783e+01 moveto +4.751936e+01 3.581452e+01 lineto +4.487098e+01 3.536957e+01 lineto +4.459487e+01 3.664677e+01 lineto +4.727958e+01 3.709783e+01 lineto +closepath +gsave +7.961446e-01 7.961446e-01 9.951807e-01 setrgbcolor +fill +grestore +newpath +4.727958e+01 3.709783e+01 moveto +4.751936e+01 3.581452e+01 lineto +4.487098e+01 3.536957e+01 lineto +4.459487e+01 3.664677e+01 lineto +4.727958e+01 3.709783e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.705658e+01 3.838956e+01 moveto +4.727958e+01 3.709783e+01 lineto +4.459487e+01 3.664677e+01 lineto +4.433808e+01 3.793283e+01 lineto +4.705658e+01 3.838956e+01 lineto +closepath +gsave +7.970552e-01 7.970552e-01 9.96319e-01 setrgbcolor +fill +grestore +newpath +4.705658e+01 3.838956e+01 moveto +4.727958e+01 3.709783e+01 lineto +4.459487e+01 3.664677e+01 lineto +4.433808e+01 3.793283e+01 lineto +4.705658e+01 3.838956e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.685056e+01 3.968851e+01 moveto +4.705658e+01 3.838956e+01 lineto +4.433808e+01 3.793283e+01 lineto +4.410086e+01 3.922653e+01 lineto +4.685056e+01 3.968851e+01 lineto +closepath +gsave +7.97739e-01 7.97739e-01 9.971737e-01 setrgbcolor +fill +grestore +newpath +4.685056e+01 3.968851e+01 moveto +4.705658e+01 3.838956e+01 lineto +4.433808e+01 3.793283e+01 lineto +4.410086e+01 3.922653e+01 lineto +4.685056e+01 3.968851e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.431578e+01 4.256601e+00 moveto +6.499778e+01 4.000767e+00 lineto +6.499751e+01 4.000713e+00 lineto +6.422998e+01 4.240018e+00 lineto +6.431578e+01 4.256601e+00 lineto +closepath +gsave +6.128854e-01 6.128854e-01 7.661067e-01 setrgbcolor +fill +grestore +newpath +6.431578e+01 4.256601e+00 moveto +6.499778e+01 4.000767e+00 lineto +6.499751e+01 4.000713e+00 lineto +6.422998e+01 4.240018e+00 lineto +6.431578e+01 4.256601e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.363443e+01 4.551959e+00 moveto +6.431578e+01 4.256601e+00 lineto +6.422998e+01 4.240018e+00 lineto +6.346318e+01 4.518862e+00 lineto +6.363443e+01 4.551959e+00 lineto +closepath +gsave +6.206673e-01 6.206673e-01 7.758342e-01 setrgbcolor +fill +grestore +newpath +6.363443e+01 4.551959e+00 moveto +6.431578e+01 4.256601e+00 lineto +6.422998e+01 4.240018e+00 lineto +6.346318e+01 4.518862e+00 lineto +6.363443e+01 4.551959e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.295437e+01 4.88656e+00 moveto +6.363443e+01 4.551959e+00 lineto +6.346318e+01 4.518862e+00 lineto +6.269784e+01 4.836981e+00 lineto +6.295437e+01 4.88656e+00 lineto +closepath +gsave +6.28407e-01 6.28407e-01 7.855088e-01 setrgbcolor +fill +grestore +newpath +6.295437e+01 4.88656e+00 moveto +6.363443e+01 4.551959e+00 lineto +6.346318e+01 4.518862e+00 lineto +6.269784e+01 4.836981e+00 lineto +6.295437e+01 4.88656e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.227625e+01 5.260088e+00 moveto +6.295437e+01 4.88656e+00 lineto +6.269784e+01 4.836981e+00 lineto +6.193468e+01 5.194073e+00 lineto +6.227625e+01 5.260088e+00 lineto +closepath +gsave +6.360901e-01 6.360901e-01 7.951127e-01 setrgbcolor +fill +grestore +newpath +6.227625e+01 5.260088e+00 moveto +6.295437e+01 4.88656e+00 lineto +6.269784e+01 4.836981e+00 lineto +6.193468e+01 5.194073e+00 lineto +6.227625e+01 5.260088e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.160071e+01 5.672189e+00 moveto +6.227625e+01 5.260088e+00 lineto +6.193468e+01 5.194073e+00 lineto +6.117442e+01 5.589801e+00 lineto +6.160071e+01 5.672189e+00 lineto +closepath +gsave +6.437027e-01 6.437027e-01 8.046283e-01 setrgbcolor +fill +grestore +newpath +6.160071e+01 5.672189e+00 moveto +6.227625e+01 5.260088e+00 lineto +6.193468e+01 5.194073e+00 lineto +6.117442e+01 5.589801e+00 lineto +6.160071e+01 5.672189e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.092838e+01 6.122473e+00 moveto +6.160071e+01 5.672189e+00 lineto +6.117442e+01 5.589801e+00 lineto +6.041778e+01 6.023789e+00 lineto +6.092838e+01 6.122473e+00 lineto +closepath +gsave +6.512311e-01 6.512311e-01 8.140389e-01 setrgbcolor +fill +grestore +newpath +6.092838e+01 6.122473e+00 moveto +6.160071e+01 5.672189e+00 lineto +6.117442e+01 5.589801e+00 lineto +6.041778e+01 6.023789e+00 lineto +6.092838e+01 6.122473e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.025991e+01 6.610512e+00 moveto +6.092838e+01 6.122473e+00 lineto +6.041778e+01 6.023789e+00 lineto +5.966548e+01 6.495628e+00 lineto +6.025991e+01 6.610512e+00 lineto +closepath +gsave +6.586624e-01 6.586624e-01 8.23328e-01 setrgbcolor +fill +grestore +newpath +6.025991e+01 6.610512e+00 moveto +6.092838e+01 6.122473e+00 lineto +6.041778e+01 6.023789e+00 lineto +5.966548e+01 6.495628e+00 lineto +6.025991e+01 6.610512e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.959593e+01 7.135847e+00 moveto +6.025991e+01 6.610512e+00 lineto +5.966548e+01 6.495628e+00 lineto +5.891824e+01 7.004869e+00 lineto +5.959593e+01 7.135847e+00 lineto +closepath +gsave +6.65984e-01 6.65984e-01 8.3248e-01 setrgbcolor +fill +grestore +newpath +5.959593e+01 7.135847e+00 moveto +6.025991e+01 6.610512e+00 lineto +5.966548e+01 6.495628e+00 lineto +5.891824e+01 7.004869e+00 lineto +5.959593e+01 7.135847e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.893707e+01 7.697978e+00 moveto +5.959593e+01 7.135847e+00 lineto +5.891824e+01 7.004869e+00 lineto +5.817675e+01 7.551032e+00 lineto +5.893707e+01 7.697978e+00 lineto +closepath +gsave +6.731838e-01 6.731838e-01 8.414798e-01 setrgbcolor +fill +grestore +newpath +5.893707e+01 7.697978e+00 moveto +5.959593e+01 7.135847e+00 lineto +5.891824e+01 7.004869e+00 lineto +5.817675e+01 7.551032e+00 lineto +5.893707e+01 7.697978e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.828394e+01 8.296374e+00 moveto +5.893707e+01 7.697978e+00 lineto +5.817675e+01 7.551032e+00 lineto +5.744172e+01 8.133598e+00 lineto +5.828394e+01 8.296374e+00 lineto +closepath +gsave +6.802506e-01 6.802506e-01 8.503132e-01 setrgbcolor +fill +grestore +newpath +5.828394e+01 8.296374e+00 moveto +5.893707e+01 7.697978e+00 lineto +5.817675e+01 7.551032e+00 lineto +5.744172e+01 8.133598e+00 lineto +5.828394e+01 8.296374e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.763718e+01 8.930468e+00 moveto +5.828394e+01 8.296374e+00 lineto +5.744172e+01 8.133598e+00 lineto +5.671384e+01 8.752016e+00 lineto +5.763718e+01 8.930468e+00 lineto +closepath +gsave +6.871735e-01 6.871735e-01 8.589668e-01 setrgbcolor +fill +grestore +newpath +5.763718e+01 8.930468e+00 moveto +5.828394e+01 8.296374e+00 lineto +5.744172e+01 8.133598e+00 lineto +5.671384e+01 8.752016e+00 lineto +5.763718e+01 8.930468e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.699738e+01 9.59966e+00 moveto +5.763718e+01 8.930468e+00 lineto +5.671384e+01 8.752016e+00 lineto +5.599382e+01 9.405702e+00 lineto +5.699738e+01 9.59966e+00 lineto +closepath +gsave +6.939423e-01 6.939423e-01 8.674279e-01 setrgbcolor +fill +grestore +newpath +5.699738e+01 9.59966e+00 moveto +5.763718e+01 8.930468e+00 lineto +5.671384e+01 8.752016e+00 lineto +5.599382e+01 9.405702e+00 lineto +5.699738e+01 9.59966e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.636517e+01 1.030332e+01 moveto +5.699738e+01 9.59966e+00 lineto +5.599382e+01 9.405702e+00 lineto +5.528232e+01 1.009403e+01 lineto +5.636517e+01 1.030332e+01 lineto +closepath +gsave +7.005477e-01 7.005477e-01 8.756846e-01 setrgbcolor +fill +grestore +newpath +5.636517e+01 1.030332e+01 moveto +5.699738e+01 9.59966e+00 lineto +5.599382e+01 9.405702e+00 lineto +5.528232e+01 1.009403e+01 lineto +5.636517e+01 1.030332e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.574112e+01 1.104077e+01 moveto +5.636517e+01 1.030332e+01 lineto +5.528232e+01 1.009403e+01 lineto +5.458002e+01 1.081636e+01 lineto +5.574112e+01 1.104077e+01 lineto +closepath +gsave +7.069807e-01 7.069807e-01 8.837259e-01 setrgbcolor +fill +grestore +newpath +5.574112e+01 1.104077e+01 moveto +5.636517e+01 1.030332e+01 lineto +5.528232e+01 1.009403e+01 lineto +5.458002e+01 1.081636e+01 lineto +5.574112e+01 1.104077e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.512585e+01 1.181132e+01 moveto +5.574112e+01 1.104077e+01 lineto +5.458002e+01 1.081636e+01 lineto +5.388758e+01 1.157201e+01 lineto +5.512585e+01 1.181132e+01 lineto +closepath +gsave +7.132334e-01 7.132334e-01 8.915417e-01 setrgbcolor +fill +grestore +newpath +5.512585e+01 1.181132e+01 moveto +5.574112e+01 1.104077e+01 lineto +5.458002e+01 1.081636e+01 lineto +5.388758e+01 1.157201e+01 lineto +5.512585e+01 1.181132e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.451992e+01 1.261425e+01 moveto +5.512585e+01 1.181132e+01 lineto +5.388758e+01 1.157201e+01 lineto +5.320567e+01 1.236024e+01 lineto +5.451992e+01 1.261425e+01 lineto +closepath +gsave +7.192982e-01 7.192982e-01 8.991227e-01 setrgbcolor +fill +grestore +newpath +5.451992e+01 1.261425e+01 moveto +5.512585e+01 1.181132e+01 lineto +5.388758e+01 1.157201e+01 lineto +5.320567e+01 1.236024e+01 lineto +5.451992e+01 1.261425e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.392392e+01 1.344878e+01 moveto +5.451992e+01 1.261425e+01 lineto +5.320567e+01 1.236024e+01 lineto +5.253492e+01 1.318033e+01 lineto +5.392392e+01 1.344878e+01 lineto +closepath +gsave +7.251683e-01 7.251683e-01 9.064604e-01 setrgbcolor +fill +grestore +newpath +5.392392e+01 1.344878e+01 moveto +5.451992e+01 1.261425e+01 lineto +5.320567e+01 1.236024e+01 lineto +5.253492e+01 1.318033e+01 lineto +5.392392e+01 1.344878e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.33384e+01 1.431414e+01 moveto +5.392392e+01 1.344878e+01 lineto +5.253492e+01 1.318033e+01 lineto +5.187598e+01 1.403149e+01 lineto +5.33384e+01 1.431414e+01 lineto +closepath +gsave +7.308377e-01 7.308377e-01 9.135471e-01 setrgbcolor +fill +grestore +newpath +5.33384e+01 1.431414e+01 moveto +5.392392e+01 1.344878e+01 lineto +5.253492e+01 1.318033e+01 lineto +5.187598e+01 1.403149e+01 lineto +5.33384e+01 1.431414e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.276393e+01 1.520949e+01 moveto +5.33384e+01 1.431414e+01 lineto +5.187598e+01 1.403149e+01 lineto +5.122946e+01 1.491293e+01 lineto +5.276393e+01 1.520949e+01 lineto +closepath +gsave +7.363009e-01 7.363009e-01 9.203761e-01 setrgbcolor +fill +grestore +newpath +5.276393e+01 1.520949e+01 moveto +5.33384e+01 1.431414e+01 lineto +5.187598e+01 1.403149e+01 lineto +5.122946e+01 1.491293e+01 lineto +5.276393e+01 1.520949e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.220104e+01 1.6134e+01 moveto +5.276393e+01 1.520949e+01 lineto +5.122946e+01 1.491293e+01 lineto +5.059598e+01 1.582379e+01 lineto +5.220104e+01 1.6134e+01 lineto +closepath +gsave +7.415531e-01 7.415531e-01 9.269413e-01 setrgbcolor +fill +grestore +newpath +5.220104e+01 1.6134e+01 moveto +5.276393e+01 1.520949e+01 lineto +5.122946e+01 1.491293e+01 lineto +5.059598e+01 1.582379e+01 lineto +5.220104e+01 1.6134e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.165026e+01 1.708678e+01 moveto +5.220104e+01 1.6134e+01 lineto +5.059598e+01 1.582379e+01 lineto +4.997614e+01 1.676323e+01 lineto +5.165026e+01 1.708678e+01 lineto +closepath +gsave +7.4659e-01 7.4659e-01 9.332375e-01 setrgbcolor +fill +grestore +newpath +5.165026e+01 1.708678e+01 moveto +5.220104e+01 1.6134e+01 lineto +5.059598e+01 1.582379e+01 lineto +4.997614e+01 1.676323e+01 lineto +5.165026e+01 1.708678e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.111213e+01 1.806694e+01 moveto +5.165026e+01 1.708678e+01 lineto +4.997614e+01 1.676323e+01 lineto +4.937052e+01 1.773034e+01 lineto +5.111213e+01 1.806694e+01 lineto +closepath +gsave +7.514081e-01 7.514081e-01 9.392601e-01 setrgbcolor +fill +grestore +newpath +5.111213e+01 1.806694e+01 moveto +5.165026e+01 1.708678e+01 lineto +4.997614e+01 1.676323e+01 lineto +4.937052e+01 1.773034e+01 lineto +5.111213e+01 1.806694e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.058715e+01 1.907355e+01 moveto +5.111213e+01 1.806694e+01 lineto +4.937052e+01 1.773034e+01 lineto +4.87797e+01 1.872423e+01 lineto +5.058715e+01 1.907355e+01 lineto +closepath +gsave +7.560041e-01 7.560041e-01 9.450052e-01 setrgbcolor +fill +grestore +newpath +5.058715e+01 1.907355e+01 moveto +5.111213e+01 1.806694e+01 lineto +4.937052e+01 1.773034e+01 lineto +4.87797e+01 1.872423e+01 lineto +5.058715e+01 1.907355e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.007581e+01 2.010565e+01 moveto +5.058715e+01 1.907355e+01 lineto +4.87797e+01 1.872423e+01 lineto +4.820424e+01 1.974393e+01 lineto +5.007581e+01 2.010565e+01 lineto +closepath +gsave +7.603757e-01 7.603757e-01 9.504696e-01 setrgbcolor +fill +grestore +newpath +5.007581e+01 2.010565e+01 moveto +5.058715e+01 1.907355e+01 lineto +4.87797e+01 1.872423e+01 lineto +4.820424e+01 1.974393e+01 lineto +5.007581e+01 2.010565e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.95786e+01 2.116227e+01 moveto +5.007581e+01 2.010565e+01 lineto +4.820424e+01 1.974393e+01 lineto +4.764468e+01 2.07885e+01 lineto +4.95786e+01 2.116227e+01 lineto +closepath +gsave +7.645206e-01 7.645206e-01 9.556507e-01 setrgbcolor +fill +grestore +newpath +4.95786e+01 2.116227e+01 moveto +5.007581e+01 2.010565e+01 lineto +4.820424e+01 1.974393e+01 lineto +4.764468e+01 2.07885e+01 lineto +4.95786e+01 2.116227e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.9096e+01 2.22424e+01 moveto +4.95786e+01 2.116227e+01 lineto +4.764468e+01 2.07885e+01 lineto +4.710156e+01 2.185694e+01 lineto +4.9096e+01 2.22424e+01 lineto +closepath +gsave +7.684372e-01 7.684372e-01 9.605465e-01 setrgbcolor +fill +grestore +newpath +4.9096e+01 2.22424e+01 moveto +4.95786e+01 2.116227e+01 lineto +4.764468e+01 2.07885e+01 lineto +4.710156e+01 2.185694e+01 lineto +4.9096e+01 2.22424e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.862845e+01 2.334503e+01 moveto +4.9096e+01 2.22424e+01 lineto +4.710156e+01 2.185694e+01 lineto +4.657538e+01 2.294824e+01 lineto +4.862845e+01 2.334503e+01 lineto +closepath +gsave +7.721243e-01 7.721243e-01 9.651554e-01 setrgbcolor +fill +grestore +newpath +4.862845e+01 2.334503e+01 moveto +4.9096e+01 2.22424e+01 lineto +4.710156e+01 2.185694e+01 lineto +4.657538e+01 2.294824e+01 lineto +4.862845e+01 2.334503e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.81764e+01 2.446911e+01 moveto +4.862845e+01 2.334503e+01 lineto +4.657538e+01 2.294824e+01 lineto +4.606664e+01 2.406136e+01 lineto +4.81764e+01 2.446911e+01 lineto +closepath +gsave +7.75581e-01 7.75581e-01 9.694763e-01 setrgbcolor +fill +grestore +newpath +4.81764e+01 2.446911e+01 moveto +4.862845e+01 2.334503e+01 lineto +4.657538e+01 2.294824e+01 lineto +4.606664e+01 2.406136e+01 lineto +4.81764e+01 2.446911e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.774028e+01 2.561357e+01 moveto +4.81764e+01 2.446911e+01 lineto +4.606664e+01 2.406136e+01 lineto +4.557583e+01 2.519525e+01 lineto +4.774028e+01 2.561357e+01 lineto +closepath +gsave +7.788067e-01 7.788067e-01 9.735084e-01 setrgbcolor +fill +grestore +newpath +4.774028e+01 2.561357e+01 moveto +4.81764e+01 2.446911e+01 lineto +4.606664e+01 2.406136e+01 lineto +4.557583e+01 2.519525e+01 lineto +4.774028e+01 2.561357e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.732051e+01 2.677734e+01 moveto +4.774028e+01 2.561357e+01 lineto +4.557583e+01 2.519525e+01 lineto +4.510341e+01 2.634884e+01 lineto +4.732051e+01 2.677734e+01 lineto +closepath +gsave +7.818012e-01 7.818012e-01 9.772515e-01 setrgbcolor +fill +grestore +newpath +4.732051e+01 2.677734e+01 moveto +4.774028e+01 2.561357e+01 lineto +4.557583e+01 2.519525e+01 lineto +4.510341e+01 2.634884e+01 lineto +4.732051e+01 2.677734e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.691747e+01 2.795931e+01 moveto +4.732051e+01 2.677734e+01 lineto +4.510341e+01 2.634884e+01 lineto +4.464983e+01 2.752104e+01 lineto +4.691747e+01 2.795931e+01 lineto +closepath +gsave +7.845643e-01 7.845643e-01 9.807053e-01 setrgbcolor +fill +grestore +newpath +4.691747e+01 2.795931e+01 moveto +4.732051e+01 2.677734e+01 lineto +4.510341e+01 2.634884e+01 lineto +4.464983e+01 2.752104e+01 lineto +4.691747e+01 2.795931e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.653155e+01 2.915835e+01 moveto +4.691747e+01 2.795931e+01 lineto +4.464983e+01 2.752104e+01 lineto +4.421552e+01 2.871074e+01 lineto +4.653155e+01 2.915835e+01 lineto +closepath +gsave +7.870962e-01 7.870962e-01 9.838702e-01 setrgbcolor +fill +grestore +newpath +4.653155e+01 2.915835e+01 moveto +4.691747e+01 2.795931e+01 lineto +4.464983e+01 2.752104e+01 lineto +4.421552e+01 2.871074e+01 lineto +4.653155e+01 2.915835e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.616312e+01 3.037335e+01 moveto +4.653155e+01 2.915835e+01 lineto +4.421552e+01 2.871074e+01 lineto +4.380089e+01 2.99168e+01 lineto +4.616312e+01 3.037335e+01 lineto +closepath +gsave +7.893971e-01 7.893971e-01 9.867464e-01 setrgbcolor +fill +grestore +newpath +4.616312e+01 3.037335e+01 moveto +4.653155e+01 2.915835e+01 lineto +4.421552e+01 2.871074e+01 lineto +4.380089e+01 2.99168e+01 lineto +4.616312e+01 3.037335e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.581253e+01 3.160314e+01 moveto +4.616312e+01 3.037335e+01 lineto +4.380089e+01 2.99168e+01 lineto +4.340632e+01 3.113809e+01 lineto +4.581253e+01 3.160314e+01 lineto +closepath +gsave +7.914676e-01 7.914676e-01 9.893345e-01 setrgbcolor +fill +grestore +newpath +4.581253e+01 3.160314e+01 moveto +4.616312e+01 3.037335e+01 lineto +4.380089e+01 2.99168e+01 lineto +4.340632e+01 3.113809e+01 lineto +4.581253e+01 3.160314e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.54801e+01 3.284656e+01 moveto +4.581253e+01 3.160314e+01 lineto +4.340632e+01 3.113809e+01 lineto +4.303221e+01 3.237346e+01 lineto +4.54801e+01 3.284656e+01 lineto +closepath +gsave +7.93308e-01 7.93308e-01 9.91635e-01 setrgbcolor +fill +grestore +newpath +4.54801e+01 3.284656e+01 moveto +4.581253e+01 3.160314e+01 lineto +4.340632e+01 3.113809e+01 lineto +4.303221e+01 3.237346e+01 lineto +4.54801e+01 3.284656e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.516615e+01 3.410243e+01 moveto +4.54801e+01 3.284656e+01 lineto +4.303221e+01 3.237346e+01 lineto +4.267889e+01 3.362172e+01 lineto +4.516615e+01 3.410243e+01 lineto +closepath +gsave +7.949189e-01 7.949189e-01 9.936486e-01 setrgbcolor +fill +grestore +newpath +4.516615e+01 3.410243e+01 moveto +4.54801e+01 3.284656e+01 lineto +4.303221e+01 3.237346e+01 lineto +4.267889e+01 3.362172e+01 lineto +4.516615e+01 3.410243e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.487098e+01 3.536957e+01 moveto +4.516615e+01 3.410243e+01 lineto +4.267889e+01 3.362172e+01 lineto +4.234671e+01 3.488171e+01 lineto +4.487098e+01 3.536957e+01 lineto +closepath +gsave +7.963008e-01 7.963008e-01 9.95376e-01 setrgbcolor +fill +grestore +newpath +4.487098e+01 3.536957e+01 moveto +4.516615e+01 3.410243e+01 lineto +4.267889e+01 3.362172e+01 lineto +4.234671e+01 3.488171e+01 lineto +4.487098e+01 3.536957e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.459487e+01 3.664677e+01 moveto +4.487098e+01 3.536957e+01 lineto +4.234671e+01 3.488171e+01 lineto +4.203597e+01 3.615222e+01 lineto +4.459487e+01 3.664677e+01 lineto +closepath +gsave +7.974542e-01 7.974542e-01 9.968178e-01 setrgbcolor +fill +grestore +newpath +4.459487e+01 3.664677e+01 moveto +4.487098e+01 3.536957e+01 lineto +4.234671e+01 3.488171e+01 lineto +4.203597e+01 3.615222e+01 lineto +4.459487e+01 3.664677e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.433808e+01 3.793283e+01 moveto +4.459487e+01 3.664677e+01 lineto +4.203597e+01 3.615222e+01 lineto +4.174698e+01 3.743205e+01 lineto +4.433808e+01 3.793283e+01 lineto +closepath +gsave +7.983796e-01 7.983796e-01 9.979745e-01 setrgbcolor +fill +grestore +newpath +4.433808e+01 3.793283e+01 moveto +4.459487e+01 3.664677e+01 lineto +4.203597e+01 3.615222e+01 lineto +4.174698e+01 3.743205e+01 lineto +4.433808e+01 3.793283e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.410086e+01 3.922653e+01 moveto +4.433808e+01 3.793283e+01 lineto +4.174698e+01 3.743205e+01 lineto +4.148e+01 3.872e+01 lineto +4.410086e+01 3.922653e+01 lineto +closepath +gsave +7.990774e-01 7.990774e-01 9.988468e-01 setrgbcolor +fill +grestore +newpath +4.410086e+01 3.922653e+01 moveto +4.433808e+01 3.793283e+01 lineto +4.174698e+01 3.743205e+01 lineto +4.148e+01 3.872e+01 lineto +4.410086e+01 3.922653e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.422998e+01 4.240018e+00 moveto +6.499751e+01 4.000713e+00 lineto +6.499724e+01 4.000655e+00 lineto +6.414892e+01 4.222079e+00 lineto +6.422998e+01 4.240018e+00 lineto +closepath +gsave +6.128854e-01 6.128854e-01 7.661067e-01 setrgbcolor +fill +grestore +newpath +6.422998e+01 4.240018e+00 moveto +6.499751e+01 4.000713e+00 lineto +6.499724e+01 4.000655e+00 lineto +6.414892e+01 4.222079e+00 lineto +6.422998e+01 4.240018e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.346318e+01 4.518862e+00 moveto +6.422998e+01 4.240018e+00 lineto +6.414892e+01 4.222079e+00 lineto +6.330141e+01 4.483058e+00 lineto +6.346318e+01 4.518862e+00 lineto +closepath +gsave +6.206673e-01 6.206673e-01 7.758342e-01 setrgbcolor +fill +grestore +newpath +6.346318e+01 4.518862e+00 moveto +6.422998e+01 4.240018e+00 lineto +6.414892e+01 4.222079e+00 lineto +6.330141e+01 4.483058e+00 lineto +6.346318e+01 4.518862e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.269784e+01 4.836981e+00 moveto +6.346318e+01 4.518862e+00 lineto +6.330141e+01 4.483058e+00 lineto +6.24555e+01 4.783346e+00 lineto +6.269784e+01 4.836981e+00 lineto +closepath +gsave +6.28407e-01 6.28407e-01 7.855088e-01 setrgbcolor +fill +grestore +newpath +6.269784e+01 4.836981e+00 moveto +6.346318e+01 4.518862e+00 lineto +6.330141e+01 4.483058e+00 lineto +6.24555e+01 4.783346e+00 lineto +6.269784e+01 4.836981e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.193468e+01 5.194073e+00 moveto +6.269784e+01 4.836981e+00 lineto +6.24555e+01 4.783346e+00 lineto +6.161201e+01 5.122658e+00 lineto +6.193468e+01 5.194073e+00 lineto +closepath +gsave +6.360901e-01 6.360901e-01 7.951127e-01 setrgbcolor +fill +grestore +newpath +6.193468e+01 5.194073e+00 moveto +6.269784e+01 4.836981e+00 lineto +6.24555e+01 4.783346e+00 lineto +6.161201e+01 5.122658e+00 lineto +6.193468e+01 5.194073e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.117442e+01 5.589801e+00 moveto +6.193468e+01 5.194073e+00 lineto +6.161201e+01 5.122658e+00 lineto +6.077172e+01 5.500674e+00 lineto +6.117442e+01 5.589801e+00 lineto +closepath +gsave +6.437027e-01 6.437027e-01 8.046283e-01 setrgbcolor +fill +grestore +newpath +6.117442e+01 5.589801e+00 moveto +6.193468e+01 5.194073e+00 lineto +6.161201e+01 5.122658e+00 lineto +6.077172e+01 5.500674e+00 lineto +6.117442e+01 5.589801e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.041778e+01 6.023789e+00 moveto +6.117442e+01 5.589801e+00 lineto +6.077172e+01 5.500674e+00 lineto +5.993543e+01 5.917034e+00 lineto +6.041778e+01 6.023789e+00 lineto +closepath +gsave +6.512311e-01 6.512311e-01 8.140389e-01 setrgbcolor +fill +grestore +newpath +6.041778e+01 6.023789e+00 moveto +6.117442e+01 5.589801e+00 lineto +6.077172e+01 5.500674e+00 lineto +5.993543e+01 5.917034e+00 lineto +6.041778e+01 6.023789e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.966548e+01 6.495628e+00 moveto +6.041778e+01 6.023789e+00 lineto +5.993543e+01 5.917034e+00 lineto +5.910394e+01 6.371346e+00 lineto +5.966548e+01 6.495628e+00 lineto +closepath +gsave +6.586624e-01 6.586624e-01 8.23328e-01 setrgbcolor +fill +grestore +newpath +5.966548e+01 6.495628e+00 moveto +6.041778e+01 6.023789e+00 lineto +5.993543e+01 5.917034e+00 lineto +5.910394e+01 6.371346e+00 lineto +5.966548e+01 6.495628e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.891824e+01 7.004869e+00 moveto +5.966548e+01 6.495628e+00 lineto +5.910394e+01 6.371346e+00 lineto +5.827804e+01 6.863178e+00 lineto +5.891824e+01 7.004869e+00 lineto +closepath +gsave +6.65984e-01 6.65984e-01 8.3248e-01 setrgbcolor +fill +grestore +newpath +5.891824e+01 7.004869e+00 moveto +5.966548e+01 6.495628e+00 lineto +5.910394e+01 6.371346e+00 lineto +5.827804e+01 6.863178e+00 lineto +5.891824e+01 7.004869e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.817675e+01 7.551032e+00 moveto +5.891824e+01 7.004869e+00 lineto +5.827804e+01 6.863178e+00 lineto +5.745849e+01 7.392066e+00 lineto +5.817675e+01 7.551032e+00 lineto +closepath +gsave +6.731838e-01 6.731838e-01 8.414798e-01 setrgbcolor +fill +grestore +newpath +5.817675e+01 7.551032e+00 moveto +5.891824e+01 7.004869e+00 lineto +5.827804e+01 6.863178e+00 lineto +5.745849e+01 7.392066e+00 lineto +5.817675e+01 7.551032e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.744172e+01 8.133598e+00 moveto +5.817675e+01 7.551032e+00 lineto +5.745849e+01 7.392066e+00 lineto +5.664609e+01 7.957508e+00 lineto +5.744172e+01 8.133598e+00 lineto +closepath +gsave +6.802506e-01 6.802506e-01 8.503132e-01 setrgbcolor +fill +grestore +newpath +5.744172e+01 8.133598e+00 moveto +5.817675e+01 7.551032e+00 lineto +5.745849e+01 7.392066e+00 lineto +5.664609e+01 7.957508e+00 lineto +5.744172e+01 8.133598e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.671384e+01 8.752016e+00 moveto +5.744172e+01 8.133598e+00 lineto +5.664609e+01 7.957508e+00 lineto +5.58416e+01 8.558968e+00 lineto +5.671384e+01 8.752016e+00 lineto +closepath +gsave +6.871735e-01 6.871735e-01 8.589668e-01 setrgbcolor +fill +grestore +newpath +5.671384e+01 8.752016e+00 moveto +5.744172e+01 8.133598e+00 lineto +5.664609e+01 7.957508e+00 lineto +5.58416e+01 8.558968e+00 lineto +5.671384e+01 8.752016e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.599382e+01 9.405702e+00 moveto +5.671384e+01 8.752016e+00 lineto +5.58416e+01 8.558968e+00 lineto +5.504577e+01 9.195879e+00 lineto +5.599382e+01 9.405702e+00 lineto +closepath +gsave +6.939423e-01 6.939423e-01 8.674279e-01 setrgbcolor +fill +grestore +newpath +5.599382e+01 9.405702e+00 moveto +5.671384e+01 8.752016e+00 lineto +5.58416e+01 8.558968e+00 lineto +5.504577e+01 9.195879e+00 lineto +5.599382e+01 9.405702e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.528232e+01 1.009403e+01 moveto +5.599382e+01 9.405702e+00 lineto +5.504577e+01 9.195879e+00 lineto +5.425938e+01 9.867636e+00 lineto +5.528232e+01 1.009403e+01 lineto +closepath +gsave +7.005477e-01 7.005477e-01 8.756846e-01 setrgbcolor +fill +grestore +newpath +5.528232e+01 1.009403e+01 moveto +5.599382e+01 9.405702e+00 lineto +5.504577e+01 9.195879e+00 lineto +5.425938e+01 9.867636e+00 lineto +5.528232e+01 1.009403e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.458002e+01 1.081636e+01 moveto +5.528232e+01 1.009403e+01 lineto +5.425938e+01 9.867636e+00 lineto +5.348315e+01 1.05736e+01 lineto +5.458002e+01 1.081636e+01 lineto +closepath +gsave +7.069807e-01 7.069807e-01 8.837259e-01 setrgbcolor +fill +grestore +newpath +5.458002e+01 1.081636e+01 moveto +5.528232e+01 1.009403e+01 lineto +5.425938e+01 9.867636e+00 lineto +5.348315e+01 1.05736e+01 lineto +5.458002e+01 1.081636e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.388758e+01 1.157201e+01 moveto +5.458002e+01 1.081636e+01 lineto +5.348315e+01 1.05736e+01 lineto +5.271783e+01 1.131311e+01 lineto +5.388758e+01 1.157201e+01 lineto +closepath +gsave +7.132334e-01 7.132334e-01 8.915417e-01 setrgbcolor +fill +grestore +newpath +5.388758e+01 1.157201e+01 moveto +5.458002e+01 1.081636e+01 lineto +5.348315e+01 1.05736e+01 lineto +5.271783e+01 1.131311e+01 lineto +5.388758e+01 1.157201e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.320567e+01 1.236024e+01 moveto +5.388758e+01 1.157201e+01 lineto +5.271783e+01 1.131311e+01 lineto +5.196413e+01 1.208546e+01 lineto +5.320567e+01 1.236024e+01 lineto +closepath +gsave +7.192982e-01 7.192982e-01 8.991227e-01 setrgbcolor +fill +grestore +newpath +5.320567e+01 1.236024e+01 moveto +5.388758e+01 1.157201e+01 lineto +5.271783e+01 1.131311e+01 lineto +5.196413e+01 1.208546e+01 lineto +5.320567e+01 1.236024e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.253492e+01 1.318033e+01 moveto +5.320567e+01 1.236024e+01 lineto +5.196413e+01 1.208546e+01 lineto +5.122278e+01 1.288993e+01 lineto +5.253492e+01 1.318033e+01 lineto +closepath +gsave +7.251683e-01 7.251683e-01 9.064604e-01 setrgbcolor +fill +grestore +newpath +5.253492e+01 1.318033e+01 moveto +5.320567e+01 1.236024e+01 lineto +5.196413e+01 1.208546e+01 lineto +5.122278e+01 1.288993e+01 lineto +5.253492e+01 1.318033e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.187598e+01 1.403149e+01 moveto +5.253492e+01 1.318033e+01 lineto +5.122278e+01 1.288993e+01 lineto +5.049447e+01 1.372574e+01 lineto +5.187598e+01 1.403149e+01 lineto +closepath +gsave +7.308377e-01 7.308377e-01 9.135471e-01 setrgbcolor +fill +grestore +newpath +5.187598e+01 1.403149e+01 moveto +5.253492e+01 1.318033e+01 lineto +5.122278e+01 1.288993e+01 lineto +5.049447e+01 1.372574e+01 lineto +5.187598e+01 1.403149e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.122946e+01 1.491293e+01 moveto +5.187598e+01 1.403149e+01 lineto +5.049447e+01 1.372574e+01 lineto +4.97799e+01 1.45921e+01 lineto +5.122946e+01 1.491293e+01 lineto +closepath +gsave +7.363009e-01 7.363009e-01 9.203761e-01 setrgbcolor +fill +grestore +newpath +5.122946e+01 1.491293e+01 moveto +5.187598e+01 1.403149e+01 lineto +5.049447e+01 1.372574e+01 lineto +4.97799e+01 1.45921e+01 lineto +5.122946e+01 1.491293e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.059598e+01 1.582379e+01 moveto +5.122946e+01 1.491293e+01 lineto +4.97799e+01 1.45921e+01 lineto +4.907973e+01 1.548821e+01 lineto +5.059598e+01 1.582379e+01 lineto +closepath +gsave +7.415531e-01 7.415531e-01 9.269413e-01 setrgbcolor +fill +grestore +newpath +5.059598e+01 1.582379e+01 moveto +5.122946e+01 1.491293e+01 lineto +4.97799e+01 1.45921e+01 lineto +4.907973e+01 1.548821e+01 lineto +5.059598e+01 1.582379e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.997614e+01 1.676323e+01 moveto +5.059598e+01 1.582379e+01 lineto +4.907973e+01 1.548821e+01 lineto +4.839464e+01 1.64132e+01 lineto +4.997614e+01 1.676323e+01 lineto +closepath +gsave +7.4659e-01 7.4659e-01 9.332375e-01 setrgbcolor +fill +grestore +newpath +4.997614e+01 1.676323e+01 moveto +5.059598e+01 1.582379e+01 lineto +4.907973e+01 1.548821e+01 lineto +4.839464e+01 1.64132e+01 lineto +4.997614e+01 1.676323e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.937052e+01 1.773034e+01 moveto +4.997614e+01 1.676323e+01 lineto +4.839464e+01 1.64132e+01 lineto +4.772528e+01 1.736621e+01 lineto +4.937052e+01 1.773034e+01 lineto +closepath +gsave +7.514081e-01 7.514081e-01 9.392601e-01 setrgbcolor +fill +grestore +newpath +4.937052e+01 1.773034e+01 moveto +4.997614e+01 1.676323e+01 lineto +4.839464e+01 1.64132e+01 lineto +4.772528e+01 1.736621e+01 lineto +4.937052e+01 1.773034e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.87797e+01 1.872423e+01 moveto +4.937052e+01 1.773034e+01 lineto +4.772528e+01 1.736621e+01 lineto +4.707226e+01 1.834633e+01 lineto +4.87797e+01 1.872423e+01 lineto +closepath +gsave +7.560041e-01 7.560041e-01 9.450052e-01 setrgbcolor +fill +grestore +newpath +4.87797e+01 1.872423e+01 moveto +4.937052e+01 1.773034e+01 lineto +4.772528e+01 1.736621e+01 lineto +4.707226e+01 1.834633e+01 lineto +4.87797e+01 1.872423e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.820424e+01 1.974393e+01 moveto +4.87797e+01 1.872423e+01 lineto +4.707226e+01 1.834633e+01 lineto +4.643623e+01 1.935263e+01 lineto +4.820424e+01 1.974393e+01 lineto +closepath +gsave +7.603757e-01 7.603757e-01 9.504696e-01 setrgbcolor +fill +grestore +newpath +4.820424e+01 1.974393e+01 moveto +4.87797e+01 1.872423e+01 lineto +4.707226e+01 1.834633e+01 lineto +4.643623e+01 1.935263e+01 lineto +4.820424e+01 1.974393e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.764468e+01 2.07885e+01 moveto +4.820424e+01 1.974393e+01 lineto +4.643623e+01 1.935263e+01 lineto +4.581777e+01 2.038416e+01 lineto +4.764468e+01 2.07885e+01 lineto +closepath +gsave +7.645206e-01 7.645206e-01 9.556507e-01 setrgbcolor +fill +grestore +newpath +4.764468e+01 2.07885e+01 moveto +4.820424e+01 1.974393e+01 lineto +4.643623e+01 1.935263e+01 lineto +4.581777e+01 2.038416e+01 lineto +4.764468e+01 2.07885e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.710156e+01 2.185694e+01 moveto +4.764468e+01 2.07885e+01 lineto +4.581777e+01 2.038416e+01 lineto +4.521747e+01 2.143995e+01 lineto +4.710156e+01 2.185694e+01 lineto +closepath +gsave +7.684372e-01 7.684372e-01 9.605465e-01 setrgbcolor +fill +grestore +newpath +4.710156e+01 2.185694e+01 moveto +4.764468e+01 2.07885e+01 lineto +4.581777e+01 2.038416e+01 lineto +4.521747e+01 2.143995e+01 lineto +4.710156e+01 2.185694e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.657538e+01 2.294824e+01 moveto +4.710156e+01 2.185694e+01 lineto +4.521747e+01 2.143995e+01 lineto +4.46359e+01 2.251899e+01 lineto +4.657538e+01 2.294824e+01 lineto +closepath +gsave +7.721243e-01 7.721243e-01 9.651554e-01 setrgbcolor +fill +grestore +newpath +4.657538e+01 2.294824e+01 moveto +4.710156e+01 2.185694e+01 lineto +4.521747e+01 2.143995e+01 lineto +4.46359e+01 2.251899e+01 lineto +4.657538e+01 2.294824e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.606664e+01 2.406136e+01 moveto +4.657538e+01 2.294824e+01 lineto +4.46359e+01 2.251899e+01 lineto +4.407361e+01 2.362026e+01 lineto +4.606664e+01 2.406136e+01 lineto +closepath +gsave +7.75581e-01 7.75581e-01 9.694763e-01 setrgbcolor +fill +grestore +newpath +4.606664e+01 2.406136e+01 moveto +4.657538e+01 2.294824e+01 lineto +4.46359e+01 2.251899e+01 lineto +4.407361e+01 2.362026e+01 lineto +4.606664e+01 2.406136e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.557583e+01 2.519525e+01 moveto +4.606664e+01 2.406136e+01 lineto +4.407361e+01 2.362026e+01 lineto +4.353113e+01 2.474271e+01 lineto +4.557583e+01 2.519525e+01 lineto +closepath +gsave +7.788067e-01 7.788067e-01 9.735084e-01 setrgbcolor +fill +grestore +newpath +4.557583e+01 2.519525e+01 moveto +4.606664e+01 2.406136e+01 lineto +4.407361e+01 2.362026e+01 lineto +4.353113e+01 2.474271e+01 lineto +4.557583e+01 2.519525e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.510341e+01 2.634884e+01 moveto +4.557583e+01 2.519525e+01 lineto +4.353113e+01 2.474271e+01 lineto +4.300899e+01 2.58853e+01 lineto +4.510341e+01 2.634884e+01 lineto +closepath +gsave +7.818012e-01 7.818012e-01 9.772515e-01 setrgbcolor +fill +grestore +newpath +4.510341e+01 2.634884e+01 moveto +4.557583e+01 2.519525e+01 lineto +4.353113e+01 2.474271e+01 lineto +4.300899e+01 2.58853e+01 lineto +4.510341e+01 2.634884e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.464983e+01 2.752104e+01 moveto +4.510341e+01 2.634884e+01 lineto +4.300899e+01 2.58853e+01 lineto +4.250766e+01 2.704693e+01 lineto +4.464983e+01 2.752104e+01 lineto +closepath +gsave +7.845643e-01 7.845643e-01 9.807053e-01 setrgbcolor +fill +grestore +newpath +4.464983e+01 2.752104e+01 moveto +4.510341e+01 2.634884e+01 lineto +4.300899e+01 2.58853e+01 lineto +4.250766e+01 2.704693e+01 lineto +4.464983e+01 2.752104e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.421552e+01 2.871074e+01 moveto +4.464983e+01 2.752104e+01 lineto +4.250766e+01 2.704693e+01 lineto +4.202763e+01 2.822651e+01 lineto +4.421552e+01 2.871074e+01 lineto +closepath +gsave +7.870962e-01 7.870962e-01 9.838702e-01 setrgbcolor +fill +grestore +newpath +4.421552e+01 2.871074e+01 moveto +4.464983e+01 2.752104e+01 lineto +4.250766e+01 2.704693e+01 lineto +4.202763e+01 2.822651e+01 lineto +4.421552e+01 2.871074e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.380089e+01 2.99168e+01 moveto +4.421552e+01 2.871074e+01 lineto +4.202763e+01 2.822651e+01 lineto +4.156935e+01 2.942291e+01 lineto +4.380089e+01 2.99168e+01 lineto +closepath +gsave +7.893971e-01 7.893971e-01 9.867464e-01 setrgbcolor +fill +grestore +newpath +4.380089e+01 2.99168e+01 moveto +4.421552e+01 2.871074e+01 lineto +4.202763e+01 2.822651e+01 lineto +4.156935e+01 2.942291e+01 lineto +4.380089e+01 2.99168e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.340632e+01 3.113809e+01 moveto +4.380089e+01 2.99168e+01 lineto +4.156935e+01 2.942291e+01 lineto +4.113325e+01 3.063501e+01 lineto +4.340632e+01 3.113809e+01 lineto +closepath +gsave +7.914676e-01 7.914676e-01 9.893345e-01 setrgbcolor +fill +grestore +newpath +4.340632e+01 3.113809e+01 moveto +4.380089e+01 2.99168e+01 lineto +4.156935e+01 2.942291e+01 lineto +4.113325e+01 3.063501e+01 lineto +4.340632e+01 3.113809e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.303221e+01 3.237346e+01 moveto +4.340632e+01 3.113809e+01 lineto +4.113325e+01 3.063501e+01 lineto +4.071975e+01 3.186166e+01 lineto +4.303221e+01 3.237346e+01 lineto +closepath +gsave +7.93308e-01 7.93308e-01 9.91635e-01 setrgbcolor +fill +grestore +newpath +4.303221e+01 3.237346e+01 moveto +4.340632e+01 3.113809e+01 lineto +4.113325e+01 3.063501e+01 lineto +4.071975e+01 3.186166e+01 lineto +4.303221e+01 3.237346e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.267889e+01 3.362172e+01 moveto +4.303221e+01 3.237346e+01 lineto +4.071975e+01 3.186166e+01 lineto +4.032924e+01 3.310169e+01 lineto +4.267889e+01 3.362172e+01 lineto +closepath +gsave +7.949189e-01 7.949189e-01 9.936486e-01 setrgbcolor +fill +grestore +newpath +4.267889e+01 3.362172e+01 moveto +4.303221e+01 3.237346e+01 lineto +4.071975e+01 3.186166e+01 lineto +4.032924e+01 3.310169e+01 lineto +4.267889e+01 3.362172e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.234671e+01 3.488171e+01 moveto +4.267889e+01 3.362172e+01 lineto +4.032924e+01 3.310169e+01 lineto +3.996209e+01 3.435394e+01 lineto +4.234671e+01 3.488171e+01 lineto +closepath +gsave +7.963008e-01 7.963008e-01 9.95376e-01 setrgbcolor +fill +grestore +newpath +4.234671e+01 3.488171e+01 moveto +4.267889e+01 3.362172e+01 lineto +4.032924e+01 3.310169e+01 lineto +3.996209e+01 3.435394e+01 lineto +4.234671e+01 3.488171e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.203597e+01 3.615222e+01 moveto +4.234671e+01 3.488171e+01 lineto +3.996209e+01 3.435394e+01 lineto +3.961865e+01 3.561721e+01 lineto +4.203597e+01 3.615222e+01 lineto +closepath +gsave +7.974542e-01 7.974542e-01 9.968178e-01 setrgbcolor +fill +grestore +newpath +4.203597e+01 3.615222e+01 moveto +4.234671e+01 3.488171e+01 lineto +3.996209e+01 3.435394e+01 lineto +3.961865e+01 3.561721e+01 lineto +4.203597e+01 3.615222e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.174698e+01 3.743205e+01 moveto +4.203597e+01 3.615222e+01 lineto +3.961865e+01 3.561721e+01 lineto +3.929923e+01 3.689031e+01 lineto +4.174698e+01 3.743205e+01 lineto +closepath +gsave +7.983796e-01 7.983796e-01 9.979745e-01 setrgbcolor +fill +grestore +newpath +4.174698e+01 3.743205e+01 moveto +4.203597e+01 3.615222e+01 lineto +3.961865e+01 3.561721e+01 lineto +3.929923e+01 3.689031e+01 lineto +4.174698e+01 3.743205e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.148e+01 3.872e+01 moveto +4.174698e+01 3.743205e+01 lineto +3.929923e+01 3.689031e+01 lineto +3.900415e+01 3.817204e+01 lineto +4.148e+01 3.872e+01 lineto +closepath +gsave +7.990774e-01 7.990774e-01 9.988468e-01 setrgbcolor +fill +grestore +newpath +4.148e+01 3.872e+01 moveto +4.174698e+01 3.743205e+01 lineto +3.929923e+01 3.689031e+01 lineto +3.900415e+01 3.817204e+01 lineto +4.148e+01 3.872e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.414892e+01 4.222079e+00 moveto +6.499724e+01 4.000655e+00 lineto +6.4997e+01 4.000593e+00 lineto +6.407311e+01 4.202893e+00 lineto +6.414892e+01 4.222079e+00 lineto +closepath +gsave +6.128611e-01 6.128611e-01 7.660763e-01 setrgbcolor +fill +grestore +newpath +6.414892e+01 4.222079e+00 moveto +6.499724e+01 4.000655e+00 lineto +6.4997e+01 4.000593e+00 lineto +6.407311e+01 4.202893e+00 lineto +6.414892e+01 4.222079e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.330141e+01 4.483058e+00 moveto +6.414892e+01 4.222079e+00 lineto +6.407311e+01 4.202893e+00 lineto +6.315011e+01 4.444767e+00 lineto +6.330141e+01 4.483058e+00 lineto +closepath +gsave +6.205944e-01 6.205944e-01 7.75743e-01 setrgbcolor +fill +grestore +newpath +6.330141e+01 4.483058e+00 moveto +6.414892e+01 4.222079e+00 lineto +6.407311e+01 4.202893e+00 lineto +6.315011e+01 4.444767e+00 lineto +6.330141e+01 4.483058e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.24555e+01 4.783346e+00 moveto +6.330141e+01 4.483058e+00 lineto +6.315011e+01 4.444767e+00 lineto +6.222885e+01 4.725987e+00 lineto +6.24555e+01 4.783346e+00 lineto +closepath +gsave +6.282851e-01 6.282851e-01 7.853563e-01 setrgbcolor +fill +grestore +newpath +6.24555e+01 4.783346e+00 moveto +6.330141e+01 4.483058e+00 lineto +6.315011e+01 4.444767e+00 lineto +6.222885e+01 4.725987e+00 lineto +6.24555e+01 4.783346e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.161201e+01 5.122658e+00 moveto +6.24555e+01 4.783346e+00 lineto +6.222885e+01 4.725987e+00 lineto +6.131022e+01 5.046284e+00 lineto +6.161201e+01 5.122658e+00 lineto +closepath +gsave +6.35919e-01 6.35919e-01 7.948988e-01 setrgbcolor +fill +grestore +newpath +6.161201e+01 5.122658e+00 moveto +6.24555e+01 4.783346e+00 lineto +6.222885e+01 4.725987e+00 lineto +6.131022e+01 5.046284e+00 lineto +6.161201e+01 5.122658e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.077172e+01 5.500674e+00 moveto +6.161201e+01 5.122658e+00 lineto +6.131022e+01 5.046284e+00 lineto +6.039509e+01 5.405358e+00 lineto +6.077172e+01 5.500674e+00 lineto +closepath +gsave +6.434824e-01 6.434824e-01 8.04353e-01 setrgbcolor +fill +grestore +newpath +6.077172e+01 5.500674e+00 moveto +6.161201e+01 5.122658e+00 lineto +6.131022e+01 5.046284e+00 lineto +6.039509e+01 5.405358e+00 lineto +6.077172e+01 5.500674e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.993543e+01 5.917034e+00 moveto +6.077172e+01 5.500674e+00 lineto +6.039509e+01 5.405358e+00 lineto +5.948431e+01 5.802866e+00 lineto +5.993543e+01 5.917034e+00 lineto +closepath +gsave +6.509618e-01 6.509618e-01 8.137022e-01 setrgbcolor +fill +grestore +newpath +5.993543e+01 5.917034e+00 moveto +6.077172e+01 5.500674e+00 lineto +6.039509e+01 5.405358e+00 lineto +5.948431e+01 5.802866e+00 lineto +5.993543e+01 5.917034e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.910394e+01 6.371346e+00 moveto +5.993543e+01 5.917034e+00 lineto +5.948431e+01 5.802866e+00 lineto +5.857875e+01 6.238434e+00 lineto +5.910394e+01 6.371346e+00 lineto +closepath +gsave +6.583443e-01 6.583443e-01 8.229303e-01 setrgbcolor +fill +grestore +newpath +5.910394e+01 6.371346e+00 moveto +5.993543e+01 5.917034e+00 lineto +5.948431e+01 5.802866e+00 lineto +5.857875e+01 6.238434e+00 lineto +5.910394e+01 6.371346e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.827804e+01 6.863178e+00 moveto +5.910394e+01 6.371346e+00 lineto +5.857875e+01 6.238434e+00 lineto +5.767928e+01 6.711648e+00 lineto +5.827804e+01 6.863178e+00 lineto +closepath +gsave +6.656175e-01 6.656175e-01 8.320218e-01 setrgbcolor +fill +grestore +newpath +5.827804e+01 6.863178e+00 moveto +5.910394e+01 6.371346e+00 lineto +5.857875e+01 6.238434e+00 lineto +5.767928e+01 6.711648e+00 lineto +5.827804e+01 6.863178e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.745849e+01 7.392066e+00 moveto +5.827804e+01 6.863178e+00 lineto +5.767928e+01 6.711648e+00 lineto +5.678673e+01 7.222061e+00 lineto +5.745849e+01 7.392066e+00 lineto +closepath +gsave +6.727695e-01 6.727695e-01 8.409619e-01 setrgbcolor +fill +grestore +newpath +5.745849e+01 7.392066e+00 moveto +5.827804e+01 6.863178e+00 lineto +5.767928e+01 6.711648e+00 lineto +5.678673e+01 7.222061e+00 lineto +5.745849e+01 7.392066e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.664609e+01 7.957508e+00 moveto +5.745849e+01 7.392066e+00 lineto +5.678673e+01 7.222061e+00 lineto +5.590197e+01 7.769189e+00 lineto +5.664609e+01 7.957508e+00 lineto +closepath +gsave +6.797891e-01 6.797891e-01 8.497364e-01 setrgbcolor +fill +grestore +newpath +5.664609e+01 7.957508e+00 moveto +5.745849e+01 7.392066e+00 lineto +5.678673e+01 7.222061e+00 lineto +5.590197e+01 7.769189e+00 lineto +5.664609e+01 7.957508e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.58416e+01 8.558968e+00 moveto +5.664609e+01 7.957508e+00 lineto +5.590197e+01 7.769189e+00 lineto +5.502581e+01 8.352514e+00 lineto +5.58416e+01 8.558968e+00 lineto +closepath +gsave +6.866657e-01 6.866657e-01 8.583321e-01 setrgbcolor +fill +grestore +newpath +5.58416e+01 8.558968e+00 moveto +5.664609e+01 7.957508e+00 lineto +5.590197e+01 7.769189e+00 lineto +5.502581e+01 8.352514e+00 lineto +5.58416e+01 8.558968e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.504577e+01 9.195879e+00 moveto +5.58416e+01 8.558968e+00 lineto +5.502581e+01 8.352514e+00 lineto +5.41591e+01 8.971485e+00 lineto +5.504577e+01 9.195879e+00 lineto +closepath +gsave +6.93389e-01 6.93389e-01 8.667363e-01 setrgbcolor +fill +grestore +newpath +5.504577e+01 9.195879e+00 moveto +5.58416e+01 8.558968e+00 lineto +5.502581e+01 8.352514e+00 lineto +5.41591e+01 8.971485e+00 lineto +5.504577e+01 9.195879e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.425938e+01 9.867636e+00 moveto +5.504577e+01 9.195879e+00 lineto +5.41591e+01 8.971485e+00 lineto +5.330266e+01 9.625514e+00 lineto +5.425938e+01 9.867636e+00 lineto +closepath +gsave +6.999499e-01 6.999499e-01 8.749374e-01 setrgbcolor +fill +grestore +newpath +5.425938e+01 9.867636e+00 moveto +5.504577e+01 9.195879e+00 lineto +5.41591e+01 8.971485e+00 lineto +5.330266e+01 9.625514e+00 lineto +5.425938e+01 9.867636e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.348315e+01 1.05736e+01 moveto +5.425938e+01 9.867636e+00 lineto +5.330266e+01 9.625514e+00 lineto +5.245729e+01 1.031398e+01 lineto +5.348315e+01 1.05736e+01 lineto +closepath +gsave +7.063396e-01 7.063396e-01 8.829245e-01 setrgbcolor +fill +grestore +newpath +5.348315e+01 1.05736e+01 moveto +5.425938e+01 9.867636e+00 lineto +5.330266e+01 9.625514e+00 lineto +5.245729e+01 1.031398e+01 lineto +5.348315e+01 1.05736e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.271783e+01 1.131311e+01 moveto +5.348315e+01 1.05736e+01 lineto +5.245729e+01 1.031398e+01 lineto +5.162379e+01 1.103624e+01 lineto +5.271783e+01 1.131311e+01 lineto +closepath +gsave +7.125499e-01 7.125499e-01 8.906874e-01 setrgbcolor +fill +grestore +newpath +5.271783e+01 1.131311e+01 moveto +5.348315e+01 1.05736e+01 lineto +5.245729e+01 1.031398e+01 lineto +5.162379e+01 1.103624e+01 lineto +5.271783e+01 1.131311e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.196413e+01 1.208546e+01 moveto +5.271783e+01 1.131311e+01 lineto +5.162379e+01 1.103624e+01 lineto +5.080296e+01 1.17916e+01 lineto +5.196413e+01 1.208546e+01 lineto +closepath +gsave +7.185736e-01 7.185736e-01 8.98217e-01 setrgbcolor +fill +grestore +newpath +5.196413e+01 1.208546e+01 moveto +5.271783e+01 1.131311e+01 lineto +5.162379e+01 1.103624e+01 lineto +5.080296e+01 1.17916e+01 lineto +5.196413e+01 1.208546e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.122278e+01 1.288993e+01 moveto +5.196413e+01 1.208546e+01 lineto +5.080296e+01 1.17916e+01 lineto +4.999558e+01 1.257935e+01 lineto +5.122278e+01 1.288993e+01 lineto +closepath +gsave +7.24404e-01 7.24404e-01 9.055049e-01 setrgbcolor +fill +grestore +newpath +5.122278e+01 1.288993e+01 moveto +5.196413e+01 1.208546e+01 lineto +5.080296e+01 1.17916e+01 lineto +4.999558e+01 1.257935e+01 lineto +5.122278e+01 1.288993e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.049447e+01 1.372574e+01 moveto +5.122278e+01 1.288993e+01 lineto +4.999558e+01 1.257935e+01 lineto +4.920239e+01 1.339874e+01 lineto +5.049447e+01 1.372574e+01 lineto +closepath +gsave +7.300348e-01 7.300348e-01 9.125435e-01 setrgbcolor +fill +grestore +newpath +5.049447e+01 1.372574e+01 moveto +5.122278e+01 1.288993e+01 lineto +4.999558e+01 1.257935e+01 lineto +4.920239e+01 1.339874e+01 lineto +5.049447e+01 1.372574e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.97799e+01 1.45921e+01 moveto +5.049447e+01 1.372574e+01 lineto +4.920239e+01 1.339874e+01 lineto +4.842417e+01 1.4249e+01 lineto +4.97799e+01 1.45921e+01 lineto +closepath +gsave +7.354608e-01 7.354608e-01 9.19326e-01 setrgbcolor +fill +grestore +newpath +4.97799e+01 1.45921e+01 moveto +5.049447e+01 1.372574e+01 lineto +4.920239e+01 1.339874e+01 lineto +4.842417e+01 1.4249e+01 lineto +4.97799e+01 1.45921e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.907973e+01 1.548821e+01 moveto +4.97799e+01 1.45921e+01 lineto +4.842417e+01 1.4249e+01 lineto +4.766164e+01 1.512933e+01 lineto +4.907973e+01 1.548821e+01 lineto +closepath +gsave +7.406771e-01 7.406771e-01 9.258464e-01 setrgbcolor +fill +grestore +newpath +4.907973e+01 1.548821e+01 moveto +4.97799e+01 1.45921e+01 lineto +4.842417e+01 1.4249e+01 lineto +4.766164e+01 1.512933e+01 lineto +4.907973e+01 1.548821e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.839464e+01 1.64132e+01 moveto +4.907973e+01 1.548821e+01 lineto +4.766164e+01 1.512933e+01 lineto +4.691553e+01 1.603888e+01 lineto +4.839464e+01 1.64132e+01 lineto +closepath +gsave +7.456796e-01 7.456796e-01 9.320995e-01 setrgbcolor +fill +grestore +newpath +4.839464e+01 1.64132e+01 moveto +4.907973e+01 1.548821e+01 lineto +4.766164e+01 1.512933e+01 lineto +4.691553e+01 1.603888e+01 lineto +4.839464e+01 1.64132e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.772528e+01 1.736621e+01 moveto +4.839464e+01 1.64132e+01 lineto +4.691553e+01 1.603888e+01 lineto +4.618653e+01 1.69768e+01 lineto +4.772528e+01 1.736621e+01 lineto +closepath +gsave +7.504645e-01 7.504645e-01 9.380806e-01 setrgbcolor +fill +grestore +newpath +4.772528e+01 1.736621e+01 moveto +4.839464e+01 1.64132e+01 lineto +4.691553e+01 1.603888e+01 lineto +4.618653e+01 1.69768e+01 lineto +4.772528e+01 1.736621e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.707226e+01 1.834633e+01 moveto +4.772528e+01 1.736621e+01 lineto +4.618653e+01 1.69768e+01 lineto +4.547536e+01 1.794219e+01 lineto +4.707226e+01 1.834633e+01 lineto +closepath +gsave +7.550288e-01 7.550288e-01 9.43786e-01 setrgbcolor +fill +grestore +newpath +4.707226e+01 1.834633e+01 moveto +4.772528e+01 1.736621e+01 lineto +4.618653e+01 1.69768e+01 lineto +4.547536e+01 1.794219e+01 lineto +4.707226e+01 1.834633e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.643623e+01 1.935263e+01 moveto +4.707226e+01 1.834633e+01 lineto +4.547536e+01 1.794219e+01 lineto +4.478266e+01 1.893416e+01 lineto +4.643623e+01 1.935263e+01 lineto +closepath +gsave +7.5937e-01 7.5937e-01 9.492124e-01 setrgbcolor +fill +grestore +newpath +4.643623e+01 1.935263e+01 moveto +4.707226e+01 1.834633e+01 lineto +4.547536e+01 1.794219e+01 lineto +4.478266e+01 1.893416e+01 lineto +4.643623e+01 1.935263e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.581777e+01 2.038416e+01 moveto +4.643623e+01 1.935263e+01 lineto +4.478266e+01 1.893416e+01 lineto +4.410911e+01 1.995175e+01 lineto +4.581777e+01 2.038416e+01 lineto +closepath +gsave +7.634858e-01 7.634858e-01 9.543572e-01 setrgbcolor +fill +grestore +newpath +4.581777e+01 2.038416e+01 moveto +4.643623e+01 1.935263e+01 lineto +4.478266e+01 1.893416e+01 lineto +4.410911e+01 1.995175e+01 lineto +4.581777e+01 2.038416e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.521747e+01 2.143995e+01 moveto +4.581777e+01 2.038416e+01 lineto +4.410911e+01 1.995175e+01 lineto +4.345534e+01 2.0994e+01 lineto +4.521747e+01 2.143995e+01 lineto +closepath +gsave +7.673746e-01 7.673746e-01 9.592183e-01 setrgbcolor +fill +grestore +newpath +4.521747e+01 2.143995e+01 moveto +4.581777e+01 2.038416e+01 lineto +4.410911e+01 1.995175e+01 lineto +4.345534e+01 2.0994e+01 lineto +4.521747e+01 2.143995e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.46359e+01 2.251899e+01 moveto +4.521747e+01 2.143995e+01 lineto +4.345534e+01 2.0994e+01 lineto +4.282197e+01 2.205993e+01 lineto +4.46359e+01 2.251899e+01 lineto +closepath +gsave +7.710352e-01 7.710352e-01 9.63794e-01 setrgbcolor +fill +grestore +newpath +4.46359e+01 2.251899e+01 moveto +4.521747e+01 2.143995e+01 lineto +4.345534e+01 2.0994e+01 lineto +4.282197e+01 2.205993e+01 lineto +4.46359e+01 2.251899e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.407361e+01 2.362026e+01 moveto +4.46359e+01 2.251899e+01 lineto +4.282197e+01 2.205993e+01 lineto +4.22096e+01 2.314852e+01 lineto +4.407361e+01 2.362026e+01 lineto +closepath +gsave +7.744666e-01 7.744666e-01 9.680833e-01 setrgbcolor +fill +grestore +newpath +4.407361e+01 2.362026e+01 moveto +4.46359e+01 2.251899e+01 lineto +4.282197e+01 2.205993e+01 lineto +4.22096e+01 2.314852e+01 lineto +4.407361e+01 2.362026e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.353113e+01 2.474271e+01 moveto +4.407361e+01 2.362026e+01 lineto +4.22096e+01 2.314852e+01 lineto +4.16188e+01 2.425875e+01 lineto +4.353113e+01 2.474271e+01 lineto +closepath +gsave +7.776682e-01 7.776682e-01 9.720853e-01 setrgbcolor +fill +grestore +newpath +4.353113e+01 2.474271e+01 moveto +4.407361e+01 2.362026e+01 lineto +4.22096e+01 2.314852e+01 lineto +4.16188e+01 2.425875e+01 lineto +4.353113e+01 2.474271e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.300899e+01 2.58853e+01 moveto +4.353113e+01 2.474271e+01 lineto +4.16188e+01 2.425875e+01 lineto +4.105014e+01 2.538957e+01 lineto +4.300899e+01 2.58853e+01 lineto +closepath +gsave +7.806397e-01 7.806397e-01 9.757996e-01 setrgbcolor +fill +grestore +newpath +4.300899e+01 2.58853e+01 moveto +4.353113e+01 2.474271e+01 lineto +4.16188e+01 2.425875e+01 lineto +4.105014e+01 2.538957e+01 lineto +4.300899e+01 2.58853e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.250766e+01 2.704693e+01 moveto +4.300899e+01 2.58853e+01 lineto +4.105014e+01 2.538957e+01 lineto +4.050416e+01 2.65399e+01 lineto +4.250766e+01 2.704693e+01 lineto +closepath +gsave +7.833809e-01 7.833809e-01 9.792262e-01 setrgbcolor +fill +grestore +newpath +4.250766e+01 2.704693e+01 moveto +4.300899e+01 2.58853e+01 lineto +4.105014e+01 2.538957e+01 lineto +4.050416e+01 2.65399e+01 lineto +4.250766e+01 2.704693e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.202763e+01 2.822651e+01 moveto +4.250766e+01 2.704693e+01 lineto +4.050416e+01 2.65399e+01 lineto +3.998137e+01 2.770865e+01 lineto +4.202763e+01 2.822651e+01 lineto +closepath +gsave +7.85892e-01 7.85892e-01 9.82365e-01 setrgbcolor +fill +grestore +newpath +4.202763e+01 2.822651e+01 moveto +4.250766e+01 2.704693e+01 lineto +4.050416e+01 2.65399e+01 lineto +3.998137e+01 2.770865e+01 lineto +4.202763e+01 2.822651e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.156935e+01 2.942291e+01 moveto +4.202763e+01 2.822651e+01 lineto +3.998137e+01 2.770865e+01 lineto +3.948227e+01 2.889472e+01 lineto +4.156935e+01 2.942291e+01 lineto +closepath +gsave +7.881732e-01 7.881732e-01 9.852165e-01 setrgbcolor +fill +grestore +newpath +4.156935e+01 2.942291e+01 moveto +4.202763e+01 2.822651e+01 lineto +3.998137e+01 2.770865e+01 lineto +3.948227e+01 2.889472e+01 lineto +4.156935e+01 2.942291e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.113325e+01 3.063501e+01 moveto +4.156935e+01 2.942291e+01 lineto +3.948227e+01 2.889472e+01 lineto +3.900733e+01 3.009699e+01 lineto +4.113325e+01 3.063501e+01 lineto +closepath +gsave +7.902248e-01 7.902248e-01 9.87781e-01 setrgbcolor +fill +grestore +newpath +4.113325e+01 3.063501e+01 moveto +4.156935e+01 2.942291e+01 lineto +3.948227e+01 2.889472e+01 lineto +3.900733e+01 3.009699e+01 lineto +4.113325e+01 3.063501e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.071975e+01 3.186166e+01 moveto +4.113325e+01 3.063501e+01 lineto +3.900733e+01 3.009699e+01 lineto +3.8557e+01 3.131432e+01 lineto +4.071975e+01 3.186166e+01 lineto +closepath +gsave +7.920472e-01 7.920472e-01 9.90059e-01 setrgbcolor +fill +grestore +newpath +4.071975e+01 3.186166e+01 moveto +4.113325e+01 3.063501e+01 lineto +3.900733e+01 3.009699e+01 lineto +3.8557e+01 3.131432e+01 lineto +4.071975e+01 3.186166e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.032924e+01 3.310169e+01 moveto +4.071975e+01 3.186166e+01 lineto +3.8557e+01 3.131432e+01 lineto +3.81317e+01 3.254555e+01 lineto +4.032924e+01 3.310169e+01 lineto +closepath +gsave +7.93641e-01 7.93641e-01 9.920513e-01 setrgbcolor +fill +grestore +newpath +4.032924e+01 3.310169e+01 moveto +4.071975e+01 3.186166e+01 lineto +3.8557e+01 3.131432e+01 lineto +3.81317e+01 3.254555e+01 lineto +4.032924e+01 3.310169e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.996209e+01 3.435394e+01 moveto +4.032924e+01 3.310169e+01 lineto +3.81317e+01 3.254555e+01 lineto +3.773185e+01 3.378952e+01 lineto +3.996209e+01 3.435394e+01 lineto +closepath +gsave +7.950067e-01 7.950067e-01 9.937583e-01 setrgbcolor +fill +grestore +newpath +3.996209e+01 3.435394e+01 moveto +4.032924e+01 3.310169e+01 lineto +3.81317e+01 3.254555e+01 lineto +3.773185e+01 3.378952e+01 lineto +3.996209e+01 3.435394e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.961865e+01 3.561721e+01 moveto +3.996209e+01 3.435394e+01 lineto +3.773185e+01 3.378952e+01 lineto +3.735781e+01 3.504505e+01 lineto +3.961865e+01 3.561721e+01 lineto +closepath +gsave +7.961446e-01 7.961446e-01 9.951807e-01 setrgbcolor +fill +grestore +newpath +3.961865e+01 3.561721e+01 moveto +3.996209e+01 3.435394e+01 lineto +3.773185e+01 3.378952e+01 lineto +3.735781e+01 3.504505e+01 lineto +3.961865e+01 3.561721e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.929923e+01 3.689031e+01 moveto +3.961865e+01 3.561721e+01 lineto +3.735781e+01 3.504505e+01 lineto +3.700994e+01 3.631095e+01 lineto +3.929923e+01 3.689031e+01 lineto +closepath +gsave +7.970552e-01 7.970552e-01 9.96319e-01 setrgbcolor +fill +grestore +newpath +3.929923e+01 3.689031e+01 moveto +3.961865e+01 3.561721e+01 lineto +3.735781e+01 3.504505e+01 lineto +3.700994e+01 3.631095e+01 lineto +3.929923e+01 3.689031e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.900415e+01 3.817204e+01 moveto +3.929923e+01 3.689031e+01 lineto +3.700994e+01 3.631095e+01 lineto +3.668858e+01 3.758603e+01 lineto +3.900415e+01 3.817204e+01 lineto +closepath +gsave +7.97739e-01 7.97739e-01 9.971737e-01 setrgbcolor +fill +grestore +newpath +3.900415e+01 3.817204e+01 moveto +3.929923e+01 3.689031e+01 lineto +3.700994e+01 3.631095e+01 lineto +3.668858e+01 3.758603e+01 lineto +3.900415e+01 3.817204e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.407311e+01 4.202893e+00 moveto +6.4997e+01 4.000593e+00 lineto +6.499677e+01 4.000527e+00 lineto +6.400302e+01 4.18258e+00 lineto +6.407311e+01 4.202893e+00 lineto +closepath +gsave +6.128126e-01 6.128126e-01 7.660158e-01 setrgbcolor +fill +grestore +newpath +6.407311e+01 4.202893e+00 moveto +6.4997e+01 4.000593e+00 lineto +6.499677e+01 4.000527e+00 lineto +6.400302e+01 4.18258e+00 lineto +6.407311e+01 4.202893e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.315011e+01 4.444767e+00 moveto +6.407311e+01 4.202893e+00 lineto +6.400302e+01 4.18258e+00 lineto +6.301021e+01 4.404226e+00 lineto +6.315011e+01 4.444767e+00 lineto +closepath +gsave +6.204489e-01 6.204489e-01 7.755611e-01 setrgbcolor +fill +grestore +newpath +6.315011e+01 4.444767e+00 moveto +6.407311e+01 4.202893e+00 lineto +6.400302e+01 4.18258e+00 lineto +6.301021e+01 4.404226e+00 lineto +6.315011e+01 4.444767e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.222885e+01 4.725987e+00 moveto +6.315011e+01 4.444767e+00 lineto +6.301021e+01 4.404226e+00 lineto +6.201929e+01 4.665256e+00 lineto +6.222885e+01 4.725987e+00 lineto +closepath +gsave +6.280419e-01 6.280419e-01 7.850524e-01 setrgbcolor +fill +grestore +newpath +6.222885e+01 4.725987e+00 moveto +6.315011e+01 4.444767e+00 lineto +6.301021e+01 4.404226e+00 lineto +6.201929e+01 4.665256e+00 lineto +6.222885e+01 4.725987e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.131022e+01 5.046284e+00 moveto +6.222885e+01 4.725987e+00 lineto +6.201929e+01 4.665256e+00 lineto +6.103119e+01 4.965422e+00 lineto +6.131022e+01 5.046284e+00 lineto +closepath +gsave +6.355779e-01 6.355779e-01 7.944723e-01 setrgbcolor +fill +grestore +newpath +6.131022e+01 5.046284e+00 moveto +6.222885e+01 4.725987e+00 lineto +6.201929e+01 4.665256e+00 lineto +6.103119e+01 4.965422e+00 lineto +6.131022e+01 5.046284e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.039509e+01 5.405358e+00 moveto +6.131022e+01 5.046284e+00 lineto +6.103119e+01 4.965422e+00 lineto +6.004684e+01 5.30444e+00 lineto +6.039509e+01 5.405358e+00 lineto +closepath +gsave +6.430432e-01 6.430432e-01 8.038039e-01 setrgbcolor +fill +grestore +newpath +6.039509e+01 5.405358e+00 moveto +6.131022e+01 5.046284e+00 lineto +6.103119e+01 4.965422e+00 lineto +6.004684e+01 5.30444e+00 lineto +6.039509e+01 5.405358e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.948431e+01 5.802866e+00 moveto +6.039509e+01 5.405358e+00 lineto +6.004684e+01 5.30444e+00 lineto +5.906719e+01 5.681988e+00 lineto +5.948431e+01 5.802866e+00 lineto +closepath +gsave +6.504247e-01 6.504247e-01 8.130309e-01 setrgbcolor +fill +grestore +newpath +5.948431e+01 5.802866e+00 moveto +6.039509e+01 5.405358e+00 lineto +6.004684e+01 5.30444e+00 lineto +5.906719e+01 5.681988e+00 lineto +5.948431e+01 5.802866e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.857875e+01 6.238434e+00 moveto +5.948431e+01 5.802866e+00 lineto +5.906719e+01 5.681988e+00 lineto +5.809315e+01 6.09771e+00 lineto +5.857875e+01 6.238434e+00 lineto +closepath +gsave +6.5771e-01 6.5771e-01 8.221375e-01 setrgbcolor +fill +grestore +newpath +5.857875e+01 6.238434e+00 moveto +5.948431e+01 5.802866e+00 lineto +5.906719e+01 5.681988e+00 lineto +5.809315e+01 6.09771e+00 lineto +5.857875e+01 6.238434e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.767928e+01 6.711648e+00 moveto +5.857875e+01 6.238434e+00 lineto +5.809315e+01 6.09771e+00 lineto +5.712566e+01 6.551212e+00 lineto +5.767928e+01 6.711648e+00 lineto +closepath +gsave +6.648868e-01 6.648868e-01 8.311084e-01 setrgbcolor +fill +grestore +newpath +5.767928e+01 6.711648e+00 moveto +5.857875e+01 6.238434e+00 lineto +5.809315e+01 6.09771e+00 lineto +5.712566e+01 6.551212e+00 lineto +5.767928e+01 6.711648e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.678673e+01 7.222061e+00 moveto +5.767928e+01 6.711648e+00 lineto +5.712566e+01 6.551212e+00 lineto +5.616561e+01 7.042065e+00 lineto +5.678673e+01 7.222061e+00 lineto +closepath +gsave +6.719434e-01 6.719434e-01 8.399293e-01 setrgbcolor +fill +grestore +newpath +5.678673e+01 7.222061e+00 moveto +5.767928e+01 6.711648e+00 lineto +5.712566e+01 6.551212e+00 lineto +5.616561e+01 7.042065e+00 lineto +5.678673e+01 7.222061e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.590197e+01 7.769189e+00 moveto +5.678673e+01 7.222061e+00 lineto +5.616561e+01 7.042065e+00 lineto +5.521394e+01 7.569803e+00 lineto +5.590197e+01 7.769189e+00 lineto +closepath +gsave +6.78869e-01 6.78869e-01 8.485863e-01 setrgbcolor +fill +grestore +newpath +5.590197e+01 7.769189e+00 moveto +5.678673e+01 7.222061e+00 lineto +5.616561e+01 7.042065e+00 lineto +5.521394e+01 7.569803e+00 lineto +5.590197e+01 7.769189e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.502581e+01 8.352514e+00 moveto +5.590197e+01 7.769189e+00 lineto +5.521394e+01 7.569803e+00 lineto +5.427153e+01 8.133927e+00 lineto +5.502581e+01 8.352514e+00 lineto +closepath +gsave +6.85653e-01 6.85653e-01 8.570663e-01 setrgbcolor +fill +grestore +newpath +5.502581e+01 8.352514e+00 moveto +5.590197e+01 7.769189e+00 lineto +5.521394e+01 7.569803e+00 lineto +5.427153e+01 8.133927e+00 lineto +5.502581e+01 8.352514e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.41591e+01 8.971485e+00 moveto +5.502581e+01 8.352514e+00 lineto +5.427153e+01 8.133927e+00 lineto +5.333927e+01 8.733904e+00 lineto +5.41591e+01 8.971485e+00 lineto +closepath +gsave +6.922856e-01 6.922856e-01 8.653571e-01 setrgbcolor +fill +grestore +newpath +5.41591e+01 8.971485e+00 moveto +5.502581e+01 8.352514e+00 lineto +5.427153e+01 8.133927e+00 lineto +5.333927e+01 8.733904e+00 lineto +5.41591e+01 8.971485e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.330266e+01 9.625514e+00 moveto +5.41591e+01 8.971485e+00 lineto +5.333927e+01 8.733904e+00 lineto +5.241806e+01 9.369164e+00 lineto +5.330266e+01 9.625514e+00 lineto +closepath +gsave +6.987577e-01 6.987577e-01 8.734471e-01 setrgbcolor +fill +grestore +newpath +5.330266e+01 9.625514e+00 moveto +5.41591e+01 8.971485e+00 lineto +5.333927e+01 8.733904e+00 lineto +5.241806e+01 9.369164e+00 lineto +5.330266e+01 9.625514e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.245729e+01 1.031398e+01 moveto +5.330266e+01 9.625514e+00 lineto +5.241806e+01 9.369164e+00 lineto +5.150876e+01 1.003911e+01 lineto +5.245729e+01 1.031398e+01 lineto +closepath +gsave +7.050606e-01 7.050606e-01 8.813258e-01 setrgbcolor +fill +grestore +newpath +5.245729e+01 1.031398e+01 moveto +5.330266e+01 9.625514e+00 lineto +5.241806e+01 9.369164e+00 lineto +5.150876e+01 1.003911e+01 lineto +5.245729e+01 1.031398e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.162379e+01 1.103624e+01 moveto +5.245729e+01 1.031398e+01 lineto +5.150876e+01 1.003911e+01 lineto +5.061223e+01 1.07431e+01 lineto +5.162379e+01 1.103624e+01 lineto +closepath +gsave +7.111865e-01 7.111865e-01 8.889831e-01 setrgbcolor +fill +grestore +newpath +5.162379e+01 1.103624e+01 moveto +5.245729e+01 1.031398e+01 lineto +5.150876e+01 1.003911e+01 lineto +5.061223e+01 1.07431e+01 lineto +5.162379e+01 1.103624e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.080296e+01 1.17916e+01 moveto +5.162379e+01 1.103624e+01 lineto +5.061223e+01 1.07431e+01 lineto +4.972933e+01 1.148047e+01 lineto +5.080296e+01 1.17916e+01 lineto +closepath +gsave +7.171281e-01 7.171281e-01 8.964101e-01 setrgbcolor +fill +grestore +newpath +5.080296e+01 1.17916e+01 moveto +5.162379e+01 1.103624e+01 lineto +5.061223e+01 1.07431e+01 lineto +4.972933e+01 1.148047e+01 lineto +5.080296e+01 1.17916e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.999558e+01 1.257935e+01 moveto +5.080296e+01 1.17916e+01 lineto +4.972933e+01 1.148047e+01 lineto +4.886088e+01 1.225052e+01 lineto +4.999558e+01 1.257935e+01 lineto +closepath +gsave +7.228788e-01 7.228788e-01 9.035984e-01 setrgbcolor +fill +grestore +newpath +4.999558e+01 1.257935e+01 moveto +5.080296e+01 1.17916e+01 lineto +4.972933e+01 1.148047e+01 lineto +4.886088e+01 1.225052e+01 lineto +4.999558e+01 1.257935e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.920239e+01 1.339874e+01 moveto +4.999558e+01 1.257935e+01 lineto +4.886088e+01 1.225052e+01 lineto +4.800772e+01 1.305254e+01 lineto +4.920239e+01 1.339874e+01 lineto +closepath +gsave +7.284325e-01 7.284325e-01 9.105407e-01 setrgbcolor +fill +grestore +newpath +4.920239e+01 1.339874e+01 moveto +4.999558e+01 1.257935e+01 lineto +4.886088e+01 1.225052e+01 lineto +4.800772e+01 1.305254e+01 lineto +4.920239e+01 1.339874e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.842417e+01 1.4249e+01 moveto +4.920239e+01 1.339874e+01 lineto +4.800772e+01 1.305254e+01 lineto +4.717064e+01 1.388574e+01 lineto +4.842417e+01 1.4249e+01 lineto +closepath +gsave +7.337841e-01 7.337841e-01 9.172301e-01 setrgbcolor +fill +grestore +newpath +4.842417e+01 1.4249e+01 moveto +4.920239e+01 1.339874e+01 lineto +4.800772e+01 1.305254e+01 lineto +4.717064e+01 1.388574e+01 lineto +4.842417e+01 1.4249e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.766164e+01 1.512933e+01 moveto +4.842417e+01 1.4249e+01 lineto +4.717064e+01 1.388574e+01 lineto +4.635044e+01 1.474935e+01 lineto +4.766164e+01 1.512933e+01 lineto +closepath +gsave +7.389286e-01 7.389286e-01 9.236607e-01 setrgbcolor +fill +grestore +newpath +4.766164e+01 1.512933e+01 moveto +4.842417e+01 1.4249e+01 lineto +4.717064e+01 1.388574e+01 lineto +4.635044e+01 1.474935e+01 lineto +4.766164e+01 1.512933e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.691553e+01 1.603888e+01 moveto +4.766164e+01 1.512933e+01 lineto +4.635044e+01 1.474935e+01 lineto +4.55479e+01 1.564255e+01 lineto +4.691553e+01 1.603888e+01 lineto +closepath +gsave +7.438619e-01 7.438619e-01 9.298274e-01 setrgbcolor +fill +grestore +newpath +4.691553e+01 1.603888e+01 moveto +4.766164e+01 1.512933e+01 lineto +4.635044e+01 1.474935e+01 lineto +4.55479e+01 1.564255e+01 lineto +4.691553e+01 1.603888e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.618653e+01 1.69768e+01 moveto +4.691553e+01 1.603888e+01 lineto +4.55479e+01 1.564255e+01 lineto +4.476378e+01 1.656449e+01 lineto +4.618653e+01 1.69768e+01 lineto +closepath +gsave +7.485804e-01 7.485804e-01 9.357255e-01 setrgbcolor +fill +grestore +newpath +4.618653e+01 1.69768e+01 moveto +4.691553e+01 1.603888e+01 lineto +4.55479e+01 1.564255e+01 lineto +4.476378e+01 1.656449e+01 lineto +4.618653e+01 1.69768e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.547536e+01 1.794219e+01 moveto +4.618653e+01 1.69768e+01 lineto +4.476378e+01 1.656449e+01 lineto +4.399882e+01 1.75143e+01 lineto +4.547536e+01 1.794219e+01 lineto +closepath +gsave +7.53081e-01 7.53081e-01 9.413512e-01 setrgbcolor +fill +grestore +newpath +4.547536e+01 1.794219e+01 moveto +4.618653e+01 1.69768e+01 lineto +4.476378e+01 1.656449e+01 lineto +4.399882e+01 1.75143e+01 lineto +4.547536e+01 1.794219e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.478266e+01 1.893416e+01 moveto +4.547536e+01 1.794219e+01 lineto +4.399882e+01 1.75143e+01 lineto +4.325375e+01 1.849109e+01 lineto +4.478266e+01 1.893416e+01 lineto +closepath +gsave +7.57361e-01 7.57361e-01 9.467013e-01 setrgbcolor +fill +grestore +newpath +4.478266e+01 1.893416e+01 moveto +4.547536e+01 1.794219e+01 lineto +4.399882e+01 1.75143e+01 lineto +4.325375e+01 1.849109e+01 lineto +4.478266e+01 1.893416e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.410911e+01 1.995175e+01 moveto +4.478266e+01 1.893416e+01 lineto +4.325375e+01 1.849109e+01 lineto +4.252926e+01 1.949392e+01 lineto +4.410911e+01 1.995175e+01 lineto +closepath +gsave +7.614184e-01 7.614184e-01 9.51773e-01 setrgbcolor +fill +grestore +newpath +4.410911e+01 1.995175e+01 moveto +4.478266e+01 1.893416e+01 lineto +4.325375e+01 1.849109e+01 lineto +4.252926e+01 1.949392e+01 lineto +4.410911e+01 1.995175e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.345534e+01 2.0994e+01 moveto +4.410911e+01 1.995175e+01 lineto +4.252926e+01 1.949392e+01 lineto +4.182605e+01 2.052184e+01 lineto +4.345534e+01 2.0994e+01 lineto +closepath +gsave +7.652513e-01 7.652513e-01 9.565642e-01 setrgbcolor +fill +grestore +newpath +4.345534e+01 2.0994e+01 moveto +4.410911e+01 1.995175e+01 lineto +4.252926e+01 1.949392e+01 lineto +4.182605e+01 2.052184e+01 lineto +4.345534e+01 2.0994e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.282197e+01 2.205993e+01 moveto +4.345534e+01 2.0994e+01 lineto +4.182605e+01 2.052184e+01 lineto +4.114478e+01 2.157389e+01 lineto +4.282197e+01 2.205993e+01 lineto +closepath +gsave +7.688586e-01 7.688586e-01 9.610732e-01 setrgbcolor +fill +grestore +newpath +4.282197e+01 2.205993e+01 moveto +4.345534e+01 2.0994e+01 lineto +4.182605e+01 2.052184e+01 lineto +4.114478e+01 2.157389e+01 lineto +4.282197e+01 2.205993e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.22096e+01 2.314852e+01 moveto +4.282197e+01 2.205993e+01 lineto +4.114478e+01 2.157389e+01 lineto +4.048609e+01 2.264906e+01 lineto +4.22096e+01 2.314852e+01 lineto +closepath +gsave +7.722391e-01 7.722391e-01 9.652988e-01 setrgbcolor +fill +grestore +newpath +4.22096e+01 2.314852e+01 moveto +4.282197e+01 2.205993e+01 lineto +4.114478e+01 2.157389e+01 lineto +4.048609e+01 2.264906e+01 lineto +4.22096e+01 2.314852e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.16188e+01 2.425875e+01 moveto +4.22096e+01 2.314852e+01 lineto +4.048609e+01 2.264906e+01 lineto +3.985062e+01 2.374635e+01 lineto +4.16188e+01 2.425875e+01 lineto +closepath +gsave +7.753921e-01 7.753921e-01 9.692401e-01 setrgbcolor +fill +grestore +newpath +4.16188e+01 2.425875e+01 moveto +4.22096e+01 2.314852e+01 lineto +4.048609e+01 2.264906e+01 lineto +3.985062e+01 2.374635e+01 lineto +4.16188e+01 2.425875e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.105014e+01 2.538957e+01 moveto +4.16188e+01 2.425875e+01 lineto +3.985062e+01 2.374635e+01 lineto +3.923896e+01 2.48647e+01 lineto +4.105014e+01 2.538957e+01 lineto +closepath +gsave +7.783173e-01 7.783173e-01 9.728966e-01 setrgbcolor +fill +grestore +newpath +4.105014e+01 2.538957e+01 moveto +4.16188e+01 2.425875e+01 lineto +3.985062e+01 2.374635e+01 lineto +3.923896e+01 2.48647e+01 lineto +4.105014e+01 2.538957e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.050416e+01 2.65399e+01 moveto +4.105014e+01 2.538957e+01 lineto +3.923896e+01 2.48647e+01 lineto +3.865168e+01 2.600306e+01 lineto +4.050416e+01 2.65399e+01 lineto +closepath +gsave +7.810145e-01 7.810145e-01 9.762681e-01 setrgbcolor +fill +grestore +newpath +4.050416e+01 2.65399e+01 moveto +4.105014e+01 2.538957e+01 lineto +3.923896e+01 2.48647e+01 lineto +3.865168e+01 2.600306e+01 lineto +4.050416e+01 2.65399e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.998137e+01 2.770865e+01 moveto +4.050416e+01 2.65399e+01 lineto +3.865168e+01 2.600306e+01 lineto +3.808936e+01 2.716036e+01 lineto +3.998137e+01 2.770865e+01 lineto +closepath +gsave +7.834836e-01 7.834836e-01 9.793545e-01 setrgbcolor +fill +grestore +newpath +3.998137e+01 2.770865e+01 moveto +4.050416e+01 2.65399e+01 lineto +3.865168e+01 2.600306e+01 lineto +3.808936e+01 2.716036e+01 lineto +3.998137e+01 2.770865e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.948227e+01 2.889472e+01 moveto +3.998137e+01 2.770865e+01 lineto +3.808936e+01 2.716036e+01 lineto +3.755251e+01 2.83355e+01 lineto +3.948227e+01 2.889472e+01 lineto +closepath +gsave +7.857248e-01 7.857248e-01 9.821559e-01 setrgbcolor +fill +grestore +newpath +3.948227e+01 2.889472e+01 moveto +3.998137e+01 2.770865e+01 lineto +3.808936e+01 2.716036e+01 lineto +3.755251e+01 2.83355e+01 lineto +3.948227e+01 2.889472e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.900733e+01 3.009699e+01 moveto +3.948227e+01 2.889472e+01 lineto +3.755251e+01 2.83355e+01 lineto +3.704166e+01 2.952736e+01 lineto +3.900733e+01 3.009699e+01 lineto +closepath +gsave +7.877383e-01 7.877383e-01 9.846729e-01 setrgbcolor +fill +grestore +newpath +3.900733e+01 3.009699e+01 moveto +3.948227e+01 2.889472e+01 lineto +3.755251e+01 2.83355e+01 lineto +3.704166e+01 2.952736e+01 lineto +3.900733e+01 3.009699e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.8557e+01 3.131432e+01 moveto +3.900733e+01 3.009699e+01 lineto +3.704166e+01 2.952736e+01 lineto +3.655727e+01 3.073481e+01 lineto +3.8557e+01 3.131432e+01 lineto +closepath +gsave +7.895245e-01 7.895245e-01 9.869056e-01 setrgbcolor +fill +grestore +newpath +3.8557e+01 3.131432e+01 moveto +3.900733e+01 3.009699e+01 lineto +3.704166e+01 2.952736e+01 lineto +3.655727e+01 3.073481e+01 lineto +3.8557e+01 3.131432e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.81317e+01 3.254555e+01 moveto +3.8557e+01 3.131432e+01 lineto +3.655727e+01 3.073481e+01 lineto +3.609981e+01 3.195672e+01 lineto +3.81317e+01 3.254555e+01 lineto +closepath +gsave +7.910838e-01 7.910838e-01 9.888547e-01 setrgbcolor +fill +grestore +newpath +3.81317e+01 3.254555e+01 moveto +3.8557e+01 3.131432e+01 lineto +3.655727e+01 3.073481e+01 lineto +3.609981e+01 3.195672e+01 lineto +3.81317e+01 3.254555e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.773185e+01 3.378952e+01 moveto +3.81317e+01 3.254555e+01 lineto +3.609981e+01 3.195672e+01 lineto +3.566972e+01 3.319193e+01 lineto +3.773185e+01 3.378952e+01 lineto +closepath +gsave +7.924166e-01 7.924166e-01 9.905207e-01 setrgbcolor +fill +grestore +newpath +3.773185e+01 3.378952e+01 moveto +3.81317e+01 3.254555e+01 lineto +3.609981e+01 3.195672e+01 lineto +3.566972e+01 3.319193e+01 lineto +3.773185e+01 3.378952e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.735781e+01 3.504505e+01 moveto +3.773185e+01 3.378952e+01 lineto +3.566972e+01 3.319193e+01 lineto +3.526739e+01 3.443926e+01 lineto +3.735781e+01 3.504505e+01 lineto +closepath +gsave +7.935232e-01 7.935232e-01 9.91904e-01 setrgbcolor +fill +grestore +newpath +3.735781e+01 3.504505e+01 moveto +3.773185e+01 3.378952e+01 lineto +3.566972e+01 3.319193e+01 lineto +3.526739e+01 3.443926e+01 lineto +3.735781e+01 3.504505e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.700994e+01 3.631095e+01 moveto +3.735781e+01 3.504505e+01 lineto +3.526739e+01 3.443926e+01 lineto +3.489322e+01 3.569754e+01 lineto +3.700994e+01 3.631095e+01 lineto +closepath +gsave +7.944041e-01 7.944041e-01 9.930052e-01 setrgbcolor +fill +grestore +newpath +3.700994e+01 3.631095e+01 moveto +3.735781e+01 3.504505e+01 lineto +3.526739e+01 3.443926e+01 lineto +3.489322e+01 3.569754e+01 lineto +3.700994e+01 3.631095e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.668858e+01 3.758603e+01 moveto +3.700994e+01 3.631095e+01 lineto +3.489322e+01 3.569754e+01 lineto +3.454755e+01 3.696557e+01 lineto +3.668858e+01 3.758603e+01 lineto +closepath +gsave +7.950596e-01 7.950596e-01 9.938245e-01 setrgbcolor +fill +grestore +newpath +3.668858e+01 3.758603e+01 moveto +3.700994e+01 3.631095e+01 lineto +3.489322e+01 3.569754e+01 lineto +3.454755e+01 3.696557e+01 lineto +3.668858e+01 3.758603e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.400302e+01 4.18258e+00 moveto +6.499677e+01 4.000527e+00 lineto +6.499656e+01 4.000458e+00 lineto +6.393907e+01 4.161265e+00 lineto +6.400302e+01 4.18258e+00 lineto +closepath +gsave +6.127403e-01 6.127403e-01 7.659254e-01 setrgbcolor +fill +grestore +newpath +6.400302e+01 4.18258e+00 moveto +6.499677e+01 4.000527e+00 lineto +6.499656e+01 4.000458e+00 lineto +6.393907e+01 4.161265e+00 lineto +6.400302e+01 4.18258e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.301021e+01 4.404226e+00 moveto +6.400302e+01 4.18258e+00 lineto +6.393907e+01 4.161265e+00 lineto +6.288258e+01 4.361685e+00 lineto +6.301021e+01 4.404226e+00 lineto +closepath +gsave +6.202319e-01 6.202319e-01 7.752899e-01 setrgbcolor +fill +grestore +newpath +6.301021e+01 4.404226e+00 moveto +6.400302e+01 4.18258e+00 lineto +6.393907e+01 4.161265e+00 lineto +6.288258e+01 4.361685e+00 lineto +6.301021e+01 4.404226e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.201929e+01 4.665256e+00 moveto +6.301021e+01 4.404226e+00 lineto +6.288258e+01 4.361685e+00 lineto +6.18281e+01 4.601529e+00 lineto +6.201929e+01 4.665256e+00 lineto +closepath +gsave +6.276792e-01 6.276792e-01 7.84599e-01 setrgbcolor +fill +grestore +newpath +6.201929e+01 4.665256e+00 moveto +6.301021e+01 4.404226e+00 lineto +6.288258e+01 4.361685e+00 lineto +6.18281e+01 4.601529e+00 lineto +6.201929e+01 4.665256e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.103119e+01 4.965422e+00 moveto +6.201929e+01 4.665256e+00 lineto +6.18281e+01 4.601529e+00 lineto +6.077662e+01 4.880569e+00 lineto +6.103119e+01 4.965422e+00 lineto +closepath +gsave +6.350689e-01 6.350689e-01 7.938361e-01 setrgbcolor +fill +grestore +newpath +6.103119e+01 4.965422e+00 moveto +6.201929e+01 4.665256e+00 lineto +6.18281e+01 4.601529e+00 lineto +6.077662e+01 4.880569e+00 lineto +6.103119e+01 4.965422e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.004684e+01 5.30444e+00 moveto +6.103119e+01 4.965422e+00 lineto +6.077662e+01 4.880569e+00 lineto +5.972914e+01 5.198542e+00 lineto +6.004684e+01 5.30444e+00 lineto +closepath +gsave +6.423878e-01 6.423878e-01 8.029848e-01 setrgbcolor +fill +grestore +newpath +6.004684e+01 5.30444e+00 moveto +6.103119e+01 4.965422e+00 lineto +6.077662e+01 4.880569e+00 lineto +5.972914e+01 5.198542e+00 lineto +6.004684e+01 5.30444e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.906719e+01 5.681988e+00 moveto +6.004684e+01 5.30444e+00 lineto +5.972914e+01 5.198542e+00 lineto +5.868665e+01 5.555146e+00 lineto +5.906719e+01 5.681988e+00 lineto +closepath +gsave +6.496235e-01 6.496235e-01 8.120294e-01 setrgbcolor +fill +grestore +newpath +5.906719e+01 5.681988e+00 moveto +6.004684e+01 5.30444e+00 lineto +5.972914e+01 5.198542e+00 lineto +5.868665e+01 5.555146e+00 lineto +5.906719e+01 5.681988e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.809315e+01 6.09771e+00 moveto +5.906719e+01 5.681988e+00 lineto +5.868665e+01 5.555146e+00 lineto +5.765014e+01 5.950043e+00 lineto +5.809315e+01 6.09771e+00 lineto +closepath +gsave +6.567636e-01 6.567636e-01 8.209545e-01 setrgbcolor +fill +grestore +newpath +5.809315e+01 6.09771e+00 moveto +5.906719e+01 5.681988e+00 lineto +5.868665e+01 5.555146e+00 lineto +5.765014e+01 5.950043e+00 lineto +5.809315e+01 6.09771e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.712566e+01 6.551212e+00 moveto +5.809315e+01 6.09771e+00 lineto +5.765014e+01 5.950043e+00 lineto +5.662058e+01 6.38286e+00 lineto +5.712566e+01 6.551212e+00 lineto +closepath +gsave +6.637964e-01 6.637964e-01 8.297455e-01 setrgbcolor +fill +grestore +newpath +5.712566e+01 6.551212e+00 moveto +5.809315e+01 6.09771e+00 lineto +5.765014e+01 5.950043e+00 lineto +5.662058e+01 6.38286e+00 lineto +5.712566e+01 6.551212e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.616561e+01 7.042065e+00 moveto +5.712566e+01 6.551212e+00 lineto +5.662058e+01 6.38286e+00 lineto +5.559896e+01 6.853187e+00 lineto +5.616561e+01 7.042065e+00 lineto +closepath +gsave +6.707106e-01 6.707106e-01 8.383883e-01 setrgbcolor +fill +grestore +newpath +5.616561e+01 7.042065e+00 moveto +5.712566e+01 6.551212e+00 lineto +5.662058e+01 6.38286e+00 lineto +5.559896e+01 6.853187e+00 lineto +5.616561e+01 7.042065e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.521394e+01 7.569803e+00 moveto +5.616561e+01 7.042065e+00 lineto +5.559896e+01 6.853187e+00 lineto +5.458624e+01 7.360579e+00 lineto +5.521394e+01 7.569803e+00 lineto +closepath +gsave +6.774957e-01 6.774957e-01 8.468697e-01 setrgbcolor +fill +grestore +newpath +5.521394e+01 7.569803e+00 moveto +5.616561e+01 7.042065e+00 lineto +5.559896e+01 6.853187e+00 lineto +5.458624e+01 7.360579e+00 lineto +5.521394e+01 7.569803e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.427153e+01 8.133927e+00 moveto +5.521394e+01 7.569803e+00 lineto +5.458624e+01 7.360579e+00 lineto +5.358338e+01 7.904555e+00 lineto +5.427153e+01 8.133927e+00 lineto +closepath +gsave +6.841415e-01 6.841415e-01 8.551769e-01 setrgbcolor +fill +grestore +newpath +5.427153e+01 8.133927e+00 moveto +5.521394e+01 7.569803e+00 lineto +5.458624e+01 7.360579e+00 lineto +5.358338e+01 7.904555e+00 lineto +5.427153e+01 8.133927e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.333927e+01 8.733904e+00 moveto +5.427153e+01 8.133927e+00 lineto +5.358338e+01 7.904555e+00 lineto +5.259133e+01 8.484599e+00 lineto +5.333927e+01 8.733904e+00 lineto +closepath +gsave +6.906384e-01 6.906384e-01 8.632981e-01 setrgbcolor +fill +grestore +newpath +5.333927e+01 8.733904e+00 moveto +5.427153e+01 8.133927e+00 lineto +5.358338e+01 7.904555e+00 lineto +5.259133e+01 8.484599e+00 lineto +5.333927e+01 8.733904e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.241806e+01 9.369164e+00 moveto +5.333927e+01 8.733904e+00 lineto +5.259133e+01 8.484599e+00 lineto +5.161103e+01 9.100164e+00 lineto +5.241806e+01 9.369164e+00 lineto +closepath +gsave +6.969776e-01 6.969776e-01 8.71222e-01 setrgbcolor +fill +grestore +newpath +5.241806e+01 9.369164e+00 moveto +5.333927e+01 8.733904e+00 lineto +5.259133e+01 8.484599e+00 lineto +5.161103e+01 9.100164e+00 lineto +5.241806e+01 9.369164e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.150876e+01 1.003911e+01 moveto +5.241806e+01 9.369164e+00 lineto +5.161103e+01 9.100164e+00 lineto +5.064341e+01 9.750666e+00 lineto +5.150876e+01 1.003911e+01 lineto +closepath +gsave +7.031507e-01 7.031507e-01 8.789384e-01 setrgbcolor +fill +grestore +newpath +5.150876e+01 1.003911e+01 moveto +5.241806e+01 9.369164e+00 lineto +5.161103e+01 9.100164e+00 lineto +5.064341e+01 9.750666e+00 lineto +5.150876e+01 1.003911e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.061223e+01 1.07431e+01 moveto +5.150876e+01 1.003911e+01 lineto +5.064341e+01 9.750666e+00 lineto +4.968937e+01 1.043549e+01 lineto +5.061223e+01 1.07431e+01 lineto +closepath +gsave +7.091501e-01 7.091501e-01 8.864376e-01 setrgbcolor +fill +grestore +newpath +5.061223e+01 1.07431e+01 moveto +5.150876e+01 1.003911e+01 lineto +5.064341e+01 9.750666e+00 lineto +4.968937e+01 1.043549e+01 lineto +5.061223e+01 1.07431e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.972933e+01 1.148047e+01 moveto +5.061223e+01 1.07431e+01 lineto +4.968937e+01 1.043549e+01 lineto +4.874984e+01 1.115399e+01 lineto +4.972933e+01 1.148047e+01 lineto +closepath +gsave +7.149686e-01 7.149686e-01 8.937108e-01 setrgbcolor +fill +grestore +newpath +4.972933e+01 1.148047e+01 moveto +5.061223e+01 1.07431e+01 lineto +4.968937e+01 1.043549e+01 lineto +4.874984e+01 1.115399e+01 lineto +4.972933e+01 1.148047e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.886088e+01 1.225052e+01 moveto +4.972933e+01 1.148047e+01 lineto +4.874984e+01 1.115399e+01 lineto +4.782569e+01 1.190547e+01 lineto +4.886088e+01 1.225052e+01 lineto +closepath +gsave +7.205998e-01 7.205998e-01 9.007498e-01 setrgbcolor +fill +grestore +newpath +4.886088e+01 1.225052e+01 moveto +4.972933e+01 1.148047e+01 lineto +4.874984e+01 1.115399e+01 lineto +4.782569e+01 1.190547e+01 lineto +4.886088e+01 1.225052e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.800772e+01 1.305254e+01 moveto +4.886088e+01 1.225052e+01 lineto +4.782569e+01 1.190547e+01 lineto +4.69178e+01 1.268924e+01 lineto +4.800772e+01 1.305254e+01 lineto +closepath +gsave +7.260379e-01 7.260379e-01 9.075474e-01 setrgbcolor +fill +grestore +newpath +4.800772e+01 1.305254e+01 moveto +4.886088e+01 1.225052e+01 lineto +4.782569e+01 1.190547e+01 lineto +4.69178e+01 1.268924e+01 lineto +4.800772e+01 1.305254e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.717064e+01 1.388574e+01 moveto +4.800772e+01 1.305254e+01 lineto +4.69178e+01 1.268924e+01 lineto +4.602703e+01 1.350455e+01 lineto +4.717064e+01 1.388574e+01 lineto +closepath +gsave +7.312775e-01 7.312775e-01 9.140969e-01 setrgbcolor +fill +grestore +newpath +4.717064e+01 1.388574e+01 moveto +4.800772e+01 1.305254e+01 lineto +4.69178e+01 1.268924e+01 lineto +4.602703e+01 1.350455e+01 lineto +4.717064e+01 1.388574e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.635044e+01 1.474935e+01 moveto +4.717064e+01 1.388574e+01 lineto +4.602703e+01 1.350455e+01 lineto +4.515423e+01 1.435063e+01 lineto +4.635044e+01 1.474935e+01 lineto +closepath +gsave +7.363141e-01 7.363141e-01 9.203926e-01 setrgbcolor +fill +grestore +newpath +4.635044e+01 1.474935e+01 moveto +4.717064e+01 1.388574e+01 lineto +4.602703e+01 1.350455e+01 lineto +4.515423e+01 1.435063e+01 lineto +4.635044e+01 1.474935e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.55479e+01 1.564255e+01 moveto +4.635044e+01 1.474935e+01 lineto +4.515423e+01 1.435063e+01 lineto +4.430021e+01 1.522667e+01 lineto +4.55479e+01 1.564255e+01 lineto +closepath +gsave +7.411434e-01 7.411434e-01 9.264292e-01 setrgbcolor +fill +grestore +newpath +4.55479e+01 1.564255e+01 moveto +4.635044e+01 1.474935e+01 lineto +4.515423e+01 1.435063e+01 lineto +4.430021e+01 1.522667e+01 lineto +4.55479e+01 1.564255e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.476378e+01 1.656449e+01 moveto +4.55479e+01 1.564255e+01 lineto +4.430021e+01 1.522667e+01 lineto +4.34658e+01 1.613185e+01 lineto +4.476378e+01 1.656449e+01 lineto +closepath +gsave +7.457618e-01 7.457618e-01 9.322022e-01 setrgbcolor +fill +grestore +newpath +4.476378e+01 1.656449e+01 moveto +4.55479e+01 1.564255e+01 lineto +4.430021e+01 1.522667e+01 lineto +4.34658e+01 1.613185e+01 lineto +4.476378e+01 1.656449e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.399882e+01 1.75143e+01 moveto +4.476378e+01 1.656449e+01 lineto +4.34658e+01 1.613185e+01 lineto +4.265177e+01 1.70653e+01 lineto +4.399882e+01 1.75143e+01 lineto +closepath +gsave +7.501663e-01 7.501663e-01 9.377078e-01 setrgbcolor +fill +grestore +newpath +4.399882e+01 1.75143e+01 moveto +4.476378e+01 1.656449e+01 lineto +4.34658e+01 1.613185e+01 lineto +4.265177e+01 1.70653e+01 lineto +4.399882e+01 1.75143e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.325375e+01 1.849109e+01 moveto +4.399882e+01 1.75143e+01 lineto +4.265177e+01 1.70653e+01 lineto +4.18589e+01 1.802616e+01 lineto +4.325375e+01 1.849109e+01 lineto +closepath +gsave +7.543541e-01 7.543541e-01 9.429427e-01 setrgbcolor +fill +grestore +newpath +4.325375e+01 1.849109e+01 moveto +4.399882e+01 1.75143e+01 lineto +4.265177e+01 1.70653e+01 lineto +4.18589e+01 1.802616e+01 lineto +4.325375e+01 1.849109e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.252926e+01 1.949392e+01 moveto +4.325375e+01 1.849109e+01 lineto +4.18589e+01 1.802616e+01 lineto +4.108794e+01 1.90135e+01 lineto +4.252926e+01 1.949392e+01 lineto +closepath +gsave +7.583232e-01 7.583232e-01 9.47904e-01 setrgbcolor +fill +grestore +newpath +4.252926e+01 1.949392e+01 moveto +4.325375e+01 1.849109e+01 lineto +4.18589e+01 1.802616e+01 lineto +4.108794e+01 1.90135e+01 lineto +4.252926e+01 1.949392e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.182605e+01 2.052184e+01 moveto +4.252926e+01 1.949392e+01 lineto +4.108794e+01 1.90135e+01 lineto +4.033963e+01 2.002639e+01 lineto +4.182605e+01 2.052184e+01 lineto +closepath +gsave +7.620716e-01 7.620716e-01 9.525896e-01 setrgbcolor +fill +grestore +newpath +4.182605e+01 2.052184e+01 moveto +4.252926e+01 1.949392e+01 lineto +4.108794e+01 1.90135e+01 lineto +4.033963e+01 2.002639e+01 lineto +4.182605e+01 2.052184e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.114478e+01 2.157389e+01 moveto +4.182605e+01 2.052184e+01 lineto +4.033963e+01 2.002639e+01 lineto +3.961466e+01 2.106387e+01 lineto +4.114478e+01 2.157389e+01 lineto +closepath +gsave +7.655981e-01 7.655981e-01 9.569976e-01 setrgbcolor +fill +grestore +newpath +4.114478e+01 2.157389e+01 moveto +4.182605e+01 2.052184e+01 lineto +4.033963e+01 2.002639e+01 lineto +3.961466e+01 2.106387e+01 lineto +4.114478e+01 2.157389e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.048609e+01 2.264906e+01 moveto +4.114478e+01 2.157389e+01 lineto +3.961466e+01 2.106387e+01 lineto +3.891373e+01 2.212496e+01 lineto +4.048609e+01 2.264906e+01 lineto +closepath +gsave +7.689014e-01 7.689014e-01 9.611268e-01 setrgbcolor +fill +grestore +newpath +4.048609e+01 2.264906e+01 moveto +4.114478e+01 2.157389e+01 lineto +3.961466e+01 2.106387e+01 lineto +3.891373e+01 2.212496e+01 lineto +4.048609e+01 2.264906e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.985062e+01 2.374635e+01 moveto +4.048609e+01 2.264906e+01 lineto +3.891373e+01 2.212496e+01 lineto +3.823749e+01 2.320866e+01 lineto +3.985062e+01 2.374635e+01 lineto +closepath +gsave +7.719808e-01 7.719808e-01 9.64976e-01 setrgbcolor +fill +grestore +newpath +3.985062e+01 2.374635e+01 moveto +4.048609e+01 2.264906e+01 lineto +3.891373e+01 2.212496e+01 lineto +3.823749e+01 2.320866e+01 lineto +3.985062e+01 2.374635e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.923896e+01 2.48647e+01 moveto +3.985062e+01 2.374635e+01 lineto +3.823749e+01 2.320866e+01 lineto +3.75866e+01 2.431393e+01 lineto +3.923896e+01 2.48647e+01 lineto +closepath +gsave +7.748358e-01 7.748358e-01 9.685447e-01 setrgbcolor +fill +grestore +newpath +3.923896e+01 2.48647e+01 moveto +3.985062e+01 2.374635e+01 lineto +3.823749e+01 2.320866e+01 lineto +3.75866e+01 2.431393e+01 lineto +3.923896e+01 2.48647e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.865168e+01 2.600306e+01 moveto +3.923896e+01 2.48647e+01 lineto +3.75866e+01 2.431393e+01 lineto +3.696165e+01 2.543974e+01 lineto +3.865168e+01 2.600306e+01 lineto +closepath +gsave +7.774659e-01 7.774659e-01 9.718324e-01 setrgbcolor +fill +grestore +newpath +3.865168e+01 2.600306e+01 moveto +3.923896e+01 2.48647e+01 lineto +3.75866e+01 2.431393e+01 lineto +3.696165e+01 2.543974e+01 lineto +3.865168e+01 2.600306e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.808936e+01 2.716036e+01 moveto +3.865168e+01 2.600306e+01 lineto +3.696165e+01 2.543974e+01 lineto +3.636326e+01 2.658502e+01 lineto +3.808936e+01 2.716036e+01 lineto +closepath +gsave +7.798712e-01 7.798712e-01 9.74839e-01 setrgbcolor +fill +grestore +newpath +3.808936e+01 2.716036e+01 moveto +3.865168e+01 2.600306e+01 lineto +3.696165e+01 2.543974e+01 lineto +3.636326e+01 2.658502e+01 lineto +3.808936e+01 2.716036e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.755251e+01 2.83355e+01 moveto +3.808936e+01 2.716036e+01 lineto +3.636326e+01 2.658502e+01 lineto +3.579198e+01 2.774867e+01 lineto +3.755251e+01 2.83355e+01 lineto +closepath +gsave +7.820516e-01 7.820516e-01 9.775645e-01 setrgbcolor +fill +grestore +newpath +3.755251e+01 2.83355e+01 moveto +3.808936e+01 2.716036e+01 lineto +3.636326e+01 2.658502e+01 lineto +3.579198e+01 2.774867e+01 lineto +3.755251e+01 2.83355e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.704166e+01 2.952736e+01 moveto +3.755251e+01 2.83355e+01 lineto +3.579198e+01 2.774867e+01 lineto +3.524836e+01 2.892961e+01 lineto +3.704166e+01 2.952736e+01 lineto +closepath +gsave +7.840072e-01 7.840072e-01 9.80009e-01 setrgbcolor +fill +grestore +newpath +3.704166e+01 2.952736e+01 moveto +3.755251e+01 2.83355e+01 lineto +3.579198e+01 2.774867e+01 lineto +3.524836e+01 2.892961e+01 lineto +3.704166e+01 2.952736e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.655727e+01 3.073481e+01 moveto +3.704166e+01 2.952736e+01 lineto +3.524836e+01 2.892961e+01 lineto +3.47329e+01 3.012671e+01 lineto +3.655727e+01 3.073481e+01 lineto +closepath +gsave +7.857382e-01 7.857382e-01 9.821728e-01 setrgbcolor +fill +grestore +newpath +3.655727e+01 3.073481e+01 moveto +3.704166e+01 2.952736e+01 lineto +3.524836e+01 2.892961e+01 lineto +3.47329e+01 3.012671e+01 lineto +3.655727e+01 3.073481e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.609981e+01 3.195672e+01 moveto +3.655727e+01 3.073481e+01 lineto +3.47329e+01 3.012671e+01 lineto +3.42461e+01 3.133884e+01 lineto +3.609981e+01 3.195672e+01 lineto +closepath +gsave +7.87245e-01 7.87245e-01 9.840562e-01 setrgbcolor +fill +grestore +newpath +3.609981e+01 3.195672e+01 moveto +3.655727e+01 3.073481e+01 lineto +3.47329e+01 3.012671e+01 lineto +3.42461e+01 3.133884e+01 lineto +3.609981e+01 3.195672e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.566972e+01 3.319193e+01 moveto +3.609981e+01 3.195672e+01 lineto +3.42461e+01 3.133884e+01 lineto +3.378842e+01 3.256485e+01 lineto +3.566972e+01 3.319193e+01 lineto +closepath +gsave +7.885277e-01 7.885277e-01 9.856597e-01 setrgbcolor +fill +grestore +newpath +3.566972e+01 3.319193e+01 moveto +3.609981e+01 3.195672e+01 lineto +3.42461e+01 3.133884e+01 lineto +3.378842e+01 3.256485e+01 lineto +3.566972e+01 3.319193e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.526739e+01 3.443926e+01 moveto +3.566972e+01 3.319193e+01 lineto +3.378842e+01 3.256485e+01 lineto +3.336029e+01 3.380358e+01 lineto +3.526739e+01 3.443926e+01 lineto +closepath +gsave +7.895868e-01 7.895868e-01 9.869835e-01 setrgbcolor +fill +grestore +newpath +3.526739e+01 3.443926e+01 moveto +3.566972e+01 3.319193e+01 lineto +3.378842e+01 3.256485e+01 lineto +3.336029e+01 3.380358e+01 lineto +3.526739e+01 3.443926e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.489322e+01 3.569754e+01 moveto +3.526739e+01 3.443926e+01 lineto +3.336029e+01 3.380358e+01 lineto +3.296212e+01 3.505386e+01 lineto +3.489322e+01 3.569754e+01 lineto +closepath +gsave +7.904225e-01 7.904225e-01 9.880281e-01 setrgbcolor +fill +grestore +newpath +3.489322e+01 3.569754e+01 moveto +3.526739e+01 3.443926e+01 lineto +3.336029e+01 3.380358e+01 lineto +3.296212e+01 3.505386e+01 lineto +3.489322e+01 3.569754e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.454755e+01 3.696557e+01 moveto +3.489322e+01 3.569754e+01 lineto +3.296212e+01 3.505386e+01 lineto +3.259428e+01 3.631451e+01 lineto +3.454755e+01 3.696557e+01 lineto +closepath +gsave +7.91035e-01 7.91035e-01 9.887937e-01 setrgbcolor +fill +grestore +newpath +3.454755e+01 3.696557e+01 moveto +3.489322e+01 3.569754e+01 lineto +3.296212e+01 3.505386e+01 lineto +3.259428e+01 3.631451e+01 lineto +3.454755e+01 3.696557e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.393907e+01 4.161265e+00 moveto +6.499656e+01 4.000458e+00 lineto +6.499638e+01 4.000386e+00 lineto +6.388166e+01 4.139079e+00 lineto +6.393907e+01 4.161265e+00 lineto +closepath +gsave +6.126446e-01 6.126446e-01 7.658058e-01 setrgbcolor +fill +grestore +newpath +6.393907e+01 4.161265e+00 moveto +6.499656e+01 4.000458e+00 lineto +6.499638e+01 4.000386e+00 lineto +6.388166e+01 4.139079e+00 lineto +6.393907e+01 4.161265e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.288258e+01 4.361685e+00 moveto +6.393907e+01 4.161265e+00 lineto +6.388166e+01 4.139079e+00 lineto +6.276801e+01 4.317406e+00 lineto +6.288258e+01 4.361685e+00 lineto +closepath +gsave +6.199446e-01 6.199446e-01 7.749308e-01 setrgbcolor +fill +grestore +newpath +6.288258e+01 4.361685e+00 moveto +6.393907e+01 4.161265e+00 lineto +6.388166e+01 4.139079e+00 lineto +6.276801e+01 4.317406e+00 lineto +6.288258e+01 4.361685e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.18281e+01 4.601529e+00 moveto +6.288258e+01 4.361685e+00 lineto +6.276801e+01 4.317406e+00 lineto +6.165647e+01 4.535198e+00 lineto +6.18281e+01 4.601529e+00 lineto +closepath +gsave +6.271991e-01 6.271991e-01 7.839989e-01 setrgbcolor +fill +grestore +newpath +6.18281e+01 4.601529e+00 moveto +6.288258e+01 4.361685e+00 lineto +6.276801e+01 4.317406e+00 lineto +6.165647e+01 4.535198e+00 lineto +6.18281e+01 4.601529e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.077662e+01 4.880569e+00 moveto +6.18281e+01 4.601529e+00 lineto +6.165647e+01 4.535198e+00 lineto +6.054809e+01 4.79225e+00 lineto +6.077662e+01 4.880569e+00 lineto +closepath +gsave +6.343953e-01 6.343953e-01 7.929941e-01 setrgbcolor +fill +grestore +newpath +6.077662e+01 4.880569e+00 moveto +6.18281e+01 4.601529e+00 lineto +6.165647e+01 4.535198e+00 lineto +6.054809e+01 4.79225e+00 lineto +6.077662e+01 4.880569e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.972914e+01 5.198542e+00 moveto +6.077662e+01 4.880569e+00 lineto +6.054809e+01 4.79225e+00 lineto +5.944393e+01 5.088318e+00 lineto +5.972914e+01 5.198542e+00 lineto +closepath +gsave +6.415206e-01 6.415206e-01 8.019008e-01 setrgbcolor +fill +grestore +newpath +5.972914e+01 5.198542e+00 moveto +6.077662e+01 4.880569e+00 lineto +6.054809e+01 4.79225e+00 lineto +5.944393e+01 5.088318e+00 lineto +5.972914e+01 5.198542e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.868665e+01 5.555146e+00 moveto +5.972914e+01 5.198542e+00 lineto +5.944393e+01 5.088318e+00 lineto +5.834503e+01 5.423121e+00 lineto +5.868665e+01 5.555146e+00 lineto +closepath +gsave +6.485631e-01 6.485631e-01 8.107039e-01 setrgbcolor +fill +grestore +newpath +5.868665e+01 5.555146e+00 moveto +5.972914e+01 5.198542e+00 lineto +5.944393e+01 5.088318e+00 lineto +5.834503e+01 5.423121e+00 lineto +5.868665e+01 5.555146e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.765014e+01 5.950043e+00 moveto +5.868665e+01 5.555146e+00 lineto +5.834503e+01 5.423121e+00 lineto +5.725243e+01 5.796343e+00 lineto +5.765014e+01 5.950043e+00 lineto +closepath +gsave +6.55511e-01 6.55511e-01 8.193888e-01 setrgbcolor +fill +grestore +newpath +5.765014e+01 5.950043e+00 moveto +5.868665e+01 5.555146e+00 lineto +5.834503e+01 5.423121e+00 lineto +5.725243e+01 5.796343e+00 lineto +5.765014e+01 5.950043e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.662058e+01 6.38286e+00 moveto +5.765014e+01 5.950043e+00 lineto +5.725243e+01 5.796343e+00 lineto +5.616717e+01 6.20763e+00 lineto +5.662058e+01 6.38286e+00 lineto +closepath +gsave +6.623531e-01 6.623531e-01 8.279414e-01 setrgbcolor +fill +grestore +newpath +5.662058e+01 6.38286e+00 moveto +5.765014e+01 5.950043e+00 lineto +5.725243e+01 5.796343e+00 lineto +5.616717e+01 6.20763e+00 lineto +5.662058e+01 6.38286e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.559896e+01 6.853187e+00 moveto +5.662058e+01 6.38286e+00 lineto +5.616717e+01 6.20763e+00 lineto +5.509027e+01 6.656593e+00 lineto +5.559896e+01 6.853187e+00 lineto +closepath +gsave +6.690788e-01 6.690788e-01 8.363484e-01 setrgbcolor +fill +grestore +newpath +5.559896e+01 6.853187e+00 moveto +5.662058e+01 6.38286e+00 lineto +5.616717e+01 6.20763e+00 lineto +5.509027e+01 6.656593e+00 lineto +5.559896e+01 6.853187e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.458624e+01 7.360579e+00 moveto +5.559896e+01 6.853187e+00 lineto +5.509027e+01 6.656593e+00 lineto +5.402275e+01 7.142807e+00 lineto +5.458624e+01 7.360579e+00 lineto +closepath +gsave +6.756776e-01 6.756776e-01 8.44597e-01 setrgbcolor +fill +grestore +newpath +5.458624e+01 7.360579e+00 moveto +5.559896e+01 6.853187e+00 lineto +5.509027e+01 6.656593e+00 lineto +5.402275e+01 7.142807e+00 lineto +5.458624e+01 7.360579e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.358338e+01 7.904555e+00 moveto +5.458624e+01 7.360579e+00 lineto +5.402275e+01 7.142807e+00 lineto +5.296563e+01 7.66581e+00 lineto +5.358338e+01 7.904555e+00 lineto +closepath +gsave +6.821401e-01 6.821401e-01 8.526751e-01 setrgbcolor +fill +grestore +newpath +5.358338e+01 7.904555e+00 moveto +5.458624e+01 7.360579e+00 lineto +5.402275e+01 7.142807e+00 lineto +5.296563e+01 7.66581e+00 lineto +5.358338e+01 7.904555e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.259133e+01 8.484599e+00 moveto +5.358338e+01 7.904555e+00 lineto +5.296563e+01 7.66581e+00 lineto +5.19199e+01 8.22511e+00 lineto +5.259133e+01 8.484599e+00 lineto +closepath +gsave +6.88457e-01 6.88457e-01 8.605712e-01 setrgbcolor +fill +grestore +newpath +5.259133e+01 8.484599e+00 moveto +5.358338e+01 7.904555e+00 lineto +5.296563e+01 7.66581e+00 lineto +5.19199e+01 8.22511e+00 lineto +5.259133e+01 8.484599e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.161103e+01 9.100164e+00 moveto +5.259133e+01 8.484599e+00 lineto +5.19199e+01 8.22511e+00 lineto +5.088655e+01 8.820174e+00 lineto +5.161103e+01 9.100164e+00 lineto +closepath +gsave +6.946197e-01 6.946197e-01 8.682746e-01 setrgbcolor +fill +grestore +newpath +5.161103e+01 9.100164e+00 moveto +5.259133e+01 8.484599e+00 lineto +5.19199e+01 8.22511e+00 lineto +5.088655e+01 8.820174e+00 lineto +5.161103e+01 9.100164e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.064341e+01 9.750666e+00 moveto +5.161103e+01 9.100164e+00 lineto +5.088655e+01 8.820174e+00 lineto +4.986657e+01 9.450441e+00 lineto +5.064341e+01 9.750666e+00 lineto +closepath +gsave +7.006203e-01 7.006203e-01 8.757754e-01 setrgbcolor +fill +grestore +newpath +5.064341e+01 9.750666e+00 moveto +5.161103e+01 9.100164e+00 lineto +5.088655e+01 8.820174e+00 lineto +4.986657e+01 9.450441e+00 lineto +5.064341e+01 9.750666e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.968937e+01 1.043549e+01 moveto +5.064341e+01 9.750666e+00 lineto +4.986657e+01 9.450441e+00 lineto +4.886091e+01 1.011531e+01 lineto +4.968937e+01 1.043549e+01 lineto +closepath +gsave +7.064513e-01 7.064513e-01 8.830642e-01 setrgbcolor +fill +grestore +newpath +4.968937e+01 1.043549e+01 moveto +5.064341e+01 9.750666e+00 lineto +4.986657e+01 9.450441e+00 lineto +4.886091e+01 1.011531e+01 lineto +4.968937e+01 1.043549e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.874984e+01 1.115399e+01 moveto +4.968937e+01 1.043549e+01 lineto +4.886091e+01 1.011531e+01 lineto +4.787054e+01 1.081416e+01 lineto +4.874984e+01 1.115399e+01 lineto +closepath +gsave +7.12106e-01 7.12106e-01 8.901325e-01 setrgbcolor +fill +grestore +newpath +4.874984e+01 1.115399e+01 moveto +4.968937e+01 1.043549e+01 lineto +4.886091e+01 1.011531e+01 lineto +4.787054e+01 1.081416e+01 lineto +4.874984e+01 1.115399e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.782569e+01 1.190547e+01 moveto +4.874984e+01 1.115399e+01 lineto +4.787054e+01 1.081416e+01 lineto +4.689638e+01 1.154632e+01 lineto +4.782569e+01 1.190547e+01 lineto +closepath +gsave +7.17578e-01 7.17578e-01 8.969726e-01 setrgbcolor +fill +grestore +newpath +4.782569e+01 1.190547e+01 moveto +4.874984e+01 1.115399e+01 lineto +4.787054e+01 1.081416e+01 lineto +4.689638e+01 1.154632e+01 lineto +4.782569e+01 1.190547e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.69178e+01 1.268924e+01 moveto +4.782569e+01 1.190547e+01 lineto +4.689638e+01 1.154632e+01 lineto +4.593937e+01 1.231111e+01 lineto +4.69178e+01 1.268924e+01 lineto +closepath +gsave +7.228617e-01 7.228617e-01 9.035772e-01 setrgbcolor +fill +grestore +newpath +4.69178e+01 1.268924e+01 moveto +4.782569e+01 1.190547e+01 lineto +4.689638e+01 1.154632e+01 lineto +4.593937e+01 1.231111e+01 lineto +4.69178e+01 1.268924e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.602703e+01 1.350455e+01 moveto +4.69178e+01 1.268924e+01 lineto +4.593937e+01 1.231111e+01 lineto +4.50004e+01 1.310779e+01 lineto +4.602703e+01 1.350455e+01 lineto +closepath +gsave +7.27952e-01 7.27952e-01 9.0994e-01 setrgbcolor +fill +grestore +newpath +4.602703e+01 1.350455e+01 moveto +4.69178e+01 1.268924e+01 lineto +4.593937e+01 1.231111e+01 lineto +4.50004e+01 1.310779e+01 lineto +4.602703e+01 1.350455e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.515423e+01 1.435063e+01 moveto +4.602703e+01 1.350455e+01 lineto +4.50004e+01 1.310779e+01 lineto +4.408037e+01 1.393561e+01 lineto +4.515423e+01 1.435063e+01 lineto +closepath +gsave +7.328442e-01 7.328442e-01 9.160552e-01 setrgbcolor +fill +grestore +newpath +4.515423e+01 1.435063e+01 moveto +4.602703e+01 1.350455e+01 lineto +4.50004e+01 1.310779e+01 lineto +4.408037e+01 1.393561e+01 lineto +4.515423e+01 1.435063e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.430021e+01 1.522667e+01 moveto +4.515423e+01 1.435063e+01 lineto +4.408037e+01 1.393561e+01 lineto +4.318014e+01 1.47938e+01 lineto +4.430021e+01 1.522667e+01 lineto +closepath +gsave +7.375342e-01 7.375342e-01 9.219177e-01 setrgbcolor +fill +grestore +newpath +4.430021e+01 1.522667e+01 moveto +4.515423e+01 1.435063e+01 lineto +4.408037e+01 1.393561e+01 lineto +4.318014e+01 1.47938e+01 lineto +4.430021e+01 1.522667e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.34658e+01 1.613185e+01 moveto +4.430021e+01 1.522667e+01 lineto +4.318014e+01 1.47938e+01 lineto +4.230057e+01 1.568152e+01 lineto +4.34658e+01 1.613185e+01 lineto +closepath +gsave +7.420185e-01 7.420185e-01 9.275231e-01 setrgbcolor +fill +grestore +newpath +4.34658e+01 1.613185e+01 moveto +4.430021e+01 1.522667e+01 lineto +4.318014e+01 1.47938e+01 lineto +4.230057e+01 1.568152e+01 lineto +4.34658e+01 1.613185e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.265177e+01 1.70653e+01 moveto +4.34658e+01 1.613185e+01 lineto +4.230057e+01 1.568152e+01 lineto +4.14425e+01 1.659796e+01 lineto +4.265177e+01 1.70653e+01 lineto +closepath +gsave +7.46294e-01 7.46294e-01 9.328675e-01 setrgbcolor +fill +grestore +newpath +4.265177e+01 1.70653e+01 moveto +4.34658e+01 1.613185e+01 lineto +4.230057e+01 1.568152e+01 lineto +4.14425e+01 1.659796e+01 lineto +4.265177e+01 1.70653e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.18589e+01 1.802616e+01 moveto +4.265177e+01 1.70653e+01 lineto +4.14425e+01 1.659796e+01 lineto +4.060673e+01 1.754223e+01 lineto +4.18589e+01 1.802616e+01 lineto +closepath +gsave +7.503579e-01 7.503579e-01 9.379474e-01 setrgbcolor +fill +grestore +newpath +4.18589e+01 1.802616e+01 moveto +4.265177e+01 1.70653e+01 lineto +4.14425e+01 1.659796e+01 lineto +4.060673e+01 1.754223e+01 lineto +4.18589e+01 1.802616e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.108794e+01 1.90135e+01 moveto +4.18589e+01 1.802616e+01 lineto +4.060673e+01 1.754223e+01 lineto +3.979406e+01 1.851345e+01 lineto +4.108794e+01 1.90135e+01 lineto +closepath +gsave +7.542082e-01 7.542082e-01 9.427602e-01 setrgbcolor +fill +grestore +newpath +4.108794e+01 1.90135e+01 moveto +4.18589e+01 1.802616e+01 lineto +4.060673e+01 1.754223e+01 lineto +3.979406e+01 1.851345e+01 lineto +4.108794e+01 1.90135e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.033963e+01 2.002639e+01 moveto +4.108794e+01 1.90135e+01 lineto +3.979406e+01 1.851345e+01 lineto +3.900525e+01 1.951069e+01 lineto +4.033963e+01 2.002639e+01 lineto +closepath +gsave +7.578428e-01 7.578428e-01 9.473034e-01 setrgbcolor +fill +grestore +newpath +4.033963e+01 2.002639e+01 moveto +4.108794e+01 1.90135e+01 lineto +3.979406e+01 1.851345e+01 lineto +3.900525e+01 1.951069e+01 lineto +4.033963e+01 2.002639e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.961466e+01 2.106387e+01 moveto +4.033963e+01 2.002639e+01 lineto +3.900525e+01 1.951069e+01 lineto +3.824105e+01 2.053301e+01 lineto +3.961466e+01 2.106387e+01 lineto +closepath +gsave +7.612602e-01 7.612602e-01 9.515752e-01 setrgbcolor +fill +grestore +newpath +3.961466e+01 2.106387e+01 moveto +4.033963e+01 2.002639e+01 lineto +3.900525e+01 1.951069e+01 lineto +3.824105e+01 2.053301e+01 lineto +3.961466e+01 2.106387e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.891373e+01 2.212496e+01 moveto +3.961466e+01 2.106387e+01 lineto +3.824105e+01 2.053301e+01 lineto +3.750219e+01 2.157944e+01 lineto +3.891373e+01 2.212496e+01 lineto +closepath +gsave +7.644593e-01 7.644593e-01 9.555741e-01 setrgbcolor +fill +grestore +newpath +3.891373e+01 2.212496e+01 moveto +3.961466e+01 2.106387e+01 lineto +3.824105e+01 2.053301e+01 lineto +3.750219e+01 2.157944e+01 lineto +3.891373e+01 2.212496e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.823749e+01 2.320866e+01 moveto +3.891373e+01 2.212496e+01 lineto +3.750219e+01 2.157944e+01 lineto +3.678936e+01 2.2649e+01 lineto +3.823749e+01 2.320866e+01 lineto +closepath +gsave +7.674391e-01 7.674391e-01 9.592988e-01 setrgbcolor +fill +grestore +newpath +3.823749e+01 2.320866e+01 moveto +3.891373e+01 2.212496e+01 lineto +3.750219e+01 2.157944e+01 lineto +3.678936e+01 2.2649e+01 lineto +3.823749e+01 2.320866e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.75866e+01 2.431393e+01 moveto +3.823749e+01 2.320866e+01 lineto +3.678936e+01 2.2649e+01 lineto +3.610325e+01 2.374066e+01 lineto +3.75866e+01 2.431393e+01 lineto +closepath +gsave +7.701989e-01 7.701989e-01 9.627486e-01 setrgbcolor +fill +grestore +newpath +3.75866e+01 2.431393e+01 moveto +3.823749e+01 2.320866e+01 lineto +3.678936e+01 2.2649e+01 lineto +3.610325e+01 2.374066e+01 lineto +3.75866e+01 2.431393e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.696165e+01 2.543974e+01 moveto +3.75866e+01 2.431393e+01 lineto +3.610325e+01 2.374066e+01 lineto +3.544449e+01 2.48534e+01 lineto +3.696165e+01 2.543974e+01 lineto +closepath +gsave +7.727383e-01 7.727383e-01 9.659228e-01 setrgbcolor +fill +grestore +newpath +3.696165e+01 2.543974e+01 moveto +3.75866e+01 2.431393e+01 lineto +3.610325e+01 2.374066e+01 lineto +3.544449e+01 2.48534e+01 lineto +3.696165e+01 2.543974e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.636326e+01 2.658502e+01 moveto +3.696165e+01 2.543974e+01 lineto +3.544449e+01 2.48534e+01 lineto +3.481372e+01 2.598617e+01 lineto +3.636326e+01 2.658502e+01 lineto +closepath +gsave +7.750569e-01 7.750569e-01 9.688212e-01 setrgbcolor +fill +grestore +newpath +3.636326e+01 2.658502e+01 moveto +3.696165e+01 2.543974e+01 lineto +3.544449e+01 2.48534e+01 lineto +3.481372e+01 2.598617e+01 lineto +3.636326e+01 2.658502e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.579198e+01 2.774867e+01 moveto +3.636326e+01 2.658502e+01 lineto +3.481372e+01 2.598617e+01 lineto +3.421153e+01 2.713788e+01 lineto +3.579198e+01 2.774867e+01 lineto +closepath +gsave +7.771547e-01 7.771547e-01 9.714434e-01 setrgbcolor +fill +grestore +newpath +3.579198e+01 2.774867e+01 moveto +3.636326e+01 2.658502e+01 lineto +3.481372e+01 2.598617e+01 lineto +3.421153e+01 2.713788e+01 lineto +3.579198e+01 2.774867e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.524836e+01 2.892961e+01 moveto +3.579198e+01 2.774867e+01 lineto +3.421153e+01 2.713788e+01 lineto +3.363849e+01 2.830745e+01 lineto +3.524836e+01 2.892961e+01 lineto +closepath +gsave +7.790316e-01 7.790316e-01 9.737895e-01 setrgbcolor +fill +grestore +newpath +3.524836e+01 2.892961e+01 moveto +3.579198e+01 2.774867e+01 lineto +3.421153e+01 2.713788e+01 lineto +3.363849e+01 2.830745e+01 lineto +3.524836e+01 2.892961e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.47329e+01 3.012671e+01 moveto +3.524836e+01 2.892961e+01 lineto +3.363849e+01 2.830745e+01 lineto +3.309514e+01 2.949377e+01 lineto +3.47329e+01 3.012671e+01 lineto +closepath +gsave +7.806877e-01 7.806877e-01 9.758596e-01 setrgbcolor +fill +grestore +newpath +3.47329e+01 3.012671e+01 moveto +3.524836e+01 2.892961e+01 lineto +3.363849e+01 2.830745e+01 lineto +3.309514e+01 2.949377e+01 lineto +3.47329e+01 3.012671e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.42461e+01 3.133884e+01 moveto +3.47329e+01 3.012671e+01 lineto +3.309514e+01 2.949377e+01 lineto +3.2582e+01 3.069572e+01 lineto +3.42461e+01 3.133884e+01 lineto +closepath +gsave +7.821231e-01 7.821231e-01 9.776539e-01 setrgbcolor +fill +grestore +newpath +3.42461e+01 3.133884e+01 moveto +3.47329e+01 3.012671e+01 lineto +3.309514e+01 2.949377e+01 lineto +3.2582e+01 3.069572e+01 lineto +3.42461e+01 3.133884e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.378842e+01 3.256485e+01 moveto +3.42461e+01 3.133884e+01 lineto +3.2582e+01 3.069572e+01 lineto +3.209955e+01 3.191216e+01 lineto +3.378842e+01 3.256485e+01 lineto +closepath +gsave +7.833379e-01 7.833379e-01 9.791724e-01 setrgbcolor +fill +grestore +newpath +3.378842e+01 3.256485e+01 moveto +3.42461e+01 3.133884e+01 lineto +3.2582e+01 3.069572e+01 lineto +3.209955e+01 3.191216e+01 lineto +3.378842e+01 3.256485e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.336029e+01 3.380358e+01 moveto +3.378842e+01 3.256485e+01 lineto +3.209955e+01 3.191216e+01 lineto +3.164826e+01 3.314193e+01 lineto +3.336029e+01 3.380358e+01 lineto +closepath +gsave +7.843324e-01 7.843324e-01 9.804155e-01 setrgbcolor +fill +grestore +newpath +3.336029e+01 3.380358e+01 moveto +3.378842e+01 3.256485e+01 lineto +3.209955e+01 3.191216e+01 lineto +3.164826e+01 3.314193e+01 lineto +3.336029e+01 3.380358e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.296212e+01 3.505386e+01 moveto +3.336029e+01 3.380358e+01 lineto +3.164826e+01 3.314193e+01 lineto +3.122854e+01 3.438389e+01 lineto +3.296212e+01 3.505386e+01 lineto +closepath +gsave +7.851067e-01 7.851067e-01 9.813834e-01 setrgbcolor +fill +grestore +newpath +3.296212e+01 3.505386e+01 moveto +3.336029e+01 3.380358e+01 lineto +3.164826e+01 3.314193e+01 lineto +3.122854e+01 3.438389e+01 lineto +3.296212e+01 3.505386e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.259428e+01 3.631451e+01 moveto +3.296212e+01 3.505386e+01 lineto +3.122854e+01 3.438389e+01 lineto +3.08408e+01 3.563684e+01 lineto +3.259428e+01 3.631451e+01 lineto +closepath +gsave +7.85661e-01 7.85661e-01 9.820762e-01 setrgbcolor +fill +grestore +newpath +3.259428e+01 3.631451e+01 moveto +3.296212e+01 3.505386e+01 lineto +3.122854e+01 3.438389e+01 lineto +3.08408e+01 3.563684e+01 lineto +3.259428e+01 3.631451e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.388166e+01 4.139079e+00 moveto +6.499638e+01 4.000386e+00 lineto +6.499621e+01 4.000312e+00 lineto +6.383115e+01 4.116158e+00 lineto +6.388166e+01 4.139079e+00 lineto +closepath +gsave +6.125261e-01 6.125261e-01 7.656576e-01 setrgbcolor +fill +grestore +newpath +6.388166e+01 4.139079e+00 moveto +6.499638e+01 4.000386e+00 lineto +6.499621e+01 4.000312e+00 lineto +6.383115e+01 4.116158e+00 lineto +6.388166e+01 4.139079e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.276801e+01 4.317406e+00 moveto +6.388166e+01 4.139079e+00 lineto +6.383115e+01 4.116158e+00 lineto +6.26672e+01 4.271661e+00 lineto +6.276801e+01 4.317406e+00 lineto +closepath +gsave +6.19589e-01 6.19589e-01 7.744862e-01 setrgbcolor +fill +grestore +newpath +6.276801e+01 4.317406e+00 moveto +6.388166e+01 4.139079e+00 lineto +6.383115e+01 4.116158e+00 lineto +6.26672e+01 4.271661e+00 lineto +6.276801e+01 4.317406e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.165647e+01 4.535198e+00 moveto +6.276801e+01 4.317406e+00 lineto +6.26672e+01 4.271661e+00 lineto +6.150545e+01 4.466673e+00 lineto +6.165647e+01 4.535198e+00 lineto +closepath +gsave +6.266048e-01 6.266048e-01 7.83256e-01 setrgbcolor +fill +grestore +newpath +6.165647e+01 4.535198e+00 moveto +6.276801e+01 4.317406e+00 lineto +6.26672e+01 4.271661e+00 lineto +6.150545e+01 4.466673e+00 lineto +6.165647e+01 4.535198e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.054809e+01 4.79225e+00 moveto +6.165647e+01 4.535198e+00 lineto +6.150545e+01 4.466673e+00 lineto +6.034701e+01 4.701009e+00 lineto +6.054809e+01 4.79225e+00 lineto +closepath +gsave +6.335614e-01 6.335614e-01 7.919517e-01 setrgbcolor +fill +grestore +newpath +6.054809e+01 4.79225e+00 moveto +6.165647e+01 4.535198e+00 lineto +6.150545e+01 4.466673e+00 lineto +6.034701e+01 4.701009e+00 lineto +6.054809e+01 4.79225e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.944393e+01 5.088318e+00 moveto +6.054809e+01 4.79225e+00 lineto +6.034701e+01 4.701009e+00 lineto +5.919298e+01 4.974447e+00 lineto +5.944393e+01 5.088318e+00 lineto +closepath +gsave +6.40447e-01 6.40447e-01 8.005588e-01 setrgbcolor +fill +grestore +newpath +5.944393e+01 5.088318e+00 moveto +6.054809e+01 4.79225e+00 lineto +6.034701e+01 4.701009e+00 lineto +5.919298e+01 4.974447e+00 lineto +5.944393e+01 5.088318e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.834503e+01 5.423121e+00 moveto +5.944393e+01 5.088318e+00 lineto +5.919298e+01 4.974447e+00 lineto +5.804444e+01 5.286728e+00 lineto +5.834503e+01 5.423121e+00 lineto +closepath +gsave +6.472503e-01 6.472503e-01 8.090629e-01 setrgbcolor +fill +grestore +newpath +5.834503e+01 5.423121e+00 moveto +5.944393e+01 5.088318e+00 lineto +5.919298e+01 4.974447e+00 lineto +5.804444e+01 5.286728e+00 lineto +5.834503e+01 5.423121e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.725243e+01 5.796343e+00 moveto +5.834503e+01 5.423121e+00 lineto +5.804444e+01 5.286728e+00 lineto +5.690249e+01 5.637557e+00 lineto +5.725243e+01 5.796343e+00 lineto +closepath +gsave +6.539602e-01 6.539602e-01 8.174503e-01 setrgbcolor +fill +grestore +newpath +5.725243e+01 5.796343e+00 moveto +5.834503e+01 5.423121e+00 lineto +5.804444e+01 5.286728e+00 lineto +5.690249e+01 5.637557e+00 lineto +5.725243e+01 5.796343e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.616717e+01 6.20763e+00 moveto +5.725243e+01 5.796343e+00 lineto +5.690249e+01 5.637557e+00 lineto +5.576821e+01 6.026602e+00 lineto +5.616717e+01 6.20763e+00 lineto +closepath +gsave +6.605661e-01 6.605661e-01 8.257077e-01 setrgbcolor +fill +grestore +newpath +5.616717e+01 6.20763e+00 moveto +5.725243e+01 5.796343e+00 lineto +5.690249e+01 5.637557e+00 lineto +5.576821e+01 6.026602e+00 lineto +5.616717e+01 6.20763e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.509027e+01 6.656593e+00 moveto +5.616717e+01 6.20763e+00 lineto +5.576821e+01 6.026602e+00 lineto +5.464267e+01 6.453494e+00 lineto +5.509027e+01 6.656593e+00 lineto +closepath +gsave +6.670579e-01 6.670579e-01 8.338224e-01 setrgbcolor +fill +grestore +newpath +5.509027e+01 6.656593e+00 moveto +5.616717e+01 6.20763e+00 lineto +5.576821e+01 6.026602e+00 lineto +5.464267e+01 6.453494e+00 lineto +5.509027e+01 6.656593e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.402275e+01 7.142807e+00 moveto +5.509027e+01 6.656593e+00 lineto +5.464267e+01 6.453494e+00 lineto +5.352694e+01 6.917829e+00 lineto +5.402275e+01 7.142807e+00 lineto +closepath +gsave +6.734258e-01 6.734258e-01 8.417823e-01 setrgbcolor +fill +grestore +newpath +5.402275e+01 7.142807e+00 moveto +5.509027e+01 6.656593e+00 lineto +5.464267e+01 6.453494e+00 lineto +5.352694e+01 6.917829e+00 lineto +5.402275e+01 7.142807e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.296563e+01 7.66581e+00 moveto +5.402275e+01 7.142807e+00 lineto +5.352694e+01 6.917829e+00 lineto +5.242206e+01 7.419167e+00 lineto +5.296563e+01 7.66581e+00 lineto +closepath +gsave +6.796607e-01 6.796607e-01 8.495759e-01 setrgbcolor +fill +grestore +newpath +5.296563e+01 7.66581e+00 moveto +5.402275e+01 7.142807e+00 lineto +5.352694e+01 6.917829e+00 lineto +5.242206e+01 7.419167e+00 lineto +5.296563e+01 7.66581e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.19199e+01 8.22511e+00 moveto +5.296563e+01 7.66581e+00 lineto +5.242206e+01 7.419167e+00 lineto +5.13291e+01 7.957034e+00 lineto +5.19199e+01 8.22511e+00 lineto +closepath +gsave +6.857539e-01 6.857539e-01 8.571924e-01 setrgbcolor +fill +grestore +newpath +5.19199e+01 8.22511e+00 moveto +5.296563e+01 7.66581e+00 lineto +5.242206e+01 7.419167e+00 lineto +5.13291e+01 7.957034e+00 lineto +5.19199e+01 8.22511e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.088655e+01 8.820174e+00 moveto +5.19199e+01 8.22511e+00 lineto +5.13291e+01 7.957034e+00 lineto +5.024908e+01 8.53092e+00 lineto +5.088655e+01 8.820174e+00 lineto +closepath +gsave +6.916973e-01 6.916973e-01 8.646217e-01 setrgbcolor +fill +grestore +newpath +5.088655e+01 8.820174e+00 moveto +5.19199e+01 8.22511e+00 lineto +5.13291e+01 7.957034e+00 lineto +5.024908e+01 8.53092e+00 lineto +5.088655e+01 8.820174e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.986657e+01 9.450441e+00 moveto +5.088655e+01 8.820174e+00 lineto +5.024908e+01 8.53092e+00 lineto +4.918303e+01 9.140283e+00 lineto +4.986657e+01 9.450441e+00 lineto +closepath +gsave +6.974833e-01 6.974833e-01 8.718541e-01 setrgbcolor +fill +grestore +newpath +4.986657e+01 9.450441e+00 moveto +5.088655e+01 8.820174e+00 lineto +5.024908e+01 8.53092e+00 lineto +4.918303e+01 9.140283e+00 lineto +4.986657e+01 9.450441e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.886091e+01 1.011531e+01 moveto +4.986657e+01 9.450441e+00 lineto +4.918303e+01 9.140283e+00 lineto +4.813195e+01 9.784544e+00 lineto +4.886091e+01 1.011531e+01 lineto +closepath +gsave +7.031047e-01 7.031047e-01 8.788809e-01 setrgbcolor +fill +grestore +newpath +4.886091e+01 1.011531e+01 moveto +4.986657e+01 9.450441e+00 lineto +4.918303e+01 9.140283e+00 lineto +4.813195e+01 9.784544e+00 lineto +4.886091e+01 1.011531e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.787054e+01 1.081416e+01 moveto +4.886091e+01 1.011531e+01 lineto +4.813195e+01 9.784544e+00 lineto +4.709684e+01 1.04631e+01 lineto +4.787054e+01 1.081416e+01 lineto +closepath +gsave +7.085551e-01 7.085551e-01 8.856938e-01 setrgbcolor +fill +grestore +newpath +4.787054e+01 1.081416e+01 moveto +4.886091e+01 1.011531e+01 lineto +4.813195e+01 9.784544e+00 lineto +4.709684e+01 1.04631e+01 lineto +4.787054e+01 1.081416e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.689638e+01 1.154632e+01 moveto +4.787054e+01 1.081416e+01 lineto +4.709684e+01 1.04631e+01 lineto +4.607869e+01 1.117529e+01 lineto +4.689638e+01 1.154632e+01 lineto +closepath +gsave +7.138284e-01 7.138284e-01 8.922854e-01 setrgbcolor +fill +grestore +newpath +4.689638e+01 1.154632e+01 moveto +4.787054e+01 1.081416e+01 lineto +4.709684e+01 1.04631e+01 lineto +4.607869e+01 1.117529e+01 lineto +4.689638e+01 1.154632e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.593937e+01 1.231111e+01 moveto +4.689638e+01 1.154632e+01 lineto +4.607869e+01 1.117529e+01 lineto +4.507845e+01 1.192046e+01 lineto +4.593937e+01 1.231111e+01 lineto +closepath +gsave +7.189191e-01 7.189191e-01 8.986489e-01 setrgbcolor +fill +grestore +newpath +4.593937e+01 1.231111e+01 moveto +4.689638e+01 1.154632e+01 lineto +4.607869e+01 1.117529e+01 lineto +4.507845e+01 1.192046e+01 lineto +4.593937e+01 1.231111e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.50004e+01 1.310779e+01 moveto +4.593937e+01 1.231111e+01 lineto +4.507845e+01 1.192046e+01 lineto +4.409707e+01 1.26979e+01 lineto +4.50004e+01 1.310779e+01 lineto +closepath +gsave +7.238223e-01 7.238223e-01 9.047779e-01 setrgbcolor +fill +grestore +newpath +4.50004e+01 1.310779e+01 moveto +4.593937e+01 1.231111e+01 lineto +4.507845e+01 1.192046e+01 lineto +4.409707e+01 1.26979e+01 lineto +4.50004e+01 1.310779e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.408037e+01 1.393561e+01 moveto +4.50004e+01 1.310779e+01 lineto +4.409707e+01 1.26979e+01 lineto +4.313548e+01 1.350687e+01 lineto +4.408037e+01 1.393561e+01 lineto +closepath +gsave +7.285335e-01 7.285335e-01 9.106669e-01 setrgbcolor +fill +grestore +newpath +4.408037e+01 1.393561e+01 moveto +4.50004e+01 1.310779e+01 lineto +4.409707e+01 1.26979e+01 lineto +4.313548e+01 1.350687e+01 lineto +4.408037e+01 1.393561e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.318014e+01 1.47938e+01 moveto +4.408037e+01 1.393561e+01 lineto +4.313548e+01 1.350687e+01 lineto +4.21946e+01 1.43466e+01 lineto +4.318014e+01 1.47938e+01 lineto +closepath +gsave +7.330487e-01 7.330487e-01 9.163109e-01 setrgbcolor +fill +grestore +newpath +4.318014e+01 1.47938e+01 moveto +4.408037e+01 1.393561e+01 lineto +4.313548e+01 1.350687e+01 lineto +4.21946e+01 1.43466e+01 lineto +4.318014e+01 1.47938e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.230057e+01 1.568152e+01 moveto +4.318014e+01 1.47938e+01 lineto +4.21946e+01 1.43466e+01 lineto +4.12753e+01 1.52163e+01 lineto +4.230057e+01 1.568152e+01 lineto +closepath +gsave +7.373644e-01 7.373644e-01 9.217055e-01 setrgbcolor +fill +grestore +newpath +4.230057e+01 1.568152e+01 moveto +4.318014e+01 1.47938e+01 lineto +4.21946e+01 1.43466e+01 lineto +4.12753e+01 1.52163e+01 lineto +4.230057e+01 1.568152e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.14425e+01 1.659796e+01 moveto +4.230057e+01 1.568152e+01 lineto +4.12753e+01 1.52163e+01 lineto +4.037847e+01 1.611515e+01 lineto +4.14425e+01 1.659796e+01 lineto +closepath +gsave +7.414775e-01 7.414775e-01 9.268469e-01 setrgbcolor +fill +grestore +newpath +4.14425e+01 1.659796e+01 moveto +4.230057e+01 1.568152e+01 lineto +4.12753e+01 1.52163e+01 lineto +4.037847e+01 1.611515e+01 lineto +4.14425e+01 1.659796e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.060673e+01 1.754223e+01 moveto +4.14425e+01 1.659796e+01 lineto +4.037847e+01 1.611515e+01 lineto +3.950495e+01 1.704229e+01 lineto +4.060673e+01 1.754223e+01 lineto +closepath +gsave +7.453852e-01 7.453852e-01 9.317315e-01 setrgbcolor +fill +grestore +newpath +4.060673e+01 1.754223e+01 moveto +4.14425e+01 1.659796e+01 lineto +4.037847e+01 1.611515e+01 lineto +3.950495e+01 1.704229e+01 lineto +4.060673e+01 1.754223e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.979406e+01 1.851345e+01 moveto +4.060673e+01 1.754223e+01 lineto +3.950495e+01 1.704229e+01 lineto +3.865557e+01 1.799685e+01 lineto +3.979406e+01 1.851345e+01 lineto +closepath +gsave +7.490853e-01 7.490853e-01 9.363567e-01 setrgbcolor +fill +grestore +newpath +3.979406e+01 1.851345e+01 moveto +4.060673e+01 1.754223e+01 lineto +3.950495e+01 1.704229e+01 lineto +3.865557e+01 1.799685e+01 lineto +3.979406e+01 1.851345e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.900525e+01 1.951069e+01 moveto +3.979406e+01 1.851345e+01 lineto +3.865557e+01 1.799685e+01 lineto +3.783113e+01 1.897793e+01 lineto +3.900525e+01 1.951069e+01 lineto +closepath +gsave +7.525759e-01 7.525759e-01 9.407199e-01 setrgbcolor +fill +grestore +newpath +3.900525e+01 1.951069e+01 moveto +3.979406e+01 1.851345e+01 lineto +3.865557e+01 1.799685e+01 lineto +3.783113e+01 1.897793e+01 lineto +3.900525e+01 1.951069e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.824105e+01 2.053301e+01 moveto +3.900525e+01 1.951069e+01 lineto +3.783113e+01 1.897793e+01 lineto +3.703242e+01 1.998459e+01 lineto +3.824105e+01 2.053301e+01 lineto +closepath +gsave +7.558552e-01 7.558552e-01 9.44819e-01 setrgbcolor +fill +grestore +newpath +3.824105e+01 2.053301e+01 moveto +3.900525e+01 1.951069e+01 lineto +3.783113e+01 1.897793e+01 lineto +3.703242e+01 1.998459e+01 lineto +3.824105e+01 2.053301e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.750219e+01 2.157944e+01 moveto +3.824105e+01 2.053301e+01 lineto +3.703242e+01 1.998459e+01 lineto +3.626019e+01 2.101588e+01 lineto +3.750219e+01 2.157944e+01 lineto +closepath +gsave +7.58922e-01 7.58922e-01 9.486526e-01 setrgbcolor +fill +grestore +newpath +3.750219e+01 2.157944e+01 moveto +3.824105e+01 2.053301e+01 lineto +3.703242e+01 1.998459e+01 lineto +3.626019e+01 2.101588e+01 lineto +3.750219e+01 2.157944e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.678936e+01 2.2649e+01 moveto +3.750219e+01 2.157944e+01 lineto +3.626019e+01 2.101588e+01 lineto +3.551516e+01 2.207082e+01 lineto +3.678936e+01 2.2649e+01 lineto +closepath +gsave +7.617753e-01 7.617753e-01 9.522191e-01 setrgbcolor +fill +grestore +newpath +3.678936e+01 2.2649e+01 moveto +3.750219e+01 2.157944e+01 lineto +3.626019e+01 2.101588e+01 lineto +3.551516e+01 2.207082e+01 lineto +3.678936e+01 2.2649e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.610325e+01 2.374066e+01 moveto +3.678936e+01 2.2649e+01 lineto +3.551516e+01 2.207082e+01 lineto +3.479806e+01 2.314843e+01 lineto +3.610325e+01 2.374066e+01 lineto +closepath +gsave +7.644141e-01 7.644141e-01 9.555176e-01 setrgbcolor +fill +grestore +newpath +3.610325e+01 2.374066e+01 moveto +3.678936e+01 2.2649e+01 lineto +3.551516e+01 2.207082e+01 lineto +3.479806e+01 2.314843e+01 lineto +3.610325e+01 2.374066e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.544449e+01 2.48534e+01 moveto +3.610325e+01 2.374066e+01 lineto +3.479806e+01 2.314843e+01 lineto +3.410955e+01 2.424767e+01 lineto +3.544449e+01 2.48534e+01 lineto +closepath +gsave +7.668378e-01 7.668378e-01 9.585473e-01 setrgbcolor +fill +grestore +newpath +3.544449e+01 2.48534e+01 moveto +3.610325e+01 2.374066e+01 lineto +3.479806e+01 2.314843e+01 lineto +3.410955e+01 2.424767e+01 lineto +3.544449e+01 2.48534e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.481372e+01 2.598617e+01 moveto +3.544449e+01 2.48534e+01 lineto +3.410955e+01 2.424767e+01 lineto +3.345029e+01 2.53675e+01 lineto +3.481372e+01 2.598617e+01 lineto +closepath +gsave +7.69046e-01 7.69046e-01 9.613076e-01 setrgbcolor +fill +grestore +newpath +3.481372e+01 2.598617e+01 moveto +3.544449e+01 2.48534e+01 lineto +3.410955e+01 2.424767e+01 lineto +3.345029e+01 2.53675e+01 lineto +3.481372e+01 2.598617e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.421153e+01 2.713788e+01 moveto +3.481372e+01 2.598617e+01 lineto +3.345029e+01 2.53675e+01 lineto +3.282089e+01 2.650687e+01 lineto +3.421153e+01 2.713788e+01 lineto +closepath +gsave +7.710385e-01 7.710385e-01 9.637981e-01 setrgbcolor +fill +grestore +newpath +3.421153e+01 2.713788e+01 moveto +3.481372e+01 2.598617e+01 lineto +3.345029e+01 2.53675e+01 lineto +3.282089e+01 2.650687e+01 lineto +3.421153e+01 2.713788e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.363849e+01 2.830745e+01 moveto +3.421153e+01 2.713788e+01 lineto +3.282089e+01 2.650687e+01 lineto +3.222197e+01 2.766469e+01 lineto +3.363849e+01 2.830745e+01 lineto +closepath +gsave +7.728149e-01 7.728149e-01 9.660186e-01 setrgbcolor +fill +grestore +newpath +3.363849e+01 2.830745e+01 moveto +3.421153e+01 2.713788e+01 lineto +3.282089e+01 2.650687e+01 lineto +3.222197e+01 2.766469e+01 lineto +3.363849e+01 2.830745e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.309514e+01 2.949377e+01 moveto +3.363849e+01 2.830745e+01 lineto +3.222197e+01 2.766469e+01 lineto +3.165408e+01 2.883988e+01 lineto +3.309514e+01 2.949377e+01 lineto +closepath +gsave +7.743752e-01 7.743752e-01 9.67969e-01 setrgbcolor +fill +grestore +newpath +3.309514e+01 2.949377e+01 moveto +3.363849e+01 2.830745e+01 lineto +3.222197e+01 2.766469e+01 lineto +3.165408e+01 2.883988e+01 lineto +3.309514e+01 2.949377e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.2582e+01 3.069572e+01 moveto +3.309514e+01 2.949377e+01 lineto +3.165408e+01 2.883988e+01 lineto +3.111776e+01 3.003131e+01 lineto +3.2582e+01 3.069572e+01 lineto +closepath +gsave +7.757194e-01 7.757194e-01 9.696493e-01 setrgbcolor +fill +grestore +newpath +3.2582e+01 3.069572e+01 moveto +3.309514e+01 2.949377e+01 lineto +3.165408e+01 2.883988e+01 lineto +3.111776e+01 3.003131e+01 lineto +3.2582e+01 3.069572e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.209955e+01 3.191216e+01 moveto +3.2582e+01 3.069572e+01 lineto +3.111776e+01 3.003131e+01 lineto +3.061353e+01 3.123786e+01 lineto +3.209955e+01 3.191216e+01 lineto +closepath +gsave +7.768475e-01 7.768475e-01 9.710594e-01 setrgbcolor +fill +grestore +newpath +3.209955e+01 3.191216e+01 moveto +3.2582e+01 3.069572e+01 lineto +3.111776e+01 3.003131e+01 lineto +3.061353e+01 3.123786e+01 lineto +3.209955e+01 3.191216e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.164826e+01 3.314193e+01 moveto +3.209955e+01 3.191216e+01 lineto +3.061353e+01 3.123786e+01 lineto +3.014185e+01 3.245839e+01 lineto +3.164826e+01 3.314193e+01 lineto +closepath +gsave +7.777596e-01 7.777596e-01 9.721994e-01 setrgbcolor +fill +grestore +newpath +3.164826e+01 3.314193e+01 moveto +3.209955e+01 3.191216e+01 lineto +3.061353e+01 3.123786e+01 lineto +3.014185e+01 3.245839e+01 lineto +3.164826e+01 3.314193e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.122854e+01 3.438389e+01 moveto +3.164826e+01 3.314193e+01 lineto +3.014185e+01 3.245839e+01 lineto +2.970317e+01 3.369174e+01 lineto +3.122854e+01 3.438389e+01 lineto +closepath +gsave +7.784556e-01 7.784556e-01 9.730695e-01 setrgbcolor +fill +grestore +newpath +3.122854e+01 3.438389e+01 moveto +3.164826e+01 3.314193e+01 lineto +3.014185e+01 3.245839e+01 lineto +2.970317e+01 3.369174e+01 lineto +3.122854e+01 3.438389e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.08408e+01 3.563684e+01 moveto +3.122854e+01 3.438389e+01 lineto +2.970317e+01 3.369174e+01 lineto +2.929792e+01 3.493675e+01 lineto +3.08408e+01 3.563684e+01 lineto +closepath +gsave +7.789358e-01 7.789358e-01 9.736697e-01 setrgbcolor +fill +grestore +newpath +3.08408e+01 3.563684e+01 moveto +3.122854e+01 3.438389e+01 lineto +2.970317e+01 3.369174e+01 lineto +2.929792e+01 3.493675e+01 lineto +3.08408e+01 3.563684e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.383115e+01 4.116158e+00 moveto +6.499621e+01 4.000312e+00 lineto +6.499607e+01 4.000236e+00 lineto +6.378785e+01 4.092645e+00 lineto +6.383115e+01 4.116158e+00 lineto +closepath +gsave +6.123855e-01 6.123855e-01 7.654819e-01 setrgbcolor +fill +grestore +newpath +6.383115e+01 4.116158e+00 moveto +6.499621e+01 4.000312e+00 lineto +6.499607e+01 4.000236e+00 lineto +6.378785e+01 4.092645e+00 lineto +6.383115e+01 4.116158e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.26672e+01 4.271661e+00 moveto +6.383115e+01 4.116158e+00 lineto +6.378785e+01 4.092645e+00 lineto +6.258077e+01 4.224734e+00 lineto +6.26672e+01 4.271661e+00 lineto +closepath +gsave +6.191672e-01 6.191672e-01 7.73959e-01 setrgbcolor +fill +grestore +newpath +6.26672e+01 4.271661e+00 moveto +6.383115e+01 4.116158e+00 lineto +6.378785e+01 4.092645e+00 lineto +6.258077e+01 4.224734e+00 lineto +6.26672e+01 4.271661e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.150545e+01 4.466673e+00 moveto +6.26672e+01 4.271661e+00 lineto +6.258077e+01 4.224734e+00 lineto +6.137598e+01 4.396375e+00 lineto +6.150545e+01 4.466673e+00 lineto +closepath +gsave +6.258999e-01 6.258999e-01 7.823749e-01 setrgbcolor +fill +grestore +newpath +6.150545e+01 4.466673e+00 moveto +6.26672e+01 4.271661e+00 lineto +6.258077e+01 4.224734e+00 lineto +6.137598e+01 4.396375e+00 lineto +6.150545e+01 4.466673e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.034701e+01 4.701009e+00 moveto +6.150545e+01 4.466673e+00 lineto +6.137598e+01 4.396375e+00 lineto +6.017462e+01 4.607407e+00 lineto +6.034701e+01 4.701009e+00 lineto +closepath +gsave +6.325725e-01 6.325725e-01 7.907156e-01 setrgbcolor +fill +grestore +newpath +6.034701e+01 4.701009e+00 moveto +6.150545e+01 4.466673e+00 lineto +6.137598e+01 4.396375e+00 lineto +6.017462e+01 4.607407e+00 lineto +6.034701e+01 4.701009e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.919298e+01 4.974447e+00 moveto +6.034701e+01 4.701009e+00 lineto +6.017462e+01 4.607407e+00 lineto +5.897783e+01 4.85763e+00 lineto +5.919298e+01 4.974447e+00 lineto +closepath +gsave +6.391739e-01 6.391739e-01 7.989674e-01 setrgbcolor +fill +grestore +newpath +5.919298e+01 4.974447e+00 moveto +6.034701e+01 4.701009e+00 lineto +6.017462e+01 4.607407e+00 lineto +5.897783e+01 4.85763e+00 lineto +5.919298e+01 4.974447e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.804444e+01 5.286728e+00 moveto +5.919298e+01 4.974447e+00 lineto +5.897783e+01 4.85763e+00 lineto +5.778674e+01 5.146808e+00 lineto +5.804444e+01 5.286728e+00 lineto +closepath +gsave +6.456936e-01 6.456936e-01 8.07117e-01 setrgbcolor +fill +grestore +newpath +5.804444e+01 5.286728e+00 moveto +5.919298e+01 4.974447e+00 lineto +5.897783e+01 4.85763e+00 lineto +5.778674e+01 5.146808e+00 lineto +5.804444e+01 5.286728e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.690249e+01 5.637557e+00 moveto +5.804444e+01 5.286728e+00 lineto +5.778674e+01 5.146808e+00 lineto +5.660248e+01 5.474665e+00 lineto +5.690249e+01 5.637557e+00 lineto +closepath +gsave +6.521211e-01 6.521211e-01 8.151514e-01 setrgbcolor +fill +grestore +newpath +5.690249e+01 5.637557e+00 moveto +5.804444e+01 5.286728e+00 lineto +5.778674e+01 5.146808e+00 lineto +5.660248e+01 5.474665e+00 lineto +5.690249e+01 5.637557e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.576821e+01 6.026602e+00 moveto +5.690249e+01 5.637557e+00 lineto +5.660248e+01 5.474665e+00 lineto +5.542617e+01 5.840892e+00 lineto +5.576821e+01 6.026602e+00 lineto +closepath +gsave +6.584466e-01 6.584466e-01 8.230583e-01 setrgbcolor +fill +grestore +newpath +5.576821e+01 6.026602e+00 moveto +5.690249e+01 5.637557e+00 lineto +5.660248e+01 5.474665e+00 lineto +5.542617e+01 5.840892e+00 lineto +5.576821e+01 6.026602e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.464267e+01 6.453494e+00 moveto +5.576821e+01 6.026602e+00 lineto +5.542617e+01 5.840892e+00 lineto +5.425893e+01 6.245142e+00 lineto +5.464267e+01 6.453494e+00 lineto +closepath +gsave +6.646607e-01 6.646607e-01 8.308258e-01 setrgbcolor +fill +grestore +newpath +5.464267e+01 6.453494e+00 moveto +5.576821e+01 6.026602e+00 lineto +5.542617e+01 5.840892e+00 lineto +5.425893e+01 6.245142e+00 lineto +5.464267e+01 6.453494e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.352694e+01 6.917829e+00 moveto +5.464267e+01 6.453494e+00 lineto +5.425893e+01 6.245142e+00 lineto +5.310186e+01 6.687032e+00 lineto +5.352694e+01 6.917829e+00 lineto +closepath +gsave +6.707541e-01 6.707541e-01 8.384427e-01 setrgbcolor +fill +grestore +newpath +5.352694e+01 6.917829e+00 moveto +5.464267e+01 6.453494e+00 lineto +5.425893e+01 6.245142e+00 lineto +5.310186e+01 6.687032e+00 lineto +5.352694e+01 6.917829e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.242206e+01 7.419167e+00 moveto +5.352694e+01 6.917829e+00 lineto +5.310186e+01 6.687032e+00 lineto +5.195605e+01 7.166145e+00 lineto +5.242206e+01 7.419167e+00 lineto +closepath +gsave +6.767184e-01 6.767184e-01 8.458981e-01 setrgbcolor +fill +grestore +newpath +5.242206e+01 7.419167e+00 moveto +5.352694e+01 6.917829e+00 lineto +5.310186e+01 6.687032e+00 lineto +5.195605e+01 7.166145e+00 lineto +5.242206e+01 7.419167e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.13291e+01 7.957034e+00 moveto +5.242206e+01 7.419167e+00 lineto +5.195605e+01 7.166145e+00 lineto +5.082259e+01 7.682025e+00 lineto +5.13291e+01 7.957034e+00 lineto +closepath +gsave +6.825455e-01 6.825455e-01 8.531818e-01 setrgbcolor +fill +grestore +newpath +5.13291e+01 7.957034e+00 moveto +5.242206e+01 7.419167e+00 lineto +5.195605e+01 7.166145e+00 lineto +5.082259e+01 7.682025e+00 lineto +5.13291e+01 7.957034e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.024908e+01 8.53092e+00 moveto +5.13291e+01 7.957034e+00 lineto +5.082259e+01 7.682025e+00 lineto +4.970256e+01 8.234185e+00 lineto +5.024908e+01 8.53092e+00 lineto +closepath +gsave +6.882275e-01 6.882275e-01 8.602844e-01 setrgbcolor +fill +grestore +newpath +5.024908e+01 8.53092e+00 moveto +5.13291e+01 7.957034e+00 lineto +5.082259e+01 7.682025e+00 lineto +4.970256e+01 8.234185e+00 lineto +5.024908e+01 8.53092e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.918303e+01 9.140283e+00 moveto +5.024908e+01 8.53092e+00 lineto +4.970256e+01 8.234185e+00 lineto +4.859701e+01 8.822103e+00 lineto +4.918303e+01 9.140283e+00 lineto +closepath +gsave +6.937574e-01 6.937574e-01 8.671968e-01 setrgbcolor +fill +grestore +newpath +4.918303e+01 9.140283e+00 moveto +5.024908e+01 8.53092e+00 lineto +4.970256e+01 8.234185e+00 lineto +4.859701e+01 8.822103e+00 lineto +4.918303e+01 9.140283e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.813195e+01 9.784544e+00 moveto +4.918303e+01 9.140283e+00 lineto +4.859701e+01 8.822103e+00 lineto +4.750699e+01 9.445221e+00 lineto +4.813195e+01 9.784544e+00 lineto +closepath +gsave +6.991285e-01 6.991285e-01 8.739107e-01 setrgbcolor +fill +grestore +newpath +4.813195e+01 9.784544e+00 moveto +4.918303e+01 9.140283e+00 lineto +4.859701e+01 8.822103e+00 lineto +4.750699e+01 9.445221e+00 lineto +4.813195e+01 9.784544e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.709684e+01 1.04631e+01 moveto +4.813195e+01 9.784544e+00 lineto +4.750699e+01 9.445221e+00 lineto +4.643353e+01 1.010295e+01 lineto +4.709684e+01 1.04631e+01 lineto +closepath +gsave +7.043346e-01 7.043346e-01 8.804183e-01 setrgbcolor +fill +grestore +newpath +4.709684e+01 1.04631e+01 moveto +4.813195e+01 9.784544e+00 lineto +4.750699e+01 9.445221e+00 lineto +4.643353e+01 1.010295e+01 lineto +4.709684e+01 1.04631e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.607869e+01 1.117529e+01 moveto +4.709684e+01 1.04631e+01 lineto +4.643353e+01 1.010295e+01 lineto +4.537765e+01 1.079466e+01 lineto +4.607869e+01 1.117529e+01 lineto +closepath +gsave +7.0937e-01 7.0937e-01 8.867125e-01 setrgbcolor +fill +grestore +newpath +4.607869e+01 1.117529e+01 moveto +4.709684e+01 1.04631e+01 lineto +4.643353e+01 1.010295e+01 lineto +4.537765e+01 1.079466e+01 lineto +4.607869e+01 1.117529e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.507845e+01 1.192046e+01 moveto +4.607869e+01 1.117529e+01 lineto +4.537765e+01 1.079466e+01 lineto +4.434035e+01 1.151971e+01 lineto +4.507845e+01 1.192046e+01 lineto +closepath +gsave +7.142294e-01 7.142294e-01 8.927867e-01 setrgbcolor +fill +grestore +newpath +4.507845e+01 1.192046e+01 moveto +4.607869e+01 1.117529e+01 lineto +4.537765e+01 1.079466e+01 lineto +4.434035e+01 1.151971e+01 lineto +4.507845e+01 1.192046e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.409707e+01 1.26979e+01 moveto +4.507845e+01 1.192046e+01 lineto +4.434035e+01 1.151971e+01 lineto +4.332261e+01 1.227741e+01 lineto +4.409707e+01 1.26979e+01 lineto +closepath +gsave +7.18908e-01 7.18908e-01 8.98635e-01 setrgbcolor +fill +grestore +newpath +4.409707e+01 1.26979e+01 moveto +4.507845e+01 1.192046e+01 lineto +4.434035e+01 1.151971e+01 lineto +4.332261e+01 1.227741e+01 lineto +4.409707e+01 1.26979e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.313548e+01 1.350687e+01 moveto +4.409707e+01 1.26979e+01 lineto +4.332261e+01 1.227741e+01 lineto +4.23254e+01 1.306703e+01 lineto +4.313548e+01 1.350687e+01 lineto +closepath +gsave +7.234016e-01 7.234016e-01 9.04252e-01 setrgbcolor +fill +grestore +newpath +4.313548e+01 1.350687e+01 moveto +4.409707e+01 1.26979e+01 lineto +4.332261e+01 1.227741e+01 lineto +4.23254e+01 1.306703e+01 lineto +4.313548e+01 1.350687e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.21946e+01 1.43466e+01 moveto +4.313548e+01 1.350687e+01 lineto +4.23254e+01 1.306703e+01 lineto +4.134965e+01 1.388784e+01 lineto +4.21946e+01 1.43466e+01 lineto +closepath +gsave +7.277063e-01 7.277063e-01 9.096328e-01 setrgbcolor +fill +grestore +newpath +4.21946e+01 1.43466e+01 moveto +4.313548e+01 1.350687e+01 lineto +4.23254e+01 1.306703e+01 lineto +4.134965e+01 1.388784e+01 lineto +4.21946e+01 1.43466e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.12753e+01 1.52163e+01 moveto +4.21946e+01 1.43466e+01 lineto +4.134965e+01 1.388784e+01 lineto +4.03963e+01 1.473905e+01 lineto +4.12753e+01 1.52163e+01 lineto +closepath +gsave +7.318185e-01 7.318185e-01 9.147731e-01 setrgbcolor +fill +grestore +newpath +4.12753e+01 1.52163e+01 moveto +4.21946e+01 1.43466e+01 lineto +4.134965e+01 1.388784e+01 lineto +4.03963e+01 1.473905e+01 lineto +4.12753e+01 1.52163e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.037847e+01 1.611515e+01 moveto +4.12753e+01 1.52163e+01 lineto +4.03963e+01 1.473905e+01 lineto +3.946624e+01 1.561985e+01 lineto +4.037847e+01 1.611515e+01 lineto +closepath +gsave +7.357352e-01 7.357352e-01 9.196691e-01 setrgbcolor +fill +grestore +newpath +4.037847e+01 1.611515e+01 moveto +4.12753e+01 1.52163e+01 lineto +4.03963e+01 1.473905e+01 lineto +3.946624e+01 1.561985e+01 lineto +4.037847e+01 1.611515e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.950495e+01 1.704229e+01 moveto +4.037847e+01 1.611515e+01 lineto +3.946624e+01 1.561985e+01 lineto +3.856036e+01 1.652942e+01 lineto +3.950495e+01 1.704229e+01 lineto +closepath +gsave +7.394538e-01 7.394538e-01 9.243173e-01 setrgbcolor +fill +grestore +newpath +3.950495e+01 1.704229e+01 moveto +4.037847e+01 1.611515e+01 lineto +3.946624e+01 1.561985e+01 lineto +3.856036e+01 1.652942e+01 lineto +3.950495e+01 1.704229e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.865557e+01 1.799685e+01 moveto +3.950495e+01 1.704229e+01 lineto +3.856036e+01 1.652942e+01 lineto +3.767951e+01 1.74669e+01 lineto +3.865557e+01 1.799685e+01 lineto +closepath +gsave +7.429719e-01 7.429719e-01 9.287149e-01 setrgbcolor +fill +grestore +newpath +3.865557e+01 1.799685e+01 moveto +3.950495e+01 1.704229e+01 lineto +3.856036e+01 1.652942e+01 lineto +3.767951e+01 1.74669e+01 lineto +3.865557e+01 1.799685e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.783113e+01 1.897793e+01 moveto +3.865557e+01 1.799685e+01 lineto +3.767951e+01 1.74669e+01 lineto +3.682452e+01 1.843139e+01 lineto +3.783113e+01 1.897793e+01 lineto +closepath +gsave +7.462874e-01 7.462874e-01 9.328593e-01 setrgbcolor +fill +grestore +newpath +3.783113e+01 1.897793e+01 moveto +3.865557e+01 1.799685e+01 lineto +3.767951e+01 1.74669e+01 lineto +3.682452e+01 1.843139e+01 lineto +3.783113e+01 1.897793e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.703242e+01 1.998459e+01 moveto +3.783113e+01 1.897793e+01 lineto +3.682452e+01 1.843139e+01 lineto +3.599622e+01 1.942198e+01 lineto +3.703242e+01 1.998459e+01 lineto +closepath +gsave +7.493987e-01 7.493987e-01 9.367484e-01 setrgbcolor +fill +grestore +newpath +3.703242e+01 1.998459e+01 moveto +3.783113e+01 1.897793e+01 lineto +3.682452e+01 1.843139e+01 lineto +3.599622e+01 1.942198e+01 lineto +3.703242e+01 1.998459e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.626019e+01 2.101588e+01 moveto +3.703242e+01 1.998459e+01 lineto +3.599622e+01 1.942198e+01 lineto +3.519537e+01 2.043774e+01 lineto +3.626019e+01 2.101588e+01 lineto +closepath +gsave +7.523043e-01 7.523043e-01 9.403804e-01 setrgbcolor +fill +grestore +newpath +3.626019e+01 2.101588e+01 moveto +3.703242e+01 1.998459e+01 lineto +3.599622e+01 1.942198e+01 lineto +3.519537e+01 2.043774e+01 lineto +3.626019e+01 2.101588e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.551516e+01 2.207082e+01 moveto +3.626019e+01 2.101588e+01 lineto +3.519537e+01 2.043774e+01 lineto +3.442275e+01 2.14777e+01 lineto +3.551516e+01 2.207082e+01 lineto +closepath +gsave +7.550031e-01 7.550031e-01 9.437538e-01 setrgbcolor +fill +grestore +newpath +3.551516e+01 2.207082e+01 moveto +3.626019e+01 2.101588e+01 lineto +3.519537e+01 2.043774e+01 lineto +3.442275e+01 2.14777e+01 lineto +3.551516e+01 2.207082e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.479806e+01 2.314843e+01 moveto +3.551516e+01 2.207082e+01 lineto +3.442275e+01 2.14777e+01 lineto +3.367907e+01 2.254087e+01 lineto +3.479806e+01 2.314843e+01 lineto +closepath +gsave +7.574939e-01 7.574939e-01 9.468674e-01 setrgbcolor +fill +grestore +newpath +3.479806e+01 2.314843e+01 moveto +3.551516e+01 2.207082e+01 lineto +3.442275e+01 2.14777e+01 lineto +3.367907e+01 2.254087e+01 lineto +3.479806e+01 2.314843e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.410955e+01 2.424767e+01 moveto +3.479806e+01 2.314843e+01 lineto +3.367907e+01 2.254087e+01 lineto +3.296505e+01 2.362626e+01 lineto +3.410955e+01 2.424767e+01 lineto +closepath +gsave +7.597761e-01 7.597761e-01 9.497201e-01 setrgbcolor +fill +grestore +newpath +3.410955e+01 2.424767e+01 moveto +3.479806e+01 2.314843e+01 lineto +3.367907e+01 2.254087e+01 lineto +3.296505e+01 2.362626e+01 lineto +3.410955e+01 2.424767e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.345029e+01 2.53675e+01 moveto +3.410955e+01 2.424767e+01 lineto +3.296505e+01 2.362626e+01 lineto +3.228137e+01 2.473283e+01 lineto +3.345029e+01 2.53675e+01 lineto +closepath +gsave +7.618491e-01 7.618491e-01 9.523113e-01 setrgbcolor +fill +grestore +newpath +3.345029e+01 2.53675e+01 moveto +3.410955e+01 2.424767e+01 lineto +3.296505e+01 2.362626e+01 lineto +3.228137e+01 2.473283e+01 lineto +3.345029e+01 2.53675e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.282089e+01 2.650687e+01 moveto +3.345029e+01 2.53675e+01 lineto +3.228137e+01 2.473283e+01 lineto +3.162866e+01 2.585954e+01 lineto +3.282089e+01 2.650687e+01 lineto +closepath +gsave +7.637123e-01 7.637123e-01 9.546403e-01 setrgbcolor +fill +grestore +newpath +3.282089e+01 2.650687e+01 moveto +3.345029e+01 2.53675e+01 lineto +3.228137e+01 2.473283e+01 lineto +3.162866e+01 2.585954e+01 lineto +3.282089e+01 2.650687e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.222197e+01 2.766469e+01 moveto +3.282089e+01 2.650687e+01 lineto +3.162866e+01 2.585954e+01 lineto +3.100754e+01 2.700532e+01 lineto +3.222197e+01 2.766469e+01 lineto +closepath +gsave +7.653654e-01 7.653654e-01 9.567068e-01 setrgbcolor +fill +grestore +newpath +3.222197e+01 2.766469e+01 moveto +3.282089e+01 2.650687e+01 lineto +3.162866e+01 2.585954e+01 lineto +3.100754e+01 2.700532e+01 lineto +3.222197e+01 2.766469e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.165408e+01 2.883988e+01 moveto +3.222197e+01 2.766469e+01 lineto +3.100754e+01 2.700532e+01 lineto +3.041861e+01 2.816908e+01 lineto +3.165408e+01 2.883988e+01 lineto +closepath +gsave +7.668082e-01 7.668082e-01 9.585103e-01 setrgbcolor +fill +grestore +newpath +3.165408e+01 2.883988e+01 moveto +3.222197e+01 2.766469e+01 lineto +3.100754e+01 2.700532e+01 lineto +3.041861e+01 2.816908e+01 lineto +3.165408e+01 2.883988e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.111776e+01 3.003131e+01 moveto +3.165408e+01 2.883988e+01 lineto +3.041861e+01 2.816908e+01 lineto +2.986242e+01 2.934973e+01 lineto +3.111776e+01 3.003131e+01 lineto +closepath +gsave +7.680405e-01 7.680405e-01 9.600507e-01 setrgbcolor +fill +grestore +newpath +3.111776e+01 3.003131e+01 moveto +3.165408e+01 2.883988e+01 lineto +3.041861e+01 2.816908e+01 lineto +2.986242e+01 2.934973e+01 lineto +3.111776e+01 3.003131e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.061353e+01 3.123786e+01 moveto +3.111776e+01 3.003131e+01 lineto +2.986242e+01 2.934973e+01 lineto +2.93395e+01 3.054613e+01 lineto +3.061353e+01 3.123786e+01 lineto +closepath +gsave +7.690622e-01 7.690622e-01 9.613278e-01 setrgbcolor +fill +grestore +newpath +3.061353e+01 3.123786e+01 moveto +3.111776e+01 3.003131e+01 lineto +2.986242e+01 2.934973e+01 lineto +2.93395e+01 3.054613e+01 lineto +3.061353e+01 3.123786e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.014185e+01 3.245839e+01 moveto +3.061353e+01 3.123786e+01 lineto +2.93395e+01 3.054613e+01 lineto +2.885035e+01 3.175717e+01 lineto +3.014185e+01 3.245839e+01 lineto +closepath +gsave +7.698732e-01 7.698732e-01 9.623416e-01 setrgbcolor +fill +grestore +newpath +3.014185e+01 3.245839e+01 moveto +3.061353e+01 3.123786e+01 lineto +2.93395e+01 3.054613e+01 lineto +2.885035e+01 3.175717e+01 lineto +3.014185e+01 3.245839e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.970317e+01 3.369174e+01 moveto +3.014185e+01 3.245839e+01 lineto +2.885035e+01 3.175717e+01 lineto +2.839542e+01 3.29817e+01 lineto +2.970317e+01 3.369174e+01 lineto +closepath +gsave +7.704736e-01 7.704736e-01 9.630919e-01 setrgbcolor +fill +grestore +newpath +2.970317e+01 3.369174e+01 moveto +3.014185e+01 3.245839e+01 lineto +2.885035e+01 3.175717e+01 lineto +2.839542e+01 3.29817e+01 lineto +2.970317e+01 3.369174e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.929792e+01 3.493675e+01 moveto +2.970317e+01 3.369174e+01 lineto +2.839542e+01 3.29817e+01 lineto +2.797515e+01 3.421855e+01 lineto +2.929792e+01 3.493675e+01 lineto +closepath +gsave +7.708632e-01 7.708632e-01 9.635789e-01 setrgbcolor +fill +grestore +newpath +2.929792e+01 3.493675e+01 moveto +2.970317e+01 3.369174e+01 lineto +2.839542e+01 3.29817e+01 lineto +2.797515e+01 3.421855e+01 lineto +2.929792e+01 3.493675e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.378785e+01 4.092645e+00 moveto +6.499607e+01 4.000236e+00 lineto +6.499596e+01 4.000158e+00 lineto +6.375201e+01 4.068685e+00 lineto +6.378785e+01 4.092645e+00 lineto +closepath +gsave +6.122237e-01 6.122237e-01 7.652796e-01 setrgbcolor +fill +grestore +newpath +6.378785e+01 4.092645e+00 moveto +6.499607e+01 4.000236e+00 lineto +6.499596e+01 4.000158e+00 lineto +6.375201e+01 4.068685e+00 lineto +6.378785e+01 4.092645e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.258077e+01 4.224734e+00 moveto +6.378785e+01 4.092645e+00 lineto +6.375201e+01 4.068685e+00 lineto +6.250925e+01 4.176912e+00 lineto +6.258077e+01 4.224734e+00 lineto +closepath +gsave +6.186818e-01 6.186818e-01 7.733523e-01 setrgbcolor +fill +grestore +newpath +6.258077e+01 4.224734e+00 moveto +6.378785e+01 4.092645e+00 lineto +6.375201e+01 4.068685e+00 lineto +6.250925e+01 4.176912e+00 lineto +6.258077e+01 4.224734e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.137598e+01 4.396375e+00 moveto +6.258077e+01 4.224734e+00 lineto +6.250925e+01 4.176912e+00 lineto +6.126885e+01 4.324739e+00 lineto +6.137598e+01 4.396375e+00 lineto +closepath +gsave +6.250891e-01 6.250891e-01 7.813613e-01 setrgbcolor +fill +grestore +newpath +6.137598e+01 4.396375e+00 moveto +6.258077e+01 4.224734e+00 lineto +6.250925e+01 4.176912e+00 lineto +6.126885e+01 4.324739e+00 lineto +6.137598e+01 4.396375e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.017462e+01 4.607407e+00 moveto +6.137598e+01 4.396375e+00 lineto +6.126885e+01 4.324739e+00 lineto +6.003197e+01 4.512024e+00 lineto +6.017462e+01 4.607407e+00 lineto +closepath +gsave +6.31435e-01 6.31435e-01 7.892937e-01 setrgbcolor +fill +grestore +newpath +6.017462e+01 4.607407e+00 moveto +6.137598e+01 4.396375e+00 lineto +6.126885e+01 4.324739e+00 lineto +6.003197e+01 4.512024e+00 lineto +6.017462e+01 4.607407e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.897783e+01 4.85763e+00 moveto +6.017462e+01 4.607407e+00 lineto +6.003197e+01 4.512024e+00 lineto +5.879981e+01 4.73859e+00 lineto +5.897783e+01 4.85763e+00 lineto +closepath +gsave +6.377095e-01 6.377095e-01 7.971369e-01 setrgbcolor +fill +grestore +newpath +5.897783e+01 4.85763e+00 moveto +6.017462e+01 4.607407e+00 lineto +6.003197e+01 4.512024e+00 lineto +5.879981e+01 4.73859e+00 lineto +5.897783e+01 4.85763e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.778674e+01 5.146808e+00 moveto +5.897783e+01 4.85763e+00 lineto +5.879981e+01 4.73859e+00 lineto +5.757351e+01 5.004222e+00 lineto +5.778674e+01 5.146808e+00 lineto +closepath +gsave +6.439028e-01 6.439028e-01 8.048785e-01 setrgbcolor +fill +grestore +newpath +5.778674e+01 5.146808e+00 moveto +5.897783e+01 4.85763e+00 lineto +5.879981e+01 4.73859e+00 lineto +5.757351e+01 5.004222e+00 lineto +5.778674e+01 5.146808e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.660248e+01 5.474665e+00 moveto +5.778674e+01 5.146808e+00 lineto +5.757351e+01 5.004222e+00 lineto +5.635424e+01 5.30867e+00 lineto +5.660248e+01 5.474665e+00 lineto +closepath +gsave +6.500054e-01 6.500054e-01 8.125067e-01 setrgbcolor +fill +grestore +newpath +5.660248e+01 5.474665e+00 moveto +5.778674e+01 5.146808e+00 lineto +5.757351e+01 5.004222e+00 lineto +5.635424e+01 5.30867e+00 lineto +5.660248e+01 5.474665e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.542617e+01 5.840892e+00 moveto +5.660248e+01 5.474665e+00 lineto +5.635424e+01 5.30867e+00 lineto +5.514316e+01 5.651645e+00 lineto +5.542617e+01 5.840892e+00 lineto +closepath +gsave +6.560081e-01 6.560081e-01 8.200101e-01 setrgbcolor +fill +grestore +newpath +5.542617e+01 5.840892e+00 moveto +5.660248e+01 5.474665e+00 lineto +5.635424e+01 5.30867e+00 lineto +5.514316e+01 5.651645e+00 lineto +5.542617e+01 5.840892e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.425893e+01 6.245142e+00 moveto +5.542617e+01 5.840892e+00 lineto +5.514316e+01 5.651645e+00 lineto +5.394141e+01 6.032822e+00 lineto +5.425893e+01 6.245142e+00 lineto +closepath +gsave +6.619022e-01 6.619022e-01 8.273777e-01 setrgbcolor +fill +grestore +newpath +5.425893e+01 6.245142e+00 moveto +5.542617e+01 5.840892e+00 lineto +5.514316e+01 5.651645e+00 lineto +5.394141e+01 6.032822e+00 lineto +5.425893e+01 6.245142e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.310186e+01 6.687032e+00 moveto +5.425893e+01 6.245142e+00 lineto +5.394141e+01 6.032822e+00 lineto +5.275014e+01 6.45184e+00 lineto +5.310186e+01 6.687032e+00 lineto +closepath +gsave +6.676792e-01 6.676792e-01 8.34599e-01 setrgbcolor +fill +grestore +newpath +5.310186e+01 6.687032e+00 moveto +5.425893e+01 6.245142e+00 lineto +5.394141e+01 6.032822e+00 lineto +5.275014e+01 6.45184e+00 lineto +5.310186e+01 6.687032e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.195605e+01 7.166145e+00 moveto +5.310186e+01 6.687032e+00 lineto +5.275014e+01 6.45184e+00 lineto +5.157046e+01 6.908303e+00 lineto +5.195605e+01 7.166145e+00 lineto +closepath +gsave +6.733313e-01 6.733313e-01 8.416641e-01 setrgbcolor +fill +grestore +newpath +5.195605e+01 7.166145e+00 moveto +5.310186e+01 6.687032e+00 lineto +5.275014e+01 6.45184e+00 lineto +5.157046e+01 6.908303e+00 lineto +5.195605e+01 7.166145e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.082259e+01 7.682025e+00 moveto +5.195605e+01 7.166145e+00 lineto +5.157046e+01 6.908303e+00 lineto +5.040349e+01 7.401779e+00 lineto +5.082259e+01 7.682025e+00 lineto +closepath +gsave +6.788509e-01 6.788509e-01 8.485636e-01 setrgbcolor +fill +grestore +newpath +5.082259e+01 7.682025e+00 moveto +5.195605e+01 7.166145e+00 lineto +5.157046e+01 6.908303e+00 lineto +5.040349e+01 7.401779e+00 lineto +5.082259e+01 7.682025e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.970256e+01 8.234185e+00 moveto +5.082259e+01 7.682025e+00 lineto +5.040349e+01 7.401779e+00 lineto +4.925035e+01 7.931799e+00 lineto +4.970256e+01 8.234185e+00 lineto +closepath +gsave +6.842308e-01 6.842308e-01 8.552885e-01 setrgbcolor +fill +grestore +newpath +4.970256e+01 8.234185e+00 moveto +5.082259e+01 7.682025e+00 lineto +5.040349e+01 7.401779e+00 lineto +4.925035e+01 7.931799e+00 lineto +4.970256e+01 8.234185e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.859701e+01 8.822103e+00 moveto +4.970256e+01 8.234185e+00 lineto +4.925035e+01 7.931799e+00 lineto +4.811212e+01 8.497863e+00 lineto +4.859701e+01 8.822103e+00 lineto +closepath +gsave +6.894644e-01 6.894644e-01 8.618305e-01 setrgbcolor +fill +grestore +newpath +4.859701e+01 8.822103e+00 moveto +4.970256e+01 8.234185e+00 lineto +4.925035e+01 7.931799e+00 lineto +4.811212e+01 8.497863e+00 lineto +4.859701e+01 8.822103e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.750699e+01 9.445221e+00 moveto +4.859701e+01 8.822103e+00 lineto +4.811212e+01 8.497863e+00 lineto +4.698988e+01 9.099434e+00 lineto +4.750699e+01 9.445221e+00 lineto +closepath +gsave +6.945454e-01 6.945454e-01 8.681817e-01 setrgbcolor +fill +grestore +newpath +4.750699e+01 9.445221e+00 moveto +4.859701e+01 8.822103e+00 lineto +4.811212e+01 8.497863e+00 lineto +4.698988e+01 9.099434e+00 lineto +4.750699e+01 9.445221e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.643353e+01 1.010295e+01 moveto +4.750699e+01 9.445221e+00 lineto +4.698988e+01 9.099434e+00 lineto +4.588469e+01 9.735943e+00 lineto +4.643353e+01 1.010295e+01 lineto +closepath +gsave +6.99468e-01 6.99468e-01 8.74335e-01 setrgbcolor +fill +grestore +newpath +4.643353e+01 1.010295e+01 moveto +4.750699e+01 9.445221e+00 lineto +4.698988e+01 9.099434e+00 lineto +4.588469e+01 9.735943e+00 lineto +4.643353e+01 1.010295e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.537765e+01 1.079466e+01 moveto +4.643353e+01 1.010295e+01 lineto +4.588469e+01 9.735943e+00 lineto +4.47976e+01 1.040679e+01 lineto +4.537765e+01 1.079466e+01 lineto +closepath +gsave +7.042268e-01 7.042268e-01 8.802835e-01 setrgbcolor +fill +grestore +newpath +4.537765e+01 1.079466e+01 moveto +4.643353e+01 1.010295e+01 lineto +4.588469e+01 9.735943e+00 lineto +4.47976e+01 1.040679e+01 lineto +4.537765e+01 1.079466e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.434035e+01 1.151971e+01 moveto +4.537765e+01 1.079466e+01 lineto +4.47976e+01 1.040679e+01 lineto +4.372963e+01 1.111133e+01 lineto +4.434035e+01 1.151971e+01 lineto +closepath +gsave +7.088169e-01 7.088169e-01 8.860211e-01 setrgbcolor +fill +grestore +newpath +4.434035e+01 1.151971e+01 moveto +4.537765e+01 1.079466e+01 lineto +4.47976e+01 1.040679e+01 lineto +4.372963e+01 1.111133e+01 lineto +4.434035e+01 1.151971e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.332261e+01 1.227741e+01 moveto +4.434035e+01 1.151971e+01 lineto +4.372963e+01 1.111133e+01 lineto +4.268181e+01 1.184891e+01 lineto +4.332261e+01 1.227741e+01 lineto +closepath +gsave +7.132337e-01 7.132337e-01 8.915422e-01 setrgbcolor +fill +grestore +newpath +4.332261e+01 1.227741e+01 moveto +4.434035e+01 1.151971e+01 lineto +4.372963e+01 1.111133e+01 lineto +4.268181e+01 1.184891e+01 lineto +4.332261e+01 1.227741e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.23254e+01 1.306703e+01 moveto +4.332261e+01 1.227741e+01 lineto +4.268181e+01 1.184891e+01 lineto +4.165511e+01 1.261882e+01 lineto +4.23254e+01 1.306703e+01 lineto +closepath +gsave +7.174732e-01 7.174732e-01 8.968415e-01 setrgbcolor +fill +grestore +newpath +4.23254e+01 1.306703e+01 moveto +4.332261e+01 1.227741e+01 lineto +4.268181e+01 1.184891e+01 lineto +4.165511e+01 1.261882e+01 lineto +4.23254e+01 1.306703e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.134965e+01 1.388784e+01 moveto +4.23254e+01 1.306703e+01 lineto +4.165511e+01 1.261882e+01 lineto +4.065052e+01 1.342034e+01 lineto +4.134965e+01 1.388784e+01 lineto +closepath +gsave +7.215315e-01 7.215315e-01 9.019144e-01 setrgbcolor +fill +grestore +newpath +4.134965e+01 1.388784e+01 moveto +4.23254e+01 1.306703e+01 lineto +4.165511e+01 1.261882e+01 lineto +4.065052e+01 1.342034e+01 lineto +4.134965e+01 1.388784e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.03963e+01 1.473905e+01 moveto +4.134965e+01 1.388784e+01 lineto +4.065052e+01 1.342034e+01 lineto +3.966899e+01 1.42527e+01 lineto +4.03963e+01 1.473905e+01 lineto +closepath +gsave +7.254053e-01 7.254053e-01 9.067566e-01 setrgbcolor +fill +grestore +newpath +4.03963e+01 1.473905e+01 moveto +4.134965e+01 1.388784e+01 lineto +4.065052e+01 1.342034e+01 lineto +3.966899e+01 1.42527e+01 lineto +4.03963e+01 1.473905e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.946624e+01 1.561985e+01 moveto +4.03963e+01 1.473905e+01 lineto +3.966899e+01 1.42527e+01 lineto +3.871143e+01 1.511512e+01 lineto +3.946624e+01 1.561985e+01 lineto +closepath +gsave +7.290916e-01 7.290916e-01 9.113645e-01 setrgbcolor +fill +grestore +newpath +3.946624e+01 1.561985e+01 moveto +4.03963e+01 1.473905e+01 lineto +3.966899e+01 1.42527e+01 lineto +3.871143e+01 1.511512e+01 lineto +3.946624e+01 1.561985e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.856036e+01 1.652942e+01 moveto +3.946624e+01 1.561985e+01 lineto +3.871143e+01 1.511512e+01 lineto +3.777877e+01 1.600679e+01 lineto +3.856036e+01 1.652942e+01 lineto +closepath +gsave +7.325877e-01 7.325877e-01 9.157347e-01 setrgbcolor +fill +grestore +newpath +3.856036e+01 1.652942e+01 moveto +3.946624e+01 1.561985e+01 lineto +3.871143e+01 1.511512e+01 lineto +3.777877e+01 1.600679e+01 lineto +3.856036e+01 1.652942e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.767951e+01 1.74669e+01 moveto +3.856036e+01 1.652942e+01 lineto +3.777877e+01 1.600679e+01 lineto +3.687188e+01 1.692685e+01 lineto +3.767951e+01 1.74669e+01 lineto +closepath +gsave +7.358913e-01 7.358913e-01 9.198642e-01 setrgbcolor +fill +grestore +newpath +3.767951e+01 1.74669e+01 moveto +3.856036e+01 1.652942e+01 lineto +3.777877e+01 1.600679e+01 lineto +3.687188e+01 1.692685e+01 lineto +3.767951e+01 1.74669e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.682452e+01 1.843139e+01 moveto +3.767951e+01 1.74669e+01 lineto +3.687188e+01 1.692685e+01 lineto +3.599163e+01 1.787444e+01 lineto +3.682452e+01 1.843139e+01 lineto +closepath +gsave +7.390003e-01 7.390003e-01 9.237504e-01 setrgbcolor +fill +grestore +newpath +3.682452e+01 1.843139e+01 moveto +3.767951e+01 1.74669e+01 lineto +3.687188e+01 1.692685e+01 lineto +3.599163e+01 1.787444e+01 lineto +3.682452e+01 1.843139e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.599622e+01 1.942198e+01 moveto +3.682452e+01 1.843139e+01 lineto +3.599163e+01 1.787444e+01 lineto +3.513884e+01 1.884866e+01 lineto +3.599622e+01 1.942198e+01 lineto +closepath +gsave +7.419129e-01 7.419129e-01 9.273912e-01 setrgbcolor +fill +grestore +newpath +3.599622e+01 1.942198e+01 moveto +3.682452e+01 1.843139e+01 lineto +3.599163e+01 1.787444e+01 lineto +3.513884e+01 1.884866e+01 lineto +3.599622e+01 1.942198e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.519537e+01 2.043774e+01 moveto +3.599622e+01 1.942198e+01 lineto +3.513884e+01 1.884866e+01 lineto +3.431432e+01 1.984859e+01 lineto +3.519537e+01 2.043774e+01 lineto +closepath +gsave +7.446276e-01 7.446276e-01 9.307845e-01 setrgbcolor +fill +grestore +newpath +3.519537e+01 2.043774e+01 moveto +3.599622e+01 1.942198e+01 lineto +3.513884e+01 1.884866e+01 lineto +3.431432e+01 1.984859e+01 lineto +3.519537e+01 2.043774e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.442275e+01 2.14777e+01 moveto +3.519537e+01 2.043774e+01 lineto +3.431432e+01 1.984859e+01 lineto +3.351885e+01 2.087327e+01 lineto +3.442275e+01 2.14777e+01 lineto +closepath +gsave +7.471431e-01 7.471431e-01 9.339289e-01 setrgbcolor +fill +grestore +newpath +3.442275e+01 2.14777e+01 moveto +3.519537e+01 2.043774e+01 lineto +3.431432e+01 1.984859e+01 lineto +3.351885e+01 2.087327e+01 lineto +3.442275e+01 2.14777e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.367907e+01 2.254087e+01 moveto +3.442275e+01 2.14777e+01 lineto +3.351885e+01 2.087327e+01 lineto +3.275319e+01 2.192175e+01 lineto +3.367907e+01 2.254087e+01 lineto +closepath +gsave +7.494582e-01 7.494582e-01 9.368228e-01 setrgbcolor +fill +grestore +newpath +3.367907e+01 2.254087e+01 moveto +3.442275e+01 2.14777e+01 lineto +3.351885e+01 2.087327e+01 lineto +3.275319e+01 2.192175e+01 lineto +3.367907e+01 2.254087e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.296505e+01 2.362626e+01 moveto +3.367907e+01 2.254087e+01 lineto +3.275319e+01 2.192175e+01 lineto +3.201807e+01 2.299302e+01 lineto +3.296505e+01 2.362626e+01 lineto +closepath +gsave +7.515721e-01 7.515721e-01 9.394652e-01 setrgbcolor +fill +grestore +newpath +3.296505e+01 2.362626e+01 moveto +3.367907e+01 2.254087e+01 lineto +3.275319e+01 2.192175e+01 lineto +3.201807e+01 2.299302e+01 lineto +3.296505e+01 2.362626e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.228137e+01 2.473283e+01 moveto +3.296505e+01 2.362626e+01 lineto +3.201807e+01 2.299302e+01 lineto +3.131417e+01 2.408608e+01 lineto +3.228137e+01 2.473283e+01 lineto +closepath +gsave +7.53484e-01 7.53484e-01 9.418551e-01 setrgbcolor +fill +grestore +newpath +3.228137e+01 2.473283e+01 moveto +3.296505e+01 2.362626e+01 lineto +3.201807e+01 2.299302e+01 lineto +3.131417e+01 2.408608e+01 lineto +3.228137e+01 2.473283e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.162866e+01 2.585954e+01 moveto +3.228137e+01 2.473283e+01 lineto +3.131417e+01 2.408608e+01 lineto +3.064216e+01 2.519989e+01 lineto +3.162866e+01 2.585954e+01 lineto +closepath +gsave +7.551933e-01 7.551933e-01 9.439917e-01 setrgbcolor +fill +grestore +newpath +3.162866e+01 2.585954e+01 moveto +3.228137e+01 2.473283e+01 lineto +3.131417e+01 2.408608e+01 lineto +3.064216e+01 2.519989e+01 lineto +3.162866e+01 2.585954e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.100754e+01 2.700532e+01 moveto +3.162866e+01 2.585954e+01 lineto +3.064216e+01 2.519989e+01 lineto +3.000269e+01 2.633339e+01 lineto +3.100754e+01 2.700532e+01 lineto +closepath +gsave +7.566995e-01 7.566995e-01 9.458744e-01 setrgbcolor +fill +grestore +newpath +3.100754e+01 2.700532e+01 moveto +3.162866e+01 2.585954e+01 lineto +3.064216e+01 2.519989e+01 lineto +3.000269e+01 2.633339e+01 lineto +3.100754e+01 2.700532e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.041861e+01 2.816908e+01 moveto +3.100754e+01 2.700532e+01 lineto +3.000269e+01 2.633339e+01 lineto +2.939635e+01 2.748551e+01 lineto +3.041861e+01 2.816908e+01 lineto +closepath +gsave +7.580023e-01 7.580023e-01 9.475028e-01 setrgbcolor +fill +grestore +newpath +3.041861e+01 2.816908e+01 moveto +3.100754e+01 2.700532e+01 lineto +3.000269e+01 2.633339e+01 lineto +2.939635e+01 2.748551e+01 lineto +3.041861e+01 2.816908e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.986242e+01 2.934973e+01 moveto +3.041861e+01 2.816908e+01 lineto +2.939635e+01 2.748551e+01 lineto +2.882372e+01 2.865516e+01 lineto +2.986242e+01 2.934973e+01 lineto +closepath +gsave +7.591012e-01 7.591012e-01 9.488765e-01 setrgbcolor +fill +grestore +newpath +2.986242e+01 2.934973e+01 moveto +3.041861e+01 2.816908e+01 lineto +2.939635e+01 2.748551e+01 lineto +2.882372e+01 2.865516e+01 lineto +2.986242e+01 2.934973e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.93395e+01 3.054613e+01 moveto +2.986242e+01 2.934973e+01 lineto +2.882372e+01 2.865516e+01 lineto +2.828534e+01 2.984123e+01 lineto +2.93395e+01 3.054613e+01 lineto +closepath +gsave +7.599961e-01 7.599961e-01 9.499952e-01 setrgbcolor +fill +grestore +newpath +2.93395e+01 3.054613e+01 moveto +2.986242e+01 2.934973e+01 lineto +2.882372e+01 2.865516e+01 lineto +2.828534e+01 2.984123e+01 lineto +2.93395e+01 3.054613e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.885035e+01 3.175717e+01 moveto +2.93395e+01 3.054613e+01 lineto +2.828534e+01 2.984123e+01 lineto +2.778173e+01 3.10426e+01 lineto +2.885035e+01 3.175717e+01 lineto +closepath +gsave +7.606869e-01 7.606869e-01 9.508586e-01 setrgbcolor +fill +grestore +newpath +2.885035e+01 3.175717e+01 moveto +2.93395e+01 3.054613e+01 lineto +2.828534e+01 2.984123e+01 lineto +2.778173e+01 3.10426e+01 lineto +2.885035e+01 3.175717e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.839542e+01 3.29817e+01 moveto +2.885035e+01 3.175717e+01 lineto +2.778173e+01 3.10426e+01 lineto +2.731335e+01 3.225813e+01 lineto +2.839542e+01 3.29817e+01 lineto +closepath +gsave +7.611734e-01 7.611734e-01 9.514667e-01 setrgbcolor +fill +grestore +newpath +2.839542e+01 3.29817e+01 moveto +2.885035e+01 3.175717e+01 lineto +2.778173e+01 3.10426e+01 lineto +2.731335e+01 3.225813e+01 lineto +2.839542e+01 3.29817e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.797515e+01 3.421855e+01 moveto +2.839542e+01 3.29817e+01 lineto +2.731335e+01 3.225813e+01 lineto +2.688066e+01 3.348668e+01 lineto +2.797515e+01 3.421855e+01 lineto +closepath +gsave +7.614555e-01 7.614555e-01 9.518194e-01 setrgbcolor +fill +grestore +newpath +2.797515e+01 3.421855e+01 moveto +2.839542e+01 3.29817e+01 lineto +2.731335e+01 3.225813e+01 lineto +2.688066e+01 3.348668e+01 lineto +2.797515e+01 3.421855e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.375201e+01 4.068685e+00 moveto +6.499596e+01 4.000158e+00 lineto +6.499587e+01 4.000079e+00 lineto +6.372387e+01 4.044424e+00 lineto +6.375201e+01 4.068685e+00 lineto +closepath +gsave +6.120417e-01 6.120417e-01 7.650522e-01 setrgbcolor +fill +grestore +newpath +6.375201e+01 4.068685e+00 moveto +6.499596e+01 4.000158e+00 lineto +6.499587e+01 4.000079e+00 lineto +6.372387e+01 4.044424e+00 lineto +6.375201e+01 4.068685e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.250925e+01 4.176912e+00 moveto +6.375201e+01 4.068685e+00 lineto +6.372387e+01 4.044424e+00 lineto +6.245309e+01 4.128492e+00 lineto +6.250925e+01 4.176912e+00 lineto +closepath +gsave +6.18136e-01 6.18136e-01 7.726701e-01 setrgbcolor +fill +grestore +newpath +6.250925e+01 4.176912e+00 moveto +6.375201e+01 4.068685e+00 lineto +6.372387e+01 4.044424e+00 lineto +6.245309e+01 4.128492e+00 lineto +6.250925e+01 4.176912e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.126885e+01 4.324739e+00 moveto +6.250925e+01 4.176912e+00 lineto +6.245309e+01 4.128492e+00 lineto +6.118472e+01 4.252205e+00 lineto +6.126885e+01 4.324739e+00 lineto +closepath +gsave +6.241773e-01 6.241773e-01 7.802216e-01 setrgbcolor +fill +grestore +newpath +6.126885e+01 4.324739e+00 moveto +6.250925e+01 4.176912e+00 lineto +6.245309e+01 4.128492e+00 lineto +6.118472e+01 4.252205e+00 lineto +6.126885e+01 4.324739e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.003197e+01 4.512024e+00 moveto +6.126885e+01 4.324739e+00 lineto +6.118472e+01 4.252205e+00 lineto +5.991996e+01 4.415445e+00 lineto +6.003197e+01 4.512024e+00 lineto +closepath +gsave +6.301561e-01 6.301561e-01 7.876951e-01 setrgbcolor +fill +grestore +newpath +6.003197e+01 4.512024e+00 moveto +6.126885e+01 4.324739e+00 lineto +6.118472e+01 4.252205e+00 lineto +5.991996e+01 4.415445e+00 lineto +6.003197e+01 4.512024e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.879981e+01 4.73859e+00 moveto +6.003197e+01 4.512024e+00 lineto +5.991996e+01 4.415445e+00 lineto +5.866001e+01 4.618058e+00 lineto +5.879981e+01 4.73859e+00 lineto +closepath +gsave +6.360631e-01 6.360631e-01 7.950789e-01 setrgbcolor +fill +grestore +newpath +5.879981e+01 4.73859e+00 moveto +6.003197e+01 4.512024e+00 lineto +5.991996e+01 4.415445e+00 lineto +5.866001e+01 4.618058e+00 lineto +5.879981e+01 4.73859e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.757351e+01 5.004222e+00 moveto +5.879981e+01 4.73859e+00 lineto +5.866001e+01 4.618058e+00 lineto +5.740606e+01 4.859851e+00 lineto +5.757351e+01 5.004222e+00 lineto +closepath +gsave +6.418895e-01 6.418895e-01 8.023619e-01 setrgbcolor +fill +grestore +newpath +5.757351e+01 5.004222e+00 moveto +5.879981e+01 4.73859e+00 lineto +5.866001e+01 4.618058e+00 lineto +5.740606e+01 4.859851e+00 lineto +5.757351e+01 5.004222e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.635424e+01 5.30867e+00 moveto +5.757351e+01 5.004222e+00 lineto +5.740606e+01 4.859851e+00 lineto +5.615931e+01 5.140597e+00 lineto +5.635424e+01 5.30867e+00 lineto +closepath +gsave +6.476266e-01 6.476266e-01 8.095332e-01 setrgbcolor +fill +grestore +newpath +5.635424e+01 5.30867e+00 moveto +5.757351e+01 5.004222e+00 lineto +5.740606e+01 4.859851e+00 lineto +5.615931e+01 5.140597e+00 lineto +5.635424e+01 5.30867e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.514316e+01 5.651645e+00 moveto +5.635424e+01 5.30867e+00 lineto +5.615931e+01 5.140597e+00 lineto +5.492092e+01 5.460028e+00 lineto +5.514316e+01 5.651645e+00 lineto +closepath +gsave +6.532661e-01 6.532661e-01 8.165826e-01 setrgbcolor +fill +grestore +newpath +5.514316e+01 5.651645e+00 moveto +5.635424e+01 5.30867e+00 lineto +5.615931e+01 5.140597e+00 lineto +5.492092e+01 5.460028e+00 lineto +5.514316e+01 5.651645e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.394141e+01 6.032822e+00 moveto +5.514316e+01 5.651645e+00 lineto +5.492092e+01 5.460028e+00 lineto +5.369208e+01 5.817843e+00 lineto +5.394141e+01 6.032822e+00 lineto +closepath +gsave +6.587999e-01 6.587999e-01 8.234999e-01 setrgbcolor +fill +grestore +newpath +5.394141e+01 6.032822e+00 moveto +5.514316e+01 5.651645e+00 lineto +5.492092e+01 5.460028e+00 lineto +5.369208e+01 5.817843e+00 lineto +5.394141e+01 6.032822e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.275014e+01 6.45184e+00 moveto +5.394141e+01 6.032822e+00 lineto +5.369208e+01 5.817843e+00 lineto +5.247394e+01 6.213703e+00 lineto +5.275014e+01 6.45184e+00 lineto +closepath +gsave +6.642204e-01 6.642204e-01 8.302756e-01 setrgbcolor +fill +grestore +newpath +5.275014e+01 6.45184e+00 moveto +5.394141e+01 6.032822e+00 lineto +5.369208e+01 5.817843e+00 lineto +5.247394e+01 6.213703e+00 lineto +5.275014e+01 6.45184e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.157046e+01 6.908303e+00 moveto +5.275014e+01 6.45184e+00 lineto +5.247394e+01 6.213703e+00 lineto +5.126766e+01 6.647233e+00 lineto +5.157046e+01 6.908303e+00 lineto +closepath +gsave +6.695204e-01 6.695204e-01 8.369005e-01 setrgbcolor +fill +grestore +newpath +5.157046e+01 6.908303e+00 moveto +5.275014e+01 6.45184e+00 lineto +5.247394e+01 6.213703e+00 lineto +5.126766e+01 6.647233e+00 lineto +5.157046e+01 6.908303e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.040349e+01 7.401779e+00 moveto +5.157046e+01 6.908303e+00 lineto +5.126766e+01 6.647233e+00 lineto +5.007439e+01 7.118023e+00 lineto +5.040349e+01 7.401779e+00 lineto +closepath +gsave +6.746929e-01 6.746929e-01 8.433661e-01 setrgbcolor +fill +grestore +newpath +5.040349e+01 7.401779e+00 moveto +5.157046e+01 6.908303e+00 lineto +5.126766e+01 6.647233e+00 lineto +5.007439e+01 7.118023e+00 lineto +5.040349e+01 7.401779e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.925035e+01 7.931799e+00 moveto +5.040349e+01 7.401779e+00 lineto +5.007439e+01 7.118023e+00 lineto +4.889524e+01 7.625626e+00 lineto +4.925035e+01 7.931799e+00 lineto +closepath +gsave +6.797314e-01 6.797314e-01 8.496642e-01 setrgbcolor +fill +grestore +newpath +4.925035e+01 7.931799e+00 moveto +5.040349e+01 7.401779e+00 lineto +5.007439e+01 7.118023e+00 lineto +4.889524e+01 7.625626e+00 lineto +4.925035e+01 7.931799e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.811212e+01 8.497863e+00 moveto +4.925035e+01 7.931799e+00 lineto +4.889524e+01 7.625626e+00 lineto +4.773135e+01 8.169563e+00 lineto +4.811212e+01 8.497863e+00 lineto +closepath +gsave +6.846297e-01 6.846297e-01 8.557871e-01 setrgbcolor +fill +grestore +newpath +4.811212e+01 8.497863e+00 moveto +4.925035e+01 7.931799e+00 lineto +4.889524e+01 7.625626e+00 lineto +4.773135e+01 8.169563e+00 lineto +4.811212e+01 8.497863e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.698988e+01 9.099434e+00 moveto +4.811212e+01 8.497863e+00 lineto +4.773135e+01 8.169563e+00 lineto +4.65838e+01 8.749318e+00 lineto +4.698988e+01 9.099434e+00 lineto +closepath +gsave +6.89382e-01 6.89382e-01 8.617275e-01 setrgbcolor +fill +grestore +newpath +4.698988e+01 9.099434e+00 moveto +4.811212e+01 8.497863e+00 lineto +4.773135e+01 8.169563e+00 lineto +4.65838e+01 8.749318e+00 lineto +4.698988e+01 9.099434e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.588469e+01 9.735943e+00 moveto +4.698988e+01 9.099434e+00 lineto +4.65838e+01 8.749318e+00 lineto +4.545369e+01 9.364342e+00 lineto +4.588469e+01 9.735943e+00 lineto +closepath +gsave +6.93983e-01 6.93983e-01 8.674787e-01 setrgbcolor +fill +grestore +newpath +4.588469e+01 9.735943e+00 moveto +4.698988e+01 9.099434e+00 lineto +4.65838e+01 8.749318e+00 lineto +4.545369e+01 9.364342e+00 lineto +4.588469e+01 9.735943e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.47976e+01 1.040679e+01 moveto +4.588469e+01 9.735943e+00 lineto +4.545369e+01 9.364342e+00 lineto +4.434209e+01 1.001405e+01 lineto +4.47976e+01 1.040679e+01 lineto +closepath +gsave +6.984276e-01 6.984276e-01 8.730345e-01 setrgbcolor +fill +grestore +newpath +4.47976e+01 1.040679e+01 moveto +4.588469e+01 9.735943e+00 lineto +4.545369e+01 9.364342e+00 lineto +4.434209e+01 1.001405e+01 lineto +4.47976e+01 1.040679e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.372963e+01 1.111133e+01 moveto +4.47976e+01 1.040679e+01 lineto +4.434209e+01 1.001405e+01 lineto +4.325005e+01 1.069784e+01 lineto +4.372963e+01 1.111133e+01 lineto +closepath +gsave +7.027113e-01 7.027113e-01 8.783891e-01 setrgbcolor +fill +grestore +newpath +4.372963e+01 1.111133e+01 moveto +4.47976e+01 1.040679e+01 lineto +4.434209e+01 1.001405e+01 lineto +4.325005e+01 1.069784e+01 lineto +4.372963e+01 1.111133e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.268181e+01 1.184891e+01 moveto +4.372963e+01 1.111133e+01 lineto +4.325005e+01 1.069784e+01 lineto +4.21786e+01 1.141504e+01 lineto +4.268181e+01 1.184891e+01 lineto +closepath +gsave +7.068297e-01 7.068297e-01 8.835371e-01 setrgbcolor +fill +grestore +newpath +4.268181e+01 1.184891e+01 moveto +4.372963e+01 1.111133e+01 lineto +4.325005e+01 1.069784e+01 lineto +4.21786e+01 1.141504e+01 lineto +4.268181e+01 1.184891e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.165511e+01 1.261882e+01 moveto +4.268181e+01 1.184891e+01 lineto +4.21786e+01 1.141504e+01 lineto +4.112876e+01 1.2165e+01 lineto +4.165511e+01 1.261882e+01 lineto +closepath +gsave +7.107789e-01 7.107789e-01 8.884737e-01 setrgbcolor +fill +grestore +newpath +4.165511e+01 1.261882e+01 moveto +4.268181e+01 1.184891e+01 lineto +4.21786e+01 1.141504e+01 lineto +4.112876e+01 1.2165e+01 lineto +4.165511e+01 1.261882e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.065052e+01 1.342034e+01 moveto +4.165511e+01 1.261882e+01 lineto +4.112876e+01 1.2165e+01 lineto +4.010152e+01 1.294698e+01 lineto +4.065052e+01 1.342034e+01 lineto +closepath +gsave +7.145555e-01 7.145555e-01 8.931944e-01 setrgbcolor +fill +grestore +newpath +4.065052e+01 1.342034e+01 moveto +4.165511e+01 1.261882e+01 lineto +4.112876e+01 1.2165e+01 lineto +4.010152e+01 1.294698e+01 lineto +4.065052e+01 1.342034e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.966899e+01 1.42527e+01 moveto +4.065052e+01 1.342034e+01 lineto +4.010152e+01 1.294698e+01 lineto +3.909785e+01 1.376027e+01 lineto +3.966899e+01 1.42527e+01 lineto +closepath +gsave +7.181561e-01 7.181561e-01 8.976951e-01 setrgbcolor +fill +grestore +newpath +3.966899e+01 1.42527e+01 moveto +4.065052e+01 1.342034e+01 lineto +4.010152e+01 1.294698e+01 lineto +3.909785e+01 1.376027e+01 lineto +3.966899e+01 1.42527e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.871143e+01 1.511512e+01 moveto +3.966899e+01 1.42527e+01 lineto +3.909785e+01 1.376027e+01 lineto +3.811871e+01 1.460408e+01 lineto +3.871143e+01 1.511512e+01 lineto +closepath +gsave +7.215779e-01 7.215779e-01 9.019723e-01 setrgbcolor +fill +grestore +newpath +3.871143e+01 1.511512e+01 moveto +3.966899e+01 1.42527e+01 lineto +3.909785e+01 1.376027e+01 lineto +3.811871e+01 1.460408e+01 lineto +3.871143e+01 1.511512e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.777877e+01 1.600679e+01 moveto +3.871143e+01 1.511512e+01 lineto +3.811871e+01 1.460408e+01 lineto +3.716502e+01 1.547761e+01 lineto +3.777877e+01 1.600679e+01 lineto +closepath +gsave +7.248181e-01 7.248181e-01 9.060227e-01 setrgbcolor +fill +grestore +newpath +3.777877e+01 1.600679e+01 moveto +3.871143e+01 1.511512e+01 lineto +3.811871e+01 1.460408e+01 lineto +3.716502e+01 1.547761e+01 lineto +3.777877e+01 1.600679e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.687188e+01 1.692685e+01 moveto +3.777877e+01 1.600679e+01 lineto +3.716502e+01 1.547761e+01 lineto +3.623768e+01 1.638004e+01 lineto +3.687188e+01 1.692685e+01 lineto +closepath +gsave +7.278746e-01 7.278746e-01 9.098433e-01 setrgbcolor +fill +grestore +newpath +3.687188e+01 1.692685e+01 moveto +3.777877e+01 1.600679e+01 lineto +3.716502e+01 1.547761e+01 lineto +3.623768e+01 1.638004e+01 lineto +3.687188e+01 1.692685e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.599163e+01 1.787444e+01 moveto +3.687188e+01 1.692685e+01 lineto +3.623768e+01 1.638004e+01 lineto +3.533758e+01 1.731052e+01 lineto +3.599163e+01 1.787444e+01 lineto +closepath +gsave +7.307452e-01 7.307452e-01 9.134316e-01 setrgbcolor +fill +grestore +newpath +3.599163e+01 1.787444e+01 moveto +3.687188e+01 1.692685e+01 lineto +3.623768e+01 1.638004e+01 lineto +3.533758e+01 1.731052e+01 lineto +3.599163e+01 1.787444e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.513884e+01 1.884866e+01 moveto +3.599163e+01 1.787444e+01 lineto +3.533758e+01 1.731052e+01 lineto +3.446556e+01 1.826816e+01 lineto +3.513884e+01 1.884866e+01 lineto +closepath +gsave +7.334282e-01 7.334282e-01 9.167852e-01 setrgbcolor +fill +grestore +newpath +3.513884e+01 1.884866e+01 moveto +3.599163e+01 1.787444e+01 lineto +3.533758e+01 1.731052e+01 lineto +3.446556e+01 1.826816e+01 lineto +3.513884e+01 1.884866e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.431432e+01 1.984859e+01 moveto +3.513884e+01 1.884866e+01 lineto +3.446556e+01 1.826816e+01 lineto +3.362245e+01 1.925206e+01 lineto +3.431432e+01 1.984859e+01 lineto +closepath +gsave +7.359218e-01 7.359218e-01 9.199023e-01 setrgbcolor +fill +grestore +newpath +3.431432e+01 1.984859e+01 moveto +3.513884e+01 1.884866e+01 lineto +3.446556e+01 1.826816e+01 lineto +3.362245e+01 1.925206e+01 lineto +3.431432e+01 1.984859e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.351885e+01 2.087327e+01 moveto +3.431432e+01 1.984859e+01 lineto +3.362245e+01 1.925206e+01 lineto +3.280905e+01 2.026128e+01 lineto +3.351885e+01 2.087327e+01 lineto +closepath +gsave +7.382248e-01 7.382248e-01 9.22781e-01 setrgbcolor +fill +grestore +newpath +3.351885e+01 2.087327e+01 moveto +3.431432e+01 1.984859e+01 lineto +3.362245e+01 1.925206e+01 lineto +3.280905e+01 2.026128e+01 lineto +3.351885e+01 2.087327e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.275319e+01 2.192175e+01 moveto +3.351885e+01 2.087327e+01 lineto +3.280905e+01 2.026128e+01 lineto +3.202613e+01 2.129487e+01 lineto +3.275319e+01 2.192175e+01 lineto +closepath +gsave +7.40336e-01 7.40336e-01 9.2542e-01 setrgbcolor +fill +grestore +newpath +3.275319e+01 2.192175e+01 moveto +3.351885e+01 2.087327e+01 lineto +3.280905e+01 2.026128e+01 lineto +3.202613e+01 2.129487e+01 lineto +3.275319e+01 2.192175e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.201807e+01 2.299302e+01 moveto +3.275319e+01 2.192175e+01 lineto +3.202613e+01 2.129487e+01 lineto +3.127442e+01 2.235186e+01 lineto +3.201807e+01 2.299302e+01 lineto +closepath +gsave +7.422542e-01 7.422542e-01 9.278178e-01 setrgbcolor +fill +grestore +newpath +3.201807e+01 2.299302e+01 moveto +3.275319e+01 2.192175e+01 lineto +3.202613e+01 2.129487e+01 lineto +3.127442e+01 2.235186e+01 lineto +3.201807e+01 2.299302e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.131417e+01 2.408608e+01 moveto +3.201807e+01 2.299302e+01 lineto +3.127442e+01 2.235186e+01 lineto +3.055465e+01 2.343123e+01 lineto +3.131417e+01 2.408608e+01 lineto +closepath +gsave +7.439788e-01 7.439788e-01 9.299735e-01 setrgbcolor +fill +grestore +newpath +3.131417e+01 2.408608e+01 moveto +3.201807e+01 2.299302e+01 lineto +3.127442e+01 2.235186e+01 lineto +3.055465e+01 2.343123e+01 lineto +3.131417e+01 2.408608e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.064216e+01 2.519989e+01 moveto +3.131417e+01 2.408608e+01 lineto +3.055465e+01 2.343123e+01 lineto +2.98675e+01 2.453197e+01 lineto +3.064216e+01 2.519989e+01 lineto +closepath +gsave +7.455089e-01 7.455089e-01 9.318861e-01 setrgbcolor +fill +grestore +newpath +3.064216e+01 2.519989e+01 moveto +3.131417e+01 2.408608e+01 lineto +3.055465e+01 2.343123e+01 lineto +2.98675e+01 2.453197e+01 lineto +3.064216e+01 2.519989e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.000269e+01 2.633339e+01 moveto +3.064216e+01 2.519989e+01 lineto +2.98675e+01 2.453197e+01 lineto +2.92136e+01 2.565304e+01 lineto +3.000269e+01 2.633339e+01 lineto +closepath +gsave +7.46844e-01 7.46844e-01 9.33555e-01 setrgbcolor +fill +grestore +newpath +3.000269e+01 2.633339e+01 moveto +3.064216e+01 2.519989e+01 lineto +2.98675e+01 2.453197e+01 lineto +2.92136e+01 2.565304e+01 lineto +3.000269e+01 2.633339e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.939635e+01 2.748551e+01 moveto +3.000269e+01 2.633339e+01 lineto +2.92136e+01 2.565304e+01 lineto +2.859359e+01 2.679337e+01 lineto +2.939635e+01 2.748551e+01 lineto +closepath +gsave +7.479835e-01 7.479835e-01 9.349794e-01 setrgbcolor +fill +grestore +newpath +2.939635e+01 2.748551e+01 moveto +3.000269e+01 2.633339e+01 lineto +2.92136e+01 2.565304e+01 lineto +2.859359e+01 2.679337e+01 lineto +2.939635e+01 2.748551e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.882372e+01 2.865516e+01 moveto +2.939635e+01 2.748551e+01 lineto +2.859359e+01 2.679337e+01 lineto +2.800805e+01 2.795189e+01 lineto +2.882372e+01 2.865516e+01 lineto +closepath +gsave +7.489271e-01 7.489271e-01 9.361589e-01 setrgbcolor +fill +grestore +newpath +2.882372e+01 2.865516e+01 moveto +2.939635e+01 2.748551e+01 lineto +2.859359e+01 2.679337e+01 lineto +2.800805e+01 2.795189e+01 lineto +2.882372e+01 2.865516e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.828534e+01 2.984123e+01 moveto +2.882372e+01 2.865516e+01 lineto +2.800805e+01 2.795189e+01 lineto +2.745754e+01 2.91275e+01 lineto +2.828534e+01 2.984123e+01 lineto +closepath +gsave +7.496745e-01 7.496745e-01 9.370931e-01 setrgbcolor +fill +grestore +newpath +2.828534e+01 2.984123e+01 moveto +2.882372e+01 2.865516e+01 lineto +2.800805e+01 2.795189e+01 lineto +2.745754e+01 2.91275e+01 lineto +2.828534e+01 2.984123e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.778173e+01 3.10426e+01 moveto +2.828534e+01 2.984123e+01 lineto +2.745754e+01 2.91275e+01 lineto +2.694257e+01 3.031908e+01 lineto +2.778173e+01 3.10426e+01 lineto +closepath +gsave +7.502254e-01 7.502254e-01 9.377818e-01 setrgbcolor +fill +grestore +newpath +2.778173e+01 3.10426e+01 moveto +2.828534e+01 2.984123e+01 lineto +2.745754e+01 2.91275e+01 lineto +2.694257e+01 3.031908e+01 lineto +2.778173e+01 3.10426e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.731335e+01 3.225813e+01 moveto +2.778173e+01 3.10426e+01 lineto +2.694257e+01 3.031908e+01 lineto +2.646363e+01 3.15255e+01 lineto +2.731335e+01 3.225813e+01 lineto +closepath +gsave +7.505798e-01 7.505798e-01 9.382247e-01 setrgbcolor +fill +grestore +newpath +2.731335e+01 3.225813e+01 moveto +2.778173e+01 3.10426e+01 lineto +2.694257e+01 3.031908e+01 lineto +2.646363e+01 3.15255e+01 lineto +2.731335e+01 3.225813e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.688066e+01 3.348668e+01 moveto +2.731335e+01 3.225813e+01 lineto +2.646363e+01 3.15255e+01 lineto +2.602118e+01 3.274564e+01 lineto +2.688066e+01 3.348668e+01 lineto +closepath +gsave +7.507374e-01 7.507374e-01 9.384218e-01 setrgbcolor +fill +grestore +newpath +2.688066e+01 3.348668e+01 moveto +2.731335e+01 3.225813e+01 lineto +2.646363e+01 3.15255e+01 lineto +2.602118e+01 3.274564e+01 lineto +2.688066e+01 3.348668e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.372387e+01 4.044424e+00 moveto +6.499587e+01 4.000079e+00 lineto +6.49958e+01 4.0e+00 lineto +6.37036e+01 4.020012e+00 lineto +6.372387e+01 4.044424e+00 lineto +closepath +gsave +6.118407e-01 6.118407e-01 7.648009e-01 setrgbcolor +fill +grestore +newpath +6.372387e+01 4.044424e+00 moveto +6.499587e+01 4.000079e+00 lineto +6.49958e+01 4.0e+00 lineto +6.37036e+01 4.020012e+00 lineto +6.372387e+01 4.044424e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.245309e+01 4.128492e+00 moveto +6.372387e+01 4.044424e+00 lineto +6.37036e+01 4.020012e+00 lineto +6.241263e+01 4.079772e+00 lineto +6.245309e+01 4.128492e+00 lineto +closepath +gsave +6.175332e-01 6.175332e-01 7.719165e-01 setrgbcolor +fill +grestore +newpath +6.245309e+01 4.128492e+00 moveto +6.372387e+01 4.044424e+00 lineto +6.37036e+01 4.020012e+00 lineto +6.241263e+01 4.079772e+00 lineto +6.245309e+01 4.128492e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.118472e+01 4.252205e+00 moveto +6.245309e+01 4.128492e+00 lineto +6.241263e+01 4.079772e+00 lineto +6.112412e+01 4.179221e+00 lineto +6.118472e+01 4.252205e+00 lineto +closepath +gsave +6.231705e-01 6.231705e-01 7.789631e-01 setrgbcolor +fill +grestore +newpath +6.118472e+01 4.252205e+00 moveto +6.245309e+01 4.128492e+00 lineto +6.241263e+01 4.079772e+00 lineto +6.112412e+01 4.179221e+00 lineto +6.118472e+01 4.252205e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.991996e+01 4.415445e+00 moveto +6.118472e+01 4.252205e+00 lineto +6.112412e+01 4.179221e+00 lineto +5.983927e+01 4.318268e+00 lineto +5.991996e+01 4.415445e+00 lineto +closepath +gsave +6.287439e-01 6.287439e-01 7.859299e-01 setrgbcolor +fill +grestore +newpath +5.991996e+01 4.415445e+00 moveto +6.118472e+01 4.252205e+00 lineto +6.112412e+01 4.179221e+00 lineto +5.983927e+01 4.318268e+00 lineto +5.991996e+01 4.415445e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.866001e+01 4.618058e+00 moveto +5.991996e+01 4.415445e+00 lineto +5.983927e+01 4.318268e+00 lineto +5.85593e+01 4.496778e+00 lineto +5.866001e+01 4.618058e+00 lineto +closepath +gsave +6.342453e-01 6.342453e-01 7.928067e-01 setrgbcolor +fill +grestore +newpath +5.866001e+01 4.618058e+00 moveto +5.991996e+01 4.415445e+00 lineto +5.983927e+01 4.318268e+00 lineto +5.85593e+01 4.496778e+00 lineto +5.866001e+01 4.618058e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.740606e+01 4.859851e+00 moveto +5.866001e+01 4.618058e+00 lineto +5.85593e+01 4.496778e+00 lineto +5.728544e+01 4.714585e+00 lineto +5.740606e+01 4.859851e+00 lineto +closepath +gsave +6.396666e-01 6.396666e-01 7.995833e-01 setrgbcolor +fill +grestore +newpath +5.740606e+01 4.859851e+00 moveto +5.866001e+01 4.618058e+00 lineto +5.85593e+01 4.496778e+00 lineto +5.728544e+01 4.714585e+00 lineto +5.740606e+01 4.859851e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.615931e+01 5.140597e+00 moveto +5.740606e+01 4.859851e+00 lineto +5.728544e+01 4.714585e+00 lineto +5.601888e+01 4.97148e+00 lineto +5.615931e+01 5.140597e+00 lineto +closepath +gsave +6.450001e-01 6.450001e-01 8.062501e-01 setrgbcolor +fill +grestore +newpath +5.615931e+01 5.140597e+00 moveto +5.740606e+01 4.859851e+00 lineto +5.728544e+01 4.714585e+00 lineto +5.601888e+01 4.97148e+00 lineto +5.615931e+01 5.140597e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.492092e+01 5.460028e+00 moveto +5.615931e+01 5.140597e+00 lineto +5.601888e+01 4.97148e+00 lineto +5.476082e+01 5.267222e+00 lineto +5.492092e+01 5.460028e+00 lineto +closepath +gsave +6.502382e-01 6.502382e-01 8.127977e-01 setrgbcolor +fill +grestore +newpath +5.492092e+01 5.460028e+00 moveto +5.615931e+01 5.140597e+00 lineto +5.601888e+01 4.97148e+00 lineto +5.476082e+01 5.267222e+00 lineto +5.492092e+01 5.460028e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.369208e+01 5.817843e+00 moveto +5.492092e+01 5.460028e+00 lineto +5.476082e+01 5.267222e+00 lineto +5.351246e+01 5.601531e+00 lineto +5.369208e+01 5.817843e+00 lineto +closepath +gsave +6.553737e-01 6.553737e-01 8.192172e-01 setrgbcolor +fill +grestore +newpath +5.369208e+01 5.817843e+00 moveto +5.492092e+01 5.460028e+00 lineto +5.476082e+01 5.267222e+00 lineto +5.351246e+01 5.601531e+00 lineto +5.369208e+01 5.817843e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.247394e+01 6.213703e+00 moveto +5.369208e+01 5.817843e+00 lineto +5.351246e+01 5.601531e+00 lineto +5.227497e+01 5.974088e+00 lineto +5.247394e+01 6.213703e+00 lineto +closepath +gsave +6.603998e-01 6.603998e-01 8.254998e-01 setrgbcolor +fill +grestore +newpath +5.247394e+01 6.213703e+00 moveto +5.369208e+01 5.817843e+00 lineto +5.351246e+01 5.601531e+00 lineto +5.227497e+01 5.974088e+00 lineto +5.247394e+01 6.213703e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.126766e+01 6.647233e+00 moveto +5.247394e+01 6.213703e+00 lineto +5.227497e+01 5.974088e+00 lineto +5.104953e+01 6.384543e+00 lineto +5.126766e+01 6.647233e+00 lineto +closepath +gsave +6.653099e-01 6.653099e-01 8.316373e-01 setrgbcolor +fill +grestore +newpath +5.126766e+01 6.647233e+00 moveto +5.247394e+01 6.213703e+00 lineto +5.227497e+01 5.974088e+00 lineto +5.104953e+01 6.384543e+00 lineto +5.126766e+01 6.647233e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.007439e+01 7.118023e+00 moveto +5.126766e+01 6.647233e+00 lineto +5.104953e+01 6.384543e+00 lineto +4.98373e+01 6.832506e+00 lineto +5.007439e+01 7.118023e+00 lineto +closepath +gsave +6.700977e-01 6.700977e-01 8.376221e-01 setrgbcolor +fill +grestore +newpath +5.007439e+01 7.118023e+00 moveto +5.126766e+01 6.647233e+00 lineto +5.104953e+01 6.384543e+00 lineto +4.98373e+01 6.832506e+00 lineto +5.007439e+01 7.118023e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.889524e+01 7.625626e+00 moveto +5.007439e+01 7.118023e+00 lineto +4.98373e+01 6.832506e+00 lineto +4.863943e+01 7.317554e+00 lineto +4.889524e+01 7.625626e+00 lineto +closepath +gsave +6.747572e-01 6.747572e-01 8.434465e-01 setrgbcolor +fill +grestore +newpath +4.889524e+01 7.625626e+00 moveto +5.007439e+01 7.118023e+00 lineto +4.98373e+01 6.832506e+00 lineto +4.863943e+01 7.317554e+00 lineto +4.889524e+01 7.625626e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.773135e+01 8.169563e+00 moveto +4.889524e+01 7.625626e+00 lineto +4.863943e+01 7.317554e+00 lineto +4.745704e+01 7.839226e+00 lineto +4.773135e+01 8.169563e+00 lineto +closepath +gsave +6.792829e-01 6.792829e-01 8.491037e-01 setrgbcolor +fill +grestore +newpath +4.773135e+01 8.169563e+00 moveto +4.889524e+01 7.625626e+00 lineto +4.863943e+01 7.317554e+00 lineto +4.745704e+01 7.839226e+00 lineto +4.773135e+01 8.169563e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.65838e+01 8.749318e+00 moveto +4.773135e+01 8.169563e+00 lineto +4.745704e+01 7.839226e+00 lineto +4.629127e+01 8.397029e+00 lineto +4.65838e+01 8.749318e+00 lineto +closepath +gsave +6.836696e-01 6.836696e-01 8.54587e-01 setrgbcolor +fill +grestore +newpath +4.65838e+01 8.749318e+00 moveto +4.773135e+01 8.169563e+00 lineto +4.745704e+01 7.839226e+00 lineto +4.629127e+01 8.397029e+00 lineto +4.65838e+01 8.749318e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.545369e+01 9.364342e+00 moveto +4.65838e+01 8.749318e+00 lineto +4.629127e+01 8.397029e+00 lineto +4.514321e+01 8.990435e+00 lineto +4.545369e+01 9.364342e+00 lineto +closepath +gsave +6.879123e-01 6.879123e-01 8.598904e-01 setrgbcolor +fill +grestore +newpath +4.545369e+01 9.364342e+00 moveto +4.65838e+01 8.749318e+00 lineto +4.629127e+01 8.397029e+00 lineto +4.514321e+01 8.990435e+00 lineto +4.545369e+01 9.364342e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.434209e+01 1.001405e+01 moveto +4.545369e+01 9.364342e+00 lineto +4.514321e+01 8.990435e+00 lineto +4.401395e+01 9.618882e+00 lineto +4.434209e+01 1.001405e+01 lineto +closepath +gsave +6.920064e-01 6.920064e-01 8.65008e-01 setrgbcolor +fill +grestore +newpath +4.434209e+01 1.001405e+01 moveto +4.545369e+01 9.364342e+00 lineto +4.514321e+01 8.990435e+00 lineto +4.401395e+01 9.618882e+00 lineto +4.434209e+01 1.001405e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.325005e+01 1.069784e+01 moveto +4.434209e+01 1.001405e+01 lineto +4.401395e+01 9.618882e+00 lineto +4.290456e+01 1.028177e+01 lineto +4.325005e+01 1.069784e+01 lineto +closepath +gsave +6.959476e-01 6.959476e-01 8.699345e-01 setrgbcolor +fill +grestore +newpath +4.325005e+01 1.069784e+01 moveto +4.434209e+01 1.001405e+01 lineto +4.401395e+01 9.618882e+00 lineto +4.290456e+01 1.028177e+01 lineto +4.325005e+01 1.069784e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.21786e+01 1.141504e+01 moveto +4.325005e+01 1.069784e+01 lineto +4.290456e+01 1.028177e+01 lineto +4.181609e+01 1.097849e+01 lineto +4.21786e+01 1.141504e+01 lineto +closepath +gsave +6.99732e-01 6.99732e-01 8.74665e-01 setrgbcolor +fill +grestore +newpath +4.21786e+01 1.141504e+01 moveto +4.325005e+01 1.069784e+01 lineto +4.290456e+01 1.028177e+01 lineto +4.181609e+01 1.097849e+01 lineto +4.21786e+01 1.141504e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.112876e+01 1.2165e+01 moveto +4.21786e+01 1.141504e+01 lineto +4.181609e+01 1.097849e+01 lineto +4.074957e+01 1.170836e+01 lineto +4.112876e+01 1.2165e+01 lineto +closepath +gsave +7.033559e-01 7.033559e-01 8.791949e-01 setrgbcolor +fill +grestore +newpath +4.112876e+01 1.2165e+01 moveto +4.21786e+01 1.141504e+01 lineto +4.181609e+01 1.097849e+01 lineto +4.074957e+01 1.170836e+01 lineto +4.112876e+01 1.2165e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.010152e+01 1.294698e+01 moveto +4.112876e+01 1.2165e+01 lineto +4.074957e+01 1.170836e+01 lineto +3.970602e+01 1.247069e+01 lineto +4.010152e+01 1.294698e+01 lineto +closepath +gsave +7.06816e-01 7.06816e-01 8.8352e-01 setrgbcolor +fill +grestore +newpath +4.010152e+01 1.294698e+01 moveto +4.112876e+01 1.2165e+01 lineto +4.074957e+01 1.170836e+01 lineto +3.970602e+01 1.247069e+01 lineto +4.010152e+01 1.294698e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.909785e+01 1.376027e+01 moveto +4.010152e+01 1.294698e+01 lineto +3.970602e+01 1.247069e+01 lineto +3.868641e+01 1.326478e+01 lineto +3.909785e+01 1.376027e+01 lineto +closepath +gsave +7.101093e-01 7.101093e-01 8.876366e-01 setrgbcolor +fill +grestore +newpath +3.909785e+01 1.376027e+01 moveto +4.010152e+01 1.294698e+01 lineto +3.970602e+01 1.247069e+01 lineto +3.868641e+01 1.326478e+01 lineto +3.909785e+01 1.376027e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.811871e+01 1.460408e+01 moveto +3.909785e+01 1.376027e+01 lineto +3.868641e+01 1.326478e+01 lineto +3.769171e+01 1.408985e+01 lineto +3.811871e+01 1.460408e+01 lineto +closepath +gsave +7.132329e-01 7.132329e-01 8.915412e-01 setrgbcolor +fill +grestore +newpath +3.811871e+01 1.460408e+01 moveto +3.909785e+01 1.376027e+01 lineto +3.868641e+01 1.326478e+01 lineto +3.769171e+01 1.408985e+01 lineto +3.811871e+01 1.460408e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.716502e+01 1.547761e+01 moveto +3.811871e+01 1.460408e+01 lineto +3.769171e+01 1.408985e+01 lineto +3.672287e+01 1.494515e+01 lineto +3.716502e+01 1.547761e+01 lineto +closepath +gsave +7.161844e-01 7.161844e-01 8.952305e-01 setrgbcolor +fill +grestore +newpath +3.716502e+01 1.547761e+01 moveto +3.811871e+01 1.460408e+01 lineto +3.769171e+01 1.408985e+01 lineto +3.672287e+01 1.494515e+01 lineto +3.716502e+01 1.547761e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.623768e+01 1.638004e+01 moveto +3.716502e+01 1.547761e+01 lineto +3.672287e+01 1.494515e+01 lineto +3.57808e+01 1.582984e+01 lineto +3.623768e+01 1.638004e+01 lineto +closepath +gsave +7.189615e-01 7.189615e-01 8.987018e-01 setrgbcolor +fill +grestore +newpath +3.623768e+01 1.638004e+01 moveto +3.716502e+01 1.547761e+01 lineto +3.672287e+01 1.494515e+01 lineto +3.57808e+01 1.582984e+01 lineto +3.623768e+01 1.638004e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.533758e+01 1.731052e+01 moveto +3.623768e+01 1.638004e+01 lineto +3.57808e+01 1.582984e+01 lineto +3.48664e+01 1.67431e+01 lineto +3.533758e+01 1.731052e+01 lineto +closepath +gsave +7.215621e-01 7.215621e-01 9.019526e-01 setrgbcolor +fill +grestore +newpath +3.533758e+01 1.731052e+01 moveto +3.623768e+01 1.638004e+01 lineto +3.57808e+01 1.582984e+01 lineto +3.48664e+01 1.67431e+01 lineto +3.533758e+01 1.731052e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.446556e+01 1.826816e+01 moveto +3.533758e+01 1.731052e+01 lineto +3.48664e+01 1.67431e+01 lineto +3.398053e+01 1.768406e+01 lineto +3.446556e+01 1.826816e+01 lineto +closepath +gsave +7.239845e-01 7.239845e-01 9.049806e-01 setrgbcolor +fill +grestore +newpath +3.446556e+01 1.826816e+01 moveto +3.533758e+01 1.731052e+01 lineto +3.48664e+01 1.67431e+01 lineto +3.398053e+01 1.768406e+01 lineto +3.446556e+01 1.826816e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.362245e+01 1.925206e+01 moveto +3.446556e+01 1.826816e+01 lineto +3.398053e+01 1.768406e+01 lineto +3.312403e+01 1.865183e+01 lineto +3.362245e+01 1.925206e+01 lineto +closepath +gsave +7.26227e-01 7.26227e-01 9.077838e-01 setrgbcolor +fill +grestore +newpath +3.362245e+01 1.925206e+01 moveto +3.446556e+01 1.826816e+01 lineto +3.398053e+01 1.768406e+01 lineto +3.312403e+01 1.865183e+01 lineto +3.362245e+01 1.925206e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.280905e+01 2.026128e+01 moveto +3.362245e+01 1.925206e+01 lineto +3.312403e+01 1.865183e+01 lineto +3.229771e+01 1.964549e+01 lineto +3.280905e+01 2.026128e+01 lineto +closepath +gsave +7.282883e-01 7.282883e-01 9.103604e-01 setrgbcolor +fill +grestore +newpath +3.280905e+01 2.026128e+01 moveto +3.362245e+01 1.925206e+01 lineto +3.312403e+01 1.865183e+01 lineto +3.229771e+01 1.964549e+01 lineto +3.280905e+01 2.026128e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.202613e+01 2.129487e+01 moveto +3.280905e+01 2.026128e+01 lineto +3.229771e+01 1.964549e+01 lineto +3.150235e+01 2.066411e+01 lineto +3.202613e+01 2.129487e+01 lineto +closepath +gsave +7.301671e-01 7.301671e-01 9.127089e-01 setrgbcolor +fill +grestore +newpath +3.202613e+01 2.129487e+01 moveto +3.280905e+01 2.026128e+01 lineto +3.229771e+01 1.964549e+01 lineto +3.150235e+01 2.066411e+01 lineto +3.202613e+01 2.129487e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.127442e+01 2.235186e+01 moveto +3.202613e+01 2.129487e+01 lineto +3.150235e+01 2.066411e+01 lineto +3.073871e+01 2.170671e+01 lineto +3.127442e+01 2.235186e+01 lineto +closepath +gsave +7.318623e-01 7.318623e-01 9.148279e-01 setrgbcolor +fill +grestore +newpath +3.127442e+01 2.235186e+01 moveto +3.202613e+01 2.129487e+01 lineto +3.150235e+01 2.066411e+01 lineto +3.073871e+01 2.170671e+01 lineto +3.127442e+01 2.235186e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.055465e+01 2.343123e+01 moveto +3.127442e+01 2.235186e+01 lineto +3.073871e+01 2.170671e+01 lineto +3.000751e+01 2.277231e+01 lineto +3.055465e+01 2.343123e+01 lineto +closepath +gsave +7.333731e-01 7.333731e-01 9.167164e-01 setrgbcolor +fill +grestore +newpath +3.055465e+01 2.343123e+01 moveto +3.127442e+01 2.235186e+01 lineto +3.073871e+01 2.170671e+01 lineto +3.000751e+01 2.277231e+01 lineto +3.055465e+01 2.343123e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.98675e+01 2.453197e+01 moveto +3.055465e+01 2.343123e+01 lineto +3.000751e+01 2.277231e+01 lineto +2.930943e+01 2.385991e+01 lineto +2.98675e+01 2.453197e+01 lineto +closepath +gsave +7.346986e-01 7.346986e-01 9.183733e-01 setrgbcolor +fill +grestore +newpath +2.98675e+01 2.453197e+01 moveto +3.055465e+01 2.343123e+01 lineto +3.000751e+01 2.277231e+01 lineto +2.930943e+01 2.385991e+01 lineto +2.98675e+01 2.453197e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.92136e+01 2.565304e+01 moveto +2.98675e+01 2.453197e+01 lineto +2.930943e+01 2.385991e+01 lineto +2.864515e+01 2.496847e+01 lineto +2.92136e+01 2.565304e+01 lineto +closepath +gsave +7.358382e-01 7.358382e-01 9.197978e-01 setrgbcolor +fill +grestore +newpath +2.92136e+01 2.565304e+01 moveto +2.98675e+01 2.453197e+01 lineto +2.930943e+01 2.385991e+01 lineto +2.864515e+01 2.496847e+01 lineto +2.92136e+01 2.565304e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.859359e+01 2.679337e+01 moveto +2.92136e+01 2.565304e+01 lineto +2.864515e+01 2.496847e+01 lineto +2.80153e+01 2.609694e+01 lineto +2.859359e+01 2.679337e+01 lineto +closepath +gsave +7.367914e-01 7.367914e-01 9.209893e-01 setrgbcolor +fill +grestore +newpath +2.859359e+01 2.679337e+01 moveto +2.92136e+01 2.565304e+01 lineto +2.864515e+01 2.496847e+01 lineto +2.80153e+01 2.609694e+01 lineto +2.859359e+01 2.679337e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.800805e+01 2.795189e+01 moveto +2.859359e+01 2.679337e+01 lineto +2.80153e+01 2.609694e+01 lineto +2.742045e+01 2.724426e+01 lineto +2.800805e+01 2.795189e+01 lineto +closepath +gsave +7.375577e-01 7.375577e-01 9.219472e-01 setrgbcolor +fill +grestore +newpath +2.800805e+01 2.795189e+01 moveto +2.859359e+01 2.679337e+01 lineto +2.80153e+01 2.609694e+01 lineto +2.742045e+01 2.724426e+01 lineto +2.800805e+01 2.795189e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.745754e+01 2.91275e+01 moveto +2.800805e+01 2.795189e+01 lineto +2.742045e+01 2.724426e+01 lineto +2.686119e+01 2.840934e+01 lineto +2.745754e+01 2.91275e+01 lineto +closepath +gsave +7.381369e-01 7.381369e-01 9.226711e-01 setrgbcolor +fill +grestore +newpath +2.745754e+01 2.91275e+01 moveto +2.800805e+01 2.795189e+01 lineto +2.742045e+01 2.724426e+01 lineto +2.686119e+01 2.840934e+01 lineto +2.745754e+01 2.91275e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.694257e+01 3.031908e+01 moveto +2.745754e+01 2.91275e+01 lineto +2.686119e+01 2.840934e+01 lineto +2.633804e+01 2.959107e+01 lineto +2.694257e+01 3.031908e+01 lineto +closepath +gsave +7.385285e-01 7.385285e-01 9.231607e-01 setrgbcolor +fill +grestore +newpath +2.694257e+01 3.031908e+01 moveto +2.745754e+01 2.91275e+01 lineto +2.686119e+01 2.840934e+01 lineto +2.633804e+01 2.959107e+01 lineto +2.694257e+01 3.031908e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.646363e+01 3.15255e+01 moveto +2.694257e+01 3.031908e+01 lineto +2.633804e+01 2.959107e+01 lineto +2.58515e+01 3.078833e+01 lineto +2.646363e+01 3.15255e+01 lineto +closepath +gsave +7.387326e-01 7.387326e-01 9.234157e-01 setrgbcolor +fill +grestore +newpath +2.646363e+01 3.15255e+01 moveto +2.694257e+01 3.031908e+01 lineto +2.633804e+01 2.959107e+01 lineto +2.58515e+01 3.078833e+01 lineto +2.646363e+01 3.15255e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.602118e+01 3.274564e+01 moveto +2.646363e+01 3.15255e+01 lineto +2.58515e+01 3.078833e+01 lineto +2.540202e+01 3.2e+01 lineto +2.602118e+01 3.274564e+01 lineto +closepath +gsave +7.38749e-01 7.38749e-01 9.234362e-01 setrgbcolor +fill +grestore +newpath +2.602118e+01 3.274564e+01 moveto +2.646363e+01 3.15255e+01 lineto +2.58515e+01 3.078833e+01 lineto +2.540202e+01 3.2e+01 lineto +2.602118e+01 3.274564e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.37036e+01 4.020012e+00 moveto +6.49958e+01 4.0e+00 lineto +6.499576e+01 3.999921e+00 lineto +6.369133e+01 3.995601e+00 lineto +6.37036e+01 4.020012e+00 lineto +closepath +gsave +6.116218e-01 6.116218e-01 7.645273e-01 setrgbcolor +fill +grestore +newpath +6.37036e+01 4.020012e+00 moveto +6.49958e+01 4.0e+00 lineto +6.499576e+01 3.999921e+00 lineto +6.369133e+01 3.995601e+00 lineto +6.37036e+01 4.020012e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.241263e+01 4.079772e+00 moveto +6.37036e+01 4.020012e+00 lineto +6.369133e+01 3.995601e+00 lineto +6.238813e+01 4.031051e+00 lineto +6.241263e+01 4.079772e+00 lineto +closepath +gsave +6.168772e-01 6.168772e-01 7.710965e-01 setrgbcolor +fill +grestore +newpath +6.241263e+01 4.079772e+00 moveto +6.37036e+01 4.020012e+00 lineto +6.369133e+01 3.995601e+00 lineto +6.238813e+01 4.031051e+00 lineto +6.241263e+01 4.079772e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.112412e+01 4.179221e+00 moveto +6.241263e+01 4.079772e+00 lineto +6.238813e+01 4.031051e+00 lineto +6.108741e+01 4.106238e+00 lineto +6.112412e+01 4.179221e+00 lineto +closepath +gsave +6.220749e-01 6.220749e-01 7.775937e-01 setrgbcolor +fill +grestore +newpath +6.112412e+01 4.179221e+00 moveto +6.241263e+01 4.079772e+00 lineto +6.238813e+01 4.031051e+00 lineto +6.108741e+01 4.106238e+00 lineto +6.112412e+01 4.179221e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.983927e+01 4.318268e+00 moveto +6.112412e+01 4.179221e+00 lineto +6.108741e+01 4.106238e+00 lineto +5.979039e+01 4.22109e+00 lineto +5.983927e+01 4.318268e+00 lineto +closepath +gsave +6.272076e-01 6.272076e-01 7.840095e-01 setrgbcolor +fill +grestore +newpath +5.983927e+01 4.318268e+00 moveto +6.112412e+01 4.179221e+00 lineto +6.108741e+01 4.106238e+00 lineto +5.979039e+01 4.22109e+00 lineto +5.983927e+01 4.318268e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.85593e+01 4.496778e+00 moveto +5.983927e+01 4.318268e+00 lineto +5.979039e+01 4.22109e+00 lineto +5.84983e+01 4.375499e+00 lineto +5.85593e+01 4.496778e+00 lineto +closepath +gsave +6.322678e-01 6.322678e-01 7.903348e-01 setrgbcolor +fill +grestore +newpath +5.85593e+01 4.496778e+00 moveto +5.983927e+01 4.318268e+00 lineto +5.979039e+01 4.22109e+00 lineto +5.84983e+01 4.375499e+00 lineto +5.85593e+01 4.496778e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.728544e+01 4.714585e+00 moveto +5.85593e+01 4.496778e+00 lineto +5.84983e+01 4.375499e+00 lineto +5.721237e+01 4.569318e+00 lineto +5.728544e+01 4.714585e+00 lineto +closepath +gsave +6.372485e-01 6.372485e-01 7.965607e-01 setrgbcolor +fill +grestore +newpath +5.728544e+01 4.714585e+00 moveto +5.85593e+01 4.496778e+00 lineto +5.84983e+01 4.375499e+00 lineto +5.721237e+01 4.569318e+00 lineto +5.728544e+01 4.714585e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.601888e+01 4.97148e+00 moveto +5.728544e+01 4.714585e+00 lineto +5.721237e+01 4.569318e+00 lineto +5.593382e+01 4.802364e+00 lineto +5.601888e+01 4.97148e+00 lineto +closepath +gsave +6.421428e-01 6.421428e-01 8.026785e-01 setrgbcolor +fill +grestore +newpath +5.601888e+01 4.97148e+00 moveto +5.728544e+01 4.714585e+00 lineto +5.721237e+01 4.569318e+00 lineto +5.593382e+01 4.802364e+00 lineto +5.601888e+01 4.97148e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.476082e+01 5.267222e+00 moveto +5.601888e+01 4.97148e+00 lineto +5.593382e+01 4.802364e+00 lineto +5.466385e+01 5.074417e+00 lineto +5.476082e+01 5.267222e+00 lineto +closepath +gsave +6.46944e-01 6.46944e-01 8.0868e-01 setrgbcolor +fill +grestore +newpath +5.476082e+01 5.267222e+00 moveto +5.601888e+01 4.97148e+00 lineto +5.593382e+01 4.802364e+00 lineto +5.466385e+01 5.074417e+00 lineto +5.476082e+01 5.267222e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.351246e+01 5.601531e+00 moveto +5.476082e+01 5.267222e+00 lineto +5.466385e+01 5.074417e+00 lineto +5.340366e+01 5.385218e+00 lineto +5.351246e+01 5.601531e+00 lineto +closepath +gsave +6.516458e-01 6.516458e-01 8.145572e-01 setrgbcolor +fill +grestore +newpath +5.351246e+01 5.601531e+00 moveto +5.476082e+01 5.267222e+00 lineto +5.466385e+01 5.074417e+00 lineto +5.340366e+01 5.385218e+00 lineto +5.351246e+01 5.601531e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.227497e+01 5.974088e+00 moveto +5.351246e+01 5.601531e+00 lineto +5.340366e+01 5.385218e+00 lineto +5.215445e+01 5.734474e+00 lineto +5.227497e+01 5.974088e+00 lineto +closepath +gsave +6.56242e-01 6.56242e-01 8.203024e-01 setrgbcolor +fill +grestore +newpath +5.227497e+01 5.974088e+00 moveto +5.351246e+01 5.601531e+00 lineto +5.340366e+01 5.385218e+00 lineto +5.215445e+01 5.734474e+00 lineto +5.227497e+01 5.974088e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.104953e+01 6.384543e+00 moveto +5.227497e+01 5.974088e+00 lineto +5.215445e+01 5.734474e+00 lineto +5.091741e+01 6.121853e+00 lineto +5.104953e+01 6.384543e+00 lineto +closepath +gsave +6.607267e-01 6.607267e-01 8.259084e-01 setrgbcolor +fill +grestore +newpath +5.104953e+01 6.384543e+00 moveto +5.227497e+01 5.974088e+00 lineto +5.215445e+01 5.734474e+00 lineto +5.091741e+01 6.121853e+00 lineto +5.104953e+01 6.384543e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.98373e+01 6.832506e+00 moveto +5.104953e+01 6.384543e+00 lineto +5.091741e+01 6.121853e+00 lineto +4.96937e+01 6.54699e+00 lineto +4.98373e+01 6.832506e+00 lineto +closepath +gsave +6.650944e-01 6.650944e-01 8.31368e-01 setrgbcolor +fill +grestore +newpath +4.98373e+01 6.832506e+00 moveto +5.104953e+01 6.384543e+00 lineto +5.091741e+01 6.121853e+00 lineto +4.96937e+01 6.54699e+00 lineto +4.98373e+01 6.832506e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.863943e+01 7.317554e+00 moveto +4.98373e+01 6.832506e+00 lineto +4.96937e+01 6.54699e+00 lineto +4.848448e+01 7.009481e+00 lineto +4.863943e+01 7.317554e+00 lineto +closepath +gsave +6.693398e-01 6.693398e-01 8.366748e-01 setrgbcolor +fill +grestore +newpath +4.863943e+01 7.317554e+00 moveto +4.98373e+01 6.832506e+00 lineto +4.96937e+01 6.54699e+00 lineto +4.848448e+01 7.009481e+00 lineto +4.863943e+01 7.317554e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.745704e+01 7.839226e+00 moveto +4.863943e+01 7.317554e+00 lineto +4.848448e+01 7.009481e+00 lineto +4.72909e+01 7.508889e+00 lineto +4.745704e+01 7.839226e+00 lineto +closepath +gsave +6.734579e-01 6.734579e-01 8.418224e-01 setrgbcolor +fill +grestore +newpath +4.745704e+01 7.839226e+00 moveto +4.863943e+01 7.317554e+00 lineto +4.848448e+01 7.009481e+00 lineto +4.72909e+01 7.508889e+00 lineto +4.745704e+01 7.839226e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.629127e+01 8.397029e+00 moveto +4.745704e+01 7.839226e+00 lineto +4.72909e+01 7.508889e+00 lineto +4.611408e+01 8.04474e+00 lineto +4.629127e+01 8.397029e+00 lineto +closepath +gsave +6.77444e-01 6.77444e-01 8.46805e-01 setrgbcolor +fill +grestore +newpath +4.629127e+01 8.397029e+00 moveto +4.745704e+01 7.839226e+00 lineto +4.72909e+01 7.508889e+00 lineto +4.611408e+01 8.04474e+00 lineto +4.629127e+01 8.397029e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.514321e+01 8.990435e+00 moveto +4.629127e+01 8.397029e+00 lineto +4.611408e+01 8.04474e+00 lineto +4.495515e+01 8.616528e+00 lineto +4.514321e+01 8.990435e+00 lineto +closepath +gsave +6.812936e-01 6.812936e-01 8.516169e-01 setrgbcolor +fill +grestore +newpath +4.514321e+01 8.990435e+00 moveto +4.629127e+01 8.397029e+00 lineto +4.611408e+01 8.04474e+00 lineto +4.495515e+01 8.616528e+00 lineto +4.514321e+01 8.990435e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.401395e+01 9.618882e+00 moveto +4.514321e+01 8.990435e+00 lineto +4.495515e+01 8.616528e+00 lineto +4.38152e+01 9.223711e+00 lineto +4.401395e+01 9.618882e+00 lineto +closepath +gsave +6.850025e-01 6.850025e-01 8.562531e-01 setrgbcolor +fill +grestore +newpath +4.401395e+01 9.618882e+00 moveto +4.514321e+01 8.990435e+00 lineto +4.495515e+01 8.616528e+00 lineto +4.38152e+01 9.223711e+00 lineto +4.401395e+01 9.618882e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.290456e+01 1.028177e+01 moveto +4.401395e+01 9.618882e+00 lineto +4.38152e+01 9.223711e+00 lineto +4.26953e+01 9.865714e+00 lineto +4.290456e+01 1.028177e+01 lineto +closepath +gsave +6.885669e-01 6.885669e-01 8.607086e-01 setrgbcolor +fill +grestore +newpath +4.290456e+01 1.028177e+01 moveto +4.401395e+01 9.618882e+00 lineto +4.38152e+01 9.223711e+00 lineto +4.26953e+01 9.865714e+00 lineto +4.290456e+01 1.028177e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.181609e+01 1.097849e+01 moveto +4.290456e+01 1.028177e+01 lineto +4.26953e+01 9.865714e+00 lineto +4.159652e+01 1.054193e+01 lineto +4.181609e+01 1.097849e+01 lineto +closepath +gsave +6.919832e-01 6.919832e-01 8.64979e-01 setrgbcolor +fill +grestore +newpath +4.181609e+01 1.097849e+01 moveto +4.290456e+01 1.028177e+01 lineto +4.26953e+01 9.865714e+00 lineto +4.159652e+01 1.054193e+01 lineto +4.181609e+01 1.097849e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.074957e+01 1.170836e+01 moveto +4.181609e+01 1.097849e+01 lineto +4.159652e+01 1.054193e+01 lineto +4.05199e+01 1.125172e+01 lineto +4.074957e+01 1.170836e+01 lineto +closepath +gsave +6.952481e-01 6.952481e-01 8.690601e-01 setrgbcolor +fill +grestore +newpath +4.074957e+01 1.170836e+01 moveto +4.181609e+01 1.097849e+01 lineto +4.159652e+01 1.054193e+01 lineto +4.05199e+01 1.125172e+01 lineto +4.074957e+01 1.170836e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.970602e+01 1.247069e+01 moveto +4.074957e+01 1.170836e+01 lineto +4.05199e+01 1.125172e+01 lineto +3.946646e+01 1.19944e+01 lineto +3.970602e+01 1.247069e+01 lineto +closepath +gsave +6.983584e-01 6.983584e-01 8.72948e-01 setrgbcolor +fill +grestore +newpath +3.970602e+01 1.247069e+01 moveto +4.074957e+01 1.170836e+01 lineto +4.05199e+01 1.125172e+01 lineto +3.946646e+01 1.19944e+01 lineto +3.970602e+01 1.247069e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.868641e+01 1.326478e+01 moveto +3.970602e+01 1.247069e+01 lineto +3.946646e+01 1.19944e+01 lineto +3.84372e+01 1.276929e+01 lineto +3.868641e+01 1.326478e+01 lineto +closepath +gsave +7.013113e-01 7.013113e-01 8.766391e-01 setrgbcolor +fill +grestore +newpath +3.868641e+01 1.326478e+01 moveto +3.970602e+01 1.247069e+01 lineto +3.946646e+01 1.19944e+01 lineto +3.84372e+01 1.276929e+01 lineto +3.868641e+01 1.326478e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.769171e+01 1.408985e+01 moveto +3.868641e+01 1.326478e+01 lineto +3.84372e+01 1.276929e+01 lineto +3.743308e+01 1.357563e+01 lineto +3.769171e+01 1.408985e+01 lineto +closepath +gsave +7.041043e-01 7.041043e-01 8.801304e-01 setrgbcolor +fill +grestore +newpath +3.769171e+01 1.408985e+01 moveto +3.868641e+01 1.326478e+01 lineto +3.84372e+01 1.276929e+01 lineto +3.743308e+01 1.357563e+01 lineto +3.769171e+01 1.408985e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.672287e+01 1.494515e+01 moveto +3.769171e+01 1.408985e+01 lineto +3.743308e+01 1.357563e+01 lineto +3.645506e+01 1.441268e+01 lineto +3.672287e+01 1.494515e+01 lineto +closepath +gsave +7.067349e-01 7.067349e-01 8.834187e-01 setrgbcolor +fill +grestore +newpath +3.672287e+01 1.494515e+01 moveto +3.769171e+01 1.408985e+01 lineto +3.743308e+01 1.357563e+01 lineto +3.645506e+01 1.441268e+01 lineto +3.672287e+01 1.494515e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.57808e+01 1.582984e+01 moveto +3.672287e+01 1.494515e+01 lineto +3.645506e+01 1.441268e+01 lineto +3.550408e+01 1.527964e+01 lineto +3.57808e+01 1.582984e+01 lineto +closepath +gsave +7.092011e-01 7.092011e-01 8.865014e-01 setrgbcolor +fill +grestore +newpath +3.57808e+01 1.582984e+01 moveto +3.672287e+01 1.494515e+01 lineto +3.645506e+01 1.441268e+01 lineto +3.550408e+01 1.527964e+01 lineto +3.57808e+01 1.582984e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.48664e+01 1.67431e+01 moveto +3.57808e+01 1.582984e+01 lineto +3.550408e+01 1.527964e+01 lineto +3.458101e+01 1.617568e+01 lineto +3.48664e+01 1.67431e+01 lineto +closepath +gsave +7.115009e-01 7.115009e-01 8.893762e-01 setrgbcolor +fill +grestore +newpath +3.48664e+01 1.67431e+01 moveto +3.57808e+01 1.582984e+01 lineto +3.550408e+01 1.527964e+01 lineto +3.458101e+01 1.617568e+01 lineto +3.48664e+01 1.67431e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.398053e+01 1.768406e+01 moveto +3.48664e+01 1.67431e+01 lineto +3.458101e+01 1.617568e+01 lineto +3.368675e+01 1.709995e+01 lineto +3.398053e+01 1.768406e+01 lineto +closepath +gsave +7.136326e-01 7.136326e-01 8.920408e-01 setrgbcolor +fill +grestore +newpath +3.398053e+01 1.768406e+01 moveto +3.48664e+01 1.67431e+01 lineto +3.458101e+01 1.617568e+01 lineto +3.368675e+01 1.709995e+01 lineto +3.398053e+01 1.768406e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.312403e+01 1.865183e+01 moveto +3.398053e+01 1.768406e+01 lineto +3.368675e+01 1.709995e+01 lineto +3.282214e+01 1.80516e+01 lineto +3.312403e+01 1.865183e+01 lineto +closepath +gsave +7.155946e-01 7.155946e-01 8.944932e-01 setrgbcolor +fill +grestore +newpath +3.312403e+01 1.865183e+01 moveto +3.398053e+01 1.768406e+01 lineto +3.368675e+01 1.709995e+01 lineto +3.282214e+01 1.80516e+01 lineto +3.312403e+01 1.865183e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.229771e+01 1.964549e+01 moveto +3.312403e+01 1.865183e+01 lineto +3.282214e+01 1.80516e+01 lineto +3.198799e+01 1.90297e+01 lineto +3.229771e+01 1.964549e+01 lineto +closepath +gsave +7.173855e-01 7.173855e-01 8.967319e-01 setrgbcolor +fill +grestore +newpath +3.229771e+01 1.964549e+01 moveto +3.312403e+01 1.865183e+01 lineto +3.282214e+01 1.80516e+01 lineto +3.198799e+01 1.90297e+01 lineto +3.229771e+01 1.964549e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.150235e+01 2.066411e+01 moveto +3.229771e+01 1.964549e+01 lineto +3.198799e+01 1.90297e+01 lineto +3.11851e+01 2.003334e+01 lineto +3.150235e+01 2.066411e+01 lineto +closepath +gsave +7.190042e-01 7.190042e-01 8.987552e-01 setrgbcolor +fill +grestore +newpath +3.150235e+01 2.066411e+01 moveto +3.229771e+01 1.964549e+01 lineto +3.198799e+01 1.90297e+01 lineto +3.11851e+01 2.003334e+01 lineto +3.150235e+01 2.066411e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.073871e+01 2.170671e+01 moveto +3.150235e+01 2.066411e+01 lineto +3.11851e+01 2.003334e+01 lineto +3.041423e+01 2.106156e+01 lineto +3.073871e+01 2.170671e+01 lineto +closepath +gsave +7.204495e-01 7.204495e-01 9.005618e-01 setrgbcolor +fill +grestore +newpath +3.073871e+01 2.170671e+01 moveto +3.150235e+01 2.066411e+01 lineto +3.11851e+01 2.003334e+01 lineto +3.041423e+01 2.106156e+01 lineto +3.073871e+01 2.170671e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.000751e+01 2.277231e+01 moveto +3.073871e+01 2.170671e+01 lineto +3.041423e+01 2.106156e+01 lineto +2.96761e+01 2.21134e+01 lineto +3.000751e+01 2.277231e+01 lineto +closepath +gsave +7.217206e-01 7.217206e-01 9.021507e-01 setrgbcolor +fill +grestore +newpath +3.000751e+01 2.277231e+01 moveto +3.073871e+01 2.170671e+01 lineto +3.041423e+01 2.106156e+01 lineto +2.96761e+01 2.21134e+01 lineto +3.000751e+01 2.277231e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.930943e+01 2.385991e+01 moveto +3.000751e+01 2.277231e+01 lineto +2.96761e+01 2.21134e+01 lineto +2.897142e+01 2.318785e+01 lineto +2.930943e+01 2.385991e+01 lineto +closepath +gsave +7.228166e-01 7.228166e-01 9.035208e-01 setrgbcolor +fill +grestore +newpath +2.930943e+01 2.385991e+01 moveto +3.000751e+01 2.277231e+01 lineto +2.96761e+01 2.21134e+01 lineto +2.897142e+01 2.318785e+01 lineto +2.930943e+01 2.385991e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.864515e+01 2.496847e+01 moveto +2.930943e+01 2.385991e+01 lineto +2.897142e+01 2.318785e+01 lineto +2.830085e+01 2.42839e+01 lineto +2.864515e+01 2.496847e+01 lineto +closepath +gsave +7.23737e-01 7.23737e-01 9.046713e-01 setrgbcolor +fill +grestore +newpath +2.864515e+01 2.496847e+01 moveto +2.930943e+01 2.385991e+01 lineto +2.897142e+01 2.318785e+01 lineto +2.830085e+01 2.42839e+01 lineto +2.864515e+01 2.496847e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.80153e+01 2.609694e+01 moveto +2.864515e+01 2.496847e+01 lineto +2.830085e+01 2.42839e+01 lineto +2.766502e+01 2.540051e+01 lineto +2.80153e+01 2.609694e+01 lineto +closepath +gsave +7.244812e-01 7.244812e-01 9.056015e-01 setrgbcolor +fill +grestore +newpath +2.80153e+01 2.609694e+01 moveto +2.864515e+01 2.496847e+01 lineto +2.830085e+01 2.42839e+01 lineto +2.766502e+01 2.540051e+01 lineto +2.80153e+01 2.609694e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.742045e+01 2.724426e+01 moveto +2.80153e+01 2.609694e+01 lineto +2.766502e+01 2.540051e+01 lineto +2.706455e+01 2.653663e+01 lineto +2.742045e+01 2.724426e+01 lineto +closepath +gsave +7.250488e-01 7.250488e-01 9.06311e-01 setrgbcolor +fill +grestore +newpath +2.742045e+01 2.724426e+01 moveto +2.80153e+01 2.609694e+01 lineto +2.766502e+01 2.540051e+01 lineto +2.706455e+01 2.653663e+01 lineto +2.742045e+01 2.724426e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.686119e+01 2.840934e+01 moveto +2.742045e+01 2.724426e+01 lineto +2.706455e+01 2.653663e+01 lineto +2.649999e+01 2.769117e+01 lineto +2.686119e+01 2.840934e+01 lineto +closepath +gsave +7.254395e-01 7.254395e-01 9.067993e-01 setrgbcolor +fill +grestore +newpath +2.686119e+01 2.840934e+01 moveto +2.742045e+01 2.724426e+01 lineto +2.706455e+01 2.653663e+01 lineto +2.649999e+01 2.769117e+01 lineto +2.686119e+01 2.840934e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.633804e+01 2.959107e+01 moveto +2.686119e+01 2.840934e+01 lineto +2.649999e+01 2.769117e+01 lineto +2.597188e+01 2.886305e+01 lineto +2.633804e+01 2.959107e+01 lineto +closepath +gsave +7.25653e-01 7.25653e-01 9.070663e-01 setrgbcolor +fill +grestore +newpath +2.633804e+01 2.959107e+01 moveto +2.686119e+01 2.840934e+01 lineto +2.649999e+01 2.769117e+01 lineto +2.597188e+01 2.886305e+01 lineto +2.633804e+01 2.959107e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.58515e+01 3.078833e+01 moveto +2.633804e+01 2.959107e+01 lineto +2.597188e+01 2.886305e+01 lineto +2.548073e+01 3.005116e+01 lineto +2.58515e+01 3.078833e+01 lineto +closepath +gsave +7.256893e-01 7.256893e-01 9.071116e-01 setrgbcolor +fill +grestore +newpath +2.58515e+01 3.078833e+01 moveto +2.633804e+01 2.959107e+01 lineto +2.597188e+01 2.886305e+01 lineto +2.548073e+01 3.005116e+01 lineto +2.58515e+01 3.078833e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.540202e+01 3.2e+01 moveto +2.58515e+01 3.078833e+01 lineto +2.548073e+01 3.005116e+01 lineto +2.5027e+01 3.125436e+01 lineto +2.540202e+01 3.2e+01 lineto +closepath +gsave +7.255484e-01 7.255484e-01 9.069355e-01 setrgbcolor +fill +grestore +newpath +2.540202e+01 3.2e+01 moveto +2.58515e+01 3.078833e+01 lineto +2.548073e+01 3.005116e+01 lineto +2.5027e+01 3.125436e+01 lineto +2.540202e+01 3.2e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.369133e+01 3.995601e+00 moveto +6.499576e+01 3.999921e+00 lineto +6.499575e+01 3.999843e+00 lineto +6.368712e+01 3.97134e+00 lineto +6.369133e+01 3.995601e+00 lineto +closepath +gsave +6.113865e-01 6.113865e-01 7.642332e-01 setrgbcolor +fill +grestore +newpath +6.369133e+01 3.995601e+00 moveto +6.499576e+01 3.999921e+00 lineto +6.499575e+01 3.999843e+00 lineto +6.368712e+01 3.97134e+00 lineto +6.369133e+01 3.995601e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.238813e+01 4.031051e+00 moveto +6.369133e+01 3.995601e+00 lineto +6.368712e+01 3.97134e+00 lineto +6.237973e+01 3.982631e+00 lineto +6.238813e+01 4.031051e+00 lineto +closepath +gsave +6.16172e-01 6.16172e-01 7.70215e-01 setrgbcolor +fill +grestore +newpath +6.238813e+01 4.031051e+00 moveto +6.369133e+01 3.995601e+00 lineto +6.368712e+01 3.97134e+00 lineto +6.237973e+01 3.982631e+00 lineto +6.238813e+01 4.031051e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.108741e+01 4.106238e+00 moveto +6.238813e+01 4.031051e+00 lineto +6.237973e+01 3.982631e+00 lineto +6.107482e+01 4.033704e+00 lineto +6.108741e+01 4.106238e+00 lineto +closepath +gsave +6.208976e-01 6.208976e-01 7.76122e-01 setrgbcolor +fill +grestore +newpath +6.108741e+01 4.106238e+00 moveto +6.238813e+01 4.031051e+00 lineto +6.237973e+01 3.982631e+00 lineto +6.107482e+01 4.033704e+00 lineto +6.108741e+01 4.106238e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.979039e+01 4.22109e+00 moveto +6.108741e+01 4.106238e+00 lineto +6.107482e+01 4.033704e+00 lineto +5.977363e+01 4.124512e+00 lineto +5.979039e+01 4.22109e+00 lineto +closepath +gsave +6.255568e-01 6.255568e-01 7.819461e-01 setrgbcolor +fill +grestore +newpath +5.979039e+01 4.22109e+00 moveto +6.108741e+01 4.106238e+00 lineto +6.107482e+01 4.033704e+00 lineto +5.977363e+01 4.124512e+00 lineto +5.979039e+01 4.22109e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.84983e+01 4.375499e+00 moveto +5.979039e+01 4.22109e+00 lineto +5.977363e+01 4.124512e+00 lineto +5.847739e+01 4.254967e+00 lineto +5.84983e+01 4.375499e+00 lineto +closepath +gsave +6.301433e-01 6.301433e-01 7.876791e-01 setrgbcolor +fill +grestore +newpath +5.84983e+01 4.375499e+00 moveto +5.979039e+01 4.22109e+00 lineto +5.977363e+01 4.124512e+00 lineto +5.847739e+01 4.254967e+00 lineto +5.84983e+01 4.375499e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.721237e+01 4.569318e+00 moveto +5.84983e+01 4.375499e+00 lineto +5.847739e+01 4.254967e+00 lineto +5.718732e+01 4.424947e+00 lineto +5.721237e+01 4.569318e+00 lineto +closepath +gsave +6.346508e-01 6.346508e-01 7.933135e-01 setrgbcolor +fill +grestore +newpath +5.721237e+01 4.569318e+00 moveto +5.84983e+01 4.375499e+00 lineto +5.847739e+01 4.254967e+00 lineto +5.718732e+01 4.424947e+00 lineto +5.721237e+01 4.569318e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.593382e+01 4.802364e+00 moveto +5.721237e+01 4.569318e+00 lineto +5.718732e+01 4.424947e+00 lineto +5.590466e+01 4.634291e+00 lineto +5.593382e+01 4.802364e+00 lineto +closepath +gsave +6.390733e-01 6.390733e-01 7.988416e-01 setrgbcolor +fill +grestore +newpath +5.593382e+01 4.802364e+00 moveto +5.721237e+01 4.569318e+00 lineto +5.718732e+01 4.424947e+00 lineto +5.590466e+01 4.634291e+00 lineto +5.593382e+01 4.802364e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.466385e+01 5.074417e+00 moveto +5.593382e+01 4.802364e+00 lineto +5.590466e+01 4.634291e+00 lineto +5.46306e+01 4.8828e+00 lineto +5.466385e+01 5.074417e+00 lineto +closepath +gsave +6.43405e-01 6.43405e-01 8.042562e-01 setrgbcolor +fill +grestore +newpath +5.466385e+01 5.074417e+00 moveto +5.593382e+01 4.802364e+00 lineto +5.590466e+01 4.634291e+00 lineto +5.46306e+01 4.8828e+00 lineto +5.466385e+01 5.074417e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.340366e+01 5.385218e+00 moveto +5.466385e+01 5.074417e+00 lineto +5.46306e+01 4.8828e+00 lineto +5.336636e+01 5.170239e+00 lineto +5.340366e+01 5.385218e+00 lineto +closepath +gsave +6.476403e-01 6.476403e-01 8.095504e-01 setrgbcolor +fill +grestore +newpath +5.340366e+01 5.385218e+00 moveto +5.466385e+01 5.074417e+00 lineto +5.46306e+01 4.8828e+00 lineto +5.336636e+01 5.170239e+00 lineto +5.340366e+01 5.385218e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.215445e+01 5.734474e+00 moveto +5.340366e+01 5.385218e+00 lineto +5.336636e+01 5.170239e+00 lineto +5.211313e+01 5.496336e+00 lineto +5.215445e+01 5.734474e+00 lineto +closepath +gsave +6.51774e-01 6.51774e-01 8.147175e-01 setrgbcolor +fill +grestore +newpath +5.215445e+01 5.734474e+00 moveto +5.340366e+01 5.385218e+00 lineto +5.336636e+01 5.170239e+00 lineto +5.211313e+01 5.496336e+00 lineto +5.215445e+01 5.734474e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.091741e+01 6.121853e+00 moveto +5.215445e+01 5.734474e+00 lineto +5.211313e+01 5.496336e+00 lineto +5.087211e+01 5.860783e+00 lineto +5.091741e+01 6.121853e+00 lineto +closepath +gsave +6.558007e-01 6.558007e-01 8.197509e-01 setrgbcolor +fill +grestore +newpath +5.091741e+01 6.121853e+00 moveto +5.215445e+01 5.734474e+00 lineto +5.211313e+01 5.496336e+00 lineto +5.087211e+01 5.860783e+00 lineto +5.091741e+01 6.121853e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.96937e+01 6.54699e+00 moveto +5.091741e+01 6.121853e+00 lineto +5.087211e+01 5.860783e+00 lineto +4.964446e+01 6.263234e+00 lineto +4.96937e+01 6.54699e+00 lineto +closepath +gsave +6.597158e-01 6.597158e-01 8.246447e-01 setrgbcolor +fill +grestore +newpath +4.96937e+01 6.54699e+00 moveto +5.091741e+01 6.121853e+00 lineto +5.087211e+01 5.860783e+00 lineto +4.964446e+01 6.263234e+00 lineto +4.96937e+01 6.54699e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.848448e+01 7.009481e+00 moveto +4.96937e+01 6.54699e+00 lineto +4.964446e+01 6.263234e+00 lineto +4.843136e+01 6.703308e+00 lineto +4.848448e+01 7.009481e+00 lineto +closepath +gsave +6.635144e-01 6.635144e-01 8.29393e-01 setrgbcolor +fill +grestore +newpath +4.848448e+01 7.009481e+00 moveto +4.96937e+01 6.54699e+00 lineto +4.964446e+01 6.263234e+00 lineto +4.843136e+01 6.703308e+00 lineto +4.848448e+01 7.009481e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.72909e+01 7.508889e+00 moveto +4.848448e+01 7.009481e+00 lineto +4.843136e+01 6.703308e+00 lineto +4.723394e+01 7.180588e+00 lineto +4.72909e+01 7.508889e+00 lineto +closepath +gsave +6.671923e-01 6.671923e-01 8.339904e-01 setrgbcolor +fill +grestore +newpath +4.72909e+01 7.508889e+00 moveto +4.848448e+01 7.009481e+00 lineto +4.843136e+01 6.703308e+00 lineto +4.723394e+01 7.180588e+00 lineto +4.72909e+01 7.508889e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.611408e+01 8.04474e+00 moveto +4.72909e+01 7.508889e+00 lineto +4.723394e+01 7.180588e+00 lineto +4.605334e+01 7.694623e+00 lineto +4.611408e+01 8.04474e+00 lineto +closepath +gsave +6.707452e-01 6.707452e-01 8.384315e-01 setrgbcolor +fill +grestore +newpath +4.611408e+01 8.04474e+00 moveto +4.72909e+01 7.508889e+00 lineto +4.723394e+01 7.180588e+00 lineto +4.605334e+01 7.694623e+00 lineto +4.611408e+01 8.04474e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.495515e+01 8.616528e+00 moveto +4.611408e+01 8.04474e+00 lineto +4.605334e+01 7.694623e+00 lineto +4.489067e+01 8.244926e+00 lineto +4.495515e+01 8.616528e+00 lineto +closepath +gsave +6.741693e-01 6.741693e-01 8.427116e-01 setrgbcolor +fill +grestore +newpath +4.495515e+01 8.616528e+00 moveto +4.611408e+01 8.04474e+00 lineto +4.605334e+01 7.694623e+00 lineto +4.489067e+01 8.244926e+00 lineto +4.495515e+01 8.616528e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.38152e+01 9.223711e+00 moveto +4.495515e+01 8.616528e+00 lineto +4.489067e+01 8.244926e+00 lineto +4.374705e+01 8.830976e+00 lineto +4.38152e+01 9.223711e+00 lineto +closepath +gsave +6.774607e-01 6.774607e-01 8.468259e-01 setrgbcolor +fill +grestore +newpath +4.38152e+01 9.223711e+00 moveto +4.495515e+01 8.616528e+00 lineto +4.489067e+01 8.244926e+00 lineto +4.374705e+01 8.830976e+00 lineto +4.38152e+01 9.223711e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.26953e+01 9.865714e+00 moveto +4.38152e+01 9.223711e+00 lineto +4.374705e+01 8.830976e+00 lineto +4.262356e+01 9.452218e+00 lineto +4.26953e+01 9.865714e+00 lineto +closepath +gsave +6.806162e-01 6.806162e-01 8.507702e-01 setrgbcolor +fill +grestore +newpath +4.26953e+01 9.865714e+00 moveto +4.38152e+01 9.223711e+00 lineto +4.374705e+01 8.830976e+00 lineto +4.262356e+01 9.452218e+00 lineto +4.26953e+01 9.865714e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.159652e+01 1.054193e+01 moveto +4.26953e+01 9.865714e+00 lineto +4.262356e+01 9.452218e+00 lineto +4.152124e+01 1.010806e+01 lineto +4.159652e+01 1.054193e+01 lineto +closepath +gsave +6.836324e-01 6.836324e-01 8.545405e-01 setrgbcolor +fill +grestore +newpath +4.159652e+01 1.054193e+01 moveto +4.26953e+01 9.865714e+00 lineto +4.262356e+01 9.452218e+00 lineto +4.152124e+01 1.010806e+01 lineto +4.159652e+01 1.054193e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.05199e+01 1.125172e+01 moveto +4.159652e+01 1.054193e+01 lineto +4.152124e+01 1.010806e+01 lineto +4.044116e+01 1.079789e+01 lineto +4.05199e+01 1.125172e+01 lineto +closepath +gsave +6.865064e-01 6.865064e-01 8.58133e-01 setrgbcolor +fill +grestore +newpath +4.05199e+01 1.125172e+01 moveto +4.159652e+01 1.054193e+01 lineto +4.152124e+01 1.010806e+01 lineto +4.044116e+01 1.079789e+01 lineto +4.05199e+01 1.125172e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.946646e+01 1.19944e+01 moveto +4.05199e+01 1.125172e+01 lineto +4.044116e+01 1.079789e+01 lineto +3.938433e+01 1.152105e+01 lineto +3.946646e+01 1.19944e+01 lineto +closepath +gsave +6.892354e-01 6.892354e-01 8.615443e-01 setrgbcolor +fill +grestore +newpath +3.946646e+01 1.19944e+01 moveto +4.05199e+01 1.125172e+01 lineto +4.044116e+01 1.079789e+01 lineto +3.938433e+01 1.152105e+01 lineto +3.946646e+01 1.19944e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.84372e+01 1.276929e+01 moveto +3.946646e+01 1.19944e+01 lineto +3.938433e+01 1.152105e+01 lineto +3.835175e+01 1.227685e+01 lineto +3.84372e+01 1.276929e+01 lineto +closepath +gsave +6.918168e-01 6.918168e-01 8.64771e-01 setrgbcolor +fill +grestore +newpath +3.84372e+01 1.276929e+01 moveto +3.946646e+01 1.19944e+01 lineto +3.938433e+01 1.152105e+01 lineto +3.835175e+01 1.227685e+01 lineto +3.84372e+01 1.276929e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.743308e+01 1.357563e+01 moveto +3.84372e+01 1.276929e+01 lineto +3.835175e+01 1.227685e+01 lineto +3.734441e+01 1.306459e+01 lineto +3.743308e+01 1.357563e+01 lineto +closepath +gsave +6.942484e-01 6.942484e-01 8.678104e-01 setrgbcolor +fill +grestore +newpath +3.743308e+01 1.357563e+01 moveto +3.84372e+01 1.276929e+01 lineto +3.835175e+01 1.227685e+01 lineto +3.734441e+01 1.306459e+01 lineto +3.743308e+01 1.357563e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.645506e+01 1.441268e+01 moveto +3.743308e+01 1.357563e+01 lineto +3.734441e+01 1.306459e+01 lineto +3.636325e+01 1.38835e+01 lineto +3.645506e+01 1.441268e+01 lineto +closepath +gsave +6.965278e-01 6.965278e-01 8.706598e-01 setrgbcolor +fill +grestore +newpath +3.645506e+01 1.441268e+01 moveto +3.743308e+01 1.357563e+01 lineto +3.734441e+01 1.306459e+01 lineto +3.636325e+01 1.38835e+01 lineto +3.645506e+01 1.441268e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.550408e+01 1.527964e+01 moveto +3.645506e+01 1.441268e+01 lineto +3.636325e+01 1.38835e+01 lineto +3.54092e+01 1.473283e+01 lineto +3.550408e+01 1.527964e+01 lineto +closepath +gsave +6.986532e-01 6.986532e-01 8.733165e-01 setrgbcolor +fill +grestore +newpath +3.550408e+01 1.527964e+01 moveto +3.645506e+01 1.441268e+01 lineto +3.636325e+01 1.38835e+01 lineto +3.54092e+01 1.473283e+01 lineto +3.550408e+01 1.527964e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.458101e+01 1.617568e+01 moveto +3.550408e+01 1.527964e+01 lineto +3.54092e+01 1.473283e+01 lineto +3.448317e+01 1.561175e+01 lineto +3.458101e+01 1.617568e+01 lineto +closepath +gsave +7.006228e-01 7.006228e-01 8.757786e-01 setrgbcolor +fill +grestore +newpath +3.458101e+01 1.617568e+01 moveto +3.550408e+01 1.527964e+01 lineto +3.54092e+01 1.473283e+01 lineto +3.448317e+01 1.561175e+01 lineto +3.458101e+01 1.617568e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.368675e+01 1.709995e+01 moveto +3.458101e+01 1.617568e+01 lineto +3.448317e+01 1.561175e+01 lineto +3.358603e+01 1.651945e+01 lineto +3.368675e+01 1.709995e+01 lineto +closepath +gsave +7.02435e-01 7.02435e-01 8.780438e-01 setrgbcolor +fill +grestore +newpath +3.368675e+01 1.709995e+01 moveto +3.458101e+01 1.617568e+01 lineto +3.448317e+01 1.561175e+01 lineto +3.358603e+01 1.651945e+01 lineto +3.368675e+01 1.709995e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.282214e+01 1.80516e+01 moveto +3.368675e+01 1.709995e+01 lineto +3.358603e+01 1.651945e+01 lineto +3.271864e+01 1.745507e+01 lineto +3.282214e+01 1.80516e+01 lineto +closepath +gsave +7.040884e-01 7.040884e-01 8.801105e-01 setrgbcolor +fill +grestore +newpath +3.282214e+01 1.80516e+01 moveto +3.368675e+01 1.709995e+01 lineto +3.358603e+01 1.651945e+01 lineto +3.271864e+01 1.745507e+01 lineto +3.282214e+01 1.80516e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.198799e+01 1.90297e+01 moveto +3.282214e+01 1.80516e+01 lineto +3.271864e+01 1.745507e+01 lineto +3.188181e+01 1.841771e+01 lineto +3.198799e+01 1.90297e+01 lineto +closepath +gsave +7.055816e-01 7.055816e-01 8.819771e-01 setrgbcolor +fill +grestore +newpath +3.198799e+01 1.90297e+01 moveto +3.282214e+01 1.80516e+01 lineto +3.271864e+01 1.745507e+01 lineto +3.188181e+01 1.841771e+01 lineto +3.198799e+01 1.90297e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.11851e+01 2.003334e+01 moveto +3.198799e+01 1.90297e+01 lineto +3.188181e+01 1.841771e+01 lineto +3.107633e+01 1.940646e+01 lineto +3.11851e+01 2.003334e+01 lineto +closepath +gsave +7.069136e-01 7.069136e-01 8.83642e-01 setrgbcolor +fill +grestore +newpath +3.11851e+01 2.003334e+01 moveto +3.198799e+01 1.90297e+01 lineto +3.188181e+01 1.841771e+01 lineto +3.107633e+01 1.940646e+01 lineto +3.11851e+01 2.003334e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.041423e+01 2.106156e+01 moveto +3.11851e+01 2.003334e+01 lineto +3.107633e+01 1.940646e+01 lineto +3.030298e+01 2.042039e+01 lineto +3.041423e+01 2.106156e+01 lineto +closepath +gsave +7.080834e-01 7.080834e-01 8.851043e-01 setrgbcolor +fill +grestore +newpath +3.041423e+01 2.106156e+01 moveto +3.11851e+01 2.003334e+01 lineto +3.107633e+01 1.940646e+01 lineto +3.030298e+01 2.042039e+01 lineto +3.041423e+01 2.106156e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.96761e+01 2.21134e+01 moveto +3.041423e+01 2.106156e+01 lineto +3.030298e+01 2.042039e+01 lineto +2.956248e+01 2.145855e+01 lineto +2.96761e+01 2.21134e+01 lineto +closepath +gsave +7.090901e-01 7.090901e-01 8.863626e-01 setrgbcolor +fill +grestore +newpath +2.96761e+01 2.21134e+01 moveto +3.041423e+01 2.106156e+01 lineto +3.030298e+01 2.042039e+01 lineto +2.956248e+01 2.145855e+01 lineto +2.96761e+01 2.21134e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.897142e+01 2.318785e+01 moveto +2.96761e+01 2.21134e+01 lineto +2.956248e+01 2.145855e+01 lineto +2.885553e+01 2.251993e+01 lineto +2.897142e+01 2.318785e+01 lineto +closepath +gsave +7.09933e-01 7.09933e-01 8.874163e-01 setrgbcolor +fill +grestore +newpath +2.897142e+01 2.318785e+01 moveto +2.96761e+01 2.21134e+01 lineto +2.956248e+01 2.145855e+01 lineto +2.885553e+01 2.251993e+01 lineto +2.897142e+01 2.318785e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.830085e+01 2.42839e+01 moveto +2.897142e+01 2.318785e+01 lineto +2.885553e+01 2.251993e+01 lineto +2.81828e+01 2.360355e+01 lineto +2.830085e+01 2.42839e+01 lineto +closepath +gsave +7.106116e-01 7.106116e-01 8.882645e-01 setrgbcolor +fill +grestore +newpath +2.830085e+01 2.42839e+01 moveto +2.897142e+01 2.318785e+01 lineto +2.885553e+01 2.251993e+01 lineto +2.81828e+01 2.360355e+01 lineto +2.830085e+01 2.42839e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.766502e+01 2.540051e+01 moveto +2.830085e+01 2.42839e+01 lineto +2.81828e+01 2.360355e+01 lineto +2.754493e+01 2.470838e+01 lineto +2.766502e+01 2.540051e+01 lineto +closepath +gsave +7.111254e-01 7.111254e-01 8.889068e-01 setrgbcolor +fill +grestore +newpath +2.766502e+01 2.540051e+01 moveto +2.830085e+01 2.42839e+01 lineto +2.81828e+01 2.360355e+01 lineto +2.754493e+01 2.470838e+01 lineto +2.766502e+01 2.540051e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.706455e+01 2.653663e+01 moveto +2.766502e+01 2.540051e+01 lineto +2.754493e+01 2.470838e+01 lineto +2.694252e+01 2.583336e+01 lineto +2.706455e+01 2.653663e+01 lineto +closepath +gsave +7.114741e-01 7.114741e-01 8.893426e-01 setrgbcolor +fill +grestore +newpath +2.706455e+01 2.653663e+01 moveto +2.766502e+01 2.540051e+01 lineto +2.754493e+01 2.470838e+01 lineto +2.694252e+01 2.583336e+01 lineto +2.706455e+01 2.653663e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.649999e+01 2.769117e+01 moveto +2.706455e+01 2.653663e+01 lineto +2.694252e+01 2.583336e+01 lineto +2.637615e+01 2.697744e+01 lineto +2.649999e+01 2.769117e+01 lineto +closepath +gsave +7.116573e-01 7.116573e-01 8.895717e-01 setrgbcolor +fill +grestore +newpath +2.649999e+01 2.769117e+01 moveto +2.706455e+01 2.653663e+01 lineto +2.694252e+01 2.583336e+01 lineto +2.637615e+01 2.697744e+01 lineto +2.649999e+01 2.769117e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.597188e+01 2.886305e+01 moveto +2.649999e+01 2.769117e+01 lineto +2.637615e+01 2.697744e+01 lineto +2.584635e+01 2.813953e+01 lineto +2.597188e+01 2.886305e+01 lineto +closepath +gsave +7.116751e-01 7.116751e-01 8.895939e-01 setrgbcolor +fill +grestore +newpath +2.597188e+01 2.886305e+01 moveto +2.649999e+01 2.769117e+01 lineto +2.637615e+01 2.697744e+01 lineto +2.584635e+01 2.813953e+01 lineto +2.597188e+01 2.886305e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.548073e+01 3.005116e+01 moveto +2.597188e+01 2.886305e+01 lineto +2.584635e+01 2.813953e+01 lineto +2.535361e+01 2.931853e+01 lineto +2.548073e+01 3.005116e+01 lineto +closepath +gsave +7.115275e-01 7.115275e-01 8.894094e-01 setrgbcolor +fill +grestore +newpath +2.548073e+01 3.005116e+01 moveto +2.597188e+01 2.886305e+01 lineto +2.584635e+01 2.813953e+01 lineto +2.535361e+01 2.931853e+01 lineto +2.548073e+01 3.005116e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.5027e+01 3.125436e+01 moveto +2.548073e+01 3.005116e+01 lineto +2.535361e+01 2.931853e+01 lineto +2.489842e+01 3.051332e+01 lineto +2.5027e+01 3.125436e+01 lineto +closepath +gsave +7.112145e-01 7.112145e-01 8.890181e-01 setrgbcolor +fill +grestore +newpath +2.5027e+01 3.125436e+01 moveto +2.548073e+01 3.005116e+01 lineto +2.535361e+01 2.931853e+01 lineto +2.489842e+01 3.051332e+01 lineto +2.5027e+01 3.125436e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.368712e+01 3.97134e+00 moveto +6.499575e+01 3.999843e+00 lineto +6.499576e+01 3.999765e+00 lineto +6.3691e+01 3.947379e+00 lineto +6.368712e+01 3.97134e+00 lineto +closepath +gsave +6.111362e-01 6.111362e-01 7.639203e-01 setrgbcolor +fill +grestore +newpath +6.368712e+01 3.97134e+00 moveto +6.499575e+01 3.999843e+00 lineto +6.499576e+01 3.999765e+00 lineto +6.3691e+01 3.947379e+00 lineto +6.368712e+01 3.97134e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.237973e+01 3.982631e+00 moveto +6.368712e+01 3.97134e+00 lineto +6.3691e+01 3.947379e+00 lineto +6.238748e+01 3.93481e+00 lineto +6.237973e+01 3.982631e+00 lineto +closepath +gsave +6.154221e-01 6.154221e-01 7.692776e-01 setrgbcolor +fill +grestore +newpath +6.237973e+01 3.982631e+00 moveto +6.368712e+01 3.97134e+00 lineto +6.3691e+01 3.947379e+00 lineto +6.238748e+01 3.93481e+00 lineto +6.237973e+01 3.982631e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.107482e+01 4.033704e+00 moveto +6.237973e+01 3.982631e+00 lineto +6.238748e+01 3.93481e+00 lineto +6.108644e+01 3.962068e+00 lineto +6.107482e+01 4.033704e+00 lineto +closepath +gsave +6.19646e-01 6.19646e-01 7.745575e-01 setrgbcolor +fill +grestore +newpath +6.107482e+01 4.033704e+00 moveto +6.237973e+01 3.982631e+00 lineto +6.238748e+01 3.93481e+00 lineto +6.108644e+01 3.962068e+00 lineto +6.107482e+01 4.033704e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.977363e+01 4.124512e+00 moveto +6.107482e+01 4.033704e+00 lineto +6.108644e+01 3.962068e+00 lineto +5.97891e+01 4.029128e+00 lineto +5.977363e+01 4.124512e+00 lineto +closepath +gsave +6.238023e-01 6.238023e-01 7.797528e-01 setrgbcolor +fill +grestore +newpath +5.977363e+01 4.124512e+00 moveto +6.107482e+01 4.033704e+00 lineto +6.108644e+01 3.962068e+00 lineto +5.97891e+01 4.029128e+00 lineto +5.977363e+01 4.124512e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.847739e+01 4.254967e+00 moveto +5.977363e+01 4.124512e+00 lineto +5.97891e+01 4.029128e+00 lineto +5.849669e+01 4.135926e+00 lineto +5.847739e+01 4.254967e+00 lineto +closepath +gsave +6.278854e-01 6.278854e-01 7.848568e-01 setrgbcolor +fill +grestore +newpath +5.847739e+01 4.254967e+00 moveto +5.977363e+01 4.124512e+00 lineto +5.97891e+01 4.029128e+00 lineto +5.849669e+01 4.135926e+00 lineto +5.847739e+01 4.254967e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.718732e+01 4.424947e+00 moveto +5.847739e+01 4.254967e+00 lineto +5.849669e+01 4.135926e+00 lineto +5.721044e+01 4.282362e+00 lineto +5.718732e+01 4.424947e+00 lineto +closepath +gsave +6.318902e-01 6.318902e-01 7.898628e-01 setrgbcolor +fill +grestore +newpath +5.718732e+01 4.424947e+00 moveto +5.847739e+01 4.254967e+00 lineto +5.849669e+01 4.135926e+00 lineto +5.721044e+01 4.282362e+00 lineto +5.718732e+01 4.424947e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.590466e+01 4.634291e+00 moveto +5.718732e+01 4.424947e+00 lineto +5.721044e+01 4.282362e+00 lineto +5.593157e+01 4.468296e+00 lineto +5.590466e+01 4.634291e+00 lineto +closepath +gsave +6.358115e-01 6.358115e-01 7.947644e-01 setrgbcolor +fill +grestore +newpath +5.590466e+01 4.634291e+00 moveto +5.718732e+01 4.424947e+00 lineto +5.721044e+01 4.282362e+00 lineto +5.593157e+01 4.468296e+00 lineto +5.590466e+01 4.634291e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.46306e+01 4.8828e+00 moveto +5.590466e+01 4.634291e+00 lineto +5.593157e+01 4.468296e+00 lineto +5.466128e+01 4.693553e+00 lineto +5.46306e+01 4.8828e+00 lineto +closepath +gsave +6.396442e-01 6.396442e-01 7.995553e-01 setrgbcolor +fill +grestore +newpath +5.46306e+01 4.8828e+00 moveto +5.590466e+01 4.634291e+00 lineto +5.593157e+01 4.468296e+00 lineto +5.466128e+01 4.693553e+00 lineto +5.46306e+01 4.8828e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.336636e+01 5.170239e+00 moveto +5.46306e+01 4.8828e+00 lineto +5.466128e+01 4.693553e+00 lineto +5.340078e+01 4.957919e+00 lineto +5.336636e+01 5.170239e+00 lineto +closepath +gsave +6.433837e-01 6.433837e-01 8.042296e-01 setrgbcolor +fill +grestore +newpath +5.336636e+01 5.170239e+00 moveto +5.46306e+01 4.8828e+00 lineto +5.466128e+01 4.693553e+00 lineto +5.340078e+01 4.957919e+00 lineto +5.336636e+01 5.170239e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.211313e+01 5.496336e+00 moveto +5.336636e+01 5.170239e+00 lineto +5.340078e+01 4.957919e+00 lineto +5.215127e+01 5.261145e+00 lineto +5.211313e+01 5.496336e+00 lineto +closepath +gsave +6.470252e-01 6.470252e-01 8.087816e-01 setrgbcolor +fill +grestore +newpath +5.211313e+01 5.496336e+00 moveto +5.336636e+01 5.170239e+00 lineto +5.340078e+01 4.957919e+00 lineto +5.215127e+01 5.261145e+00 lineto +5.211313e+01 5.496336e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.087211e+01 5.860783e+00 moveto +5.211313e+01 5.496336e+00 lineto +5.215127e+01 5.261145e+00 lineto +5.091392e+01 5.602942e+00 lineto +5.087211e+01 5.860783e+00 lineto +closepath +gsave +6.505645e-01 6.505645e-01 8.132057e-01 setrgbcolor +fill +grestore +newpath +5.087211e+01 5.860783e+00 moveto +5.211313e+01 5.496336e+00 lineto +5.215127e+01 5.261145e+00 lineto +5.091392e+01 5.602942e+00 lineto +5.087211e+01 5.860783e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.964446e+01 6.263234e+00 moveto +5.087211e+01 5.860783e+00 lineto +5.091392e+01 5.602942e+00 lineto +4.96899e+01 5.982987e+00 lineto +4.964446e+01 6.263234e+00 lineto +closepath +gsave +6.539973e-01 6.539973e-01 8.174966e-01 setrgbcolor +fill +grestore +newpath +4.964446e+01 6.263234e+00 moveto +5.087211e+01 5.860783e+00 lineto +5.091392e+01 5.602942e+00 lineto +4.96899e+01 5.982987e+00 lineto +4.964446e+01 6.263234e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.843136e+01 6.703308e+00 moveto +4.964446e+01 6.263234e+00 lineto +4.96899e+01 5.982987e+00 lineto +4.848038e+01 6.400922e+00 lineto +4.843136e+01 6.703308e+00 lineto +closepath +gsave +6.573196e-01 6.573196e-01 8.216495e-01 setrgbcolor +fill +grestore +newpath +4.843136e+01 6.703308e+00 moveto +4.964446e+01 6.263234e+00 lineto +4.96899e+01 5.982987e+00 lineto +4.848038e+01 6.400922e+00 lineto +4.843136e+01 6.703308e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.723394e+01 7.180588e+00 moveto +4.843136e+01 6.703308e+00 lineto +4.848038e+01 6.400922e+00 lineto +4.728651e+01 6.856348e+00 lineto +4.723394e+01 7.180588e+00 lineto +closepath +gsave +6.605277e-01 6.605277e-01 8.256596e-01 setrgbcolor +fill +grestore +newpath +4.723394e+01 7.180588e+00 moveto +4.843136e+01 6.703308e+00 lineto +4.848038e+01 6.400922e+00 lineto +4.728651e+01 6.856348e+00 lineto +4.723394e+01 7.180588e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.605334e+01 7.694623e+00 moveto +4.723394e+01 7.180588e+00 lineto +4.728651e+01 6.856348e+00 lineto +4.61094e+01 7.348837e+00 lineto +4.605334e+01 7.694623e+00 lineto +closepath +gsave +6.636179e-01 6.636179e-01 8.295223e-01 setrgbcolor +fill +grestore +newpath +4.605334e+01 7.694623e+00 moveto +4.723394e+01 7.180588e+00 lineto +4.728651e+01 6.856348e+00 lineto +4.61094e+01 7.348837e+00 lineto +4.605334e+01 7.694623e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.489067e+01 8.244926e+00 moveto +4.605334e+01 7.694623e+00 lineto +4.61094e+01 7.348837e+00 lineto +4.495018e+01 7.877921e+00 lineto +4.489067e+01 8.244926e+00 lineto +closepath +gsave +6.665868e-01 6.665868e-01 8.332335e-01 setrgbcolor +fill +grestore +newpath +4.489067e+01 8.244926e+00 moveto +4.605334e+01 7.694623e+00 lineto +4.61094e+01 7.348837e+00 lineto +4.495018e+01 7.877921e+00 lineto +4.489067e+01 8.244926e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.374705e+01 8.830976e+00 moveto +4.489067e+01 8.244926e+00 lineto +4.495018e+01 7.877921e+00 lineto +4.380994e+01 8.443099e+00 lineto +4.374705e+01 8.830976e+00 lineto +closepath +gsave +6.694313e-01 6.694313e-01 8.367891e-01 setrgbcolor +fill +grestore +newpath +4.374705e+01 8.830976e+00 moveto +4.489067e+01 8.244926e+00 lineto +4.495018e+01 7.877921e+00 lineto +4.380994e+01 8.443099e+00 lineto +4.374705e+01 8.830976e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.262356e+01 9.452218e+00 moveto +4.374705e+01 8.830976e+00 lineto +4.380994e+01 8.443099e+00 lineto +4.268977e+01 9.043836e+00 lineto +4.262356e+01 9.452218e+00 lineto +closepath +gsave +6.721483e-01 6.721483e-01 8.401854e-01 setrgbcolor +fill +grestore +newpath +4.262356e+01 9.452218e+00 moveto +4.374705e+01 8.830976e+00 lineto +4.380994e+01 8.443099e+00 lineto +4.268977e+01 9.043836e+00 lineto +4.262356e+01 9.452218e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.152124e+01 1.010806e+01 moveto +4.262356e+01 9.452218e+00 lineto +4.268977e+01 9.043836e+00 lineto +4.159072e+01 9.679564e+00 lineto +4.152124e+01 1.010806e+01 lineto +closepath +gsave +6.747351e-01 6.747351e-01 8.434189e-01 setrgbcolor +fill +grestore +newpath +4.152124e+01 1.010806e+01 moveto +4.262356e+01 9.452218e+00 lineto +4.268977e+01 9.043836e+00 lineto +4.159072e+01 9.679564e+00 lineto +4.152124e+01 1.010806e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.044116e+01 1.079789e+01 moveto +4.152124e+01 1.010806e+01 lineto +4.159072e+01 9.679564e+00 lineto +4.051383e+01 1.034968e+01 lineto +4.044116e+01 1.079789e+01 lineto +closepath +gsave +6.771891e-01 6.771891e-01 8.464864e-01 setrgbcolor +fill +grestore +newpath +4.044116e+01 1.079789e+01 moveto +4.152124e+01 1.010806e+01 lineto +4.159072e+01 9.679564e+00 lineto +4.051383e+01 1.034968e+01 lineto +4.044116e+01 1.079789e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.938433e+01 1.152105e+01 moveto +4.044116e+01 1.079789e+01 lineto +4.051383e+01 1.034968e+01 lineto +3.946013e+01 1.105355e+01 lineto +3.938433e+01 1.152105e+01 lineto +closepath +gsave +6.795078e-01 6.795078e-01 8.493848e-01 setrgbcolor +fill +grestore +newpath +3.938433e+01 1.152105e+01 moveto +4.044116e+01 1.079789e+01 lineto +4.051383e+01 1.034968e+01 lineto +3.946013e+01 1.105355e+01 lineto +3.938433e+01 1.152105e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.835175e+01 1.227685e+01 moveto +3.938433e+01 1.152105e+01 lineto +3.946013e+01 1.105355e+01 lineto +3.843061e+01 1.179051e+01 lineto +3.835175e+01 1.227685e+01 lineto +closepath +gsave +6.816891e-01 6.816891e-01 8.521113e-01 setrgbcolor +fill +grestore +newpath +3.835175e+01 1.227685e+01 moveto +3.938433e+01 1.152105e+01 lineto +3.946013e+01 1.105355e+01 lineto +3.843061e+01 1.179051e+01 lineto +3.835175e+01 1.227685e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.734441e+01 1.306459e+01 moveto +3.835175e+01 1.227685e+01 lineto +3.843061e+01 1.179051e+01 lineto +3.742624e+01 1.255986e+01 lineto +3.734441e+01 1.306459e+01 lineto +closepath +gsave +6.837307e-01 6.837307e-01 8.546634e-01 setrgbcolor +fill +grestore +newpath +3.734441e+01 1.306459e+01 moveto +3.835175e+01 1.227685e+01 lineto +3.843061e+01 1.179051e+01 lineto +3.742624e+01 1.255986e+01 lineto +3.734441e+01 1.306459e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.636325e+01 1.38835e+01 moveto +3.734441e+01 1.306459e+01 lineto +3.742624e+01 1.255986e+01 lineto +3.644798e+01 1.336087e+01 lineto +3.636325e+01 1.38835e+01 lineto +closepath +gsave +6.856309e-01 6.856309e-01 8.570387e-01 setrgbcolor +fill +grestore +newpath +3.636325e+01 1.38835e+01 moveto +3.734441e+01 1.306459e+01 lineto +3.742624e+01 1.255986e+01 lineto +3.644798e+01 1.336087e+01 lineto +3.636325e+01 1.38835e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.54092e+01 1.473283e+01 moveto +3.636325e+01 1.38835e+01 lineto +3.644798e+01 1.336087e+01 lineto +3.549676e+01 1.419278e+01 lineto +3.54092e+01 1.473283e+01 lineto +closepath +gsave +6.87388e-01 6.87388e-01 8.59235e-01 setrgbcolor +fill +grestore +newpath +3.54092e+01 1.473283e+01 moveto +3.636325e+01 1.38835e+01 lineto +3.644798e+01 1.336087e+01 lineto +3.549676e+01 1.419278e+01 lineto +3.54092e+01 1.473283e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.448317e+01 1.561175e+01 moveto +3.54092e+01 1.473283e+01 lineto +3.549676e+01 1.419278e+01 lineto +3.457347e+01 1.505481e+01 lineto +3.448317e+01 1.561175e+01 lineto +closepath +gsave +6.890003e-01 6.890003e-01 8.612504e-01 setrgbcolor +fill +grestore +newpath +3.448317e+01 1.561175e+01 moveto +3.54092e+01 1.473283e+01 lineto +3.549676e+01 1.419278e+01 lineto +3.457347e+01 1.505481e+01 lineto +3.448317e+01 1.561175e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.358603e+01 1.651945e+01 moveto +3.448317e+01 1.561175e+01 lineto +3.457347e+01 1.505481e+01 lineto +3.367899e+01 1.594613e+01 lineto +3.358603e+01 1.651945e+01 lineto +closepath +gsave +6.904665e-01 6.904665e-01 8.630831e-01 setrgbcolor +fill +grestore +newpath +3.358603e+01 1.651945e+01 moveto +3.448317e+01 1.561175e+01 lineto +3.457347e+01 1.505481e+01 lineto +3.367899e+01 1.594613e+01 lineto +3.358603e+01 1.651945e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.271864e+01 1.745507e+01 moveto +3.358603e+01 1.651945e+01 lineto +3.367899e+01 1.594613e+01 lineto +3.281416e+01 1.686592e+01 lineto +3.271864e+01 1.745507e+01 lineto +closepath +gsave +6.917853e-01 6.917853e-01 8.647317e-01 setrgbcolor +fill +grestore +newpath +3.271864e+01 1.745507e+01 moveto +3.358603e+01 1.651945e+01 lineto +3.367899e+01 1.594613e+01 lineto +3.281416e+01 1.686592e+01 lineto +3.271864e+01 1.745507e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.188181e+01 1.841771e+01 moveto +3.271864e+01 1.745507e+01 lineto +3.281416e+01 1.686592e+01 lineto +3.197981e+01 1.781328e+01 lineto +3.188181e+01 1.841771e+01 lineto +closepath +gsave +6.929557e-01 6.929557e-01 8.661946e-01 setrgbcolor +fill +grestore +newpath +3.188181e+01 1.841771e+01 moveto +3.271864e+01 1.745507e+01 lineto +3.281416e+01 1.686592e+01 lineto +3.197981e+01 1.781328e+01 lineto +3.188181e+01 1.841771e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.107633e+01 1.940646e+01 moveto +3.188181e+01 1.841771e+01 lineto +3.197981e+01 1.781328e+01 lineto +3.117672e+01 1.878734e+01 lineto +3.107633e+01 1.940646e+01 lineto +closepath +gsave +6.939766e-01 6.939766e-01 8.674707e-01 setrgbcolor +fill +grestore +newpath +3.107633e+01 1.940646e+01 moveto +3.188181e+01 1.841771e+01 lineto +3.197981e+01 1.781328e+01 lineto +3.117672e+01 1.878734e+01 lineto +3.107633e+01 1.940646e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.030298e+01 2.042039e+01 moveto +3.107633e+01 1.940646e+01 lineto +3.117672e+01 1.878734e+01 lineto +3.040565e+01 1.978716e+01 lineto +3.030298e+01 2.042039e+01 lineto +closepath +gsave +6.948472e-01 6.948472e-01 8.68559e-01 setrgbcolor +fill +grestore +newpath +3.030298e+01 2.042039e+01 moveto +3.107633e+01 1.940646e+01 lineto +3.117672e+01 1.878734e+01 lineto +3.040565e+01 1.978716e+01 lineto +3.030298e+01 2.042039e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.956248e+01 2.145855e+01 moveto +3.030298e+01 2.042039e+01 lineto +3.040565e+01 1.978716e+01 lineto +2.966734e+01 2.081179e+01 lineto +2.956248e+01 2.145855e+01 lineto +closepath +gsave +6.955669e-01 6.955669e-01 8.694586e-01 setrgbcolor +fill +grestore +newpath +2.956248e+01 2.145855e+01 moveto +3.030298e+01 2.042039e+01 lineto +3.040565e+01 1.978716e+01 lineto +2.966734e+01 2.081179e+01 lineto +2.956248e+01 2.145855e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.885553e+01 2.251993e+01 moveto +2.956248e+01 2.145855e+01 lineto +2.966734e+01 2.081179e+01 lineto +2.896248e+01 2.186028e+01 lineto +2.885553e+01 2.251993e+01 lineto +closepath +gsave +6.96135e-01 6.96135e-01 8.701688e-01 setrgbcolor +fill +grestore +newpath +2.885553e+01 2.251993e+01 moveto +2.956248e+01 2.145855e+01 lineto +2.966734e+01 2.081179e+01 lineto +2.896248e+01 2.186028e+01 lineto +2.885553e+01 2.251993e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.81828e+01 2.360355e+01 moveto +2.885553e+01 2.251993e+01 lineto +2.896248e+01 2.186028e+01 lineto +2.829174e+01 2.293162e+01 lineto +2.81828e+01 2.360355e+01 lineto +closepath +gsave +6.965512e-01 6.965512e-01 8.70689e-01 setrgbcolor +fill +grestore +newpath +2.81828e+01 2.360355e+01 moveto +2.885553e+01 2.251993e+01 lineto +2.896248e+01 2.186028e+01 lineto +2.829174e+01 2.293162e+01 lineto +2.81828e+01 2.360355e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.754493e+01 2.470838e+01 moveto +2.81828e+01 2.360355e+01 lineto +2.829174e+01 2.293162e+01 lineto +2.765576e+01 2.402481e+01 lineto +2.754493e+01 2.470838e+01 lineto +closepath +gsave +6.968151e-01 6.968151e-01 8.710189e-01 setrgbcolor +fill +grestore +newpath +2.754493e+01 2.470838e+01 moveto +2.81828e+01 2.360355e+01 lineto +2.829174e+01 2.293162e+01 lineto +2.765576e+01 2.402481e+01 lineto +2.754493e+01 2.470838e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.694252e+01 2.583336e+01 moveto +2.754493e+01 2.470838e+01 lineto +2.765576e+01 2.402481e+01 lineto +2.705514e+01 2.51388e+01 lineto +2.694252e+01 2.583336e+01 lineto +closepath +gsave +6.969266e-01 6.969266e-01 8.711582e-01 setrgbcolor +fill +grestore +newpath +2.694252e+01 2.583336e+01 moveto +2.754493e+01 2.470838e+01 lineto +2.765576e+01 2.402481e+01 lineto +2.705514e+01 2.51388e+01 lineto +2.694252e+01 2.583336e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.637615e+01 2.697744e+01 moveto +2.694252e+01 2.583336e+01 lineto +2.705514e+01 2.51388e+01 lineto +2.649044e+01 2.627254e+01 lineto +2.637615e+01 2.697744e+01 lineto +closepath +gsave +6.968854e-01 6.968854e-01 8.711068e-01 setrgbcolor +fill +grestore +newpath +2.637615e+01 2.697744e+01 moveto +2.694252e+01 2.583336e+01 lineto +2.705514e+01 2.51388e+01 lineto +2.649044e+01 2.627254e+01 lineto +2.637615e+01 2.697744e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.584635e+01 2.813953e+01 moveto +2.637615e+01 2.697744e+01 lineto +2.649044e+01 2.627254e+01 lineto +2.59622e+01 2.742496e+01 lineto +2.584635e+01 2.813953e+01 lineto +closepath +gsave +6.966918e-01 6.966918e-01 8.708648e-01 setrgbcolor +fill +grestore +newpath +2.584635e+01 2.813953e+01 moveto +2.637615e+01 2.697744e+01 lineto +2.649044e+01 2.627254e+01 lineto +2.59622e+01 2.742496e+01 lineto +2.584635e+01 2.813953e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.535361e+01 2.931853e+01 moveto +2.584635e+01 2.813953e+01 lineto +2.59622e+01 2.742496e+01 lineto +2.547093e+01 2.859496e+01 lineto +2.535361e+01 2.931853e+01 lineto +closepath +gsave +6.963459e-01 6.963459e-01 8.704324e-01 setrgbcolor +fill +grestore +newpath +2.535361e+01 2.931853e+01 moveto +2.584635e+01 2.813953e+01 lineto +2.59622e+01 2.742496e+01 lineto +2.547093e+01 2.859496e+01 lineto +2.535361e+01 2.931853e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.489842e+01 3.051332e+01 moveto +2.535361e+01 2.931853e+01 lineto +2.547093e+01 2.859496e+01 lineto +2.501708e+01 2.978145e+01 lineto +2.489842e+01 3.051332e+01 lineto +closepath +gsave +6.95848e-01 6.95848e-01 8.6981e-01 setrgbcolor +fill +grestore +newpath +2.489842e+01 3.051332e+01 moveto +2.535361e+01 2.931853e+01 lineto +2.547093e+01 2.859496e+01 lineto +2.501708e+01 2.978145e+01 lineto +2.489842e+01 3.051332e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.3691e+01 3.947379e+00 moveto +6.499576e+01 3.999765e+00 lineto +6.49958e+01 3.999689e+00 lineto +6.370296e+01 3.923866e+00 lineto +6.3691e+01 3.947379e+00 lineto +closepath +gsave +6.108725e-01 6.108725e-01 7.635906e-01 setrgbcolor +fill +grestore +newpath +6.3691e+01 3.947379e+00 moveto +6.499576e+01 3.999765e+00 lineto +6.49958e+01 3.999689e+00 lineto +6.370296e+01 3.923866e+00 lineto +6.3691e+01 3.947379e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.238748e+01 3.93481e+00 moveto +6.3691e+01 3.947379e+00 lineto +6.370296e+01 3.923866e+00 lineto +6.241134e+01 3.887882e+00 lineto +6.238748e+01 3.93481e+00 lineto +closepath +gsave +6.146322e-01 6.146322e-01 7.682902e-01 setrgbcolor +fill +grestore +newpath +6.238748e+01 3.93481e+00 moveto +6.3691e+01 3.947379e+00 lineto +6.370296e+01 3.923866e+00 lineto +6.241134e+01 3.887882e+00 lineto +6.238748e+01 3.93481e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.108644e+01 3.962068e+00 moveto +6.238748e+01 3.93481e+00 lineto +6.241134e+01 3.887882e+00 lineto +6.112218e+01 3.89177e+00 lineto +6.108644e+01 3.962068e+00 lineto +closepath +gsave +6.183279e-01 6.183279e-01 7.729099e-01 setrgbcolor +fill +grestore +newpath +6.108644e+01 3.962068e+00 moveto +6.238748e+01 3.93481e+00 lineto +6.241134e+01 3.887882e+00 lineto +6.112218e+01 3.89177e+00 lineto +6.108644e+01 3.962068e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.97891e+01 4.029128e+00 moveto +6.108644e+01 3.962068e+00 lineto +6.112218e+01 3.89177e+00 lineto +5.983669e+01 3.935526e+00 lineto +5.97891e+01 4.029128e+00 lineto +closepath +gsave +6.21955e-01 6.21955e-01 7.774437e-01 setrgbcolor +fill +grestore +newpath +5.97891e+01 4.029128e+00 moveto +6.108644e+01 3.962068e+00 lineto +6.112218e+01 3.89177e+00 lineto +5.983669e+01 3.935526e+00 lineto +5.97891e+01 4.029128e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.849669e+01 4.135926e+00 moveto +5.97891e+01 4.029128e+00 lineto +5.983669e+01 3.935526e+00 lineto +5.855609e+01 4.01911e+00 lineto +5.849669e+01 4.135926e+00 lineto +closepath +gsave +6.255087e-01 6.255087e-01 7.818859e-01 setrgbcolor +fill +grestore +newpath +5.849669e+01 4.135926e+00 moveto +5.97891e+01 4.029128e+00 lineto +5.983669e+01 3.935526e+00 lineto +5.855609e+01 4.01911e+00 lineto +5.849669e+01 4.135926e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.721044e+01 4.282362e+00 moveto +5.849669e+01 4.135926e+00 lineto +5.855609e+01 4.01911e+00 lineto +5.728159e+01 4.142441e+00 lineto +5.721044e+01 4.282362e+00 lineto +closepath +gsave +6.289848e-01 6.289848e-01 7.86231e-01 setrgbcolor +fill +grestore +newpath +5.721044e+01 4.282362e+00 moveto +5.849669e+01 4.135926e+00 lineto +5.855609e+01 4.01911e+00 lineto +5.728159e+01 4.142441e+00 lineto +5.721044e+01 4.282362e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.593157e+01 4.468296e+00 moveto +5.721044e+01 4.282362e+00 lineto +5.728159e+01 4.142441e+00 lineto +5.601439e+01 4.305404e+00 lineto +5.593157e+01 4.468296e+00 lineto +closepath +gsave +6.323787e-01 6.323787e-01 7.904734e-01 setrgbcolor +fill +grestore +newpath +5.593157e+01 4.468296e+00 moveto +5.721044e+01 4.282362e+00 lineto +5.728159e+01 4.142441e+00 lineto +5.601439e+01 4.305404e+00 lineto +5.593157e+01 4.468296e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.466128e+01 4.693553e+00 moveto +5.593157e+01 4.468296e+00 lineto +5.601439e+01 4.305404e+00 lineto +5.475571e+01 4.507843e+00 lineto +5.466128e+01 4.693553e+00 lineto +closepath +gsave +6.356865e-01 6.356865e-01 7.946081e-01 setrgbcolor +fill +grestore +newpath +5.466128e+01 4.693553e+00 moveto +5.593157e+01 4.468296e+00 lineto +5.601439e+01 4.305404e+00 lineto +5.475571e+01 4.507843e+00 lineto +5.466128e+01 4.693553e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.340078e+01 4.957919e+00 moveto +5.466128e+01 4.693553e+00 lineto +5.475571e+01 4.507843e+00 lineto +5.350672e+01 4.749567e+00 lineto +5.340078e+01 4.957919e+00 lineto +closepath +gsave +6.38904e-01 6.38904e-01 7.986299e-01 setrgbcolor +fill +grestore +newpath +5.340078e+01 4.957919e+00 moveto +5.466128e+01 4.693553e+00 lineto +5.475571e+01 4.507843e+00 lineto +5.350672e+01 4.749567e+00 lineto +5.340078e+01 4.957919e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.215127e+01 5.261145e+00 moveto +5.340078e+01 4.957919e+00 lineto +5.350672e+01 4.749567e+00 lineto +5.226862e+01 5.030348e+00 lineto +5.215127e+01 5.261145e+00 lineto +closepath +gsave +6.420274e-01 6.420274e-01 8.025342e-01 setrgbcolor +fill +grestore +newpath +5.215127e+01 5.261145e+00 moveto +5.340078e+01 4.957919e+00 lineto +5.350672e+01 4.749567e+00 lineto +5.226862e+01 5.030348e+00 lineto +5.215127e+01 5.261145e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.091392e+01 5.602942e+00 moveto +5.215127e+01 5.261145e+00 lineto +5.226862e+01 5.030348e+00 lineto +5.104257e+01 5.34992e+00 lineto +5.091392e+01 5.602942e+00 lineto +closepath +gsave +6.450531e-01 6.450531e-01 8.063163e-01 setrgbcolor +fill +grestore +newpath +5.091392e+01 5.602942e+00 moveto +5.215127e+01 5.261145e+00 lineto +5.226862e+01 5.030348e+00 lineto +5.104257e+01 5.34992e+00 lineto +5.091392e+01 5.602942e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.96899e+01 5.982987e+00 moveto +5.091392e+01 5.602942e+00 lineto +5.104257e+01 5.34992e+00 lineto +4.982973e+01 5.707979e+00 lineto +4.96899e+01 5.982987e+00 lineto +closepath +gsave +6.479775e-01 6.479775e-01 8.099719e-01 setrgbcolor +fill +grestore +newpath +4.96899e+01 5.982987e+00 moveto +5.091392e+01 5.602942e+00 lineto +5.104257e+01 5.34992e+00 lineto +4.982973e+01 5.707979e+00 lineto +4.96899e+01 5.982987e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.848038e+01 6.400922e+00 moveto +4.96899e+01 5.982987e+00 lineto +4.982973e+01 5.707979e+00 lineto +4.863126e+01 6.104187e+00 lineto +4.848038e+01 6.400922e+00 lineto +closepath +gsave +6.507973e-01 6.507973e-01 8.134966e-01 setrgbcolor +fill +grestore +newpath +4.848038e+01 6.400922e+00 moveto +4.96899e+01 5.982987e+00 lineto +4.982973e+01 5.707979e+00 lineto +4.863126e+01 6.104187e+00 lineto +4.848038e+01 6.400922e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.728651e+01 6.856348e+00 moveto +4.848038e+01 6.400922e+00 lineto +4.863126e+01 6.104187e+00 lineto +4.744829e+01 6.538168e+00 lineto +4.728651e+01 6.856348e+00 lineto +closepath +gsave +6.535093e-01 6.535093e-01 8.168867e-01 setrgbcolor +fill +grestore +newpath +4.728651e+01 6.856348e+00 moveto +4.848038e+01 6.400922e+00 lineto +4.863126e+01 6.104187e+00 lineto +4.744829e+01 6.538168e+00 lineto +4.728651e+01 6.856348e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.61094e+01 7.348837e+00 moveto +4.728651e+01 6.856348e+00 lineto +4.744829e+01 6.538168e+00 lineto +4.628193e+01 7.009513e+00 lineto +4.61094e+01 7.348837e+00 lineto +closepath +gsave +6.561106e-01 6.561106e-01 8.201382e-01 setrgbcolor +fill +grestore +newpath +4.61094e+01 7.348837e+00 moveto +4.728651e+01 6.856348e+00 lineto +4.744829e+01 6.538168e+00 lineto +4.628193e+01 7.009513e+00 lineto +4.61094e+01 7.348837e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.495018e+01 7.877921e+00 moveto +4.61094e+01 7.348837e+00 lineto +4.628193e+01 7.009513e+00 lineto +4.51333e+01 7.517774e+00 lineto +4.495018e+01 7.877921e+00 lineto +closepath +gsave +6.585982e-01 6.585982e-01 8.232477e-01 setrgbcolor +fill +grestore +newpath +4.495018e+01 7.877921e+00 moveto +4.61094e+01 7.348837e+00 lineto +4.628193e+01 7.009513e+00 lineto +4.51333e+01 7.517774e+00 lineto +4.495018e+01 7.877921e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.380994e+01 8.443099e+00 moveto +4.495018e+01 7.877921e+00 lineto +4.51333e+01 7.517774e+00 lineto +4.400347e+01 8.062471e+00 lineto +4.380994e+01 8.443099e+00 lineto +closepath +gsave +6.609695e-01 6.609695e-01 8.262119e-01 setrgbcolor +fill +grestore +newpath +4.380994e+01 8.443099e+00 moveto +4.495018e+01 7.877921e+00 lineto +4.51333e+01 7.517774e+00 lineto +4.400347e+01 8.062471e+00 lineto +4.380994e+01 8.443099e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.268977e+01 9.043836e+00 moveto +4.380994e+01 8.443099e+00 lineto +4.400347e+01 8.062471e+00 lineto +4.289353e+01 8.643087e+00 lineto +4.268977e+01 9.043836e+00 lineto +closepath +gsave +6.63222e-01 6.63222e-01 8.290275e-01 setrgbcolor +fill +grestore +newpath +4.268977e+01 9.043836e+00 moveto +4.380994e+01 8.443099e+00 lineto +4.400347e+01 8.062471e+00 lineto +4.289353e+01 8.643087e+00 lineto +4.268977e+01 9.043836e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.159072e+01 9.679564e+00 moveto +4.268977e+01 9.043836e+00 lineto +4.289353e+01 8.643087e+00 lineto +4.180452e+01 9.259073e+00 lineto +4.159072e+01 9.679564e+00 lineto +closepath +gsave +6.653533e-01 6.653533e-01 8.316917e-01 setrgbcolor +fill +grestore +newpath +4.159072e+01 9.679564e+00 moveto +4.268977e+01 9.043836e+00 lineto +4.289353e+01 8.643087e+00 lineto +4.180452e+01 9.259073e+00 lineto +4.159072e+01 9.679564e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.051383e+01 1.034968e+01 moveto +4.159072e+01 9.679564e+00 lineto +4.180452e+01 9.259073e+00 lineto +4.073747e+01 9.909846e+00 lineto +4.051383e+01 1.034968e+01 lineto +closepath +gsave +6.673614e-01 6.673614e-01 8.342017e-01 setrgbcolor +fill +grestore +newpath +4.051383e+01 1.034968e+01 moveto +4.159072e+01 9.679564e+00 lineto +4.180452e+01 9.259073e+00 lineto +4.073747e+01 9.909846e+00 lineto +4.051383e+01 1.034968e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.946013e+01 1.105355e+01 moveto +4.051383e+01 1.034968e+01 lineto +4.073747e+01 9.909846e+00 lineto +3.969339e+01 1.059479e+01 lineto +3.946013e+01 1.105355e+01 lineto +closepath +gsave +6.692441e-01 6.692441e-01 8.365551e-01 setrgbcolor +fill +grestore +newpath +3.946013e+01 1.105355e+01 moveto +4.051383e+01 1.034968e+01 lineto +4.073747e+01 9.909846e+00 lineto +3.969339e+01 1.059479e+01 lineto +3.946013e+01 1.105355e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.843061e+01 1.179051e+01 moveto +3.946013e+01 1.105355e+01 lineto +3.969339e+01 1.059479e+01 lineto +3.867327e+01 1.131325e+01 lineto +3.843061e+01 1.179051e+01 lineto +closepath +gsave +6.709995e-01 6.709995e-01 8.387494e-01 setrgbcolor +fill +grestore +newpath +3.843061e+01 1.179051e+01 moveto +3.946013e+01 1.105355e+01 lineto +3.969339e+01 1.059479e+01 lineto +3.867327e+01 1.131325e+01 lineto +3.843061e+01 1.179051e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.742624e+01 1.255986e+01 moveto +3.843061e+01 1.179051e+01 lineto +3.867327e+01 1.131325e+01 lineto +3.767808e+01 1.206456e+01 lineto +3.742624e+01 1.255986e+01 lineto +closepath +gsave +6.726261e-01 6.726261e-01 8.407826e-01 setrgbcolor +fill +grestore +newpath +3.742624e+01 1.255986e+01 moveto +3.843061e+01 1.179051e+01 lineto +3.867327e+01 1.131325e+01 lineto +3.767808e+01 1.206456e+01 lineto +3.742624e+01 1.255986e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.644798e+01 1.336087e+01 moveto +3.742624e+01 1.255986e+01 lineto +3.767808e+01 1.206456e+01 lineto +3.670875e+01 1.2848e+01 lineto +3.644798e+01 1.336087e+01 lineto +closepath +gsave +6.741222e-01 6.741222e-01 8.426527e-01 setrgbcolor +fill +grestore +newpath +3.644798e+01 1.336087e+01 moveto +3.742624e+01 1.255986e+01 lineto +3.767808e+01 1.206456e+01 lineto +3.670875e+01 1.2848e+01 lineto +3.644798e+01 1.336087e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.549676e+01 1.419278e+01 moveto +3.644798e+01 1.336087e+01 lineto +3.670875e+01 1.2848e+01 lineto +3.576622e+01 1.366282e+01 lineto +3.549676e+01 1.419278e+01 lineto +closepath +gsave +6.754863e-01 6.754863e-01 8.443579e-01 setrgbcolor +fill +grestore +newpath +3.549676e+01 1.419278e+01 moveto +3.644798e+01 1.336087e+01 lineto +3.670875e+01 1.2848e+01 lineto +3.576622e+01 1.366282e+01 lineto +3.549676e+01 1.419278e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.457347e+01 1.505481e+01 moveto +3.549676e+01 1.419278e+01 lineto +3.576622e+01 1.366282e+01 lineto +3.485136e+01 1.450827e+01 lineto +3.457347e+01 1.505481e+01 lineto +closepath +gsave +6.767173e-01 6.767173e-01 8.458966e-01 setrgbcolor +fill +grestore +newpath +3.457347e+01 1.505481e+01 moveto +3.549676e+01 1.419278e+01 lineto +3.576622e+01 1.366282e+01 lineto +3.485136e+01 1.450827e+01 lineto +3.457347e+01 1.505481e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.367899e+01 1.594613e+01 moveto +3.457347e+01 1.505481e+01 lineto +3.485136e+01 1.450827e+01 lineto +3.396505e+01 1.538353e+01 lineto +3.367899e+01 1.594613e+01 lineto +closepath +gsave +6.77814e-01 6.77814e-01 8.472675e-01 setrgbcolor +fill +grestore +newpath +3.367899e+01 1.594613e+01 moveto +3.457347e+01 1.505481e+01 lineto +3.485136e+01 1.450827e+01 lineto +3.396505e+01 1.538353e+01 lineto +3.367899e+01 1.594613e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.281416e+01 1.686592e+01 moveto +3.367899e+01 1.594613e+01 lineto +3.396505e+01 1.538353e+01 lineto +3.310812e+01 1.628777e+01 lineto +3.281416e+01 1.686592e+01 lineto +closepath +gsave +6.787753e-01 6.787753e-01 8.484692e-01 setrgbcolor +fill +grestore +newpath +3.281416e+01 1.686592e+01 moveto +3.367899e+01 1.594613e+01 lineto +3.396505e+01 1.538353e+01 lineto +3.310812e+01 1.628777e+01 lineto +3.281416e+01 1.686592e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.197981e+01 1.781328e+01 moveto +3.281416e+01 1.686592e+01 lineto +3.310812e+01 1.628777e+01 lineto +3.228138e+01 1.722015e+01 lineto +3.197981e+01 1.781328e+01 lineto +closepath +gsave +6.796006e-01 6.796006e-01 8.495007e-01 setrgbcolor +fill +grestore +newpath +3.197981e+01 1.781328e+01 moveto +3.281416e+01 1.686592e+01 lineto +3.310812e+01 1.628777e+01 lineto +3.228138e+01 1.722015e+01 lineto +3.197981e+01 1.781328e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.117672e+01 1.878734e+01 moveto +3.197981e+01 1.781328e+01 lineto +3.228138e+01 1.722015e+01 lineto +3.148563e+01 1.817978e+01 lineto +3.117672e+01 1.878734e+01 lineto +closepath +gsave +6.802889e-01 6.802889e-01 8.503611e-01 setrgbcolor +fill +grestore +newpath +3.117672e+01 1.878734e+01 moveto +3.197981e+01 1.781328e+01 lineto +3.228138e+01 1.722015e+01 lineto +3.148563e+01 1.817978e+01 lineto +3.117672e+01 1.878734e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.040565e+01 1.978716e+01 moveto +3.117672e+01 1.878734e+01 lineto +3.148563e+01 1.817978e+01 lineto +3.072161e+01 1.916575e+01 lineto +3.040565e+01 1.978716e+01 lineto +closepath +gsave +6.808397e-01 6.808397e-01 8.510496e-01 setrgbcolor +fill +grestore +newpath +3.040565e+01 1.978716e+01 moveto +3.117672e+01 1.878734e+01 lineto +3.148563e+01 1.817978e+01 lineto +3.072161e+01 1.916575e+01 lineto +3.040565e+01 1.978716e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.966734e+01 2.081179e+01 moveto +3.040565e+01 1.978716e+01 lineto +3.072161e+01 1.916575e+01 lineto +2.999004e+01 2.017713e+01 lineto +2.966734e+01 2.081179e+01 lineto +closepath +gsave +6.812525e-01 6.812525e-01 8.515656e-01 setrgbcolor +fill +grestore +newpath +2.966734e+01 2.081179e+01 moveto +3.040565e+01 1.978716e+01 lineto +3.072161e+01 1.916575e+01 lineto +2.999004e+01 2.017713e+01 lineto +2.966734e+01 2.081179e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.896248e+01 2.186028e+01 moveto +2.966734e+01 2.081179e+01 lineto +2.999004e+01 2.017713e+01 lineto +2.929162e+01 2.121295e+01 lineto +2.896248e+01 2.186028e+01 lineto +closepath +gsave +6.81527e-01 6.81527e-01 8.519088e-01 setrgbcolor +fill +grestore +newpath +2.896248e+01 2.186028e+01 moveto +2.966734e+01 2.081179e+01 lineto +2.999004e+01 2.017713e+01 lineto +2.929162e+01 2.121295e+01 lineto +2.896248e+01 2.186028e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.829174e+01 2.293162e+01 moveto +2.896248e+01 2.186028e+01 lineto +2.929162e+01 2.121295e+01 lineto +2.862701e+01 2.227225e+01 lineto +2.829174e+01 2.293162e+01 lineto +closepath +gsave +6.81663e-01 6.81663e-01 8.520787e-01 setrgbcolor +fill +grestore +newpath +2.829174e+01 2.293162e+01 moveto +2.896248e+01 2.186028e+01 lineto +2.929162e+01 2.121295e+01 lineto +2.862701e+01 2.227225e+01 lineto +2.829174e+01 2.293162e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.765576e+01 2.402481e+01 moveto +2.829174e+01 2.293162e+01 lineto +2.862701e+01 2.227225e+01 lineto +2.799683e+01 2.335401e+01 lineto +2.765576e+01 2.402481e+01 lineto +closepath +gsave +6.816603e-01 6.816603e-01 8.520753e-01 setrgbcolor +fill +grestore +newpath +2.765576e+01 2.402481e+01 moveto +2.829174e+01 2.293162e+01 lineto +2.862701e+01 2.227225e+01 lineto +2.799683e+01 2.335401e+01 lineto +2.765576e+01 2.402481e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +2.705514e+01 2.51388e+01 moveto +2.765576e+01 2.402481e+01 lineto +2.799683e+01 2.335401e+01 lineto +2.740169e+01 2.445721e+01 lineto +2.705514e+01 2.51388e+01 lineto +closepath +gsave +6.815189e-01 6.815189e-01 8.518987e-01 setrgbcolor +fill +grestore +newpath +2.705514e+01 2.51388e+01 moveto +2.765576e+01 2.402481e+01 lineto +2.799683e+01 2.335401e+01 lineto +2.740169e+01 2.445721e+01 lineto +2.705514e+01 2.51388e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.370296e+01 3.923866e+00 moveto +6.49958e+01 3.999689e+00 lineto +6.499586e+01 3.999614e+00 lineto +6.372291e+01 3.900946e+00 lineto +6.370296e+01 3.923866e+00 lineto +closepath +gsave +6.105969e-01 6.105969e-01 7.632462e-01 setrgbcolor +fill +grestore +newpath +6.370296e+01 3.923866e+00 moveto +6.49958e+01 3.999689e+00 lineto +6.499586e+01 3.999614e+00 lineto +6.372291e+01 3.900946e+00 lineto +6.370296e+01 3.923866e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.241134e+01 3.887882e+00 moveto +6.370296e+01 3.923866e+00 lineto +6.372291e+01 3.900946e+00 lineto +6.245116e+01 3.842138e+00 lineto +6.241134e+01 3.887882e+00 lineto +closepath +gsave +6.138072e-01 6.138072e-01 7.67259e-01 setrgbcolor +fill +grestore +newpath +6.241134e+01 3.887882e+00 moveto +6.370296e+01 3.923866e+00 lineto +6.372291e+01 3.900946e+00 lineto +6.245116e+01 3.842138e+00 lineto +6.241134e+01 3.887882e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.112218e+01 3.89177e+00 moveto +6.241134e+01 3.887882e+00 lineto +6.245116e+01 3.842138e+00 lineto +6.118183e+01 3.823245e+00 lineto +6.112218e+01 3.89177e+00 lineto +closepath +gsave +6.169518e-01 6.169518e-01 7.711897e-01 setrgbcolor +fill +grestore +newpath +6.112218e+01 3.89177e+00 moveto +6.241134e+01 3.887882e+00 lineto +6.245116e+01 3.842138e+00 lineto +6.118183e+01 3.823245e+00 lineto +6.112218e+01 3.89177e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.983669e+01 3.935526e+00 moveto +6.112218e+01 3.89177e+00 lineto +6.118183e+01 3.823245e+00 lineto +5.991611e+01 3.844285e+00 lineto +5.983669e+01 3.935526e+00 lineto +closepath +gsave +6.200268e-01 6.200268e-01 7.750335e-01 setrgbcolor +fill +grestore +newpath +5.983669e+01 3.935526e+00 moveto +6.112218e+01 3.89177e+00 lineto +6.118183e+01 3.823245e+00 lineto +5.991611e+01 3.844285e+00 lineto +5.983669e+01 3.935526e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.855609e+01 4.01911e+00 moveto +5.983669e+01 3.935526e+00 lineto +5.991611e+01 3.844285e+00 lineto +5.865521e+01 3.905239e+00 lineto +5.855609e+01 4.01911e+00 lineto +closepath +gsave +6.230285e-01 6.230285e-01 7.787856e-01 setrgbcolor +fill +grestore +newpath +5.855609e+01 4.01911e+00 moveto +5.983669e+01 3.935526e+00 lineto +5.991611e+01 3.844285e+00 lineto +5.865521e+01 3.905239e+00 lineto +5.855609e+01 4.01911e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.728159e+01 4.142441e+00 moveto +5.855609e+01 4.01911e+00 lineto +5.865521e+01 3.905239e+00 lineto +5.740032e+01 4.006048e+00 lineto +5.728159e+01 4.142441e+00 lineto +closepath +gsave +6.259532e-01 6.259532e-01 7.824415e-01 setrgbcolor +fill +grestore +newpath +5.728159e+01 4.142441e+00 moveto +5.855609e+01 4.01911e+00 lineto +5.865521e+01 3.905239e+00 lineto +5.740032e+01 4.006048e+00 lineto +5.728159e+01 4.142441e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.601439e+01 4.305404e+00 moveto +5.728159e+01 4.142441e+00 lineto +5.740032e+01 4.006048e+00 lineto +5.615262e+01 4.146618e+00 lineto +5.601439e+01 4.305404e+00 lineto +closepath +gsave +6.287974e-01 6.287974e-01 7.859967e-01 setrgbcolor +fill +grestore +newpath +5.601439e+01 4.305404e+00 moveto +5.728159e+01 4.142441e+00 lineto +5.740032e+01 4.006048e+00 lineto +5.615262e+01 4.146618e+00 lineto +5.601439e+01 4.305404e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.475571e+01 4.507843e+00 moveto +5.601439e+01 4.305404e+00 lineto +5.615262e+01 4.146618e+00 lineto +5.491329e+01 4.326815e+00 lineto +5.475571e+01 4.507843e+00 lineto +closepath +gsave +6.315577e-01 6.315577e-01 7.894471e-01 setrgbcolor +fill +grestore +newpath +5.475571e+01 4.507843e+00 moveto +5.601439e+01 4.305404e+00 lineto +5.615262e+01 4.146618e+00 lineto +5.491329e+01 4.326815e+00 lineto +5.475571e+01 4.507843e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.350672e+01 4.749567e+00 moveto +5.475571e+01 4.507843e+00 lineto +5.491329e+01 4.326815e+00 lineto +5.368352e+01 4.546468e+00 lineto +5.350672e+01 4.749567e+00 lineto +closepath +gsave +6.342309e-01 6.342309e-01 7.927886e-01 setrgbcolor +fill +grestore +newpath +5.350672e+01 4.749567e+00 moveto +5.475571e+01 4.507843e+00 lineto +5.491329e+01 4.326815e+00 lineto +5.368352e+01 4.546468e+00 lineto +5.350672e+01 4.749567e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.226862e+01 5.030348e+00 moveto +5.350672e+01 4.749567e+00 lineto +5.368352e+01 4.546468e+00 lineto +5.246446e+01 4.80537e+00 lineto +5.226862e+01 5.030348e+00 lineto +closepath +gsave +6.368138e-01 6.368138e-01 7.960173e-01 setrgbcolor +fill +grestore +newpath +5.226862e+01 5.030348e+00 moveto +5.350672e+01 4.749567e+00 lineto +5.368352e+01 4.546468e+00 lineto +5.246446e+01 4.80537e+00 lineto +5.226862e+01 5.030348e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.104257e+01 5.34992e+00 moveto +5.226862e+01 5.030348e+00 lineto +5.246446e+01 4.80537e+00 lineto +5.125727e+01 5.103276e+00 lineto +5.104257e+01 5.34992e+00 lineto +closepath +gsave +6.393036e-01 6.393036e-01 7.991295e-01 setrgbcolor +fill +grestore +newpath +5.104257e+01 5.34992e+00 moveto +5.226862e+01 5.030348e+00 lineto +5.246446e+01 4.80537e+00 lineto +5.125727e+01 5.103276e+00 lineto +5.104257e+01 5.34992e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.982973e+01 5.707979e+00 moveto +5.104257e+01 5.34992e+00 lineto +5.125727e+01 5.103276e+00 lineto +5.006309e+01 5.439903e+00 lineto +4.982973e+01 5.707979e+00 lineto +closepath +gsave +6.416973e-01 6.416973e-01 8.021216e-01 setrgbcolor +fill +grestore +newpath +4.982973e+01 5.707979e+00 moveto +5.104257e+01 5.34992e+00 lineto +5.125727e+01 5.103276e+00 lineto +5.006309e+01 5.439903e+00 lineto +4.982973e+01 5.707979e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.863126e+01 6.104187e+00 moveto +4.982973e+01 5.707979e+00 lineto +5.006309e+01 5.439903e+00 lineto +4.888305e+01 5.814933e+00 lineto +4.863126e+01 6.104187e+00 lineto +closepath +gsave +6.439922e-01 6.439922e-01 8.049903e-01 setrgbcolor +fill +grestore +newpath +4.863126e+01 6.104187e+00 moveto +4.982973e+01 5.707979e+00 lineto +5.006309e+01 5.439903e+00 lineto +4.888305e+01 5.814933e+00 lineto +4.863126e+01 6.104187e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.744829e+01 6.538168e+00 moveto +4.863126e+01 6.104187e+00 lineto +4.888305e+01 5.814933e+00 lineto +4.771828e+01 6.22801e+00 lineto +4.744829e+01 6.538168e+00 lineto +closepath +gsave +6.461858e-01 6.461858e-01 8.077323e-01 setrgbcolor +fill +grestore +newpath +4.744829e+01 6.538168e+00 moveto +4.863126e+01 6.104187e+00 lineto +4.888305e+01 5.814933e+00 lineto +4.771828e+01 6.22801e+00 lineto +4.744829e+01 6.538168e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.628193e+01 7.009513e+00 moveto +4.744829e+01 6.538168e+00 lineto +4.771828e+01 6.22801e+00 lineto +4.656986e+01 6.678744e+00 lineto +4.628193e+01 7.009513e+00 lineto +closepath +gsave +6.482758e-01 6.482758e-01 8.103447e-01 setrgbcolor +fill +grestore +newpath +4.628193e+01 7.009513e+00 moveto +4.744829e+01 6.538168e+00 lineto +4.771828e+01 6.22801e+00 lineto +4.656986e+01 6.678744e+00 lineto +4.628193e+01 7.009513e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.51333e+01 7.517774e+00 moveto +4.628193e+01 7.009513e+00 lineto +4.656986e+01 6.678744e+00 lineto +4.54389e+01 7.166707e+00 lineto +4.51333e+01 7.517774e+00 lineto +closepath +gsave +6.502597e-01 6.502597e-01 8.128246e-01 setrgbcolor +fill +grestore +newpath +4.51333e+01 7.517774e+00 moveto +4.628193e+01 7.009513e+00 lineto +4.656986e+01 6.678744e+00 lineto +4.54389e+01 7.166707e+00 lineto +4.51333e+01 7.517774e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.400347e+01 8.062471e+00 moveto +4.51333e+01 7.517774e+00 lineto +4.54389e+01 7.166707e+00 lineto +4.432646e+01 7.691439e+00 lineto +4.400347e+01 8.062471e+00 lineto +closepath +gsave +6.521355e-01 6.521355e-01 8.151693e-01 setrgbcolor +fill +grestore +newpath +4.400347e+01 8.062471e+00 moveto +4.51333e+01 7.517774e+00 lineto +4.54389e+01 7.166707e+00 lineto +4.432646e+01 7.691439e+00 lineto +4.400347e+01 8.062471e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.289353e+01 8.643087e+00 moveto +4.400347e+01 8.062471e+00 lineto +4.432646e+01 7.691439e+00 lineto +4.323359e+01 8.252441e+00 lineto +4.289353e+01 8.643087e+00 lineto +closepath +gsave +6.539012e-01 6.539012e-01 8.173764e-01 setrgbcolor +fill +grestore +newpath +4.289353e+01 8.643087e+00 moveto +4.400347e+01 8.062471e+00 lineto +4.432646e+01 7.691439e+00 lineto +4.323359e+01 8.252441e+00 lineto +4.289353e+01 8.643087e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.180452e+01 9.259073e+00 moveto +4.289353e+01 8.643087e+00 lineto +4.323359e+01 8.252441e+00 lineto +4.216133e+01 8.849183e+00 lineto +4.180452e+01 9.259073e+00 lineto +closepath +gsave +6.555549e-01 6.555549e-01 8.194436e-01 setrgbcolor +fill +grestore +newpath +4.180452e+01 9.259073e+00 moveto +4.289353e+01 8.643087e+00 lineto +4.323359e+01 8.252441e+00 lineto +4.216133e+01 8.849183e+00 lineto +4.180452e+01 9.259073e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.073747e+01 9.909846e+00 moveto +4.180452e+01 9.259073e+00 lineto +4.216133e+01 8.849183e+00 lineto +4.111069e+01 9.481099e+00 lineto +4.073747e+01 9.909846e+00 lineto +closepath +gsave +6.570949e-01 6.570949e-01 8.213686e-01 setrgbcolor +fill +grestore +newpath +4.073747e+01 9.909846e+00 moveto +4.180452e+01 9.259073e+00 lineto +4.216133e+01 8.849183e+00 lineto +4.111069e+01 9.481099e+00 lineto +4.073747e+01 9.909846e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.969339e+01 1.059479e+01 moveto +4.073747e+01 9.909846e+00 lineto +4.111069e+01 9.481099e+00 lineto +4.008267e+01 1.014759e+01 lineto +3.969339e+01 1.059479e+01 lineto +closepath +gsave +6.585197e-01 6.585197e-01 8.231496e-01 setrgbcolor +fill +grestore +newpath +3.969339e+01 1.059479e+01 moveto +4.073747e+01 9.909846e+00 lineto +4.111069e+01 9.481099e+00 lineto +4.008267e+01 1.014759e+01 lineto +3.969339e+01 1.059479e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.867327e+01 1.131325e+01 moveto +3.969339e+01 1.059479e+01 lineto +4.008267e+01 1.014759e+01 lineto +3.907825e+01 1.084803e+01 lineto +3.867327e+01 1.131325e+01 lineto +closepath +gsave +6.598278e-01 6.598278e-01 8.247847e-01 setrgbcolor +fill +grestore +newpath +3.867327e+01 1.131325e+01 moveto +3.969339e+01 1.059479e+01 lineto +4.008267e+01 1.014759e+01 lineto +3.907825e+01 1.084803e+01 lineto +3.867327e+01 1.131325e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.767808e+01 1.206456e+01 moveto +3.867327e+01 1.131325e+01 lineto +3.907825e+01 1.084803e+01 lineto +3.809836e+01 1.158175e+01 lineto +3.767808e+01 1.206456e+01 lineto +closepath +gsave +6.610178e-01 6.610178e-01 8.262723e-01 setrgbcolor +fill +grestore +newpath +3.767808e+01 1.206456e+01 moveto +3.867327e+01 1.131325e+01 lineto +3.907825e+01 1.084803e+01 lineto +3.809836e+01 1.158175e+01 lineto +3.767808e+01 1.206456e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.670875e+01 1.2848e+01 moveto +3.767808e+01 1.206456e+01 lineto +3.809836e+01 1.158175e+01 lineto +3.714395e+01 1.234806e+01 lineto +3.670875e+01 1.2848e+01 lineto +closepath +gsave +6.620887e-01 6.620887e-01 8.276109e-01 setrgbcolor +fill +grestore +newpath +3.670875e+01 1.2848e+01 moveto +3.767808e+01 1.206456e+01 lineto +3.809836e+01 1.158175e+01 lineto +3.714395e+01 1.234806e+01 lineto +3.670875e+01 1.2848e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.576622e+01 1.366282e+01 moveto +3.670875e+01 1.2848e+01 lineto +3.714395e+01 1.234806e+01 lineto +3.621591e+01 1.314623e+01 lineto +3.576622e+01 1.366282e+01 lineto +closepath +gsave +6.630393e-01 6.630393e-01 8.287991e-01 setrgbcolor +fill +grestore +newpath +3.576622e+01 1.366282e+01 moveto +3.670875e+01 1.2848e+01 lineto +3.714395e+01 1.234806e+01 lineto +3.621591e+01 1.314623e+01 lineto +3.576622e+01 1.366282e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.485136e+01 1.450827e+01 moveto +3.576622e+01 1.366282e+01 lineto +3.621591e+01 1.314623e+01 lineto +3.531513e+01 1.397551e+01 lineto +3.485136e+01 1.450827e+01 lineto +closepath +gsave +6.638687e-01 6.638687e-01 8.298359e-01 setrgbcolor +fill +grestore +newpath +3.485136e+01 1.450827e+01 moveto +3.576622e+01 1.366282e+01 lineto +3.621591e+01 1.314623e+01 lineto +3.531513e+01 1.397551e+01 lineto +3.485136e+01 1.450827e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.396505e+01 1.538353e+01 moveto +3.485136e+01 1.450827e+01 lineto +3.531513e+01 1.397551e+01 lineto +3.444245e+01 1.48351e+01 lineto +3.396505e+01 1.538353e+01 lineto +closepath +gsave +6.645762e-01 6.645762e-01 8.307202e-01 setrgbcolor +fill +grestore +newpath +3.396505e+01 1.538353e+01 moveto +3.485136e+01 1.450827e+01 lineto +3.531513e+01 1.397551e+01 lineto +3.444245e+01 1.48351e+01 lineto +3.396505e+01 1.538353e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.310812e+01 1.628777e+01 moveto +3.396505e+01 1.538353e+01 lineto +3.444245e+01 1.48351e+01 lineto +3.35987e+01 1.572421e+01 lineto +3.310812e+01 1.628777e+01 lineto +closepath +gsave +6.65161e-01 6.65161e-01 8.314512e-01 setrgbcolor +fill +grestore +newpath +3.310812e+01 1.628777e+01 moveto +3.396505e+01 1.538353e+01 lineto +3.444245e+01 1.48351e+01 lineto +3.35987e+01 1.572421e+01 lineto +3.310812e+01 1.628777e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.228138e+01 1.722015e+01 moveto +3.310812e+01 1.628777e+01 lineto +3.35987e+01 1.572421e+01 lineto +3.278468e+01 1.664198e+01 lineto +3.228138e+01 1.722015e+01 lineto +closepath +gsave +6.656225e-01 6.656225e-01 8.320282e-01 setrgbcolor +fill +grestore +newpath +3.228138e+01 1.722015e+01 moveto +3.310812e+01 1.628777e+01 lineto +3.35987e+01 1.572421e+01 lineto +3.278468e+01 1.664198e+01 lineto +3.228138e+01 1.722015e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.372291e+01 3.900946e+00 moveto +6.499586e+01 3.999614e+00 lineto +6.499595e+01 3.999543e+00 lineto +6.375073e+01 3.87876e+00 lineto +6.372291e+01 3.900946e+00 lineto +closepath +gsave +6.103113e-01 6.103113e-01 7.628891e-01 setrgbcolor +fill +grestore +newpath +6.372291e+01 3.900946e+00 moveto +6.499586e+01 3.999614e+00 lineto +6.499595e+01 3.999543e+00 lineto +6.375073e+01 3.87876e+00 lineto +6.372291e+01 3.900946e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.245116e+01 3.842138e+00 moveto +6.372291e+01 3.900946e+00 lineto +6.375073e+01 3.87876e+00 lineto +6.25067e+01 3.797858e+00 lineto +6.245116e+01 3.842138e+00 lineto +closepath +gsave +6.129523e-01 6.129523e-01 7.661904e-01 setrgbcolor +fill +grestore +newpath +6.245116e+01 3.842138e+00 moveto +6.372291e+01 3.900946e+00 lineto +6.375073e+01 3.87876e+00 lineto +6.25067e+01 3.797858e+00 lineto +6.245116e+01 3.842138e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.118183e+01 3.823245e+00 moveto +6.245116e+01 3.842138e+00 lineto +6.25067e+01 3.797858e+00 lineto +6.126502e+01 3.756914e+00 lineto +6.118183e+01 3.823245e+00 lineto +closepath +gsave +6.155262e-01 6.155262e-01 7.694078e-01 setrgbcolor +fill +grestore +newpath +6.118183e+01 3.823245e+00 moveto +6.245116e+01 3.842138e+00 lineto +6.25067e+01 3.797858e+00 lineto +6.126502e+01 3.756914e+00 lineto +6.118183e+01 3.823245e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.991611e+01 3.844285e+00 moveto +6.118183e+01 3.823245e+00 lineto +6.126502e+01 3.756914e+00 lineto +6.002688e+01 3.755966e+00 lineto +5.991611e+01 3.844285e+00 lineto +closepath +gsave +6.1803e-01 6.1803e-01 7.725374e-01 setrgbcolor +fill +grestore +newpath +5.991611e+01 3.844285e+00 moveto +6.118183e+01 3.823245e+00 lineto +6.126502e+01 3.756914e+00 lineto +6.002688e+01 3.755966e+00 lineto +5.991611e+01 3.844285e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.865521e+01 3.905239e+00 moveto +5.991611e+01 3.844285e+00 lineto +6.002688e+01 3.755966e+00 lineto +5.879345e+01 3.795015e+00 lineto +5.865521e+01 3.905239e+00 lineto +closepath +gsave +6.204605e-01 6.204605e-01 7.755757e-01 setrgbcolor +fill +grestore +newpath +5.865521e+01 3.905239e+00 moveto +5.991611e+01 3.844285e+00 lineto +6.002688e+01 3.755966e+00 lineto +5.879345e+01 3.795015e+00 lineto +5.865521e+01 3.905239e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.740032e+01 4.006048e+00 moveto +5.865521e+01 3.905239e+00 lineto +5.879345e+01 3.795015e+00 lineto +5.75659e+01 3.874023e+00 lineto +5.740032e+01 4.006048e+00 lineto +closepath +gsave +6.228151e-01 6.228151e-01 7.785188e-01 setrgbcolor +fill +grestore +newpath +5.740032e+01 4.006048e+00 moveto +5.865521e+01 3.905239e+00 lineto +5.879345e+01 3.795015e+00 lineto +5.75659e+01 3.874023e+00 lineto +5.740032e+01 4.006048e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.615262e+01 4.146618e+00 moveto +5.740032e+01 4.006048e+00 lineto +5.75659e+01 3.874023e+00 lineto +5.634539e+01 3.992918e+00 lineto +5.615262e+01 4.146618e+00 lineto +closepath +gsave +6.250908e-01 6.250908e-01 7.813636e-01 setrgbcolor +fill +grestore +newpath +5.615262e+01 4.146618e+00 moveto +5.740032e+01 4.006048e+00 lineto +5.75659e+01 3.874023e+00 lineto +5.634539e+01 3.992918e+00 lineto +5.615262e+01 4.146618e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.491329e+01 4.326815e+00 moveto +5.615262e+01 4.146618e+00 lineto +5.634539e+01 3.992918e+00 lineto +5.513306e+01 4.151585e+00 lineto +5.491329e+01 4.326815e+00 lineto +closepath +gsave +6.272852e-01 6.272852e-01 7.841065e-01 setrgbcolor +fill +grestore +newpath +5.491329e+01 4.326815e+00 moveto +5.615262e+01 4.146618e+00 lineto +5.634539e+01 3.992918e+00 lineto +5.513306e+01 4.151585e+00 lineto +5.491329e+01 4.326815e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.368352e+01 4.546468e+00 moveto +5.491329e+01 4.326815e+00 lineto +5.513306e+01 4.151585e+00 lineto +5.393009e+01 4.349874e+00 lineto +5.368352e+01 4.546468e+00 lineto +closepath +gsave +6.293957e-01 6.293957e-01 7.867446e-01 setrgbcolor +fill +grestore +newpath +5.368352e+01 4.546468e+00 moveto +5.491329e+01 4.326815e+00 lineto +5.513306e+01 4.151585e+00 lineto +5.393009e+01 4.349874e+00 lineto +5.368352e+01 4.546468e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.246446e+01 4.80537e+00 moveto +5.368352e+01 4.546468e+00 lineto +5.393009e+01 4.349874e+00 lineto +5.273759e+01 4.587598e+00 lineto +5.246446e+01 4.80537e+00 lineto +closepath +gsave +6.314198e-01 6.314198e-01 7.892747e-01 setrgbcolor +fill +grestore +newpath +5.246446e+01 4.80537e+00 moveto +5.368352e+01 4.546468e+00 lineto +5.393009e+01 4.349874e+00 lineto +5.273759e+01 4.587598e+00 lineto +5.246446e+01 4.80537e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.125727e+01 5.103276e+00 moveto +5.246446e+01 4.80537e+00 lineto +5.273759e+01 4.587598e+00 lineto +5.15567e+01 4.864532e+00 lineto +5.125727e+01 5.103276e+00 lineto +closepath +gsave +6.333552e-01 6.333552e-01 7.91694e-01 setrgbcolor +fill +grestore +newpath +5.125727e+01 5.103276e+00 moveto +5.246446e+01 4.80537e+00 lineto +5.273759e+01 4.587598e+00 lineto +5.15567e+01 4.864532e+00 lineto +5.125727e+01 5.103276e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.006309e+01 5.439903e+00 moveto +5.125727e+01 5.103276e+00 lineto +5.15567e+01 4.864532e+00 lineto +5.038854e+01 5.180413e+00 lineto +5.006309e+01 5.439903e+00 lineto +closepath +gsave +6.351999e-01 6.351999e-01 7.939999e-01 setrgbcolor +fill +grestore +newpath +5.006309e+01 5.439903e+00 moveto +5.125727e+01 5.103276e+00 lineto +5.15567e+01 4.864532e+00 lineto +5.038854e+01 5.180413e+00 lineto +5.006309e+01 5.439903e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.888305e+01 5.814933e+00 moveto +5.006309e+01 5.439903e+00 lineto +5.038854e+01 5.180413e+00 lineto +4.923422e+01 5.534943e+00 lineto +4.888305e+01 5.814933e+00 lineto +closepath +gsave +6.369517e-01 6.369517e-01 7.961897e-01 setrgbcolor +fill +grestore +newpath +4.888305e+01 5.814933e+00 moveto +5.006309e+01 5.439903e+00 lineto +5.038854e+01 5.180413e+00 lineto +4.923422e+01 5.534943e+00 lineto +4.888305e+01 5.814933e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.771828e+01 6.22801e+00 moveto +4.888305e+01 5.814933e+00 lineto +4.923422e+01 5.534943e+00 lineto +4.809482e+01 5.927785e+00 lineto +4.771828e+01 6.22801e+00 lineto +closepath +gsave +6.386088e-01 6.386088e-01 7.98261e-01 setrgbcolor +fill +grestore +newpath +4.771828e+01 6.22801e+00 moveto +4.888305e+01 5.814933e+00 lineto +4.923422e+01 5.534943e+00 lineto +4.809482e+01 5.927785e+00 lineto +4.771828e+01 6.22801e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.656986e+01 6.678744e+00 moveto +4.771828e+01 6.22801e+00 lineto +4.809482e+01 5.927785e+00 lineto +4.697143e+01 6.358568e+00 lineto +4.656986e+01 6.678744e+00 lineto +closepath +gsave +6.401692e-01 6.401692e-01 8.002115e-01 setrgbcolor +fill +grestore +newpath +4.656986e+01 6.678744e+00 moveto +4.771828e+01 6.22801e+00 lineto +4.809482e+01 5.927785e+00 lineto +4.697143e+01 6.358568e+00 lineto +4.656986e+01 6.678744e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.54389e+01 7.166707e+00 moveto +4.656986e+01 6.678744e+00 lineto +4.697143e+01 6.358568e+00 lineto +4.58651e+01 6.826884e+00 lineto +4.54389e+01 7.166707e+00 lineto +closepath +gsave +6.416314e-01 6.416314e-01 8.020392e-01 setrgbcolor +fill +grestore +newpath +4.54389e+01 7.166707e+00 moveto +4.656986e+01 6.678744e+00 lineto +4.697143e+01 6.358568e+00 lineto +4.58651e+01 6.826884e+00 lineto +4.54389e+01 7.166707e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.432646e+01 7.691439e+00 moveto +4.54389e+01 7.166707e+00 lineto +4.58651e+01 6.826884e+00 lineto +4.47769e+01 7.33229e+00 lineto +4.432646e+01 7.691439e+00 lineto +closepath +gsave +6.429937e-01 6.429937e-01 8.037421e-01 setrgbcolor +fill +grestore +newpath +4.432646e+01 7.691439e+00 moveto +4.54389e+01 7.166707e+00 lineto +4.58651e+01 6.826884e+00 lineto +4.47769e+01 7.33229e+00 lineto +4.432646e+01 7.691439e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.323359e+01 8.252441e+00 moveto +4.432646e+01 7.691439e+00 lineto +4.47769e+01 7.33229e+00 lineto +4.370784e+01 7.874306e+00 lineto +4.323359e+01 8.252441e+00 lineto +closepath +gsave +6.442546e-01 6.442546e-01 8.053183e-01 setrgbcolor +fill +grestore +newpath +4.323359e+01 8.252441e+00 moveto +4.432646e+01 7.691439e+00 lineto +4.47769e+01 7.33229e+00 lineto +4.370784e+01 7.874306e+00 lineto +4.323359e+01 8.252441e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.216133e+01 8.849183e+00 moveto +4.323359e+01 8.252441e+00 lineto +4.370784e+01 7.874306e+00 lineto +4.265894e+01 8.45242e+00 lineto +4.216133e+01 8.849183e+00 lineto +closepath +gsave +6.454129e-01 6.454129e-01 8.067662e-01 setrgbcolor +fill +grestore +newpath +4.216133e+01 8.849183e+00 moveto +4.323359e+01 8.252441e+00 lineto +4.370784e+01 7.874306e+00 lineto +4.265894e+01 8.45242e+00 lineto +4.216133e+01 8.849183e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.111069e+01 9.481099e+00 moveto +4.216133e+01 8.849183e+00 lineto +4.265894e+01 8.45242e+00 lineto +4.16312e+01 9.066085e+00 lineto +4.111069e+01 9.481099e+00 lineto +closepath +gsave +6.464674e-01 6.464674e-01 8.080842e-01 setrgbcolor +fill +grestore +newpath +4.111069e+01 9.481099e+00 moveto +4.216133e+01 8.849183e+00 lineto +4.265894e+01 8.45242e+00 lineto +4.16312e+01 9.066085e+00 lineto +4.111069e+01 9.481099e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.008267e+01 1.014759e+01 moveto +4.111069e+01 9.481099e+00 lineto +4.16312e+01 9.066085e+00 lineto +4.062558e+01 9.714719e+00 lineto +4.008267e+01 1.014759e+01 lineto +closepath +gsave +6.474169e-01 6.474169e-01 8.092711e-01 setrgbcolor +fill +grestore +newpath +4.008267e+01 1.014759e+01 moveto +4.111069e+01 9.481099e+00 lineto +4.16312e+01 9.066085e+00 lineto +4.062558e+01 9.714719e+00 lineto +4.008267e+01 1.014759e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.907825e+01 1.084803e+01 moveto +4.008267e+01 1.014759e+01 lineto +4.062558e+01 9.714719e+00 lineto +3.964304e+01 1.039771e+01 lineto +3.907825e+01 1.084803e+01 lineto +closepath +gsave +6.482604e-01 6.482604e-01 8.103255e-01 setrgbcolor +fill +grestore +newpath +3.907825e+01 1.084803e+01 moveto +4.008267e+01 1.014759e+01 lineto +4.062558e+01 9.714719e+00 lineto +3.964304e+01 1.039771e+01 lineto +3.907825e+01 1.084803e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +3.809836e+01 1.158175e+01 moveto +3.907825e+01 1.084803e+01 lineto +3.964304e+01 1.039771e+01 lineto +3.86845e+01 1.111441e+01 lineto +3.809836e+01 1.158175e+01 lineto +closepath +gsave +6.489971e-01 6.489971e-01 8.112464e-01 setrgbcolor +fill +grestore +newpath +3.809836e+01 1.158175e+01 moveto +3.907825e+01 1.084803e+01 lineto +3.964304e+01 1.039771e+01 lineto +3.86845e+01 1.111441e+01 lineto +3.809836e+01 1.158175e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.375073e+01 3.87876e+00 moveto +6.499595e+01 3.999543e+00 lineto +6.499607e+01 3.999474e+00 lineto +6.378626e+01 3.857445e+00 lineto +6.375073e+01 3.87876e+00 lineto +closepath +gsave +6.100172e-01 6.100172e-01 7.625216e-01 setrgbcolor +fill +grestore +newpath +6.375073e+01 3.87876e+00 moveto +6.499595e+01 3.999543e+00 lineto +6.499607e+01 3.999474e+00 lineto +6.378626e+01 3.857445e+00 lineto +6.375073e+01 3.87876e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.25067e+01 3.797858e+00 moveto +6.375073e+01 3.87876e+00 lineto +6.378626e+01 3.857445e+00 lineto +6.257761e+01 3.755317e+00 lineto +6.25067e+01 3.797858e+00 lineto +closepath +gsave +6.120728e-01 6.120728e-01 7.65091e-01 setrgbcolor +fill +grestore +newpath +6.25067e+01 3.797858e+00 moveto +6.375073e+01 3.87876e+00 lineto +6.378626e+01 3.857445e+00 lineto +6.257761e+01 3.755317e+00 lineto +6.25067e+01 3.797858e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.126502e+01 3.756914e+00 moveto +6.25067e+01 3.797858e+00 lineto +6.257761e+01 3.755317e+00 lineto +6.137124e+01 3.693187e+00 lineto +6.126502e+01 3.756914e+00 lineto +closepath +gsave +6.140602e-01 6.140602e-01 7.675752e-01 setrgbcolor +fill +grestore +newpath +6.126502e+01 3.756914e+00 moveto +6.25067e+01 3.797858e+00 lineto +6.257761e+01 3.755317e+00 lineto +6.137124e+01 3.693187e+00 lineto +6.126502e+01 3.756914e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.002688e+01 3.755966e+00 moveto +6.126502e+01 3.756914e+00 lineto +6.137124e+01 3.693187e+00 lineto +6.016831e+01 3.671113e+00 lineto +6.002688e+01 3.755966e+00 lineto +closepath +gsave +6.159771e-01 6.159771e-01 7.699714e-01 setrgbcolor +fill +grestore +newpath +6.002688e+01 3.755966e+00 moveto +6.126502e+01 3.756914e+00 lineto +6.137124e+01 3.693187e+00 lineto +6.016831e+01 3.671113e+00 lineto +6.002688e+01 3.755966e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.879345e+01 3.795015e+00 moveto +6.002688e+01 3.755966e+00 lineto +6.016831e+01 3.671113e+00 lineto +5.896996e+01 3.689117e+00 lineto +5.879345e+01 3.795015e+00 lineto +closepath +gsave +6.178213e-01 6.178213e-01 7.722767e-01 setrgbcolor +fill +grestore +newpath +5.879345e+01 3.795015e+00 moveto +6.002688e+01 3.755966e+00 lineto +6.016831e+01 3.671113e+00 lineto +5.896996e+01 3.689117e+00 lineto +5.879345e+01 3.795015e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.75659e+01 3.874023e+00 moveto +5.879345e+01 3.795015e+00 lineto +5.896996e+01 3.689117e+00 lineto +5.777732e+01 3.747181e+00 lineto +5.75659e+01 3.874023e+00 lineto +closepath +gsave +6.195908e-01 6.195908e-01 7.744885e-01 setrgbcolor +fill +grestore +newpath +5.75659e+01 3.874023e+00 moveto +5.879345e+01 3.795015e+00 lineto +5.896996e+01 3.689117e+00 lineto +5.777732e+01 3.747181e+00 lineto +5.75659e+01 3.874023e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.634539e+01 3.992918e+00 moveto +5.75659e+01 3.874023e+00 lineto +5.777732e+01 3.747181e+00 lineto +5.659151e+01 3.845251e+00 lineto +5.634539e+01 3.992918e+00 lineto +closepath +gsave +6.212834e-01 6.212834e-01 7.766042e-01 setrgbcolor +fill +grestore +newpath +5.634539e+01 3.992918e+00 moveto +5.75659e+01 3.874023e+00 lineto +5.777732e+01 3.747181e+00 lineto +5.659151e+01 3.845251e+00 lineto +5.634539e+01 3.992918e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.513306e+01 4.151585e+00 moveto +5.634539e+01 3.992918e+00 lineto +5.659151e+01 3.845251e+00 lineto +5.541367e+01 3.983233e+00 lineto +5.513306e+01 4.151585e+00 lineto +closepath +gsave +6.228973e-01 6.228973e-01 7.786216e-01 setrgbcolor +fill +grestore +newpath +5.513306e+01 4.151585e+00 moveto +5.634539e+01 3.992918e+00 lineto +5.659151e+01 3.845251e+00 lineto +5.541367e+01 3.983233e+00 lineto +5.513306e+01 4.151585e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.393009e+01 4.349874e+00 moveto +5.513306e+01 4.151585e+00 lineto +5.541367e+01 3.983233e+00 lineto +5.42449e+01 4.160997e+00 lineto +5.393009e+01 4.349874e+00 lineto +closepath +gsave +6.244306e-01 6.244306e-01 7.805382e-01 setrgbcolor +fill +grestore +newpath +5.393009e+01 4.349874e+00 moveto +5.513306e+01 4.151585e+00 lineto +5.541367e+01 3.983233e+00 lineto +5.42449e+01 4.160997e+00 lineto +5.393009e+01 4.349874e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.273759e+01 4.587598e+00 moveto +5.393009e+01 4.349874e+00 lineto +5.42449e+01 4.160997e+00 lineto +5.308632e+01 4.378374e+00 lineto +5.273759e+01 4.587598e+00 lineto +closepath +gsave +6.258816e-01 6.258816e-01 7.82352e-01 setrgbcolor +fill +grestore +newpath +5.273759e+01 4.587598e+00 moveto +5.393009e+01 4.349874e+00 lineto +5.42449e+01 4.160997e+00 lineto +5.308632e+01 4.378374e+00 lineto +5.273759e+01 4.587598e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.15567e+01 4.864532e+00 moveto +5.273759e+01 4.587598e+00 lineto +5.308632e+01 4.378374e+00 lineto +5.193901e+01 4.635159e+00 lineto +5.15567e+01 4.864532e+00 lineto +closepath +gsave +6.272487e-01 6.272487e-01 7.840609e-01 setrgbcolor +fill +grestore +newpath +5.15567e+01 4.864532e+00 moveto +5.273759e+01 4.587598e+00 lineto +5.308632e+01 4.378374e+00 lineto +5.193901e+01 4.635159e+00 lineto +5.15567e+01 4.864532e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.038854e+01 5.180413e+00 moveto +5.15567e+01 4.864532e+00 lineto +5.193901e+01 4.635159e+00 lineto +5.080408e+01 4.931109e+00 lineto +5.038854e+01 5.180413e+00 lineto +closepath +gsave +6.285304e-01 6.285304e-01 7.856631e-01 setrgbcolor +fill +grestore +newpath +5.038854e+01 5.180413e+00 moveto +5.15567e+01 4.864532e+00 lineto +5.193901e+01 4.635159e+00 lineto +5.080408e+01 4.931109e+00 lineto +5.038854e+01 5.180413e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.923422e+01 5.534943e+00 moveto +5.038854e+01 5.180413e+00 lineto +5.080408e+01 4.931109e+00 lineto +4.968258e+01 5.265943e+00 lineto +4.923422e+01 5.534943e+00 lineto +closepath +gsave +6.297253e-01 6.297253e-01 7.871567e-01 setrgbcolor +fill +grestore +newpath +4.923422e+01 5.534943e+00 moveto +5.038854e+01 5.180413e+00 lineto +5.080408e+01 4.931109e+00 lineto +4.968258e+01 5.265943e+00 lineto +4.923422e+01 5.534943e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.809482e+01 5.927785e+00 moveto +4.923422e+01 5.534943e+00 lineto +4.968258e+01 5.265943e+00 lineto +4.857558e+01 5.639345e+00 lineto +4.809482e+01 5.927785e+00 lineto +closepath +gsave +6.308321e-01 6.308321e-01 7.885401e-01 setrgbcolor +fill +grestore +newpath +4.809482e+01 5.927785e+00 moveto +4.923422e+01 5.534943e+00 lineto +4.968258e+01 5.265943e+00 lineto +4.857558e+01 5.639345e+00 lineto +4.809482e+01 5.927785e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.697143e+01 6.358568e+00 moveto +4.809482e+01 5.927785e+00 lineto +4.857558e+01 5.639345e+00 lineto +4.748414e+01 6.050961e+00 lineto +4.697143e+01 6.358568e+00 lineto +closepath +gsave +6.318495e-01 6.318495e-01 7.898119e-01 setrgbcolor +fill +grestore +newpath +4.697143e+01 6.358568e+00 moveto +4.809482e+01 5.927785e+00 lineto +4.857558e+01 5.639345e+00 lineto +4.748414e+01 6.050961e+00 lineto +4.697143e+01 6.358568e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.58651e+01 6.826884e+00 moveto +4.697143e+01 6.358568e+00 lineto +4.748414e+01 6.050961e+00 lineto +4.640928e+01 6.5004e+00 lineto +4.58651e+01 6.826884e+00 lineto +closepath +gsave +6.327765e-01 6.327765e-01 7.909706e-01 setrgbcolor +fill +grestore +newpath +4.58651e+01 6.826884e+00 moveto +4.697143e+01 6.358568e+00 lineto +4.748414e+01 6.050961e+00 lineto +4.640928e+01 6.5004e+00 lineto +4.58651e+01 6.826884e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.47769e+01 7.33229e+00 moveto +4.58651e+01 6.826884e+00 lineto +4.640928e+01 6.5004e+00 lineto +4.535202e+01 6.987238e+00 lineto +4.47769e+01 7.33229e+00 lineto +closepath +gsave +6.33612e-01 6.33612e-01 7.92015e-01 setrgbcolor +fill +grestore +newpath +4.47769e+01 7.33229e+00 moveto +4.58651e+01 6.826884e+00 lineto +4.640928e+01 6.5004e+00 lineto +4.535202e+01 6.987238e+00 lineto +4.47769e+01 7.33229e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.370784e+01 7.874306e+00 moveto +4.47769e+01 7.33229e+00 lineto +4.535202e+01 6.987238e+00 lineto +4.431337e+01 7.511014e+00 lineto +4.370784e+01 7.874306e+00 lineto +closepath +gsave +6.343552e-01 6.343552e-01 7.929439e-01 setrgbcolor +fill +grestore +newpath +4.370784e+01 7.874306e+00 moveto +4.47769e+01 7.33229e+00 lineto +4.535202e+01 6.987238e+00 lineto +4.431337e+01 7.511014e+00 lineto +4.370784e+01 7.874306e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.265894e+01 8.45242e+00 moveto +4.370784e+01 7.874306e+00 lineto +4.431337e+01 7.511014e+00 lineto +4.32943e+01 8.071232e+00 lineto +4.265894e+01 8.45242e+00 lineto +closepath +gsave +6.350052e-01 6.350052e-01 7.937565e-01 setrgbcolor +fill +grestore +newpath +4.265894e+01 8.45242e+00 moveto +4.370784e+01 7.874306e+00 lineto +4.431337e+01 7.511014e+00 lineto +4.32943e+01 8.071232e+00 lineto +4.265894e+01 8.45242e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.16312e+01 9.066085e+00 moveto +4.265894e+01 8.45242e+00 lineto +4.32943e+01 8.071232e+00 lineto +4.229578e+01 8.667361e+00 lineto +4.16312e+01 9.066085e+00 lineto +closepath +gsave +6.355614e-01 6.355614e-01 7.944518e-01 setrgbcolor +fill +grestore +newpath +4.16312e+01 9.066085e+00 moveto +4.265894e+01 8.45242e+00 lineto +4.32943e+01 8.071232e+00 lineto +4.229578e+01 8.667361e+00 lineto +4.16312e+01 9.066085e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.378626e+01 3.857445e+00 moveto +6.499607e+01 3.999474e+00 lineto +6.499621e+01 3.999408e+00 lineto +6.382927e+01 3.837132e+00 lineto +6.378626e+01 3.857445e+00 lineto +closepath +gsave +6.097167e-01 6.097167e-01 7.621459e-01 setrgbcolor +fill +grestore +newpath +6.378626e+01 3.857445e+00 moveto +6.499607e+01 3.999474e+00 lineto +6.499621e+01 3.999408e+00 lineto +6.382927e+01 3.837132e+00 lineto +6.378626e+01 3.857445e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.257761e+01 3.755317e+00 moveto +6.378626e+01 3.857445e+00 lineto +6.382927e+01 3.837132e+00 lineto +6.266345e+01 3.714776e+00 lineto +6.257761e+01 3.755317e+00 lineto +closepath +gsave +6.111742e-01 6.111742e-01 7.639677e-01 setrgbcolor +fill +grestore +newpath +6.257761e+01 3.755317e+00 moveto +6.378626e+01 3.857445e+00 lineto +6.382927e+01 3.837132e+00 lineto +6.266345e+01 3.714776e+00 lineto +6.257761e+01 3.755317e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.137124e+01 3.693187e+00 moveto +6.257761e+01 3.755317e+00 lineto +6.266345e+01 3.714776e+00 lineto +6.149983e+01 3.632456e+00 lineto +6.137124e+01 3.693187e+00 lineto +closepath +gsave +6.125629e-01 6.125629e-01 7.657036e-01 setrgbcolor +fill +grestore +newpath +6.137124e+01 3.693187e+00 moveto +6.257761e+01 3.755317e+00 lineto +6.266345e+01 3.714776e+00 lineto +6.149983e+01 3.632456e+00 lineto +6.137124e+01 3.693187e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.016831e+01 3.671113e+00 moveto +6.137124e+01 3.693187e+00 lineto +6.149983e+01 3.632456e+00 lineto +6.033953e+01 3.590251e+00 lineto +6.016831e+01 3.671113e+00 lineto +closepath +gsave +6.138813e-01 6.138813e-01 7.673516e-01 setrgbcolor +fill +grestore +newpath +6.016831e+01 3.671113e+00 moveto +6.137124e+01 3.693187e+00 lineto +6.149983e+01 3.632456e+00 lineto +6.033953e+01 3.590251e+00 lineto +6.016831e+01 3.671113e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.896996e+01 3.689117e+00 moveto +6.016831e+01 3.671113e+00 lineto +6.033953e+01 3.590251e+00 lineto +5.918365e+01 3.588199e+00 lineto +5.896996e+01 3.689117e+00 lineto +closepath +gsave +6.151278e-01 6.151278e-01 7.689097e-01 setrgbcolor +fill +grestore +newpath +5.896996e+01 3.689117e+00 moveto +6.016831e+01 3.671113e+00 lineto +6.033953e+01 3.590251e+00 lineto +5.918365e+01 3.588199e+00 lineto +5.896996e+01 3.689117e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.777732e+01 3.747181e+00 moveto +5.896996e+01 3.689117e+00 lineto +5.918365e+01 3.588199e+00 lineto +5.803327e+01 3.626303e+00 lineto +5.777732e+01 3.747181e+00 lineto +closepath +gsave +6.163011e-01 6.163011e-01 7.703763e-01 setrgbcolor +fill +grestore +newpath +5.777732e+01 3.747181e+00 moveto +5.896996e+01 3.689117e+00 lineto +5.918365e+01 3.588199e+00 lineto +5.803327e+01 3.626303e+00 lineto +5.777732e+01 3.747181e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.659151e+01 3.845251e+00 moveto +5.777732e+01 3.747181e+00 lineto +5.803327e+01 3.626303e+00 lineto +5.688948e+01 3.704527e+00 lineto +5.659151e+01 3.845251e+00 lineto +closepath +gsave +6.173998e-01 6.173998e-01 7.717497e-01 setrgbcolor +fill +grestore +newpath +5.659151e+01 3.845251e+00 moveto +5.777732e+01 3.747181e+00 lineto +5.803327e+01 3.626303e+00 lineto +5.688948e+01 3.704527e+00 lineto +5.659151e+01 3.845251e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.541367e+01 3.983233e+00 moveto +5.659151e+01 3.845251e+00 lineto +5.688948e+01 3.704527e+00 lineto +5.575338e+01 3.822797e+00 lineto +5.541367e+01 3.983233e+00 lineto +closepath +gsave +6.184227e-01 6.184227e-01 7.730284e-01 setrgbcolor +fill +grestore +newpath +5.541367e+01 3.983233e+00 moveto +5.659151e+01 3.845251e+00 lineto +5.688948e+01 3.704527e+00 lineto +5.575338e+01 3.822797e+00 lineto +5.541367e+01 3.983233e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.42449e+01 4.160997e+00 moveto +5.541367e+01 3.983233e+00 lineto +5.575338e+01 3.822797e+00 lineto +5.462603e+01 3.981e+00 lineto +5.42449e+01 4.160997e+00 lineto +closepath +gsave +6.193688e-01 6.193688e-01 7.742109e-01 setrgbcolor +fill +grestore +newpath +5.42449e+01 4.160997e+00 moveto +5.541367e+01 3.983233e+00 lineto +5.575338e+01 3.822797e+00 lineto +5.462603e+01 3.981e+00 lineto +5.42449e+01 4.160997e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.308632e+01 4.378374e+00 moveto +5.42449e+01 4.160997e+00 lineto +5.462603e+01 3.981e+00 lineto +5.35085e+01 4.178988e+00 lineto +5.308632e+01 4.378374e+00 lineto +closepath +gsave +6.202368e-01 6.202368e-01 7.75296e-01 setrgbcolor +fill +grestore +newpath +5.308632e+01 4.378374e+00 moveto +5.42449e+01 4.160997e+00 lineto +5.462603e+01 3.981e+00 lineto +5.35085e+01 4.178988e+00 lineto +5.308632e+01 4.378374e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.193901e+01 4.635159e+00 moveto +5.308632e+01 4.378374e+00 lineto +5.35085e+01 4.178988e+00 lineto +5.240185e+01 4.416572e+00 lineto +5.193901e+01 4.635159e+00 lineto +closepath +gsave +6.21026e-01 6.21026e-01 7.762824e-01 setrgbcolor +fill +grestore +newpath +5.193901e+01 4.635159e+00 moveto +5.308632e+01 4.378374e+00 lineto +5.35085e+01 4.178988e+00 lineto +5.240185e+01 4.416572e+00 lineto +5.193901e+01 4.635159e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.080408e+01 4.931109e+00 moveto +5.193901e+01 4.635159e+00 lineto +5.240185e+01 4.416572e+00 lineto +5.130713e+01 4.693528e+00 lineto +5.080408e+01 4.931109e+00 lineto +closepath +gsave +6.217353e-01 6.217353e-01 7.771691e-01 setrgbcolor +fill +grestore +newpath +5.080408e+01 4.931109e+00 moveto +5.193901e+01 4.635159e+00 lineto +5.240185e+01 4.416572e+00 lineto +5.130713e+01 4.693528e+00 lineto +5.080408e+01 4.931109e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.968258e+01 5.265943e+00 moveto +5.080408e+01 4.931109e+00 lineto +5.130713e+01 4.693528e+00 lineto +5.022538e+01 5.009593e+00 lineto +4.968258e+01 5.265943e+00 lineto +closepath +gsave +6.223641e-01 6.223641e-01 7.779551e-01 setrgbcolor +fill +grestore +newpath +4.968258e+01 5.265943e+00 moveto +5.080408e+01 4.931109e+00 lineto +5.130713e+01 4.693528e+00 lineto +5.022538e+01 5.009593e+00 lineto +4.968258e+01 5.265943e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.857558e+01 5.639345e+00 moveto +4.968258e+01 5.265943e+00 lineto +5.022538e+01 5.009593e+00 lineto +4.915761e+01 5.364468e+00 lineto +4.857558e+01 5.639345e+00 lineto +closepath +gsave +6.229116e-01 6.229116e-01 7.786395e-01 setrgbcolor +fill +grestore +newpath +4.857558e+01 5.639345e+00 moveto +4.968258e+01 5.265943e+00 lineto +5.022538e+01 5.009593e+00 lineto +4.915761e+01 5.364468e+00 lineto +4.857558e+01 5.639345e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.748414e+01 6.050961e+00 moveto +4.857558e+01 5.639345e+00 lineto +4.915761e+01 5.364468e+00 lineto +4.810485e+01 5.757817e+00 lineto +4.748414e+01 6.050961e+00 lineto +closepath +gsave +6.233773e-01 6.233773e-01 7.792216e-01 setrgbcolor +fill +grestore +newpath +4.748414e+01 6.050961e+00 moveto +4.857558e+01 5.639345e+00 lineto +4.915761e+01 5.364468e+00 lineto +4.810485e+01 5.757817e+00 lineto +4.748414e+01 6.050961e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.640928e+01 6.5004e+00 moveto +4.748414e+01 6.050961e+00 lineto +4.810485e+01 5.757817e+00 lineto +4.706808e+01 6.189268e+00 lineto +4.640928e+01 6.5004e+00 lineto +closepath +gsave +6.237606e-01 6.237606e-01 7.797007e-01 setrgbcolor +fill +grestore +newpath +4.640928e+01 6.5004e+00 moveto +4.748414e+01 6.050961e+00 lineto +4.810485e+01 5.757817e+00 lineto +4.706808e+01 6.189268e+00 lineto +4.640928e+01 6.5004e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.535202e+01 6.987238e+00 moveto +4.640928e+01 6.5004e+00 lineto +4.706808e+01 6.189268e+00 lineto +4.604828e+01 6.658412e+00 lineto +4.535202e+01 6.987238e+00 lineto +closepath +gsave +6.240611e-01 6.240611e-01 7.800764e-01 setrgbcolor +fill +grestore +newpath +4.535202e+01 6.987238e+00 moveto +4.640928e+01 6.5004e+00 lineto +4.706808e+01 6.189268e+00 lineto +4.604828e+01 6.658412e+00 lineto +4.535202e+01 6.987238e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.382927e+01 3.837132e+00 moveto +6.499621e+01 3.999408e+00 lineto +6.499637e+01 3.999346e+00 lineto +6.38795e+01 3.817946e+00 lineto +6.382927e+01 3.837132e+00 lineto +closepath +gsave +6.094115e-01 6.094115e-01 7.617644e-01 setrgbcolor +fill +grestore +newpath +6.382927e+01 3.837132e+00 moveto +6.499621e+01 3.999408e+00 lineto +6.499637e+01 3.999346e+00 lineto +6.38795e+01 3.817946e+00 lineto +6.382927e+01 3.837132e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.266345e+01 3.714776e+00 moveto +6.382927e+01 3.837132e+00 lineto +6.38795e+01 3.817946e+00 lineto +6.276369e+01 3.676485e+00 lineto +6.266345e+01 3.714776e+00 lineto +closepath +gsave +6.102621e-01 6.102621e-01 7.628276e-01 setrgbcolor +fill +grestore +newpath +6.266345e+01 3.714776e+00 moveto +6.382927e+01 3.837132e+00 lineto +6.38795e+01 3.817946e+00 lineto +6.276369e+01 3.676485e+00 lineto +6.266345e+01 3.714776e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.149983e+01 3.632456e+00 moveto +6.266345e+01 3.714776e+00 lineto +6.276369e+01 3.676485e+00 lineto +6.165e+01 3.575097e+00 lineto +6.149983e+01 3.632456e+00 lineto +closepath +gsave +6.110437e-01 6.110437e-01 7.638046e-01 setrgbcolor +fill +grestore +newpath +6.149983e+01 3.632456e+00 moveto +6.266345e+01 3.714776e+00 lineto +6.276369e+01 3.676485e+00 lineto +6.165e+01 3.575097e+00 lineto +6.149983e+01 3.632456e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.033953e+01 3.590251e+00 moveto +6.149983e+01 3.632456e+00 lineto +6.165e+01 3.575097e+00 lineto +6.053949e+01 3.513877e+00 lineto +6.033953e+01 3.590251e+00 lineto +closepath +gsave +6.117556e-01 6.117556e-01 7.646945e-01 setrgbcolor +fill +grestore +newpath +6.033953e+01 3.590251e+00 moveto +6.149983e+01 3.632456e+00 lineto +6.165e+01 3.575097e+00 lineto +6.053949e+01 3.513877e+00 lineto +6.033953e+01 3.590251e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.918365e+01 3.588199e+00 moveto +6.033953e+01 3.590251e+00 lineto +6.053949e+01 3.513877e+00 lineto +5.943319e+01 3.492883e+00 lineto +5.918365e+01 3.588199e+00 lineto +closepath +gsave +6.12397e-01 6.12397e-01 7.654962e-01 setrgbcolor +fill +grestore +newpath +5.918365e+01 3.588199e+00 moveto +6.033953e+01 3.590251e+00 lineto +6.053949e+01 3.513877e+00 lineto +5.943319e+01 3.492883e+00 lineto +5.918365e+01 3.588199e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.803327e+01 3.626303e+00 moveto +5.918365e+01 3.588199e+00 lineto +5.943319e+01 3.492883e+00 lineto +5.833217e+01 3.512135e+00 lineto +5.803327e+01 3.626303e+00 lineto +closepath +gsave +6.129671e-01 6.129671e-01 7.662088e-01 setrgbcolor +fill +grestore +newpath +5.803327e+01 3.626303e+00 moveto +5.918365e+01 3.588199e+00 lineto +5.943319e+01 3.492883e+00 lineto +5.833217e+01 3.512135e+00 lineto +5.803327e+01 3.626303e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.688948e+01 3.704527e+00 moveto +5.803327e+01 3.626303e+00 lineto +5.833217e+01 3.512135e+00 lineto +5.723746e+01 3.571615e+00 lineto +5.688948e+01 3.704527e+00 lineto +closepath +gsave +6.134653e-01 6.134653e-01 7.668316e-01 setrgbcolor +fill +grestore +newpath +5.688948e+01 3.704527e+00 moveto +5.803327e+01 3.626303e+00 lineto +5.833217e+01 3.512135e+00 lineto +5.723746e+01 3.571615e+00 lineto +5.688948e+01 3.704527e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.575338e+01 3.822797e+00 moveto +5.688948e+01 3.704527e+00 lineto +5.723746e+01 3.571615e+00 lineto +5.615009e+01 3.671267e+00 lineto +5.575338e+01 3.822797e+00 lineto +closepath +gsave +6.138911e-01 6.138911e-01 7.673639e-01 setrgbcolor +fill +grestore +newpath +5.575338e+01 3.822797e+00 moveto +5.688948e+01 3.704527e+00 lineto +5.723746e+01 3.571615e+00 lineto +5.615009e+01 3.671267e+00 lineto +5.575338e+01 3.822797e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.462603e+01 3.981e+00 moveto +5.575338e+01 3.822797e+00 lineto +5.615009e+01 3.671267e+00 lineto +5.507111e+01 3.810995e+00 lineto +5.462603e+01 3.981e+00 lineto +closepath +gsave +6.14244e-01 6.14244e-01 7.67805e-01 setrgbcolor +fill +grestore +newpath +5.462603e+01 3.981e+00 moveto +5.575338e+01 3.822797e+00 lineto +5.615009e+01 3.671267e+00 lineto +5.507111e+01 3.810995e+00 lineto +5.462603e+01 3.981e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.35085e+01 4.178988e+00 moveto +5.462603e+01 3.981e+00 lineto +5.507111e+01 3.810995e+00 lineto +5.400153e+01 3.990669e+00 lineto +5.35085e+01 4.178988e+00 lineto +closepath +gsave +6.145236e-01 6.145236e-01 7.681545e-01 setrgbcolor +fill +grestore +newpath +5.35085e+01 4.178988e+00 moveto +5.462603e+01 3.981e+00 lineto +5.507111e+01 3.810995e+00 lineto +5.400153e+01 3.990669e+00 lineto +5.35085e+01 4.178988e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.240185e+01 4.416572e+00 moveto +5.35085e+01 4.178988e+00 lineto +5.400153e+01 3.990669e+00 lineto +5.294236e+01 4.210118e+00 lineto +5.240185e+01 4.416572e+00 lineto +closepath +gsave +6.147296e-01 6.147296e-01 7.68412e-01 setrgbcolor +fill +grestore +newpath +5.240185e+01 4.416572e+00 moveto +5.35085e+01 4.178988e+00 lineto +5.400153e+01 3.990669e+00 lineto +5.294236e+01 4.210118e+00 lineto +5.240185e+01 4.416572e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.130713e+01 4.693528e+00 moveto +5.240185e+01 4.416572e+00 lineto +5.294236e+01 4.210118e+00 lineto +5.189461e+01 4.469134e+00 lineto +5.130713e+01 4.693528e+00 lineto +closepath +gsave +6.148618e-01 6.148618e-01 7.685772e-01 setrgbcolor +fill +grestore +newpath +5.130713e+01 4.693528e+00 moveto +5.240185e+01 4.416572e+00 lineto +5.294236e+01 4.210118e+00 lineto +5.189461e+01 4.469134e+00 lineto +5.130713e+01 4.693528e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.022538e+01 5.009593e+00 moveto +5.130713e+01 4.693528e+00 lineto +5.189461e+01 4.469134e+00 lineto +5.085927e+01 4.767471e+00 lineto +5.022538e+01 5.009593e+00 lineto +closepath +gsave +6.1492e-01 6.1492e-01 7.6865e-01 setrgbcolor +fill +grestore +newpath +5.022538e+01 5.009593e+00 moveto +5.130713e+01 4.693528e+00 lineto +5.189461e+01 4.469134e+00 lineto +5.085927e+01 4.767471e+00 lineto +5.022538e+01 5.009593e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.915761e+01 5.364468e+00 moveto +5.022538e+01 5.009593e+00 lineto +5.085927e+01 4.767471e+00 lineto +4.983731e+01 5.104848e+00 lineto +4.915761e+01 5.364468e+00 lineto +closepath +gsave +6.149043e-01 6.149043e-01 7.686303e-01 setrgbcolor +fill +grestore +newpath +4.915761e+01 5.364468e+00 moveto +5.022538e+01 5.009593e+00 lineto +5.085927e+01 4.767471e+00 lineto +4.983731e+01 5.104848e+00 lineto +4.915761e+01 5.364468e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +4.810485e+01 5.757817e+00 moveto +4.915761e+01 5.364468e+00 lineto +4.983731e+01 5.104848e+00 lineto +4.882971e+01 5.480945e+00 lineto +4.810485e+01 5.757817e+00 lineto +closepath +gsave +6.148145e-01 6.148145e-01 7.685181e-01 setrgbcolor +fill +grestore +newpath +4.810485e+01 5.757817e+00 moveto +4.915761e+01 5.364468e+00 lineto +4.983731e+01 5.104848e+00 lineto +4.882971e+01 5.480945e+00 lineto +4.810485e+01 5.757817e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.38795e+01 3.817946e+00 moveto +6.499637e+01 3.999346e+00 lineto +6.499655e+01 3.999287e+00 lineto +6.393664e+01 3.800007e+00 lineto +6.38795e+01 3.817946e+00 lineto +closepath +gsave +6.091036e-01 6.091036e-01 7.613795e-01 setrgbcolor +fill +grestore +newpath +6.38795e+01 3.817946e+00 moveto +6.499637e+01 3.999346e+00 lineto +6.499655e+01 3.999287e+00 lineto +6.393664e+01 3.800007e+00 lineto +6.38795e+01 3.817946e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.276369e+01 3.676485e+00 moveto +6.38795e+01 3.817946e+00 lineto +6.393664e+01 3.800007e+00 lineto +6.287773e+01 3.640681e+00 lineto +6.276369e+01 3.676485e+00 lineto +closepath +gsave +6.09342e-01 6.09342e-01 7.616775e-01 setrgbcolor +fill +grestore +newpath +6.276369e+01 3.676485e+00 moveto +6.38795e+01 3.817946e+00 lineto +6.393664e+01 3.800007e+00 lineto +6.287773e+01 3.640681e+00 lineto +6.276369e+01 3.676485e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.165e+01 3.575097e+00 moveto +6.276369e+01 3.676485e+00 lineto +6.287773e+01 3.640681e+00 lineto +6.182083e+01 3.521462e+00 lineto +6.165e+01 3.575097e+00 lineto +closepath +gsave +6.095121e-01 6.095121e-01 7.618901e-01 setrgbcolor +fill +grestore +newpath +6.165e+01 3.575097e+00 moveto +6.276369e+01 3.676485e+00 lineto +6.287773e+01 3.640681e+00 lineto +6.182083e+01 3.521462e+00 lineto +6.165e+01 3.575097e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.053949e+01 3.513877e+00 moveto +6.165e+01 3.575097e+00 lineto +6.182083e+01 3.521462e+00 lineto +6.076694e+01 3.442462e+00 lineto +6.053949e+01 3.513877e+00 lineto +closepath +gsave +6.096135e-01 6.096135e-01 7.620169e-01 setrgbcolor +fill +grestore +newpath +6.053949e+01 3.513877e+00 moveto +6.165e+01 3.575097e+00 lineto +6.182083e+01 3.521462e+00 lineto +6.076694e+01 3.442462e+00 lineto +6.053949e+01 3.513877e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.943319e+01 3.492883e+00 moveto +6.053949e+01 3.513877e+00 lineto +6.076694e+01 3.442462e+00 lineto +5.971706e+01 3.403756e+00 lineto +5.943319e+01 3.492883e+00 lineto +closepath +gsave +6.096462e-01 6.096462e-01 7.620577e-01 setrgbcolor +fill +grestore +newpath +5.943319e+01 3.492883e+00 moveto +6.053949e+01 3.513877e+00 lineto +6.076694e+01 3.442462e+00 lineto +5.971706e+01 3.403756e+00 lineto +5.943319e+01 3.492883e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.833217e+01 3.512135e+00 moveto +5.943319e+01 3.492883e+00 lineto +5.971706e+01 3.403756e+00 lineto +5.867218e+01 3.40538e+00 lineto +5.833217e+01 3.512135e+00 lineto +closepath +gsave +6.096101e-01 6.096101e-01 7.620127e-01 setrgbcolor +fill +grestore +newpath +5.833217e+01 3.512135e+00 moveto +5.943319e+01 3.492883e+00 lineto +5.971706e+01 3.403756e+00 lineto +5.867218e+01 3.40538e+00 lineto +5.833217e+01 3.512135e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.723746e+01 3.571615e+00 moveto +5.833217e+01 3.512135e+00 lineto +5.867218e+01 3.40538e+00 lineto +5.763329e+01 3.447333e+00 lineto +5.723746e+01 3.571615e+00 lineto +closepath +gsave +6.095053e-01 6.095053e-01 7.618817e-01 setrgbcolor +fill +grestore +newpath +5.723746e+01 3.571615e+00 moveto +5.833217e+01 3.512135e+00 lineto +5.867218e+01 3.40538e+00 lineto +5.763329e+01 3.447333e+00 lineto +5.723746e+01 3.571615e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.615009e+01 3.671267e+00 moveto +5.723746e+01 3.571615e+00 lineto +5.763329e+01 3.447333e+00 lineto +5.660137e+01 3.529576e+00 lineto +5.615009e+01 3.671267e+00 lineto +closepath +gsave +6.09332e-01 6.09332e-01 7.61665e-01 setrgbcolor +fill +grestore +newpath +5.615009e+01 3.671267e+00 moveto +5.723746e+01 3.571615e+00 lineto +5.763329e+01 3.447333e+00 lineto +5.660137e+01 3.529576e+00 lineto +5.615009e+01 3.671267e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.507111e+01 3.810995e+00 moveto +5.615009e+01 3.671267e+00 lineto +5.660137e+01 3.529576e+00 lineto +5.557741e+01 3.65203e+00 lineto +5.507111e+01 3.810995e+00 lineto +closepath +gsave +6.090902e-01 6.090902e-01 7.613627e-01 setrgbcolor +fill +grestore +newpath +5.507111e+01 3.810995e+00 moveto +5.615009e+01 3.671267e+00 lineto +5.660137e+01 3.529576e+00 lineto +5.557741e+01 3.65203e+00 lineto +5.507111e+01 3.810995e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.400153e+01 3.990669e+00 moveto +5.507111e+01 3.810995e+00 lineto +5.557741e+01 3.65203e+00 lineto +5.456237e+01 3.814579e+00 lineto +5.400153e+01 3.990669e+00 lineto +closepath +gsave +6.087803e-01 6.087803e-01 7.609754e-01 setrgbcolor +fill +grestore +newpath +5.400153e+01 3.990669e+00 moveto +5.507111e+01 3.810995e+00 lineto +5.557741e+01 3.65203e+00 lineto +5.456237e+01 3.814579e+00 lineto +5.400153e+01 3.990669e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.294236e+01 4.210118e+00 moveto +5.400153e+01 3.990669e+00 lineto +5.456237e+01 3.814579e+00 lineto +5.355721e+01 4.01707e+00 lineto +5.294236e+01 4.210118e+00 lineto +closepath +gsave +6.084026e-01 6.084026e-01 7.605033e-01 setrgbcolor +fill +grestore +newpath +5.294236e+01 4.210118e+00 moveto +5.400153e+01 3.990669e+00 lineto +5.456237e+01 3.814579e+00 lineto +5.355721e+01 4.01707e+00 lineto +5.294236e+01 4.210118e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.189461e+01 4.469134e+00 moveto +5.294236e+01 4.210118e+00 lineto +5.355721e+01 4.01707e+00 lineto +5.256289e+01 4.259311e+00 lineto +5.189461e+01 4.469134e+00 lineto +closepath +gsave +6.079576e-01 6.079576e-01 7.59947e-01 setrgbcolor +fill +grestore +newpath +5.189461e+01 4.469134e+00 moveto +5.294236e+01 4.210118e+00 lineto +5.355721e+01 4.01707e+00 lineto +5.256289e+01 4.259311e+00 lineto +5.189461e+01 4.469134e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.085927e+01 4.767471e+00 moveto +5.189461e+01 4.469134e+00 lineto +5.256289e+01 4.259311e+00 lineto +5.158034e+01 4.541072e+00 lineto +5.085927e+01 4.767471e+00 lineto +closepath +gsave +6.074457e-01 6.074457e-01 7.593071e-01 setrgbcolor +fill +grestore +newpath +5.085927e+01 4.767471e+00 moveto +5.189461e+01 4.469134e+00 lineto +5.256289e+01 4.259311e+00 lineto +5.158034e+01 4.541072e+00 lineto +5.085927e+01 4.767471e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.393664e+01 3.800007e+00 moveto +6.499655e+01 3.999287e+00 lineto +6.499676e+01 3.999234e+00 lineto +6.400033e+01 3.783423e+00 lineto +6.393664e+01 3.800007e+00 lineto +closepath +gsave +6.087947e-01 6.087947e-01 7.609934e-01 setrgbcolor +fill +grestore +newpath +6.393664e+01 3.800007e+00 moveto +6.499655e+01 3.999287e+00 lineto +6.499676e+01 3.999234e+00 lineto +6.400033e+01 3.783423e+00 lineto +6.393664e+01 3.800007e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.287773e+01 3.640681e+00 moveto +6.393664e+01 3.800007e+00 lineto +6.400033e+01 3.783423e+00 lineto +6.300485e+01 3.607584e+00 lineto +6.287773e+01 3.640681e+00 lineto +closepath +gsave +6.084198e-01 6.084198e-01 7.605248e-01 setrgbcolor +fill +grestore +newpath +6.287773e+01 3.640681e+00 moveto +6.393664e+01 3.800007e+00 lineto +6.400033e+01 3.783423e+00 lineto +6.300485e+01 3.607584e+00 lineto +6.287773e+01 3.640681e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.182083e+01 3.521462e+00 moveto +6.287773e+01 3.640681e+00 lineto +6.300485e+01 3.607584e+00 lineto +6.201125e+01 3.471882e+00 lineto +6.182083e+01 3.521462e+00 lineto +closepath +gsave +6.079775e-01 6.079775e-01 7.599719e-01 setrgbcolor +fill +grestore +newpath +6.182083e+01 3.521462e+00 moveto +6.287773e+01 3.640681e+00 lineto +6.300485e+01 3.607584e+00 lineto +6.201125e+01 3.471882e+00 lineto +6.182083e+01 3.521462e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.076694e+01 3.442462e+00 moveto +6.182083e+01 3.521462e+00 lineto +6.201125e+01 3.471882e+00 lineto +6.102049e+01 3.376447e+00 lineto +6.076694e+01 3.442462e+00 lineto +closepath +gsave +6.074683e-01 6.074683e-01 7.593354e-01 setrgbcolor +fill +grestore +newpath +6.076694e+01 3.442462e+00 moveto +6.182083e+01 3.521462e+00 lineto +6.201125e+01 3.471882e+00 lineto +6.102049e+01 3.376447e+00 lineto +6.076694e+01 3.442462e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.971706e+01 3.403756e+00 moveto +6.076694e+01 3.442462e+00 lineto +6.102049e+01 3.376447e+00 lineto +6.003349e+01 3.321367e+00 lineto +5.971706e+01 3.403756e+00 lineto +closepath +gsave +6.068928e-01 6.068928e-01 7.58616e-01 setrgbcolor +fill +grestore +newpath +5.971706e+01 3.403756e+00 moveto +6.076694e+01 3.442462e+00 lineto +6.102049e+01 3.376447e+00 lineto +6.003349e+01 3.321367e+00 lineto +5.971706e+01 3.403756e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.867218e+01 3.40538e+00 moveto +5.971706e+01 3.403756e+00 lineto +6.003349e+01 3.321367e+00 lineto +5.90512e+01 3.306697e+00 lineto +5.867218e+01 3.40538e+00 lineto +closepath +gsave +6.062516e-01 6.062516e-01 7.578145e-01 setrgbcolor +fill +grestore +newpath +5.867218e+01 3.40538e+00 moveto +5.971706e+01 3.403756e+00 lineto +6.003349e+01 3.321367e+00 lineto +5.90512e+01 3.306697e+00 lineto +5.867218e+01 3.40538e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.763329e+01 3.447333e+00 moveto +5.867218e+01 3.40538e+00 lineto +5.90512e+01 3.306697e+00 lineto +5.807454e+01 3.332448e+00 lineto +5.763329e+01 3.447333e+00 lineto +closepath +gsave +6.055454e-01 6.055454e-01 7.569317e-01 setrgbcolor +fill +grestore +newpath +5.763329e+01 3.447333e+00 moveto +5.867218e+01 3.40538e+00 lineto +5.90512e+01 3.306697e+00 lineto +5.807454e+01 3.332448e+00 lineto +5.763329e+01 3.447333e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.660137e+01 3.529576e+00 moveto +5.763329e+01 3.447333e+00 lineto +5.807454e+01 3.332448e+00 lineto +5.710443e+01 3.398598e+00 lineto +5.660137e+01 3.529576e+00 lineto +closepath +gsave +6.04775e-01 6.04775e-01 7.559687e-01 setrgbcolor +fill +grestore +newpath +5.660137e+01 3.529576e+00 moveto +5.763329e+01 3.447333e+00 lineto +5.807454e+01 3.332448e+00 lineto +5.710443e+01 3.398598e+00 lineto +5.660137e+01 3.529576e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.557741e+01 3.65203e+00 moveto +5.660137e+01 3.529576e+00 lineto +5.710443e+01 3.398598e+00 lineto +5.614181e+01 3.505083e+00 lineto +5.557741e+01 3.65203e+00 lineto +closepath +gsave +6.039413e-01 6.039413e-01 7.549266e-01 setrgbcolor +fill +grestore +newpath +5.557741e+01 3.65203e+00 moveto +5.660137e+01 3.529576e+00 lineto +5.710443e+01 3.398598e+00 lineto +5.614181e+01 3.505083e+00 lineto +5.557741e+01 3.65203e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.456237e+01 3.814579e+00 moveto +5.557741e+01 3.65203e+00 lineto +5.614181e+01 3.505083e+00 lineto +5.518756e+01 3.651803e+00 lineto +5.456237e+01 3.814579e+00 lineto +closepath +gsave +6.030452e-01 6.030452e-01 7.538066e-01 setrgbcolor +fill +grestore +newpath +5.456237e+01 3.814579e+00 moveto +5.557741e+01 3.65203e+00 lineto +5.614181e+01 3.505083e+00 lineto +5.518756e+01 3.651803e+00 lineto +5.456237e+01 3.814579e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.355721e+01 4.01707e+00 moveto +5.456237e+01 3.814579e+00 lineto +5.518756e+01 3.651803e+00 lineto +5.424261e+01 3.838618e+00 lineto +5.355721e+01 4.01707e+00 lineto +closepath +gsave +6.020878e-01 6.020878e-01 7.526098e-01 setrgbcolor +fill +grestore +newpath +5.355721e+01 4.01707e+00 moveto +5.456237e+01 3.814579e+00 lineto +5.518756e+01 3.651803e+00 lineto +5.424261e+01 3.838618e+00 lineto +5.355721e+01 4.01707e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.256289e+01 4.259311e+00 moveto +5.355721e+01 4.01707e+00 lineto +5.424261e+01 3.838618e+00 lineto +5.330785e+01 4.065353e+00 lineto +5.256289e+01 4.259311e+00 lineto +closepath +gsave +6.010701e-01 6.010701e-01 7.513377e-01 setrgbcolor +fill +grestore +newpath +5.256289e+01 4.259311e+00 moveto +5.355721e+01 4.01707e+00 lineto +5.424261e+01 3.838618e+00 lineto +5.330785e+01 4.065353e+00 lineto +5.256289e+01 4.259311e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.400033e+01 3.783423e+00 moveto +6.499676e+01 3.999234e+00 lineto +6.499699e+01 3.999185e+00 lineto +6.407019e+01 3.768299e+00 lineto +6.400033e+01 3.783423e+00 lineto +closepath +gsave +6.084869e-01 6.084869e-01 7.606086e-01 setrgbcolor +fill +grestore +newpath +6.400033e+01 3.783423e+00 moveto +6.499676e+01 3.999234e+00 lineto +6.499699e+01 3.999185e+00 lineto +6.407019e+01 3.768299e+00 lineto +6.400033e+01 3.783423e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.300485e+01 3.607584e+00 moveto +6.400033e+01 3.783423e+00 lineto +6.407019e+01 3.768299e+00 lineto +6.314427e+01 3.577398e+00 lineto +6.300485e+01 3.607584e+00 lineto +closepath +gsave +6.075011e-01 6.075011e-01 7.593764e-01 setrgbcolor +fill +grestore +newpath +6.300485e+01 3.607584e+00 moveto +6.400033e+01 3.783423e+00 lineto +6.407019e+01 3.768299e+00 lineto +6.314427e+01 3.577398e+00 lineto +6.300485e+01 3.607584e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.201125e+01 3.471882e+00 moveto +6.300485e+01 3.607584e+00 lineto +6.314427e+01 3.577398e+00 lineto +6.222011e+01 3.426664e+00 lineto +6.201125e+01 3.471882e+00 lineto +closepath +gsave +6.064496e-01 6.064496e-01 7.58062e-01 setrgbcolor +fill +grestore +newpath +6.201125e+01 3.471882e+00 moveto +6.300485e+01 3.607584e+00 lineto +6.314427e+01 3.577398e+00 lineto +6.222011e+01 3.426664e+00 lineto +6.201125e+01 3.471882e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.102049e+01 3.376447e+00 moveto +6.201125e+01 3.471882e+00 lineto +6.222011e+01 3.426664e+00 lineto +6.129858e+01 3.316238e+00 lineto +6.102049e+01 3.376447e+00 lineto +closepath +gsave +6.053335e-01 6.053335e-01 7.566669e-01 setrgbcolor +fill +grestore +newpath +6.102049e+01 3.376447e+00 moveto +6.201125e+01 3.471882e+00 lineto +6.222011e+01 3.426664e+00 lineto +6.129858e+01 3.316238e+00 lineto +6.102049e+01 3.376447e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.003349e+01 3.321367e+00 moveto +6.102049e+01 3.376447e+00 lineto +6.129858e+01 3.316238e+00 lineto +6.038055e+01 3.246226e+00 lineto +6.003349e+01 3.321367e+00 lineto +closepath +gsave +6.04154e-01 6.04154e-01 7.551926e-01 setrgbcolor +fill +grestore +newpath +6.003349e+01 3.321367e+00 moveto +6.102049e+01 3.376447e+00 lineto +6.129858e+01 3.316238e+00 lineto +6.038055e+01 3.246226e+00 lineto +6.003349e+01 3.321367e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.90512e+01 3.306697e+00 moveto +6.003349e+01 3.321367e+00 lineto +6.038055e+01 3.246226e+00 lineto +5.94669e+01 3.216694e+00 lineto +5.90512e+01 3.306697e+00 lineto +closepath +gsave +6.029126e-01 6.029126e-01 7.536408e-01 setrgbcolor +fill +grestore +newpath +5.90512e+01 3.306697e+00 moveto +6.003349e+01 3.321367e+00 lineto +6.038055e+01 3.246226e+00 lineto +5.94669e+01 3.216694e+00 lineto +5.90512e+01 3.306697e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.807454e+01 3.332448e+00 moveto +5.90512e+01 3.306697e+00 lineto +5.94669e+01 3.216694e+00 lineto +5.855849e+01 3.227669e+00 lineto +5.807454e+01 3.332448e+00 lineto +closepath +gsave +6.016106e-01 6.016106e-01 7.520133e-01 setrgbcolor +fill +grestore +newpath +5.807454e+01 3.332448e+00 moveto +5.90512e+01 3.306697e+00 lineto +5.94669e+01 3.216694e+00 lineto +5.855849e+01 3.227669e+00 lineto +5.807454e+01 3.332448e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.710443e+01 3.398598e+00 moveto +5.807454e+01 3.332448e+00 lineto +5.855849e+01 3.227669e+00 lineto +5.765617e+01 3.279141e+00 lineto +5.710443e+01 3.398598e+00 lineto +closepath +gsave +6.002495e-01 6.002495e-01 7.503119e-01 setrgbcolor +fill +grestore +newpath +5.710443e+01 3.398598e+00 moveto +5.807454e+01 3.332448e+00 lineto +5.855849e+01 3.227669e+00 lineto +5.765617e+01 3.279141e+00 lineto +5.710443e+01 3.398598e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.614181e+01 3.505083e+00 moveto +5.710443e+01 3.398598e+00 lineto +5.765617e+01 3.279141e+00 lineto +5.676081e+01 3.371062e+00 lineto +5.614181e+01 3.505083e+00 lineto +closepath +gsave +5.988309e-01 5.988309e-01 7.485386e-01 setrgbcolor +fill +grestore +newpath +5.614181e+01 3.505083e+00 moveto +5.710443e+01 3.398598e+00 lineto +5.765617e+01 3.279141e+00 lineto +5.676081e+01 3.371062e+00 lineto +5.614181e+01 3.505083e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.518756e+01 3.651803e+00 moveto +5.614181e+01 3.505083e+00 lineto +5.676081e+01 3.371062e+00 lineto +5.587325e+01 3.503345e+00 lineto +5.518756e+01 3.651803e+00 lineto +closepath +gsave +5.973563e-01 5.973563e-01 7.466954e-01 setrgbcolor +fill +grestore +newpath +5.518756e+01 3.651803e+00 moveto +5.614181e+01 3.505083e+00 lineto +5.676081e+01 3.371062e+00 lineto +5.587325e+01 3.503345e+00 lineto +5.518756e+01 3.651803e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.424261e+01 3.838618e+00 moveto +5.518756e+01 3.651803e+00 lineto +5.587325e+01 3.503345e+00 lineto +5.499433e+01 3.675863e+00 lineto +5.424261e+01 3.838618e+00 lineto +closepath +gsave +5.958275e-01 5.958275e-01 7.447844e-01 setrgbcolor +fill +grestore +newpath +5.424261e+01 3.838618e+00 moveto +5.518756e+01 3.651803e+00 lineto +5.587325e+01 3.503345e+00 lineto +5.499433e+01 3.675863e+00 lineto +5.424261e+01 3.838618e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.407019e+01 3.768299e+00 moveto +6.499699e+01 3.999185e+00 lineto +6.499723e+01 3.999141e+00 lineto +6.414578e+01 3.754726e+00 lineto +6.407019e+01 3.768299e+00 lineto +closepath +gsave +6.08182e-01 6.08182e-01 7.602275e-01 setrgbcolor +fill +grestore +newpath +6.407019e+01 3.768299e+00 moveto +6.499699e+01 3.999185e+00 lineto +6.499723e+01 3.999141e+00 lineto +6.414578e+01 3.754726e+00 lineto +6.407019e+01 3.768299e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.314427e+01 3.577398e+00 moveto +6.407019e+01 3.768299e+00 lineto +6.414578e+01 3.754726e+00 lineto +6.329513e+01 3.55031e+00 lineto +6.314427e+01 3.577398e+00 lineto +closepath +gsave +6.065916e-01 6.065916e-01 7.582395e-01 setrgbcolor +fill +grestore +newpath +6.314427e+01 3.577398e+00 moveto +6.407019e+01 3.768299e+00 lineto +6.414578e+01 3.754726e+00 lineto +6.329513e+01 3.55031e+00 lineto +6.314427e+01 3.577398e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.222011e+01 3.426664e+00 moveto +6.314427e+01 3.577398e+00 lineto +6.329513e+01 3.55031e+00 lineto +6.24461e+01 3.386085e+00 lineto +6.222011e+01 3.426664e+00 lineto +closepath +gsave +6.049377e-01 6.049377e-01 7.561721e-01 setrgbcolor +fill +grestore +newpath +6.222011e+01 3.426664e+00 moveto +6.314427e+01 3.577398e+00 lineto +6.329513e+01 3.55031e+00 lineto +6.24461e+01 3.386085e+00 lineto +6.222011e+01 3.426664e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.129858e+01 3.316238e+00 moveto +6.222011e+01 3.426664e+00 lineto +6.24461e+01 3.386085e+00 lineto +6.159948e+01 3.262208e+00 lineto +6.129858e+01 3.316238e+00 lineto +closepath +gsave +6.032222e-01 6.032222e-01 7.540277e-01 setrgbcolor +fill +grestore +newpath +6.129858e+01 3.316238e+00 moveto +6.222011e+01 3.426664e+00 lineto +6.24461e+01 3.386085e+00 lineto +6.159948e+01 3.262208e+00 lineto +6.129858e+01 3.316238e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.038055e+01 3.246226e+00 moveto +6.129858e+01 3.316238e+00 lineto +6.159948e+01 3.262208e+00 lineto +6.075609e+01 3.178795e+00 lineto +6.038055e+01 3.246226e+00 lineto +closepath +gsave +6.01447e-01 6.01447e-01 7.518087e-01 setrgbcolor +fill +grestore +newpath +6.038055e+01 3.246226e+00 moveto +6.129858e+01 3.316238e+00 lineto +6.159948e+01 3.262208e+00 lineto +6.075609e+01 3.178795e+00 lineto +6.038055e+01 3.246226e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.94669e+01 3.216694e+00 moveto +6.038055e+01 3.246226e+00 lineto +6.075609e+01 3.178795e+00 lineto +5.991671e+01 3.135926e+00 lineto +5.94669e+01 3.216694e+00 lineto +closepath +gsave +5.996141e-01 5.996141e-01 7.495177e-01 setrgbcolor +fill +grestore +newpath +5.94669e+01 3.216694e+00 moveto +6.038055e+01 3.246226e+00 lineto +6.075609e+01 3.178795e+00 lineto +5.991671e+01 3.135926e+00 lineto +5.94669e+01 3.216694e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.855849e+01 3.227669e+00 moveto +5.94669e+01 3.216694e+00 lineto +5.991671e+01 3.135926e+00 lineto +5.908215e+01 3.13364e+00 lineto +5.855849e+01 3.227669e+00 lineto +closepath +gsave +5.977259e-01 5.977259e-01 7.471573e-01 setrgbcolor +fill +grestore +newpath +5.855849e+01 3.227669e+00 moveto +5.94669e+01 3.216694e+00 lineto +5.991671e+01 3.135926e+00 lineto +5.908215e+01 3.13364e+00 lineto +5.855849e+01 3.227669e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.765617e+01 3.279141e+00 moveto +5.855849e+01 3.227669e+00 lineto +5.908215e+01 3.13364e+00 lineto +5.825319e+01 3.171942e+00 lineto +5.765617e+01 3.279141e+00 lineto +closepath +gsave +5.957843e-01 5.957843e-01 7.447304e-01 setrgbcolor +fill +grestore +newpath +5.765617e+01 3.279141e+00 moveto +5.855849e+01 3.227669e+00 lineto +5.908215e+01 3.13364e+00 lineto +5.825319e+01 3.171942e+00 lineto +5.765617e+01 3.279141e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.676081e+01 3.371062e+00 moveto +5.765617e+01 3.279141e+00 lineto +5.825319e+01 3.171942e+00 lineto +5.743062e+01 3.250793e+00 lineto +5.676081e+01 3.371062e+00 lineto +closepath +gsave +5.937917e-01 5.937917e-01 7.422396e-01 setrgbcolor +fill +grestore +newpath +5.676081e+01 3.371062e+00 moveto +5.765617e+01 3.279141e+00 lineto +5.825319e+01 3.171942e+00 lineto +5.743062e+01 3.250793e+00 lineto +5.676081e+01 3.371062e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.587325e+01 3.503345e+00 moveto +5.676081e+01 3.371062e+00 lineto +5.743062e+01 3.250793e+00 lineto +5.661521e+01 3.370119e+00 lineto +5.587325e+01 3.503345e+00 lineto +closepath +gsave +5.917504e-01 5.917504e-01 7.39688e-01 setrgbcolor +fill +grestore +newpath +5.587325e+01 3.503345e+00 moveto +5.676081e+01 3.371062e+00 lineto +5.743062e+01 3.250793e+00 lineto +5.661521e+01 3.370119e+00 lineto +5.587325e+01 3.503345e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.414578e+01 3.754726e+00 moveto +6.499723e+01 3.999141e+00 lineto +6.499749e+01 3.999102e+00 lineto +6.422663e+01 3.742789e+00 lineto +6.414578e+01 3.754726e+00 lineto +closepath +gsave +6.078819e-01 6.078819e-01 7.598524e-01 setrgbcolor +fill +grestore +newpath +6.414578e+01 3.754726e+00 moveto +6.499723e+01 3.999141e+00 lineto +6.499749e+01 3.999102e+00 lineto +6.422663e+01 3.742789e+00 lineto +6.414578e+01 3.754726e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.329513e+01 3.55031e+00 moveto +6.414578e+01 3.754726e+00 lineto +6.422663e+01 3.742789e+00 lineto +6.34565e+01 3.526485e+00 lineto +6.329513e+01 3.55031e+00 lineto +closepath +gsave +6.056969e-01 6.056969e-01 7.571211e-01 setrgbcolor +fill +grestore +newpath +6.329513e+01 3.55031e+00 moveto +6.414578e+01 3.754726e+00 lineto +6.422663e+01 3.742789e+00 lineto +6.34565e+01 3.526485e+00 lineto +6.329513e+01 3.55031e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.24461e+01 3.386085e+00 moveto +6.329513e+01 3.55031e+00 lineto +6.34565e+01 3.526485e+00 lineto +6.268783e+01 3.350396e+00 lineto +6.24461e+01 3.386085e+00 lineto +closepath +gsave +6.034512e-01 6.034512e-01 7.543139e-01 setrgbcolor +fill +grestore +newpath +6.24461e+01 3.386085e+00 moveto +6.329513e+01 3.55031e+00 lineto +6.34565e+01 3.526485e+00 lineto +6.268783e+01 3.350396e+00 lineto +6.24461e+01 3.386085e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.159948e+01 3.262208e+00 moveto +6.24461e+01 3.386085e+00 lineto +6.268783e+01 3.350396e+00 lineto +6.192136e+01 3.214688e+00 lineto +6.159948e+01 3.262208e+00 lineto +closepath +gsave +6.011474e-01 6.011474e-01 7.514342e-01 setrgbcolor +fill +grestore +newpath +6.159948e+01 3.262208e+00 moveto +6.24461e+01 3.386085e+00 lineto +6.268783e+01 3.350396e+00 lineto +6.192136e+01 3.214688e+00 lineto +6.159948e+01 3.262208e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.075609e+01 3.178795e+00 moveto +6.159948e+01 3.262208e+00 lineto +6.192136e+01 3.214688e+00 lineto +6.115779e+01 3.119489e+00 lineto +6.075609e+01 3.178795e+00 lineto +closepath +gsave +5.987882e-01 5.987882e-01 7.484853e-01 setrgbcolor +fill +grestore +newpath +6.075609e+01 3.178795e+00 moveto +6.159948e+01 3.262208e+00 lineto +6.192136e+01 3.214688e+00 lineto +6.115779e+01 3.119489e+00 lineto +6.075609e+01 3.178795e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.991671e+01 3.135926e+00 moveto +6.075609e+01 3.178795e+00 lineto +6.115779e+01 3.119489e+00 lineto +6.039787e+01 3.06489e+00 lineto +5.991671e+01 3.135926e+00 lineto +closepath +gsave +5.963766e-01 5.963766e-01 7.454708e-01 setrgbcolor +fill +grestore +newpath +5.991671e+01 3.135926e+00 moveto +6.075609e+01 3.178795e+00 lineto +6.115779e+01 3.119489e+00 lineto +6.039787e+01 3.06489e+00 lineto +5.991671e+01 3.135926e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.908215e+01 3.13364e+00 moveto +5.991671e+01 3.135926e+00 lineto +6.039787e+01 3.06489e+00 lineto +5.96423e+01 3.050943e+00 lineto +5.908215e+01 3.13364e+00 lineto +closepath +gsave +5.939153e-01 5.939153e-01 7.423942e-01 setrgbcolor +fill +grestore +newpath +5.908215e+01 3.13364e+00 moveto +5.991671e+01 3.135926e+00 lineto +6.039787e+01 3.06489e+00 lineto +5.96423e+01 3.050943e+00 lineto +5.908215e+01 3.13364e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.825319e+01 3.171942e+00 moveto +5.908215e+01 3.13364e+00 lineto +5.96423e+01 3.050943e+00 lineto +5.88918e+01 3.07766e+00 lineto +5.825319e+01 3.171942e+00 lineto +closepath +gsave +5.914073e-01 5.914073e-01 7.392592e-01 setrgbcolor +fill +grestore +newpath +5.825319e+01 3.171942e+00 moveto +5.908215e+01 3.13364e+00 lineto +5.96423e+01 3.050943e+00 lineto +5.88918e+01 3.07766e+00 lineto +5.825319e+01 3.171942e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.743062e+01 3.250793e+00 moveto +5.825319e+01 3.171942e+00 lineto +5.88918e+01 3.07766e+00 lineto +5.814709e+01 3.145016e+00 lineto +5.743062e+01 3.250793e+00 lineto +closepath +gsave +5.888557e-01 5.888557e-01 7.360696e-01 setrgbcolor +fill +grestore +newpath +5.743062e+01 3.250793e+00 moveto +5.825319e+01 3.171942e+00 lineto +5.88918e+01 3.07766e+00 lineto +5.814709e+01 3.145016e+00 lineto +5.743062e+01 3.250793e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.661521e+01 3.370119e+00 moveto +5.743062e+01 3.250793e+00 lineto +5.814709e+01 3.145016e+00 lineto +5.740886e+01 3.252948e+00 lineto +5.661521e+01 3.370119e+00 lineto +closepath +gsave +5.862633e-01 5.862633e-01 7.328292e-01 setrgbcolor +fill +grestore +newpath +5.661521e+01 3.370119e+00 moveto +5.743062e+01 3.250793e+00 lineto +5.814709e+01 3.145016e+00 lineto +5.740886e+01 3.252948e+00 lineto +5.661521e+01 3.370119e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.422663e+01 3.742789e+00 moveto +6.499749e+01 3.999102e+00 lineto +6.499777e+01 3.999069e+00 lineto +6.431226e+01 3.732561e+00 lineto +6.422663e+01 3.742789e+00 lineto +closepath +gsave +6.075885e-01 6.075885e-01 7.594856e-01 setrgbcolor +fill +grestore +newpath +6.422663e+01 3.742789e+00 moveto +6.499749e+01 3.999102e+00 lineto +6.499777e+01 3.999069e+00 lineto +6.431226e+01 3.732561e+00 lineto +6.422663e+01 3.742789e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.34565e+01 3.526485e+00 moveto +6.422663e+01 3.742789e+00 lineto +6.431226e+01 3.732561e+00 lineto +6.362739e+01 3.506072e+00 lineto +6.34565e+01 3.526485e+00 lineto +closepath +gsave +6.048224e-01 6.048224e-01 7.56028e-01 setrgbcolor +fill +grestore +newpath +6.34565e+01 3.526485e+00 moveto +6.422663e+01 3.742789e+00 lineto +6.431226e+01 3.732561e+00 lineto +6.362739e+01 3.506072e+00 lineto +6.34565e+01 3.526485e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.268783e+01 3.350396e+00 moveto +6.34565e+01 3.526485e+00 lineto +6.362739e+01 3.506072e+00 lineto +6.294383e+01 3.319817e+00 lineto +6.268783e+01 3.350396e+00 lineto +closepath +gsave +6.01999e-01 6.01999e-01 7.524988e-01 setrgbcolor +fill +grestore +newpath +6.268783e+01 3.350396e+00 moveto +6.34565e+01 3.526485e+00 lineto +6.362739e+01 3.506072e+00 lineto +6.294383e+01 3.319817e+00 lineto +6.268783e+01 3.350396e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.192136e+01 3.214688e+00 moveto +6.268783e+01 3.350396e+00 lineto +6.294383e+01 3.319817e+00 lineto +6.226221e+01 3.173972e+00 lineto +6.192136e+01 3.214688e+00 lineto +closepath +gsave +5.991218e-01 5.991218e-01 7.489022e-01 setrgbcolor +fill +grestore +newpath +6.192136e+01 3.214688e+00 moveto +6.268783e+01 3.350396e+00 lineto +6.294383e+01 3.319817e+00 lineto +6.226221e+01 3.173972e+00 lineto +6.192136e+01 3.214688e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.115779e+01 3.119489e+00 moveto +6.192136e+01 3.214688e+00 lineto +6.226221e+01 3.173972e+00 lineto +6.158318e+01 3.068675e+00 lineto +6.115779e+01 3.119489e+00 lineto +closepath +gsave +5.961942e-01 5.961942e-01 7.452427e-01 setrgbcolor +fill +grestore +newpath +6.115779e+01 3.119489e+00 moveto +6.192136e+01 3.214688e+00 lineto +6.226221e+01 3.173972e+00 lineto +6.158318e+01 3.068675e+00 lineto +6.115779e+01 3.119489e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.039787e+01 3.06489e+00 moveto +6.115779e+01 3.119489e+00 lineto +6.158318e+01 3.068675e+00 lineto +6.090739e+01 3.004026e+00 lineto +6.039787e+01 3.06489e+00 lineto +closepath +gsave +5.932199e-01 5.932199e-01 7.415248e-01 setrgbcolor +fill +grestore +newpath +6.039787e+01 3.06489e+00 moveto +6.115779e+01 3.119489e+00 lineto +6.158318e+01 3.068675e+00 lineto +6.090739e+01 3.004026e+00 lineto +6.039787e+01 3.06489e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.96423e+01 3.050943e+00 moveto +6.039787e+01 3.06489e+00 lineto +6.090739e+01 3.004026e+00 lineto +6.023548e+01 2.980086e+00 lineto +5.96423e+01 3.050943e+00 lineto +closepath +gsave +5.902025e-01 5.902025e-01 7.377531e-01 setrgbcolor +fill +grestore +newpath +5.96423e+01 3.050943e+00 moveto +6.039787e+01 3.06489e+00 lineto +6.090739e+01 3.004026e+00 lineto +6.023548e+01 2.980086e+00 lineto +5.96423e+01 3.050943e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.88918e+01 3.07766e+00 moveto +5.96423e+01 3.050943e+00 lineto +6.023548e+01 2.980086e+00 lineto +5.956807e+01 2.996878e+00 lineto +5.88918e+01 3.07766e+00 lineto +closepath +gsave +5.871457e-01 5.871457e-01 7.339321e-01 setrgbcolor +fill +grestore +newpath +5.88918e+01 3.07766e+00 moveto +5.96423e+01 3.050943e+00 lineto +6.023548e+01 2.980086e+00 lineto +5.956807e+01 2.996878e+00 lineto +5.88918e+01 3.07766e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.814709e+01 3.145016e+00 moveto +5.88918e+01 3.07766e+00 lineto +5.956807e+01 2.996878e+00 lineto +5.890581e+01 3.054385e+00 lineto +5.814709e+01 3.145016e+00 lineto +closepath +gsave +5.840534e-01 5.840534e-01 7.300668e-01 setrgbcolor +fill +grestore +newpath +5.814709e+01 3.145016e+00 moveto +5.88918e+01 3.07766e+00 lineto +5.956807e+01 2.996878e+00 lineto +5.890581e+01 3.054385e+00 lineto +5.814709e+01 3.145016e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.431226e+01 3.732561e+00 moveto +6.499777e+01 3.999069e+00 lineto +6.499806e+01 3.999042e+00 lineto +6.440212e+01 3.724105e+00 lineto +6.431226e+01 3.732561e+00 lineto +closepath +gsave +6.073035e-01 6.073035e-01 7.591293e-01 setrgbcolor +fill +grestore +newpath +6.431226e+01 3.732561e+00 moveto +6.499777e+01 3.999069e+00 lineto +6.499806e+01 3.999042e+00 lineto +6.440212e+01 3.724105e+00 lineto +6.431226e+01 3.732561e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.362739e+01 3.506072e+00 moveto +6.431226e+01 3.732561e+00 lineto +6.440212e+01 3.724105e+00 lineto +6.380674e+01 3.489196e+00 lineto +6.362739e+01 3.506072e+00 lineto +closepath +gsave +6.039735e-01 6.039735e-01 7.549669e-01 setrgbcolor +fill +grestore +newpath +6.362739e+01 3.506072e+00 moveto +6.431226e+01 3.732561e+00 lineto +6.440212e+01 3.724105e+00 lineto +6.380674e+01 3.489196e+00 lineto +6.362739e+01 3.506072e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.294383e+01 3.319817e+00 moveto +6.362739e+01 3.506072e+00 lineto +6.380674e+01 3.489196e+00 lineto +6.32125e+01 3.294537e+00 lineto +6.294383e+01 3.319817e+00 lineto +closepath +gsave +6.005902e-01 6.005902e-01 7.507377e-01 setrgbcolor +fill +grestore +newpath +6.294383e+01 3.319817e+00 moveto +6.362739e+01 3.506072e+00 lineto +6.380674e+01 3.489196e+00 lineto +6.32125e+01 3.294537e+00 lineto +6.294383e+01 3.319817e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.226221e+01 3.173972e+00 moveto +6.294383e+01 3.319817e+00 lineto +6.32125e+01 3.294537e+00 lineto +6.261994e+01 3.140312e+00 lineto +6.226221e+01 3.173972e+00 lineto +closepath +gsave +5.971577e-01 5.971577e-01 7.464472e-01 setrgbcolor +fill +grestore +newpath +6.226221e+01 3.173972e+00 moveto +6.294383e+01 3.319817e+00 lineto +6.32125e+01 3.294537e+00 lineto +6.261994e+01 3.140312e+00 lineto +6.226221e+01 3.173972e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.158318e+01 3.068675e+00 moveto +6.226221e+01 3.173972e+00 lineto +6.261994e+01 3.140312e+00 lineto +6.202964e+01 3.026666e+00 lineto +6.158318e+01 3.068675e+00 lineto +closepath +gsave +5.936805e-01 5.936805e-01 7.421007e-01 setrgbcolor +fill +grestore +newpath +6.158318e+01 3.068675e+00 moveto +6.226221e+01 3.173972e+00 lineto +6.261994e+01 3.140312e+00 lineto +6.202964e+01 3.026666e+00 lineto +6.158318e+01 3.068675e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.090739e+01 3.004026e+00 moveto +6.158318e+01 3.068675e+00 lineto +6.202964e+01 3.026666e+00 lineto +6.144215e+01 2.953708e+00 lineto +6.090739e+01 3.004026e+00 lineto +closepath +gsave +5.90163e-01 5.90163e-01 7.377038e-01 setrgbcolor +fill +grestore +newpath +6.090739e+01 3.004026e+00 moveto +6.158318e+01 3.068675e+00 lineto +6.202964e+01 3.026666e+00 lineto +6.144215e+01 2.953708e+00 lineto +6.090739e+01 3.004026e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.023548e+01 2.980086e+00 moveto +6.090739e+01 3.004026e+00 lineto +6.144215e+01 2.953708e+00 lineto +6.085803e+01 2.921507e+00 lineto +6.023548e+01 2.980086e+00 lineto +closepath +gsave +5.866098e-01 5.866098e-01 7.332622e-01 setrgbcolor +fill +grestore +newpath +6.023548e+01 2.980086e+00 moveto +6.090739e+01 3.004026e+00 lineto +6.144215e+01 2.953708e+00 lineto +6.085803e+01 2.921507e+00 lineto +6.023548e+01 2.980086e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.956807e+01 2.996878e+00 moveto +6.023548e+01 2.980086e+00 lineto +6.085803e+01 2.921507e+00 lineto +6.027783e+01 2.930093e+00 lineto +5.956807e+01 2.996878e+00 lineto +closepath +gsave +5.830252e-01 5.830252e-01 7.287815e-01 setrgbcolor +fill +grestore +newpath +5.956807e+01 2.996878e+00 moveto +6.023548e+01 2.980086e+00 lineto +6.085803e+01 2.921507e+00 lineto +6.027783e+01 2.930093e+00 lineto +5.956807e+01 2.996878e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +5.890581e+01 3.054385e+00 moveto +5.956807e+01 2.996878e+00 lineto +6.027783e+01 2.930093e+00 lineto +5.97021e+01 2.979458e+00 lineto +5.890581e+01 3.054385e+00 lineto +closepath +gsave +5.794141e-01 5.794141e-01 7.242676e-01 setrgbcolor +fill +grestore +newpath +5.890581e+01 3.054385e+00 moveto +5.956807e+01 2.996878e+00 lineto +6.027783e+01 2.930093e+00 lineto +5.97021e+01 2.979458e+00 lineto +5.890581e+01 3.054385e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.440212e+01 3.724105e+00 moveto +6.499806e+01 3.999042e+00 lineto +6.499837e+01 3.99902e+00 lineto +6.449567e+01 3.717474e+00 lineto +6.440212e+01 3.724105e+00 lineto +closepath +gsave +6.070287e-01 6.070287e-01 7.587859e-01 setrgbcolor +fill +grestore +newpath +6.440212e+01 3.724105e+00 moveto +6.499806e+01 3.999042e+00 lineto +6.499837e+01 3.99902e+00 lineto +6.449567e+01 3.717474e+00 lineto +6.440212e+01 3.724105e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.380674e+01 3.489196e+00 moveto +6.440212e+01 3.724105e+00 lineto +6.449567e+01 3.717474e+00 lineto +6.399345e+01 3.475961e+00 lineto +6.380674e+01 3.489196e+00 lineto +closepath +gsave +6.031554e-01 6.031554e-01 7.539443e-01 setrgbcolor +fill +grestore +newpath +6.380674e+01 3.489196e+00 moveto +6.440212e+01 3.724105e+00 lineto +6.449567e+01 3.717474e+00 lineto +6.399345e+01 3.475961e+00 lineto +6.380674e+01 3.489196e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.32125e+01 3.294537e+00 moveto +6.380674e+01 3.489196e+00 lineto +6.399345e+01 3.475961e+00 lineto +6.349219e+01 3.274711e+00 lineto +6.32125e+01 3.294537e+00 lineto +closepath +gsave +5.992332e-01 5.992332e-01 7.490415e-01 setrgbcolor +fill +grestore +newpath +6.32125e+01 3.294537e+00 moveto +6.380674e+01 3.489196e+00 lineto +6.399345e+01 3.475961e+00 lineto +6.349219e+01 3.274711e+00 lineto +6.32125e+01 3.294537e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.261994e+01 3.140312e+00 moveto +6.32125e+01 3.294537e+00 lineto +6.349219e+01 3.274711e+00 lineto +6.299235e+01 3.113913e+00 lineto +6.261994e+01 3.140312e+00 lineto +closepath +gsave +5.952671e-01 5.952671e-01 7.440838e-01 setrgbcolor +fill +grestore +newpath +6.261994e+01 3.140312e+00 moveto +6.32125e+01 3.294537e+00 lineto +6.349219e+01 3.274711e+00 lineto +6.299235e+01 3.113913e+00 lineto +6.261994e+01 3.140312e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.202964e+01 3.026666e+00 moveto +6.261994e+01 3.140312e+00 lineto +6.299235e+01 3.113913e+00 lineto +6.249441e+01 2.993721e+00 lineto +6.202964e+01 3.026666e+00 lineto +closepath +gsave +5.912624e-01 5.912624e-01 7.39078e-01 setrgbcolor +fill +grestore +newpath +6.202964e+01 3.026666e+00 moveto +6.261994e+01 3.140312e+00 lineto +6.299235e+01 3.113913e+00 lineto +6.249441e+01 2.993721e+00 lineto +6.202964e+01 3.026666e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.144215e+01 2.953708e+00 moveto +6.202964e+01 3.026666e+00 lineto +6.249441e+01 2.993721e+00 lineto +6.199885e+01 2.914247e+00 lineto +6.144215e+01 2.953708e+00 lineto +closepath +gsave +5.872244e-01 5.872244e-01 7.340305e-01 setrgbcolor +fill +grestore +newpath +6.144215e+01 2.953708e+00 moveto +6.202964e+01 3.026666e+00 lineto +6.249441e+01 2.993721e+00 lineto +6.199885e+01 2.914247e+00 lineto +6.144215e+01 2.953708e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.085803e+01 2.921507e+00 moveto +6.144215e+01 2.953708e+00 lineto +6.199885e+01 2.914247e+00 lineto +6.150612e+01 2.875567e+00 lineto +6.085803e+01 2.921507e+00 lineto +closepath +gsave +5.831586e-01 5.831586e-01 7.289483e-01 setrgbcolor +fill +grestore +newpath +6.085803e+01 2.921507e+00 moveto +6.144215e+01 2.953708e+00 lineto +6.199885e+01 2.914247e+00 lineto +6.150612e+01 2.875567e+00 lineto +6.085803e+01 2.921507e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.027783e+01 2.930093e+00 moveto +6.085803e+01 2.921507e+00 lineto +6.150612e+01 2.875567e+00 lineto +6.101671e+01 2.877717e+00 lineto +6.027783e+01 2.930093e+00 lineto +closepath +gsave +5.790704e-01 5.790704e-01 7.23838e-01 setrgbcolor +fill +grestore +newpath +6.027783e+01 2.930093e+00 moveto +6.085803e+01 2.921507e+00 lineto +6.150612e+01 2.875567e+00 lineto +6.101671e+01 2.877717e+00 lineto +6.027783e+01 2.930093e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.449567e+01 3.717474e+00 moveto +6.499837e+01 3.99902e+00 lineto +6.499868e+01 3.999005e+00 lineto +6.459233e+01 3.712708e+00 lineto +6.449567e+01 3.717474e+00 lineto +closepath +gsave +6.067658e-01 6.067658e-01 7.584572e-01 setrgbcolor +fill +grestore +newpath +6.449567e+01 3.717474e+00 moveto +6.499837e+01 3.99902e+00 lineto +6.499868e+01 3.999005e+00 lineto +6.459233e+01 3.712708e+00 lineto +6.449567e+01 3.717474e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.399345e+01 3.475961e+00 moveto +6.449567e+01 3.717474e+00 lineto +6.459233e+01 3.712708e+00 lineto +6.418637e+01 3.466449e+00 lineto +6.399345e+01 3.475961e+00 lineto +closepath +gsave +6.023731e-01 6.023731e-01 7.529664e-01 setrgbcolor +fill +grestore +newpath +6.399345e+01 3.475961e+00 moveto +6.449567e+01 3.717474e+00 lineto +6.459233e+01 3.712708e+00 lineto +6.418637e+01 3.466449e+00 lineto +6.399345e+01 3.475961e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.349219e+01 3.274711e+00 moveto +6.399345e+01 3.475961e+00 lineto +6.418637e+01 3.466449e+00 lineto +6.378117e+01 3.260462e+00 lineto +6.349219e+01 3.274711e+00 lineto +closepath +gsave +5.979362e-01 5.979362e-01 7.474202e-01 setrgbcolor +fill +grestore +newpath +6.349219e+01 3.274711e+00 moveto +6.399345e+01 3.475961e+00 lineto +6.418637e+01 3.466449e+00 lineto +6.378117e+01 3.260462e+00 lineto +6.349219e+01 3.274711e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.299235e+01 3.113913e+00 moveto +6.349219e+01 3.274711e+00 lineto +6.378117e+01 3.260462e+00 lineto +6.337713e+01 3.09494e+00 lineto +6.299235e+01 3.113913e+00 lineto +closepath +gsave +5.934611e-01 5.934611e-01 7.418264e-01 setrgbcolor +fill +grestore +newpath +6.299235e+01 3.113913e+00 moveto +6.349219e+01 3.274711e+00 lineto +6.378117e+01 3.260462e+00 lineto +6.337713e+01 3.09494e+00 lineto +6.299235e+01 3.113913e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.249441e+01 2.993721e+00 moveto +6.299235e+01 3.113913e+00 lineto +6.337713e+01 3.09494e+00 lineto +6.297463e+01 2.970042e+00 lineto +6.249441e+01 2.993721e+00 lineto +closepath +gsave +5.889541e-01 5.889541e-01 7.361926e-01 setrgbcolor +fill +grestore +newpath +6.249441e+01 2.993721e+00 moveto +6.299235e+01 3.113913e+00 lineto +6.337713e+01 3.09494e+00 lineto +6.297463e+01 2.970042e+00 lineto +6.249441e+01 2.993721e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.199885e+01 2.914247e+00 moveto +6.249441e+01 2.993721e+00 lineto +6.297463e+01 2.970042e+00 lineto +6.257404e+01 2.885885e+00 lineto +6.199885e+01 2.914247e+00 lineto +closepath +gsave +5.844214e-01 5.844214e-01 7.305267e-01 setrgbcolor +fill +grestore +newpath +6.199885e+01 2.914247e+00 moveto +6.249441e+01 2.993721e+00 lineto +6.297463e+01 2.970042e+00 lineto +6.257404e+01 2.885885e+00 lineto +6.199885e+01 2.914247e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.150612e+01 2.875567e+00 moveto +6.199885e+01 2.914247e+00 lineto +6.257404e+01 2.885885e+00 lineto +6.217575e+01 2.842548e+00 lineto +6.150612e+01 2.875567e+00 lineto +closepath +gsave +5.798692e-01 5.798692e-01 7.248366e-01 setrgbcolor +fill +grestore +newpath +6.150612e+01 2.875567e+00 moveto +6.199885e+01 2.914247e+00 lineto +6.257404e+01 2.885885e+00 lineto +6.217575e+01 2.842548e+00 lineto +6.150612e+01 2.875567e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.101671e+01 2.877717e+00 moveto +6.150612e+01 2.875567e+00 lineto +6.217575e+01 2.842548e+00 lineto +6.178014e+01 2.840074e+00 lineto +6.101671e+01 2.877717e+00 lineto +closepath +gsave +5.753041e-01 5.753041e-01 7.191301e-01 setrgbcolor +fill +grestore +newpath +6.101671e+01 2.877717e+00 moveto +6.150612e+01 2.875567e+00 lineto +6.217575e+01 2.842548e+00 lineto +6.178014e+01 2.840074e+00 lineto +6.101671e+01 2.877717e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.459233e+01 3.712708e+00 moveto +6.499868e+01 3.999005e+00 lineto +6.4999e+01 3.998995e+00 lineto +6.46915e+01 3.709836e+00 lineto +6.459233e+01 3.712708e+00 lineto +closepath +gsave +6.065164e-01 6.065164e-01 7.581455e-01 setrgbcolor +fill +grestore +newpath +6.459233e+01 3.712708e+00 moveto +6.499868e+01 3.999005e+00 lineto +6.4999e+01 3.998995e+00 lineto +6.46915e+01 3.709836e+00 lineto +6.459233e+01 3.712708e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.418637e+01 3.466449e+00 moveto +6.459233e+01 3.712708e+00 lineto +6.46915e+01 3.709836e+00 lineto +6.43843e+01 3.460718e+00 lineto +6.418637e+01 3.466449e+00 lineto +closepath +gsave +6.016313e-01 6.016313e-01 7.520391e-01 setrgbcolor +fill +grestore +newpath +6.418637e+01 3.466449e+00 moveto +6.459233e+01 3.712708e+00 lineto +6.46915e+01 3.709836e+00 lineto +6.43843e+01 3.460718e+00 lineto +6.418637e+01 3.466449e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.378117e+01 3.260462e+00 moveto +6.418637e+01 3.466449e+00 lineto +6.43843e+01 3.460718e+00 lineto +6.407767e+01 3.251877e+00 lineto +6.378117e+01 3.260462e+00 lineto +closepath +gsave +5.96707e-01 5.96707e-01 7.458838e-01 setrgbcolor +fill +grestore +newpath +6.378117e+01 3.260462e+00 moveto +6.418637e+01 3.466449e+00 lineto +6.43843e+01 3.460718e+00 lineto +6.407767e+01 3.251877e+00 lineto +6.378117e+01 3.260462e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.337713e+01 3.09494e+00 moveto +6.378117e+01 3.260462e+00 lineto +6.407767e+01 3.251877e+00 lineto +6.377192e+01 3.083509e+00 lineto +6.337713e+01 3.09494e+00 lineto +closepath +gsave +5.917506e-01 5.917506e-01 7.396883e-01 setrgbcolor +fill +grestore +newpath +6.337713e+01 3.09494e+00 moveto +6.378117e+01 3.260462e+00 lineto +6.407767e+01 3.251877e+00 lineto +6.377192e+01 3.083509e+00 lineto +6.337713e+01 3.09494e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.297463e+01 2.970042e+00 moveto +6.337713e+01 3.09494e+00 lineto +6.377192e+01 3.083509e+00 lineto +6.346733e+01 2.955776e+00 lineto +6.297463e+01 2.970042e+00 lineto +closepath +gsave +5.867692e-01 5.867692e-01 7.334615e-01 setrgbcolor +fill +grestore +newpath +6.297463e+01 2.970042e+00 moveto +6.337713e+01 3.09494e+00 lineto +6.377192e+01 3.083509e+00 lineto +6.346733e+01 2.955776e+00 lineto +6.297463e+01 2.970042e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.257404e+01 2.885885e+00 moveto +6.297463e+01 2.970042e+00 lineto +6.346733e+01 2.955776e+00 lineto +6.31642e+01 2.868797e+00 lineto +6.257404e+01 2.885885e+00 lineto +closepath +gsave +5.817701e-01 5.817701e-01 7.272126e-01 setrgbcolor +fill +grestore +newpath +6.257404e+01 2.885885e+00 moveto +6.297463e+01 2.970042e+00 lineto +6.346733e+01 2.955776e+00 lineto +6.31642e+01 2.868797e+00 lineto +6.257404e+01 2.885885e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.217575e+01 2.842548e+00 moveto +6.257404e+01 2.885885e+00 lineto +6.31642e+01 2.868797e+00 lineto +6.28628e+01 2.822655e+00 lineto +6.217575e+01 2.842548e+00 lineto +closepath +gsave +5.767605e-01 5.767605e-01 7.209507e-01 setrgbcolor +fill +grestore +newpath +6.217575e+01 2.842548e+00 moveto +6.257404e+01 2.885885e+00 lineto +6.31642e+01 2.868797e+00 lineto +6.28628e+01 2.822655e+00 lineto +6.217575e+01 2.842548e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.178014e+01 2.840074e+00 moveto +6.217575e+01 2.842548e+00 lineto +6.28628e+01 2.822655e+00 lineto +6.256342e+01 2.817394e+00 lineto +6.178014e+01 2.840074e+00 lineto +closepath +gsave +5.717478e-01 5.717478e-01 7.146847e-01 setrgbcolor +fill +grestore +newpath +6.178014e+01 2.840074e+00 moveto +6.217575e+01 2.842548e+00 lineto +6.28628e+01 2.822655e+00 lineto +6.256342e+01 2.817394e+00 lineto +6.178014e+01 2.840074e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.46915e+01 3.709836e+00 moveto +6.4999e+01 3.998995e+00 lineto +6.499933e+01 3.998992e+00 lineto +6.479258e+01 3.708877e+00 lineto +6.46915e+01 3.709836e+00 lineto +closepath +gsave +6.06282e-01 6.06282e-01 7.578525e-01 setrgbcolor +fill +grestore +newpath +6.46915e+01 3.709836e+00 moveto +6.4999e+01 3.998995e+00 lineto +6.499933e+01 3.998992e+00 lineto +6.479258e+01 3.708877e+00 lineto +6.46915e+01 3.709836e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.43843e+01 3.460718e+00 moveto +6.46915e+01 3.709836e+00 lineto +6.479258e+01 3.708877e+00 lineto +6.458602e+01 3.458804e+00 lineto +6.43843e+01 3.460718e+00 lineto +closepath +gsave +6.009345e-01 6.009345e-01 7.511682e-01 setrgbcolor +fill +grestore +newpath +6.43843e+01 3.460718e+00 moveto +6.46915e+01 3.709836e+00 lineto +6.479258e+01 3.708877e+00 lineto +6.458602e+01 3.458804e+00 lineto +6.43843e+01 3.460718e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.407767e+01 3.251877e+00 moveto +6.43843e+01 3.460718e+00 lineto +6.458602e+01 3.458804e+00 lineto +6.437986e+01 3.249009e+00 lineto +6.407767e+01 3.251877e+00 lineto +closepath +gsave +5.955531e-01 5.955531e-01 7.444413e-01 setrgbcolor +fill +grestore +newpath +6.407767e+01 3.251877e+00 moveto +6.43843e+01 3.460718e+00 lineto +6.458602e+01 3.458804e+00 lineto +6.437986e+01 3.249009e+00 lineto +6.407767e+01 3.251877e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.377192e+01 3.083509e+00 moveto +6.407767e+01 3.251877e+00 lineto +6.437986e+01 3.249009e+00 lineto +6.417428e+01 3.079691e+00 lineto +6.377192e+01 3.083509e+00 lineto +closepath +gsave +5.901457e-01 5.901457e-01 7.376821e-01 setrgbcolor +fill +grestore +newpath +6.377192e+01 3.083509e+00 moveto +6.407767e+01 3.251877e+00 lineto +6.437986e+01 3.249009e+00 lineto +6.417428e+01 3.079691e+00 lineto +6.377192e+01 3.083509e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.346733e+01 2.955776e+00 moveto +6.377192e+01 3.083509e+00 lineto +6.417428e+01 3.079691e+00 lineto +6.396949e+01 2.951011e+00 lineto +6.346733e+01 2.955776e+00 lineto +closepath +gsave +5.847206e-01 5.847206e-01 7.309007e-01 setrgbcolor +fill +grestore +newpath +6.346733e+01 2.955776e+00 moveto +6.377192e+01 3.083509e+00 lineto +6.417428e+01 3.079691e+00 lineto +6.396949e+01 2.951011e+00 lineto +6.346733e+01 2.955776e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.31642e+01 2.868797e+00 moveto +6.346733e+01 2.955776e+00 lineto +6.396949e+01 2.951011e+00 lineto +6.376567e+01 2.86309e+00 lineto +6.31642e+01 2.868797e+00 lineto +closepath +gsave +5.792859e-01 5.792859e-01 7.241074e-01 setrgbcolor +fill +grestore +newpath +6.31642e+01 2.868797e+00 moveto +6.346733e+01 2.955776e+00 lineto +6.396949e+01 2.951011e+00 lineto +6.376567e+01 2.86309e+00 lineto +6.31642e+01 2.868797e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.28628e+01 2.822655e+00 moveto +6.31642e+01 2.868797e+00 lineto +6.376567e+01 2.86309e+00 lineto +6.356302e+01 2.816011e+00 lineto +6.28628e+01 2.822655e+00 lineto +closepath +gsave +5.7385e-01 5.7385e-01 7.173125e-01 setrgbcolor +fill +grestore +newpath +6.28628e+01 2.822655e+00 moveto +6.31642e+01 2.868797e+00 lineto +6.376567e+01 2.86309e+00 lineto +6.356302e+01 2.816011e+00 lineto +6.28628e+01 2.822655e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.256342e+01 2.817394e+00 moveto +6.28628e+01 2.822655e+00 lineto +6.356302e+01 2.816011e+00 lineto +6.336173e+01 2.809819e+00 lineto +6.256342e+01 2.817394e+00 lineto +closepath +gsave +5.68421e-01 5.68421e-01 7.105263e-01 setrgbcolor +fill +grestore +newpath +6.256342e+01 2.817394e+00 moveto +6.28628e+01 2.822655e+00 lineto +6.356302e+01 2.816011e+00 lineto +6.336173e+01 2.809819e+00 lineto +6.256342e+01 2.817394e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.479258e+01 3.708877e+00 moveto +6.499933e+01 3.998992e+00 lineto +6.499966e+01 3.998995e+00 lineto +6.489493e+01 3.709836e+00 lineto +6.479258e+01 3.708877e+00 lineto +closepath +gsave +6.060641e-01 6.060641e-01 7.575802e-01 setrgbcolor +fill +grestore +newpath +6.479258e+01 3.708877e+00 moveto +6.499933e+01 3.998992e+00 lineto +6.499966e+01 3.998995e+00 lineto +6.489493e+01 3.709836e+00 lineto +6.479258e+01 3.708877e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.458602e+01 3.458804e+00 moveto +6.479258e+01 3.708877e+00 lineto +6.489493e+01 3.709836e+00 lineto +6.47903e+01 3.460718e+00 lineto +6.458602e+01 3.458804e+00 lineto +closepath +gsave +6.00287e-01 6.00287e-01 7.503588e-01 setrgbcolor +fill +grestore +newpath +6.458602e+01 3.458804e+00 moveto +6.479258e+01 3.708877e+00 lineto +6.489493e+01 3.709836e+00 lineto +6.47903e+01 3.460718e+00 lineto +6.458602e+01 3.458804e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.437986e+01 3.249009e+00 moveto +6.458602e+01 3.458804e+00 lineto +6.47903e+01 3.460718e+00 lineto +6.468587e+01 3.251877e+00 lineto +6.437986e+01 3.249009e+00 lineto +closepath +gsave +5.944812e-01 5.944812e-01 7.431015e-01 setrgbcolor +fill +grestore +newpath +6.437986e+01 3.249009e+00 moveto +6.458602e+01 3.458804e+00 lineto +6.47903e+01 3.460718e+00 lineto +6.468587e+01 3.251877e+00 lineto +6.437986e+01 3.249009e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.417428e+01 3.079691e+00 moveto +6.437986e+01 3.249009e+00 lineto +6.468587e+01 3.251877e+00 lineto +6.458173e+01 3.083509e+00 lineto +6.417428e+01 3.079691e+00 lineto +closepath +gsave +5.886557e-01 5.886557e-01 7.358196e-01 setrgbcolor +fill +grestore +newpath +6.417428e+01 3.079691e+00 moveto +6.437986e+01 3.249009e+00 lineto +6.468587e+01 3.251877e+00 lineto +6.458173e+01 3.083509e+00 lineto +6.417428e+01 3.079691e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.396949e+01 2.951011e+00 moveto +6.417428e+01 3.079691e+00 lineto +6.458173e+01 3.083509e+00 lineto +6.4478e+01 2.955776e+00 lineto +6.396949e+01 2.951011e+00 lineto +closepath +gsave +5.828198e-01 5.828198e-01 7.285248e-01 setrgbcolor +fill +grestore +newpath +6.396949e+01 2.951011e+00 moveto +6.417428e+01 3.079691e+00 lineto +6.458173e+01 3.083509e+00 lineto +6.4478e+01 2.955776e+00 lineto +6.396949e+01 2.951011e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.376567e+01 2.86309e+00 moveto +6.396949e+01 2.951011e+00 lineto +6.4478e+01 2.955776e+00 lineto +6.437475e+01 2.868797e+00 lineto +6.376567e+01 2.86309e+00 lineto +closepath +gsave +5.769827e-01 5.769827e-01 7.212284e-01 setrgbcolor +fill +grestore +newpath +6.376567e+01 2.86309e+00 moveto +6.396949e+01 2.951011e+00 lineto +6.4478e+01 2.955776e+00 lineto +6.437475e+01 2.868797e+00 lineto +6.376567e+01 2.86309e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.356302e+01 2.816011e+00 moveto +6.376567e+01 2.86309e+00 lineto +6.437475e+01 2.868797e+00 lineto +6.42721e+01 2.822655e+00 lineto +6.356302e+01 2.816011e+00 lineto +closepath +gsave +5.711537e-01 5.711537e-01 7.139421e-01 setrgbcolor +fill +grestore +newpath +6.356302e+01 2.816011e+00 moveto +6.376567e+01 2.86309e+00 lineto +6.437475e+01 2.868797e+00 lineto +6.42721e+01 2.822655e+00 lineto +6.356302e+01 2.816011e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.336173e+01 2.809819e+00 moveto +6.356302e+01 2.816011e+00 lineto +6.42721e+01 2.822655e+00 lineto +6.417014e+01 2.817394e+00 lineto +6.336173e+01 2.809819e+00 lineto +closepath +gsave +5.653418e-01 5.653418e-01 7.066773e-01 setrgbcolor +fill +grestore +newpath +6.336173e+01 2.809819e+00 moveto +6.356302e+01 2.816011e+00 lineto +6.42721e+01 2.822655e+00 lineto +6.417014e+01 2.817394e+00 lineto +6.336173e+01 2.809819e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.489493e+01 3.709836e+00 moveto +6.499966e+01 3.998995e+00 lineto +6.499999e+01 3.999005e+00 lineto +6.499793e+01 3.712708e+00 lineto +6.489493e+01 3.709836e+00 lineto +closepath +gsave +6.05864e-01 6.05864e-01 7.5733e-01 setrgbcolor +fill +grestore +newpath +6.489493e+01 3.709836e+00 moveto +6.499966e+01 3.998995e+00 lineto +6.499999e+01 3.999005e+00 lineto +6.499793e+01 3.712708e+00 lineto +6.489493e+01 3.709836e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.47903e+01 3.460718e+00 moveto +6.489493e+01 3.709836e+00 lineto +6.499793e+01 3.712708e+00 lineto +6.499587e+01 3.466449e+00 lineto +6.47903e+01 3.460718e+00 lineto +closepath +gsave +5.996926e-01 5.996926e-01 7.496157e-01 setrgbcolor +fill +grestore +newpath +6.47903e+01 3.460718e+00 moveto +6.489493e+01 3.709836e+00 lineto +6.499793e+01 3.712708e+00 lineto +6.499587e+01 3.466449e+00 lineto +6.47903e+01 3.460718e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.468587e+01 3.251877e+00 moveto +6.47903e+01 3.460718e+00 lineto +6.499587e+01 3.466449e+00 lineto +6.499382e+01 3.260462e+00 lineto +6.468587e+01 3.251877e+00 lineto +closepath +gsave +5.934977e-01 5.934977e-01 7.418721e-01 setrgbcolor +fill +grestore +newpath +6.468587e+01 3.251877e+00 moveto +6.47903e+01 3.460718e+00 lineto +6.499587e+01 3.466449e+00 lineto +6.499382e+01 3.260462e+00 lineto +6.468587e+01 3.251877e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.458173e+01 3.083509e+00 moveto +6.468587e+01 3.251877e+00 lineto +6.499382e+01 3.260462e+00 lineto +6.499177e+01 3.09494e+00 lineto +6.458173e+01 3.083509e+00 lineto +closepath +gsave +5.872894e-01 5.872894e-01 7.341117e-01 setrgbcolor +fill +grestore +newpath +6.458173e+01 3.083509e+00 moveto +6.468587e+01 3.251877e+00 lineto +6.499382e+01 3.260462e+00 lineto +6.499177e+01 3.09494e+00 lineto +6.458173e+01 3.083509e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.4478e+01 2.955776e+00 moveto +6.458173e+01 3.083509e+00 lineto +6.499177e+01 3.09494e+00 lineto +6.498972e+01 2.970042e+00 lineto +6.4478e+01 2.955776e+00 lineto +closepath +gsave +5.810779e-01 5.810779e-01 7.263473e-01 setrgbcolor +fill +grestore +newpath +6.4478e+01 2.955776e+00 moveto +6.458173e+01 3.083509e+00 lineto +6.499177e+01 3.09494e+00 lineto +6.498972e+01 2.970042e+00 lineto +6.4478e+01 2.955776e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.437475e+01 2.868797e+00 moveto +6.4478e+01 2.955776e+00 lineto +6.498972e+01 2.970042e+00 lineto +6.498769e+01 2.885885e+00 lineto +6.437475e+01 2.868797e+00 lineto +closepath +gsave +5.748734e-01 5.748734e-01 7.185917e-01 setrgbcolor +fill +grestore +newpath +6.437475e+01 2.868797e+00 moveto +6.4478e+01 2.955776e+00 lineto +6.498972e+01 2.970042e+00 lineto +6.498769e+01 2.885885e+00 lineto +6.437475e+01 2.868797e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.42721e+01 2.822655e+00 moveto +6.437475e+01 2.868797e+00 lineto +6.498769e+01 2.885885e+00 lineto +6.498567e+01 2.842548e+00 lineto +6.42721e+01 2.822655e+00 lineto +closepath +gsave +5.686861e-01 5.686861e-01 7.108576e-01 setrgbcolor +fill +grestore +newpath +6.42721e+01 2.822655e+00 moveto +6.437475e+01 2.868797e+00 lineto +6.498769e+01 2.885885e+00 lineto +6.498567e+01 2.842548e+00 lineto +6.42721e+01 2.822655e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.417014e+01 2.817394e+00 moveto +6.42721e+01 2.822655e+00 lineto +6.498567e+01 2.842548e+00 lineto +6.498366e+01 2.840074e+00 lineto +6.417014e+01 2.817394e+00 lineto +closepath +gsave +5.625262e-01 5.625262e-01 7.031578e-01 setrgbcolor +fill +grestore +newpath +6.417014e+01 2.817394e+00 moveto +6.42721e+01 2.822655e+00 lineto +6.498567e+01 2.842548e+00 lineto +6.498366e+01 2.840074e+00 lineto +6.417014e+01 2.817394e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.499793e+01 3.712708e+00 moveto +6.499999e+01 3.999005e+00 lineto +6.500033e+01 3.99902e+00 lineto +6.510095e+01 3.717474e+00 lineto +6.499793e+01 3.712708e+00 lineto +closepath +gsave +6.05683e-01 6.05683e-01 7.571037e-01 setrgbcolor +fill +grestore +newpath +6.499793e+01 3.712708e+00 moveto +6.499999e+01 3.999005e+00 lineto +6.500033e+01 3.99902e+00 lineto +6.510095e+01 3.717474e+00 lineto +6.499793e+01 3.712708e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.499587e+01 3.466449e+00 moveto +6.499793e+01 3.712708e+00 lineto +6.510095e+01 3.717474e+00 lineto +6.520147e+01 3.475961e+00 lineto +6.499587e+01 3.466449e+00 lineto +closepath +gsave +5.991549e-01 5.991549e-01 7.489436e-01 setrgbcolor +fill +grestore +newpath +6.499587e+01 3.466449e+00 moveto +6.499793e+01 3.712708e+00 lineto +6.510095e+01 3.717474e+00 lineto +6.520147e+01 3.475961e+00 lineto +6.499587e+01 3.466449e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.499382e+01 3.260462e+00 moveto +6.499587e+01 3.466449e+00 lineto +6.520147e+01 3.475961e+00 lineto +6.53018e+01 3.274711e+00 lineto +6.499382e+01 3.260462e+00 lineto +closepath +gsave +5.926084e-01 5.926084e-01 7.407605e-01 setrgbcolor +fill +grestore +newpath +6.499382e+01 3.260462e+00 moveto +6.499587e+01 3.466449e+00 lineto +6.520147e+01 3.475961e+00 lineto +6.53018e+01 3.274711e+00 lineto +6.499382e+01 3.260462e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.499177e+01 3.09494e+00 moveto +6.499382e+01 3.260462e+00 lineto +6.53018e+01 3.274711e+00 lineto +6.540185e+01 3.113913e+00 lineto +6.499177e+01 3.09494e+00 lineto +closepath +gsave +5.860546e-01 5.860546e-01 7.325682e-01 setrgbcolor +fill +grestore +newpath +6.499177e+01 3.09494e+00 moveto +6.499382e+01 3.260462e+00 lineto +6.53018e+01 3.274711e+00 lineto +6.540185e+01 3.113913e+00 lineto +6.499177e+01 3.09494e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.498972e+01 2.970042e+00 moveto +6.499177e+01 3.09494e+00 lineto +6.540185e+01 3.113913e+00 lineto +6.550151e+01 2.993721e+00 lineto +6.498972e+01 2.970042e+00 lineto +closepath +gsave +5.795045e-01 5.795045e-01 7.243806e-01 setrgbcolor +fill +grestore +newpath +6.498972e+01 2.970042e+00 moveto +6.499177e+01 3.09494e+00 lineto +6.540185e+01 3.113913e+00 lineto +6.550151e+01 2.993721e+00 lineto +6.498972e+01 2.970042e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.498769e+01 2.885885e+00 moveto +6.498972e+01 2.970042e+00 lineto +6.550151e+01 2.993721e+00 lineto +6.56007e+01 2.914247e+00 lineto +6.498769e+01 2.885885e+00 lineto +closepath +gsave +5.729694e-01 5.729694e-01 7.162117e-01 setrgbcolor +fill +grestore +newpath +6.498769e+01 2.885885e+00 moveto +6.498972e+01 2.970042e+00 lineto +6.550151e+01 2.993721e+00 lineto +6.56007e+01 2.914247e+00 lineto +6.498769e+01 2.885885e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.498567e+01 2.842548e+00 moveto +6.498769e+01 2.885885e+00 lineto +6.56007e+01 2.914247e+00 lineto +6.569933e+01 2.875567e+00 lineto +6.498567e+01 2.842548e+00 lineto +closepath +gsave +5.664604e-01 5.664604e-01 7.080755e-01 setrgbcolor +fill +grestore +newpath +6.498567e+01 2.842548e+00 moveto +6.498769e+01 2.885885e+00 lineto +6.56007e+01 2.914247e+00 lineto +6.569933e+01 2.875567e+00 lineto +6.498567e+01 2.842548e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.498366e+01 2.840074e+00 moveto +6.498567e+01 2.842548e+00 lineto +6.569933e+01 2.875567e+00 lineto +6.579729e+01 2.877717e+00 lineto +6.498366e+01 2.840074e+00 lineto +closepath +gsave +5.599886e-01 5.599886e-01 6.999858e-01 setrgbcolor +fill +grestore +newpath +6.498366e+01 2.840074e+00 moveto +6.498567e+01 2.842548e+00 lineto +6.569933e+01 2.875567e+00 lineto +6.579729e+01 2.877717e+00 lineto +6.498366e+01 2.840074e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.510095e+01 3.717474e+00 moveto +6.500033e+01 3.99902e+00 lineto +6.500066e+01 3.999042e+00 lineto +6.520334e+01 3.724105e+00 lineto +6.510095e+01 3.717474e+00 lineto +closepath +gsave +6.05522e-01 6.05522e-01 7.569025e-01 setrgbcolor +fill +grestore +newpath +6.510095e+01 3.717474e+00 moveto +6.500033e+01 3.99902e+00 lineto +6.500066e+01 3.999042e+00 lineto +6.520334e+01 3.724105e+00 lineto +6.510095e+01 3.717474e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.520147e+01 3.475961e+00 moveto +6.510095e+01 3.717474e+00 lineto +6.520334e+01 3.724105e+00 lineto +6.540582e+01 3.489196e+00 lineto +6.520147e+01 3.475961e+00 lineto +closepath +gsave +5.986772e-01 5.986772e-01 7.483465e-01 setrgbcolor +fill +grestore +newpath +6.520147e+01 3.475961e+00 moveto +6.510095e+01 3.717474e+00 lineto +6.520334e+01 3.724105e+00 lineto +6.540582e+01 3.489196e+00 lineto +6.520147e+01 3.475961e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.53018e+01 3.274711e+00 moveto +6.520147e+01 3.475961e+00 lineto +6.540582e+01 3.489196e+00 lineto +6.560792e+01 3.294537e+00 lineto +6.53018e+01 3.274711e+00 lineto +closepath +gsave +5.918186e-01 5.918186e-01 7.397733e-01 setrgbcolor +fill +grestore +newpath +6.53018e+01 3.274711e+00 moveto +6.520147e+01 3.475961e+00 lineto +6.540582e+01 3.489196e+00 lineto +6.560792e+01 3.294537e+00 lineto +6.53018e+01 3.274711e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.540185e+01 3.113913e+00 moveto +6.53018e+01 3.274711e+00 lineto +6.560792e+01 3.294537e+00 lineto +6.580945e+01 3.140312e+00 lineto +6.540185e+01 3.113913e+00 lineto +closepath +gsave +5.849584e-01 5.849584e-01 7.311979e-01 setrgbcolor +fill +grestore +newpath +6.540185e+01 3.113913e+00 moveto +6.53018e+01 3.274711e+00 lineto +6.560792e+01 3.294537e+00 lineto +6.580945e+01 3.140312e+00 lineto +6.540185e+01 3.113913e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.550151e+01 2.993721e+00 moveto +6.540185e+01 3.113913e+00 lineto +6.580945e+01 3.140312e+00 lineto +6.601021e+01 3.026666e+00 lineto +6.550151e+01 2.993721e+00 lineto +closepath +gsave +5.781085e-01 5.781085e-01 7.226356e-01 setrgbcolor +fill +grestore +newpath +6.550151e+01 2.993721e+00 moveto +6.540185e+01 3.113913e+00 lineto +6.580945e+01 3.140312e+00 lineto +6.601021e+01 3.026666e+00 lineto +6.550151e+01 2.993721e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.56007e+01 2.914247e+00 moveto +6.550151e+01 2.993721e+00 lineto +6.601021e+01 3.026666e+00 lineto +6.621001e+01 2.953708e+00 lineto +6.56007e+01 2.914247e+00 lineto +closepath +gsave +5.71281e-01 5.71281e-01 7.141013e-01 setrgbcolor +fill +grestore +newpath +6.56007e+01 2.914247e+00 moveto +6.550151e+01 2.993721e+00 lineto +6.601021e+01 3.026666e+00 lineto +6.621001e+01 2.953708e+00 lineto +6.56007e+01 2.914247e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.569933e+01 2.875567e+00 moveto +6.56007e+01 2.914247e+00 lineto +6.621001e+01 2.953708e+00 lineto +6.640867e+01 2.921507e+00 lineto +6.569933e+01 2.875567e+00 lineto +closepath +gsave +5.644881e-01 5.644881e-01 7.056101e-01 setrgbcolor +fill +grestore +newpath +6.569933e+01 2.875567e+00 moveto +6.56007e+01 2.914247e+00 lineto +6.621001e+01 2.953708e+00 lineto +6.640867e+01 2.921507e+00 lineto +6.569933e+01 2.875567e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.579729e+01 2.877717e+00 moveto +6.569933e+01 2.875567e+00 lineto +6.640867e+01 2.921507e+00 lineto +6.660599e+01 2.930093e+00 lineto +6.579729e+01 2.877717e+00 lineto +closepath +gsave +5.577416e-01 5.577416e-01 6.97177e-01 setrgbcolor +fill +grestore +newpath +6.579729e+01 2.877717e+00 moveto +6.569933e+01 2.875567e+00 lineto +6.640867e+01 2.921507e+00 lineto +6.660599e+01 2.930093e+00 lineto +6.579729e+01 2.877717e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.520334e+01 3.724105e+00 moveto +6.500066e+01 3.999042e+00 lineto +6.500099e+01 3.999069e+00 lineto +6.530448e+01 3.732561e+00 lineto +6.520334e+01 3.724105e+00 lineto +closepath +gsave +6.053822e-01 6.053822e-01 7.567278e-01 setrgbcolor +fill +grestore +newpath +6.520334e+01 3.724105e+00 moveto +6.500066e+01 3.999042e+00 lineto +6.500099e+01 3.999069e+00 lineto +6.530448e+01 3.732561e+00 lineto +6.520334e+01 3.724105e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.540582e+01 3.489196e+00 moveto +6.520334e+01 3.724105e+00 lineto +6.530448e+01 3.732561e+00 lineto +6.560768e+01 3.506072e+00 lineto +6.540582e+01 3.489196e+00 lineto +closepath +gsave +5.982622e-01 5.982622e-01 7.478278e-01 setrgbcolor +fill +grestore +newpath +6.540582e+01 3.489196e+00 moveto +6.520334e+01 3.724105e+00 lineto +6.530448e+01 3.732561e+00 lineto +6.560768e+01 3.506072e+00 lineto +6.540582e+01 3.489196e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.560792e+01 3.294537e+00 moveto +6.540582e+01 3.489196e+00 lineto +6.560768e+01 3.506072e+00 lineto +6.59103e+01 3.319817e+00 lineto +6.560792e+01 3.294537e+00 lineto +closepath +gsave +5.911329e-01 5.911329e-01 7.389161e-01 setrgbcolor +fill +grestore +newpath +6.560792e+01 3.294537e+00 moveto +6.540582e+01 3.489196e+00 lineto +6.560768e+01 3.506072e+00 lineto +6.59103e+01 3.319817e+00 lineto +6.560792e+01 3.294537e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.580945e+01 3.140312e+00 moveto +6.560792e+01 3.294537e+00 lineto +6.59103e+01 3.319817e+00 lineto +6.621206e+01 3.173972e+00 lineto +6.580945e+01 3.140312e+00 lineto +closepath +gsave +5.84007e-01 5.84007e-01 7.300088e-01 setrgbcolor +fill +grestore +newpath +6.580945e+01 3.140312e+00 moveto +6.560792e+01 3.294537e+00 lineto +6.59103e+01 3.319817e+00 lineto +6.621206e+01 3.173972e+00 lineto +6.580945e+01 3.140312e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.601021e+01 3.026666e+00 moveto +6.580945e+01 3.140312e+00 lineto +6.621206e+01 3.173972e+00 lineto +6.651268e+01 3.068675e+00 lineto +6.601021e+01 3.026666e+00 lineto +closepath +gsave +5.768975e-01 5.768975e-01 7.211219e-01 setrgbcolor +fill +grestore +newpath +6.601021e+01 3.026666e+00 moveto +6.580945e+01 3.140312e+00 lineto +6.621206e+01 3.173972e+00 lineto +6.651268e+01 3.068675e+00 lineto +6.601021e+01 3.026666e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.621001e+01 2.953708e+00 moveto +6.601021e+01 3.026666e+00 lineto +6.651268e+01 3.068675e+00 lineto +6.681186e+01 3.004026e+00 lineto +6.621001e+01 2.953708e+00 lineto +closepath +gsave +5.698173e-01 5.698173e-01 7.122716e-01 setrgbcolor +fill +grestore +newpath +6.621001e+01 2.953708e+00 moveto +6.601021e+01 3.026666e+00 lineto +6.651268e+01 3.068675e+00 lineto +6.681186e+01 3.004026e+00 lineto +6.621001e+01 2.953708e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.640867e+01 2.921507e+00 moveto +6.621001e+01 2.953708e+00 lineto +6.681186e+01 3.004026e+00 lineto +6.710933e+01 2.980086e+00 lineto +6.640867e+01 2.921507e+00 lineto +closepath +gsave +5.627792e-01 5.627792e-01 7.03474e-01 setrgbcolor +fill +grestore +newpath +6.640867e+01 2.921507e+00 moveto +6.621001e+01 2.953708e+00 lineto +6.681186e+01 3.004026e+00 lineto +6.710933e+01 2.980086e+00 lineto +6.640867e+01 2.921507e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.660599e+01 2.930093e+00 moveto +6.640867e+01 2.921507e+00 lineto +6.710933e+01 2.980086e+00 lineto +6.74048e+01 2.996878e+00 lineto +6.660599e+01 2.930093e+00 lineto +closepath +gsave +5.55796e-01 5.55796e-01 6.94745e-01 setrgbcolor +fill +grestore +newpath +6.660599e+01 2.930093e+00 moveto +6.640867e+01 2.921507e+00 lineto +6.710933e+01 2.980086e+00 lineto +6.74048e+01 2.996878e+00 lineto +6.660599e+01 2.930093e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.530448e+01 3.732561e+00 moveto +6.500099e+01 3.999069e+00 lineto +6.500131e+01 3.999102e+00 lineto +6.540374e+01 3.742789e+00 lineto +6.530448e+01 3.732561e+00 lineto +closepath +gsave +6.052644e-01 6.052644e-01 7.565805e-01 setrgbcolor +fill +grestore +newpath +6.530448e+01 3.732561e+00 moveto +6.500099e+01 3.999069e+00 lineto +6.500131e+01 3.999102e+00 lineto +6.540374e+01 3.742789e+00 lineto +6.530448e+01 3.732561e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.560768e+01 3.506072e+00 moveto +6.530448e+01 3.732561e+00 lineto +6.540374e+01 3.742789e+00 lineto +6.580578e+01 3.526485e+00 lineto +6.560768e+01 3.506072e+00 lineto +closepath +gsave +5.979126e-01 5.979126e-01 7.473908e-01 setrgbcolor +fill +grestore +newpath +6.560768e+01 3.506072e+00 moveto +6.530448e+01 3.732561e+00 lineto +6.540374e+01 3.742789e+00 lineto +6.580578e+01 3.526485e+00 lineto +6.560768e+01 3.506072e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.59103e+01 3.319817e+00 moveto +6.560768e+01 3.506072e+00 lineto +6.580578e+01 3.526485e+00 lineto +6.620706e+01 3.350396e+00 lineto +6.59103e+01 3.319817e+00 lineto +closepath +gsave +5.905553e-01 5.905553e-01 7.381941e-01 setrgbcolor +fill +grestore +newpath +6.59103e+01 3.319817e+00 moveto +6.560768e+01 3.506072e+00 lineto +6.580578e+01 3.526485e+00 lineto +6.620706e+01 3.350396e+00 lineto +6.59103e+01 3.319817e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.621206e+01 3.173972e+00 moveto +6.59103e+01 3.319817e+00 lineto +6.620706e+01 3.350396e+00 lineto +6.66072e+01 3.214688e+00 lineto +6.621206e+01 3.173972e+00 lineto +closepath +gsave +5.832059e-01 5.832059e-01 7.290074e-01 setrgbcolor +fill +grestore +newpath +6.621206e+01 3.173972e+00 moveto +6.59103e+01 3.319817e+00 lineto +6.620706e+01 3.350396e+00 lineto +6.66072e+01 3.214688e+00 lineto +6.621206e+01 3.173972e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.651268e+01 3.068675e+00 moveto +6.621206e+01 3.173972e+00 lineto +6.66072e+01 3.214688e+00 lineto +6.700582e+01 3.119489e+00 lineto +6.651268e+01 3.068675e+00 lineto +closepath +gsave +5.758782e-01 5.758782e-01 7.198477e-01 setrgbcolor +fill +grestore +newpath +6.651268e+01 3.068675e+00 moveto +6.621206e+01 3.173972e+00 lineto +6.66072e+01 3.214688e+00 lineto +6.700582e+01 3.119489e+00 lineto +6.651268e+01 3.068675e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.681186e+01 3.004026e+00 moveto +6.651268e+01 3.068675e+00 lineto +6.700582e+01 3.119489e+00 lineto +6.740254e+01 3.06489e+00 lineto +6.681186e+01 3.004026e+00 lineto +closepath +gsave +5.685858e-01 5.685858e-01 7.107322e-01 setrgbcolor +fill +grestore +newpath +6.681186e+01 3.004026e+00 moveto +6.651268e+01 3.068675e+00 lineto +6.700582e+01 3.119489e+00 lineto +6.740254e+01 3.06489e+00 lineto +6.681186e+01 3.004026e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.710933e+01 2.980086e+00 moveto +6.681186e+01 3.004026e+00 lineto +6.740254e+01 3.06489e+00 lineto +6.779699e+01 3.050943e+00 lineto +6.710933e+01 2.980086e+00 lineto +closepath +gsave +5.613422e-01 5.613422e-01 7.016778e-01 setrgbcolor +fill +grestore +newpath +6.710933e+01 2.980086e+00 moveto +6.681186e+01 3.004026e+00 lineto +6.740254e+01 3.06489e+00 lineto +6.779699e+01 3.050943e+00 lineto +6.710933e+01 2.980086e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.74048e+01 2.996878e+00 moveto +6.710933e+01 2.980086e+00 lineto +6.779699e+01 3.050943e+00 lineto +6.818878e+01 3.07766e+00 lineto +6.74048e+01 2.996878e+00 lineto +closepath +gsave +5.54161e-01 5.54161e-01 6.927012e-01 setrgbcolor +fill +grestore +newpath +6.74048e+01 2.996878e+00 moveto +6.710933e+01 2.980086e+00 lineto +6.779699e+01 3.050943e+00 lineto +6.818878e+01 3.07766e+00 lineto +6.74048e+01 2.996878e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.540374e+01 3.742789e+00 moveto +6.500131e+01 3.999102e+00 lineto +6.500162e+01 3.999141e+00 lineto +6.550051e+01 3.754726e+00 lineto +6.540374e+01 3.742789e+00 lineto +closepath +gsave +6.051692e-01 6.051692e-01 7.564615e-01 setrgbcolor +fill +grestore +newpath +6.540374e+01 3.742789e+00 moveto +6.500131e+01 3.999102e+00 lineto +6.500162e+01 3.999141e+00 lineto +6.550051e+01 3.754726e+00 lineto +6.540374e+01 3.742789e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.580578e+01 3.526485e+00 moveto +6.540374e+01 3.742789e+00 lineto +6.550051e+01 3.754726e+00 lineto +6.599892e+01 3.55031e+00 lineto +6.580578e+01 3.526485e+00 lineto +closepath +gsave +5.976304e-01 5.976304e-01 7.47038e-01 setrgbcolor +fill +grestore +newpath +6.580578e+01 3.526485e+00 moveto +6.540374e+01 3.742789e+00 lineto +6.550051e+01 3.754726e+00 lineto +6.599892e+01 3.55031e+00 lineto +6.580578e+01 3.526485e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.620706e+01 3.350396e+00 moveto +6.580578e+01 3.526485e+00 lineto +6.599892e+01 3.55031e+00 lineto +6.649639e+01 3.386085e+00 lineto +6.620706e+01 3.350396e+00 lineto +closepath +gsave +5.900891e-01 5.900891e-01 7.376114e-01 setrgbcolor +fill +grestore +newpath +6.620706e+01 3.350396e+00 moveto +6.580578e+01 3.526485e+00 lineto +6.599892e+01 3.55031e+00 lineto +6.649639e+01 3.386085e+00 lineto +6.620706e+01 3.350396e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.66072e+01 3.214688e+00 moveto +6.620706e+01 3.350396e+00 lineto +6.649639e+01 3.386085e+00 lineto +6.699244e+01 3.262208e+00 lineto +6.66072e+01 3.214688e+00 lineto +closepath +gsave +5.825596e-01 5.825596e-01 7.281995e-01 setrgbcolor +fill +grestore +newpath +6.66072e+01 3.214688e+00 moveto +6.620706e+01 3.350396e+00 lineto +6.649639e+01 3.386085e+00 lineto +6.699244e+01 3.262208e+00 lineto +6.66072e+01 3.214688e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.700582e+01 3.119489e+00 moveto +6.66072e+01 3.214688e+00 lineto +6.699244e+01 3.262208e+00 lineto +6.74866e+01 3.178795e+00 lineto +6.700582e+01 3.119489e+00 lineto +closepath +gsave +5.750561e-01 5.750561e-01 7.188201e-01 setrgbcolor +fill +grestore +newpath +6.700582e+01 3.119489e+00 moveto +6.66072e+01 3.214688e+00 lineto +6.699244e+01 3.262208e+00 lineto +6.74866e+01 3.178795e+00 lineto +6.700582e+01 3.119489e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.740254e+01 3.06489e+00 moveto +6.700582e+01 3.119489e+00 lineto +6.74866e+01 3.178795e+00 lineto +6.797841e+01 3.135926e+00 lineto +6.740254e+01 3.06489e+00 lineto +closepath +gsave +5.675929e-01 5.675929e-01 7.094912e-01 setrgbcolor +fill +grestore +newpath +6.740254e+01 3.06489e+00 moveto +6.700582e+01 3.119489e+00 lineto +6.74866e+01 3.178795e+00 lineto +6.797841e+01 3.135926e+00 lineto +6.740254e+01 3.06489e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.779699e+01 3.050943e+00 moveto +6.740254e+01 3.06489e+00 lineto +6.797841e+01 3.135926e+00 lineto +6.84674e+01 3.13364e+00 lineto +6.779699e+01 3.050943e+00 lineto +closepath +gsave +5.601842e-01 5.601842e-01 7.002303e-01 setrgbcolor +fill +grestore +newpath +6.779699e+01 3.050943e+00 moveto +6.740254e+01 3.06489e+00 lineto +6.797841e+01 3.135926e+00 lineto +6.84674e+01 3.13364e+00 lineto +6.779699e+01 3.050943e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.818878e+01 3.07766e+00 moveto +6.779699e+01 3.050943e+00 lineto +6.84674e+01 3.13364e+00 lineto +6.89531e+01 3.171942e+00 lineto +6.818878e+01 3.07766e+00 lineto +closepath +gsave +5.528441e-01 5.528441e-01 6.910551e-01 setrgbcolor +fill +grestore +newpath +6.818878e+01 3.07766e+00 moveto +6.779699e+01 3.050943e+00 lineto +6.84674e+01 3.13364e+00 lineto +6.89531e+01 3.171942e+00 lineto +6.818878e+01 3.07766e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.550051e+01 3.754726e+00 moveto +6.500162e+01 3.999141e+00 lineto +6.500193e+01 3.999185e+00 lineto +6.559419e+01 3.768299e+00 lineto +6.550051e+01 3.754726e+00 lineto +closepath +gsave +6.050973e-01 6.050973e-01 7.563717e-01 setrgbcolor +fill +grestore +newpath +6.550051e+01 3.754726e+00 moveto +6.500162e+01 3.999141e+00 lineto +6.500193e+01 3.999185e+00 lineto +6.559419e+01 3.768299e+00 lineto +6.550051e+01 3.754726e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.599892e+01 3.55031e+00 moveto +6.550051e+01 3.754726e+00 lineto +6.559419e+01 3.768299e+00 lineto +6.61859e+01 3.577398e+00 lineto +6.599892e+01 3.55031e+00 lineto +closepath +gsave +5.974172e-01 5.974172e-01 7.467715e-01 setrgbcolor +fill +grestore +newpath +6.599892e+01 3.55031e+00 moveto +6.550051e+01 3.754726e+00 lineto +6.559419e+01 3.768299e+00 lineto +6.61859e+01 3.577398e+00 lineto +6.599892e+01 3.55031e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.649639e+01 3.386085e+00 moveto +6.599892e+01 3.55031e+00 lineto +6.61859e+01 3.577398e+00 lineto +6.677648e+01 3.426664e+00 lineto +6.649639e+01 3.386085e+00 lineto +closepath +gsave +5.897371e-01 5.897371e-01 7.371713e-01 setrgbcolor +fill +grestore +newpath +6.649639e+01 3.386085e+00 moveto +6.599892e+01 3.55031e+00 lineto +6.61859e+01 3.577398e+00 lineto +6.677648e+01 3.426664e+00 lineto +6.649639e+01 3.386085e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.699244e+01 3.262208e+00 moveto +6.649639e+01 3.386085e+00 lineto +6.677648e+01 3.426664e+00 lineto +6.736538e+01 3.316238e+00 lineto +6.699244e+01 3.262208e+00 lineto +closepath +gsave +5.820716e-01 5.820716e-01 7.275895e-01 setrgbcolor +fill +grestore +newpath +6.699244e+01 3.262208e+00 moveto +6.649639e+01 3.386085e+00 lineto +6.677648e+01 3.426664e+00 lineto +6.736538e+01 3.316238e+00 lineto +6.699244e+01 3.262208e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.74866e+01 3.178795e+00 moveto +6.699244e+01 3.262208e+00 lineto +6.736538e+01 3.316238e+00 lineto +6.795205e+01 3.246226e+00 lineto +6.74866e+01 3.178795e+00 lineto +closepath +gsave +5.744356e-01 5.744356e-01 7.180445e-01 setrgbcolor +fill +grestore +newpath +6.74866e+01 3.178795e+00 moveto +6.699244e+01 3.262208e+00 lineto +6.736538e+01 3.316238e+00 lineto +6.795205e+01 3.246226e+00 lineto +6.74866e+01 3.178795e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.797841e+01 3.135926e+00 moveto +6.74866e+01 3.178795e+00 lineto +6.795205e+01 3.246226e+00 lineto +6.853591e+01 3.216694e+00 lineto +6.797841e+01 3.135926e+00 lineto +closepath +gsave +5.668438e-01 5.668438e-01 7.085548e-01 setrgbcolor +fill +grestore +newpath +6.797841e+01 3.135926e+00 moveto +6.74866e+01 3.178795e+00 lineto +6.795205e+01 3.246226e+00 lineto +6.853591e+01 3.216694e+00 lineto +6.797841e+01 3.135926e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.84674e+01 3.13364e+00 moveto +6.797841e+01 3.135926e+00 lineto +6.853591e+01 3.216694e+00 lineto +6.911643e+01 3.227669e+00 lineto +6.84674e+01 3.13364e+00 lineto +closepath +gsave +5.593109e-01 5.593109e-01 6.991386e-01 setrgbcolor +fill +grestore +newpath +6.84674e+01 3.13364e+00 moveto +6.797841e+01 3.135926e+00 lineto +6.853591e+01 3.216694e+00 lineto +6.911643e+01 3.227669e+00 lineto +6.84674e+01 3.13364e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.89531e+01 3.171942e+00 moveto +6.84674e+01 3.13364e+00 lineto +6.911643e+01 3.227669e+00 lineto +6.969305e+01 3.279141e+00 lineto +6.89531e+01 3.171942e+00 lineto +closepath +gsave +5.518513e-01 5.518513e-01 6.898141e-01 setrgbcolor +fill +grestore +newpath +6.89531e+01 3.171942e+00 moveto +6.84674e+01 3.13364e+00 lineto +6.911643e+01 3.227669e+00 lineto +6.969305e+01 3.279141e+00 lineto +6.89531e+01 3.171942e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.559419e+01 3.768299e+00 moveto +6.500193e+01 3.999185e+00 lineto +6.500222e+01 3.999234e+00 lineto +6.568422e+01 3.783423e+00 lineto +6.559419e+01 3.768299e+00 lineto +closepath +gsave +6.050492e-01 6.050492e-01 7.563115e-01 setrgbcolor +fill +grestore +newpath +6.559419e+01 3.768299e+00 moveto +6.500193e+01 3.999185e+00 lineto +6.500222e+01 3.999234e+00 lineto +6.568422e+01 3.783423e+00 lineto +6.559419e+01 3.768299e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.61859e+01 3.577398e+00 moveto +6.559419e+01 3.768299e+00 lineto +6.568422e+01 3.783423e+00 lineto +6.636557e+01 3.607584e+00 lineto +6.61859e+01 3.577398e+00 lineto +closepath +gsave +5.972744e-01 5.972744e-01 7.46593e-01 setrgbcolor +fill +grestore +newpath +6.61859e+01 3.577398e+00 moveto +6.559419e+01 3.768299e+00 lineto +6.568422e+01 3.783423e+00 lineto +6.636557e+01 3.607584e+00 lineto +6.61859e+01 3.577398e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.677648e+01 3.426664e+00 moveto +6.61859e+01 3.577398e+00 lineto +6.636557e+01 3.607584e+00 lineto +6.704563e+01 3.471882e+00 lineto +6.677648e+01 3.426664e+00 lineto +closepath +gsave +5.895013e-01 5.895013e-01 7.368766e-01 setrgbcolor +fill +grestore +newpath +6.677648e+01 3.426664e+00 moveto +6.61859e+01 3.577398e+00 lineto +6.636557e+01 3.607584e+00 lineto +6.704563e+01 3.471882e+00 lineto +6.677648e+01 3.426664e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.736538e+01 3.316238e+00 moveto +6.677648e+01 3.426664e+00 lineto +6.704563e+01 3.471882e+00 lineto +6.772375e+01 3.376447e+00 lineto +6.736538e+01 3.316238e+00 lineto +closepath +gsave +5.817448e-01 5.817448e-01 7.27181e-01 setrgbcolor +fill +grestore +newpath +6.736538e+01 3.316238e+00 moveto +6.677648e+01 3.426664e+00 lineto +6.704563e+01 3.471882e+00 lineto +6.772375e+01 3.376447e+00 lineto +6.736538e+01 3.316238e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.795205e+01 3.246226e+00 moveto +6.736538e+01 3.316238e+00 lineto +6.772375e+01 3.376447e+00 lineto +6.839929e+01 3.321367e+00 lineto +6.795205e+01 3.246226e+00 lineto +closepath +gsave +5.740202e-01 5.740202e-01 7.175252e-01 setrgbcolor +fill +grestore +newpath +6.795205e+01 3.246226e+00 moveto +6.736538e+01 3.316238e+00 lineto +6.772375e+01 3.376447e+00 lineto +6.839929e+01 3.321367e+00 lineto +6.795205e+01 3.246226e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.853591e+01 3.216694e+00 moveto +6.795205e+01 3.246226e+00 lineto +6.839929e+01 3.321367e+00 lineto +6.907162e+01 3.306697e+00 lineto +6.853591e+01 3.216694e+00 lineto +closepath +gsave +5.663423e-01 5.663423e-01 7.079279e-01 setrgbcolor +fill +grestore +newpath +6.853591e+01 3.216694e+00 moveto +6.795205e+01 3.246226e+00 lineto +6.839929e+01 3.321367e+00 lineto +6.907162e+01 3.306697e+00 lineto +6.853591e+01 3.216694e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.911643e+01 3.227669e+00 moveto +6.853591e+01 3.216694e+00 lineto +6.907162e+01 3.306697e+00 lineto +6.974009e+01 3.332448e+00 lineto +6.911643e+01 3.227669e+00 lineto +closepath +gsave +5.587264e-01 5.587264e-01 6.984079e-01 setrgbcolor +fill +grestore +newpath +6.911643e+01 3.227669e+00 moveto +6.853591e+01 3.216694e+00 lineto +6.907162e+01 3.306697e+00 lineto +6.974009e+01 3.332448e+00 lineto +6.911643e+01 3.227669e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.969305e+01 3.279141e+00 moveto +6.911643e+01 3.227669e+00 lineto +6.974009e+01 3.332448e+00 lineto +7.040407e+01 3.398598e+00 lineto +6.969305e+01 3.279141e+00 lineto +closepath +gsave +5.51187e-01 5.51187e-01 6.889837e-01 setrgbcolor +fill +grestore +newpath +6.969305e+01 3.279141e+00 moveto +6.911643e+01 3.227669e+00 lineto +6.974009e+01 3.332448e+00 lineto +7.040407e+01 3.398598e+00 lineto +6.969305e+01 3.279141e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.026523e+01 3.371062e+00 moveto +6.969305e+01 3.279141e+00 lineto +7.040407e+01 3.398598e+00 lineto +7.106293e+01 3.505083e+00 lineto +7.026523e+01 3.371062e+00 lineto +closepath +gsave +5.437388e-01 5.437388e-01 6.796734e-01 setrgbcolor +fill +grestore +newpath +7.026523e+01 3.371062e+00 moveto +6.969305e+01 3.279141e+00 lineto +7.040407e+01 3.398598e+00 lineto +7.106293e+01 3.505083e+00 lineto +7.026523e+01 3.371062e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.568422e+01 3.783423e+00 moveto +6.500222e+01 3.999234e+00 lineto +6.500249e+01 3.999287e+00 lineto +6.577002e+01 3.800007e+00 lineto +6.568422e+01 3.783423e+00 lineto +closepath +gsave +6.05025e-01 6.05025e-01 7.562813e-01 setrgbcolor +fill +grestore +newpath +6.568422e+01 3.783423e+00 moveto +6.500222e+01 3.999234e+00 lineto +6.500249e+01 3.999287e+00 lineto +6.577002e+01 3.800007e+00 lineto +6.568422e+01 3.783423e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.636557e+01 3.607584e+00 moveto +6.568422e+01 3.783423e+00 lineto +6.577002e+01 3.800007e+00 lineto +6.653682e+01 3.640681e+00 lineto +6.636557e+01 3.607584e+00 lineto +closepath +gsave +5.972028e-01 5.972028e-01 7.465035e-01 setrgbcolor +fill +grestore +newpath +6.636557e+01 3.607584e+00 moveto +6.568422e+01 3.783423e+00 lineto +6.577002e+01 3.800007e+00 lineto +6.653682e+01 3.640681e+00 lineto +6.636557e+01 3.607584e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.704563e+01 3.471882e+00 moveto +6.636557e+01 3.607584e+00 lineto +6.653682e+01 3.640681e+00 lineto +6.730216e+01 3.521462e+00 lineto +6.704563e+01 3.471882e+00 lineto +closepath +gsave +5.89383e-01 5.89383e-01 7.367288e-01 setrgbcolor +fill +grestore +newpath +6.704563e+01 3.471882e+00 moveto +6.636557e+01 3.607584e+00 lineto +6.653682e+01 3.640681e+00 lineto +6.730216e+01 3.521462e+00 lineto +6.704563e+01 3.471882e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.772375e+01 3.376447e+00 moveto +6.704563e+01 3.471882e+00 lineto +6.730216e+01 3.521462e+00 lineto +6.806532e+01 3.442462e+00 lineto +6.772375e+01 3.376447e+00 lineto +closepath +gsave +5.815809e-01 5.815809e-01 7.269762e-01 setrgbcolor +fill +grestore +newpath +6.772375e+01 3.376447e+00 moveto +6.704563e+01 3.471882e+00 lineto +6.730216e+01 3.521462e+00 lineto +6.806532e+01 3.442462e+00 lineto +6.772375e+01 3.376447e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.839929e+01 3.321367e+00 moveto +6.772375e+01 3.376447e+00 lineto +6.806532e+01 3.442462e+00 lineto +6.882558e+01 3.403756e+00 lineto +6.839929e+01 3.321367e+00 lineto +closepath +gsave +5.738119e-01 5.738119e-01 7.172648e-01 setrgbcolor +fill +grestore +newpath +6.839929e+01 3.321367e+00 moveto +6.772375e+01 3.376447e+00 lineto +6.806532e+01 3.442462e+00 lineto +6.882558e+01 3.403756e+00 lineto +6.839929e+01 3.321367e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.907162e+01 3.306697e+00 moveto +6.839929e+01 3.321367e+00 lineto +6.882558e+01 3.403756e+00 lineto +6.958222e+01 3.40538e+00 lineto +6.907162e+01 3.306697e+00 lineto +closepath +gsave +5.66091e-01 5.66091e-01 7.076137e-01 setrgbcolor +fill +grestore +newpath +6.907162e+01 3.306697e+00 moveto +6.839929e+01 3.321367e+00 lineto +6.882558e+01 3.403756e+00 lineto +6.958222e+01 3.40538e+00 lineto +6.907162e+01 3.306697e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.974009e+01 3.332448e+00 moveto +6.907162e+01 3.306697e+00 lineto +6.958222e+01 3.40538e+00 lineto +7.033452e+01 3.447333e+00 lineto +6.974009e+01 3.332448e+00 lineto +closepath +gsave +5.584334e-01 5.584334e-01 6.980417e-01 setrgbcolor +fill +grestore +newpath +6.974009e+01 3.332448e+00 moveto +6.907162e+01 3.306697e+00 lineto +6.958222e+01 3.40538e+00 lineto +7.033452e+01 3.447333e+00 lineto +6.974009e+01 3.332448e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.040407e+01 3.398598e+00 moveto +6.974009e+01 3.332448e+00 lineto +7.033452e+01 3.447333e+00 lineto +7.108176e+01 3.529576e+00 lineto +7.040407e+01 3.398598e+00 lineto +closepath +gsave +5.508541e-01 5.508541e-01 6.885676e-01 setrgbcolor +fill +grestore +newpath +7.040407e+01 3.398598e+00 moveto +6.974009e+01 3.332448e+00 lineto +7.033452e+01 3.447333e+00 lineto +7.108176e+01 3.529576e+00 lineto +7.040407e+01 3.398598e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.106293e+01 3.505083e+00 moveto +7.040407e+01 3.398598e+00 lineto +7.108176e+01 3.529576e+00 lineto +7.182325e+01 3.65203e+00 lineto +7.106293e+01 3.505083e+00 lineto +closepath +gsave +5.433678e-01 5.433678e-01 6.792097e-01 setrgbcolor +fill +grestore +newpath +7.106293e+01 3.505083e+00 moveto +7.040407e+01 3.398598e+00 lineto +7.108176e+01 3.529576e+00 lineto +7.182325e+01 3.65203e+00 lineto +7.106293e+01 3.505083e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.577002e+01 3.800007e+00 moveto +6.500249e+01 3.999287e+00 lineto +6.500276e+01 3.999346e+00 lineto +6.585108e+01 3.817946e+00 lineto +6.577002e+01 3.800007e+00 lineto +closepath +gsave +6.05025e-01 6.05025e-01 7.562813e-01 setrgbcolor +fill +grestore +newpath +6.577002e+01 3.800007e+00 moveto +6.500249e+01 3.999287e+00 lineto +6.500276e+01 3.999346e+00 lineto +6.585108e+01 3.817946e+00 lineto +6.577002e+01 3.800007e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.653682e+01 3.640681e+00 moveto +6.577002e+01 3.800007e+00 lineto +6.585108e+01 3.817946e+00 lineto +6.669859e+01 3.676485e+00 lineto +6.653682e+01 3.640681e+00 lineto +closepath +gsave +5.972028e-01 5.972028e-01 7.465035e-01 setrgbcolor +fill +grestore +newpath +6.653682e+01 3.640681e+00 moveto +6.577002e+01 3.800007e+00 lineto +6.585108e+01 3.817946e+00 lineto +6.669859e+01 3.676485e+00 lineto +6.653682e+01 3.640681e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.730216e+01 3.521462e+00 moveto +6.653682e+01 3.640681e+00 lineto +6.669859e+01 3.676485e+00 lineto +6.75445e+01 3.575097e+00 lineto +6.730216e+01 3.521462e+00 lineto +closepath +gsave +5.89383e-01 5.89383e-01 7.367288e-01 setrgbcolor +fill +grestore +newpath +6.730216e+01 3.521462e+00 moveto +6.653682e+01 3.640681e+00 lineto +6.669859e+01 3.676485e+00 lineto +6.75445e+01 3.575097e+00 lineto +6.730216e+01 3.521462e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.806532e+01 3.442462e+00 moveto +6.730216e+01 3.521462e+00 lineto +6.75445e+01 3.575097e+00 lineto +6.838799e+01 3.513877e+00 lineto +6.806532e+01 3.442462e+00 lineto +closepath +gsave +5.815809e-01 5.815809e-01 7.269762e-01 setrgbcolor +fill +grestore +newpath +6.806532e+01 3.442462e+00 moveto +6.730216e+01 3.521462e+00 lineto +6.75445e+01 3.575097e+00 lineto +6.838799e+01 3.513877e+00 lineto +6.806532e+01 3.442462e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.882558e+01 3.403756e+00 moveto +6.806532e+01 3.442462e+00 lineto +6.838799e+01 3.513877e+00 lineto +6.922828e+01 3.492883e+00 lineto +6.882558e+01 3.403756e+00 lineto +closepath +gsave +5.738119e-01 5.738119e-01 7.172648e-01 setrgbcolor +fill +grestore +newpath +6.882558e+01 3.403756e+00 moveto +6.806532e+01 3.442462e+00 lineto +6.838799e+01 3.513877e+00 lineto +6.922828e+01 3.492883e+00 lineto +6.882558e+01 3.403756e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.958222e+01 3.40538e+00 moveto +6.882558e+01 3.403756e+00 lineto +6.922828e+01 3.492883e+00 lineto +7.006457e+01 3.512135e+00 lineto +6.958222e+01 3.40538e+00 lineto +closepath +gsave +5.66091e-01 5.66091e-01 7.076137e-01 setrgbcolor +fill +grestore +newpath +6.958222e+01 3.40538e+00 moveto +6.882558e+01 3.403756e+00 lineto +6.922828e+01 3.492883e+00 lineto +7.006457e+01 3.512135e+00 lineto +6.958222e+01 3.40538e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.033452e+01 3.447333e+00 moveto +6.958222e+01 3.40538e+00 lineto +7.006457e+01 3.512135e+00 lineto +7.089606e+01 3.571615e+00 lineto +7.033452e+01 3.447333e+00 lineto +closepath +gsave +5.584334e-01 5.584334e-01 6.980417e-01 setrgbcolor +fill +grestore +newpath +7.033452e+01 3.447333e+00 moveto +6.958222e+01 3.40538e+00 lineto +7.006457e+01 3.512135e+00 lineto +7.089606e+01 3.571615e+00 lineto +7.033452e+01 3.447333e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.108176e+01 3.529576e+00 moveto +7.033452e+01 3.447333e+00 lineto +7.089606e+01 3.571615e+00 lineto +7.172196e+01 3.671267e+00 lineto +7.108176e+01 3.529576e+00 lineto +closepath +gsave +5.508541e-01 5.508541e-01 6.885676e-01 setrgbcolor +fill +grestore +newpath +7.108176e+01 3.529576e+00 moveto +7.033452e+01 3.447333e+00 lineto +7.089606e+01 3.571615e+00 lineto +7.172196e+01 3.671267e+00 lineto +7.108176e+01 3.529576e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.182325e+01 3.65203e+00 moveto +7.108176e+01 3.529576e+00 lineto +7.172196e+01 3.671267e+00 lineto +7.254151e+01 3.810995e+00 lineto +7.182325e+01 3.65203e+00 lineto +closepath +gsave +5.433678e-01 5.433678e-01 6.792097e-01 setrgbcolor +fill +grestore +newpath +7.182325e+01 3.65203e+00 moveto +7.108176e+01 3.529576e+00 lineto +7.172196e+01 3.671267e+00 lineto +7.254151e+01 3.810995e+00 lineto +7.182325e+01 3.65203e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.255828e+01 3.814579e+00 moveto +7.182325e+01 3.65203e+00 lineto +7.254151e+01 3.810995e+00 lineto +7.335391e+01 3.990669e+00 lineto +7.255828e+01 3.814579e+00 lineto +closepath +gsave +5.359888e-01 5.359888e-01 6.69986e-01 setrgbcolor +fill +grestore +newpath +7.255828e+01 3.814579e+00 moveto +7.182325e+01 3.65203e+00 lineto +7.254151e+01 3.810995e+00 lineto +7.335391e+01 3.990669e+00 lineto +7.255828e+01 3.814579e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.585108e+01 3.817946e+00 moveto +6.500276e+01 3.999346e+00 lineto +6.5003e+01 3.999408e+00 lineto +6.592689e+01 3.837132e+00 lineto +6.585108e+01 3.817946e+00 lineto +closepath +gsave +6.050492e-01 6.050492e-01 7.563115e-01 setrgbcolor +fill +grestore +newpath +6.585108e+01 3.817946e+00 moveto +6.500276e+01 3.999346e+00 lineto +6.5003e+01 3.999408e+00 lineto +6.592689e+01 3.837132e+00 lineto +6.585108e+01 3.817946e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.669859e+01 3.676485e+00 moveto +6.585108e+01 3.817946e+00 lineto +6.592689e+01 3.837132e+00 lineto +6.684989e+01 3.714776e+00 lineto +6.669859e+01 3.676485e+00 lineto +closepath +gsave +5.972744e-01 5.972744e-01 7.46593e-01 setrgbcolor +fill +grestore +newpath +6.669859e+01 3.676485e+00 moveto +6.585108e+01 3.817946e+00 lineto +6.592689e+01 3.837132e+00 lineto +6.684989e+01 3.714776e+00 lineto +6.669859e+01 3.676485e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.75445e+01 3.575097e+00 moveto +6.669859e+01 3.676485e+00 lineto +6.684989e+01 3.714776e+00 lineto +6.777115e+01 3.632456e+00 lineto +6.75445e+01 3.575097e+00 lineto +closepath +gsave +5.895013e-01 5.895013e-01 7.368766e-01 setrgbcolor +fill +grestore +newpath +6.75445e+01 3.575097e+00 moveto +6.669859e+01 3.676485e+00 lineto +6.684989e+01 3.714776e+00 lineto +6.777115e+01 3.632456e+00 lineto +6.75445e+01 3.575097e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.838799e+01 3.513877e+00 moveto +6.75445e+01 3.575097e+00 lineto +6.777115e+01 3.632456e+00 lineto +6.868978e+01 3.590251e+00 lineto +6.838799e+01 3.513877e+00 lineto +closepath +gsave +5.817448e-01 5.817448e-01 7.27181e-01 setrgbcolor +fill +grestore +newpath +6.838799e+01 3.513877e+00 moveto +6.75445e+01 3.575097e+00 lineto +6.777115e+01 3.632456e+00 lineto +6.868978e+01 3.590251e+00 lineto +6.838799e+01 3.513877e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.922828e+01 3.492883e+00 moveto +6.838799e+01 3.513877e+00 lineto +6.868978e+01 3.590251e+00 lineto +6.960491e+01 3.588199e+00 lineto +6.922828e+01 3.492883e+00 lineto +closepath +gsave +5.740202e-01 5.740202e-01 7.175252e-01 setrgbcolor +fill +grestore +newpath +6.922828e+01 3.492883e+00 moveto +6.838799e+01 3.513877e+00 lineto +6.868978e+01 3.590251e+00 lineto +6.960491e+01 3.588199e+00 lineto +6.922828e+01 3.492883e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.006457e+01 3.512135e+00 moveto +6.922828e+01 3.492883e+00 lineto +6.960491e+01 3.588199e+00 lineto +7.051569e+01 3.626303e+00 lineto +7.006457e+01 3.512135e+00 lineto +closepath +gsave +5.663423e-01 5.663423e-01 7.079279e-01 setrgbcolor +fill +grestore +newpath +7.006457e+01 3.512135e+00 moveto +6.922828e+01 3.492883e+00 lineto +6.960491e+01 3.588199e+00 lineto +7.051569e+01 3.626303e+00 lineto +7.006457e+01 3.512135e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.089606e+01 3.571615e+00 moveto +7.006457e+01 3.512135e+00 lineto +7.051569e+01 3.626303e+00 lineto +7.142125e+01 3.704527e+00 lineto +7.089606e+01 3.571615e+00 lineto +closepath +gsave +5.587264e-01 5.587264e-01 6.984079e-01 setrgbcolor +fill +grestore +newpath +7.089606e+01 3.571615e+00 moveto +7.006457e+01 3.512135e+00 lineto +7.051569e+01 3.626303e+00 lineto +7.142125e+01 3.704527e+00 lineto +7.089606e+01 3.571615e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.172196e+01 3.671267e+00 moveto +7.089606e+01 3.571615e+00 lineto +7.142125e+01 3.704527e+00 lineto +7.232072e+01 3.822797e+00 lineto +7.172196e+01 3.671267e+00 lineto +closepath +gsave +5.51187e-01 5.51187e-01 6.889837e-01 setrgbcolor +fill +grestore +newpath +7.172196e+01 3.671267e+00 moveto +7.089606e+01 3.571615e+00 lineto +7.142125e+01 3.704527e+00 lineto +7.232072e+01 3.822797e+00 lineto +7.172196e+01 3.671267e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.254151e+01 3.810995e+00 moveto +7.172196e+01 3.671267e+00 lineto +7.232072e+01 3.822797e+00 lineto +7.321327e+01 3.981e+00 lineto +7.254151e+01 3.810995e+00 lineto +closepath +gsave +5.437388e-01 5.437388e-01 6.796734e-01 setrgbcolor +fill +grestore +newpath +7.254151e+01 3.810995e+00 moveto +7.172196e+01 3.671267e+00 lineto +7.232072e+01 3.822797e+00 lineto +7.321327e+01 3.981e+00 lineto +7.254151e+01 3.810995e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.335391e+01 3.990669e+00 moveto +7.254151e+01 3.810995e+00 lineto +7.321327e+01 3.981e+00 lineto +7.409803e+01 4.178988e+00 lineto +7.335391e+01 3.990669e+00 lineto +closepath +gsave +5.363959e-01 5.363959e-01 6.704949e-01 setrgbcolor +fill +grestore +newpath +7.335391e+01 3.990669e+00 moveto +7.254151e+01 3.810995e+00 lineto +7.321327e+01 3.981e+00 lineto +7.409803e+01 4.178988e+00 lineto +7.335391e+01 3.990669e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.592689e+01 3.837132e+00 moveto +6.5003e+01 3.999408e+00 lineto +6.500323e+01 3.999474e+00 lineto +6.599698e+01 3.857445e+00 lineto +6.592689e+01 3.837132e+00 lineto +closepath +gsave +6.050973e-01 6.050973e-01 7.563717e-01 setrgbcolor +fill +grestore +newpath +6.592689e+01 3.837132e+00 moveto +6.5003e+01 3.999408e+00 lineto +6.500323e+01 3.999474e+00 lineto +6.599698e+01 3.857445e+00 lineto +6.592689e+01 3.837132e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.684989e+01 3.714776e+00 moveto +6.592689e+01 3.837132e+00 lineto +6.599698e+01 3.857445e+00 lineto +6.698979e+01 3.755317e+00 lineto +6.684989e+01 3.714776e+00 lineto +closepath +gsave +5.974172e-01 5.974172e-01 7.467715e-01 setrgbcolor +fill +grestore +newpath +6.684989e+01 3.714776e+00 moveto +6.592689e+01 3.837132e+00 lineto +6.599698e+01 3.857445e+00 lineto +6.698979e+01 3.755317e+00 lineto +6.684989e+01 3.714776e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.777115e+01 3.632456e+00 moveto +6.684989e+01 3.714776e+00 lineto +6.698979e+01 3.755317e+00 lineto +6.798071e+01 3.693187e+00 lineto +6.777115e+01 3.632456e+00 lineto +closepath +gsave +5.897371e-01 5.897371e-01 7.371713e-01 setrgbcolor +fill +grestore +newpath +6.777115e+01 3.632456e+00 moveto +6.684989e+01 3.714776e+00 lineto +6.698979e+01 3.755317e+00 lineto +6.798071e+01 3.693187e+00 lineto +6.777115e+01 3.632456e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.868978e+01 3.590251e+00 moveto +6.777115e+01 3.632456e+00 lineto +6.798071e+01 3.693187e+00 lineto +6.896881e+01 3.671113e+00 lineto +6.868978e+01 3.590251e+00 lineto +closepath +gsave +5.820716e-01 5.820716e-01 7.275895e-01 setrgbcolor +fill +grestore +newpath +6.868978e+01 3.590251e+00 moveto +6.777115e+01 3.632456e+00 lineto +6.798071e+01 3.693187e+00 lineto +6.896881e+01 3.671113e+00 lineto +6.868978e+01 3.590251e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.960491e+01 3.588199e+00 moveto +6.868978e+01 3.590251e+00 lineto +6.896881e+01 3.671113e+00 lineto +6.995316e+01 3.689117e+00 lineto +6.960491e+01 3.588199e+00 lineto +closepath +gsave +5.744356e-01 5.744356e-01 7.180445e-01 setrgbcolor +fill +grestore +newpath +6.960491e+01 3.588199e+00 moveto +6.868978e+01 3.590251e+00 lineto +6.896881e+01 3.671113e+00 lineto +6.995316e+01 3.689117e+00 lineto +6.960491e+01 3.588199e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.051569e+01 3.626303e+00 moveto +6.960491e+01 3.588199e+00 lineto +6.995316e+01 3.689117e+00 lineto +7.093281e+01 3.747181e+00 lineto +7.051569e+01 3.626303e+00 lineto +closepath +gsave +5.668438e-01 5.668438e-01 7.085548e-01 setrgbcolor +fill +grestore +newpath +7.051569e+01 3.626303e+00 moveto +6.960491e+01 3.588199e+00 lineto +6.995316e+01 3.689117e+00 lineto +7.093281e+01 3.747181e+00 lineto +7.051569e+01 3.626303e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.142125e+01 3.704527e+00 moveto +7.051569e+01 3.626303e+00 lineto +7.093281e+01 3.747181e+00 lineto +7.190685e+01 3.845251e+00 lineto +7.142125e+01 3.704527e+00 lineto +closepath +gsave +5.593109e-01 5.593109e-01 6.991386e-01 setrgbcolor +fill +grestore +newpath +7.142125e+01 3.704527e+00 moveto +7.051569e+01 3.626303e+00 lineto +7.093281e+01 3.747181e+00 lineto +7.190685e+01 3.845251e+00 lineto +7.142125e+01 3.704527e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.232072e+01 3.822797e+00 moveto +7.142125e+01 3.704527e+00 lineto +7.190685e+01 3.845251e+00 lineto +7.287434e+01 3.983233e+00 lineto +7.232072e+01 3.822797e+00 lineto +closepath +gsave +5.518513e-01 5.518513e-01 6.898141e-01 setrgbcolor +fill +grestore +newpath +7.232072e+01 3.822797e+00 moveto +7.142125e+01 3.704527e+00 lineto +7.190685e+01 3.845251e+00 lineto +7.287434e+01 3.983233e+00 lineto +7.232072e+01 3.822797e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.321327e+01 3.981e+00 moveto +7.232072e+01 3.822797e+00 lineto +7.287434e+01 3.983233e+00 lineto +7.383439e+01 4.160997e+00 lineto +7.321327e+01 3.981e+00 lineto +closepath +gsave +5.444792e-01 5.444792e-01 6.80599e-01 setrgbcolor +fill +grestore +newpath +7.321327e+01 3.981e+00 moveto +7.232072e+01 3.822797e+00 lineto +7.287434e+01 3.983233e+00 lineto +7.383439e+01 4.160997e+00 lineto +7.321327e+01 3.981e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.409803e+01 4.178988e+00 moveto +7.321327e+01 3.981e+00 lineto +7.383439e+01 4.160997e+00 lineto +7.478606e+01 4.378374e+00 lineto +7.409803e+01 4.178988e+00 lineto +closepath +gsave +5.372087e-01 5.372087e-01 6.715109e-01 setrgbcolor +fill +grestore +newpath +7.409803e+01 4.178988e+00 moveto +7.321327e+01 3.981e+00 lineto +7.383439e+01 4.160997e+00 lineto +7.478606e+01 4.378374e+00 lineto +7.409803e+01 4.178988e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.497419e+01 4.416572e+00 moveto +7.409803e+01 4.178988e+00 lineto +7.478606e+01 4.378374e+00 lineto +7.572847e+01 4.635159e+00 lineto +7.497419e+01 4.416572e+00 lineto +closepath +gsave +5.300533e-01 5.300533e-01 6.625666e-01 setrgbcolor +fill +grestore +newpath +7.497419e+01 4.416572e+00 moveto +7.409803e+01 4.178988e+00 lineto +7.478606e+01 4.378374e+00 lineto +7.572847e+01 4.635159e+00 lineto +7.497419e+01 4.416572e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.599698e+01 3.857445e+00 moveto +6.500323e+01 3.999474e+00 lineto +6.500344e+01 3.999543e+00 lineto +6.606093e+01 3.87876e+00 lineto +6.599698e+01 3.857445e+00 lineto +closepath +gsave +6.051692e-01 6.051692e-01 7.564615e-01 setrgbcolor +fill +grestore +newpath +6.599698e+01 3.857445e+00 moveto +6.500323e+01 3.999474e+00 lineto +6.500344e+01 3.999543e+00 lineto +6.606093e+01 3.87876e+00 lineto +6.599698e+01 3.857445e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.698979e+01 3.755317e+00 moveto +6.599698e+01 3.857445e+00 lineto +6.606093e+01 3.87876e+00 lineto +6.711742e+01 3.797858e+00 lineto +6.698979e+01 3.755317e+00 lineto +closepath +gsave +5.976304e-01 5.976304e-01 7.47038e-01 setrgbcolor +fill +grestore +newpath +6.698979e+01 3.755317e+00 moveto +6.599698e+01 3.857445e+00 lineto +6.606093e+01 3.87876e+00 lineto +6.711742e+01 3.797858e+00 lineto +6.698979e+01 3.755317e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.798071e+01 3.693187e+00 moveto +6.698979e+01 3.755317e+00 lineto +6.711742e+01 3.797858e+00 lineto +6.81719e+01 3.756914e+00 lineto +6.798071e+01 3.693187e+00 lineto +closepath +gsave +5.900891e-01 5.900891e-01 7.376114e-01 setrgbcolor +fill +grestore +newpath +6.798071e+01 3.693187e+00 moveto +6.698979e+01 3.755317e+00 lineto +6.711742e+01 3.797858e+00 lineto +6.81719e+01 3.756914e+00 lineto +6.798071e+01 3.693187e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.896881e+01 3.671113e+00 moveto +6.798071e+01 3.693187e+00 lineto +6.81719e+01 3.756914e+00 lineto +6.922338e+01 3.755966e+00 lineto +6.896881e+01 3.671113e+00 lineto +closepath +gsave +5.825596e-01 5.825596e-01 7.281995e-01 setrgbcolor +fill +grestore +newpath +6.896881e+01 3.671113e+00 moveto +6.798071e+01 3.693187e+00 lineto +6.81719e+01 3.756914e+00 lineto +6.922338e+01 3.755966e+00 lineto +6.896881e+01 3.671113e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.995316e+01 3.689117e+00 moveto +6.896881e+01 3.671113e+00 lineto +6.922338e+01 3.755966e+00 lineto +7.027086e+01 3.795015e+00 lineto +6.995316e+01 3.689117e+00 lineto +closepath +gsave +5.750561e-01 5.750561e-01 7.188201e-01 setrgbcolor +fill +grestore +newpath +6.995316e+01 3.689117e+00 moveto +6.896881e+01 3.671113e+00 lineto +6.922338e+01 3.755966e+00 lineto +7.027086e+01 3.795015e+00 lineto +6.995316e+01 3.689117e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.093281e+01 3.747181e+00 moveto +6.995316e+01 3.689117e+00 lineto +7.027086e+01 3.795015e+00 lineto +7.131335e+01 3.874023e+00 lineto +7.093281e+01 3.747181e+00 lineto +closepath +gsave +5.675929e-01 5.675929e-01 7.094912e-01 setrgbcolor +fill +grestore +newpath +7.093281e+01 3.747181e+00 moveto +6.995316e+01 3.689117e+00 lineto +7.027086e+01 3.795015e+00 lineto +7.131335e+01 3.874023e+00 lineto +7.093281e+01 3.747181e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.190685e+01 3.845251e+00 moveto +7.093281e+01 3.747181e+00 lineto +7.131335e+01 3.874023e+00 lineto +7.234986e+01 3.992918e+00 lineto +7.190685e+01 3.845251e+00 lineto +closepath +gsave +5.601842e-01 5.601842e-01 7.002303e-01 setrgbcolor +fill +grestore +newpath +7.190685e+01 3.845251e+00 moveto +7.093281e+01 3.747181e+00 lineto +7.131335e+01 3.874023e+00 lineto +7.234986e+01 3.992918e+00 lineto +7.190685e+01 3.845251e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.287434e+01 3.983233e+00 moveto +7.190685e+01 3.845251e+00 lineto +7.234986e+01 3.992918e+00 lineto +7.337942e+01 4.151585e+00 lineto +7.287434e+01 3.983233e+00 lineto +closepath +gsave +5.528441e-01 5.528441e-01 6.910551e-01 setrgbcolor +fill +grestore +newpath +7.287434e+01 3.983233e+00 moveto +7.190685e+01 3.845251e+00 lineto +7.234986e+01 3.992918e+00 lineto +7.337942e+01 4.151585e+00 lineto +7.287434e+01 3.983233e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.383439e+01 4.160997e+00 moveto +7.287434e+01 3.983233e+00 lineto +7.337942e+01 4.151585e+00 lineto +7.440104e+01 4.349874e+00 lineto +7.383439e+01 4.160997e+00 lineto +closepath +gsave +5.455863e-01 5.455863e-01 6.819828e-01 setrgbcolor +fill +grestore +newpath +7.383439e+01 4.160997e+00 moveto +7.287434e+01 3.983233e+00 lineto +7.337942e+01 4.151585e+00 lineto +7.440104e+01 4.349874e+00 lineto +7.383439e+01 4.160997e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.478606e+01 4.378374e+00 moveto +7.383439e+01 4.160997e+00 lineto +7.440104e+01 4.349874e+00 lineto +7.541376e+01 4.587598e+00 lineto +7.478606e+01 4.378374e+00 lineto +closepath +gsave +5.384243e-01 5.384243e-01 6.730304e-01 setrgbcolor +fill +grestore +newpath +7.478606e+01 4.378374e+00 moveto +7.383439e+01 4.160997e+00 lineto +7.440104e+01 4.349874e+00 lineto +7.541376e+01 4.587598e+00 lineto +7.478606e+01 4.378374e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.572847e+01 4.635159e+00 moveto +7.478606e+01 4.378374e+00 lineto +7.541376e+01 4.587598e+00 lineto +7.641662e+01 4.864532e+00 lineto +7.572847e+01 4.635159e+00 lineto +closepath +gsave +5.313714e-01 5.313714e-01 6.642142e-01 setrgbcolor +fill +grestore +newpath +7.572847e+01 4.635159e+00 moveto +7.478606e+01 4.378374e+00 lineto +7.541376e+01 4.587598e+00 lineto +7.641662e+01 4.864532e+00 lineto +7.572847e+01 4.635159e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.666073e+01 4.931109e+00 moveto +7.572847e+01 4.635159e+00 lineto +7.641662e+01 4.864532e+00 lineto +7.740867e+01 5.180413e+00 lineto +7.666073e+01 4.931109e+00 lineto +closepath +gsave +5.244403e-01 5.244403e-01 6.555503e-01 setrgbcolor +fill +grestore +newpath +7.666073e+01 4.931109e+00 moveto +7.572847e+01 4.635159e+00 lineto +7.641662e+01 4.864532e+00 lineto +7.740867e+01 5.180413e+00 lineto +7.666073e+01 4.931109e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.606093e+01 3.87876e+00 moveto +6.500344e+01 3.999543e+00 lineto +6.500362e+01 3.999614e+00 lineto +6.611834e+01 3.900946e+00 lineto +6.606093e+01 3.87876e+00 lineto +closepath +gsave +6.052644e-01 6.052644e-01 7.565805e-01 setrgbcolor +fill +grestore +newpath +6.606093e+01 3.87876e+00 moveto +6.500344e+01 3.999543e+00 lineto +6.500362e+01 3.999614e+00 lineto +6.611834e+01 3.900946e+00 lineto +6.606093e+01 3.87876e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.711742e+01 3.797858e+00 moveto +6.606093e+01 3.87876e+00 lineto +6.611834e+01 3.900946e+00 lineto +6.723199e+01 3.842138e+00 lineto +6.711742e+01 3.797858e+00 lineto +closepath +gsave +5.979126e-01 5.979126e-01 7.473908e-01 setrgbcolor +fill +grestore +newpath +6.711742e+01 3.797858e+00 moveto +6.606093e+01 3.87876e+00 lineto +6.611834e+01 3.900946e+00 lineto +6.723199e+01 3.842138e+00 lineto +6.711742e+01 3.797858e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.81719e+01 3.756914e+00 moveto +6.711742e+01 3.797858e+00 lineto +6.723199e+01 3.842138e+00 lineto +6.834353e+01 3.823245e+00 lineto +6.81719e+01 3.756914e+00 lineto +closepath +gsave +5.905553e-01 5.905553e-01 7.381941e-01 setrgbcolor +fill +grestore +newpath +6.81719e+01 3.756914e+00 moveto +6.711742e+01 3.797858e+00 lineto +6.723199e+01 3.842138e+00 lineto +6.834353e+01 3.823245e+00 lineto +6.81719e+01 3.756914e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.922338e+01 3.755966e+00 moveto +6.81719e+01 3.756914e+00 lineto +6.834353e+01 3.823245e+00 lineto +6.945191e+01 3.844285e+00 lineto +6.922338e+01 3.755966e+00 lineto +closepath +gsave +5.832059e-01 5.832059e-01 7.290074e-01 setrgbcolor +fill +grestore +newpath +6.922338e+01 3.755966e+00 moveto +6.81719e+01 3.756914e+00 lineto +6.834353e+01 3.823245e+00 lineto +6.945191e+01 3.844285e+00 lineto +6.922338e+01 3.755966e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.027086e+01 3.795015e+00 moveto +6.922338e+01 3.755966e+00 lineto +6.945191e+01 3.844285e+00 lineto +7.055607e+01 3.905239e+00 lineto +7.027086e+01 3.795015e+00 lineto +closepath +gsave +5.758782e-01 5.758782e-01 7.198477e-01 setrgbcolor +fill +grestore +newpath +7.027086e+01 3.795015e+00 moveto +6.922338e+01 3.755966e+00 lineto +6.945191e+01 3.844285e+00 lineto +7.055607e+01 3.905239e+00 lineto +7.027086e+01 3.795015e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.131335e+01 3.874023e+00 moveto +7.027086e+01 3.795015e+00 lineto +7.055607e+01 3.905239e+00 lineto +7.165497e+01 4.006048e+00 lineto +7.131335e+01 3.874023e+00 lineto +closepath +gsave +5.685858e-01 5.685858e-01 7.107322e-01 setrgbcolor +fill +grestore +newpath +7.131335e+01 3.874023e+00 moveto +7.027086e+01 3.795015e+00 lineto +7.055607e+01 3.905239e+00 lineto +7.165497e+01 4.006048e+00 lineto +7.131335e+01 3.874023e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.234986e+01 3.992918e+00 moveto +7.131335e+01 3.874023e+00 lineto +7.165497e+01 4.006048e+00 lineto +7.274757e+01 4.146618e+00 lineto +7.234986e+01 3.992918e+00 lineto +closepath +gsave +5.613422e-01 5.613422e-01 7.016778e-01 setrgbcolor +fill +grestore +newpath +7.234986e+01 3.992918e+00 moveto +7.131335e+01 3.874023e+00 lineto +7.165497e+01 4.006048e+00 lineto +7.274757e+01 4.146618e+00 lineto +7.234986e+01 3.992918e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.337942e+01 4.151585e+00 moveto +7.234986e+01 3.992918e+00 lineto +7.274757e+01 4.146618e+00 lineto +7.383283e+01 4.326815e+00 lineto +7.337942e+01 4.151585e+00 lineto +closepath +gsave +5.54161e-01 5.54161e-01 6.927012e-01 setrgbcolor +fill +grestore +newpath +7.337942e+01 4.151585e+00 moveto +7.234986e+01 3.992918e+00 lineto +7.274757e+01 4.146618e+00 lineto +7.383283e+01 4.326815e+00 lineto +7.337942e+01 4.151585e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.440104e+01 4.349874e+00 moveto +7.337942e+01 4.151585e+00 lineto +7.383283e+01 4.326815e+00 lineto +7.490973e+01 4.546468e+00 lineto +7.440104e+01 4.349874e+00 lineto +closepath +gsave +5.470553e-01 5.470553e-01 6.838191e-01 setrgbcolor +fill +grestore +newpath +7.440104e+01 4.349874e+00 moveto +7.337942e+01 4.151585e+00 lineto +7.383283e+01 4.326815e+00 lineto +7.490973e+01 4.546468e+00 lineto +7.440104e+01 4.349874e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.541376e+01 4.587598e+00 moveto +7.440104e+01 4.349874e+00 lineto +7.490973e+01 4.546468e+00 lineto +7.597725e+01 4.80537e+00 lineto +7.541376e+01 4.587598e+00 lineto +closepath +gsave +5.400382e-01 5.400382e-01 6.750478e-01 setrgbcolor +fill +grestore +newpath +7.541376e+01 4.587598e+00 moveto +7.440104e+01 4.349874e+00 lineto +7.490973e+01 4.546468e+00 lineto +7.597725e+01 4.80537e+00 lineto +7.541376e+01 4.587598e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.641662e+01 4.864532e+00 moveto +7.541376e+01 4.587598e+00 lineto +7.597725e+01 4.80537e+00 lineto +7.703437e+01 5.103276e+00 lineto +7.641662e+01 4.864532e+00 lineto +closepath +gsave +5.331223e-01 5.331223e-01 6.664029e-01 setrgbcolor +fill +grestore +newpath +7.641662e+01 4.864532e+00 moveto +7.541376e+01 4.587598e+00 lineto +7.597725e+01 4.80537e+00 lineto +7.703437e+01 5.103276e+00 lineto +7.641662e+01 4.864532e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.740867e+01 5.180413e+00 moveto +7.641662e+01 4.864532e+00 lineto +7.703437e+01 5.103276e+00 lineto +7.80801e+01 5.439903e+00 lineto +7.740867e+01 5.180413e+00 lineto +closepath +gsave +5.2632e-01 5.2632e-01 6.579e-01 setrgbcolor +fill +grestore +newpath +7.740867e+01 5.180413e+00 moveto +7.641662e+01 4.864532e+00 lineto +7.703437e+01 5.103276e+00 lineto +7.80801e+01 5.439903e+00 lineto +7.740867e+01 5.180413e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.838897e+01 5.534943e+00 moveto +7.740867e+01 5.180413e+00 lineto +7.80801e+01 5.439903e+00 lineto +7.911345e+01 5.814933e+00 lineto +7.838897e+01 5.534943e+00 lineto +closepath +gsave +5.19643e-01 5.19643e-01 6.495538e-01 setrgbcolor +fill +grestore +newpath +7.838897e+01 5.534943e+00 moveto +7.740867e+01 5.180413e+00 lineto +7.80801e+01 5.439903e+00 lineto +7.911345e+01 5.814933e+00 lineto +7.838897e+01 5.534943e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.611834e+01 3.900946e+00 moveto +6.500362e+01 3.999614e+00 lineto +6.500379e+01 3.999689e+00 lineto +6.616885e+01 3.923866e+00 lineto +6.611834e+01 3.900946e+00 lineto +closepath +gsave +6.053822e-01 6.053822e-01 7.567278e-01 setrgbcolor +fill +grestore +newpath +6.611834e+01 3.900946e+00 moveto +6.500362e+01 3.999614e+00 lineto +6.500379e+01 3.999689e+00 lineto +6.616885e+01 3.923866e+00 lineto +6.611834e+01 3.900946e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.723199e+01 3.842138e+00 moveto +6.611834e+01 3.900946e+00 lineto +6.616885e+01 3.923866e+00 lineto +6.73328e+01 3.887882e+00 lineto +6.723199e+01 3.842138e+00 lineto +closepath +gsave +5.982622e-01 5.982622e-01 7.478278e-01 setrgbcolor +fill +grestore +newpath +6.723199e+01 3.842138e+00 moveto +6.611834e+01 3.900946e+00 lineto +6.616885e+01 3.923866e+00 lineto +6.73328e+01 3.887882e+00 lineto +6.723199e+01 3.842138e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.834353e+01 3.823245e+00 moveto +6.723199e+01 3.842138e+00 lineto +6.73328e+01 3.887882e+00 lineto +6.849455e+01 3.89177e+00 lineto +6.834353e+01 3.823245e+00 lineto +closepath +gsave +5.911329e-01 5.911329e-01 7.389161e-01 setrgbcolor +fill +grestore +newpath +6.834353e+01 3.823245e+00 moveto +6.723199e+01 3.842138e+00 lineto +6.73328e+01 3.887882e+00 lineto +6.849455e+01 3.89177e+00 lineto +6.834353e+01 3.823245e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.945191e+01 3.844285e+00 moveto +6.834353e+01 3.823245e+00 lineto +6.849455e+01 3.89177e+00 lineto +6.965299e+01 3.935526e+00 lineto +6.945191e+01 3.844285e+00 lineto +closepath +gsave +5.84007e-01 5.84007e-01 7.300088e-01 setrgbcolor +fill +grestore +newpath +6.945191e+01 3.844285e+00 moveto +6.834353e+01 3.823245e+00 lineto +6.849455e+01 3.89177e+00 lineto +6.965299e+01 3.935526e+00 lineto +6.945191e+01 3.844285e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.055607e+01 3.905239e+00 moveto +6.945191e+01 3.844285e+00 lineto +6.965299e+01 3.935526e+00 lineto +7.080702e+01 4.01911e+00 lineto +7.055607e+01 3.905239e+00 lineto +closepath +gsave +5.768975e-01 5.768975e-01 7.211219e-01 setrgbcolor +fill +grestore +newpath +7.055607e+01 3.905239e+00 moveto +6.945191e+01 3.844285e+00 lineto +6.965299e+01 3.935526e+00 lineto +7.080702e+01 4.01911e+00 lineto +7.055607e+01 3.905239e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.165497e+01 4.006048e+00 moveto +7.055607e+01 3.905239e+00 lineto +7.080702e+01 4.01911e+00 lineto +7.195556e+01 4.142441e+00 lineto +7.165497e+01 4.006048e+00 lineto +closepath +gsave +5.698173e-01 5.698173e-01 7.122716e-01 setrgbcolor +fill +grestore +newpath +7.165497e+01 4.006048e+00 moveto +7.055607e+01 3.905239e+00 lineto +7.080702e+01 4.01911e+00 lineto +7.195556e+01 4.142441e+00 lineto +7.165497e+01 4.006048e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.274757e+01 4.146618e+00 moveto +7.165497e+01 4.006048e+00 lineto +7.195556e+01 4.142441e+00 lineto +7.309751e+01 4.305404e+00 lineto +7.274757e+01 4.146618e+00 lineto +closepath +gsave +5.627792e-01 5.627792e-01 7.03474e-01 setrgbcolor +fill +grestore +newpath +7.274757e+01 4.146618e+00 moveto +7.165497e+01 4.006048e+00 lineto +7.195556e+01 4.142441e+00 lineto +7.309751e+01 4.305404e+00 lineto +7.274757e+01 4.146618e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.383283e+01 4.326815e+00 moveto +7.274757e+01 4.146618e+00 lineto +7.309751e+01 4.305404e+00 lineto +7.423179e+01 4.507843e+00 lineto +7.383283e+01 4.326815e+00 lineto +closepath +gsave +5.55796e-01 5.55796e-01 6.94745e-01 setrgbcolor +fill +grestore +newpath +7.383283e+01 4.326815e+00 moveto +7.274757e+01 4.146618e+00 lineto +7.309751e+01 4.305404e+00 lineto +7.423179e+01 4.507843e+00 lineto +7.383283e+01 4.326815e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.490973e+01 4.546468e+00 moveto +7.383283e+01 4.326815e+00 lineto +7.423179e+01 4.507843e+00 lineto +7.535733e+01 4.749567e+00 lineto +7.490973e+01 4.546468e+00 lineto +closepath +gsave +5.488803e-01 5.488803e-01 6.861003e-01 setrgbcolor +fill +grestore +newpath +7.490973e+01 4.546468e+00 moveto +7.383283e+01 4.326815e+00 lineto +7.423179e+01 4.507843e+00 lineto +7.535733e+01 4.749567e+00 lineto +7.490973e+01 4.546468e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.597725e+01 4.80537e+00 moveto +7.490973e+01 4.546468e+00 lineto +7.535733e+01 4.749567e+00 lineto +7.647306e+01 5.030348e+00 lineto +7.597725e+01 4.80537e+00 lineto +closepath +gsave +5.420444e-01 5.420444e-01 6.775555e-01 setrgbcolor +fill +grestore +newpath +7.597725e+01 4.80537e+00 moveto +7.490973e+01 4.546468e+00 lineto +7.535733e+01 4.749567e+00 lineto +7.647306e+01 5.030348e+00 lineto +7.597725e+01 4.80537e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.703437e+01 5.103276e+00 moveto +7.597725e+01 4.80537e+00 lineto +7.647306e+01 5.030348e+00 lineto +7.757794e+01 5.34992e+00 lineto +7.703437e+01 5.103276e+00 lineto +closepath +gsave +5.353004e-01 5.353004e-01 6.691255e-01 setrgbcolor +fill +grestore +newpath +7.703437e+01 5.103276e+00 moveto +7.597725e+01 4.80537e+00 lineto +7.647306e+01 5.030348e+00 lineto +7.757794e+01 5.34992e+00 lineto +7.703437e+01 5.103276e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.80801e+01 5.439903e+00 moveto +7.703437e+01 5.103276e+00 lineto +7.757794e+01 5.34992e+00 lineto +7.86709e+01 5.707979e+00 lineto +7.80801e+01 5.439903e+00 lineto +closepath +gsave +5.2866e-01 5.2866e-01 6.60825e-01 setrgbcolor +fill +grestore +newpath +7.80801e+01 5.439903e+00 moveto +7.703437e+01 5.103276e+00 lineto +7.757794e+01 5.34992e+00 lineto +7.86709e+01 5.707979e+00 lineto +7.80801e+01 5.439903e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.911345e+01 5.814933e+00 moveto +7.80801e+01 5.439903e+00 lineto +7.86709e+01 5.707979e+00 lineto +7.975092e+01 6.104187e+00 lineto +7.911345e+01 5.814933e+00 lineto +closepath +gsave +5.221345e-01 5.221345e-01 6.526681e-01 setrgbcolor +fill +grestore +newpath +7.911345e+01 5.814933e+00 moveto +7.80801e+01 5.439903e+00 lineto +7.86709e+01 5.707979e+00 lineto +7.975092e+01 6.104187e+00 lineto +7.911345e+01 5.814933e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.013343e+01 6.22801e+00 moveto +7.911345e+01 5.814933e+00 lineto +7.975092e+01 6.104187e+00 lineto +8.081697e+01 6.538168e+00 lineto +8.013343e+01 6.22801e+00 lineto +closepath +gsave +5.157348e-01 5.157348e-01 6.446685e-01 setrgbcolor +fill +grestore +newpath +8.013343e+01 6.22801e+00 moveto +7.911345e+01 5.814933e+00 lineto +7.975092e+01 6.104187e+00 lineto +8.081697e+01 6.538168e+00 lineto +8.013343e+01 6.22801e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.113909e+01 6.678744e+00 moveto +8.013343e+01 6.22801e+00 lineto +8.081697e+01 6.538168e+00 lineto +8.186805e+01 7.009513e+00 lineto +8.113909e+01 6.678744e+00 lineto +closepath +gsave +5.094711e-01 5.094711e-01 6.368389e-01 setrgbcolor +fill +grestore +newpath +8.113909e+01 6.678744e+00 moveto +8.013343e+01 6.22801e+00 lineto +8.081697e+01 6.538168e+00 lineto +8.186805e+01 7.009513e+00 lineto +8.113909e+01 6.678744e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.616885e+01 3.923866e+00 moveto +6.500379e+01 3.999689e+00 lineto +6.500393e+01 3.999765e+00 lineto +6.621215e+01 3.947379e+00 lineto +6.616885e+01 3.923866e+00 lineto +closepath +gsave +6.05522e-01 6.05522e-01 7.569025e-01 setrgbcolor +fill +grestore +newpath +6.616885e+01 3.923866e+00 moveto +6.500379e+01 3.999689e+00 lineto +6.500393e+01 3.999765e+00 lineto +6.621215e+01 3.947379e+00 lineto +6.616885e+01 3.923866e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.73328e+01 3.887882e+00 moveto +6.616885e+01 3.923866e+00 lineto +6.621215e+01 3.947379e+00 lineto +6.741923e+01 3.93481e+00 lineto +6.73328e+01 3.887882e+00 lineto +closepath +gsave +5.986772e-01 5.986772e-01 7.483465e-01 setrgbcolor +fill +grestore +newpath +6.73328e+01 3.887882e+00 moveto +6.616885e+01 3.923866e+00 lineto +6.621215e+01 3.947379e+00 lineto +6.741923e+01 3.93481e+00 lineto +6.73328e+01 3.887882e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.849455e+01 3.89177e+00 moveto +6.73328e+01 3.887882e+00 lineto +6.741923e+01 3.93481e+00 lineto +6.862402e+01 3.962068e+00 lineto +6.849455e+01 3.89177e+00 lineto +closepath +gsave +5.918186e-01 5.918186e-01 7.397733e-01 setrgbcolor +fill +grestore +newpath +6.849455e+01 3.89177e+00 moveto +6.73328e+01 3.887882e+00 lineto +6.741923e+01 3.93481e+00 lineto +6.862402e+01 3.962068e+00 lineto +6.849455e+01 3.89177e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.965299e+01 3.935526e+00 moveto +6.849455e+01 3.89177e+00 lineto +6.862402e+01 3.962068e+00 lineto +6.982538e+01 4.029128e+00 lineto +6.965299e+01 3.935526e+00 lineto +closepath +gsave +5.849584e-01 5.849584e-01 7.311979e-01 setrgbcolor +fill +grestore +newpath +6.965299e+01 3.935526e+00 moveto +6.849455e+01 3.89177e+00 lineto +6.862402e+01 3.962068e+00 lineto +6.982538e+01 4.029128e+00 lineto +6.965299e+01 3.935526e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.080702e+01 4.01911e+00 moveto +6.965299e+01 3.935526e+00 lineto +6.982538e+01 4.029128e+00 lineto +7.102217e+01 4.135926e+00 lineto +7.080702e+01 4.01911e+00 lineto +closepath +gsave +5.781085e-01 5.781085e-01 7.226356e-01 setrgbcolor +fill +grestore +newpath +7.080702e+01 4.01911e+00 moveto +6.965299e+01 3.935526e+00 lineto +6.982538e+01 4.029128e+00 lineto +7.102217e+01 4.135926e+00 lineto +7.080702e+01 4.01911e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.195556e+01 4.142441e+00 moveto +7.080702e+01 4.01911e+00 lineto +7.102217e+01 4.135926e+00 lineto +7.221326e+01 4.282362e+00 lineto +7.195556e+01 4.142441e+00 lineto +closepath +gsave +5.71281e-01 5.71281e-01 7.141013e-01 setrgbcolor +fill +grestore +newpath +7.195556e+01 4.142441e+00 moveto +7.080702e+01 4.01911e+00 lineto +7.102217e+01 4.135926e+00 lineto +7.221326e+01 4.282362e+00 lineto +7.195556e+01 4.142441e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.309751e+01 4.305404e+00 moveto +7.195556e+01 4.142441e+00 lineto +7.221326e+01 4.282362e+00 lineto +7.339752e+01 4.468296e+00 lineto +7.309751e+01 4.305404e+00 lineto +closepath +gsave +5.644881e-01 5.644881e-01 7.056101e-01 setrgbcolor +fill +grestore +newpath +7.309751e+01 4.305404e+00 moveto +7.195556e+01 4.142441e+00 lineto +7.221326e+01 4.282362e+00 lineto +7.339752e+01 4.468296e+00 lineto +7.309751e+01 4.305404e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.423179e+01 4.507843e+00 moveto +7.309751e+01 4.305404e+00 lineto +7.339752e+01 4.468296e+00 lineto +7.457383e+01 4.693553e+00 lineto +7.423179e+01 4.507843e+00 lineto +closepath +gsave +5.577416e-01 5.577416e-01 6.97177e-01 setrgbcolor +fill +grestore +newpath +7.423179e+01 4.507843e+00 moveto +7.309751e+01 4.305404e+00 lineto +7.339752e+01 4.468296e+00 lineto +7.457383e+01 4.693553e+00 lineto +7.423179e+01 4.507843e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.535733e+01 4.749567e+00 moveto +7.423179e+01 4.507843e+00 lineto +7.457383e+01 4.693553e+00 lineto +7.574107e+01 4.957919e+00 lineto +7.535733e+01 4.749567e+00 lineto +closepath +gsave +5.510534e-01 5.510534e-01 6.888167e-01 setrgbcolor +fill +grestore +newpath +7.535733e+01 4.749567e+00 moveto +7.423179e+01 4.507843e+00 lineto +7.457383e+01 4.693553e+00 lineto +7.574107e+01 4.957919e+00 lineto +7.535733e+01 4.749567e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.647306e+01 5.030348e+00 moveto +7.535733e+01 4.749567e+00 lineto +7.574107e+01 4.957919e+00 lineto +7.689814e+01 5.261145e+00 lineto +7.647306e+01 5.030348e+00 lineto +closepath +gsave +5.44435e-01 5.44435e-01 6.805438e-01 setrgbcolor +fill +grestore +newpath +7.647306e+01 5.030348e+00 moveto +7.535733e+01 4.749567e+00 lineto +7.574107e+01 4.957919e+00 lineto +7.689814e+01 5.261145e+00 lineto +7.647306e+01 5.030348e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.757794e+01 5.34992e+00 moveto +7.647306e+01 5.030348e+00 lineto +7.689814e+01 5.261145e+00 lineto +7.804395e+01 5.602942e+00 lineto +7.757794e+01 5.34992e+00 lineto +closepath +gsave +5.378979e-01 5.378979e-01 6.723724e-01 setrgbcolor +fill +grestore +newpath +7.757794e+01 5.34992e+00 moveto +7.647306e+01 5.030348e+00 lineto +7.689814e+01 5.261145e+00 lineto +7.804395e+01 5.602942e+00 lineto +7.757794e+01 5.34992e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.86709e+01 5.707979e+00 moveto +7.757794e+01 5.34992e+00 lineto +7.804395e+01 5.602942e+00 lineto +7.917741e+01 5.982987e+00 lineto +7.86709e+01 5.707979e+00 lineto +closepath +gsave +5.314532e-01 5.314532e-01 6.643164e-01 setrgbcolor +fill +grestore +newpath +7.86709e+01 5.707979e+00 moveto +7.757794e+01 5.34992e+00 lineto +7.804395e+01 5.602942e+00 lineto +7.917741e+01 5.982987e+00 lineto +7.86709e+01 5.707979e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.975092e+01 6.104187e+00 moveto +7.86709e+01 5.707979e+00 lineto +7.917741e+01 5.982987e+00 lineto +8.029744e+01 6.400922e+00 lineto +7.975092e+01 6.104187e+00 lineto +closepath +gsave +5.251114e-01 5.251114e-01 6.563892e-01 setrgbcolor +fill +grestore +newpath +7.975092e+01 6.104187e+00 moveto +7.86709e+01 5.707979e+00 lineto +7.917741e+01 5.982987e+00 lineto +8.029744e+01 6.400922e+00 lineto +7.975092e+01 6.104187e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.081697e+01 6.538168e+00 moveto +7.975092e+01 6.104187e+00 lineto +8.029744e+01 6.400922e+00 lineto +8.140299e+01 6.856348e+00 lineto +8.081697e+01 6.538168e+00 lineto +closepath +gsave +5.188829e-01 5.188829e-01 6.486037e-01 setrgbcolor +fill +grestore +newpath +8.081697e+01 6.538168e+00 moveto +7.975092e+01 6.104187e+00 lineto +8.029744e+01 6.400922e+00 lineto +8.140299e+01 6.856348e+00 lineto +8.081697e+01 6.538168e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.186805e+01 7.009513e+00 moveto +8.081697e+01 6.538168e+00 lineto +8.140299e+01 6.856348e+00 lineto +8.249301e+01 7.348837e+00 lineto +8.186805e+01 7.009513e+00 lineto +closepath +gsave +5.127776e-01 5.127776e-01 6.40972e-01 setrgbcolor +fill +grestore +newpath +8.186805e+01 7.009513e+00 moveto +8.081697e+01 6.538168e+00 lineto +8.140299e+01 6.856348e+00 lineto +8.249301e+01 7.348837e+00 lineto +8.186805e+01 7.009513e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.290316e+01 7.517774e+00 moveto +8.186805e+01 7.009513e+00 lineto +8.249301e+01 7.348837e+00 lineto +8.356647e+01 7.877921e+00 lineto +8.290316e+01 7.517774e+00 lineto +closepath +gsave +5.068048e-01 5.068048e-01 6.33506e-01 setrgbcolor +fill +grestore +newpath +8.290316e+01 7.517774e+00 moveto +8.186805e+01 7.009513e+00 lineto +8.249301e+01 7.348837e+00 lineto +8.356647e+01 7.877921e+00 lineto +8.290316e+01 7.517774e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.392131e+01 8.062471e+00 moveto +8.290316e+01 7.517774e+00 lineto +8.356647e+01 7.877921e+00 lineto +8.462235e+01 8.443099e+00 lineto +8.392131e+01 8.062471e+00 lineto +closepath +gsave +5.009733e-01 5.009733e-01 6.262166e-01 setrgbcolor +fill +grestore +newpath +8.392131e+01 8.062471e+00 moveto +8.290316e+01 7.517774e+00 lineto +8.356647e+01 7.877921e+00 lineto +8.462235e+01 8.443099e+00 lineto +8.392131e+01 8.062471e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.621215e+01 3.947379e+00 moveto +6.500393e+01 3.999765e+00 lineto +6.500404e+01 3.999843e+00 lineto +6.624799e+01 3.97134e+00 lineto +6.621215e+01 3.947379e+00 lineto +closepath +gsave +6.05683e-01 6.05683e-01 7.571037e-01 setrgbcolor +fill +grestore +newpath +6.621215e+01 3.947379e+00 moveto +6.500393e+01 3.999765e+00 lineto +6.500404e+01 3.999843e+00 lineto +6.624799e+01 3.97134e+00 lineto +6.621215e+01 3.947379e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.741923e+01 3.93481e+00 moveto +6.621215e+01 3.947379e+00 lineto +6.624799e+01 3.97134e+00 lineto +6.749075e+01 3.982631e+00 lineto +6.741923e+01 3.93481e+00 lineto +closepath +gsave +5.991549e-01 5.991549e-01 7.489436e-01 setrgbcolor +fill +grestore +newpath +6.741923e+01 3.93481e+00 moveto +6.621215e+01 3.947379e+00 lineto +6.624799e+01 3.97134e+00 lineto +6.749075e+01 3.982631e+00 lineto +6.741923e+01 3.93481e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.862402e+01 3.962068e+00 moveto +6.741923e+01 3.93481e+00 lineto +6.749075e+01 3.982631e+00 lineto +6.873115e+01 4.033704e+00 lineto +6.862402e+01 3.962068e+00 lineto +closepath +gsave +5.926084e-01 5.926084e-01 7.407605e-01 setrgbcolor +fill +grestore +newpath +6.862402e+01 3.962068e+00 moveto +6.741923e+01 3.93481e+00 lineto +6.749075e+01 3.982631e+00 lineto +6.873115e+01 4.033704e+00 lineto +6.862402e+01 3.962068e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.982538e+01 4.029128e+00 moveto +6.862402e+01 3.962068e+00 lineto +6.873115e+01 4.033704e+00 lineto +6.996803e+01 4.124512e+00 lineto +6.982538e+01 4.029128e+00 lineto +closepath +gsave +5.860546e-01 5.860546e-01 7.325682e-01 setrgbcolor +fill +grestore +newpath +6.982538e+01 4.029128e+00 moveto +6.862402e+01 3.962068e+00 lineto +6.873115e+01 4.033704e+00 lineto +6.996803e+01 4.124512e+00 lineto +6.982538e+01 4.029128e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.102217e+01 4.135926e+00 moveto +6.982538e+01 4.029128e+00 lineto +6.996803e+01 4.124512e+00 lineto +7.120019e+01 4.254967e+00 lineto +7.102217e+01 4.135926e+00 lineto +closepath +gsave +5.795045e-01 5.795045e-01 7.243806e-01 setrgbcolor +fill +grestore +newpath +7.102217e+01 4.135926e+00 moveto +6.982538e+01 4.029128e+00 lineto +6.996803e+01 4.124512e+00 lineto +7.120019e+01 4.254967e+00 lineto +7.102217e+01 4.135926e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.221326e+01 4.282362e+00 moveto +7.102217e+01 4.135926e+00 lineto +7.120019e+01 4.254967e+00 lineto +7.242649e+01 4.424947e+00 lineto +7.221326e+01 4.282362e+00 lineto +closepath +gsave +5.729694e-01 5.729694e-01 7.162117e-01 setrgbcolor +fill +grestore +newpath +7.221326e+01 4.282362e+00 moveto +7.102217e+01 4.135926e+00 lineto +7.120019e+01 4.254967e+00 lineto +7.242649e+01 4.424947e+00 lineto +7.221326e+01 4.282362e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.339752e+01 4.468296e+00 moveto +7.221326e+01 4.282362e+00 lineto +7.242649e+01 4.424947e+00 lineto +7.364576e+01 4.634291e+00 lineto +7.339752e+01 4.468296e+00 lineto +closepath +gsave +5.664604e-01 5.664604e-01 7.080755e-01 setrgbcolor +fill +grestore +newpath +7.339752e+01 4.468296e+00 moveto +7.221326e+01 4.282362e+00 lineto +7.242649e+01 4.424947e+00 lineto +7.364576e+01 4.634291e+00 lineto +7.339752e+01 4.468296e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.457383e+01 4.693553e+00 moveto +7.339752e+01 4.468296e+00 lineto +7.364576e+01 4.634291e+00 lineto +7.485684e+01 4.8828e+00 lineto +7.457383e+01 4.693553e+00 lineto +closepath +gsave +5.599886e-01 5.599886e-01 6.999858e-01 setrgbcolor +fill +grestore +newpath +7.457383e+01 4.693553e+00 moveto +7.339752e+01 4.468296e+00 lineto +7.364576e+01 4.634291e+00 lineto +7.485684e+01 4.8828e+00 lineto +7.457383e+01 4.693553e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.574107e+01 4.957919e+00 moveto +7.457383e+01 4.693553e+00 lineto +7.485684e+01 4.8828e+00 lineto +7.605859e+01 5.170239e+00 lineto +7.574107e+01 4.957919e+00 lineto +closepath +gsave +5.53565e-01 5.53565e-01 6.919563e-01 setrgbcolor +fill +grestore +newpath +7.574107e+01 4.957919e+00 moveto +7.457383e+01 4.693553e+00 lineto +7.485684e+01 4.8828e+00 lineto +7.605859e+01 5.170239e+00 lineto +7.574107e+01 4.957919e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.689814e+01 5.261145e+00 moveto +7.574107e+01 4.957919e+00 lineto +7.605859e+01 5.170239e+00 lineto +7.724986e+01 5.496336e+00 lineto +7.689814e+01 5.261145e+00 lineto +closepath +gsave +5.472004e-01 5.472004e-01 6.840005e-01 setrgbcolor +fill +grestore +newpath +7.689814e+01 5.261145e+00 moveto +7.574107e+01 4.957919e+00 lineto +7.605859e+01 5.170239e+00 lineto +7.724986e+01 5.496336e+00 lineto +7.689814e+01 5.261145e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.804395e+01 5.602942e+00 moveto +7.689814e+01 5.261145e+00 lineto +7.724986e+01 5.496336e+00 lineto +7.842954e+01 5.860783e+00 lineto +7.804395e+01 5.602942e+00 lineto +closepath +gsave +5.409054e-01 5.409054e-01 6.761318e-01 setrgbcolor +fill +grestore +newpath +7.804395e+01 5.602942e+00 moveto +7.689814e+01 5.261145e+00 lineto +7.724986e+01 5.496336e+00 lineto +7.842954e+01 5.860783e+00 lineto +7.804395e+01 5.602942e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.917741e+01 5.982987e+00 moveto +7.804395e+01 5.602942e+00 lineto +7.842954e+01 5.860783e+00 lineto +7.959651e+01 6.263234e+00 lineto +7.917741e+01 5.982987e+00 lineto +closepath +gsave +5.346903e-01 5.346903e-01 6.683629e-01 setrgbcolor +fill +grestore +newpath +7.917741e+01 5.982987e+00 moveto +7.804395e+01 5.602942e+00 lineto +7.842954e+01 5.860783e+00 lineto +7.959651e+01 6.263234e+00 lineto +7.917741e+01 5.982987e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.029744e+01 6.400922e+00 moveto +7.917741e+01 5.982987e+00 lineto +7.959651e+01 6.263234e+00 lineto +8.074965e+01 6.703308e+00 lineto +8.029744e+01 6.400922e+00 lineto +closepath +gsave +5.285652e-01 5.285652e-01 6.607065e-01 setrgbcolor +fill +grestore +newpath +8.029744e+01 6.400922e+00 moveto +7.917741e+01 5.982987e+00 lineto +7.959651e+01 6.263234e+00 lineto +8.074965e+01 6.703308e+00 lineto +8.029744e+01 6.400922e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.140299e+01 6.856348e+00 moveto +8.029744e+01 6.400922e+00 lineto +8.074965e+01 6.703308e+00 lineto +8.188788e+01 7.180588e+00 lineto +8.140299e+01 6.856348e+00 lineto +closepath +gsave +5.225397e-01 5.225397e-01 6.531747e-01 setrgbcolor +fill +grestore +newpath +8.140299e+01 6.856348e+00 moveto +8.029744e+01 6.400922e+00 lineto +8.074965e+01 6.703308e+00 lineto +8.188788e+01 7.180588e+00 lineto +8.140299e+01 6.856348e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.249301e+01 7.348837e+00 moveto +8.140299e+01 6.856348e+00 lineto +8.188788e+01 7.180588e+00 lineto +8.301012e+01 7.694623e+00 lineto +8.249301e+01 7.348837e+00 lineto +closepath +gsave +5.166232e-01 5.166232e-01 6.457791e-01 setrgbcolor +fill +grestore +newpath +8.249301e+01 7.348837e+00 moveto +8.140299e+01 6.856348e+00 lineto +8.188788e+01 7.180588e+00 lineto +8.301012e+01 7.694623e+00 lineto +8.249301e+01 7.348837e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.356647e+01 7.877921e+00 moveto +8.249301e+01 7.348837e+00 lineto +8.301012e+01 7.694623e+00 lineto +8.411531e+01 8.244926e+00 lineto +8.356647e+01 7.877921e+00 lineto +closepath +gsave +5.108245e-01 5.108245e-01 6.385307e-01 setrgbcolor +fill +grestore +newpath +8.356647e+01 7.877921e+00 moveto +8.249301e+01 7.348837e+00 lineto +8.301012e+01 7.694623e+00 lineto +8.411531e+01 8.244926e+00 lineto +8.356647e+01 7.877921e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.462235e+01 8.443099e+00 moveto +8.356647e+01 7.877921e+00 lineto +8.411531e+01 8.244926e+00 lineto +8.52024e+01 8.830976e+00 lineto +8.462235e+01 8.443099e+00 lineto +closepath +gsave +5.05152e-01 5.05152e-01 6.314401e-01 setrgbcolor +fill +grestore +newpath +8.462235e+01 8.443099e+00 moveto +8.356647e+01 7.877921e+00 lineto +8.411531e+01 8.244926e+00 lineto +8.52024e+01 8.830976e+00 lineto +8.462235e+01 8.443099e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.565965e+01 9.043836e+00 moveto +8.462235e+01 8.443099e+00 lineto +8.52024e+01 8.830976e+00 lineto +8.627037e+01 9.452218e+00 lineto +8.565965e+01 9.043836e+00 lineto +closepath +gsave +4.996136e-01 4.996136e-01 6.24517e-01 setrgbcolor +fill +grestore +newpath +8.565965e+01 9.043836e+00 moveto +8.462235e+01 8.443099e+00 lineto +8.52024e+01 8.830976e+00 lineto +8.627037e+01 9.452218e+00 lineto +8.565965e+01 9.043836e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.667739e+01 9.679564e+00 moveto +8.565965e+01 9.043836e+00 lineto +8.627037e+01 9.452218e+00 lineto +8.731819e+01 1.010806e+01 lineto +8.667739e+01 9.679564e+00 lineto +closepath +gsave +4.942166e-01 4.942166e-01 6.177707e-01 setrgbcolor +fill +grestore +newpath +8.667739e+01 9.679564e+00 moveto +8.565965e+01 9.043836e+00 lineto +8.627037e+01 9.452218e+00 lineto +8.731819e+01 1.010806e+01 lineto +8.667739e+01 9.679564e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.624799e+01 3.97134e+00 moveto +6.500404e+01 3.999843e+00 lineto +6.500413e+01 3.999921e+00 lineto +6.627613e+01 3.995601e+00 lineto +6.624799e+01 3.97134e+00 lineto +closepath +gsave +6.05864e-01 6.05864e-01 7.5733e-01 setrgbcolor +fill +grestore +newpath +6.624799e+01 3.97134e+00 moveto +6.500404e+01 3.999843e+00 lineto +6.500413e+01 3.999921e+00 lineto +6.627613e+01 3.995601e+00 lineto +6.624799e+01 3.97134e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.749075e+01 3.982631e+00 moveto +6.624799e+01 3.97134e+00 lineto +6.627613e+01 3.995601e+00 lineto +6.754691e+01 4.031051e+00 lineto +6.749075e+01 3.982631e+00 lineto +closepath +gsave +5.996926e-01 5.996926e-01 7.496157e-01 setrgbcolor +fill +grestore +newpath +6.749075e+01 3.982631e+00 moveto +6.624799e+01 3.97134e+00 lineto +6.627613e+01 3.995601e+00 lineto +6.754691e+01 4.031051e+00 lineto +6.749075e+01 3.982631e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.873115e+01 4.033704e+00 moveto +6.749075e+01 3.982631e+00 lineto +6.754691e+01 4.031051e+00 lineto +6.881528e+01 4.106238e+00 lineto +6.873115e+01 4.033704e+00 lineto +closepath +gsave +5.934977e-01 5.934977e-01 7.418721e-01 setrgbcolor +fill +grestore +newpath +6.873115e+01 4.033704e+00 moveto +6.749075e+01 3.982631e+00 lineto +6.754691e+01 4.031051e+00 lineto +6.881528e+01 4.106238e+00 lineto +6.873115e+01 4.033704e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.996803e+01 4.124512e+00 moveto +6.873115e+01 4.033704e+00 lineto +6.881528e+01 4.106238e+00 lineto +7.008004e+01 4.22109e+00 lineto +6.996803e+01 4.124512e+00 lineto +closepath +gsave +5.872894e-01 5.872894e-01 7.341117e-01 setrgbcolor +fill +grestore +newpath +6.996803e+01 4.124512e+00 moveto +6.873115e+01 4.033704e+00 lineto +6.881528e+01 4.106238e+00 lineto +7.008004e+01 4.22109e+00 lineto +6.996803e+01 4.124512e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.120019e+01 4.254967e+00 moveto +6.996803e+01 4.124512e+00 lineto +7.008004e+01 4.22109e+00 lineto +7.133999e+01 4.375499e+00 lineto +7.120019e+01 4.254967e+00 lineto +closepath +gsave +5.810779e-01 5.810779e-01 7.263473e-01 setrgbcolor +fill +grestore +newpath +7.120019e+01 4.254967e+00 moveto +6.996803e+01 4.124512e+00 lineto +7.008004e+01 4.22109e+00 lineto +7.133999e+01 4.375499e+00 lineto +7.120019e+01 4.254967e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.242649e+01 4.424947e+00 moveto +7.120019e+01 4.254967e+00 lineto +7.133999e+01 4.375499e+00 lineto +7.259394e+01 4.569318e+00 lineto +7.242649e+01 4.424947e+00 lineto +closepath +gsave +5.748734e-01 5.748734e-01 7.185917e-01 setrgbcolor +fill +grestore +newpath +7.242649e+01 4.424947e+00 moveto +7.120019e+01 4.254967e+00 lineto +7.133999e+01 4.375499e+00 lineto +7.259394e+01 4.569318e+00 lineto +7.242649e+01 4.424947e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.364576e+01 4.634291e+00 moveto +7.242649e+01 4.424947e+00 lineto +7.259394e+01 4.569318e+00 lineto +7.384069e+01 4.802364e+00 lineto +7.364576e+01 4.634291e+00 lineto +closepath +gsave +5.686861e-01 5.686861e-01 7.108576e-01 setrgbcolor +fill +grestore +newpath +7.364576e+01 4.634291e+00 moveto +7.242649e+01 4.424947e+00 lineto +7.259394e+01 4.569318e+00 lineto +7.384069e+01 4.802364e+00 lineto +7.364576e+01 4.634291e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.485684e+01 4.8828e+00 moveto +7.364576e+01 4.634291e+00 lineto +7.384069e+01 4.802364e+00 lineto +7.507908e+01 5.074417e+00 lineto +7.485684e+01 4.8828e+00 lineto +closepath +gsave +5.625262e-01 5.625262e-01 7.031578e-01 setrgbcolor +fill +grestore +newpath +7.485684e+01 4.8828e+00 moveto +7.364576e+01 4.634291e+00 lineto +7.384069e+01 4.802364e+00 lineto +7.507908e+01 5.074417e+00 lineto +7.485684e+01 4.8828e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.605859e+01 5.170239e+00 moveto +7.485684e+01 4.8828e+00 lineto +7.507908e+01 5.074417e+00 lineto +7.630792e+01 5.385218e+00 lineto +7.605859e+01 5.170239e+00 lineto +closepath +gsave +5.564038e-01 5.564038e-01 6.955048e-01 setrgbcolor +fill +grestore +newpath +7.605859e+01 5.170239e+00 moveto +7.485684e+01 4.8828e+00 lineto +7.507908e+01 5.074417e+00 lineto +7.630792e+01 5.385218e+00 lineto +7.605859e+01 5.170239e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.724986e+01 5.496336e+00 moveto +7.605859e+01 5.170239e+00 lineto +7.630792e+01 5.385218e+00 lineto +7.752606e+01 5.734474e+00 lineto +7.724986e+01 5.496336e+00 lineto +closepath +gsave +5.503288e-01 5.503288e-01 6.87911e-01 setrgbcolor +fill +grestore +newpath +7.724986e+01 5.496336e+00 moveto +7.605859e+01 5.170239e+00 lineto +7.630792e+01 5.385218e+00 lineto +7.752606e+01 5.734474e+00 lineto +7.724986e+01 5.496336e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.842954e+01 5.860783e+00 moveto +7.724986e+01 5.496336e+00 lineto +7.752606e+01 5.734474e+00 lineto +7.873234e+01 6.121853e+00 lineto +7.842954e+01 5.860783e+00 lineto +closepath +gsave +5.44311e-01 5.44311e-01 6.803888e-01 setrgbcolor +fill +grestore +newpath +7.842954e+01 5.860783e+00 moveto +7.724986e+01 5.496336e+00 lineto +7.752606e+01 5.734474e+00 lineto +7.873234e+01 6.121853e+00 lineto +7.842954e+01 5.860783e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.959651e+01 6.263234e+00 moveto +7.842954e+01 5.860783e+00 lineto +7.873234e+01 6.121853e+00 lineto +7.992561e+01 6.54699e+00 lineto +7.959651e+01 6.263234e+00 lineto +closepath +gsave +5.3836e-01 5.3836e-01 6.7295e-01 setrgbcolor +fill +grestore +newpath +7.959651e+01 6.263234e+00 moveto +7.842954e+01 5.860783e+00 lineto +7.873234e+01 6.121853e+00 lineto +7.992561e+01 6.54699e+00 lineto +7.959651e+01 6.263234e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.074965e+01 6.703308e+00 moveto +7.959651e+01 6.263234e+00 lineto +7.992561e+01 6.54699e+00 lineto +8.110476e+01 7.009481e+00 lineto +8.074965e+01 6.703308e+00 lineto +closepath +gsave +5.324851e-01 5.324851e-01 6.656064e-01 setrgbcolor +fill +grestore +newpath +8.074965e+01 6.703308e+00 moveto +7.959651e+01 6.263234e+00 lineto +7.992561e+01 6.54699e+00 lineto +8.110476e+01 7.009481e+00 lineto +8.074965e+01 6.703308e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.188788e+01 7.180588e+00 moveto +8.074965e+01 6.703308e+00 lineto +8.110476e+01 7.009481e+00 lineto +8.226865e+01 7.508889e+00 lineto +8.188788e+01 7.180588e+00 lineto +closepath +gsave +5.266953e-01 5.266953e-01 6.583692e-01 setrgbcolor +fill +grestore +newpath +8.188788e+01 7.180588e+00 moveto +8.074965e+01 6.703308e+00 lineto +8.110476e+01 7.009481e+00 lineto +8.226865e+01 7.508889e+00 lineto +8.188788e+01 7.180588e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.301012e+01 7.694623e+00 moveto +8.188788e+01 7.180588e+00 lineto +8.226865e+01 7.508889e+00 lineto +8.34162e+01 8.04474e+00 lineto +8.301012e+01 7.694623e+00 lineto +closepath +gsave +5.209994e-01 5.209994e-01 6.512492e-01 setrgbcolor +fill +grestore +newpath +8.301012e+01 7.694623e+00 moveto +8.188788e+01 7.180588e+00 lineto +8.226865e+01 7.508889e+00 lineto +8.34162e+01 8.04474e+00 lineto +8.301012e+01 7.694623e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.411531e+01 8.244926e+00 moveto +8.301012e+01 7.694623e+00 lineto +8.34162e+01 8.04474e+00 lineto +8.454631e+01 8.616528e+00 lineto +8.411531e+01 8.244926e+00 lineto +closepath +gsave +5.154056e-01 5.154056e-01 6.442569e-01 setrgbcolor +fill +grestore +newpath +8.411531e+01 8.244926e+00 moveto +8.301012e+01 7.694623e+00 lineto +8.34162e+01 8.04474e+00 lineto +8.454631e+01 8.616528e+00 lineto +8.411531e+01 8.244926e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.52024e+01 8.830976e+00 moveto +8.411531e+01 8.244926e+00 lineto +8.454631e+01 8.616528e+00 lineto +8.565791e+01 9.223711e+00 lineto +8.52024e+01 8.830976e+00 lineto +closepath +gsave +5.099218e-01 5.099218e-01 6.374023e-01 setrgbcolor +fill +grestore +newpath +8.52024e+01 8.830976e+00 moveto +8.411531e+01 8.244926e+00 lineto +8.454631e+01 8.616528e+00 lineto +8.565791e+01 9.223711e+00 lineto +8.52024e+01 8.830976e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.627037e+01 9.452218e+00 moveto +8.52024e+01 8.830976e+00 lineto +8.565791e+01 9.223711e+00 lineto +8.674995e+01 9.865714e+00 lineto +8.627037e+01 9.452218e+00 lineto +closepath +gsave +5.045556e-01 5.045556e-01 6.306945e-01 setrgbcolor +fill +grestore +newpath +8.627037e+01 9.452218e+00 moveto +8.52024e+01 8.830976e+00 lineto +8.565791e+01 9.223711e+00 lineto +8.674995e+01 9.865714e+00 lineto +8.627037e+01 9.452218e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.731819e+01 1.010806e+01 moveto +8.627037e+01 9.452218e+00 lineto +8.674995e+01 9.865714e+00 lineto +8.78214e+01 1.054193e+01 lineto +8.731819e+01 1.010806e+01 lineto +closepath +gsave +4.99314e-01 4.99314e-01 6.241425e-01 setrgbcolor +fill +grestore +newpath +8.731819e+01 1.010806e+01 moveto +8.627037e+01 9.452218e+00 lineto +8.674995e+01 9.865714e+00 lineto +8.78214e+01 1.054193e+01 lineto +8.731819e+01 1.010806e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.834489e+01 1.079789e+01 moveto +8.731819e+01 1.010806e+01 lineto +8.78214e+01 1.054193e+01 lineto +8.887124e+01 1.125172e+01 lineto +8.834489e+01 1.079789e+01 lineto +closepath +gsave +4.942035e-01 4.942035e-01 6.177544e-01 setrgbcolor +fill +grestore +newpath +8.834489e+01 1.079789e+01 moveto +8.731819e+01 1.010806e+01 lineto +8.78214e+01 1.054193e+01 lineto +8.887124e+01 1.125172e+01 lineto +8.834489e+01 1.079789e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.934948e+01 1.152105e+01 moveto +8.834489e+01 1.079789e+01 lineto +8.887124e+01 1.125172e+01 lineto +8.989848e+01 1.19944e+01 lineto +8.934948e+01 1.152105e+01 lineto +closepath +gsave +4.892302e-01 4.892302e-01 6.115377e-01 setrgbcolor +fill +grestore +newpath +8.934948e+01 1.152105e+01 moveto +8.834489e+01 1.079789e+01 lineto +8.887124e+01 1.125172e+01 lineto +8.989848e+01 1.19944e+01 lineto +8.934948e+01 1.152105e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.033101e+01 1.227685e+01 moveto +8.934948e+01 1.152105e+01 lineto +8.989848e+01 1.19944e+01 lineto +9.090215e+01 1.276929e+01 lineto +9.033101e+01 1.227685e+01 lineto +closepath +gsave +4.843993e-01 4.843993e-01 6.054991e-01 setrgbcolor +fill +grestore +newpath +9.033101e+01 1.227685e+01 moveto +8.934948e+01 1.152105e+01 lineto +8.989848e+01 1.19944e+01 lineto +9.090215e+01 1.276929e+01 lineto +9.033101e+01 1.227685e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.128857e+01 1.306459e+01 moveto +9.033101e+01 1.227685e+01 lineto +9.090215e+01 1.276929e+01 lineto +9.188129e+01 1.357563e+01 lineto +9.128857e+01 1.306459e+01 lineto +closepath +gsave +4.797159e-01 4.797159e-01 5.996449e-01 setrgbcolor +fill +grestore +newpath +9.128857e+01 1.306459e+01 moveto +9.033101e+01 1.227685e+01 lineto +9.090215e+01 1.276929e+01 lineto +9.188129e+01 1.357563e+01 lineto +9.128857e+01 1.306459e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.627613e+01 3.995601e+00 moveto +6.500413e+01 3.999921e+00 lineto +6.50042e+01 4.0e+00 lineto +6.62964e+01 4.020012e+00 lineto +6.627613e+01 3.995601e+00 lineto +closepath +gsave +6.060641e-01 6.060641e-01 7.575802e-01 setrgbcolor +fill +grestore +newpath +6.627613e+01 3.995601e+00 moveto +6.500413e+01 3.999921e+00 lineto +6.50042e+01 4.0e+00 lineto +6.62964e+01 4.020012e+00 lineto +6.627613e+01 3.995601e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.754691e+01 4.031051e+00 moveto +6.627613e+01 3.995601e+00 lineto +6.62964e+01 4.020012e+00 lineto +6.758737e+01 4.079772e+00 lineto +6.754691e+01 4.031051e+00 lineto +closepath +gsave +6.00287e-01 6.00287e-01 7.503588e-01 setrgbcolor +fill +grestore +newpath +6.754691e+01 4.031051e+00 moveto +6.627613e+01 3.995601e+00 lineto +6.62964e+01 4.020012e+00 lineto +6.758737e+01 4.079772e+00 lineto +6.754691e+01 4.031051e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.881528e+01 4.106238e+00 moveto +6.754691e+01 4.031051e+00 lineto +6.758737e+01 4.079772e+00 lineto +6.887588e+01 4.179221e+00 lineto +6.881528e+01 4.106238e+00 lineto +closepath +gsave +5.944812e-01 5.944812e-01 7.431015e-01 setrgbcolor +fill +grestore +newpath +6.881528e+01 4.106238e+00 moveto +6.754691e+01 4.031051e+00 lineto +6.758737e+01 4.079772e+00 lineto +6.887588e+01 4.179221e+00 lineto +6.881528e+01 4.106238e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.008004e+01 4.22109e+00 moveto +6.881528e+01 4.106238e+00 lineto +6.887588e+01 4.179221e+00 lineto +7.016073e+01 4.318268e+00 lineto +7.008004e+01 4.22109e+00 lineto +closepath +gsave +5.886557e-01 5.886557e-01 7.358196e-01 setrgbcolor +fill +grestore +newpath +7.008004e+01 4.22109e+00 moveto +6.881528e+01 4.106238e+00 lineto +6.887588e+01 4.179221e+00 lineto +7.016073e+01 4.318268e+00 lineto +7.008004e+01 4.22109e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.133999e+01 4.375499e+00 moveto +7.008004e+01 4.22109e+00 lineto +7.016073e+01 4.318268e+00 lineto +7.14407e+01 4.496778e+00 lineto +7.133999e+01 4.375499e+00 lineto +closepath +gsave +5.828198e-01 5.828198e-01 7.285248e-01 setrgbcolor +fill +grestore +newpath +7.133999e+01 4.375499e+00 moveto +7.008004e+01 4.22109e+00 lineto +7.016073e+01 4.318268e+00 lineto +7.14407e+01 4.496778e+00 lineto +7.133999e+01 4.375499e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.259394e+01 4.569318e+00 moveto +7.133999e+01 4.375499e+00 lineto +7.14407e+01 4.496778e+00 lineto +7.271456e+01 4.714585e+00 lineto +7.259394e+01 4.569318e+00 lineto +closepath +gsave +5.769827e-01 5.769827e-01 7.212284e-01 setrgbcolor +fill +grestore +newpath +7.259394e+01 4.569318e+00 moveto +7.133999e+01 4.375499e+00 lineto +7.14407e+01 4.496778e+00 lineto +7.271456e+01 4.714585e+00 lineto +7.259394e+01 4.569318e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.384069e+01 4.802364e+00 moveto +7.259394e+01 4.569318e+00 lineto +7.271456e+01 4.714585e+00 lineto +7.398112e+01 4.97148e+00 lineto +7.384069e+01 4.802364e+00 lineto +closepath +gsave +5.711537e-01 5.711537e-01 7.139421e-01 setrgbcolor +fill +grestore +newpath +7.384069e+01 4.802364e+00 moveto +7.259394e+01 4.569318e+00 lineto +7.271456e+01 4.714585e+00 lineto +7.398112e+01 4.97148e+00 lineto +7.384069e+01 4.802364e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.507908e+01 5.074417e+00 moveto +7.384069e+01 4.802364e+00 lineto +7.398112e+01 4.97148e+00 lineto +7.523918e+01 5.267222e+00 lineto +7.507908e+01 5.074417e+00 lineto +closepath +gsave +5.653418e-01 5.653418e-01 7.066773e-01 setrgbcolor +fill +grestore +newpath +7.507908e+01 5.074417e+00 moveto +7.384069e+01 4.802364e+00 lineto +7.398112e+01 4.97148e+00 lineto +7.523918e+01 5.267222e+00 lineto +7.507908e+01 5.074417e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.630792e+01 5.385218e+00 moveto +7.507908e+01 5.074417e+00 lineto +7.523918e+01 5.267222e+00 lineto +7.648754e+01 5.601531e+00 lineto +7.630792e+01 5.385218e+00 lineto +closepath +gsave +5.595564e-01 5.595564e-01 6.994454e-01 setrgbcolor +fill +grestore +newpath +7.630792e+01 5.385218e+00 moveto +7.507908e+01 5.074417e+00 lineto +7.523918e+01 5.267222e+00 lineto +7.648754e+01 5.601531e+00 lineto +7.630792e+01 5.385218e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.752606e+01 5.734474e+00 moveto +7.630792e+01 5.385218e+00 lineto +7.648754e+01 5.601531e+00 lineto +7.772503e+01 5.974088e+00 lineto +7.752606e+01 5.734474e+00 lineto +closepath +gsave +5.538063e-01 5.538063e-01 6.922579e-01 setrgbcolor +fill +grestore +newpath +7.752606e+01 5.734474e+00 moveto +7.630792e+01 5.385218e+00 lineto +7.648754e+01 5.601531e+00 lineto +7.772503e+01 5.974088e+00 lineto +7.752606e+01 5.734474e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.873234e+01 6.121853e+00 moveto +7.752606e+01 5.734474e+00 lineto +7.772503e+01 5.974088e+00 lineto +7.895047e+01 6.384543e+00 lineto +7.873234e+01 6.121853e+00 lineto +closepath +gsave +5.481007e-01 5.481007e-01 6.851259e-01 setrgbcolor +fill +grestore +newpath +7.873234e+01 6.121853e+00 moveto +7.752606e+01 5.734474e+00 lineto +7.772503e+01 5.974088e+00 lineto +7.895047e+01 6.384543e+00 lineto +7.873234e+01 6.121853e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.992561e+01 6.54699e+00 moveto +7.873234e+01 6.121853e+00 lineto +7.895047e+01 6.384543e+00 lineto +8.01627e+01 6.832506e+00 lineto +7.992561e+01 6.54699e+00 lineto +closepath +gsave +5.424482e-01 5.424482e-01 6.780603e-01 setrgbcolor +fill +grestore +newpath +7.992561e+01 6.54699e+00 moveto +7.873234e+01 6.121853e+00 lineto +7.895047e+01 6.384543e+00 lineto +8.01627e+01 6.832506e+00 lineto +7.992561e+01 6.54699e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.110476e+01 7.009481e+00 moveto +7.992561e+01 6.54699e+00 lineto +8.01627e+01 6.832506e+00 lineto +8.136057e+01 7.317554e+00 lineto +8.110476e+01 7.009481e+00 lineto +closepath +gsave +5.368575e-01 5.368575e-01 6.710718e-01 setrgbcolor +fill +grestore +newpath +8.110476e+01 7.009481e+00 moveto +7.992561e+01 6.54699e+00 lineto +8.01627e+01 6.832506e+00 lineto +8.136057e+01 7.317554e+00 lineto +8.110476e+01 7.009481e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.226865e+01 7.508889e+00 moveto +8.110476e+01 7.009481e+00 lineto +8.136057e+01 7.317554e+00 lineto +8.254296e+01 7.839226e+00 lineto +8.226865e+01 7.508889e+00 lineto +closepath +gsave +5.313368e-01 5.313368e-01 6.641709e-01 setrgbcolor +fill +grestore +newpath +8.226865e+01 7.508889e+00 moveto +8.110476e+01 7.009481e+00 lineto +8.136057e+01 7.317554e+00 lineto +8.254296e+01 7.839226e+00 lineto +8.226865e+01 7.508889e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.34162e+01 8.04474e+00 moveto +8.226865e+01 7.508889e+00 lineto +8.254296e+01 7.839226e+00 lineto +8.370873e+01 8.397029e+00 lineto +8.34162e+01 8.04474e+00 lineto +closepath +gsave +5.258941e-01 5.258941e-01 6.573677e-01 setrgbcolor +fill +grestore +newpath +8.34162e+01 8.04474e+00 moveto +8.226865e+01 7.508889e+00 lineto +8.254296e+01 7.839226e+00 lineto +8.370873e+01 8.397029e+00 lineto +8.34162e+01 8.04474e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.454631e+01 8.616528e+00 moveto +8.34162e+01 8.04474e+00 lineto +8.370873e+01 8.397029e+00 lineto +8.485679e+01 8.990435e+00 lineto +8.454631e+01 8.616528e+00 lineto +closepath +gsave +5.205374e-01 5.205374e-01 6.506718e-01 setrgbcolor +fill +grestore +newpath +8.454631e+01 8.616528e+00 moveto +8.34162e+01 8.04474e+00 lineto +8.370873e+01 8.397029e+00 lineto +8.485679e+01 8.990435e+00 lineto +8.454631e+01 8.616528e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.565791e+01 9.223711e+00 moveto +8.454631e+01 8.616528e+00 lineto +8.485679e+01 8.990435e+00 lineto +8.598605e+01 9.618882e+00 lineto +8.565791e+01 9.223711e+00 lineto +closepath +gsave +5.152739e-01 5.152739e-01 6.440924e-01 setrgbcolor +fill +grestore +newpath +8.565791e+01 9.223711e+00 moveto +8.454631e+01 8.616528e+00 lineto +8.485679e+01 8.990435e+00 lineto +8.598605e+01 9.618882e+00 lineto +8.565791e+01 9.223711e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.674995e+01 9.865714e+00 moveto +8.565791e+01 9.223711e+00 lineto +8.598605e+01 9.618882e+00 lineto +8.709544e+01 1.028177e+01 lineto +8.674995e+01 9.865714e+00 lineto +closepath +gsave +5.101109e-01 5.101109e-01 6.376386e-01 setrgbcolor +fill +grestore +newpath +8.674995e+01 9.865714e+00 moveto +8.565791e+01 9.223711e+00 lineto +8.598605e+01 9.618882e+00 lineto +8.709544e+01 1.028177e+01 lineto +8.674995e+01 9.865714e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.78214e+01 1.054193e+01 moveto +8.674995e+01 9.865714e+00 lineto +8.709544e+01 1.028177e+01 lineto +8.818391e+01 1.097849e+01 lineto +8.78214e+01 1.054193e+01 lineto +closepath +gsave +5.050548e-01 5.050548e-01 6.313185e-01 setrgbcolor +fill +grestore +newpath +8.78214e+01 1.054193e+01 moveto +8.674995e+01 9.865714e+00 lineto +8.709544e+01 1.028177e+01 lineto +8.818391e+01 1.097849e+01 lineto +8.78214e+01 1.054193e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.887124e+01 1.125172e+01 moveto +8.78214e+01 1.054193e+01 lineto +8.818391e+01 1.097849e+01 lineto +8.925043e+01 1.170836e+01 lineto +8.887124e+01 1.125172e+01 lineto +closepath +gsave +5.00112e-01 5.00112e-01 6.2514e-01 setrgbcolor +fill +grestore +newpath +8.887124e+01 1.125172e+01 moveto +8.78214e+01 1.054193e+01 lineto +8.818391e+01 1.097849e+01 lineto +8.925043e+01 1.170836e+01 lineto +8.887124e+01 1.125172e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.989848e+01 1.19944e+01 moveto +8.887124e+01 1.125172e+01 lineto +8.925043e+01 1.170836e+01 lineto +9.029398e+01 1.247069e+01 lineto +8.989848e+01 1.19944e+01 lineto +closepath +gsave +4.952884e-01 4.952884e-01 6.191105e-01 setrgbcolor +fill +grestore +newpath +8.989848e+01 1.19944e+01 moveto +8.887124e+01 1.125172e+01 lineto +8.925043e+01 1.170836e+01 lineto +9.029398e+01 1.247069e+01 lineto +8.989848e+01 1.19944e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.090215e+01 1.276929e+01 moveto +8.989848e+01 1.19944e+01 lineto +9.029398e+01 1.247069e+01 lineto +9.131359e+01 1.326478e+01 lineto +9.090215e+01 1.276929e+01 lineto +closepath +gsave +4.905892e-01 4.905892e-01 6.132365e-01 setrgbcolor +fill +grestore +newpath +9.090215e+01 1.276929e+01 moveto +8.989848e+01 1.19944e+01 lineto +9.029398e+01 1.247069e+01 lineto +9.131359e+01 1.326478e+01 lineto +9.090215e+01 1.276929e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.188129e+01 1.357563e+01 moveto +9.090215e+01 1.276929e+01 lineto +9.131359e+01 1.326478e+01 lineto +9.230829e+01 1.408985e+01 lineto +9.188129e+01 1.357563e+01 lineto +closepath +gsave +4.860193e-01 4.860193e-01 6.075242e-01 setrgbcolor +fill +grestore +newpath +9.188129e+01 1.357563e+01 moveto +9.090215e+01 1.276929e+01 lineto +9.131359e+01 1.326478e+01 lineto +9.230829e+01 1.408985e+01 lineto +9.188129e+01 1.357563e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.283498e+01 1.441268e+01 moveto +9.188129e+01 1.357563e+01 lineto +9.230829e+01 1.408985e+01 lineto +9.327713e+01 1.494515e+01 lineto +9.283498e+01 1.441268e+01 lineto +closepath +gsave +4.815832e-01 4.815832e-01 6.01979e-01 setrgbcolor +fill +grestore +newpath +9.283498e+01 1.441268e+01 moveto +9.188129e+01 1.357563e+01 lineto +9.230829e+01 1.408985e+01 lineto +9.327713e+01 1.494515e+01 lineto +9.283498e+01 1.441268e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.376232e+01 1.527964e+01 moveto +9.283498e+01 1.441268e+01 lineto +9.327713e+01 1.494515e+01 lineto +9.42192e+01 1.582984e+01 lineto +9.376232e+01 1.527964e+01 lineto +closepath +gsave +4.772847e-01 4.772847e-01 5.966058e-01 setrgbcolor +fill +grestore +newpath +9.376232e+01 1.527964e+01 moveto +9.283498e+01 1.441268e+01 lineto +9.327713e+01 1.494515e+01 lineto +9.42192e+01 1.582984e+01 lineto +9.376232e+01 1.527964e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.466242e+01 1.617568e+01 moveto +9.376232e+01 1.527964e+01 lineto +9.42192e+01 1.582984e+01 lineto +9.51336e+01 1.67431e+01 lineto +9.466242e+01 1.617568e+01 lineto +closepath +gsave +4.731271e-01 4.731271e-01 5.914089e-01 setrgbcolor +fill +grestore +newpath +9.466242e+01 1.617568e+01 moveto +9.376232e+01 1.527964e+01 lineto +9.42192e+01 1.582984e+01 lineto +9.51336e+01 1.67431e+01 lineto +9.466242e+01 1.617568e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.553444e+01 1.709995e+01 moveto +9.466242e+01 1.617568e+01 lineto +9.51336e+01 1.67431e+01 lineto +9.601947e+01 1.768406e+01 lineto +9.553444e+01 1.709995e+01 lineto +closepath +gsave +4.691133e-01 4.691133e-01 5.863916e-01 setrgbcolor +fill +grestore +newpath +9.553444e+01 1.709995e+01 moveto +9.466242e+01 1.617568e+01 lineto +9.51336e+01 1.67431e+01 lineto +9.601947e+01 1.768406e+01 lineto +9.553444e+01 1.709995e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.637755e+01 1.80516e+01 moveto +9.553444e+01 1.709995e+01 lineto +9.601947e+01 1.768406e+01 lineto +9.687597e+01 1.865183e+01 lineto +9.637755e+01 1.80516e+01 lineto +closepath +gsave +4.652456e-01 4.652456e-01 5.81557e-01 setrgbcolor +fill +grestore +newpath +9.637755e+01 1.80516e+01 moveto +9.553444e+01 1.709995e+01 lineto +9.601947e+01 1.768406e+01 lineto +9.687597e+01 1.865183e+01 lineto +9.637755e+01 1.80516e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.719095e+01 1.90297e+01 moveto +9.637755e+01 1.80516e+01 lineto +9.687597e+01 1.865183e+01 lineto +9.770229e+01 1.964549e+01 lineto +9.719095e+01 1.90297e+01 lineto +closepath +gsave +4.615258e-01 4.615258e-01 5.769073e-01 setrgbcolor +fill +grestore +newpath +9.719095e+01 1.90297e+01 moveto +9.637755e+01 1.80516e+01 lineto +9.687597e+01 1.865183e+01 lineto +9.770229e+01 1.964549e+01 lineto +9.719095e+01 1.90297e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.62964e+01 4.020012e+00 moveto +6.50042e+01 4.0e+00 lineto +6.500424e+01 4.000079e+00 lineto +6.630867e+01 4.044424e+00 lineto +6.62964e+01 4.020012e+00 lineto +closepath +gsave +6.06282e-01 6.06282e-01 7.578525e-01 setrgbcolor +fill +grestore +newpath +6.62964e+01 4.020012e+00 moveto +6.50042e+01 4.0e+00 lineto +6.500424e+01 4.000079e+00 lineto +6.630867e+01 4.044424e+00 lineto +6.62964e+01 4.020012e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.758737e+01 4.079772e+00 moveto +6.62964e+01 4.020012e+00 lineto +6.630867e+01 4.044424e+00 lineto +6.761187e+01 4.128492e+00 lineto +6.758737e+01 4.079772e+00 lineto +closepath +gsave +6.009345e-01 6.009345e-01 7.511682e-01 setrgbcolor +fill +grestore +newpath +6.758737e+01 4.079772e+00 moveto +6.62964e+01 4.020012e+00 lineto +6.630867e+01 4.044424e+00 lineto +6.761187e+01 4.128492e+00 lineto +6.758737e+01 4.079772e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.887588e+01 4.179221e+00 moveto +6.758737e+01 4.079772e+00 lineto +6.761187e+01 4.128492e+00 lineto +6.891259e+01 4.252205e+00 lineto +6.887588e+01 4.179221e+00 lineto +closepath +gsave +5.955531e-01 5.955531e-01 7.444413e-01 setrgbcolor +fill +grestore +newpath +6.887588e+01 4.179221e+00 moveto +6.758737e+01 4.079772e+00 lineto +6.761187e+01 4.128492e+00 lineto +6.891259e+01 4.252205e+00 lineto +6.887588e+01 4.179221e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.016073e+01 4.318268e+00 moveto +6.887588e+01 4.179221e+00 lineto +6.891259e+01 4.252205e+00 lineto +7.020961e+01 4.415445e+00 lineto +7.016073e+01 4.318268e+00 lineto +closepath +gsave +5.901457e-01 5.901457e-01 7.376821e-01 setrgbcolor +fill +grestore +newpath +7.016073e+01 4.318268e+00 moveto +6.887588e+01 4.179221e+00 lineto +6.891259e+01 4.252205e+00 lineto +7.020961e+01 4.415445e+00 lineto +7.016073e+01 4.318268e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.14407e+01 4.496778e+00 moveto +7.016073e+01 4.318268e+00 lineto +7.020961e+01 4.415445e+00 lineto +7.15017e+01 4.618058e+00 lineto +7.14407e+01 4.496778e+00 lineto +closepath +gsave +5.847206e-01 5.847206e-01 7.309007e-01 setrgbcolor +fill +grestore +newpath +7.14407e+01 4.496778e+00 moveto +7.016073e+01 4.318268e+00 lineto +7.020961e+01 4.415445e+00 lineto +7.15017e+01 4.618058e+00 lineto +7.14407e+01 4.496778e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.271456e+01 4.714585e+00 moveto +7.14407e+01 4.496778e+00 lineto +7.15017e+01 4.618058e+00 lineto +7.278763e+01 4.859851e+00 lineto +7.271456e+01 4.714585e+00 lineto +closepath +gsave +5.792859e-01 5.792859e-01 7.241074e-01 setrgbcolor +fill +grestore +newpath +7.271456e+01 4.714585e+00 moveto +7.14407e+01 4.496778e+00 lineto +7.15017e+01 4.618058e+00 lineto +7.278763e+01 4.859851e+00 lineto +7.271456e+01 4.714585e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.398112e+01 4.97148e+00 moveto +7.271456e+01 4.714585e+00 lineto +7.278763e+01 4.859851e+00 lineto +7.406618e+01 5.140597e+00 lineto +7.398112e+01 4.97148e+00 lineto +closepath +gsave +5.7385e-01 5.7385e-01 7.173125e-01 setrgbcolor +fill +grestore +newpath +7.398112e+01 4.97148e+00 moveto +7.271456e+01 4.714585e+00 lineto +7.278763e+01 4.859851e+00 lineto +7.406618e+01 5.140597e+00 lineto +7.398112e+01 4.97148e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.523918e+01 5.267222e+00 moveto +7.398112e+01 4.97148e+00 lineto +7.406618e+01 5.140597e+00 lineto +7.533615e+01 5.460028e+00 lineto +7.523918e+01 5.267222e+00 lineto +closepath +gsave +5.68421e-01 5.68421e-01 7.105263e-01 setrgbcolor +fill +grestore +newpath +7.523918e+01 5.267222e+00 moveto +7.398112e+01 4.97148e+00 lineto +7.406618e+01 5.140597e+00 lineto +7.533615e+01 5.460028e+00 lineto +7.523918e+01 5.267222e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.648754e+01 5.601531e+00 moveto +7.523918e+01 5.267222e+00 lineto +7.533615e+01 5.460028e+00 lineto +7.659634e+01 5.817843e+00 lineto +7.648754e+01 5.601531e+00 lineto +closepath +gsave +5.630073e-01 5.630073e-01 7.037591e-01 setrgbcolor +fill +grestore +newpath +7.648754e+01 5.601531e+00 moveto +7.523918e+01 5.267222e+00 lineto +7.533615e+01 5.460028e+00 lineto +7.659634e+01 5.817843e+00 lineto +7.648754e+01 5.601531e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.772503e+01 5.974088e+00 moveto +7.648754e+01 5.601531e+00 lineto +7.659634e+01 5.817843e+00 lineto +7.784555e+01 6.213703e+00 lineto +7.772503e+01 5.974088e+00 lineto +closepath +gsave +5.576168e-01 5.576168e-01 6.97021e-01 setrgbcolor +fill +grestore +newpath +7.772503e+01 5.974088e+00 moveto +7.648754e+01 5.601531e+00 lineto +7.659634e+01 5.817843e+00 lineto +7.784555e+01 6.213703e+00 lineto +7.772503e+01 5.974088e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.895047e+01 6.384543e+00 moveto +7.772503e+01 5.974088e+00 lineto +7.784555e+01 6.213703e+00 lineto +7.908259e+01 6.647233e+00 lineto +7.895047e+01 6.384543e+00 lineto +closepath +gsave +5.522578e-01 5.522578e-01 6.903222e-01 setrgbcolor +fill +grestore +newpath +7.895047e+01 6.384543e+00 moveto +7.772503e+01 5.974088e+00 lineto +7.784555e+01 6.213703e+00 lineto +7.908259e+01 6.647233e+00 lineto +7.895047e+01 6.384543e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.01627e+01 6.832506e+00 moveto +7.895047e+01 6.384543e+00 lineto +7.908259e+01 6.647233e+00 lineto +8.03063e+01 7.118023e+00 lineto +8.01627e+01 6.832506e+00 lineto +closepath +gsave +5.469381e-01 5.469381e-01 6.836726e-01 setrgbcolor +fill +grestore +newpath +8.01627e+01 6.832506e+00 moveto +7.895047e+01 6.384543e+00 lineto +7.908259e+01 6.647233e+00 lineto +8.03063e+01 7.118023e+00 lineto +8.01627e+01 6.832506e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.136057e+01 7.317554e+00 moveto +8.01627e+01 6.832506e+00 lineto +8.03063e+01 7.118023e+00 lineto +8.151552e+01 7.625626e+00 lineto +8.136057e+01 7.317554e+00 lineto +closepath +gsave +5.416655e-01 5.416655e-01 6.770819e-01 setrgbcolor +fill +grestore +newpath +8.136057e+01 7.317554e+00 moveto +8.01627e+01 6.832506e+00 lineto +8.03063e+01 7.118023e+00 lineto +8.151552e+01 7.625626e+00 lineto +8.136057e+01 7.317554e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.254296e+01 7.839226e+00 moveto +8.136057e+01 7.317554e+00 lineto +8.151552e+01 7.625626e+00 lineto +8.27091e+01 8.169563e+00 lineto +8.254296e+01 7.839226e+00 lineto +closepath +gsave +5.364477e-01 5.364477e-01 6.705596e-01 setrgbcolor +fill +grestore +newpath +8.254296e+01 7.839226e+00 moveto +8.136057e+01 7.317554e+00 lineto +8.151552e+01 7.625626e+00 lineto +8.27091e+01 8.169563e+00 lineto +8.254296e+01 7.839226e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.370873e+01 8.397029e+00 moveto +8.254296e+01 7.839226e+00 lineto +8.27091e+01 8.169563e+00 lineto +8.388592e+01 8.749318e+00 lineto +8.370873e+01 8.397029e+00 lineto +closepath +gsave +5.31292e-01 5.31292e-01 6.64115e-01 setrgbcolor +fill +grestore +newpath +8.370873e+01 8.397029e+00 moveto +8.254296e+01 7.839226e+00 lineto +8.27091e+01 8.169563e+00 lineto +8.388592e+01 8.749318e+00 lineto +8.370873e+01 8.397029e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.485679e+01 8.990435e+00 moveto +8.370873e+01 8.397029e+00 lineto +8.388592e+01 8.749318e+00 lineto +8.504485e+01 9.364342e+00 lineto +8.485679e+01 8.990435e+00 lineto +closepath +gsave +5.262056e-01 5.262056e-01 6.57757e-01 setrgbcolor +fill +grestore +newpath +8.485679e+01 8.990435e+00 moveto +8.370873e+01 8.397029e+00 lineto +8.388592e+01 8.749318e+00 lineto +8.504485e+01 9.364342e+00 lineto +8.485679e+01 8.990435e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.598605e+01 9.618882e+00 moveto +8.485679e+01 8.990435e+00 lineto +8.504485e+01 9.364342e+00 lineto +8.61848e+01 1.001405e+01 lineto +8.598605e+01 9.618882e+00 lineto +closepath +gsave +5.211954e-01 5.211954e-01 6.514943e-01 setrgbcolor +fill +grestore +newpath +8.598605e+01 9.618882e+00 moveto +8.485679e+01 8.990435e+00 lineto +8.504485e+01 9.364342e+00 lineto +8.61848e+01 1.001405e+01 lineto +8.598605e+01 9.618882e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.709544e+01 1.028177e+01 moveto +8.598605e+01 9.618882e+00 lineto +8.61848e+01 1.001405e+01 lineto +8.73047e+01 1.069784e+01 lineto +8.709544e+01 1.028177e+01 lineto +closepath +gsave +5.16268e-01 5.16268e-01 6.45335e-01 setrgbcolor +fill +grestore +newpath +8.709544e+01 1.028177e+01 moveto +8.598605e+01 9.618882e+00 lineto +8.61848e+01 1.001405e+01 lineto +8.73047e+01 1.069784e+01 lineto +8.709544e+01 1.028177e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.818391e+01 1.097849e+01 moveto +8.709544e+01 1.028177e+01 lineto +8.73047e+01 1.069784e+01 lineto +8.840348e+01 1.141504e+01 lineto +8.818391e+01 1.097849e+01 lineto +closepath +gsave +5.114297e-01 5.114297e-01 6.392872e-01 setrgbcolor +fill +grestore +newpath +8.818391e+01 1.097849e+01 moveto +8.709544e+01 1.028177e+01 lineto +8.73047e+01 1.069784e+01 lineto +8.840348e+01 1.141504e+01 lineto +8.818391e+01 1.097849e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.925043e+01 1.170836e+01 moveto +8.818391e+01 1.097849e+01 lineto +8.840348e+01 1.141504e+01 lineto +8.94801e+01 1.2165e+01 lineto +8.925043e+01 1.170836e+01 lineto +closepath +gsave +5.066865e-01 5.066865e-01 6.333581e-01 setrgbcolor +fill +grestore +newpath +8.925043e+01 1.170836e+01 moveto +8.818391e+01 1.097849e+01 lineto +8.840348e+01 1.141504e+01 lineto +8.94801e+01 1.2165e+01 lineto +8.925043e+01 1.170836e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.029398e+01 1.247069e+01 moveto +8.925043e+01 1.170836e+01 lineto +8.94801e+01 1.2165e+01 lineto +9.053354e+01 1.294698e+01 lineto +9.029398e+01 1.247069e+01 lineto +closepath +gsave +5.020438e-01 5.020438e-01 6.275548e-01 setrgbcolor +fill +grestore +newpath +9.029398e+01 1.247069e+01 moveto +8.925043e+01 1.170836e+01 lineto +8.94801e+01 1.2165e+01 lineto +9.053354e+01 1.294698e+01 lineto +9.029398e+01 1.247069e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.131359e+01 1.326478e+01 moveto +9.029398e+01 1.247069e+01 lineto +9.053354e+01 1.294698e+01 lineto +9.15628e+01 1.376027e+01 lineto +9.131359e+01 1.326478e+01 lineto +closepath +gsave +4.975071e-01 4.975071e-01 6.218839e-01 setrgbcolor +fill +grestore +newpath +9.131359e+01 1.326478e+01 moveto +9.029398e+01 1.247069e+01 lineto +9.053354e+01 1.294698e+01 lineto +9.15628e+01 1.376027e+01 lineto +9.131359e+01 1.326478e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.230829e+01 1.408985e+01 moveto +9.131359e+01 1.326478e+01 lineto +9.15628e+01 1.376027e+01 lineto +9.256692e+01 1.460408e+01 lineto +9.230829e+01 1.408985e+01 lineto +closepath +gsave +4.93081e-01 4.93081e-01 6.163513e-01 setrgbcolor +fill +grestore +newpath +9.230829e+01 1.408985e+01 moveto +9.131359e+01 1.326478e+01 lineto +9.15628e+01 1.376027e+01 lineto +9.256692e+01 1.460408e+01 lineto +9.230829e+01 1.408985e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.327713e+01 1.494515e+01 moveto +9.230829e+01 1.408985e+01 lineto +9.256692e+01 1.460408e+01 lineto +9.354494e+01 1.547761e+01 lineto +9.327713e+01 1.494515e+01 lineto +closepath +gsave +4.8877e-01 4.8877e-01 6.109625e-01 setrgbcolor +fill +grestore +newpath +9.327713e+01 1.494515e+01 moveto +9.230829e+01 1.408985e+01 lineto +9.256692e+01 1.460408e+01 lineto +9.354494e+01 1.547761e+01 lineto +9.327713e+01 1.494515e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.42192e+01 1.582984e+01 moveto +9.327713e+01 1.494515e+01 lineto +9.354494e+01 1.547761e+01 lineto +9.449592e+01 1.638004e+01 lineto +9.42192e+01 1.582984e+01 lineto +closepath +gsave +4.845781e-01 4.845781e-01 6.057226e-01 setrgbcolor +fill +grestore +newpath +9.42192e+01 1.582984e+01 moveto +9.327713e+01 1.494515e+01 lineto +9.354494e+01 1.547761e+01 lineto +9.449592e+01 1.638004e+01 lineto +9.42192e+01 1.582984e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.51336e+01 1.67431e+01 moveto +9.42192e+01 1.582984e+01 lineto +9.449592e+01 1.638004e+01 lineto +9.541899e+01 1.731052e+01 lineto +9.51336e+01 1.67431e+01 lineto +closepath +gsave +4.805088e-01 4.805088e-01 6.00636e-01 setrgbcolor +fill +grestore +newpath +9.51336e+01 1.67431e+01 moveto +9.42192e+01 1.582984e+01 lineto +9.449592e+01 1.638004e+01 lineto +9.541899e+01 1.731052e+01 lineto +9.51336e+01 1.67431e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.601947e+01 1.768406e+01 moveto +9.51336e+01 1.67431e+01 lineto +9.541899e+01 1.731052e+01 lineto +9.631325e+01 1.826816e+01 lineto +9.601947e+01 1.768406e+01 lineto +closepath +gsave +4.765653e-01 4.765653e-01 5.957066e-01 setrgbcolor +fill +grestore +newpath +9.601947e+01 1.768406e+01 moveto +9.51336e+01 1.67431e+01 lineto +9.541899e+01 1.731052e+01 lineto +9.631325e+01 1.826816e+01 lineto +9.601947e+01 1.768406e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.687597e+01 1.865183e+01 moveto +9.601947e+01 1.768406e+01 lineto +9.631325e+01 1.826816e+01 lineto +9.717786e+01 1.925206e+01 lineto +9.687597e+01 1.865183e+01 lineto +closepath +gsave +4.727502e-01 4.727502e-01 5.909377e-01 setrgbcolor +fill +grestore +newpath +9.687597e+01 1.865183e+01 moveto +9.601947e+01 1.768406e+01 lineto +9.631325e+01 1.826816e+01 lineto +9.717786e+01 1.925206e+01 lineto +9.687597e+01 1.865183e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.770229e+01 1.964549e+01 moveto +9.687597e+01 1.865183e+01 lineto +9.717786e+01 1.925206e+01 lineto +9.801201e+01 2.026128e+01 lineto +9.770229e+01 1.964549e+01 lineto +closepath +gsave +4.690657e-01 4.690657e-01 5.863321e-01 setrgbcolor +fill +grestore +newpath +9.770229e+01 1.964549e+01 moveto +9.687597e+01 1.865183e+01 lineto +9.717786e+01 1.925206e+01 lineto +9.801201e+01 2.026128e+01 lineto +9.770229e+01 1.964549e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.849765e+01 2.066411e+01 moveto +9.770229e+01 1.964549e+01 lineto +9.801201e+01 2.026128e+01 lineto +9.88149e+01 2.129487e+01 lineto +9.849765e+01 2.066411e+01 lineto +closepath +gsave +4.655136e-01 4.655136e-01 5.81892e-01 setrgbcolor +fill +grestore +newpath +9.849765e+01 2.066411e+01 moveto +9.770229e+01 1.964549e+01 lineto +9.801201e+01 2.026128e+01 lineto +9.88149e+01 2.129487e+01 lineto +9.849765e+01 2.066411e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.926129e+01 2.170671e+01 moveto +9.849765e+01 2.066411e+01 lineto +9.88149e+01 2.129487e+01 lineto +9.958577e+01 2.235186e+01 lineto +9.926129e+01 2.170671e+01 lineto +closepath +gsave +4.620952e-01 4.620952e-01 5.77619e-01 setrgbcolor +fill +grestore +newpath +9.926129e+01 2.170671e+01 moveto +9.849765e+01 2.066411e+01 lineto +9.88149e+01 2.129487e+01 lineto +9.958577e+01 2.235186e+01 lineto +9.926129e+01 2.170671e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.999249e+01 2.277231e+01 moveto +9.926129e+01 2.170671e+01 lineto +9.958577e+01 2.235186e+01 lineto +1.003239e+02 2.343123e+01 lineto +9.999249e+01 2.277231e+01 lineto +closepath +gsave +4.588115e-01 4.588115e-01 5.735144e-01 setrgbcolor +fill +grestore +newpath +9.999249e+01 2.277231e+01 moveto +9.926129e+01 2.170671e+01 lineto +9.958577e+01 2.235186e+01 lineto +1.003239e+02 2.343123e+01 lineto +9.999249e+01 2.277231e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.006906e+02 2.385991e+01 moveto +9.999249e+01 2.277231e+01 lineto +1.003239e+02 2.343123e+01 lineto +1.010286e+02 2.453197e+01 lineto +1.006906e+02 2.385991e+01 lineto +closepath +gsave +4.556629e-01 4.556629e-01 5.695786e-01 setrgbcolor +fill +grestore +newpath +1.006906e+02 2.385991e+01 moveto +9.999249e+01 2.277231e+01 lineto +1.003239e+02 2.343123e+01 lineto +1.010286e+02 2.453197e+01 lineto +1.006906e+02 2.385991e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.013548e+02 2.496847e+01 moveto +1.006906e+02 2.385991e+01 lineto +1.010286e+02 2.453197e+01 lineto +1.016992e+02 2.565304e+01 lineto +1.013548e+02 2.496847e+01 lineto +closepath +gsave +4.526494e-01 4.526494e-01 5.658117e-01 setrgbcolor +fill +grestore +newpath +1.013548e+02 2.496847e+01 moveto +1.006906e+02 2.385991e+01 lineto +1.010286e+02 2.453197e+01 lineto +1.016992e+02 2.565304e+01 lineto +1.013548e+02 2.496847e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.019847e+02 2.609694e+01 moveto +1.013548e+02 2.496847e+01 lineto +1.016992e+02 2.565304e+01 lineto +1.02335e+02 2.679337e+01 lineto +1.019847e+02 2.609694e+01 lineto +closepath +gsave +4.497706e-01 4.497706e-01 5.622133e-01 setrgbcolor +fill +grestore +newpath +1.019847e+02 2.609694e+01 moveto +1.013548e+02 2.496847e+01 lineto +1.016992e+02 2.565304e+01 lineto +1.02335e+02 2.679337e+01 lineto +1.019847e+02 2.609694e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.025795e+02 2.724426e+01 moveto +1.019847e+02 2.609694e+01 lineto +1.02335e+02 2.679337e+01 lineto +1.029355e+02 2.795189e+01 lineto +1.025795e+02 2.724426e+01 lineto +closepath +gsave +4.470259e-01 4.470259e-01 5.587824e-01 setrgbcolor +fill +grestore +newpath +1.025795e+02 2.724426e+01 moveto +1.019847e+02 2.609694e+01 lineto +1.02335e+02 2.679337e+01 lineto +1.029355e+02 2.795189e+01 lineto +1.025795e+02 2.724426e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.630867e+01 4.044424e+00 moveto +6.500424e+01 4.000079e+00 lineto +6.500425e+01 4.000158e+00 lineto +6.631288e+01 4.068685e+00 lineto +6.630867e+01 4.044424e+00 lineto +closepath +gsave +6.065164e-01 6.065164e-01 7.581455e-01 setrgbcolor +fill +grestore +newpath +6.630867e+01 4.044424e+00 moveto +6.500424e+01 4.000079e+00 lineto +6.500425e+01 4.000158e+00 lineto +6.631288e+01 4.068685e+00 lineto +6.630867e+01 4.044424e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.761187e+01 4.128492e+00 moveto +6.630867e+01 4.044424e+00 lineto +6.631288e+01 4.068685e+00 lineto +6.762027e+01 4.176912e+00 lineto +6.761187e+01 4.128492e+00 lineto +closepath +gsave +6.016313e-01 6.016313e-01 7.520391e-01 setrgbcolor +fill +grestore +newpath +6.761187e+01 4.128492e+00 moveto +6.630867e+01 4.044424e+00 lineto +6.631288e+01 4.068685e+00 lineto +6.762027e+01 4.176912e+00 lineto +6.761187e+01 4.128492e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.891259e+01 4.252205e+00 moveto +6.761187e+01 4.128492e+00 lineto +6.762027e+01 4.176912e+00 lineto +6.892518e+01 4.324739e+00 lineto +6.891259e+01 4.252205e+00 lineto +closepath +gsave +5.96707e-01 5.96707e-01 7.458838e-01 setrgbcolor +fill +grestore +newpath +6.891259e+01 4.252205e+00 moveto +6.761187e+01 4.128492e+00 lineto +6.762027e+01 4.176912e+00 lineto +6.892518e+01 4.324739e+00 lineto +6.891259e+01 4.252205e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.020961e+01 4.415445e+00 moveto +6.891259e+01 4.252205e+00 lineto +6.892518e+01 4.324739e+00 lineto +7.022637e+01 4.512024e+00 lineto +7.020961e+01 4.415445e+00 lineto +closepath +gsave +5.917506e-01 5.917506e-01 7.396883e-01 setrgbcolor +fill +grestore +newpath +7.020961e+01 4.415445e+00 moveto +6.891259e+01 4.252205e+00 lineto +6.892518e+01 4.324739e+00 lineto +7.022637e+01 4.512024e+00 lineto +7.020961e+01 4.415445e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.15017e+01 4.618058e+00 moveto +7.020961e+01 4.415445e+00 lineto +7.022637e+01 4.512024e+00 lineto +7.152261e+01 4.73859e+00 lineto +7.15017e+01 4.618058e+00 lineto +closepath +gsave +5.867692e-01 5.867692e-01 7.334615e-01 setrgbcolor +fill +grestore +newpath +7.15017e+01 4.618058e+00 moveto +7.020961e+01 4.415445e+00 lineto +7.022637e+01 4.512024e+00 lineto +7.152261e+01 4.73859e+00 lineto +7.15017e+01 4.618058e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.278763e+01 4.859851e+00 moveto +7.15017e+01 4.618058e+00 lineto +7.152261e+01 4.73859e+00 lineto +7.281268e+01 5.004222e+00 lineto +7.278763e+01 4.859851e+00 lineto +closepath +gsave +5.817701e-01 5.817701e-01 7.272126e-01 setrgbcolor +fill +grestore +newpath +7.278763e+01 4.859851e+00 moveto +7.15017e+01 4.618058e+00 lineto +7.152261e+01 4.73859e+00 lineto +7.281268e+01 5.004222e+00 lineto +7.278763e+01 4.859851e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.406618e+01 5.140597e+00 moveto +7.278763e+01 4.859851e+00 lineto +7.281268e+01 5.004222e+00 lineto +7.409534e+01 5.30867e+00 lineto +7.406618e+01 5.140597e+00 lineto +closepath +gsave +5.767605e-01 5.767605e-01 7.209507e-01 setrgbcolor +fill +grestore +newpath +7.406618e+01 5.140597e+00 moveto +7.278763e+01 4.859851e+00 lineto +7.281268e+01 5.004222e+00 lineto +7.409534e+01 5.30867e+00 lineto +7.406618e+01 5.140597e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.533615e+01 5.460028e+00 moveto +7.406618e+01 5.140597e+00 lineto +7.409534e+01 5.30867e+00 lineto +7.53694e+01 5.651645e+00 lineto +7.533615e+01 5.460028e+00 lineto +closepath +gsave +5.717478e-01 5.717478e-01 7.146847e-01 setrgbcolor +fill +grestore +newpath +7.533615e+01 5.460028e+00 moveto +7.406618e+01 5.140597e+00 lineto +7.409534e+01 5.30867e+00 lineto +7.53694e+01 5.651645e+00 lineto +7.533615e+01 5.460028e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.659634e+01 5.817843e+00 moveto +7.533615e+01 5.460028e+00 lineto +7.53694e+01 5.651645e+00 lineto +7.663364e+01 6.032822e+00 lineto +7.659634e+01 5.817843e+00 lineto +closepath +gsave +5.667391e-01 5.667391e-01 7.084238e-01 setrgbcolor +fill +grestore +newpath +7.659634e+01 5.817843e+00 moveto +7.533615e+01 5.460028e+00 lineto +7.53694e+01 5.651645e+00 lineto +7.663364e+01 6.032822e+00 lineto +7.659634e+01 5.817843e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.784555e+01 6.213703e+00 moveto +7.659634e+01 5.817843e+00 lineto +7.663364e+01 6.032822e+00 lineto +7.788687e+01 6.45184e+00 lineto +7.784555e+01 6.213703e+00 lineto +closepath +gsave +5.617417e-01 5.617417e-01 7.021772e-01 setrgbcolor +fill +grestore +newpath +7.784555e+01 6.213703e+00 moveto +7.659634e+01 5.817843e+00 lineto +7.663364e+01 6.032822e+00 lineto +7.788687e+01 6.45184e+00 lineto +7.784555e+01 6.213703e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.908259e+01 6.647233e+00 moveto +7.784555e+01 6.213703e+00 lineto +7.788687e+01 6.45184e+00 lineto +7.912789e+01 6.908303e+00 lineto +7.908259e+01 6.647233e+00 lineto +closepath +gsave +5.567629e-01 5.567629e-01 6.959536e-01 setrgbcolor +fill +grestore +newpath +7.908259e+01 6.647233e+00 moveto +7.784555e+01 6.213703e+00 lineto +7.788687e+01 6.45184e+00 lineto +7.912789e+01 6.908303e+00 lineto +7.908259e+01 6.647233e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.03063e+01 7.118023e+00 moveto +7.908259e+01 6.647233e+00 lineto +7.912789e+01 6.908303e+00 lineto +8.035554e+01 7.401779e+00 lineto +8.03063e+01 7.118023e+00 lineto +closepath +gsave +5.518097e-01 5.518097e-01 6.897621e-01 setrgbcolor +fill +grestore +newpath +8.03063e+01 7.118023e+00 moveto +7.908259e+01 6.647233e+00 lineto +7.912789e+01 6.908303e+00 lineto +8.035554e+01 7.401779e+00 lineto +8.03063e+01 7.118023e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.151552e+01 7.625626e+00 moveto +8.03063e+01 7.118023e+00 lineto +8.035554e+01 7.401779e+00 lineto +8.156864e+01 7.931799e+00 lineto +8.151552e+01 7.625626e+00 lineto +closepath +gsave +5.468891e-01 5.468891e-01 6.836114e-01 setrgbcolor +fill +grestore +newpath +8.151552e+01 7.625626e+00 moveto +8.03063e+01 7.118023e+00 lineto +8.035554e+01 7.401779e+00 lineto +8.156864e+01 7.931799e+00 lineto +8.151552e+01 7.625626e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.27091e+01 8.169563e+00 moveto +8.151552e+01 7.625626e+00 lineto +8.156864e+01 7.931799e+00 lineto +8.276606e+01 8.497863e+00 lineto +8.27091e+01 8.169563e+00 lineto +closepath +gsave +5.42008e-01 5.42008e-01 6.775101e-01 setrgbcolor +fill +grestore +newpath +8.27091e+01 8.169563e+00 moveto +8.151552e+01 7.625626e+00 lineto +8.156864e+01 7.931799e+00 lineto +8.276606e+01 8.497863e+00 lineto +8.27091e+01 8.169563e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.388592e+01 8.749318e+00 moveto +8.27091e+01 8.169563e+00 lineto +8.276606e+01 8.497863e+00 lineto +8.394666e+01 9.099434e+00 lineto +8.388592e+01 8.749318e+00 lineto +closepath +gsave +5.371732e-01 5.371732e-01 6.714665e-01 setrgbcolor +fill +grestore +newpath +8.388592e+01 8.749318e+00 moveto +8.27091e+01 8.169563e+00 lineto +8.276606e+01 8.497863e+00 lineto +8.394666e+01 9.099434e+00 lineto +8.388592e+01 8.749318e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.504485e+01 9.364342e+00 moveto +8.388592e+01 8.749318e+00 lineto +8.394666e+01 9.099434e+00 lineto +8.510933e+01 9.735943e+00 lineto +8.504485e+01 9.364342e+00 lineto +closepath +gsave +5.323911e-01 5.323911e-01 6.654889e-01 setrgbcolor +fill +grestore +newpath +8.504485e+01 9.364342e+00 moveto +8.388592e+01 8.749318e+00 lineto +8.394666e+01 9.099434e+00 lineto +8.510933e+01 9.735943e+00 lineto +8.504485e+01 9.364342e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.61848e+01 1.001405e+01 moveto +8.504485e+01 9.364342e+00 lineto +8.510933e+01 9.735943e+00 lineto +8.625295e+01 1.040679e+01 lineto +8.61848e+01 1.001405e+01 lineto +closepath +gsave +5.276681e-01 5.276681e-01 6.595851e-01 setrgbcolor +fill +grestore +newpath +8.61848e+01 1.001405e+01 moveto +8.504485e+01 9.364342e+00 lineto +8.510933e+01 9.735943e+00 lineto +8.625295e+01 1.040679e+01 lineto +8.61848e+01 1.001405e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.73047e+01 1.069784e+01 moveto +8.61848e+01 1.001405e+01 lineto +8.625295e+01 1.040679e+01 lineto +8.737644e+01 1.111133e+01 lineto +8.73047e+01 1.069784e+01 lineto +closepath +gsave +5.230103e-01 5.230103e-01 6.537629e-01 setrgbcolor +fill +grestore +newpath +8.73047e+01 1.069784e+01 moveto +8.61848e+01 1.001405e+01 lineto +8.625295e+01 1.040679e+01 lineto +8.737644e+01 1.111133e+01 lineto +8.73047e+01 1.069784e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.840348e+01 1.141504e+01 moveto +8.73047e+01 1.069784e+01 lineto +8.737644e+01 1.111133e+01 lineto +8.847876e+01 1.184891e+01 lineto +8.840348e+01 1.141504e+01 lineto +closepath +gsave +5.184236e-01 5.184236e-01 6.480295e-01 setrgbcolor +fill +grestore +newpath +8.840348e+01 1.141504e+01 moveto +8.73047e+01 1.069784e+01 lineto +8.737644e+01 1.111133e+01 lineto +8.847876e+01 1.184891e+01 lineto +8.840348e+01 1.141504e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.94801e+01 1.2165e+01 moveto +8.840348e+01 1.141504e+01 lineto +8.847876e+01 1.184891e+01 lineto +8.955884e+01 1.261882e+01 lineto +8.94801e+01 1.2165e+01 lineto +closepath +gsave +5.139136e-01 5.139136e-01 6.42392e-01 setrgbcolor +fill +grestore +newpath +8.94801e+01 1.2165e+01 moveto +8.840348e+01 1.141504e+01 lineto +8.847876e+01 1.184891e+01 lineto +8.955884e+01 1.261882e+01 lineto +8.94801e+01 1.2165e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.053354e+01 1.294698e+01 moveto +8.94801e+01 1.2165e+01 lineto +8.955884e+01 1.261882e+01 lineto +9.061567e+01 1.342034e+01 lineto +9.053354e+01 1.294698e+01 lineto +closepath +gsave +5.094856e-01 5.094856e-01 6.36857e-01 setrgbcolor +fill +grestore +newpath +9.053354e+01 1.294698e+01 moveto +8.94801e+01 1.2165e+01 lineto +8.955884e+01 1.261882e+01 lineto +9.061567e+01 1.342034e+01 lineto +9.053354e+01 1.294698e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.15628e+01 1.376027e+01 moveto +9.053354e+01 1.294698e+01 lineto +9.061567e+01 1.342034e+01 lineto +9.164825e+01 1.42527e+01 lineto +9.15628e+01 1.376027e+01 lineto +closepath +gsave +5.051446e-01 5.051446e-01 6.314308e-01 setrgbcolor +fill +grestore +newpath +9.15628e+01 1.376027e+01 moveto +9.053354e+01 1.294698e+01 lineto +9.061567e+01 1.342034e+01 lineto +9.164825e+01 1.42527e+01 lineto +9.15628e+01 1.376027e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.256692e+01 1.460408e+01 moveto +9.15628e+01 1.376027e+01 lineto +9.164825e+01 1.42527e+01 lineto +9.265559e+01 1.511512e+01 lineto +9.256692e+01 1.460408e+01 lineto +closepath +gsave +5.008954e-01 5.008954e-01 6.261193e-01 setrgbcolor +fill +grestore +newpath +9.256692e+01 1.460408e+01 moveto +9.15628e+01 1.376027e+01 lineto +9.164825e+01 1.42527e+01 lineto +9.265559e+01 1.511512e+01 lineto +9.256692e+01 1.460408e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.354494e+01 1.547761e+01 moveto +9.256692e+01 1.460408e+01 lineto +9.265559e+01 1.511512e+01 lineto +9.363675e+01 1.600679e+01 lineto +9.354494e+01 1.547761e+01 lineto +closepath +gsave +4.967424e-01 4.967424e-01 6.20928e-01 setrgbcolor +fill +grestore +newpath +9.354494e+01 1.547761e+01 moveto +9.256692e+01 1.460408e+01 lineto +9.265559e+01 1.511512e+01 lineto +9.363675e+01 1.600679e+01 lineto +9.354494e+01 1.547761e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.449592e+01 1.638004e+01 moveto +9.354494e+01 1.547761e+01 lineto +9.363675e+01 1.600679e+01 lineto +9.45908e+01 1.692685e+01 lineto +9.449592e+01 1.638004e+01 lineto +closepath +gsave +4.926895e-01 4.926895e-01 6.158619e-01 setrgbcolor +fill +grestore +newpath +9.449592e+01 1.638004e+01 moveto +9.354494e+01 1.547761e+01 lineto +9.363675e+01 1.600679e+01 lineto +9.45908e+01 1.692685e+01 lineto +9.449592e+01 1.638004e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.541899e+01 1.731052e+01 moveto +9.449592e+01 1.638004e+01 lineto +9.45908e+01 1.692685e+01 lineto +9.551683e+01 1.787444e+01 lineto +9.541899e+01 1.731052e+01 lineto +closepath +gsave +4.887405e-01 4.887405e-01 6.109256e-01 setrgbcolor +fill +grestore +newpath +9.541899e+01 1.731052e+01 moveto +9.449592e+01 1.638004e+01 lineto +9.45908e+01 1.692685e+01 lineto +9.551683e+01 1.787444e+01 lineto +9.541899e+01 1.731052e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.631325e+01 1.826816e+01 moveto +9.541899e+01 1.731052e+01 lineto +9.551683e+01 1.787444e+01 lineto +9.641397e+01 1.884866e+01 lineto +9.631325e+01 1.826816e+01 lineto +closepath +gsave +4.848986e-01 4.848986e-01 6.061233e-01 setrgbcolor +fill +grestore +newpath +9.631325e+01 1.826816e+01 moveto +9.541899e+01 1.731052e+01 lineto +9.551683e+01 1.787444e+01 lineto +9.641397e+01 1.884866e+01 lineto +9.631325e+01 1.826816e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.717786e+01 1.925206e+01 moveto +9.631325e+01 1.826816e+01 lineto +9.641397e+01 1.884866e+01 lineto +9.728136e+01 1.984859e+01 lineto +9.717786e+01 1.925206e+01 lineto +closepath +gsave +4.81167e-01 4.81167e-01 6.014587e-01 setrgbcolor +fill +grestore +newpath +9.717786e+01 1.925206e+01 moveto +9.631325e+01 1.826816e+01 lineto +9.641397e+01 1.884866e+01 lineto +9.728136e+01 1.984859e+01 lineto +9.717786e+01 1.925206e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.801201e+01 2.026128e+01 moveto +9.717786e+01 1.925206e+01 lineto +9.728136e+01 1.984859e+01 lineto +9.811819e+01 2.087327e+01 lineto +9.801201e+01 2.026128e+01 lineto +closepath +gsave +4.77548e-01 4.77548e-01 5.96935e-01 setrgbcolor +fill +grestore +newpath +9.801201e+01 2.026128e+01 moveto +9.717786e+01 1.925206e+01 lineto +9.728136e+01 1.984859e+01 lineto +9.811819e+01 2.087327e+01 lineto +9.801201e+01 2.026128e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.88149e+01 2.129487e+01 moveto +9.801201e+01 2.026128e+01 lineto +9.811819e+01 2.087327e+01 lineto +9.892367e+01 2.192175e+01 lineto +9.88149e+01 2.129487e+01 lineto +closepath +gsave +4.74044e-01 4.74044e-01 5.92555e-01 setrgbcolor +fill +grestore +newpath +9.88149e+01 2.129487e+01 moveto +9.801201e+01 2.026128e+01 lineto +9.811819e+01 2.087327e+01 lineto +9.892367e+01 2.192175e+01 lineto +9.88149e+01 2.129487e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.958577e+01 2.235186e+01 moveto +9.88149e+01 2.129487e+01 lineto +9.892367e+01 2.192175e+01 lineto +9.969702e+01 2.299302e+01 lineto +9.958577e+01 2.235186e+01 lineto +closepath +gsave +4.706568e-01 4.706568e-01 5.88321e-01 setrgbcolor +fill +grestore +newpath +9.958577e+01 2.235186e+01 moveto +9.88149e+01 2.129487e+01 lineto +9.892367e+01 2.192175e+01 lineto +9.969702e+01 2.299302e+01 lineto +9.958577e+01 2.235186e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.003239e+02 2.343123e+01 moveto +9.958577e+01 2.235186e+01 lineto +9.969702e+01 2.299302e+01 lineto +1.004375e+02 2.408608e+01 lineto +1.003239e+02 2.343123e+01 lineto +closepath +gsave +4.673879e-01 4.673879e-01 5.842349e-01 setrgbcolor +fill +grestore +newpath +1.003239e+02 2.343123e+01 moveto +9.958577e+01 2.235186e+01 lineto +9.969702e+01 2.299302e+01 lineto +1.004375e+02 2.408608e+01 lineto +1.003239e+02 2.343123e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.010286e+02 2.453197e+01 moveto +1.003239e+02 2.343123e+01 lineto +1.004375e+02 2.408608e+01 lineto +1.011445e+02 2.519989e+01 lineto +1.010286e+02 2.453197e+01 lineto +closepath +gsave +4.642384e-01 4.642384e-01 5.80298e-01 setrgbcolor +fill +grestore +newpath +1.010286e+02 2.453197e+01 moveto +1.003239e+02 2.343123e+01 lineto +1.004375e+02 2.408608e+01 lineto +1.011445e+02 2.519989e+01 lineto +1.010286e+02 2.453197e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.016992e+02 2.565304e+01 moveto +1.010286e+02 2.453197e+01 lineto +1.011445e+02 2.519989e+01 lineto +1.018172e+02 2.633339e+01 lineto +1.016992e+02 2.565304e+01 lineto +closepath +gsave +4.61209e-01 4.61209e-01 5.765113e-01 setrgbcolor +fill +grestore +newpath +1.016992e+02 2.565304e+01 moveto +1.010286e+02 2.453197e+01 lineto +1.011445e+02 2.519989e+01 lineto +1.018172e+02 2.633339e+01 lineto +1.016992e+02 2.565304e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.02335e+02 2.679337e+01 moveto +1.016992e+02 2.565304e+01 lineto +1.018172e+02 2.633339e+01 lineto +1.024551e+02 2.748551e+01 lineto +1.02335e+02 2.679337e+01 lineto +closepath +gsave +4.583002e-01 4.583002e-01 5.728753e-01 setrgbcolor +fill +grestore +newpath +1.02335e+02 2.679337e+01 moveto +1.016992e+02 2.565304e+01 lineto +1.018172e+02 2.633339e+01 lineto +1.024551e+02 2.748551e+01 lineto +1.02335e+02 2.679337e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.029355e+02 2.795189e+01 moveto +1.02335e+02 2.679337e+01 lineto +1.024551e+02 2.748551e+01 lineto +1.030575e+02 2.865516e+01 lineto +1.029355e+02 2.795189e+01 lineto +closepath +gsave +4.55512e-01 4.55512e-01 5.6939e-01 setrgbcolor +fill +grestore +newpath +1.029355e+02 2.795189e+01 moveto +1.02335e+02 2.679337e+01 lineto +1.024551e+02 2.748551e+01 lineto +1.030575e+02 2.865516e+01 lineto +1.029355e+02 2.795189e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.035e+02 2.91275e+01 moveto +1.029355e+02 2.795189e+01 lineto +1.030575e+02 2.865516e+01 lineto +1.036238e+02 2.984123e+01 lineto +1.035e+02 2.91275e+01 lineto +closepath +gsave +4.528441e-01 4.528441e-01 5.660552e-01 setrgbcolor +fill +grestore +newpath +1.035e+02 2.91275e+01 moveto +1.029355e+02 2.795189e+01 lineto +1.030575e+02 2.865516e+01 lineto +1.036238e+02 2.984123e+01 lineto +1.035e+02 2.91275e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.040281e+02 3.031908e+01 moveto +1.035e+02 2.91275e+01 lineto +1.036238e+02 2.984123e+01 lineto +1.041537e+02 3.10426e+01 lineto +1.040281e+02 3.031908e+01 lineto +closepath +gsave +4.50296e-01 4.50296e-01 5.6287e-01 setrgbcolor +fill +grestore +newpath +1.040281e+02 3.031908e+01 moveto +1.035e+02 2.91275e+01 lineto +1.036238e+02 2.984123e+01 lineto +1.041537e+02 3.10426e+01 lineto +1.040281e+02 3.031908e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.045193e+02 3.15255e+01 moveto +1.040281e+02 3.031908e+01 lineto +1.041537e+02 3.10426e+01 lineto +1.046464e+02 3.225813e+01 lineto +1.045193e+02 3.15255e+01 lineto +closepath +gsave +4.478668e-01 4.478668e-01 5.598335e-01 setrgbcolor +fill +grestore +newpath +1.045193e+02 3.15255e+01 moveto +1.040281e+02 3.031908e+01 lineto +1.041537e+02 3.10426e+01 lineto +1.046464e+02 3.225813e+01 lineto +1.045193e+02 3.15255e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.04973e+02 3.274564e+01 moveto +1.045193e+02 3.15255e+01 lineto +1.046464e+02 3.225813e+01 lineto +1.051016e+02 3.348668e+01 lineto +1.04973e+02 3.274564e+01 lineto +closepath +gsave +4.455554e-01 4.455554e-01 5.569442e-01 setrgbcolor +fill +grestore +newpath +1.04973e+02 3.274564e+01 moveto +1.045193e+02 3.15255e+01 lineto +1.046464e+02 3.225813e+01 lineto +1.051016e+02 3.348668e+01 lineto +1.04973e+02 3.274564e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.631288e+01 4.068685e+00 moveto +6.500425e+01 4.000158e+00 lineto +6.500424e+01 4.000236e+00 lineto +6.6309e+01 4.092645e+00 lineto +6.631288e+01 4.068685e+00 lineto +closepath +gsave +6.067658e-01 6.067658e-01 7.584572e-01 setrgbcolor +fill +grestore +newpath +6.631288e+01 4.068685e+00 moveto +6.500425e+01 4.000158e+00 lineto +6.500424e+01 4.000236e+00 lineto +6.6309e+01 4.092645e+00 lineto +6.631288e+01 4.068685e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.762027e+01 4.176912e+00 moveto +6.631288e+01 4.068685e+00 lineto +6.6309e+01 4.092645e+00 lineto +6.761252e+01 4.224734e+00 lineto +6.762027e+01 4.176912e+00 lineto +closepath +gsave +6.023731e-01 6.023731e-01 7.529664e-01 setrgbcolor +fill +grestore +newpath +6.762027e+01 4.176912e+00 moveto +6.631288e+01 4.068685e+00 lineto +6.6309e+01 4.092645e+00 lineto +6.761252e+01 4.224734e+00 lineto +6.762027e+01 4.176912e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.892518e+01 4.324739e+00 moveto +6.762027e+01 4.176912e+00 lineto +6.761252e+01 4.224734e+00 lineto +6.891356e+01 4.396375e+00 lineto +6.892518e+01 4.324739e+00 lineto +closepath +gsave +5.979362e-01 5.979362e-01 7.474202e-01 setrgbcolor +fill +grestore +newpath +6.892518e+01 4.324739e+00 moveto +6.762027e+01 4.176912e+00 lineto +6.761252e+01 4.224734e+00 lineto +6.891356e+01 4.396375e+00 lineto +6.892518e+01 4.324739e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.022637e+01 4.512024e+00 moveto +6.892518e+01 4.324739e+00 lineto +6.891356e+01 4.396375e+00 lineto +7.02109e+01 4.607407e+00 lineto +7.022637e+01 4.512024e+00 lineto +closepath +gsave +5.934611e-01 5.934611e-01 7.418264e-01 setrgbcolor +fill +grestore +newpath +7.022637e+01 4.512024e+00 moveto +6.892518e+01 4.324739e+00 lineto +6.891356e+01 4.396375e+00 lineto +7.02109e+01 4.607407e+00 lineto +7.022637e+01 4.512024e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.152261e+01 4.73859e+00 moveto +7.022637e+01 4.512024e+00 lineto +7.02109e+01 4.607407e+00 lineto +7.150331e+01 4.85763e+00 lineto +7.152261e+01 4.73859e+00 lineto +closepath +gsave +5.889541e-01 5.889541e-01 7.361926e-01 setrgbcolor +fill +grestore +newpath +7.152261e+01 4.73859e+00 moveto +7.022637e+01 4.512024e+00 lineto +7.02109e+01 4.607407e+00 lineto +7.150331e+01 4.85763e+00 lineto +7.152261e+01 4.73859e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.281268e+01 5.004222e+00 moveto +7.152261e+01 4.73859e+00 lineto +7.150331e+01 4.85763e+00 lineto +7.278956e+01 5.146808e+00 lineto +7.281268e+01 5.004222e+00 lineto +closepath +gsave +5.844214e-01 5.844214e-01 7.305267e-01 setrgbcolor +fill +grestore +newpath +7.281268e+01 5.004222e+00 moveto +7.152261e+01 4.73859e+00 lineto +7.150331e+01 4.85763e+00 lineto +7.278956e+01 5.146808e+00 lineto +7.281268e+01 5.004222e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.409534e+01 5.30867e+00 moveto +7.281268e+01 5.004222e+00 lineto +7.278956e+01 5.146808e+00 lineto +7.406843e+01 5.474665e+00 lineto +7.409534e+01 5.30867e+00 lineto +closepath +gsave +5.798692e-01 5.798692e-01 7.248366e-01 setrgbcolor +fill +grestore +newpath +7.409534e+01 5.30867e+00 moveto +7.281268e+01 5.004222e+00 lineto +7.278956e+01 5.146808e+00 lineto +7.406843e+01 5.474665e+00 lineto +7.409534e+01 5.30867e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.53694e+01 5.651645e+00 moveto +7.409534e+01 5.30867e+00 lineto +7.406843e+01 5.474665e+00 lineto +7.533872e+01 5.840892e+00 lineto +7.53694e+01 5.651645e+00 lineto +closepath +gsave +5.753041e-01 5.753041e-01 7.191301e-01 setrgbcolor +fill +grestore +newpath +7.53694e+01 5.651645e+00 moveto +7.409534e+01 5.30867e+00 lineto +7.406843e+01 5.474665e+00 lineto +7.533872e+01 5.840892e+00 lineto +7.53694e+01 5.651645e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.663364e+01 6.032822e+00 moveto +7.53694e+01 5.651645e+00 lineto +7.533872e+01 5.840892e+00 lineto +7.659922e+01 6.245142e+00 lineto +7.663364e+01 6.032822e+00 lineto +closepath +gsave +5.707322e-01 5.707322e-01 7.134153e-01 setrgbcolor +fill +grestore +newpath +7.663364e+01 6.032822e+00 moveto +7.53694e+01 5.651645e+00 lineto +7.533872e+01 5.840892e+00 lineto +7.659922e+01 6.245142e+00 lineto +7.663364e+01 6.032822e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.788687e+01 6.45184e+00 moveto +7.663364e+01 6.032822e+00 lineto +7.659922e+01 6.245142e+00 lineto +7.784873e+01 6.687032e+00 lineto +7.788687e+01 6.45184e+00 lineto +closepath +gsave +5.661601e-01 5.661601e-01 7.077001e-01 setrgbcolor +fill +grestore +newpath +7.788687e+01 6.45184e+00 moveto +7.663364e+01 6.032822e+00 lineto +7.659922e+01 6.245142e+00 lineto +7.784873e+01 6.687032e+00 lineto +7.788687e+01 6.45184e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.912789e+01 6.908303e+00 moveto +7.788687e+01 6.45184e+00 lineto +7.784873e+01 6.687032e+00 lineto +7.908608e+01 7.166145e+00 lineto +7.912789e+01 6.908303e+00 lineto +closepath +gsave +5.615938e-01 5.615938e-01 7.019923e-01 setrgbcolor +fill +grestore +newpath +7.912789e+01 6.908303e+00 moveto +7.788687e+01 6.45184e+00 lineto +7.784873e+01 6.687032e+00 lineto +7.908608e+01 7.166145e+00 lineto +7.912789e+01 6.908303e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.035554e+01 7.401779e+00 moveto +7.912789e+01 6.908303e+00 lineto +7.908608e+01 7.166145e+00 lineto +8.03101e+01 7.682025e+00 lineto +8.035554e+01 7.401779e+00 lineto +closepath +gsave +5.570399e-01 5.570399e-01 6.962999e-01 setrgbcolor +fill +grestore +newpath +8.035554e+01 7.401779e+00 moveto +7.912789e+01 6.908303e+00 lineto +7.908608e+01 7.166145e+00 lineto +8.03101e+01 7.682025e+00 lineto +8.035554e+01 7.401779e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.156864e+01 7.931799e+00 moveto +8.035554e+01 7.401779e+00 lineto +8.03101e+01 7.682025e+00 lineto +8.151962e+01 8.234185e+00 lineto +8.156864e+01 7.931799e+00 lineto +closepath +gsave +5.525044e-01 5.525044e-01 6.906305e-01 setrgbcolor +fill +grestore +newpath +8.156864e+01 7.931799e+00 moveto +8.035554e+01 7.401779e+00 lineto +8.03101e+01 7.682025e+00 lineto +8.151962e+01 8.234185e+00 lineto +8.156864e+01 7.931799e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.276606e+01 8.497863e+00 moveto +8.156864e+01 7.931799e+00 lineto +8.151962e+01 8.234185e+00 lineto +8.271349e+01 8.822103e+00 lineto +8.276606e+01 8.497863e+00 lineto +closepath +gsave +5.479935e-01 5.479935e-01 6.849919e-01 setrgbcolor +fill +grestore +newpath +8.276606e+01 8.497863e+00 moveto +8.156864e+01 7.931799e+00 lineto +8.151962e+01 8.234185e+00 lineto +8.271349e+01 8.822103e+00 lineto +8.276606e+01 8.497863e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.394666e+01 9.099434e+00 moveto +8.276606e+01 8.497863e+00 lineto +8.271349e+01 8.822103e+00 lineto +8.38906e+01 9.445221e+00 lineto +8.394666e+01 9.099434e+00 lineto +closepath +gsave +5.435133e-01 5.435133e-01 6.793916e-01 setrgbcolor +fill +grestore +newpath +8.394666e+01 9.099434e+00 moveto +8.276606e+01 8.497863e+00 lineto +8.271349e+01 8.822103e+00 lineto +8.38906e+01 9.445221e+00 lineto +8.394666e+01 9.099434e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.510933e+01 9.735943e+00 moveto +8.394666e+01 9.099434e+00 lineto +8.38906e+01 9.445221e+00 lineto +8.504982e+01 1.010295e+01 lineto +8.510933e+01 9.735943e+00 lineto +closepath +gsave +5.390696e-01 5.390696e-01 6.73837e-01 setrgbcolor +fill +grestore +newpath +8.510933e+01 9.735943e+00 moveto +8.394666e+01 9.099434e+00 lineto +8.38906e+01 9.445221e+00 lineto +8.504982e+01 1.010295e+01 lineto +8.510933e+01 9.735943e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.625295e+01 1.040679e+01 moveto +8.510933e+01 9.735943e+00 lineto +8.504982e+01 1.010295e+01 lineto +8.619006e+01 1.079466e+01 lineto +8.625295e+01 1.040679e+01 lineto +closepath +gsave +5.346681e-01 5.346681e-01 6.683351e-01 setrgbcolor +fill +grestore +newpath +8.625295e+01 1.040679e+01 moveto +8.510933e+01 9.735943e+00 lineto +8.504982e+01 1.010295e+01 lineto +8.619006e+01 1.079466e+01 lineto +8.625295e+01 1.040679e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.737644e+01 1.111133e+01 moveto +8.625295e+01 1.040679e+01 lineto +8.619006e+01 1.079466e+01 lineto +8.731023e+01 1.151971e+01 lineto +8.737644e+01 1.111133e+01 lineto +closepath +gsave +5.303145e-01 5.303145e-01 6.628932e-01 setrgbcolor +fill +grestore +newpath +8.737644e+01 1.111133e+01 moveto +8.625295e+01 1.040679e+01 lineto +8.619006e+01 1.079466e+01 lineto +8.731023e+01 1.151971e+01 lineto +8.737644e+01 1.111133e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.847876e+01 1.184891e+01 moveto +8.737644e+01 1.111133e+01 lineto +8.731023e+01 1.151971e+01 lineto +8.840928e+01 1.227741e+01 lineto +8.847876e+01 1.184891e+01 lineto +closepath +gsave +5.260143e-01 5.260143e-01 6.575178e-01 setrgbcolor +fill +grestore +newpath +8.847876e+01 1.184891e+01 moveto +8.737644e+01 1.111133e+01 lineto +8.731023e+01 1.151971e+01 lineto +8.840928e+01 1.227741e+01 lineto +8.847876e+01 1.184891e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.955884e+01 1.261882e+01 moveto +8.847876e+01 1.184891e+01 lineto +8.840928e+01 1.227741e+01 lineto +8.948617e+01 1.306703e+01 lineto +8.955884e+01 1.261882e+01 lineto +closepath +gsave +5.217725e-01 5.217725e-01 6.522156e-01 setrgbcolor +fill +grestore +newpath +8.955884e+01 1.261882e+01 moveto +8.847876e+01 1.184891e+01 lineto +8.840928e+01 1.227741e+01 lineto +8.948617e+01 1.306703e+01 lineto +8.955884e+01 1.261882e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.061567e+01 1.342034e+01 moveto +8.955884e+01 1.261882e+01 lineto +8.948617e+01 1.306703e+01 lineto +9.053987e+01 1.388784e+01 lineto +9.061567e+01 1.342034e+01 lineto +closepath +gsave +5.175943e-01 5.175943e-01 6.469929e-01 setrgbcolor +fill +grestore +newpath +9.061567e+01 1.342034e+01 moveto +8.955884e+01 1.261882e+01 lineto +8.948617e+01 1.306703e+01 lineto +9.053987e+01 1.388784e+01 lineto +9.061567e+01 1.342034e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.164825e+01 1.42527e+01 moveto +9.061567e+01 1.342034e+01 lineto +9.053987e+01 1.388784e+01 lineto +9.156939e+01 1.473905e+01 lineto +9.164825e+01 1.42527e+01 lineto +closepath +gsave +5.134844e-01 5.134844e-01 6.418555e-01 setrgbcolor +fill +grestore +newpath +9.164825e+01 1.42527e+01 moveto +9.061567e+01 1.342034e+01 lineto +9.053987e+01 1.388784e+01 lineto +9.156939e+01 1.473905e+01 lineto +9.164825e+01 1.42527e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.265559e+01 1.511512e+01 moveto +9.164825e+01 1.42527e+01 lineto +9.156939e+01 1.473905e+01 lineto +9.257376e+01 1.561985e+01 lineto +9.265559e+01 1.511512e+01 lineto +closepath +gsave +5.094473e-01 5.094473e-01 6.368091e-01 setrgbcolor +fill +grestore +newpath +9.265559e+01 1.511512e+01 moveto +9.164825e+01 1.42527e+01 lineto +9.156939e+01 1.473905e+01 lineto +9.257376e+01 1.561985e+01 lineto +9.265559e+01 1.511512e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.363675e+01 1.600679e+01 moveto +9.265559e+01 1.511512e+01 lineto +9.257376e+01 1.561985e+01 lineto +9.355202e+01 1.652942e+01 lineto +9.363675e+01 1.600679e+01 lineto +closepath +gsave +5.054874e-01 5.054874e-01 6.318592e-01 setrgbcolor +fill +grestore +newpath +9.363675e+01 1.600679e+01 moveto +9.265559e+01 1.511512e+01 lineto +9.257376e+01 1.561985e+01 lineto +9.355202e+01 1.652942e+01 lineto +9.363675e+01 1.600679e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.45908e+01 1.692685e+01 moveto +9.363675e+01 1.600679e+01 lineto +9.355202e+01 1.652942e+01 lineto +9.450324e+01 1.74669e+01 lineto +9.45908e+01 1.692685e+01 lineto +closepath +gsave +5.016086e-01 5.016086e-01 6.270107e-01 setrgbcolor +fill +grestore +newpath +9.45908e+01 1.692685e+01 moveto +9.363675e+01 1.600679e+01 lineto +9.355202e+01 1.652942e+01 lineto +9.450324e+01 1.74669e+01 lineto +9.45908e+01 1.692685e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.551683e+01 1.787444e+01 moveto +9.45908e+01 1.692685e+01 lineto +9.450324e+01 1.74669e+01 lineto +9.542653e+01 1.843139e+01 lineto +9.551683e+01 1.787444e+01 lineto +closepath +gsave +4.978147e-01 4.978147e-01 6.222684e-01 setrgbcolor +fill +grestore +newpath +9.551683e+01 1.787444e+01 moveto +9.45908e+01 1.692685e+01 lineto +9.450324e+01 1.74669e+01 lineto +9.542653e+01 1.843139e+01 lineto +9.551683e+01 1.787444e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.641397e+01 1.884866e+01 moveto +9.551683e+01 1.787444e+01 lineto +9.542653e+01 1.843139e+01 lineto +9.632101e+01 1.942198e+01 lineto +9.641397e+01 1.884866e+01 lineto +closepath +gsave +4.941092e-01 4.941092e-01 6.176365e-01 setrgbcolor +fill +grestore +newpath +9.641397e+01 1.884866e+01 moveto +9.551683e+01 1.787444e+01 lineto +9.542653e+01 1.843139e+01 lineto +9.632101e+01 1.942198e+01 lineto +9.641397e+01 1.884866e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.728136e+01 1.984859e+01 moveto +9.641397e+01 1.884866e+01 lineto +9.632101e+01 1.942198e+01 lineto +9.718584e+01 2.043774e+01 lineto +9.728136e+01 1.984859e+01 lineto +closepath +gsave +4.904952e-01 4.904952e-01 6.13119e-01 setrgbcolor +fill +grestore +newpath +9.728136e+01 1.984859e+01 moveto +9.641397e+01 1.884866e+01 lineto +9.632101e+01 1.942198e+01 lineto +9.718584e+01 2.043774e+01 lineto +9.728136e+01 1.984859e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.811819e+01 2.087327e+01 moveto +9.728136e+01 1.984859e+01 lineto +9.718584e+01 2.043774e+01 lineto +9.802019e+01 2.14777e+01 lineto +9.811819e+01 2.087327e+01 lineto +closepath +gsave +4.869756e-01 4.869756e-01 6.087195e-01 setrgbcolor +fill +grestore +newpath +9.811819e+01 2.087327e+01 moveto +9.728136e+01 1.984859e+01 lineto +9.718584e+01 2.043774e+01 lineto +9.802019e+01 2.14777e+01 lineto +9.811819e+01 2.087327e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.892367e+01 2.192175e+01 moveto +9.811819e+01 2.087327e+01 lineto +9.802019e+01 2.14777e+01 lineto +9.882328e+01 2.254087e+01 lineto +9.892367e+01 2.192175e+01 lineto +closepath +gsave +4.83553e-01 4.83553e-01 6.044413e-01 setrgbcolor +fill +grestore +newpath +9.892367e+01 2.192175e+01 moveto +9.811819e+01 2.087327e+01 lineto +9.802019e+01 2.14777e+01 lineto +9.882328e+01 2.254087e+01 lineto +9.892367e+01 2.192175e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.969702e+01 2.299302e+01 moveto +9.892367e+01 2.192175e+01 lineto +9.882328e+01 2.254087e+01 lineto +9.959435e+01 2.362626e+01 lineto +9.969702e+01 2.299302e+01 lineto +closepath +gsave +4.802296e-01 4.802296e-01 6.002871e-01 setrgbcolor +fill +grestore +newpath +9.969702e+01 2.299302e+01 moveto +9.892367e+01 2.192175e+01 lineto +9.882328e+01 2.254087e+01 lineto +9.959435e+01 2.362626e+01 lineto +9.969702e+01 2.299302e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.004375e+02 2.408608e+01 moveto +9.969702e+01 2.299302e+01 lineto +9.959435e+01 2.362626e+01 lineto +1.003327e+02 2.473283e+01 lineto +1.004375e+02 2.408608e+01 lineto +closepath +gsave +4.770075e-01 4.770075e-01 5.962593e-01 setrgbcolor +fill +grestore +newpath +1.004375e+02 2.408608e+01 moveto +9.969702e+01 2.299302e+01 lineto +9.959435e+01 2.362626e+01 lineto +1.003327e+02 2.473283e+01 lineto +1.004375e+02 2.408608e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.011445e+02 2.519989e+01 moveto +1.004375e+02 2.408608e+01 lineto +1.003327e+02 2.473283e+01 lineto +1.010375e+02 2.585954e+01 lineto +1.011445e+02 2.519989e+01 lineto +closepath +gsave +4.738882e-01 4.738882e-01 5.923602e-01 setrgbcolor +fill +grestore +newpath +1.011445e+02 2.519989e+01 moveto +1.004375e+02 2.408608e+01 lineto +1.003327e+02 2.473283e+01 lineto +1.010375e+02 2.585954e+01 lineto +1.011445e+02 2.519989e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.018172e+02 2.633339e+01 moveto +1.011445e+02 2.519989e+01 lineto +1.010375e+02 2.585954e+01 lineto +1.017083e+02 2.700532e+01 lineto +1.018172e+02 2.633339e+01 lineto +closepath +gsave +4.708731e-01 4.708731e-01 5.885914e-01 setrgbcolor +fill +grestore +newpath +1.018172e+02 2.633339e+01 moveto +1.011445e+02 2.519989e+01 lineto +1.010375e+02 2.585954e+01 lineto +1.017083e+02 2.700532e+01 lineto +1.018172e+02 2.633339e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.024551e+02 2.748551e+01 moveto +1.018172e+02 2.633339e+01 lineto +1.017083e+02 2.700532e+01 lineto +1.023442e+02 2.816908e+01 lineto +1.024551e+02 2.748551e+01 lineto +closepath +gsave +4.679633e-01 4.679633e-01 5.849541e-01 setrgbcolor +fill +grestore +newpath +1.024551e+02 2.748551e+01 moveto +1.018172e+02 2.633339e+01 lineto +1.017083e+02 2.700532e+01 lineto +1.023442e+02 2.816908e+01 lineto +1.024551e+02 2.748551e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.030575e+02 2.865516e+01 moveto +1.024551e+02 2.748551e+01 lineto +1.023442e+02 2.816908e+01 lineto +1.029449e+02 2.934973e+01 lineto +1.030575e+02 2.865516e+01 lineto +closepath +gsave +4.651596e-01 4.651596e-01 5.814495e-01 setrgbcolor +fill +grestore +newpath +1.030575e+02 2.865516e+01 moveto +1.024551e+02 2.748551e+01 lineto +1.023442e+02 2.816908e+01 lineto +1.029449e+02 2.934973e+01 lineto +1.030575e+02 2.865516e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.036238e+02 2.984123e+01 moveto +1.030575e+02 2.865516e+01 lineto +1.029449e+02 2.934973e+01 lineto +1.035096e+02 3.054613e+01 lineto +1.036238e+02 2.984123e+01 lineto +closepath +gsave +4.624625e-01 4.624625e-01 5.780781e-01 setrgbcolor +fill +grestore +newpath +1.036238e+02 2.984123e+01 moveto +1.030575e+02 2.865516e+01 lineto +1.029449e+02 2.934973e+01 lineto +1.035096e+02 3.054613e+01 lineto +1.036238e+02 2.984123e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.041537e+02 3.10426e+01 moveto +1.036238e+02 2.984123e+01 lineto +1.035096e+02 3.054613e+01 lineto +1.040378e+02 3.175717e+01 lineto +1.041537e+02 3.10426e+01 lineto +closepath +gsave +4.598721e-01 4.598721e-01 5.748402e-01 setrgbcolor +fill +grestore +newpath +1.041537e+02 3.10426e+01 moveto +1.036238e+02 2.984123e+01 lineto +1.035096e+02 3.054613e+01 lineto +1.040378e+02 3.175717e+01 lineto +1.041537e+02 3.10426e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.046464e+02 3.225813e+01 moveto +1.041537e+02 3.10426e+01 lineto +1.040378e+02 3.175717e+01 lineto +1.045291e+02 3.29817e+01 lineto +1.046464e+02 3.225813e+01 lineto +closepath +gsave +4.573886e-01 4.573886e-01 5.717357e-01 setrgbcolor +fill +grestore +newpath +1.046464e+02 3.225813e+01 moveto +1.041537e+02 3.10426e+01 lineto +1.040378e+02 3.175717e+01 lineto +1.045291e+02 3.29817e+01 lineto +1.046464e+02 3.225813e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.051016e+02 3.348668e+01 moveto +1.046464e+02 3.225813e+01 lineto +1.045291e+02 3.29817e+01 lineto +1.049829e+02 3.421855e+01 lineto +1.051016e+02 3.348668e+01 lineto +closepath +gsave +4.550115e-01 4.550115e-01 5.687644e-01 setrgbcolor +fill +grestore +newpath +1.051016e+02 3.348668e+01 moveto +1.046464e+02 3.225813e+01 lineto +1.045291e+02 3.29817e+01 lineto +1.049829e+02 3.421855e+01 lineto +1.051016e+02 3.348668e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.6309e+01 4.092645e+00 moveto +6.500424e+01 4.000236e+00 lineto +6.50042e+01 4.000312e+00 lineto +6.629704e+01 4.116158e+00 lineto +6.6309e+01 4.092645e+00 lineto +closepath +gsave +6.070287e-01 6.070287e-01 7.587859e-01 setrgbcolor +fill +grestore +newpath +6.6309e+01 4.092645e+00 moveto +6.500424e+01 4.000236e+00 lineto +6.50042e+01 4.000312e+00 lineto +6.629704e+01 4.116158e+00 lineto +6.6309e+01 4.092645e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.761252e+01 4.224734e+00 moveto +6.6309e+01 4.092645e+00 lineto +6.629704e+01 4.116158e+00 lineto +6.758866e+01 4.271661e+00 lineto +6.761252e+01 4.224734e+00 lineto +closepath +gsave +6.031554e-01 6.031554e-01 7.539443e-01 setrgbcolor +fill +grestore +newpath +6.761252e+01 4.224734e+00 moveto +6.6309e+01 4.092645e+00 lineto +6.629704e+01 4.116158e+00 lineto +6.758866e+01 4.271661e+00 lineto +6.761252e+01 4.224734e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.891356e+01 4.396375e+00 moveto +6.761252e+01 4.224734e+00 lineto +6.758866e+01 4.271661e+00 lineto +6.887782e+01 4.466673e+00 lineto +6.891356e+01 4.396375e+00 lineto +closepath +gsave +5.992332e-01 5.992332e-01 7.490415e-01 setrgbcolor +fill +grestore +newpath +6.891356e+01 4.396375e+00 moveto +6.761252e+01 4.224734e+00 lineto +6.758866e+01 4.271661e+00 lineto +6.887782e+01 4.466673e+00 lineto +6.891356e+01 4.396375e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.02109e+01 4.607407e+00 moveto +6.891356e+01 4.396375e+00 lineto +6.887782e+01 4.466673e+00 lineto +7.016331e+01 4.701009e+00 lineto +7.02109e+01 4.607407e+00 lineto +closepath +gsave +5.952671e-01 5.952671e-01 7.440838e-01 setrgbcolor +fill +grestore +newpath +7.02109e+01 4.607407e+00 moveto +6.891356e+01 4.396375e+00 lineto +6.887782e+01 4.466673e+00 lineto +7.016331e+01 4.701009e+00 lineto +7.02109e+01 4.607407e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.150331e+01 4.85763e+00 moveto +7.02109e+01 4.607407e+00 lineto +7.016331e+01 4.701009e+00 lineto +7.144391e+01 4.974447e+00 lineto +7.150331e+01 4.85763e+00 lineto +closepath +gsave +5.912624e-01 5.912624e-01 7.39078e-01 setrgbcolor +fill +grestore +newpath +7.150331e+01 4.85763e+00 moveto +7.02109e+01 4.607407e+00 lineto +7.016331e+01 4.701009e+00 lineto +7.144391e+01 4.974447e+00 lineto +7.150331e+01 4.85763e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.278956e+01 5.146808e+00 moveto +7.150331e+01 4.85763e+00 lineto +7.144391e+01 4.974447e+00 lineto +7.271841e+01 5.286728e+00 lineto +7.278956e+01 5.146808e+00 lineto +closepath +gsave +5.872244e-01 5.872244e-01 7.340305e-01 setrgbcolor +fill +grestore +newpath +7.278956e+01 5.146808e+00 moveto +7.150331e+01 4.85763e+00 lineto +7.144391e+01 4.974447e+00 lineto +7.271841e+01 5.286728e+00 lineto +7.278956e+01 5.146808e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.406843e+01 5.474665e+00 moveto +7.278956e+01 5.146808e+00 lineto +7.271841e+01 5.286728e+00 lineto +7.398561e+01 5.637557e+00 lineto +7.406843e+01 5.474665e+00 lineto +closepath +gsave +5.831586e-01 5.831586e-01 7.289483e-01 setrgbcolor +fill +grestore +newpath +7.406843e+01 5.474665e+00 moveto +7.278956e+01 5.146808e+00 lineto +7.271841e+01 5.286728e+00 lineto +7.398561e+01 5.637557e+00 lineto +7.406843e+01 5.474665e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.533872e+01 5.840892e+00 moveto +7.406843e+01 5.474665e+00 lineto +7.398561e+01 5.637557e+00 lineto +7.524429e+01 6.026602e+00 lineto +7.533872e+01 5.840892e+00 lineto +closepath +gsave +5.790704e-01 5.790704e-01 7.23838e-01 setrgbcolor +fill +grestore +newpath +7.533872e+01 5.840892e+00 moveto +7.406843e+01 5.474665e+00 lineto +7.398561e+01 5.637557e+00 lineto +7.524429e+01 6.026602e+00 lineto +7.533872e+01 5.840892e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.659922e+01 6.245142e+00 moveto +7.533872e+01 5.840892e+00 lineto +7.524429e+01 6.026602e+00 lineto +7.649328e+01 6.453494e+00 lineto +7.659922e+01 6.245142e+00 lineto +closepath +gsave +5.749651e-01 5.749651e-01 7.187064e-01 setrgbcolor +fill +grestore +newpath +7.659922e+01 6.245142e+00 moveto +7.533872e+01 5.840892e+00 lineto +7.524429e+01 6.026602e+00 lineto +7.649328e+01 6.453494e+00 lineto +7.659922e+01 6.245142e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.784873e+01 6.687032e+00 moveto +7.659922e+01 6.245142e+00 lineto +7.649328e+01 6.453494e+00 lineto +7.773138e+01 6.917829e+00 lineto +7.784873e+01 6.687032e+00 lineto +closepath +gsave +5.708484e-01 5.708484e-01 7.135605e-01 setrgbcolor +fill +grestore +newpath +7.784873e+01 6.687032e+00 moveto +7.659922e+01 6.245142e+00 lineto +7.649328e+01 6.453494e+00 lineto +7.773138e+01 6.917829e+00 lineto +7.784873e+01 6.687032e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.908608e+01 7.166145e+00 moveto +7.784873e+01 6.687032e+00 lineto +7.773138e+01 6.917829e+00 lineto +7.895743e+01 7.419167e+00 lineto +7.908608e+01 7.166145e+00 lineto +closepath +gsave +5.667256e-01 5.667256e-01 7.08407e-01 setrgbcolor +fill +grestore +newpath +7.908608e+01 7.166145e+00 moveto +7.784873e+01 6.687032e+00 lineto +7.773138e+01 6.917829e+00 lineto +7.895743e+01 7.419167e+00 lineto +7.908608e+01 7.166145e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.03101e+01 7.682025e+00 moveto +7.908608e+01 7.166145e+00 lineto +7.895743e+01 7.419167e+00 lineto +8.017027e+01 7.957034e+00 lineto +8.03101e+01 7.682025e+00 lineto +closepath +gsave +5.626023e-01 5.626023e-01 7.032529e-01 setrgbcolor +fill +grestore +newpath +8.03101e+01 7.682025e+00 moveto +7.908608e+01 7.166145e+00 lineto +7.895743e+01 7.419167e+00 lineto +8.017027e+01 7.957034e+00 lineto +8.03101e+01 7.682025e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.151962e+01 8.234185e+00 moveto +8.03101e+01 7.682025e+00 lineto +8.017027e+01 7.957034e+00 lineto +8.136874e+01 8.53092e+00 lineto +8.151962e+01 8.234185e+00 lineto +closepath +gsave +5.584839e-01 5.584839e-01 6.981048e-01 setrgbcolor +fill +grestore +newpath +8.151962e+01 8.234185e+00 moveto +8.03101e+01 7.682025e+00 lineto +8.017027e+01 7.957034e+00 lineto +8.136874e+01 8.53092e+00 lineto +8.151962e+01 8.234185e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.271349e+01 8.822103e+00 moveto +8.151962e+01 8.234185e+00 lineto +8.136874e+01 8.53092e+00 lineto +8.255171e+01 9.140283e+00 lineto +8.271349e+01 8.822103e+00 lineto +closepath +gsave +5.543757e-01 5.543757e-01 6.929696e-01 setrgbcolor +fill +grestore +newpath +8.271349e+01 8.822103e+00 moveto +8.151962e+01 8.234185e+00 lineto +8.136874e+01 8.53092e+00 lineto +8.255171e+01 9.140283e+00 lineto +8.271349e+01 8.822103e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.38906e+01 9.445221e+00 moveto +8.271349e+01 8.822103e+00 lineto +8.255171e+01 9.140283e+00 lineto +8.371807e+01 9.784544e+00 lineto +8.38906e+01 9.445221e+00 lineto +closepath +gsave +5.50283e-01 5.50283e-01 6.878538e-01 setrgbcolor +fill +grestore +newpath +8.38906e+01 9.445221e+00 moveto +8.271349e+01 8.822103e+00 lineto +8.255171e+01 9.140283e+00 lineto +8.371807e+01 9.784544e+00 lineto +8.38906e+01 9.445221e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.504982e+01 1.010295e+01 moveto +8.38906e+01 9.445221e+00 lineto +8.371807e+01 9.784544e+00 lineto +8.48667e+01 1.04631e+01 lineto +8.504982e+01 1.010295e+01 lineto +closepath +gsave +5.462113e-01 5.462113e-01 6.827641e-01 setrgbcolor +fill +grestore +newpath +8.504982e+01 1.010295e+01 moveto +8.38906e+01 9.445221e+00 lineto +8.371807e+01 9.784544e+00 lineto +8.48667e+01 1.04631e+01 lineto +8.504982e+01 1.010295e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.619006e+01 1.079466e+01 moveto +8.504982e+01 1.010295e+01 lineto +8.48667e+01 1.04631e+01 lineto +8.599653e+01 1.117529e+01 lineto +8.619006e+01 1.079466e+01 lineto +closepath +gsave +5.421655e-01 5.421655e-01 6.777069e-01 setrgbcolor +fill +grestore +newpath +8.619006e+01 1.079466e+01 moveto +8.504982e+01 1.010295e+01 lineto +8.48667e+01 1.04631e+01 lineto +8.599653e+01 1.117529e+01 lineto +8.619006e+01 1.079466e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.731023e+01 1.151971e+01 moveto +8.619006e+01 1.079466e+01 lineto +8.599653e+01 1.117529e+01 lineto +8.710647e+01 1.192046e+01 lineto +8.731023e+01 1.151971e+01 lineto +closepath +gsave +5.381507e-01 5.381507e-01 6.726884e-01 setrgbcolor +fill +grestore +newpath +8.731023e+01 1.151971e+01 moveto +8.619006e+01 1.079466e+01 lineto +8.599653e+01 1.117529e+01 lineto +8.710647e+01 1.192046e+01 lineto +8.731023e+01 1.151971e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.840928e+01 1.227741e+01 moveto +8.731023e+01 1.151971e+01 lineto +8.710647e+01 1.192046e+01 lineto +8.819548e+01 1.26979e+01 lineto +8.840928e+01 1.227741e+01 lineto +closepath +gsave +5.34172e-01 5.34172e-01 6.67715e-01 setrgbcolor +fill +grestore +newpath +8.840928e+01 1.227741e+01 moveto +8.731023e+01 1.151971e+01 lineto +8.710647e+01 1.192046e+01 lineto +8.819548e+01 1.26979e+01 lineto +8.840928e+01 1.227741e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.948617e+01 1.306703e+01 moveto +8.840928e+01 1.227741e+01 lineto +8.819548e+01 1.26979e+01 lineto +8.926253e+01 1.350687e+01 lineto +8.948617e+01 1.306703e+01 lineto +closepath +gsave +5.30234e-01 5.30234e-01 6.627925e-01 setrgbcolor +fill +grestore +newpath +8.948617e+01 1.306703e+01 moveto +8.840928e+01 1.227741e+01 lineto +8.819548e+01 1.26979e+01 lineto +8.926253e+01 1.350687e+01 lineto +8.948617e+01 1.306703e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.053987e+01 1.388784e+01 moveto +8.948617e+01 1.306703e+01 lineto +8.926253e+01 1.350687e+01 lineto +9.030661e+01 1.43466e+01 lineto +9.053987e+01 1.388784e+01 lineto +closepath +gsave +5.263414e-01 5.263414e-01 6.579268e-01 setrgbcolor +fill +grestore +newpath +9.053987e+01 1.388784e+01 moveto +8.948617e+01 1.306703e+01 lineto +8.926253e+01 1.350687e+01 lineto +9.030661e+01 1.43466e+01 lineto +9.053987e+01 1.388784e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.156939e+01 1.473905e+01 moveto +9.053987e+01 1.388784e+01 lineto +9.030661e+01 1.43466e+01 lineto +9.132673e+01 1.52163e+01 lineto +9.156939e+01 1.473905e+01 lineto +closepath +gsave +5.224987e-01 5.224987e-01 6.531234e-01 setrgbcolor +fill +grestore +newpath +9.156939e+01 1.473905e+01 moveto +9.053987e+01 1.388784e+01 lineto +9.030661e+01 1.43466e+01 lineto +9.132673e+01 1.52163e+01 lineto +9.156939e+01 1.473905e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.257376e+01 1.561985e+01 moveto +9.156939e+01 1.473905e+01 lineto +9.132673e+01 1.52163e+01 lineto +9.232192e+01 1.611515e+01 lineto +9.257376e+01 1.561985e+01 lineto +closepath +gsave +5.187103e-01 5.187103e-01 6.483878e-01 setrgbcolor +fill +grestore +newpath +9.257376e+01 1.561985e+01 moveto +9.156939e+01 1.473905e+01 lineto +9.132673e+01 1.52163e+01 lineto +9.232192e+01 1.611515e+01 lineto +9.257376e+01 1.561985e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.355202e+01 1.652942e+01 moveto +9.257376e+01 1.561985e+01 lineto +9.232192e+01 1.611515e+01 lineto +9.329125e+01 1.704229e+01 lineto +9.355202e+01 1.652942e+01 lineto +closepath +gsave +5.149801e-01 5.149801e-01 6.437251e-01 setrgbcolor +fill +grestore +newpath +9.355202e+01 1.652942e+01 moveto +9.257376e+01 1.561985e+01 lineto +9.232192e+01 1.611515e+01 lineto +9.329125e+01 1.704229e+01 lineto +9.355202e+01 1.652942e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.450324e+01 1.74669e+01 moveto +9.355202e+01 1.652942e+01 lineto +9.329125e+01 1.704229e+01 lineto +9.423378e+01 1.799685e+01 lineto +9.450324e+01 1.74669e+01 lineto +closepath +gsave +5.113122e-01 5.113122e-01 6.391403e-01 setrgbcolor +fill +grestore +newpath +9.450324e+01 1.74669e+01 moveto +9.355202e+01 1.652942e+01 lineto +9.329125e+01 1.704229e+01 lineto +9.423378e+01 1.799685e+01 lineto +9.450324e+01 1.74669e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.542653e+01 1.843139e+01 moveto +9.450324e+01 1.74669e+01 lineto +9.423378e+01 1.799685e+01 lineto +9.514864e+01 1.897793e+01 lineto +9.542653e+01 1.843139e+01 lineto +closepath +gsave +5.077103e-01 5.077103e-01 6.346379e-01 setrgbcolor +fill +grestore +newpath +9.542653e+01 1.843139e+01 moveto +9.450324e+01 1.74669e+01 lineto +9.423378e+01 1.799685e+01 lineto +9.514864e+01 1.897793e+01 lineto +9.542653e+01 1.843139e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.632101e+01 1.942198e+01 moveto +9.542653e+01 1.843139e+01 lineto +9.514864e+01 1.897793e+01 lineto +9.603495e+01 1.998459e+01 lineto +9.632101e+01 1.942198e+01 lineto +closepath +gsave +5.041779e-01 5.041779e-01 6.302224e-01 setrgbcolor +fill +grestore +newpath +9.632101e+01 1.942198e+01 moveto +9.542653e+01 1.843139e+01 lineto +9.514864e+01 1.897793e+01 lineto +9.603495e+01 1.998459e+01 lineto +9.632101e+01 1.942198e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.718584e+01 2.043774e+01 moveto +9.632101e+01 1.942198e+01 lineto +9.603495e+01 1.998459e+01 lineto +9.689188e+01 2.101588e+01 lineto +9.718584e+01 2.043774e+01 lineto +closepath +gsave +5.007182e-01 5.007182e-01 6.258978e-01 setrgbcolor +fill +grestore +newpath +9.718584e+01 2.043774e+01 moveto +9.632101e+01 1.942198e+01 lineto +9.603495e+01 1.998459e+01 lineto +9.689188e+01 2.101588e+01 lineto +9.718584e+01 2.043774e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.802019e+01 2.14777e+01 moveto +9.718584e+01 2.043774e+01 lineto +9.689188e+01 2.101588e+01 lineto +9.771862e+01 2.207082e+01 lineto +9.802019e+01 2.14777e+01 lineto +closepath +gsave +4.973344e-01 4.973344e-01 6.21668e-01 setrgbcolor +fill +grestore +newpath +9.802019e+01 2.14777e+01 moveto +9.718584e+01 2.043774e+01 lineto +9.689188e+01 2.101588e+01 lineto +9.771862e+01 2.207082e+01 lineto +9.802019e+01 2.14777e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.882328e+01 2.254087e+01 moveto +9.802019e+01 2.14777e+01 lineto +9.771862e+01 2.207082e+01 lineto +9.851437e+01 2.314843e+01 lineto +9.882328e+01 2.254087e+01 lineto +closepath +gsave +4.940292e-01 4.940292e-01 6.175364e-01 setrgbcolor +fill +grestore +newpath +9.882328e+01 2.254087e+01 moveto +9.802019e+01 2.14777e+01 lineto +9.771862e+01 2.207082e+01 lineto +9.851437e+01 2.314843e+01 lineto +9.882328e+01 2.254087e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.959435e+01 2.362626e+01 moveto +9.882328e+01 2.254087e+01 lineto +9.851437e+01 2.314843e+01 lineto +9.927839e+01 2.424767e+01 lineto +9.959435e+01 2.362626e+01 lineto +closepath +gsave +4.908051e-01 4.908051e-01 6.135064e-01 setrgbcolor +fill +grestore +newpath +9.959435e+01 2.362626e+01 moveto +9.882328e+01 2.254087e+01 lineto +9.851437e+01 2.314843e+01 lineto +9.927839e+01 2.424767e+01 lineto +9.959435e+01 2.362626e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.003327e+02 2.473283e+01 moveto +9.959435e+01 2.362626e+01 lineto +9.927839e+01 2.424767e+01 lineto +1.0001e+02 2.53675e+01 lineto +1.003327e+02 2.473283e+01 lineto +closepath +gsave +4.876647e-01 4.876647e-01 6.095808e-01 setrgbcolor +fill +grestore +newpath +1.003327e+02 2.473283e+01 moveto +9.959435e+01 2.362626e+01 lineto +9.927839e+01 2.424767e+01 lineto +1.0001e+02 2.53675e+01 lineto +1.003327e+02 2.473283e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.010375e+02 2.585954e+01 moveto +1.003327e+02 2.473283e+01 lineto +1.0001e+02 2.53675e+01 lineto +1.007084e+02 2.650687e+01 lineto +1.010375e+02 2.585954e+01 lineto +closepath +gsave +4.846099e-01 4.846099e-01 6.057623e-01 setrgbcolor +fill +grestore +newpath +1.010375e+02 2.585954e+01 moveto +1.003327e+02 2.473283e+01 lineto +1.0001e+02 2.53675e+01 lineto +1.007084e+02 2.650687e+01 lineto +1.010375e+02 2.585954e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.017083e+02 2.700532e+01 moveto +1.010375e+02 2.585954e+01 lineto +1.007084e+02 2.650687e+01 lineto +1.01373e+02 2.766469e+01 lineto +1.017083e+02 2.700532e+01 lineto +closepath +gsave +4.816425e-01 4.816425e-01 6.020532e-01 setrgbcolor +fill +grestore +newpath +1.017083e+02 2.700532e+01 moveto +1.010375e+02 2.585954e+01 lineto +1.007084e+02 2.650687e+01 lineto +1.01373e+02 2.766469e+01 lineto +1.017083e+02 2.700532e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.023442e+02 2.816908e+01 moveto +1.017083e+02 2.700532e+01 lineto +1.01373e+02 2.766469e+01 lineto +1.020032e+02 2.883988e+01 lineto +1.023442e+02 2.816908e+01 lineto +closepath +gsave +4.787644e-01 4.787644e-01 5.984554e-01 setrgbcolor +fill +grestore +newpath +1.023442e+02 2.816908e+01 moveto +1.017083e+02 2.700532e+01 lineto +1.01373e+02 2.766469e+01 lineto +1.020032e+02 2.883988e+01 lineto +1.023442e+02 2.816908e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.029449e+02 2.934973e+01 moveto +1.023442e+02 2.816908e+01 lineto +1.020032e+02 2.883988e+01 lineto +1.025983e+02 3.003131e+01 lineto +1.029449e+02 2.934973e+01 lineto +closepath +gsave +4.759767e-01 4.759767e-01 5.949708e-01 setrgbcolor +fill +grestore +newpath +1.029449e+02 2.934973e+01 moveto +1.023442e+02 2.816908e+01 lineto +1.020032e+02 2.883988e+01 lineto +1.025983e+02 3.003131e+01 lineto +1.029449e+02 2.934973e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.035096e+02 3.054613e+01 moveto +1.029449e+02 2.934973e+01 lineto +1.025983e+02 3.003131e+01 lineto +1.031578e+02 3.123786e+01 lineto +1.035096e+02 3.054613e+01 lineto +closepath +gsave +4.732806e-01 4.732806e-01 5.916008e-01 setrgbcolor +fill +grestore +newpath +1.035096e+02 3.054613e+01 moveto +1.029449e+02 2.934973e+01 lineto +1.025983e+02 3.003131e+01 lineto +1.031578e+02 3.123786e+01 lineto +1.035096e+02 3.054613e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.040378e+02 3.175717e+01 moveto +1.035096e+02 3.054613e+01 lineto +1.031578e+02 3.123786e+01 lineto +1.036813e+02 3.245839e+01 lineto +1.040378e+02 3.175717e+01 lineto +closepath +gsave +4.706771e-01 4.706771e-01 5.883464e-01 setrgbcolor +fill +grestore +newpath +1.040378e+02 3.175717e+01 moveto +1.035096e+02 3.054613e+01 lineto +1.031578e+02 3.123786e+01 lineto +1.036813e+02 3.245839e+01 lineto +1.040378e+02 3.175717e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.045291e+02 3.29817e+01 moveto +1.040378e+02 3.175717e+01 lineto +1.036813e+02 3.245839e+01 lineto +1.04168e+02 3.369174e+01 lineto +1.045291e+02 3.29817e+01 lineto +closepath +gsave +4.681669e-01 4.681669e-01 5.852086e-01 setrgbcolor +fill +grestore +newpath +1.045291e+02 3.29817e+01 moveto +1.040378e+02 3.175717e+01 lineto +1.036813e+02 3.245839e+01 lineto +1.04168e+02 3.369174e+01 lineto +1.045291e+02 3.29817e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.049829e+02 3.421855e+01 moveto +1.045291e+02 3.29817e+01 lineto +1.04168e+02 3.369174e+01 lineto +1.046177e+02 3.493675e+01 lineto +1.049829e+02 3.421855e+01 lineto +closepath +gsave +4.657503e-01 4.657503e-01 5.821879e-01 setrgbcolor +fill +grestore +newpath +1.049829e+02 3.421855e+01 moveto +1.045291e+02 3.29817e+01 lineto +1.04168e+02 3.369174e+01 lineto +1.046177e+02 3.493675e+01 lineto +1.049829e+02 3.421855e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.629704e+01 4.116158e+00 moveto +6.50042e+01 4.000312e+00 lineto +6.500414e+01 4.000386e+00 lineto +6.627709e+01 4.139079e+00 lineto +6.629704e+01 4.116158e+00 lineto +closepath +gsave +6.073035e-01 6.073035e-01 7.591293e-01 setrgbcolor +fill +grestore +newpath +6.629704e+01 4.116158e+00 moveto +6.50042e+01 4.000312e+00 lineto +6.500414e+01 4.000386e+00 lineto +6.627709e+01 4.139079e+00 lineto +6.629704e+01 4.116158e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.758866e+01 4.271661e+00 moveto +6.629704e+01 4.116158e+00 lineto +6.627709e+01 4.139079e+00 lineto +6.754884e+01 4.317406e+00 lineto +6.758866e+01 4.271661e+00 lineto +closepath +gsave +6.039735e-01 6.039735e-01 7.549669e-01 setrgbcolor +fill +grestore +newpath +6.758866e+01 4.271661e+00 moveto +6.629704e+01 4.116158e+00 lineto +6.627709e+01 4.139079e+00 lineto +6.754884e+01 4.317406e+00 lineto +6.758866e+01 4.271661e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.887782e+01 4.466673e+00 moveto +6.758866e+01 4.271661e+00 lineto +6.754884e+01 4.317406e+00 lineto +6.881817e+01 4.535198e+00 lineto +6.887782e+01 4.466673e+00 lineto +closepath +gsave +6.005902e-01 6.005902e-01 7.507377e-01 setrgbcolor +fill +grestore +newpath +6.887782e+01 4.466673e+00 moveto +6.758866e+01 4.271661e+00 lineto +6.754884e+01 4.317406e+00 lineto +6.881817e+01 4.535198e+00 lineto +6.887782e+01 4.466673e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.016331e+01 4.701009e+00 moveto +6.887782e+01 4.466673e+00 lineto +6.881817e+01 4.535198e+00 lineto +7.008389e+01 4.79225e+00 lineto +7.016331e+01 4.701009e+00 lineto +closepath +gsave +5.971577e-01 5.971577e-01 7.464472e-01 setrgbcolor +fill +grestore +newpath +7.016331e+01 4.701009e+00 moveto +6.887782e+01 4.466673e+00 lineto +6.881817e+01 4.535198e+00 lineto +7.008389e+01 4.79225e+00 lineto +7.016331e+01 4.701009e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.144391e+01 4.974447e+00 moveto +7.016331e+01 4.701009e+00 lineto +7.008389e+01 4.79225e+00 lineto +7.134479e+01 5.088318e+00 lineto +7.144391e+01 4.974447e+00 lineto +closepath +gsave +5.936805e-01 5.936805e-01 7.421007e-01 setrgbcolor +fill +grestore +newpath +7.144391e+01 4.974447e+00 moveto +7.016331e+01 4.701009e+00 lineto +7.008389e+01 4.79225e+00 lineto +7.134479e+01 5.088318e+00 lineto +7.144391e+01 4.974447e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.271841e+01 5.286728e+00 moveto +7.144391e+01 4.974447e+00 lineto +7.134479e+01 5.088318e+00 lineto +7.259968e+01 5.423121e+00 lineto +7.271841e+01 5.286728e+00 lineto +closepath +gsave +5.90163e-01 5.90163e-01 7.377038e-01 setrgbcolor +fill +grestore +newpath +7.271841e+01 5.286728e+00 moveto +7.144391e+01 4.974447e+00 lineto +7.134479e+01 5.088318e+00 lineto +7.259968e+01 5.423121e+00 lineto +7.271841e+01 5.286728e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.398561e+01 5.637557e+00 moveto +7.271841e+01 5.286728e+00 lineto +7.259968e+01 5.423121e+00 lineto +7.384738e+01 5.796343e+00 lineto +7.398561e+01 5.637557e+00 lineto +closepath +gsave +5.866098e-01 5.866098e-01 7.332622e-01 setrgbcolor +fill +grestore +newpath +7.398561e+01 5.637557e+00 moveto +7.271841e+01 5.286728e+00 lineto +7.259968e+01 5.423121e+00 lineto +7.384738e+01 5.796343e+00 lineto +7.398561e+01 5.637557e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.524429e+01 6.026602e+00 moveto +7.398561e+01 5.637557e+00 lineto +7.384738e+01 5.796343e+00 lineto +7.508671e+01 6.20763e+00 lineto +7.524429e+01 6.026602e+00 lineto +closepath +gsave +5.830252e-01 5.830252e-01 7.287815e-01 setrgbcolor +fill +grestore +newpath +7.524429e+01 6.026602e+00 moveto +7.398561e+01 5.637557e+00 lineto +7.384738e+01 5.796343e+00 lineto +7.508671e+01 6.20763e+00 lineto +7.524429e+01 6.026602e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.649328e+01 6.453494e+00 moveto +7.524429e+01 6.026602e+00 lineto +7.508671e+01 6.20763e+00 lineto +7.631648e+01 6.656593e+00 lineto +7.649328e+01 6.453494e+00 lineto +closepath +gsave +5.794141e-01 5.794141e-01 7.242676e-01 setrgbcolor +fill +grestore +newpath +7.649328e+01 6.453494e+00 moveto +7.524429e+01 6.026602e+00 lineto +7.508671e+01 6.20763e+00 lineto +7.631648e+01 6.656593e+00 lineto +7.649328e+01 6.453494e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.773138e+01 6.917829e+00 moveto +7.649328e+01 6.453494e+00 lineto +7.631648e+01 6.656593e+00 lineto +7.753554e+01 7.142807e+00 lineto +7.773138e+01 6.917829e+00 lineto +closepath +gsave +5.757809e-01 5.757809e-01 7.197261e-01 setrgbcolor +fill +grestore +newpath +7.773138e+01 6.917829e+00 moveto +7.649328e+01 6.453494e+00 lineto +7.631648e+01 6.656593e+00 lineto +7.753554e+01 7.142807e+00 lineto +7.773138e+01 6.917829e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.895743e+01 7.419167e+00 moveto +7.773138e+01 6.917829e+00 lineto +7.753554e+01 7.142807e+00 lineto +7.874273e+01 7.66581e+00 lineto +7.895743e+01 7.419167e+00 lineto +closepath +gsave +5.721304e-01 5.721304e-01 7.15163e-01 setrgbcolor +fill +grestore +newpath +7.895743e+01 7.419167e+00 moveto +7.773138e+01 6.917829e+00 lineto +7.753554e+01 7.142807e+00 lineto +7.874273e+01 7.66581e+00 lineto +7.895743e+01 7.419167e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.017027e+01 7.957034e+00 moveto +7.895743e+01 7.419167e+00 lineto +7.874273e+01 7.66581e+00 lineto +7.993691e+01 8.22511e+00 lineto +8.017027e+01 7.957034e+00 lineto +closepath +gsave +5.684672e-01 5.684672e-01 7.10584e-01 setrgbcolor +fill +grestore +newpath +8.017027e+01 7.957034e+00 moveto +7.895743e+01 7.419167e+00 lineto +7.874273e+01 7.66581e+00 lineto +7.993691e+01 8.22511e+00 lineto +8.017027e+01 7.957034e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.136874e+01 8.53092e+00 moveto +8.017027e+01 7.957034e+00 lineto +7.993691e+01 8.22511e+00 lineto +8.111695e+01 8.820174e+00 lineto +8.136874e+01 8.53092e+00 lineto +closepath +gsave +5.64796e-01 5.64796e-01 7.05995e-01 setrgbcolor +fill +grestore +newpath +8.136874e+01 8.53092e+00 moveto +8.017027e+01 7.957034e+00 lineto +7.993691e+01 8.22511e+00 lineto +8.111695e+01 8.820174e+00 lineto +8.136874e+01 8.53092e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.255171e+01 9.140283e+00 moveto +8.136874e+01 8.53092e+00 lineto +8.111695e+01 8.820174e+00 lineto +8.228172e+01 9.450441e+00 lineto +8.255171e+01 9.140283e+00 lineto +closepath +gsave +5.611215e-01 5.611215e-01 7.014018e-01 setrgbcolor +fill +grestore +newpath +8.255171e+01 9.140283e+00 moveto +8.136874e+01 8.53092e+00 lineto +8.111695e+01 8.820174e+00 lineto +8.228172e+01 9.450441e+00 lineto +8.255171e+01 9.140283e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.371807e+01 9.784544e+00 moveto +8.255171e+01 9.140283e+00 lineto +8.228172e+01 9.450441e+00 lineto +8.343014e+01 1.011531e+01 lineto +8.371807e+01 9.784544e+00 lineto +closepath +gsave +5.574482e-01 5.574482e-01 6.968102e-01 setrgbcolor +fill +grestore +newpath +8.371807e+01 9.784544e+00 moveto +8.255171e+01 9.140283e+00 lineto +8.228172e+01 9.450441e+00 lineto +8.343014e+01 1.011531e+01 lineto +8.371807e+01 9.784544e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.48667e+01 1.04631e+01 moveto +8.371807e+01 9.784544e+00 lineto +8.343014e+01 1.011531e+01 lineto +8.45611e+01 1.081416e+01 lineto +8.48667e+01 1.04631e+01 lineto +closepath +gsave +5.537808e-01 5.537808e-01 6.92226e-01 setrgbcolor +fill +grestore +newpath +8.48667e+01 1.04631e+01 moveto +8.371807e+01 9.784544e+00 lineto +8.343014e+01 1.011531e+01 lineto +8.45611e+01 1.081416e+01 lineto +8.48667e+01 1.04631e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.599653e+01 1.117529e+01 moveto +8.48667e+01 1.04631e+01 lineto +8.45611e+01 1.081416e+01 lineto +8.567354e+01 1.154632e+01 lineto +8.599653e+01 1.117529e+01 lineto +closepath +gsave +5.501238e-01 5.501238e-01 6.876548e-01 setrgbcolor +fill +grestore +newpath +8.599653e+01 1.117529e+01 moveto +8.48667e+01 1.04631e+01 lineto +8.45611e+01 1.081416e+01 lineto +8.567354e+01 1.154632e+01 lineto +8.599653e+01 1.117529e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.710647e+01 1.192046e+01 moveto +8.599653e+01 1.117529e+01 lineto +8.567354e+01 1.154632e+01 lineto +8.676641e+01 1.231111e+01 lineto +8.710647e+01 1.192046e+01 lineto +closepath +gsave +5.464817e-01 5.464817e-01 6.831022e-01 setrgbcolor +fill +grestore +newpath +8.710647e+01 1.192046e+01 moveto +8.599653e+01 1.117529e+01 lineto +8.567354e+01 1.154632e+01 lineto +8.676641e+01 1.231111e+01 lineto +8.710647e+01 1.192046e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.819548e+01 1.26979e+01 moveto +8.710647e+01 1.192046e+01 lineto +8.676641e+01 1.231111e+01 lineto +8.783867e+01 1.310779e+01 lineto +8.819548e+01 1.26979e+01 lineto +closepath +gsave +5.42859e-01 5.42859e-01 6.785737e-01 setrgbcolor +fill +grestore +newpath +8.819548e+01 1.26979e+01 moveto +8.710647e+01 1.192046e+01 lineto +8.676641e+01 1.231111e+01 lineto +8.783867e+01 1.310779e+01 lineto +8.819548e+01 1.26979e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.926253e+01 1.350687e+01 moveto +8.819548e+01 1.26979e+01 lineto +8.783867e+01 1.310779e+01 lineto +8.888931e+01 1.393561e+01 lineto +8.926253e+01 1.350687e+01 lineto +closepath +gsave +5.392599e-01 5.392599e-01 6.740749e-01 setrgbcolor +fill +grestore +newpath +8.926253e+01 1.350687e+01 moveto +8.819548e+01 1.26979e+01 lineto +8.783867e+01 1.310779e+01 lineto +8.888931e+01 1.393561e+01 lineto +8.926253e+01 1.350687e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.030661e+01 1.43466e+01 moveto +8.926253e+01 1.350687e+01 lineto +8.888931e+01 1.393561e+01 lineto +8.991733e+01 1.47938e+01 lineto +9.030661e+01 1.43466e+01 lineto +closepath +gsave +5.356887e-01 5.356887e-01 6.696108e-01 setrgbcolor +fill +grestore +newpath +9.030661e+01 1.43466e+01 moveto +8.926253e+01 1.350687e+01 lineto +8.888931e+01 1.393561e+01 lineto +8.991733e+01 1.47938e+01 lineto +9.030661e+01 1.43466e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.132673e+01 1.52163e+01 moveto +9.030661e+01 1.43466e+01 lineto +8.991733e+01 1.47938e+01 lineto +9.092175e+01 1.568152e+01 lineto +9.132673e+01 1.52163e+01 lineto +closepath +gsave +5.321495e-01 5.321495e-01 6.651868e-01 setrgbcolor +fill +grestore +newpath +9.132673e+01 1.52163e+01 moveto +9.030661e+01 1.43466e+01 lineto +8.991733e+01 1.47938e+01 lineto +9.092175e+01 1.568152e+01 lineto +9.132673e+01 1.52163e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.232192e+01 1.611515e+01 moveto +9.132673e+01 1.52163e+01 lineto +9.092175e+01 1.568152e+01 lineto +9.190164e+01 1.659796e+01 lineto +9.232192e+01 1.611515e+01 lineto +closepath +gsave +5.286463e-01 5.286463e-01 6.608079e-01 setrgbcolor +fill +grestore +newpath +9.232192e+01 1.611515e+01 moveto +9.132673e+01 1.52163e+01 lineto +9.092175e+01 1.568152e+01 lineto +9.190164e+01 1.659796e+01 lineto +9.232192e+01 1.611515e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.329125e+01 1.704229e+01 moveto +9.232192e+01 1.611515e+01 lineto +9.190164e+01 1.659796e+01 lineto +9.285605e+01 1.754223e+01 lineto +9.329125e+01 1.704229e+01 lineto +closepath +gsave +5.251831e-01 5.251831e-01 6.564788e-01 setrgbcolor +fill +grestore +newpath +9.329125e+01 1.704229e+01 moveto +9.232192e+01 1.611515e+01 lineto +9.190164e+01 1.659796e+01 lineto +9.285605e+01 1.754223e+01 lineto +9.329125e+01 1.704229e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.423378e+01 1.799685e+01 moveto +9.329125e+01 1.704229e+01 lineto +9.285605e+01 1.754223e+01 lineto +9.378409e+01 1.851345e+01 lineto +9.423378e+01 1.799685e+01 lineto +closepath +gsave +5.217635e-01 5.217635e-01 6.522044e-01 setrgbcolor +fill +grestore +newpath +9.423378e+01 1.799685e+01 moveto +9.329125e+01 1.704229e+01 lineto +9.285605e+01 1.754223e+01 lineto +9.378409e+01 1.851345e+01 lineto +9.423378e+01 1.799685e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.514864e+01 1.897793e+01 moveto +9.423378e+01 1.799685e+01 lineto +9.378409e+01 1.851345e+01 lineto +9.468487e+01 1.951069e+01 lineto +9.514864e+01 1.897793e+01 lineto +closepath +gsave +5.183912e-01 5.183912e-01 6.47989e-01 setrgbcolor +fill +grestore +newpath +9.514864e+01 1.897793e+01 moveto +9.423378e+01 1.799685e+01 lineto +9.378409e+01 1.851345e+01 lineto +9.468487e+01 1.951069e+01 lineto +9.514864e+01 1.897793e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.603495e+01 1.998459e+01 moveto +9.514864e+01 1.897793e+01 lineto +9.468487e+01 1.951069e+01 lineto +9.555755e+01 2.053301e+01 lineto +9.603495e+01 1.998459e+01 lineto +closepath +gsave +5.150696e-01 5.150696e-01 6.438371e-01 setrgbcolor +fill +grestore +newpath +9.603495e+01 1.998459e+01 moveto +9.514864e+01 1.897793e+01 lineto +9.468487e+01 1.951069e+01 lineto +9.555755e+01 2.053301e+01 lineto +9.603495e+01 1.998459e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.689188e+01 2.101588e+01 moveto +9.603495e+01 1.998459e+01 lineto +9.555755e+01 2.053301e+01 lineto +9.64013e+01 2.157944e+01 lineto +9.689188e+01 2.101588e+01 lineto +closepath +gsave +5.118021e-01 5.118021e-01 6.397526e-01 setrgbcolor +fill +grestore +newpath +9.689188e+01 2.101588e+01 moveto +9.603495e+01 1.998459e+01 lineto +9.555755e+01 2.053301e+01 lineto +9.64013e+01 2.157944e+01 lineto +9.689188e+01 2.101588e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.771862e+01 2.207082e+01 moveto +9.689188e+01 2.101588e+01 lineto +9.64013e+01 2.157944e+01 lineto +9.721532e+01 2.2649e+01 lineto +9.771862e+01 2.207082e+01 lineto +closepath +gsave +5.085917e-01 5.085917e-01 6.357396e-01 setrgbcolor +fill +grestore +newpath +9.771862e+01 2.207082e+01 moveto +9.689188e+01 2.101588e+01 lineto +9.64013e+01 2.157944e+01 lineto +9.721532e+01 2.2649e+01 lineto +9.771862e+01 2.207082e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.851437e+01 2.314843e+01 moveto +9.771862e+01 2.207082e+01 lineto +9.721532e+01 2.2649e+01 lineto +9.799883e+01 2.374066e+01 lineto +9.851437e+01 2.314843e+01 lineto +closepath +gsave +5.054414e-01 5.054414e-01 6.318018e-01 setrgbcolor +fill +grestore +newpath +9.851437e+01 2.314843e+01 moveto +9.771862e+01 2.207082e+01 lineto +9.721532e+01 2.2649e+01 lineto +9.799883e+01 2.374066e+01 lineto +9.851437e+01 2.314843e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.927839e+01 2.424767e+01 moveto +9.851437e+01 2.314843e+01 lineto +9.799883e+01 2.374066e+01 lineto +9.87511e+01 2.48534e+01 lineto +9.927839e+01 2.424767e+01 lineto +closepath +gsave +5.02354e-01 5.02354e-01 6.279426e-01 setrgbcolor +fill +grestore +newpath +9.927839e+01 2.424767e+01 moveto +9.851437e+01 2.314843e+01 lineto +9.799883e+01 2.374066e+01 lineto +9.87511e+01 2.48534e+01 lineto +9.927839e+01 2.424767e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.0001e+02 2.53675e+01 moveto +9.927839e+01 2.424767e+01 lineto +9.87511e+01 2.48534e+01 lineto +9.947142e+01 2.598617e+01 lineto +1.0001e+02 2.53675e+01 lineto +closepath +gsave +4.993321e-01 4.993321e-01 6.241651e-01 setrgbcolor +fill +grestore +newpath +1.0001e+02 2.53675e+01 moveto +9.927839e+01 2.424767e+01 lineto +9.87511e+01 2.48534e+01 lineto +9.947142e+01 2.598617e+01 lineto +1.0001e+02 2.53675e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.007084e+02 2.650687e+01 moveto +1.0001e+02 2.53675e+01 lineto +9.947142e+01 2.598617e+01 lineto +1.001591e+02 2.713788e+01 lineto +1.007084e+02 2.650687e+01 lineto +closepath +gsave +4.963781e-01 4.963781e-01 6.204726e-01 setrgbcolor +fill +grestore +newpath +1.007084e+02 2.650687e+01 moveto +1.0001e+02 2.53675e+01 lineto +9.947142e+01 2.598617e+01 lineto +1.001591e+02 2.713788e+01 lineto +1.007084e+02 2.650687e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.01373e+02 2.766469e+01 moveto +1.007084e+02 2.650687e+01 lineto +1.001591e+02 2.713788e+01 lineto +1.008135e+02 2.830745e+01 lineto +1.01373e+02 2.766469e+01 lineto +closepath +gsave +4.934941e-01 4.934941e-01 6.168677e-01 setrgbcolor +fill +grestore +newpath +1.01373e+02 2.766469e+01 moveto +1.007084e+02 2.650687e+01 lineto +1.001591e+02 2.713788e+01 lineto +1.008135e+02 2.830745e+01 lineto +1.01373e+02 2.766469e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.020032e+02 2.883988e+01 moveto +1.01373e+02 2.766469e+01 lineto +1.008135e+02 2.830745e+01 lineto +1.01434e+02 2.949377e+01 lineto +1.020032e+02 2.883988e+01 lineto +closepath +gsave +4.906823e-01 4.906823e-01 6.133529e-01 setrgbcolor +fill +grestore +newpath +1.020032e+02 2.883988e+01 moveto +1.01373e+02 2.766469e+01 lineto +1.008135e+02 2.830745e+01 lineto +1.01434e+02 2.949377e+01 lineto +1.020032e+02 2.883988e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.025983e+02 3.003131e+01 moveto +1.020032e+02 2.883988e+01 lineto +1.01434e+02 2.949377e+01 lineto +1.020199e+02 3.069572e+01 lineto +1.025983e+02 3.003131e+01 lineto +closepath +gsave +4.879445e-01 4.879445e-01 6.099307e-01 setrgbcolor +fill +grestore +newpath +1.025983e+02 3.003131e+01 moveto +1.020032e+02 2.883988e+01 lineto +1.01434e+02 2.949377e+01 lineto +1.020199e+02 3.069572e+01 lineto +1.025983e+02 3.003131e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.031578e+02 3.123786e+01 moveto +1.025983e+02 3.003131e+01 lineto +1.020199e+02 3.069572e+01 lineto +1.025709e+02 3.191216e+01 lineto +1.031578e+02 3.123786e+01 lineto +closepath +gsave +4.852824e-01 4.852824e-01 6.066029e-01 setrgbcolor +fill +grestore +newpath +1.031578e+02 3.123786e+01 moveto +1.025983e+02 3.003131e+01 lineto +1.020199e+02 3.069572e+01 lineto +1.025709e+02 3.191216e+01 lineto +1.031578e+02 3.123786e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.036813e+02 3.245839e+01 moveto +1.031578e+02 3.123786e+01 lineto +1.025709e+02 3.191216e+01 lineto +1.030862e+02 3.314193e+01 lineto +1.036813e+02 3.245839e+01 lineto +closepath +gsave +4.826973e-01 4.826973e-01 6.033716e-01 setrgbcolor +fill +grestore +newpath +1.036813e+02 3.245839e+01 moveto +1.031578e+02 3.123786e+01 lineto +1.025709e+02 3.191216e+01 lineto +1.030862e+02 3.314193e+01 lineto +1.036813e+02 3.245839e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.04168e+02 3.369174e+01 moveto +1.036813e+02 3.245839e+01 lineto +1.030862e+02 3.314193e+01 lineto +1.035655e+02 3.438389e+01 lineto +1.04168e+02 3.369174e+01 lineto +closepath +gsave +4.801906e-01 4.801906e-01 6.002382e-01 setrgbcolor +fill +grestore +newpath +1.04168e+02 3.369174e+01 moveto +1.036813e+02 3.245839e+01 lineto +1.030862e+02 3.314193e+01 lineto +1.035655e+02 3.438389e+01 lineto +1.04168e+02 3.369174e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.046177e+02 3.493675e+01 moveto +1.04168e+02 3.369174e+01 lineto +1.035655e+02 3.438389e+01 lineto +1.040083e+02 3.563684e+01 lineto +1.046177e+02 3.493675e+01 lineto +closepath +gsave +4.777634e-01 4.777634e-01 5.972043e-01 setrgbcolor +fill +grestore +newpath +1.046177e+02 3.493675e+01 moveto +1.04168e+02 3.369174e+01 lineto +1.035655e+02 3.438389e+01 lineto +1.040083e+02 3.563684e+01 lineto +1.046177e+02 3.493675e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.627709e+01 4.139079e+00 moveto +6.500414e+01 4.000386e+00 lineto +6.500405e+01 4.000458e+00 lineto +6.624927e+01 4.161265e+00 lineto +6.627709e+01 4.139079e+00 lineto +closepath +gsave +6.075885e-01 6.075885e-01 7.594856e-01 setrgbcolor +fill +grestore +newpath +6.627709e+01 4.139079e+00 moveto +6.500414e+01 4.000386e+00 lineto +6.500405e+01 4.000458e+00 lineto +6.624927e+01 4.161265e+00 lineto +6.627709e+01 4.139079e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.754884e+01 4.317406e+00 moveto +6.627709e+01 4.139079e+00 lineto +6.624927e+01 4.161265e+00 lineto +6.74933e+01 4.361685e+00 lineto +6.754884e+01 4.317406e+00 lineto +closepath +gsave +6.048224e-01 6.048224e-01 7.56028e-01 setrgbcolor +fill +grestore +newpath +6.754884e+01 4.317406e+00 moveto +6.627709e+01 4.139079e+00 lineto +6.624927e+01 4.161265e+00 lineto +6.74933e+01 4.361685e+00 lineto +6.754884e+01 4.317406e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.881817e+01 4.535198e+00 moveto +6.754884e+01 4.317406e+00 lineto +6.74933e+01 4.361685e+00 lineto +6.873498e+01 4.601529e+00 lineto +6.881817e+01 4.535198e+00 lineto +closepath +gsave +6.01999e-01 6.01999e-01 7.524988e-01 setrgbcolor +fill +grestore +newpath +6.881817e+01 4.535198e+00 moveto +6.754884e+01 4.317406e+00 lineto +6.74933e+01 4.361685e+00 lineto +6.873498e+01 4.601529e+00 lineto +6.881817e+01 4.535198e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.008389e+01 4.79225e+00 moveto +6.881817e+01 4.535198e+00 lineto +6.873498e+01 4.601529e+00 lineto +6.997312e+01 4.880569e+00 lineto +7.008389e+01 4.79225e+00 lineto +closepath +gsave +5.991218e-01 5.991218e-01 7.489022e-01 setrgbcolor +fill +grestore +newpath +7.008389e+01 4.79225e+00 moveto +6.881817e+01 4.535198e+00 lineto +6.873498e+01 4.601529e+00 lineto +6.997312e+01 4.880569e+00 lineto +7.008389e+01 4.79225e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.134479e+01 5.088318e+00 moveto +7.008389e+01 4.79225e+00 lineto +6.997312e+01 4.880569e+00 lineto +7.120655e+01 5.198542e+00 lineto +7.134479e+01 5.088318e+00 lineto +closepath +gsave +5.961942e-01 5.961942e-01 7.452427e-01 setrgbcolor +fill +grestore +newpath +7.134479e+01 5.088318e+00 moveto +7.008389e+01 4.79225e+00 lineto +6.997312e+01 4.880569e+00 lineto +7.120655e+01 5.198542e+00 lineto +7.134479e+01 5.088318e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.259968e+01 5.423121e+00 moveto +7.134479e+01 5.088318e+00 lineto +7.120655e+01 5.198542e+00 lineto +7.24341e+01 5.555146e+00 lineto +7.259968e+01 5.423121e+00 lineto +closepath +gsave +5.932199e-01 5.932199e-01 7.415248e-01 setrgbcolor +fill +grestore +newpath +7.259968e+01 5.423121e+00 moveto +7.134479e+01 5.088318e+00 lineto +7.120655e+01 5.198542e+00 lineto +7.24341e+01 5.555146e+00 lineto +7.259968e+01 5.423121e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.384738e+01 5.796343e+00 moveto +7.259968e+01 5.423121e+00 lineto +7.24341e+01 5.555146e+00 lineto +7.365461e+01 5.950043e+00 lineto +7.384738e+01 5.796343e+00 lineto +closepath +gsave +5.902025e-01 5.902025e-01 7.377531e-01 setrgbcolor +fill +grestore +newpath +7.384738e+01 5.796343e+00 moveto +7.259968e+01 5.423121e+00 lineto +7.24341e+01 5.555146e+00 lineto +7.365461e+01 5.950043e+00 lineto +7.384738e+01 5.796343e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.508671e+01 6.20763e+00 moveto +7.384738e+01 5.796343e+00 lineto +7.365461e+01 5.950043e+00 lineto +7.486694e+01 6.38286e+00 lineto +7.508671e+01 6.20763e+00 lineto +closepath +gsave +5.871457e-01 5.871457e-01 7.339321e-01 setrgbcolor +fill +grestore +newpath +7.508671e+01 6.20763e+00 moveto +7.384738e+01 5.796343e+00 lineto +7.365461e+01 5.950043e+00 lineto +7.486694e+01 6.38286e+00 lineto +7.508671e+01 6.20763e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.631648e+01 6.656593e+00 moveto +7.508671e+01 6.20763e+00 lineto +7.486694e+01 6.38286e+00 lineto +7.606991e+01 6.853187e+00 lineto +7.631648e+01 6.656593e+00 lineto +closepath +gsave +5.840534e-01 5.840534e-01 7.300668e-01 setrgbcolor +fill +grestore +newpath +7.631648e+01 6.656593e+00 moveto +7.508671e+01 6.20763e+00 lineto +7.486694e+01 6.38286e+00 lineto +7.606991e+01 6.853187e+00 lineto +7.631648e+01 6.656593e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.753554e+01 7.142807e+00 moveto +7.631648e+01 6.656593e+00 lineto +7.606991e+01 6.853187e+00 lineto +7.726241e+01 7.360579e+00 lineto +7.753554e+01 7.142807e+00 lineto +closepath +gsave +5.809294e-01 5.809294e-01 7.261617e-01 setrgbcolor +fill +grestore +newpath +7.753554e+01 7.142807e+00 moveto +7.631648e+01 6.656593e+00 lineto +7.606991e+01 6.853187e+00 lineto +7.726241e+01 7.360579e+00 lineto +7.753554e+01 7.142807e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.874273e+01 7.66581e+00 moveto +7.753554e+01 7.142807e+00 lineto +7.726241e+01 7.360579e+00 lineto +7.84433e+01 7.904555e+00 lineto +7.874273e+01 7.66581e+00 lineto +closepath +gsave +5.777774e-01 5.777774e-01 7.222218e-01 setrgbcolor +fill +grestore +newpath +7.874273e+01 7.66581e+00 moveto +7.753554e+01 7.142807e+00 lineto +7.726241e+01 7.360579e+00 lineto +7.84433e+01 7.904555e+00 lineto +7.874273e+01 7.66581e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.993691e+01 8.22511e+00 moveto +7.874273e+01 7.66581e+00 lineto +7.84433e+01 7.904555e+00 lineto +7.961146e+01 8.484599e+00 lineto +7.993691e+01 8.22511e+00 lineto +closepath +gsave +5.746016e-01 5.746016e-01 7.182519e-01 setrgbcolor +fill +grestore +newpath +7.993691e+01 8.22511e+00 moveto +7.874273e+01 7.66581e+00 lineto +7.84433e+01 7.904555e+00 lineto +7.961146e+01 8.484599e+00 lineto +7.993691e+01 8.22511e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.111695e+01 8.820174e+00 moveto +7.993691e+01 8.22511e+00 lineto +7.961146e+01 8.484599e+00 lineto +8.076578e+01 9.100164e+00 lineto +8.111695e+01 8.820174e+00 lineto +closepath +gsave +5.714056e-01 5.714056e-01 7.14257e-01 setrgbcolor +fill +grestore +newpath +8.111695e+01 8.820174e+00 moveto +7.993691e+01 8.22511e+00 lineto +7.961146e+01 8.484599e+00 lineto +8.076578e+01 9.100164e+00 lineto +8.111695e+01 8.820174e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.228172e+01 9.450441e+00 moveto +8.111695e+01 8.820174e+00 lineto +8.076578e+01 9.100164e+00 lineto +8.190518e+01 9.750666e+00 lineto +8.228172e+01 9.450441e+00 lineto +closepath +gsave +5.681936e-01 5.681936e-01 7.10242e-01 setrgbcolor +fill +grestore +newpath +8.228172e+01 9.450441e+00 moveto +8.111695e+01 8.820174e+00 lineto +8.076578e+01 9.100164e+00 lineto +8.190518e+01 9.750666e+00 lineto +8.228172e+01 9.450441e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.343014e+01 1.011531e+01 moveto +8.228172e+01 9.450441e+00 lineto +8.190518e+01 9.750666e+00 lineto +8.302857e+01 1.043549e+01 lineto +8.343014e+01 1.011531e+01 lineto +closepath +gsave +5.649694e-01 5.649694e-01 7.062117e-01 setrgbcolor +fill +grestore +newpath +8.343014e+01 1.011531e+01 moveto +8.228172e+01 9.450441e+00 lineto +8.190518e+01 9.750666e+00 lineto +8.302857e+01 1.043549e+01 lineto +8.343014e+01 1.011531e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.45611e+01 1.081416e+01 moveto +8.343014e+01 1.011531e+01 lineto +8.302857e+01 1.043549e+01 lineto +8.41349e+01 1.115399e+01 lineto +8.45611e+01 1.081416e+01 lineto +closepath +gsave +5.61737e-01 5.61737e-01 7.021712e-01 setrgbcolor +fill +grestore +newpath +8.45611e+01 1.081416e+01 moveto +8.343014e+01 1.011531e+01 lineto +8.302857e+01 1.043549e+01 lineto +8.41349e+01 1.115399e+01 lineto +8.45611e+01 1.081416e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.567354e+01 1.154632e+01 moveto +8.45611e+01 1.081416e+01 lineto +8.41349e+01 1.115399e+01 lineto +8.52231e+01 1.190547e+01 lineto +8.567354e+01 1.154632e+01 lineto +closepath +gsave +5.585002e-01 5.585002e-01 6.981253e-01 setrgbcolor +fill +grestore +newpath +8.567354e+01 1.154632e+01 moveto +8.45611e+01 1.081416e+01 lineto +8.41349e+01 1.115399e+01 lineto +8.52231e+01 1.190547e+01 lineto +8.567354e+01 1.154632e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.676641e+01 1.231111e+01 moveto +8.567354e+01 1.154632e+01 lineto +8.52231e+01 1.190547e+01 lineto +8.629216e+01 1.268924e+01 lineto +8.676641e+01 1.231111e+01 lineto +closepath +gsave +5.552631e-01 5.552631e-01 6.940789e-01 setrgbcolor +fill +grestore +newpath +8.676641e+01 1.231111e+01 moveto +8.567354e+01 1.154632e+01 lineto +8.52231e+01 1.190547e+01 lineto +8.629216e+01 1.268924e+01 lineto +8.676641e+01 1.231111e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.783867e+01 1.310779e+01 moveto +8.676641e+01 1.231111e+01 lineto +8.629216e+01 1.268924e+01 lineto +8.734106e+01 1.350455e+01 lineto +8.783867e+01 1.310779e+01 lineto +closepath +gsave +5.520295e-01 5.520295e-01 6.900368e-01 setrgbcolor +fill +grestore +newpath +8.783867e+01 1.310779e+01 moveto +8.676641e+01 1.231111e+01 lineto +8.629216e+01 1.268924e+01 lineto +8.734106e+01 1.350455e+01 lineto +8.783867e+01 1.310779e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.888931e+01 1.393561e+01 moveto +8.783867e+01 1.310779e+01 lineto +8.734106e+01 1.350455e+01 lineto +8.83688e+01 1.435063e+01 lineto +8.888931e+01 1.393561e+01 lineto +closepath +gsave +5.488031e-01 5.488031e-01 6.860039e-01 setrgbcolor +fill +grestore +newpath +8.888931e+01 1.393561e+01 moveto +8.783867e+01 1.310779e+01 lineto +8.734106e+01 1.350455e+01 lineto +8.83688e+01 1.435063e+01 lineto +8.888931e+01 1.393561e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.991733e+01 1.47938e+01 moveto +8.888931e+01 1.393561e+01 lineto +8.83688e+01 1.435063e+01 lineto +8.937442e+01 1.522667e+01 lineto +8.991733e+01 1.47938e+01 lineto +closepath +gsave +5.455879e-01 5.455879e-01 6.819848e-01 setrgbcolor +fill +grestore +newpath +8.991733e+01 1.47938e+01 moveto +8.888931e+01 1.393561e+01 lineto +8.83688e+01 1.435063e+01 lineto +8.937442e+01 1.522667e+01 lineto +8.991733e+01 1.47938e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.092175e+01 1.568152e+01 moveto +8.991733e+01 1.47938e+01 lineto +8.937442e+01 1.522667e+01 lineto +9.035696e+01 1.613185e+01 lineto +9.092175e+01 1.568152e+01 lineto +closepath +gsave +5.423874e-01 5.423874e-01 6.779843e-01 setrgbcolor +fill +grestore +newpath +9.092175e+01 1.568152e+01 moveto +8.991733e+01 1.47938e+01 lineto +8.937442e+01 1.522667e+01 lineto +9.035696e+01 1.613185e+01 lineto +9.092175e+01 1.568152e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.190164e+01 1.659796e+01 moveto +9.092175e+01 1.568152e+01 lineto +9.035696e+01 1.613185e+01 lineto +9.13155e+01 1.70653e+01 lineto +9.190164e+01 1.659796e+01 lineto +closepath +gsave +5.392055e-01 5.392055e-01 6.740068e-01 setrgbcolor +fill +grestore +newpath +9.190164e+01 1.659796e+01 moveto +9.092175e+01 1.568152e+01 lineto +9.035696e+01 1.613185e+01 lineto +9.13155e+01 1.70653e+01 lineto +9.190164e+01 1.659796e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.285605e+01 1.754223e+01 moveto +9.190164e+01 1.659796e+01 lineto +9.13155e+01 1.70653e+01 lineto +9.224911e+01 1.802616e+01 lineto +9.285605e+01 1.754223e+01 lineto +closepath +gsave +5.360455e-01 5.360455e-01 6.700569e-01 setrgbcolor +fill +grestore +newpath +9.285605e+01 1.754223e+01 moveto +9.190164e+01 1.659796e+01 lineto +9.13155e+01 1.70653e+01 lineto +9.224911e+01 1.802616e+01 lineto +9.285605e+01 1.754223e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.378409e+01 1.851345e+01 moveto +9.285605e+01 1.754223e+01 lineto +9.224911e+01 1.802616e+01 lineto +9.315693e+01 1.90135e+01 lineto +9.378409e+01 1.851345e+01 lineto +closepath +gsave +5.329112e-01 5.329112e-01 6.66139e-01 setrgbcolor +fill +grestore +newpath +9.378409e+01 1.851345e+01 moveto +9.285605e+01 1.754223e+01 lineto +9.224911e+01 1.802616e+01 lineto +9.315693e+01 1.90135e+01 lineto +9.378409e+01 1.851345e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.468487e+01 1.951069e+01 moveto +9.378409e+01 1.851345e+01 lineto +9.315693e+01 1.90135e+01 lineto +9.403809e+01 2.002639e+01 lineto +9.468487e+01 1.951069e+01 lineto +closepath +gsave +5.298058e-01 5.298058e-01 6.622573e-01 setrgbcolor +fill +grestore +newpath +9.468487e+01 1.951069e+01 moveto +9.378409e+01 1.851345e+01 lineto +9.315693e+01 1.90135e+01 lineto +9.403809e+01 2.002639e+01 lineto +9.468487e+01 1.951069e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.555755e+01 2.053301e+01 moveto +9.468487e+01 1.951069e+01 lineto +9.403809e+01 2.002639e+01 lineto +9.489176e+01 2.106387e+01 lineto +9.555755e+01 2.053301e+01 lineto +closepath +gsave +5.267327e-01 5.267327e-01 6.584159e-01 setrgbcolor +fill +grestore +newpath +9.555755e+01 2.053301e+01 moveto +9.468487e+01 1.951069e+01 lineto +9.403809e+01 2.002639e+01 lineto +9.489176e+01 2.106387e+01 lineto +9.555755e+01 2.053301e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.64013e+01 2.157944e+01 moveto +9.555755e+01 2.053301e+01 lineto +9.489176e+01 2.106387e+01 lineto +9.571712e+01 2.212496e+01 lineto +9.64013e+01 2.157944e+01 lineto +closepath +gsave +5.236951e-01 5.236951e-01 6.546189e-01 setrgbcolor +fill +grestore +newpath +9.64013e+01 2.157944e+01 moveto +9.555755e+01 2.053301e+01 lineto +9.489176e+01 2.106387e+01 lineto +9.571712e+01 2.212496e+01 lineto +9.64013e+01 2.157944e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.721532e+01 2.2649e+01 moveto +9.64013e+01 2.157944e+01 lineto +9.571712e+01 2.212496e+01 lineto +9.65134e+01 2.320866e+01 lineto +9.721532e+01 2.2649e+01 lineto +closepath +gsave +5.20696e-01 5.20696e-01 6.5087e-01 setrgbcolor +fill +grestore +newpath +9.721532e+01 2.2649e+01 moveto +9.64013e+01 2.157944e+01 lineto +9.571712e+01 2.212496e+01 lineto +9.65134e+01 2.320866e+01 lineto +9.721532e+01 2.2649e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.799883e+01 2.374066e+01 moveto +9.721532e+01 2.2649e+01 lineto +9.65134e+01 2.320866e+01 lineto +9.727984e+01 2.431393e+01 lineto +9.799883e+01 2.374066e+01 lineto +closepath +gsave +5.177385e-01 5.177385e-01 6.471732e-01 setrgbcolor +fill +grestore +newpath +9.799883e+01 2.374066e+01 moveto +9.721532e+01 2.2649e+01 lineto +9.65134e+01 2.320866e+01 lineto +9.727984e+01 2.431393e+01 lineto +9.799883e+01 2.374066e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.87511e+01 2.48534e+01 moveto +9.799883e+01 2.374066e+01 lineto +9.727984e+01 2.431393e+01 lineto +9.801572e+01 2.543974e+01 lineto +9.87511e+01 2.48534e+01 lineto +closepath +gsave +5.148255e-01 5.148255e-01 6.435318e-01 setrgbcolor +fill +grestore +newpath +9.87511e+01 2.48534e+01 moveto +9.799883e+01 2.374066e+01 lineto +9.727984e+01 2.431393e+01 lineto +9.801572e+01 2.543974e+01 lineto +9.87511e+01 2.48534e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.947142e+01 2.598617e+01 moveto +9.87511e+01 2.48534e+01 lineto +9.801572e+01 2.543974e+01 lineto +9.872034e+01 2.658502e+01 lineto +9.947142e+01 2.598617e+01 lineto +closepath +gsave +5.119595e-01 5.119595e-01 6.399494e-01 setrgbcolor +fill +grestore +newpath +9.947142e+01 2.598617e+01 moveto +9.87511e+01 2.48534e+01 lineto +9.801572e+01 2.543974e+01 lineto +9.872034e+01 2.658502e+01 lineto +9.947142e+01 2.598617e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.001591e+02 2.713788e+01 moveto +9.947142e+01 2.598617e+01 lineto +9.872034e+01 2.658502e+01 lineto +9.939304e+01 2.774867e+01 lineto +1.001591e+02 2.713788e+01 lineto +closepath +gsave +5.091432e-01 5.091432e-01 6.364291e-01 setrgbcolor +fill +grestore +newpath +1.001591e+02 2.713788e+01 moveto +9.947142e+01 2.598617e+01 lineto +9.872034e+01 2.658502e+01 lineto +9.939304e+01 2.774867e+01 lineto +1.001591e+02 2.713788e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.008135e+02 2.830745e+01 moveto +1.001591e+02 2.713788e+01 lineto +9.939304e+01 2.774867e+01 lineto +1.000332e+02 2.892961e+01 lineto +1.008135e+02 2.830745e+01 lineto +closepath +gsave +5.063792e-01 5.063792e-01 6.32974e-01 setrgbcolor +fill +grestore +newpath +1.008135e+02 2.830745e+01 moveto +1.001591e+02 2.713788e+01 lineto +9.939304e+01 2.774867e+01 lineto +1.000332e+02 2.892961e+01 lineto +1.008135e+02 2.830745e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.01434e+02 2.949377e+01 moveto +1.008135e+02 2.830745e+01 lineto +1.000332e+02 2.892961e+01 lineto +1.006401e+02 3.012671e+01 lineto +1.01434e+02 2.949377e+01 lineto +closepath +gsave +5.036696e-01 5.036696e-01 6.29587e-01 setrgbcolor +fill +grestore +newpath +1.01434e+02 2.949377e+01 moveto +1.008135e+02 2.830745e+01 lineto +1.000332e+02 2.892961e+01 lineto +1.006401e+02 3.012671e+01 lineto +1.01434e+02 2.949377e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.020199e+02 3.069572e+01 moveto +1.01434e+02 2.949377e+01 lineto +1.006401e+02 3.012671e+01 lineto +1.012133e+02 3.133884e+01 lineto +1.020199e+02 3.069572e+01 lineto +closepath +gsave +5.010166e-01 5.010166e-01 6.262708e-01 setrgbcolor +fill +grestore +newpath +1.020199e+02 3.069572e+01 moveto +1.01434e+02 2.949377e+01 lineto +1.006401e+02 3.012671e+01 lineto +1.012133e+02 3.133884e+01 lineto +1.020199e+02 3.069572e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.025709e+02 3.191216e+01 moveto +1.020199e+02 3.069572e+01 lineto +1.012133e+02 3.133884e+01 lineto +1.017523e+02 3.256485e+01 lineto +1.025709e+02 3.191216e+01 lineto +closepath +gsave +4.984224e-01 4.984224e-01 6.23028e-01 setrgbcolor +fill +grestore +newpath +1.025709e+02 3.191216e+01 moveto +1.020199e+02 3.069572e+01 lineto +1.012133e+02 3.133884e+01 lineto +1.017523e+02 3.256485e+01 lineto +1.025709e+02 3.191216e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.030862e+02 3.314193e+01 moveto +1.025709e+02 3.191216e+01 lineto +1.017523e+02 3.256485e+01 lineto +1.022564e+02 3.380358e+01 lineto +1.030862e+02 3.314193e+01 lineto +closepath +gsave +4.958887e-01 4.958887e-01 6.198608e-01 setrgbcolor +fill +grestore +newpath +1.030862e+02 3.314193e+01 moveto +1.025709e+02 3.191216e+01 lineto +1.017523e+02 3.256485e+01 lineto +1.022564e+02 3.380358e+01 lineto +1.030862e+02 3.314193e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.035655e+02 3.438389e+01 moveto +1.030862e+02 3.314193e+01 lineto +1.022564e+02 3.380358e+01 lineto +1.027253e+02 3.505386e+01 lineto +1.035655e+02 3.438389e+01 lineto +closepath +gsave +4.934173e-01 4.934173e-01 6.167716e-01 setrgbcolor +fill +grestore +newpath +1.035655e+02 3.438389e+01 moveto +1.030862e+02 3.314193e+01 lineto +1.022564e+02 3.380358e+01 lineto +1.027253e+02 3.505386e+01 lineto +1.035655e+02 3.438389e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.040083e+02 3.563684e+01 moveto +1.035655e+02 3.438389e+01 lineto +1.027253e+02 3.505386e+01 lineto +1.031584e+02 3.631451e+01 lineto +1.040083e+02 3.563684e+01 lineto +closepath +gsave +4.910098e-01 4.910098e-01 6.137622e-01 setrgbcolor +fill +grestore +newpath +1.040083e+02 3.563684e+01 moveto +1.035655e+02 3.438389e+01 lineto +1.027253e+02 3.505386e+01 lineto +1.031584e+02 3.631451e+01 lineto +1.040083e+02 3.563684e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.624927e+01 4.161265e+00 moveto +6.500405e+01 4.000458e+00 lineto +6.500393e+01 4.000527e+00 lineto +6.621374e+01 4.18258e+00 lineto +6.624927e+01 4.161265e+00 lineto +closepath +gsave +6.078819e-01 6.078819e-01 7.598524e-01 setrgbcolor +fill +grestore +newpath +6.624927e+01 4.161265e+00 moveto +6.500405e+01 4.000458e+00 lineto +6.500393e+01 4.000527e+00 lineto +6.621374e+01 4.18258e+00 lineto +6.624927e+01 4.161265e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.74933e+01 4.361685e+00 moveto +6.624927e+01 4.161265e+00 lineto +6.621374e+01 4.18258e+00 lineto +6.742239e+01 4.404226e+00 lineto +6.74933e+01 4.361685e+00 lineto +closepath +gsave +6.056969e-01 6.056969e-01 7.571211e-01 setrgbcolor +fill +grestore +newpath +6.74933e+01 4.361685e+00 moveto +6.624927e+01 4.161265e+00 lineto +6.621374e+01 4.18258e+00 lineto +6.742239e+01 4.404226e+00 lineto +6.74933e+01 4.361685e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.873498e+01 4.601529e+00 moveto +6.74933e+01 4.361685e+00 lineto +6.742239e+01 4.404226e+00 lineto +6.862876e+01 4.665256e+00 lineto +6.873498e+01 4.601529e+00 lineto +closepath +gsave +6.034512e-01 6.034512e-01 7.543139e-01 setrgbcolor +fill +grestore +newpath +6.873498e+01 4.601529e+00 moveto +6.74933e+01 4.361685e+00 lineto +6.742239e+01 4.404226e+00 lineto +6.862876e+01 4.665256e+00 lineto +6.873498e+01 4.601529e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.997312e+01 4.880569e+00 moveto +6.873498e+01 4.601529e+00 lineto +6.862876e+01 4.665256e+00 lineto +6.983169e+01 4.965422e+00 lineto +6.997312e+01 4.880569e+00 lineto +closepath +gsave +6.011474e-01 6.011474e-01 7.514342e-01 setrgbcolor +fill +grestore +newpath +6.997312e+01 4.880569e+00 moveto +6.873498e+01 4.601529e+00 lineto +6.862876e+01 4.665256e+00 lineto +6.983169e+01 4.965422e+00 lineto +6.997312e+01 4.880569e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.120655e+01 5.198542e+00 moveto +6.997312e+01 4.880569e+00 lineto +6.983169e+01 4.965422e+00 lineto +7.103004e+01 5.30444e+00 lineto +7.120655e+01 5.198542e+00 lineto +closepath +gsave +5.987882e-01 5.987882e-01 7.484853e-01 setrgbcolor +fill +grestore +newpath +7.120655e+01 5.198542e+00 moveto +6.997312e+01 4.880569e+00 lineto +6.983169e+01 4.965422e+00 lineto +7.103004e+01 5.30444e+00 lineto +7.120655e+01 5.198542e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.24341e+01 5.555146e+00 moveto +7.120655e+01 5.198542e+00 lineto +7.103004e+01 5.30444e+00 lineto +7.222268e+01 5.681988e+00 lineto +7.24341e+01 5.555146e+00 lineto +closepath +gsave +5.963766e-01 5.963766e-01 7.454708e-01 setrgbcolor +fill +grestore +newpath +7.24341e+01 5.555146e+00 moveto +7.120655e+01 5.198542e+00 lineto +7.103004e+01 5.30444e+00 lineto +7.222268e+01 5.681988e+00 lineto +7.24341e+01 5.555146e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.365461e+01 5.950043e+00 moveto +7.24341e+01 5.555146e+00 lineto +7.222268e+01 5.681988e+00 lineto +7.340849e+01 6.09771e+00 lineto +7.365461e+01 5.950043e+00 lineto +closepath +gsave +5.939153e-01 5.939153e-01 7.423942e-01 setrgbcolor +fill +grestore +newpath +7.365461e+01 5.950043e+00 moveto +7.24341e+01 5.555146e+00 lineto +7.222268e+01 5.681988e+00 lineto +7.340849e+01 6.09771e+00 lineto +7.365461e+01 5.950043e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.486694e+01 6.38286e+00 moveto +7.365461e+01 5.950043e+00 lineto +7.340849e+01 6.09771e+00 lineto +7.458633e+01 6.551212e+00 lineto +7.486694e+01 6.38286e+00 lineto +closepath +gsave +5.914073e-01 5.914073e-01 7.392592e-01 setrgbcolor +fill +grestore +newpath +7.486694e+01 6.38286e+00 moveto +7.365461e+01 5.950043e+00 lineto +7.340849e+01 6.09771e+00 lineto +7.458633e+01 6.551212e+00 lineto +7.486694e+01 6.38286e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.606991e+01 6.853187e+00 moveto +7.486694e+01 6.38286e+00 lineto +7.458633e+01 6.551212e+00 lineto +7.57551e+01 7.042065e+00 lineto +7.606991e+01 6.853187e+00 lineto +closepath +gsave +5.888557e-01 5.888557e-01 7.360696e-01 setrgbcolor +fill +grestore +newpath +7.606991e+01 6.853187e+00 moveto +7.486694e+01 6.38286e+00 lineto +7.458633e+01 6.551212e+00 lineto +7.57551e+01 7.042065e+00 lineto +7.606991e+01 6.853187e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.726241e+01 7.360579e+00 moveto +7.606991e+01 6.853187e+00 lineto +7.57551e+01 7.042065e+00 lineto +7.691368e+01 7.569803e+00 lineto +7.726241e+01 7.360579e+00 lineto +closepath +gsave +5.862633e-01 5.862633e-01 7.328292e-01 setrgbcolor +fill +grestore +newpath +7.726241e+01 7.360579e+00 moveto +7.606991e+01 6.853187e+00 lineto +7.57551e+01 7.042065e+00 lineto +7.691368e+01 7.569803e+00 lineto +7.726241e+01 7.360579e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.84433e+01 7.904555e+00 moveto +7.726241e+01 7.360579e+00 lineto +7.691368e+01 7.569803e+00 lineto +7.806099e+01 8.133927e+00 lineto +7.84433e+01 7.904555e+00 lineto +closepath +gsave +5.836335e-01 5.836335e-01 7.295419e-01 setrgbcolor +fill +grestore +newpath +7.84433e+01 7.904555e+00 moveto +7.726241e+01 7.360579e+00 lineto +7.691368e+01 7.569803e+00 lineto +7.806099e+01 8.133927e+00 lineto +7.84433e+01 7.904555e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.961146e+01 8.484599e+00 moveto +7.84433e+01 7.904555e+00 lineto +7.806099e+01 8.133927e+00 lineto +7.919592e+01 8.733904e+00 lineto +7.961146e+01 8.484599e+00 lineto +closepath +gsave +5.809693e-01 5.809693e-01 7.262116e-01 setrgbcolor +fill +grestore +newpath +7.961146e+01 8.484599e+00 moveto +7.84433e+01 7.904555e+00 lineto +7.806099e+01 8.133927e+00 lineto +7.919592e+01 8.733904e+00 lineto +7.961146e+01 8.484599e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.076578e+01 9.100164e+00 moveto +7.961146e+01 8.484599e+00 lineto +7.919592e+01 8.733904e+00 lineto +8.031742e+01 9.369164e+00 lineto +8.076578e+01 9.100164e+00 lineto +closepath +gsave +5.782739e-01 5.782739e-01 7.228424e-01 setrgbcolor +fill +grestore +newpath +8.076578e+01 9.100164e+00 moveto +7.961146e+01 8.484599e+00 lineto +7.919592e+01 8.733904e+00 lineto +8.031742e+01 9.369164e+00 lineto +8.076578e+01 9.100164e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.190518e+01 9.750666e+00 moveto +8.076578e+01 9.100164e+00 lineto +8.031742e+01 9.369164e+00 lineto +8.142442e+01 1.003911e+01 lineto +8.190518e+01 9.750666e+00 lineto +closepath +gsave +5.755506e-01 5.755506e-01 7.194382e-01 setrgbcolor +fill +grestore +newpath +8.190518e+01 9.750666e+00 moveto +8.076578e+01 9.100164e+00 lineto +8.031742e+01 9.369164e+00 lineto +8.142442e+01 1.003911e+01 lineto +8.190518e+01 9.750666e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.302857e+01 1.043549e+01 moveto +8.190518e+01 9.750666e+00 lineto +8.142442e+01 1.003911e+01 lineto +8.251586e+01 1.07431e+01 lineto +8.302857e+01 1.043549e+01 lineto +closepath +gsave +5.728026e-01 5.728026e-01 7.160032e-01 setrgbcolor +fill +grestore +newpath +8.302857e+01 1.043549e+01 moveto +8.190518e+01 9.750666e+00 lineto +8.142442e+01 1.003911e+01 lineto +8.251586e+01 1.07431e+01 lineto +8.302857e+01 1.043549e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.41349e+01 1.115399e+01 moveto +8.302857e+01 1.043549e+01 lineto +8.251586e+01 1.07431e+01 lineto +8.359072e+01 1.148047e+01 lineto +8.41349e+01 1.115399e+01 lineto +closepath +gsave +5.700332e-01 5.700332e-01 7.125415e-01 setrgbcolor +fill +grestore +newpath +8.41349e+01 1.115399e+01 moveto +8.302857e+01 1.043549e+01 lineto +8.251586e+01 1.07431e+01 lineto +8.359072e+01 1.148047e+01 lineto +8.41349e+01 1.115399e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.52231e+01 1.190547e+01 moveto +8.41349e+01 1.115399e+01 lineto +8.359072e+01 1.148047e+01 lineto +8.464798e+01 1.225052e+01 lineto +8.52231e+01 1.190547e+01 lineto +closepath +gsave +5.672457e-01 5.672457e-01 7.090571e-01 setrgbcolor +fill +grestore +newpath +8.52231e+01 1.190547e+01 moveto +8.41349e+01 1.115399e+01 lineto +8.359072e+01 1.148047e+01 lineto +8.464798e+01 1.225052e+01 lineto +8.52231e+01 1.190547e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.629216e+01 1.268924e+01 moveto +8.52231e+01 1.190547e+01 lineto +8.464798e+01 1.225052e+01 lineto +8.568663e+01 1.305254e+01 lineto +8.629216e+01 1.268924e+01 lineto +closepath +gsave +5.644434e-01 5.644434e-01 7.055543e-01 setrgbcolor +fill +grestore +newpath +8.629216e+01 1.268924e+01 moveto +8.52231e+01 1.190547e+01 lineto +8.464798e+01 1.225052e+01 lineto +8.568663e+01 1.305254e+01 lineto +8.629216e+01 1.268924e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.734106e+01 1.350455e+01 moveto +8.629216e+01 1.268924e+01 lineto +8.568663e+01 1.305254e+01 lineto +8.67057e+01 1.388574e+01 lineto +8.734106e+01 1.350455e+01 lineto +closepath +gsave +5.616297e-01 5.616297e-01 7.020371e-01 setrgbcolor +fill +grestore +newpath +8.734106e+01 1.350455e+01 moveto +8.629216e+01 1.268924e+01 lineto +8.568663e+01 1.305254e+01 lineto +8.67057e+01 1.388574e+01 lineto +8.734106e+01 1.350455e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.83688e+01 1.435063e+01 moveto +8.734106e+01 1.350455e+01 lineto +8.67057e+01 1.388574e+01 lineto +8.770422e+01 1.474935e+01 lineto +8.83688e+01 1.435063e+01 lineto +closepath +gsave +5.588078e-01 5.588078e-01 6.985097e-01 setrgbcolor +fill +grestore +newpath +8.83688e+01 1.435063e+01 moveto +8.734106e+01 1.350455e+01 lineto +8.67057e+01 1.388574e+01 lineto +8.770422e+01 1.474935e+01 lineto +8.83688e+01 1.435063e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.937442e+01 1.522667e+01 moveto +8.83688e+01 1.435063e+01 lineto +8.770422e+01 1.474935e+01 lineto +8.868124e+01 1.564255e+01 lineto +8.937442e+01 1.522667e+01 lineto +closepath +gsave +5.55981e-01 5.55981e-01 6.949762e-01 setrgbcolor +fill +grestore +newpath +8.937442e+01 1.522667e+01 moveto +8.83688e+01 1.435063e+01 lineto +8.770422e+01 1.474935e+01 lineto +8.868124e+01 1.564255e+01 lineto +8.937442e+01 1.522667e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.035696e+01 1.613185e+01 moveto +8.937442e+01 1.522667e+01 lineto +8.868124e+01 1.564255e+01 lineto +8.963584e+01 1.656449e+01 lineto +9.035696e+01 1.613185e+01 lineto +closepath +gsave +5.531526e-01 5.531526e-01 6.914407e-01 setrgbcolor +fill +grestore +newpath +9.035696e+01 1.613185e+01 moveto +8.937442e+01 1.522667e+01 lineto +8.868124e+01 1.564255e+01 lineto +8.963584e+01 1.656449e+01 lineto +9.035696e+01 1.613185e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.13155e+01 1.70653e+01 moveto +9.035696e+01 1.613185e+01 lineto +8.963584e+01 1.656449e+01 lineto +9.056711e+01 1.75143e+01 lineto +9.13155e+01 1.70653e+01 lineto +closepath +gsave +5.503258e-01 5.503258e-01 6.879073e-01 setrgbcolor +fill +grestore +newpath +9.13155e+01 1.70653e+01 moveto +9.035696e+01 1.613185e+01 lineto +8.963584e+01 1.656449e+01 lineto +9.056711e+01 1.75143e+01 lineto +9.13155e+01 1.70653e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.224911e+01 1.802616e+01 moveto +9.13155e+01 1.70653e+01 lineto +9.056711e+01 1.75143e+01 lineto +9.147418e+01 1.849109e+01 lineto +9.224911e+01 1.802616e+01 lineto +closepath +gsave +5.475039e-01 5.475039e-01 6.843799e-01 setrgbcolor +fill +grestore +newpath +9.224911e+01 1.802616e+01 moveto +9.13155e+01 1.70653e+01 lineto +9.056711e+01 1.75143e+01 lineto +9.147418e+01 1.849109e+01 lineto +9.224911e+01 1.802616e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.315693e+01 1.90135e+01 moveto +9.224911e+01 1.802616e+01 lineto +9.147418e+01 1.849109e+01 lineto +9.235618e+01 1.949392e+01 lineto +9.315693e+01 1.90135e+01 lineto +closepath +gsave +5.4469e-01 5.4469e-01 6.808626e-01 setrgbcolor +fill +grestore +newpath +9.315693e+01 1.90135e+01 moveto +9.224911e+01 1.802616e+01 lineto +9.147418e+01 1.849109e+01 lineto +9.235618e+01 1.949392e+01 lineto +9.315693e+01 1.90135e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.403809e+01 2.002639e+01 moveto +9.315693e+01 1.90135e+01 lineto +9.235618e+01 1.949392e+01 lineto +9.321228e+01 2.052184e+01 lineto +9.403809e+01 2.002639e+01 lineto +closepath +gsave +5.418874e-01 5.418874e-01 6.773592e-01 setrgbcolor +fill +grestore +newpath +9.403809e+01 2.002639e+01 moveto +9.315693e+01 1.90135e+01 lineto +9.235618e+01 1.949392e+01 lineto +9.321228e+01 2.052184e+01 lineto +9.403809e+01 2.002639e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.489176e+01 2.106387e+01 moveto +9.403809e+01 2.002639e+01 lineto +9.321228e+01 2.052184e+01 lineto +9.404166e+01 2.157389e+01 lineto +9.489176e+01 2.106387e+01 lineto +closepath +gsave +5.390989e-01 5.390989e-01 6.738736e-01 setrgbcolor +fill +grestore +newpath +9.489176e+01 2.106387e+01 moveto +9.403809e+01 2.002639e+01 lineto +9.321228e+01 2.052184e+01 lineto +9.404166e+01 2.157389e+01 lineto +9.489176e+01 2.106387e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.571712e+01 2.212496e+01 moveto +9.489176e+01 2.106387e+01 lineto +9.404166e+01 2.157389e+01 lineto +9.484356e+01 2.264906e+01 lineto +9.571712e+01 2.212496e+01 lineto +closepath +gsave +5.363277e-01 5.363277e-01 6.704096e-01 setrgbcolor +fill +grestore +newpath +9.571712e+01 2.212496e+01 moveto +9.489176e+01 2.106387e+01 lineto +9.404166e+01 2.157389e+01 lineto +9.484356e+01 2.264906e+01 lineto +9.571712e+01 2.212496e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.65134e+01 2.320866e+01 moveto +9.571712e+01 2.212496e+01 lineto +9.484356e+01 2.264906e+01 lineto +9.561719e+01 2.374635e+01 lineto +9.65134e+01 2.320866e+01 lineto +closepath +gsave +5.335767e-01 5.335767e-01 6.669709e-01 setrgbcolor +fill +grestore +newpath +9.65134e+01 2.320866e+01 moveto +9.571712e+01 2.212496e+01 lineto +9.484356e+01 2.264906e+01 lineto +9.561719e+01 2.374635e+01 lineto +9.65134e+01 2.320866e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.727984e+01 2.431393e+01 moveto +9.65134e+01 2.320866e+01 lineto +9.561719e+01 2.374635e+01 lineto +9.636184e+01 2.48647e+01 lineto +9.727984e+01 2.431393e+01 lineto +closepath +gsave +5.308489e-01 5.308489e-01 6.635611e-01 setrgbcolor +fill +grestore +newpath +9.727984e+01 2.431393e+01 moveto +9.65134e+01 2.320866e+01 lineto +9.561719e+01 2.374635e+01 lineto +9.636184e+01 2.48647e+01 lineto +9.727984e+01 2.431393e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.801572e+01 2.543974e+01 moveto +9.727984e+01 2.431393e+01 lineto +9.636184e+01 2.48647e+01 lineto +9.707679e+01 2.600306e+01 lineto +9.801572e+01 2.543974e+01 lineto +closepath +gsave +5.281469e-01 5.281469e-01 6.601837e-01 setrgbcolor +fill +grestore +newpath +9.801572e+01 2.543974e+01 moveto +9.727984e+01 2.431393e+01 lineto +9.636184e+01 2.48647e+01 lineto +9.707679e+01 2.600306e+01 lineto +9.801572e+01 2.543974e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.872034e+01 2.658502e+01 moveto +9.801572e+01 2.543974e+01 lineto +9.707679e+01 2.600306e+01 lineto +9.776137e+01 2.716036e+01 lineto +9.872034e+01 2.658502e+01 lineto +closepath +gsave +5.254736e-01 5.254736e-01 6.568421e-01 setrgbcolor +fill +grestore +newpath +9.872034e+01 2.658502e+01 moveto +9.801572e+01 2.543974e+01 lineto +9.707679e+01 2.600306e+01 lineto +9.776137e+01 2.716036e+01 lineto +9.872034e+01 2.658502e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.939304e+01 2.774867e+01 moveto +9.872034e+01 2.658502e+01 lineto +9.776137e+01 2.716036e+01 lineto +9.841493e+01 2.83355e+01 lineto +9.939304e+01 2.774867e+01 lineto +closepath +gsave +5.228316e-01 5.228316e-01 6.535396e-01 setrgbcolor +fill +grestore +newpath +9.939304e+01 2.774867e+01 moveto +9.872034e+01 2.658502e+01 lineto +9.776137e+01 2.716036e+01 lineto +9.841493e+01 2.83355e+01 lineto +9.939304e+01 2.774867e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.000332e+02 2.892961e+01 moveto +9.939304e+01 2.774867e+01 lineto +9.841493e+01 2.83355e+01 lineto +9.903686e+01 2.952736e+01 lineto +1.000332e+02 2.892961e+01 lineto +closepath +gsave +5.202235e-01 5.202235e-01 6.502794e-01 setrgbcolor +fill +grestore +newpath +1.000332e+02 2.892961e+01 moveto +9.939304e+01 2.774867e+01 lineto +9.841493e+01 2.83355e+01 lineto +9.903686e+01 2.952736e+01 lineto +1.000332e+02 2.892961e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.006401e+02 3.012671e+01 moveto +1.000332e+02 2.892961e+01 lineto +9.903686e+01 2.952736e+01 lineto +9.962656e+01 3.073481e+01 lineto +1.006401e+02 3.012671e+01 lineto +closepath +gsave +5.176516e-01 5.176516e-01 6.470645e-01 setrgbcolor +fill +grestore +newpath +1.006401e+02 3.012671e+01 moveto +1.000332e+02 2.892961e+01 lineto +9.903686e+01 2.952736e+01 lineto +9.962656e+01 3.073481e+01 lineto +1.006401e+02 3.012671e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.012133e+02 3.133884e+01 moveto +1.006401e+02 3.012671e+01 lineto +9.962656e+01 3.073481e+01 lineto +1.001835e+02 3.195672e+01 lineto +1.012133e+02 3.133884e+01 lineto +closepath +gsave +5.151184e-01 5.151184e-01 6.43898e-01 setrgbcolor +fill +grestore +newpath +1.012133e+02 3.133884e+01 moveto +1.006401e+02 3.012671e+01 lineto +9.962656e+01 3.073481e+01 lineto +1.001835e+02 3.195672e+01 lineto +1.012133e+02 3.133884e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.017523e+02 3.256485e+01 moveto +1.012133e+02 3.133884e+01 lineto +1.001835e+02 3.195672e+01 lineto +1.007071e+02 3.319193e+01 lineto +1.017523e+02 3.256485e+01 lineto +closepath +gsave +5.126261e-01 5.126261e-01 6.407827e-01 setrgbcolor +fill +grestore +newpath +1.017523e+02 3.256485e+01 moveto +1.012133e+02 3.133884e+01 lineto +1.001835e+02 3.195672e+01 lineto +1.007071e+02 3.319193e+01 lineto +1.017523e+02 3.256485e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.022564e+02 3.380358e+01 moveto +1.017523e+02 3.256485e+01 lineto +1.007071e+02 3.319193e+01 lineto +1.011969e+02 3.443926e+01 lineto +1.022564e+02 3.380358e+01 lineto +closepath +gsave +5.10177e-01 5.10177e-01 6.377212e-01 setrgbcolor +fill +grestore +newpath +1.022564e+02 3.380358e+01 moveto +1.017523e+02 3.256485e+01 lineto +1.007071e+02 3.319193e+01 lineto +1.011969e+02 3.443926e+01 lineto +1.022564e+02 3.380358e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.027253e+02 3.505386e+01 moveto +1.022564e+02 3.380358e+01 lineto +1.011969e+02 3.443926e+01 lineto +1.016524e+02 3.569754e+01 lineto +1.027253e+02 3.505386e+01 lineto +closepath +gsave +5.077729e-01 5.077729e-01 6.347161e-01 setrgbcolor +fill +grestore +newpath +1.027253e+02 3.505386e+01 moveto +1.022564e+02 3.380358e+01 lineto +1.011969e+02 3.443926e+01 lineto +1.016524e+02 3.569754e+01 lineto +1.027253e+02 3.505386e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.031584e+02 3.631451e+01 moveto +1.027253e+02 3.505386e+01 lineto +1.016524e+02 3.569754e+01 lineto +1.020732e+02 3.696557e+01 lineto +1.031584e+02 3.631451e+01 lineto +closepath +gsave +5.054159e-01 5.054159e-01 6.317699e-01 setrgbcolor +fill +grestore +newpath +1.031584e+02 3.631451e+01 moveto +1.027253e+02 3.505386e+01 lineto +1.016524e+02 3.569754e+01 lineto +1.020732e+02 3.696557e+01 lineto +1.031584e+02 3.631451e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.621374e+01 4.18258e+00 moveto +6.500393e+01 4.000527e+00 lineto +6.500379e+01 4.000593e+00 lineto +6.617073e+01 4.202893e+00 lineto +6.621374e+01 4.18258e+00 lineto +closepath +gsave +6.08182e-01 6.08182e-01 7.602275e-01 setrgbcolor +fill +grestore +newpath +6.621374e+01 4.18258e+00 moveto +6.500393e+01 4.000527e+00 lineto +6.500379e+01 4.000593e+00 lineto +6.617073e+01 4.202893e+00 lineto +6.621374e+01 4.18258e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.742239e+01 4.404226e+00 moveto +6.621374e+01 4.18258e+00 lineto +6.617073e+01 4.202893e+00 lineto +6.733655e+01 4.444767e+00 lineto +6.742239e+01 4.404226e+00 lineto +closepath +gsave +6.065916e-01 6.065916e-01 7.582395e-01 setrgbcolor +fill +grestore +newpath +6.742239e+01 4.404226e+00 moveto +6.621374e+01 4.18258e+00 lineto +6.617073e+01 4.202893e+00 lineto +6.733655e+01 4.444767e+00 lineto +6.742239e+01 4.404226e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.862876e+01 4.665256e+00 moveto +6.742239e+01 4.404226e+00 lineto +6.733655e+01 4.444767e+00 lineto +6.850017e+01 4.725987e+00 lineto +6.862876e+01 4.665256e+00 lineto +closepath +gsave +6.049377e-01 6.049377e-01 7.561721e-01 setrgbcolor +fill +grestore +newpath +6.862876e+01 4.665256e+00 moveto +6.742239e+01 4.404226e+00 lineto +6.733655e+01 4.444767e+00 lineto +6.850017e+01 4.725987e+00 lineto +6.862876e+01 4.665256e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.983169e+01 4.965422e+00 moveto +6.862876e+01 4.665256e+00 lineto +6.850017e+01 4.725987e+00 lineto +6.966047e+01 5.046284e+00 lineto +6.983169e+01 4.965422e+00 lineto +closepath +gsave +6.032222e-01 6.032222e-01 7.540277e-01 setrgbcolor +fill +grestore +newpath +6.983169e+01 4.965422e+00 moveto +6.862876e+01 4.665256e+00 lineto +6.850017e+01 4.725987e+00 lineto +6.966047e+01 5.046284e+00 lineto +6.983169e+01 4.965422e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.103004e+01 5.30444e+00 moveto +6.983169e+01 4.965422e+00 lineto +6.966047e+01 5.046284e+00 lineto +7.081635e+01 5.405358e+00 lineto +7.103004e+01 5.30444e+00 lineto +closepath +gsave +6.01447e-01 6.01447e-01 7.518087e-01 setrgbcolor +fill +grestore +newpath +7.103004e+01 5.30444e+00 moveto +6.983169e+01 4.965422e+00 lineto +6.966047e+01 5.046284e+00 lineto +7.081635e+01 5.405358e+00 lineto +7.103004e+01 5.30444e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.222268e+01 5.681988e+00 moveto +7.103004e+01 5.30444e+00 lineto +7.081635e+01 5.405358e+00 lineto +7.196673e+01 5.802866e+00 lineto +7.222268e+01 5.681988e+00 lineto +closepath +gsave +5.996141e-01 5.996141e-01 7.495177e-01 setrgbcolor +fill +grestore +newpath +7.222268e+01 5.681988e+00 moveto +7.103004e+01 5.30444e+00 lineto +7.081635e+01 5.405358e+00 lineto +7.196673e+01 5.802866e+00 lineto +7.222268e+01 5.681988e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.340849e+01 6.09771e+00 moveto +7.222268e+01 5.681988e+00 lineto +7.196673e+01 5.802866e+00 lineto +7.311052e+01 6.238434e+00 lineto +7.340849e+01 6.09771e+00 lineto +closepath +gsave +5.977259e-01 5.977259e-01 7.471573e-01 setrgbcolor +fill +grestore +newpath +7.340849e+01 6.09771e+00 moveto +7.222268e+01 5.681988e+00 lineto +7.196673e+01 5.802866e+00 lineto +7.311052e+01 6.238434e+00 lineto +7.340849e+01 6.09771e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.458633e+01 6.551212e+00 moveto +7.340849e+01 6.09771e+00 lineto +7.311052e+01 6.238434e+00 lineto +7.424662e+01 6.711648e+00 lineto +7.458633e+01 6.551212e+00 lineto +closepath +gsave +5.957843e-01 5.957843e-01 7.447304e-01 setrgbcolor +fill +grestore +newpath +7.458633e+01 6.551212e+00 moveto +7.340849e+01 6.09771e+00 lineto +7.311052e+01 6.238434e+00 lineto +7.424662e+01 6.711648e+00 lineto +7.458633e+01 6.551212e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.57551e+01 7.042065e+00 moveto +7.458633e+01 6.551212e+00 lineto +7.424662e+01 6.711648e+00 lineto +7.537397e+01 7.222061e+00 lineto +7.57551e+01 7.042065e+00 lineto +closepath +gsave +5.937917e-01 5.937917e-01 7.422396e-01 setrgbcolor +fill +grestore +newpath +7.57551e+01 7.042065e+00 moveto +7.458633e+01 6.551212e+00 lineto +7.424662e+01 6.711648e+00 lineto +7.537397e+01 7.222061e+00 lineto +7.57551e+01 7.042065e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.691368e+01 7.569803e+00 moveto +7.57551e+01 7.042065e+00 lineto +7.537397e+01 7.222061e+00 lineto +7.64915e+01 7.769189e+00 lineto +7.691368e+01 7.569803e+00 lineto +closepath +gsave +5.917504e-01 5.917504e-01 7.39688e-01 setrgbcolor +fill +grestore +newpath +7.691368e+01 7.569803e+00 moveto +7.57551e+01 7.042065e+00 lineto +7.537397e+01 7.222061e+00 lineto +7.64915e+01 7.769189e+00 lineto +7.691368e+01 7.569803e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.806099e+01 8.133927e+00 moveto +7.691368e+01 7.569803e+00 lineto +7.64915e+01 7.769189e+00 lineto +7.759815e+01 8.352514e+00 lineto +7.806099e+01 8.133927e+00 lineto +closepath +gsave +5.896628e-01 5.896628e-01 7.370785e-01 setrgbcolor +fill +grestore +newpath +7.806099e+01 8.133927e+00 moveto +7.691368e+01 7.569803e+00 lineto +7.64915e+01 7.769189e+00 lineto +7.759815e+01 8.352514e+00 lineto +7.806099e+01 8.133927e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.919592e+01 8.733904e+00 moveto +7.806099e+01 8.133927e+00 lineto +7.759815e+01 8.352514e+00 lineto +7.869287e+01 8.971485e+00 lineto +7.919592e+01 8.733904e+00 lineto +closepath +gsave +5.875313e-01 5.875313e-01 7.344142e-01 setrgbcolor +fill +grestore +newpath +7.919592e+01 8.733904e+00 moveto +7.806099e+01 8.133927e+00 lineto +7.759815e+01 8.352514e+00 lineto +7.869287e+01 8.971485e+00 lineto +7.919592e+01 8.733904e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.031742e+01 9.369164e+00 moveto +7.919592e+01 8.733904e+00 lineto +7.869287e+01 8.971485e+00 lineto +7.977462e+01 9.625514e+00 lineto +8.031742e+01 9.369164e+00 lineto +closepath +gsave +5.853585e-01 5.853585e-01 7.316982e-01 setrgbcolor +fill +grestore +newpath +8.031742e+01 9.369164e+00 moveto +7.919592e+01 8.733904e+00 lineto +7.869287e+01 8.971485e+00 lineto +7.977462e+01 9.625514e+00 lineto +8.031742e+01 9.369164e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.142442e+01 1.003911e+01 moveto +8.031742e+01 9.369164e+00 lineto +7.977462e+01 9.625514e+00 lineto +8.084239e+01 1.031398e+01 lineto +8.142442e+01 1.003911e+01 lineto +closepath +gsave +5.831469e-01 5.831469e-01 7.289336e-01 setrgbcolor +fill +grestore +newpath +8.142442e+01 1.003911e+01 moveto +8.031742e+01 9.369164e+00 lineto +7.977462e+01 9.625514e+00 lineto +8.084239e+01 1.031398e+01 lineto +8.142442e+01 1.003911e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.251586e+01 1.07431e+01 moveto +8.142442e+01 1.003911e+01 lineto +8.084239e+01 1.031398e+01 lineto +8.189515e+01 1.103624e+01 lineto +8.251586e+01 1.07431e+01 lineto +closepath +gsave +5.80899e-01 5.80899e-01 7.261238e-01 setrgbcolor +fill +grestore +newpath +8.251586e+01 1.07431e+01 moveto +8.142442e+01 1.003911e+01 lineto +8.084239e+01 1.031398e+01 lineto +8.189515e+01 1.103624e+01 lineto +8.251586e+01 1.07431e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.359072e+01 1.148047e+01 moveto +8.251586e+01 1.07431e+01 lineto +8.189515e+01 1.103624e+01 lineto +8.293192e+01 1.17916e+01 lineto +8.359072e+01 1.148047e+01 lineto +closepath +gsave +5.786175e-01 5.786175e-01 7.232719e-01 setrgbcolor +fill +grestore +newpath +8.359072e+01 1.148047e+01 moveto +8.251586e+01 1.07431e+01 lineto +8.189515e+01 1.103624e+01 lineto +8.293192e+01 1.17916e+01 lineto +8.359072e+01 1.148047e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.464798e+01 1.225052e+01 moveto +8.359072e+01 1.148047e+01 lineto +8.293192e+01 1.17916e+01 lineto +8.395172e+01 1.257935e+01 lineto +8.464798e+01 1.225052e+01 lineto +closepath +gsave +5.763051e-01 5.763051e-01 7.203814e-01 setrgbcolor +fill +grestore +newpath +8.464798e+01 1.225052e+01 moveto +8.359072e+01 1.148047e+01 lineto +8.293192e+01 1.17916e+01 lineto +8.395172e+01 1.257935e+01 lineto +8.464798e+01 1.225052e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.568663e+01 1.305254e+01 moveto +8.464798e+01 1.225052e+01 lineto +8.395172e+01 1.257935e+01 lineto +8.495356e+01 1.339874e+01 lineto +8.568663e+01 1.305254e+01 lineto +closepath +gsave +5.739645e-01 5.739645e-01 7.174557e-01 setrgbcolor +fill +grestore +newpath +8.568663e+01 1.305254e+01 moveto +8.464798e+01 1.225052e+01 lineto +8.395172e+01 1.257935e+01 lineto +8.495356e+01 1.339874e+01 lineto +8.568663e+01 1.305254e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.67057e+01 1.388574e+01 moveto +8.568663e+01 1.305254e+01 lineto +8.495356e+01 1.339874e+01 lineto +8.593652e+01 1.4249e+01 lineto +8.67057e+01 1.388574e+01 lineto +closepath +gsave +5.715984e-01 5.715984e-01 7.14498e-01 setrgbcolor +fill +grestore +newpath +8.67057e+01 1.388574e+01 moveto +8.568663e+01 1.305254e+01 lineto +8.495356e+01 1.339874e+01 lineto +8.593652e+01 1.4249e+01 lineto +8.67057e+01 1.388574e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.770422e+01 1.474935e+01 moveto +8.67057e+01 1.388574e+01 lineto +8.593652e+01 1.4249e+01 lineto +8.689965e+01 1.512933e+01 lineto +8.770422e+01 1.474935e+01 lineto +closepath +gsave +5.692096e-01 5.692096e-01 7.115119e-01 setrgbcolor +fill +grestore +newpath +8.770422e+01 1.474935e+01 moveto +8.67057e+01 1.388574e+01 lineto +8.593652e+01 1.4249e+01 lineto +8.689965e+01 1.512933e+01 lineto +8.770422e+01 1.474935e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.868124e+01 1.564255e+01 moveto +8.770422e+01 1.474935e+01 lineto +8.689965e+01 1.512933e+01 lineto +8.784205e+01 1.603888e+01 lineto +8.868124e+01 1.564255e+01 lineto +closepath +gsave +5.668007e-01 5.668007e-01 7.085009e-01 setrgbcolor +fill +grestore +newpath +8.868124e+01 1.564255e+01 moveto +8.770422e+01 1.474935e+01 lineto +8.689965e+01 1.512933e+01 lineto +8.784205e+01 1.603888e+01 lineto +8.868124e+01 1.564255e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.963584e+01 1.656449e+01 moveto +8.868124e+01 1.564255e+01 lineto +8.784205e+01 1.603888e+01 lineto +8.876282e+01 1.69768e+01 lineto +8.963584e+01 1.656449e+01 lineto +closepath +gsave +5.643747e-01 5.643747e-01 7.054684e-01 setrgbcolor +fill +grestore +newpath +8.963584e+01 1.656449e+01 moveto +8.868124e+01 1.564255e+01 lineto +8.784205e+01 1.603888e+01 lineto +8.876282e+01 1.69768e+01 lineto +8.963584e+01 1.656449e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.056711e+01 1.75143e+01 moveto +8.963584e+01 1.656449e+01 lineto +8.876282e+01 1.69768e+01 lineto +8.96611e+01 1.794219e+01 lineto +9.056711e+01 1.75143e+01 lineto +closepath +gsave +5.619343e-01 5.619343e-01 7.024179e-01 setrgbcolor +fill +grestore +newpath +9.056711e+01 1.75143e+01 moveto +8.963584e+01 1.656449e+01 lineto +8.876282e+01 1.69768e+01 lineto +8.96611e+01 1.794219e+01 lineto +9.056711e+01 1.75143e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.147418e+01 1.849109e+01 moveto +9.056711e+01 1.75143e+01 lineto +8.96611e+01 1.794219e+01 lineto +9.053602e+01 1.893416e+01 lineto +9.147418e+01 1.849109e+01 lineto +closepath +gsave +5.594823e-01 5.594823e-01 6.993528e-01 setrgbcolor +fill +grestore +newpath +9.147418e+01 1.849109e+01 moveto +9.056711e+01 1.75143e+01 lineto +8.96611e+01 1.794219e+01 lineto +9.053602e+01 1.893416e+01 lineto +9.147418e+01 1.849109e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.235618e+01 1.949392e+01 moveto +9.147418e+01 1.849109e+01 lineto +9.053602e+01 1.893416e+01 lineto +9.138676e+01 1.995175e+01 lineto +9.235618e+01 1.949392e+01 lineto +closepath +gsave +5.570214e-01 5.570214e-01 6.962768e-01 setrgbcolor +fill +grestore +newpath +9.235618e+01 1.949392e+01 moveto +9.147418e+01 1.849109e+01 lineto +9.053602e+01 1.893416e+01 lineto +9.138676e+01 1.995175e+01 lineto +9.235618e+01 1.949392e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.321228e+01 2.052184e+01 moveto +9.235618e+01 1.949392e+01 lineto +9.138676e+01 1.995175e+01 lineto +9.221253e+01 2.0994e+01 lineto +9.321228e+01 2.052184e+01 lineto +closepath +gsave +5.545545e-01 5.545545e-01 6.931932e-01 setrgbcolor +fill +grestore +newpath +9.321228e+01 2.052184e+01 moveto +9.235618e+01 1.949392e+01 lineto +9.138676e+01 1.995175e+01 lineto +9.221253e+01 2.0994e+01 lineto +9.321228e+01 2.052184e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.404166e+01 2.157389e+01 moveto +9.321228e+01 2.052184e+01 lineto +9.221253e+01 2.0994e+01 lineto +9.301252e+01 2.205993e+01 lineto +9.404166e+01 2.157389e+01 lineto +closepath +gsave +5.520844e-01 5.520844e-01 6.901054e-01 setrgbcolor +fill +grestore +newpath +9.404166e+01 2.157389e+01 moveto +9.321228e+01 2.052184e+01 lineto +9.221253e+01 2.0994e+01 lineto +9.301252e+01 2.205993e+01 lineto +9.404166e+01 2.157389e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.484356e+01 2.264906e+01 moveto +9.404166e+01 2.157389e+01 lineto +9.301252e+01 2.205993e+01 lineto +9.3786e+01 2.314852e+01 lineto +9.484356e+01 2.264906e+01 lineto +closepath +gsave +5.496137e-01 5.496137e-01 6.870171e-01 setrgbcolor +fill +grestore +newpath +9.484356e+01 2.264906e+01 moveto +9.404166e+01 2.157389e+01 lineto +9.301252e+01 2.205993e+01 lineto +9.3786e+01 2.314852e+01 lineto +9.484356e+01 2.264906e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.561719e+01 2.374635e+01 moveto +9.484356e+01 2.264906e+01 lineto +9.3786e+01 2.314852e+01 lineto +9.453222e+01 2.425875e+01 lineto +9.561719e+01 2.374635e+01 lineto +closepath +gsave +5.471452e-01 5.471452e-01 6.839315e-01 setrgbcolor +fill +grestore +newpath +9.561719e+01 2.374635e+01 moveto +9.484356e+01 2.264906e+01 lineto +9.3786e+01 2.314852e+01 lineto +9.453222e+01 2.425875e+01 lineto +9.561719e+01 2.374635e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.636184e+01 2.48647e+01 moveto +9.561719e+01 2.374635e+01 lineto +9.453222e+01 2.425875e+01 lineto +9.525047e+01 2.538957e+01 lineto +9.636184e+01 2.48647e+01 lineto +closepath +gsave +5.446816e-01 5.446816e-01 6.80852e-01 setrgbcolor +fill +grestore +newpath +9.636184e+01 2.48647e+01 moveto +9.561719e+01 2.374635e+01 lineto +9.453222e+01 2.425875e+01 lineto +9.525047e+01 2.538957e+01 lineto +9.636184e+01 2.48647e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.707679e+01 2.600306e+01 moveto +9.636184e+01 2.48647e+01 lineto +9.525047e+01 2.538957e+01 lineto +9.594009e+01 2.65399e+01 lineto +9.707679e+01 2.600306e+01 lineto +closepath +gsave +5.422255e-01 5.422255e-01 6.777819e-01 setrgbcolor +fill +grestore +newpath +9.707679e+01 2.600306e+01 moveto +9.636184e+01 2.48647e+01 lineto +9.525047e+01 2.538957e+01 lineto +9.594009e+01 2.65399e+01 lineto +9.707679e+01 2.600306e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.776137e+01 2.716036e+01 moveto +9.707679e+01 2.600306e+01 lineto +9.594009e+01 2.65399e+01 lineto +9.660041e+01 2.770865e+01 lineto +9.776137e+01 2.716036e+01 lineto +closepath +gsave +5.397796e-01 5.397796e-01 6.747245e-01 setrgbcolor +fill +grestore +newpath +9.776137e+01 2.716036e+01 moveto +9.707679e+01 2.600306e+01 lineto +9.594009e+01 2.65399e+01 lineto +9.660041e+01 2.770865e+01 lineto +9.776137e+01 2.716036e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.841493e+01 2.83355e+01 moveto +9.776137e+01 2.716036e+01 lineto +9.660041e+01 2.770865e+01 lineto +9.723082e+01 2.889472e+01 lineto +9.841493e+01 2.83355e+01 lineto +closepath +gsave +5.373465e-01 5.373465e-01 6.716831e-01 setrgbcolor +fill +grestore +newpath +9.841493e+01 2.83355e+01 moveto +9.776137e+01 2.716036e+01 lineto +9.660041e+01 2.770865e+01 lineto +9.723082e+01 2.889472e+01 lineto +9.841493e+01 2.83355e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.903686e+01 2.952736e+01 moveto +9.841493e+01 2.83355e+01 lineto +9.723082e+01 2.889472e+01 lineto +9.78307e+01 3.009699e+01 lineto +9.903686e+01 2.952736e+01 lineto +closepath +gsave +5.349286e-01 5.349286e-01 6.686608e-01 setrgbcolor +fill +grestore +newpath +9.903686e+01 2.952736e+01 moveto +9.841493e+01 2.83355e+01 lineto +9.723082e+01 2.889472e+01 lineto +9.78307e+01 3.009699e+01 lineto +9.903686e+01 2.952736e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.962656e+01 3.073481e+01 moveto +9.903686e+01 2.952736e+01 lineto +9.78307e+01 3.009699e+01 lineto +9.83995e+01 3.131432e+01 lineto +9.962656e+01 3.073481e+01 lineto +closepath +gsave +5.325285e-01 5.325285e-01 6.656607e-01 setrgbcolor +fill +grestore +newpath +9.962656e+01 3.073481e+01 moveto +9.903686e+01 2.952736e+01 lineto +9.78307e+01 3.009699e+01 lineto +9.83995e+01 3.131432e+01 lineto +9.962656e+01 3.073481e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.001835e+02 3.195672e+01 moveto +9.962656e+01 3.073481e+01 lineto +9.83995e+01 3.131432e+01 lineto +9.893668e+01 3.254555e+01 lineto +1.001835e+02 3.195672e+01 lineto +closepath +gsave +5.301486e-01 5.301486e-01 6.626858e-01 setrgbcolor +fill +grestore +newpath +1.001835e+02 3.195672e+01 moveto +9.962656e+01 3.073481e+01 lineto +9.83995e+01 3.131432e+01 lineto +9.893668e+01 3.254555e+01 lineto +1.001835e+02 3.195672e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.007071e+02 3.319193e+01 moveto +1.001835e+02 3.195672e+01 lineto +9.893668e+01 3.254555e+01 lineto +9.944173e+01 3.378952e+01 lineto +1.007071e+02 3.319193e+01 lineto +closepath +gsave +5.277912e-01 5.277912e-01 6.59739e-01 setrgbcolor +fill +grestore +newpath +1.007071e+02 3.319193e+01 moveto +1.001835e+02 3.195672e+01 lineto +9.893668e+01 3.254555e+01 lineto +9.944173e+01 3.378952e+01 lineto +1.007071e+02 3.319193e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.011969e+02 3.443926e+01 moveto +1.007071e+02 3.319193e+01 lineto +9.944173e+01 3.378952e+01 lineto +9.991417e+01 3.504505e+01 lineto +1.011969e+02 3.443926e+01 lineto +closepath +gsave +5.254587e-01 5.254587e-01 6.568233e-01 setrgbcolor +fill +grestore +newpath +1.011969e+02 3.443926e+01 moveto +1.007071e+02 3.319193e+01 lineto +9.944173e+01 3.378952e+01 lineto +9.991417e+01 3.504505e+01 lineto +1.011969e+02 3.443926e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.016524e+02 3.569754e+01 moveto +1.011969e+02 3.443926e+01 lineto +9.991417e+01 3.504505e+01 lineto +1.003535e+02 3.631095e+01 lineto +1.016524e+02 3.569754e+01 lineto +closepath +gsave +5.231531e-01 5.231531e-01 6.539414e-01 setrgbcolor +fill +grestore +newpath +1.016524e+02 3.569754e+01 moveto +1.011969e+02 3.443926e+01 lineto +9.991417e+01 3.504505e+01 lineto +1.003535e+02 3.631095e+01 lineto +1.016524e+02 3.569754e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.020732e+02 3.696557e+01 moveto +1.016524e+02 3.569754e+01 lineto +1.003535e+02 3.631095e+01 lineto +1.007595e+02 3.758603e+01 lineto +1.020732e+02 3.696557e+01 lineto +closepath +gsave +5.208768e-01 5.208768e-01 6.51096e-01 setrgbcolor +fill +grestore +newpath +1.020732e+02 3.696557e+01 moveto +1.016524e+02 3.569754e+01 lineto +1.003535e+02 3.631095e+01 lineto +1.007595e+02 3.758603e+01 lineto +1.020732e+02 3.696557e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.617073e+01 4.202893e+00 moveto +6.500379e+01 4.000593e+00 lineto +6.500363e+01 4.000655e+00 lineto +6.61205e+01 4.222079e+00 lineto +6.617073e+01 4.202893e+00 lineto +closepath +gsave +6.084869e-01 6.084869e-01 7.606086e-01 setrgbcolor +fill +grestore +newpath +6.617073e+01 4.202893e+00 moveto +6.500379e+01 4.000593e+00 lineto +6.500363e+01 4.000655e+00 lineto +6.61205e+01 4.222079e+00 lineto +6.617073e+01 4.202893e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.733655e+01 4.444767e+00 moveto +6.617073e+01 4.202893e+00 lineto +6.61205e+01 4.222079e+00 lineto +6.723631e+01 4.483058e+00 lineto +6.733655e+01 4.444767e+00 lineto +closepath +gsave +6.075011e-01 6.075011e-01 7.593764e-01 setrgbcolor +fill +grestore +newpath +6.733655e+01 4.444767e+00 moveto +6.617073e+01 4.202893e+00 lineto +6.61205e+01 4.222079e+00 lineto +6.723631e+01 4.483058e+00 lineto +6.733655e+01 4.444767e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.850017e+01 4.725987e+00 moveto +6.733655e+01 4.444767e+00 lineto +6.723631e+01 4.483058e+00 lineto +6.835e+01 4.783346e+00 lineto +6.850017e+01 4.725987e+00 lineto +closepath +gsave +6.064496e-01 6.064496e-01 7.58062e-01 setrgbcolor +fill +grestore +newpath +6.850017e+01 4.725987e+00 moveto +6.733655e+01 4.444767e+00 lineto +6.723631e+01 4.483058e+00 lineto +6.835e+01 4.783346e+00 lineto +6.850017e+01 4.725987e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.966047e+01 5.046284e+00 moveto +6.850017e+01 4.725987e+00 lineto +6.835e+01 4.783346e+00 lineto +6.946051e+01 5.122658e+00 lineto +6.966047e+01 5.046284e+00 lineto +closepath +gsave +6.053335e-01 6.053335e-01 7.566669e-01 setrgbcolor +fill +grestore +newpath +6.966047e+01 5.046284e+00 moveto +6.850017e+01 4.725987e+00 lineto +6.835e+01 4.783346e+00 lineto +6.946051e+01 5.122658e+00 lineto +6.966047e+01 5.046284e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.081635e+01 5.405358e+00 moveto +6.966047e+01 5.046284e+00 lineto +6.946051e+01 5.122658e+00 lineto +7.056681e+01 5.500674e+00 lineto +7.081635e+01 5.405358e+00 lineto +closepath +gsave +6.04154e-01 6.04154e-01 7.551926e-01 setrgbcolor +fill +grestore +newpath +7.081635e+01 5.405358e+00 moveto +6.966047e+01 5.046284e+00 lineto +6.946051e+01 5.122658e+00 lineto +7.056681e+01 5.500674e+00 lineto +7.081635e+01 5.405358e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.196673e+01 5.802866e+00 moveto +7.081635e+01 5.405358e+00 lineto +7.056681e+01 5.500674e+00 lineto +7.166783e+01 5.917034e+00 lineto +7.196673e+01 5.802866e+00 lineto +closepath +gsave +6.029126e-01 6.029126e-01 7.536408e-01 setrgbcolor +fill +grestore +newpath +7.196673e+01 5.802866e+00 moveto +7.081635e+01 5.405358e+00 lineto +7.056681e+01 5.500674e+00 lineto +7.166783e+01 5.917034e+00 lineto +7.196673e+01 5.802866e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.311052e+01 6.238434e+00 moveto +7.196673e+01 5.802866e+00 lineto +7.166783e+01 5.917034e+00 lineto +7.276254e+01 6.371346e+00 lineto +7.311052e+01 6.238434e+00 lineto +closepath +gsave +6.016106e-01 6.016106e-01 7.520133e-01 setrgbcolor +fill +grestore +newpath +7.311052e+01 6.238434e+00 moveto +7.196673e+01 5.802866e+00 lineto +7.166783e+01 5.917034e+00 lineto +7.276254e+01 6.371346e+00 lineto +7.311052e+01 6.238434e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.424662e+01 6.711648e+00 moveto +7.311052e+01 6.238434e+00 lineto +7.276254e+01 6.371346e+00 lineto +7.384991e+01 6.863178e+00 lineto +7.424662e+01 6.711648e+00 lineto +closepath +gsave +6.002495e-01 6.002495e-01 7.503119e-01 setrgbcolor +fill +grestore +newpath +7.424662e+01 6.711648e+00 moveto +7.311052e+01 6.238434e+00 lineto +7.276254e+01 6.371346e+00 lineto +7.384991e+01 6.863178e+00 lineto +7.424662e+01 6.711648e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.537397e+01 7.222061e+00 moveto +7.424662e+01 6.711648e+00 lineto +7.384991e+01 6.863178e+00 lineto +7.492889e+01 7.392066e+00 lineto +7.537397e+01 7.222061e+00 lineto +closepath +gsave +5.988309e-01 5.988309e-01 7.485386e-01 setrgbcolor +fill +grestore +newpath +7.537397e+01 7.222061e+00 moveto +7.424662e+01 6.711648e+00 lineto +7.384991e+01 6.863178e+00 lineto +7.492889e+01 7.392066e+00 lineto +7.537397e+01 7.222061e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.64915e+01 7.769189e+00 moveto +7.537397e+01 7.222061e+00 lineto +7.492889e+01 7.392066e+00 lineto +7.599847e+01 7.957508e+00 lineto +7.64915e+01 7.769189e+00 lineto +closepath +gsave +5.973563e-01 5.973563e-01 7.466954e-01 setrgbcolor +fill +grestore +newpath +7.64915e+01 7.769189e+00 moveto +7.537397e+01 7.222061e+00 lineto +7.492889e+01 7.392066e+00 lineto +7.599847e+01 7.957508e+00 lineto +7.64915e+01 7.769189e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.759815e+01 8.352514e+00 moveto +7.64915e+01 7.769189e+00 lineto +7.599847e+01 7.957508e+00 lineto +7.705764e+01 8.558968e+00 lineto +7.759815e+01 8.352514e+00 lineto +closepath +gsave +5.958275e-01 5.958275e-01 7.447844e-01 setrgbcolor +fill +grestore +newpath +7.759815e+01 8.352514e+00 moveto +7.64915e+01 7.769189e+00 lineto +7.599847e+01 7.957508e+00 lineto +7.705764e+01 8.558968e+00 lineto +7.759815e+01 8.352514e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.869287e+01 8.971485e+00 moveto +7.759815e+01 8.352514e+00 lineto +7.705764e+01 8.558968e+00 lineto +7.810539e+01 9.195879e+00 lineto +7.869287e+01 8.971485e+00 lineto +closepath +gsave +5.942462e-01 5.942462e-01 7.428078e-01 setrgbcolor +fill +grestore +newpath +7.869287e+01 8.971485e+00 moveto +7.759815e+01 8.352514e+00 lineto +7.705764e+01 8.558968e+00 lineto +7.810539e+01 9.195879e+00 lineto +7.869287e+01 8.971485e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.977462e+01 9.625514e+00 moveto +7.869287e+01 8.971485e+00 lineto +7.810539e+01 9.195879e+00 lineto +7.914073e+01 9.867636e+00 lineto +7.977462e+01 9.625514e+00 lineto +closepath +gsave +5.926143e-01 5.926143e-01 7.407678e-01 setrgbcolor +fill +grestore +newpath +7.977462e+01 9.625514e+00 moveto +7.869287e+01 8.971485e+00 lineto +7.810539e+01 9.195879e+00 lineto +7.914073e+01 9.867636e+00 lineto +7.977462e+01 9.625514e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.084239e+01 1.031398e+01 moveto +7.977462e+01 9.625514e+00 lineto +7.914073e+01 9.867636e+00 lineto +8.016269e+01 1.05736e+01 lineto +8.084239e+01 1.031398e+01 lineto +closepath +gsave +5.909336e-01 5.909336e-01 7.386669e-01 setrgbcolor +fill +grestore +newpath +8.084239e+01 1.031398e+01 moveto +7.977462e+01 9.625514e+00 lineto +7.914073e+01 9.867636e+00 lineto +8.016269e+01 1.05736e+01 lineto +8.084239e+01 1.031398e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.189515e+01 1.103624e+01 moveto +8.084239e+01 1.031398e+01 lineto +8.016269e+01 1.05736e+01 lineto +8.117029e+01 1.131311e+01 lineto +8.189515e+01 1.103624e+01 lineto +closepath +gsave +5.89206e-01 5.89206e-01 7.365075e-01 setrgbcolor +fill +grestore +newpath +8.189515e+01 1.103624e+01 moveto +8.084239e+01 1.031398e+01 lineto +8.016269e+01 1.05736e+01 lineto +8.117029e+01 1.131311e+01 lineto +8.189515e+01 1.103624e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.293192e+01 1.17916e+01 moveto +8.189515e+01 1.103624e+01 lineto +8.117029e+01 1.131311e+01 lineto +8.216257e+01 1.208546e+01 lineto +8.293192e+01 1.17916e+01 lineto +closepath +gsave +5.874335e-01 5.874335e-01 7.342919e-01 setrgbcolor +fill +grestore +newpath +8.293192e+01 1.17916e+01 moveto +8.189515e+01 1.103624e+01 lineto +8.117029e+01 1.131311e+01 lineto +8.216257e+01 1.208546e+01 lineto +8.293192e+01 1.17916e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.395172e+01 1.257935e+01 moveto +8.293192e+01 1.17916e+01 lineto +8.216257e+01 1.208546e+01 lineto +8.313861e+01 1.288993e+01 lineto +8.395172e+01 1.257935e+01 lineto +closepath +gsave +5.856183e-01 5.856183e-01 7.320228e-01 setrgbcolor +fill +grestore +newpath +8.395172e+01 1.257935e+01 moveto +8.293192e+01 1.17916e+01 lineto +8.216257e+01 1.208546e+01 lineto +8.313861e+01 1.288993e+01 lineto +8.395172e+01 1.257935e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.495356e+01 1.339874e+01 moveto +8.395172e+01 1.257935e+01 lineto +8.313861e+01 1.288993e+01 lineto +8.409748e+01 1.372574e+01 lineto +8.495356e+01 1.339874e+01 lineto +closepath +gsave +5.837623e-01 5.837623e-01 7.297028e-01 setrgbcolor +fill +grestore +newpath +8.495356e+01 1.339874e+01 moveto +8.395172e+01 1.257935e+01 lineto +8.313861e+01 1.288993e+01 lineto +8.409748e+01 1.372574e+01 lineto +8.495356e+01 1.339874e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.593652e+01 1.4249e+01 moveto +8.495356e+01 1.339874e+01 lineto +8.409748e+01 1.372574e+01 lineto +8.503826e+01 1.45921e+01 lineto +8.593652e+01 1.4249e+01 lineto +closepath +gsave +5.818677e-01 5.818677e-01 7.273346e-01 setrgbcolor +fill +grestore +newpath +8.593652e+01 1.4249e+01 moveto +8.495356e+01 1.339874e+01 lineto +8.409748e+01 1.372574e+01 lineto +8.503826e+01 1.45921e+01 lineto +8.593652e+01 1.4249e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.689965e+01 1.512933e+01 moveto +8.593652e+01 1.4249e+01 lineto +8.503826e+01 1.45921e+01 lineto +8.596007e+01 1.548821e+01 lineto +8.689965e+01 1.512933e+01 lineto +closepath +gsave +5.799367e-01 5.799367e-01 7.249208e-01 setrgbcolor +fill +grestore +newpath +8.689965e+01 1.512933e+01 moveto +8.593652e+01 1.4249e+01 lineto +8.503826e+01 1.45921e+01 lineto +8.596007e+01 1.548821e+01 lineto +8.689965e+01 1.512933e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.784205e+01 1.603888e+01 moveto +8.689965e+01 1.512933e+01 lineto +8.596007e+01 1.548821e+01 lineto +8.686204e+01 1.64132e+01 lineto +8.784205e+01 1.603888e+01 lineto +closepath +gsave +5.779715e-01 5.779715e-01 7.224643e-01 setrgbcolor +fill +grestore +newpath +8.784205e+01 1.603888e+01 moveto +8.689965e+01 1.512933e+01 lineto +8.596007e+01 1.548821e+01 lineto +8.686204e+01 1.64132e+01 lineto +8.784205e+01 1.603888e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.876282e+01 1.69768e+01 moveto +8.784205e+01 1.603888e+01 lineto +8.686204e+01 1.64132e+01 lineto +8.77433e+01 1.736621e+01 lineto +8.876282e+01 1.69768e+01 lineto +closepath +gsave +5.759744e-01 5.759744e-01 7.199679e-01 setrgbcolor +fill +grestore +newpath +8.876282e+01 1.69768e+01 moveto +8.784205e+01 1.603888e+01 lineto +8.686204e+01 1.64132e+01 lineto +8.77433e+01 1.736621e+01 lineto +8.876282e+01 1.69768e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.96611e+01 1.794219e+01 moveto +8.876282e+01 1.69768e+01 lineto +8.77433e+01 1.736621e+01 lineto +8.860304e+01 1.834633e+01 lineto +8.96611e+01 1.794219e+01 lineto +closepath +gsave +5.739476e-01 5.739476e-01 7.174345e-01 setrgbcolor +fill +grestore +newpath +8.96611e+01 1.794219e+01 moveto +8.876282e+01 1.69768e+01 lineto +8.77433e+01 1.736621e+01 lineto +8.860304e+01 1.834633e+01 lineto +8.96611e+01 1.794219e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.053602e+01 1.893416e+01 moveto +8.96611e+01 1.794219e+01 lineto +8.860304e+01 1.834633e+01 lineto +8.944042e+01 1.935263e+01 lineto +9.053602e+01 1.893416e+01 lineto +closepath +gsave +5.718935e-01 5.718935e-01 7.148669e-01 setrgbcolor +fill +grestore +newpath +9.053602e+01 1.893416e+01 moveto +8.96611e+01 1.794219e+01 lineto +8.860304e+01 1.834633e+01 lineto +8.944042e+01 1.935263e+01 lineto +9.053602e+01 1.893416e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.138676e+01 1.995175e+01 moveto +9.053602e+01 1.893416e+01 lineto +8.944042e+01 1.935263e+01 lineto +9.025467e+01 2.038416e+01 lineto +9.138676e+01 1.995175e+01 lineto +closepath +gsave +5.698145e-01 5.698145e-01 7.122681e-01 setrgbcolor +fill +grestore +newpath +9.138676e+01 1.995175e+01 moveto +9.053602e+01 1.893416e+01 lineto +8.944042e+01 1.935263e+01 lineto +9.025467e+01 2.038416e+01 lineto +9.138676e+01 1.995175e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.221253e+01 2.0994e+01 moveto +9.138676e+01 1.995175e+01 lineto +9.025467e+01 2.038416e+01 lineto +9.1045e+01 2.143995e+01 lineto +9.221253e+01 2.0994e+01 lineto +closepath +gsave +5.677128e-01 5.677128e-01 7.09641e-01 setrgbcolor +fill +grestore +newpath +9.221253e+01 2.0994e+01 moveto +9.138676e+01 1.995175e+01 lineto +9.025467e+01 2.038416e+01 lineto +9.1045e+01 2.143995e+01 lineto +9.221253e+01 2.0994e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.301252e+01 2.205993e+01 moveto +9.221253e+01 2.0994e+01 lineto +9.1045e+01 2.143995e+01 lineto +9.181067e+01 2.251899e+01 lineto +9.301252e+01 2.205993e+01 lineto +closepath +gsave +5.65591e-01 5.65591e-01 7.069887e-01 setrgbcolor +fill +grestore +newpath +9.301252e+01 2.205993e+01 moveto +9.221253e+01 2.0994e+01 lineto +9.1045e+01 2.143995e+01 lineto +9.181067e+01 2.251899e+01 lineto +9.301252e+01 2.205993e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.3786e+01 2.314852e+01 moveto +9.301252e+01 2.205993e+01 lineto +9.181067e+01 2.251899e+01 lineto +9.255096e+01 2.362026e+01 lineto +9.3786e+01 2.314852e+01 lineto +closepath +gsave +5.634513e-01 5.634513e-01 7.043141e-01 setrgbcolor +fill +grestore +newpath +9.3786e+01 2.314852e+01 moveto +9.301252e+01 2.205993e+01 lineto +9.181067e+01 2.251899e+01 lineto +9.255096e+01 2.362026e+01 lineto +9.3786e+01 2.314852e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.453222e+01 2.425875e+01 moveto +9.3786e+01 2.314852e+01 lineto +9.255096e+01 2.362026e+01 lineto +9.326517e+01 2.474271e+01 lineto +9.453222e+01 2.425875e+01 lineto +closepath +gsave +5.612962e-01 5.612962e-01 7.016202e-01 setrgbcolor +fill +grestore +newpath +9.453222e+01 2.425875e+01 moveto +9.3786e+01 2.314852e+01 lineto +9.255096e+01 2.362026e+01 lineto +9.326517e+01 2.474271e+01 lineto +9.453222e+01 2.425875e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.525047e+01 2.538957e+01 moveto +9.453222e+01 2.425875e+01 lineto +9.326517e+01 2.474271e+01 lineto +9.395261e+01 2.58853e+01 lineto +9.525047e+01 2.538957e+01 lineto +closepath +gsave +5.591281e-01 5.591281e-01 6.989101e-01 setrgbcolor +fill +grestore +newpath +9.525047e+01 2.538957e+01 moveto +9.453222e+01 2.425875e+01 lineto +9.326517e+01 2.474271e+01 lineto +9.395261e+01 2.58853e+01 lineto +9.525047e+01 2.538957e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.594009e+01 2.65399e+01 moveto +9.525047e+01 2.538957e+01 lineto +9.395261e+01 2.58853e+01 lineto +9.461264e+01 2.704693e+01 lineto +9.594009e+01 2.65399e+01 lineto +closepath +gsave +5.569494e-01 5.569494e-01 6.961868e-01 setrgbcolor +fill +grestore +newpath +9.594009e+01 2.65399e+01 moveto +9.525047e+01 2.538957e+01 lineto +9.395261e+01 2.58853e+01 lineto +9.461264e+01 2.704693e+01 lineto +9.594009e+01 2.65399e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.660041e+01 2.770865e+01 moveto +9.594009e+01 2.65399e+01 lineto +9.461264e+01 2.704693e+01 lineto +9.524463e+01 2.822651e+01 lineto +9.660041e+01 2.770865e+01 lineto +closepath +gsave +5.547626e-01 5.547626e-01 6.934532e-01 setrgbcolor +fill +grestore +newpath +9.660041e+01 2.770865e+01 moveto +9.594009e+01 2.65399e+01 lineto +9.461264e+01 2.704693e+01 lineto +9.524463e+01 2.822651e+01 lineto +9.660041e+01 2.770865e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.723082e+01 2.889472e+01 moveto +9.660041e+01 2.770865e+01 lineto +9.524463e+01 2.822651e+01 lineto +9.584799e+01 2.942291e+01 lineto +9.723082e+01 2.889472e+01 lineto +closepath +gsave +5.5257e-01 5.5257e-01 6.907125e-01 setrgbcolor +fill +grestore +newpath +9.723082e+01 2.889472e+01 moveto +9.660041e+01 2.770865e+01 lineto +9.524463e+01 2.822651e+01 lineto +9.584799e+01 2.942291e+01 lineto +9.723082e+01 2.889472e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.78307e+01 3.009699e+01 moveto +9.723082e+01 2.889472e+01 lineto +9.584799e+01 2.942291e+01 lineto +9.642213e+01 3.063501e+01 lineto +9.78307e+01 3.009699e+01 lineto +closepath +gsave +5.50374e-01 5.50374e-01 6.879675e-01 setrgbcolor +fill +grestore +newpath +9.78307e+01 3.009699e+01 moveto +9.723082e+01 2.889472e+01 lineto +9.584799e+01 2.942291e+01 lineto +9.642213e+01 3.063501e+01 lineto +9.78307e+01 3.009699e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.83995e+01 3.131432e+01 moveto +9.78307e+01 3.009699e+01 lineto +9.642213e+01 3.063501e+01 lineto +9.696653e+01 3.186166e+01 lineto +9.83995e+01 3.131432e+01 lineto +closepath +gsave +5.48177e-01 5.48177e-01 6.852213e-01 setrgbcolor +fill +grestore +newpath +9.83995e+01 3.131432e+01 moveto +9.78307e+01 3.009699e+01 lineto +9.642213e+01 3.063501e+01 lineto +9.696653e+01 3.186166e+01 lineto +9.83995e+01 3.131432e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.893668e+01 3.254555e+01 moveto +9.83995e+01 3.131432e+01 lineto +9.696653e+01 3.186166e+01 lineto +9.748066e+01 3.310169e+01 lineto +9.893668e+01 3.254555e+01 lineto +closepath +gsave +5.459814e-01 5.459814e-01 6.824768e-01 setrgbcolor +fill +grestore +newpath +9.893668e+01 3.254555e+01 moveto +9.83995e+01 3.131432e+01 lineto +9.696653e+01 3.186166e+01 lineto +9.748066e+01 3.310169e+01 lineto +9.893668e+01 3.254555e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.944173e+01 3.378952e+01 moveto +9.893668e+01 3.254555e+01 lineto +9.748066e+01 3.310169e+01 lineto +9.796404e+01 3.435394e+01 lineto +9.944173e+01 3.378952e+01 lineto +closepath +gsave +5.437895e-01 5.437895e-01 6.797369e-01 setrgbcolor +fill +grestore +newpath +9.944173e+01 3.378952e+01 moveto +9.893668e+01 3.254555e+01 lineto +9.748066e+01 3.310169e+01 lineto +9.796404e+01 3.435394e+01 lineto +9.944173e+01 3.378952e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.991417e+01 3.504505e+01 moveto +9.944173e+01 3.378952e+01 lineto +9.796404e+01 3.435394e+01 lineto +9.841621e+01 3.561721e+01 lineto +9.991417e+01 3.504505e+01 lineto +closepath +gsave +5.416036e-01 5.416036e-01 6.770045e-01 setrgbcolor +fill +grestore +newpath +9.991417e+01 3.504505e+01 moveto +9.944173e+01 3.378952e+01 lineto +9.796404e+01 3.435394e+01 lineto +9.841621e+01 3.561721e+01 lineto +9.991417e+01 3.504505e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.003535e+02 3.631095e+01 moveto +9.991417e+01 3.504505e+01 lineto +9.841621e+01 3.561721e+01 lineto +9.883674e+01 3.689031e+01 lineto +1.003535e+02 3.631095e+01 lineto +closepath +gsave +5.39426e-01 5.39426e-01 6.742824e-01 setrgbcolor +fill +grestore +newpath +1.003535e+02 3.631095e+01 moveto +9.991417e+01 3.504505e+01 lineto +9.841621e+01 3.561721e+01 lineto +9.883674e+01 3.689031e+01 lineto +1.003535e+02 3.631095e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +1.007595e+02 3.758603e+01 moveto +1.003535e+02 3.631095e+01 lineto +9.883674e+01 3.689031e+01 lineto +9.922523e+01 3.817204e+01 lineto +1.007595e+02 3.758603e+01 lineto +closepath +gsave +5.372588e-01 5.372588e-01 6.715735e-01 setrgbcolor +fill +grestore +newpath +1.007595e+02 3.758603e+01 moveto +1.003535e+02 3.631095e+01 lineto +9.883674e+01 3.689031e+01 lineto +9.922523e+01 3.817204e+01 lineto +1.007595e+02 3.758603e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.61205e+01 4.222079e+00 moveto +6.500363e+01 4.000655e+00 lineto +6.500345e+01 4.000713e+00 lineto +6.606336e+01 4.240018e+00 lineto +6.61205e+01 4.222079e+00 lineto +closepath +gsave +6.087947e-01 6.087947e-01 7.609934e-01 setrgbcolor +fill +grestore +newpath +6.61205e+01 4.222079e+00 moveto +6.500363e+01 4.000655e+00 lineto +6.500345e+01 4.000713e+00 lineto +6.606336e+01 4.240018e+00 lineto +6.61205e+01 4.222079e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.723631e+01 4.483058e+00 moveto +6.61205e+01 4.222079e+00 lineto +6.606336e+01 4.240018e+00 lineto +6.712227e+01 4.518862e+00 lineto +6.723631e+01 4.483058e+00 lineto +closepath +gsave +6.084198e-01 6.084198e-01 7.605248e-01 setrgbcolor +fill +grestore +newpath +6.723631e+01 4.483058e+00 moveto +6.61205e+01 4.222079e+00 lineto +6.606336e+01 4.240018e+00 lineto +6.712227e+01 4.518862e+00 lineto +6.723631e+01 4.483058e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.835e+01 4.783346e+00 moveto +6.723631e+01 4.483058e+00 lineto +6.712227e+01 4.518862e+00 lineto +6.817917e+01 4.836981e+00 lineto +6.835e+01 4.783346e+00 lineto +closepath +gsave +6.079775e-01 6.079775e-01 7.599719e-01 setrgbcolor +fill +grestore +newpath +6.835e+01 4.783346e+00 moveto +6.723631e+01 4.483058e+00 lineto +6.712227e+01 4.518862e+00 lineto +6.817917e+01 4.836981e+00 lineto +6.835e+01 4.783346e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.946051e+01 5.122658e+00 moveto +6.835e+01 4.783346e+00 lineto +6.817917e+01 4.836981e+00 lineto +6.923306e+01 5.194073e+00 lineto +6.946051e+01 5.122658e+00 lineto +closepath +gsave +6.074683e-01 6.074683e-01 7.593354e-01 setrgbcolor +fill +grestore +newpath +6.946051e+01 5.122658e+00 moveto +6.835e+01 4.783346e+00 lineto +6.817917e+01 4.836981e+00 lineto +6.923306e+01 5.194073e+00 lineto +6.946051e+01 5.122658e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.056681e+01 5.500674e+00 moveto +6.946051e+01 5.122658e+00 lineto +6.923306e+01 5.194073e+00 lineto +7.028294e+01 5.589801e+00 lineto +7.056681e+01 5.500674e+00 lineto +closepath +gsave +6.068928e-01 6.068928e-01 7.58616e-01 setrgbcolor +fill +grestore +newpath +7.056681e+01 5.500674e+00 moveto +6.946051e+01 5.122658e+00 lineto +6.923306e+01 5.194073e+00 lineto +7.028294e+01 5.589801e+00 lineto +7.056681e+01 5.500674e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.166783e+01 5.917034e+00 moveto +7.056681e+01 5.500674e+00 lineto +7.028294e+01 5.589801e+00 lineto +7.132782e+01 6.023789e+00 lineto +7.166783e+01 5.917034e+00 lineto +closepath +gsave +6.062516e-01 6.062516e-01 7.578145e-01 setrgbcolor +fill +grestore +newpath +7.166783e+01 5.917034e+00 moveto +7.056681e+01 5.500674e+00 lineto +7.028294e+01 5.589801e+00 lineto +7.132782e+01 6.023789e+00 lineto +7.166783e+01 5.917034e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.276254e+01 6.371346e+00 moveto +7.166783e+01 5.917034e+00 lineto +7.132782e+01 6.023789e+00 lineto +7.236671e+01 6.495628e+00 lineto +7.276254e+01 6.371346e+00 lineto +closepath +gsave +6.055454e-01 6.055454e-01 7.569317e-01 setrgbcolor +fill +grestore +newpath +7.276254e+01 6.371346e+00 moveto +7.166783e+01 5.917034e+00 lineto +7.132782e+01 6.023789e+00 lineto +7.236671e+01 6.495628e+00 lineto +7.276254e+01 6.371346e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.384991e+01 6.863178e+00 moveto +7.276254e+01 6.371346e+00 lineto +7.236671e+01 6.495628e+00 lineto +7.339863e+01 7.004869e+00 lineto +7.384991e+01 6.863178e+00 lineto +closepath +gsave +6.04775e-01 6.04775e-01 7.559687e-01 setrgbcolor +fill +grestore +newpath +7.384991e+01 6.863178e+00 moveto +7.276254e+01 6.371346e+00 lineto +7.236671e+01 6.495628e+00 lineto +7.339863e+01 7.004869e+00 lineto +7.384991e+01 6.863178e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.492889e+01 7.392066e+00 moveto +7.384991e+01 6.863178e+00 lineto +7.339863e+01 7.004869e+00 lineto +7.442259e+01 7.551032e+00 lineto +7.492889e+01 7.392066e+00 lineto +closepath +gsave +6.039413e-01 6.039413e-01 7.549266e-01 setrgbcolor +fill +grestore +newpath +7.492889e+01 7.392066e+00 moveto +7.384991e+01 6.863178e+00 lineto +7.339863e+01 7.004869e+00 lineto +7.442259e+01 7.551032e+00 lineto +7.492889e+01 7.392066e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.599847e+01 7.957508e+00 moveto +7.492889e+01 7.392066e+00 lineto +7.442259e+01 7.551032e+00 lineto +7.543763e+01 8.133598e+00 lineto +7.599847e+01 7.957508e+00 lineto +closepath +gsave +6.030452e-01 6.030452e-01 7.538066e-01 setrgbcolor +fill +grestore +newpath +7.599847e+01 7.957508e+00 moveto +7.492889e+01 7.392066e+00 lineto +7.442259e+01 7.551032e+00 lineto +7.543763e+01 8.133598e+00 lineto +7.599847e+01 7.957508e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.705764e+01 8.558968e+00 moveto +7.599847e+01 7.957508e+00 lineto +7.543763e+01 8.133598e+00 lineto +7.644279e+01 8.752016e+00 lineto +7.705764e+01 8.558968e+00 lineto +closepath +gsave +6.020878e-01 6.020878e-01 7.526098e-01 setrgbcolor +fill +grestore +newpath +7.705764e+01 8.558968e+00 moveto +7.599847e+01 7.957508e+00 lineto +7.543763e+01 8.133598e+00 lineto +7.644279e+01 8.752016e+00 lineto +7.705764e+01 8.558968e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.810539e+01 9.195879e+00 moveto +7.705764e+01 8.558968e+00 lineto +7.644279e+01 8.752016e+00 lineto +7.743711e+01 9.405702e+00 lineto +7.810539e+01 9.195879e+00 lineto +closepath +gsave +6.010701e-01 6.010701e-01 7.513377e-01 setrgbcolor +fill +grestore +newpath +7.810539e+01 9.195879e+00 moveto +7.705764e+01 8.558968e+00 lineto +7.644279e+01 8.752016e+00 lineto +7.743711e+01 9.405702e+00 lineto +7.810539e+01 9.195879e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.914073e+01 9.867636e+00 moveto +7.810539e+01 9.195879e+00 lineto +7.743711e+01 9.405702e+00 lineto +7.841966e+01 1.009403e+01 lineto +7.914073e+01 9.867636e+00 lineto +closepath +gsave +5.999933e-01 5.999933e-01 7.499916e-01 setrgbcolor +fill +grestore +newpath +7.914073e+01 9.867636e+00 moveto +7.810539e+01 9.195879e+00 lineto +7.743711e+01 9.405702e+00 lineto +7.841966e+01 1.009403e+01 lineto +7.914073e+01 9.867636e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.016269e+01 1.05736e+01 moveto +7.914073e+01 9.867636e+00 lineto +7.841966e+01 1.009403e+01 lineto +7.93895e+01 1.081636e+01 lineto +8.016269e+01 1.05736e+01 lineto +closepath +gsave +5.988586e-01 5.988586e-01 7.485732e-01 setrgbcolor +fill +grestore +newpath +8.016269e+01 1.05736e+01 moveto +7.914073e+01 9.867636e+00 lineto +7.841966e+01 1.009403e+01 lineto +7.93895e+01 1.081636e+01 lineto +8.016269e+01 1.05736e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.117029e+01 1.131311e+01 moveto +8.016269e+01 1.05736e+01 lineto +7.93895e+01 1.081636e+01 lineto +8.034572e+01 1.157201e+01 lineto +8.117029e+01 1.131311e+01 lineto +closepath +gsave +5.976672e-01 5.976672e-01 7.47084e-01 setrgbcolor +fill +grestore +newpath +8.117029e+01 1.131311e+01 moveto +8.016269e+01 1.05736e+01 lineto +7.93895e+01 1.081636e+01 lineto +8.034572e+01 1.157201e+01 lineto +8.117029e+01 1.131311e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.216257e+01 1.208546e+01 moveto +8.117029e+01 1.131311e+01 lineto +8.034572e+01 1.157201e+01 lineto +8.128741e+01 1.236024e+01 lineto +8.216257e+01 1.208546e+01 lineto +closepath +gsave +5.964206e-01 5.964206e-01 7.455258e-01 setrgbcolor +fill +grestore +newpath +8.216257e+01 1.208546e+01 moveto +8.117029e+01 1.131311e+01 lineto +8.034572e+01 1.157201e+01 lineto +8.128741e+01 1.236024e+01 lineto +8.216257e+01 1.208546e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.313861e+01 1.288993e+01 moveto +8.216257e+01 1.208546e+01 lineto +8.128741e+01 1.236024e+01 lineto +8.221368e+01 1.318033e+01 lineto +8.313861e+01 1.288993e+01 lineto +closepath +gsave +5.951202e-01 5.951202e-01 7.439002e-01 setrgbcolor +fill +grestore +newpath +8.313861e+01 1.288993e+01 moveto +8.216257e+01 1.208546e+01 lineto +8.128741e+01 1.236024e+01 lineto +8.221368e+01 1.318033e+01 lineto +8.313861e+01 1.288993e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.409748e+01 1.372574e+01 moveto +8.313861e+01 1.288993e+01 lineto +8.221368e+01 1.318033e+01 lineto +8.312365e+01 1.403149e+01 lineto +8.409748e+01 1.372574e+01 lineto +closepath +gsave +5.937673e-01 5.937673e-01 7.422092e-01 setrgbcolor +fill +grestore +newpath +8.409748e+01 1.372574e+01 moveto +8.313861e+01 1.288993e+01 lineto +8.221368e+01 1.318033e+01 lineto +8.312365e+01 1.403149e+01 lineto +8.409748e+01 1.372574e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.503826e+01 1.45921e+01 moveto +8.409748e+01 1.372574e+01 lineto +8.312365e+01 1.403149e+01 lineto +8.401646e+01 1.491293e+01 lineto +8.503826e+01 1.45921e+01 lineto +closepath +gsave +5.923637e-01 5.923637e-01 7.404546e-01 setrgbcolor +fill +grestore +newpath +8.503826e+01 1.45921e+01 moveto +8.409748e+01 1.372574e+01 lineto +8.312365e+01 1.403149e+01 lineto +8.401646e+01 1.491293e+01 lineto +8.503826e+01 1.45921e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.596007e+01 1.548821e+01 moveto +8.503826e+01 1.45921e+01 lineto +8.401646e+01 1.491293e+01 lineto +8.489126e+01 1.582379e+01 lineto +8.596007e+01 1.548821e+01 lineto +closepath +gsave +5.909108e-01 5.909108e-01 7.386385e-01 setrgbcolor +fill +grestore +newpath +8.596007e+01 1.548821e+01 moveto +8.503826e+01 1.45921e+01 lineto +8.401646e+01 1.491293e+01 lineto +8.489126e+01 1.582379e+01 lineto +8.596007e+01 1.548821e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.686204e+01 1.64132e+01 moveto +8.596007e+01 1.548821e+01 lineto +8.489126e+01 1.582379e+01 lineto +8.574724e+01 1.676323e+01 lineto +8.686204e+01 1.64132e+01 lineto +closepath +gsave +5.894104e-01 5.894104e-01 7.36763e-01 setrgbcolor +fill +grestore +newpath +8.686204e+01 1.64132e+01 moveto +8.596007e+01 1.548821e+01 lineto +8.489126e+01 1.582379e+01 lineto +8.574724e+01 1.676323e+01 lineto +8.686204e+01 1.64132e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.77433e+01 1.736621e+01 moveto +8.686204e+01 1.64132e+01 lineto +8.574724e+01 1.676323e+01 lineto +8.658356e+01 1.773034e+01 lineto +8.77433e+01 1.736621e+01 lineto +closepath +gsave +5.878641e-01 5.878641e-01 7.348301e-01 setrgbcolor +fill +grestore +newpath +8.77433e+01 1.736621e+01 moveto +8.686204e+01 1.64132e+01 lineto +8.574724e+01 1.676323e+01 lineto +8.658356e+01 1.773034e+01 lineto +8.77433e+01 1.736621e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.860304e+01 1.834633e+01 moveto +8.77433e+01 1.736621e+01 lineto +8.658356e+01 1.773034e+01 lineto +8.739946e+01 1.872423e+01 lineto +8.860304e+01 1.834633e+01 lineto +closepath +gsave +5.862737e-01 5.862737e-01 7.328421e-01 setrgbcolor +fill +grestore +newpath +8.860304e+01 1.834633e+01 moveto +8.77433e+01 1.736621e+01 lineto +8.658356e+01 1.773034e+01 lineto +8.739946e+01 1.872423e+01 lineto +8.860304e+01 1.834633e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.944042e+01 1.935263e+01 moveto +8.860304e+01 1.834633e+01 lineto +8.739946e+01 1.872423e+01 lineto +8.819414e+01 1.974393e+01 lineto +8.944042e+01 1.935263e+01 lineto +closepath +gsave +5.84641e-01 5.84641e-01 7.308013e-01 setrgbcolor +fill +grestore +newpath +8.944042e+01 1.935263e+01 moveto +8.860304e+01 1.834633e+01 lineto +8.739946e+01 1.872423e+01 lineto +8.819414e+01 1.974393e+01 lineto +8.944042e+01 1.935263e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.025467e+01 2.038416e+01 moveto +8.944042e+01 1.935263e+01 lineto +8.819414e+01 1.974393e+01 lineto +8.896687e+01 2.07885e+01 lineto +9.025467e+01 2.038416e+01 lineto +closepath +gsave +5.82968e-01 5.82968e-01 7.2871e-01 setrgbcolor +fill +grestore +newpath +9.025467e+01 2.038416e+01 moveto +8.944042e+01 1.935263e+01 lineto +8.819414e+01 1.974393e+01 lineto +8.896687e+01 2.07885e+01 lineto +9.025467e+01 2.038416e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.1045e+01 2.143995e+01 moveto +9.025467e+01 2.038416e+01 lineto +8.896687e+01 2.07885e+01 lineto +8.97169e+01 2.185694e+01 lineto +9.1045e+01 2.143995e+01 lineto +closepath +gsave +5.812564e-01 5.812564e-01 7.265705e-01 setrgbcolor +fill +grestore +newpath +9.1045e+01 2.143995e+01 moveto +9.025467e+01 2.038416e+01 lineto +8.896687e+01 2.07885e+01 lineto +8.97169e+01 2.185694e+01 lineto +9.1045e+01 2.143995e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.181067e+01 2.251899e+01 moveto +9.1045e+01 2.143995e+01 lineto +8.97169e+01 2.185694e+01 lineto +9.044353e+01 2.294824e+01 lineto +9.181067e+01 2.251899e+01 lineto +closepath +gsave +5.795083e-01 5.795083e-01 7.243854e-01 setrgbcolor +fill +grestore +newpath +9.181067e+01 2.251899e+01 moveto +9.1045e+01 2.143995e+01 lineto +8.97169e+01 2.185694e+01 lineto +9.044353e+01 2.294824e+01 lineto +9.181067e+01 2.251899e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.255096e+01 2.362026e+01 moveto +9.181067e+01 2.251899e+01 lineto +9.044353e+01 2.294824e+01 lineto +9.114607e+01 2.406136e+01 lineto +9.255096e+01 2.362026e+01 lineto +closepath +gsave +5.777256e-01 5.777256e-01 7.22157e-01 setrgbcolor +fill +grestore +newpath +9.255096e+01 2.362026e+01 moveto +9.181067e+01 2.251899e+01 lineto +9.044353e+01 2.294824e+01 lineto +9.114607e+01 2.406136e+01 lineto +9.255096e+01 2.362026e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.326517e+01 2.474271e+01 moveto +9.255096e+01 2.362026e+01 lineto +9.114607e+01 2.406136e+01 lineto +9.182385e+01 2.519525e+01 lineto +9.326517e+01 2.474271e+01 lineto +closepath +gsave +5.759104e-01 5.759104e-01 7.19888e-01 setrgbcolor +fill +grestore +newpath +9.326517e+01 2.474271e+01 moveto +9.255096e+01 2.362026e+01 lineto +9.114607e+01 2.406136e+01 lineto +9.182385e+01 2.519525e+01 lineto +9.326517e+01 2.474271e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.395261e+01 2.58853e+01 moveto +9.326517e+01 2.474271e+01 lineto +9.182385e+01 2.519525e+01 lineto +9.247624e+01 2.634884e+01 lineto +9.395261e+01 2.58853e+01 lineto +closepath +gsave +5.740648e-01 5.740648e-01 7.17581e-01 setrgbcolor +fill +grestore +newpath +9.395261e+01 2.58853e+01 moveto +9.326517e+01 2.474271e+01 lineto +9.182385e+01 2.519525e+01 lineto +9.247624e+01 2.634884e+01 lineto +9.395261e+01 2.58853e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.461264e+01 2.704693e+01 moveto +9.395261e+01 2.58853e+01 lineto +9.247624e+01 2.634884e+01 lineto +9.310261e+01 2.752104e+01 lineto +9.461264e+01 2.704693e+01 lineto +closepath +gsave +5.721907e-01 5.721907e-01 7.152384e-01 setrgbcolor +fill +grestore +newpath +9.461264e+01 2.704693e+01 moveto +9.395261e+01 2.58853e+01 lineto +9.247624e+01 2.634884e+01 lineto +9.310261e+01 2.752104e+01 lineto +9.461264e+01 2.704693e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.524463e+01 2.822651e+01 moveto +9.461264e+01 2.704693e+01 lineto +9.310261e+01 2.752104e+01 lineto +9.370238e+01 2.871074e+01 lineto +9.524463e+01 2.822651e+01 lineto +closepath +gsave +5.702904e-01 5.702904e-01 7.12863e-01 setrgbcolor +fill +grestore +newpath +9.524463e+01 2.822651e+01 moveto +9.461264e+01 2.704693e+01 lineto +9.310261e+01 2.752104e+01 lineto +9.370238e+01 2.871074e+01 lineto +9.524463e+01 2.822651e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.584799e+01 2.942291e+01 moveto +9.524463e+01 2.822651e+01 lineto +9.370238e+01 2.871074e+01 lineto +9.427497e+01 2.99168e+01 lineto +9.584799e+01 2.942291e+01 lineto +closepath +gsave +5.68366e-01 5.68366e-01 7.104575e-01 setrgbcolor +fill +grestore +newpath +9.584799e+01 2.942291e+01 moveto +9.524463e+01 2.822651e+01 lineto +9.370238e+01 2.871074e+01 lineto +9.427497e+01 2.99168e+01 lineto +9.584799e+01 2.942291e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.642213e+01 3.063501e+01 moveto +9.584799e+01 2.942291e+01 lineto +9.427497e+01 2.99168e+01 lineto +9.481984e+01 3.113809e+01 lineto +9.642213e+01 3.063501e+01 lineto +closepath +gsave +5.664196e-01 5.664196e-01 7.080245e-01 setrgbcolor +fill +grestore +newpath +9.642213e+01 3.063501e+01 moveto +9.584799e+01 2.942291e+01 lineto +9.427497e+01 2.99168e+01 lineto +9.481984e+01 3.113809e+01 lineto +9.642213e+01 3.063501e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.696653e+01 3.186166e+01 moveto +9.642213e+01 3.063501e+01 lineto +9.481984e+01 3.113809e+01 lineto +9.533648e+01 3.237346e+01 lineto +9.696653e+01 3.186166e+01 lineto +closepath +gsave +5.644534e-01 5.644534e-01 7.055668e-01 setrgbcolor +fill +grestore +newpath +9.696653e+01 3.186166e+01 moveto +9.642213e+01 3.063501e+01 lineto +9.481984e+01 3.113809e+01 lineto +9.533648e+01 3.237346e+01 lineto +9.696653e+01 3.186166e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.748066e+01 3.310169e+01 moveto +9.696653e+01 3.186166e+01 lineto +9.533648e+01 3.237346e+01 lineto +9.582439e+01 3.362172e+01 lineto +9.748066e+01 3.310169e+01 lineto +closepath +gsave +5.624697e-01 5.624697e-01 7.030871e-01 setrgbcolor +fill +grestore +newpath +9.748066e+01 3.310169e+01 moveto +9.696653e+01 3.186166e+01 lineto +9.533648e+01 3.237346e+01 lineto +9.582439e+01 3.362172e+01 lineto +9.748066e+01 3.310169e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.796404e+01 3.435394e+01 moveto +9.748066e+01 3.310169e+01 lineto +9.582439e+01 3.362172e+01 lineto +9.628312e+01 3.488171e+01 lineto +9.796404e+01 3.435394e+01 lineto +closepath +gsave +5.604706e-01 5.604706e-01 7.005883e-01 setrgbcolor +fill +grestore +newpath +9.796404e+01 3.435394e+01 moveto +9.748066e+01 3.310169e+01 lineto +9.582439e+01 3.362172e+01 lineto +9.628312e+01 3.488171e+01 lineto +9.796404e+01 3.435394e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.841621e+01 3.561721e+01 moveto +9.796404e+01 3.435394e+01 lineto +9.628312e+01 3.488171e+01 lineto +9.671223e+01 3.615222e+01 lineto +9.841621e+01 3.561721e+01 lineto +closepath +gsave +5.584583e-01 5.584583e-01 6.980729e-01 setrgbcolor +fill +grestore +newpath +9.841621e+01 3.561721e+01 moveto +9.796404e+01 3.435394e+01 lineto +9.628312e+01 3.488171e+01 lineto +9.671223e+01 3.615222e+01 lineto +9.841621e+01 3.561721e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.883674e+01 3.689031e+01 moveto +9.841621e+01 3.561721e+01 lineto +9.671223e+01 3.615222e+01 lineto +9.711132e+01 3.743205e+01 lineto +9.883674e+01 3.689031e+01 lineto +closepath +gsave +5.564351e-01 5.564351e-01 6.955439e-01 setrgbcolor +fill +grestore +newpath +9.883674e+01 3.689031e+01 moveto +9.841621e+01 3.561721e+01 lineto +9.671223e+01 3.615222e+01 lineto +9.711132e+01 3.743205e+01 lineto +9.883674e+01 3.689031e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.922523e+01 3.817204e+01 moveto +9.883674e+01 3.689031e+01 lineto +9.711132e+01 3.743205e+01 lineto +9.748e+01 3.872e+01 lineto +9.922523e+01 3.817204e+01 lineto +closepath +gsave +5.544031e-01 5.544031e-01 6.930039e-01 setrgbcolor +fill +grestore +newpath +9.922523e+01 3.817204e+01 moveto +9.883674e+01 3.689031e+01 lineto +9.711132e+01 3.743205e+01 lineto +9.748e+01 3.872e+01 lineto +9.922523e+01 3.817204e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.606336e+01 4.240018e+00 moveto +6.500345e+01 4.000713e+00 lineto +6.500324e+01 4.000767e+00 lineto +6.599967e+01 4.256601e+00 lineto +6.606336e+01 4.240018e+00 lineto +closepath +gsave +6.091036e-01 6.091036e-01 7.613795e-01 setrgbcolor +fill +grestore +newpath +6.606336e+01 4.240018e+00 moveto +6.500345e+01 4.000713e+00 lineto +6.500324e+01 4.000767e+00 lineto +6.599967e+01 4.256601e+00 lineto +6.606336e+01 4.240018e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.712227e+01 4.518862e+00 moveto +6.606336e+01 4.240018e+00 lineto +6.599967e+01 4.256601e+00 lineto +6.699515e+01 4.551959e+00 lineto +6.712227e+01 4.518862e+00 lineto +closepath +gsave +6.09342e-01 6.09342e-01 7.616775e-01 setrgbcolor +fill +grestore +newpath +6.712227e+01 4.518862e+00 moveto +6.606336e+01 4.240018e+00 lineto +6.599967e+01 4.256601e+00 lineto +6.699515e+01 4.551959e+00 lineto +6.712227e+01 4.518862e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.817917e+01 4.836981e+00 moveto +6.712227e+01 4.518862e+00 lineto +6.699515e+01 4.551959e+00 lineto +6.798875e+01 4.88656e+00 lineto +6.817917e+01 4.836981e+00 lineto +closepath +gsave +6.095121e-01 6.095121e-01 7.618901e-01 setrgbcolor +fill +grestore +newpath +6.817917e+01 4.836981e+00 moveto +6.712227e+01 4.518862e+00 lineto +6.699515e+01 4.551959e+00 lineto +6.798875e+01 4.88656e+00 lineto +6.817917e+01 4.836981e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.923306e+01 5.194073e+00 moveto +6.817917e+01 4.836981e+00 lineto +6.798875e+01 4.88656e+00 lineto +6.897951e+01 5.260088e+00 lineto +6.923306e+01 5.194073e+00 lineto +closepath +gsave +6.096135e-01 6.096135e-01 7.620169e-01 setrgbcolor +fill +grestore +newpath +6.923306e+01 5.194073e+00 moveto +6.817917e+01 4.836981e+00 lineto +6.798875e+01 4.88656e+00 lineto +6.897951e+01 5.260088e+00 lineto +6.923306e+01 5.194073e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.028294e+01 5.589801e+00 moveto +6.923306e+01 5.194073e+00 lineto +6.897951e+01 5.260088e+00 lineto +6.996651e+01 5.672189e+00 lineto +7.028294e+01 5.589801e+00 lineto +closepath +gsave +6.096462e-01 6.096462e-01 7.620577e-01 setrgbcolor +fill +grestore +newpath +7.028294e+01 5.589801e+00 moveto +6.923306e+01 5.194073e+00 lineto +6.897951e+01 5.260088e+00 lineto +6.996651e+01 5.672189e+00 lineto +7.028294e+01 5.589801e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.132782e+01 6.023789e+00 moveto +7.028294e+01 5.589801e+00 lineto +6.996651e+01 5.672189e+00 lineto +7.09488e+01 6.122473e+00 lineto +7.132782e+01 6.023789e+00 lineto +closepath +gsave +6.096101e-01 6.096101e-01 7.620127e-01 setrgbcolor +fill +grestore +newpath +7.132782e+01 6.023789e+00 moveto +7.028294e+01 5.589801e+00 lineto +6.996651e+01 5.672189e+00 lineto +7.09488e+01 6.122473e+00 lineto +7.132782e+01 6.023789e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.236671e+01 6.495628e+00 moveto +7.132782e+01 6.023789e+00 lineto +7.09488e+01 6.122473e+00 lineto +7.192546e+01 6.610512e+00 lineto +7.236671e+01 6.495628e+00 lineto +closepath +gsave +6.095053e-01 6.095053e-01 7.618817e-01 setrgbcolor +fill +grestore +newpath +7.236671e+01 6.495628e+00 moveto +7.132782e+01 6.023789e+00 lineto +7.09488e+01 6.122473e+00 lineto +7.192546e+01 6.610512e+00 lineto +7.236671e+01 6.495628e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.339863e+01 7.004869e+00 moveto +7.236671e+01 6.495628e+00 lineto +7.192546e+01 6.610512e+00 lineto +7.289557e+01 7.135847e+00 lineto +7.339863e+01 7.004869e+00 lineto +closepath +gsave +6.09332e-01 6.09332e-01 7.61665e-01 setrgbcolor +fill +grestore +newpath +7.339863e+01 7.004869e+00 moveto +7.236671e+01 6.495628e+00 lineto +7.192546e+01 6.610512e+00 lineto +7.289557e+01 7.135847e+00 lineto +7.339863e+01 7.004869e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.442259e+01 7.551032e+00 moveto +7.339863e+01 7.004869e+00 lineto +7.289557e+01 7.135847e+00 lineto +7.385819e+01 7.697978e+00 lineto +7.442259e+01 7.551032e+00 lineto +closepath +gsave +6.090902e-01 6.090902e-01 7.613627e-01 setrgbcolor +fill +grestore +newpath +7.442259e+01 7.551032e+00 moveto +7.339863e+01 7.004869e+00 lineto +7.289557e+01 7.135847e+00 lineto +7.385819e+01 7.697978e+00 lineto +7.442259e+01 7.551032e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.543763e+01 8.133598e+00 moveto +7.442259e+01 7.551032e+00 lineto +7.385819e+01 7.697978e+00 lineto +7.481244e+01 8.296374e+00 lineto +7.543763e+01 8.133598e+00 lineto +closepath +gsave +6.087803e-01 6.087803e-01 7.609754e-01 setrgbcolor +fill +grestore +newpath +7.543763e+01 8.133598e+00 moveto +7.442259e+01 7.551032e+00 lineto +7.385819e+01 7.697978e+00 lineto +7.481244e+01 8.296374e+00 lineto +7.543763e+01 8.133598e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.644279e+01 8.752016e+00 moveto +7.543763e+01 8.133598e+00 lineto +7.481244e+01 8.296374e+00 lineto +7.575739e+01 8.930468e+00 lineto +7.644279e+01 8.752016e+00 lineto +closepath +gsave +6.084026e-01 6.084026e-01 7.605033e-01 setrgbcolor +fill +grestore +newpath +7.644279e+01 8.752016e+00 moveto +7.543763e+01 8.133598e+00 lineto +7.481244e+01 8.296374e+00 lineto +7.575739e+01 8.930468e+00 lineto +7.644279e+01 8.752016e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.743711e+01 9.405702e+00 moveto +7.644279e+01 8.752016e+00 lineto +7.575739e+01 8.930468e+00 lineto +7.669215e+01 9.59966e+00 lineto +7.743711e+01 9.405702e+00 lineto +closepath +gsave +6.079576e-01 6.079576e-01 7.59947e-01 setrgbcolor +fill +grestore +newpath +7.743711e+01 9.405702e+00 moveto +7.644279e+01 8.752016e+00 lineto +7.575739e+01 8.930468e+00 lineto +7.669215e+01 9.59966e+00 lineto +7.743711e+01 9.405702e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.841966e+01 1.009403e+01 moveto +7.743711e+01 9.405702e+00 lineto +7.669215e+01 9.59966e+00 lineto +7.761585e+01 1.030332e+01 lineto +7.841966e+01 1.009403e+01 lineto +closepath +gsave +6.074457e-01 6.074457e-01 7.593071e-01 setrgbcolor +fill +grestore +newpath +7.841966e+01 1.009403e+01 moveto +7.743711e+01 9.405702e+00 lineto +7.669215e+01 9.59966e+00 lineto +7.761585e+01 1.030332e+01 lineto +7.841966e+01 1.009403e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.93895e+01 1.081636e+01 moveto +7.841966e+01 1.009403e+01 lineto +7.761585e+01 1.030332e+01 lineto +7.85276e+01 1.104077e+01 lineto +7.93895e+01 1.081636e+01 lineto +closepath +gsave +6.068675e-01 6.068675e-01 7.585844e-01 setrgbcolor +fill +grestore +newpath +7.93895e+01 1.081636e+01 moveto +7.841966e+01 1.009403e+01 lineto +7.761585e+01 1.030332e+01 lineto +7.85276e+01 1.104077e+01 lineto +7.93895e+01 1.081636e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.034572e+01 1.157201e+01 moveto +7.93895e+01 1.081636e+01 lineto +7.85276e+01 1.104077e+01 lineto +7.942654e+01 1.181132e+01 lineto +8.034572e+01 1.157201e+01 lineto +closepath +gsave +6.062237e-01 6.062237e-01 7.577797e-01 setrgbcolor +fill +grestore +newpath +8.034572e+01 1.157201e+01 moveto +7.93895e+01 1.081636e+01 lineto +7.85276e+01 1.104077e+01 lineto +7.942654e+01 1.181132e+01 lineto +8.034572e+01 1.157201e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.128741e+01 1.236024e+01 moveto +8.034572e+01 1.157201e+01 lineto +7.942654e+01 1.181132e+01 lineto +8.031183e+01 1.261425e+01 lineto +8.128741e+01 1.236024e+01 lineto +closepath +gsave +6.055151e-01 6.055151e-01 7.568938e-01 setrgbcolor +fill +grestore +newpath +8.128741e+01 1.236024e+01 moveto +8.034572e+01 1.157201e+01 lineto +7.942654e+01 1.181132e+01 lineto +8.031183e+01 1.261425e+01 lineto +8.128741e+01 1.236024e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.221368e+01 1.318033e+01 moveto +8.128741e+01 1.236024e+01 lineto +8.031183e+01 1.261425e+01 lineto +8.118261e+01 1.344878e+01 lineto +8.221368e+01 1.318033e+01 lineto +closepath +gsave +6.047423e-01 6.047423e-01 7.559279e-01 setrgbcolor +fill +grestore +newpath +8.221368e+01 1.318033e+01 moveto +8.128741e+01 1.236024e+01 lineto +8.031183e+01 1.261425e+01 lineto +8.118261e+01 1.344878e+01 lineto +8.221368e+01 1.318033e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.312365e+01 1.403149e+01 moveto +8.221368e+01 1.318033e+01 lineto +8.118261e+01 1.344878e+01 lineto +8.203808e+01 1.431414e+01 lineto +8.312365e+01 1.403149e+01 lineto +closepath +gsave +6.039063e-01 6.039063e-01 7.548829e-01 setrgbcolor +fill +grestore +newpath +8.312365e+01 1.403149e+01 moveto +8.221368e+01 1.318033e+01 lineto +8.118261e+01 1.344878e+01 lineto +8.203808e+01 1.431414e+01 lineto +8.312365e+01 1.403149e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.401646e+01 1.491293e+01 moveto +8.312365e+01 1.403149e+01 lineto +8.203808e+01 1.431414e+01 lineto +8.287741e+01 1.520949e+01 lineto +8.401646e+01 1.491293e+01 lineto +closepath +gsave +6.03008e-01 6.03008e-01 7.5376e-01 setrgbcolor +fill +grestore +newpath +8.401646e+01 1.491293e+01 moveto +8.312365e+01 1.403149e+01 lineto +8.203808e+01 1.431414e+01 lineto +8.287741e+01 1.520949e+01 lineto +8.401646e+01 1.491293e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.489126e+01 1.582379e+01 moveto +8.401646e+01 1.491293e+01 lineto +8.287741e+01 1.520949e+01 lineto +8.369982e+01 1.6134e+01 lineto +8.489126e+01 1.582379e+01 lineto +closepath +gsave +6.020485e-01 6.020485e-01 7.525606e-01 setrgbcolor +fill +grestore +newpath +8.489126e+01 1.582379e+01 moveto +8.401646e+01 1.491293e+01 lineto +8.287741e+01 1.520949e+01 lineto +8.369982e+01 1.6134e+01 lineto +8.489126e+01 1.582379e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.574724e+01 1.676323e+01 moveto +8.489126e+01 1.582379e+01 lineto +8.369982e+01 1.6134e+01 lineto +8.450452e+01 1.708678e+01 lineto +8.574724e+01 1.676323e+01 lineto +closepath +gsave +6.010288e-01 6.010288e-01 7.51286e-01 setrgbcolor +fill +grestore +newpath +8.574724e+01 1.676323e+01 moveto +8.489126e+01 1.582379e+01 lineto +8.369982e+01 1.6134e+01 lineto +8.450452e+01 1.708678e+01 lineto +8.574724e+01 1.676323e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.658356e+01 1.773034e+01 moveto +8.574724e+01 1.676323e+01 lineto +8.450452e+01 1.708678e+01 lineto +8.529075e+01 1.806694e+01 lineto +8.658356e+01 1.773034e+01 lineto +closepath +gsave +5.999501e-01 5.999501e-01 7.499376e-01 setrgbcolor +fill +grestore +newpath +8.658356e+01 1.773034e+01 moveto +8.574724e+01 1.676323e+01 lineto +8.450452e+01 1.708678e+01 lineto +8.529075e+01 1.806694e+01 lineto +8.658356e+01 1.773034e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.739946e+01 1.872423e+01 moveto +8.658356e+01 1.773034e+01 lineto +8.529075e+01 1.806694e+01 lineto +8.605778e+01 1.907355e+01 lineto +8.739946e+01 1.872423e+01 lineto +closepath +gsave +5.988135e-01 5.988135e-01 7.485169e-01 setrgbcolor +fill +grestore +newpath +8.739946e+01 1.872423e+01 moveto +8.658356e+01 1.773034e+01 lineto +8.529075e+01 1.806694e+01 lineto +8.605778e+01 1.907355e+01 lineto +8.739946e+01 1.872423e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.819414e+01 1.974393e+01 moveto +8.739946e+01 1.872423e+01 lineto +8.605778e+01 1.907355e+01 lineto +8.680486e+01 2.010565e+01 lineto +8.819414e+01 1.974393e+01 lineto +closepath +gsave +5.976205e-01 5.976205e-01 7.470256e-01 setrgbcolor +fill +grestore +newpath +8.819414e+01 1.974393e+01 moveto +8.739946e+01 1.872423e+01 lineto +8.605778e+01 1.907355e+01 lineto +8.680486e+01 2.010565e+01 lineto +8.819414e+01 1.974393e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.896687e+01 2.07885e+01 moveto +8.819414e+01 1.974393e+01 lineto +8.680486e+01 2.010565e+01 lineto +8.75313e+01 2.116227e+01 lineto +8.896687e+01 2.07885e+01 lineto +closepath +gsave +5.963723e-01 5.963723e-01 7.454653e-01 setrgbcolor +fill +grestore +newpath +8.896687e+01 2.07885e+01 moveto +8.819414e+01 1.974393e+01 lineto +8.680486e+01 2.010565e+01 lineto +8.75313e+01 2.116227e+01 lineto +8.896687e+01 2.07885e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.97169e+01 2.185694e+01 moveto +8.896687e+01 2.07885e+01 lineto +8.75313e+01 2.116227e+01 lineto +8.823641e+01 2.22424e+01 lineto +8.97169e+01 2.185694e+01 lineto +closepath +gsave +5.950703e-01 5.950703e-01 7.438379e-01 setrgbcolor +fill +grestore +newpath +8.97169e+01 2.185694e+01 moveto +8.896687e+01 2.07885e+01 lineto +8.75313e+01 2.116227e+01 lineto +8.823641e+01 2.22424e+01 lineto +8.97169e+01 2.185694e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.044353e+01 2.294824e+01 moveto +8.97169e+01 2.185694e+01 lineto +8.823641e+01 2.22424e+01 lineto +8.891951e+01 2.334503e+01 lineto +9.044353e+01 2.294824e+01 lineto +closepath +gsave +5.937161e-01 5.937161e-01 7.421452e-01 setrgbcolor +fill +grestore +newpath +9.044353e+01 2.294824e+01 moveto +8.97169e+01 2.185694e+01 lineto +8.823641e+01 2.22424e+01 lineto +8.891951e+01 2.334503e+01 lineto +9.044353e+01 2.294824e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.114607e+01 2.406136e+01 moveto +9.044353e+01 2.294824e+01 lineto +8.891951e+01 2.334503e+01 lineto +8.957997e+01 2.446911e+01 lineto +9.114607e+01 2.406136e+01 lineto +closepath +gsave +5.923112e-01 5.923112e-01 7.40389e-01 setrgbcolor +fill +grestore +newpath +9.114607e+01 2.406136e+01 moveto +9.044353e+01 2.294824e+01 lineto +8.891951e+01 2.334503e+01 lineto +8.957997e+01 2.446911e+01 lineto +9.114607e+01 2.406136e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.182385e+01 2.519525e+01 moveto +9.114607e+01 2.406136e+01 lineto +8.957997e+01 2.446911e+01 lineto +9.021716e+01 2.561357e+01 lineto +9.182385e+01 2.519525e+01 lineto +closepath +gsave +5.908572e-01 5.908572e-01 7.385715e-01 setrgbcolor +fill +grestore +newpath +9.182385e+01 2.519525e+01 moveto +9.114607e+01 2.406136e+01 lineto +8.957997e+01 2.446911e+01 lineto +9.021716e+01 2.561357e+01 lineto +9.182385e+01 2.519525e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.247624e+01 2.634884e+01 moveto +9.182385e+01 2.519525e+01 lineto +9.021716e+01 2.561357e+01 lineto +9.083047e+01 2.677734e+01 lineto +9.247624e+01 2.634884e+01 lineto +closepath +gsave +5.893557e-01 5.893557e-01 7.366946e-01 setrgbcolor +fill +grestore +newpath +9.247624e+01 2.634884e+01 moveto +9.182385e+01 2.519525e+01 lineto +9.021716e+01 2.561357e+01 lineto +9.083047e+01 2.677734e+01 lineto +9.247624e+01 2.634884e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.310261e+01 2.752104e+01 moveto +9.247624e+01 2.634884e+01 lineto +9.083047e+01 2.677734e+01 lineto +9.141933e+01 2.795931e+01 lineto +9.310261e+01 2.752104e+01 lineto +closepath +gsave +5.878085e-01 5.878085e-01 7.347606e-01 setrgbcolor +fill +grestore +newpath +9.310261e+01 2.752104e+01 moveto +9.247624e+01 2.634884e+01 lineto +9.083047e+01 2.677734e+01 lineto +9.141933e+01 2.795931e+01 lineto +9.310261e+01 2.752104e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.370238e+01 2.871074e+01 moveto +9.310261e+01 2.752104e+01 lineto +9.141933e+01 2.795931e+01 lineto +9.198317e+01 2.915835e+01 lineto +9.370238e+01 2.871074e+01 lineto +closepath +gsave +5.862172e-01 5.862172e-01 7.327715e-01 setrgbcolor +fill +grestore +newpath +9.370238e+01 2.871074e+01 moveto +9.310261e+01 2.752104e+01 lineto +9.141933e+01 2.795931e+01 lineto +9.198317e+01 2.915835e+01 lineto +9.370238e+01 2.871074e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.427497e+01 2.99168e+01 moveto +9.370238e+01 2.871074e+01 lineto +9.198317e+01 2.915835e+01 lineto +9.252146e+01 3.037335e+01 lineto +9.427497e+01 2.99168e+01 lineto +closepath +gsave +5.845838e-01 5.845838e-01 7.307298e-01 setrgbcolor +fill +grestore +newpath +9.427497e+01 2.99168e+01 moveto +9.370238e+01 2.871074e+01 lineto +9.198317e+01 2.915835e+01 lineto +9.252146e+01 3.037335e+01 lineto +9.427497e+01 2.99168e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.481984e+01 3.113809e+01 moveto +9.427497e+01 2.99168e+01 lineto +9.252146e+01 3.037335e+01 lineto +9.303369e+01 3.160314e+01 lineto +9.481984e+01 3.113809e+01 lineto +closepath +gsave +5.829101e-01 5.829101e-01 7.286376e-01 setrgbcolor +fill +grestore +newpath +9.481984e+01 3.113809e+01 moveto +9.427497e+01 2.99168e+01 lineto +9.252146e+01 3.037335e+01 lineto +9.303369e+01 3.160314e+01 lineto +9.481984e+01 3.113809e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.533648e+01 3.237346e+01 moveto +9.481984e+01 3.113809e+01 lineto +9.303369e+01 3.160314e+01 lineto +9.351939e+01 3.284656e+01 lineto +9.533648e+01 3.237346e+01 lineto +closepath +gsave +5.811979e-01 5.811979e-01 7.264974e-01 setrgbcolor +fill +grestore +newpath +9.533648e+01 3.237346e+01 moveto +9.481984e+01 3.113809e+01 lineto +9.303369e+01 3.160314e+01 lineto +9.351939e+01 3.284656e+01 lineto +9.533648e+01 3.237346e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.582439e+01 3.362172e+01 moveto +9.533648e+01 3.237346e+01 lineto +9.351939e+01 3.284656e+01 lineto +9.397808e+01 3.410243e+01 lineto +9.582439e+01 3.362172e+01 lineto +closepath +gsave +5.794493e-01 5.794493e-01 7.243117e-01 setrgbcolor +fill +grestore +newpath +9.582439e+01 3.362172e+01 moveto +9.533648e+01 3.237346e+01 lineto +9.351939e+01 3.284656e+01 lineto +9.397808e+01 3.410243e+01 lineto +9.582439e+01 3.362172e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.628312e+01 3.488171e+01 moveto +9.582439e+01 3.362172e+01 lineto +9.397808e+01 3.410243e+01 lineto +9.440933e+01 3.536957e+01 lineto +9.628312e+01 3.488171e+01 lineto +closepath +gsave +5.776663e-01 5.776663e-01 7.220828e-01 setrgbcolor +fill +grestore +newpath +9.628312e+01 3.488171e+01 moveto +9.582439e+01 3.362172e+01 lineto +9.397808e+01 3.410243e+01 lineto +9.440933e+01 3.536957e+01 lineto +9.628312e+01 3.488171e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.671223e+01 3.615222e+01 moveto +9.628312e+01 3.488171e+01 lineto +9.440933e+01 3.536957e+01 lineto +9.481274e+01 3.664677e+01 lineto +9.671223e+01 3.615222e+01 lineto +closepath +gsave +5.758507e-01 5.758507e-01 7.198134e-01 setrgbcolor +fill +grestore +newpath +9.671223e+01 3.615222e+01 moveto +9.628312e+01 3.488171e+01 lineto +9.440933e+01 3.536957e+01 lineto +9.481274e+01 3.664677e+01 lineto +9.671223e+01 3.615222e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.711132e+01 3.743205e+01 moveto +9.671223e+01 3.615222e+01 lineto +9.481274e+01 3.664677e+01 lineto +9.518792e+01 3.793283e+01 lineto +9.711132e+01 3.743205e+01 lineto +closepath +gsave +5.740048e-01 5.740048e-01 7.17506e-01 setrgbcolor +fill +grestore +newpath +9.711132e+01 3.743205e+01 moveto +9.671223e+01 3.615222e+01 lineto +9.481274e+01 3.664677e+01 lineto +9.518792e+01 3.793283e+01 lineto +9.711132e+01 3.743205e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.748e+01 3.872e+01 moveto +9.711132e+01 3.743205e+01 lineto +9.518792e+01 3.793283e+01 lineto +9.553452e+01 3.922653e+01 lineto +9.748e+01 3.872e+01 lineto +closepath +gsave +5.721305e-01 5.721305e-01 7.151631e-01 setrgbcolor +fill +grestore +newpath +9.748e+01 3.872e+01 moveto +9.711132e+01 3.743205e+01 lineto +9.518792e+01 3.793283e+01 lineto +9.553452e+01 3.922653e+01 lineto +9.748e+01 3.872e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.599967e+01 4.256601e+00 moveto +6.500324e+01 4.000767e+00 lineto +6.500301e+01 4.000816e+00 lineto +6.592981e+01 4.271726e+00 lineto +6.599967e+01 4.256601e+00 lineto +closepath +gsave +6.094115e-01 6.094115e-01 7.617644e-01 setrgbcolor +fill +grestore +newpath +6.599967e+01 4.256601e+00 moveto +6.500324e+01 4.000767e+00 lineto +6.500301e+01 4.000816e+00 lineto +6.592981e+01 4.271726e+00 lineto +6.599967e+01 4.256601e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.699515e+01 4.551959e+00 moveto +6.599967e+01 4.256601e+00 lineto +6.592981e+01 4.271726e+00 lineto +6.685573e+01 4.582145e+00 lineto +6.699515e+01 4.551959e+00 lineto +closepath +gsave +6.102621e-01 6.102621e-01 7.628276e-01 setrgbcolor +fill +grestore +newpath +6.699515e+01 4.551959e+00 moveto +6.599967e+01 4.256601e+00 lineto +6.592981e+01 4.271726e+00 lineto +6.685573e+01 4.582145e+00 lineto +6.699515e+01 4.551959e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.798875e+01 4.88656e+00 moveto +6.699515e+01 4.551959e+00 lineto +6.685573e+01 4.582145e+00 lineto +6.777989e+01 4.931779e+00 lineto +6.798875e+01 4.88656e+00 lineto +closepath +gsave +6.110437e-01 6.110437e-01 7.638046e-01 setrgbcolor +fill +grestore +newpath +6.798875e+01 4.88656e+00 moveto +6.699515e+01 4.551959e+00 lineto +6.685573e+01 4.582145e+00 lineto +6.777989e+01 4.931779e+00 lineto +6.798875e+01 4.88656e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.897951e+01 5.260088e+00 moveto +6.798875e+01 4.88656e+00 lineto +6.777989e+01 4.931779e+00 lineto +6.870142e+01 5.320297e+00 lineto +6.897951e+01 5.260088e+00 lineto +closepath +gsave +6.117556e-01 6.117556e-01 7.646945e-01 setrgbcolor +fill +grestore +newpath +6.897951e+01 5.260088e+00 moveto +6.798875e+01 4.88656e+00 lineto +6.777989e+01 4.931779e+00 lineto +6.870142e+01 5.320297e+00 lineto +6.897951e+01 5.260088e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.996651e+01 5.672189e+00 moveto +6.897951e+01 5.260088e+00 lineto +6.870142e+01 5.320297e+00 lineto +6.961945e+01 5.74733e+00 lineto +6.996651e+01 5.672189e+00 lineto +closepath +gsave +6.12397e-01 6.12397e-01 7.654962e-01 setrgbcolor +fill +grestore +newpath +6.996651e+01 5.672189e+00 moveto +6.897951e+01 5.260088e+00 lineto +6.870142e+01 5.320297e+00 lineto +6.961945e+01 5.74733e+00 lineto +6.996651e+01 5.672189e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.09488e+01 6.122473e+00 moveto +6.996651e+01 5.672189e+00 lineto +6.961945e+01 5.74733e+00 lineto +7.05331e+01 6.212476e+00 lineto +7.09488e+01 6.122473e+00 lineto +closepath +gsave +6.129671e-01 6.129671e-01 7.662088e-01 setrgbcolor +fill +grestore +newpath +7.09488e+01 6.122473e+00 moveto +6.996651e+01 5.672189e+00 lineto +6.961945e+01 5.74733e+00 lineto +7.05331e+01 6.212476e+00 lineto +7.09488e+01 6.122473e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.192546e+01 6.610512e+00 moveto +7.09488e+01 6.122473e+00 lineto +7.05331e+01 6.212476e+00 lineto +7.144151e+01 6.715292e+00 lineto +7.192546e+01 6.610512e+00 lineto +closepath +gsave +6.134653e-01 6.134653e-01 7.668316e-01 setrgbcolor +fill +grestore +newpath +7.192546e+01 6.610512e+00 moveto +7.09488e+01 6.122473e+00 lineto +7.05331e+01 6.212476e+00 lineto +7.144151e+01 6.715292e+00 lineto +7.192546e+01 6.610512e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.289557e+01 7.135847e+00 moveto +7.192546e+01 6.610512e+00 lineto +7.144151e+01 6.715292e+00 lineto +7.234383e+01 7.255304e+00 lineto +7.289557e+01 7.135847e+00 lineto +closepath +gsave +6.138911e-01 6.138911e-01 7.673639e-01 setrgbcolor +fill +grestore +newpath +7.289557e+01 7.135847e+00 moveto +7.192546e+01 6.610512e+00 lineto +7.144151e+01 6.715292e+00 lineto +7.234383e+01 7.255304e+00 lineto +7.289557e+01 7.135847e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.385819e+01 7.697978e+00 moveto +7.289557e+01 7.135847e+00 lineto +7.234383e+01 7.255304e+00 lineto +7.323919e+01 7.831999e+00 lineto +7.385819e+01 7.697978e+00 lineto +closepath +gsave +6.14244e-01 6.14244e-01 7.67805e-01 setrgbcolor +fill +grestore +newpath +7.385819e+01 7.697978e+00 moveto +7.289557e+01 7.135847e+00 lineto +7.234383e+01 7.255304e+00 lineto +7.323919e+01 7.831999e+00 lineto +7.385819e+01 7.697978e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.481244e+01 8.296374e+00 moveto +7.385819e+01 7.697978e+00 lineto +7.323919e+01 7.831999e+00 lineto +7.412675e+01 8.444832e+00 lineto +7.481244e+01 8.296374e+00 lineto +closepath +gsave +6.145236e-01 6.145236e-01 7.681545e-01 setrgbcolor +fill +grestore +newpath +7.481244e+01 8.296374e+00 moveto +7.385819e+01 7.697978e+00 lineto +7.323919e+01 7.831999e+00 lineto +7.412675e+01 8.444832e+00 lineto +7.481244e+01 8.296374e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.575739e+01 8.930468e+00 moveto +7.481244e+01 8.296374e+00 lineto +7.412675e+01 8.444832e+00 lineto +7.500567e+01 9.093223e+00 lineto +7.575739e+01 8.930468e+00 lineto +closepath +gsave +6.147296e-01 6.147296e-01 7.68412e-01 setrgbcolor +fill +grestore +newpath +7.575739e+01 8.930468e+00 moveto +7.481244e+01 8.296374e+00 lineto +7.412675e+01 8.444832e+00 lineto +7.500567e+01 9.093223e+00 lineto +7.575739e+01 8.930468e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.669215e+01 9.59966e+00 moveto +7.575739e+01 8.930468e+00 lineto +7.500567e+01 9.093223e+00 lineto +7.587511e+01 9.776558e+00 lineto +7.669215e+01 9.59966e+00 lineto +closepath +gsave +6.148618e-01 6.148618e-01 7.685772e-01 setrgbcolor +fill +grestore +newpath +7.669215e+01 9.59966e+00 moveto +7.575739e+01 8.930468e+00 lineto +7.500567e+01 9.093223e+00 lineto +7.587511e+01 9.776558e+00 lineto +7.669215e+01 9.59966e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.761585e+01 1.030332e+01 moveto +7.669215e+01 9.59966e+00 lineto +7.587511e+01 9.776558e+00 lineto +7.673426e+01 1.049419e+01 lineto +7.761585e+01 1.030332e+01 lineto +closepath +gsave +6.1492e-01 6.1492e-01 7.6865e-01 setrgbcolor +fill +grestore +newpath +7.761585e+01 1.030332e+01 moveto +7.669215e+01 9.59966e+00 lineto +7.587511e+01 9.776558e+00 lineto +7.673426e+01 1.049419e+01 lineto +7.761585e+01 1.030332e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.85276e+01 1.104077e+01 moveto +7.761585e+01 1.030332e+01 lineto +7.673426e+01 1.049419e+01 lineto +7.75823e+01 1.124544e+01 lineto +7.85276e+01 1.104077e+01 lineto +closepath +gsave +6.149043e-01 6.149043e-01 7.686303e-01 setrgbcolor +fill +grestore +newpath +7.85276e+01 1.104077e+01 moveto +7.761585e+01 1.030332e+01 lineto +7.673426e+01 1.049419e+01 lineto +7.75823e+01 1.124544e+01 lineto +7.85276e+01 1.104077e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.942654e+01 1.181132e+01 moveto +7.85276e+01 1.104077e+01 lineto +7.75823e+01 1.124544e+01 lineto +7.841842e+01 1.202959e+01 lineto +7.942654e+01 1.181132e+01 lineto +closepath +gsave +6.148145e-01 6.148145e-01 7.685181e-01 setrgbcolor +fill +grestore +newpath +7.942654e+01 1.181132e+01 moveto +7.85276e+01 1.104077e+01 lineto +7.75823e+01 1.124544e+01 lineto +7.841842e+01 1.202959e+01 lineto +7.942654e+01 1.181132e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.031183e+01 1.261425e+01 moveto +7.942654e+01 1.181132e+01 lineto +7.841842e+01 1.202959e+01 lineto +7.924184e+01 1.284591e+01 lineto +8.031183e+01 1.261425e+01 lineto +closepath +gsave +6.146509e-01 6.146509e-01 7.683136e-01 setrgbcolor +fill +grestore +newpath +8.031183e+01 1.261425e+01 moveto +7.942654e+01 1.181132e+01 lineto +7.841842e+01 1.202959e+01 lineto +7.924184e+01 1.284591e+01 lineto +8.031183e+01 1.261425e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.118261e+01 1.344878e+01 moveto +8.031183e+01 1.261425e+01 lineto +7.924184e+01 1.284591e+01 lineto +8.005178e+01 1.369362e+01 lineto +8.118261e+01 1.344878e+01 lineto +closepath +gsave +6.144135e-01 6.144135e-01 7.680169e-01 setrgbcolor +fill +grestore +newpath +8.118261e+01 1.344878e+01 moveto +8.031183e+01 1.261425e+01 lineto +7.924184e+01 1.284591e+01 lineto +8.005178e+01 1.369362e+01 lineto +8.118261e+01 1.344878e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.203808e+01 1.431414e+01 moveto +8.118261e+01 1.344878e+01 lineto +8.005178e+01 1.369362e+01 lineto +8.084747e+01 1.457192e+01 lineto +8.203808e+01 1.431414e+01 lineto +closepath +gsave +6.141028e-01 6.141028e-01 7.676285e-01 setrgbcolor +fill +grestore +newpath +8.203808e+01 1.431414e+01 moveto +8.118261e+01 1.344878e+01 lineto +8.005178e+01 1.369362e+01 lineto +8.084747e+01 1.457192e+01 lineto +8.203808e+01 1.431414e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.287741e+01 1.520949e+01 moveto +8.203808e+01 1.431414e+01 lineto +8.084747e+01 1.457192e+01 lineto +8.162815e+01 1.547997e+01 lineto +8.287741e+01 1.520949e+01 lineto +closepath +gsave +6.13719e-01 6.13719e-01 7.671487e-01 setrgbcolor +fill +grestore +newpath +8.287741e+01 1.520949e+01 moveto +8.203808e+01 1.431414e+01 lineto +8.084747e+01 1.457192e+01 lineto +8.162815e+01 1.547997e+01 lineto +8.287741e+01 1.520949e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.369982e+01 1.6134e+01 moveto +8.287741e+01 1.520949e+01 lineto +8.162815e+01 1.547997e+01 lineto +8.239308e+01 1.641692e+01 lineto +8.369982e+01 1.6134e+01 lineto +closepath +gsave +6.132625e-01 6.132625e-01 7.665782e-01 setrgbcolor +fill +grestore +newpath +8.369982e+01 1.6134e+01 moveto +8.287741e+01 1.520949e+01 lineto +8.162815e+01 1.547997e+01 lineto +8.239308e+01 1.641692e+01 lineto +8.369982e+01 1.6134e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.450452e+01 1.708678e+01 moveto +8.369982e+01 1.6134e+01 lineto +8.239308e+01 1.641692e+01 lineto +8.314155e+01 1.738188e+01 lineto +8.450452e+01 1.708678e+01 lineto +closepath +gsave +6.12734e-01 6.12734e-01 7.659175e-01 setrgbcolor +fill +grestore +newpath +8.450452e+01 1.708678e+01 moveto +8.369982e+01 1.6134e+01 lineto +8.239308e+01 1.641692e+01 lineto +8.314155e+01 1.738188e+01 lineto +8.450452e+01 1.708678e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.529075e+01 1.806694e+01 moveto +8.450452e+01 1.708678e+01 lineto +8.314155e+01 1.738188e+01 lineto +8.387285e+01 1.837393e+01 lineto +8.529075e+01 1.806694e+01 lineto +closepath +gsave +6.121339e-01 6.121339e-01 7.651674e-01 setrgbcolor +fill +grestore +newpath +8.529075e+01 1.806694e+01 moveto +8.450452e+01 1.708678e+01 lineto +8.314155e+01 1.738188e+01 lineto +8.387285e+01 1.837393e+01 lineto +8.529075e+01 1.806694e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.605778e+01 1.907355e+01 moveto +8.529075e+01 1.806694e+01 lineto +8.387285e+01 1.837393e+01 lineto +8.458627e+01 1.939214e+01 lineto +8.605778e+01 1.907355e+01 lineto +closepath +gsave +6.11463e-01 6.11463e-01 7.643287e-01 setrgbcolor +fill +grestore +newpath +8.605778e+01 1.907355e+01 moveto +8.529075e+01 1.806694e+01 lineto +8.387285e+01 1.837393e+01 lineto +8.458627e+01 1.939214e+01 lineto +8.605778e+01 1.907355e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.680486e+01 2.010565e+01 moveto +8.605778e+01 1.907355e+01 lineto +8.458627e+01 1.939214e+01 lineto +8.528115e+01 2.043555e+01 lineto +8.680486e+01 2.010565e+01 lineto +closepath +gsave +6.10722e-01 6.10722e-01 7.634024e-01 setrgbcolor +fill +grestore +newpath +8.680486e+01 2.010565e+01 moveto +8.605778e+01 1.907355e+01 lineto +8.458627e+01 1.939214e+01 lineto +8.528115e+01 2.043555e+01 lineto +8.680486e+01 2.010565e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.75313e+01 2.116227e+01 moveto +8.680486e+01 2.010565e+01 lineto +8.528115e+01 2.043555e+01 lineto +8.595682e+01 2.150316e+01 lineto +8.75313e+01 2.116227e+01 lineto +closepath +gsave +6.099117e-01 6.099117e-01 7.623896e-01 setrgbcolor +fill +grestore +newpath +8.75313e+01 2.116227e+01 moveto +8.680486e+01 2.010565e+01 lineto +8.528115e+01 2.043555e+01 lineto +8.595682e+01 2.150316e+01 lineto +8.75313e+01 2.116227e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.823641e+01 2.22424e+01 moveto +8.75313e+01 2.116227e+01 lineto +8.595682e+01 2.150316e+01 lineto +8.661266e+01 2.259396e+01 lineto +8.823641e+01 2.22424e+01 lineto +closepath +gsave +6.090331e-01 6.090331e-01 7.612914e-01 setrgbcolor +fill +grestore +newpath +8.823641e+01 2.22424e+01 moveto +8.75313e+01 2.116227e+01 lineto +8.595682e+01 2.150316e+01 lineto +8.661266e+01 2.259396e+01 lineto +8.823641e+01 2.22424e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.891951e+01 2.334503e+01 moveto +8.823641e+01 2.22424e+01 lineto +8.661266e+01 2.259396e+01 lineto +8.724803e+01 2.370692e+01 lineto +8.891951e+01 2.334503e+01 lineto +closepath +gsave +6.080871e-01 6.080871e-01 7.601089e-01 setrgbcolor +fill +grestore +newpath +8.891951e+01 2.334503e+01 moveto +8.823641e+01 2.22424e+01 lineto +8.661266e+01 2.259396e+01 lineto +8.724803e+01 2.370692e+01 lineto +8.891951e+01 2.334503e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.957997e+01 2.446911e+01 moveto +8.891951e+01 2.334503e+01 lineto +8.724803e+01 2.370692e+01 lineto +8.786234e+01 2.484099e+01 lineto +8.957997e+01 2.446911e+01 lineto +closepath +gsave +6.070749e-01 6.070749e-01 7.588436e-01 setrgbcolor +fill +grestore +newpath +8.957997e+01 2.446911e+01 moveto +8.891951e+01 2.334503e+01 lineto +8.724803e+01 2.370692e+01 lineto +8.786234e+01 2.484099e+01 lineto +8.957997e+01 2.446911e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.021716e+01 2.561357e+01 moveto +8.957997e+01 2.446911e+01 lineto +8.786234e+01 2.484099e+01 lineto +8.8455e+01 2.59951e+01 lineto +9.021716e+01 2.561357e+01 lineto +closepath +gsave +6.059975e-01 6.059975e-01 7.574969e-01 setrgbcolor +fill +grestore +newpath +9.021716e+01 2.561357e+01 moveto +8.957997e+01 2.446911e+01 lineto +8.786234e+01 2.484099e+01 lineto +8.8455e+01 2.59951e+01 lineto +9.021716e+01 2.561357e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.083047e+01 2.677734e+01 moveto +9.021716e+01 2.561357e+01 lineto +8.8455e+01 2.59951e+01 lineto +8.902545e+01 2.716815e+01 lineto +9.083047e+01 2.677734e+01 lineto +closepath +gsave +6.048562e-01 6.048562e-01 7.560703e-01 setrgbcolor +fill +grestore +newpath +9.083047e+01 2.677734e+01 moveto +9.021716e+01 2.561357e+01 lineto +8.8455e+01 2.59951e+01 lineto +8.902545e+01 2.716815e+01 lineto +9.083047e+01 2.677734e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.141933e+01 2.795931e+01 moveto +9.083047e+01 2.677734e+01 lineto +8.902545e+01 2.716815e+01 lineto +8.957316e+01 2.835902e+01 lineto +9.141933e+01 2.795931e+01 lineto +closepath +gsave +6.036523e-01 6.036523e-01 7.545654e-01 setrgbcolor +fill +grestore +newpath +9.141933e+01 2.795931e+01 moveto +9.083047e+01 2.677734e+01 lineto +8.902545e+01 2.716815e+01 lineto +8.957316e+01 2.835902e+01 lineto +9.141933e+01 2.795931e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.198317e+01 2.915835e+01 moveto +9.141933e+01 2.795931e+01 lineto +8.957316e+01 2.835902e+01 lineto +9.00976e+01 2.95666e+01 lineto +9.198317e+01 2.915835e+01 lineto +closepath +gsave +6.023872e-01 6.023872e-01 7.529839e-01 setrgbcolor +fill +grestore +newpath +9.198317e+01 2.915835e+01 moveto +9.141933e+01 2.795931e+01 lineto +8.957316e+01 2.835902e+01 lineto +9.00976e+01 2.95666e+01 lineto +9.198317e+01 2.915835e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.252146e+01 3.037335e+01 moveto +9.198317e+01 2.915835e+01 lineto +9.00976e+01 2.95666e+01 lineto +9.059827e+01 3.078974e+01 lineto +9.252146e+01 3.037335e+01 lineto +closepath +gsave +6.010622e-01 6.010622e-01 7.513277e-01 setrgbcolor +fill +grestore +newpath +9.252146e+01 3.037335e+01 moveto +9.198317e+01 2.915835e+01 lineto +9.00976e+01 2.95666e+01 lineto +9.059827e+01 3.078974e+01 lineto +9.252146e+01 3.037335e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.303369e+01 3.160314e+01 moveto +9.252146e+01 3.037335e+01 lineto +9.059827e+01 3.078974e+01 lineto +9.107471e+01 3.202728e+01 lineto +9.303369e+01 3.160314e+01 lineto +closepath +gsave +5.996788e-01 5.996788e-01 7.495985e-01 setrgbcolor +fill +grestore +newpath +9.303369e+01 3.160314e+01 moveto +9.252146e+01 3.037335e+01 lineto +9.059827e+01 3.078974e+01 lineto +9.107471e+01 3.202728e+01 lineto +9.303369e+01 3.160314e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.351939e+01 3.284656e+01 moveto +9.303369e+01 3.160314e+01 lineto +9.107471e+01 3.202728e+01 lineto +9.152646e+01 3.327804e+01 lineto +9.351939e+01 3.284656e+01 lineto +closepath +gsave +5.982388e-01 5.982388e-01 7.477985e-01 setrgbcolor +fill +grestore +newpath +9.351939e+01 3.284656e+01 moveto +9.303369e+01 3.160314e+01 lineto +9.107471e+01 3.202728e+01 lineto +9.152646e+01 3.327804e+01 lineto +9.351939e+01 3.284656e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.397808e+01 3.410243e+01 moveto +9.351939e+01 3.284656e+01 lineto +9.152646e+01 3.327804e+01 lineto +9.19531e+01 3.454086e+01 lineto +9.397808e+01 3.410243e+01 lineto +closepath +gsave +5.967436e-01 5.967436e-01 7.459295e-01 setrgbcolor +fill +grestore +newpath +9.397808e+01 3.410243e+01 moveto +9.351939e+01 3.284656e+01 lineto +9.152646e+01 3.327804e+01 lineto +9.19531e+01 3.454086e+01 lineto +9.397808e+01 3.410243e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.440933e+01 3.536957e+01 moveto +9.397808e+01 3.410243e+01 lineto +9.19531e+01 3.454086e+01 lineto +9.235422e+01 3.581452e+01 lineto +9.440933e+01 3.536957e+01 lineto +closepath +gsave +5.951951e-01 5.951951e-01 7.439938e-01 setrgbcolor +fill +grestore +newpath +9.440933e+01 3.536957e+01 moveto +9.397808e+01 3.410243e+01 lineto +9.19531e+01 3.454086e+01 lineto +9.235422e+01 3.581452e+01 lineto +9.440933e+01 3.536957e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.481274e+01 3.664677e+01 moveto +9.440933e+01 3.536957e+01 lineto +9.235422e+01 3.581452e+01 lineto +9.272944e+01 3.709783e+01 lineto +9.481274e+01 3.664677e+01 lineto +closepath +gsave +5.935949e-01 5.935949e-01 7.419936e-01 setrgbcolor +fill +grestore +newpath +9.481274e+01 3.664677e+01 moveto +9.440933e+01 3.536957e+01 lineto +9.235422e+01 3.581452e+01 lineto +9.272944e+01 3.709783e+01 lineto +9.481274e+01 3.664677e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.518792e+01 3.793283e+01 moveto +9.481274e+01 3.664677e+01 lineto +9.272944e+01 3.709783e+01 lineto +9.30784e+01 3.838956e+01 lineto +9.518792e+01 3.793283e+01 lineto +closepath +gsave +5.919449e-01 5.919449e-01 7.399311e-01 setrgbcolor +fill +grestore +newpath +9.518792e+01 3.793283e+01 moveto +9.481274e+01 3.664677e+01 lineto +9.272944e+01 3.709783e+01 lineto +9.30784e+01 3.838956e+01 lineto +9.518792e+01 3.793283e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.553452e+01 3.922653e+01 moveto +9.518792e+01 3.793283e+01 lineto +9.30784e+01 3.838956e+01 lineto +9.340078e+01 3.968851e+01 lineto +9.553452e+01 3.922653e+01 lineto +closepath +gsave +5.90247e-01 5.90247e-01 7.378087e-01 setrgbcolor +fill +grestore +newpath +9.553452e+01 3.922653e+01 moveto +9.518792e+01 3.793283e+01 lineto +9.30784e+01 3.838956e+01 lineto +9.340078e+01 3.968851e+01 lineto +9.553452e+01 3.922653e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.592981e+01 4.271726e+00 moveto +6.500301e+01 4.000816e+00 lineto +6.500277e+01 4.00086e+00 lineto +6.585422e+01 4.285299e+00 lineto +6.592981e+01 4.271726e+00 lineto +closepath +gsave +6.097167e-01 6.097167e-01 7.621459e-01 setrgbcolor +fill +grestore +newpath +6.592981e+01 4.271726e+00 moveto +6.500301e+01 4.000816e+00 lineto +6.500277e+01 4.00086e+00 lineto +6.585422e+01 4.285299e+00 lineto +6.592981e+01 4.271726e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.685573e+01 4.582145e+00 moveto +6.592981e+01 4.271726e+00 lineto +6.585422e+01 4.285299e+00 lineto +6.670487e+01 4.609234e+00 lineto +6.685573e+01 4.582145e+00 lineto +closepath +gsave +6.111742e-01 6.111742e-01 7.639677e-01 setrgbcolor +fill +grestore +newpath +6.685573e+01 4.582145e+00 moveto +6.592981e+01 4.271726e+00 lineto +6.585422e+01 4.285299e+00 lineto +6.670487e+01 4.609234e+00 lineto +6.685573e+01 4.582145e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.777989e+01 4.931779e+00 moveto +6.685573e+01 4.582145e+00 lineto +6.670487e+01 4.609234e+00 lineto +6.75539e+01 4.972358e+00 lineto +6.777989e+01 4.931779e+00 lineto +closepath +gsave +6.125629e-01 6.125629e-01 7.657036e-01 setrgbcolor +fill +grestore +newpath +6.777989e+01 4.931779e+00 moveto +6.685573e+01 4.582145e+00 lineto +6.670487e+01 4.609234e+00 lineto +6.75539e+01 4.972358e+00 lineto +6.777989e+01 4.931779e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.870142e+01 5.320297e+00 moveto +6.777989e+01 4.931779e+00 lineto +6.75539e+01 4.972358e+00 lineto +6.840052e+01 5.374327e+00 lineto +6.870142e+01 5.320297e+00 lineto +closepath +gsave +6.138813e-01 6.138813e-01 7.673516e-01 setrgbcolor +fill +grestore +newpath +6.870142e+01 5.320297e+00 moveto +6.777989e+01 4.931779e+00 lineto +6.75539e+01 4.972358e+00 lineto +6.840052e+01 5.374327e+00 lineto +6.870142e+01 5.320297e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.961945e+01 5.74733e+00 moveto +6.870142e+01 5.320297e+00 lineto +6.840052e+01 5.374327e+00 lineto +6.924391e+01 5.814762e+00 lineto +6.961945e+01 5.74733e+00 lineto +closepath +gsave +6.151278e-01 6.151278e-01 7.689097e-01 setrgbcolor +fill +grestore +newpath +6.961945e+01 5.74733e+00 moveto +6.870142e+01 5.320297e+00 lineto +6.840052e+01 5.374327e+00 lineto +6.924391e+01 5.814762e+00 lineto +6.961945e+01 5.74733e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.05331e+01 6.212476e+00 moveto +6.961945e+01 5.74733e+00 lineto +6.924391e+01 5.814762e+00 lineto +7.008329e+01 6.293244e+00 lineto +7.05331e+01 6.212476e+00 lineto +closepath +gsave +6.163011e-01 6.163011e-01 7.703763e-01 setrgbcolor +fill +grestore +newpath +7.05331e+01 6.212476e+00 moveto +6.961945e+01 5.74733e+00 lineto +6.924391e+01 5.814762e+00 lineto +7.008329e+01 6.293244e+00 lineto +7.05331e+01 6.212476e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.144151e+01 6.715292e+00 moveto +7.05331e+01 6.212476e+00 lineto +7.008329e+01 6.293244e+00 lineto +7.091785e+01 6.80932e+00 lineto +7.144151e+01 6.715292e+00 lineto +closepath +gsave +6.173998e-01 6.173998e-01 7.717497e-01 setrgbcolor +fill +grestore +newpath +7.144151e+01 6.715292e+00 moveto +7.05331e+01 6.212476e+00 lineto +7.008329e+01 6.293244e+00 lineto +7.091785e+01 6.80932e+00 lineto +7.144151e+01 6.715292e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.234383e+01 7.255304e+00 moveto +7.144151e+01 6.715292e+00 lineto +7.091785e+01 6.80932e+00 lineto +7.174681e+01 7.362503e+00 lineto +7.234383e+01 7.255304e+00 lineto +closepath +gsave +6.184227e-01 6.184227e-01 7.730284e-01 setrgbcolor +fill +grestore +newpath +7.234383e+01 7.255304e+00 moveto +7.144151e+01 6.715292e+00 lineto +7.091785e+01 6.80932e+00 lineto +7.174681e+01 7.362503e+00 lineto +7.234383e+01 7.255304e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.323919e+01 7.831999e+00 moveto +7.234383e+01 7.255304e+00 lineto +7.174681e+01 7.362503e+00 lineto +7.256938e+01 7.952269e+00 lineto +7.323919e+01 7.831999e+00 lineto +closepath +gsave +6.193688e-01 6.193688e-01 7.742109e-01 setrgbcolor +fill +grestore +newpath +7.323919e+01 7.831999e+00 moveto +7.234383e+01 7.255304e+00 lineto +7.174681e+01 7.362503e+00 lineto +7.256938e+01 7.952269e+00 lineto +7.323919e+01 7.831999e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.412675e+01 8.444832e+00 moveto +7.323919e+01 7.831999e+00 lineto +7.256938e+01 7.952269e+00 lineto +7.338479e+01 8.578058e+00 lineto +7.412675e+01 8.444832e+00 lineto +closepath +gsave +6.202368e-01 6.202368e-01 7.75296e-01 setrgbcolor +fill +grestore +newpath +7.412675e+01 8.444832e+00 moveto +7.323919e+01 7.831999e+00 lineto +7.256938e+01 7.952269e+00 lineto +7.338479e+01 8.578058e+00 lineto +7.412675e+01 8.444832e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.500567e+01 9.093223e+00 moveto +7.412675e+01 8.444832e+00 lineto +7.338479e+01 8.578058e+00 lineto +7.419226e+01 9.239278e+00 lineto +7.500567e+01 9.093223e+00 lineto +closepath +gsave +6.21026e-01 6.21026e-01 7.762824e-01 setrgbcolor +fill +grestore +newpath +7.500567e+01 9.093223e+00 moveto +7.412675e+01 8.444832e+00 lineto +7.338479e+01 8.578058e+00 lineto +7.419226e+01 9.239278e+00 lineto +7.500567e+01 9.093223e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.587511e+01 9.776558e+00 moveto +7.500567e+01 9.093223e+00 lineto +7.419226e+01 9.239278e+00 lineto +7.499102e+01 9.935305e+00 lineto +7.587511e+01 9.776558e+00 lineto +closepath +gsave +6.217353e-01 6.217353e-01 7.771691e-01 setrgbcolor +fill +grestore +newpath +7.587511e+01 9.776558e+00 moveto +7.500567e+01 9.093223e+00 lineto +7.419226e+01 9.239278e+00 lineto +7.499102e+01 9.935305e+00 lineto +7.587511e+01 9.776558e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.673426e+01 1.049419e+01 moveto +7.587511e+01 9.776558e+00 lineto +7.499102e+01 9.935305e+00 lineto +7.578032e+01 1.066548e+01 lineto +7.673426e+01 1.049419e+01 lineto +closepath +gsave +6.223641e-01 6.223641e-01 7.779551e-01 setrgbcolor +fill +grestore +newpath +7.673426e+01 1.049419e+01 moveto +7.587511e+01 9.776558e+00 lineto +7.499102e+01 9.935305e+00 lineto +7.578032e+01 1.066548e+01 lineto +7.673426e+01 1.049419e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.75823e+01 1.124544e+01 moveto +7.673426e+01 1.049419e+01 lineto +7.578032e+01 1.066548e+01 lineto +7.655942e+01 1.14291e+01 lineto +7.75823e+01 1.124544e+01 lineto +closepath +gsave +6.229116e-01 6.229116e-01 7.786395e-01 setrgbcolor +fill +grestore +newpath +7.75823e+01 1.124544e+01 moveto +7.673426e+01 1.049419e+01 lineto +7.578032e+01 1.066548e+01 lineto +7.655942e+01 1.14291e+01 lineto +7.75823e+01 1.124544e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.841842e+01 1.202959e+01 moveto +7.75823e+01 1.124544e+01 lineto +7.655942e+01 1.14291e+01 lineto +7.732757e+01 1.222546e+01 lineto +7.841842e+01 1.202959e+01 lineto +closepath +gsave +6.233773e-01 6.233773e-01 7.792216e-01 setrgbcolor +fill +grestore +newpath +7.841842e+01 1.202959e+01 moveto +7.75823e+01 1.124544e+01 lineto +7.655942e+01 1.14291e+01 lineto +7.732757e+01 1.222546e+01 lineto +7.841842e+01 1.202959e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.924184e+01 1.284591e+01 moveto +7.841842e+01 1.202959e+01 lineto +7.732757e+01 1.222546e+01 lineto +7.808406e+01 1.30538e+01 lineto +7.924184e+01 1.284591e+01 lineto +closepath +gsave +6.237606e-01 6.237606e-01 7.797007e-01 setrgbcolor +fill +grestore +newpath +7.924184e+01 1.284591e+01 moveto +7.841842e+01 1.202959e+01 lineto +7.732757e+01 1.222546e+01 lineto +7.808406e+01 1.30538e+01 lineto +7.924184e+01 1.284591e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.005178e+01 1.369362e+01 moveto +7.924184e+01 1.284591e+01 lineto +7.808406e+01 1.30538e+01 lineto +7.882815e+01 1.391333e+01 lineto +8.005178e+01 1.369362e+01 lineto +closepath +gsave +6.240611e-01 6.240611e-01 7.800764e-01 setrgbcolor +fill +grestore +newpath +8.005178e+01 1.369362e+01 moveto +7.924184e+01 1.284591e+01 lineto +7.808406e+01 1.30538e+01 lineto +7.882815e+01 1.391333e+01 lineto +8.005178e+01 1.369362e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.084747e+01 1.457192e+01 moveto +8.005178e+01 1.369362e+01 lineto +7.882815e+01 1.391333e+01 lineto +7.955915e+01 1.480324e+01 lineto +8.084747e+01 1.457192e+01 lineto +closepath +gsave +6.242786e-01 6.242786e-01 7.803483e-01 setrgbcolor +fill +grestore +newpath +8.084747e+01 1.457192e+01 moveto +8.005178e+01 1.369362e+01 lineto +7.882815e+01 1.391333e+01 lineto +7.955915e+01 1.480324e+01 lineto +8.084747e+01 1.457192e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.162815e+01 1.547997e+01 moveto +8.084747e+01 1.457192e+01 lineto +7.955915e+01 1.480324e+01 lineto +8.027636e+01 1.572269e+01 lineto +8.162815e+01 1.547997e+01 lineto +closepath +gsave +6.244128e-01 6.244128e-01 7.80516e-01 setrgbcolor +fill +grestore +newpath +8.162815e+01 1.547997e+01 moveto +8.084747e+01 1.457192e+01 lineto +7.955915e+01 1.480324e+01 lineto +8.027636e+01 1.572269e+01 lineto +8.162815e+01 1.547997e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.239308e+01 1.641692e+01 moveto +8.162815e+01 1.547997e+01 lineto +8.027636e+01 1.572269e+01 lineto +8.097911e+01 1.667081e+01 lineto +8.239308e+01 1.641692e+01 lineto +closepath +gsave +6.244635e-01 6.244635e-01 7.805794e-01 setrgbcolor +fill +grestore +newpath +8.239308e+01 1.641692e+01 moveto +8.162815e+01 1.547997e+01 lineto +8.027636e+01 1.572269e+01 lineto +8.097911e+01 1.667081e+01 lineto +8.239308e+01 1.641692e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.314155e+01 1.738188e+01 moveto +8.239308e+01 1.641692e+01 lineto +8.097911e+01 1.667081e+01 lineto +8.166674e+01 1.764669e+01 lineto +8.314155e+01 1.738188e+01 lineto +closepath +gsave +6.244307e-01 6.244307e-01 7.805384e-01 setrgbcolor +fill +grestore +newpath +8.314155e+01 1.738188e+01 moveto +8.239308e+01 1.641692e+01 lineto +8.097911e+01 1.667081e+01 lineto +8.166674e+01 1.764669e+01 lineto +8.314155e+01 1.738188e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.387285e+01 1.837393e+01 moveto +8.314155e+01 1.738188e+01 lineto +8.166674e+01 1.764669e+01 lineto +8.233858e+01 1.864942e+01 lineto +8.387285e+01 1.837393e+01 lineto +closepath +gsave +6.243145e-01 6.243145e-01 7.803931e-01 setrgbcolor +fill +grestore +newpath +8.387285e+01 1.837393e+01 moveto +8.314155e+01 1.738188e+01 lineto +8.166674e+01 1.764669e+01 lineto +8.233858e+01 1.864942e+01 lineto +8.387285e+01 1.837393e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.458627e+01 1.939214e+01 moveto +8.387285e+01 1.837393e+01 lineto +8.233858e+01 1.864942e+01 lineto +8.2994e+01 1.967805e+01 lineto +8.458627e+01 1.939214e+01 lineto +closepath +gsave +6.24115e-01 6.24115e-01 7.801437e-01 setrgbcolor +fill +grestore +newpath +8.458627e+01 1.939214e+01 moveto +8.387285e+01 1.837393e+01 lineto +8.233858e+01 1.864942e+01 lineto +8.2994e+01 1.967805e+01 lineto +8.458627e+01 1.939214e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.528115e+01 2.043555e+01 moveto +8.458627e+01 1.939214e+01 lineto +8.2994e+01 1.967805e+01 lineto +8.363239e+01 2.07316e+01 lineto +8.528115e+01 2.043555e+01 lineto +closepath +gsave +6.238324e-01 6.238324e-01 7.797905e-01 setrgbcolor +fill +grestore +newpath +8.528115e+01 2.043555e+01 moveto +8.458627e+01 1.939214e+01 lineto +8.2994e+01 1.967805e+01 lineto +8.363239e+01 2.07316e+01 lineto +8.528115e+01 2.043555e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.595682e+01 2.150316e+01 moveto +8.528115e+01 2.043555e+01 lineto +8.363239e+01 2.07316e+01 lineto +8.425314e+01 2.180907e+01 lineto +8.595682e+01 2.150316e+01 lineto +closepath +gsave +6.234671e-01 6.234671e-01 7.793338e-01 setrgbcolor +fill +grestore +newpath +8.595682e+01 2.150316e+01 moveto +8.528115e+01 2.043555e+01 lineto +8.363239e+01 2.07316e+01 lineto +8.425314e+01 2.180907e+01 lineto +8.595682e+01 2.150316e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.661266e+01 2.259396e+01 moveto +8.595682e+01 2.150316e+01 lineto +8.425314e+01 2.180907e+01 lineto +8.485566e+01 2.290945e+01 lineto +8.661266e+01 2.259396e+01 lineto +closepath +gsave +6.230194e-01 6.230194e-01 7.787742e-01 setrgbcolor +fill +grestore +newpath +8.661266e+01 2.259396e+01 moveto +8.595682e+01 2.150316e+01 lineto +8.425314e+01 2.180907e+01 lineto +8.485566e+01 2.290945e+01 lineto +8.661266e+01 2.259396e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.724803e+01 2.370692e+01 moveto +8.661266e+01 2.259396e+01 lineto +8.485566e+01 2.290945e+01 lineto +8.543938e+01 2.403168e+01 lineto +8.724803e+01 2.370692e+01 lineto +closepath +gsave +6.224899e-01 6.224899e-01 7.781123e-01 setrgbcolor +fill +grestore +newpath +8.724803e+01 2.370692e+01 moveto +8.661266e+01 2.259396e+01 lineto +8.485566e+01 2.290945e+01 lineto +8.543938e+01 2.403168e+01 lineto +8.724803e+01 2.370692e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.786234e+01 2.484099e+01 moveto +8.724803e+01 2.370692e+01 lineto +8.543938e+01 2.403168e+01 lineto +8.600375e+01 2.517472e+01 lineto +8.786234e+01 2.484099e+01 lineto +closepath +gsave +6.218791e-01 6.218791e-01 7.773489e-01 setrgbcolor +fill +grestore +newpath +8.786234e+01 2.484099e+01 moveto +8.724803e+01 2.370692e+01 lineto +8.543938e+01 2.403168e+01 lineto +8.600375e+01 2.517472e+01 lineto +8.786234e+01 2.484099e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.8455e+01 2.59951e+01 moveto +8.786234e+01 2.484099e+01 lineto +8.600375e+01 2.517472e+01 lineto +8.654823e+01 2.633748e+01 lineto +8.8455e+01 2.59951e+01 lineto +closepath +gsave +6.211877e-01 6.211877e-01 7.764847e-01 setrgbcolor +fill +grestore +newpath +8.8455e+01 2.59951e+01 moveto +8.786234e+01 2.484099e+01 lineto +8.600375e+01 2.517472e+01 lineto +8.654823e+01 2.633748e+01 lineto +8.8455e+01 2.59951e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.902545e+01 2.716815e+01 moveto +8.8455e+01 2.59951e+01 lineto +8.654823e+01 2.633748e+01 lineto +8.70723e+01 2.751885e+01 lineto +8.902545e+01 2.716815e+01 lineto +closepath +gsave +6.204166e-01 6.204166e-01 7.755208e-01 setrgbcolor +fill +grestore +newpath +8.902545e+01 2.716815e+01 moveto +8.8455e+01 2.59951e+01 lineto +8.654823e+01 2.633748e+01 lineto +8.70723e+01 2.751885e+01 lineto +8.902545e+01 2.716815e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.957316e+01 2.835902e+01 moveto +8.902545e+01 2.716815e+01 lineto +8.70723e+01 2.751885e+01 lineto +8.757548e+01 2.871772e+01 lineto +8.957316e+01 2.835902e+01 lineto +closepath +gsave +6.195665e-01 6.195665e-01 7.744582e-01 setrgbcolor +fill +grestore +newpath +8.957316e+01 2.835902e+01 moveto +8.902545e+01 2.716815e+01 lineto +8.70723e+01 2.751885e+01 lineto +8.757548e+01 2.871772e+01 lineto +8.957316e+01 2.835902e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.00976e+01 2.95666e+01 moveto +8.957316e+01 2.835902e+01 lineto +8.757548e+01 2.871772e+01 lineto +8.805729e+01 2.993296e+01 lineto +9.00976e+01 2.95666e+01 lineto +closepath +gsave +6.186385e-01 6.186385e-01 7.732981e-01 setrgbcolor +fill +grestore +newpath +9.00976e+01 2.95666e+01 moveto +8.957316e+01 2.835902e+01 lineto +8.757548e+01 2.871772e+01 lineto +8.805729e+01 2.993296e+01 lineto +9.00976e+01 2.95666e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.059827e+01 3.078974e+01 moveto +9.00976e+01 2.95666e+01 lineto +8.805729e+01 2.993296e+01 lineto +8.851726e+01 3.11634e+01 lineto +9.059827e+01 3.078974e+01 lineto +closepath +gsave +6.176335e-01 6.176335e-01 7.720418e-01 setrgbcolor +fill +grestore +newpath +9.059827e+01 3.078974e+01 moveto +9.00976e+01 2.95666e+01 lineto +8.805729e+01 2.993296e+01 lineto +8.851726e+01 3.11634e+01 lineto +9.059827e+01 3.078974e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.107471e+01 3.202728e+01 moveto +9.059827e+01 3.078974e+01 lineto +8.851726e+01 3.11634e+01 lineto +8.895497e+01 3.24079e+01 lineto +9.107471e+01 3.202728e+01 lineto +closepath +gsave +6.165526e-01 6.165526e-01 7.706908e-01 setrgbcolor +fill +grestore +newpath +9.107471e+01 3.202728e+01 moveto +9.059827e+01 3.078974e+01 lineto +8.851726e+01 3.11634e+01 lineto +8.895497e+01 3.24079e+01 lineto +9.107471e+01 3.202728e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.152646e+01 3.327804e+01 moveto +9.107471e+01 3.202728e+01 lineto +8.895497e+01 3.24079e+01 lineto +8.937e+01 3.366526e+01 lineto +9.152646e+01 3.327804e+01 lineto +closepath +gsave +6.153972e-01 6.153972e-01 7.692465e-01 setrgbcolor +fill +grestore +newpath +9.152646e+01 3.327804e+01 moveto +9.107471e+01 3.202728e+01 lineto +8.895497e+01 3.24079e+01 lineto +8.937e+01 3.366526e+01 lineto +9.152646e+01 3.327804e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.19531e+01 3.454086e+01 moveto +9.152646e+01 3.327804e+01 lineto +8.937e+01 3.366526e+01 lineto +8.976195e+01 3.49343e+01 lineto +9.19531e+01 3.454086e+01 lineto +closepath +gsave +6.141685e-01 6.141685e-01 7.677106e-01 setrgbcolor +fill +grestore +newpath +9.19531e+01 3.454086e+01 moveto +9.152646e+01 3.327804e+01 lineto +8.937e+01 3.366526e+01 lineto +8.976195e+01 3.49343e+01 lineto +9.19531e+01 3.454086e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.235422e+01 3.581452e+01 moveto +9.19531e+01 3.454086e+01 lineto +8.976195e+01 3.49343e+01 lineto +9.013046e+01 3.621382e+01 lineto +9.235422e+01 3.581452e+01 lineto +closepath +gsave +6.128678e-01 6.128678e-01 7.660848e-01 setrgbcolor +fill +grestore +newpath +9.235422e+01 3.581452e+01 moveto +9.19531e+01 3.454086e+01 lineto +8.976195e+01 3.49343e+01 lineto +9.013046e+01 3.621382e+01 lineto +9.235422e+01 3.581452e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.272944e+01 3.709783e+01 moveto +9.235422e+01 3.581452e+01 lineto +9.013046e+01 3.621382e+01 lineto +9.047517e+01 3.75026e+01 lineto +9.272944e+01 3.709783e+01 lineto +closepath +gsave +6.114967e-01 6.114967e-01 7.643709e-01 setrgbcolor +fill +grestore +newpath +9.272944e+01 3.709783e+01 moveto +9.235422e+01 3.581452e+01 lineto +9.013046e+01 3.621382e+01 lineto +9.047517e+01 3.75026e+01 lineto +9.272944e+01 3.709783e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.30784e+01 3.838956e+01 moveto +9.272944e+01 3.709783e+01 lineto +9.047517e+01 3.75026e+01 lineto +9.079577e+01 3.879943e+01 lineto +9.30784e+01 3.838956e+01 lineto +closepath +gsave +6.100567e-01 6.100567e-01 7.625708e-01 setrgbcolor +fill +grestore +newpath +9.30784e+01 3.838956e+01 moveto +9.272944e+01 3.709783e+01 lineto +9.047517e+01 3.75026e+01 lineto +9.079577e+01 3.879943e+01 lineto +9.30784e+01 3.838956e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.340078e+01 3.968851e+01 moveto +9.30784e+01 3.838956e+01 lineto +9.079577e+01 3.879943e+01 lineto +9.109194e+01 4.010308e+01 lineto +9.340078e+01 3.968851e+01 lineto +closepath +gsave +6.085494e-01 6.085494e-01 7.606867e-01 setrgbcolor +fill +grestore +newpath +9.340078e+01 3.968851e+01 moveto +9.30784e+01 3.838956e+01 lineto +9.079577e+01 3.879943e+01 lineto +9.109194e+01 4.010308e+01 lineto +9.340078e+01 3.968851e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.585422e+01 4.285299e+00 moveto +6.500277e+01 4.00086e+00 lineto +6.500251e+01 4.000898e+00 lineto +6.577337e+01 4.297236e+00 lineto +6.585422e+01 4.285299e+00 lineto +closepath +gsave +6.100172e-01 6.100172e-01 7.625216e-01 setrgbcolor +fill +grestore +newpath +6.585422e+01 4.285299e+00 moveto +6.500277e+01 4.00086e+00 lineto +6.500251e+01 4.000898e+00 lineto +6.577337e+01 4.297236e+00 lineto +6.585422e+01 4.285299e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.670487e+01 4.609234e+00 moveto +6.585422e+01 4.285299e+00 lineto +6.577337e+01 4.297236e+00 lineto +6.65435e+01 4.633058e+00 lineto +6.670487e+01 4.609234e+00 lineto +closepath +gsave +6.120728e-01 6.120728e-01 7.65091e-01 setrgbcolor +fill +grestore +newpath +6.670487e+01 4.609234e+00 moveto +6.585422e+01 4.285299e+00 lineto +6.577337e+01 4.297236e+00 lineto +6.65435e+01 4.633058e+00 lineto +6.670487e+01 4.609234e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.75539e+01 4.972358e+00 moveto +6.670487e+01 4.609234e+00 lineto +6.65435e+01 4.633058e+00 lineto +6.731217e+01 5.008047e+00 lineto +6.75539e+01 4.972358e+00 lineto +closepath +gsave +6.140602e-01 6.140602e-01 7.675752e-01 setrgbcolor +fill +grestore +newpath +6.75539e+01 4.972358e+00 moveto +6.670487e+01 4.609234e+00 lineto +6.65435e+01 4.633058e+00 lineto +6.731217e+01 5.008047e+00 lineto +6.75539e+01 4.972358e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.840052e+01 5.374327e+00 moveto +6.75539e+01 4.972358e+00 lineto +6.731217e+01 5.008047e+00 lineto +6.807864e+01 5.421847e+00 lineto +6.840052e+01 5.374327e+00 lineto +closepath +gsave +6.159771e-01 6.159771e-01 7.699714e-01 setrgbcolor +fill +grestore +newpath +6.840052e+01 5.374327e+00 moveto +6.75539e+01 4.972358e+00 lineto +6.731217e+01 5.008047e+00 lineto +6.807864e+01 5.421847e+00 lineto +6.840052e+01 5.374327e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.924391e+01 5.814762e+00 moveto +6.840052e+01 5.374327e+00 lineto +6.807864e+01 5.421847e+00 lineto +6.884221e+01 5.874067e+00 lineto +6.924391e+01 5.814762e+00 lineto +closepath +gsave +6.178213e-01 6.178213e-01 7.722767e-01 setrgbcolor +fill +grestore +newpath +6.924391e+01 5.814762e+00 moveto +6.840052e+01 5.374327e+00 lineto +6.807864e+01 5.421847e+00 lineto +6.884221e+01 5.874067e+00 lineto +6.924391e+01 5.814762e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.008329e+01 6.293244e+00 moveto +6.924391e+01 5.814762e+00 lineto +6.884221e+01 5.874067e+00 lineto +6.960213e+01 6.364279e+00 lineto +7.008329e+01 6.293244e+00 lineto +closepath +gsave +6.195908e-01 6.195908e-01 7.744885e-01 setrgbcolor +fill +grestore +newpath +7.008329e+01 6.293244e+00 moveto +6.924391e+01 5.814762e+00 lineto +6.884221e+01 5.874067e+00 lineto +6.960213e+01 6.364279e+00 lineto +7.008329e+01 6.293244e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.091785e+01 6.80932e+00 moveto +7.008329e+01 6.293244e+00 lineto +6.960213e+01 6.364279e+00 lineto +7.03577e+01 6.892018e+00 lineto +7.091785e+01 6.80932e+00 lineto +closepath +gsave +6.212834e-01 6.212834e-01 7.766042e-01 setrgbcolor +fill +grestore +newpath +7.091785e+01 6.80932e+00 moveto +7.008329e+01 6.293244e+00 lineto +6.960213e+01 6.364279e+00 lineto +7.03577e+01 6.892018e+00 lineto +7.091785e+01 6.80932e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.174681e+01 7.362503e+00 moveto +7.091785e+01 6.80932e+00 lineto +7.03577e+01 6.892018e+00 lineto +7.11082e+01 7.456785e+00 lineto +7.174681e+01 7.362503e+00 lineto +closepath +gsave +6.228973e-01 6.228973e-01 7.786216e-01 setrgbcolor +fill +grestore +newpath +7.174681e+01 7.362503e+00 moveto +7.091785e+01 6.80932e+00 lineto +7.03577e+01 6.892018e+00 lineto +7.11082e+01 7.456785e+00 lineto +7.174681e+01 7.362503e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.256938e+01 7.952269e+00 moveto +7.174681e+01 7.362503e+00 lineto +7.11082e+01 7.456785e+00 lineto +7.185291e+01 8.058045e+00 lineto +7.256938e+01 7.952269e+00 lineto +closepath +gsave +6.244306e-01 6.244306e-01 7.805382e-01 setrgbcolor +fill +grestore +newpath +7.256938e+01 7.952269e+00 moveto +7.174681e+01 7.362503e+00 lineto +7.11082e+01 7.456785e+00 lineto +7.185291e+01 8.058045e+00 lineto +7.256938e+01 7.952269e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.338479e+01 8.578058e+00 moveto +7.256938e+01 7.952269e+00 lineto +7.185291e+01 8.058045e+00 lineto +7.259114e+01 8.695229e+00 lineto +7.338479e+01 8.578058e+00 lineto +closepath +gsave +6.258816e-01 6.258816e-01 7.82352e-01 setrgbcolor +fill +grestore +newpath +7.338479e+01 8.578058e+00 moveto +7.256938e+01 7.952269e+00 lineto +7.185291e+01 8.058045e+00 lineto +7.259114e+01 8.695229e+00 lineto +7.338479e+01 8.578058e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.419226e+01 9.239278e+00 moveto +7.338479e+01 8.578058e+00 lineto +7.259114e+01 8.695229e+00 lineto +7.332217e+01 9.367733e+00 lineto +7.419226e+01 9.239278e+00 lineto +closepath +gsave +6.272487e-01 6.272487e-01 7.840609e-01 setrgbcolor +fill +grestore +newpath +7.419226e+01 9.239278e+00 moveto +7.338479e+01 8.578058e+00 lineto +7.259114e+01 8.695229e+00 lineto +7.332217e+01 9.367733e+00 lineto +7.419226e+01 9.239278e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.499102e+01 9.935305e+00 moveto +7.419226e+01 9.239278e+00 lineto +7.332217e+01 9.367733e+00 lineto +7.404533e+01 1.007492e+01 lineto +7.499102e+01 9.935305e+00 lineto +closepath +gsave +6.285304e-01 6.285304e-01 7.856631e-01 setrgbcolor +fill +grestore +newpath +7.499102e+01 9.935305e+00 moveto +7.419226e+01 9.239278e+00 lineto +7.332217e+01 9.367733e+00 lineto +7.404533e+01 1.007492e+01 lineto +7.499102e+01 9.935305e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.578032e+01 1.066548e+01 moveto +7.499102e+01 9.935305e+00 lineto +7.404533e+01 1.007492e+01 lineto +7.475992e+01 1.081612e+01 lineto +7.578032e+01 1.066548e+01 lineto +closepath +gsave +6.297253e-01 6.297253e-01 7.871567e-01 setrgbcolor +fill +grestore +newpath +7.578032e+01 1.066548e+01 moveto +7.499102e+01 9.935305e+00 lineto +7.404533e+01 1.007492e+01 lineto +7.475992e+01 1.081612e+01 lineto +7.578032e+01 1.066548e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.655942e+01 1.14291e+01 moveto +7.578032e+01 1.066548e+01 lineto +7.475992e+01 1.081612e+01 lineto +7.546528e+01 1.159064e+01 lineto +7.655942e+01 1.14291e+01 lineto +closepath +gsave +6.308321e-01 6.308321e-01 7.885401e-01 setrgbcolor +fill +grestore +newpath +7.655942e+01 1.14291e+01 moveto +7.578032e+01 1.066548e+01 lineto +7.475992e+01 1.081612e+01 lineto +7.546528e+01 1.159064e+01 lineto +7.655942e+01 1.14291e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.732757e+01 1.222546e+01 moveto +7.655942e+01 1.14291e+01 lineto +7.546528e+01 1.159064e+01 lineto +7.616072e+01 1.239773e+01 lineto +7.732757e+01 1.222546e+01 lineto +closepath +gsave +6.318495e-01 6.318495e-01 7.898119e-01 setrgbcolor +fill +grestore +newpath +7.732757e+01 1.222546e+01 moveto +7.655942e+01 1.14291e+01 lineto +7.546528e+01 1.159064e+01 lineto +7.616072e+01 1.239773e+01 lineto +7.732757e+01 1.222546e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.808406e+01 1.30538e+01 moveto +7.732757e+01 1.222546e+01 lineto +7.616072e+01 1.239773e+01 lineto +7.68456e+01 1.323664e+01 lineto +7.808406e+01 1.30538e+01 lineto +closepath +gsave +6.327765e-01 6.327765e-01 7.909706e-01 setrgbcolor +fill +grestore +newpath +7.808406e+01 1.30538e+01 moveto +7.732757e+01 1.222546e+01 lineto +7.616072e+01 1.239773e+01 lineto +7.68456e+01 1.323664e+01 lineto +7.808406e+01 1.30538e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.882815e+01 1.391333e+01 moveto +7.808406e+01 1.30538e+01 lineto +7.68456e+01 1.323664e+01 lineto +7.751926e+01 1.410657e+01 lineto +7.882815e+01 1.391333e+01 lineto +closepath +gsave +6.33612e-01 6.33612e-01 7.92015e-01 setrgbcolor +fill +grestore +newpath +7.882815e+01 1.391333e+01 moveto +7.808406e+01 1.30538e+01 lineto +7.68456e+01 1.323664e+01 lineto +7.751926e+01 1.410657e+01 lineto +7.882815e+01 1.391333e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.955915e+01 1.480324e+01 moveto +7.882815e+01 1.391333e+01 lineto +7.751926e+01 1.410657e+01 lineto +7.818107e+01 1.50067e+01 lineto +7.955915e+01 1.480324e+01 lineto +closepath +gsave +6.343552e-01 6.343552e-01 7.929439e-01 setrgbcolor +fill +grestore +newpath +7.955915e+01 1.480324e+01 moveto +7.882815e+01 1.391333e+01 lineto +7.751926e+01 1.410657e+01 lineto +7.818107e+01 1.50067e+01 lineto +7.955915e+01 1.480324e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.027636e+01 1.572269e+01 moveto +7.955915e+01 1.480324e+01 lineto +7.818107e+01 1.50067e+01 lineto +7.88304e+01 1.593617e+01 lineto +8.027636e+01 1.572269e+01 lineto +closepath +gsave +6.350052e-01 6.350052e-01 7.937565e-01 setrgbcolor +fill +grestore +newpath +8.027636e+01 1.572269e+01 moveto +7.955915e+01 1.480324e+01 lineto +7.818107e+01 1.50067e+01 lineto +7.88304e+01 1.593617e+01 lineto +8.027636e+01 1.572269e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.097911e+01 1.667081e+01 moveto +8.027636e+01 1.572269e+01 lineto +7.88304e+01 1.593617e+01 lineto +7.946663e+01 1.689411e+01 lineto +8.097911e+01 1.667081e+01 lineto +closepath +gsave +6.355614e-01 6.355614e-01 7.944518e-01 setrgbcolor +fill +grestore +newpath +8.097911e+01 1.667081e+01 moveto +8.027636e+01 1.572269e+01 lineto +7.88304e+01 1.593617e+01 lineto +7.946663e+01 1.689411e+01 lineto +8.097911e+01 1.667081e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.166674e+01 1.764669e+01 moveto +8.097911e+01 1.667081e+01 lineto +7.946663e+01 1.689411e+01 lineto +8.008917e+01 1.78796e+01 lineto +8.166674e+01 1.764669e+01 lineto +closepath +gsave +6.360233e-01 6.360233e-01 7.950291e-01 setrgbcolor +fill +grestore +newpath +8.166674e+01 1.764669e+01 moveto +8.097911e+01 1.667081e+01 lineto +7.946663e+01 1.689411e+01 lineto +8.008917e+01 1.78796e+01 lineto +8.166674e+01 1.764669e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.233858e+01 1.864942e+01 moveto +8.166674e+01 1.764669e+01 lineto +8.008917e+01 1.78796e+01 lineto +8.069741e+01 1.889172e+01 lineto +8.233858e+01 1.864942e+01 lineto +closepath +gsave +6.363902e-01 6.363902e-01 7.954877e-01 setrgbcolor +fill +grestore +newpath +8.233858e+01 1.864942e+01 moveto +8.166674e+01 1.764669e+01 lineto +8.008917e+01 1.78796e+01 lineto +8.069741e+01 1.889172e+01 lineto +8.233858e+01 1.864942e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.2994e+01 1.967805e+01 moveto +8.233858e+01 1.864942e+01 lineto +8.069741e+01 1.889172e+01 lineto +8.12908e+01 1.99295e+01 lineto +8.2994e+01 1.967805e+01 lineto +closepath +gsave +6.366619e-01 6.366619e-01 7.958273e-01 setrgbcolor +fill +grestore +newpath +8.2994e+01 1.967805e+01 moveto +8.233858e+01 1.864942e+01 lineto +8.069741e+01 1.889172e+01 lineto +8.12908e+01 1.99295e+01 lineto +8.2994e+01 1.967805e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.363239e+01 2.07316e+01 moveto +8.2994e+01 1.967805e+01 lineto +8.12908e+01 1.99295e+01 lineto +8.186876e+01 2.099197e+01 lineto +8.363239e+01 2.07316e+01 lineto +closepath +gsave +6.36838e-01 6.36838e-01 7.960475e-01 setrgbcolor +fill +grestore +newpath +8.363239e+01 2.07316e+01 moveto +8.2994e+01 1.967805e+01 lineto +8.12908e+01 1.99295e+01 lineto +8.186876e+01 2.099197e+01 lineto +8.363239e+01 2.07316e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.425314e+01 2.180907e+01 moveto +8.363239e+01 2.07316e+01 lineto +8.186876e+01 2.099197e+01 lineto +8.243076e+01 2.207812e+01 lineto +8.425314e+01 2.180907e+01 lineto +closepath +gsave +6.369184e-01 6.369184e-01 7.96148e-01 setrgbcolor +fill +grestore +newpath +8.425314e+01 2.180907e+01 moveto +8.363239e+01 2.07316e+01 lineto +8.186876e+01 2.099197e+01 lineto +8.243076e+01 2.207812e+01 lineto +8.425314e+01 2.180907e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.485566e+01 2.290945e+01 moveto +8.425314e+01 2.180907e+01 lineto +8.243076e+01 2.207812e+01 lineto +8.297624e+01 2.318691e+01 lineto +8.485566e+01 2.290945e+01 lineto +closepath +gsave +6.36903e-01 6.36903e-01 7.961287e-01 setrgbcolor +fill +grestore +newpath +8.485566e+01 2.290945e+01 moveto +8.425314e+01 2.180907e+01 lineto +8.243076e+01 2.207812e+01 lineto +8.297624e+01 2.318691e+01 lineto +8.485566e+01 2.290945e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.543938e+01 2.403168e+01 moveto +8.485566e+01 2.290945e+01 lineto +8.297624e+01 2.318691e+01 lineto +8.350471e+01 2.431731e+01 lineto +8.543938e+01 2.403168e+01 lineto +closepath +gsave +6.367918e-01 6.367918e-01 7.959898e-01 setrgbcolor +fill +grestore +newpath +8.543938e+01 2.403168e+01 moveto +8.485566e+01 2.290945e+01 lineto +8.297624e+01 2.318691e+01 lineto +8.350471e+01 2.431731e+01 lineto +8.543938e+01 2.403168e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.600375e+01 2.517472e+01 moveto +8.543938e+01 2.403168e+01 lineto +8.350471e+01 2.431731e+01 lineto +8.401566e+01 2.546823e+01 lineto +8.600375e+01 2.517472e+01 lineto +closepath +gsave +6.365851e-01 6.365851e-01 7.957313e-01 setrgbcolor +fill +grestore +newpath +8.600375e+01 2.517472e+01 moveto +8.543938e+01 2.403168e+01 lineto +8.350471e+01 2.431731e+01 lineto +8.401566e+01 2.546823e+01 lineto +8.600375e+01 2.517472e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.654823e+01 2.633748e+01 moveto +8.600375e+01 2.517472e+01 lineto +8.401566e+01 2.546823e+01 lineto +8.45086e+01 2.66386e+01 lineto +8.654823e+01 2.633748e+01 lineto +closepath +gsave +6.362829e-01 6.362829e-01 7.953536e-01 setrgbcolor +fill +grestore +newpath +8.654823e+01 2.633748e+01 moveto +8.600375e+01 2.517472e+01 lineto +8.401566e+01 2.546823e+01 lineto +8.45086e+01 2.66386e+01 lineto +8.654823e+01 2.633748e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.70723e+01 2.751885e+01 moveto +8.654823e+01 2.633748e+01 lineto +8.45086e+01 2.66386e+01 lineto +8.498307e+01 2.782729e+01 lineto +8.70723e+01 2.751885e+01 lineto +closepath +gsave +6.358857e-01 6.358857e-01 7.948571e-01 setrgbcolor +fill +grestore +newpath +8.70723e+01 2.751885e+01 moveto +8.654823e+01 2.633748e+01 lineto +8.45086e+01 2.66386e+01 lineto +8.498307e+01 2.782729e+01 lineto +8.70723e+01 2.751885e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.757548e+01 2.871772e+01 moveto +8.70723e+01 2.751885e+01 lineto +8.498307e+01 2.782729e+01 lineto +8.543863e+01 2.90332e+01 lineto +8.757548e+01 2.871772e+01 lineto +closepath +gsave +6.353938e-01 6.353938e-01 7.942423e-01 setrgbcolor +fill +grestore +newpath +8.757548e+01 2.871772e+01 moveto +8.70723e+01 2.751885e+01 lineto +8.498307e+01 2.782729e+01 lineto +8.543863e+01 2.90332e+01 lineto +8.757548e+01 2.871772e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.805729e+01 2.993296e+01 moveto +8.757548e+01 2.871772e+01 lineto +8.543863e+01 2.90332e+01 lineto +8.587483e+01 3.025516e+01 lineto +8.805729e+01 2.993296e+01 lineto +closepath +gsave +6.348079e-01 6.348079e-01 7.935099e-01 setrgbcolor +fill +grestore +newpath +8.805729e+01 2.993296e+01 moveto +8.757548e+01 2.871772e+01 lineto +8.543863e+01 2.90332e+01 lineto +8.587483e+01 3.025516e+01 lineto +8.805729e+01 2.993296e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.851726e+01 3.11634e+01 moveto +8.805729e+01 2.993296e+01 lineto +8.587483e+01 3.025516e+01 lineto +8.629126e+01 3.149204e+01 lineto +8.851726e+01 3.11634e+01 lineto +closepath +gsave +6.341285e-01 6.341285e-01 7.926606e-01 setrgbcolor +fill +grestore +newpath +8.851726e+01 3.11634e+01 moveto +8.805729e+01 2.993296e+01 lineto +8.587483e+01 3.025516e+01 lineto +8.629126e+01 3.149204e+01 lineto +8.851726e+01 3.11634e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.895497e+01 3.24079e+01 moveto +8.851726e+01 3.11634e+01 lineto +8.629126e+01 3.149204e+01 lineto +8.668754e+01 3.274265e+01 lineto +8.895497e+01 3.24079e+01 lineto +closepath +gsave +6.333564e-01 6.333564e-01 7.916956e-01 setrgbcolor +fill +grestore +newpath +8.895497e+01 3.24079e+01 moveto +8.851726e+01 3.11634e+01 lineto +8.629126e+01 3.149204e+01 lineto +8.668754e+01 3.274265e+01 lineto +8.895497e+01 3.24079e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.937e+01 3.366526e+01 moveto +8.895497e+01 3.24079e+01 lineto +8.668754e+01 3.274265e+01 lineto +8.706328e+01 3.400581e+01 lineto +8.937e+01 3.366526e+01 lineto +closepath +gsave +6.324925e-01 6.324925e-01 7.906156e-01 setrgbcolor +fill +grestore +newpath +8.937e+01 3.366526e+01 moveto +8.895497e+01 3.24079e+01 lineto +8.668754e+01 3.274265e+01 lineto +8.706328e+01 3.400581e+01 lineto +8.937e+01 3.366526e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.976195e+01 3.49343e+01 moveto +8.937e+01 3.366526e+01 lineto +8.706328e+01 3.400581e+01 lineto +8.741814e+01 3.528033e+01 lineto +8.976195e+01 3.49343e+01 lineto +closepath +gsave +6.315377e-01 6.315377e-01 7.894221e-01 setrgbcolor +fill +grestore +newpath +8.976195e+01 3.49343e+01 moveto +8.937e+01 3.366526e+01 lineto +8.706328e+01 3.400581e+01 lineto +8.741814e+01 3.528033e+01 lineto +8.976195e+01 3.49343e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.013046e+01 3.621382e+01 moveto +8.976195e+01 3.49343e+01 lineto +8.741814e+01 3.528033e+01 lineto +8.775176e+01 3.6565e+01 lineto +9.013046e+01 3.621382e+01 lineto +closepath +gsave +6.30493e-01 6.30493e-01 7.881162e-01 setrgbcolor +fill +grestore +newpath +9.013046e+01 3.621382e+01 moveto +8.976195e+01 3.49343e+01 lineto +8.741814e+01 3.528033e+01 lineto +8.775176e+01 3.6565e+01 lineto +9.013046e+01 3.621382e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.047517e+01 3.75026e+01 moveto +9.013046e+01 3.621382e+01 lineto +8.775176e+01 3.6565e+01 lineto +8.806385e+01 3.78586e+01 lineto +9.047517e+01 3.75026e+01 lineto +closepath +gsave +6.293595e-01 6.293595e-01 7.866994e-01 setrgbcolor +fill +grestore +newpath +9.047517e+01 3.75026e+01 moveto +9.013046e+01 3.621382e+01 lineto +8.775176e+01 3.6565e+01 lineto +8.806385e+01 3.78586e+01 lineto +9.047517e+01 3.75026e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.079577e+01 3.879943e+01 moveto +9.047517e+01 3.75026e+01 lineto +8.806385e+01 3.78586e+01 lineto +8.83541e+01 3.915991e+01 lineto +9.079577e+01 3.879943e+01 lineto +closepath +gsave +6.281387e-01 6.281387e-01 7.851733e-01 setrgbcolor +fill +grestore +newpath +9.079577e+01 3.879943e+01 moveto +9.047517e+01 3.75026e+01 lineto +8.806385e+01 3.78586e+01 lineto +8.83541e+01 3.915991e+01 lineto +9.079577e+01 3.879943e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +9.109194e+01 4.010308e+01 moveto +9.079577e+01 3.879943e+01 lineto +8.83541e+01 3.915991e+01 lineto +8.862224e+01 4.046769e+01 lineto +9.109194e+01 4.010308e+01 lineto +closepath +gsave +6.268316e-01 6.268316e-01 7.835396e-01 setrgbcolor +fill +grestore +newpath +9.109194e+01 4.010308e+01 moveto +9.079577e+01 3.879943e+01 lineto +8.83541e+01 3.915991e+01 lineto +8.862224e+01 4.046769e+01 lineto +9.109194e+01 4.010308e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.577337e+01 4.297236e+00 moveto +6.500251e+01 4.000898e+00 lineto +6.500223e+01 4.000931e+00 lineto +6.568774e+01 4.307464e+00 lineto +6.577337e+01 4.297236e+00 lineto +closepath +gsave +6.103113e-01 6.103113e-01 7.628891e-01 setrgbcolor +fill +grestore +newpath +6.577337e+01 4.297236e+00 moveto +6.500251e+01 4.000898e+00 lineto +6.500223e+01 4.000931e+00 lineto +6.568774e+01 4.307464e+00 lineto +6.577337e+01 4.297236e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.65435e+01 4.633058e+00 moveto +6.577337e+01 4.297236e+00 lineto +6.568774e+01 4.307464e+00 lineto +6.637261e+01 4.653471e+00 lineto +6.65435e+01 4.633058e+00 lineto +closepath +gsave +6.129523e-01 6.129523e-01 7.661904e-01 setrgbcolor +fill +grestore +newpath +6.65435e+01 4.633058e+00 moveto +6.577337e+01 4.297236e+00 lineto +6.568774e+01 4.307464e+00 lineto +6.637261e+01 4.653471e+00 lineto +6.65435e+01 4.633058e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.731217e+01 5.008047e+00 moveto +6.65435e+01 4.633058e+00 lineto +6.637261e+01 4.653471e+00 lineto +6.705617e+01 5.038626e+00 lineto +6.731217e+01 5.008047e+00 lineto +closepath +gsave +6.155262e-01 6.155262e-01 7.694078e-01 setrgbcolor +fill +grestore +newpath +6.731217e+01 5.008047e+00 moveto +6.65435e+01 4.633058e+00 lineto +6.637261e+01 4.653471e+00 lineto +6.705617e+01 5.038626e+00 lineto +6.731217e+01 5.008047e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.807864e+01 5.421847e+00 moveto +6.731217e+01 5.008047e+00 lineto +6.705617e+01 5.038626e+00 lineto +6.773779e+01 5.462563e+00 lineto +6.807864e+01 5.421847e+00 lineto +closepath +gsave +6.1803e-01 6.1803e-01 7.725374e-01 setrgbcolor +fill +grestore +newpath +6.807864e+01 5.421847e+00 moveto +6.731217e+01 5.008047e+00 lineto +6.705617e+01 5.038626e+00 lineto +6.773779e+01 5.462563e+00 lineto +6.807864e+01 5.421847e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.884221e+01 5.874067e+00 moveto +6.807864e+01 5.421847e+00 lineto +6.773779e+01 5.462563e+00 lineto +6.841682e+01 5.924881e+00 lineto +6.884221e+01 5.874067e+00 lineto +closepath +gsave +6.204605e-01 6.204605e-01 7.755757e-01 setrgbcolor +fill +grestore +newpath +6.884221e+01 5.874067e+00 moveto +6.807864e+01 5.421847e+00 lineto +6.773779e+01 5.462563e+00 lineto +6.841682e+01 5.924881e+00 lineto +6.884221e+01 5.874067e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.960213e+01 6.364279e+00 moveto +6.884221e+01 5.874067e+00 lineto +6.841682e+01 5.924881e+00 lineto +6.909261e+01 6.425143e+00 lineto +6.960213e+01 6.364279e+00 lineto +closepath +gsave +6.228151e-01 6.228151e-01 7.785188e-01 setrgbcolor +fill +grestore +newpath +6.960213e+01 6.364279e+00 moveto +6.884221e+01 5.874067e+00 lineto +6.841682e+01 5.924881e+00 lineto +6.909261e+01 6.425143e+00 lineto +6.960213e+01 6.364279e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.03577e+01 6.892018e+00 moveto +6.960213e+01 6.364279e+00 lineto +6.909261e+01 6.425143e+00 lineto +6.976452e+01 6.962875e+00 lineto +7.03577e+01 6.892018e+00 lineto +closepath +gsave +6.250908e-01 6.250908e-01 7.813636e-01 setrgbcolor +fill +grestore +newpath +7.03577e+01 6.892018e+00 moveto +6.960213e+01 6.364279e+00 lineto +6.909261e+01 6.425143e+00 lineto +6.976452e+01 6.962875e+00 lineto +7.03577e+01 6.892018e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.11082e+01 7.456785e+00 moveto +7.03577e+01 6.892018e+00 lineto +6.976452e+01 6.962875e+00 lineto +7.043193e+01 7.537567e+00 lineto +7.11082e+01 7.456785e+00 lineto +closepath +gsave +6.272852e-01 6.272852e-01 7.841065e-01 setrgbcolor +fill +grestore +newpath +7.11082e+01 7.456785e+00 moveto +7.03577e+01 6.892018e+00 lineto +6.976452e+01 6.962875e+00 lineto +7.043193e+01 7.537567e+00 lineto +7.11082e+01 7.456785e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.185291e+01 8.058045e+00 moveto +7.11082e+01 7.456785e+00 lineto +7.043193e+01 7.537567e+00 lineto +7.109419e+01 8.148676e+00 lineto +7.185291e+01 8.058045e+00 lineto +closepath +gsave +6.293957e-01 6.293957e-01 7.867446e-01 setrgbcolor +fill +grestore +newpath +7.185291e+01 8.058045e+00 moveto +7.11082e+01 7.456785e+00 lineto +7.043193e+01 7.537567e+00 lineto +7.109419e+01 8.148676e+00 lineto +7.185291e+01 8.058045e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.259114e+01 8.695229e+00 moveto +7.185291e+01 8.058045e+00 lineto +7.109419e+01 8.148676e+00 lineto +7.175068e+01 8.795623e+00 lineto +7.259114e+01 8.695229e+00 lineto +closepath +gsave +6.314198e-01 6.314198e-01 7.892747e-01 setrgbcolor +fill +grestore +newpath +7.259114e+01 8.695229e+00 moveto +7.185291e+01 8.058045e+00 lineto +7.109419e+01 8.148676e+00 lineto +7.175068e+01 8.795623e+00 lineto +7.259114e+01 8.695229e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.332217e+01 9.367733e+00 moveto +7.259114e+01 8.695229e+00 lineto +7.175068e+01 8.795623e+00 lineto +7.240078e+01 9.477796e+00 lineto +7.332217e+01 9.367733e+00 lineto +closepath +gsave +6.333552e-01 6.333552e-01 7.91694e-01 setrgbcolor +fill +grestore +newpath +7.332217e+01 9.367733e+00 moveto +7.259114e+01 8.695229e+00 lineto +7.175068e+01 8.795623e+00 lineto +7.240078e+01 9.477796e+00 lineto +7.332217e+01 9.367733e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.404533e+01 1.007492e+01 moveto +7.332217e+01 9.367733e+00 lineto +7.240078e+01 9.477796e+00 lineto +7.304387e+01 1.019455e+01 lineto +7.404533e+01 1.007492e+01 lineto +closepath +gsave +6.351999e-01 6.351999e-01 7.939999e-01 setrgbcolor +fill +grestore +newpath +7.404533e+01 1.007492e+01 moveto +7.332217e+01 9.367733e+00 lineto +7.240078e+01 9.477796e+00 lineto +7.304387e+01 1.019455e+01 lineto +7.404533e+01 1.007492e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.475992e+01 1.081612e+01 moveto +7.404533e+01 1.007492e+01 lineto +7.304387e+01 1.019455e+01 lineto +7.367935e+01 1.09452e+01 lineto +7.475992e+01 1.081612e+01 lineto +closepath +gsave +6.369517e-01 6.369517e-01 7.961897e-01 setrgbcolor +fill +grestore +newpath +7.475992e+01 1.081612e+01 moveto +7.404533e+01 1.007492e+01 lineto +7.304387e+01 1.019455e+01 lineto +7.367935e+01 1.09452e+01 lineto +7.475992e+01 1.081612e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.546528e+01 1.159064e+01 moveto +7.475992e+01 1.081612e+01 lineto +7.367935e+01 1.09452e+01 lineto +7.430661e+01 1.172904e+01 lineto +7.546528e+01 1.159064e+01 lineto +closepath +gsave +6.386088e-01 6.386088e-01 7.98261e-01 setrgbcolor +fill +grestore +newpath +7.546528e+01 1.159064e+01 moveto +7.475992e+01 1.081612e+01 lineto +7.367935e+01 1.09452e+01 lineto +7.430661e+01 1.172904e+01 lineto +7.546528e+01 1.159064e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.616072e+01 1.239773e+01 moveto +7.546528e+01 1.159064e+01 lineto +7.430661e+01 1.172904e+01 lineto +7.492506e+01 1.254534e+01 lineto +7.616072e+01 1.239773e+01 lineto +closepath +gsave +6.401692e-01 6.401692e-01 8.002115e-01 setrgbcolor +fill +grestore +newpath +7.616072e+01 1.239773e+01 moveto +7.546528e+01 1.159064e+01 lineto +7.430661e+01 1.172904e+01 lineto +7.492506e+01 1.254534e+01 lineto +7.616072e+01 1.239773e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.68456e+01 1.323664e+01 moveto +7.616072e+01 1.239773e+01 lineto +7.492506e+01 1.254534e+01 lineto +7.553411e+01 1.33933e+01 lineto +7.68456e+01 1.323664e+01 lineto +closepath +gsave +6.416314e-01 6.416314e-01 8.020392e-01 setrgbcolor +fill +grestore +newpath +7.68456e+01 1.323664e+01 moveto +7.616072e+01 1.239773e+01 lineto +7.492506e+01 1.254534e+01 lineto +7.553411e+01 1.33933e+01 lineto +7.68456e+01 1.323664e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.751926e+01 1.410657e+01 moveto +7.68456e+01 1.323664e+01 lineto +7.553411e+01 1.33933e+01 lineto +7.613319e+01 1.427214e+01 lineto +7.751926e+01 1.410657e+01 lineto +closepath +gsave +6.429937e-01 6.429937e-01 8.037421e-01 setrgbcolor +fill +grestore +newpath +7.751926e+01 1.410657e+01 moveto +7.68456e+01 1.323664e+01 lineto +7.553411e+01 1.33933e+01 lineto +7.613319e+01 1.427214e+01 lineto +7.751926e+01 1.410657e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.818107e+01 1.50067e+01 moveto +7.751926e+01 1.410657e+01 lineto +7.613319e+01 1.427214e+01 lineto +7.672172e+01 1.518102e+01 lineto +7.818107e+01 1.50067e+01 lineto +closepath +gsave +6.442546e-01 6.442546e-01 8.053183e-01 setrgbcolor +fill +grestore +newpath +7.818107e+01 1.50067e+01 moveto +7.751926e+01 1.410657e+01 lineto +7.613319e+01 1.427214e+01 lineto +7.672172e+01 1.518102e+01 lineto +7.818107e+01 1.50067e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.88304e+01 1.593617e+01 moveto +7.818107e+01 1.50067e+01 lineto +7.672172e+01 1.518102e+01 lineto +7.729916e+01 1.611908e+01 lineto +7.88304e+01 1.593617e+01 lineto +closepath +gsave +6.454129e-01 6.454129e-01 8.067662e-01 setrgbcolor +fill +grestore +newpath +7.88304e+01 1.593617e+01 moveto +7.818107e+01 1.50067e+01 lineto +7.672172e+01 1.518102e+01 lineto +7.729916e+01 1.611908e+01 lineto +7.88304e+01 1.593617e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.946663e+01 1.689411e+01 moveto +7.88304e+01 1.593617e+01 lineto +7.729916e+01 1.611908e+01 lineto +7.786495e+01 1.708543e+01 lineto +7.946663e+01 1.689411e+01 lineto +closepath +gsave +6.464674e-01 6.464674e-01 8.080842e-01 setrgbcolor +fill +grestore +newpath +7.946663e+01 1.689411e+01 moveto +7.88304e+01 1.593617e+01 lineto +7.729916e+01 1.611908e+01 lineto +7.786495e+01 1.708543e+01 lineto +7.946663e+01 1.689411e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.008917e+01 1.78796e+01 moveto +7.946663e+01 1.689411e+01 lineto +7.786495e+01 1.708543e+01 lineto +7.841856e+01 1.807916e+01 lineto +8.008917e+01 1.78796e+01 lineto +closepath +gsave +6.474169e-01 6.474169e-01 8.092711e-01 setrgbcolor +fill +grestore +newpath +8.008917e+01 1.78796e+01 moveto +7.946663e+01 1.689411e+01 lineto +7.786495e+01 1.708543e+01 lineto +7.841856e+01 1.807916e+01 lineto +8.008917e+01 1.78796e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.069741e+01 1.889172e+01 moveto +8.008917e+01 1.78796e+01 lineto +7.841856e+01 1.807916e+01 lineto +7.895947e+01 1.909932e+01 lineto +8.069741e+01 1.889172e+01 lineto +closepath +gsave +6.482604e-01 6.482604e-01 8.103255e-01 setrgbcolor +fill +grestore +newpath +8.069741e+01 1.889172e+01 moveto +8.008917e+01 1.78796e+01 lineto +7.841856e+01 1.807916e+01 lineto +7.895947e+01 1.909932e+01 lineto +8.069741e+01 1.889172e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.12908e+01 1.99295e+01 moveto +8.069741e+01 1.889172e+01 lineto +7.895947e+01 1.909932e+01 lineto +7.948716e+01 2.014495e+01 lineto +8.12908e+01 1.99295e+01 lineto +closepath +gsave +6.489971e-01 6.489971e-01 8.112464e-01 setrgbcolor +fill +grestore +newpath +8.12908e+01 1.99295e+01 moveto +8.069741e+01 1.889172e+01 lineto +7.895947e+01 1.909932e+01 lineto +7.948716e+01 2.014495e+01 lineto +8.12908e+01 1.99295e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.186876e+01 2.099197e+01 moveto +8.12908e+01 1.99295e+01 lineto +7.948716e+01 2.014495e+01 lineto +8.000113e+01 2.121506e+01 lineto +8.186876e+01 2.099197e+01 lineto +closepath +gsave +6.496263e-01 6.496263e-01 8.120329e-01 setrgbcolor +fill +grestore +newpath +8.186876e+01 2.099197e+01 moveto +8.12908e+01 1.99295e+01 lineto +7.948716e+01 2.014495e+01 lineto +8.000113e+01 2.121506e+01 lineto +8.186876e+01 2.099197e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.243076e+01 2.207812e+01 moveto +8.186876e+01 2.099197e+01 lineto +8.000113e+01 2.121506e+01 lineto +8.05009e+01 2.230864e+01 lineto +8.243076e+01 2.207812e+01 lineto +closepath +gsave +6.501472e-01 6.501472e-01 8.12684e-01 setrgbcolor +fill +grestore +newpath +8.243076e+01 2.207812e+01 moveto +8.186876e+01 2.099197e+01 lineto +8.000113e+01 2.121506e+01 lineto +8.05009e+01 2.230864e+01 lineto +8.243076e+01 2.207812e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.297624e+01 2.318691e+01 moveto +8.243076e+01 2.207812e+01 lineto +8.05009e+01 2.230864e+01 lineto +8.0986e+01 2.342465e+01 lineto +8.297624e+01 2.318691e+01 lineto +closepath +gsave +6.505595e-01 6.505595e-01 8.131993e-01 setrgbcolor +fill +grestore +newpath +8.297624e+01 2.318691e+01 moveto +8.243076e+01 2.207812e+01 lineto +8.05009e+01 2.230864e+01 lineto +8.0986e+01 2.342465e+01 lineto +8.297624e+01 2.318691e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.350471e+01 2.431731e+01 moveto +8.297624e+01 2.318691e+01 lineto +8.0986e+01 2.342465e+01 lineto +8.145596e+01 2.456204e+01 lineto +8.350471e+01 2.431731e+01 lineto +closepath +gsave +6.508626e-01 6.508626e-01 8.135782e-01 setrgbcolor +fill +grestore +newpath +8.350471e+01 2.431731e+01 moveto +8.297624e+01 2.318691e+01 lineto +8.0986e+01 2.342465e+01 lineto +8.145596e+01 2.456204e+01 lineto +8.350471e+01 2.431731e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.401566e+01 2.546823e+01 moveto +8.350471e+01 2.431731e+01 lineto +8.145596e+01 2.456204e+01 lineto +8.191033e+01 2.571972e+01 lineto +8.401566e+01 2.546823e+01 lineto +closepath +gsave +6.510562e-01 6.510562e-01 8.138203e-01 setrgbcolor +fill +grestore +newpath +8.401566e+01 2.546823e+01 moveto +8.350471e+01 2.431731e+01 lineto +8.145596e+01 2.456204e+01 lineto +8.191033e+01 2.571972e+01 lineto +8.401566e+01 2.546823e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.45086e+01 2.66386e+01 moveto +8.401566e+01 2.546823e+01 lineto +8.191033e+01 2.571972e+01 lineto +8.23487e+01 2.68966e+01 lineto +8.45086e+01 2.66386e+01 lineto +closepath +gsave +6.511403e-01 6.511403e-01 8.139254e-01 setrgbcolor +fill +grestore +newpath +8.45086e+01 2.66386e+01 moveto +8.401566e+01 2.546823e+01 lineto +8.191033e+01 2.571972e+01 lineto +8.23487e+01 2.68966e+01 lineto +8.45086e+01 2.66386e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.498307e+01 2.782729e+01 moveto +8.45086e+01 2.66386e+01 lineto +8.23487e+01 2.68966e+01 lineto +8.277064e+01 2.809158e+01 lineto +8.498307e+01 2.782729e+01 lineto +closepath +gsave +6.511147e-01 6.511147e-01 8.138933e-01 setrgbcolor +fill +grestore +newpath +8.498307e+01 2.782729e+01 moveto +8.45086e+01 2.66386e+01 lineto +8.23487e+01 2.68966e+01 lineto +8.277064e+01 2.809158e+01 lineto +8.498307e+01 2.782729e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.543863e+01 2.90332e+01 moveto +8.498307e+01 2.782729e+01 lineto +8.277064e+01 2.809158e+01 lineto +8.317576e+01 2.93035e+01 lineto +8.543863e+01 2.90332e+01 lineto +closepath +gsave +6.509794e-01 6.509794e-01 8.137243e-01 setrgbcolor +fill +grestore +newpath +8.543863e+01 2.90332e+01 moveto +8.498307e+01 2.782729e+01 lineto +8.277064e+01 2.809158e+01 lineto +8.317576e+01 2.93035e+01 lineto +8.543863e+01 2.90332e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.587483e+01 3.025516e+01 moveto +8.543863e+01 2.90332e+01 lineto +8.317576e+01 2.93035e+01 lineto +8.356366e+01 3.053124e+01 lineto +8.587483e+01 3.025516e+01 lineto +closepath +gsave +6.507347e-01 6.507347e-01 8.134183e-01 setrgbcolor +fill +grestore +newpath +8.587483e+01 3.025516e+01 moveto +8.543863e+01 2.90332e+01 lineto +8.317576e+01 2.93035e+01 lineto +8.356366e+01 3.053124e+01 lineto +8.587483e+01 3.025516e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.629126e+01 3.149204e+01 moveto +8.587483e+01 3.025516e+01 lineto +8.356366e+01 3.053124e+01 lineto +8.393399e+01 3.177362e+01 lineto +8.629126e+01 3.149204e+01 lineto +closepath +gsave +6.503807e-01 6.503807e-01 8.129759e-01 setrgbcolor +fill +grestore +newpath +8.629126e+01 3.149204e+01 moveto +8.587483e+01 3.025516e+01 lineto +8.356366e+01 3.053124e+01 lineto +8.393399e+01 3.177362e+01 lineto +8.629126e+01 3.149204e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.668754e+01 3.274265e+01 moveto +8.629126e+01 3.149204e+01 lineto +8.393399e+01 3.177362e+01 lineto +8.42864e+01 3.302947e+01 lineto +8.668754e+01 3.274265e+01 lineto +closepath +gsave +6.499179e-01 6.499179e-01 8.123973e-01 setrgbcolor +fill +grestore +newpath +8.668754e+01 3.274265e+01 moveto +8.629126e+01 3.149204e+01 lineto +8.393399e+01 3.177362e+01 lineto +8.42864e+01 3.302947e+01 lineto +8.668754e+01 3.274265e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.706328e+01 3.400581e+01 moveto +8.668754e+01 3.274265e+01 lineto +8.42864e+01 3.302947e+01 lineto +8.462054e+01 3.42976e+01 lineto +8.706328e+01 3.400581e+01 lineto +closepath +gsave +6.493467e-01 6.493467e-01 8.116834e-01 setrgbcolor +fill +grestore +newpath +8.706328e+01 3.400581e+01 moveto +8.668754e+01 3.274265e+01 lineto +8.42864e+01 3.302947e+01 lineto +8.462054e+01 3.42976e+01 lineto +8.706328e+01 3.400581e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.741814e+01 3.528033e+01 moveto +8.706328e+01 3.400581e+01 lineto +8.462054e+01 3.42976e+01 lineto +8.49361e+01 3.557681e+01 lineto +8.741814e+01 3.528033e+01 lineto +closepath +gsave +6.486678e-01 6.486678e-01 8.108347e-01 setrgbcolor +fill +grestore +newpath +8.741814e+01 3.528033e+01 moveto +8.706328e+01 3.400581e+01 lineto +8.462054e+01 3.42976e+01 lineto +8.49361e+01 3.557681e+01 lineto +8.741814e+01 3.528033e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.775176e+01 3.6565e+01 moveto +8.741814e+01 3.528033e+01 lineto +8.49361e+01 3.557681e+01 lineto +8.52328e+01 3.686589e+01 lineto +8.775176e+01 3.6565e+01 lineto +closepath +gsave +6.478818e-01 6.478818e-01 8.098523e-01 setrgbcolor +fill +grestore +newpath +8.775176e+01 3.6565e+01 moveto +8.741814e+01 3.528033e+01 lineto +8.49361e+01 3.557681e+01 lineto +8.52328e+01 3.686589e+01 lineto +8.775176e+01 3.6565e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.806385e+01 3.78586e+01 moveto +8.775176e+01 3.6565e+01 lineto +8.52328e+01 3.686589e+01 lineto +8.551033e+01 3.816362e+01 lineto +8.806385e+01 3.78586e+01 lineto +closepath +gsave +6.469897e-01 6.469897e-01 8.087371e-01 setrgbcolor +fill +grestore +newpath +8.806385e+01 3.78586e+01 moveto +8.775176e+01 3.6565e+01 lineto +8.52328e+01 3.686589e+01 lineto +8.551033e+01 3.816362e+01 lineto +8.806385e+01 3.78586e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.83541e+01 3.915991e+01 moveto +8.806385e+01 3.78586e+01 lineto +8.551033e+01 3.816362e+01 lineto +8.576844e+01 3.946877e+01 lineto +8.83541e+01 3.915991e+01 lineto +closepath +gsave +6.459922e-01 6.459922e-01 8.074903e-01 setrgbcolor +fill +grestore +newpath +8.83541e+01 3.915991e+01 moveto +8.806385e+01 3.78586e+01 lineto +8.551033e+01 3.816362e+01 lineto +8.576844e+01 3.946877e+01 lineto +8.83541e+01 3.915991e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.862224e+01 4.046769e+01 moveto +8.83541e+01 3.915991e+01 lineto +8.576844e+01 3.946877e+01 lineto +8.600689e+01 4.07801e+01 lineto +8.862224e+01 4.046769e+01 lineto +closepath +gsave +6.448906e-01 6.448906e-01 8.061132e-01 setrgbcolor +fill +grestore +newpath +8.862224e+01 4.046769e+01 moveto +8.83541e+01 3.915991e+01 lineto +8.576844e+01 3.946877e+01 lineto +8.600689e+01 4.07801e+01 lineto +8.862224e+01 4.046769e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.568774e+01 4.307464e+00 moveto +6.500223e+01 4.000931e+00 lineto +6.500194e+01 4.000959e+00 lineto +6.559788e+01 4.31592e+00 lineto +6.568774e+01 4.307464e+00 lineto +closepath +gsave +6.105969e-01 6.105969e-01 7.632462e-01 setrgbcolor +fill +grestore +newpath +6.568774e+01 4.307464e+00 moveto +6.500223e+01 4.000931e+00 lineto +6.500194e+01 4.000959e+00 lineto +6.559788e+01 4.31592e+00 lineto +6.568774e+01 4.307464e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.637261e+01 4.653471e+00 moveto +6.568774e+01 4.307464e+00 lineto +6.559788e+01 4.31592e+00 lineto +6.619326e+01 4.670347e+00 lineto +6.637261e+01 4.653471e+00 lineto +closepath +gsave +6.138072e-01 6.138072e-01 7.67259e-01 setrgbcolor +fill +grestore +newpath +6.637261e+01 4.653471e+00 moveto +6.568774e+01 4.307464e+00 lineto +6.559788e+01 4.31592e+00 lineto +6.619326e+01 4.670347e+00 lineto +6.637261e+01 4.653471e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.705617e+01 5.038626e+00 moveto +6.637261e+01 4.653471e+00 lineto +6.619326e+01 4.670347e+00 lineto +6.67875e+01 5.063906e+00 lineto +6.705617e+01 5.038626e+00 lineto +closepath +gsave +6.169518e-01 6.169518e-01 7.711897e-01 setrgbcolor +fill +grestore +newpath +6.705617e+01 5.038626e+00 moveto +6.637261e+01 4.653471e+00 lineto +6.619326e+01 4.670347e+00 lineto +6.67875e+01 5.063906e+00 lineto +6.705617e+01 5.038626e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.773779e+01 5.462563e+00 moveto +6.705617e+01 5.038626e+00 lineto +6.67875e+01 5.063906e+00 lineto +6.738006e+01 5.496224e+00 lineto +6.773779e+01 5.462563e+00 lineto +closepath +gsave +6.200268e-01 6.200268e-01 7.750335e-01 setrgbcolor +fill +grestore +newpath +6.773779e+01 5.462563e+00 moveto +6.705617e+01 5.038626e+00 lineto +6.67875e+01 5.063906e+00 lineto +6.738006e+01 5.496224e+00 lineto +6.773779e+01 5.462563e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.841682e+01 5.924881e+00 moveto +6.773779e+01 5.462563e+00 lineto +6.738006e+01 5.496224e+00 lineto +6.797036e+01 5.96689e+00 lineto +6.841682e+01 5.924881e+00 lineto +closepath +gsave +6.230285e-01 6.230285e-01 7.787856e-01 setrgbcolor +fill +grestore +newpath +6.841682e+01 5.924881e+00 moveto +6.773779e+01 5.462563e+00 lineto +6.738006e+01 5.496224e+00 lineto +6.797036e+01 5.96689e+00 lineto +6.841682e+01 5.924881e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.909261e+01 6.425143e+00 moveto +6.841682e+01 5.924881e+00 lineto +6.797036e+01 5.96689e+00 lineto +6.855785e+01 6.475461e+00 lineto +6.909261e+01 6.425143e+00 lineto +closepath +gsave +6.259532e-01 6.259532e-01 7.824415e-01 setrgbcolor +fill +grestore +newpath +6.909261e+01 6.425143e+00 moveto +6.841682e+01 5.924881e+00 lineto +6.797036e+01 5.96689e+00 lineto +6.855785e+01 6.475461e+00 lineto +6.909261e+01 6.425143e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.976452e+01 6.962875e+00 moveto +6.909261e+01 6.425143e+00 lineto +6.855785e+01 6.475461e+00 lineto +6.914197e+01 7.021454e+00 lineto +6.976452e+01 6.962875e+00 lineto +closepath +gsave +6.287974e-01 6.287974e-01 7.859967e-01 setrgbcolor +fill +grestore +newpath +6.976452e+01 6.962875e+00 moveto +6.909261e+01 6.425143e+00 lineto +6.855785e+01 6.475461e+00 lineto +6.914197e+01 7.021454e+00 lineto +6.976452e+01 6.962875e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.043193e+01 7.537567e+00 moveto +6.976452e+01 6.962875e+00 lineto +6.914197e+01 7.021454e+00 lineto +6.972217e+01 7.604352e+00 lineto +7.043193e+01 7.537567e+00 lineto +closepath +gsave +6.315577e-01 6.315577e-01 7.894471e-01 setrgbcolor +fill +grestore +newpath +7.043193e+01 7.537567e+00 moveto +6.976452e+01 6.962875e+00 lineto +6.914197e+01 7.021454e+00 lineto +6.972217e+01 7.604352e+00 lineto +7.043193e+01 7.537567e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.109419e+01 8.148676e+00 moveto +7.043193e+01 7.537567e+00 lineto +6.972217e+01 7.604352e+00 lineto +7.02979e+01 8.223604e+00 lineto +7.109419e+01 8.148676e+00 lineto +closepath +gsave +6.342309e-01 6.342309e-01 7.927886e-01 setrgbcolor +fill +grestore +newpath +7.109419e+01 8.148676e+00 moveto +7.043193e+01 7.537567e+00 lineto +6.972217e+01 7.604352e+00 lineto +7.02979e+01 8.223604e+00 lineto +7.109419e+01 8.148676e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.175068e+01 8.795623e+00 moveto +7.109419e+01 8.148676e+00 lineto +7.02979e+01 8.223604e+00 lineto +7.086861e+01 8.878622e+00 lineto +7.175068e+01 8.795623e+00 lineto +closepath +gsave +6.368138e-01 6.368138e-01 7.960173e-01 setrgbcolor +fill +grestore +newpath +7.175068e+01 8.795623e+00 moveto +7.109419e+01 8.148676e+00 lineto +7.02979e+01 8.223604e+00 lineto +7.086861e+01 8.878622e+00 lineto +7.175068e+01 8.795623e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.240078e+01 9.477796e+00 moveto +7.175068e+01 8.795623e+00 lineto +7.086861e+01 8.878622e+00 lineto +7.143376e+01 9.568788e+00 lineto +7.240078e+01 9.477796e+00 lineto +closepath +gsave +6.393036e-01 6.393036e-01 7.991295e-01 setrgbcolor +fill +grestore +newpath +7.240078e+01 9.477796e+00 moveto +7.175068e+01 8.795623e+00 lineto +7.086861e+01 8.878622e+00 lineto +7.143376e+01 9.568788e+00 lineto +7.240078e+01 9.477796e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.304387e+01 1.019455e+01 moveto +7.240078e+01 9.477796e+00 lineto +7.143376e+01 9.568788e+00 lineto +7.199283e+01 1.029345e+01 lineto +7.304387e+01 1.019455e+01 lineto +closepath +gsave +6.416973e-01 6.416973e-01 8.021216e-01 setrgbcolor +fill +grestore +newpath +7.304387e+01 1.019455e+01 moveto +7.240078e+01 9.477796e+00 lineto +7.143376e+01 9.568788e+00 lineto +7.199283e+01 1.029345e+01 lineto +7.304387e+01 1.019455e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.367935e+01 1.09452e+01 moveto +7.304387e+01 1.019455e+01 lineto +7.199283e+01 1.029345e+01 lineto +7.254527e+01 1.105191e+01 lineto +7.367935e+01 1.09452e+01 lineto +closepath +gsave +6.439922e-01 6.439922e-01 8.049903e-01 setrgbcolor +fill +grestore +newpath +7.367935e+01 1.09452e+01 moveto +7.304387e+01 1.019455e+01 lineto +7.199283e+01 1.029345e+01 lineto +7.254527e+01 1.105191e+01 lineto +7.367935e+01 1.09452e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.430661e+01 1.172904e+01 moveto +7.367935e+01 1.09452e+01 lineto +7.254527e+01 1.105191e+01 lineto +7.309057e+01 1.184347e+01 lineto +7.430661e+01 1.172904e+01 lineto +closepath +gsave +6.461858e-01 6.461858e-01 8.077323e-01 setrgbcolor +fill +grestore +newpath +7.430661e+01 1.172904e+01 moveto +7.367935e+01 1.09452e+01 lineto +7.254527e+01 1.105191e+01 lineto +7.309057e+01 1.184347e+01 lineto +7.430661e+01 1.172904e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.492506e+01 1.254534e+01 moveto +7.430661e+01 1.172904e+01 lineto +7.309057e+01 1.184347e+01 lineto +7.36282e+01 1.266736e+01 lineto +7.492506e+01 1.254534e+01 lineto +closepath +gsave +6.482758e-01 6.482758e-01 8.103447e-01 setrgbcolor +fill +grestore +newpath +7.492506e+01 1.254534e+01 moveto +7.430661e+01 1.172904e+01 lineto +7.309057e+01 1.184347e+01 lineto +7.36282e+01 1.266736e+01 lineto +7.492506e+01 1.254534e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.553411e+01 1.33933e+01 moveto +7.492506e+01 1.254534e+01 lineto +7.36282e+01 1.266736e+01 lineto +7.415767e+01 1.352282e+01 lineto +7.553411e+01 1.33933e+01 lineto +closepath +gsave +6.502597e-01 6.502597e-01 8.128246e-01 setrgbcolor +fill +grestore +newpath +7.553411e+01 1.33933e+01 moveto +7.492506e+01 1.254534e+01 lineto +7.36282e+01 1.266736e+01 lineto +7.415767e+01 1.352282e+01 lineto +7.553411e+01 1.33933e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.613319e+01 1.427214e+01 moveto +7.553411e+01 1.33933e+01 lineto +7.415767e+01 1.352282e+01 lineto +7.467847e+01 1.440902e+01 lineto +7.613319e+01 1.427214e+01 lineto +closepath +gsave +6.521355e-01 6.521355e-01 8.151693e-01 setrgbcolor +fill +grestore +newpath +7.613319e+01 1.427214e+01 moveto +7.553411e+01 1.33933e+01 lineto +7.415767e+01 1.352282e+01 lineto +7.467847e+01 1.440902e+01 lineto +7.613319e+01 1.427214e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.672172e+01 1.518102e+01 moveto +7.613319e+01 1.427214e+01 lineto +7.467847e+01 1.440902e+01 lineto +7.519011e+01 1.532514e+01 lineto +7.672172e+01 1.518102e+01 lineto +closepath +gsave +6.539012e-01 6.539012e-01 8.173764e-01 setrgbcolor +fill +grestore +newpath +7.672172e+01 1.518102e+01 moveto +7.613319e+01 1.427214e+01 lineto +7.467847e+01 1.440902e+01 lineto +7.519011e+01 1.532514e+01 lineto +7.672172e+01 1.518102e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.729916e+01 1.611908e+01 moveto +7.672172e+01 1.518102e+01 lineto +7.519011e+01 1.532514e+01 lineto +7.569209e+01 1.62703e+01 lineto +7.729916e+01 1.611908e+01 lineto +closepath +gsave +6.555549e-01 6.555549e-01 8.194436e-01 setrgbcolor +fill +grestore +newpath +7.729916e+01 1.611908e+01 moveto +7.672172e+01 1.518102e+01 lineto +7.519011e+01 1.532514e+01 lineto +7.569209e+01 1.62703e+01 lineto +7.729916e+01 1.611908e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.786495e+01 1.708543e+01 moveto +7.729916e+01 1.611908e+01 lineto +7.569209e+01 1.62703e+01 lineto +7.618396e+01 1.72436e+01 lineto +7.786495e+01 1.708543e+01 lineto +closepath +gsave +6.570949e-01 6.570949e-01 8.213686e-01 setrgbcolor +fill +grestore +newpath +7.786495e+01 1.708543e+01 moveto +7.729916e+01 1.611908e+01 lineto +7.569209e+01 1.62703e+01 lineto +7.618396e+01 1.72436e+01 lineto +7.786495e+01 1.708543e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.841856e+01 1.807916e+01 moveto +7.786495e+01 1.708543e+01 lineto +7.618396e+01 1.72436e+01 lineto +7.666523e+01 1.824414e+01 lineto +7.841856e+01 1.807916e+01 lineto +closepath +gsave +6.585197e-01 6.585197e-01 8.231496e-01 setrgbcolor +fill +grestore +newpath +7.841856e+01 1.807916e+01 moveto +7.786495e+01 1.708543e+01 lineto +7.618396e+01 1.72436e+01 lineto +7.666523e+01 1.824414e+01 lineto +7.841856e+01 1.807916e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.895947e+01 1.909932e+01 moveto +7.841856e+01 1.807916e+01 lineto +7.666523e+01 1.824414e+01 lineto +7.713546e+01 1.927095e+01 lineto +7.895947e+01 1.909932e+01 lineto +closepath +gsave +6.598278e-01 6.598278e-01 8.247847e-01 setrgbcolor +fill +grestore +newpath +7.895947e+01 1.909932e+01 moveto +7.841856e+01 1.807916e+01 lineto +7.666523e+01 1.824414e+01 lineto +7.713546e+01 1.927095e+01 lineto +7.895947e+01 1.909932e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.948716e+01 2.014495e+01 moveto +7.895947e+01 1.909932e+01 lineto +7.713546e+01 1.927095e+01 lineto +7.75942e+01 2.032307e+01 lineto +7.948716e+01 2.014495e+01 lineto +closepath +gsave +6.610178e-01 6.610178e-01 8.262723e-01 setrgbcolor +fill +grestore +newpath +7.948716e+01 2.014495e+01 moveto +7.895947e+01 1.909932e+01 lineto +7.713546e+01 1.927095e+01 lineto +7.75942e+01 2.032307e+01 lineto +7.948716e+01 2.014495e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.000113e+01 2.121506e+01 moveto +7.948716e+01 2.014495e+01 lineto +7.75942e+01 2.032307e+01 lineto +7.804102e+01 2.13995e+01 lineto +8.000113e+01 2.121506e+01 lineto +closepath +gsave +6.620887e-01 6.620887e-01 8.276109e-01 setrgbcolor +fill +grestore +newpath +8.000113e+01 2.121506e+01 moveto +7.948716e+01 2.014495e+01 lineto +7.75942e+01 2.032307e+01 lineto +7.804102e+01 2.13995e+01 lineto +8.000113e+01 2.121506e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.05009e+01 2.230864e+01 moveto +8.000113e+01 2.121506e+01 lineto +7.804102e+01 2.13995e+01 lineto +7.847548e+01 2.249922e+01 lineto +8.05009e+01 2.230864e+01 lineto +closepath +gsave +6.630393e-01 6.630393e-01 8.287991e-01 setrgbcolor +fill +grestore +newpath +8.05009e+01 2.230864e+01 moveto +8.000113e+01 2.121506e+01 lineto +7.804102e+01 2.13995e+01 lineto +7.847548e+01 2.249922e+01 lineto +8.05009e+01 2.230864e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.0986e+01 2.342465e+01 moveto +8.05009e+01 2.230864e+01 lineto +7.847548e+01 2.249922e+01 lineto +7.889719e+01 2.36212e+01 lineto +8.0986e+01 2.342465e+01 lineto +closepath +gsave +6.638687e-01 6.638687e-01 8.298359e-01 setrgbcolor +fill +grestore +newpath +8.0986e+01 2.342465e+01 moveto +8.05009e+01 2.230864e+01 lineto +7.847548e+01 2.249922e+01 lineto +7.889719e+01 2.36212e+01 lineto +8.0986e+01 2.342465e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.145596e+01 2.456204e+01 moveto +8.0986e+01 2.342465e+01 lineto +7.889719e+01 2.36212e+01 lineto +7.930575e+01 2.476436e+01 lineto +8.145596e+01 2.456204e+01 lineto +closepath +gsave +6.645762e-01 6.645762e-01 8.307202e-01 setrgbcolor +fill +grestore +newpath +8.145596e+01 2.456204e+01 moveto +8.0986e+01 2.342465e+01 lineto +7.889719e+01 2.36212e+01 lineto +7.930575e+01 2.476436e+01 lineto +8.145596e+01 2.456204e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.191033e+01 2.571972e+01 moveto +8.145596e+01 2.456204e+01 lineto +7.930575e+01 2.476436e+01 lineto +7.970075e+01 2.592763e+01 lineto +8.191033e+01 2.571972e+01 lineto +closepath +gsave +6.65161e-01 6.65161e-01 8.314512e-01 setrgbcolor +fill +grestore +newpath +8.191033e+01 2.571972e+01 moveto +8.145596e+01 2.456204e+01 lineto +7.930575e+01 2.476436e+01 lineto +7.970075e+01 2.592763e+01 lineto +8.191033e+01 2.571972e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.23487e+01 2.68966e+01 moveto +8.191033e+01 2.571972e+01 lineto +7.970075e+01 2.592763e+01 lineto +8.008184e+01 2.71099e+01 lineto +8.23487e+01 2.68966e+01 lineto +closepath +gsave +6.656225e-01 6.656225e-01 8.320282e-01 setrgbcolor +fill +grestore +newpath +8.23487e+01 2.68966e+01 moveto +8.191033e+01 2.571972e+01 lineto +7.970075e+01 2.592763e+01 lineto +8.008184e+01 2.71099e+01 lineto +8.23487e+01 2.68966e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.277064e+01 2.809158e+01 moveto +8.23487e+01 2.68966e+01 lineto +8.008184e+01 2.71099e+01 lineto +8.044865e+01 2.831006e+01 lineto +8.277064e+01 2.809158e+01 lineto +closepath +gsave +6.659605e-01 6.659605e-01 8.324506e-01 setrgbcolor +fill +grestore +newpath +8.277064e+01 2.809158e+01 moveto +8.23487e+01 2.68966e+01 lineto +8.008184e+01 2.71099e+01 lineto +8.044865e+01 2.831006e+01 lineto +8.277064e+01 2.809158e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.317576e+01 2.93035e+01 moveto +8.277064e+01 2.809158e+01 lineto +8.044865e+01 2.831006e+01 lineto +8.080083e+01 2.952697e+01 lineto +8.317576e+01 2.93035e+01 lineto +closepath +gsave +6.661745e-01 6.661745e-01 8.327181e-01 setrgbcolor +fill +grestore +newpath +8.317576e+01 2.93035e+01 moveto +8.277064e+01 2.809158e+01 lineto +8.044865e+01 2.831006e+01 lineto +8.080083e+01 2.952697e+01 lineto +8.317576e+01 2.93035e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.356366e+01 3.053124e+01 moveto +8.317576e+01 2.93035e+01 lineto +8.080083e+01 2.952697e+01 lineto +8.113805e+01 3.075948e+01 lineto +8.356366e+01 3.053124e+01 lineto +closepath +gsave +6.662644e-01 6.662644e-01 8.328305e-01 setrgbcolor +fill +grestore +newpath +8.356366e+01 3.053124e+01 moveto +8.317576e+01 2.93035e+01 lineto +8.080083e+01 2.952697e+01 lineto +8.113805e+01 3.075948e+01 lineto +8.356366e+01 3.053124e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.393399e+01 3.177362e+01 moveto +8.356366e+01 3.053124e+01 lineto +8.113805e+01 3.075948e+01 lineto +8.145999e+01 3.200641e+01 lineto +8.393399e+01 3.177362e+01 lineto +closepath +gsave +6.662301e-01 6.662301e-01 8.327876e-01 setrgbcolor +fill +grestore +newpath +8.393399e+01 3.177362e+01 moveto +8.356366e+01 3.053124e+01 lineto +8.113805e+01 3.075948e+01 lineto +8.145999e+01 3.200641e+01 lineto +8.393399e+01 3.177362e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.42864e+01 3.302947e+01 moveto +8.393399e+01 3.177362e+01 lineto +8.145999e+01 3.200641e+01 lineto +8.176635e+01 3.326659e+01 lineto +8.42864e+01 3.302947e+01 lineto +closepath +gsave +6.660716e-01 6.660716e-01 8.325895e-01 setrgbcolor +fill +grestore +newpath +8.42864e+01 3.302947e+01 moveto +8.393399e+01 3.177362e+01 lineto +8.145999e+01 3.200641e+01 lineto +8.176635e+01 3.326659e+01 lineto +8.42864e+01 3.302947e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.462054e+01 3.42976e+01 moveto +8.42864e+01 3.302947e+01 lineto +8.176635e+01 3.326659e+01 lineto +8.205683e+01 3.453883e+01 lineto +8.462054e+01 3.42976e+01 lineto +closepath +gsave +6.657891e-01 6.657891e-01 8.322364e-01 setrgbcolor +fill +grestore +newpath +8.462054e+01 3.42976e+01 moveto +8.42864e+01 3.302947e+01 lineto +8.176635e+01 3.326659e+01 lineto +8.205683e+01 3.453883e+01 lineto +8.462054e+01 3.42976e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.49361e+01 3.557681e+01 moveto +8.462054e+01 3.42976e+01 lineto +8.205683e+01 3.453883e+01 lineto +8.233116e+01 3.582193e+01 lineto +8.49361e+01 3.557681e+01 lineto +closepath +gsave +6.65383e-01 6.65383e-01 8.317287e-01 setrgbcolor +fill +grestore +newpath +8.49361e+01 3.557681e+01 moveto +8.462054e+01 3.42976e+01 lineto +8.205683e+01 3.453883e+01 lineto +8.233116e+01 3.582193e+01 lineto +8.49361e+01 3.557681e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.52328e+01 3.686589e+01 moveto +8.49361e+01 3.557681e+01 lineto +8.233116e+01 3.582193e+01 lineto +8.258908e+01 3.711465e+01 lineto +8.52328e+01 3.686589e+01 lineto +closepath +gsave +6.648535e-01 6.648535e-01 8.310669e-01 setrgbcolor +fill +grestore +newpath +8.52328e+01 3.686589e+01 moveto +8.49361e+01 3.557681e+01 lineto +8.233116e+01 3.582193e+01 lineto +8.258908e+01 3.711465e+01 lineto +8.52328e+01 3.686589e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.551033e+01 3.816362e+01 moveto +8.52328e+01 3.686589e+01 lineto +8.258908e+01 3.711465e+01 lineto +8.283035e+01 3.841579e+01 lineto +8.551033e+01 3.816362e+01 lineto +closepath +gsave +6.642013e-01 6.642013e-01 8.302516e-01 setrgbcolor +fill +grestore +newpath +8.551033e+01 3.816362e+01 moveto +8.52328e+01 3.686589e+01 lineto +8.258908e+01 3.711465e+01 lineto +8.283035e+01 3.841579e+01 lineto +8.551033e+01 3.816362e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.576844e+01 3.946877e+01 moveto +8.551033e+01 3.816362e+01 lineto +8.283035e+01 3.841579e+01 lineto +8.305474e+01 3.972412e+01 lineto +8.576844e+01 3.946877e+01 lineto +closepath +gsave +6.634269e-01 6.634269e-01 8.292837e-01 setrgbcolor +fill +grestore +newpath +8.576844e+01 3.946877e+01 moveto +8.551033e+01 3.816362e+01 lineto +8.283035e+01 3.841579e+01 lineto +8.305474e+01 3.972412e+01 lineto +8.576844e+01 3.946877e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.600689e+01 4.07801e+01 moveto +8.576844e+01 3.946877e+01 lineto +8.305474e+01 3.972412e+01 lineto +8.326204e+01 4.103838e+01 lineto +8.600689e+01 4.07801e+01 lineto +closepath +gsave +6.625313e-01 6.625313e-01 8.281641e-01 setrgbcolor +fill +grestore +newpath +8.600689e+01 4.07801e+01 moveto +8.576844e+01 3.946877e+01 lineto +8.305474e+01 3.972412e+01 lineto +8.326204e+01 4.103838e+01 lineto +8.600689e+01 4.07801e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.559788e+01 4.31592e+00 moveto +6.500194e+01 4.000959e+00 lineto +6.500163e+01 4.00098e+00 lineto +6.550433e+01 4.322551e+00 lineto +6.559788e+01 4.31592e+00 lineto +closepath +gsave +6.108725e-01 6.108725e-01 7.635906e-01 setrgbcolor +fill +grestore +newpath +6.559788e+01 4.31592e+00 moveto +6.500194e+01 4.000959e+00 lineto +6.500163e+01 4.00098e+00 lineto +6.550433e+01 4.322551e+00 lineto +6.559788e+01 4.31592e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.619326e+01 4.670347e+00 moveto +6.559788e+01 4.31592e+00 lineto +6.550433e+01 4.322551e+00 lineto +6.600655e+01 4.683582e+00 lineto +6.619326e+01 4.670347e+00 lineto +closepath +gsave +6.146322e-01 6.146322e-01 7.682902e-01 setrgbcolor +fill +grestore +newpath +6.619326e+01 4.670347e+00 moveto +6.559788e+01 4.31592e+00 lineto +6.550433e+01 4.322551e+00 lineto +6.600655e+01 4.683582e+00 lineto +6.619326e+01 4.670347e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.67875e+01 5.063906e+00 moveto +6.619326e+01 4.670347e+00 lineto +6.600655e+01 4.683582e+00 lineto +6.650781e+01 5.083732e+00 lineto +6.67875e+01 5.063906e+00 lineto +closepath +gsave +6.183279e-01 6.183279e-01 7.729099e-01 setrgbcolor +fill +grestore +newpath +6.67875e+01 5.063906e+00 moveto +6.619326e+01 4.670347e+00 lineto +6.600655e+01 4.683582e+00 lineto +6.650781e+01 5.083732e+00 lineto +6.67875e+01 5.063906e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.738006e+01 5.496224e+00 moveto +6.67875e+01 5.063906e+00 lineto +6.650781e+01 5.083732e+00 lineto +6.700765e+01 5.522622e+00 lineto +6.738006e+01 5.496224e+00 lineto +closepath +gsave +6.21955e-01 6.21955e-01 7.774437e-01 setrgbcolor +fill +grestore +newpath +6.738006e+01 5.496224e+00 moveto +6.67875e+01 5.063906e+00 lineto +6.650781e+01 5.083732e+00 lineto +6.700765e+01 5.522622e+00 lineto +6.738006e+01 5.496224e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.797036e+01 5.96689e+00 moveto +6.738006e+01 5.496224e+00 lineto +6.700765e+01 5.522622e+00 lineto +6.750559e+01 5.999836e+00 lineto +6.797036e+01 5.96689e+00 lineto +closepath +gsave +6.255087e-01 6.255087e-01 7.818859e-01 setrgbcolor +fill +grestore +newpath +6.797036e+01 5.96689e+00 moveto +6.738006e+01 5.496224e+00 lineto +6.700765e+01 5.522622e+00 lineto +6.750559e+01 5.999836e+00 lineto +6.797036e+01 5.96689e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.855785e+01 6.475461e+00 moveto +6.797036e+01 5.96689e+00 lineto +6.750559e+01 5.999836e+00 lineto +6.800115e+01 6.514923e+00 lineto +6.855785e+01 6.475461e+00 lineto +closepath +gsave +6.289848e-01 6.289848e-01 7.86231e-01 setrgbcolor +fill +grestore +newpath +6.855785e+01 6.475461e+00 moveto +6.797036e+01 5.96689e+00 lineto +6.750559e+01 5.999836e+00 lineto +6.800115e+01 6.514923e+00 lineto +6.855785e+01 6.475461e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.914197e+01 7.021454e+00 moveto +6.855785e+01 6.475461e+00 lineto +6.800115e+01 6.514923e+00 lineto +6.849388e+01 7.067394e+00 lineto +6.914197e+01 7.021454e+00 lineto +closepath +gsave +6.323787e-01 6.323787e-01 7.904734e-01 setrgbcolor +fill +grestore +newpath +6.914197e+01 7.021454e+00 moveto +6.855785e+01 6.475461e+00 lineto +6.800115e+01 6.514923e+00 lineto +6.849388e+01 7.067394e+00 lineto +6.914197e+01 7.021454e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.972217e+01 7.604352e+00 moveto +6.914197e+01 7.021454e+00 lineto +6.849388e+01 7.067394e+00 lineto +6.898329e+01 7.656728e+00 lineto +6.972217e+01 7.604352e+00 lineto +closepath +gsave +6.356865e-01 6.356865e-01 7.946081e-01 setrgbcolor +fill +grestore +newpath +6.972217e+01 7.604352e+00 moveto +6.914197e+01 7.021454e+00 lineto +6.849388e+01 7.067394e+00 lineto +6.898329e+01 7.656728e+00 lineto +6.972217e+01 7.604352e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.02979e+01 8.223604e+00 moveto +6.972217e+01 7.604352e+00 lineto +6.898329e+01 7.656728e+00 lineto +6.946894e+01 8.282365e+00 lineto +7.02979e+01 8.223604e+00 lineto +closepath +gsave +6.38904e-01 6.38904e-01 7.986299e-01 setrgbcolor +fill +grestore +newpath +7.02979e+01 8.223604e+00 moveto +6.972217e+01 7.604352e+00 lineto +6.898329e+01 7.656728e+00 lineto +6.946894e+01 8.282365e+00 lineto +7.02979e+01 8.223604e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.086861e+01 8.878622e+00 moveto +7.02979e+01 8.223604e+00 lineto +6.946894e+01 8.282365e+00 lineto +6.995035e+01 8.943713e+00 lineto +7.086861e+01 8.878622e+00 lineto +closepath +gsave +6.420274e-01 6.420274e-01 8.025342e-01 setrgbcolor +fill +grestore +newpath +7.086861e+01 8.878622e+00 moveto +7.02979e+01 8.223604e+00 lineto +6.946894e+01 8.282365e+00 lineto +6.995035e+01 8.943713e+00 lineto +7.086861e+01 8.878622e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.143376e+01 9.568788e+00 moveto +7.086861e+01 8.878622e+00 lineto +6.995035e+01 8.943713e+00 lineto +7.042707e+01 9.640147e+00 lineto +7.143376e+01 9.568788e+00 lineto +closepath +gsave +6.450531e-01 6.450531e-01 8.063163e-01 setrgbcolor +fill +grestore +newpath +7.143376e+01 9.568788e+00 moveto +7.086861e+01 8.878622e+00 lineto +6.995035e+01 8.943713e+00 lineto +7.042707e+01 9.640147e+00 lineto +7.143376e+01 9.568788e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.199283e+01 1.029345e+01 moveto +7.143376e+01 9.568788e+00 lineto +7.042707e+01 9.640147e+00 lineto +7.089866e+01 1.037101e+01 lineto +7.199283e+01 1.029345e+01 lineto +closepath +gsave +6.479775e-01 6.479775e-01 8.099719e-01 setrgbcolor +fill +grestore +newpath +7.199283e+01 1.029345e+01 moveto +7.143376e+01 9.568788e+00 lineto +7.042707e+01 9.640147e+00 lineto +7.089866e+01 1.037101e+01 lineto +7.199283e+01 1.029345e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.254527e+01 1.105191e+01 moveto +7.199283e+01 1.029345e+01 lineto +7.089866e+01 1.037101e+01 lineto +7.136466e+01 1.11356e+01 lineto +7.254527e+01 1.105191e+01 lineto +closepath +gsave +6.507973e-01 6.507973e-01 8.134966e-01 setrgbcolor +fill +grestore +newpath +7.254527e+01 1.105191e+01 moveto +7.199283e+01 1.029345e+01 lineto +7.089866e+01 1.037101e+01 lineto +7.136466e+01 1.11356e+01 lineto +7.254527e+01 1.105191e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.309057e+01 1.184347e+01 moveto +7.254527e+01 1.105191e+01 lineto +7.136466e+01 1.11356e+01 lineto +7.182464e+01 1.19332e+01 lineto +7.309057e+01 1.184347e+01 lineto +closepath +gsave +6.535093e-01 6.535093e-01 8.168867e-01 setrgbcolor +fill +grestore +newpath +7.309057e+01 1.184347e+01 moveto +7.254527e+01 1.105191e+01 lineto +7.136466e+01 1.11356e+01 lineto +7.182464e+01 1.19332e+01 lineto +7.309057e+01 1.184347e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.36282e+01 1.266736e+01 moveto +7.309057e+01 1.184347e+01 lineto +7.182464e+01 1.19332e+01 lineto +7.227816e+01 1.276306e+01 lineto +7.36282e+01 1.266736e+01 lineto +closepath +gsave +6.561106e-01 6.561106e-01 8.201382e-01 setrgbcolor +fill +grestore +newpath +7.36282e+01 1.266736e+01 moveto +7.309057e+01 1.184347e+01 lineto +7.182464e+01 1.19332e+01 lineto +7.227816e+01 1.276306e+01 lineto +7.36282e+01 1.266736e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.415767e+01 1.352282e+01 moveto +7.36282e+01 1.266736e+01 lineto +7.227816e+01 1.276306e+01 lineto +7.272478e+01 1.362439e+01 lineto +7.415767e+01 1.352282e+01 lineto +closepath +gsave +6.585982e-01 6.585982e-01 8.232477e-01 setrgbcolor +fill +grestore +newpath +7.415767e+01 1.352282e+01 moveto +7.36282e+01 1.266736e+01 lineto +7.227816e+01 1.276306e+01 lineto +7.272478e+01 1.362439e+01 lineto +7.415767e+01 1.352282e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.467847e+01 1.440902e+01 moveto +7.415767e+01 1.352282e+01 lineto +7.272478e+01 1.362439e+01 lineto +7.316409e+01 1.451637e+01 lineto +7.467847e+01 1.440902e+01 lineto +closepath +gsave +6.609695e-01 6.609695e-01 8.262119e-01 setrgbcolor +fill +grestore +newpath +7.467847e+01 1.440902e+01 moveto +7.415767e+01 1.352282e+01 lineto +7.272478e+01 1.362439e+01 lineto +7.316409e+01 1.451637e+01 lineto +7.467847e+01 1.440902e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.519011e+01 1.532514e+01 moveto +7.467847e+01 1.440902e+01 lineto +7.316409e+01 1.451637e+01 lineto +7.359567e+01 1.543816e+01 lineto +7.519011e+01 1.532514e+01 lineto +closepath +gsave +6.63222e-01 6.63222e-01 8.290275e-01 setrgbcolor +fill +grestore +newpath +7.519011e+01 1.532514e+01 moveto +7.467847e+01 1.440902e+01 lineto +7.316409e+01 1.451637e+01 lineto +7.359567e+01 1.543816e+01 lineto +7.519011e+01 1.532514e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.569209e+01 1.62703e+01 moveto +7.519011e+01 1.532514e+01 lineto +7.359567e+01 1.543816e+01 lineto +7.401911e+01 1.638889e+01 lineto +7.569209e+01 1.62703e+01 lineto +closepath +gsave +6.653533e-01 6.653533e-01 8.316917e-01 setrgbcolor +fill +grestore +newpath +7.569209e+01 1.62703e+01 moveto +7.519011e+01 1.532514e+01 lineto +7.359567e+01 1.543816e+01 lineto +7.401911e+01 1.638889e+01 lineto +7.569209e+01 1.62703e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.618396e+01 1.72436e+01 moveto +7.569209e+01 1.62703e+01 lineto +7.401911e+01 1.638889e+01 lineto +7.443401e+01 1.736765e+01 lineto +7.618396e+01 1.72436e+01 lineto +closepath +gsave +6.673614e-01 6.673614e-01 8.342017e-01 setrgbcolor +fill +grestore +newpath +7.618396e+01 1.72436e+01 moveto +7.569209e+01 1.62703e+01 lineto +7.401911e+01 1.638889e+01 lineto +7.443401e+01 1.736765e+01 lineto +7.618396e+01 1.72436e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.666523e+01 1.824414e+01 moveto +7.618396e+01 1.72436e+01 lineto +7.443401e+01 1.736765e+01 lineto +7.483998e+01 1.837352e+01 lineto +7.666523e+01 1.824414e+01 lineto +closepath +gsave +6.692441e-01 6.692441e-01 8.365551e-01 setrgbcolor +fill +grestore +newpath +7.666523e+01 1.824414e+01 moveto +7.618396e+01 1.72436e+01 lineto +7.443401e+01 1.736765e+01 lineto +7.483998e+01 1.837352e+01 lineto +7.666523e+01 1.824414e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.713546e+01 1.927095e+01 moveto +7.666523e+01 1.824414e+01 lineto +7.483998e+01 1.837352e+01 lineto +7.523663e+01 1.940555e+01 lineto +7.713546e+01 1.927095e+01 lineto +closepath +gsave +6.709995e-01 6.709995e-01 8.387494e-01 setrgbcolor +fill +grestore +newpath +7.713546e+01 1.927095e+01 moveto +7.666523e+01 1.824414e+01 lineto +7.483998e+01 1.837352e+01 lineto +7.523663e+01 1.940555e+01 lineto +7.713546e+01 1.927095e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.75942e+01 2.032307e+01 moveto +7.713546e+01 1.927095e+01 lineto +7.523663e+01 1.940555e+01 lineto +7.562359e+01 2.046276e+01 lineto +7.75942e+01 2.032307e+01 lineto +closepath +gsave +6.726261e-01 6.726261e-01 8.407826e-01 setrgbcolor +fill +grestore +newpath +7.75942e+01 2.032307e+01 moveto +7.713546e+01 1.927095e+01 lineto +7.523663e+01 1.940555e+01 lineto +7.562359e+01 2.046276e+01 lineto +7.75942e+01 2.032307e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.804102e+01 2.13995e+01 moveto +7.75942e+01 2.032307e+01 lineto +7.562359e+01 2.046276e+01 lineto +7.60005e+01 2.154414e+01 lineto +7.804102e+01 2.13995e+01 lineto +closepath +gsave +6.741222e-01 6.741222e-01 8.426527e-01 setrgbcolor +fill +grestore +newpath +7.804102e+01 2.13995e+01 moveto +7.75942e+01 2.032307e+01 lineto +7.562359e+01 2.046276e+01 lineto +7.60005e+01 2.154414e+01 lineto +7.804102e+01 2.13995e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.847548e+01 2.249922e+01 moveto +7.804102e+01 2.13995e+01 lineto +7.60005e+01 2.154414e+01 lineto +7.636698e+01 2.264869e+01 lineto +7.847548e+01 2.249922e+01 lineto +closepath +gsave +6.754863e-01 6.754863e-01 8.443579e-01 setrgbcolor +fill +grestore +newpath +7.847548e+01 2.249922e+01 moveto +7.804102e+01 2.13995e+01 lineto +7.60005e+01 2.154414e+01 lineto +7.636698e+01 2.264869e+01 lineto +7.847548e+01 2.249922e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.889719e+01 2.36212e+01 moveto +7.847548e+01 2.249922e+01 lineto +7.636698e+01 2.264869e+01 lineto +7.672271e+01 2.377534e+01 lineto +7.889719e+01 2.36212e+01 lineto +closepath +gsave +6.767173e-01 6.767173e-01 8.458966e-01 setrgbcolor +fill +grestore +newpath +7.889719e+01 2.36212e+01 moveto +7.847548e+01 2.249922e+01 lineto +7.636698e+01 2.264869e+01 lineto +7.672271e+01 2.377534e+01 lineto +7.889719e+01 2.36212e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.930575e+01 2.476436e+01 moveto +7.889719e+01 2.36212e+01 lineto +7.672271e+01 2.377534e+01 lineto +7.706733e+01 2.492303e+01 lineto +7.930575e+01 2.476436e+01 lineto +closepath +gsave +6.77814e-01 6.77814e-01 8.472675e-01 setrgbcolor +fill +grestore +newpath +7.930575e+01 2.476436e+01 moveto +7.889719e+01 2.36212e+01 lineto +7.672271e+01 2.377534e+01 lineto +7.706733e+01 2.492303e+01 lineto +7.930575e+01 2.476436e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.970075e+01 2.592763e+01 moveto +7.930575e+01 2.476436e+01 lineto +7.706733e+01 2.492303e+01 lineto +7.740053e+01 2.609068e+01 lineto +7.970075e+01 2.592763e+01 lineto +closepath +gsave +6.787753e-01 6.787753e-01 8.484692e-01 setrgbcolor +fill +grestore +newpath +7.970075e+01 2.592763e+01 moveto +7.930575e+01 2.476436e+01 lineto +7.706733e+01 2.492303e+01 lineto +7.740053e+01 2.609068e+01 lineto +7.970075e+01 2.592763e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.008184e+01 2.71099e+01 moveto +7.970075e+01 2.592763e+01 lineto +7.740053e+01 2.609068e+01 lineto +7.772199e+01 2.727718e+01 lineto +8.008184e+01 2.71099e+01 lineto +closepath +gsave +6.796006e-01 6.796006e-01 8.495007e-01 setrgbcolor +fill +grestore +newpath +8.008184e+01 2.71099e+01 moveto +7.970075e+01 2.592763e+01 lineto +7.740053e+01 2.609068e+01 lineto +7.772199e+01 2.727718e+01 lineto +8.008184e+01 2.71099e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.044865e+01 2.831006e+01 moveto +8.008184e+01 2.71099e+01 lineto +7.772199e+01 2.727718e+01 lineto +7.803141e+01 2.848141e+01 lineto +8.044865e+01 2.831006e+01 lineto +closepath +gsave +6.802889e-01 6.802889e-01 8.503611e-01 setrgbcolor +fill +grestore +newpath +8.044865e+01 2.831006e+01 moveto +8.008184e+01 2.71099e+01 lineto +7.772199e+01 2.727718e+01 lineto +7.803141e+01 2.848141e+01 lineto +8.044865e+01 2.831006e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.080083e+01 2.952697e+01 moveto +8.044865e+01 2.831006e+01 lineto +7.803141e+01 2.848141e+01 lineto +7.832848e+01 2.970222e+01 lineto +8.080083e+01 2.952697e+01 lineto +closepath +gsave +6.808397e-01 6.808397e-01 8.510496e-01 setrgbcolor +fill +grestore +newpath +8.080083e+01 2.952697e+01 moveto +8.044865e+01 2.831006e+01 lineto +7.803141e+01 2.848141e+01 lineto +7.832848e+01 2.970222e+01 lineto +8.080083e+01 2.952697e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.113805e+01 3.075948e+01 moveto +8.080083e+01 2.952697e+01 lineto +7.832848e+01 2.970222e+01 lineto +7.861294e+01 3.093847e+01 lineto +8.113805e+01 3.075948e+01 lineto +closepath +gsave +6.812525e-01 6.812525e-01 8.515656e-01 setrgbcolor +fill +grestore +newpath +8.113805e+01 3.075948e+01 moveto +8.080083e+01 2.952697e+01 lineto +7.832848e+01 2.970222e+01 lineto +7.861294e+01 3.093847e+01 lineto +8.113805e+01 3.075948e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.145999e+01 3.200641e+01 moveto +8.113805e+01 3.075948e+01 lineto +7.861294e+01 3.093847e+01 lineto +7.888451e+01 3.218897e+01 lineto +8.145999e+01 3.200641e+01 lineto +closepath +gsave +6.81527e-01 6.81527e-01 8.519088e-01 setrgbcolor +fill +grestore +newpath +8.145999e+01 3.200641e+01 moveto +8.113805e+01 3.075948e+01 lineto +7.861294e+01 3.093847e+01 lineto +7.888451e+01 3.218897e+01 lineto +8.145999e+01 3.200641e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.176635e+01 3.326659e+01 moveto +8.145999e+01 3.200641e+01 lineto +7.888451e+01 3.218897e+01 lineto +7.914293e+01 3.345256e+01 lineto +8.176635e+01 3.326659e+01 lineto +closepath +gsave +6.81663e-01 6.81663e-01 8.520787e-01 setrgbcolor +fill +grestore +newpath +8.176635e+01 3.326659e+01 moveto +8.145999e+01 3.200641e+01 lineto +7.888451e+01 3.218897e+01 lineto +7.914293e+01 3.345256e+01 lineto +8.176635e+01 3.326659e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.205683e+01 3.453883e+01 moveto +8.176635e+01 3.326659e+01 lineto +7.914293e+01 3.345256e+01 lineto +7.938796e+01 3.472802e+01 lineto +8.205683e+01 3.453883e+01 lineto +closepath +gsave +6.816603e-01 6.816603e-01 8.520753e-01 setrgbcolor +fill +grestore +newpath +8.205683e+01 3.453883e+01 moveto +8.176635e+01 3.326659e+01 lineto +7.914293e+01 3.345256e+01 lineto +7.938796e+01 3.472802e+01 lineto +8.205683e+01 3.453883e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.233116e+01 3.582193e+01 moveto +8.205683e+01 3.453883e+01 lineto +7.938796e+01 3.472802e+01 lineto +7.961937e+01 3.601415e+01 lineto +8.233116e+01 3.582193e+01 lineto +closepath +gsave +6.815189e-01 6.815189e-01 8.518987e-01 setrgbcolor +fill +grestore +newpath +8.233116e+01 3.582193e+01 moveto +8.205683e+01 3.453883e+01 lineto +7.938796e+01 3.472802e+01 lineto +7.961937e+01 3.601415e+01 lineto +8.233116e+01 3.582193e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.258908e+01 3.711465e+01 moveto +8.233116e+01 3.582193e+01 lineto +7.961937e+01 3.601415e+01 lineto +7.983693e+01 3.730974e+01 lineto +8.258908e+01 3.711465e+01 lineto +closepath +gsave +6.812391e-01 6.812391e-01 8.515489e-01 setrgbcolor +fill +grestore +newpath +8.258908e+01 3.711465e+01 moveto +8.233116e+01 3.582193e+01 lineto +7.961937e+01 3.601415e+01 lineto +7.983693e+01 3.730974e+01 lineto +8.258908e+01 3.711465e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.283035e+01 3.841579e+01 moveto +8.258908e+01 3.711465e+01 lineto +7.983693e+01 3.730974e+01 lineto +8.004045e+01 3.861356e+01 lineto +8.283035e+01 3.841579e+01 lineto +closepath +gsave +6.808211e-01 6.808211e-01 8.510263e-01 setrgbcolor +fill +grestore +newpath +8.283035e+01 3.841579e+01 moveto +8.258908e+01 3.711465e+01 lineto +7.983693e+01 3.730974e+01 lineto +8.004045e+01 3.861356e+01 lineto +8.283035e+01 3.841579e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.305474e+01 3.972412e+01 moveto +8.283035e+01 3.841579e+01 lineto +8.004045e+01 3.861356e+01 lineto +8.022973e+01 3.992437e+01 lineto +8.305474e+01 3.972412e+01 lineto +closepath +gsave +6.802652e-01 6.802652e-01 8.503315e-01 setrgbcolor +fill +grestore +newpath +8.305474e+01 3.972412e+01 moveto +8.283035e+01 3.841579e+01 lineto +8.004045e+01 3.861356e+01 lineto +8.022973e+01 3.992437e+01 lineto +8.305474e+01 3.972412e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.326204e+01 4.103838e+01 moveto +8.305474e+01 3.972412e+01 lineto +8.022973e+01 3.992437e+01 lineto +8.040459e+01 4.124093e+01 lineto +8.326204e+01 4.103838e+01 lineto +closepath +gsave +6.79572e-01 6.79572e-01 8.49465e-01 setrgbcolor +fill +grestore +newpath +8.326204e+01 4.103838e+01 moveto +8.305474e+01 3.972412e+01 lineto +8.022973e+01 3.992437e+01 lineto +8.040459e+01 4.124093e+01 lineto +8.326204e+01 4.103838e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.550433e+01 4.322551e+00 moveto +6.500163e+01 4.00098e+00 lineto +6.500132e+01 4.000996e+00 lineto +6.540767e+01 4.327317e+00 lineto +6.550433e+01 4.322551e+00 lineto +closepath +gsave +6.111362e-01 6.111362e-01 7.639203e-01 setrgbcolor +fill +grestore +newpath +6.550433e+01 4.322551e+00 moveto +6.500163e+01 4.00098e+00 lineto +6.500132e+01 4.000996e+00 lineto +6.540767e+01 4.327317e+00 lineto +6.550433e+01 4.322551e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.600655e+01 4.683582e+00 moveto +6.550433e+01 4.322551e+00 lineto +6.540767e+01 4.327317e+00 lineto +6.581363e+01 4.693094e+00 lineto +6.600655e+01 4.683582e+00 lineto +closepath +gsave +6.154221e-01 6.154221e-01 7.692776e-01 setrgbcolor +fill +grestore +newpath +6.600655e+01 4.683582e+00 moveto +6.550433e+01 4.322551e+00 lineto +6.540767e+01 4.327317e+00 lineto +6.581363e+01 4.693094e+00 lineto +6.600655e+01 4.683582e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.650781e+01 5.083732e+00 moveto +6.600655e+01 4.683582e+00 lineto +6.581363e+01 4.693094e+00 lineto +6.621883e+01 5.097981e+00 lineto +6.650781e+01 5.083732e+00 lineto +closepath +gsave +6.19646e-01 6.19646e-01 7.745575e-01 setrgbcolor +fill +grestore +newpath +6.650781e+01 5.083732e+00 moveto +6.600655e+01 4.683582e+00 lineto +6.581363e+01 4.693094e+00 lineto +6.621883e+01 5.097981e+00 lineto +6.650781e+01 5.083732e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.700765e+01 5.522622e+00 moveto +6.650781e+01 5.083732e+00 lineto +6.621883e+01 5.097981e+00 lineto +6.662287e+01 5.541595e+00 lineto +6.700765e+01 5.522622e+00 lineto +closepath +gsave +6.238023e-01 6.238023e-01 7.797528e-01 setrgbcolor +fill +grestore +newpath +6.700765e+01 5.522622e+00 moveto +6.650781e+01 5.083732e+00 lineto +6.621883e+01 5.097981e+00 lineto +6.662287e+01 5.541595e+00 lineto +6.700765e+01 5.522622e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.750559e+01 5.999836e+00 moveto +6.700765e+01 5.522622e+00 lineto +6.662287e+01 5.541595e+00 lineto +6.702537e+01 6.023515e+00 lineto +6.750559e+01 5.999836e+00 lineto +closepath +gsave +6.278854e-01 6.278854e-01 7.848568e-01 setrgbcolor +fill +grestore +newpath +6.750559e+01 5.999836e+00 moveto +6.700765e+01 5.522622e+00 lineto +6.662287e+01 5.541595e+00 lineto +6.702537e+01 6.023515e+00 lineto +6.750559e+01 5.999836e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.800115e+01 6.514923e+00 moveto +6.750559e+01 5.999836e+00 lineto +6.702537e+01 6.023515e+00 lineto +6.742596e+01 6.543285e+00 lineto +6.800115e+01 6.514923e+00 lineto +closepath +gsave +6.318902e-01 6.318902e-01 7.898628e-01 setrgbcolor +fill +grestore +newpath +6.800115e+01 6.514923e+00 moveto +6.750559e+01 5.999836e+00 lineto +6.702537e+01 6.023515e+00 lineto +6.742596e+01 6.543285e+00 lineto +6.800115e+01 6.514923e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.849388e+01 7.067394e+00 moveto +6.800115e+01 6.514923e+00 lineto +6.742596e+01 6.543285e+00 lineto +6.782425e+01 7.100413e+00 lineto +6.849388e+01 7.067394e+00 lineto +closepath +gsave +6.358115e-01 6.358115e-01 7.947644e-01 setrgbcolor +fill +grestore +newpath +6.849388e+01 7.067394e+00 moveto +6.800115e+01 6.514923e+00 lineto +6.742596e+01 6.543285e+00 lineto +6.782425e+01 7.100413e+00 lineto +6.849388e+01 7.067394e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.898329e+01 7.656728e+00 moveto +6.849388e+01 7.067394e+00 lineto +6.782425e+01 7.100413e+00 lineto +6.821986e+01 7.694371e+00 lineto +6.898329e+01 7.656728e+00 lineto +closepath +gsave +6.396442e-01 6.396442e-01 7.995553e-01 setrgbcolor +fill +grestore +newpath +6.898329e+01 7.656728e+00 moveto +6.849388e+01 7.067394e+00 lineto +6.782425e+01 7.100413e+00 lineto +6.821986e+01 7.694371e+00 lineto +6.898329e+01 7.656728e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.946894e+01 8.282365e+00 moveto +6.898329e+01 7.656728e+00 lineto +6.821986e+01 7.694371e+00 lineto +6.861243e+01 8.324598e+00 lineto +6.946894e+01 8.282365e+00 lineto +closepath +gsave +6.433837e-01 6.433837e-01 8.042296e-01 setrgbcolor +fill +grestore +newpath +6.946894e+01 8.282365e+00 moveto +6.898329e+01 7.656728e+00 lineto +6.821986e+01 7.694371e+00 lineto +6.861243e+01 8.324598e+00 lineto +6.946894e+01 8.282365e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.995035e+01 8.943713e+00 moveto +6.946894e+01 8.282365e+00 lineto +6.861243e+01 8.324598e+00 lineto +6.900157e+01 8.990496e+00 lineto +6.995035e+01 8.943713e+00 lineto +closepath +gsave +6.470252e-01 6.470252e-01 8.087816e-01 setrgbcolor +fill +grestore +newpath +6.995035e+01 8.943713e+00 moveto +6.946894e+01 8.282365e+00 lineto +6.861243e+01 8.324598e+00 lineto +6.900157e+01 8.990496e+00 lineto +6.995035e+01 8.943713e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.042707e+01 9.640147e+00 moveto +6.995035e+01 8.943713e+00 lineto +6.900157e+01 8.990496e+00 lineto +6.938693e+01 9.691435e+00 lineto +7.042707e+01 9.640147e+00 lineto +closepath +gsave +6.505645e-01 6.505645e-01 8.132057e-01 setrgbcolor +fill +grestore +newpath +7.042707e+01 9.640147e+00 moveto +6.995035e+01 8.943713e+00 lineto +6.900157e+01 8.990496e+00 lineto +6.938693e+01 9.691435e+00 lineto +7.042707e+01 9.640147e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.089866e+01 1.037101e+01 moveto +7.042707e+01 9.640147e+00 lineto +6.938693e+01 9.691435e+00 lineto +6.976813e+01 1.042675e+01 lineto +7.089866e+01 1.037101e+01 lineto +closepath +gsave +6.539973e-01 6.539973e-01 8.174966e-01 setrgbcolor +fill +grestore +newpath +7.089866e+01 1.037101e+01 moveto +7.042707e+01 9.640147e+00 lineto +6.938693e+01 9.691435e+00 lineto +6.976813e+01 1.042675e+01 lineto +7.089866e+01 1.037101e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.136466e+01 1.11356e+01 moveto +7.089866e+01 1.037101e+01 lineto +6.976813e+01 1.042675e+01 lineto +7.014482e+01 1.119575e+01 lineto +7.136466e+01 1.11356e+01 lineto +closepath +gsave +6.573196e-01 6.573196e-01 8.216495e-01 setrgbcolor +fill +grestore +newpath +7.136466e+01 1.11356e+01 moveto +7.089866e+01 1.037101e+01 lineto +6.976813e+01 1.042675e+01 lineto +7.014482e+01 1.119575e+01 lineto +7.136466e+01 1.11356e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.182464e+01 1.19332e+01 moveto +7.136466e+01 1.11356e+01 lineto +7.014482e+01 1.119575e+01 lineto +7.051664e+01 1.19977e+01 lineto +7.182464e+01 1.19332e+01 lineto +closepath +gsave +6.605277e-01 6.605277e-01 8.256596e-01 setrgbcolor +fill +grestore +newpath +7.182464e+01 1.19332e+01 moveto +7.136466e+01 1.11356e+01 lineto +7.014482e+01 1.119575e+01 lineto +7.051664e+01 1.19977e+01 lineto +7.182464e+01 1.19332e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.227816e+01 1.276306e+01 moveto +7.182464e+01 1.19332e+01 lineto +7.051664e+01 1.19977e+01 lineto +7.088323e+01 1.283184e+01 lineto +7.227816e+01 1.276306e+01 lineto +closepath +gsave +6.636179e-01 6.636179e-01 8.295223e-01 setrgbcolor +fill +grestore +newpath +7.227816e+01 1.276306e+01 moveto +7.182464e+01 1.19332e+01 lineto +7.051664e+01 1.19977e+01 lineto +7.088323e+01 1.283184e+01 lineto +7.227816e+01 1.276306e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.272478e+01 1.362439e+01 moveto +7.227816e+01 1.276306e+01 lineto +7.088323e+01 1.283184e+01 lineto +7.124426e+01 1.369739e+01 lineto +7.272478e+01 1.362439e+01 lineto +closepath +gsave +6.665868e-01 6.665868e-01 8.332335e-01 setrgbcolor +fill +grestore +newpath +7.272478e+01 1.362439e+01 moveto +7.227816e+01 1.276306e+01 lineto +7.088323e+01 1.283184e+01 lineto +7.124426e+01 1.369739e+01 lineto +7.272478e+01 1.362439e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.316409e+01 1.451637e+01 moveto +7.272478e+01 1.362439e+01 lineto +7.124426e+01 1.369739e+01 lineto +7.159937e+01 1.459352e+01 lineto +7.316409e+01 1.451637e+01 lineto +closepath +gsave +6.694313e-01 6.694313e-01 8.367891e-01 setrgbcolor +fill +grestore +newpath +7.316409e+01 1.451637e+01 moveto +7.272478e+01 1.362439e+01 lineto +7.124426e+01 1.369739e+01 lineto +7.159937e+01 1.459352e+01 lineto +7.316409e+01 1.451637e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.359567e+01 1.543816e+01 moveto +7.316409e+01 1.451637e+01 lineto +7.159937e+01 1.459352e+01 lineto +7.194823e+01 1.551939e+01 lineto +7.359567e+01 1.543816e+01 lineto +closepath +gsave +6.721483e-01 6.721483e-01 8.401854e-01 setrgbcolor +fill +grestore +newpath +7.359567e+01 1.543816e+01 moveto +7.316409e+01 1.451637e+01 lineto +7.159937e+01 1.459352e+01 lineto +7.194823e+01 1.551939e+01 lineto +7.359567e+01 1.543816e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.401911e+01 1.638889e+01 moveto +7.359567e+01 1.543816e+01 lineto +7.194823e+01 1.551939e+01 lineto +7.229052e+01 1.647412e+01 lineto +7.401911e+01 1.638889e+01 lineto +closepath +gsave +6.747351e-01 6.747351e-01 8.434189e-01 setrgbcolor +fill +grestore +newpath +7.401911e+01 1.638889e+01 moveto +7.359567e+01 1.543816e+01 lineto +7.194823e+01 1.551939e+01 lineto +7.229052e+01 1.647412e+01 lineto +7.401911e+01 1.638889e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.443401e+01 1.736765e+01 moveto +7.401911e+01 1.638889e+01 lineto +7.229052e+01 1.647412e+01 lineto +7.26259e+01 1.74568e+01 lineto +7.443401e+01 1.736765e+01 lineto +closepath +gsave +6.771891e-01 6.771891e-01 8.464864e-01 setrgbcolor +fill +grestore +newpath +7.443401e+01 1.736765e+01 moveto +7.401911e+01 1.638889e+01 lineto +7.229052e+01 1.647412e+01 lineto +7.26259e+01 1.74568e+01 lineto +7.443401e+01 1.736765e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.483998e+01 1.837352e+01 moveto +7.443401e+01 1.736765e+01 lineto +7.26259e+01 1.74568e+01 lineto +7.295406e+01 1.846651e+01 lineto +7.483998e+01 1.837352e+01 lineto +closepath +gsave +6.795078e-01 6.795078e-01 8.493848e-01 setrgbcolor +fill +grestore +newpath +7.483998e+01 1.837352e+01 moveto +7.443401e+01 1.736765e+01 lineto +7.26259e+01 1.74568e+01 lineto +7.295406e+01 1.846651e+01 lineto +7.483998e+01 1.837352e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.523663e+01 1.940555e+01 moveto +7.483998e+01 1.837352e+01 lineto +7.295406e+01 1.846651e+01 lineto +7.327469e+01 1.950229e+01 lineto +7.523663e+01 1.940555e+01 lineto +closepath +gsave +6.816891e-01 6.816891e-01 8.521113e-01 setrgbcolor +fill +grestore +newpath +7.523663e+01 1.940555e+01 moveto +7.483998e+01 1.837352e+01 lineto +7.295406e+01 1.846651e+01 lineto +7.327469e+01 1.950229e+01 lineto +7.523663e+01 1.940555e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.562359e+01 2.046276e+01 moveto +7.523663e+01 1.940555e+01 lineto +7.327469e+01 1.950229e+01 lineto +7.358749e+01 2.056315e+01 lineto +7.562359e+01 2.046276e+01 lineto +closepath +gsave +6.837307e-01 6.837307e-01 8.546634e-01 setrgbcolor +fill +grestore +newpath +7.562359e+01 2.046276e+01 moveto +7.523663e+01 1.940555e+01 lineto +7.327469e+01 1.950229e+01 lineto +7.358749e+01 2.056315e+01 lineto +7.562359e+01 2.046276e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.60005e+01 2.154414e+01 moveto +7.562359e+01 2.046276e+01 lineto +7.358749e+01 2.056315e+01 lineto +7.389216e+01 2.16481e+01 lineto +7.60005e+01 2.154414e+01 lineto +closepath +gsave +6.856309e-01 6.856309e-01 8.570387e-01 setrgbcolor +fill +grestore +newpath +7.60005e+01 2.154414e+01 moveto +7.562359e+01 2.046276e+01 lineto +7.358749e+01 2.056315e+01 lineto +7.389216e+01 2.16481e+01 lineto +7.60005e+01 2.154414e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.636698e+01 2.264869e+01 moveto +7.60005e+01 2.154414e+01 lineto +7.389216e+01 2.16481e+01 lineto +7.41884e+01 2.275611e+01 lineto +7.636698e+01 2.264869e+01 lineto +closepath +gsave +6.87388e-01 6.87388e-01 8.59235e-01 setrgbcolor +fill +grestore +newpath +7.636698e+01 2.264869e+01 moveto +7.60005e+01 2.154414e+01 lineto +7.389216e+01 2.16481e+01 lineto +7.41884e+01 2.275611e+01 lineto +7.636698e+01 2.264869e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.672271e+01 2.377534e+01 moveto +7.636698e+01 2.264869e+01 lineto +7.41884e+01 2.275611e+01 lineto +7.447595e+01 2.388612e+01 lineto +7.672271e+01 2.377534e+01 lineto +closepath +gsave +6.890003e-01 6.890003e-01 8.612504e-01 setrgbcolor +fill +grestore +newpath +7.672271e+01 2.377534e+01 moveto +7.636698e+01 2.264869e+01 lineto +7.41884e+01 2.275611e+01 lineto +7.447595e+01 2.388612e+01 lineto +7.672271e+01 2.377534e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.706733e+01 2.492303e+01 moveto +7.672271e+01 2.377534e+01 lineto +7.447595e+01 2.388612e+01 lineto +7.475452e+01 2.503707e+01 lineto +7.706733e+01 2.492303e+01 lineto +closepath +gsave +6.904665e-01 6.904665e-01 8.630831e-01 setrgbcolor +fill +grestore +newpath +7.706733e+01 2.492303e+01 moveto +7.672271e+01 2.377534e+01 lineto +7.447595e+01 2.388612e+01 lineto +7.475452e+01 2.503707e+01 lineto +7.706733e+01 2.492303e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.740053e+01 2.609068e+01 moveto +7.706733e+01 2.492303e+01 lineto +7.475452e+01 2.503707e+01 lineto +7.502386e+01 2.620787e+01 lineto +7.740053e+01 2.609068e+01 lineto +closepath +gsave +6.917853e-01 6.917853e-01 8.647317e-01 setrgbcolor +fill +grestore +newpath +7.740053e+01 2.609068e+01 moveto +7.706733e+01 2.492303e+01 lineto +7.475452e+01 2.503707e+01 lineto +7.502386e+01 2.620787e+01 lineto +7.740053e+01 2.609068e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.772199e+01 2.727718e+01 moveto +7.740053e+01 2.609068e+01 lineto +7.502386e+01 2.620787e+01 lineto +7.528371e+01 2.739741e+01 lineto +7.772199e+01 2.727718e+01 lineto +closepath +gsave +6.929557e-01 6.929557e-01 8.661946e-01 setrgbcolor +fill +grestore +newpath +7.772199e+01 2.727718e+01 moveto +7.740053e+01 2.609068e+01 lineto +7.502386e+01 2.620787e+01 lineto +7.528371e+01 2.739741e+01 lineto +7.772199e+01 2.727718e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.803141e+01 2.848141e+01 moveto +7.772199e+01 2.727718e+01 lineto +7.528371e+01 2.739741e+01 lineto +7.553382e+01 2.860456e+01 lineto +7.803141e+01 2.848141e+01 lineto +closepath +gsave +6.939766e-01 6.939766e-01 8.674707e-01 setrgbcolor +fill +grestore +newpath +7.803141e+01 2.848141e+01 moveto +7.772199e+01 2.727718e+01 lineto +7.528371e+01 2.739741e+01 lineto +7.553382e+01 2.860456e+01 lineto +7.803141e+01 2.848141e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.832848e+01 2.970222e+01 moveto +7.803141e+01 2.848141e+01 lineto +7.553382e+01 2.860456e+01 lineto +7.577396e+01 2.982818e+01 lineto +7.832848e+01 2.970222e+01 lineto +closepath +gsave +6.948472e-01 6.948472e-01 8.68559e-01 setrgbcolor +fill +grestore +newpath +7.832848e+01 2.970222e+01 moveto +7.803141e+01 2.848141e+01 lineto +7.553382e+01 2.860456e+01 lineto +7.577396e+01 2.982818e+01 lineto +7.832848e+01 2.970222e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.861294e+01 3.093847e+01 moveto +7.832848e+01 2.970222e+01 lineto +7.577396e+01 2.982818e+01 lineto +7.60039e+01 3.106712e+01 lineto +7.861294e+01 3.093847e+01 lineto +closepath +gsave +6.955669e-01 6.955669e-01 8.694586e-01 setrgbcolor +fill +grestore +newpath +7.861294e+01 3.093847e+01 moveto +7.832848e+01 2.970222e+01 lineto +7.577396e+01 2.982818e+01 lineto +7.60039e+01 3.106712e+01 lineto +7.861294e+01 3.093847e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.888451e+01 3.218897e+01 moveto +7.861294e+01 3.093847e+01 lineto +7.60039e+01 3.106712e+01 lineto +7.622342e+01 3.232019e+01 lineto +7.888451e+01 3.218897e+01 lineto +closepath +gsave +6.96135e-01 6.96135e-01 8.701688e-01 setrgbcolor +fill +grestore +newpath +7.888451e+01 3.218897e+01 moveto +7.861294e+01 3.093847e+01 lineto +7.60039e+01 3.106712e+01 lineto +7.622342e+01 3.232019e+01 lineto +7.888451e+01 3.218897e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.914293e+01 3.345256e+01 moveto +7.888451e+01 3.218897e+01 lineto +7.622342e+01 3.232019e+01 lineto +7.643231e+01 3.358621e+01 lineto +7.914293e+01 3.345256e+01 lineto +closepath +gsave +6.965512e-01 6.965512e-01 8.70689e-01 setrgbcolor +fill +grestore +newpath +7.914293e+01 3.345256e+01 moveto +7.888451e+01 3.218897e+01 lineto +7.622342e+01 3.232019e+01 lineto +7.643231e+01 3.358621e+01 lineto +7.914293e+01 3.345256e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.938796e+01 3.472802e+01 moveto +7.914293e+01 3.345256e+01 lineto +7.643231e+01 3.358621e+01 lineto +7.663038e+01 3.486399e+01 lineto +7.938796e+01 3.472802e+01 lineto +closepath +gsave +6.968151e-01 6.968151e-01 8.710189e-01 setrgbcolor +fill +grestore +newpath +7.938796e+01 3.472802e+01 moveto +7.914293e+01 3.345256e+01 lineto +7.643231e+01 3.358621e+01 lineto +7.663038e+01 3.486399e+01 lineto +7.938796e+01 3.472802e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.961937e+01 3.601415e+01 moveto +7.938796e+01 3.472802e+01 lineto +7.663038e+01 3.486399e+01 lineto +7.681744e+01 3.615231e+01 lineto +7.961937e+01 3.601415e+01 lineto +closepath +gsave +6.969266e-01 6.969266e-01 8.711582e-01 setrgbcolor +fill +grestore +newpath +7.961937e+01 3.601415e+01 moveto +7.938796e+01 3.472802e+01 lineto +7.663038e+01 3.486399e+01 lineto +7.681744e+01 3.615231e+01 lineto +7.961937e+01 3.601415e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.983693e+01 3.730974e+01 moveto +7.961937e+01 3.601415e+01 lineto +7.681744e+01 3.615231e+01 lineto +7.69933e+01 3.744996e+01 lineto +7.983693e+01 3.730974e+01 lineto +closepath +gsave +6.968854e-01 6.968854e-01 8.711068e-01 setrgbcolor +fill +grestore +newpath +7.983693e+01 3.730974e+01 moveto +7.961937e+01 3.601415e+01 lineto +7.681744e+01 3.615231e+01 lineto +7.69933e+01 3.744996e+01 lineto +7.983693e+01 3.730974e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.004045e+01 3.861356e+01 moveto +7.983693e+01 3.730974e+01 lineto +7.69933e+01 3.744996e+01 lineto +7.715782e+01 3.87557e+01 lineto +8.004045e+01 3.861356e+01 lineto +closepath +gsave +6.966918e-01 6.966918e-01 8.708648e-01 setrgbcolor +fill +grestore +newpath +8.004045e+01 3.861356e+01 moveto +7.983693e+01 3.730974e+01 lineto +7.69933e+01 3.744996e+01 lineto +7.715782e+01 3.87557e+01 lineto +8.004045e+01 3.861356e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.022973e+01 3.992437e+01 moveto +8.004045e+01 3.861356e+01 lineto +7.715782e+01 3.87557e+01 lineto +7.731082e+01 4.00683e+01 lineto +8.022973e+01 3.992437e+01 lineto +closepath +gsave +6.963459e-01 6.963459e-01 8.704324e-01 setrgbcolor +fill +grestore +newpath +8.022973e+01 3.992437e+01 moveto +8.004045e+01 3.861356e+01 lineto +7.715782e+01 3.87557e+01 lineto +7.731082e+01 4.00683e+01 lineto +8.022973e+01 3.992437e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +8.040459e+01 4.124093e+01 moveto +8.022973e+01 3.992437e+01 lineto +7.731082e+01 4.00683e+01 lineto +7.745216e+01 4.138651e+01 lineto +8.040459e+01 4.124093e+01 lineto +closepath +gsave +6.95848e-01 6.95848e-01 8.6981e-01 setrgbcolor +fill +grestore +newpath +8.040459e+01 4.124093e+01 moveto +8.022973e+01 3.992437e+01 lineto +7.731082e+01 4.00683e+01 lineto +7.745216e+01 4.138651e+01 lineto +8.040459e+01 4.124093e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.540767e+01 4.327317e+00 moveto +6.500132e+01 4.000996e+00 lineto +6.5001e+01 4.001005e+00 lineto +6.53085e+01 4.330188e+00 lineto +6.540767e+01 4.327317e+00 lineto +closepath +gsave +6.113865e-01 6.113865e-01 7.642332e-01 setrgbcolor +fill +grestore +newpath +6.540767e+01 4.327317e+00 moveto +6.500132e+01 4.000996e+00 lineto +6.5001e+01 4.001005e+00 lineto +6.53085e+01 4.330188e+00 lineto +6.540767e+01 4.327317e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.581363e+01 4.693094e+00 moveto +6.540767e+01 4.327317e+00 lineto +6.53085e+01 4.330188e+00 lineto +6.56157e+01 4.698825e+00 lineto +6.581363e+01 4.693094e+00 lineto +closepath +gsave +6.16172e-01 6.16172e-01 7.70215e-01 setrgbcolor +fill +grestore +newpath +6.581363e+01 4.693094e+00 moveto +6.540767e+01 4.327317e+00 lineto +6.53085e+01 4.330188e+00 lineto +6.56157e+01 4.698825e+00 lineto +6.581363e+01 4.693094e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.621883e+01 5.097981e+00 moveto +6.581363e+01 4.693094e+00 lineto +6.56157e+01 4.698825e+00 lineto +6.592233e+01 5.106566e+00 lineto +6.621883e+01 5.097981e+00 lineto +closepath +gsave +6.208976e-01 6.208976e-01 7.76122e-01 setrgbcolor +fill +grestore +newpath +6.621883e+01 5.097981e+00 moveto +6.581363e+01 4.693094e+00 lineto +6.56157e+01 4.698825e+00 lineto +6.592233e+01 5.106566e+00 lineto +6.621883e+01 5.097981e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.662287e+01 5.541595e+00 moveto +6.621883e+01 5.097981e+00 lineto +6.592233e+01 5.106566e+00 lineto +6.622808e+01 5.553026e+00 lineto +6.662287e+01 5.541595e+00 lineto +closepath +gsave +6.255568e-01 6.255568e-01 7.819461e-01 setrgbcolor +fill +grestore +newpath +6.662287e+01 5.541595e+00 moveto +6.621883e+01 5.097981e+00 lineto +6.592233e+01 5.106566e+00 lineto +6.622808e+01 5.553026e+00 lineto +6.662287e+01 5.541595e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.702537e+01 6.023515e+00 moveto +6.662287e+01 5.541595e+00 lineto +6.622808e+01 5.553026e+00 lineto +6.653267e+01 6.037781e+00 lineto +6.702537e+01 6.023515e+00 lineto +closepath +gsave +6.301433e-01 6.301433e-01 7.876791e-01 setrgbcolor +fill +grestore +newpath +6.702537e+01 6.023515e+00 moveto +6.662287e+01 5.541595e+00 lineto +6.622808e+01 5.553026e+00 lineto +6.653267e+01 6.037781e+00 lineto +6.702537e+01 6.023515e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.742596e+01 6.543285e+00 moveto +6.702537e+01 6.023515e+00 lineto +6.653267e+01 6.037781e+00 lineto +6.68358e+01 6.560372e+00 lineto +6.742596e+01 6.543285e+00 lineto +closepath +gsave +6.346508e-01 6.346508e-01 7.933135e-01 setrgbcolor +fill +grestore +newpath +6.742596e+01 6.543285e+00 moveto +6.702537e+01 6.023515e+00 lineto +6.653267e+01 6.037781e+00 lineto +6.68358e+01 6.560372e+00 lineto +6.742596e+01 6.543285e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.782425e+01 7.100413e+00 moveto +6.742596e+01 6.543285e+00 lineto +6.68358e+01 6.560372e+00 lineto +6.71372e+01 7.120306e+00 lineto +6.782425e+01 7.100413e+00 lineto +closepath +gsave +6.390733e-01 6.390733e-01 7.988416e-01 setrgbcolor +fill +grestore +newpath +6.782425e+01 7.100413e+00 moveto +6.742596e+01 6.543285e+00 lineto +6.68358e+01 6.560372e+00 lineto +6.71372e+01 7.120306e+00 lineto +6.782425e+01 7.100413e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.821986e+01 7.694371e+00 moveto +6.782425e+01 7.100413e+00 lineto +6.71372e+01 7.120306e+00 lineto +6.743658e+01 7.717051e+00 lineto +6.821986e+01 7.694371e+00 lineto +closepath +gsave +6.43405e-01 6.43405e-01 8.042562e-01 setrgbcolor +fill +grestore +newpath +6.821986e+01 7.694371e+00 moveto +6.782425e+01 7.100413e+00 lineto +6.71372e+01 7.120306e+00 lineto +6.743658e+01 7.717051e+00 lineto +6.821986e+01 7.694371e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.861243e+01 8.324598e+00 moveto +6.821986e+01 7.694371e+00 lineto +6.743658e+01 7.717051e+00 lineto +6.773364e+01 8.350042e+00 lineto +6.861243e+01 8.324598e+00 lineto +closepath +gsave +6.476403e-01 6.476403e-01 8.095504e-01 setrgbcolor +fill +grestore +newpath +6.861243e+01 8.324598e+00 moveto +6.821986e+01 7.694371e+00 lineto +6.743658e+01 7.717051e+00 lineto +6.773364e+01 8.350042e+00 lineto +6.861243e+01 8.324598e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.900157e+01 8.990496e+00 moveto +6.861243e+01 8.324598e+00 lineto +6.773364e+01 8.350042e+00 lineto +6.802812e+01 9.018681e+00 lineto +6.900157e+01 8.990496e+00 lineto +closepath +gsave +6.51774e-01 6.51774e-01 8.147175e-01 setrgbcolor +fill +grestore +newpath +6.900157e+01 8.990496e+00 moveto +6.861243e+01 8.324598e+00 lineto +6.773364e+01 8.350042e+00 lineto +6.802812e+01 9.018681e+00 lineto +6.900157e+01 8.990496e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.938693e+01 9.691435e+00 moveto +6.900157e+01 8.990496e+00 lineto +6.802812e+01 9.018681e+00 lineto +6.831974e+01 9.722335e+00 lineto +6.938693e+01 9.691435e+00 lineto +closepath +gsave +6.558007e-01 6.558007e-01 8.197509e-01 setrgbcolor +fill +grestore +newpath +6.938693e+01 9.691435e+00 moveto +6.900157e+01 8.990496e+00 lineto +6.802812e+01 9.018681e+00 lineto +6.831974e+01 9.722335e+00 lineto +6.938693e+01 9.691435e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.976813e+01 1.042675e+01 moveto +6.938693e+01 9.691435e+00 lineto +6.831974e+01 9.722335e+00 lineto +6.86082e+01 1.046034e+01 lineto +6.976813e+01 1.042675e+01 lineto +closepath +gsave +6.597158e-01 6.597158e-01 8.246447e-01 setrgbcolor +fill +grestore +newpath +6.976813e+01 1.042675e+01 moveto +6.938693e+01 9.691435e+00 lineto +6.831974e+01 9.722335e+00 lineto +6.86082e+01 1.046034e+01 lineto +6.976813e+01 1.042675e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.014482e+01 1.119575e+01 moveto +6.976813e+01 1.042675e+01 lineto +6.86082e+01 1.046034e+01 lineto +6.889326e+01 1.123199e+01 lineto +7.014482e+01 1.119575e+01 lineto +closepath +gsave +6.635144e-01 6.635144e-01 8.29393e-01 setrgbcolor +fill +grestore +newpath +7.014482e+01 1.119575e+01 moveto +6.976813e+01 1.042675e+01 lineto +6.86082e+01 1.046034e+01 lineto +6.889326e+01 1.123199e+01 lineto +7.014482e+01 1.119575e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.051664e+01 1.19977e+01 moveto +7.014482e+01 1.119575e+01 lineto +6.889326e+01 1.123199e+01 lineto +6.917462e+01 1.203656e+01 lineto +7.051664e+01 1.19977e+01 lineto +closepath +gsave +6.671923e-01 6.671923e-01 8.339904e-01 setrgbcolor +fill +grestore +newpath +7.051664e+01 1.19977e+01 moveto +7.014482e+01 1.119575e+01 lineto +6.889326e+01 1.123199e+01 lineto +6.917462e+01 1.203656e+01 lineto +7.051664e+01 1.19977e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.088323e+01 1.283184e+01 moveto +7.051664e+01 1.19977e+01 lineto +6.917462e+01 1.203656e+01 lineto +6.945204e+01 1.287328e+01 lineto +7.088323e+01 1.283184e+01 lineto +closepath +gsave +6.707452e-01 6.707452e-01 8.384315e-01 setrgbcolor +fill +grestore +newpath +7.088323e+01 1.283184e+01 moveto +7.051664e+01 1.19977e+01 lineto +6.917462e+01 1.203656e+01 lineto +6.945204e+01 1.287328e+01 lineto +7.088323e+01 1.283184e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.124426e+01 1.369739e+01 moveto +7.088323e+01 1.283184e+01 lineto +6.945204e+01 1.287328e+01 lineto +6.972524e+01 1.374137e+01 lineto +7.124426e+01 1.369739e+01 lineto +closepath +gsave +6.741693e-01 6.741693e-01 8.427116e-01 setrgbcolor +fill +grestore +newpath +7.124426e+01 1.369739e+01 moveto +7.088323e+01 1.283184e+01 lineto +6.945204e+01 1.287328e+01 lineto +6.972524e+01 1.374137e+01 lineto +7.124426e+01 1.369739e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.159937e+01 1.459352e+01 moveto +7.124426e+01 1.369739e+01 lineto +6.972524e+01 1.374137e+01 lineto +6.999396e+01 1.464001e+01 lineto +7.159937e+01 1.459352e+01 lineto +closepath +gsave +6.774607e-01 6.774607e-01 8.468259e-01 setrgbcolor +fill +grestore +newpath +7.159937e+01 1.459352e+01 moveto +7.124426e+01 1.369739e+01 lineto +6.972524e+01 1.374137e+01 lineto +6.999396e+01 1.464001e+01 lineto +7.159937e+01 1.459352e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.194823e+01 1.551939e+01 moveto +7.159937e+01 1.459352e+01 lineto +6.999396e+01 1.464001e+01 lineto +7.025796e+01 1.556833e+01 lineto +7.194823e+01 1.551939e+01 lineto +closepath +gsave +6.806162e-01 6.806162e-01 8.507702e-01 setrgbcolor +fill +grestore +newpath +7.194823e+01 1.551939e+01 moveto +7.159937e+01 1.459352e+01 lineto +6.999396e+01 1.464001e+01 lineto +7.025796e+01 1.556833e+01 lineto +7.194823e+01 1.551939e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.229052e+01 1.647412e+01 moveto +7.194823e+01 1.551939e+01 lineto +7.025796e+01 1.556833e+01 lineto +7.051698e+01 1.652547e+01 lineto +7.229052e+01 1.647412e+01 lineto +closepath +gsave +6.836324e-01 6.836324e-01 8.545405e-01 setrgbcolor +fill +grestore +newpath +7.229052e+01 1.647412e+01 moveto +7.194823e+01 1.551939e+01 lineto +7.025796e+01 1.556833e+01 lineto +7.051698e+01 1.652547e+01 lineto +7.229052e+01 1.647412e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.26259e+01 1.74568e+01 moveto +7.229052e+01 1.647412e+01 lineto +7.051698e+01 1.652547e+01 lineto +7.077077e+01 1.751052e+01 lineto +7.26259e+01 1.74568e+01 lineto +closepath +gsave +6.865064e-01 6.865064e-01 8.58133e-01 setrgbcolor +fill +grestore +newpath +7.26259e+01 1.74568e+01 moveto +7.229052e+01 1.647412e+01 lineto +7.051698e+01 1.652547e+01 lineto +7.077077e+01 1.751052e+01 lineto +7.26259e+01 1.74568e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.295406e+01 1.846651e+01 moveto +7.26259e+01 1.74568e+01 lineto +7.077077e+01 1.751052e+01 lineto +7.10191e+01 1.852254e+01 lineto +7.295406e+01 1.846651e+01 lineto +closepath +gsave +6.892354e-01 6.892354e-01 8.615443e-01 setrgbcolor +fill +grestore +newpath +7.295406e+01 1.846651e+01 moveto +7.26259e+01 1.74568e+01 lineto +7.077077e+01 1.751052e+01 lineto +7.10191e+01 1.852254e+01 lineto +7.295406e+01 1.846651e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.327469e+01 1.950229e+01 moveto +7.295406e+01 1.846651e+01 lineto +7.10191e+01 1.852254e+01 lineto +7.126174e+01 1.956057e+01 lineto +7.327469e+01 1.950229e+01 lineto +closepath +gsave +6.918168e-01 6.918168e-01 8.64771e-01 setrgbcolor +fill +grestore +newpath +7.327469e+01 1.950229e+01 moveto +7.295406e+01 1.846651e+01 lineto +7.10191e+01 1.852254e+01 lineto +7.126174e+01 1.956057e+01 lineto +7.327469e+01 1.950229e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.358749e+01 2.056315e+01 moveto +7.327469e+01 1.950229e+01 lineto +7.126174e+01 1.956057e+01 lineto +7.149844e+01 2.062364e+01 lineto +7.358749e+01 2.056315e+01 lineto +closepath +gsave +6.942484e-01 6.942484e-01 8.678104e-01 setrgbcolor +fill +grestore +newpath +7.358749e+01 2.056315e+01 moveto +7.327469e+01 1.950229e+01 lineto +7.126174e+01 1.956057e+01 lineto +7.149844e+01 2.062364e+01 lineto +7.358749e+01 2.056315e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.389216e+01 2.16481e+01 moveto +7.358749e+01 2.056315e+01 lineto +7.149844e+01 2.062364e+01 lineto +7.172899e+01 2.171074e+01 lineto +7.389216e+01 2.16481e+01 lineto +closepath +gsave +6.965278e-01 6.965278e-01 8.706598e-01 setrgbcolor +fill +grestore +newpath +7.389216e+01 2.16481e+01 moveto +7.358749e+01 2.056315e+01 lineto +7.149844e+01 2.062364e+01 lineto +7.172899e+01 2.171074e+01 lineto +7.389216e+01 2.16481e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.41884e+01 2.275611e+01 moveto +7.389216e+01 2.16481e+01 lineto +7.172899e+01 2.171074e+01 lineto +7.195317e+01 2.282083e+01 lineto +7.41884e+01 2.275611e+01 lineto +closepath +gsave +6.986532e-01 6.986532e-01 8.733165e-01 setrgbcolor +fill +grestore +newpath +7.41884e+01 2.275611e+01 moveto +7.389216e+01 2.16481e+01 lineto +7.172899e+01 2.171074e+01 lineto +7.195317e+01 2.282083e+01 lineto +7.41884e+01 2.275611e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.447595e+01 2.388612e+01 moveto +7.41884e+01 2.275611e+01 lineto +7.195317e+01 2.282083e+01 lineto +7.217077e+01 2.395287e+01 lineto +7.447595e+01 2.388612e+01 lineto +closepath +gsave +7.006228e-01 7.006228e-01 8.757786e-01 setrgbcolor +fill +grestore +newpath +7.447595e+01 2.388612e+01 moveto +7.41884e+01 2.275611e+01 lineto +7.195317e+01 2.282083e+01 lineto +7.217077e+01 2.395287e+01 lineto +7.447595e+01 2.388612e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.475452e+01 2.503707e+01 moveto +7.447595e+01 2.388612e+01 lineto +7.217077e+01 2.395287e+01 lineto +7.238157e+01 2.510578e+01 lineto +7.475452e+01 2.503707e+01 lineto +closepath +gsave +7.02435e-01 7.02435e-01 8.780438e-01 setrgbcolor +fill +grestore +newpath +7.475452e+01 2.503707e+01 moveto +7.447595e+01 2.388612e+01 lineto +7.217077e+01 2.395287e+01 lineto +7.238157e+01 2.510578e+01 lineto +7.475452e+01 2.503707e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.502386e+01 2.620787e+01 moveto +7.475452e+01 2.503707e+01 lineto +7.238157e+01 2.510578e+01 lineto +7.258539e+01 2.627848e+01 lineto +7.502386e+01 2.620787e+01 lineto +closepath +gsave +7.040884e-01 7.040884e-01 8.801105e-01 setrgbcolor +fill +grestore +newpath +7.502386e+01 2.620787e+01 moveto +7.475452e+01 2.503707e+01 lineto +7.238157e+01 2.510578e+01 lineto +7.258539e+01 2.627848e+01 lineto +7.502386e+01 2.620787e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.528371e+01 2.739741e+01 moveto +7.502386e+01 2.620787e+01 lineto +7.258539e+01 2.627848e+01 lineto +7.278203e+01 2.746984e+01 lineto +7.528371e+01 2.739741e+01 lineto +closepath +gsave +7.055816e-01 7.055816e-01 8.819771e-01 setrgbcolor +fill +grestore +newpath +7.528371e+01 2.739741e+01 moveto +7.502386e+01 2.620787e+01 lineto +7.258539e+01 2.627848e+01 lineto +7.278203e+01 2.746984e+01 lineto +7.528371e+01 2.739741e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.553382e+01 2.860456e+01 moveto +7.528371e+01 2.739741e+01 lineto +7.278203e+01 2.746984e+01 lineto +7.29713e+01 2.867876e+01 lineto +7.553382e+01 2.860456e+01 lineto +closepath +gsave +7.069136e-01 7.069136e-01 8.83642e-01 setrgbcolor +fill +grestore +newpath +7.553382e+01 2.860456e+01 moveto +7.528371e+01 2.739741e+01 lineto +7.278203e+01 2.746984e+01 lineto +7.29713e+01 2.867876e+01 lineto +7.553382e+01 2.860456e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.577396e+01 2.982818e+01 moveto +7.553382e+01 2.860456e+01 lineto +7.29713e+01 2.867876e+01 lineto +7.315302e+01 2.990407e+01 lineto +7.577396e+01 2.982818e+01 lineto +closepath +gsave +7.080834e-01 7.080834e-01 8.851043e-01 setrgbcolor +fill +grestore +newpath +7.577396e+01 2.982818e+01 moveto +7.553382e+01 2.860456e+01 lineto +7.29713e+01 2.867876e+01 lineto +7.315302e+01 2.990407e+01 lineto +7.577396e+01 2.982818e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.60039e+01 3.106712e+01 moveto +7.577396e+01 2.982818e+01 lineto +7.315302e+01 2.990407e+01 lineto +7.332702e+01 3.114462e+01 lineto +7.60039e+01 3.106712e+01 lineto +closepath +gsave +7.090901e-01 7.090901e-01 8.863626e-01 setrgbcolor +fill +grestore +newpath +7.60039e+01 3.106712e+01 moveto +7.577396e+01 2.982818e+01 lineto +7.315302e+01 2.990407e+01 lineto +7.332702e+01 3.114462e+01 lineto +7.60039e+01 3.106712e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.622342e+01 3.232019e+01 moveto +7.60039e+01 3.106712e+01 lineto +7.332702e+01 3.114462e+01 lineto +7.349314e+01 3.239924e+01 lineto +7.622342e+01 3.232019e+01 lineto +closepath +gsave +7.09933e-01 7.09933e-01 8.874163e-01 setrgbcolor +fill +grestore +newpath +7.622342e+01 3.232019e+01 moveto +7.60039e+01 3.106712e+01 lineto +7.332702e+01 3.114462e+01 lineto +7.349314e+01 3.239924e+01 lineto +7.622342e+01 3.232019e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.643231e+01 3.358621e+01 moveto +7.622342e+01 3.232019e+01 lineto +7.349314e+01 3.239924e+01 lineto +7.365121e+01 3.366674e+01 lineto +7.643231e+01 3.358621e+01 lineto +closepath +gsave +7.106116e-01 7.106116e-01 8.882645e-01 setrgbcolor +fill +grestore +newpath +7.643231e+01 3.358621e+01 moveto +7.622342e+01 3.232019e+01 lineto +7.349314e+01 3.239924e+01 lineto +7.365121e+01 3.366674e+01 lineto +7.643231e+01 3.358621e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.663038e+01 3.486399e+01 moveto +7.643231e+01 3.358621e+01 lineto +7.365121e+01 3.366674e+01 lineto +7.38011e+01 3.494591e+01 lineto +7.663038e+01 3.486399e+01 lineto +closepath +gsave +7.111254e-01 7.111254e-01 8.889068e-01 setrgbcolor +fill +grestore +newpath +7.663038e+01 3.486399e+01 moveto +7.643231e+01 3.358621e+01 lineto +7.365121e+01 3.366674e+01 lineto +7.38011e+01 3.494591e+01 lineto +7.663038e+01 3.486399e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.681744e+01 3.615231e+01 moveto +7.663038e+01 3.486399e+01 lineto +7.38011e+01 3.494591e+01 lineto +7.394265e+01 3.623555e+01 lineto +7.681744e+01 3.615231e+01 lineto +closepath +gsave +7.114741e-01 7.114741e-01 8.893426e-01 setrgbcolor +fill +grestore +newpath +7.681744e+01 3.615231e+01 moveto +7.663038e+01 3.486399e+01 lineto +7.38011e+01 3.494591e+01 lineto +7.394265e+01 3.623555e+01 lineto +7.681744e+01 3.615231e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.69933e+01 3.744996e+01 moveto +7.681744e+01 3.615231e+01 lineto +7.394265e+01 3.623555e+01 lineto +7.407573e+01 3.753443e+01 lineto +7.69933e+01 3.744996e+01 lineto +closepath +gsave +7.116573e-01 7.116573e-01 8.895717e-01 setrgbcolor +fill +grestore +newpath +7.69933e+01 3.744996e+01 moveto +7.681744e+01 3.615231e+01 lineto +7.394265e+01 3.623555e+01 lineto +7.407573e+01 3.753443e+01 lineto +7.69933e+01 3.744996e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.715782e+01 3.87557e+01 moveto +7.69933e+01 3.744996e+01 lineto +7.407573e+01 3.753443e+01 lineto +7.420023e+01 3.884133e+01 lineto +7.715782e+01 3.87557e+01 lineto +closepath +gsave +7.116751e-01 7.116751e-01 8.895939e-01 setrgbcolor +fill +grestore +newpath +7.715782e+01 3.87557e+01 moveto +7.69933e+01 3.744996e+01 lineto +7.407573e+01 3.753443e+01 lineto +7.420023e+01 3.884133e+01 lineto +7.715782e+01 3.87557e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.731082e+01 4.00683e+01 moveto +7.715782e+01 3.87557e+01 lineto +7.420023e+01 3.884133e+01 lineto +7.431601e+01 4.015501e+01 lineto +7.731082e+01 4.00683e+01 lineto +closepath +gsave +7.115275e-01 7.115275e-01 8.894094e-01 setrgbcolor +fill +grestore +newpath +7.731082e+01 4.00683e+01 moveto +7.715782e+01 3.87557e+01 lineto +7.420023e+01 3.884133e+01 lineto +7.431601e+01 4.015501e+01 lineto +7.731082e+01 4.00683e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.745216e+01 4.138651e+01 moveto +7.731082e+01 4.00683e+01 lineto +7.431601e+01 4.015501e+01 lineto +7.442297e+01 4.147422e+01 lineto +7.745216e+01 4.138651e+01 lineto +closepath +gsave +7.112145e-01 7.112145e-01 8.890181e-01 setrgbcolor +fill +grestore +newpath +7.745216e+01 4.138651e+01 moveto +7.731082e+01 4.00683e+01 lineto +7.431601e+01 4.015501e+01 lineto +7.442297e+01 4.147422e+01 lineto +7.745216e+01 4.138651e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.53085e+01 4.330188e+00 moveto +6.5001e+01 4.001005e+00 lineto +6.500067e+01 4.001008e+00 lineto +6.520742e+01 4.331148e+00 lineto +6.53085e+01 4.330188e+00 lineto +closepath +gsave +6.116218e-01 6.116218e-01 7.645273e-01 setrgbcolor +fill +grestore +newpath +6.53085e+01 4.330188e+00 moveto +6.5001e+01 4.001005e+00 lineto +6.500067e+01 4.001008e+00 lineto +6.520742e+01 4.331148e+00 lineto +6.53085e+01 4.330188e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.56157e+01 4.698825e+00 moveto +6.53085e+01 4.330188e+00 lineto +6.520742e+01 4.331148e+00 lineto +6.541398e+01 4.700739e+00 lineto +6.56157e+01 4.698825e+00 lineto +closepath +gsave +6.168772e-01 6.168772e-01 7.710965e-01 setrgbcolor +fill +grestore +newpath +6.56157e+01 4.698825e+00 moveto +6.53085e+01 4.330188e+00 lineto +6.520742e+01 4.331148e+00 lineto +6.541398e+01 4.700739e+00 lineto +6.56157e+01 4.698825e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.592233e+01 5.106566e+00 moveto +6.56157e+01 4.698825e+00 lineto +6.541398e+01 4.700739e+00 lineto +6.562014e+01 5.109434e+00 lineto +6.592233e+01 5.106566e+00 lineto +closepath +gsave +6.220749e-01 6.220749e-01 7.775937e-01 setrgbcolor +fill +grestore +newpath +6.592233e+01 5.106566e+00 moveto +6.56157e+01 4.698825e+00 lineto +6.541398e+01 4.700739e+00 lineto +6.562014e+01 5.109434e+00 lineto +6.592233e+01 5.106566e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.622808e+01 5.553026e+00 moveto +6.592233e+01 5.106566e+00 lineto +6.562014e+01 5.109434e+00 lineto +6.582572e+01 5.556844e+00 lineto +6.622808e+01 5.553026e+00 lineto +closepath +gsave +6.272076e-01 6.272076e-01 7.840095e-01 setrgbcolor +fill +grestore +newpath +6.622808e+01 5.553026e+00 moveto +6.592233e+01 5.106566e+00 lineto +6.562014e+01 5.109434e+00 lineto +6.582572e+01 5.556844e+00 lineto +6.622808e+01 5.553026e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.653267e+01 6.037781e+00 moveto +6.622808e+01 5.553026e+00 lineto +6.582572e+01 5.556844e+00 lineto +6.603051e+01 6.042546e+00 lineto +6.653267e+01 6.037781e+00 lineto +closepath +gsave +6.322678e-01 6.322678e-01 7.903348e-01 setrgbcolor +fill +grestore +newpath +6.653267e+01 6.037781e+00 moveto +6.622808e+01 5.553026e+00 lineto +6.582572e+01 5.556844e+00 lineto +6.603051e+01 6.042546e+00 lineto +6.653267e+01 6.037781e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.68358e+01 6.560372e+00 moveto +6.653267e+01 6.037781e+00 lineto +6.603051e+01 6.042546e+00 lineto +6.623433e+01 6.56608e+00 lineto +6.68358e+01 6.560372e+00 lineto +closepath +gsave +6.372485e-01 6.372485e-01 7.965607e-01 setrgbcolor +fill +grestore +newpath +6.68358e+01 6.560372e+00 moveto +6.653267e+01 6.037781e+00 lineto +6.603051e+01 6.042546e+00 lineto +6.623433e+01 6.56608e+00 lineto +6.68358e+01 6.560372e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.71372e+01 7.120306e+00 moveto +6.68358e+01 6.560372e+00 lineto +6.623433e+01 6.56608e+00 lineto +6.643698e+01 7.12695e+00 lineto +6.71372e+01 7.120306e+00 lineto +closepath +gsave +6.421428e-01 6.421428e-01 8.026785e-01 setrgbcolor +fill +grestore +newpath +6.71372e+01 7.120306e+00 moveto +6.68358e+01 6.560372e+00 lineto +6.623433e+01 6.56608e+00 lineto +6.643698e+01 7.12695e+00 lineto +6.71372e+01 7.120306e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.743658e+01 7.717051e+00 moveto +6.71372e+01 7.120306e+00 lineto +6.643698e+01 7.12695e+00 lineto +6.663827e+01 7.724626e+00 lineto +6.743658e+01 7.717051e+00 lineto +closepath +gsave +6.46944e-01 6.46944e-01 8.0868e-01 setrgbcolor +fill +grestore +newpath +6.743658e+01 7.717051e+00 moveto +6.71372e+01 7.120306e+00 lineto +6.643698e+01 7.12695e+00 lineto +6.663827e+01 7.724626e+00 lineto +6.743658e+01 7.717051e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.773364e+01 8.350042e+00 moveto +6.743658e+01 7.717051e+00 lineto +6.663827e+01 7.724626e+00 lineto +6.683801e+01 8.358541e+00 lineto +6.773364e+01 8.350042e+00 lineto +closepath +gsave +6.516458e-01 6.516458e-01 8.145572e-01 setrgbcolor +fill +grestore +newpath +6.773364e+01 8.350042e+00 moveto +6.743658e+01 7.717051e+00 lineto +6.663827e+01 7.724626e+00 lineto +6.683801e+01 8.358541e+00 lineto +6.773364e+01 8.350042e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.802812e+01 9.018681e+00 moveto +6.773364e+01 8.350042e+00 lineto +6.683801e+01 8.358541e+00 lineto +6.7036e+01 9.028096e+00 lineto +6.802812e+01 9.018681e+00 lineto +closepath +gsave +6.56242e-01 6.56242e-01 8.203024e-01 setrgbcolor +fill +grestore +newpath +6.802812e+01 9.018681e+00 moveto +6.773364e+01 8.350042e+00 lineto +6.683801e+01 8.358541e+00 lineto +6.7036e+01 9.028096e+00 lineto +6.802812e+01 9.018681e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.831974e+01 9.722335e+00 moveto +6.802812e+01 9.018681e+00 lineto +6.7036e+01 9.028096e+00 lineto +6.723208e+01 9.732656e+00 lineto +6.831974e+01 9.722335e+00 lineto +closepath +gsave +6.607267e-01 6.607267e-01 8.259084e-01 setrgbcolor +fill +grestore +newpath +6.831974e+01 9.722335e+00 moveto +6.802812e+01 9.018681e+00 lineto +6.7036e+01 9.028096e+00 lineto +6.723208e+01 9.732656e+00 lineto +6.831974e+01 9.722335e+00 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.86082e+01 1.046034e+01 moveto +6.831974e+01 9.722335e+00 lineto +6.723208e+01 9.732656e+00 lineto +6.742603e+01 1.047155e+01 lineto +6.86082e+01 1.046034e+01 lineto +closepath +gsave +6.650944e-01 6.650944e-01 8.31368e-01 setrgbcolor +fill +grestore +newpath +6.86082e+01 1.046034e+01 moveto +6.831974e+01 9.722335e+00 lineto +6.723208e+01 9.732656e+00 lineto +6.742603e+01 1.047155e+01 lineto +6.86082e+01 1.046034e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.889326e+01 1.123199e+01 moveto +6.86082e+01 1.046034e+01 lineto +6.742603e+01 1.047155e+01 lineto +6.761769e+01 1.124409e+01 lineto +6.889326e+01 1.123199e+01 lineto +closepath +gsave +6.693398e-01 6.693398e-01 8.366748e-01 setrgbcolor +fill +grestore +newpath +6.889326e+01 1.123199e+01 moveto +6.86082e+01 1.046034e+01 lineto +6.742603e+01 1.047155e+01 lineto +6.761769e+01 1.124409e+01 lineto +6.889326e+01 1.123199e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.917462e+01 1.203656e+01 moveto +6.889326e+01 1.123199e+01 lineto +6.761769e+01 1.124409e+01 lineto +6.780687e+01 1.204954e+01 lineto +6.917462e+01 1.203656e+01 lineto +closepath +gsave +6.734579e-01 6.734579e-01 8.418224e-01 setrgbcolor +fill +grestore +newpath +6.917462e+01 1.203656e+01 moveto +6.889326e+01 1.123199e+01 lineto +6.761769e+01 1.124409e+01 lineto +6.780687e+01 1.204954e+01 lineto +6.917462e+01 1.203656e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.945204e+01 1.287328e+01 moveto +6.917462e+01 1.203656e+01 lineto +6.780687e+01 1.204954e+01 lineto +6.79934e+01 1.288712e+01 lineto +6.945204e+01 1.287328e+01 lineto +closepath +gsave +6.77444e-01 6.77444e-01 8.46805e-01 setrgbcolor +fill +grestore +newpath +6.945204e+01 1.287328e+01 moveto +6.917462e+01 1.203656e+01 lineto +6.780687e+01 1.204954e+01 lineto +6.79934e+01 1.288712e+01 lineto +6.945204e+01 1.287328e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.972524e+01 1.374137e+01 moveto +6.945204e+01 1.287328e+01 lineto +6.79934e+01 1.288712e+01 lineto +6.817709e+01 1.375606e+01 lineto +6.972524e+01 1.374137e+01 lineto +closepath +gsave +6.812936e-01 6.812936e-01 8.516169e-01 setrgbcolor +fill +grestore +newpath +6.972524e+01 1.374137e+01 moveto +6.945204e+01 1.287328e+01 lineto +6.79934e+01 1.288712e+01 lineto +6.817709e+01 1.375606e+01 lineto +6.972524e+01 1.374137e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +6.999396e+01 1.464001e+01 moveto +6.972524e+01 1.374137e+01 lineto +6.817709e+01 1.375606e+01 lineto +6.835777e+01 1.465553e+01 lineto +6.999396e+01 1.464001e+01 lineto +closepath +gsave +6.850025e-01 6.850025e-01 8.562531e-01 setrgbcolor +fill +grestore +newpath +6.999396e+01 1.464001e+01 moveto +6.972524e+01 1.374137e+01 lineto +6.817709e+01 1.375606e+01 lineto +6.835777e+01 1.465553e+01 lineto +6.999396e+01 1.464001e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.025796e+01 1.556833e+01 moveto +6.999396e+01 1.464001e+01 lineto +6.835777e+01 1.465553e+01 lineto +6.853527e+01 1.558468e+01 lineto +7.025796e+01 1.556833e+01 lineto +closepath +gsave +6.885669e-01 6.885669e-01 8.607086e-01 setrgbcolor +fill +grestore +newpath +7.025796e+01 1.556833e+01 moveto +6.999396e+01 1.464001e+01 lineto +6.835777e+01 1.465553e+01 lineto +6.853527e+01 1.558468e+01 lineto +7.025796e+01 1.556833e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.051698e+01 1.652547e+01 moveto +7.025796e+01 1.556833e+01 lineto +6.853527e+01 1.558468e+01 lineto +6.870943e+01 1.654262e+01 lineto +7.051698e+01 1.652547e+01 lineto +closepath +gsave +6.919832e-01 6.919832e-01 8.64979e-01 setrgbcolor +fill +grestore +newpath +7.051698e+01 1.652547e+01 moveto +7.025796e+01 1.556833e+01 lineto +6.853527e+01 1.558468e+01 lineto +6.870943e+01 1.654262e+01 lineto +7.051698e+01 1.652547e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.077077e+01 1.751052e+01 moveto +7.051698e+01 1.652547e+01 lineto +6.870943e+01 1.654262e+01 lineto +6.888007e+01 1.752846e+01 lineto +7.077077e+01 1.751052e+01 lineto +closepath +gsave +6.952481e-01 6.952481e-01 8.690601e-01 setrgbcolor +fill +grestore +newpath +7.077077e+01 1.751052e+01 moveto +7.051698e+01 1.652547e+01 lineto +6.870943e+01 1.654262e+01 lineto +6.888007e+01 1.752846e+01 lineto +7.077077e+01 1.751052e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.10191e+01 1.852254e+01 moveto +7.077077e+01 1.751052e+01 lineto +6.888007e+01 1.752846e+01 lineto +6.904704e+01 1.854125e+01 lineto +7.10191e+01 1.852254e+01 lineto +closepath +gsave +6.983584e-01 6.983584e-01 8.72948e-01 setrgbcolor +fill +grestore +newpath +7.10191e+01 1.852254e+01 moveto +7.077077e+01 1.751052e+01 lineto +6.888007e+01 1.752846e+01 lineto +6.904704e+01 1.854125e+01 lineto +7.10191e+01 1.852254e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.126174e+01 1.956057e+01 moveto +7.10191e+01 1.852254e+01 lineto +6.904704e+01 1.854125e+01 lineto +6.921017e+01 1.958004e+01 lineto +7.126174e+01 1.956057e+01 lineto +closepath +gsave +7.013113e-01 7.013113e-01 8.766391e-01 setrgbcolor +fill +grestore +newpath +7.126174e+01 1.956057e+01 moveto +7.10191e+01 1.852254e+01 lineto +6.904704e+01 1.854125e+01 lineto +6.921017e+01 1.958004e+01 lineto +7.126174e+01 1.956057e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.149844e+01 2.062364e+01 moveto +7.126174e+01 1.956057e+01 lineto +6.921017e+01 1.958004e+01 lineto +6.936933e+01 2.064384e+01 lineto +7.149844e+01 2.062364e+01 lineto +closepath +gsave +7.041043e-01 7.041043e-01 8.801304e-01 setrgbcolor +fill +grestore +newpath +7.149844e+01 2.062364e+01 moveto +7.126174e+01 1.956057e+01 lineto +6.921017e+01 1.958004e+01 lineto +6.936933e+01 2.064384e+01 lineto +7.149844e+01 2.062364e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.172899e+01 2.171074e+01 moveto +7.149844e+01 2.062364e+01 lineto +6.936933e+01 2.064384e+01 lineto +6.952434e+01 2.173166e+01 lineto +7.172899e+01 2.171074e+01 lineto +closepath +gsave +7.067349e-01 7.067349e-01 8.834187e-01 setrgbcolor +fill +grestore +newpath +7.172899e+01 2.171074e+01 moveto +7.149844e+01 2.062364e+01 lineto +6.936933e+01 2.064384e+01 lineto +6.952434e+01 2.173166e+01 lineto +7.172899e+01 2.171074e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.195317e+01 2.282083e+01 moveto +7.172899e+01 2.171074e+01 lineto +6.952434e+01 2.173166e+01 lineto +6.967507e+01 2.284245e+01 lineto +7.195317e+01 2.282083e+01 lineto +closepath +gsave +7.092011e-01 7.092011e-01 8.865014e-01 setrgbcolor +fill +grestore +newpath +7.195317e+01 2.282083e+01 moveto +7.172899e+01 2.171074e+01 lineto +6.952434e+01 2.173166e+01 lineto +6.967507e+01 2.284245e+01 lineto +7.195317e+01 2.282083e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.217077e+01 2.395287e+01 moveto +7.195317e+01 2.282083e+01 lineto +6.967507e+01 2.284245e+01 lineto +6.982138e+01 2.397516e+01 lineto +7.217077e+01 2.395287e+01 lineto +closepath +gsave +7.115009e-01 7.115009e-01 8.893762e-01 setrgbcolor +fill +grestore +newpath +7.217077e+01 2.395287e+01 moveto +7.195317e+01 2.282083e+01 lineto +6.967507e+01 2.284245e+01 lineto +6.982138e+01 2.397516e+01 lineto +7.217077e+01 2.395287e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.238157e+01 2.510578e+01 moveto +7.217077e+01 2.395287e+01 lineto +6.982138e+01 2.397516e+01 lineto +6.996311e+01 2.512873e+01 lineto +7.238157e+01 2.510578e+01 lineto +closepath +gsave +7.136326e-01 7.136326e-01 8.920408e-01 setrgbcolor +fill +grestore +newpath +7.238157e+01 2.510578e+01 moveto +7.217077e+01 2.395287e+01 lineto +6.982138e+01 2.397516e+01 lineto +6.996311e+01 2.512873e+01 lineto +7.238157e+01 2.510578e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.258539e+01 2.627848e+01 moveto +7.238157e+01 2.510578e+01 lineto +6.996311e+01 2.512873e+01 lineto +7.010016e+01 2.630206e+01 lineto +7.258539e+01 2.627848e+01 lineto +closepath +gsave +7.155946e-01 7.155946e-01 8.944932e-01 setrgbcolor +fill +grestore +newpath +7.258539e+01 2.627848e+01 moveto +7.238157e+01 2.510578e+01 lineto +6.996311e+01 2.512873e+01 lineto +7.010016e+01 2.630206e+01 lineto +7.258539e+01 2.627848e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.278203e+01 2.746984e+01 moveto +7.258539e+01 2.627848e+01 lineto +7.010016e+01 2.630206e+01 lineto +7.023237e+01 2.749404e+01 lineto +7.278203e+01 2.746984e+01 lineto +closepath +gsave +7.173855e-01 7.173855e-01 8.967319e-01 setrgbcolor +fill +grestore +newpath +7.278203e+01 2.746984e+01 moveto +7.258539e+01 2.627848e+01 lineto +7.010016e+01 2.630206e+01 lineto +7.023237e+01 2.749404e+01 lineto +7.278203e+01 2.746984e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.29713e+01 2.867876e+01 moveto +7.278203e+01 2.746984e+01 lineto +7.023237e+01 2.749404e+01 lineto +7.035962e+01 2.870354e+01 lineto +7.29713e+01 2.867876e+01 lineto +closepath +gsave +7.190042e-01 7.190042e-01 8.987552e-01 setrgbcolor +fill +grestore +newpath +7.29713e+01 2.867876e+01 moveto +7.278203e+01 2.746984e+01 lineto +7.023237e+01 2.749404e+01 lineto +7.035962e+01 2.870354e+01 lineto +7.29713e+01 2.867876e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.315302e+01 2.990407e+01 moveto +7.29713e+01 2.867876e+01 lineto +7.035962e+01 2.870354e+01 lineto +7.048181e+01 2.992942e+01 lineto +7.315302e+01 2.990407e+01 lineto +closepath +gsave +7.204495e-01 7.204495e-01 9.005618e-01 setrgbcolor +fill +grestore +newpath +7.315302e+01 2.990407e+01 moveto +7.29713e+01 2.867876e+01 lineto +7.035962e+01 2.870354e+01 lineto +7.048181e+01 2.992942e+01 lineto +7.315302e+01 2.990407e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.332702e+01 3.114462e+01 moveto +7.315302e+01 2.990407e+01 lineto +7.048181e+01 2.992942e+01 lineto +7.05988e+01 3.117051e+01 lineto +7.332702e+01 3.114462e+01 lineto +closepath +gsave +7.217206e-01 7.217206e-01 9.021507e-01 setrgbcolor +fill +grestore +newpath +7.332702e+01 3.114462e+01 moveto +7.315302e+01 2.990407e+01 lineto +7.048181e+01 2.992942e+01 lineto +7.05988e+01 3.117051e+01 lineto +7.332702e+01 3.114462e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.349314e+01 3.239924e+01 moveto +7.332702e+01 3.114462e+01 lineto +7.05988e+01 3.117051e+01 lineto +7.071049e+01 3.242565e+01 lineto +7.349314e+01 3.239924e+01 lineto +closepath +gsave +7.228166e-01 7.228166e-01 9.035208e-01 setrgbcolor +fill +grestore +newpath +7.349314e+01 3.239924e+01 moveto +7.332702e+01 3.114462e+01 lineto +7.05988e+01 3.117051e+01 lineto +7.071049e+01 3.242565e+01 lineto +7.349314e+01 3.239924e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.365121e+01 3.366674e+01 moveto +7.349314e+01 3.239924e+01 lineto +7.071049e+01 3.242565e+01 lineto +7.081678e+01 3.369363e+01 lineto +7.365121e+01 3.366674e+01 lineto +closepath +gsave +7.23737e-01 7.23737e-01 9.046713e-01 setrgbcolor +fill +grestore +newpath +7.365121e+01 3.366674e+01 moveto +7.349314e+01 3.239924e+01 lineto +7.071049e+01 3.242565e+01 lineto +7.081678e+01 3.369363e+01 lineto +7.365121e+01 3.366674e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.38011e+01 3.494591e+01 moveto +7.365121e+01 3.366674e+01 lineto +7.081678e+01 3.369363e+01 lineto +7.091755e+01 3.497327e+01 lineto +7.38011e+01 3.494591e+01 lineto +closepath +gsave +7.244812e-01 7.244812e-01 9.056015e-01 setrgbcolor +fill +grestore +newpath +7.38011e+01 3.494591e+01 moveto +7.365121e+01 3.366674e+01 lineto +7.081678e+01 3.369363e+01 lineto +7.091755e+01 3.497327e+01 lineto +7.38011e+01 3.494591e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.394265e+01 3.623555e+01 moveto +7.38011e+01 3.494591e+01 lineto +7.091755e+01 3.497327e+01 lineto +7.101273e+01 3.626335e+01 lineto +7.394265e+01 3.623555e+01 lineto +closepath +gsave +7.250488e-01 7.250488e-01 9.06311e-01 setrgbcolor +fill +grestore +newpath +7.394265e+01 3.623555e+01 moveto +7.38011e+01 3.494591e+01 lineto +7.091755e+01 3.497327e+01 lineto +7.101273e+01 3.626335e+01 lineto +7.394265e+01 3.623555e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.407573e+01 3.753443e+01 moveto +7.394265e+01 3.623555e+01 lineto +7.101273e+01 3.626335e+01 lineto +7.110221e+01 3.756265e+01 lineto +7.407573e+01 3.753443e+01 lineto +closepath +gsave +7.254395e-01 7.254395e-01 9.067993e-01 setrgbcolor +fill +grestore +newpath +7.407573e+01 3.753443e+01 moveto +7.394265e+01 3.623555e+01 lineto +7.101273e+01 3.626335e+01 lineto +7.110221e+01 3.756265e+01 lineto +7.407573e+01 3.753443e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.420023e+01 3.884133e+01 moveto +7.407573e+01 3.753443e+01 lineto +7.110221e+01 3.756265e+01 lineto +7.118591e+01 3.886993e+01 lineto +7.420023e+01 3.884133e+01 lineto +closepath +gsave +7.25653e-01 7.25653e-01 9.070663e-01 setrgbcolor +fill +grestore +newpath +7.420023e+01 3.884133e+01 moveto +7.407573e+01 3.753443e+01 lineto +7.110221e+01 3.756265e+01 lineto +7.118591e+01 3.886993e+01 lineto +7.420023e+01 3.884133e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.431601e+01 4.015501e+01 moveto +7.420023e+01 3.884133e+01 lineto +7.118591e+01 3.886993e+01 lineto +7.126376e+01 4.018397e+01 lineto +7.431601e+01 4.015501e+01 lineto +closepath +gsave +7.256893e-01 7.256893e-01 9.071116e-01 setrgbcolor +fill +grestore +newpath +7.431601e+01 4.015501e+01 moveto +7.420023e+01 3.884133e+01 lineto +7.118591e+01 3.886993e+01 lineto +7.126376e+01 4.018397e+01 lineto +7.431601e+01 4.015501e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +newpath +7.442297e+01 4.147422e+01 moveto +7.431601e+01 4.015501e+01 lineto +7.126376e+01 4.018397e+01 lineto +7.133568e+01 4.150352e+01 lineto +7.442297e+01 4.147422e+01 lineto +closepath +gsave +7.255484e-01 7.255484e-01 9.069355e-01 setrgbcolor +fill +grestore +newpath +7.442297e+01 4.147422e+01 moveto +7.431601e+01 4.015501e+01 lineto +7.126376e+01 4.018397e+01 lineto +7.133568e+01 4.150352e+01 lineto +7.442297e+01 4.147422e+01 lineto +closepath +gsave +5.0e-01 5.0e-01 5.0e-01 setrgbcolor +stroke +grestore +1.0e-01 setlinewidth +newpath +2.649044e+01 2.627254e+01 moveto +2.705514e+01 2.51388e+01 lineto +2.740169e+01 2.445721e+01 lineto +2.684215e+01 2.558081e+01 lineto +2.649044e+01 2.627254e+01 lineto +closepath +gsave +4.339654e-01 4.339654e-01 5.424567e-01 setrgbcolor +fill +grestore +newpath +2.59622e+01 2.742496e+01 moveto +2.649044e+01 2.627254e+01 lineto +2.684215e+01 2.558081e+01 lineto +2.631874e+01 2.672374e+01 lineto +2.59622e+01 2.742496e+01 lineto +closepath +gsave +4.341823e-01 4.341823e-01 5.427278e-01 setrgbcolor +fill +grestore +newpath +2.547093e+01 2.859496e+01 moveto +2.59622e+01 2.742496e+01 lineto +2.631874e+01 2.672374e+01 lineto +2.583195e+01 2.788492e+01 lineto +2.547093e+01 2.859496e+01 lineto +closepath +gsave +4.344716e-01 4.344716e-01 5.430895e-01 setrgbcolor +fill +grestore +newpath +2.501708e+01 2.978145e+01 moveto +2.547093e+01 2.859496e+01 lineto +2.583195e+01 2.788492e+01 lineto +2.538225e+01 2.906325e+01 lineto +2.501708e+01 2.978145e+01 lineto +closepath +gsave +4.348339e-01 4.348339e-01 5.435424e-01 setrgbcolor +fill +grestore +newpath +3.148563e+01 1.817978e+01 moveto +3.228138e+01 1.722015e+01 lineto +3.278468e+01 1.664198e+01 lineto +3.200117e+01 1.758755e+01 lineto +3.148563e+01 1.817978e+01 lineto +closepath +gsave +4.42271e-01 4.42271e-01 5.528387e-01 setrgbcolor +fill +grestore +newpath +3.072161e+01 1.916575e+01 moveto +3.148563e+01 1.817978e+01 lineto +3.200117e+01 1.758755e+01 lineto +3.12489e+01 1.856001e+01 lineto +3.072161e+01 1.916575e+01 lineto +closepath +gsave +4.421493e-01 4.421493e-01 5.526866e-01 setrgbcolor +fill +grestore +newpath +2.999004e+01 2.017713e+01 moveto +3.072161e+01 1.916575e+01 lineto +3.12489e+01 1.856001e+01 lineto +3.052858e+01 1.955846e+01 lineto +2.999004e+01 2.017713e+01 lineto +closepath +gsave +4.420983e-01 4.420983e-01 5.526228e-01 setrgbcolor +fill +grestore +newpath +2.929162e+01 2.121295e+01 moveto +2.999004e+01 2.017713e+01 lineto +3.052858e+01 1.955846e+01 lineto +2.984091e+01 2.058195e+01 lineto +2.929162e+01 2.121295e+01 lineto +closepath +gsave +4.421178e-01 4.421178e-01 5.526472e-01 setrgbcolor +fill +grestore +newpath +2.862701e+01 2.227225e+01 moveto +2.929162e+01 2.121295e+01 lineto +2.984091e+01 2.058195e+01 lineto +2.918652e+01 2.16295e+01 lineto +2.862701e+01 2.227225e+01 lineto +closepath +gsave +4.422078e-01 4.422078e-01 5.527598e-01 setrgbcolor +fill +grestore +newpath +2.799683e+01 2.335401e+01 moveto +2.862701e+01 2.227225e+01 lineto +2.918652e+01 2.16295e+01 lineto +2.856604e+01 2.270012e+01 lineto +2.799683e+01 2.335401e+01 lineto +closepath +gsave +4.423685e-01 4.423685e-01 5.529606e-01 setrgbcolor +fill +grestore +newpath +2.740169e+01 2.445721e+01 moveto +2.799683e+01 2.335401e+01 lineto +2.856604e+01 2.270012e+01 lineto +2.798006e+01 2.37928e+01 lineto +2.740169e+01 2.445721e+01 lineto +closepath +gsave +4.426e-01 4.426e-01 5.5325e-01 setrgbcolor +fill +grestore +newpath +2.684215e+01 2.558081e+01 moveto +2.740169e+01 2.445721e+01 lineto +2.798006e+01 2.37928e+01 lineto +2.742912e+01 2.490651e+01 lineto +2.684215e+01 2.558081e+01 lineto +closepath +gsave +4.429026e-01 4.429026e-01 5.536283e-01 setrgbcolor +fill +grestore +newpath +2.631874e+01 2.672374e+01 moveto +2.684215e+01 2.558081e+01 lineto +2.742912e+01 2.490651e+01 lineto +2.691376e+01 2.60402e+01 lineto +2.631874e+01 2.672374e+01 lineto +closepath +gsave +4.432767e-01 4.432767e-01 5.540959e-01 setrgbcolor +fill +grestore +newpath +2.583195e+01 2.788492e+01 moveto +2.631874e+01 2.672374e+01 lineto +2.691376e+01 2.60402e+01 lineto +2.643446e+01 2.719278e+01 lineto +2.583195e+01 2.788492e+01 lineto +closepath +gsave +4.437226e-01 4.437226e-01 5.546532e-01 setrgbcolor +fill +grestore +newpath +2.538225e+01 2.906325e+01 moveto +2.583195e+01 2.788492e+01 lineto +2.643446e+01 2.719278e+01 lineto +2.599168e+01 2.836316e+01 lineto +2.538225e+01 2.906325e+01 lineto +closepath +gsave +4.442408e-01 4.442408e-01 5.55301e-01 setrgbcolor +fill +grestore +newpath +3.714395e+01 1.234806e+01 moveto +3.809836e+01 1.158175e+01 lineto +3.86845e+01 1.111441e+01 lineto +3.775089e+01 1.186413e+01 lineto +3.714395e+01 1.234806e+01 lineto +closepath +gsave +4.519955e-01 4.519955e-01 5.649944e-01 setrgbcolor +fill +grestore +newpath +3.621591e+01 1.314623e+01 moveto +3.714395e+01 1.234806e+01 lineto +3.775089e+01 1.186413e+01 lineto +3.684307e+01 1.264618e+01 lineto +3.621591e+01 1.314623e+01 lineto +closepath +gsave +4.51672e-01 4.51672e-01 5.645901e-01 setrgbcolor +fill +grestore +newpath +3.531513e+01 1.397551e+01 moveto +3.621591e+01 1.314623e+01 lineto +3.684307e+01 1.264618e+01 lineto +3.596191e+01 1.345981e+01 lineto +3.531513e+01 1.397551e+01 lineto +closepath +gsave +4.514167e-01 4.514167e-01 5.642709e-01 setrgbcolor +fill +grestore +newpath +3.444245e+01 1.48351e+01 moveto +3.531513e+01 1.397551e+01 lineto +3.596191e+01 1.345981e+01 lineto +3.510824e+01 1.430425e+01 lineto +3.444245e+01 1.48351e+01 lineto +closepath +gsave +4.512293e-01 4.512293e-01 5.640367e-01 setrgbcolor +fill +grestore +newpath +3.35987e+01 1.572421e+01 moveto +3.444245e+01 1.48351e+01 lineto +3.510824e+01 1.430425e+01 lineto +3.428288e+01 1.517869e+01 lineto +3.35987e+01 1.572421e+01 lineto +closepath +gsave +4.511098e-01 4.511098e-01 5.638872e-01 setrgbcolor +fill +grestore +newpath +3.278468e+01 1.664198e+01 moveto +3.35987e+01 1.572421e+01 lineto +3.428288e+01 1.517869e+01 lineto +3.34866e+01 1.608232e+01 lineto +3.278468e+01 1.664198e+01 lineto +closepath +gsave +4.510579e-01 4.510579e-01 5.638224e-01 setrgbcolor +fill +grestore +newpath +3.200117e+01 1.758755e+01 moveto +3.278468e+01 1.664198e+01 lineto +3.34866e+01 1.608232e+01 lineto +3.272016e+01 1.701428e+01 lineto +3.200117e+01 1.758755e+01 lineto +closepath +gsave +4.510737e-01 4.510737e-01 5.638421e-01 setrgbcolor +fill +grestore +newpath +3.12489e+01 1.856001e+01 moveto +3.200117e+01 1.758755e+01 lineto +3.272016e+01 1.701428e+01 lineto +3.198428e+01 1.797368e+01 lineto +3.12489e+01 1.856001e+01 lineto +closepath +gsave +4.511572e-01 4.511572e-01 5.639465e-01 setrgbcolor +fill +grestore +newpath +3.052858e+01 1.955846e+01 moveto +3.12489e+01 1.856001e+01 lineto +3.198428e+01 1.797368e+01 lineto +3.127966e+01 1.895961e+01 lineto +3.052858e+01 1.955846e+01 lineto +closepath +gsave +4.513084e-01 4.513084e-01 5.641355e-01 setrgbcolor +fill +grestore +newpath +2.984091e+01 2.058195e+01 moveto +3.052858e+01 1.955846e+01 lineto +3.127966e+01 1.895961e+01 lineto +3.060696e+01 1.997115e+01 lineto +2.984091e+01 2.058195e+01 lineto +closepath +gsave +4.515274e-01 4.515274e-01 5.644092e-01 setrgbcolor +fill +grestore +newpath +2.918652e+01 2.16295e+01 moveto +2.984091e+01 2.058195e+01 lineto +3.060696e+01 1.997115e+01 lineto +2.996683e+01 2.100733e+01 lineto +2.918652e+01 2.16295e+01 lineto +closepath +gsave +4.518143e-01 4.518143e-01 5.647679e-01 setrgbcolor +fill +grestore +newpath +2.856604e+01 2.270012e+01 moveto +2.918652e+01 2.16295e+01 lineto +2.996683e+01 2.100733e+01 lineto +2.935987e+01 2.206717e+01 lineto +2.856604e+01 2.270012e+01 lineto +closepath +gsave +4.521694e-01 4.521694e-01 5.652118e-01 setrgbcolor +fill +grestore +newpath +2.798006e+01 2.37928e+01 moveto +2.856604e+01 2.270012e+01 lineto +2.935987e+01 2.206717e+01 lineto +2.878666e+01 2.314968e+01 lineto +2.798006e+01 2.37928e+01 lineto +closepath +gsave +4.525929e-01 4.525929e-01 5.657411e-01 setrgbcolor +fill +grestore +newpath +2.742912e+01 2.490651e+01 moveto +2.798006e+01 2.37928e+01 lineto +2.878666e+01 2.314968e+01 lineto +2.824773e+01 2.425382e+01 lineto +2.742912e+01 2.490651e+01 lineto +closepath +gsave +4.53085e-01 4.53085e-01 5.663562e-01 setrgbcolor +fill +grestore +newpath +2.691376e+01 2.60402e+01 moveto +2.742912e+01 2.490651e+01 lineto +2.824773e+01 2.425382e+01 lineto +2.77436e+01 2.537855e+01 lineto +2.691376e+01 2.60402e+01 lineto +closepath +gsave +4.536459e-01 4.536459e-01 5.670574e-01 setrgbcolor +fill +grestore +newpath +2.643446e+01 2.719278e+01 moveto +2.691376e+01 2.60402e+01 lineto +2.77436e+01 2.537855e+01 lineto +2.727474e+01 2.65228e+01 lineto +2.643446e+01 2.719278e+01 lineto +closepath +gsave +4.542761e-01 4.542761e-01 5.678451e-01 setrgbcolor +fill +grestore +newpath +2.599168e+01 2.836316e+01 moveto +2.643446e+01 2.719278e+01 lineto +2.727474e+01 2.65228e+01 lineto +2.68416e+01 2.768549e+01 lineto +2.599168e+01 2.836316e+01 lineto +closepath +gsave +4.549758e-01 4.549758e-01 5.687198e-01 setrgbcolor +fill +grestore +newpath +4.062558e+01 9.714719e+00 moveto +4.16312e+01 9.066085e+00 lineto +4.229578e+01 8.667361e+00 lineto +4.131876e+01 9.298837e+00 lineto +4.062558e+01 9.714719e+00 lineto +closepath +gsave +4.607496e-01 4.607496e-01 5.75937e-01 setrgbcolor +fill +grestore +newpath +3.964304e+01 1.039771e+01 moveto +4.062558e+01 9.714719e+00 lineto +4.131876e+01 9.298837e+00 lineto +4.036416e+01 9.965062e+00 lineto +3.964304e+01 1.039771e+01 lineto +closepath +gsave +4.605057e-01 4.605057e-01 5.756321e-01 setrgbcolor +fill +grestore +newpath +3.86845e+01 1.111441e+01 moveto +3.964304e+01 1.039771e+01 lineto +4.036416e+01 9.965062e+00 lineto +3.943289e+01 1.06654e+01 lineto +3.86845e+01 1.111441e+01 lineto +closepath +gsave +4.603253e-01 4.603253e-01 5.754067e-01 setrgbcolor +fill +grestore +newpath +3.775089e+01 1.186413e+01 moveto +3.86845e+01 1.111441e+01 lineto +3.943289e+01 1.06654e+01 lineto +3.852582e+01 1.13992e+01 lineto +3.775089e+01 1.186413e+01 lineto +closepath +gsave +4.602086e-01 4.602086e-01 5.752607e-01 setrgbcolor +fill +grestore +newpath +3.684307e+01 1.264618e+01 moveto +3.775089e+01 1.186413e+01 lineto +3.852582e+01 1.13992e+01 lineto +3.764382e+01 1.216576e+01 lineto +3.684307e+01 1.264618e+01 lineto +closepath +gsave +4.601553e-01 4.601553e-01 5.751941e-01 setrgbcolor +fill +grestore +newpath +3.596191e+01 1.345981e+01 moveto +3.684307e+01 1.264618e+01 lineto +3.764382e+01 1.216576e+01 lineto +3.678772e+01 1.296435e+01 lineto +3.596191e+01 1.345981e+01 lineto +closepath +gsave +4.601655e-01 4.601655e-01 5.752069e-01 setrgbcolor +fill +grestore +newpath +3.510824e+01 1.430425e+01 moveto +3.596191e+01 1.345981e+01 lineto +3.678772e+01 1.296435e+01 lineto +3.595834e+01 1.379423e+01 lineto +3.510824e+01 1.430425e+01 lineto +closepath +gsave +4.602392e-01 4.602392e-01 5.752989e-01 setrgbcolor +fill +grestore +newpath +3.428288e+01 1.517869e+01 moveto +3.510824e+01 1.430425e+01 lineto +3.595834e+01 1.379423e+01 lineto +3.515644e+01 1.465459e+01 lineto +3.428288e+01 1.517869e+01 lineto +closepath +gsave +4.603763e-01 4.603763e-01 5.754704e-01 setrgbcolor +fill +grestore +newpath +3.34866e+01 1.608232e+01 moveto +3.428288e+01 1.517869e+01 lineto +3.515644e+01 1.465459e+01 lineto +3.438281e+01 1.554463e+01 lineto +3.34866e+01 1.608232e+01 lineto +closepath +gsave +4.605769e-01 4.605769e-01 5.757212e-01 setrgbcolor +fill +grestore +newpath +3.272016e+01 1.701428e+01 moveto +3.34866e+01 1.608232e+01 lineto +3.438281e+01 1.554463e+01 lineto +3.363816e+01 1.646351e+01 lineto +3.272016e+01 1.701428e+01 lineto +closepath +gsave +4.608411e-01 4.608411e-01 5.760514e-01 setrgbcolor +fill +grestore +newpath +3.198428e+01 1.797368e+01 moveto +3.272016e+01 1.701428e+01 lineto +3.363816e+01 1.646351e+01 lineto +3.292321e+01 1.741035e+01 lineto +3.198428e+01 1.797368e+01 lineto +closepath +gsave +4.61169e-01 4.61169e-01 5.764612e-01 setrgbcolor +fill +grestore +newpath +3.127966e+01 1.895961e+01 moveto +3.198428e+01 1.797368e+01 lineto +3.292321e+01 1.741035e+01 lineto +3.223863e+01 1.838427e+01 lineto +3.127966e+01 1.895961e+01 lineto +closepath +gsave +4.615605e-01 4.615605e-01 5.769506e-01 setrgbcolor +fill +grestore +newpath +3.060696e+01 1.997115e+01 moveto +3.127966e+01 1.895961e+01 lineto +3.223863e+01 1.838427e+01 lineto +3.158507e+01 1.938433e+01 lineto +3.060696e+01 1.997115e+01 lineto +closepath +gsave +4.620159e-01 4.620159e-01 5.775199e-01 setrgbcolor +fill +grestore +newpath +2.996683e+01 2.100733e+01 moveto +3.060696e+01 1.997115e+01 lineto +3.158507e+01 1.938433e+01 lineto +3.096314e+01 2.040959e+01 lineto +2.996683e+01 2.100733e+01 lineto +closepath +gsave +4.625352e-01 4.625352e-01 5.78169e-01 setrgbcolor +fill +grestore +newpath +2.935987e+01 2.206717e+01 moveto +2.996683e+01 2.100733e+01 lineto +3.096314e+01 2.040959e+01 lineto +3.037344e+01 2.145907e+01 lineto +2.935987e+01 2.206717e+01 lineto +closepath +gsave +4.631185e-01 4.631185e-01 5.788982e-01 setrgbcolor +fill +grestore +newpath +2.878666e+01 2.314968e+01 moveto +2.935987e+01 2.206717e+01 lineto +3.037344e+01 2.145907e+01 lineto +2.981653e+01 2.25318e+01 lineto +2.878666e+01 2.314968e+01 lineto +closepath +gsave +4.63766e-01 4.63766e-01 5.797076e-01 setrgbcolor +fill +grestore +newpath +2.824773e+01 2.425382e+01 moveto +2.878666e+01 2.314968e+01 lineto +2.981653e+01 2.25318e+01 lineto +2.929293e+01 2.362674e+01 lineto +2.824773e+01 2.425382e+01 lineto +closepath +gsave +4.644778e-01 4.644778e-01 5.805973e-01 setrgbcolor +fill +grestore +newpath +2.77436e+01 2.537855e+01 moveto +2.824773e+01 2.425382e+01 lineto +2.929293e+01 2.362674e+01 lineto +2.880313e+01 2.474287e+01 lineto +2.77436e+01 2.537855e+01 lineto +closepath +gsave +4.65254e-01 4.65254e-01 5.815675e-01 setrgbcolor +fill +grestore +newpath +2.727474e+01 2.65228e+01 moveto +2.77436e+01 2.537855e+01 lineto +2.880313e+01 2.474287e+01 lineto +2.834761e+01 2.587912e+01 lineto +2.727474e+01 2.65228e+01 lineto +closepath +gsave +4.660947e-01 4.660947e-01 5.826184e-01 setrgbcolor +fill +grestore +newpath +2.68416e+01 2.768549e+01 moveto +2.727474e+01 2.65228e+01 lineto +2.834761e+01 2.587912e+01 lineto +2.792679e+01 2.703443e+01 lineto +2.68416e+01 2.768549e+01 lineto +closepath +gsave +4.67e-01 4.67e-01 5.8375e-01 setrgbcolor +fill +grestore +newpath +4.431337e+01 7.511014e+00 moveto +4.535202e+01 6.987238e+00 lineto +4.604828e+01 6.658412e+00 lineto +4.504644e+01 7.164805e+00 lineto +4.431337e+01 7.511014e+00 lineto +closepath +gsave +4.687841e-01 4.687841e-01 5.859801e-01 setrgbcolor +fill +grestore +newpath +4.32943e+01 8.071232e+00 moveto +4.431337e+01 7.511014e+00 lineto +4.504644e+01 7.164805e+00 lineto +4.406348e+01 7.707968e+00 lineto +4.32943e+01 8.071232e+00 lineto +closepath +gsave +4.686898e-01 4.686898e-01 5.858622e-01 setrgbcolor +fill +grestore +newpath +4.229578e+01 8.667361e+00 moveto +4.32943e+01 8.071232e+00 lineto +4.406348e+01 7.707968e+00 lineto +4.310035e+01 8.287386e+00 lineto +4.229578e+01 8.667361e+00 lineto +closepath +gsave +4.686542e-01 4.686542e-01 5.858177e-01 setrgbcolor +fill +grestore +newpath +4.131876e+01 9.298837e+00 moveto +4.229578e+01 8.667361e+00 lineto +4.310035e+01 8.287386e+00 lineto +4.215795e+01 8.90251e+00 lineto +4.131876e+01 9.298837e+00 lineto +closepath +gsave +4.686772e-01 4.686772e-01 5.858465e-01 setrgbcolor +fill +grestore +newpath +4.036416e+01 9.965062e+00 moveto +4.131876e+01 9.298837e+00 lineto +4.215795e+01 8.90251e+00 lineto +4.123718e+01 9.552759e+00 lineto +4.036416e+01 9.965062e+00 lineto +closepath +gsave +4.687588e-01 4.687588e-01 5.859485e-01 setrgbcolor +fill +grestore +newpath +3.943289e+01 1.06654e+01 moveto +4.036416e+01 9.965062e+00 lineto +4.123718e+01 9.552759e+00 lineto +4.03389e+01 1.023752e+01 lineto +3.943289e+01 1.06654e+01 lineto +closepath +gsave +4.688991e-01 4.688991e-01 5.861239e-01 setrgbcolor +fill +grestore +newpath +3.852582e+01 1.13992e+01 moveto +3.943289e+01 1.06654e+01 lineto +4.03389e+01 1.023752e+01 lineto +3.946398e+01 1.095613e+01 lineto +3.852582e+01 1.13992e+01 lineto +closepath +gsave +4.69098e-01 4.69098e-01 5.863725e-01 setrgbcolor +fill +grestore +newpath +3.764382e+01 1.216576e+01 moveto +3.852582e+01 1.13992e+01 lineto +3.946398e+01 1.095613e+01 lineto +3.861324e+01 1.170793e+01 lineto +3.764382e+01 1.216576e+01 lineto +closepath +gsave +4.693556e-01 4.693556e-01 5.866945e-01 setrgbcolor +fill +grestore +newpath +3.678772e+01 1.296435e+01 moveto +3.764382e+01 1.216576e+01 lineto +3.861324e+01 1.170793e+01 lineto +3.778747e+01 1.24922e+01 lineto +3.678772e+01 1.296435e+01 lineto +closepath +gsave +4.696717e-01 4.696717e-01 5.870897e-01 setrgbcolor +fill +grestore +newpath +3.595834e+01 1.379423e+01 moveto +3.678772e+01 1.296435e+01 lineto +3.778747e+01 1.24922e+01 lineto +3.698748e+01 1.330819e+01 lineto +3.595834e+01 1.379423e+01 lineto +closepath +gsave +4.700465e-01 4.700465e-01 5.875582e-01 setrgbcolor +fill +grestore +newpath +3.515644e+01 1.465459e+01 moveto +3.595834e+01 1.379423e+01 lineto +3.698748e+01 1.330819e+01 lineto +3.6214e+01 1.415513e+01 lineto +3.515644e+01 1.465459e+01 lineto +closepath +gsave +4.7048e-01 4.7048e-01 5.880999e-01 setrgbcolor +fill +grestore +newpath +3.438281e+01 1.554463e+01 moveto +3.515644e+01 1.465459e+01 lineto +3.6214e+01 1.415513e+01 lineto +3.546778e+01 1.503223e+01 lineto +3.438281e+01 1.554463e+01 lineto +closepath +gsave +4.70972e-01 4.70972e-01 5.88715e-01 setrgbcolor +fill +grestore +newpath +3.363816e+01 1.646351e+01 moveto +3.438281e+01 1.554463e+01 lineto +3.546778e+01 1.503223e+01 lineto +3.474953e+01 1.593864e+01 lineto +3.363816e+01 1.646351e+01 lineto +closepath +gsave +4.715226e-01 4.715226e-01 5.894033e-01 setrgbcolor +fill +grestore +newpath +3.292321e+01 1.741035e+01 moveto +3.363816e+01 1.646351e+01 lineto +3.474953e+01 1.593864e+01 lineto +3.405991e+01 1.687352e+01 lineto +3.292321e+01 1.741035e+01 lineto +closepath +gsave +4.721319e-01 4.721319e-01 5.901648e-01 setrgbcolor +fill +grestore +newpath +3.223863e+01 1.838427e+01 moveto +3.292321e+01 1.741035e+01 lineto +3.405991e+01 1.687352e+01 lineto +3.339959e+01 1.783598e+01 lineto +3.223863e+01 1.838427e+01 lineto +closepath +gsave +4.727996e-01 4.727996e-01 5.909996e-01 setrgbcolor +fill +grestore +newpath +3.158507e+01 1.938433e+01 moveto +3.223863e+01 1.838427e+01 lineto +3.339959e+01 1.783598e+01 lineto +3.276918e+01 1.88251e+01 lineto +3.158507e+01 1.938433e+01 lineto +closepath +gsave +4.735259e-01 4.735259e-01 5.919074e-01 setrgbcolor +fill +grestore +newpath +3.096314e+01 2.040959e+01 moveto +3.158507e+01 1.938433e+01 lineto +3.276918e+01 1.88251e+01 lineto +3.21693e+01 1.983995e+01 lineto +3.096314e+01 2.040959e+01 lineto +closepath +gsave +4.743106e-01 4.743106e-01 5.928883e-01 setrgbcolor +fill +grestore +newpath +3.037344e+01 2.145907e+01 moveto +3.096314e+01 2.040959e+01 lineto +3.21693e+01 1.983995e+01 lineto +3.16005e+01 2.087957e+01 lineto +3.037344e+01 2.145907e+01 lineto +closepath +gsave +4.751536e-01 4.751536e-01 5.93942e-01 setrgbcolor +fill +grestore +newpath +2.981653e+01 2.25318e+01 moveto +3.037344e+01 2.145907e+01 lineto +3.16005e+01 2.087957e+01 lineto +3.106332e+01 2.194297e+01 lineto +2.981653e+01 2.25318e+01 lineto +closepath +gsave +4.760549e-01 4.760549e-01 5.950686e-01 setrgbcolor +fill +grestore +newpath +2.929293e+01 2.362674e+01 moveto +2.981653e+01 2.25318e+01 lineto +3.106332e+01 2.194297e+01 lineto +3.055827e+01 2.302915e+01 lineto +2.929293e+01 2.362674e+01 lineto +closepath +gsave +4.770142e-01 4.770142e-01 5.962677e-01 setrgbcolor +fill +grestore +newpath +2.880313e+01 2.474287e+01 moveto +2.929293e+01 2.362674e+01 lineto +3.055827e+01 2.302915e+01 lineto +3.008583e+01 2.413708e+01 lineto +2.880313e+01 2.474287e+01 lineto +closepath +gsave +4.780314e-01 4.780314e-01 5.975393e-01 setrgbcolor +fill +grestore +newpath +2.834761e+01 2.587912e+01 moveto +2.880313e+01 2.474287e+01 lineto +3.008583e+01 2.413708e+01 lineto +2.964645e+01 2.526571e+01 lineto +2.834761e+01 2.587912e+01 lineto +closepath +gsave +4.791063e-01 4.791063e-01 5.988829e-01 setrgbcolor +fill +grestore +newpath +2.792679e+01 2.703443e+01 moveto +2.834761e+01 2.587912e+01 lineto +2.964645e+01 2.526571e+01 lineto +2.924054e+01 2.641397e+01 lineto +2.792679e+01 2.703443e+01 lineto +closepath +gsave +4.802387e-01 4.802387e-01 6.002983e-01 setrgbcolor +fill +grestore +newpath +4.706808e+01 6.189268e+00 moveto +4.810485e+01 5.757817e+00 lineto +4.882971e+01 5.480945e+00 lineto +4.783743e+01 5.895406e+00 lineto +4.706808e+01 6.189268e+00 lineto +closepath +gsave +4.757005e-01 4.757005e-01 5.946256e-01 setrgbcolor +fill +grestore +newpath +4.604828e+01 6.658412e+00 moveto +4.706808e+01 6.189268e+00 lineto +4.783743e+01 5.895406e+00 lineto +4.686139e+01 6.347838e+00 lineto +4.604828e+01 6.658412e+00 lineto +closepath +gsave +4.758747e-01 4.758747e-01 5.948434e-01 setrgbcolor +fill +grestore +newpath +4.504644e+01 7.164805e+00 moveto +4.604828e+01 6.658412e+00 lineto +4.686139e+01 6.347838e+00 lineto +4.590252e+01 6.837813e+00 lineto +4.504644e+01 7.164805e+00 lineto +closepath +gsave +4.761032e-01 4.761032e-01 5.95129e-01 setrgbcolor +fill +grestore +newpath +4.406348e+01 7.707968e+00 moveto +4.504644e+01 7.164805e+00 lineto +4.590252e+01 6.837813e+00 lineto +4.496174e+01 7.364868e+00 lineto +4.406348e+01 7.707968e+00 lineto +closepath +gsave +4.763858e-01 4.763858e-01 5.954822e-01 setrgbcolor +fill +grestore +newpath +4.310035e+01 8.287386e+00 moveto +4.406348e+01 7.707968e+00 lineto +4.496174e+01 7.364868e+00 lineto +4.403993e+01 7.928502e+00 lineto +4.310035e+01 8.287386e+00 lineto +closepath +gsave +4.767225e-01 4.767225e-01 5.959031e-01 setrgbcolor +fill +grestore +newpath +4.215795e+01 8.90251e+00 moveto +4.310035e+01 8.287386e+00 lineto +4.403993e+01 7.928502e+00 lineto +4.313796e+01 8.528183e+00 lineto +4.215795e+01 8.90251e+00 lineto +closepath +gsave +4.771132e-01 4.771132e-01 5.963915e-01 setrgbcolor +fill +grestore +newpath +4.123718e+01 9.552759e+00 moveto +4.215795e+01 8.90251e+00 lineto +4.313796e+01 8.528183e+00 lineto +4.22567e+01 9.163342e+00 lineto +4.123718e+01 9.552759e+00 lineto +closepath +gsave +4.775579e-01 4.775579e-01 5.969474e-01 setrgbcolor +fill +grestore +newpath +4.03389e+01 1.023752e+01 moveto +4.123718e+01 9.552759e+00 lineto +4.22567e+01 9.163342e+00 lineto +4.139696e+01 9.833379e+00 lineto +4.03389e+01 1.023752e+01 lineto +closepath +gsave +4.780565e-01 4.780565e-01 5.975706e-01 setrgbcolor +fill +grestore +newpath +3.946398e+01 1.095613e+01 moveto +4.03389e+01 1.023752e+01 lineto +4.139696e+01 9.833379e+00 lineto +4.055958e+01 1.053766e+01 lineto +3.946398e+01 1.095613e+01 lineto +closepath +gsave +4.786089e-01 4.786089e-01 5.982611e-01 setrgbcolor +fill +grestore +newpath +3.861324e+01 1.170793e+01 moveto +3.946398e+01 1.095613e+01 lineto +4.055958e+01 1.053766e+01 lineto +3.974533e+01 1.127551e+01 lineto +3.861324e+01 1.170793e+01 lineto +closepath +gsave +4.792149e-01 4.792149e-01 5.990186e-01 setrgbcolor +fill +grestore +newpath +3.778747e+01 1.24922e+01 moveto +3.861324e+01 1.170793e+01 lineto +3.974533e+01 1.127551e+01 lineto +3.8955e+01 1.204625e+01 lineto +3.778747e+01 1.24922e+01 lineto +closepath +gsave +4.798745e-01 4.798745e-01 5.998431e-01 setrgbcolor +fill +grestore +newpath +3.698748e+01 1.330819e+01 moveto +3.778747e+01 1.24922e+01 lineto +3.8955e+01 1.204625e+01 lineto +3.818933e+01 1.284913e+01 lineto +3.698748e+01 1.330819e+01 lineto +closepath +gsave +4.805874e-01 4.805874e-01 6.007342e-01 setrgbcolor +fill +grestore +newpath +3.6214e+01 1.415513e+01 moveto +3.698748e+01 1.330819e+01 lineto +3.818933e+01 1.284913e+01 lineto +3.744904e+01 1.36834e+01 lineto +3.6214e+01 1.415513e+01 lineto +closepath +gsave +4.813535e-01 4.813535e-01 6.016919e-01 setrgbcolor +fill +grestore +newpath +3.546778e+01 1.503223e+01 moveto +3.6214e+01 1.415513e+01 lineto +3.744904e+01 1.36834e+01 lineto +3.673483e+01 1.454826e+01 lineto +3.546778e+01 1.503223e+01 lineto +closepath +gsave +4.821726e-01 4.821726e-01 6.027157e-01 setrgbcolor +fill +grestore +newpath +3.474953e+01 1.593864e+01 moveto +3.546778e+01 1.503223e+01 lineto +3.673483e+01 1.454826e+01 lineto +3.604739e+01 1.544291e+01 lineto +3.474953e+01 1.593864e+01 lineto +closepath +gsave +4.830444e-01 4.830444e-01 6.038055e-01 setrgbcolor +fill +grestore +newpath +3.405991e+01 1.687352e+01 moveto +3.474953e+01 1.593864e+01 lineto +3.604739e+01 1.544291e+01 lineto +3.538736e+01 1.636649e+01 lineto +3.405991e+01 1.687352e+01 lineto +closepath +gsave +4.839687e-01 4.839687e-01 6.049608e-01 setrgbcolor +fill +grestore +newpath +3.339959e+01 1.783598e+01 moveto +3.405991e+01 1.687352e+01 lineto +3.538736e+01 1.636649e+01 lineto +3.475537e+01 1.731812e+01 lineto +3.339959e+01 1.783598e+01 lineto +closepath +gsave +4.849451e-01 4.849451e-01 6.061814e-01 setrgbcolor +fill +grestore +newpath +3.276918e+01 1.88251e+01 moveto +3.339959e+01 1.783598e+01 lineto +3.475537e+01 1.731812e+01 lineto +3.415201e+01 1.829691e+01 lineto +3.276918e+01 1.88251e+01 lineto +closepath +gsave +4.859733e-01 4.859733e-01 6.074667e-01 setrgbcolor +fill +grestore +newpath +3.21693e+01 1.983995e+01 moveto +3.276918e+01 1.88251e+01 lineto +3.415201e+01 1.829691e+01 lineto +3.357787e+01 1.930193e+01 lineto +3.21693e+01 1.983995e+01 lineto +closepath +gsave +4.87053e-01 4.87053e-01 6.088163e-01 setrgbcolor +fill +grestore +newpath +3.16005e+01 2.087957e+01 moveto +3.21693e+01 1.983995e+01 lineto +3.357787e+01 1.930193e+01 lineto +3.303347e+01 2.033223e+01 lineto +3.16005e+01 2.087957e+01 lineto +closepath +gsave +4.881837e-01 4.881837e-01 6.102296e-01 setrgbcolor +fill +grestore +newpath +3.106332e+01 2.194297e+01 moveto +3.16005e+01 2.087957e+01 lineto +3.303347e+01 2.033223e+01 lineto +3.251934e+01 2.138683e+01 lineto +3.106332e+01 2.194297e+01 lineto +closepath +gsave +4.893649e-01 4.893649e-01 6.117061e-01 setrgbcolor +fill +grestore +newpath +3.055827e+01 2.302915e+01 moveto +3.106332e+01 2.194297e+01 lineto +3.251934e+01 2.138683e+01 lineto +3.203596e+01 2.246473e+01 lineto +3.055827e+01 2.302915e+01 lineto +closepath +gsave +4.905961e-01 4.905961e-01 6.132452e-01 setrgbcolor +fill +grestore +newpath +3.008583e+01 2.413708e+01 moveto +3.055827e+01 2.302915e+01 lineto +3.203596e+01 2.246473e+01 lineto +3.158379e+01 2.356492e+01 lineto +3.008583e+01 2.413708e+01 lineto +closepath +gsave +4.918768e-01 4.918768e-01 6.14846e-01 setrgbcolor +fill +grestore +newpath +2.964645e+01 2.526571e+01 moveto +3.008583e+01 2.413708e+01 lineto +3.158379e+01 2.356492e+01 lineto +3.116326e+01 2.468635e+01 lineto +2.964645e+01 2.526571e+01 lineto +closepath +gsave +4.932063e-01 4.932063e-01 6.165079e-01 setrgbcolor +fill +grestore +newpath +2.924054e+01 2.641397e+01 moveto +2.964645e+01 2.526571e+01 lineto +3.116326e+01 2.468635e+01 lineto +3.077477e+01 2.582796e+01 lineto +2.924054e+01 2.641397e+01 lineto +closepath +gsave +4.94584e-01 4.94584e-01 6.1823e-01 setrgbcolor +fill +grestore +newpath +4.983731e+01 5.104848e+00 moveto +5.085927e+01 4.767471e+00 lineto +5.158034e+01 4.541072e+00 lineto +5.06105e+01 4.862087e+00 lineto +4.983731e+01 5.104848e+00 lineto +closepath +gsave +4.815109e-01 4.815109e-01 6.018886e-01 setrgbcolor +fill +grestore +newpath +4.882971e+01 5.480945e+00 moveto +4.983731e+01 5.104848e+00 lineto +5.06105e+01 4.862087e+00 lineto +4.965428e+01 5.222052e+00 lineto +4.882971e+01 5.480945e+00 lineto +closepath +gsave +4.820003e-01 4.820003e-01 6.025003e-01 setrgbcolor +fill +grestore +newpath +4.783743e+01 5.895406e+00 moveto +4.882971e+01 5.480945e+00 lineto +4.965428e+01 5.222052e+00 lineto +4.871259e+01 5.620626e+00 lineto +4.783743e+01 5.895406e+00 lineto +closepath +gsave +4.825406e-01 4.825406e-01 6.031757e-01 setrgbcolor +fill +grestore +newpath +4.686139e+01 6.347838e+00 moveto +4.783743e+01 5.895406e+00 lineto +4.871259e+01 5.620626e+00 lineto +4.778632e+01 6.057431e+00 lineto +4.686139e+01 6.347838e+00 lineto +closepath +gsave +4.831317e-01 4.831317e-01 6.039146e-01 setrgbcolor +fill +grestore +newpath +4.590252e+01 6.837813e+00 moveto +4.686139e+01 6.347838e+00 lineto +4.778632e+01 6.057431e+00 lineto +4.687635e+01 6.532055e+00 lineto +4.590252e+01 6.837813e+00 lineto +closepath +gsave +4.837733e-01 4.837733e-01 6.047166e-01 setrgbcolor +fill +grestore +newpath +4.496174e+01 7.364868e+00 moveto +4.590252e+01 6.837813e+00 lineto +4.687635e+01 6.532055e+00 lineto +4.598354e+01 7.044046e+00 lineto +4.496174e+01 7.364868e+00 lineto +closepath +gsave +4.844652e-01 4.844652e-01 6.055816e-01 setrgbcolor +fill +grestore +newpath +4.403993e+01 7.928502e+00 moveto +4.496174e+01 7.364868e+00 lineto +4.598354e+01 7.044046e+00 lineto +4.510874e+01 7.592922e+00 lineto +4.403993e+01 7.928502e+00 lineto +closepath +gsave +4.852073e-01 4.852073e-01 6.065092e-01 setrgbcolor +fill +grestore +newpath +4.313796e+01 8.528183e+00 moveto +4.403993e+01 7.928502e+00 lineto +4.510874e+01 7.592922e+00 lineto +4.425276e+01 8.178162e+00 lineto +4.313796e+01 8.528183e+00 lineto +closepath +gsave +4.859993e-01 4.859993e-01 6.074991e-01 setrgbcolor +fill +grestore +newpath +4.22567e+01 9.163342e+00 moveto +4.313796e+01 8.528183e+00 lineto +4.425276e+01 8.178162e+00 lineto +4.341644e+01 8.799212e+00 lineto +4.22567e+01 9.163342e+00 lineto +closepath +gsave +4.868408e-01 4.868408e-01 6.08551e-01 setrgbcolor +fill +grestore +newpath +4.139696e+01 9.833379e+00 moveto +4.22567e+01 9.163342e+00 lineto +4.341644e+01 8.799212e+00 lineto +4.260054e+01 9.455485e+00 lineto +4.139696e+01 9.833379e+00 lineto +closepath +gsave +4.877316e-01 4.877316e-01 6.096645e-01 setrgbcolor +fill +grestore +newpath +4.055958e+01 1.053766e+01 moveto +4.139696e+01 9.833379e+00 lineto +4.260054e+01 9.455485e+00 lineto +4.180586e+01 1.014636e+01 lineto +4.055958e+01 1.053766e+01 lineto +closepath +gsave +4.886713e-01 4.886713e-01 6.108391e-01 setrgbcolor +fill +grestore +newpath +3.974533e+01 1.127551e+01 moveto +4.055958e+01 1.053766e+01 lineto +4.180586e+01 1.014636e+01 lineto +4.103313e+01 1.087118e+01 lineto +3.974533e+01 1.127551e+01 lineto +closepath +gsave +4.896594e-01 4.896594e-01 6.120743e-01 setrgbcolor +fill +grestore +newpath +3.8955e+01 1.204625e+01 moveto +3.974533e+01 1.127551e+01 lineto +4.103313e+01 1.087118e+01 lineto +4.02831e+01 1.162926e+01 lineto +3.8955e+01 1.204625e+01 lineto +closepath +gsave +4.906956e-01 4.906956e-01 6.133696e-01 setrgbcolor +fill +grestore +newpath +3.818933e+01 1.284913e+01 moveto +3.8955e+01 1.204625e+01 lineto +4.02831e+01 1.162926e+01 lineto +3.955647e+01 1.241988e+01 lineto +3.818933e+01 1.284913e+01 lineto +closepath +gsave +4.917795e-01 4.917795e-01 6.147243e-01 setrgbcolor +fill +grestore +newpath +3.744904e+01 1.36834e+01 moveto +3.818933e+01 1.284913e+01 lineto +3.955647e+01 1.241988e+01 lineto +3.885393e+01 1.32423e+01 lineto +3.744904e+01 1.36834e+01 lineto +closepath +gsave +4.929103e-01 4.929103e-01 6.161379e-01 setrgbcolor +fill +grestore +newpath +3.673483e+01 1.454826e+01 moveto +3.744904e+01 1.36834e+01 lineto +3.885393e+01 1.32423e+01 lineto +3.817615e+01 1.409573e+01 lineto +3.673483e+01 1.454826e+01 lineto +closepath +gsave +4.940877e-01 4.940877e-01 6.176097e-01 setrgbcolor +fill +grestore +newpath +3.604739e+01 1.544291e+01 moveto +3.673483e+01 1.454826e+01 lineto +3.817615e+01 1.409573e+01 lineto +3.752376e+01 1.497937e+01 lineto +3.604739e+01 1.544291e+01 lineto +closepath +gsave +4.953111e-01 4.953111e-01 6.191388e-01 setrgbcolor +fill +grestore +newpath +3.538736e+01 1.636649e+01 moveto +3.604739e+01 1.544291e+01 lineto +3.752376e+01 1.497937e+01 lineto +3.689739e+01 1.589238e+01 lineto +3.538736e+01 1.636649e+01 lineto +closepath +gsave +4.965796e-01 4.965796e-01 6.207245e-01 setrgbcolor +fill +grestore +newpath +3.475537e+01 1.731812e+01 moveto +3.538736e+01 1.636649e+01 lineto +3.689739e+01 1.589238e+01 lineto +3.629762e+01 1.683389e+01 lineto +3.475537e+01 1.731812e+01 lineto +closepath +gsave +4.978927e-01 4.978927e-01 6.223659e-01 setrgbcolor +fill +grestore +newpath +3.415201e+01 1.829691e+01 moveto +3.475537e+01 1.731812e+01 lineto +3.629762e+01 1.683389e+01 lineto +3.572503e+01 1.780302e+01 lineto +3.415201e+01 1.829691e+01 lineto +closepath +gsave +4.992496e-01 4.992496e-01 6.24062e-01 setrgbcolor +fill +grestore +newpath +3.357787e+01 1.930193e+01 moveto +3.415201e+01 1.829691e+01 lineto +3.572503e+01 1.780302e+01 lineto +3.518016e+01 1.879885e+01 lineto +3.357787e+01 1.930193e+01 lineto +closepath +gsave +5.006494e-01 5.006494e-01 6.258118e-01 setrgbcolor +fill +grestore +newpath +3.303347e+01 2.033223e+01 moveto +3.357787e+01 1.930193e+01 lineto +3.518016e+01 1.879885e+01 lineto +3.466352e+01 1.982043e+01 lineto +3.303347e+01 2.033223e+01 lineto +closepath +gsave +5.020913e-01 5.020913e-01 6.276142e-01 setrgbcolor +fill +grestore +newpath +3.251934e+01 2.138683e+01 moveto +3.303347e+01 2.033223e+01 lineto +3.466352e+01 1.982043e+01 lineto +3.417561e+01 2.08668e+01 lineto +3.251934e+01 2.138683e+01 lineto +closepath +gsave +5.035744e-01 5.035744e-01 6.294681e-01 setrgbcolor +fill +grestore +newpath +3.203596e+01 2.246473e+01 moveto +3.251934e+01 2.138683e+01 lineto +3.417561e+01 2.08668e+01 lineto +3.371688e+01 2.193697e+01 lineto +3.203596e+01 2.246473e+01 lineto +closepath +gsave +5.050977e-01 5.050977e-01 6.313722e-01 setrgbcolor +fill +grestore +newpath +3.158379e+01 2.356492e+01 moveto +3.203596e+01 2.246473e+01 lineto +3.371688e+01 2.193697e+01 lineto +3.328777e+01 2.302991e+01 lineto +3.158379e+01 2.356492e+01 lineto +closepath +gsave +5.066602e-01 5.066602e-01 6.333252e-01 setrgbcolor +fill +grestore +newpath +3.116326e+01 2.468635e+01 moveto +3.158379e+01 2.356492e+01 lineto +3.328777e+01 2.302991e+01 lineto +3.288868e+01 2.414461e+01 lineto +3.116326e+01 2.468635e+01 lineto +closepath +gsave +5.082607e-01 5.082607e-01 6.353258e-01 setrgbcolor +fill +grestore +newpath +3.077477e+01 2.582796e+01 moveto +3.116326e+01 2.468635e+01 lineto +3.288868e+01 2.414461e+01 lineto +3.252e+01 2.528e+01 lineto +3.077477e+01 2.582796e+01 lineto +closepath +gsave +5.09898e-01 5.09898e-01 6.373725e-01 setrgbcolor +fill +grestore +newpath +5.158034e+01 4.541072e+00 moveto +5.256289e+01 4.259311e+00 lineto +5.330785e+01 4.065353e+00 lineto +5.238415e+01 4.331791e+00 lineto +5.158034e+01 4.541072e+00 lineto +closepath +gsave +4.86807e-01 4.86807e-01 6.085088e-01 setrgbcolor +fill +grestore +newpath +5.06105e+01 4.862087e+00 moveto +5.158034e+01 4.541072e+00 lineto +5.238415e+01 4.331791e+00 lineto +5.14724e+01 4.637681e+00 lineto +5.06105e+01 4.862087e+00 lineto +closepath +gsave +4.876962e-01 4.876962e-01 6.096203e-01 setrgbcolor +fill +grestore +newpath +4.965428e+01 5.222052e+00 moveto +5.06105e+01 4.862087e+00 lineto +5.14724e+01 4.637681e+00 lineto +5.057346e+01 4.982734e+00 lineto +4.965428e+01 5.222052e+00 lineto +closepath +gsave +4.886344e-01 4.886344e-01 6.107929e-01 setrgbcolor +fill +grestore +newpath +4.871259e+01 5.620626e+00 moveto +4.965428e+01 5.222052e+00 lineto +5.057346e+01 4.982734e+00 lineto +4.968817e+01 5.366622e+00 lineto +4.871259e+01 5.620626e+00 lineto +closepath +gsave +4.896211e-01 4.896211e-01 6.120263e-01 setrgbcolor +fill +grestore +newpath +4.778632e+01 6.057431e+00 moveto +4.871259e+01 5.620626e+00 lineto +4.968817e+01 5.366622e+00 lineto +4.881739e+01 5.788982e+00 lineto +4.778632e+01 6.057431e+00 lineto +closepath +gsave +4.906559e-01 4.906559e-01 6.133199e-01 setrgbcolor +fill +grestore +newpath +4.687635e+01 6.532055e+00 moveto +4.778632e+01 6.057431e+00 lineto +4.881739e+01 5.788982e+00 lineto +4.796192e+01 6.249414e+00 lineto +4.687635e+01 6.532055e+00 lineto +closepath +gsave +4.917384e-01 4.917384e-01 6.14673e-01 setrgbcolor +fill +grestore +newpath +4.598354e+01 7.044046e+00 moveto +4.687635e+01 6.532055e+00 lineto +4.796192e+01 6.249414e+00 lineto +4.712259e+01 6.747482e+00 lineto +4.598354e+01 7.044046e+00 lineto +closepath +gsave +4.92868e-01 4.92868e-01 6.16085e-01 setrgbcolor +fill +grestore +newpath +4.510874e+01 7.592922e+00 moveto +4.598354e+01 7.044046e+00 lineto +4.712259e+01 6.747482e+00 lineto +4.630018e+01 7.282716e+00 lineto +4.510874e+01 7.592922e+00 lineto +closepath +gsave +4.940442e-01 4.940442e-01 6.175553e-01 setrgbcolor +fill +grestore +newpath +4.425276e+01 8.178162e+00 moveto +4.510874e+01 7.592922e+00 lineto +4.630018e+01 7.282716e+00 lineto +4.549548e+01 7.854607e+00 lineto +4.425276e+01 8.178162e+00 lineto +closepath +gsave +4.952664e-01 4.952664e-01 6.19083e-01 setrgbcolor +fill +grestore +newpath +4.341644e+01 8.799212e+00 moveto +4.425276e+01 8.178162e+00 lineto +4.549548e+01 7.854607e+00 lineto +4.470925e+01 8.462614e+00 lineto +4.341644e+01 8.799212e+00 lineto +closepath +gsave +4.965339e-01 4.965339e-01 6.206673e-01 setrgbcolor +fill +grestore +newpath +4.260054e+01 9.455485e+00 moveto +4.341644e+01 8.799212e+00 lineto +4.470925e+01 8.462614e+00 lineto +4.394222e+01 9.106162e+00 lineto +4.260054e+01 9.455485e+00 lineto +closepath +gsave +4.978459e-01 4.978459e-01 6.223074e-01 setrgbcolor +fill +grestore +newpath +4.180586e+01 1.014636e+01 moveto +4.260054e+01 9.455485e+00 lineto +4.394222e+01 9.106162e+00 lineto +4.319514e+01 9.784642e+00 lineto +4.180586e+01 1.014636e+01 lineto +closepath +gsave +4.992019e-01 4.992019e-01 6.240023e-01 setrgbcolor +fill +grestore +newpath +4.103313e+01 1.087118e+01 moveto +4.180586e+01 1.014636e+01 lineto +4.319514e+01 9.784642e+00 lineto +4.24687e+01 1.049741e+01 lineto +4.103313e+01 1.087118e+01 lineto +closepath +gsave +5.006008e-01 5.006008e-01 6.25751e-01 setrgbcolor +fill +grestore +newpath +4.02831e+01 1.162926e+01 moveto +4.103313e+01 1.087118e+01 lineto +4.24687e+01 1.049741e+01 lineto +4.176359e+01 1.124379e+01 lineto +4.02831e+01 1.162926e+01 lineto +closepath +gsave +5.020419e-01 5.020419e-01 6.275524e-01 setrgbcolor +fill +grestore +newpath +3.955647e+01 1.241988e+01 moveto +4.02831e+01 1.162926e+01 lineto +4.176359e+01 1.124379e+01 lineto +4.108049e+01 1.202308e+01 lineto +3.955647e+01 1.241988e+01 lineto +closepath +gsave +5.035243e-01 5.035243e-01 6.294053e-01 setrgbcolor +fill +grestore +newpath +3.885393e+01 1.32423e+01 moveto +3.955647e+01 1.241988e+01 lineto +4.108049e+01 1.202308e+01 lineto +4.042003e+01 1.283454e+01 lineto +3.885393e+01 1.32423e+01 lineto +closepath +gsave +5.050468e-01 5.050468e-01 6.313085e-01 setrgbcolor +fill +grestore +newpath +3.817615e+01 1.409573e+01 moveto +3.885393e+01 1.32423e+01 lineto +4.042003e+01 1.283454e+01 lineto +3.978284e+01 1.367741e+01 lineto +3.817615e+01 1.409573e+01 lineto +closepath +gsave +5.066086e-01 5.066086e-01 6.332607e-01 setrgbcolor +fill +grestore +newpath +3.752376e+01 1.497937e+01 moveto +3.817615e+01 1.409573e+01 lineto +3.978284e+01 1.367741e+01 lineto +3.916953e+01 1.455087e+01 lineto +3.752376e+01 1.497937e+01 lineto +closepath +gsave +5.082084e-01 5.082084e-01 6.352606e-01 setrgbcolor +fill +grestore +newpath +3.689739e+01 1.589238e+01 moveto +3.752376e+01 1.497937e+01 lineto +3.916953e+01 1.455087e+01 lineto +3.858067e+01 1.545411e+01 lineto +3.689739e+01 1.589238e+01 lineto +closepath +gsave +5.098452e-01 5.098452e-01 6.373066e-01 setrgbcolor +fill +grestore +newpath +3.629762e+01 1.683389e+01 moveto +3.689739e+01 1.589238e+01 lineto +3.858067e+01 1.545411e+01 lineto +3.801683e+01 1.638627e+01 lineto +3.629762e+01 1.683389e+01 lineto +closepath +gsave +5.115177e-01 5.115177e-01 6.393972e-01 setrgbcolor +fill +grestore +newpath +3.572503e+01 1.780302e+01 moveto +3.629762e+01 1.683389e+01 lineto +3.801683e+01 1.638627e+01 lineto +3.747854e+01 1.734647e+01 lineto +3.572503e+01 1.780302e+01 lineto +closepath +gsave +5.132247e-01 5.132247e-01 6.415308e-01 setrgbcolor +fill +grestore +newpath +3.518016e+01 1.879885e+01 moveto +3.572503e+01 1.780302e+01 lineto +3.747854e+01 1.734647e+01 lineto +3.696631e+01 1.83338e+01 lineto +3.518016e+01 1.879885e+01 lineto +closepath +gsave +5.149647e-01 5.149647e-01 6.437058e-01 setrgbcolor +fill +grestore +newpath +3.466352e+01 1.982043e+01 moveto +3.518016e+01 1.879885e+01 lineto +3.696631e+01 1.83338e+01 lineto +3.648061e+01 1.934733e+01 lineto +3.466352e+01 1.982043e+01 lineto +closepath +gsave +5.167364e-01 5.167364e-01 6.459205e-01 setrgbcolor +fill +grestore +newpath +3.417561e+01 2.08668e+01 moveto +3.466352e+01 1.982043e+01 lineto +3.648061e+01 1.934733e+01 lineto +3.602192e+01 2.038609e+01 lineto +3.417561e+01 2.08668e+01 lineto +closepath +gsave +5.185383e-01 5.185383e-01 6.481729e-01 setrgbcolor +fill +grestore +newpath +3.371688e+01 2.193697e+01 moveto +3.417561e+01 2.08668e+01 lineto +3.602192e+01 2.038609e+01 lineto +3.559067e+01 2.14491e+01 lineto +3.371688e+01 2.193697e+01 lineto +closepath +gsave +5.203689e-01 5.203689e-01 6.504612e-01 setrgbcolor +fill +grestore +newpath +3.328777e+01 2.302991e+01 moveto +3.371688e+01 2.193697e+01 lineto +3.559067e+01 2.14491e+01 lineto +3.518726e+01 2.253536e+01 lineto +3.328777e+01 2.302991e+01 lineto +closepath +gsave +5.222267e-01 5.222267e-01 6.527834e-01 setrgbcolor +fill +grestore +newpath +3.288868e+01 2.414461e+01 moveto +3.328777e+01 2.302991e+01 lineto +3.518726e+01 2.253536e+01 lineto +3.481208e+01 2.364383e+01 lineto +3.288868e+01 2.414461e+01 lineto +closepath +gsave +5.2411e-01 5.2411e-01 6.551374e-01 setrgbcolor +fill +grestore +newpath +3.252e+01 2.528e+01 moveto +3.288868e+01 2.414461e+01 lineto +3.481208e+01 2.364383e+01 lineto +3.446548e+01 2.477347e+01 lineto +3.252e+01 2.528e+01 lineto +closepath +gsave +5.26017e-01 5.26017e-01 6.575213e-01 setrgbcolor +fill +grestore +newpath +5.330785e+01 4.065353e+00 moveto +5.424261e+01 3.838618e+00 lineto +5.499433e+01 3.675863e+00 lineto +5.412489e+01 3.888455e+00 lineto +5.330785e+01 4.065353e+00 lineto +closepath +gsave +4.913545e-01 4.913545e-01 6.141931e-01 setrgbcolor +fill +grestore +newpath +5.238415e+01 4.331791e+00 moveto +5.330785e+01 4.065353e+00 lineto +5.412489e+01 3.888455e+00 lineto +5.326574e+01 4.140918e+00 lineto +5.238415e+01 4.331791e+00 lineto +closepath +gsave +4.926658e-01 4.926658e-01 6.158323e-01 setrgbcolor +fill +grestore +newpath +5.14724e+01 4.637681e+00 moveto +5.238415e+01 4.331791e+00 lineto +5.326574e+01 4.140918e+00 lineto +5.24177e+01 4.433014e+00 lineto +5.14724e+01 4.637681e+00 lineto +closepath +gsave +4.940257e-01 4.940257e-01 6.175322e-01 setrgbcolor +fill +grestore +newpath +5.057346e+01 4.982734e+00 moveto +5.14724e+01 4.637681e+00 lineto +5.24177e+01 4.433014e+00 lineto +5.158158e+01 4.764466e+00 lineto +5.057346e+01 4.982734e+00 lineto +closepath +gsave +4.954335e-01 4.954335e-01 6.192918e-01 setrgbcolor +fill +grestore +newpath +4.968817e+01 5.366622e+00 moveto +5.057346e+01 4.982734e+00 lineto +5.158158e+01 4.764466e+00 lineto +5.075816e+01 5.13496e+00 lineto +4.968817e+01 5.366622e+00 lineto +closepath +gsave +4.968882e-01 4.968882e-01 6.211103e-01 setrgbcolor +fill +grestore +newpath +4.881739e+01 5.788982e+00 moveto +4.968817e+01 5.366622e+00 lineto +5.075816e+01 5.13496e+00 lineto +4.994822e+01 5.544145e+00 lineto +4.881739e+01 5.788982e+00 lineto +closepath +gsave +4.983892e-01 4.983892e-01 6.229865e-01 setrgbcolor +fill +grestore +newpath +4.796192e+01 6.249414e+00 moveto +4.881739e+01 5.788982e+00 lineto +4.994822e+01 5.544145e+00 lineto +4.915253e+01 5.991634e+00 lineto +4.796192e+01 6.249414e+00 lineto +closepath +gsave +4.999355e-01 4.999355e-01 6.249194e-01 setrgbcolor +fill +grestore +newpath +4.712259e+01 6.747482e+00 moveto +4.796192e+01 6.249414e+00 lineto +4.915253e+01 5.991634e+00 lineto +4.837185e+01 6.477004e+00 lineto +4.712259e+01 6.747482e+00 lineto +closepath +gsave +5.015261e-01 5.015261e-01 6.269076e-01 setrgbcolor +fill +grestore +newpath +4.630018e+01 7.282716e+00 moveto +4.712259e+01 6.747482e+00 lineto +4.837185e+01 6.477004e+00 lineto +4.760692e+01 6.999794e+00 lineto +4.630018e+01 7.282716e+00 lineto +closepath +gsave +5.0316e-01 5.0316e-01 6.289501e-01 setrgbcolor +fill +grestore +newpath +4.549548e+01 7.854607e+00 moveto +4.630018e+01 7.282716e+00 lineto +4.760692e+01 6.999794e+00 lineto +4.685845e+01 7.559511e+00 lineto +4.549548e+01 7.854607e+00 lineto +closepath +gsave +5.048362e-01 5.048362e-01 6.310452e-01 setrgbcolor +fill +grestore +newpath +4.470925e+01 8.462614e+00 moveto +4.549548e+01 7.854607e+00 lineto +4.685845e+01 7.559511e+00 lineto +4.612715e+01 8.155623e+00 lineto +4.470925e+01 8.462614e+00 lineto +closepath +gsave +5.065534e-01 5.065534e-01 6.331917e-01 setrgbcolor +fill +grestore +newpath +4.394222e+01 9.106162e+00 moveto +4.470925e+01 8.462614e+00 lineto +4.612715e+01 8.155623e+00 lineto +4.541373e+01 8.787566e+00 lineto +4.394222e+01 9.106162e+00 lineto +closepath +gsave +5.083104e-01 5.083104e-01 6.35388e-01 setrgbcolor +fill +grestore +newpath +4.319514e+01 9.784642e+00 moveto +4.394222e+01 9.106162e+00 lineto +4.541373e+01 8.787566e+00 lineto +4.471885e+01 9.454743e+00 lineto +4.319514e+01 9.784642e+00 lineto +closepath +gsave +5.10106e-01 5.10106e-01 6.376324e-01 setrgbcolor +fill +grestore +newpath +4.24687e+01 1.049741e+01 moveto +4.319514e+01 9.784642e+00 lineto +4.471885e+01 9.454743e+00 lineto +4.404318e+01 1.015652e+01 lineto +4.24687e+01 1.049741e+01 lineto +closepath +gsave +5.119386e-01 5.119386e-01 6.399233e-01 setrgbcolor +fill +grestore +newpath +4.176359e+01 1.124379e+01 moveto +4.24687e+01 1.049741e+01 lineto +4.404318e+01 1.015652e+01 lineto +4.338734e+01 1.089224e+01 lineto +4.176359e+01 1.124379e+01 lineto +closepath +gsave +5.13807e-01 5.13807e-01 6.422588e-01 setrgbcolor +fill +grestore +newpath +4.108049e+01 1.202308e+01 moveto +4.176359e+01 1.124379e+01 lineto +4.338734e+01 1.089224e+01 lineto +4.275197e+01 1.166119e+01 lineto +4.108049e+01 1.202308e+01 lineto +closepath +gsave +5.157096e-01 5.157096e-01 6.446371e-01 setrgbcolor +fill +grestore +newpath +4.042003e+01 1.283454e+01 moveto +4.108049e+01 1.202308e+01 lineto +4.275197e+01 1.166119e+01 lineto +4.213766e+01 1.246266e+01 lineto +4.042003e+01 1.283454e+01 lineto +closepath +gsave +5.176449e-01 5.176449e-01 6.470561e-01 setrgbcolor +fill +grestore +newpath +3.978284e+01 1.367741e+01 moveto +4.042003e+01 1.283454e+01 lineto +4.213766e+01 1.246266e+01 lineto +4.1545e+01 1.329588e+01 lineto +3.978284e+01 1.367741e+01 lineto +closepath +gsave +5.196111e-01 5.196111e-01 6.495139e-01 setrgbcolor +fill +grestore +newpath +3.916953e+01 1.455087e+01 moveto +3.978284e+01 1.367741e+01 lineto +4.1545e+01 1.329588e+01 lineto +4.097455e+01 1.416007e+01 lineto +3.916953e+01 1.455087e+01 lineto +closepath +gsave +5.216067e-01 5.216067e-01 6.520083e-01 setrgbcolor +fill +grestore +newpath +3.858067e+01 1.545411e+01 moveto +3.916953e+01 1.455087e+01 lineto +4.097455e+01 1.416007e+01 lineto +4.042684e+01 1.50544e+01 lineto +3.858067e+01 1.545411e+01 lineto +closepath +gsave +5.236297e-01 5.236297e-01 6.545372e-01 setrgbcolor +fill +grestore +newpath +3.801683e+01 1.638627e+01 moveto +3.858067e+01 1.545411e+01 lineto +4.042684e+01 1.50544e+01 lineto +3.99024e+01 1.597803e+01 lineto +3.801683e+01 1.638627e+01 lineto +closepath +gsave +5.256785e-01 5.256785e-01 6.570982e-01 setrgbcolor +fill +grestore +newpath +3.747854e+01 1.734647e+01 moveto +3.801683e+01 1.638627e+01 lineto +3.99024e+01 1.597803e+01 lineto +3.940173e+01 1.693009e+01 lineto +3.747854e+01 1.734647e+01 lineto +closepath +gsave +5.277511e-01 5.277511e-01 6.596889e-01 setrgbcolor +fill +grestore +newpath +3.696631e+01 1.83338e+01 moveto +3.747854e+01 1.734647e+01 lineto +3.940173e+01 1.693009e+01 lineto +3.892529e+01 1.790967e+01 lineto +3.696631e+01 1.83338e+01 lineto +closepath +gsave +5.298456e-01 5.298456e-01 6.62307e-01 setrgbcolor +fill +grestore +newpath +3.648061e+01 1.934733e+01 moveto +3.696631e+01 1.83338e+01 lineto +3.892529e+01 1.790967e+01 lineto +3.847354e+01 1.891584e+01 lineto +3.648061e+01 1.934733e+01 lineto +closepath +gsave +5.3196e-01 5.3196e-01 6.6495e-01 setrgbcolor +fill +grestore +newpath +3.602192e+01 2.038609e+01 moveto +3.648061e+01 1.934733e+01 lineto +3.847354e+01 1.891584e+01 lineto +3.80469e+01 1.994766e+01 lineto +3.602192e+01 2.038609e+01 lineto +closepath +gsave +5.340922e-01 5.340922e-01 6.676153e-01 setrgbcolor +fill +grestore +newpath +3.559067e+01 2.14491e+01 moveto +3.602192e+01 2.038609e+01 lineto +3.80469e+01 1.994766e+01 lineto +3.764578e+01 2.100415e+01 lineto +3.559067e+01 2.14491e+01 lineto +closepath +gsave +5.362402e-01 5.362402e-01 6.703002e-01 setrgbcolor +fill +grestore +newpath +3.518726e+01 2.253536e+01 moveto +3.559067e+01 2.14491e+01 lineto +3.764578e+01 2.100415e+01 lineto +3.727056e+01 2.20843e+01 lineto +3.518726e+01 2.253536e+01 lineto +closepath +gsave +5.384018e-01 5.384018e-01 6.730022e-01 setrgbcolor +fill +grestore +newpath +3.481208e+01 2.364383e+01 moveto +3.518726e+01 2.253536e+01 lineto +3.727056e+01 2.20843e+01 lineto +3.69216e+01 2.31871e+01 lineto +3.481208e+01 2.364383e+01 lineto +closepath +gsave +5.405747e-01 5.405747e-01 6.757184e-01 setrgbcolor +fill +grestore +newpath +3.446548e+01 2.477347e+01 moveto +3.481208e+01 2.364383e+01 lineto +3.69216e+01 2.31871e+01 lineto +3.659922e+01 2.431149e+01 lineto +3.446548e+01 2.477347e+01 lineto +closepath +gsave +5.427569e-01 5.427569e-01 6.784461e-01 setrgbcolor +fill +grestore +newpath +5.499433e+01 3.675863e+00 moveto +5.587325e+01 3.503345e+00 lineto +5.661521e+01 3.370119e+00 lineto +5.580774e+01 3.529808e+00 lineto +5.499433e+01 3.675863e+00 lineto +closepath +gsave +4.950602e-01 4.950602e-01 6.188253e-01 setrgbcolor +fill +grestore +newpath +5.412489e+01 3.888455e+00 moveto +5.499433e+01 3.675863e+00 lineto +5.580774e+01 3.529808e+00 lineto +5.500898e+01 3.729708e+00 lineto +5.412489e+01 3.888455e+00 lineto +closepath +gsave +4.968077e-01 4.968077e-01 6.210096e-01 setrgbcolor +fill +grestore +newpath +5.326574e+01 4.140918e+00 moveto +5.412489e+01 3.888455e+00 lineto +5.500898e+01 3.729708e+00 lineto +5.421968e+01 3.96963e+00 lineto +5.326574e+01 4.140918e+00 lineto +closepath +gsave +4.986049e-01 4.986049e-01 6.232561e-01 setrgbcolor +fill +grestore +newpath +5.24177e+01 4.433014e+00 moveto +5.326574e+01 4.140918e+00 lineto +5.421968e+01 3.96963e+00 lineto +5.344058e+01 4.249347e+00 lineto +5.24177e+01 4.433014e+00 lineto +closepath +gsave +5.004508e-01 5.004508e-01 6.255635e-01 setrgbcolor +fill +grestore +newpath +5.158158e+01 4.764466e+00 moveto +5.24177e+01 4.433014e+00 lineto +5.344058e+01 4.249347e+00 lineto +5.267243e+01 4.568593e+00 lineto +5.158158e+01 4.764466e+00 lineto +closepath +gsave +5.023441e-01 5.023441e-01 6.279302e-01 setrgbcolor +fill +grestore +newpath +5.075816e+01 5.13496e+00 moveto +5.158158e+01 4.764466e+00 lineto +5.267243e+01 4.568593e+00 lineto +5.191594e+01 4.927068e+00 lineto +5.075816e+01 5.13496e+00 lineto +closepath +gsave +5.042837e-01 5.042837e-01 6.303546e-01 setrgbcolor +fill +grestore +newpath +4.994822e+01 5.544145e+00 moveto +5.075816e+01 5.13496e+00 lineto +5.191594e+01 4.927068e+00 lineto +5.117185e+01 5.32443e+00 lineto +4.994822e+01 5.544145e+00 lineto +closepath +gsave +5.06268e-01 5.06268e-01 6.32835e-01 setrgbcolor +fill +grestore +newpath +4.915253e+01 5.991634e+00 moveto +4.994822e+01 5.544145e+00 lineto +5.117185e+01 5.32443e+00 lineto +5.044085e+01 5.760305e+00 lineto +4.915253e+01 5.991634e+00 lineto +closepath +gsave +5.082957e-01 5.082957e-01 6.353696e-01 setrgbcolor +fill +grestore +newpath +4.837185e+01 6.477004e+00 moveto +4.915253e+01 5.991634e+00 lineto +5.044085e+01 5.760305e+00 lineto +4.972364e+01 6.234279e+00 lineto +4.837185e+01 6.477004e+00 lineto +closepath +gsave +5.103652e-01 5.103652e-01 6.379564e-01 setrgbcolor +fill +grestore +newpath +4.760692e+01 6.999794e+00 moveto +4.837185e+01 6.477004e+00 lineto +4.972364e+01 6.234279e+00 lineto +4.902089e+01 6.745903e+00 lineto +4.760692e+01 6.999794e+00 lineto +closepath +gsave +5.124748e-01 5.124748e-01 6.405935e-01 setrgbcolor +fill +grestore +newpath +4.685845e+01 7.559511e+00 moveto +4.760692e+01 6.999794e+00 lineto +4.902089e+01 6.745903e+00 lineto +4.833326e+01 7.294694e+00 lineto +4.685845e+01 7.559511e+00 lineto +closepath +gsave +5.146229e-01 5.146229e-01 6.432786e-01 setrgbcolor +fill +grestore +newpath +4.612715e+01 8.155623e+00 moveto +4.685845e+01 7.559511e+00 lineto +4.833326e+01 7.294694e+00 lineto +4.766142e+01 7.880131e+00 lineto +4.612715e+01 8.155623e+00 lineto +closepath +gsave +5.168076e-01 5.168076e-01 6.460095e-01 setrgbcolor +fill +grestore +newpath +4.541373e+01 8.787566e+00 moveto +4.612715e+01 8.155623e+00 lineto +4.766142e+01 7.880131e+00 lineto +4.7006e+01 8.50166e+00 lineto +4.541373e+01 8.787566e+00 lineto +closepath +gsave +5.190271e-01 5.190271e-01 6.487839e-01 setrgbcolor +fill +grestore +newpath +4.471885e+01 9.454743e+00 moveto +4.541373e+01 8.787566e+00 lineto +4.7006e+01 8.50166e+00 lineto +4.636761e+01 9.158694e+00 lineto +4.471885e+01 9.454743e+00 lineto +closepath +gsave +5.212795e-01 5.212795e-01 6.515994e-01 setrgbcolor +fill +grestore +newpath +4.404318e+01 1.015652e+01 moveto +4.471885e+01 9.454743e+00 lineto +4.636761e+01 9.158694e+00 lineto +4.574686e+01 9.850609e+00 lineto +4.404318e+01 1.015652e+01 lineto +closepath +gsave +5.235626e-01 5.235626e-01 6.544533e-01 setrgbcolor +fill +grestore +newpath +4.338734e+01 1.089224e+01 moveto +4.404318e+01 1.015652e+01 lineto +4.574686e+01 9.850609e+00 lineto +4.514434e+01 1.057675e+01 lineto +4.338734e+01 1.089224e+01 lineto +closepath +gsave +5.258744e-01 5.258744e-01 6.57343e-01 setrgbcolor +fill +grestore +newpath +4.275197e+01 1.166119e+01 moveto +4.338734e+01 1.089224e+01 lineto +4.514434e+01 1.057675e+01 lineto +4.456062e+01 1.133643e+01 lineto +4.275197e+01 1.166119e+01 lineto +closepath +gsave +5.282127e-01 5.282127e-01 6.602659e-01 setrgbcolor +fill +grestore +newpath +4.213766e+01 1.246266e+01 moveto +4.275197e+01 1.166119e+01 lineto +4.456062e+01 1.133643e+01 lineto +4.399625e+01 1.212893e+01 lineto +4.213766e+01 1.246266e+01 lineto +closepath +gsave +5.305752e-01 5.305752e-01 6.63219e-01 setrgbcolor +fill +grestore +newpath +4.1545e+01 1.329588e+01 moveto +4.213766e+01 1.246266e+01 lineto +4.399625e+01 1.212893e+01 lineto +4.345177e+01 1.29535e+01 lineto +4.1545e+01 1.329588e+01 lineto +closepath +gsave +5.329597e-01 5.329597e-01 6.661996e-01 setrgbcolor +fill +grestore +newpath +4.097455e+01 1.416007e+01 moveto +4.1545e+01 1.329588e+01 lineto +4.345177e+01 1.29535e+01 lineto +4.29277e+01 1.380936e+01 lineto +4.097455e+01 1.416007e+01 lineto +closepath +gsave +5.353637e-01 5.353637e-01 6.692046e-01 setrgbcolor +fill +grestore +newpath +4.042684e+01 1.50544e+01 moveto +4.097455e+01 1.416007e+01 lineto +4.29277e+01 1.380936e+01 lineto +4.242452e+01 1.46957e+01 lineto +4.042684e+01 1.50544e+01 lineto +closepath +gsave +5.377848e-01 5.377848e-01 6.722309e-01 setrgbcolor +fill +grestore +newpath +3.99024e+01 1.597803e+01 moveto +4.042684e+01 1.50544e+01 lineto +4.242452e+01 1.46957e+01 lineto +4.194271e+01 1.561167e+01 lineto +3.99024e+01 1.597803e+01 lineto +closepath +gsave +5.402205e-01 5.402205e-01 6.752756e-01 setrgbcolor +fill +grestore +newpath +3.940173e+01 1.693009e+01 moveto +3.99024e+01 1.597803e+01 lineto +4.194271e+01 1.561167e+01 lineto +4.148274e+01 1.655642e+01 lineto +3.940173e+01 1.693009e+01 lineto +closepath +gsave +5.426682e-01 5.426682e-01 6.783353e-01 setrgbcolor +fill +grestore +newpath +3.892529e+01 1.790967e+01 moveto +3.940173e+01 1.693009e+01 lineto +4.148274e+01 1.655642e+01 lineto +4.104503e+01 1.752905e+01 lineto +3.892529e+01 1.790967e+01 lineto +closepath +gsave +5.451255e-01 5.451255e-01 6.814069e-01 setrgbcolor +fill +grestore +newpath +3.847354e+01 1.891584e+01 moveto +3.892529e+01 1.790967e+01 lineto +4.104503e+01 1.752905e+01 lineto +4.063e+01 1.852863e+01 lineto +3.847354e+01 1.891584e+01 lineto +closepath +gsave +5.475896e-01 5.475896e-01 6.84487e-01 setrgbcolor +fill +grestore +newpath +3.80469e+01 1.994766e+01 moveto +3.847354e+01 1.891584e+01 lineto +4.063e+01 1.852863e+01 lineto +4.023805e+01 1.955422e+01 lineto +3.80469e+01 1.994766e+01 lineto +closepath +gsave +5.500579e-01 5.500579e-01 6.875724e-01 setrgbcolor +fill +grestore +newpath +3.764578e+01 2.100415e+01 moveto +3.80469e+01 1.994766e+01 lineto +4.023805e+01 1.955422e+01 lineto +3.986954e+01 2.060485e+01 lineto +3.764578e+01 2.100415e+01 lineto +closepath +gsave +5.525278e-01 5.525278e-01 6.906597e-01 setrgbcolor +fill +grestore +newpath +3.727056e+01 2.20843e+01 moveto +3.764578e+01 2.100415e+01 lineto +3.986954e+01 2.060485e+01 lineto +3.952483e+01 2.167953e+01 lineto +3.727056e+01 2.20843e+01 lineto +closepath +gsave +5.549963e-01 5.549963e-01 6.937454e-01 setrgbcolor +fill +grestore +newpath +3.69216e+01 2.31871e+01 moveto +3.727056e+01 2.20843e+01 lineto +3.952483e+01 2.167953e+01 lineto +3.920423e+01 2.277723e+01 lineto +3.69216e+01 2.31871e+01 lineto +closepath +gsave +5.574609e-01 5.574609e-01 6.968262e-01 setrgbcolor +fill +grestore +newpath +3.659922e+01 2.431149e+01 moveto +3.69216e+01 2.31871e+01 lineto +3.920423e+01 2.277723e+01 lineto +3.890806e+01 2.389692e+01 lineto +3.659922e+01 2.431149e+01 lineto +closepath +gsave +5.599188e-01 5.599188e-01 6.998985e-01 setrgbcolor +fill +grestore +newpath +5.580774e+01 3.529808e+00 moveto +5.661521e+01 3.370119e+00 lineto +5.740886e+01 3.252948e+00 lineto +5.667783e+01 3.401353e+00 lineto +5.580774e+01 3.529808e+00 lineto +closepath +gsave +5.000432e-01 5.000432e-01 6.25054e-01 setrgbcolor +fill +grestore +newpath +5.500898e+01 3.729708e+00 moveto +5.580774e+01 3.529808e+00 lineto +5.667783e+01 3.401353e+00 lineto +5.595467e+01 3.590091e+00 lineto +5.500898e+01 3.729708e+00 lineto +closepath +gsave +5.022847e-01 5.022847e-01 6.278559e-01 setrgbcolor +fill +grestore +newpath +5.421968e+01 3.96963e+00 moveto +5.500898e+01 3.729708e+00 lineto +5.595467e+01 3.590091e+00 lineto +5.524008e+01 3.818983e+00 lineto +5.421968e+01 3.96963e+00 lineto +closepath +gsave +5.045774e-01 5.045774e-01 6.307217e-01 setrgbcolor +fill +grestore +newpath +5.344058e+01 4.249347e+00 moveto +5.421968e+01 3.96963e+00 lineto +5.524008e+01 3.818983e+00 lineto +5.453472e+01 4.087812e+00 lineto +5.344058e+01 4.249347e+00 lineto +closepath +gsave +5.069196e-01 5.069196e-01 6.336495e-01 setrgbcolor +fill +grestore +newpath +5.267243e+01 4.568593e+00 moveto +5.344058e+01 4.249347e+00 lineto +5.453472e+01 4.087812e+00 lineto +5.383928e+01 4.396325e+00 lineto +5.267243e+01 4.568593e+00 lineto +closepath +gsave +5.093095e-01 5.093095e-01 6.366369e-01 setrgbcolor +fill +grestore +newpath +5.191594e+01 4.927068e+00 moveto +5.267243e+01 4.568593e+00 lineto +5.383928e+01 4.396325e+00 lineto +5.31544e+01 4.744228e+00 lineto +5.191594e+01 4.927068e+00 lineto +closepath +gsave +5.117451e-01 5.117451e-01 6.396814e-01 setrgbcolor +fill +grestore +newpath +5.117185e+01 5.32443e+00 moveto +5.191594e+01 4.927068e+00 lineto +5.31544e+01 4.744228e+00 lineto +5.248074e+01 5.131192e+00 lineto +5.117185e+01 5.32443e+00 lineto +closepath +gsave +5.142245e-01 5.142245e-01 6.427806e-01 setrgbcolor +fill +grestore +newpath +5.044085e+01 5.760305e+00 moveto +5.117185e+01 5.32443e+00 lineto +5.248074e+01 5.131192e+00 lineto +5.181893e+01 5.556852e+00 lineto +5.044085e+01 5.760305e+00 lineto +closepath +gsave +5.167454e-01 5.167454e-01 6.459318e-01 setrgbcolor +fill +grestore +newpath +4.972364e+01 6.234279e+00 moveto +5.044085e+01 5.760305e+00 lineto +5.181893e+01 5.556852e+00 lineto +5.11696e+01 6.020803e+00 lineto +4.972364e+01 6.234279e+00 lineto +closepath +gsave +5.193057e-01 5.193057e-01 6.491322e-01 setrgbcolor +fill +grestore +newpath +4.902089e+01 6.745903e+00 moveto +4.972364e+01 6.234279e+00 lineto +5.11696e+01 6.020803e+00 lineto +5.053337e+01 6.522607e+00 lineto +4.902089e+01 6.745903e+00 lineto +closepath +gsave +5.21903e-01 5.21903e-01 6.523787e-01 setrgbcolor +fill +grestore +newpath +4.833326e+01 7.294694e+00 moveto +4.902089e+01 6.745903e+00 lineto +5.053337e+01 6.522607e+00 lineto +4.991083e+01 7.061789e+00 lineto +4.833326e+01 7.294694e+00 lineto +closepath +gsave +5.245348e-01 5.245348e-01 6.556685e-01 setrgbcolor +fill +grestore +newpath +4.766142e+01 7.880131e+00 moveto +4.833326e+01 7.294694e+00 lineto +4.991083e+01 7.061789e+00 lineto +4.930259e+01 7.637837e+00 lineto +4.766142e+01 7.880131e+00 lineto +closepath +gsave +5.271986e-01 5.271986e-01 6.589983e-01 setrgbcolor +fill +grestore +newpath +4.7006e+01 8.50166e+00 moveto +4.766142e+01 7.880131e+00 lineto +4.930259e+01 7.637837e+00 lineto +4.87092e+01 8.250208e+00 lineto +4.7006e+01 8.50166e+00 lineto +closepath +gsave +5.298918e-01 5.298918e-01 6.623647e-01 setrgbcolor +fill +grestore +newpath +4.636761e+01 9.158694e+00 moveto +4.7006e+01 8.50166e+00 lineto +4.87092e+01 8.250208e+00 lineto +4.813124e+01 8.89832e+00 lineto +4.636761e+01 9.158694e+00 lineto +closepath +gsave +5.326116e-01 5.326116e-01 6.657645e-01 setrgbcolor +fill +grestore +newpath +4.574686e+01 9.850609e+00 moveto +4.636761e+01 9.158694e+00 lineto +4.813124e+01 8.89832e+00 lineto +4.756924e+01 9.58156e+00 lineto +4.574686e+01 9.850609e+00 lineto +closepath +gsave +5.353553e-01 5.353553e-01 6.691942e-01 setrgbcolor +fill +grestore +newpath +4.514434e+01 1.057675e+01 moveto +4.574686e+01 9.850609e+00 lineto +4.756924e+01 9.58156e+00 lineto +4.702376e+01 1.029928e+01 lineto +4.514434e+01 1.057675e+01 lineto +closepath +gsave +5.3812e-01 5.3812e-01 6.726501e-01 setrgbcolor +fill +grestore +newpath +4.456062e+01 1.133643e+01 moveto +4.514434e+01 1.057675e+01 lineto +4.702376e+01 1.029928e+01 lineto +4.649529e+01 1.105081e+01 lineto +4.456062e+01 1.133643e+01 lineto +closepath +gsave +5.409028e-01 5.409028e-01 6.761285e-01 setrgbcolor +fill +grestore +newpath +4.399625e+01 1.212893e+01 moveto +4.456062e+01 1.133643e+01 lineto +4.649529e+01 1.105081e+01 lineto +4.598434e+01 1.183542e+01 lineto +4.399625e+01 1.212893e+01 lineto +closepath +gsave +5.437006e-01 5.437006e-01 6.796258e-01 setrgbcolor +fill +grestore +newpath +4.345177e+01 1.29535e+01 moveto +4.399625e+01 1.212893e+01 lineto +4.598434e+01 1.183542e+01 lineto +4.54914e+01 1.265238e+01 lineto +4.345177e+01 1.29535e+01 lineto +closepath +gsave +5.465104e-01 5.465104e-01 6.83138e-01 setrgbcolor +fill +grestore +newpath +4.29277e+01 1.380936e+01 moveto +4.345177e+01 1.29535e+01 lineto +4.54914e+01 1.265238e+01 lineto +4.501693e+01 1.350092e+01 lineto +4.29277e+01 1.380936e+01 lineto +closepath +gsave +5.493291e-01 5.493291e-01 6.866613e-01 setrgbcolor +fill +grestore +newpath +4.242452e+01 1.46957e+01 moveto +4.29277e+01 1.380936e+01 lineto +4.501693e+01 1.350092e+01 lineto +4.456137e+01 1.438022e+01 lineto +4.242452e+01 1.46957e+01 lineto +closepath +gsave +5.521535e-01 5.521535e-01 6.901918e-01 setrgbcolor +fill +grestore +newpath +4.194271e+01 1.561167e+01 moveto +4.242452e+01 1.46957e+01 lineto +4.456137e+01 1.438022e+01 lineto +4.412517e+01 1.528946e+01 lineto +4.194271e+01 1.561167e+01 lineto +closepath +gsave +5.549804e-01 5.549804e-01 6.937255e-01 setrgbcolor +fill +grestore +newpath +4.148274e+01 1.655642e+01 moveto +4.194271e+01 1.561167e+01 lineto +4.412517e+01 1.528946e+01 lineto +4.370874e+01 1.622778e+01 lineto +4.148274e+01 1.655642e+01 lineto +closepath +gsave +5.578066e-01 5.578066e-01 6.972582e-01 setrgbcolor +fill +grestore +newpath +4.104503e+01 1.752905e+01 moveto +4.148274e+01 1.655642e+01 lineto +4.370874e+01 1.622778e+01 lineto +4.331246e+01 1.719429e+01 lineto +4.104503e+01 1.752905e+01 lineto +closepath +gsave +5.606288e-01 5.606288e-01 7.007861e-01 setrgbcolor +fill +grestore +newpath +4.063e+01 1.852863e+01 moveto +4.104503e+01 1.752905e+01 lineto +4.331246e+01 1.719429e+01 lineto +4.293672e+01 1.818808e+01 lineto +4.063e+01 1.852863e+01 lineto +closepath +gsave +5.634439e-01 5.634439e-01 7.043048e-01 setrgbcolor +fill +grestore +newpath +4.023805e+01 1.955422e+01 moveto +4.063e+01 1.852863e+01 lineto +4.293672e+01 1.818808e+01 lineto +4.258186e+01 1.920819e+01 lineto +4.023805e+01 1.955422e+01 lineto +closepath +gsave +5.662484e-01 5.662484e-01 7.078104e-01 setrgbcolor +fill +grestore +newpath +3.986954e+01 2.060485e+01 moveto +4.023805e+01 1.955422e+01 lineto +4.258186e+01 1.920819e+01 lineto +4.224824e+01 2.025367e+01 lineto +3.986954e+01 2.060485e+01 lineto +closepath +gsave +5.690391e-01 5.690391e-01 7.112988e-01 setrgbcolor +fill +grestore +newpath +3.952483e+01 2.167953e+01 moveto +3.986954e+01 2.060485e+01 lineto +4.224824e+01 2.025367e+01 lineto +4.193615e+01 2.132353e+01 lineto +3.952483e+01 2.167953e+01 lineto +closepath +gsave +5.718127e-01 5.718127e-01 7.147658e-01 setrgbcolor +fill +grestore +newpath +3.920423e+01 2.277723e+01 moveto +3.952483e+01 2.167953e+01 lineto +4.193615e+01 2.132353e+01 lineto +4.16459e+01 2.241675e+01 lineto +3.920423e+01 2.277723e+01 lineto +closepath +gsave +5.745659e-01 5.745659e-01 7.182074e-01 setrgbcolor +fill +grestore +newpath +3.890806e+01 2.389692e+01 moveto +3.920423e+01 2.277723e+01 lineto +4.16459e+01 2.241675e+01 lineto +4.137776e+01 2.353231e+01 lineto +3.890806e+01 2.389692e+01 lineto +closepath +gsave +5.772955e-01 5.772955e-01 7.216193e-01 setrgbcolor +fill +grestore +newpath +5.740886e+01 3.252948e+00 moveto +5.814709e+01 3.145016e+00 lineto +5.890581e+01 3.054385e+00 lineto +5.824932e+01 3.152554e+00 lineto +5.740886e+01 3.252948e+00 lineto +closepath +gsave +5.023185e-01 5.023185e-01 6.278981e-01 setrgbcolor +fill +grestore +newpath +5.667783e+01 3.401353e+00 moveto +5.740886e+01 3.252948e+00 lineto +5.824932e+01 3.152554e+00 lineto +5.759922e+01 3.291291e+00 lineto +5.667783e+01 3.401353e+00 lineto +closepath +gsave +5.050024e-01 5.050024e-01 6.31253e-01 setrgbcolor +fill +grestore +newpath +5.595467e+01 3.590091e+00 moveto +5.667783e+01 3.401353e+00 lineto +5.759922e+01 3.291291e+00 lineto +5.695613e+01 3.470465e+00 lineto +5.595467e+01 3.590091e+00 lineto +closepath +gsave +5.077419e-01 5.077419e-01 6.346774e-01 setrgbcolor +fill +grestore +newpath +5.524008e+01 3.818983e+00 moveto +5.595467e+01 3.590091e+00 lineto +5.695613e+01 3.470465e+00 lineto +5.632065e+01 3.689906e+00 lineto +5.524008e+01 3.818983e+00 lineto +closepath +gsave +5.105346e-01 5.105346e-01 6.381683e-01 setrgbcolor +fill +grestore +newpath +5.453472e+01 4.087812e+00 moveto +5.524008e+01 3.818983e+00 lineto +5.632065e+01 3.689906e+00 lineto +5.569339e+01 3.949407e+00 lineto +5.453472e+01 4.087812e+00 lineto +closepath +gsave +5.133782e-01 5.133782e-01 6.417228e-01 setrgbcolor +fill +grestore +newpath +5.383928e+01 4.396325e+00 moveto +5.453472e+01 4.087812e+00 lineto +5.569339e+01 3.949407e+00 lineto +5.507494e+01 4.248722e+00 lineto +5.383928e+01 4.396325e+00 lineto +closepath +gsave +5.162701e-01 5.162701e-01 6.453376e-01 setrgbcolor +fill +grestore +newpath +5.31544e+01 4.744228e+00 moveto +5.383928e+01 4.396325e+00 lineto +5.507494e+01 4.248722e+00 lineto +5.446589e+01 4.587567e+00 lineto +5.31544e+01 4.744228e+00 lineto +closepath +gsave +5.192076e-01 5.192076e-01 6.490095e-01 setrgbcolor +fill +grestore +newpath +5.248074e+01 5.131192e+00 moveto +5.31544e+01 4.744228e+00 lineto +5.446589e+01 4.587567e+00 lineto +5.386681e+01 4.965622e+00 lineto +5.248074e+01 5.131192e+00 lineto +closepath +gsave +5.221878e-01 5.221878e-01 6.527348e-01 setrgbcolor +fill +grestore +newpath +5.181893e+01 5.556852e+00 moveto +5.248074e+01 5.131192e+00 lineto +5.386681e+01 4.965622e+00 lineto +5.327828e+01 5.382529e+00 lineto +5.181893e+01 5.556852e+00 lineto +closepath +gsave +5.25208e-01 5.25208e-01 6.5651e-01 setrgbcolor +fill +grestore +newpath +5.11696e+01 6.020803e+00 moveto +5.181893e+01 5.556852e+00 lineto +5.327828e+01 5.382529e+00 lineto +5.270084e+01 5.837893e+00 lineto +5.11696e+01 6.020803e+00 lineto +closepath +gsave +5.282649e-01 5.282649e-01 6.603311e-01 setrgbcolor +fill +grestore +newpath +5.053337e+01 6.522607e+00 moveto +5.11696e+01 6.020803e+00 lineto +5.270084e+01 5.837893e+00 lineto +5.213505e+01 6.331283e+00 lineto +5.053337e+01 6.522607e+00 lineto +closepath +gsave +5.313555e-01 5.313555e-01 6.641944e-01 setrgbcolor +fill +grestore +newpath +4.991083e+01 7.061789e+00 moveto +5.053337e+01 6.522607e+00 lineto +5.213505e+01 6.331283e+00 lineto +5.158144e+01 6.862231e+00 lineto +4.991083e+01 7.061789e+00 lineto +closepath +gsave +5.344764e-01 5.344764e-01 6.680956e-01 setrgbcolor +fill +grestore +newpath +4.930259e+01 7.637837e+00 moveto +4.991083e+01 7.061789e+00 lineto +5.158144e+01 6.862231e+00 lineto +5.104053e+01 7.430236e+00 lineto +4.930259e+01 7.637837e+00 lineto +closepath +gsave +5.376244e-01 5.376244e-01 6.720305e-01 setrgbcolor +fill +grestore +newpath +4.87092e+01 8.250208e+00 moveto +4.930259e+01 7.637837e+00 lineto +5.104053e+01 7.430236e+00 lineto +5.051284e+01 8.034758e+00 lineto +4.87092e+01 8.250208e+00 lineto +closepath +gsave +5.407959e-01 5.407959e-01 6.759948e-01 setrgbcolor +fill +grestore +newpath +4.813124e+01 8.89832e+00 moveto +4.87092e+01 8.250208e+00 lineto +5.051284e+01 8.034758e+00 lineto +4.999887e+01 8.675227e+00 lineto +4.813124e+01 8.89832e+00 lineto +closepath +gsave +5.439873e-01 5.439873e-01 6.799841e-01 setrgbcolor +fill +grestore +newpath +4.756924e+01 9.58156e+00 moveto +4.813124e+01 8.89832e+00 lineto +4.999887e+01 8.675227e+00 lineto +4.94991e+01 9.351035e+00 lineto +4.756924e+01 9.58156e+00 lineto +closepath +gsave +5.471951e-01 5.471951e-01 6.839939e-01 setrgbcolor +fill +grestore +newpath +4.702376e+01 1.029928e+01 moveto +4.756924e+01 9.58156e+00 lineto +4.94991e+01 9.351035e+00 lineto +4.9014e+01 1.006154e+01 lineto +4.702376e+01 1.029928e+01 lineto +closepath +gsave +5.504156e-01 5.504156e-01 6.880194e-01 setrgbcolor +fill +grestore +newpath +4.649529e+01 1.105081e+01 moveto +4.702376e+01 1.029928e+01 lineto +4.9014e+01 1.006154e+01 lineto +4.854404e+01 1.080608e+01 lineto +4.649529e+01 1.105081e+01 lineto +closepath +gsave +5.536449e-01 5.536449e-01 6.920561e-01 setrgbcolor +fill +grestore +newpath +4.598434e+01 1.183542e+01 moveto +4.649529e+01 1.105081e+01 lineto +4.854404e+01 1.080608e+01 lineto +4.808967e+01 1.158393e+01 lineto +4.598434e+01 1.183542e+01 lineto +closepath +gsave +5.568794e-01 5.568794e-01 6.960992e-01 setrgbcolor +fill +grestore +newpath +4.54914e+01 1.265238e+01 moveto +4.598434e+01 1.183542e+01 lineto +4.808967e+01 1.158393e+01 lineto +4.76513e+01 1.239438e+01 lineto +4.54914e+01 1.265238e+01 lineto +closepath +gsave +5.601151e-01 5.601151e-01 7.001439e-01 setrgbcolor +fill +grestore +newpath +4.501693e+01 1.350092e+01 moveto +4.54914e+01 1.265238e+01 lineto +4.76513e+01 1.239438e+01 lineto +4.722936e+01 1.323664e+01 lineto +4.501693e+01 1.350092e+01 lineto +closepath +gsave +5.633482e-01 5.633482e-01 7.041852e-01 setrgbcolor +fill +grestore +newpath +4.456137e+01 1.438022e+01 moveto +4.501693e+01 1.350092e+01 lineto +4.722936e+01 1.323664e+01 lineto +4.682424e+01 1.410992e+01 lineto +4.456137e+01 1.438022e+01 lineto +closepath +gsave +5.665748e-01 5.665748e-01 7.082185e-01 setrgbcolor +fill +grestore +newpath +4.412517e+01 1.528946e+01 moveto +4.456137e+01 1.438022e+01 lineto +4.682424e+01 1.410992e+01 lineto +4.643634e+01 1.501339e+01 lineto +4.412517e+01 1.528946e+01 lineto +closepath +gsave +5.697909e-01 5.697909e-01 7.122387e-01 setrgbcolor +fill +grestore +newpath +4.370874e+01 1.622778e+01 moveto +4.412517e+01 1.528946e+01 lineto +4.643634e+01 1.501339e+01 lineto +4.606601e+01 1.59462e+01 lineto +4.370874e+01 1.622778e+01 lineto +closepath +gsave +5.729927e-01 5.729927e-01 7.162409e-01 setrgbcolor +fill +grestore +newpath +4.331246e+01 1.719429e+01 moveto +4.370874e+01 1.622778e+01 lineto +4.606601e+01 1.59462e+01 lineto +4.57136e+01 1.690747e+01 lineto +4.331246e+01 1.719429e+01 lineto +closepath +gsave +5.761763e-01 5.761763e-01 7.202203e-01 setrgbcolor +fill +grestore +newpath +4.293672e+01 1.818808e+01 moveto +4.331246e+01 1.719429e+01 lineto +4.57136e+01 1.690747e+01 lineto +4.537946e+01 1.789628e+01 lineto +4.293672e+01 1.818808e+01 lineto +closepath +gsave +5.793376e-01 5.793376e-01 7.24172e-01 setrgbcolor +fill +grestore +newpath +4.258186e+01 1.920819e+01 moveto +4.293672e+01 1.818808e+01 lineto +4.537946e+01 1.789628e+01 lineto +4.50639e+01 1.891171e+01 lineto +4.258186e+01 1.920819e+01 lineto +closepath +gsave +5.824729e-01 5.824729e-01 7.280911e-01 setrgbcolor +fill +grestore +newpath +4.224824e+01 2.025367e+01 moveto +4.258186e+01 1.920819e+01 lineto +4.50639e+01 1.891171e+01 lineto +4.47672e+01 1.995278e+01 lineto +4.224824e+01 2.025367e+01 lineto +closepath +gsave +5.855783e-01 5.855783e-01 7.319729e-01 setrgbcolor +fill +grestore +newpath +4.193615e+01 2.132353e+01 moveto +4.224824e+01 2.025367e+01 lineto +4.47672e+01 1.995278e+01 lineto +4.448967e+01 2.101851e+01 lineto +4.193615e+01 2.132353e+01 lineto +closepath +gsave +5.8865e-01 5.8865e-01 7.358125e-01 setrgbcolor +fill +grestore +newpath +4.16459e+01 2.241675e+01 moveto +4.193615e+01 2.132353e+01 lineto +4.448967e+01 2.101851e+01 lineto +4.423156e+01 2.210789e+01 lineto +4.16459e+01 2.241675e+01 lineto +closepath +gsave +5.916841e-01 5.916841e-01 7.396052e-01 setrgbcolor +fill +grestore +newpath +4.137776e+01 2.353231e+01 moveto +4.16459e+01 2.241675e+01 lineto +4.423156e+01 2.210789e+01 lineto +4.399311e+01 2.32199e+01 lineto +4.137776e+01 2.353231e+01 lineto +closepath +gsave +5.946771e-01 5.946771e-01 7.433463e-01 setrgbcolor +fill +grestore +newpath +5.824932e+01 3.152554e+00 moveto +5.890581e+01 3.054385e+00 lineto +5.97021e+01 2.979458e+00 lineto +5.913139e+01 3.069555e+00 lineto +5.824932e+01 3.152554e+00 lineto +closepath +gsave +5.067205e-01 5.067205e-01 6.334006e-01 setrgbcolor +fill +grestore +newpath +5.759922e+01 3.291291e+00 moveto +5.824932e+01 3.152554e+00 lineto +5.913139e+01 3.069555e+00 lineto +5.856624e+01 3.200299e+00 lineto +5.759922e+01 3.291291e+00 lineto +closepath +gsave +5.098981e-01 5.098981e-01 6.373727e-01 setrgbcolor +fill +grestore +newpath +5.695613e+01 3.470465e+00 moveto +5.759922e+01 3.291291e+00 lineto +5.856624e+01 3.200299e+00 lineto +5.800717e+01 3.371566e+00 lineto +5.695613e+01 3.470465e+00 lineto +closepath +gsave +5.131346e-01 5.131346e-01 6.414182e-01 setrgbcolor +fill +grestore +newpath +5.632065e+01 3.689906e+00 moveto +5.695613e+01 3.470465e+00 lineto +5.800717e+01 3.371566e+00 lineto +5.745473e+01 3.583195e+00 lineto +5.632065e+01 3.689906e+00 lineto +closepath +gsave +5.164267e-01 5.164267e-01 6.455334e-01 setrgbcolor +fill +grestore +newpath +5.569339e+01 3.949407e+00 moveto +5.632065e+01 3.689906e+00 lineto +5.745473e+01 3.583195e+00 lineto +5.690943e+01 3.834983e+00 lineto +5.569339e+01 3.949407e+00 lineto +closepath +gsave +5.197713e-01 5.197713e-01 6.497141e-01 setrgbcolor +fill +grestore +newpath +5.507494e+01 4.248722e+00 moveto +5.569339e+01 3.949407e+00 lineto +5.690943e+01 3.834983e+00 lineto +5.63718e+01 4.126695e+00 lineto +5.507494e+01 4.248722e+00 lineto +closepath +gsave +5.23165e-01 5.23165e-01 6.539563e-01 setrgbcolor +fill +grestore +newpath +5.446589e+01 4.587567e+00 moveto +5.507494e+01 4.248722e+00 lineto +5.63718e+01 4.126695e+00 lineto +5.584233e+01 4.458052e+00 lineto +5.446589e+01 4.587567e+00 lineto +closepath +gsave +5.266043e-01 5.266043e-01 6.582554e-01 setrgbcolor +fill +grestore +newpath +5.386681e+01 4.965622e+00 moveto +5.446589e+01 4.587567e+00 lineto +5.584233e+01 4.458052e+00 lineto +5.532153e+01 4.828741e+00 lineto +5.386681e+01 4.965622e+00 lineto +closepath +gsave +5.300855e-01 5.300855e-01 6.626068e-01 setrgbcolor +fill +grestore +newpath +5.327828e+01 5.382529e+00 moveto +5.386681e+01 4.965622e+00 lineto +5.532153e+01 4.828741e+00 lineto +5.480989e+01 5.238412e+00 lineto +5.327828e+01 5.382529e+00 lineto +closepath +gsave +5.336047e-01 5.336047e-01 6.670058e-01 setrgbcolor +fill +grestore +newpath +5.270084e+01 5.837893e+00 moveto +5.327828e+01 5.382529e+00 lineto +5.480989e+01 5.238412e+00 lineto +5.430791e+01 5.686677e+00 lineto +5.270084e+01 5.837893e+00 lineto +closepath +gsave +5.371579e-01 5.371579e-01 6.714474e-01 setrgbcolor +fill +grestore +newpath +5.213505e+01 6.331283e+00 moveto +5.270084e+01 5.837893e+00 lineto +5.430791e+01 5.686677e+00 lineto +5.381604e+01 6.17311e+00 lineto +5.213505e+01 6.331283e+00 lineto +closepath +gsave +5.407413e-01 5.407413e-01 6.759266e-01 setrgbcolor +fill +grestore +newpath +5.158144e+01 6.862231e+00 moveto +5.213505e+01 6.331283e+00 lineto +5.381604e+01 6.17311e+00 lineto +5.333477e+01 6.697252e+00 lineto +5.158144e+01 6.862231e+00 lineto +closepath +gsave +5.443504e-01 5.443504e-01 6.80438e-01 setrgbcolor +fill +grestore +newpath +5.104053e+01 7.430236e+00 moveto +5.158144e+01 6.862231e+00 lineto +5.333477e+01 6.697252e+00 lineto +5.286454e+01 7.258606e+00 lineto +5.104053e+01 7.430236e+00 lineto +closepath +gsave +5.479811e-01 5.479811e-01 6.849764e-01 setrgbcolor +fill +grestore +newpath +5.051284e+01 8.034758e+00 moveto +5.104053e+01 7.430236e+00 lineto +5.286454e+01 7.258606e+00 lineto +5.24058e+01 7.856641e+00 lineto +5.051284e+01 8.034758e+00 lineto +closepath +gsave +5.51629e-01 5.51629e-01 6.895363e-01 setrgbcolor +fill +grestore +newpath +4.999887e+01 8.675227e+00 moveto +5.051284e+01 8.034758e+00 lineto +5.24058e+01 7.856641e+00 lineto +5.195898e+01 8.49079e+00 lineto +4.999887e+01 8.675227e+00 lineto +closepath +gsave +5.552896e-01 5.552896e-01 6.94112e-01 setrgbcolor +fill +grestore +newpath +4.94991e+01 9.351035e+00 moveto +4.999887e+01 8.675227e+00 lineto +5.195898e+01 8.49079e+00 lineto +5.152452e+01 9.160453e+00 lineto +4.94991e+01 9.351035e+00 lineto +closepath +gsave +5.589585e-01 5.589585e-01 6.986981e-01 setrgbcolor +fill +grestore +newpath +4.9014e+01 1.006154e+01 moveto +4.94991e+01 9.351035e+00 lineto +5.152452e+01 9.160453e+00 lineto +5.110281e+01 9.864997e+00 lineto +4.9014e+01 1.006154e+01 lineto +closepath +gsave +5.626311e-01 5.626311e-01 7.032888e-01 setrgbcolor +fill +grestore +newpath +4.854404e+01 1.080608e+01 moveto +4.9014e+01 1.006154e+01 lineto +5.110281e+01 9.864997e+00 lineto +5.069425e+01 1.060375e+01 lineto +4.854404e+01 1.080608e+01 lineto +closepath +gsave +5.663027e-01 5.663027e-01 7.078783e-01 setrgbcolor +fill +grestore +newpath +4.808967e+01 1.158393e+01 moveto +4.854404e+01 1.080608e+01 lineto +5.069425e+01 1.060375e+01 lineto +5.029925e+01 1.137602e+01 lineto +4.808967e+01 1.158393e+01 lineto +closepath +gsave +5.699688e-01 5.699688e-01 7.12461e-01 setrgbcolor +fill +grestore +newpath +4.76513e+01 1.239438e+01 moveto +4.808967e+01 1.158393e+01 lineto +5.029925e+01 1.137602e+01 lineto +4.991816e+01 1.218108e+01 lineto +4.76513e+01 1.239438e+01 lineto +closepath +gsave +5.736247e-01 5.736247e-01 7.170308e-01 setrgbcolor +fill +grestore +newpath +4.722936e+01 1.323664e+01 moveto +4.76513e+01 1.239438e+01 lineto +4.991816e+01 1.218108e+01 lineto +4.955135e+01 1.301815e+01 lineto +4.722936e+01 1.323664e+01 lineto +closepath +gsave +5.772657e-01 5.772657e-01 7.215821e-01 setrgbcolor +fill +grestore +newpath +4.682424e+01 1.410992e+01 moveto +4.722936e+01 1.323664e+01 lineto +4.955135e+01 1.301815e+01 lineto +4.919917e+01 1.388645e+01 lineto +4.682424e+01 1.410992e+01 lineto +closepath +gsave +5.808873e-01 5.808873e-01 7.261091e-01 setrgbcolor +fill +grestore +newpath +4.643634e+01 1.501339e+01 moveto +4.682424e+01 1.410992e+01 lineto +4.919917e+01 1.388645e+01 lineto +4.886195e+01 1.478515e+01 lineto +4.643634e+01 1.501339e+01 lineto +closepath +gsave +5.844848e-01 5.844848e-01 7.30606e-01 setrgbcolor +fill +grestore +newpath +4.606601e+01 1.59462e+01 moveto +4.643634e+01 1.501339e+01 lineto +4.886195e+01 1.478515e+01 lineto +4.854001e+01 1.571341e+01 lineto +4.606601e+01 1.59462e+01 lineto +closepath +gsave +5.880536e-01 5.880536e-01 7.35067e-01 setrgbcolor +fill +grestore +newpath +4.57136e+01 1.690747e+01 moveto +4.606601e+01 1.59462e+01 lineto +4.854001e+01 1.571341e+01 lineto +4.823365e+01 1.667035e+01 lineto +4.57136e+01 1.690747e+01 lineto +closepath +gsave +5.915892e-01 5.915892e-01 7.394865e-01 setrgbcolor +fill +grestore +newpath +4.537946e+01 1.789628e+01 moveto +4.57136e+01 1.690747e+01 lineto +4.823365e+01 1.667035e+01 lineto +4.794317e+01 1.765505e+01 lineto +4.537946e+01 1.789628e+01 lineto +closepath +gsave +5.95087e-01 5.95087e-01 7.438587e-01 setrgbcolor +fill +grestore +newpath +4.50639e+01 1.891171e+01 moveto +4.537946e+01 1.789628e+01 lineto +4.794317e+01 1.765505e+01 lineto +4.766884e+01 1.866659e+01 lineto +4.50639e+01 1.891171e+01 lineto +closepath +gsave +5.985426e-01 5.985426e-01 7.481783e-01 setrgbcolor +fill +grestore +newpath +4.47672e+01 1.995278e+01 moveto +4.50639e+01 1.891171e+01 lineto +4.766884e+01 1.866659e+01 lineto +4.741092e+01 1.970402e+01 lineto +4.47672e+01 1.995278e+01 lineto +closepath +gsave +6.019517e-01 6.019517e-01 7.524397e-01 setrgbcolor +fill +grestore +newpath +4.448967e+01 2.101851e+01 moveto +4.47672e+01 1.995278e+01 lineto +4.741092e+01 1.970402e+01 lineto +4.716965e+01 2.076634e+01 lineto +4.448967e+01 2.101851e+01 lineto +closepath +gsave +6.0531e-01 6.0531e-01 7.566375e-01 setrgbcolor +fill +grestore +newpath +4.423156e+01 2.210789e+01 moveto +4.448967e+01 2.101851e+01 lineto +4.716965e+01 2.076634e+01 lineto +4.694526e+01 2.185255e+01 lineto +4.423156e+01 2.210789e+01 lineto +closepath +gsave +6.086131e-01 6.086131e-01 7.607664e-01 setrgbcolor +fill +grestore +newpath +4.399311e+01 2.32199e+01 moveto +4.423156e+01 2.210789e+01 lineto +4.694526e+01 2.185255e+01 lineto +4.673796e+01 2.296162e+01 lineto +4.399311e+01 2.32199e+01 lineto +closepath +gsave +6.118571e-01 6.118571e-01 7.648214e-01 setrgbcolor +fill +grestore +newpath +5.97021e+01 2.979458e+00 moveto +6.027783e+01 2.930093e+00 lineto +6.101671e+01 2.877717e+00 lineto +6.053106e+01 2.920696e+00 lineto +5.97021e+01 2.979458e+00 lineto +closepath +gsave +5.074265e-01 5.074265e-01 6.342831e-01 setrgbcolor +fill +grestore +newpath +5.913139e+01 3.069555e+00 moveto +5.97021e+01 2.979458e+00 lineto +6.053106e+01 2.920696e+00 lineto +6.004965e+01 3.004464e+00 lineto +5.913139e+01 3.069555e+00 lineto +closepath +gsave +5.110253e-01 5.110253e-01 6.387816e-01 setrgbcolor +fill +grestore +newpath +5.856624e+01 3.200299e+00 moveto +5.913139e+01 3.069555e+00 lineto +6.004965e+01 3.004464e+00 lineto +5.957293e+01 3.128939e+00 lineto +5.856624e+01 3.200299e+00 lineto +closepath +gsave +5.146902e-01 5.146902e-01 6.433627e-01 setrgbcolor +fill +grestore +newpath +5.800717e+01 3.371566e+00 moveto +5.856624e+01 3.200299e+00 lineto +5.957293e+01 3.128939e+00 lineto +5.910134e+01 3.294006e+00 lineto +5.800717e+01 3.371566e+00 lineto +closepath +gsave +5.184174e-01 5.184174e-01 6.480217e-01 setrgbcolor +fill +grestore +newpath +5.745473e+01 3.583195e+00 moveto +5.800717e+01 3.371566e+00 lineto +5.910134e+01 3.294006e+00 lineto +5.863534e+01 3.499507e+00 lineto +5.745473e+01 3.583195e+00 lineto +closepath +gsave +5.22203e-01 5.22203e-01 6.527538e-01 setrgbcolor +fill +grestore +newpath +5.690943e+01 3.834983e+00 moveto +5.745473e+01 3.583195e+00 lineto +5.863534e+01 3.499507e+00 lineto +5.817536e+01 3.745247e+00 lineto +5.690943e+01 3.834983e+00 lineto +closepath +gsave +5.260429e-01 5.260429e-01 6.575536e-01 setrgbcolor +fill +grestore +newpath +5.63718e+01 4.126695e+00 moveto +5.690943e+01 3.834983e+00 lineto +5.817536e+01 3.745247e+00 lineto +5.772184e+01 4.030995e+00 lineto +5.63718e+01 4.126695e+00 lineto +closepath +gsave +5.299328e-01 5.299328e-01 6.62416e-01 setrgbcolor +fill +grestore +newpath +5.584233e+01 4.458052e+00 moveto +5.63718e+01 4.126695e+00 lineto +5.772184e+01 4.030995e+00 lineto +5.727522e+01 4.35648e+00 lineto +5.584233e+01 4.458052e+00 lineto +closepath +gsave +5.338681e-01 5.338681e-01 6.673351e-01 setrgbcolor +fill +grestore +newpath +5.532153e+01 4.828741e+00 moveto +5.584233e+01 4.458052e+00 lineto +5.727522e+01 4.35648e+00 lineto +5.683591e+01 4.721393e+00 lineto +5.532153e+01 4.828741e+00 lineto +closepath +gsave +5.378442e-01 5.378442e-01 6.723053e-01 setrgbcolor +fill +grestore +newpath +5.480989e+01 5.238412e+00 moveto +5.532153e+01 4.828741e+00 lineto +5.683591e+01 4.721393e+00 lineto +5.640433e+01 5.125389e+00 lineto +5.480989e+01 5.238412e+00 lineto +closepath +gsave +5.418564e-01 5.418564e-01 6.773205e-01 setrgbcolor +fill +grestore +newpath +5.430791e+01 5.686677e+00 moveto +5.480989e+01 5.238412e+00 lineto +5.640433e+01 5.125389e+00 lineto +5.598089e+01 5.568086e+00 lineto +5.430791e+01 5.686677e+00 lineto +closepath +gsave +5.458997e-01 5.458997e-01 6.823746e-01 setrgbcolor +fill +grestore +newpath +5.381604e+01 6.17311e+00 moveto +5.430791e+01 5.686677e+00 lineto +5.598089e+01 5.568086e+00 lineto +5.556599e+01 6.049064e+00 lineto +5.381604e+01 6.17311e+00 lineto +closepath +gsave +5.49969e-01 5.49969e-01 6.874612e-01 setrgbcolor +fill +grestore +newpath +5.333477e+01 6.697252e+00 moveto +5.381604e+01 6.17311e+00 lineto +5.556599e+01 6.049064e+00 lineto +5.516002e+01 6.567868e+00 lineto +5.333477e+01 6.697252e+00 lineto +closepath +gsave +5.540592e-01 5.540592e-01 6.92574e-01 setrgbcolor +fill +grestore +newpath +5.286454e+01 7.258606e+00 moveto +5.333477e+01 6.697252e+00 lineto +5.516002e+01 6.567868e+00 lineto +5.476337e+01 7.124006e+00 lineto +5.286454e+01 7.258606e+00 lineto +closepath +gsave +5.58165e-01 5.58165e-01 6.977063e-01 setrgbcolor +fill +grestore +newpath +5.24058e+01 7.856641e+00 moveto +5.286454e+01 7.258606e+00 lineto +5.476337e+01 7.124006e+00 lineto +5.437641e+01 7.716953e+00 lineto +5.24058e+01 7.856641e+00 lineto +closepath +gsave +5.622812e-01 5.622812e-01 7.028515e-01 setrgbcolor +fill +grestore +newpath +5.195898e+01 8.49079e+00 moveto +5.24058e+01 7.856641e+00 lineto +5.437641e+01 7.716953e+00 lineto +5.39995e+01 8.346146e+00 lineto +5.195898e+01 8.49079e+00 lineto +closepath +gsave +5.664024e-01 5.664024e-01 7.08003e-01 setrgbcolor +fill +grestore +newpath +5.152452e+01 9.160453e+00 moveto +5.195898e+01 8.49079e+00 lineto +5.39995e+01 8.346146e+00 lineto +5.363302e+01 9.010991e+00 lineto +5.152452e+01 9.160453e+00 lineto +closepath +gsave +5.705231e-01 5.705231e-01 7.131539e-01 setrgbcolor +fill +grestore +newpath +5.110281e+01 9.864997e+00 moveto +5.152452e+01 9.160453e+00 lineto +5.363302e+01 9.010991e+00 lineto +5.327729e+01 9.710857e+00 lineto +5.110281e+01 9.864997e+00 lineto +closepath +gsave +5.746379e-01 5.746379e-01 7.182974e-01 setrgbcolor +fill +grestore +newpath +5.069425e+01 1.060375e+01 moveto +5.110281e+01 9.864997e+00 lineto +5.327729e+01 9.710857e+00 lineto +5.293267e+01 1.044508e+01 lineto +5.069425e+01 1.060375e+01 lineto +closepath +gsave +5.787414e-01 5.787414e-01 7.234268e-01 setrgbcolor +fill +grestore +newpath +5.029925e+01 1.137602e+01 moveto +5.069425e+01 1.060375e+01 lineto +5.293267e+01 1.044508e+01 lineto +5.259947e+01 1.121297e+01 lineto +5.029925e+01 1.137602e+01 lineto +closepath +gsave +5.828281e-01 5.828281e-01 7.285351e-01 setrgbcolor +fill +grestore +newpath +4.991816e+01 1.218108e+01 moveto +5.029925e+01 1.137602e+01 lineto +5.259947e+01 1.121297e+01 lineto +5.227801e+01 1.20138e+01 lineto +4.991816e+01 1.218108e+01 lineto +closepath +gsave +5.868925e-01 5.868925e-01 7.336157e-01 setrgbcolor +fill +grestore +newpath +4.955135e+01 1.301815e+01 moveto +4.991816e+01 1.218108e+01 lineto +5.227801e+01 1.20138e+01 lineto +5.196859e+01 1.28468e+01 lineto +4.955135e+01 1.301815e+01 lineto +closepath +gsave +5.909294e-01 5.909294e-01 7.386617e-01 setrgbcolor +fill +grestore +newpath +4.919917e+01 1.388645e+01 moveto +4.955135e+01 1.301815e+01 lineto +5.196859e+01 1.28468e+01 lineto +5.167152e+01 1.371119e+01 lineto +4.919917e+01 1.388645e+01 lineto +closepath +gsave +5.949332e-01 5.949332e-01 7.436665e-01 setrgbcolor +fill +grestore +newpath +4.886195e+01 1.478515e+01 moveto +4.919917e+01 1.388645e+01 lineto +5.167152e+01 1.371119e+01 lineto +5.138706e+01 1.460616e+01 lineto +4.886195e+01 1.478515e+01 lineto +closepath +gsave +5.988987e-01 5.988987e-01 7.486234e-01 setrgbcolor +fill +grestore +newpath +4.854001e+01 1.571341e+01 moveto +4.886195e+01 1.478515e+01 lineto +5.138706e+01 1.460616e+01 lineto +5.111549e+01 1.553085e+01 lineto +4.854001e+01 1.571341e+01 lineto +closepath +gsave +6.028208e-01 6.028208e-01 7.535259e-01 setrgbcolor +fill +grestore +newpath +4.823365e+01 1.667035e+01 moveto +4.854001e+01 1.571341e+01 lineto +5.111549e+01 1.553085e+01 lineto +5.085707e+01 1.648438e+01 lineto +4.823365e+01 1.667035e+01 lineto +closepath +gsave +6.066941e-01 6.066941e-01 7.583677e-01 setrgbcolor +fill +grestore +newpath +4.794317e+01 1.765505e+01 moveto +4.823365e+01 1.667035e+01 lineto +5.085707e+01 1.648438e+01 lineto +5.061204e+01 1.746587e+01 lineto +4.794317e+01 1.765505e+01 lineto +closepath +gsave +6.105138e-01 6.105138e-01 7.631423e-01 setrgbcolor +fill +grestore +newpath +4.766884e+01 1.866659e+01 moveto +4.794317e+01 1.765505e+01 lineto +5.061204e+01 1.746587e+01 lineto +5.038063e+01 1.847437e+01 lineto +4.766884e+01 1.866659e+01 lineto +closepath +gsave +6.142748e-01 6.142748e-01 7.678436e-01 setrgbcolor +fill +grestore +newpath +4.741092e+01 1.970402e+01 moveto +4.766884e+01 1.866659e+01 lineto +5.038063e+01 1.847437e+01 lineto +5.016307e+01 1.950893e+01 lineto +4.741092e+01 1.970402e+01 lineto +closepath +gsave +6.179724e-01 6.179724e-01 7.724655e-01 setrgbcolor +fill +grestore +newpath +4.716965e+01 2.076634e+01 moveto +4.741092e+01 1.970402e+01 lineto +5.016307e+01 1.950893e+01 lineto +4.995955e+01 2.056857e+01 lineto +4.716965e+01 2.076634e+01 lineto +closepath +gsave +6.216018e-01 6.216018e-01 7.770023e-01 setrgbcolor +fill +grestore +newpath +4.694526e+01 2.185255e+01 moveto +4.716965e+01 2.076634e+01 lineto +4.995955e+01 2.056857e+01 lineto +4.977027e+01 2.165229e+01 lineto +4.694526e+01 2.185255e+01 lineto +closepath +gsave +6.251584e-01 6.251584e-01 7.814481e-01 setrgbcolor +fill +grestore +newpath +4.673796e+01 2.296162e+01 moveto +4.694526e+01 2.185255e+01 lineto +4.977027e+01 2.165229e+01 lineto +4.959541e+01 2.275907e+01 lineto +4.673796e+01 2.296162e+01 lineto +closepath +gsave +6.286379e-01 6.286379e-01 7.857974e-01 setrgbcolor +fill +grestore +newpath +6.053106e+01 2.920696e+00 moveto +6.101671e+01 2.877717e+00 lineto +6.178014e+01 2.840074e+00 lineto +6.138757e+01 2.878463e+00 lineto +6.053106e+01 2.920696e+00 lineto +closepath +gsave +5.111277e-01 5.111277e-01 6.389096e-01 setrgbcolor +fill +grestore +newpath +6.004965e+01 3.004464e+00 moveto +6.053106e+01 2.920696e+00 lineto +6.138757e+01 2.878463e+00 lineto +6.099843e+01 2.957681e+00 lineto +6.004965e+01 3.004464e+00 lineto +closepath +gsave +5.151977e-01 5.151977e-01 6.439972e-01 setrgbcolor +fill +grestore +newpath +5.957293e+01 3.128939e+00 moveto +6.004965e+01 3.004464e+00 lineto +6.099843e+01 2.957681e+00 lineto +6.061307e+01 3.077652e+00 lineto +5.957293e+01 3.128939e+00 lineto +closepath +gsave +5.193385e-01 5.193385e-01 6.491731e-01 setrgbcolor +fill +grestore +newpath +5.910134e+01 3.294006e+00 moveto +5.957293e+01 3.128939e+00 lineto +6.061307e+01 3.077652e+00 lineto +6.023187e+01 3.238261e+00 lineto +5.910134e+01 3.294006e+00 lineto +closepath +gsave +5.235454e-01 5.235454e-01 6.544317e-01 setrgbcolor +fill +grestore +newpath +5.863534e+01 3.499507e+00 moveto +5.910134e+01 3.294006e+00 lineto +6.023187e+01 3.238261e+00 lineto +5.985518e+01 3.439358e+00 lineto +5.863534e+01 3.499507e+00 lineto +closepath +gsave +5.278134e-01 5.278134e-01 6.597667e-01 setrgbcolor +fill +grestore +newpath +5.817536e+01 3.745247e+00 moveto +5.863534e+01 3.499507e+00 lineto +5.985518e+01 3.439358e+00 lineto +5.948336e+01 3.680752e+00 lineto +5.817536e+01 3.745247e+00 lineto +closepath +gsave +5.321374e-01 5.321374e-01 6.651718e-01 setrgbcolor +fill +grestore +newpath +5.772184e+01 4.030995e+00 moveto +5.817536e+01 3.745247e+00 lineto +5.948336e+01 3.680752e+00 lineto +5.911677e+01 3.962214e+00 lineto +5.772184e+01 4.030995e+00 lineto +closepath +gsave +5.365122e-01 5.365122e-01 6.706403e-01 setrgbcolor +fill +grestore +newpath +5.727522e+01 4.35648e+00 moveto +5.772184e+01 4.030995e+00 lineto +5.911677e+01 3.962214e+00 lineto +5.875574e+01 4.283478e+00 lineto +5.727522e+01 4.35648e+00 lineto +closepath +gsave +5.409322e-01 5.409322e-01 6.761653e-01 setrgbcolor +fill +grestore +newpath +5.683591e+01 4.721393e+00 moveto +5.727522e+01 4.35648e+00 lineto +5.875574e+01 4.283478e+00 lineto +5.840063e+01 4.64424e+00 lineto +5.683591e+01 4.721393e+00 lineto +closepath +gsave +5.453918e-01 5.453918e-01 6.817397e-01 setrgbcolor +fill +grestore +newpath +5.640433e+01 5.125389e+00 moveto +5.683591e+01 4.721393e+00 lineto +5.840063e+01 4.64424e+00 lineto +5.805177e+01 5.044157e+00 lineto +5.640433e+01 5.125389e+00 lineto +closepath +gsave +5.49885e-01 5.49885e-01 6.873563e-01 setrgbcolor +fill +grestore +newpath +5.598089e+01 5.568086e+00 moveto +5.640433e+01 5.125389e+00 lineto +5.805177e+01 5.044157e+00 lineto +5.770948e+01 5.482852e+00 lineto +5.598089e+01 5.568086e+00 lineto +closepath +gsave +5.544061e-01 5.544061e-01 6.930076e-01 setrgbcolor +fill +grestore +newpath +5.556599e+01 6.049064e+00 moveto +5.598089e+01 5.568086e+00 lineto +5.770948e+01 5.482852e+00 lineto +5.73741e+01 5.959909e+00 lineto +5.556599e+01 6.049064e+00 lineto +closepath +gsave +5.589488e-01 5.589488e-01 6.98686e-01 setrgbcolor +fill +grestore +newpath +5.516002e+01 6.567868e+00 moveto +5.556599e+01 6.049064e+00 lineto +5.73741e+01 5.959909e+00 lineto +5.704594e+01 6.474876e+00 lineto +5.516002e+01 6.567868e+00 lineto +closepath +gsave +5.63507e-01 5.63507e-01 7.043837e-01 setrgbcolor +fill +grestore +newpath +5.476337e+01 7.124006e+00 moveto +5.516002e+01 6.567868e+00 lineto +5.704594e+01 6.474876e+00 lineto +5.672531e+01 7.027266e+00 lineto +5.476337e+01 7.124006e+00 lineto +closepath +gsave +5.680745e-01 5.680745e-01 7.100931e-01 setrgbcolor +fill +grestore +newpath +5.437641e+01 7.716953e+00 moveto +5.476337e+01 7.124006e+00 lineto +5.672531e+01 7.027266e+00 lineto +5.641251e+01 7.616556e+00 lineto +5.437641e+01 7.716953e+00 lineto +closepath +gsave +5.72645e-01 5.72645e-01 7.158063e-01 setrgbcolor +fill +grestore +newpath +5.39995e+01 8.346146e+00 moveto +5.437641e+01 7.716953e+00 lineto +5.641251e+01 7.616556e+00 lineto +5.610784e+01 8.242188e+00 lineto +5.39995e+01 8.346146e+00 lineto +closepath +gsave +5.772122e-01 5.772122e-01 7.215153e-01 setrgbcolor +fill +grestore +newpath +5.363302e+01 9.010991e+00 moveto +5.39995e+01 8.346146e+00 lineto +5.610784e+01 8.242188e+00 lineto +5.58116e+01 8.903569e+00 lineto +5.363302e+01 9.010991e+00 lineto +closepath +gsave +5.817698e-01 5.817698e-01 7.272123e-01 setrgbcolor +fill +grestore +newpath +5.327729e+01 9.710857e+00 moveto +5.363302e+01 9.010991e+00 lineto +5.58116e+01 8.903569e+00 lineto +5.552405e+01 9.600073e+00 lineto +5.327729e+01 9.710857e+00 lineto +closepath +gsave +5.863114e-01 5.863114e-01 7.328893e-01 setrgbcolor +fill +grestore +newpath +5.293267e+01 1.044508e+01 moveto +5.327729e+01 9.710857e+00 lineto +5.552405e+01 9.600073e+00 lineto +5.524548e+01 1.033104e+01 lineto +5.293267e+01 1.044508e+01 lineto +closepath +gsave +5.908308e-01 5.908308e-01 7.385385e-01 setrgbcolor +fill +grestore +newpath +5.259947e+01 1.121297e+01 moveto +5.293267e+01 1.044508e+01 lineto +5.524548e+01 1.033104e+01 lineto +5.497614e+01 1.109578e+01 lineto +5.259947e+01 1.121297e+01 lineto +closepath +gsave +5.953216e-01 5.953216e-01 7.44152e-01 setrgbcolor +fill +grestore +newpath +5.227801e+01 1.20138e+01 moveto +5.259947e+01 1.121297e+01 lineto +5.497614e+01 1.109578e+01 lineto +5.471629e+01 1.189357e+01 lineto +5.227801e+01 1.20138e+01 lineto +closepath +gsave +5.997777e-01 5.997777e-01 7.497221e-01 setrgbcolor +fill +grestore +newpath +5.196859e+01 1.28468e+01 moveto +5.227801e+01 1.20138e+01 lineto +5.471629e+01 1.189357e+01 lineto +5.446618e+01 1.272365e+01 lineto +5.196859e+01 1.28468e+01 lineto +closepath +gsave +6.04193e-01 6.04193e-01 7.552412e-01 setrgbcolor +fill +grestore +newpath +5.167152e+01 1.371119e+01 moveto +5.196859e+01 1.28468e+01 lineto +5.446618e+01 1.272365e+01 lineto +5.422604e+01 1.358523e+01 lineto +5.167152e+01 1.371119e+01 lineto +closepath +gsave +6.085613e-01 6.085613e-01 7.607017e-01 setrgbcolor +fill +grestore +newpath +5.138706e+01 1.460616e+01 moveto +5.167152e+01 1.371119e+01 lineto +5.422604e+01 1.358523e+01 lineto +5.39961e+01 1.447751e+01 lineto +5.138706e+01 1.460616e+01 lineto +closepath +gsave +6.128769e-01 6.128769e-01 7.660961e-01 setrgbcolor +fill +grestore +newpath +5.111549e+01 1.553085e+01 moveto +5.138706e+01 1.460616e+01 lineto +5.39961e+01 1.447751e+01 lineto +5.377658e+01 1.539963e+01 lineto +5.111549e+01 1.553085e+01 lineto +closepath +gsave +6.171339e-01 6.171339e-01 7.714173e-01 setrgbcolor +fill +grestore +newpath +5.085707e+01 1.648438e+01 moveto +5.111549e+01 1.553085e+01 lineto +5.377658e+01 1.539963e+01 lineto +5.356769e+01 1.635073e+01 lineto +5.085707e+01 1.648438e+01 lineto +closepath +gsave +6.213265e-01 6.213265e-01 7.766582e-01 setrgbcolor +fill +grestore +newpath +5.061204e+01 1.746587e+01 moveto +5.085707e+01 1.648438e+01 lineto +5.356769e+01 1.635073e+01 lineto +5.336962e+01 1.73299e+01 lineto +5.061204e+01 1.746587e+01 lineto +closepath +gsave +6.254494e-01 6.254494e-01 7.818118e-01 setrgbcolor +fill +grestore +newpath +5.038063e+01 1.847437e+01 moveto +5.061204e+01 1.746587e+01 lineto +5.336962e+01 1.73299e+01 lineto +5.318256e+01 1.833621e+01 lineto +5.038063e+01 1.847437e+01 lineto +closepath +gsave +6.294971e-01 6.294971e-01 7.868714e-01 setrgbcolor +fill +grestore +newpath +5.016307e+01 1.950893e+01 moveto +5.038063e+01 1.847437e+01 lineto +5.318256e+01 1.833621e+01 lineto +5.30067e+01 1.936871e+01 lineto +5.016307e+01 1.950893e+01 lineto +closepath +gsave +6.334644e-01 6.334644e-01 7.918305e-01 setrgbcolor +fill +grestore +newpath +4.995955e+01 2.056857e+01 moveto +5.016307e+01 1.950893e+01 lineto +5.30067e+01 1.936871e+01 lineto +5.284218e+01 2.042643e+01 lineto +4.995955e+01 2.056857e+01 lineto +closepath +gsave +6.373463e-01 6.373463e-01 7.966829e-01 setrgbcolor +fill +grestore +newpath +4.977027e+01 2.165229e+01 moveto +4.995955e+01 2.056857e+01 lineto +5.284218e+01 2.042643e+01 lineto +5.268918e+01 2.150837e+01 lineto +4.977027e+01 2.165229e+01 lineto +closepath +gsave +6.411379e-01 6.411379e-01 8.014224e-01 setrgbcolor +fill +grestore +newpath +4.959541e+01 2.275907e+01 moveto +4.977027e+01 2.165229e+01 lineto +5.268918e+01 2.150837e+01 lineto +5.254784e+01 2.261349e+01 lineto +4.959541e+01 2.275907e+01 lineto +closepath +gsave +6.448346e-01 6.448346e-01 8.060432e-01 setrgbcolor +fill +grestore +newpath +6.138757e+01 2.878463e+00 moveto +6.178014e+01 2.840074e+00 lineto +6.256342e+01 2.817394e+00 lineto +6.226636e+01 2.853019e+00 lineto +6.138757e+01 2.878463e+00 lineto +closepath +gsave +5.146781e-01 5.146781e-01 6.433477e-01 setrgbcolor +fill +grestore +newpath +6.099843e+01 2.957681e+00 moveto +6.138757e+01 2.878463e+00 lineto +6.226636e+01 2.853019e+00 lineto +6.197188e+01 2.929496e+00 lineto +6.099843e+01 2.957681e+00 lineto +closepath +gsave +5.192032e-01 5.192032e-01 6.49004e-01 setrgbcolor +fill +grestore +newpath +6.061307e+01 3.077652e+00 moveto +6.099843e+01 2.957681e+00 lineto +6.197188e+01 2.929496e+00 lineto +6.168026e+01 3.046752e+00 lineto +6.061307e+01 3.077652e+00 lineto +closepath +gsave +5.238038e-01 5.238038e-01 6.547547e-01 setrgbcolor +fill +grestore +newpath +6.023187e+01 3.238261e+00 moveto +6.061307e+01 3.077652e+00 lineto +6.168026e+01 3.046752e+00 lineto +6.13918e+01 3.204677e+00 lineto +6.023187e+01 3.238261e+00 lineto +closepath +gsave +5.284742e-01 5.284742e-01 6.605927e-01 setrgbcolor +fill +grestore +newpath +5.985518e+01 3.439358e+00 moveto +6.023187e+01 3.238261e+00 lineto +6.13918e+01 3.204677e+00 lineto +6.110674e+01 3.40312e+00 lineto +5.985518e+01 3.439358e+00 lineto +closepath +gsave +5.332084e-01 5.332084e-01 6.665105e-01 setrgbcolor +fill +grestore +newpath +5.948336e+01 3.680752e+00 moveto +5.985518e+01 3.439358e+00 lineto +6.110674e+01 3.40312e+00 lineto +6.082538e+01 3.641895e+00 lineto +5.948336e+01 3.680752e+00 lineto +closepath +gsave +5.380003e-01 5.380003e-01 6.725004e-01 setrgbcolor +fill +grestore +newpath +5.911677e+01 3.962214e+00 moveto +5.948336e+01 3.680752e+00 lineto +6.082538e+01 3.641895e+00 lineto +6.054796e+01 3.920775e+00 lineto +5.911677e+01 3.962214e+00 lineto +closepath +gsave +5.428436e-01 5.428436e-01 6.785544e-01 setrgbcolor +fill +grestore +newpath +5.875574e+01 4.283478e+00 moveto +5.911677e+01 3.962214e+00 lineto +6.054796e+01 3.920775e+00 lineto +6.027476e+01 4.239496e+00 lineto +5.875574e+01 4.283478e+00 lineto +closepath +gsave +5.477315e-01 5.477315e-01 6.846644e-01 setrgbcolor +fill +grestore +newpath +5.840063e+01 4.64424e+00 moveto +5.875574e+01 4.283478e+00 lineto +6.027476e+01 4.239496e+00 lineto +6.000604e+01 4.597756e+00 lineto +5.840063e+01 4.64424e+00 lineto +closepath +gsave +5.526574e-01 5.526574e-01 6.908218e-01 setrgbcolor +fill +grestore +newpath +5.805177e+01 5.044157e+00 moveto +5.840063e+01 4.64424e+00 lineto +6.000604e+01 4.597756e+00 lineto +5.974204e+01 4.995217e+00 lineto +5.805177e+01 5.044157e+00 lineto +closepath +gsave +5.576144e-01 5.576144e-01 6.970181e-01 setrgbcolor +fill +grestore +newpath +5.770948e+01 5.482852e+00 moveto +5.805177e+01 5.044157e+00 lineto +5.974204e+01 4.995217e+00 lineto +5.948302e+01 5.431501e+00 lineto +5.770948e+01 5.482852e+00 lineto +closepath +gsave +5.625955e-01 5.625955e-01 7.032444e-01 setrgbcolor +fill +grestore +newpath +5.73741e+01 5.959909e+00 moveto +5.770948e+01 5.482852e+00 lineto +5.948302e+01 5.431501e+00 lineto +5.922923e+01 5.906195e+00 lineto +5.73741e+01 5.959909e+00 lineto +closepath +gsave +5.675935e-01 5.675935e-01 7.094919e-01 setrgbcolor +fill +grestore +newpath +5.704594e+01 6.474876e+00 moveto +5.73741e+01 5.959909e+00 lineto +5.922923e+01 5.906195e+00 lineto +5.89809e+01 6.418851e+00 lineto +5.704594e+01 6.474876e+00 lineto +closepath +gsave +5.726013e-01 5.726013e-01 7.157516e-01 setrgbcolor +fill +grestore +newpath +5.672531e+01 7.027266e+00 moveto +5.704594e+01 6.474876e+00 lineto +5.89809e+01 6.418851e+00 lineto +5.873826e+01 6.968983e+00 lineto +5.672531e+01 7.027266e+00 lineto +closepath +gsave +5.776115e-01 5.776115e-01 7.220144e-01 setrgbcolor +fill +grestore +newpath +5.641251e+01 7.616556e+00 moveto +5.672531e+01 7.027266e+00 lineto +5.873826e+01 6.968983e+00 lineto +5.850156e+01 7.556069e+00 lineto +5.641251e+01 7.616556e+00 lineto +closepath +gsave +5.826171e-01 5.826171e-01 7.282714e-01 setrgbcolor +fill +grestore +newpath +5.610784e+01 8.242188e+00 moveto +5.641251e+01 7.616556e+00 lineto +5.850156e+01 7.556069e+00 lineto +5.827101e+01 8.179555e+00 lineto +5.610784e+01 8.242188e+00 lineto +closepath +gsave +5.876106e-01 5.876106e-01 7.345133e-01 setrgbcolor +fill +grestore +newpath +5.58116e+01 8.903569e+00 moveto +5.610784e+01 8.242188e+00 lineto +5.827101e+01 8.179555e+00 lineto +5.804683e+01 8.838849e+00 lineto +5.58116e+01 8.903569e+00 lineto +closepath +gsave +5.925849e-01 5.925849e-01 7.407312e-01 setrgbcolor +fill +grestore +newpath +5.552405e+01 9.600073e+00 moveto +5.58116e+01 8.903569e+00 lineto +5.804683e+01 8.838849e+00 lineto +5.782923e+01 9.533328e+00 lineto +5.552405e+01 9.600073e+00 lineto +closepath +gsave +5.975328e-01 5.975328e-01 7.46916e-01 setrgbcolor +fill +grestore +newpath +5.524548e+01 1.033104e+01 moveto +5.552405e+01 9.600073e+00 lineto +5.782923e+01 9.533328e+00 lineto +5.761843e+01 1.026233e+01 lineto +5.524548e+01 1.033104e+01 lineto +closepath +gsave +6.024472e-01 6.024472e-01 7.53059e-01 setrgbcolor +fill +grestore +newpath +5.497614e+01 1.109578e+01 moveto +5.524548e+01 1.033104e+01 lineto +5.761843e+01 1.026233e+01 lineto +5.741461e+01 1.102518e+01 lineto +5.497614e+01 1.109578e+01 lineto +closepath +gsave +6.07321e-01 6.07321e-01 7.591512e-01 setrgbcolor +fill +grestore +newpath +5.471629e+01 1.189357e+01 moveto +5.497614e+01 1.109578e+01 lineto +5.741461e+01 1.102518e+01 lineto +5.721797e+01 1.182113e+01 lineto +5.471629e+01 1.189357e+01 lineto +closepath +gsave +6.121473e-01 6.121473e-01 7.651841e-01 setrgbcolor +fill +grestore +newpath +5.446618e+01 1.272365e+01 moveto +5.471629e+01 1.189357e+01 lineto +5.721797e+01 1.182113e+01 lineto +5.70287e+01 1.264945e+01 lineto +5.446618e+01 1.272365e+01 lineto +closepath +gsave +6.169193e-01 6.169193e-01 7.711491e-01 setrgbcolor +fill +grestore +newpath +5.422604e+01 1.358523e+01 moveto +5.446618e+01 1.272365e+01 lineto +5.70287e+01 1.264945e+01 lineto +5.684698e+01 1.350935e+01 lineto +5.422604e+01 1.358523e+01 lineto +closepath +gsave +6.216303e-01 6.216303e-01 7.770379e-01 setrgbcolor +fill +grestore +newpath +5.39961e+01 1.447751e+01 moveto +5.422604e+01 1.358523e+01 lineto +5.684698e+01 1.350935e+01 lineto +5.667298e+01 1.44e+01 lineto +5.39961e+01 1.447751e+01 lineto +closepath +gsave +6.262739e-01 6.262739e-01 7.828424e-01 setrgbcolor +fill +grestore +newpath +5.377658e+01 1.539963e+01 moveto +5.39961e+01 1.447751e+01 lineto +5.667298e+01 1.44e+01 lineto +5.650686e+01 1.532058e+01 lineto +5.377658e+01 1.539963e+01 lineto +closepath +gsave +6.308438e-01 6.308438e-01 7.885547e-01 setrgbcolor +fill +grestore +newpath +5.356769e+01 1.635073e+01 moveto +5.377658e+01 1.539963e+01 lineto +5.650686e+01 1.532058e+01 lineto +5.634879e+01 1.62702e+01 lineto +5.356769e+01 1.635073e+01 lineto +closepath +gsave +6.353338e-01 6.353338e-01 7.941672e-01 setrgbcolor +fill +grestore +newpath +5.336962e+01 1.73299e+01 moveto +5.356769e+01 1.635073e+01 lineto +5.634879e+01 1.62702e+01 lineto +5.61989e+01 1.724798e+01 lineto +5.336962e+01 1.73299e+01 lineto +closepath +gsave +6.397379e-01 6.397379e-01 7.996724e-01 setrgbcolor +fill +grestore +newpath +5.318256e+01 1.833621e+01 moveto +5.336962e+01 1.73299e+01 lineto +5.61989e+01 1.724798e+01 lineto +5.605735e+01 1.825297e+01 lineto +5.318256e+01 1.833621e+01 lineto +closepath +gsave +6.440505e-01 6.440505e-01 8.050632e-01 setrgbcolor +fill +grestore +newpath +5.30067e+01 1.936871e+01 moveto +5.318256e+01 1.833621e+01 lineto +5.605735e+01 1.825297e+01 lineto +5.592427e+01 1.928424e+01 lineto +5.30067e+01 1.936871e+01 lineto +closepath +gsave +6.482661e-01 6.482661e-01 8.103326e-01 setrgbcolor +fill +grestore +newpath +5.284218e+01 2.042643e+01 moveto +5.30067e+01 1.936871e+01 lineto +5.592427e+01 1.928424e+01 lineto +5.579977e+01 2.03408e+01 lineto +5.284218e+01 2.042643e+01 lineto +closepath +gsave +6.523794e-01 6.523794e-01 8.154742e-01 setrgbcolor +fill +grestore +newpath +5.268918e+01 2.150837e+01 moveto +5.284218e+01 2.042643e+01 lineto +5.579977e+01 2.03408e+01 lineto +5.568399e+01 2.142165e+01 lineto +5.268918e+01 2.150837e+01 lineto +closepath +gsave +6.563853e-01 6.563853e-01 8.204816e-01 setrgbcolor +fill +grestore +newpath +5.254784e+01 2.261349e+01 moveto +5.268918e+01 2.150837e+01 lineto +5.568399e+01 2.142165e+01 lineto +5.557703e+01 2.252578e+01 lineto +5.254784e+01 2.261349e+01 lineto +closepath +gsave +6.602789e-01 6.602789e-01 8.253487e-01 setrgbcolor +fill +grestore +newpath +6.226636e+01 2.853019e+00 moveto +6.256342e+01 2.817394e+00 lineto +6.336173e+01 2.809819e+00 lineto +6.316199e+01 2.84452e+00 lineto +6.226636e+01 2.853019e+00 lineto +closepath +gsave +5.180486e-01 5.180486e-01 6.475607e-01 setrgbcolor +fill +grestore +newpath +6.197188e+01 2.929496e+00 moveto +6.226636e+01 2.853019e+00 lineto +6.316199e+01 2.84452e+00 lineto +6.2964e+01 2.920081e+00 lineto +6.197188e+01 2.929496e+00 lineto +closepath +gsave +5.230081e-01 5.230081e-01 6.537601e-01 setrgbcolor +fill +grestore +newpath +6.168026e+01 3.046752e+00 moveto +6.197188e+01 2.929496e+00 lineto +6.2964e+01 2.920081e+00 lineto +6.276792e+01 3.036431e+00 lineto +6.168026e+01 3.046752e+00 lineto +closepath +gsave +5.280477e-01 5.280477e-01 6.600597e-01 setrgbcolor +fill +grestore +newpath +6.13918e+01 3.204677e+00 moveto +6.168026e+01 3.046752e+00 lineto +6.276792e+01 3.036431e+00 lineto +6.257397e+01 3.193459e+00 lineto +6.13918e+01 3.204677e+00 lineto +closepath +gsave +5.331608e-01 5.331608e-01 6.66451e-01 setrgbcolor +fill +grestore +newpath +6.110674e+01 3.40312e+00 moveto +6.13918e+01 3.204677e+00 lineto +6.257397e+01 3.193459e+00 lineto +6.238231e+01 3.391016e+00 lineto +6.110674e+01 3.40312e+00 lineto +closepath +gsave +5.383402e-01 5.383402e-01 6.729253e-01 setrgbcolor +fill +grestore +newpath +6.082538e+01 3.641895e+00 moveto +6.110674e+01 3.40312e+00 lineto +6.238231e+01 3.391016e+00 lineto +6.219313e+01 3.628916e+00 lineto +6.082538e+01 3.641895e+00 lineto +closepath +gsave +5.435788e-01 5.435788e-01 6.794735e-01 setrgbcolor +fill +grestore +newpath +6.054796e+01 3.920775e+00 moveto +6.082538e+01 3.641895e+00 lineto +6.219313e+01 3.628916e+00 lineto +6.20066e+01 3.906934e+00 lineto +6.054796e+01 3.920775e+00 lineto +closepath +gsave +5.48869e-01 5.48869e-01 6.860862e-01 setrgbcolor +fill +grestore +newpath +6.027476e+01 4.239496e+00 moveto +6.054796e+01 3.920775e+00 lineto +6.20066e+01 3.906934e+00 lineto +6.182291e+01 4.224805e+00 lineto +6.027476e+01 4.239496e+00 lineto +closepath +gsave +5.542031e-01 5.542031e-01 6.927539e-01 setrgbcolor +fill +grestore +newpath +6.000604e+01 4.597756e+00 moveto +6.027476e+01 4.239496e+00 lineto +6.182291e+01 4.224805e+00 lineto +6.164223e+01 4.58223e+00 lineto +6.000604e+01 4.597756e+00 lineto +closepath +gsave +5.595733e-01 5.595733e-01 6.994667e-01 setrgbcolor +fill +grestore +newpath +5.974204e+01 4.995217e+00 moveto +6.000604e+01 4.597756e+00 lineto +6.164223e+01 4.58223e+00 lineto +6.146473e+01 4.97887e+00 lineto +5.974204e+01 4.995217e+00 lineto +closepath +gsave +5.649717e-01 5.649717e-01 7.062146e-01 setrgbcolor +fill +grestore +newpath +5.948302e+01 5.431501e+00 moveto +5.974204e+01 4.995217e+00 lineto +6.146473e+01 4.97887e+00 lineto +6.129057e+01 5.414348e+00 lineto +5.948302e+01 5.431501e+00 lineto +closepath +gsave +5.7039e-01 5.7039e-01 7.129876e-01 setrgbcolor +fill +grestore +newpath +5.922923e+01 5.906195e+00 moveto +5.948302e+01 5.431501e+00 lineto +6.129057e+01 5.414348e+00 lineto +6.111993e+01 5.888254e+00 lineto +5.922923e+01 5.906195e+00 lineto +closepath +gsave +5.758203e-01 5.758203e-01 7.197753e-01 setrgbcolor +fill +grestore +newpath +5.89809e+01 6.418851e+00 moveto +5.922923e+01 5.906195e+00 lineto +6.111993e+01 5.888254e+00 lineto +6.095296e+01 6.400138e+00 lineto +5.89809e+01 6.418851e+00 lineto +closepath +gsave +5.812541e-01 5.812541e-01 7.265677e-01 setrgbcolor +fill +grestore +newpath +5.873826e+01 6.968983e+00 moveto +5.89809e+01 6.418851e+00 lineto +6.095296e+01 6.400138e+00 lineto +6.078983e+01 6.949515e+00 lineto +5.873826e+01 6.968983e+00 lineto +closepath +gsave +5.866834e-01 5.866834e-01 7.333543e-01 setrgbcolor +fill +grestore +newpath +5.850156e+01 7.556069e+00 moveto +5.873826e+01 6.968983e+00 lineto +6.078983e+01 6.949515e+00 lineto +6.063067e+01 7.535866e+00 lineto +5.850156e+01 7.556069e+00 lineto +closepath +gsave +5.920999e-01 5.920999e-01 7.401249e-01 setrgbcolor +fill +grestore +newpath +5.827101e+01 8.179555e+00 moveto +5.850156e+01 7.556069e+00 lineto +6.063067e+01 7.535866e+00 lineto +6.047566e+01 8.158634e+00 lineto +5.827101e+01 8.179555e+00 lineto +closepath +gsave +5.974954e-01 5.974954e-01 7.468693e-01 setrgbcolor +fill +grestore +newpath +5.804683e+01 8.838849e+00 moveto +5.827101e+01 8.179555e+00 lineto +6.047566e+01 8.158634e+00 lineto +6.032493e+01 8.817232e+00 lineto +5.804683e+01 8.838849e+00 lineto +closepath +gsave +6.028619e-01 6.028619e-01 7.535773e-01 setrgbcolor +fill +grestore +newpath +5.782923e+01 9.533328e+00 moveto +5.804683e+01 8.838849e+00 lineto +6.032493e+01 8.817232e+00 lineto +6.017862e+01 9.511034e+00 lineto +5.782923e+01 9.533328e+00 lineto +closepath +gsave +6.081912e-01 6.081912e-01 7.60239e-01 setrgbcolor +fill +grestore +newpath +5.761843e+01 1.026233e+01 moveto +5.782923e+01 9.533328e+00 lineto +6.017862e+01 9.511034e+00 lineto +6.003689e+01 1.023938e+01 lineto +5.761843e+01 1.026233e+01 lineto +closepath +gsave +6.134755e-01 6.134755e-01 7.668444e-01 setrgbcolor +fill +grestore +newpath +5.741461e+01 1.102518e+01 moveto +5.761843e+01 1.026233e+01 lineto +6.003689e+01 1.023938e+01 lineto +5.989984e+01 1.100159e+01 lineto +5.741461e+01 1.102518e+01 lineto +closepath +gsave +6.187071e-01 6.187071e-01 7.733839e-01 setrgbcolor +fill +grestore +newpath +5.721797e+01 1.182113e+01 moveto +5.741461e+01 1.102518e+01 lineto +5.989984e+01 1.100159e+01 lineto +5.976763e+01 1.179694e+01 lineto +5.721797e+01 1.182113e+01 lineto +closepath +gsave +6.238784e-01 6.238784e-01 7.798479e-01 setrgbcolor +fill +grestore +newpath +5.70287e+01 1.264945e+01 moveto +5.721797e+01 1.182113e+01 lineto +5.976763e+01 1.179694e+01 lineto +5.964038e+01 1.262467e+01 lineto +5.70287e+01 1.264945e+01 lineto +closepath +gsave +6.289818e-01 6.289818e-01 7.862273e-01 setrgbcolor +fill +grestore +newpath +5.684698e+01 1.350935e+01 moveto +5.70287e+01 1.264945e+01 lineto +5.964038e+01 1.262467e+01 lineto +5.951819e+01 1.3484e+01 lineto +5.684698e+01 1.350935e+01 lineto +closepath +gsave +6.340104e-01 6.340104e-01 7.92513e-01 setrgbcolor +fill +grestore +newpath +5.667298e+01 1.44e+01 moveto +5.684698e+01 1.350935e+01 lineto +5.951819e+01 1.3484e+01 lineto +5.94012e+01 1.437412e+01 lineto +5.667298e+01 1.44e+01 lineto +closepath +gsave +6.389569e-01 6.389569e-01 7.986962e-01 setrgbcolor +fill +grestore +newpath +5.650686e+01 1.532058e+01 moveto +5.667298e+01 1.44e+01 lineto +5.94012e+01 1.437412e+01 lineto +5.928951e+01 1.529418e+01 lineto +5.650686e+01 1.532058e+01 lineto +closepath +gsave +6.438148e-01 6.438148e-01 8.047685e-01 setrgbcolor +fill +grestore +newpath +5.634879e+01 1.62702e+01 moveto +5.650686e+01 1.532058e+01 lineto +5.928951e+01 1.529418e+01 lineto +5.918322e+01 1.624331e+01 lineto +5.634879e+01 1.62702e+01 lineto +closepath +gsave +6.485774e-01 6.485774e-01 8.107218e-01 setrgbcolor +fill +grestore +newpath +5.61989e+01 1.724798e+01 moveto +5.634879e+01 1.62702e+01 lineto +5.918322e+01 1.624331e+01 lineto +5.908245e+01 1.722061e+01 lineto +5.61989e+01 1.724798e+01 lineto +closepath +gsave +6.532386e-01 6.532386e-01 8.165482e-01 setrgbcolor +fill +grestore +newpath +5.605735e+01 1.825297e+01 moveto +5.61989e+01 1.724798e+01 lineto +5.908245e+01 1.722061e+01 lineto +5.898727e+01 1.822517e+01 lineto +5.605735e+01 1.825297e+01 lineto +closepath +gsave +6.577922e-01 6.577922e-01 8.222403e-01 setrgbcolor +fill +grestore +newpath +5.592427e+01 1.928424e+01 moveto +5.605735e+01 1.825297e+01 lineto +5.898727e+01 1.822517e+01 lineto +5.889779e+01 1.925602e+01 lineto +5.592427e+01 1.928424e+01 lineto +closepath +gsave +6.622327e-01 6.622327e-01 8.277909e-01 setrgbcolor +fill +grestore +newpath +5.579977e+01 2.03408e+01 moveto +5.592427e+01 1.928424e+01 lineto +5.889779e+01 1.925602e+01 lineto +5.881409e+01 2.03122e+01 lineto +5.579977e+01 2.03408e+01 lineto +closepath +gsave +6.665546e-01 6.665546e-01 8.331932e-01 setrgbcolor +fill +grestore +newpath +5.568399e+01 2.142165e+01 moveto +5.579977e+01 2.03408e+01 lineto +5.881409e+01 2.03122e+01 lineto +5.873624e+01 2.139269e+01 lineto +5.568399e+01 2.142165e+01 lineto +closepath +gsave +6.707526e-01 6.707526e-01 8.384408e-01 setrgbcolor +fill +grestore +newpath +5.557703e+01 2.252578e+01 moveto +5.568399e+01 2.142165e+01 lineto +5.873624e+01 2.139269e+01 lineto +5.866432e+01 2.249648e+01 lineto +5.557703e+01 2.252578e+01 lineto +closepath +gsave +6.74822e-01 6.74822e-01 8.435275e-01 setrgbcolor +fill +grestore +newpath +6.316199e+01 2.84452e+00 moveto +6.336173e+01 2.809819e+00 lineto +6.417014e+01 2.817394e+00 lineto +6.406896e+01 2.853019e+00 lineto +6.316199e+01 2.84452e+00 lineto +closepath +gsave +5.212111e-01 5.212111e-01 6.515139e-01 setrgbcolor +fill +grestore +newpath +6.2964e+01 2.920081e+00 moveto +6.316199e+01 2.84452e+00 lineto +6.406896e+01 2.853019e+00 lineto +6.396867e+01 2.929496e+00 lineto +6.2964e+01 2.920081e+00 lineto +closepath +gsave +5.265801e-01 5.265801e-01 6.582252e-01 setrgbcolor +fill +grestore +newpath +6.276792e+01 3.036431e+00 moveto +6.2964e+01 2.920081e+00 lineto +6.396867e+01 2.929496e+00 lineto +6.386935e+01 3.046752e+00 lineto +6.276792e+01 3.036431e+00 lineto +closepath +gsave +5.320338e-01 5.320338e-01 6.650422e-01 setrgbcolor +fill +grestore +newpath +6.257397e+01 3.193459e+00 moveto +6.276792e+01 3.036431e+00 lineto +6.386935e+01 3.046752e+00 lineto +6.37711e+01 3.204677e+00 lineto +6.257397e+01 3.193459e+00 lineto +closepath +gsave +5.375642e-01 5.375642e-01 6.719552e-01 setrgbcolor +fill +grestore +newpath +6.238231e+01 3.391016e+00 moveto +6.257397e+01 3.193459e+00 lineto +6.37711e+01 3.204677e+00 lineto +6.367401e+01 3.40312e+00 lineto +6.238231e+01 3.391016e+00 lineto +closepath +gsave +5.431632e-01 5.431632e-01 6.78954e-01 setrgbcolor +fill +grestore +newpath +6.219313e+01 3.628916e+00 moveto +6.238231e+01 3.391016e+00 lineto +6.367401e+01 3.40312e+00 lineto +6.357818e+01 3.641895e+00 lineto +6.219313e+01 3.628916e+00 lineto +closepath +gsave +5.488226e-01 5.488226e-01 6.860282e-01 setrgbcolor +fill +grestore +newpath +6.20066e+01 3.906934e+00 moveto +6.219313e+01 3.628916e+00 lineto +6.357818e+01 3.641895e+00 lineto +6.34837e+01 3.920775e+00 lineto +6.20066e+01 3.906934e+00 lineto +closepath +gsave +5.545336e-01 5.545336e-01 6.931669e-01 setrgbcolor +fill +grestore +newpath +6.182291e+01 4.224805e+00 moveto +6.20066e+01 3.906934e+00 lineto +6.34837e+01 3.920775e+00 lineto +6.339065e+01 4.239496e+00 lineto +6.182291e+01 4.224805e+00 lineto +closepath +gsave +5.602874e-01 5.602874e-01 7.003593e-01 setrgbcolor +fill +grestore +newpath +6.164223e+01 4.58223e+00 moveto +6.182291e+01 4.224805e+00 lineto +6.339065e+01 4.239496e+00 lineto +6.329913e+01 4.597756e+00 lineto +6.164223e+01 4.58223e+00 lineto +closepath +gsave +5.660753e-01 5.660753e-01 7.075941e-01 setrgbcolor +fill +grestore +newpath +6.146473e+01 4.97887e+00 moveto +6.164223e+01 4.58223e+00 lineto +6.329913e+01 4.597756e+00 lineto +6.320922e+01 4.995217e+00 lineto +6.146473e+01 4.97887e+00 lineto +closepath +gsave +5.718879e-01 5.718879e-01 7.148599e-01 setrgbcolor +fill +grestore +newpath +6.129057e+01 5.414348e+00 moveto +6.146473e+01 4.97887e+00 lineto +6.320922e+01 4.995217e+00 lineto +6.3121e+01 5.431501e+00 lineto +6.129057e+01 5.414348e+00 lineto +closepath +gsave +5.777163e-01 5.777163e-01 7.221454e-01 setrgbcolor +fill +grestore +newpath +6.111993e+01 5.888254e+00 moveto +6.129057e+01 5.414348e+00 lineto +6.3121e+01 5.431501e+00 lineto +6.303456e+01 5.906195e+00 lineto +6.111993e+01 5.888254e+00 lineto +closepath +gsave +5.835512e-01 5.835512e-01 7.294391e-01 setrgbcolor +fill +grestore +newpath +6.095296e+01 6.400138e+00 moveto +6.111993e+01 5.888254e+00 lineto +6.303456e+01 5.906195e+00 lineto +6.294998e+01 6.418851e+00 lineto +6.095296e+01 6.400138e+00 lineto +closepath +gsave +5.893835e-01 5.893835e-01 7.367293e-01 setrgbcolor +fill +grestore +newpath +6.078983e+01 6.949515e+00 moveto +6.095296e+01 6.400138e+00 lineto +6.294998e+01 6.418851e+00 lineto +6.286734e+01 6.968983e+00 lineto +6.078983e+01 6.949515e+00 lineto +closepath +gsave +5.952038e-01 5.952038e-01 7.440047e-01 setrgbcolor +fill +grestore +newpath +6.063067e+01 7.535866e+00 moveto +6.078983e+01 6.949515e+00 lineto +6.286734e+01 6.968983e+00 lineto +6.278673e+01 7.556069e+00 lineto +6.063067e+01 7.535866e+00 lineto +closepath +gsave +6.010031e-01 6.010031e-01 7.512538e-01 setrgbcolor +fill +grestore +newpath +6.047566e+01 8.158634e+00 moveto +6.063067e+01 7.535866e+00 lineto +6.278673e+01 7.556069e+00 lineto +6.27082e+01 8.179555e+00 lineto +6.047566e+01 8.158634e+00 lineto +closepath +gsave +6.067723e-01 6.067723e-01 7.584653e-01 setrgbcolor +fill +grestore +newpath +6.032493e+01 8.817232e+00 moveto +6.047566e+01 8.158634e+00 lineto +6.27082e+01 8.179555e+00 lineto +6.263185e+01 8.838849e+00 lineto +6.032493e+01 8.817232e+00 lineto +closepath +gsave +6.125024e-01 6.125024e-01 7.65628e-01 setrgbcolor +fill +grestore +newpath +6.017862e+01 9.511034e+00 moveto +6.032493e+01 8.817232e+00 lineto +6.263185e+01 8.838849e+00 lineto +6.255774e+01 9.533328e+00 lineto +6.017862e+01 9.511034e+00 lineto +closepath +gsave +6.181848e-01 6.181848e-01 7.72731e-01 setrgbcolor +fill +grestore +newpath +6.003689e+01 1.023938e+01 moveto +6.017862e+01 9.511034e+00 lineto +6.255774e+01 9.533328e+00 lineto +6.248594e+01 1.026233e+01 lineto +6.003689e+01 1.023938e+01 lineto +closepath +gsave +6.238107e-01 6.238107e-01 7.797634e-01 setrgbcolor +fill +grestore +newpath +5.989984e+01 1.100159e+01 moveto +6.003689e+01 1.023938e+01 lineto +6.248594e+01 1.026233e+01 lineto +6.241653e+01 1.102518e+01 lineto +5.989984e+01 1.100159e+01 lineto +closepath +gsave +6.293718e-01 6.293718e-01 7.867147e-01 setrgbcolor +fill +grestore +newpath +5.976763e+01 1.179694e+01 moveto +5.989984e+01 1.100159e+01 lineto +6.241653e+01 1.102518e+01 lineto +6.234956e+01 1.182113e+01 lineto +5.976763e+01 1.179694e+01 lineto +closepath +gsave +6.348598e-01 6.348598e-01 7.935747e-01 setrgbcolor +fill +grestore +newpath +5.964038e+01 1.262467e+01 moveto +5.976763e+01 1.179694e+01 lineto +6.234956e+01 1.182113e+01 lineto +6.228509e+01 1.264945e+01 lineto +5.964038e+01 1.262467e+01 lineto +closepath +gsave +6.402668e-01 6.402668e-01 8.003334e-01 setrgbcolor +fill +grestore +newpath +5.951819e+01 1.3484e+01 moveto +5.964038e+01 1.262467e+01 lineto +6.228509e+01 1.264945e+01 lineto +6.22232e+01 1.350935e+01 lineto +5.951819e+01 1.3484e+01 lineto +closepath +gsave +6.45585e-01 6.45585e-01 8.069813e-01 setrgbcolor +fill +grestore +newpath +5.94012e+01 1.437412e+01 moveto +5.951819e+01 1.3484e+01 lineto +6.22232e+01 1.350935e+01 lineto +6.216394e+01 1.44e+01 lineto +5.94012e+01 1.437412e+01 lineto +closepath +gsave +6.508072e-01 6.508072e-01 8.13509e-01 setrgbcolor +fill +grestore +newpath +5.928951e+01 1.529418e+01 moveto +5.94012e+01 1.437412e+01 lineto +6.216394e+01 1.44e+01 lineto +6.210736e+01 1.532058e+01 lineto +5.928951e+01 1.529418e+01 lineto +closepath +gsave +6.559261e-01 6.559261e-01 8.199076e-01 setrgbcolor +fill +grestore +newpath +5.918322e+01 1.624331e+01 moveto +5.928951e+01 1.529418e+01 lineto +6.210736e+01 1.532058e+01 lineto +6.205352e+01 1.62702e+01 lineto +5.918322e+01 1.624331e+01 lineto +closepath +gsave +6.609349e-01 6.609349e-01 8.261687e-01 setrgbcolor +fill +grestore +newpath +5.908245e+01 1.722061e+01 moveto +5.918322e+01 1.624331e+01 lineto +6.205352e+01 1.62702e+01 lineto +6.200248e+01 1.724798e+01 lineto +5.908245e+01 1.722061e+01 lineto +closepath +gsave +6.658272e-01 6.658272e-01 8.32284e-01 setrgbcolor +fill +grestore +newpath +5.898727e+01 1.822517e+01 moveto +5.908245e+01 1.722061e+01 lineto +6.200248e+01 1.724798e+01 lineto +6.195427e+01 1.825297e+01 lineto +5.898727e+01 1.822517e+01 lineto +closepath +gsave +6.705968e-01 6.705968e-01 8.38246e-01 setrgbcolor +fill +grestore +newpath +5.889779e+01 1.925602e+01 moveto +5.898727e+01 1.822517e+01 lineto +6.195427e+01 1.825297e+01 lineto +6.190894e+01 1.928424e+01 lineto +5.889779e+01 1.925602e+01 lineto +closepath +gsave +6.752377e-01 6.752377e-01 8.440471e-01 setrgbcolor +fill +grestore +newpath +5.881409e+01 2.03122e+01 moveto +5.889779e+01 1.925602e+01 lineto +6.190894e+01 1.928424e+01 lineto +6.186654e+01 2.03408e+01 lineto +5.881409e+01 2.03122e+01 lineto +closepath +gsave +6.797445e-01 6.797445e-01 8.496807e-01 setrgbcolor +fill +grestore +newpath +5.873624e+01 2.139269e+01 moveto +5.881409e+01 2.03122e+01 lineto +6.186654e+01 2.03408e+01 lineto +6.18271e+01 2.142165e+01 lineto +5.873624e+01 2.139269e+01 lineto +closepath +gsave +6.84112e-01 6.84112e-01 8.551401e-01 setrgbcolor +fill +grestore +newpath +5.866432e+01 2.249648e+01 moveto +5.873624e+01 2.139269e+01 lineto +6.18271e+01 2.142165e+01 lineto +6.179068e+01 2.252578e+01 lineto +5.866432e+01 2.249648e+01 lineto +closepath +gsave +6.883354e-01 6.883354e-01 8.604192e-01 setrgbcolor +fill +grestore +newpath +6.406896e+01 2.853019e+00 moveto +6.417014e+01 2.817394e+00 lineto +6.498366e+01 2.840074e+00 lineto +6.498167e+01 2.878463e+00 lineto +6.406896e+01 2.853019e+00 lineto +closepath +gsave +5.241392e-01 5.241392e-01 6.55174e-01 setrgbcolor +fill +grestore +newpath +6.396867e+01 2.929496e+00 moveto +6.406896e+01 2.853019e+00 lineto +6.498167e+01 2.878463e+00 lineto +6.49797e+01 2.957681e+00 lineto +6.396867e+01 2.929496e+00 lineto +closepath +gsave +5.298889e-01 5.298889e-01 6.623611e-01 setrgbcolor +fill +grestore +newpath +6.386935e+01 3.046752e+00 moveto +6.396867e+01 2.929496e+00 lineto +6.49797e+01 2.957681e+00 lineto +6.497774e+01 3.077652e+00 lineto +6.386935e+01 3.046752e+00 lineto +closepath +gsave +5.357273e-01 5.357273e-01 6.696592e-01 setrgbcolor +fill +grestore +newpath +6.37711e+01 3.204677e+00 moveto +6.386935e+01 3.046752e+00 lineto +6.497774e+01 3.077652e+00 lineto +6.497581e+01 3.238261e+00 lineto +6.37711e+01 3.204677e+00 lineto +closepath +gsave +5.416456e-01 5.416456e-01 6.77057e-01 setrgbcolor +fill +grestore +newpath +6.367401e+01 3.40312e+00 moveto +6.37711e+01 3.204677e+00 lineto +6.497581e+01 3.238261e+00 lineto +6.497389e+01 3.439358e+00 lineto +6.367401e+01 3.40312e+00 lineto +closepath +gsave +5.476345e-01 5.476345e-01 6.845431e-01 setrgbcolor +fill +grestore +newpath +6.357818e+01 3.641895e+00 moveto +6.367401e+01 3.40312e+00 lineto +6.497389e+01 3.439358e+00 lineto +6.497201e+01 3.680752e+00 lineto +6.357818e+01 3.641895e+00 lineto +closepath +gsave +5.536845e-01 5.536845e-01 6.921056e-01 setrgbcolor +fill +grestore +newpath +6.34837e+01 3.920775e+00 moveto +6.357818e+01 3.641895e+00 lineto +6.497201e+01 3.680752e+00 lineto +6.497015e+01 3.962214e+00 lineto +6.34837e+01 3.920775e+00 lineto +closepath +gsave +5.597859e-01 5.597859e-01 6.997324e-01 setrgbcolor +fill +grestore +newpath +6.339065e+01 4.239496e+00 moveto +6.34837e+01 3.920775e+00 lineto +6.497015e+01 3.962214e+00 lineto +6.496832e+01 4.283478e+00 lineto +6.339065e+01 4.239496e+00 lineto +closepath +gsave +5.659289e-01 5.659289e-01 7.074111e-01 setrgbcolor +fill +grestore +newpath +6.329913e+01 4.597756e+00 moveto +6.339065e+01 4.239496e+00 lineto +6.496832e+01 4.283478e+00 lineto +6.496651e+01 4.64424e+00 lineto +6.329913e+01 4.597756e+00 lineto +closepath +gsave +5.721034e-01 5.721034e-01 7.151292e-01 setrgbcolor +fill +grestore +newpath +6.320922e+01 4.995217e+00 moveto +6.329913e+01 4.597756e+00 lineto +6.496651e+01 4.64424e+00 lineto +6.496474e+01 5.044157e+00 lineto +6.320922e+01 4.995217e+00 lineto +closepath +gsave +5.782993e-01 5.782993e-01 7.228741e-01 setrgbcolor +fill +grestore +newpath +6.3121e+01 5.431501e+00 moveto +6.320922e+01 4.995217e+00 lineto +6.496474e+01 5.044157e+00 lineto +6.496301e+01 5.482852e+00 lineto +6.3121e+01 5.431501e+00 lineto +closepath +gsave +5.845065e-01 5.845065e-01 7.306331e-01 setrgbcolor +fill +grestore +newpath +6.303456e+01 5.906195e+00 moveto +6.3121e+01 5.431501e+00 lineto +6.496301e+01 5.482852e+00 lineto +6.49613e+01 5.959909e+00 lineto +6.303456e+01 5.906195e+00 lineto +closepath +gsave +5.907147e-01 5.907147e-01 7.383933e-01 setrgbcolor +fill +grestore +newpath +6.294998e+01 6.418851e+00 moveto +6.303456e+01 5.906195e+00 lineto +6.49613e+01 5.959909e+00 lineto +6.495964e+01 6.474876e+00 lineto +6.294998e+01 6.418851e+00 lineto +closepath +gsave +5.969137e-01 5.969137e-01 7.461421e-01 setrgbcolor +fill +grestore +newpath +6.286734e+01 6.968983e+00 moveto +6.294998e+01 6.418851e+00 lineto +6.495964e+01 6.474876e+00 lineto +6.495801e+01 7.027266e+00 lineto +6.286734e+01 6.968983e+00 lineto +closepath +gsave +6.030935e-01 6.030935e-01 7.538669e-01 setrgbcolor +fill +grestore +newpath +6.278673e+01 7.556069e+00 moveto +6.286734e+01 6.968983e+00 lineto +6.495801e+01 7.027266e+00 lineto +6.495642e+01 7.616556e+00 lineto +6.278673e+01 7.556069e+00 lineto +closepath +gsave +6.09244e-01 6.09244e-01 7.61555e-01 setrgbcolor +fill +grestore +newpath +6.27082e+01 8.179555e+00 moveto +6.278673e+01 7.556069e+00 lineto +6.495642e+01 7.616556e+00 lineto +6.495488e+01 8.242188e+00 lineto +6.27082e+01 8.179555e+00 lineto +closepath +gsave +6.153554e-01 6.153554e-01 7.691942e-01 setrgbcolor +fill +grestore +newpath +6.263185e+01 8.838849e+00 moveto +6.27082e+01 8.179555e+00 lineto +6.495488e+01 8.242188e+00 lineto +6.495338e+01 8.903569e+00 lineto +6.263185e+01 8.838849e+00 lineto +closepath +gsave +6.214179e-01 6.214179e-01 7.767723e-01 setrgbcolor +fill +grestore +newpath +6.255774e+01 9.533328e+00 moveto +6.263185e+01 8.838849e+00 lineto +6.495338e+01 8.903569e+00 lineto +6.495192e+01 9.600073e+00 lineto +6.255774e+01 9.533328e+00 lineto +closepath +gsave +6.27422e-01 6.27422e-01 7.842775e-01 setrgbcolor +fill +grestore +newpath +6.248594e+01 1.026233e+01 moveto +6.255774e+01 9.533328e+00 lineto +6.495192e+01 9.600073e+00 lineto +6.49505e+01 1.033104e+01 lineto +6.248594e+01 1.026233e+01 lineto +closepath +gsave +6.333585e-01 6.333585e-01 7.916981e-01 setrgbcolor +fill +grestore +newpath +6.241653e+01 1.102518e+01 moveto +6.248594e+01 1.026233e+01 lineto +6.49505e+01 1.033104e+01 lineto +6.494914e+01 1.109578e+01 lineto +6.241653e+01 1.102518e+01 lineto +closepath +gsave +6.392183e-01 6.392183e-01 7.990229e-01 setrgbcolor +fill +grestore +newpath +6.234956e+01 1.182113e+01 moveto +6.241653e+01 1.102518e+01 lineto +6.494914e+01 1.109578e+01 lineto +6.494782e+01 1.189357e+01 lineto +6.234956e+01 1.182113e+01 lineto +closepath +gsave +6.449927e-01 6.449927e-01 8.062409e-01 setrgbcolor +fill +grestore +newpath +6.228509e+01 1.264945e+01 moveto +6.234956e+01 1.182113e+01 lineto +6.494782e+01 1.189357e+01 lineto +6.494655e+01 1.272365e+01 lineto +6.228509e+01 1.264945e+01 lineto +closepath +gsave +6.506733e-01 6.506733e-01 8.133416e-01 setrgbcolor +fill +grestore +newpath +6.22232e+01 1.350935e+01 moveto +6.228509e+01 1.264945e+01 lineto +6.494655e+01 1.272365e+01 lineto +6.494533e+01 1.358523e+01 lineto +6.22232e+01 1.350935e+01 lineto +closepath +gsave +6.562519e-01 6.562519e-01 8.203149e-01 setrgbcolor +fill +grestore +newpath +6.216394e+01 1.44e+01 moveto +6.22232e+01 1.350935e+01 lineto +6.494533e+01 1.358523e+01 lineto +6.494416e+01 1.447751e+01 lineto +6.216394e+01 1.44e+01 lineto +closepath +gsave +6.617209e-01 6.617209e-01 8.271511e-01 setrgbcolor +fill +grestore +newpath +6.210736e+01 1.532058e+01 moveto +6.216394e+01 1.44e+01 lineto +6.494416e+01 1.447751e+01 lineto +6.494305e+01 1.539963e+01 lineto +6.210736e+01 1.532058e+01 lineto +closepath +gsave +6.670727e-01 6.670727e-01 8.338408e-01 setrgbcolor +fill +grestore +newpath +6.205352e+01 1.62702e+01 moveto +6.210736e+01 1.532058e+01 lineto +6.494305e+01 1.539963e+01 lineto +6.494199e+01 1.635073e+01 lineto +6.205352e+01 1.62702e+01 lineto +closepath +gsave +6.723003e-01 6.723003e-01 8.403754e-01 setrgbcolor +fill +grestore +newpath +6.200248e+01 1.724798e+01 moveto +6.205352e+01 1.62702e+01 lineto +6.494199e+01 1.635073e+01 lineto +6.494098e+01 1.73299e+01 lineto +6.200248e+01 1.724798e+01 lineto +closepath +gsave +6.773971e-01 6.773971e-01 8.467464e-01 setrgbcolor +fill +grestore +newpath +6.195427e+01 1.825297e+01 moveto +6.200248e+01 1.724798e+01 lineto +6.494098e+01 1.73299e+01 lineto +6.494004e+01 1.833621e+01 lineto +6.195427e+01 1.825297e+01 lineto +closepath +gsave +6.823567e-01 6.823567e-01 8.529459e-01 setrgbcolor +fill +grestore +newpath +6.190894e+01 1.928424e+01 moveto +6.195427e+01 1.825297e+01 lineto +6.494004e+01 1.833621e+01 lineto +6.493914e+01 1.936871e+01 lineto +6.190894e+01 1.928424e+01 lineto +closepath +gsave +6.871734e-01 6.871734e-01 8.589667e-01 setrgbcolor +fill +grestore +newpath +6.186654e+01 2.03408e+01 moveto +6.190894e+01 1.928424e+01 lineto +6.493914e+01 1.936871e+01 lineto +6.493831e+01 2.042643e+01 lineto +6.186654e+01 2.03408e+01 lineto +closepath +gsave +6.918414e-01 6.918414e-01 8.648017e-01 setrgbcolor +fill +grestore +newpath +6.18271e+01 2.142165e+01 moveto +6.186654e+01 2.03408e+01 lineto +6.493831e+01 2.042643e+01 lineto +6.493753e+01 2.150837e+01 lineto +6.18271e+01 2.142165e+01 lineto +closepath +gsave +6.963557e-01 6.963557e-01 8.704446e-01 setrgbcolor +fill +grestore +newpath +6.179068e+01 2.252578e+01 moveto +6.18271e+01 2.142165e+01 lineto +6.493753e+01 2.150837e+01 lineto +6.493681e+01 2.261349e+01 lineto +6.179068e+01 2.252578e+01 lineto +closepath +gsave +7.007115e-01 7.007115e-01 8.758894e-01 setrgbcolor +fill +grestore +newpath +6.498167e+01 2.878463e+00 moveto +6.498366e+01 2.840074e+00 lineto +6.579729e+01 2.877717e+00 lineto +6.589449e+01 2.920696e+00 lineto +6.498167e+01 2.878463e+00 lineto +closepath +gsave +5.268082e-01 5.268082e-01 6.585103e-01 setrgbcolor +fill +grestore +newpath +6.49797e+01 2.957681e+00 moveto +6.498167e+01 2.878463e+00 lineto +6.589449e+01 2.920696e+00 lineto +6.599085e+01 3.004464e+00 lineto +6.49797e+01 2.957681e+00 lineto +closepath +gsave +5.32906e-01 5.32906e-01 6.661325e-01 setrgbcolor +fill +grestore +newpath +6.497774e+01 3.077652e+00 moveto +6.49797e+01 2.957681e+00 lineto +6.599085e+01 3.004464e+00 lineto +6.608627e+01 3.128939e+00 lineto +6.497774e+01 3.077652e+00 lineto +closepath +gsave +5.390963e-01 5.390963e-01 6.738704e-01 setrgbcolor +fill +grestore +newpath +6.497581e+01 3.238261e+00 moveto +6.497774e+01 3.077652e+00 lineto +6.608627e+01 3.128939e+00 lineto +6.618066e+01 3.294006e+00 lineto +6.497581e+01 3.238261e+00 lineto +closepath +gsave +5.453691e-01 5.453691e-01 6.817114e-01 setrgbcolor +fill +grestore +newpath +6.497389e+01 3.439358e+00 moveto +6.497581e+01 3.238261e+00 lineto +6.618066e+01 3.294006e+00 lineto +6.627394e+01 3.499507e+00 lineto +6.497389e+01 3.439358e+00 lineto +closepath +gsave +5.517141e-01 5.517141e-01 6.896426e-01 setrgbcolor +fill +grestore +newpath +6.497201e+01 3.680752e+00 moveto +6.497389e+01 3.439358e+00 lineto +6.627394e+01 3.499507e+00 lineto +6.6366e+01 3.745247e+00 lineto +6.497201e+01 3.680752e+00 lineto +closepath +gsave +5.581208e-01 5.581208e-01 6.976511e-01 setrgbcolor +fill +grestore +newpath +6.497015e+01 3.962214e+00 moveto +6.497201e+01 3.680752e+00 lineto +6.6366e+01 3.745247e+00 lineto +6.645678e+01 4.030995e+00 lineto +6.497015e+01 3.962214e+00 lineto +closepath +gsave +5.645785e-01 5.645785e-01 7.057232e-01 setrgbcolor +fill +grestore +newpath +6.496832e+01 4.283478e+00 moveto +6.497015e+01 3.962214e+00 lineto +6.645678e+01 4.030995e+00 lineto +6.654617e+01 4.35648e+00 lineto +6.496832e+01 4.283478e+00 lineto +closepath +gsave +5.710762e-01 5.710762e-01 7.138453e-01 setrgbcolor +fill +grestore +newpath +6.496651e+01 4.64424e+00 moveto +6.496832e+01 4.283478e+00 lineto +6.654617e+01 4.35648e+00 lineto +6.66341e+01 4.721393e+00 lineto +6.496651e+01 4.64424e+00 lineto +closepath +gsave +5.776029e-01 5.776029e-01 7.220036e-01 setrgbcolor +fill +grestore +newpath +6.496474e+01 5.044157e+00 moveto +6.496651e+01 4.64424e+00 lineto +6.66341e+01 4.721393e+00 lineto +6.672049e+01 5.125389e+00 lineto +6.496474e+01 5.044157e+00 lineto +closepath +gsave +5.841474e-01 5.841474e-01 7.301843e-01 setrgbcolor +fill +grestore +newpath +6.496301e+01 5.482852e+00 moveto +6.496474e+01 5.044157e+00 lineto +6.672049e+01 5.125389e+00 lineto +6.680524e+01 5.568086e+00 lineto +6.496301e+01 5.482852e+00 lineto +closepath +gsave +5.906986e-01 5.906986e-01 7.383733e-01 setrgbcolor +fill +grestore +newpath +6.49613e+01 5.959909e+00 moveto +6.496301e+01 5.482852e+00 lineto +6.680524e+01 5.568086e+00 lineto +6.688829e+01 6.049064e+00 lineto +6.49613e+01 5.959909e+00 lineto +closepath +gsave +5.972454e-01 5.972454e-01 7.465568e-01 setrgbcolor +fill +grestore +newpath +6.495964e+01 6.474876e+00 moveto +6.49613e+01 5.959909e+00 lineto +6.688829e+01 6.049064e+00 lineto +6.696955e+01 6.567868e+00 lineto +6.495964e+01 6.474876e+00 lineto +closepath +gsave +6.037766e-01 6.037766e-01 7.547208e-01 setrgbcolor +fill +grestore +newpath +6.495801e+01 7.027266e+00 moveto +6.495964e+01 6.474876e+00 lineto +6.696955e+01 6.567868e+00 lineto +6.704894e+01 7.124006e+00 lineto +6.495801e+01 7.027266e+00 lineto +closepath +gsave +6.102814e-01 6.102814e-01 7.628517e-01 setrgbcolor +fill +grestore +newpath +6.495642e+01 7.616556e+00 moveto +6.495801e+01 7.027266e+00 lineto +6.704894e+01 7.124006e+00 lineto +6.712639e+01 7.716953e+00 lineto +6.495642e+01 7.616556e+00 lineto +closepath +gsave +6.167488e-01 6.167488e-01 7.70936e-01 setrgbcolor +fill +grestore +newpath +6.495488e+01 8.242188e+00 moveto +6.495642e+01 7.616556e+00 lineto +6.712639e+01 7.716953e+00 lineto +6.720183e+01 8.346146e+00 lineto +6.495488e+01 8.242188e+00 lineto +closepath +gsave +6.231682e-01 6.231682e-01 7.789603e-01 setrgbcolor +fill +grestore +newpath +6.495338e+01 8.903569e+00 moveto +6.495488e+01 8.242188e+00 lineto +6.720183e+01 8.346146e+00 lineto +6.727519e+01 9.010991e+00 lineto +6.495338e+01 8.903569e+00 lineto +closepath +gsave +6.295293e-01 6.295293e-01 7.869116e-01 setrgbcolor +fill +grestore +newpath +6.495192e+01 9.600073e+00 moveto +6.495338e+01 8.903569e+00 lineto +6.727519e+01 9.010991e+00 lineto +6.734639e+01 9.710857e+00 lineto +6.495192e+01 9.600073e+00 lineto +closepath +gsave +6.358219e-01 6.358219e-01 7.947773e-01 setrgbcolor +fill +grestore +newpath +6.49505e+01 1.033104e+01 moveto +6.495192e+01 9.600073e+00 lineto +6.734639e+01 9.710857e+00 lineto +6.741537e+01 1.044508e+01 lineto +6.49505e+01 1.033104e+01 lineto +closepath +gsave +6.42036e-01 6.42036e-01 8.02545e-01 setrgbcolor +fill +grestore +newpath +6.494914e+01 1.109578e+01 moveto +6.49505e+01 1.033104e+01 lineto +6.741537e+01 1.044508e+01 lineto +6.748206e+01 1.121297e+01 lineto +6.494914e+01 1.109578e+01 lineto +closepath +gsave +6.481622e-01 6.481622e-01 8.102028e-01 setrgbcolor +fill +grestore +newpath +6.494782e+01 1.189357e+01 moveto +6.494914e+01 1.109578e+01 lineto +6.748206e+01 1.121297e+01 lineto +6.75464e+01 1.20138e+01 lineto +6.494782e+01 1.189357e+01 lineto +closepath +gsave +6.541913e-01 6.541913e-01 8.177391e-01 setrgbcolor +fill +grestore +newpath +6.494655e+01 1.272365e+01 moveto +6.494782e+01 1.189357e+01 lineto +6.75464e+01 1.20138e+01 lineto +6.760833e+01 1.28468e+01 lineto +6.494655e+01 1.272365e+01 lineto +closepath +gsave +6.601143e-01 6.601143e-01 8.251429e-01 setrgbcolor +fill +grestore +newpath +6.494533e+01 1.358523e+01 moveto +6.494655e+01 1.272365e+01 lineto +6.760833e+01 1.28468e+01 lineto +6.76678e+01 1.371119e+01 lineto +6.494533e+01 1.358523e+01 lineto +closepath +gsave +6.65923e-01 6.65923e-01 8.324037e-01 setrgbcolor +fill +grestore +newpath +6.494416e+01 1.447751e+01 moveto +6.494533e+01 1.358523e+01 lineto +6.76678e+01 1.371119e+01 lineto +6.772473e+01 1.460616e+01 lineto +6.494416e+01 1.447751e+01 lineto +closepath +gsave +6.716091e-01 6.716091e-01 8.395114e-01 setrgbcolor +fill +grestore +newpath +6.494305e+01 1.539963e+01 moveto +6.494416e+01 1.447751e+01 lineto +6.772473e+01 1.460616e+01 lineto +6.777909e+01 1.553085e+01 lineto +6.494305e+01 1.539963e+01 lineto +closepath +gsave +6.771652e-01 6.771652e-01 8.464565e-01 setrgbcolor +fill +grestore +newpath +6.494199e+01 1.635073e+01 moveto +6.494305e+01 1.539963e+01 lineto +6.777909e+01 1.553085e+01 lineto +6.783081e+01 1.648438e+01 lineto +6.494199e+01 1.635073e+01 lineto +closepath +gsave +6.825839e-01 6.825839e-01 8.532299e-01 setrgbcolor +fill +grestore +newpath +6.494098e+01 1.73299e+01 moveto +6.494199e+01 1.635073e+01 lineto +6.783081e+01 1.648438e+01 lineto +6.787986e+01 1.746587e+01 lineto +6.494098e+01 1.73299e+01 lineto +closepath +gsave +6.878585e-01 6.878585e-01 8.598232e-01 setrgbcolor +fill +grestore +newpath +6.494004e+01 1.833621e+01 moveto +6.494098e+01 1.73299e+01 lineto +6.787986e+01 1.746587e+01 lineto +6.792618e+01 1.847437e+01 lineto +6.494004e+01 1.833621e+01 lineto +closepath +gsave +6.929827e-01 6.929827e-01 8.662284e-01 setrgbcolor +fill +grestore +newpath +6.493914e+01 1.936871e+01 moveto +6.494004e+01 1.833621e+01 lineto +6.792618e+01 1.847437e+01 lineto +6.796972e+01 1.950893e+01 lineto +6.493914e+01 1.936871e+01 lineto +closepath +gsave +6.979506e-01 6.979506e-01 8.724382e-01 setrgbcolor +fill +grestore +newpath +6.493831e+01 2.042643e+01 moveto +6.493914e+01 1.936871e+01 lineto +6.796972e+01 1.950893e+01 lineto +6.801046e+01 2.056857e+01 lineto +6.493831e+01 2.042643e+01 lineto +closepath +gsave +7.027566e-01 7.027566e-01 8.784457e-01 setrgbcolor +fill +grestore +newpath +6.493753e+01 2.150837e+01 moveto +6.493831e+01 2.042643e+01 lineto +6.801046e+01 2.056857e+01 lineto +6.804834e+01 2.165229e+01 lineto +6.493753e+01 2.150837e+01 lineto +closepath +gsave +7.073957e-01 7.073957e-01 8.842446e-01 setrgbcolor +fill +grestore +newpath +6.493681e+01 2.261349e+01 moveto +6.493753e+01 2.150837e+01 lineto +6.804834e+01 2.165229e+01 lineto +6.808334e+01 2.275907e+01 lineto +6.493681e+01 2.261349e+01 lineto +closepath +gsave +7.118633e-01 7.118633e-01 8.898291e-01 setrgbcolor +fill +grestore +newpath +6.589449e+01 2.920696e+00 moveto +6.579729e+01 2.877717e+00 lineto +6.660599e+01 2.930093e+00 lineto +6.68018e+01 2.979458e+00 lineto +6.589449e+01 2.920696e+00 lineto +closepath +gsave +5.291956e-01 5.291956e-01 6.614945e-01 setrgbcolor +fill +grestore +newpath +6.599085e+01 3.004464e+00 moveto +6.589449e+01 2.920696e+00 lineto +6.68018e+01 2.979458e+00 lineto +6.69959e+01 3.069555e+00 lineto +6.599085e+01 3.004464e+00 lineto +closepath +gsave +5.356056e-01 5.356056e-01 6.69507e-01 setrgbcolor +fill +grestore +newpath +6.608627e+01 3.128939e+00 moveto +6.599085e+01 3.004464e+00 lineto +6.69959e+01 3.069555e+00 lineto +6.71881e+01 3.200299e+00 lineto +6.608627e+01 3.128939e+00 lineto +closepath +gsave +5.421113e-01 5.421113e-01 6.776391e-01 setrgbcolor +fill +grestore +newpath +6.618066e+01 3.294006e+00 moveto +6.608627e+01 3.128939e+00 lineto +6.71881e+01 3.200299e+00 lineto +6.737824e+01 3.371566e+00 lineto +6.618066e+01 3.294006e+00 lineto +closepath +gsave +5.487019e-01 5.487019e-01 6.858773e-01 setrgbcolor +fill +grestore +newpath +6.627394e+01 3.499507e+00 moveto +6.618066e+01 3.294006e+00 lineto +6.737824e+01 3.371566e+00 lineto +6.756612e+01 3.583195e+00 lineto +6.627394e+01 3.499507e+00 lineto +closepath +gsave +5.55366e-01 5.55366e-01 6.942075e-01 setrgbcolor +fill +grestore +newpath +6.6366e+01 3.745247e+00 moveto +6.627394e+01 3.499507e+00 lineto +6.756612e+01 3.583195e+00 lineto +6.775158e+01 3.834983e+00 lineto +6.6366e+01 3.745247e+00 lineto +closepath +gsave +5.620921e-01 5.620921e-01 7.026152e-01 setrgbcolor +fill +grestore +newpath +6.645678e+01 4.030995e+00 moveto +6.6366e+01 3.745247e+00 lineto +6.775158e+01 3.834983e+00 lineto +6.793443e+01 4.126695e+00 lineto +6.645678e+01 4.030995e+00 lineto +closepath +gsave +5.688685e-01 5.688685e-01 7.110857e-01 setrgbcolor +fill +grestore +newpath +6.654617e+01 4.35648e+00 moveto +6.645678e+01 4.030995e+00 lineto +6.793443e+01 4.126695e+00 lineto +6.81145e+01 4.458052e+00 lineto +6.654617e+01 4.35648e+00 lineto +closepath +gsave +5.756833e-01 5.756833e-01 7.196042e-01 setrgbcolor +fill +grestore +newpath +6.66341e+01 4.721393e+00 moveto +6.654617e+01 4.35648e+00 lineto +6.81145e+01 4.458052e+00 lineto +6.829162e+01 4.828741e+00 lineto +6.66341e+01 4.721393e+00 lineto +closepath +gsave +5.825245e-01 5.825245e-01 7.281556e-01 setrgbcolor +fill +grestore +newpath +6.672049e+01 5.125389e+00 moveto +6.66341e+01 4.721393e+00 lineto +6.829162e+01 4.828741e+00 lineto +6.846562e+01 5.238412e+00 lineto +6.672049e+01 5.125389e+00 lineto +closepath +gsave +5.893799e-01 5.893799e-01 7.367249e-01 setrgbcolor +fill +grestore +newpath +6.680524e+01 5.568086e+00 moveto +6.672049e+01 5.125389e+00 lineto +6.846562e+01 5.238412e+00 lineto +6.863635e+01 5.686677e+00 lineto +6.680524e+01 5.568086e+00 lineto +closepath +gsave +5.962376e-01 5.962376e-01 7.452969e-01 setrgbcolor +fill +grestore +newpath +6.688829e+01 6.049064e+00 moveto +6.680524e+01 5.568086e+00 lineto +6.863635e+01 5.686677e+00 lineto +6.880363e+01 6.17311e+00 lineto +6.688829e+01 6.049064e+00 lineto +closepath +gsave +6.030855e-01 6.030855e-01 7.538568e-01 setrgbcolor +fill +grestore +newpath +6.696955e+01 6.567868e+00 moveto +6.688829e+01 6.049064e+00 lineto +6.880363e+01 6.17311e+00 lineto +6.896731e+01 6.697252e+00 lineto +6.696955e+01 6.567868e+00 lineto +closepath +gsave +6.099117e-01 6.099117e-01 7.623896e-01 setrgbcolor +fill +grestore +newpath +6.704894e+01 7.124006e+00 moveto +6.696955e+01 6.567868e+00 lineto +6.896731e+01 6.697252e+00 lineto +6.912723e+01 7.258606e+00 lineto +6.704894e+01 7.124006e+00 lineto +closepath +gsave +6.167045e-01 6.167045e-01 7.708806e-01 setrgbcolor +fill +grestore +newpath +6.712639e+01 7.716953e+00 moveto +6.704894e+01 7.124006e+00 lineto +6.912723e+01 7.258606e+00 lineto +6.928325e+01 7.856641e+00 lineto +6.712639e+01 7.716953e+00 lineto +closepath +gsave +6.234523e-01 6.234523e-01 7.793154e-01 setrgbcolor +fill +grestore +newpath +6.720183e+01 8.346146e+00 moveto +6.712639e+01 7.716953e+00 lineto +6.928325e+01 7.856641e+00 lineto +6.943521e+01 8.49079e+00 lineto +6.720183e+01 8.346146e+00 lineto +closepath +gsave +6.301438e-01 6.301438e-01 7.876798e-01 setrgbcolor +fill +grestore +newpath +6.727519e+01 9.010991e+00 moveto +6.720183e+01 8.346146e+00 lineto +6.943521e+01 8.49079e+00 lineto +6.958297e+01 9.160453e+00 lineto +6.727519e+01 9.010991e+00 lineto +closepath +gsave +6.36768e-01 6.36768e-01 7.9596e-01 setrgbcolor +fill +grestore +newpath +6.734639e+01 9.710857e+00 moveto +6.727519e+01 9.010991e+00 lineto +6.958297e+01 9.160453e+00 lineto +6.972639e+01 9.864997e+00 lineto +6.734639e+01 9.710857e+00 lineto +closepath +gsave +6.433141e-01 6.433141e-01 8.041427e-01 setrgbcolor +fill +grestore +newpath +6.741537e+01 1.044508e+01 moveto +6.734639e+01 9.710857e+00 lineto +6.972639e+01 9.864997e+00 lineto +6.986534e+01 1.060375e+01 lineto +6.741537e+01 1.044508e+01 lineto +closepath +gsave +6.497718e-01 6.497718e-01 8.122148e-01 setrgbcolor +fill +grestore +newpath +6.748206e+01 1.121297e+01 moveto +6.741537e+01 1.044508e+01 lineto +6.986534e+01 1.060375e+01 lineto +6.999968e+01 1.137602e+01 lineto +6.748206e+01 1.121297e+01 lineto +closepath +gsave +6.56131e-01 6.56131e-01 8.201638e-01 setrgbcolor +fill +grestore +newpath +6.75464e+01 1.20138e+01 moveto +6.748206e+01 1.121297e+01 lineto +6.999968e+01 1.137602e+01 lineto +7.012929e+01 1.218108e+01 lineto +6.75464e+01 1.20138e+01 lineto +closepath +gsave +6.623822e-01 6.623822e-01 8.279777e-01 setrgbcolor +fill +grestore +newpath +6.760833e+01 1.28468e+01 moveto +6.75464e+01 1.20138e+01 lineto +7.012929e+01 1.218108e+01 lineto +7.025404e+01 1.301815e+01 lineto +6.760833e+01 1.28468e+01 lineto +closepath +gsave +6.685161e-01 6.685161e-01 8.356451e-01 setrgbcolor +fill +grestore +newpath +6.76678e+01 1.371119e+01 moveto +6.760833e+01 1.28468e+01 lineto +7.025404e+01 1.301815e+01 lineto +7.037381e+01 1.388645e+01 lineto +6.76678e+01 1.371119e+01 lineto +closepath +gsave +6.745241e-01 6.745241e-01 8.431551e-01 setrgbcolor +fill +grestore +newpath +6.772473e+01 1.460616e+01 moveto +6.76678e+01 1.371119e+01 lineto +7.037381e+01 1.388645e+01 lineto +7.04885e+01 1.478515e+01 lineto +6.772473e+01 1.460616e+01 lineto +closepath +gsave +6.803978e-01 6.803978e-01 8.504973e-01 setrgbcolor +fill +grestore +newpath +6.777909e+01 1.553085e+01 moveto +6.772473e+01 1.460616e+01 lineto +7.04885e+01 1.478515e+01 lineto +7.059799e+01 1.571341e+01 lineto +6.777909e+01 1.553085e+01 lineto +closepath +gsave +6.861296e-01 6.861296e-01 8.57662e-01 setrgbcolor +fill +grestore +newpath +6.783081e+01 1.648438e+01 moveto +6.777909e+01 1.553085e+01 lineto +7.059799e+01 1.571341e+01 lineto +7.070218e+01 1.667035e+01 lineto +6.783081e+01 1.648438e+01 lineto +closepath +gsave +6.917121e-01 6.917121e-01 8.646401e-01 setrgbcolor +fill +grestore +newpath +6.787986e+01 1.746587e+01 moveto +6.783081e+01 1.648438e+01 lineto +7.070218e+01 1.667035e+01 lineto +7.080098e+01 1.765505e+01 lineto +6.787986e+01 1.746587e+01 lineto +closepath +gsave +6.971384e-01 6.971384e-01 8.71423e-01 setrgbcolor +fill +grestore +newpath +6.792618e+01 1.847437e+01 moveto +6.787986e+01 1.746587e+01 lineto +7.080098e+01 1.765505e+01 lineto +7.089427e+01 1.866659e+01 lineto +6.792618e+01 1.847437e+01 lineto +closepath +gsave +7.024022e-01 7.024022e-01 8.780027e-01 setrgbcolor +fill +grestore +newpath +6.796972e+01 1.950893e+01 moveto +6.792618e+01 1.847437e+01 lineto +7.089427e+01 1.866659e+01 lineto +7.098199e+01 1.970402e+01 lineto +6.796972e+01 1.950893e+01 lineto +closepath +gsave +7.074977e-01 7.074977e-01 8.843721e-01 setrgbcolor +fill +grestore +newpath +6.801046e+01 2.056857e+01 moveto +6.796972e+01 1.950893e+01 lineto +7.098199e+01 1.970402e+01 lineto +7.106405e+01 2.076634e+01 lineto +6.801046e+01 2.056857e+01 lineto +closepath +gsave +7.124194e-01 7.124194e-01 8.905243e-01 setrgbcolor +fill +grestore +newpath +6.804834e+01 2.165229e+01 moveto +6.801046e+01 2.056857e+01 lineto +7.106405e+01 2.076634e+01 lineto +7.114036e+01 2.185255e+01 lineto +6.804834e+01 2.165229e+01 lineto +closepath +gsave +7.171625e-01 7.171625e-01 8.964532e-01 setrgbcolor +fill +grestore +newpath +6.808334e+01 2.275907e+01 moveto +6.804834e+01 2.165229e+01 lineto +7.114036e+01 2.185255e+01 lineto +7.121086e+01 2.296162e+01 lineto +6.808334e+01 2.275907e+01 lineto +closepath +gsave +7.217225e-01 7.217225e-01 9.021532e-01 setrgbcolor +fill +grestore +newpath +6.68018e+01 2.979458e+00 moveto +6.660599e+01 2.930093e+00 lineto +6.74048e+01 2.996878e+00 lineto +6.7698e+01 3.054385e+00 lineto +6.68018e+01 2.979458e+00 lineto +closepath +gsave +5.312811e-01 5.312811e-01 6.641014e-01 setrgbcolor +fill +grestore +newpath +6.69959e+01 3.069555e+00 moveto +6.68018e+01 2.979458e+00 lineto +6.7698e+01 3.054385e+00 lineto +6.798864e+01 3.152554e+00 lineto +6.69959e+01 3.069555e+00 lineto +closepath +gsave +5.379643e-01 5.379643e-01 6.724553e-01 setrgbcolor +fill +grestore +newpath +6.71881e+01 3.200299e+00 moveto +6.69959e+01 3.069555e+00 lineto +6.798864e+01 3.152554e+00 lineto +6.827644e+01 3.291291e+00 lineto +6.71881e+01 3.200299e+00 lineto +closepath +gsave +5.447461e-01 5.447461e-01 6.809326e-01 setrgbcolor +fill +grestore +newpath +6.737824e+01 3.371566e+00 moveto +6.71881e+01 3.200299e+00 lineto +6.827644e+01 3.291291e+00 lineto +6.856115e+01 3.470465e+00 lineto +6.737824e+01 3.371566e+00 lineto +closepath +gsave +5.516146e-01 5.516146e-01 6.895183e-01 setrgbcolor +fill +grestore +newpath +6.756612e+01 3.583195e+00 moveto +6.737824e+01 3.371566e+00 lineto +6.856115e+01 3.470465e+00 lineto +6.884249e+01 3.689906e+00 lineto +6.756612e+01 3.583195e+00 lineto +closepath +gsave +5.585578e-01 5.585578e-01 6.981972e-01 setrgbcolor +fill +grestore +newpath +6.775158e+01 3.834983e+00 moveto +6.756612e+01 3.583195e+00 lineto +6.884249e+01 3.689906e+00 lineto +6.912019e+01 3.949407e+00 lineto +6.775158e+01 3.834983e+00 lineto +closepath +gsave +5.655631e-01 5.655631e-01 7.069538e-01 setrgbcolor +fill +grestore +newpath +6.793443e+01 4.126695e+00 moveto +6.775158e+01 3.834983e+00 lineto +6.912019e+01 3.949407e+00 lineto +6.939398e+01 4.248722e+00 lineto +6.793443e+01 4.126695e+00 lineto +closepath +gsave +5.726178e-01 5.726178e-01 7.157722e-01 setrgbcolor +fill +grestore +newpath +6.81145e+01 4.458052e+00 moveto +6.793443e+01 4.126695e+00 lineto +6.939398e+01 4.248722e+00 lineto +6.966362e+01 4.587567e+00 lineto +6.81145e+01 4.458052e+00 lineto +closepath +gsave +5.797092e-01 5.797092e-01 7.246365e-01 setrgbcolor +fill +grestore +newpath +6.829162e+01 4.828741e+00 moveto +6.81145e+01 4.458052e+00 lineto +6.966362e+01 4.587567e+00 lineto +6.992884e+01 4.965622e+00 lineto +6.829162e+01 4.828741e+00 lineto +closepath +gsave +5.868244e-01 5.868244e-01 7.335305e-01 setrgbcolor +fill +grestore +newpath +6.846562e+01 5.238412e+00 moveto +6.829162e+01 4.828741e+00 lineto +6.992884e+01 4.965622e+00 lineto +7.018939e+01 5.382529e+00 lineto +6.846562e+01 5.238412e+00 lineto +closepath +gsave +5.939506e-01 5.939506e-01 7.424382e-01 setrgbcolor +fill +grestore +newpath +6.863635e+01 5.686677e+00 moveto +6.846562e+01 5.238412e+00 lineto +7.018939e+01 5.382529e+00 lineto +7.044504e+01 5.837893e+00 lineto +6.863635e+01 5.686677e+00 lineto +closepath +gsave +6.010747e-01 6.010747e-01 7.513434e-01 setrgbcolor +fill +grestore +newpath +6.880363e+01 6.17311e+00 moveto +6.863635e+01 5.686677e+00 lineto +7.044504e+01 5.837893e+00 lineto +7.069552e+01 6.331283e+00 lineto +6.880363e+01 6.17311e+00 lineto +closepath +gsave +6.081841e-01 6.081841e-01 7.602302e-01 setrgbcolor +fill +grestore +newpath +6.896731e+01 6.697252e+00 moveto +6.880363e+01 6.17311e+00 lineto +7.069552e+01 6.331283e+00 lineto +7.094061e+01 6.862231e+00 lineto +6.896731e+01 6.697252e+00 lineto +closepath +gsave +6.152662e-01 6.152662e-01 7.690827e-01 setrgbcolor +fill +grestore +newpath +6.912723e+01 7.258606e+00 moveto +6.896731e+01 6.697252e+00 lineto +7.094061e+01 6.862231e+00 lineto +7.118008e+01 7.430236e+00 lineto +6.912723e+01 7.258606e+00 lineto +closepath +gsave +6.223084e-01 6.223084e-01 7.778854e-01 setrgbcolor +fill +grestore +newpath +6.928325e+01 7.856641e+00 moveto +6.912723e+01 7.258606e+00 lineto +7.118008e+01 7.430236e+00 lineto +7.14137e+01 8.034758e+00 lineto +6.928325e+01 7.856641e+00 lineto +closepath +gsave +6.292985e-01 6.292985e-01 7.866231e-01 setrgbcolor +fill +grestore +newpath +6.943521e+01 8.49079e+00 moveto +6.928325e+01 7.856641e+00 lineto +7.14137e+01 8.034758e+00 lineto +7.164124e+01 8.675227e+00 lineto +6.943521e+01 8.49079e+00 lineto +closepath +gsave +6.362247e-01 6.362247e-01 7.952809e-01 setrgbcolor +fill +grestore +newpath +6.958297e+01 9.160453e+00 moveto +6.943521e+01 8.49079e+00 lineto +7.164124e+01 8.675227e+00 lineto +7.18625e+01 9.351035e+00 lineto +6.958297e+01 9.160453e+00 lineto +closepath +gsave +6.430754e-01 6.430754e-01 8.038442e-01 setrgbcolor +fill +grestore +newpath +6.972639e+01 9.864997e+00 moveto +6.958297e+01 9.160453e+00 lineto +7.18625e+01 9.351035e+00 lineto +7.207726e+01 1.006154e+01 lineto +6.972639e+01 9.864997e+00 lineto +closepath +gsave +6.498393e-01 6.498393e-01 8.122991e-01 setrgbcolor +fill +grestore +newpath +6.986534e+01 1.060375e+01 moveto +6.972639e+01 9.864997e+00 lineto +7.207726e+01 1.006154e+01 lineto +7.228532e+01 1.080608e+01 lineto +6.986534e+01 1.060375e+01 lineto +closepath +gsave +6.565056e-01 6.565056e-01 8.20632e-01 setrgbcolor +fill +grestore +newpath +6.999968e+01 1.137602e+01 moveto +6.986534e+01 1.060375e+01 lineto +7.228532e+01 1.080608e+01 lineto +7.248648e+01 1.158393e+01 lineto +6.999968e+01 1.137602e+01 lineto +closepath +gsave +6.63064e-01 6.63064e-01 8.2883e-01 setrgbcolor +fill +grestore +newpath +7.012929e+01 1.218108e+01 moveto +6.999968e+01 1.137602e+01 lineto +7.248648e+01 1.158393e+01 lineto +7.268055e+01 1.239438e+01 lineto +7.012929e+01 1.218108e+01 lineto +closepath +gsave +6.695044e-01 6.695044e-01 8.368805e-01 setrgbcolor +fill +grestore +newpath +7.025404e+01 1.301815e+01 moveto +7.012929e+01 1.218108e+01 lineto +7.268055e+01 1.239438e+01 lineto +7.286735e+01 1.323664e+01 lineto +7.025404e+01 1.301815e+01 lineto +closepath +gsave +6.758176e-01 6.758176e-01 8.447719e-01 setrgbcolor +fill +grestore +newpath +7.037381e+01 1.388645e+01 moveto +7.025404e+01 1.301815e+01 lineto +7.286735e+01 1.323664e+01 lineto +7.30467e+01 1.410992e+01 lineto +7.037381e+01 1.388645e+01 lineto +closepath +gsave +6.819944e-01 6.819944e-01 8.52493e-01 setrgbcolor +fill +grestore +newpath +7.04885e+01 1.478515e+01 moveto +7.037381e+01 1.388645e+01 lineto +7.30467e+01 1.410992e+01 lineto +7.321843e+01 1.501339e+01 lineto +7.04885e+01 1.478515e+01 lineto +closepath +gsave +6.880266e-01 6.880266e-01 8.600332e-01 setrgbcolor +fill +grestore +newpath +7.059799e+01 1.571341e+01 moveto +7.04885e+01 1.478515e+01 lineto +7.321843e+01 1.501339e+01 lineto +7.338238e+01 1.59462e+01 lineto +7.059799e+01 1.571341e+01 lineto +closepath +gsave +6.939061e-01 6.939061e-01 8.673826e-01 setrgbcolor +fill +grestore +newpath +7.070218e+01 1.667035e+01 moveto +7.059799e+01 1.571341e+01 lineto +7.338238e+01 1.59462e+01 lineto +7.35384e+01 1.690747e+01 lineto +7.070218e+01 1.667035e+01 lineto +closepath +gsave +6.996257e-01 6.996257e-01 8.745321e-01 setrgbcolor +fill +grestore +newpath +7.080098e+01 1.765505e+01 moveto +7.070218e+01 1.667035e+01 lineto +7.35384e+01 1.690747e+01 lineto +7.368633e+01 1.789628e+01 lineto +7.080098e+01 1.765505e+01 lineto +closepath +gsave +7.051785e-01 7.051785e-01 8.814731e-01 setrgbcolor +fill +grestore +newpath +7.089427e+01 1.866659e+01 moveto +7.080098e+01 1.765505e+01 lineto +7.368633e+01 1.789628e+01 lineto +7.382603e+01 1.891171e+01 lineto +7.089427e+01 1.866659e+01 lineto +closepath +gsave +7.105582e-01 7.105582e-01 8.881977e-01 setrgbcolor +fill +grestore +newpath +7.098199e+01 1.970402e+01 moveto +7.089427e+01 1.866659e+01 lineto +7.382603e+01 1.891171e+01 lineto +7.395738e+01 1.995278e+01 lineto +7.098199e+01 1.970402e+01 lineto +closepath +gsave +7.15759e-01 7.15759e-01 8.946988e-01 setrgbcolor +fill +grestore +newpath +7.106405e+01 2.076634e+01 moveto +7.098199e+01 1.970402e+01 lineto +7.395738e+01 1.995278e+01 lineto +7.408025e+01 2.101851e+01 lineto +7.106405e+01 2.076634e+01 lineto +closepath +gsave +7.207757e-01 7.207757e-01 9.009696e-01 setrgbcolor +fill +grestore +newpath +7.114036e+01 2.185255e+01 moveto +7.106405e+01 2.076634e+01 lineto +7.408025e+01 2.101851e+01 lineto +7.419452e+01 2.210789e+01 lineto +7.114036e+01 2.185255e+01 lineto +closepath +gsave +7.256035e-01 7.256035e-01 9.070044e-01 setrgbcolor +fill +grestore +newpath +7.121086e+01 2.296162e+01 moveto +7.114036e+01 2.185255e+01 lineto +7.419452e+01 2.210789e+01 lineto +7.430009e+01 2.32199e+01 lineto +7.121086e+01 2.296162e+01 lineto +closepath +gsave +7.302381e-01 7.302381e-01 9.127976e-01 setrgbcolor +fill +grestore +newpath +6.7698e+01 3.054385e+00 moveto +6.74048e+01 2.996878e+00 lineto +6.818878e+01 3.07766e+00 lineto +6.857756e+01 3.145016e+00 lineto +6.7698e+01 3.054385e+00 lineto +closepath +gsave +5.330469e-01 5.330469e-01 6.663087e-01 setrgbcolor +fill +grestore +newpath +6.798864e+01 3.152554e+00 moveto +6.7698e+01 3.054385e+00 lineto +6.857756e+01 3.145016e+00 lineto +6.896295e+01 3.252948e+00 lineto +6.798864e+01 3.152554e+00 lineto +closepath +gsave +5.399618e-01 5.399618e-01 6.749522e-01 setrgbcolor +fill +grestore +newpath +6.827644e+01 3.291291e+00 moveto +6.798864e+01 3.152554e+00 lineto +6.896295e+01 3.252948e+00 lineto +6.934459e+01 3.401353e+00 lineto +6.827644e+01 3.291291e+00 lineto +closepath +gsave +5.469777e-01 5.469777e-01 6.837221e-01 setrgbcolor +fill +grestore +newpath +6.856115e+01 3.470465e+00 moveto +6.827644e+01 3.291291e+00 lineto +6.934459e+01 3.401353e+00 lineto +6.972211e+01 3.590091e+00 lineto +6.856115e+01 3.470465e+00 lineto +closepath +gsave +5.540819e-01 5.540819e-01 6.926023e-01 setrgbcolor +fill +grestore +newpath +6.884249e+01 3.689906e+00 moveto +6.856115e+01 3.470465e+00 lineto +6.972211e+01 3.590091e+00 lineto +7.009516e+01 3.818983e+00 lineto +6.884249e+01 3.689906e+00 lineto +closepath +gsave +5.612614e-01 5.612614e-01 7.015768e-01 setrgbcolor +fill +grestore +newpath +6.912019e+01 3.949407e+00 moveto +6.884249e+01 3.689906e+00 lineto +7.009516e+01 3.818983e+00 lineto +7.046339e+01 4.087812e+00 lineto +6.912019e+01 3.949407e+00 lineto +closepath +gsave +5.68503e-01 5.68503e-01 7.106288e-01 setrgbcolor +fill +grestore +newpath +6.939398e+01 4.248722e+00 moveto +6.912019e+01 3.949407e+00 lineto +7.046339e+01 4.087812e+00 lineto +7.082645e+01 4.396325e+00 lineto +6.939398e+01 4.248722e+00 lineto +closepath +gsave +5.757933e-01 5.757933e-01 7.197416e-01 setrgbcolor +fill +grestore +newpath +6.966362e+01 4.587567e+00 moveto +6.939398e+01 4.248722e+00 lineto +7.082645e+01 4.396325e+00 lineto +7.118399e+01 4.744228e+00 lineto +6.966362e+01 4.587567e+00 lineto +closepath +gsave +5.831186e-01 5.831186e-01 7.288982e-01 setrgbcolor +fill +grestore +newpath +6.992884e+01 4.965622e+00 moveto +6.966362e+01 4.587567e+00 lineto +7.118399e+01 4.744228e+00 lineto +7.153567e+01 5.131192e+00 lineto +6.992884e+01 4.965622e+00 lineto +closepath +gsave +5.904653e-01 5.904653e-01 7.380816e-01 setrgbcolor +fill +grestore +newpath +7.018939e+01 5.382529e+00 moveto +6.992884e+01 4.965622e+00 lineto +7.153567e+01 5.131192e+00 lineto +7.188117e+01 5.556852e+00 lineto +7.018939e+01 5.382529e+00 lineto +closepath +gsave +5.978199e-01 5.978199e-01 7.472748e-01 setrgbcolor +fill +grestore +newpath +7.044504e+01 5.837893e+00 moveto +7.018939e+01 5.382529e+00 lineto +7.188117e+01 5.556852e+00 lineto +7.222015e+01 6.020803e+00 lineto +7.044504e+01 5.837893e+00 lineto +closepath +gsave +6.051686e-01 6.051686e-01 7.564608e-01 setrgbcolor +fill +grestore +newpath +7.069552e+01 6.331283e+00 moveto +7.044504e+01 5.837893e+00 lineto +7.222015e+01 6.020803e+00 lineto +7.25523e+01 6.522607e+00 lineto +7.069552e+01 6.331283e+00 lineto +closepath +gsave +6.124982e-01 6.124982e-01 7.656228e-01 setrgbcolor +fill +grestore +newpath +7.094061e+01 6.862231e+00 moveto +7.069552e+01 6.331283e+00 lineto +7.25523e+01 6.522607e+00 lineto +7.287729e+01 7.061789e+00 lineto +7.094061e+01 6.862231e+00 lineto +closepath +gsave +6.197953e-01 6.197953e-01 7.747441e-01 setrgbcolor +fill +grestore +newpath +7.118008e+01 7.430236e+00 moveto +7.094061e+01 6.862231e+00 lineto +7.287729e+01 7.061789e+00 lineto +7.319483e+01 7.637837e+00 lineto +7.118008e+01 7.430236e+00 lineto +closepath +gsave +6.270468e-01 6.270468e-01 7.838085e-01 setrgbcolor +fill +grestore +newpath +7.14137e+01 8.034758e+00 moveto +7.118008e+01 7.430236e+00 lineto +7.319483e+01 7.637837e+00 lineto +7.350461e+01 8.250208e+00 lineto +7.14137e+01 8.034758e+00 lineto +closepath +gsave +6.342401e-01 6.342401e-01 7.928001e-01 setrgbcolor +fill +grestore +newpath +7.164124e+01 8.675227e+00 moveto +7.14137e+01 8.034758e+00 lineto +7.350461e+01 8.250208e+00 lineto +7.380633e+01 8.89832e+00 lineto +7.164124e+01 8.675227e+00 lineto +closepath +gsave +6.413626e-01 6.413626e-01 8.017033e-01 setrgbcolor +fill +grestore +newpath +7.18625e+01 9.351035e+00 moveto +7.164124e+01 8.675227e+00 lineto +7.380633e+01 8.89832e+00 lineto +7.409972e+01 9.58156e+00 lineto +7.18625e+01 9.351035e+00 lineto +closepath +gsave +6.484025e-01 6.484025e-01 8.105031e-01 setrgbcolor +fill +grestore +newpath +7.207726e+01 1.006154e+01 moveto +7.18625e+01 9.351035e+00 lineto +7.409972e+01 9.58156e+00 lineto +7.438449e+01 1.029928e+01 lineto +7.207726e+01 1.006154e+01 lineto +closepath +gsave +6.553479e-01 6.553479e-01 8.191848e-01 setrgbcolor +fill +grestore +newpath +7.228532e+01 1.080608e+01 moveto +7.207726e+01 1.006154e+01 lineto +7.438449e+01 1.029928e+01 lineto +7.466038e+01 1.105081e+01 lineto +7.228532e+01 1.080608e+01 lineto +closepath +gsave +6.621877e-01 6.621877e-01 8.277346e-01 setrgbcolor +fill +grestore +newpath +7.248648e+01 1.158393e+01 moveto +7.228532e+01 1.080608e+01 lineto +7.466038e+01 1.105081e+01 lineto +7.492712e+01 1.183542e+01 lineto +7.248648e+01 1.158393e+01 lineto +closepath +gsave +6.689113e-01 6.689113e-01 8.361391e-01 setrgbcolor +fill +grestore +newpath +7.268055e+01 1.239438e+01 moveto +7.248648e+01 1.158393e+01 lineto +7.492712e+01 1.183542e+01 lineto +7.518446e+01 1.265238e+01 lineto +7.268055e+01 1.239438e+01 lineto +closepath +gsave +6.755084e-01 6.755084e-01 8.443855e-01 setrgbcolor +fill +grestore +newpath +7.286735e+01 1.323664e+01 moveto +7.268055e+01 1.239438e+01 lineto +7.518446e+01 1.265238e+01 lineto +7.543215e+01 1.350092e+01 lineto +7.286735e+01 1.323664e+01 lineto +closepath +gsave +6.819694e-01 6.819694e-01 8.524618e-01 setrgbcolor +fill +grestore +newpath +7.30467e+01 1.410992e+01 moveto +7.286735e+01 1.323664e+01 lineto +7.543215e+01 1.350092e+01 lineto +7.566997e+01 1.438022e+01 lineto +7.30467e+01 1.410992e+01 lineto +closepath +gsave +6.882852e-01 6.882852e-01 8.603566e-01 setrgbcolor +fill +grestore +newpath +7.321843e+01 1.501339e+01 moveto +7.30467e+01 1.410992e+01 lineto +7.566997e+01 1.438022e+01 lineto +7.589769e+01 1.528946e+01 lineto +7.321843e+01 1.501339e+01 lineto +closepath +gsave +6.944473e-01 6.944473e-01 8.680591e-01 setrgbcolor +fill +grestore +newpath +7.338238e+01 1.59462e+01 moveto +7.321843e+01 1.501339e+01 lineto +7.589769e+01 1.528946e+01 lineto +7.611509e+01 1.622778e+01 lineto +7.338238e+01 1.59462e+01 lineto +closepath +gsave +7.004476e-01 7.004476e-01 8.755596e-01 setrgbcolor +fill +grestore +newpath +7.35384e+01 1.690747e+01 moveto +7.338238e+01 1.59462e+01 lineto +7.611509e+01 1.622778e+01 lineto +7.632197e+01 1.719429e+01 lineto +7.35384e+01 1.690747e+01 lineto +closepath +gsave +7.062789e-01 7.062789e-01 8.828486e-01 setrgbcolor +fill +grestore +newpath +7.368633e+01 1.789628e+01 moveto +7.35384e+01 1.690747e+01 lineto +7.632197e+01 1.719429e+01 lineto +7.651813e+01 1.818808e+01 lineto +7.368633e+01 1.789628e+01 lineto +closepath +gsave +7.119342e-01 7.119342e-01 8.899178e-01 setrgbcolor +fill +grestore +newpath +7.382603e+01 1.891171e+01 moveto +7.368633e+01 1.789628e+01 lineto +7.651813e+01 1.818808e+01 lineto +7.670338e+01 1.920819e+01 lineto +7.382603e+01 1.891171e+01 lineto +closepath +gsave +7.174074e-01 7.174074e-01 8.967592e-01 setrgbcolor +fill +grestore +newpath +7.395738e+01 1.995278e+01 moveto +7.382603e+01 1.891171e+01 lineto +7.670338e+01 1.920819e+01 lineto +7.687755e+01 2.025367e+01 lineto +7.395738e+01 1.995278e+01 lineto +closepath +gsave +7.226927e-01 7.226927e-01 9.033659e-01 setrgbcolor +fill +grestore +newpath +7.408025e+01 2.101851e+01 moveto +7.395738e+01 1.995278e+01 lineto +7.687755e+01 2.025367e+01 lineto +7.704047e+01 2.132353e+01 lineto +7.408025e+01 2.101851e+01 lineto +closepath +gsave +7.277851e-01 7.277851e-01 9.097314e-01 setrgbcolor +fill +grestore +newpath +7.419452e+01 2.210789e+01 moveto +7.408025e+01 2.101851e+01 lineto +7.704047e+01 2.132353e+01 lineto +7.7192e+01 2.241675e+01 lineto +7.419452e+01 2.210789e+01 lineto +closepath +gsave +7.326799e-01 7.326799e-01 9.158499e-01 setrgbcolor +fill +grestore +newpath +7.430009e+01 2.32199e+01 moveto +7.419452e+01 2.210789e+01 lineto +7.7192e+01 2.241675e+01 lineto +7.733198e+01 2.353231e+01 lineto +7.430009e+01 2.32199e+01 lineto +closepath +gsave +7.373731e-01 7.373731e-01 9.217164e-01 setrgbcolor +fill +grestore +newpath +6.857756e+01 3.145016e+00 moveto +6.818878e+01 3.07766e+00 lineto +6.89531e+01 3.171942e+00 lineto +6.943507e+01 3.250793e+00 lineto +6.857756e+01 3.145016e+00 lineto +closepath +gsave +5.34478e-01 5.34478e-01 6.680975e-01 setrgbcolor +fill +grestore +newpath +6.896295e+01 3.252948e+00 moveto +6.857756e+01 3.145016e+00 lineto +6.943507e+01 3.250793e+00 lineto +6.991283e+01 3.370119e+00 lineto +6.896295e+01 3.252948e+00 lineto +closepath +gsave +5.415809e-01 5.415809e-01 6.769761e-01 setrgbcolor +fill +grestore +newpath +6.934459e+01 3.401353e+00 moveto +6.896295e+01 3.252948e+00 lineto +6.991283e+01 3.370119e+00 lineto +7.038594e+01 3.529808e+00 lineto +6.934459e+01 3.401353e+00 lineto +closepath +gsave +5.487867e-01 5.487867e-01 6.859833e-01 setrgbcolor +fill +grestore +newpath +6.972211e+01 3.590091e+00 moveto +6.934459e+01 3.401353e+00 lineto +7.038594e+01 3.529808e+00 lineto +7.085396e+01 3.729708e+00 lineto +6.972211e+01 3.590091e+00 lineto +closepath +gsave +5.56082e-01 5.56082e-01 6.951024e-01 setrgbcolor +fill +grestore +newpath +7.009516e+01 3.818983e+00 moveto +6.972211e+01 3.590091e+00 lineto +7.085396e+01 3.729708e+00 lineto +7.131643e+01 3.96963e+00 lineto +7.009516e+01 3.818983e+00 lineto +closepath +gsave +5.634531e-01 5.634531e-01 7.043164e-01 setrgbcolor +fill +grestore +newpath +7.046339e+01 4.087812e+00 moveto +7.009516e+01 3.818983e+00 lineto +7.131643e+01 3.96963e+00 lineto +7.177292e+01 4.249347e+00 lineto +7.046339e+01 4.087812e+00 lineto +closepath +gsave +5.708862e-01 5.708862e-01 7.136078e-01 setrgbcolor +fill +grestore +newpath +7.082645e+01 4.396325e+00 moveto +7.046339e+01 4.087812e+00 lineto +7.177292e+01 4.249347e+00 lineto +7.222299e+01 4.568593e+00 lineto +7.082645e+01 4.396325e+00 lineto +closepath +gsave +5.783672e-01 5.783672e-01 7.22959e-01 setrgbcolor +fill +grestore +newpath +7.118399e+01 4.744228e+00 moveto +7.082645e+01 4.396325e+00 lineto +7.222299e+01 4.568593e+00 lineto +7.266623e+01 4.927068e+00 lineto +7.118399e+01 4.744228e+00 lineto +closepath +gsave +5.858817e-01 5.858817e-01 7.323522e-01 setrgbcolor +fill +grestore +newpath +7.153567e+01 5.131192e+00 moveto +7.118399e+01 4.744228e+00 lineto +7.266623e+01 4.927068e+00 lineto +7.310221e+01 5.32443e+00 lineto +7.153567e+01 5.131192e+00 lineto +closepath +gsave +5.934157e-01 5.934157e-01 7.417696e-01 setrgbcolor +fill +grestore +newpath +7.188117e+01 5.556852e+00 moveto +7.153567e+01 5.131192e+00 lineto +7.310221e+01 5.32443e+00 lineto +7.353052e+01 5.760305e+00 lineto +7.188117e+01 5.556852e+00 lineto +closepath +gsave +6.009548e-01 6.009548e-01 7.511935e-01 setrgbcolor +fill +grestore +newpath +7.222015e+01 6.020803e+00 moveto +7.188117e+01 5.556852e+00 lineto +7.353052e+01 5.760305e+00 lineto +7.395075e+01 6.234279e+00 lineto +7.222015e+01 6.020803e+00 lineto +closepath +gsave +6.084848e-01 6.084848e-01 7.606061e-01 setrgbcolor +fill +grestore +newpath +7.25523e+01 6.522607e+00 moveto +7.222015e+01 6.020803e+00 lineto +7.395075e+01 6.234279e+00 lineto +7.436251e+01 6.745903e+00 lineto +7.25523e+01 6.522607e+00 lineto +closepath +gsave +6.159919e-01 6.159919e-01 7.699899e-01 setrgbcolor +fill +grestore +newpath +7.287729e+01 7.061789e+00 moveto +7.25523e+01 6.522607e+00 lineto +7.436251e+01 6.745903e+00 lineto +7.47654e+01 7.294694e+00 lineto +7.287729e+01 7.061789e+00 lineto +closepath +gsave +6.234621e-01 6.234621e-01 7.793277e-01 setrgbcolor +fill +grestore +newpath +7.319483e+01 7.637837e+00 moveto +7.287729e+01 7.061789e+00 lineto +7.47654e+01 7.294694e+00 lineto +7.515905e+01 7.880131e+00 lineto +7.319483e+01 7.637837e+00 lineto +closepath +gsave +6.30882e-01 6.30882e-01 7.886026e-01 setrgbcolor +fill +grestore +newpath +7.350461e+01 8.250208e+00 moveto +7.319483e+01 7.637837e+00 lineto +7.515905e+01 7.880131e+00 lineto +7.554308e+01 8.50166e+00 lineto +7.350461e+01 8.250208e+00 lineto +closepath +gsave +6.382384e-01 6.382384e-01 7.97798e-01 setrgbcolor +fill +grestore +newpath +7.380633e+01 8.89832e+00 moveto +7.350461e+01 8.250208e+00 lineto +7.554308e+01 8.50166e+00 lineto +7.591712e+01 9.158694e+00 lineto +7.380633e+01 8.89832e+00 lineto +closepath +gsave +6.455184e-01 6.455184e-01 8.06898e-01 setrgbcolor +fill +grestore +newpath +7.409972e+01 9.58156e+00 moveto +7.380633e+01 8.89832e+00 lineto +7.591712e+01 9.158694e+00 lineto +7.628083e+01 9.850609e+00 lineto +7.409972e+01 9.58156e+00 lineto +closepath +gsave +6.527096e-01 6.527096e-01 8.158871e-01 setrgbcolor +fill +grestore +newpath +7.438449e+01 1.029928e+01 moveto +7.409972e+01 9.58156e+00 lineto +7.628083e+01 9.850609e+00 lineto +7.663386e+01 1.057675e+01 lineto +7.438449e+01 1.029928e+01 lineto +closepath +gsave +6.598001e-01 6.598001e-01 8.247502e-01 setrgbcolor +fill +grestore +newpath +7.466038e+01 1.105081e+01 moveto +7.438449e+01 1.029928e+01 lineto +7.663386e+01 1.057675e+01 lineto +7.697588e+01 1.133643e+01 lineto +7.466038e+01 1.105081e+01 lineto +closepath +gsave +6.667784e-01 6.667784e-01 8.33473e-01 setrgbcolor +fill +grestore +newpath +7.492712e+01 1.183542e+01 moveto +7.466038e+01 1.105081e+01 lineto +7.697588e+01 1.133643e+01 lineto +7.730655e+01 1.212893e+01 lineto +7.492712e+01 1.183542e+01 lineto +closepath +gsave +6.736335e-01 6.736335e-01 8.420418e-01 setrgbcolor +fill +grestore +newpath +7.518446e+01 1.265238e+01 moveto +7.492712e+01 1.183542e+01 lineto +7.730655e+01 1.212893e+01 lineto +7.762557e+01 1.29535e+01 lineto +7.518446e+01 1.265238e+01 lineto +closepath +gsave +6.80355e-01 6.80355e-01 8.504438e-01 setrgbcolor +fill +grestore +newpath +7.543215e+01 1.350092e+01 moveto +7.518446e+01 1.265238e+01 lineto +7.762557e+01 1.29535e+01 lineto +7.793264e+01 1.380936e+01 lineto +7.543215e+01 1.350092e+01 lineto +closepath +gsave +6.869332e-01 6.869332e-01 8.586665e-01 setrgbcolor +fill +grestore +newpath +7.566997e+01 1.438022e+01 moveto +7.543215e+01 1.350092e+01 lineto +7.793264e+01 1.380936e+01 lineto +7.822747e+01 1.46957e+01 lineto +7.566997e+01 1.438022e+01 lineto +closepath +gsave +6.933588e-01 6.933588e-01 8.666985e-01 setrgbcolor +fill +grestore +newpath +7.589769e+01 1.528946e+01 moveto +7.566997e+01 1.438022e+01 lineto +7.822747e+01 1.46957e+01 lineto +7.850977e+01 1.561167e+01 lineto +7.589769e+01 1.528946e+01 lineto +closepath +gsave +6.996232e-01 6.996232e-01 8.74529e-01 setrgbcolor +fill +grestore +newpath +7.611509e+01 1.622778e+01 moveto +7.589769e+01 1.528946e+01 lineto +7.850977e+01 1.561167e+01 lineto +7.877928e+01 1.655642e+01 lineto +7.611509e+01 1.622778e+01 lineto +closepath +gsave +7.057184e-01 7.057184e-01 8.82148e-01 setrgbcolor +fill +grestore +newpath +7.632197e+01 1.719429e+01 moveto +7.611509e+01 1.622778e+01 lineto +7.877928e+01 1.655642e+01 lineto +7.903574e+01 1.752905e+01 lineto +7.632197e+01 1.719429e+01 lineto +closepath +gsave +7.11637e-01 7.11637e-01 8.895462e-01 setrgbcolor +fill +grestore +newpath +7.651813e+01 1.818808e+01 moveto +7.632197e+01 1.719429e+01 lineto +7.903574e+01 1.752905e+01 lineto +7.927891e+01 1.852863e+01 lineto +7.651813e+01 1.818808e+01 lineto +closepath +gsave +7.173722e-01 7.173722e-01 8.967153e-01 setrgbcolor +fill +grestore +newpath +7.670338e+01 1.920819e+01 moveto +7.651813e+01 1.818808e+01 lineto +7.927891e+01 1.852863e+01 lineto +7.950857e+01 1.955422e+01 lineto +7.670338e+01 1.920819e+01 lineto +closepath +gsave +7.229179e-01 7.229179e-01 9.036474e-01 setrgbcolor +fill +grestore +newpath +7.687755e+01 2.025367e+01 moveto +7.670338e+01 1.920819e+01 lineto +7.950857e+01 1.955422e+01 lineto +7.972448e+01 2.060485e+01 lineto +7.687755e+01 2.025367e+01 lineto +closepath +gsave +7.282685e-01 7.282685e-01 9.103356e-01 setrgbcolor +fill +grestore +newpath +7.704047e+01 2.132353e+01 moveto +7.687755e+01 2.025367e+01 lineto +7.972448e+01 2.060485e+01 lineto +7.992646e+01 2.167953e+01 lineto +7.704047e+01 2.132353e+01 lineto +closepath +gsave +7.33419e-01 7.33419e-01 9.167737e-01 setrgbcolor +fill +grestore +newpath +7.7192e+01 2.241675e+01 moveto +7.704047e+01 2.132353e+01 lineto +7.992646e+01 2.167953e+01 lineto +8.01143e+01 2.277723e+01 lineto +7.7192e+01 2.241675e+01 lineto +closepath +gsave +7.383649e-01 7.383649e-01 9.229562e-01 setrgbcolor +fill +grestore +newpath +7.733198e+01 2.353231e+01 moveto +7.7192e+01 2.241675e+01 lineto +8.01143e+01 2.277723e+01 lineto +8.028784e+01 2.389692e+01 lineto +7.733198e+01 2.353231e+01 lineto +closepath +gsave +7.431025e-01 7.431025e-01 9.288781e-01 setrgbcolor +fill +grestore +newpath +6.943507e+01 3.250793e+00 moveto +6.89531e+01 3.171942e+00 lineto +6.969305e+01 3.279141e+00 lineto +7.026523e+01 3.371062e+00 lineto +6.943507e+01 3.250793e+00 lineto +closepath +gsave +5.355622e-01 5.355622e-01 6.694527e-01 setrgbcolor +fill +grestore +newpath +6.991283e+01 3.370119e+00 moveto +6.943507e+01 3.250793e+00 lineto +7.026523e+01 3.371062e+00 lineto +7.083242e+01 3.503345e+00 lineto +6.991283e+01 3.370119e+00 lineto +closepath +gsave +5.428076e-01 5.428076e-01 6.785095e-01 setrgbcolor +fill +grestore +newpath +7.038594e+01 3.529808e+00 moveto +6.991283e+01 3.370119e+00 lineto +7.083242e+01 3.503345e+00 lineto +7.139409e+01 3.675863e+00 lineto +7.038594e+01 3.529808e+00 lineto +closepath +gsave +5.501573e-01 5.501573e-01 6.876966e-01 setrgbcolor +fill +grestore +newpath +7.085396e+01 3.729708e+00 moveto +7.038594e+01 3.529808e+00 lineto +7.139409e+01 3.675863e+00 lineto +7.194971e+01 3.888455e+00 lineto +7.085396e+01 3.729708e+00 lineto +closepath +gsave +5.575974e-01 5.575974e-01 6.969968e-01 setrgbcolor +fill +grestore +newpath +7.131643e+01 3.96963e+00 moveto +7.085396e+01 3.729708e+00 lineto +7.194971e+01 3.888455e+00 lineto +7.249875e+01 4.140918e+00 lineto +7.131643e+01 3.96963e+00 lineto +closepath +gsave +5.651138e-01 5.651138e-01 7.063922e-01 setrgbcolor +fill +grestore +newpath +7.177292e+01 4.249347e+00 moveto +7.131643e+01 3.96963e+00 lineto +7.249875e+01 4.140918e+00 lineto +7.304068e+01 4.433014e+00 lineto +7.177292e+01 4.249347e+00 lineto +closepath +gsave +5.726919e-01 5.726919e-01 7.158649e-01 setrgbcolor +fill +grestore +newpath +7.222299e+01 4.568593e+00 moveto +7.177292e+01 4.249347e+00 lineto +7.304068e+01 4.433014e+00 lineto +7.357501e+01 4.764466e+00 lineto +7.222299e+01 4.568593e+00 lineto +closepath +gsave +5.803172e-01 5.803172e-01 7.253965e-01 setrgbcolor +fill +grestore +newpath +7.266623e+01 4.927068e+00 moveto +7.222299e+01 4.568593e+00 lineto +7.357501e+01 4.764466e+00 lineto +7.410121e+01 5.13496e+00 lineto +7.266623e+01 4.927068e+00 lineto +closepath +gsave +5.87975e-01 5.87975e-01 7.349687e-01 setrgbcolor +fill +grestore +newpath +7.310221e+01 5.32443e+00 moveto +7.266623e+01 4.927068e+00 lineto +7.410121e+01 5.13496e+00 lineto +7.46188e+01 5.544145e+00 lineto +7.310221e+01 5.32443e+00 lineto +closepath +gsave +5.956505e-01 5.956505e-01 7.445631e-01 setrgbcolor +fill +grestore +newpath +7.353052e+01 5.760305e+00 moveto +7.310221e+01 5.32443e+00 lineto +7.46188e+01 5.544145e+00 lineto +7.512728e+01 5.991634e+00 lineto +7.353052e+01 5.760305e+00 lineto +closepath +gsave +6.03329e-01 6.03329e-01 7.541612e-01 setrgbcolor +fill +grestore +newpath +7.395075e+01 6.234279e+00 moveto +7.353052e+01 5.760305e+00 lineto +7.512728e+01 5.991634e+00 lineto +7.562617e+01 6.477004e+00 lineto +7.395075e+01 6.234279e+00 lineto +closepath +gsave +6.109959e-01 6.109959e-01 7.637448e-01 setrgbcolor +fill +grestore +newpath +7.436251e+01 6.745903e+00 moveto +7.395075e+01 6.234279e+00 lineto +7.562617e+01 6.477004e+00 lineto +7.6115e+01 6.999794e+00 lineto +7.436251e+01 6.745903e+00 lineto +closepath +gsave +6.186368e-01 6.186368e-01 7.73296e-01 setrgbcolor +fill +grestore +newpath +7.47654e+01 7.294694e+00 moveto +7.436251e+01 6.745903e+00 lineto +7.6115e+01 6.999794e+00 lineto +7.659331e+01 7.559511e+00 lineto +7.47654e+01 7.294694e+00 lineto +closepath +gsave +6.262375e-01 6.262375e-01 7.827969e-01 setrgbcolor +fill +grestore +newpath +7.515905e+01 7.880131e+00 moveto +7.47654e+01 7.294694e+00 lineto +7.659331e+01 7.559511e+00 lineto +7.706064e+01 8.155623e+00 lineto +7.515905e+01 7.880131e+00 lineto +closepath +gsave +6.337841e-01 6.337841e-01 7.922302e-01 setrgbcolor +fill +grestore +newpath +7.554308e+01 8.50166e+00 moveto +7.515905e+01 7.880131e+00 lineto +7.706064e+01 8.155623e+00 lineto +7.751655e+01 8.787566e+00 lineto +7.554308e+01 8.50166e+00 lineto +closepath +gsave +6.412632e-01 6.412632e-01 8.015789e-01 setrgbcolor +fill +grestore +newpath +7.591712e+01 9.158694e+00 moveto +7.554308e+01 8.50166e+00 lineto +7.751655e+01 8.787566e+00 lineto +7.796061e+01 9.454743e+00 lineto +7.591712e+01 9.158694e+00 lineto +closepath +gsave +6.486614e-01 6.486614e-01 8.108267e-01 setrgbcolor +fill +grestore +newpath +7.628083e+01 9.850609e+00 moveto +7.591712e+01 9.158694e+00 lineto +7.796061e+01 9.454743e+00 lineto +7.83924e+01 1.015652e+01 lineto +7.628083e+01 9.850609e+00 lineto +closepath +gsave +6.559662e-01 6.559662e-01 8.199577e-01 setrgbcolor +fill +grestore +newpath +7.663386e+01 1.057675e+01 moveto +7.628083e+01 9.850609e+00 lineto +7.83924e+01 1.015652e+01 lineto +7.881151e+01 1.089224e+01 lineto +7.663386e+01 1.057675e+01 lineto +closepath +gsave +6.631652e-01 6.631652e-01 8.289566e-01 setrgbcolor +fill +grestore +newpath +7.697588e+01 1.133643e+01 moveto +7.663386e+01 1.057675e+01 lineto +7.881151e+01 1.089224e+01 lineto +7.921754e+01 1.166119e+01 lineto +7.697588e+01 1.133643e+01 lineto +closepath +gsave +6.70247e-01 6.70247e-01 8.378087e-01 setrgbcolor +fill +grestore +newpath +7.730655e+01 1.212893e+01 moveto +7.697588e+01 1.133643e+01 lineto +7.921754e+01 1.166119e+01 lineto +7.961011e+01 1.246266e+01 lineto +7.730655e+01 1.212893e+01 lineto +closepath +gsave +6.772002e-01 6.772002e-01 8.465003e-01 setrgbcolor +fill +grestore +newpath +7.762557e+01 1.29535e+01 moveto +7.730655e+01 1.212893e+01 lineto +7.961011e+01 1.246266e+01 lineto +7.998885e+01 1.329588e+01 lineto +7.762557e+01 1.29535e+01 lineto +closepath +gsave +6.840144e-01 6.840144e-01 8.550181e-01 setrgbcolor +fill +grestore +newpath +7.793264e+01 1.380936e+01 moveto +7.762557e+01 1.29535e+01 lineto +7.998885e+01 1.329588e+01 lineto +8.03534e+01 1.416007e+01 lineto +7.793264e+01 1.380936e+01 lineto +closepath +gsave +6.906797e-01 6.906797e-01 8.633497e-01 setrgbcolor +fill +grestore +newpath +7.822747e+01 1.46957e+01 moveto +7.793264e+01 1.380936e+01 lineto +8.03534e+01 1.416007e+01 lineto +8.070341e+01 1.50544e+01 lineto +7.822747e+01 1.46957e+01 lineto +closepath +gsave +6.971868e-01 6.971868e-01 8.714834e-01 setrgbcolor +fill +grestore +newpath +7.850977e+01 1.561167e+01 moveto +7.822747e+01 1.46957e+01 lineto +8.070341e+01 1.50544e+01 lineto +8.103855e+01 1.597803e+01 lineto +7.850977e+01 1.561167e+01 lineto +closepath +gsave +7.035269e-01 7.035269e-01 8.794086e-01 setrgbcolor +fill +grestore +newpath +7.877928e+01 1.655642e+01 moveto +7.850977e+01 1.561167e+01 lineto +8.103855e+01 1.597803e+01 lineto +8.13585e+01 1.693009e+01 lineto +7.877928e+01 1.655642e+01 lineto +closepath +gsave +7.096921e-01 7.096921e-01 8.871151e-01 setrgbcolor +fill +grestore +newpath +7.903574e+01 1.752905e+01 moveto +7.877928e+01 1.655642e+01 lineto +8.13585e+01 1.693009e+01 lineto +8.166297e+01 1.790967e+01 lineto +7.903574e+01 1.752905e+01 lineto +closepath +gsave +7.156749e-01 7.156749e-01 8.945937e-01 setrgbcolor +fill +grestore +newpath +7.927891e+01 1.852863e+01 moveto +7.903574e+01 1.752905e+01 lineto +8.166297e+01 1.790967e+01 lineto +8.195166e+01 1.891584e+01 lineto +7.927891e+01 1.852863e+01 lineto +closepath +gsave +7.214688e-01 7.214688e-01 9.01836e-01 setrgbcolor +fill +grestore +newpath +7.950857e+01 1.955422e+01 moveto +7.927891e+01 1.852863e+01 lineto +8.195166e+01 1.891584e+01 lineto +8.22243e+01 1.994766e+01 lineto +7.950857e+01 1.955422e+01 lineto +closepath +gsave +7.270675e-01 7.270675e-01 9.088343e-01 setrgbcolor +fill +grestore +newpath +7.972448e+01 2.060485e+01 moveto +7.950857e+01 1.955422e+01 lineto +8.22243e+01 1.994766e+01 lineto +8.248064e+01 2.100415e+01 lineto +7.972448e+01 2.060485e+01 lineto +closepath +gsave +7.324655e-01 7.324655e-01 9.155819e-01 setrgbcolor +fill +grestore +newpath +7.992646e+01 2.167953e+01 moveto +7.972448e+01 2.060485e+01 lineto +8.248064e+01 2.100415e+01 lineto +8.272042e+01 2.20843e+01 lineto +7.992646e+01 2.167953e+01 lineto +closepath +gsave +7.37658e-01 7.37658e-01 9.220725e-01 setrgbcolor +fill +grestore +newpath +8.01143e+01 2.277723e+01 moveto +7.992646e+01 2.167953e+01 lineto +8.272042e+01 2.20843e+01 lineto +8.294342e+01 2.31871e+01 lineto +8.01143e+01 2.277723e+01 lineto +closepath +gsave +7.426408e-01 7.426408e-01 9.28301e-01 setrgbcolor +fill +grestore +newpath +8.028784e+01 2.389692e+01 moveto +8.01143e+01 2.277723e+01 lineto +8.294342e+01 2.31871e+01 lineto +8.314944e+01 2.431149e+01 lineto +8.028784e+01 2.389692e+01 lineto +closepath +gsave +7.474099e-01 7.474099e-01 9.342624e-01 setrgbcolor +fill +grestore +newpath +7.083242e+01 3.503345e+00 moveto +7.026523e+01 3.371062e+00 lineto +7.106293e+01 3.505083e+00 lineto +7.171606e+01 3.651803e+00 lineto +7.083242e+01 3.503345e+00 lineto +closepath +gsave +5.436313e-01 5.436313e-01 6.795392e-01 setrgbcolor +fill +grestore +newpath +7.139409e+01 3.675863e+00 moveto +7.083242e+01 3.503345e+00 lineto +7.171606e+01 3.651803e+00 lineto +7.236282e+01 3.838618e+00 lineto +7.139409e+01 3.675863e+00 lineto +closepath +gsave +5.510777e-01 5.510777e-01 6.888472e-01 setrgbcolor +fill +grestore +newpath +7.194971e+01 3.888455e+00 moveto +7.139409e+01 3.675863e+00 lineto +7.236282e+01 3.838618e+00 lineto +7.300262e+01 4.065353e+00 lineto +7.194971e+01 3.888455e+00 lineto +closepath +gsave +5.586151e-01 5.586151e-01 6.982689e-01 setrgbcolor +fill +grestore +newpath +7.249875e+01 4.140918e+00 moveto +7.194971e+01 3.888455e+00 lineto +7.300262e+01 4.065353e+00 lineto +7.363483e+01 4.331791e+00 lineto +7.249875e+01 4.140918e+00 lineto +closepath +gsave +5.66229e-01 5.66229e-01 7.077862e-01 setrgbcolor +fill +grestore +newpath +7.304068e+01 4.433014e+00 moveto +7.249875e+01 4.140918e+00 lineto +7.363483e+01 4.331791e+00 lineto +7.425888e+01 4.637681e+00 lineto +7.304068e+01 4.433014e+00 lineto +closepath +gsave +5.739045e-01 5.739045e-01 7.173806e-01 setrgbcolor +fill +grestore +newpath +7.357501e+01 4.764466e+00 moveto +7.304068e+01 4.433014e+00 lineto +7.425888e+01 4.637681e+00 lineto +7.487415e+01 4.982734e+00 lineto +7.357501e+01 4.764466e+00 lineto +closepath +gsave +5.816266e-01 5.816266e-01 7.270333e-01 setrgbcolor +fill +grestore +newpath +7.410121e+01 5.13496e+00 moveto +7.357501e+01 4.764466e+00 lineto +7.487415e+01 4.982734e+00 lineto +7.548008e+01 5.366622e+00 lineto +7.410121e+01 5.13496e+00 lineto +closepath +gsave +5.893804e-01 5.893804e-01 7.367255e-01 setrgbcolor +fill +grestore +newpath +7.46188e+01 5.544145e+00 moveto +7.410121e+01 5.13496e+00 lineto +7.548008e+01 5.366622e+00 lineto +7.607608e+01 5.788982e+00 lineto +7.46188e+01 5.544145e+00 lineto +closepath +gsave +5.971508e-01 5.971508e-01 7.464385e-01 setrgbcolor +fill +grestore +newpath +7.512728e+01 5.991634e+00 moveto +7.46188e+01 5.544145e+00 lineto +7.607608e+01 5.788982e+00 lineto +7.66616e+01 6.249414e+00 lineto +7.512728e+01 5.991634e+00 lineto +closepath +gsave +6.049227e-01 6.049227e-01 7.561533e-01 setrgbcolor +fill +grestore +newpath +7.562617e+01 6.477004e+00 moveto +7.512728e+01 5.991634e+00 lineto +7.66616e+01 6.249414e+00 lineto +7.723607e+01 6.747482e+00 lineto +7.562617e+01 6.477004e+00 lineto +closepath +gsave +6.126812e-01 6.126812e-01 7.658515e-01 setrgbcolor +fill +grestore +newpath +7.6115e+01 6.999794e+00 moveto +7.562617e+01 6.477004e+00 lineto +7.723607e+01 6.747482e+00 lineto +7.779896e+01 7.282716e+00 lineto +7.6115e+01 6.999794e+00 lineto +closepath +gsave +6.204117e-01 6.204117e-01 7.755147e-01 setrgbcolor +fill +grestore +newpath +7.659331e+01 7.559511e+00 moveto +7.6115e+01 6.999794e+00 lineto +7.779896e+01 7.282716e+00 lineto +7.834974e+01 7.854607e+00 lineto +7.659331e+01 7.559511e+00 lineto +closepath +gsave +6.280997e-01 6.280997e-01 7.851246e-01 setrgbcolor +fill +grestore +newpath +7.706064e+01 8.155623e+00 moveto +7.659331e+01 7.559511e+00 lineto +7.834974e+01 7.854607e+00 lineto +7.888787e+01 8.462614e+00 lineto +7.706064e+01 8.155623e+00 lineto +closepath +gsave +6.35731e-01 6.35731e-01 7.946638e-01 setrgbcolor +fill +grestore +newpath +7.751655e+01 8.787566e+00 moveto +7.706064e+01 8.155623e+00 lineto +7.888787e+01 8.462614e+00 lineto +7.941285e+01 9.106162e+00 lineto +7.751655e+01 8.787566e+00 lineto +closepath +gsave +6.432919e-01 6.432919e-01 8.041149e-01 setrgbcolor +fill +grestore +newpath +7.796061e+01 9.454743e+00 moveto +7.751655e+01 8.787566e+00 lineto +7.941285e+01 9.106162e+00 lineto +7.992419e+01 9.784642e+00 lineto +7.796061e+01 9.454743e+00 lineto +closepath +gsave +6.50769e-01 6.50769e-01 8.134613e-01 setrgbcolor +fill +grestore +newpath +7.83924e+01 1.015652e+01 moveto +7.796061e+01 9.454743e+00 lineto +7.992419e+01 9.784642e+00 lineto +8.04214e+01 1.049741e+01 lineto +7.83924e+01 1.015652e+01 lineto +closepath +gsave +6.581494e-01 6.581494e-01 8.226868e-01 setrgbcolor +fill +grestore +newpath +7.881151e+01 1.089224e+01 moveto +7.83924e+01 1.015652e+01 lineto +8.04214e+01 1.049741e+01 lineto +8.0904e+01 1.124379e+01 lineto +7.881151e+01 1.089224e+01 lineto +closepath +gsave +6.654208e-01 6.654208e-01 8.31776e-01 setrgbcolor +fill +grestore +newpath +7.921754e+01 1.166119e+01 moveto +7.881151e+01 1.089224e+01 lineto +8.0904e+01 1.124379e+01 lineto +8.137155e+01 1.202308e+01 lineto +7.921754e+01 1.166119e+01 lineto +closepath +gsave +6.725713e-01 6.725713e-01 8.407142e-01 setrgbcolor +fill +grestore +newpath +7.961011e+01 1.246266e+01 moveto +7.921754e+01 1.166119e+01 lineto +8.137155e+01 1.202308e+01 lineto +8.18236e+01 1.283454e+01 lineto +7.961011e+01 1.246266e+01 lineto +closepath +gsave +6.795898e-01 6.795898e-01 8.494872e-01 setrgbcolor +fill +grestore +newpath +7.998885e+01 1.329588e+01 moveto +7.961011e+01 1.246266e+01 lineto +8.18236e+01 1.283454e+01 lineto +8.225972e+01 1.367741e+01 lineto +7.998885e+01 1.329588e+01 lineto +closepath +gsave +6.864654e-01 6.864654e-01 8.580818e-01 setrgbcolor +fill +grestore +newpath +8.03534e+01 1.416007e+01 moveto +7.998885e+01 1.329588e+01 lineto +8.225972e+01 1.367741e+01 lineto +8.267949e+01 1.455087e+01 lineto +8.03534e+01 1.416007e+01 lineto +closepath +gsave +6.931884e-01 6.931884e-01 8.664855e-01 setrgbcolor +fill +grestore +newpath +8.070341e+01 1.50544e+01 moveto +8.03534e+01 1.416007e+01 lineto +8.267949e+01 1.455087e+01 lineto +8.308253e+01 1.545411e+01 lineto +8.070341e+01 1.50544e+01 lineto +closepath +gsave +6.997492e-01 6.997492e-01 8.746865e-01 setrgbcolor +fill +grestore +newpath +8.103855e+01 1.597803e+01 moveto +8.070341e+01 1.50544e+01 lineto +8.308253e+01 1.545411e+01 lineto +8.346845e+01 1.638627e+01 lineto +8.103855e+01 1.597803e+01 lineto +closepath +gsave +7.061393e-01 7.061393e-01 8.826741e-01 setrgbcolor +fill +grestore +newpath +8.13585e+01 1.693009e+01 moveto +8.103855e+01 1.597803e+01 lineto +8.346845e+01 1.638627e+01 lineto +8.383688e+01 1.734647e+01 lineto +8.13585e+01 1.693009e+01 lineto +closepath +gsave +7.123506e-01 7.123506e-01 8.904382e-01 setrgbcolor +fill +grestore +newpath +8.166297e+01 1.790967e+01 moveto +8.13585e+01 1.693009e+01 lineto +8.383688e+01 1.734647e+01 lineto +8.418747e+01 1.83338e+01 lineto +8.166297e+01 1.790967e+01 lineto +closepath +gsave +7.183757e-01 7.183757e-01 8.979696e-01 setrgbcolor +fill +grestore +newpath +8.195166e+01 1.891584e+01 moveto +8.166297e+01 1.790967e+01 lineto +8.418747e+01 1.83338e+01 lineto +8.45199e+01 1.934733e+01 lineto +8.195166e+01 1.891584e+01 lineto +closepath +gsave +7.242079e-01 7.242079e-01 9.052598e-01 setrgbcolor +fill +grestore +newpath +8.22243e+01 1.994766e+01 moveto +8.195166e+01 1.891584e+01 lineto +8.45199e+01 1.934733e+01 lineto +8.483385e+01 2.038609e+01 lineto +8.22243e+01 1.994766e+01 lineto +closepath +gsave +7.298412e-01 7.298412e-01 9.123014e-01 setrgbcolor +fill +grestore +newpath +8.248064e+01 2.100415e+01 moveto +8.22243e+01 1.994766e+01 lineto +8.483385e+01 2.038609e+01 lineto +8.512902e+01 2.14491e+01 lineto +8.248064e+01 2.100415e+01 lineto +closepath +gsave +7.352701e-01 7.352701e-01 9.190876e-01 setrgbcolor +fill +grestore +newpath +8.272042e+01 2.20843e+01 moveto +8.248064e+01 2.100415e+01 lineto +8.512902e+01 2.14491e+01 lineto +8.540513e+01 2.253536e+01 lineto +8.272042e+01 2.20843e+01 lineto +closepath +gsave +7.404899e-01 7.404899e-01 9.256124e-01 setrgbcolor +fill +grestore +newpath +8.294342e+01 2.31871e+01 moveto +8.272042e+01 2.20843e+01 lineto +8.540513e+01 2.253536e+01 lineto +8.566192e+01 2.364383e+01 lineto +8.294342e+01 2.31871e+01 lineto +closepath +gsave +7.454963e-01 7.454963e-01 9.318704e-01 setrgbcolor +fill +grestore +newpath +8.314944e+01 2.431149e+01 moveto +8.294342e+01 2.31871e+01 lineto +8.566192e+01 2.364383e+01 lineto +8.589914e+01 2.477347e+01 lineto +8.314944e+01 2.431149e+01 lineto +closepath +gsave +7.502858e-01 7.502858e-01 9.378573e-01 setrgbcolor +fill +grestore +newpath +7.171606e+01 3.651803e+00 moveto +7.106293e+01 3.505083e+00 lineto +7.182325e+01 3.65203e+00 lineto +7.255828e+01 3.814579e+00 lineto +7.171606e+01 3.651803e+00 lineto +closepath +gsave +5.44045e-01 5.44045e-01 6.800562e-01 setrgbcolor +fill +grestore +newpath +7.236282e+01 3.838618e+00 moveto +7.171606e+01 3.651803e+00 lineto +7.255828e+01 3.814579e+00 lineto +7.328616e+01 4.01707e+00 lineto +7.236282e+01 3.838618e+00 lineto +closepath +gsave +5.5154e-01 5.5154e-01 6.89425e-01 setrgbcolor +fill +grestore +newpath +7.300262e+01 4.065353e+00 moveto +7.236282e+01 3.838618e+00 lineto +7.328616e+01 4.01707e+00 lineto +7.400618e+01 4.259311e+00 lineto +7.300262e+01 4.065353e+00 lineto +closepath +gsave +5.591262e-01 5.591262e-01 6.989078e-01 setrgbcolor +fill +grestore +newpath +7.363483e+01 4.331791e+00 moveto +7.300262e+01 4.065353e+00 lineto +7.400618e+01 4.259311e+00 lineto +7.471768e+01 4.541072e+00 lineto +7.363483e+01 4.331791e+00 lineto +closepath +gsave +5.66789e-01 5.66789e-01 7.084863e-01 setrgbcolor +fill +grestore +newpath +7.425888e+01 4.637681e+00 moveto +7.363483e+01 4.331791e+00 lineto +7.471768e+01 4.541072e+00 lineto +7.541998e+01 4.862087e+00 lineto +7.425888e+01 4.637681e+00 lineto +closepath +gsave +5.745134e-01 5.745134e-01 7.181417e-01 setrgbcolor +fill +grestore +newpath +7.487415e+01 4.982734e+00 moveto +7.425888e+01 4.637681e+00 lineto +7.541998e+01 4.862087e+00 lineto +7.611242e+01 5.222052e+00 lineto +7.487415e+01 4.982734e+00 lineto +closepath +gsave +5.822841e-01 5.822841e-01 7.278552e-01 setrgbcolor +fill +grestore +newpath +7.548008e+01 5.366622e+00 moveto +7.487415e+01 4.982734e+00 lineto +7.611242e+01 5.222052e+00 lineto +7.679433e+01 5.620626e+00 lineto +7.548008e+01 5.366622e+00 lineto +closepath +gsave +5.900861e-01 5.900861e-01 7.376076e-01 setrgbcolor +fill +grestore +newpath +7.607608e+01 5.788982e+00 moveto +7.548008e+01 5.366622e+00 lineto +7.679433e+01 5.620626e+00 lineto +7.746508e+01 6.057431e+00 lineto +7.607608e+01 5.788982e+00 lineto +closepath +gsave +5.979041e-01 5.979041e-01 7.473801e-01 setrgbcolor +fill +grestore +newpath +7.66616e+01 6.249414e+00 moveto +7.607608e+01 5.788982e+00 lineto +7.746508e+01 6.057431e+00 lineto +7.812402e+01 6.532055e+00 lineto +7.66616e+01 6.249414e+00 lineto +closepath +gsave +6.057228e-01 6.057228e-01 7.571535e-01 setrgbcolor +fill +grestore +newpath +7.723607e+01 6.747482e+00 moveto +7.66616e+01 6.249414e+00 lineto +7.812402e+01 6.532055e+00 lineto +7.877054e+01 7.044046e+00 lineto +7.723607e+01 6.747482e+00 lineto +closepath +gsave +6.135273e-01 6.135273e-01 7.669091e-01 setrgbcolor +fill +grestore +newpath +7.779896e+01 7.282716e+00 moveto +7.723607e+01 6.747482e+00 lineto +7.877054e+01 7.044046e+00 lineto +7.940402e+01 7.592922e+00 lineto +7.779896e+01 7.282716e+00 lineto +closepath +gsave +6.213027e-01 6.213027e-01 7.766284e-01 setrgbcolor +fill +grestore +newpath +7.834974e+01 7.854607e+00 moveto +7.779896e+01 7.282716e+00 lineto +7.940402e+01 7.592922e+00 lineto +8.002386e+01 8.178162e+00 lineto +7.834974e+01 7.854607e+00 lineto +closepath +gsave +6.290344e-01 6.290344e-01 7.86293e-01 setrgbcolor +fill +grestore +newpath +7.888787e+01 8.462614e+00 moveto +7.834974e+01 7.854607e+00 lineto +8.002386e+01 8.178162e+00 lineto +8.062948e+01 8.799212e+00 lineto +7.888787e+01 8.462614e+00 lineto +closepath +gsave +6.367081e-01 6.367081e-01 7.958851e-01 setrgbcolor +fill +grestore +newpath +7.941285e+01 9.106162e+00 moveto +7.888787e+01 8.462614e+00 lineto +8.062948e+01 8.799212e+00 lineto +8.12203e+01 9.455485e+00 lineto +7.941285e+01 9.106162e+00 lineto +closepath +gsave +6.443099e-01 6.443099e-01 8.053874e-01 setrgbcolor +fill +grestore +newpath +7.992419e+01 9.784642e+00 moveto +7.941285e+01 9.106162e+00 lineto +8.12203e+01 9.455485e+00 lineto +8.179576e+01 1.014636e+01 lineto +7.992419e+01 9.784642e+00 lineto +closepath +gsave +6.518265e-01 6.518265e-01 8.147831e-01 setrgbcolor +fill +grestore +newpath +8.04214e+01 1.049741e+01 moveto +7.992419e+01 9.784642e+00 lineto +8.179576e+01 1.014636e+01 lineto +8.235532e+01 1.087118e+01 lineto +8.04214e+01 1.049741e+01 lineto +closepath +gsave +6.592447e-01 6.592447e-01 8.240559e-01 setrgbcolor +fill +grestore +newpath +8.0904e+01 1.124379e+01 moveto +8.04214e+01 1.049741e+01 lineto +8.235532e+01 1.087118e+01 lineto +8.289844e+01 1.162926e+01 lineto +8.0904e+01 1.124379e+01 lineto +closepath +gsave +6.665522e-01 6.665522e-01 8.331903e-01 setrgbcolor +fill +grestore +newpath +8.137155e+01 1.202308e+01 moveto +8.0904e+01 1.124379e+01 lineto +8.289844e+01 1.162926e+01 lineto +8.342462e+01 1.241988e+01 lineto +8.137155e+01 1.202308e+01 lineto +closepath +gsave +6.737371e-01 6.737371e-01 8.421713e-01 setrgbcolor +fill +grestore +newpath +8.18236e+01 1.283454e+01 moveto +8.137155e+01 1.202308e+01 lineto +8.342462e+01 1.241988e+01 lineto +8.393336e+01 1.32423e+01 lineto +8.18236e+01 1.283454e+01 lineto +closepath +gsave +6.80788e-01 6.80788e-01 8.50985e-01 setrgbcolor +fill +grestore +newpath +8.225972e+01 1.367741e+01 moveto +8.18236e+01 1.283454e+01 lineto +8.393336e+01 1.32423e+01 lineto +8.442417e+01 1.409573e+01 lineto +8.225972e+01 1.367741e+01 lineto +closepath +gsave +6.876943e-01 6.876943e-01 8.596178e-01 setrgbcolor +fill +grestore +newpath +8.267949e+01 1.455087e+01 moveto +8.225972e+01 1.367741e+01 lineto +8.442417e+01 1.409573e+01 lineto +8.489659e+01 1.497937e+01 lineto +8.267949e+01 1.455087e+01 lineto +closepath +gsave +6.944459e-01 6.944459e-01 8.680574e-01 setrgbcolor +fill +grestore +newpath +8.308253e+01 1.545411e+01 moveto +8.267949e+01 1.455087e+01 lineto +8.489659e+01 1.497937e+01 lineto +8.535017e+01 1.589238e+01 lineto +8.308253e+01 1.545411e+01 lineto +closepath +gsave +7.010335e-01 7.010335e-01 8.762919e-01 setrgbcolor +fill +grestore +newpath +8.346845e+01 1.638627e+01 moveto +8.308253e+01 1.545411e+01 lineto +8.535017e+01 1.589238e+01 lineto +8.578448e+01 1.683389e+01 lineto +8.346845e+01 1.638627e+01 lineto +closepath +gsave +7.074484e-01 7.074484e-01 8.843105e-01 setrgbcolor +fill +grestore +newpath +8.383688e+01 1.734647e+01 moveto +8.346845e+01 1.638627e+01 lineto +8.578448e+01 1.683389e+01 lineto +8.619911e+01 1.780302e+01 lineto +8.383688e+01 1.734647e+01 lineto +closepath +gsave +7.136825e-01 7.136825e-01 8.921032e-01 setrgbcolor +fill +grestore +newpath +8.418747e+01 1.83338e+01 moveto +8.383688e+01 1.734647e+01 lineto +8.619911e+01 1.780302e+01 lineto +8.659368e+01 1.879885e+01 lineto +8.418747e+01 1.83338e+01 lineto +closepath +gsave +7.197285e-01 7.197285e-01 8.996607e-01 setrgbcolor +fill +grestore +newpath +8.45199e+01 1.934733e+01 moveto +8.418747e+01 1.83338e+01 lineto +8.659368e+01 1.879885e+01 lineto +8.696779e+01 1.982043e+01 lineto +8.45199e+01 1.934733e+01 lineto +closepath +gsave +7.255797e-01 7.255797e-01 9.069747e-01 setrgbcolor +fill +grestore +newpath +8.483385e+01 2.038609e+01 moveto +8.45199e+01 1.934733e+01 lineto +8.696779e+01 1.982043e+01 lineto +8.732111e+01 2.08668e+01 lineto +8.483385e+01 2.038609e+01 lineto +closepath +gsave +7.312301e-01 7.312301e-01 9.140376e-01 setrgbcolor +fill +grestore +newpath +8.512902e+01 2.14491e+01 moveto +8.483385e+01 2.038609e+01 lineto +8.732111e+01 2.08668e+01 lineto +8.765329e+01 2.193697e+01 lineto +8.512902e+01 2.14491e+01 lineto +closepath +gsave +7.366742e-01 7.366742e-01 9.208428e-01 setrgbcolor +fill +grestore +newpath +8.540513e+01 2.253536e+01 moveto +8.512902e+01 2.14491e+01 lineto +8.765329e+01 2.193697e+01 lineto +8.796403e+01 2.302991e+01 lineto +8.540513e+01 2.253536e+01 lineto +closepath +gsave +7.419074e-01 7.419074e-01 9.273843e-01 setrgbcolor +fill +grestore +newpath +8.566192e+01 2.364383e+01 moveto +8.540513e+01 2.253536e+01 lineto +8.796403e+01 2.302991e+01 lineto +8.825302e+01 2.414461e+01 lineto +8.566192e+01 2.364383e+01 lineto +closepath +gsave +7.469255e-01 7.469255e-01 9.336569e-01 setrgbcolor +fill +grestore +newpath +8.589914e+01 2.477347e+01 moveto +8.566192e+01 2.364383e+01 lineto +8.825302e+01 2.414461e+01 lineto +8.852e+01 2.528e+01 lineto +8.589914e+01 2.477347e+01 lineto +closepath +gsave +7.517249e-01 7.517249e-01 9.396561e-01 setrgbcolor +fill +grestore +newpath +7.328616e+01 4.01707e+00 moveto +7.255828e+01 3.814579e+00 lineto +7.335391e+01 3.990669e+00 lineto +7.41584e+01 4.210118e+00 lineto +7.328616e+01 4.01707e+00 lineto +closepath +gsave +5.5154e-01 5.5154e-01 6.89425e-01 setrgbcolor +fill +grestore +newpath +7.400618e+01 4.259311e+00 moveto +7.328616e+01 4.01707e+00 lineto +7.41584e+01 4.210118e+00 lineto +7.495423e+01 4.469134e+00 lineto +7.400618e+01 4.259311e+00 lineto +closepath +gsave +5.591262e-01 5.591262e-01 6.989078e-01 setrgbcolor +fill +grestore +newpath +7.471768e+01 4.541072e+00 moveto +7.400618e+01 4.259311e+00 lineto +7.495423e+01 4.469134e+00 lineto +7.574062e+01 4.767471e+00 lineto +7.471768e+01 4.541072e+00 lineto +closepath +gsave +5.66789e-01 5.66789e-01 7.084863e-01 setrgbcolor +fill +grestore +newpath +7.541998e+01 4.862087e+00 moveto +7.471768e+01 4.541072e+00 lineto +7.574062e+01 4.767471e+00 lineto +7.651685e+01 5.104848e+00 lineto +7.541998e+01 4.862087e+00 lineto +closepath +gsave +5.745134e-01 5.745134e-01 7.181417e-01 setrgbcolor +fill +grestore +newpath +7.611242e+01 5.222052e+00 moveto +7.541998e+01 4.862087e+00 lineto +7.651685e+01 5.104848e+00 lineto +7.728217e+01 5.480945e+00 lineto +7.611242e+01 5.222052e+00 lineto +closepath +gsave +5.822841e-01 5.822841e-01 7.278552e-01 setrgbcolor +fill +grestore +newpath +7.679433e+01 5.620626e+00 moveto +7.611242e+01 5.222052e+00 lineto +7.728217e+01 5.480945e+00 lineto +7.803587e+01 5.895406e+00 lineto +7.679433e+01 5.620626e+00 lineto +closepath +gsave +5.900861e-01 5.900861e-01 7.376076e-01 setrgbcolor +fill +grestore +newpath +7.746508e+01 6.057431e+00 moveto +7.679433e+01 5.620626e+00 lineto +7.803587e+01 5.895406e+00 lineto +7.877722e+01 6.347838e+00 lineto +7.746508e+01 6.057431e+00 lineto +closepath +gsave +5.979041e-01 5.979041e-01 7.473801e-01 setrgbcolor +fill +grestore +newpath +7.812402e+01 6.532055e+00 moveto +7.746508e+01 6.057431e+00 lineto +7.877722e+01 6.347838e+00 lineto +7.950553e+01 6.837813e+00 lineto +7.812402e+01 6.532055e+00 lineto +closepath +gsave +6.057228e-01 6.057228e-01 7.571535e-01 setrgbcolor +fill +grestore +newpath +7.877054e+01 7.044046e+00 moveto +7.812402e+01 6.532055e+00 lineto +7.950553e+01 6.837813e+00 lineto +8.02201e+01 7.364868e+00 lineto +7.877054e+01 7.044046e+00 lineto +closepath +gsave +6.135273e-01 6.135273e-01 7.669091e-01 setrgbcolor +fill +grestore +newpath +7.940402e+01 7.592922e+00 moveto +7.877054e+01 7.044046e+00 lineto +8.02201e+01 7.364868e+00 lineto +8.092027e+01 7.928502e+00 lineto +7.940402e+01 7.592922e+00 lineto +closepath +gsave +6.213027e-01 6.213027e-01 7.766284e-01 setrgbcolor +fill +grestore +newpath +8.002386e+01 8.178162e+00 moveto +7.940402e+01 7.592922e+00 lineto +8.092027e+01 7.928502e+00 lineto +8.160536e+01 8.528183e+00 lineto +8.002386e+01 8.178162e+00 lineto +closepath +gsave +6.290344e-01 6.290344e-01 7.86293e-01 setrgbcolor +fill +grestore +newpath +8.062948e+01 8.799212e+00 moveto +8.002386e+01 8.178162e+00 lineto +8.160536e+01 8.528183e+00 lineto +8.227472e+01 9.163342e+00 lineto +8.062948e+01 8.799212e+00 lineto +closepath +gsave +6.367081e-01 6.367081e-01 7.958851e-01 setrgbcolor +fill +grestore +newpath +8.12203e+01 9.455485e+00 moveto +8.062948e+01 8.799212e+00 lineto +8.227472e+01 9.163342e+00 lineto +8.292774e+01 9.833379e+00 lineto +8.12203e+01 9.455485e+00 lineto +closepath +gsave +6.443099e-01 6.443099e-01 8.053874e-01 setrgbcolor +fill +grestore +newpath +8.179576e+01 1.014636e+01 moveto +8.12203e+01 9.455485e+00 lineto +8.292774e+01 9.833379e+00 lineto +8.356377e+01 1.053766e+01 lineto +8.179576e+01 1.014636e+01 lineto +closepath +gsave +6.518265e-01 6.518265e-01 8.147831e-01 setrgbcolor +fill +grestore +newpath +8.235532e+01 1.087118e+01 moveto +8.179576e+01 1.014636e+01 lineto +8.356377e+01 1.053766e+01 lineto +8.418223e+01 1.127551e+01 lineto +8.235532e+01 1.087118e+01 lineto +closepath +gsave +6.592447e-01 6.592447e-01 8.240559e-01 setrgbcolor +fill +grestore +newpath +8.289844e+01 1.162926e+01 moveto +8.235532e+01 1.087118e+01 lineto +8.418223e+01 1.127551e+01 lineto +8.478253e+01 1.204625e+01 lineto +8.289844e+01 1.162926e+01 lineto +closepath +gsave +6.665522e-01 6.665522e-01 8.331903e-01 setrgbcolor +fill +grestore +newpath +8.342462e+01 1.241988e+01 moveto +8.289844e+01 1.162926e+01 lineto +8.478253e+01 1.204625e+01 lineto +8.53641e+01 1.284913e+01 lineto +8.342462e+01 1.241988e+01 lineto +closepath +gsave +6.737371e-01 6.737371e-01 8.421713e-01 setrgbcolor +fill +grestore +newpath +8.393336e+01 1.32423e+01 moveto +8.342462e+01 1.241988e+01 lineto +8.53641e+01 1.284913e+01 lineto +8.592639e+01 1.36834e+01 lineto +8.393336e+01 1.32423e+01 lineto +closepath +gsave +6.80788e-01 6.80788e-01 8.50985e-01 setrgbcolor +fill +grestore +newpath +8.442417e+01 1.409573e+01 moveto +8.393336e+01 1.32423e+01 lineto +8.592639e+01 1.36834e+01 lineto +8.646887e+01 1.454826e+01 lineto +8.442417e+01 1.409573e+01 lineto +closepath +gsave +6.876943e-01 6.876943e-01 8.596178e-01 setrgbcolor +fill +grestore +newpath +8.489659e+01 1.497937e+01 moveto +8.442417e+01 1.409573e+01 lineto +8.646887e+01 1.454826e+01 lineto +8.699101e+01 1.544291e+01 lineto +8.489659e+01 1.497937e+01 lineto +closepath +gsave +6.944459e-01 6.944459e-01 8.680574e-01 setrgbcolor +fill +grestore +newpath +8.535017e+01 1.589238e+01 moveto +8.489659e+01 1.497937e+01 lineto +8.699101e+01 1.544291e+01 lineto +8.749234e+01 1.636649e+01 lineto +8.535017e+01 1.589238e+01 lineto +closepath +gsave +7.010335e-01 7.010335e-01 8.762919e-01 setrgbcolor +fill +grestore +newpath +8.578448e+01 1.683389e+01 moveto +8.535017e+01 1.589238e+01 lineto +8.749234e+01 1.636649e+01 lineto +8.797237e+01 1.731812e+01 lineto +8.578448e+01 1.683389e+01 lineto +closepath +gsave +7.074484e-01 7.074484e-01 8.843105e-01 setrgbcolor +fill +grestore +newpath +8.619911e+01 1.780302e+01 moveto +8.578448e+01 1.683389e+01 lineto +8.797237e+01 1.731812e+01 lineto +8.843065e+01 1.829691e+01 lineto +8.619911e+01 1.780302e+01 lineto +closepath +gsave +7.136825e-01 7.136825e-01 8.921032e-01 setrgbcolor +fill +grestore +newpath +8.659368e+01 1.879885e+01 moveto +8.619911e+01 1.780302e+01 lineto +8.843065e+01 1.829691e+01 lineto +8.886675e+01 1.930193e+01 lineto +8.659368e+01 1.879885e+01 lineto +closepath +gsave +7.197285e-01 7.197285e-01 8.996607e-01 setrgbcolor +fill +grestore +newpath +8.696779e+01 1.982043e+01 moveto +8.659368e+01 1.879885e+01 lineto +8.886675e+01 1.930193e+01 lineto +8.928025e+01 2.033223e+01 lineto +8.696779e+01 1.982043e+01 lineto +closepath +gsave +7.255797e-01 7.255797e-01 9.069747e-01 setrgbcolor +fill +grestore +newpath +8.732111e+01 2.08668e+01 moveto +8.696779e+01 1.982043e+01 lineto +8.928025e+01 2.033223e+01 lineto +8.967076e+01 2.138683e+01 lineto +8.732111e+01 2.08668e+01 lineto +closepath +gsave +7.312301e-01 7.312301e-01 9.140376e-01 setrgbcolor +fill +grestore +newpath +8.765329e+01 2.193697e+01 moveto +8.732111e+01 2.08668e+01 lineto +8.967076e+01 2.138683e+01 lineto +9.003791e+01 2.246473e+01 lineto +8.765329e+01 2.193697e+01 lineto +closepath +gsave +7.366742e-01 7.366742e-01 9.208428e-01 setrgbcolor +fill +grestore +newpath +8.796403e+01 2.302991e+01 moveto +8.765329e+01 2.193697e+01 lineto +9.003791e+01 2.246473e+01 lineto +9.038135e+01 2.356492e+01 lineto +8.796403e+01 2.302991e+01 lineto +closepath +gsave +7.419074e-01 7.419074e-01 9.273843e-01 setrgbcolor +fill +grestore +newpath +8.825302e+01 2.414461e+01 moveto +8.796403e+01 2.302991e+01 lineto +9.038135e+01 2.356492e+01 lineto +9.070077e+01 2.468635e+01 lineto +8.825302e+01 2.414461e+01 lineto +closepath +gsave +7.469255e-01 7.469255e-01 9.336569e-01 setrgbcolor +fill +grestore +newpath +8.852e+01 2.528e+01 moveto +8.825302e+01 2.414461e+01 lineto +9.070077e+01 2.468635e+01 lineto +9.099585e+01 2.582796e+01 lineto +8.852e+01 2.528e+01 lineto +closepath +gsave +7.517249e-01 7.517249e-01 9.396561e-01 setrgbcolor +fill +grestore +newpath +7.41584e+01 4.210118e+00 moveto +7.335391e+01 3.990669e+00 lineto +7.409803e+01 4.178988e+00 lineto +7.497419e+01 4.416572e+00 lineto +7.41584e+01 4.210118e+00 lineto +closepath +gsave +5.510777e-01 5.510777e-01 6.888472e-01 setrgbcolor +fill +grestore +newpath +7.495423e+01 4.469134e+00 moveto +7.41584e+01 4.210118e+00 lineto +7.497419e+01 4.416572e+00 lineto +7.58409e+01 4.693528e+00 lineto +7.495423e+01 4.469134e+00 lineto +closepath +gsave +5.586151e-01 5.586151e-01 6.982689e-01 setrgbcolor +fill +grestore +newpath +7.574062e+01 4.767471e+00 moveto +7.495423e+01 4.469134e+00 lineto +7.58409e+01 4.693528e+00 lineto +7.669734e+01 5.009593e+00 lineto +7.574062e+01 4.767471e+00 lineto +closepath +gsave +5.66229e-01 5.66229e-01 7.077862e-01 setrgbcolor +fill +grestore +newpath +7.651685e+01 5.104848e+00 moveto +7.574062e+01 4.767471e+00 lineto +7.669734e+01 5.009593e+00 lineto +7.754271e+01 5.364468e+00 lineto +7.651685e+01 5.104848e+00 lineto +closepath +gsave +5.739045e-01 5.739045e-01 7.173806e-01 setrgbcolor +fill +grestore +newpath +7.728217e+01 5.480945e+00 moveto +7.651685e+01 5.104848e+00 lineto +7.754271e+01 5.364468e+00 lineto +7.837621e+01 5.757817e+00 lineto +7.728217e+01 5.480945e+00 lineto +closepath +gsave +5.816266e-01 5.816266e-01 7.270333e-01 setrgbcolor +fill +grestore +newpath +7.803587e+01 5.895406e+00 moveto +7.728217e+01 5.480945e+00 lineto +7.837621e+01 5.757817e+00 lineto +7.919704e+01 6.189268e+00 lineto +7.803587e+01 5.895406e+00 lineto +closepath +gsave +5.893804e-01 5.893804e-01 7.367255e-01 setrgbcolor +fill +grestore +newpath +7.877722e+01 6.347838e+00 moveto +7.803587e+01 5.895406e+00 lineto +7.919704e+01 6.189268e+00 lineto +8.000442e+01 6.658412e+00 lineto +7.877722e+01 6.347838e+00 lineto +closepath +gsave +5.971508e-01 5.971508e-01 7.464385e-01 setrgbcolor +fill +grestore +newpath +7.950553e+01 6.837813e+00 moveto +7.877722e+01 6.347838e+00 lineto +8.000442e+01 6.658412e+00 lineto +8.079761e+01 7.164805e+00 lineto +7.950553e+01 6.837813e+00 lineto +closepath +gsave +6.049227e-01 6.049227e-01 7.561533e-01 setrgbcolor +fill +grestore +newpath +8.02201e+01 7.364868e+00 moveto +7.950553e+01 6.837813e+00 lineto +8.079761e+01 7.164805e+00 lineto +8.157583e+01 7.707968e+00 lineto +8.02201e+01 7.364868e+00 lineto +closepath +gsave +6.126812e-01 6.126812e-01 7.658515e-01 setrgbcolor +fill +grestore +newpath +8.092027e+01 7.928502e+00 moveto +8.02201e+01 7.364868e+00 lineto +8.157583e+01 7.707968e+00 lineto +8.233836e+01 8.287386e+00 lineto +8.092027e+01 7.928502e+00 lineto +closepath +gsave +6.204117e-01 6.204117e-01 7.755147e-01 setrgbcolor +fill +grestore +newpath +8.160536e+01 8.528183e+00 moveto +8.092027e+01 7.928502e+00 lineto +8.233836e+01 8.287386e+00 lineto +8.308447e+01 8.90251e+00 lineto +8.160536e+01 8.528183e+00 lineto +closepath +gsave +6.280997e-01 6.280997e-01 7.851246e-01 setrgbcolor +fill +grestore +newpath +8.227472e+01 9.163342e+00 moveto +8.160536e+01 8.528183e+00 lineto +8.308447e+01 8.90251e+00 lineto +8.381347e+01 9.552759e+00 lineto +8.227472e+01 9.163342e+00 lineto +closepath +gsave +6.35731e-01 6.35731e-01 7.946638e-01 setrgbcolor +fill +grestore +newpath +8.292774e+01 9.833379e+00 moveto +8.227472e+01 9.163342e+00 lineto +8.381347e+01 9.552759e+00 lineto +8.452464e+01 1.023752e+01 lineto +8.292774e+01 9.833379e+00 lineto +closepath +gsave +6.432919e-01 6.432919e-01 8.041149e-01 setrgbcolor +fill +grestore +newpath +8.356377e+01 1.053766e+01 moveto +8.292774e+01 9.833379e+00 lineto +8.452464e+01 1.023752e+01 lineto +8.521734e+01 1.095613e+01 lineto +8.356377e+01 1.053766e+01 lineto +closepath +gsave +6.50769e-01 6.50769e-01 8.134613e-01 setrgbcolor +fill +grestore +newpath +8.418223e+01 1.127551e+01 moveto +8.356377e+01 1.053766e+01 lineto +8.521734e+01 1.095613e+01 lineto +8.589089e+01 1.170793e+01 lineto +8.418223e+01 1.127551e+01 lineto +closepath +gsave +6.581494e-01 6.581494e-01 8.226868e-01 setrgbcolor +fill +grestore +newpath +8.478253e+01 1.204625e+01 moveto +8.418223e+01 1.127551e+01 lineto +8.589089e+01 1.170793e+01 lineto +8.654466e+01 1.24922e+01 lineto +8.478253e+01 1.204625e+01 lineto +closepath +gsave +6.654208e-01 6.654208e-01 8.31776e-01 setrgbcolor +fill +grestore +newpath +8.53641e+01 1.284913e+01 moveto +8.478253e+01 1.204625e+01 lineto +8.654466e+01 1.24922e+01 lineto +8.717803e+01 1.330819e+01 lineto +8.53641e+01 1.284913e+01 lineto +closepath +gsave +6.725713e-01 6.725713e-01 8.407142e-01 setrgbcolor +fill +grestore +newpath +8.592639e+01 1.36834e+01 moveto +8.53641e+01 1.284913e+01 lineto +8.717803e+01 1.330819e+01 lineto +8.77904e+01 1.415513e+01 lineto +8.592639e+01 1.36834e+01 lineto +closepath +gsave +6.795898e-01 6.795898e-01 8.494872e-01 setrgbcolor +fill +grestore +newpath +8.646887e+01 1.454826e+01 moveto +8.592639e+01 1.36834e+01 lineto +8.77904e+01 1.415513e+01 lineto +8.83812e+01 1.503223e+01 lineto +8.646887e+01 1.454826e+01 lineto +closepath +gsave +6.864654e-01 6.864654e-01 8.580818e-01 setrgbcolor +fill +grestore +newpath +8.699101e+01 1.544291e+01 moveto +8.646887e+01 1.454826e+01 lineto +8.83812e+01 1.503223e+01 lineto +8.894986e+01 1.593864e+01 lineto +8.699101e+01 1.544291e+01 lineto +closepath +gsave +6.931884e-01 6.931884e-01 8.664855e-01 setrgbcolor +fill +grestore +newpath +8.749234e+01 1.636649e+01 moveto +8.699101e+01 1.544291e+01 lineto +8.894986e+01 1.593864e+01 lineto +8.949584e+01 1.687352e+01 lineto +8.749234e+01 1.636649e+01 lineto +closepath +gsave +6.997492e-01 6.997492e-01 8.746865e-01 setrgbcolor +fill +grestore +newpath +8.797237e+01 1.731812e+01 moveto +8.749234e+01 1.636649e+01 lineto +8.949584e+01 1.687352e+01 lineto +9.001863e+01 1.783598e+01 lineto +8.797237e+01 1.731812e+01 lineto +closepath +gsave +7.061393e-01 7.061393e-01 8.826741e-01 setrgbcolor +fill +grestore +newpath +8.843065e+01 1.829691e+01 moveto +8.797237e+01 1.731812e+01 lineto +9.001863e+01 1.783598e+01 lineto +9.051773e+01 1.88251e+01 lineto +8.843065e+01 1.829691e+01 lineto +closepath +gsave +7.123506e-01 7.123506e-01 8.904382e-01 setrgbcolor +fill +grestore +newpath +8.886675e+01 1.930193e+01 moveto +8.843065e+01 1.829691e+01 lineto +9.051773e+01 1.88251e+01 lineto +9.099267e+01 1.983995e+01 lineto +8.886675e+01 1.930193e+01 lineto +closepath +gsave +7.183757e-01 7.183757e-01 8.979696e-01 setrgbcolor +fill +grestore +newpath +8.928025e+01 2.033223e+01 moveto +8.886675e+01 1.930193e+01 lineto +9.099267e+01 1.983995e+01 lineto +9.1443e+01 2.087957e+01 lineto +8.928025e+01 2.033223e+01 lineto +closepath +gsave +7.242079e-01 7.242079e-01 9.052598e-01 setrgbcolor +fill +grestore +newpath +8.967076e+01 2.138683e+01 moveto +8.928025e+01 2.033223e+01 lineto +9.1443e+01 2.087957e+01 lineto +9.18683e+01 2.194297e+01 lineto +8.967076e+01 2.138683e+01 lineto +closepath +gsave +7.298412e-01 7.298412e-01 9.123014e-01 setrgbcolor +fill +grestore +newpath +9.003791e+01 2.246473e+01 moveto +8.967076e+01 2.138683e+01 lineto +9.18683e+01 2.194297e+01 lineto +9.226815e+01 2.302915e+01 lineto +9.003791e+01 2.246473e+01 lineto +closepath +gsave +7.352701e-01 7.352701e-01 9.190876e-01 setrgbcolor +fill +grestore +newpath +9.038135e+01 2.356492e+01 moveto +9.003791e+01 2.246473e+01 lineto +9.226815e+01 2.302915e+01 lineto +9.264219e+01 2.413708e+01 lineto +9.038135e+01 2.356492e+01 lineto +closepath +gsave +7.404899e-01 7.404899e-01 9.256124e-01 setrgbcolor +fill +grestore +newpath +9.070077e+01 2.468635e+01 moveto +9.038135e+01 2.356492e+01 lineto +9.264219e+01 2.413708e+01 lineto +9.299006e+01 2.526571e+01 lineto +9.070077e+01 2.468635e+01 lineto +closepath +gsave +7.454963e-01 7.454963e-01 9.318704e-01 setrgbcolor +fill +grestore +newpath +9.099585e+01 2.582796e+01 moveto +9.070077e+01 2.468635e+01 lineto +9.299006e+01 2.526571e+01 lineto +9.331142e+01 2.641397e+01 lineto +9.099585e+01 2.582796e+01 lineto +closepath +gsave +7.502858e-01 7.502858e-01 9.378573e-01 setrgbcolor +fill +grestore +newpath +7.58409e+01 4.693528e+00 moveto +7.497419e+01 4.416572e+00 lineto +7.572847e+01 4.635159e+00 lineto +7.666073e+01 4.931109e+00 lineto +7.58409e+01 4.693528e+00 lineto +closepath +gsave +5.575974e-01 5.575974e-01 6.969968e-01 setrgbcolor +fill +grestore +newpath +7.669734e+01 5.009593e+00 moveto +7.58409e+01 4.693528e+00 lineto +7.666073e+01 4.931109e+00 lineto +7.758194e+01 5.265943e+00 lineto +7.669734e+01 5.009593e+00 lineto +closepath +gsave +5.651138e-01 5.651138e-01 7.063922e-01 setrgbcolor +fill +grestore +newpath +7.754271e+01 5.364468e+00 moveto +7.669734e+01 5.009593e+00 lineto +7.758194e+01 5.265943e+00 lineto +7.849124e+01 5.639345e+00 lineto +7.754271e+01 5.364468e+00 lineto +closepath +gsave +5.726919e-01 5.726919e-01 7.158649e-01 setrgbcolor +fill +grestore +newpath +7.837621e+01 5.757817e+00 moveto +7.754271e+01 5.364468e+00 lineto +7.849124e+01 5.639345e+00 lineto +7.938777e+01 6.050961e+00 lineto +7.837621e+01 5.757817e+00 lineto +closepath +gsave +5.803172e-01 5.803172e-01 7.253965e-01 setrgbcolor +fill +grestore +newpath +7.919704e+01 6.189268e+00 moveto +7.837621e+01 5.757817e+00 lineto +7.938777e+01 6.050961e+00 lineto +8.027067e+01 6.5004e+00 lineto +7.919704e+01 6.189268e+00 lineto +closepath +gsave +5.87975e-01 5.87975e-01 7.349687e-01 setrgbcolor +fill +grestore +newpath +8.000442e+01 6.658412e+00 moveto +7.919704e+01 6.189268e+00 lineto +8.027067e+01 6.5004e+00 lineto +8.113912e+01 6.987238e+00 lineto +8.000442e+01 6.658412e+00 lineto +closepath +gsave +5.956505e-01 5.956505e-01 7.445631e-01 setrgbcolor +fill +grestore +newpath +8.079761e+01 7.164805e+00 moveto +8.000442e+01 6.658412e+00 lineto +8.113912e+01 6.987238e+00 lineto +8.199228e+01 7.511014e+00 lineto +8.079761e+01 7.164805e+00 lineto +closepath +gsave +6.03329e-01 6.03329e-01 7.541612e-01 setrgbcolor +fill +grestore +newpath +8.157583e+01 7.707968e+00 moveto +8.079761e+01 7.164805e+00 lineto +8.199228e+01 7.511014e+00 lineto +8.282936e+01 8.071232e+00 lineto +8.157583e+01 7.707968e+00 lineto +closepath +gsave +6.109959e-01 6.109959e-01 7.637448e-01 setrgbcolor +fill +grestore +newpath +8.233836e+01 8.287386e+00 moveto +8.157583e+01 7.707968e+00 lineto +8.282936e+01 8.071232e+00 lineto +8.364956e+01 8.667361e+00 lineto +8.233836e+01 8.287386e+00 lineto +closepath +gsave +6.186368e-01 6.186368e-01 7.73296e-01 setrgbcolor +fill +grestore +newpath +8.308447e+01 8.90251e+00 moveto +8.233836e+01 8.287386e+00 lineto +8.364956e+01 8.667361e+00 lineto +8.44521e+01 9.298837e+00 lineto +8.308447e+01 8.90251e+00 lineto +closepath +gsave +6.262375e-01 6.262375e-01 7.827969e-01 setrgbcolor +fill +grestore +newpath +8.381347e+01 9.552759e+00 moveto +8.308447e+01 8.90251e+00 lineto +8.44521e+01 9.298837e+00 lineto +8.523622e+01 9.965062e+00 lineto +8.381347e+01 9.552759e+00 lineto +closepath +gsave +6.337841e-01 6.337841e-01 7.922302e-01 setrgbcolor +fill +grestore +newpath +8.452464e+01 1.023752e+01 moveto +8.381347e+01 9.552759e+00 lineto +8.523622e+01 9.965062e+00 lineto +8.600118e+01 1.06654e+01 lineto +8.452464e+01 1.023752e+01 lineto +closepath +gsave +6.412632e-01 6.412632e-01 8.015789e-01 setrgbcolor +fill +grestore +newpath +8.521734e+01 1.095613e+01 moveto +8.452464e+01 1.023752e+01 lineto +8.600118e+01 1.06654e+01 lineto +8.674625e+01 1.13992e+01 lineto +8.521734e+01 1.095613e+01 lineto +closepath +gsave +6.486614e-01 6.486614e-01 8.108267e-01 setrgbcolor +fill +grestore +newpath +8.589089e+01 1.170793e+01 moveto +8.521734e+01 1.095613e+01 lineto +8.674625e+01 1.13992e+01 lineto +8.747074e+01 1.216576e+01 lineto +8.589089e+01 1.170793e+01 lineto +closepath +gsave +6.559662e-01 6.559662e-01 8.199577e-01 setrgbcolor +fill +grestore +newpath +8.654466e+01 1.24922e+01 moveto +8.589089e+01 1.170793e+01 lineto +8.747074e+01 1.216576e+01 lineto +8.817395e+01 1.296435e+01 lineto +8.654466e+01 1.24922e+01 lineto +closepath +gsave +6.631652e-01 6.631652e-01 8.289566e-01 setrgbcolor +fill +grestore +newpath +8.717803e+01 1.330819e+01 moveto +8.654466e+01 1.24922e+01 lineto +8.817395e+01 1.296435e+01 lineto +8.885522e+01 1.379423e+01 lineto +8.717803e+01 1.330819e+01 lineto +closepath +gsave +6.70247e-01 6.70247e-01 8.378087e-01 setrgbcolor +fill +grestore +newpath +8.77904e+01 1.415513e+01 moveto +8.717803e+01 1.330819e+01 lineto +8.885522e+01 1.379423e+01 lineto +8.951391e+01 1.465459e+01 lineto +8.77904e+01 1.415513e+01 lineto +closepath +gsave +6.772002e-01 6.772002e-01 8.465003e-01 setrgbcolor +fill +grestore +newpath +8.83812e+01 1.503223e+01 moveto +8.77904e+01 1.415513e+01 lineto +8.951391e+01 1.465459e+01 lineto +9.014938e+01 1.554463e+01 lineto +8.83812e+01 1.503223e+01 lineto +closepath +gsave +6.840144e-01 6.840144e-01 8.550181e-01 setrgbcolor +fill +grestore +newpath +8.894986e+01 1.593864e+01 moveto +8.83812e+01 1.503223e+01 lineto +9.014938e+01 1.554463e+01 lineto +9.076104e+01 1.646351e+01 lineto +8.894986e+01 1.593864e+01 lineto +closepath +gsave +6.906797e-01 6.906797e-01 8.633497e-01 setrgbcolor +fill +grestore +newpath +8.949584e+01 1.687352e+01 moveto +8.894986e+01 1.593864e+01 lineto +9.076104e+01 1.646351e+01 lineto +9.134832e+01 1.741035e+01 lineto +8.949584e+01 1.687352e+01 lineto +closepath +gsave +6.971868e-01 6.971868e-01 8.714834e-01 setrgbcolor +fill +grestore +newpath +9.001863e+01 1.783598e+01 moveto +8.949584e+01 1.687352e+01 lineto +9.134832e+01 1.741035e+01 lineto +9.191064e+01 1.838427e+01 lineto +9.001863e+01 1.783598e+01 lineto +closepath +gsave +7.035269e-01 7.035269e-01 8.794086e-01 setrgbcolor +fill +grestore +newpath +9.051773e+01 1.88251e+01 moveto +9.001863e+01 1.783598e+01 lineto +9.191064e+01 1.838427e+01 lineto +9.244749e+01 1.938433e+01 lineto +9.051773e+01 1.88251e+01 lineto +closepath +gsave +7.096921e-01 7.096921e-01 8.871151e-01 setrgbcolor +fill +grestore +newpath +9.099267e+01 1.983995e+01 moveto +9.051773e+01 1.88251e+01 lineto +9.244749e+01 1.938433e+01 lineto +9.295834e+01 2.040959e+01 lineto +9.099267e+01 1.983995e+01 lineto +closepath +gsave +7.156749e-01 7.156749e-01 8.945937e-01 setrgbcolor +fill +grestore +newpath +9.1443e+01 2.087957e+01 moveto +9.099267e+01 1.983995e+01 lineto +9.295834e+01 2.040959e+01 lineto +9.344273e+01 2.145907e+01 lineto +9.1443e+01 2.087957e+01 lineto +closepath +gsave +7.214688e-01 7.214688e-01 9.01836e-01 setrgbcolor +fill +grestore +newpath +9.18683e+01 2.194297e+01 moveto +9.1443e+01 2.087957e+01 lineto +9.344273e+01 2.145907e+01 lineto +9.390019e+01 2.25318e+01 lineto +9.18683e+01 2.194297e+01 lineto +closepath +gsave +7.270675e-01 7.270675e-01 9.088343e-01 setrgbcolor +fill +grestore +newpath +9.226815e+01 2.302915e+01 moveto +9.18683e+01 2.194297e+01 lineto +9.390019e+01 2.25318e+01 lineto +9.433028e+01 2.362674e+01 lineto +9.226815e+01 2.302915e+01 lineto +closepath +gsave +7.324655e-01 7.324655e-01 9.155819e-01 setrgbcolor +fill +grestore +newpath +9.264219e+01 2.413708e+01 moveto +9.226815e+01 2.302915e+01 lineto +9.433028e+01 2.362674e+01 lineto +9.473261e+01 2.474287e+01 lineto +9.264219e+01 2.413708e+01 lineto +closepath +gsave +7.37658e-01 7.37658e-01 9.220725e-01 setrgbcolor +fill +grestore +newpath +9.299006e+01 2.526571e+01 moveto +9.264219e+01 2.413708e+01 lineto +9.473261e+01 2.474287e+01 lineto +9.510678e+01 2.587912e+01 lineto +9.299006e+01 2.526571e+01 lineto +closepath +gsave +7.426408e-01 7.426408e-01 9.28301e-01 setrgbcolor +fill +grestore +newpath +9.331142e+01 2.641397e+01 moveto +9.299006e+01 2.526571e+01 lineto +9.510678e+01 2.587912e+01 lineto +9.545245e+01 2.703443e+01 lineto +9.331142e+01 2.641397e+01 lineto +closepath +gsave +7.474099e-01 7.474099e-01 9.342624e-01 setrgbcolor +fill +grestore +newpath +7.758194e+01 5.265943e+00 moveto +7.666073e+01 4.931109e+00 lineto +7.740867e+01 5.180413e+00 lineto +7.838897e+01 5.534943e+00 lineto +7.758194e+01 5.265943e+00 lineto +closepath +gsave +5.634531e-01 5.634531e-01 7.043164e-01 setrgbcolor +fill +grestore +newpath +7.849124e+01 5.639345e+00 moveto +7.758194e+01 5.265943e+00 lineto +7.838897e+01 5.534943e+00 lineto +7.935659e+01 5.927785e+00 lineto +7.849124e+01 5.639345e+00 lineto +closepath +gsave +5.708862e-01 5.708862e-01 7.136078e-01 setrgbcolor +fill +grestore +newpath +7.938777e+01 6.050961e+00 moveto +7.849124e+01 5.639345e+00 lineto +7.935659e+01 5.927785e+00 lineto +8.031063e+01 6.358568e+00 lineto +7.938777e+01 6.050961e+00 lineto +closepath +gsave +5.783672e-01 5.783672e-01 7.22959e-01 setrgbcolor +fill +grestore +newpath +8.027067e+01 6.5004e+00 moveto +7.938777e+01 6.050961e+00 lineto +8.031063e+01 6.358568e+00 lineto +8.125016e+01 6.826884e+00 lineto +8.027067e+01 6.5004e+00 lineto +closepath +gsave +5.858817e-01 5.858817e-01 7.323522e-01 setrgbcolor +fill +grestore +newpath +8.113912e+01 6.987238e+00 moveto +8.027067e+01 6.5004e+00 lineto +8.125016e+01 6.826884e+00 lineto +8.217431e+01 7.33229e+00 lineto +8.113912e+01 6.987238e+00 lineto +closepath +gsave +5.934157e-01 5.934157e-01 7.417696e-01 setrgbcolor +fill +grestore +newpath +8.199228e+01 7.511014e+00 moveto +8.113912e+01 6.987238e+00 lineto +8.217431e+01 7.33229e+00 lineto +8.30822e+01 7.874306e+00 lineto +8.199228e+01 7.511014e+00 lineto +closepath +gsave +6.009548e-01 6.009548e-01 7.511935e-01 setrgbcolor +fill +grestore +newpath +8.282936e+01 8.071232e+00 moveto +8.199228e+01 7.511014e+00 lineto +8.30822e+01 7.874306e+00 lineto +8.397297e+01 8.45242e+00 lineto +8.282936e+01 8.071232e+00 lineto +closepath +gsave +6.084848e-01 6.084848e-01 7.606061e-01 setrgbcolor +fill +grestore +newpath +8.364956e+01 8.667361e+00 moveto +8.282936e+01 8.071232e+00 lineto +8.397297e+01 8.45242e+00 lineto +8.484577e+01 9.066085e+00 lineto +8.364956e+01 8.667361e+00 lineto +closepath +gsave +6.159919e-01 6.159919e-01 7.699899e-01 setrgbcolor +fill +grestore +newpath +8.44521e+01 9.298837e+00 moveto +8.364956e+01 8.667361e+00 lineto +8.484577e+01 9.066085e+00 lineto +8.569979e+01 9.714719e+00 lineto +8.44521e+01 9.298837e+00 lineto +closepath +gsave +6.234621e-01 6.234621e-01 7.793277e-01 setrgbcolor +fill +grestore +newpath +8.523622e+01 9.965062e+00 moveto +8.44521e+01 9.298837e+00 lineto +8.569979e+01 9.714719e+00 lineto +8.65342e+01 1.039771e+01 lineto +8.523622e+01 9.965062e+00 lineto +closepath +gsave +6.30882e-01 6.30882e-01 7.886026e-01 setrgbcolor +fill +grestore +newpath +8.600118e+01 1.06654e+01 moveto +8.523622e+01 9.965062e+00 lineto +8.65342e+01 1.039771e+01 lineto +8.734823e+01 1.111441e+01 lineto +8.600118e+01 1.06654e+01 lineto +closepath +gsave +6.382384e-01 6.382384e-01 7.97798e-01 setrgbcolor +fill +grestore +newpath +8.674625e+01 1.13992e+01 moveto +8.600118e+01 1.06654e+01 lineto +8.734823e+01 1.111441e+01 lineto +8.81411e+01 1.186413e+01 lineto +8.674625e+01 1.13992e+01 lineto +closepath +gsave +6.455184e-01 6.455184e-01 8.06898e-01 setrgbcolor +fill +grestore +newpath +8.747074e+01 1.216576e+01 moveto +8.674625e+01 1.13992e+01 lineto +8.81411e+01 1.186413e+01 lineto +8.891206e+01 1.264618e+01 lineto +8.747074e+01 1.216576e+01 lineto +closepath +gsave +6.527096e-01 6.527096e-01 8.158871e-01 setrgbcolor +fill +grestore +newpath +8.817395e+01 1.296435e+01 moveto +8.747074e+01 1.216576e+01 lineto +8.891206e+01 1.264618e+01 lineto +8.966037e+01 1.345981e+01 lineto +8.817395e+01 1.296435e+01 lineto +closepath +gsave +6.598001e-01 6.598001e-01 8.247502e-01 setrgbcolor +fill +grestore +newpath +8.885522e+01 1.379423e+01 moveto +8.817395e+01 1.296435e+01 lineto +8.966037e+01 1.345981e+01 lineto +9.038534e+01 1.430425e+01 lineto +8.885522e+01 1.379423e+01 lineto +closepath +gsave +6.667784e-01 6.667784e-01 8.33473e-01 setrgbcolor +fill +grestore +newpath +8.951391e+01 1.465459e+01 moveto +8.885522e+01 1.379423e+01 lineto +9.038534e+01 1.430425e+01 lineto +9.108627e+01 1.517869e+01 lineto +8.951391e+01 1.465459e+01 lineto +closepath +gsave +6.736335e-01 6.736335e-01 8.420418e-01 setrgbcolor +fill +grestore +newpath +9.014938e+01 1.554463e+01 moveto +8.951391e+01 1.465459e+01 lineto +9.108627e+01 1.517869e+01 lineto +9.176251e+01 1.608232e+01 lineto +9.014938e+01 1.554463e+01 lineto +closepath +gsave +6.80355e-01 6.80355e-01 8.504438e-01 setrgbcolor +fill +grestore +newpath +9.076104e+01 1.646351e+01 moveto +9.014938e+01 1.554463e+01 lineto +9.176251e+01 1.608232e+01 lineto +9.24134e+01 1.701428e+01 lineto +9.076104e+01 1.646351e+01 lineto +closepath +gsave +6.869332e-01 6.869332e-01 8.586665e-01 setrgbcolor +fill +grestore +newpath +9.134832e+01 1.741035e+01 moveto +9.076104e+01 1.646351e+01 lineto +9.24134e+01 1.701428e+01 lineto +9.303835e+01 1.797368e+01 lineto +9.134832e+01 1.741035e+01 lineto +closepath +gsave +6.933588e-01 6.933588e-01 8.666985e-01 setrgbcolor +fill +grestore +newpath +9.191064e+01 1.838427e+01 moveto +9.134832e+01 1.741035e+01 lineto +9.303835e+01 1.797368e+01 lineto +9.363674e+01 1.895961e+01 lineto +9.191064e+01 1.838427e+01 lineto +closepath +gsave +6.996232e-01 6.996232e-01 8.74529e-01 setrgbcolor +fill +grestore +newpath +9.244749e+01 1.938433e+01 moveto +9.191064e+01 1.838427e+01 lineto +9.363674e+01 1.895961e+01 lineto +9.420802e+01 1.997115e+01 lineto +9.244749e+01 1.938433e+01 lineto +closepath +gsave +7.057184e-01 7.057184e-01 8.82148e-01 setrgbcolor +fill +grestore +newpath +9.295834e+01 2.040959e+01 moveto +9.244749e+01 1.938433e+01 lineto +9.420802e+01 1.997115e+01 lineto +9.475164e+01 2.100733e+01 lineto +9.295834e+01 2.040959e+01 lineto +closepath +gsave +7.11637e-01 7.11637e-01 8.895462e-01 setrgbcolor +fill +grestore +newpath +9.344273e+01 2.145907e+01 moveto +9.295834e+01 2.040959e+01 lineto +9.475164e+01 2.100733e+01 lineto +9.52671e+01 2.206717e+01 lineto +9.344273e+01 2.145907e+01 lineto +closepath +gsave +7.173722e-01 7.173722e-01 8.967153e-01 setrgbcolor +fill +grestore +newpath +9.390019e+01 2.25318e+01 moveto +9.344273e+01 2.145907e+01 lineto +9.52671e+01 2.206717e+01 lineto +9.57539e+01 2.314968e+01 lineto +9.390019e+01 2.25318e+01 lineto +closepath +gsave +7.229179e-01 7.229179e-01 9.036474e-01 setrgbcolor +fill +grestore +newpath +9.433028e+01 2.362674e+01 moveto +9.390019e+01 2.25318e+01 lineto +9.57539e+01 2.314968e+01 lineto +9.621158e+01 2.425382e+01 lineto +9.433028e+01 2.362674e+01 lineto +closepath +gsave +7.282685e-01 7.282685e-01 9.103356e-01 setrgbcolor +fill +grestore +newpath +9.473261e+01 2.474287e+01 moveto +9.433028e+01 2.362674e+01 lineto +9.621158e+01 2.425382e+01 lineto +9.663971e+01 2.537855e+01 lineto +9.473261e+01 2.474287e+01 lineto +closepath +gsave +7.33419e-01 7.33419e-01 9.167737e-01 setrgbcolor +fill +grestore +newpath +9.510678e+01 2.587912e+01 moveto +9.473261e+01 2.474287e+01 lineto +9.663971e+01 2.537855e+01 lineto +9.703788e+01 2.65228e+01 lineto +9.510678e+01 2.587912e+01 lineto +closepath +gsave +7.383649e-01 7.383649e-01 9.229562e-01 setrgbcolor +fill +grestore +newpath +9.545245e+01 2.703443e+01 moveto +9.510678e+01 2.587912e+01 lineto +9.703788e+01 2.65228e+01 lineto +9.740572e+01 2.768549e+01 lineto +9.545245e+01 2.703443e+01 lineto +closepath +gsave +7.431025e-01 7.431025e-01 9.288781e-01 setrgbcolor +fill +grestore +newpath +7.935659e+01 5.927785e+00 moveto +7.838897e+01 5.534943e+00 lineto +7.911345e+01 5.814933e+00 lineto +8.013343e+01 6.22801e+00 lineto +7.935659e+01 5.927785e+00 lineto +closepath +gsave +5.68503e-01 5.68503e-01 7.106288e-01 setrgbcolor +fill +grestore +newpath +8.031063e+01 6.358568e+00 moveto +7.935659e+01 5.927785e+00 lineto +8.013343e+01 6.22801e+00 lineto +8.113909e+01 6.678744e+00 lineto +8.031063e+01 6.358568e+00 lineto +closepath +gsave +5.757933e-01 5.757933e-01 7.197416e-01 setrgbcolor +fill +grestore +newpath +8.125016e+01 6.826884e+00 moveto +8.031063e+01 6.358568e+00 lineto +8.113909e+01 6.678744e+00 lineto +8.212946e+01 7.166707e+00 lineto +8.125016e+01 6.826884e+00 lineto +closepath +gsave +5.831186e-01 5.831186e-01 7.288982e-01 setrgbcolor +fill +grestore +newpath +8.217431e+01 7.33229e+00 moveto +8.125016e+01 6.826884e+00 lineto +8.212946e+01 7.166707e+00 lineto +8.310362e+01 7.691439e+00 lineto +8.217431e+01 7.33229e+00 lineto +closepath +gsave +5.904653e-01 5.904653e-01 7.380816e-01 setrgbcolor +fill +grestore +newpath +8.30822e+01 7.874306e+00 moveto +8.217431e+01 7.33229e+00 lineto +8.310362e+01 7.691439e+00 lineto +8.406063e+01 8.252441e+00 lineto +8.30822e+01 7.874306e+00 lineto +closepath +gsave +5.978199e-01 5.978199e-01 7.472748e-01 setrgbcolor +fill +grestore +newpath +8.397297e+01 8.45242e+00 moveto +8.30822e+01 7.874306e+00 lineto +8.406063e+01 8.252441e+00 lineto +8.49996e+01 8.849183e+00 lineto +8.397297e+01 8.45242e+00 lineto +closepath +gsave +6.051686e-01 6.051686e-01 7.564608e-01 setrgbcolor +fill +grestore +newpath +8.484577e+01 9.066085e+00 moveto +8.397297e+01 8.45242e+00 lineto +8.49996e+01 8.849183e+00 lineto +8.591963e+01 9.481099e+00 lineto +8.484577e+01 9.066085e+00 lineto +closepath +gsave +6.124982e-01 6.124982e-01 7.656228e-01 setrgbcolor +fill +grestore +newpath +8.569979e+01 9.714719e+00 moveto +8.484577e+01 9.066085e+00 lineto +8.591963e+01 9.481099e+00 lineto +8.681986e+01 1.014759e+01 lineto +8.569979e+01 9.714719e+00 lineto +closepath +gsave +6.197953e-01 6.197953e-01 7.747441e-01 setrgbcolor +fill +grestore +newpath +8.65342e+01 1.039771e+01 moveto +8.569979e+01 9.714719e+00 lineto +8.681986e+01 1.014759e+01 lineto +8.769943e+01 1.084803e+01 lineto +8.65342e+01 1.039771e+01 lineto +closepath +gsave +6.270468e-01 6.270468e-01 7.838085e-01 setrgbcolor +fill +grestore +newpath +8.734823e+01 1.111441e+01 moveto +8.65342e+01 1.039771e+01 lineto +8.769943e+01 1.084803e+01 lineto +8.85575e+01 1.158175e+01 lineto +8.734823e+01 1.111441e+01 lineto +closepath +gsave +6.342401e-01 6.342401e-01 7.928001e-01 setrgbcolor +fill +grestore +newpath +8.81411e+01 1.186413e+01 moveto +8.734823e+01 1.111441e+01 lineto +8.85575e+01 1.158175e+01 lineto +8.939327e+01 1.234806e+01 lineto +8.81411e+01 1.186413e+01 lineto +closepath +gsave +6.413626e-01 6.413626e-01 8.017033e-01 setrgbcolor +fill +grestore +newpath +8.891206e+01 1.264618e+01 moveto +8.81411e+01 1.186413e+01 lineto +8.939327e+01 1.234806e+01 lineto +9.020594e+01 1.314623e+01 lineto +8.891206e+01 1.264618e+01 lineto +closepath +gsave +6.484025e-01 6.484025e-01 8.105031e-01 setrgbcolor +fill +grestore +newpath +8.966037e+01 1.345981e+01 moveto +8.891206e+01 1.264618e+01 lineto +9.020594e+01 1.314623e+01 lineto +9.099475e+01 1.397551e+01 lineto +8.966037e+01 1.345981e+01 lineto +closepath +gsave +6.553479e-01 6.553479e-01 8.191848e-01 setrgbcolor +fill +grestore +newpath +9.038534e+01 1.430425e+01 moveto +8.966037e+01 1.345981e+01 lineto +9.099475e+01 1.397551e+01 lineto +9.175895e+01 1.48351e+01 lineto +9.038534e+01 1.430425e+01 lineto +closepath +gsave +6.621877e-01 6.621877e-01 8.277346e-01 setrgbcolor +fill +grestore +newpath +9.108627e+01 1.517869e+01 moveto +9.038534e+01 1.430425e+01 lineto +9.175895e+01 1.48351e+01 lineto +9.249781e+01 1.572421e+01 lineto +9.108627e+01 1.517869e+01 lineto +closepath +gsave +6.689113e-01 6.689113e-01 8.361391e-01 setrgbcolor +fill +grestore +newpath +9.176251e+01 1.608232e+01 moveto +9.108627e+01 1.517869e+01 lineto +9.249781e+01 1.572421e+01 lineto +9.321064e+01 1.664198e+01 lineto +9.176251e+01 1.608232e+01 lineto +closepath +gsave +6.755084e-01 6.755084e-01 8.443855e-01 setrgbcolor +fill +grestore +newpath +9.24134e+01 1.701428e+01 moveto +9.176251e+01 1.608232e+01 lineto +9.321064e+01 1.664198e+01 lineto +9.389675e+01 1.758755e+01 lineto +9.24134e+01 1.701428e+01 lineto +closepath +gsave +6.819694e-01 6.819694e-01 8.524618e-01 setrgbcolor +fill +grestore +newpath +9.303835e+01 1.797368e+01 moveto +9.24134e+01 1.701428e+01 lineto +9.389675e+01 1.758755e+01 lineto +9.455551e+01 1.856001e+01 lineto +9.303835e+01 1.797368e+01 lineto +closepath +gsave +6.882852e-01 6.882852e-01 8.603566e-01 setrgbcolor +fill +grestore +newpath +9.363674e+01 1.895961e+01 moveto +9.303835e+01 1.797368e+01 lineto +9.455551e+01 1.856001e+01 lineto +9.518628e+01 1.955846e+01 lineto +9.363674e+01 1.895961e+01 lineto +closepath +gsave +6.944473e-01 6.944473e-01 8.680591e-01 setrgbcolor +fill +grestore +newpath +9.420802e+01 1.997115e+01 moveto +9.363674e+01 1.895961e+01 lineto +9.518628e+01 1.955846e+01 lineto +9.578847e+01 2.058195e+01 lineto +9.420802e+01 1.997115e+01 lineto +closepath +gsave +7.004476e-01 7.004476e-01 8.755596e-01 setrgbcolor +fill +grestore +newpath +9.475164e+01 2.100733e+01 moveto +9.420802e+01 1.997115e+01 lineto +9.578847e+01 2.058195e+01 lineto +9.636151e+01 2.16295e+01 lineto +9.475164e+01 2.100733e+01 lineto +closepath +gsave +7.062789e-01 7.062789e-01 8.828486e-01 setrgbcolor +fill +grestore +newpath +9.52671e+01 2.206717e+01 moveto +9.475164e+01 2.100733e+01 lineto +9.636151e+01 2.16295e+01 lineto +9.690486e+01 2.270012e+01 lineto +9.52671e+01 2.206717e+01 lineto +closepath +gsave +7.119342e-01 7.119342e-01 8.899178e-01 setrgbcolor +fill +grestore +newpath +9.57539e+01 2.314968e+01 moveto +9.52671e+01 2.206717e+01 lineto +9.690486e+01 2.270012e+01 lineto +9.7418e+01 2.37928e+01 lineto +9.57539e+01 2.314968e+01 lineto +closepath +gsave +7.174074e-01 7.174074e-01 8.967592e-01 setrgbcolor +fill +grestore +newpath +9.621158e+01 2.425382e+01 moveto +9.57539e+01 2.314968e+01 lineto +9.7418e+01 2.37928e+01 lineto +9.790045e+01 2.490651e+01 lineto +9.621158e+01 2.425382e+01 lineto +closepath +gsave +7.226927e-01 7.226927e-01 9.033659e-01 setrgbcolor +fill +grestore +newpath +9.663971e+01 2.537855e+01 moveto +9.621158e+01 2.425382e+01 lineto +9.790045e+01 2.490651e+01 lineto +9.835174e+01 2.60402e+01 lineto +9.663971e+01 2.537855e+01 lineto +closepath +gsave +7.277851e-01 7.277851e-01 9.097314e-01 setrgbcolor +fill +grestore +newpath +9.703788e+01 2.65228e+01 moveto +9.663971e+01 2.537855e+01 lineto +9.835174e+01 2.60402e+01 lineto +9.877146e+01 2.719278e+01 lineto +9.703788e+01 2.65228e+01 lineto +closepath +gsave +7.326799e-01 7.326799e-01 9.158499e-01 setrgbcolor +fill +grestore +newpath +9.740572e+01 2.768549e+01 moveto +9.703788e+01 2.65228e+01 lineto +9.877146e+01 2.719278e+01 lineto +9.91592e+01 2.836316e+01 lineto +9.740572e+01 2.768549e+01 lineto +closepath +gsave +7.373731e-01 7.373731e-01 9.217164e-01 setrgbcolor +fill +grestore +newpath +8.212946e+01 7.166707e+00 moveto +8.113909e+01 6.678744e+00 lineto +8.186805e+01 7.009513e+00 lineto +8.290316e+01 7.517774e+00 lineto +8.212946e+01 7.166707e+00 lineto +closepath +gsave +5.797092e-01 5.797092e-01 7.246365e-01 setrgbcolor +fill +grestore +newpath +8.310362e+01 7.691439e+00 moveto +8.212946e+01 7.166707e+00 lineto +8.290316e+01 7.517774e+00 lineto +8.392131e+01 8.062471e+00 lineto +8.310362e+01 7.691439e+00 lineto +closepath +gsave +5.868244e-01 5.868244e-01 7.335305e-01 setrgbcolor +fill +grestore +newpath +8.406063e+01 8.252441e+00 moveto +8.310362e+01 7.691439e+00 lineto +8.392131e+01 8.062471e+00 lineto +8.492155e+01 8.643087e+00 lineto +8.406063e+01 8.252441e+00 lineto +closepath +gsave +5.939506e-01 5.939506e-01 7.424382e-01 setrgbcolor +fill +grestore +newpath +8.49996e+01 8.849183e+00 moveto +8.406063e+01 8.252441e+00 lineto +8.492155e+01 8.643087e+00 lineto +8.590293e+01 9.259073e+00 lineto +8.49996e+01 8.849183e+00 lineto +closepath +gsave +6.010747e-01 6.010747e-01 7.513434e-01 setrgbcolor +fill +grestore +newpath +8.591963e+01 9.481099e+00 moveto +8.49996e+01 8.849183e+00 lineto +8.590293e+01 9.259073e+00 lineto +8.686452e+01 9.909846e+00 lineto +8.591963e+01 9.481099e+00 lineto +closepath +gsave +6.081841e-01 6.081841e-01 7.602302e-01 setrgbcolor +fill +grestore +newpath +8.681986e+01 1.014759e+01 moveto +8.591963e+01 9.481099e+00 lineto +8.686452e+01 9.909846e+00 lineto +8.78054e+01 1.059479e+01 lineto +8.681986e+01 1.014759e+01 lineto +closepath +gsave +6.152662e-01 6.152662e-01 7.690827e-01 setrgbcolor +fill +grestore +newpath +8.769943e+01 1.084803e+01 moveto +8.681986e+01 1.014759e+01 lineto +8.78054e+01 1.059479e+01 lineto +8.87247e+01 1.131325e+01 lineto +8.769943e+01 1.084803e+01 lineto +closepath +gsave +6.223084e-01 6.223084e-01 7.778854e-01 setrgbcolor +fill +grestore +newpath +8.85575e+01 1.158175e+01 moveto +8.769943e+01 1.084803e+01 lineto +8.87247e+01 1.131325e+01 lineto +8.962153e+01 1.206456e+01 lineto +8.85575e+01 1.158175e+01 lineto +closepath +gsave +6.292985e-01 6.292985e-01 7.866231e-01 setrgbcolor +fill +grestore +newpath +8.939327e+01 1.234806e+01 moveto +8.85575e+01 1.158175e+01 lineto +8.962153e+01 1.206456e+01 lineto +9.049505e+01 1.2848e+01 lineto +8.939327e+01 1.234806e+01 lineto +closepath +gsave +6.362247e-01 6.362247e-01 7.952809e-01 setrgbcolor +fill +grestore +newpath +9.020594e+01 1.314623e+01 moveto +8.939327e+01 1.234806e+01 lineto +9.049505e+01 1.2848e+01 lineto +9.134443e+01 1.366282e+01 lineto +9.020594e+01 1.314623e+01 lineto +closepath +gsave +6.430754e-01 6.430754e-01 8.038442e-01 setrgbcolor +fill +grestore +newpath +9.099475e+01 1.397551e+01 moveto +9.020594e+01 1.314623e+01 lineto +9.134443e+01 1.366282e+01 lineto +9.216887e+01 1.450827e+01 lineto +9.099475e+01 1.397551e+01 lineto +closepath +gsave +6.498393e-01 6.498393e-01 8.122991e-01 setrgbcolor +fill +grestore +newpath +9.175895e+01 1.48351e+01 moveto +9.099475e+01 1.397551e+01 lineto +9.216887e+01 1.450827e+01 lineto +9.296758e+01 1.538353e+01 lineto +9.175895e+01 1.48351e+01 lineto +closepath +gsave +6.565056e-01 6.565056e-01 8.20632e-01 setrgbcolor +fill +grestore +newpath +9.249781e+01 1.572421e+01 moveto +9.175895e+01 1.48351e+01 lineto +9.296758e+01 1.538353e+01 lineto +9.373981e+01 1.628777e+01 lineto +9.249781e+01 1.572421e+01 lineto +closepath +gsave +6.63064e-01 6.63064e-01 8.2883e-01 setrgbcolor +fill +grestore +newpath +9.321064e+01 1.664198e+01 moveto +9.249781e+01 1.572421e+01 lineto +9.373981e+01 1.628777e+01 lineto +9.448484e+01 1.722015e+01 lineto +9.321064e+01 1.664198e+01 lineto +closepath +gsave +6.695044e-01 6.695044e-01 8.368805e-01 setrgbcolor +fill +grestore +newpath +9.389675e+01 1.758755e+01 moveto +9.321064e+01 1.664198e+01 lineto +9.448484e+01 1.722015e+01 lineto +9.520194e+01 1.817978e+01 lineto +9.389675e+01 1.758755e+01 lineto +closepath +gsave +6.758176e-01 6.758176e-01 8.447719e-01 setrgbcolor +fill +grestore +newpath +9.455551e+01 1.856001e+01 moveto +9.389675e+01 1.758755e+01 lineto +9.520194e+01 1.817978e+01 lineto +9.589045e+01 1.916575e+01 lineto +9.455551e+01 1.856001e+01 lineto +closepath +gsave +6.819944e-01 6.819944e-01 8.52493e-01 setrgbcolor +fill +grestore +newpath +9.518628e+01 1.955846e+01 moveto +9.455551e+01 1.856001e+01 lineto +9.589045e+01 1.916575e+01 lineto +9.654971e+01 2.017713e+01 lineto +9.518628e+01 1.955846e+01 lineto +closepath +gsave +6.880266e-01 6.880266e-01 8.600332e-01 setrgbcolor +fill +grestore +newpath +9.578847e+01 2.058195e+01 moveto +9.518628e+01 1.955846e+01 lineto +9.654971e+01 2.017713e+01 lineto +9.717911e+01 2.121295e+01 lineto +9.578847e+01 2.058195e+01 lineto +closepath +gsave +6.939061e-01 6.939061e-01 8.673826e-01 setrgbcolor +fill +grestore +newpath +9.636151e+01 2.16295e+01 moveto +9.578847e+01 2.058195e+01 lineto +9.717911e+01 2.121295e+01 lineto +9.777803e+01 2.227225e+01 lineto +9.636151e+01 2.16295e+01 lineto +closepath +gsave +6.996257e-01 6.996257e-01 8.745321e-01 setrgbcolor +fill +grestore +newpath +9.690486e+01 2.270012e+01 moveto +9.636151e+01 2.16295e+01 lineto +9.777803e+01 2.227225e+01 lineto +9.834592e+01 2.335401e+01 lineto +9.690486e+01 2.270012e+01 lineto +closepath +gsave +7.051785e-01 7.051785e-01 8.814731e-01 setrgbcolor +fill +grestore +newpath +9.7418e+01 2.37928e+01 moveto +9.690486e+01 2.270012e+01 lineto +9.834592e+01 2.335401e+01 lineto +9.888224e+01 2.445721e+01 lineto +9.7418e+01 2.37928e+01 lineto +closepath +gsave +7.105582e-01 7.105582e-01 8.881977e-01 setrgbcolor +fill +grestore +newpath +9.790045e+01 2.490651e+01 moveto +9.7418e+01 2.37928e+01 lineto +9.888224e+01 2.445721e+01 lineto +9.938647e+01 2.558081e+01 lineto +9.790045e+01 2.490651e+01 lineto +closepath +gsave +7.15759e-01 7.15759e-01 8.946988e-01 setrgbcolor +fill +grestore +newpath +9.835174e+01 2.60402e+01 moveto +9.790045e+01 2.490651e+01 lineto +9.938647e+01 2.558081e+01 lineto +9.985815e+01 2.672374e+01 lineto +9.835174e+01 2.60402e+01 lineto +closepath +gsave +7.207757e-01 7.207757e-01 9.009696e-01 setrgbcolor +fill +grestore +newpath +9.877146e+01 2.719278e+01 moveto +9.835174e+01 2.60402e+01 lineto +9.985815e+01 2.672374e+01 lineto +1.002968e+02 2.788492e+01 lineto +9.877146e+01 2.719278e+01 lineto +closepath +gsave +7.256035e-01 7.256035e-01 9.070044e-01 setrgbcolor +fill +grestore +newpath +9.91592e+01 2.836316e+01 moveto +9.877146e+01 2.719278e+01 lineto +1.002968e+02 2.788492e+01 lineto +1.007021e+02 2.906325e+01 lineto +9.91592e+01 2.836316e+01 lineto +closepath +gsave +7.302381e-01 7.302381e-01 9.127976e-01 setrgbcolor +fill +grestore +newpath +8.492155e+01 8.643087e+00 moveto +8.392131e+01 8.062471e+00 lineto +8.462235e+01 8.443099e+00 lineto +8.565965e+01 9.043836e+00 lineto +8.492155e+01 8.643087e+00 lineto +closepath +gsave +5.893799e-01 5.893799e-01 7.367249e-01 setrgbcolor +fill +grestore +newpath +8.590293e+01 9.259073e+00 moveto +8.492155e+01 8.643087e+00 lineto +8.565965e+01 9.043836e+00 lineto +8.667739e+01 9.679564e+00 lineto +8.590293e+01 9.259073e+00 lineto +closepath +gsave +5.962376e-01 5.962376e-01 7.452969e-01 setrgbcolor +fill +grestore +newpath +8.686452e+01 9.909846e+00 moveto +8.590293e+01 9.259073e+00 lineto +8.667739e+01 9.679564e+00 lineto +8.76746e+01 1.034968e+01 lineto +8.686452e+01 9.909846e+00 lineto +closepath +gsave +6.030855e-01 6.030855e-01 7.538568e-01 setrgbcolor +fill +grestore +newpath +8.78054e+01 1.059479e+01 moveto +8.686452e+01 9.909846e+00 lineto +8.76746e+01 1.034968e+01 lineto +8.865035e+01 1.105355e+01 lineto +8.78054e+01 1.059479e+01 lineto +closepath +gsave +6.099117e-01 6.099117e-01 7.623896e-01 setrgbcolor +fill +grestore +newpath +8.87247e+01 1.131325e+01 moveto +8.78054e+01 1.059479e+01 lineto +8.865035e+01 1.105355e+01 lineto +8.96037e+01 1.179051e+01 lineto +8.87247e+01 1.131325e+01 lineto +closepath +gsave +6.167045e-01 6.167045e-01 7.708806e-01 setrgbcolor +fill +grestore +newpath +8.962153e+01 1.206456e+01 moveto +8.87247e+01 1.131325e+01 lineto +8.96037e+01 1.179051e+01 lineto +9.053376e+01 1.255986e+01 lineto +8.962153e+01 1.206456e+01 lineto +closepath +gsave +6.234523e-01 6.234523e-01 7.793154e-01 setrgbcolor +fill +grestore +newpath +9.049505e+01 1.2848e+01 moveto +8.962153e+01 1.206456e+01 lineto +9.053376e+01 1.255986e+01 lineto +9.143964e+01 1.336087e+01 lineto +9.049505e+01 1.2848e+01 lineto +closepath +gsave +6.301438e-01 6.301438e-01 7.876798e-01 setrgbcolor +fill +grestore +newpath +9.134443e+01 1.366282e+01 moveto +9.049505e+01 1.2848e+01 lineto +9.143964e+01 1.336087e+01 lineto +9.232049e+01 1.419278e+01 lineto +9.134443e+01 1.366282e+01 lineto +closepath +gsave +6.36768e-01 6.36768e-01 7.9596e-01 setrgbcolor +fill +grestore +newpath +9.216887e+01 1.450827e+01 moveto +9.134443e+01 1.366282e+01 lineto +9.232049e+01 1.419278e+01 lineto +9.317548e+01 1.505481e+01 lineto +9.216887e+01 1.450827e+01 lineto +closepath +gsave +6.433141e-01 6.433141e-01 8.041427e-01 setrgbcolor +fill +grestore +newpath +9.296758e+01 1.538353e+01 moveto +9.216887e+01 1.450827e+01 lineto +9.317548e+01 1.505481e+01 lineto +9.400378e+01 1.594613e+01 lineto +9.296758e+01 1.538353e+01 lineto +closepath +gsave +6.497718e-01 6.497718e-01 8.122148e-01 setrgbcolor +fill +grestore +newpath +9.373981e+01 1.628777e+01 moveto +9.296758e+01 1.538353e+01 lineto +9.400378e+01 1.594613e+01 lineto +9.480463e+01 1.686592e+01 lineto +9.373981e+01 1.628777e+01 lineto +closepath +gsave +6.56131e-01 6.56131e-01 8.201638e-01 setrgbcolor +fill +grestore +newpath +9.448484e+01 1.722015e+01 moveto +9.373981e+01 1.628777e+01 lineto +9.480463e+01 1.686592e+01 lineto +9.557725e+01 1.781328e+01 lineto +9.448484e+01 1.722015e+01 lineto +closepath +gsave +6.623822e-01 6.623822e-01 8.279777e-01 setrgbcolor +fill +grestore +newpath +9.520194e+01 1.817978e+01 moveto +9.448484e+01 1.722015e+01 lineto +9.557725e+01 1.781328e+01 lineto +9.632093e+01 1.878734e+01 lineto +9.520194e+01 1.817978e+01 lineto +closepath +gsave +6.685161e-01 6.685161e-01 8.356451e-01 setrgbcolor +fill +grestore +newpath +9.589045e+01 1.916575e+01 moveto +9.520194e+01 1.817978e+01 lineto +9.632093e+01 1.878734e+01 lineto +9.703495e+01 1.978716e+01 lineto +9.589045e+01 1.916575e+01 lineto +closepath +gsave +6.745241e-01 6.745241e-01 8.431551e-01 setrgbcolor +fill +grestore +newpath +9.654971e+01 2.017713e+01 moveto +9.589045e+01 1.916575e+01 lineto +9.703495e+01 1.978716e+01 lineto +9.771863e+01 2.081179e+01 lineto +9.654971e+01 2.017713e+01 lineto +closepath +gsave +6.803978e-01 6.803978e-01 8.504973e-01 setrgbcolor +fill +grestore +newpath +9.717911e+01 2.121295e+01 moveto +9.654971e+01 2.017713e+01 lineto +9.771863e+01 2.081179e+01 lineto +9.837134e+01 2.186028e+01 lineto +9.717911e+01 2.121295e+01 lineto +closepath +gsave +6.861296e-01 6.861296e-01 8.57662e-01 setrgbcolor +fill +grestore +newpath +9.777803e+01 2.227225e+01 moveto +9.717911e+01 2.121295e+01 lineto +9.837134e+01 2.186028e+01 lineto +9.899246e+01 2.293162e+01 lineto +9.777803e+01 2.227225e+01 lineto +closepath +gsave +6.917121e-01 6.917121e-01 8.646401e-01 setrgbcolor +fill +grestore +newpath +9.834592e+01 2.335401e+01 moveto +9.777803e+01 2.227225e+01 lineto +9.899246e+01 2.293162e+01 lineto +9.958139e+01 2.402481e+01 lineto +9.834592e+01 2.335401e+01 lineto +closepath +gsave +6.971384e-01 6.971384e-01 8.71423e-01 setrgbcolor +fill +grestore +newpath +9.888224e+01 2.445721e+01 moveto +9.834592e+01 2.335401e+01 lineto +9.958139e+01 2.402481e+01 lineto +1.001376e+02 2.51388e+01 lineto +9.888224e+01 2.445721e+01 lineto +closepath +gsave +7.024022e-01 7.024022e-01 8.780027e-01 setrgbcolor +fill +grestore +newpath +9.938647e+01 2.558081e+01 moveto +9.888224e+01 2.445721e+01 lineto +1.001376e+02 2.51388e+01 lineto +1.006605e+02 2.627254e+01 lineto +9.938647e+01 2.558081e+01 lineto +closepath +gsave +7.074977e-01 7.074977e-01 8.843721e-01 setrgbcolor +fill +grestore +newpath +9.985815e+01 2.672374e+01 moveto +9.938647e+01 2.558081e+01 lineto +1.006605e+02 2.627254e+01 lineto +1.011497e+02 2.742496e+01 lineto +9.985815e+01 2.672374e+01 lineto +closepath +gsave +7.124194e-01 7.124194e-01 8.905243e-01 setrgbcolor +fill +grestore +newpath +1.002968e+02 2.788492e+01 moveto +9.985815e+01 2.672374e+01 lineto +1.011497e+02 2.742496e+01 lineto +1.016046e+02 2.859496e+01 lineto +1.002968e+02 2.788492e+01 lineto +closepath +gsave +7.171625e-01 7.171625e-01 8.964532e-01 setrgbcolor +fill +grestore +newpath +1.007021e+02 2.906325e+01 moveto +1.002968e+02 2.788492e+01 lineto +1.016046e+02 2.859496e+01 lineto +1.020249e+02 2.978145e+01 lineto +1.007021e+02 2.906325e+01 lineto +closepath +gsave +7.217225e-01 7.217225e-01 9.021532e-01 setrgbcolor +fill +grestore +newpath +8.76746e+01 1.034968e+01 moveto +8.667739e+01 9.679564e+00 lineto +8.731819e+01 1.010806e+01 lineto +8.834489e+01 1.079789e+01 lineto +8.76746e+01 1.034968e+01 lineto +closepath +gsave +5.972454e-01 5.972454e-01 7.465568e-01 setrgbcolor +fill +grestore +newpath +8.865035e+01 1.105355e+01 moveto +8.76746e+01 1.034968e+01 lineto +8.834489e+01 1.079789e+01 lineto +8.934948e+01 1.152105e+01 lineto +8.865035e+01 1.105355e+01 lineto +closepath +gsave +6.037766e-01 6.037766e-01 7.547208e-01 setrgbcolor +fill +grestore +newpath +8.96037e+01 1.179051e+01 moveto +8.865035e+01 1.105355e+01 lineto +8.934948e+01 1.152105e+01 lineto +9.033101e+01 1.227685e+01 lineto +8.96037e+01 1.179051e+01 lineto +closepath +gsave +6.102814e-01 6.102814e-01 7.628517e-01 setrgbcolor +fill +grestore +newpath +9.053376e+01 1.255986e+01 moveto +8.96037e+01 1.179051e+01 lineto +9.033101e+01 1.227685e+01 lineto +9.128857e+01 1.306459e+01 lineto +9.053376e+01 1.255986e+01 lineto +closepath +gsave +6.167488e-01 6.167488e-01 7.70936e-01 setrgbcolor +fill +grestore +newpath +9.143964e+01 1.336087e+01 moveto +9.053376e+01 1.255986e+01 lineto +9.128857e+01 1.306459e+01 lineto +9.222123e+01 1.38835e+01 lineto +9.143964e+01 1.336087e+01 lineto +closepath +gsave +6.231682e-01 6.231682e-01 7.789603e-01 setrgbcolor +fill +grestore +newpath +9.232049e+01 1.419278e+01 moveto +9.143964e+01 1.336087e+01 lineto +9.222123e+01 1.38835e+01 lineto +9.312812e+01 1.473283e+01 lineto +9.232049e+01 1.419278e+01 lineto +closepath +gsave +6.295293e-01 6.295293e-01 7.869116e-01 setrgbcolor +fill +grestore +newpath +9.317548e+01 1.505481e+01 moveto +9.232049e+01 1.419278e+01 lineto +9.312812e+01 1.473283e+01 lineto +9.400837e+01 1.561175e+01 lineto +9.317548e+01 1.505481e+01 lineto +closepath +gsave +6.358219e-01 6.358219e-01 7.947773e-01 setrgbcolor +fill +grestore +newpath +9.400378e+01 1.594613e+01 moveto +9.317548e+01 1.505481e+01 lineto +9.400837e+01 1.561175e+01 lineto +9.486116e+01 1.651945e+01 lineto +9.400378e+01 1.594613e+01 lineto +closepath +gsave +6.42036e-01 6.42036e-01 8.02545e-01 setrgbcolor +fill +grestore +newpath +9.480463e+01 1.686592e+01 moveto +9.400378e+01 1.594613e+01 lineto +9.486116e+01 1.651945e+01 lineto +9.568568e+01 1.745507e+01 lineto +9.480463e+01 1.686592e+01 lineto +closepath +gsave +6.481622e-01 6.481622e-01 8.102028e-01 setrgbcolor +fill +grestore +newpath +9.557725e+01 1.781328e+01 moveto +9.480463e+01 1.686592e+01 lineto +9.568568e+01 1.745507e+01 lineto +9.648115e+01 1.841771e+01 lineto +9.557725e+01 1.781328e+01 lineto +closepath +gsave +6.541913e-01 6.541913e-01 8.177391e-01 setrgbcolor +fill +grestore +newpath +9.632093e+01 1.878734e+01 moveto +9.557725e+01 1.781328e+01 lineto +9.648115e+01 1.841771e+01 lineto +9.724681e+01 1.940646e+01 lineto +9.632093e+01 1.878734e+01 lineto +closepath +gsave +6.601143e-01 6.601143e-01 8.251429e-01 setrgbcolor +fill +grestore +newpath +9.703495e+01 1.978716e+01 moveto +9.632093e+01 1.878734e+01 lineto +9.724681e+01 1.940646e+01 lineto +9.798193e+01 2.042039e+01 lineto +9.703495e+01 1.978716e+01 lineto +closepath +gsave +6.65923e-01 6.65923e-01 8.324037e-01 setrgbcolor +fill +grestore +newpath +9.771863e+01 2.081179e+01 moveto +9.703495e+01 1.978716e+01 lineto +9.798193e+01 2.042039e+01 lineto +9.868583e+01 2.145855e+01 lineto +9.771863e+01 2.081179e+01 lineto +closepath +gsave +6.716091e-01 6.716091e-01 8.395114e-01 setrgbcolor +fill +grestore +newpath +9.837134e+01 2.186028e+01 moveto +9.771863e+01 2.081179e+01 lineto +9.868583e+01 2.145855e+01 lineto +9.935784e+01 2.251993e+01 lineto +9.837134e+01 2.186028e+01 lineto +closepath +gsave +6.771652e-01 6.771652e-01 8.464565e-01 setrgbcolor +fill +grestore +newpath +9.899246e+01 2.293162e+01 moveto +9.837134e+01 2.186028e+01 lineto +9.935784e+01 2.251993e+01 lineto +9.999731e+01 2.360355e+01 lineto +9.899246e+01 2.293162e+01 lineto +closepath +gsave +6.825839e-01 6.825839e-01 8.532299e-01 setrgbcolor +fill +grestore +newpath +9.958139e+01 2.402481e+01 moveto +9.899246e+01 2.293162e+01 lineto +9.999731e+01 2.360355e+01 lineto +1.006037e+02 2.470838e+01 lineto +9.958139e+01 2.402481e+01 lineto +closepath +gsave +6.878585e-01 6.878585e-01 8.598232e-01 setrgbcolor +fill +grestore +newpath +1.001376e+02 2.51388e+01 moveto +9.958139e+01 2.402481e+01 lineto +1.006037e+02 2.470838e+01 lineto +1.011763e+02 2.583336e+01 lineto +1.001376e+02 2.51388e+01 lineto +closepath +gsave +6.929827e-01 6.929827e-01 8.662284e-01 setrgbcolor +fill +grestore +newpath +1.006605e+02 2.627254e+01 moveto +1.001376e+02 2.51388e+01 lineto +1.011763e+02 2.583336e+01 lineto +1.017147e+02 2.697744e+01 lineto +1.006605e+02 2.627254e+01 lineto +closepath +gsave +6.979506e-01 6.979506e-01 8.724382e-01 setrgbcolor +fill +grestore +newpath +1.011497e+02 2.742496e+01 moveto +1.006605e+02 2.627254e+01 lineto +1.017147e+02 2.697744e+01 lineto +1.022183e+02 2.813953e+01 lineto +1.011497e+02 2.742496e+01 lineto +closepath +gsave +7.027566e-01 7.027566e-01 8.784457e-01 setrgbcolor +fill +grestore +newpath +1.016046e+02 2.859496e+01 moveto +1.011497e+02 2.742496e+01 lineto +1.022183e+02 2.813953e+01 lineto +1.026867e+02 2.931853e+01 lineto +1.016046e+02 2.859496e+01 lineto +closepath +gsave +7.073957e-01 7.073957e-01 8.842446e-01 setrgbcolor +fill +grestore +newpath +1.020249e+02 2.978145e+01 moveto +1.016046e+02 2.859496e+01 lineto +1.026867e+02 2.931853e+01 lineto +1.031193e+02 3.051332e+01 lineto +1.020249e+02 2.978145e+01 lineto +closepath +gsave +7.118633e-01 7.118633e-01 8.898291e-01 setrgbcolor +fill +grestore +newpath +9.222123e+01 1.38835e+01 moveto +9.128857e+01 1.306459e+01 lineto +9.188129e+01 1.357563e+01 lineto +9.283498e+01 1.441268e+01 lineto +9.222123e+01 1.38835e+01 lineto +closepath +gsave +6.153554e-01 6.153554e-01 7.691942e-01 setrgbcolor +fill +grestore +newpath +9.312812e+01 1.473283e+01 moveto +9.222123e+01 1.38835e+01 lineto +9.283498e+01 1.441268e+01 lineto +9.376232e+01 1.527964e+01 lineto +9.312812e+01 1.473283e+01 lineto +closepath +gsave +6.214179e-01 6.214179e-01 7.767723e-01 setrgbcolor +fill +grestore +newpath +9.400837e+01 1.561175e+01 moveto +9.312812e+01 1.473283e+01 lineto +9.376232e+01 1.527964e+01 lineto +9.466242e+01 1.617568e+01 lineto +9.400837e+01 1.561175e+01 lineto +closepath +gsave +6.27422e-01 6.27422e-01 7.842775e-01 setrgbcolor +fill +grestore +newpath +9.486116e+01 1.651945e+01 moveto +9.400837e+01 1.561175e+01 lineto +9.466242e+01 1.617568e+01 lineto +9.553444e+01 1.709995e+01 lineto +9.486116e+01 1.651945e+01 lineto +closepath +gsave +6.333585e-01 6.333585e-01 7.916981e-01 setrgbcolor +fill +grestore +newpath +9.568568e+01 1.745507e+01 moveto +9.486116e+01 1.651945e+01 lineto +9.553444e+01 1.709995e+01 lineto +9.637755e+01 1.80516e+01 lineto +9.568568e+01 1.745507e+01 lineto +closepath +gsave +6.392183e-01 6.392183e-01 7.990229e-01 setrgbcolor +fill +grestore +newpath +9.648115e+01 1.841771e+01 moveto +9.568568e+01 1.745507e+01 lineto +9.637755e+01 1.80516e+01 lineto +9.719095e+01 1.90297e+01 lineto +9.648115e+01 1.841771e+01 lineto +closepath +gsave +6.449927e-01 6.449927e-01 8.062409e-01 setrgbcolor +fill +grestore +newpath +9.724681e+01 1.940646e+01 moveto +9.648115e+01 1.841771e+01 lineto +9.719095e+01 1.90297e+01 lineto +9.797387e+01 2.003334e+01 lineto +9.724681e+01 1.940646e+01 lineto +closepath +gsave +6.506733e-01 6.506733e-01 8.133416e-01 setrgbcolor +fill +grestore +newpath +9.798193e+01 2.042039e+01 moveto +9.724681e+01 1.940646e+01 lineto +9.797387e+01 2.003334e+01 lineto +9.872558e+01 2.106156e+01 lineto +9.798193e+01 2.042039e+01 lineto +closepath +gsave +6.562519e-01 6.562519e-01 8.203149e-01 setrgbcolor +fill +grestore +newpath +9.868583e+01 2.145855e+01 moveto +9.798193e+01 2.042039e+01 lineto +9.872558e+01 2.106156e+01 lineto +9.944535e+01 2.21134e+01 lineto +9.868583e+01 2.145855e+01 lineto +closepath +gsave +6.617209e-01 6.617209e-01 8.271511e-01 setrgbcolor +fill +grestore +newpath +9.935784e+01 2.251993e+01 moveto +9.868583e+01 2.145855e+01 lineto +9.944535e+01 2.21134e+01 lineto +1.001325e+02 2.318785e+01 lineto +9.935784e+01 2.251993e+01 lineto +closepath +gsave +6.670727e-01 6.670727e-01 8.338408e-01 setrgbcolor +fill +grestore +newpath +9.999731e+01 2.360355e+01 moveto +9.935784e+01 2.251993e+01 lineto +1.001325e+02 2.318785e+01 lineto +1.007864e+02 2.42839e+01 lineto +9.999731e+01 2.360355e+01 lineto +closepath +gsave +6.723003e-01 6.723003e-01 8.403754e-01 setrgbcolor +fill +grestore +newpath +1.006037e+02 2.470838e+01 moveto +9.999731e+01 2.360355e+01 lineto +1.007864e+02 2.42839e+01 lineto +1.014064e+02 2.540051e+01 lineto +1.006037e+02 2.470838e+01 lineto +closepath +gsave +6.773971e-01 6.773971e-01 8.467464e-01 setrgbcolor +fill +grestore +newpath +1.011763e+02 2.583336e+01 moveto +1.006037e+02 2.470838e+01 lineto +1.014064e+02 2.540051e+01 lineto +1.019919e+02 2.653663e+01 lineto +1.011763e+02 2.583336e+01 lineto +closepath +gsave +6.823567e-01 6.823567e-01 8.529459e-01 setrgbcolor +fill +grestore +newpath +1.017147e+02 2.697744e+01 moveto +1.011763e+02 2.583336e+01 lineto +1.019919e+02 2.653663e+01 lineto +1.025425e+02 2.769117e+01 lineto +1.017147e+02 2.697744e+01 lineto +closepath +gsave +6.871734e-01 6.871734e-01 8.589667e-01 setrgbcolor +fill +grestore +newpath +1.022183e+02 2.813953e+01 moveto +1.017147e+02 2.697744e+01 lineto +1.025425e+02 2.769117e+01 lineto +1.030574e+02 2.886305e+01 lineto +1.022183e+02 2.813953e+01 lineto +closepath +gsave +6.918414e-01 6.918414e-01 8.648017e-01 setrgbcolor +fill +grestore +newpath +1.026867e+02 2.931853e+01 moveto +1.022183e+02 2.813953e+01 lineto +1.030574e+02 2.886305e+01 lineto +1.035364e+02 3.005116e+01 lineto +1.026867e+02 2.931853e+01 lineto +closepath +gsave +6.963557e-01 6.963557e-01 8.704446e-01 setrgbcolor +fill +grestore +newpath +1.031193e+02 3.051332e+01 moveto +1.026867e+02 2.931853e+01 lineto +1.035364e+02 3.005116e+01 lineto +1.039788e+02 3.125436e+01 lineto +1.031193e+02 3.051332e+01 lineto +closepath +gsave +7.007115e-01 7.007115e-01 8.758894e-01 setrgbcolor +fill +grestore +newpath +9.797387e+01 2.003334e+01 moveto +9.719095e+01 1.90297e+01 lineto +9.770229e+01 1.964549e+01 lineto +9.849765e+01 2.066411e+01 lineto +9.797387e+01 2.003334e+01 lineto +closepath +gsave +6.402668e-01 6.402668e-01 8.003334e-01 setrgbcolor +fill +grestore +newpath +9.872558e+01 2.106156e+01 moveto +9.797387e+01 2.003334e+01 lineto +9.849765e+01 2.066411e+01 lineto +9.926129e+01 2.170671e+01 lineto +9.872558e+01 2.106156e+01 lineto +closepath +gsave +6.45585e-01 6.45585e-01 8.069813e-01 setrgbcolor +fill +grestore +newpath +9.944535e+01 2.21134e+01 moveto +9.872558e+01 2.106156e+01 lineto +9.926129e+01 2.170671e+01 lineto +9.999249e+01 2.277231e+01 lineto +9.944535e+01 2.21134e+01 lineto +closepath +gsave +6.508072e-01 6.508072e-01 8.13509e-01 setrgbcolor +fill +grestore +newpath +1.001325e+02 2.318785e+01 moveto +9.944535e+01 2.21134e+01 lineto +9.999249e+01 2.277231e+01 lineto +1.006906e+02 2.385991e+01 lineto +1.001325e+02 2.318785e+01 lineto +closepath +gsave +6.559261e-01 6.559261e-01 8.199076e-01 setrgbcolor +fill +grestore +newpath +1.007864e+02 2.42839e+01 moveto +1.001325e+02 2.318785e+01 lineto +1.006906e+02 2.385991e+01 lineto +1.013548e+02 2.496847e+01 lineto +1.007864e+02 2.42839e+01 lineto +closepath +gsave +6.609349e-01 6.609349e-01 8.261687e-01 setrgbcolor +fill +grestore +newpath +1.014064e+02 2.540051e+01 moveto +1.007864e+02 2.42839e+01 lineto +1.013548e+02 2.496847e+01 lineto +1.019847e+02 2.609694e+01 lineto +1.014064e+02 2.540051e+01 lineto +closepath +gsave +6.658272e-01 6.658272e-01 8.32284e-01 setrgbcolor +fill +grestore +newpath +1.019919e+02 2.653663e+01 moveto +1.014064e+02 2.540051e+01 lineto +1.019847e+02 2.609694e+01 lineto +1.025795e+02 2.724426e+01 lineto +1.019919e+02 2.653663e+01 lineto +closepath +gsave +6.705968e-01 6.705968e-01 8.38246e-01 setrgbcolor +fill +grestore +newpath +1.025425e+02 2.769117e+01 moveto +1.019919e+02 2.653663e+01 lineto +1.025795e+02 2.724426e+01 lineto +1.031388e+02 2.840934e+01 lineto +1.025425e+02 2.769117e+01 lineto +closepath +gsave +6.752377e-01 6.752377e-01 8.440471e-01 setrgbcolor +fill +grestore +newpath +1.030574e+02 2.886305e+01 moveto +1.025425e+02 2.769117e+01 lineto +1.031388e+02 2.840934e+01 lineto +1.03662e+02 2.959107e+01 lineto +1.030574e+02 2.886305e+01 lineto +closepath +gsave +6.797445e-01 6.797445e-01 8.496807e-01 setrgbcolor +fill +grestore +newpath +1.035364e+02 3.005116e+01 moveto +1.030574e+02 2.886305e+01 lineto +1.03662e+02 2.959107e+01 lineto +1.041485e+02 3.078833e+01 lineto +1.035364e+02 3.005116e+01 lineto +closepath +gsave +6.84112e-01 6.84112e-01 8.551401e-01 setrgbcolor +fill +grestore +newpath +1.039788e+02 3.125436e+01 moveto +1.035364e+02 3.005116e+01 lineto +1.041485e+02 3.078833e+01 lineto +1.04598e+02 3.2e+01 lineto +1.039788e+02 3.125436e+01 lineto +closepath +gsave +6.883354e-01 6.883354e-01 8.604192e-01 setrgbcolor +fill +grestore +newpath +1.031388e+02 2.840934e+01 moveto +1.025795e+02 2.724426e+01 lineto +1.029355e+02 2.795189e+01 lineto +1.035e+02 2.91275e+01 lineto +1.031388e+02 2.840934e+01 lineto +closepath +gsave +6.622327e-01 6.622327e-01 8.277909e-01 setrgbcolor +fill +grestore +newpath +1.03662e+02 2.959107e+01 moveto +1.031388e+02 2.840934e+01 lineto +1.035e+02 2.91275e+01 lineto +1.040281e+02 3.031908e+01 lineto +1.03662e+02 2.959107e+01 lineto +closepath +gsave +6.665546e-01 6.665546e-01 8.331932e-01 setrgbcolor +fill +grestore +newpath +1.041485e+02 3.078833e+01 moveto +1.03662e+02 2.959107e+01 lineto +1.040281e+02 3.031908e+01 lineto +1.045193e+02 3.15255e+01 lineto +1.041485e+02 3.078833e+01 lineto +closepath +gsave +6.707526e-01 6.707526e-01 8.384408e-01 setrgbcolor +fill +grestore +newpath +1.04598e+02 3.2e+01 moveto +1.041485e+02 3.078833e+01 lineto +1.045193e+02 3.15255e+01 lineto +1.04973e+02 3.274564e+01 lineto +1.04598e+02 3.2e+01 lineto +closepath +gsave +6.74822e-01 6.74822e-01 8.435275e-01 setrgbcolor +fill +grestore +newpath +6.276e+01 1.10238e+02 moveto +6.364349e+01 1.102446e+02 lineto +6.453233e+01 1.102645e+02 lineto +6.542301e+01 1.102975e+02 lineto +6.631203e+01 1.103435e+02 lineto +6.719587e+01 1.104024e+02 lineto +6.807104e+01 1.104739e+02 lineto +6.89341e+01 1.105578e+02 lineto +6.978162e+01 1.106536e+02 lineto +7.061028e+01 1.10761e+02 lineto +7.14168e+01 1.108797e+02 lineto +7.219799e+01 1.110091e+02 lineto +7.295077e+01 1.111486e+02 lineto +7.367218e+01 1.112979e+02 lineto +7.435936e+01 1.114562e+02 lineto +7.50096e+01 1.11623e+02 lineto +7.562034e+01 1.117976e+02 lineto +7.618917e+01 1.119793e+02 lineto +7.671383e+01 1.121674e+02 lineto +7.719227e+01 1.123611e+02 lineto +7.762259e+01 1.125597e+02 lineto +7.80031e+01 1.127624e+02 lineto +7.833229e+01 1.129684e+02 lineto +7.860886e+01 1.131769e+02 lineto +7.883172e+01 1.13387e+02 lineto +7.9e+01 1.13598e+02 lineto +7.911302e+01 1.13809e+02 lineto +7.917035e+01 1.140191e+02 lineto +7.917176e+01 1.142276e+02 lineto +7.911723e+01 1.144336e+02 lineto +7.900699e+01 1.146363e+02 lineto +7.884147e+01 1.148349e+02 lineto +7.862132e+01 1.150286e+02 lineto +7.834742e+01 1.152167e+02 lineto +7.802084e+01 1.153984e+02 lineto +7.764288e+01 1.155729e+02 lineto +7.721502e+01 1.157397e+02 lineto +7.673895e+01 1.158981e+02 lineto +7.621655e+01 1.160473e+02 lineto +7.564989e+01 1.161869e+02 lineto +7.504119e+01 1.163163e+02 lineto +7.439287e+01 1.164349e+02 lineto +7.370748e+01 1.165424e+02 lineto +7.298772e+01 1.166382e+02 lineto +7.223644e+01 1.16722e+02 lineto +7.14566e+01 1.167935e+02 lineto +7.065128e+01 1.168524e+02 lineto +6.982366e+01 1.168985e+02 lineto +6.8977e+01 1.169315e+02 lineto +6.811465e+01 1.169513e+02 lineto +6.724e+01 1.16958e+02 lineto +6.635651e+01 1.169513e+02 lineto +6.546767e+01 1.169315e+02 lineto +6.457699e+01 1.168985e+02 lineto +6.368797e+01 1.168524e+02 lineto +6.280413e+01 1.167935e+02 lineto +6.192896e+01 1.16722e+02 lineto +6.10659e+01 1.166382e+02 lineto +6.021838e+01 1.165424e+02 lineto +5.938972e+01 1.164349e+02 lineto +5.85832e+01 1.163163e+02 lineto +5.780201e+01 1.161869e+02 lineto +5.704923e+01 1.160473e+02 lineto +5.632782e+01 1.158981e+02 lineto +5.564064e+01 1.157397e+02 lineto +5.49904e+01 1.155729e+02 lineto +5.437966e+01 1.153984e+02 lineto +5.381083e+01 1.152167e+02 lineto +5.328617e+01 1.150286e+02 lineto +5.280773e+01 1.148349e+02 lineto +5.237741e+01 1.146363e+02 lineto +5.19969e+01 1.144336e+02 lineto +5.166771e+01 1.142276e+02 lineto +5.139114e+01 1.140191e+02 lineto +5.116828e+01 1.13809e+02 lineto +5.1e+01 1.13598e+02 lineto +5.088698e+01 1.13387e+02 lineto +5.082965e+01 1.131769e+02 lineto +5.082824e+01 1.129684e+02 lineto +5.088277e+01 1.127624e+02 lineto +5.099301e+01 1.125597e+02 lineto +5.115853e+01 1.123611e+02 lineto +5.137868e+01 1.121674e+02 lineto +5.165258e+01 1.119793e+02 lineto +5.197916e+01 1.117976e+02 lineto +5.235712e+01 1.11623e+02 lineto +5.278498e+01 1.114562e+02 lineto +5.326105e+01 1.112979e+02 lineto +5.378345e+01 1.111486e+02 lineto +5.435011e+01 1.110091e+02 lineto +5.495881e+01 1.108797e+02 lineto +5.560713e+01 1.10761e+02 lineto +5.629252e+01 1.106536e+02 lineto +5.701228e+01 1.105578e+02 lineto +5.776356e+01 1.104739e+02 lineto +5.85434e+01 1.104024e+02 lineto +5.934872e+01 1.103435e+02 lineto +6.017634e+01 1.102975e+02 lineto +6.1023e+01 1.102645e+02 lineto +6.188535e+01 1.102446e+02 lineto +6.276e+01 1.10238e+02 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +fill +grestore +gsave +6.0e-01 6.0e-01 6.0e-01 setrgbcolor +stroke +grestore +newpath +5.866432e+01 2.249648e+01 moveto +6.11632e+01 2.251524e+01 lineto +6.367722e+01 2.257142e+01 lineto +6.619647e+01 2.266482e+01 lineto +6.871099e+01 2.279506e+01 lineto +7.121086e+01 2.296162e+01 lineto +7.368623e+01 2.316386e+01 lineto +7.612731e+01 2.340096e+01 lineto +7.852448e+01 2.367201e+01 lineto +8.086827e+01 2.397592e+01 lineto +8.314944e+01 2.431149e+01 lineto +8.535898e+01 2.467742e+01 lineto +8.748817e+01 2.507224e+01 lineto +8.952862e+01 2.54944e+01 lineto +9.147226e+01 2.594223e+01 lineto +9.331142e+01 2.641397e+01 lineto +9.503885e+01 2.690776e+01 lineto +9.664774e+01 2.742165e+01 lineto +9.813172e+01 2.79536e+01 lineto +9.948495e+01 2.850152e+01 lineto +1.007021e+02 2.906325e+01 lineto +1.017783e+02 2.963657e+01 lineto +1.027094e+02 3.021922e+01 lineto +1.034917e+02 3.080889e+01 lineto +1.04122e+02 3.140327e+01 lineto +1.04598e+02 3.2e+01 lineto +1.049177e+02 3.259673e+01 lineto +1.050798e+02 3.319111e+01 lineto +1.050838e+02 3.378078e+01 lineto +1.049296e+02 3.436343e+01 lineto +1.046177e+02 3.493675e+01 lineto +1.041496e+02 3.549848e+01 lineto +1.035269e+02 3.60464e+01 lineto +1.027522e+02 3.657835e+01 lineto +1.018285e+02 3.709224e+01 lineto +1.007595e+02 3.758603e+01 lineto +9.954928e+01 3.805777e+01 lineto +9.820275e+01 3.85056e+01 lineto +9.672519e+01 3.892776e+01 lineto +9.512243e+01 3.932258e+01 lineto +9.340078e+01 3.968851e+01 lineto +9.156705e+01 4.002408e+01 lineto +8.962847e+01 4.032799e+01 lineto +8.759269e+01 4.059904e+01 lineto +8.546775e+01 4.083614e+01 lineto +8.326204e+01 4.103838e+01 lineto +8.098425e+01 4.120494e+01 lineto +7.864338e+01 4.133518e+01 lineto +7.624866e+01 4.142858e+01 lineto +7.380955e+01 4.148476e+01 lineto +7.133568e+01 4.150352e+01 lineto +6.88368e+01 4.148476e+01 lineto +6.632278e+01 4.142858e+01 lineto +6.380353e+01 4.133518e+01 lineto +6.128901e+01 4.120494e+01 lineto +5.878914e+01 4.103838e+01 lineto +5.631377e+01 4.083614e+01 lineto +5.387269e+01 4.059904e+01 lineto +5.147552e+01 4.032799e+01 lineto +4.913173e+01 4.002408e+01 lineto +4.685056e+01 3.968851e+01 lineto +4.464102e+01 3.932258e+01 lineto +4.251183e+01 3.892776e+01 lineto +4.047138e+01 3.85056e+01 lineto +3.852774e+01 3.805777e+01 lineto +3.668858e+01 3.758603e+01 lineto +3.496115e+01 3.709224e+01 lineto +3.335226e+01 3.657835e+01 lineto +3.186828e+01 3.60464e+01 lineto +3.051505e+01 3.549848e+01 lineto +2.929792e+01 3.493675e+01 lineto +2.822168e+01 3.436343e+01 lineto +2.72906e+01 3.378078e+01 lineto +2.650833e+01 3.319111e+01 lineto +2.587798e+01 3.259673e+01 lineto +2.540202e+01 3.2e+01 lineto +2.508234e+01 3.140327e+01 lineto +2.492019e+01 3.080889e+01 lineto +2.491622e+01 3.021922e+01 lineto +2.507044e+01 2.963657e+01 lineto +2.538225e+01 2.906325e+01 lineto +2.585041e+01 2.850152e+01 lineto +2.647308e+01 2.79536e+01 lineto +2.724779e+01 2.742165e+01 lineto +2.817149e+01 2.690776e+01 lineto +2.924054e+01 2.641397e+01 lineto +3.045072e+01 2.594223e+01 lineto +3.179725e+01 2.54944e+01 lineto +3.327481e+01 2.507224e+01 lineto +3.487757e+01 2.467742e+01 lineto +3.659922e+01 2.431149e+01 lineto +3.843295e+01 2.397592e+01 lineto +4.037153e+01 2.367201e+01 lineto +4.240731e+01 2.340096e+01 lineto +4.453225e+01 2.316386e+01 lineto +4.673796e+01 2.296162e+01 lineto +4.901575e+01 2.279506e+01 lineto +5.135662e+01 2.266482e+01 lineto +5.375134e+01 2.257142e+01 lineto +5.619045e+01 2.251524e+01 lineto +5.866432e+01 2.249648e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 1 setrgbcolor +fill +grestore +gsave +6.0e-01 6.0e-01 6.0e-01 setrgbcolor +stroke +grestore +gsave +clip +1.0e-01 setlinewidth +newpath +6.627615e+01 8.914994e+01 moveto +6.658972e+01 8.919243e+01 lineto +6.580527e+01 8.918508e+01 lineto +6.564643e+01 8.914404e+01 lineto +6.627615e+01 8.914994e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.595967e+01 8.900902e+01 moveto +6.627615e+01 8.914994e+01 lineto +6.564643e+01 8.914404e+01 lineto +6.548612e+01 8.900458e+01 lineto +6.595967e+01 8.900902e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5641e+01 8.876999e+01 moveto +6.595967e+01 8.900902e+01 lineto +6.548612e+01 8.900458e+01 lineto +6.53247e+01 8.876702e+01 lineto +6.5641e+01 8.876999e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.532086e+01 8.843339e+01 moveto +6.5641e+01 8.876999e+01 lineto +6.53247e+01 8.876702e+01 lineto +6.516253e+01 8.843191e+01 lineto +6.532086e+01 8.843339e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.532086e+01 8.843339e+01 lineto +6.516253e+01 8.843191e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.564643e+01 8.914404e+01 moveto +6.580527e+01 8.918508e+01 lineto +6.501585e+01 8.916308e+01 lineto +6.501273e+01 8.912637e+01 lineto +6.564643e+01 8.914404e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.548612e+01 8.900458e+01 moveto +6.564643e+01 8.914404e+01 lineto +6.501273e+01 8.912637e+01 lineto +6.500957e+01 8.89913e+01 lineto +6.548612e+01 8.900458e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.53247e+01 8.876702e+01 moveto +6.548612e+01 8.900458e+01 lineto +6.500957e+01 8.89913e+01 lineto +6.500639e+01 8.875815e+01 lineto +6.53247e+01 8.876702e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.516253e+01 8.843191e+01 moveto +6.53247e+01 8.876702e+01 lineto +6.500639e+01 8.875815e+01 lineto +6.50032e+01 8.842747e+01 lineto +6.516253e+01 8.843191e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.516253e+01 8.843191e+01 lineto +6.50032e+01 8.842747e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.501273e+01 8.912637e+01 moveto +6.501585e+01 8.916308e+01 lineto +6.422634e+01 8.912655e+01 lineto +6.437895e+01 8.909705e+01 lineto +6.501273e+01 8.912637e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.500957e+01 8.89913e+01 moveto +6.501273e+01 8.912637e+01 lineto +6.437895e+01 8.909705e+01 lineto +6.453297e+01 8.896925e+01 lineto +6.500957e+01 8.89913e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.500639e+01 8.875815e+01 moveto +6.500957e+01 8.89913e+01 lineto +6.453297e+01 8.896925e+01 lineto +6.468805e+01 8.874342e+01 lineto +6.500639e+01 8.875815e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.50032e+01 8.842747e+01 moveto +6.500639e+01 8.875815e+01 lineto +6.468805e+01 8.874342e+01 lineto +6.484385e+01 8.842009e+01 lineto +6.50032e+01 8.842747e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.50032e+01 8.842747e+01 lineto +6.484385e+01 8.842009e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.437895e+01 8.909705e+01 moveto +6.422634e+01 8.912655e+01 lineto +6.34416e+01 8.907572e+01 lineto +6.374899e+01 8.905625e+01 lineto +6.437895e+01 8.909705e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.453297e+01 8.896925e+01 moveto +6.437895e+01 8.909705e+01 lineto +6.374899e+01 8.905625e+01 lineto +6.405924e+01 8.893857e+01 lineto +6.453297e+01 8.896925e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.468805e+01 8.874342e+01 moveto +6.453297e+01 8.896925e+01 lineto +6.405924e+01 8.893857e+01 lineto +6.437163e+01 8.872293e+01 lineto +6.468805e+01 8.874342e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.484385e+01 8.842009e+01 moveto +6.468805e+01 8.874342e+01 lineto +6.437163e+01 8.872293e+01 lineto +6.468546e+01 8.840984e+01 lineto +6.484385e+01 8.842009e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.484385e+01 8.842009e+01 lineto +6.468546e+01 8.840984e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.374899e+01 8.905625e+01 moveto +6.34416e+01 8.907572e+01 lineto +6.266647e+01 8.901092e+01 lineto +6.312675e+01 8.900423e+01 lineto +6.374899e+01 8.905625e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.405924e+01 8.893857e+01 moveto +6.374899e+01 8.905625e+01 lineto +6.312675e+01 8.900423e+01 lineto +6.359131e+01 8.889944e+01 lineto +6.405924e+01 8.893857e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.437163e+01 8.872293e+01 moveto +6.405924e+01 8.893857e+01 lineto +6.359131e+01 8.889944e+01 lineto +6.405909e+01 8.86968e+01 lineto +6.437163e+01 8.872293e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.468546e+01 8.840984e+01 moveto +6.437163e+01 8.872293e+01 lineto +6.405909e+01 8.86968e+01 lineto +6.452901e+01 8.839676e+01 lineto +6.468546e+01 8.840984e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.468546e+01 8.840984e+01 lineto +6.452901e+01 8.839676e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.312675e+01 8.900423e+01 moveto +6.266647e+01 8.901092e+01 lineto +6.190572e+01 8.893253e+01 lineto +6.251606e+01 8.89413e+01 lineto +6.312675e+01 8.900423e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.359131e+01 8.889944e+01 moveto +6.312675e+01 8.900423e+01 lineto +6.251606e+01 8.89413e+01 lineto +6.313207e+01 8.885212e+01 lineto +6.359131e+01 8.889944e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.405909e+01 8.86968e+01 moveto +6.359131e+01 8.889944e+01 lineto +6.313207e+01 8.885212e+01 lineto +6.375234e+01 8.866519e+01 lineto +6.405909e+01 8.86968e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.452901e+01 8.839676e+01 moveto +6.405909e+01 8.86968e+01 lineto +6.375234e+01 8.866519e+01 lineto +6.437546e+01 8.838093e+01 lineto +6.452901e+01 8.839676e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.452901e+01 8.839676e+01 lineto +6.437546e+01 8.838093e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.251606e+01 8.89413e+01 moveto +6.190572e+01 8.893253e+01 lineto +6.116405e+01 8.884104e+01 lineto +6.192069e+01 8.886786e+01 lineto +6.251606e+01 8.89413e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.313207e+01 8.885212e+01 moveto +6.251606e+01 8.89413e+01 lineto +6.192069e+01 8.886786e+01 lineto +6.268435e+01 8.87969e+01 lineto +6.313207e+01 8.885212e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.375234e+01 8.866519e+01 moveto +6.313207e+01 8.885212e+01 lineto +6.268435e+01 8.87969e+01 lineto +6.345329e+01 8.86283e+01 lineto +6.375234e+01 8.866519e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.437546e+01 8.838093e+01 moveto +6.375234e+01 8.866519e+01 lineto +6.345329e+01 8.86283e+01 lineto +6.422576e+01 8.836247e+01 lineto +6.437546e+01 8.838093e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.437546e+01 8.838093e+01 lineto +6.422576e+01 8.836247e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.192069e+01 8.886786e+01 moveto +6.116405e+01 8.884104e+01 lineto +6.044603e+01 8.873702e+01 lineto +6.134429e+01 8.878436e+01 lineto +6.192069e+01 8.886786e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.268435e+01 8.87969e+01 moveto +6.192069e+01 8.886786e+01 lineto +6.134429e+01 8.878436e+01 lineto +6.22509e+01 8.87341e+01 lineto +6.268435e+01 8.87969e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.345329e+01 8.86283e+01 moveto +6.268435e+01 8.87969e+01 lineto +6.22509e+01 8.87341e+01 lineto +6.316377e+01 8.858636e+01 lineto +6.345329e+01 8.86283e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.422576e+01 8.836247e+01 moveto +6.345329e+01 8.86283e+01 lineto +6.316377e+01 8.858636e+01 lineto +6.408084e+01 8.834147e+01 lineto +6.422576e+01 8.836247e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.422576e+01 8.836247e+01 lineto +6.408084e+01 8.834147e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.044603e+01 8.873702e+01 moveto +5.955815e+01 8.859219e+01 lineto +5.873369e+01 8.845367e+01 lineto +5.975609e+01 8.86211e+01 lineto +6.044603e+01 8.873702e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.134429e+01 8.878436e+01 moveto +6.044603e+01 8.873702e+01 lineto +5.975609e+01 8.86211e+01 lineto +6.079044e+01 8.869131e+01 lineto +6.134429e+01 8.878436e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.22509e+01 8.87341e+01 moveto +6.134429e+01 8.878436e+01 lineto +6.079044e+01 8.869131e+01 lineto +6.18344e+01 8.866412e+01 lineto +6.22509e+01 8.87341e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.316377e+01 8.858636e+01 moveto +6.22509e+01 8.87341e+01 lineto +6.18344e+01 8.866412e+01 lineto +6.288558e+01 8.853962e+01 lineto +6.316377e+01 8.858636e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.408084e+01 8.834147e+01 moveto +6.316377e+01 8.858636e+01 lineto +6.288558e+01 8.853962e+01 lineto +6.394158e+01 8.831808e+01 lineto +6.408084e+01 8.834147e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.408084e+01 8.834147e+01 lineto +6.394158e+01 8.831808e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.975609e+01 8.86211e+01 moveto +5.873369e+01 8.845367e+01 lineto +5.794787e+01 8.83018e+01 lineto +5.909847e+01 8.849401e+01 lineto +5.975609e+01 8.86211e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.079044e+01 8.869131e+01 moveto +5.975609e+01 8.86211e+01 lineto +5.909847e+01 8.849401e+01 lineto +6.026254e+01 8.858928e+01 lineto +6.079044e+01 8.869131e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.18344e+01 8.866412e+01 moveto +6.079044e+01 8.869131e+01 lineto +6.026254e+01 8.858928e+01 lineto +6.143742e+01 8.85874e+01 lineto +6.18344e+01 8.866412e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.288558e+01 8.853962e+01 moveto +6.18344e+01 8.866412e+01 lineto +6.143742e+01 8.85874e+01 lineto +6.262042e+01 8.848837e+01 lineto +6.288558e+01 8.853962e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.394158e+01 8.831808e+01 moveto +6.288558e+01 8.853962e+01 lineto +6.262042e+01 8.848837e+01 lineto +6.380885e+01 8.829242e+01 lineto +6.394158e+01 8.831808e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.394158e+01 8.831808e+01 lineto +6.380885e+01 8.829242e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.909847e+01 8.849401e+01 moveto +5.794787e+01 8.83018e+01 lineto +5.720552e+01 8.81375e+01 lineto +5.847725e+01 8.835651e+01 lineto +5.909847e+01 8.849401e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.026254e+01 8.858928e+01 moveto +5.909847e+01 8.849401e+01 lineto +5.847725e+01 8.835651e+01 lineto +5.976385e+01 8.847891e+01 lineto +6.026254e+01 8.858928e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.143742e+01 8.85874e+01 moveto +6.026254e+01 8.858928e+01 lineto +5.976385e+01 8.847891e+01 lineto +6.10624e+01 8.85044e+01 lineto +6.143742e+01 8.85874e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.262042e+01 8.848837e+01 moveto +6.143742e+01 8.85874e+01 lineto +6.10624e+01 8.85044e+01 lineto +6.236993e+01 8.843293e+01 lineto +6.262042e+01 8.848837e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.380885e+01 8.829242e+01 moveto +6.262042e+01 8.848837e+01 lineto +6.236993e+01 8.843293e+01 lineto +6.368346e+01 8.826467e+01 lineto +6.380885e+01 8.829242e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.380885e+01 8.829242e+01 lineto +6.368346e+01 8.826467e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.720552e+01 8.81375e+01 moveto +5.595157e+01 8.782237e+01 lineto +5.514559e+01 8.761839e+01 lineto +5.651123e+01 8.796179e+01 lineto +5.720552e+01 8.81375e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.847725e+01 8.835651e+01 moveto +5.720552e+01 8.81375e+01 lineto +5.651123e+01 8.796179e+01 lineto +5.789623e+01 8.820948e+01 lineto +5.847725e+01 8.835651e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.976385e+01 8.847891e+01 moveto +5.847725e+01 8.835651e+01 lineto +5.789623e+01 8.820948e+01 lineto +5.929744e+01 8.836087e+01 lineto +5.976385e+01 8.847891e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.10624e+01 8.85044e+01 moveto +5.976385e+01 8.847891e+01 lineto +5.929744e+01 8.836087e+01 lineto +6.071166e+01 8.841564e+01 lineto +6.10624e+01 8.85044e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.236993e+01 8.843293e+01 moveto +6.10624e+01 8.85044e+01 lineto +6.071166e+01 8.841564e+01 lineto +6.213566e+01 8.837365e+01 lineto +6.236993e+01 8.843293e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.368346e+01 8.826467e+01 moveto +6.236993e+01 8.843293e+01 lineto +6.213566e+01 8.837365e+01 lineto +6.356619e+01 8.8235e+01 lineto +6.368346e+01 8.826467e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.368346e+01 8.826467e+01 lineto +6.356619e+01 8.8235e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.651123e+01 8.796179e+01 moveto +5.514559e+01 8.761839e+01 lineto +5.440036e+01 8.740243e+01 lineto +5.586927e+01 8.777576e+01 lineto +5.651123e+01 8.796179e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.789623e+01 8.820948e+01 moveto +5.651123e+01 8.796179e+01 lineto +5.586927e+01 8.777576e+01 lineto +5.735902e+01 8.805379e+01 lineto +5.789623e+01 8.820948e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.929744e+01 8.836087e+01 moveto +5.789623e+01 8.820948e+01 lineto +5.735902e+01 8.805379e+01 lineto +5.886619e+01 8.82359e+01 lineto +5.929744e+01 8.836087e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.071166e+01 8.841564e+01 moveto +5.929744e+01 8.836087e+01 lineto +5.886619e+01 8.82359e+01 lineto +6.038736e+01 8.832166e+01 lineto +6.071166e+01 8.841564e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.213566e+01 8.837365e+01 moveto +6.071166e+01 8.841564e+01 lineto +6.038736e+01 8.832166e+01 lineto +6.191905e+01 8.831087e+01 lineto +6.213566e+01 8.837365e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.356619e+01 8.8235e+01 moveto +6.213566e+01 8.837365e+01 lineto +6.191905e+01 8.831087e+01 lineto +6.345776e+01 8.820357e+01 lineto +6.356619e+01 8.8235e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.356619e+01 8.8235e+01 lineto +6.345776e+01 8.820357e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.440036e+01 8.740243e+01 moveto +5.295562e+01 8.693465e+01 lineto +5.218307e+01 8.667715e+01 lineto +5.372048e+01 8.717581e+01 lineto +5.440036e+01 8.740243e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.586927e+01 8.777576e+01 moveto +5.440036e+01 8.740243e+01 lineto +5.372048e+01 8.717581e+01 lineto +5.528361e+01 8.758055e+01 lineto +5.586927e+01 8.777576e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.735902e+01 8.805379e+01 moveto +5.586927e+01 8.777576e+01 lineto +5.528361e+01 8.758055e+01 lineto +5.686891e+01 8.789043e+01 lineto +5.735902e+01 8.805379e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.886619e+01 8.82359e+01 moveto +5.735902e+01 8.805379e+01 lineto +5.686891e+01 8.789043e+01 lineto +5.847276e+01 8.810476e+01 lineto +5.886619e+01 8.82359e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.038736e+01 8.832166e+01 moveto +5.886619e+01 8.82359e+01 lineto +5.847276e+01 8.810476e+01 lineto +6.00915e+01 8.822304e+01 lineto +6.038736e+01 8.832166e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.191905e+01 8.831087e+01 moveto +6.038736e+01 8.832166e+01 lineto +6.00915e+01 8.822304e+01 lineto +6.172143e+01 8.8245e+01 lineto +6.191905e+01 8.831087e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.345776e+01 8.820357e+01 moveto +6.191905e+01 8.831087e+01 lineto +6.172143e+01 8.8245e+01 lineto +6.335884e+01 8.81706e+01 lineto +6.345776e+01 8.820357e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.345776e+01 8.820357e+01 lineto +6.335884e+01 8.81706e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.372048e+01 8.717581e+01 moveto +5.218307e+01 8.667715e+01 lineto +5.148954e+01 8.640912e+01 lineto +5.311014e+01 8.693993e+01 lineto +5.372048e+01 8.717581e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.528361e+01 8.758055e+01 moveto +5.372048e+01 8.717581e+01 lineto +5.311014e+01 8.693993e+01 lineto +5.475785e+01 8.737736e+01 lineto +5.528361e+01 8.758055e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.686891e+01 8.789043e+01 moveto +5.528361e+01 8.758055e+01 lineto +5.475785e+01 8.737736e+01 lineto +5.642893e+01 8.772039e+01 lineto +5.686891e+01 8.789043e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.847276e+01 8.810476e+01 moveto +5.686891e+01 8.789043e+01 lineto +5.642893e+01 8.772039e+01 lineto +5.811957e+01 8.796826e+01 lineto +5.847276e+01 8.810476e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.00915e+01 8.822304e+01 moveto +5.847276e+01 8.810476e+01 lineto +5.811957e+01 8.796826e+01 lineto +5.982589e+01 8.812039e+01 lineto +6.00915e+01 8.822304e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.172143e+01 8.8245e+01 moveto +6.00915e+01 8.822304e+01 lineto +5.982589e+01 8.812039e+01 lineto +6.154403e+01 8.817644e+01 lineto +6.172143e+01 8.8245e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.335884e+01 8.81706e+01 moveto +6.172143e+01 8.8245e+01 lineto +6.154403e+01 8.817644e+01 lineto +6.327004e+01 8.813628e+01 lineto +6.335884e+01 8.81706e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.335884e+01 8.81706e+01 lineto +6.327004e+01 8.813628e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.148954e+01 8.640912e+01 moveto +4.989977e+01 8.578612e+01 lineto +4.921773e+01 8.547665e+01 lineto +5.087931e+01 8.613222e+01 lineto +5.148954e+01 8.640912e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.311014e+01 8.693993e+01 moveto +5.148954e+01 8.640912e+01 lineto +5.087931e+01 8.613222e+01 lineto +5.25731e+01 8.669625e+01 lineto +5.311014e+01 8.693993e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.475785e+01 8.737736e+01 moveto +5.311014e+01 8.693993e+01 lineto +5.25731e+01 8.669625e+01 lineto +5.429524e+01 8.716745e+01 lineto +5.475785e+01 8.737736e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.642893e+01 8.772039e+01 moveto +5.475785e+01 8.737736e+01 lineto +5.429524e+01 8.716745e+01 lineto +5.60418e+01 8.754473e+01 lineto +5.642893e+01 8.772039e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.811957e+01 8.796826e+01 moveto +5.642893e+01 8.772039e+01 lineto +5.60418e+01 8.754473e+01 lineto +5.78088e+01 8.782725e+01 lineto +5.811957e+01 8.796826e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.982589e+01 8.812039e+01 moveto +5.811957e+01 8.796826e+01 lineto +5.78088e+01 8.782725e+01 lineto +5.959219e+01 8.801435e+01 lineto +5.982589e+01 8.812039e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.154403e+01 8.817644e+01 moveto +5.982589e+01 8.812039e+01 lineto +5.959219e+01 8.801435e+01 lineto +6.138793e+01 8.810561e+01 lineto +6.154403e+01 8.817644e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.327004e+01 8.813628e+01 moveto +6.154403e+01 8.817644e+01 lineto +6.138793e+01 8.810561e+01 lineto +6.31919e+01 8.810082e+01 lineto +6.327004e+01 8.813628e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.327004e+01 8.813628e+01 lineto +6.31919e+01 8.810082e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.759215e+01 8.473102e+01 moveto +4.600628e+01 8.389704e+01 lineto +4.530256e+01 8.351496e+01 lineto +4.694719e+01 8.438084e+01 lineto +4.759215e+01 8.473102e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.921773e+01 8.547665e+01 moveto +4.759215e+01 8.473102e+01 lineto +4.694719e+01 8.438084e+01 lineto +4.8633e+01 8.515916e+01 lineto +4.921773e+01 8.547665e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.087931e+01 8.613222e+01 moveto +4.921773e+01 8.547665e+01 lineto +4.8633e+01 8.515916e+01 lineto +5.035614e+01 8.584817e+01 lineto +5.087931e+01 8.613222e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.25731e+01 8.669625e+01 moveto +5.087931e+01 8.613222e+01 lineto +5.035614e+01 8.584817e+01 lineto +5.211269e+01 8.644627e+01 lineto +5.25731e+01 8.669625e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.429524e+01 8.716745e+01 moveto +5.25731e+01 8.669625e+01 lineto +5.211269e+01 8.644627e+01 lineto +5.389863e+01 8.69521e+01 lineto +5.429524e+01 8.716745e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.60418e+01 8.754473e+01 moveto +5.429524e+01 8.716745e+01 lineto +5.389863e+01 8.69521e+01 lineto +5.57099e+01 8.736452e+01 lineto +5.60418e+01 8.754473e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.78088e+01 8.782725e+01 moveto +5.60418e+01 8.754473e+01 lineto +5.57099e+01 8.736452e+01 lineto +5.754236e+01 8.768259e+01 lineto +5.78088e+01 8.782725e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.959219e+01 8.801435e+01 moveto +5.78088e+01 8.782725e+01 lineto +5.754236e+01 8.768259e+01 lineto +5.939183e+01 8.790556e+01 lineto +5.959219e+01 8.801435e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.138793e+01 8.810561e+01 moveto +5.959219e+01 8.801435e+01 lineto +5.939183e+01 8.790556e+01 lineto +6.12541e+01 8.803295e+01 lineto +6.138793e+01 8.810561e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.31919e+01 8.810082e+01 moveto +6.138793e+01 8.810561e+01 lineto +6.12541e+01 8.803295e+01 lineto +6.312491e+01 8.806445e+01 lineto +6.31919e+01 8.810082e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.31919e+01 8.810082e+01 lineto +6.312491e+01 8.806445e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.370287e+01 8.25635e+01 moveto +4.215176e+01 8.152864e+01 lineto +4.147634e+01 8.107699e+01 lineto +4.30733e+01 8.214252e+01 lineto +4.370287e+01 8.25635e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.530256e+01 8.351496e+01 moveto +4.370287e+01 8.25635e+01 lineto +4.30733e+01 8.214252e+01 lineto +4.472028e+01 8.312559e+01 lineto +4.530256e+01 8.351496e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.694719e+01 8.438084e+01 moveto +4.530256e+01 8.351496e+01 lineto +4.472028e+01 8.312559e+01 lineto +4.641353e+01 8.402398e+01 lineto +4.694719e+01 8.438084e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.8633e+01 8.515916e+01 moveto +4.694719e+01 8.438084e+01 lineto +4.641353e+01 8.402398e+01 lineto +4.814917e+01 8.483564e+01 lineto +4.8633e+01 8.515916e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.035614e+01 8.584817e+01 moveto +4.8633e+01 8.515916e+01 lineto +4.814917e+01 8.483564e+01 lineto +4.992325e+01 8.55587e+01 lineto +5.035614e+01 8.584817e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.211269e+01 8.644627e+01 moveto +5.035614e+01 8.584817e+01 lineto +4.992325e+01 8.55587e+01 lineto +5.173172e+01 8.619152e+01 lineto +5.211269e+01 8.644627e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.389863e+01 8.69521e+01 moveto +5.211269e+01 8.644627e+01 lineto +5.173172e+01 8.619152e+01 lineto +5.357046e+01 8.673266e+01 lineto +5.389863e+01 8.69521e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.57099e+01 8.736452e+01 moveto +5.389863e+01 8.69521e+01 lineto +5.357046e+01 8.673266e+01 lineto +5.543527e+01 8.718089e+01 lineto +5.57099e+01 8.736452e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.754236e+01 8.768259e+01 moveto +5.57099e+01 8.736452e+01 lineto +5.543527e+01 8.718089e+01 lineto +5.732191e+01 8.753517e+01 lineto +5.754236e+01 8.768259e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.939183e+01 8.790556e+01 moveto +5.754236e+01 8.768259e+01 lineto +5.732191e+01 8.753517e+01 lineto +5.922605e+01 8.779471e+01 lineto +5.939183e+01 8.790556e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.12541e+01 8.803295e+01 moveto +5.939183e+01 8.790556e+01 lineto +5.922605e+01 8.779471e+01 lineto +6.114337e+01 8.79589e+01 lineto +6.12541e+01 8.803295e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.312491e+01 8.806445e+01 moveto +6.12541e+01 8.803295e+01 lineto +6.114337e+01 8.79589e+01 lineto +6.306948e+01 8.802739e+01 lineto +6.312491e+01 8.806445e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.312491e+01 8.806445e+01 lineto +6.306948e+01 8.802739e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.993303e+01 7.993145e+01 moveto +3.844691e+01 7.870851e+01 lineto +3.784822e+01 7.819232e+01 lineto +3.936785e+01 7.944415e+01 lineto +3.993303e+01 7.993145e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.147634e+01 8.107699e+01 moveto +3.993303e+01 7.993145e+01 lineto +3.936785e+01 7.944415e+01 lineto +4.094595e+01 8.061969e+01 lineto +4.147634e+01 8.107699e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.30733e+01 8.214252e+01 moveto +4.147634e+01 8.107699e+01 lineto +4.094595e+01 8.061969e+01 lineto +4.257892e+01 8.171626e+01 lineto +4.30733e+01 8.214252e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.472028e+01 8.312559e+01 moveto +4.30733e+01 8.214252e+01 lineto +4.257892e+01 8.171626e+01 lineto +4.426304e+01 8.273136e+01 lineto +4.472028e+01 8.312559e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.641353e+01 8.402398e+01 moveto +4.472028e+01 8.312559e+01 lineto +4.426304e+01 8.273136e+01 lineto +4.599446e+01 8.366266e+01 lineto +4.641353e+01 8.402398e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.814917e+01 8.483564e+01 moveto +4.641353e+01 8.402398e+01 lineto +4.599446e+01 8.366266e+01 lineto +4.776923e+01 8.450806e+01 lineto +4.814917e+01 8.483564e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.992325e+01 8.55587e+01 moveto +4.814917e+01 8.483564e+01 lineto +4.776923e+01 8.450806e+01 lineto +4.958331e+01 8.526561e+01 lineto +4.992325e+01 8.55587e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.173172e+01 8.619152e+01 moveto +4.992325e+01 8.55587e+01 lineto +4.958331e+01 8.526561e+01 lineto +5.143256e+01 8.593359e+01 lineto +5.173172e+01 8.619152e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.357046e+01 8.673266e+01 moveto +5.173172e+01 8.619152e+01 lineto +5.143256e+01 8.593359e+01 lineto +5.331276e+01 8.651047e+01 lineto +5.357046e+01 8.673266e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.543527e+01 8.718089e+01 moveto +5.357046e+01 8.673266e+01 lineto +5.331276e+01 8.651047e+01 lineto +5.521962e+01 8.699495e+01 lineto +5.543527e+01 8.718089e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.732191e+01 8.753517e+01 moveto +5.543527e+01 8.718089e+01 lineto +5.521962e+01 8.699495e+01 lineto +5.714879e+01 8.738591e+01 lineto +5.732191e+01 8.753517e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.922605e+01 8.779471e+01 moveto +5.732191e+01 8.753517e+01 lineto +5.714879e+01 8.738591e+01 lineto +5.909587e+01 8.768246e+01 lineto +5.922605e+01 8.779471e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.114337e+01 8.79589e+01 moveto +5.922605e+01 8.779471e+01 lineto +5.909587e+01 8.768246e+01 lineto +6.105641e+01 8.788393e+01 lineto +6.114337e+01 8.79589e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.306948e+01 8.802739e+01 moveto +6.114337e+01 8.79589e+01 lineto +6.105641e+01 8.788393e+01 lineto +6.302595e+01 8.798986e+01 lineto +6.306948e+01 8.802739e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.306948e+01 8.802739e+01 lineto +6.302595e+01 8.798986e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.499809e+01 7.547137e+01 moveto +3.36741e+01 7.400846e+01 lineto +3.317651e+01 7.340922e+01 lineto +3.452153e+01 7.489745e+01 lineto +3.499809e+01 7.547137e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.639052e+01 7.686705e+01 moveto +3.499809e+01 7.547137e+01 lineto +3.452153e+01 7.489745e+01 lineto +3.593608e+01 7.631977e+01 lineto +3.639052e+01 7.686705e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.784822e+01 7.819232e+01 moveto +3.639052e+01 7.686705e+01 lineto +3.593608e+01 7.631977e+01 lineto +3.741693e+01 7.767292e+01 lineto +3.784822e+01 7.819232e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.936785e+01 7.944415e+01 moveto +3.784822e+01 7.819232e+01 lineto +3.741693e+01 7.767292e+01 lineto +3.896069e+01 7.895382e+01 lineto +3.936785e+01 7.944415e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.094595e+01 8.061969e+01 moveto +3.936785e+01 7.944415e+01 lineto +3.896069e+01 7.895382e+01 lineto +4.056386e+01 8.015955e+01 lineto +4.094595e+01 8.061969e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.257892e+01 8.171626e+01 moveto +4.094595e+01 8.061969e+01 lineto +4.056386e+01 8.015955e+01 lineto +4.222277e+01 8.128736e+01 lineto +4.257892e+01 8.171626e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.426304e+01 8.273136e+01 moveto +4.257892e+01 8.171626e+01 lineto +4.222277e+01 8.128736e+01 lineto +4.393364e+01 8.233467e+01 lineto +4.426304e+01 8.273136e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.599446e+01 8.366266e+01 moveto +4.426304e+01 8.273136e+01 lineto +4.393364e+01 8.233467e+01 lineto +4.569256e+01 8.32991e+01 lineto +4.599446e+01 8.366266e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.776923e+01 8.450806e+01 moveto +4.599446e+01 8.366266e+01 lineto +4.569256e+01 8.32991e+01 lineto +4.749553e+01 8.417844e+01 lineto +4.776923e+01 8.450806e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.958331e+01 8.526561e+01 moveto +4.776923e+01 8.450806e+01 lineto +4.749553e+01 8.417844e+01 lineto +4.933843e+01 8.49707e+01 lineto +4.958331e+01 8.526561e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.143256e+01 8.593359e+01 moveto +4.958331e+01 8.526561e+01 lineto +4.933843e+01 8.49707e+01 lineto +5.121705e+01 8.567405e+01 lineto +5.143256e+01 8.593359e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.331276e+01 8.651047e+01 moveto +5.143256e+01 8.593359e+01 lineto +5.121705e+01 8.567405e+01 lineto +5.312711e+01 8.62869e+01 lineto +5.331276e+01 8.651047e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.521962e+01 8.699495e+01 moveto +5.331276e+01 8.651047e+01 lineto +5.312711e+01 8.62869e+01 lineto +5.506426e+01 8.680786e+01 lineto +5.521962e+01 8.699495e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.714879e+01 8.738591e+01 moveto +5.521962e+01 8.699495e+01 lineto +5.506426e+01 8.680786e+01 lineto +5.702407e+01 8.723572e+01 lineto +5.714879e+01 8.738591e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.909587e+01 8.768246e+01 moveto +5.714879e+01 8.738591e+01 lineto +5.702407e+01 8.723572e+01 lineto +5.900208e+01 8.756952e+01 lineto +5.909587e+01 8.768246e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.105641e+01 8.788393e+01 moveto +5.909587e+01 8.768246e+01 lineto +5.900208e+01 8.756952e+01 lineto +6.099377e+01 8.780849e+01 lineto +6.105641e+01 8.788393e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.302595e+01 8.798986e+01 moveto +6.105641e+01 8.788393e+01 lineto +6.099377e+01 8.780849e+01 lineto +6.29946e+01 8.79521e+01 lineto +6.302595e+01 8.798986e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.302595e+01 8.798986e+01 lineto +6.29946e+01 8.79521e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.855051e+01 6.686707e+01 moveto +2.759573e+01 6.510289e+01 lineto +2.724148e+01 6.439856e+01 lineto +2.82053e+01 6.618072e+01 lineto +2.855051e+01 6.686707e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.958844e+01 6.858365e+01 moveto +2.855051e+01 6.686707e+01 lineto +2.82053e+01 6.618072e+01 lineto +2.925306e+01 6.791684e+01 lineto +2.958844e+01 6.858365e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.070714e+01 7.024871e+01 moveto +2.958844e+01 6.858365e+01 lineto +2.925306e+01 6.791684e+01 lineto +3.038236e+01 6.960297e+01 lineto +3.070714e+01 7.024871e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.190408e+01 7.185846e+01 moveto +3.070714e+01 7.024871e+01 lineto +3.038236e+01 6.960297e+01 lineto +3.159063e+01 7.123526e+01 lineto +3.190408e+01 7.185846e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.317651e+01 7.340922e+01 moveto +3.190408e+01 7.185846e+01 lineto +3.159063e+01 7.123526e+01 lineto +3.287511e+01 7.280998e+01 lineto +3.317651e+01 7.340922e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.452153e+01 7.489745e+01 moveto +3.317651e+01 7.340922e+01 lineto +3.287511e+01 7.280998e+01 lineto +3.423287e+01 7.432354e+01 lineto +3.452153e+01 7.489745e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.593608e+01 7.631977e+01 moveto +3.452153e+01 7.489745e+01 lineto +3.423287e+01 7.432354e+01 lineto +3.566082e+01 7.577249e+01 lineto +3.593608e+01 7.631977e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.741693e+01 7.767292e+01 moveto +3.593608e+01 7.631977e+01 lineto +3.566082e+01 7.577249e+01 lineto +3.715569e+01 7.715353e+01 lineto +3.741693e+01 7.767292e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.896069e+01 7.895382e+01 moveto +3.741693e+01 7.767292e+01 lineto +3.715569e+01 7.715353e+01 lineto +3.871408e+01 7.84635e+01 lineto +3.896069e+01 7.895382e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.056386e+01 8.015955e+01 moveto +3.896069e+01 7.895382e+01 lineto +3.871408e+01 7.84635e+01 lineto +4.033243e+01 7.969942e+01 lineto +4.056386e+01 8.015955e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.222277e+01 8.128736e+01 moveto +4.056386e+01 8.015955e+01 lineto +4.033243e+01 7.969942e+01 lineto +4.200705e+01 8.085846e+01 lineto +4.222277e+01 8.128736e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.393364e+01 8.233467e+01 moveto +4.222277e+01 8.128736e+01 lineto +4.200705e+01 8.085846e+01 lineto +4.373413e+01 8.193799e+01 lineto +4.393364e+01 8.233467e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.569256e+01 8.32991e+01 moveto +4.393364e+01 8.233467e+01 lineto +4.373413e+01 8.193799e+01 lineto +4.550971e+01 8.293554e+01 lineto +4.569256e+01 8.32991e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.749553e+01 8.417844e+01 moveto +4.569256e+01 8.32991e+01 lineto +4.550971e+01 8.293554e+01 lineto +4.732975e+01 8.384883e+01 lineto +4.749553e+01 8.417844e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.933843e+01 8.49707e+01 moveto +4.749553e+01 8.417844e+01 lineto +4.732975e+01 8.384883e+01 lineto +4.91901e+01 8.467579e+01 lineto +4.933843e+01 8.49707e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.121705e+01 8.567405e+01 moveto +4.933843e+01 8.49707e+01 lineto +4.91901e+01 8.467579e+01 lineto +5.108652e+01 8.541452e+01 lineto +5.121705e+01 8.567405e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.312711e+01 8.62869e+01 moveto +5.121705e+01 8.567405e+01 lineto +5.108652e+01 8.541452e+01 lineto +5.301467e+01 8.606333e+01 lineto +5.312711e+01 8.62869e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.506426e+01 8.680786e+01 moveto +5.312711e+01 8.62869e+01 lineto +5.301467e+01 8.606333e+01 lineto +5.497016e+01 8.662076e+01 lineto +5.506426e+01 8.680786e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.702407e+01 8.723572e+01 moveto +5.506426e+01 8.680786e+01 lineto +5.497016e+01 8.662076e+01 lineto +5.694854e+01 8.708553e+01 lineto +5.702407e+01 8.723572e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.900208e+01 8.756952e+01 moveto +5.702407e+01 8.723572e+01 lineto +5.694854e+01 8.708553e+01 lineto +5.894528e+01 8.745658e+01 lineto +5.900208e+01 8.756952e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.099377e+01 8.780849e+01 moveto +5.900208e+01 8.756952e+01 lineto +5.894528e+01 8.745658e+01 lineto +6.095583e+01 8.773306e+01 lineto +6.099377e+01 8.780849e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.29946e+01 8.79521e+01 moveto +6.099377e+01 8.780849e+01 lineto +6.095583e+01 8.773306e+01 lineto +6.297561e+01 8.791433e+01 lineto +6.29946e+01 8.79521e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.29946e+01 8.79521e+01 lineto +6.297561e+01 8.791433e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.375135e+01 5.494269e+01 moveto +2.333028e+01 5.297271e+01 lineto +2.319624e+01 5.220021e+01 lineto +2.361867e+01 5.4178e+01 lineto +2.375135e+01 5.494269e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.426652e+01 5.689227e+01 moveto +2.375135e+01 5.494269e+01 lineto +2.361867e+01 5.4178e+01 lineto +2.41355e+01 5.613713e+01 lineto +2.426652e+01 5.689227e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.487461e+01 5.8817e+01 moveto +2.426652e+01 5.689227e+01 lineto +2.41355e+01 5.613713e+01 lineto +2.474555e+01 5.807314e+01 lineto +2.487461e+01 5.8817e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.557423e+01 6.07125e+01 moveto +2.487461e+01 5.8817e+01 lineto +2.474555e+01 5.807314e+01 lineto +2.544742e+01 5.998161e+01 lineto +2.557423e+01 6.07125e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.636379e+01 6.257444e+01 moveto +2.557423e+01 6.07125e+01 lineto +2.544742e+01 5.998161e+01 lineto +2.623951e+01 6.185818e+01 lineto +2.636379e+01 6.257444e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.724148e+01 6.439856e+01 moveto +2.636379e+01 6.257444e+01 lineto +2.623951e+01 6.185818e+01 lineto +2.712003e+01 6.369858e+01 lineto +2.724148e+01 6.439856e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.82053e+01 6.618072e+01 moveto +2.724148e+01 6.439856e+01 lineto +2.712003e+01 6.369858e+01 lineto +2.808695e+01 6.54986e+01 lineto +2.82053e+01 6.618072e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.925306e+01 6.791684e+01 moveto +2.82053e+01 6.618072e+01 lineto +2.808695e+01 6.54986e+01 lineto +2.913808e+01 6.725415e+01 lineto +2.925306e+01 6.791684e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.038236e+01 6.960297e+01 moveto +2.925306e+01 6.791684e+01 lineto +2.913808e+01 6.725415e+01 lineto +3.027101e+01 6.896121e+01 lineto +3.038236e+01 6.960297e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.159063e+01 7.123526e+01 moveto +3.038236e+01 6.960297e+01 lineto +3.027101e+01 6.896121e+01 lineto +3.148317e+01 7.06159e+01 lineto +3.159063e+01 7.123526e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.287511e+01 7.280998e+01 moveto +3.159063e+01 7.123526e+01 lineto +3.148317e+01 7.06159e+01 lineto +3.277178e+01 7.221443e+01 lineto +3.287511e+01 7.280998e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.423287e+01 7.432354e+01 moveto +3.287511e+01 7.280998e+01 lineto +3.277178e+01 7.221443e+01 lineto +3.413391e+01 7.375316e+01 lineto +3.423287e+01 7.432354e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.566082e+01 7.577249e+01 moveto +3.423287e+01 7.432354e+01 lineto +3.413391e+01 7.375316e+01 lineto +3.556645e+01 7.522859e+01 lineto +3.566082e+01 7.577249e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.715569e+01 7.715353e+01 moveto +3.566082e+01 7.577249e+01 lineto +3.556645e+01 7.522859e+01 lineto +3.706613e+01 7.663734e+01 lineto +3.715569e+01 7.715353e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.871408e+01 7.84635e+01 moveto +3.715569e+01 7.715353e+01 lineto +3.706613e+01 7.663734e+01 lineto +3.862953e+01 7.79762e+01 lineto +3.871408e+01 7.84635e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.033243e+01 7.969942e+01 moveto +3.871408e+01 7.84635e+01 lineto +3.862953e+01 7.79762e+01 lineto +4.025309e+01 7.924212e+01 lineto +4.033243e+01 7.969942e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.200705e+01 8.085846e+01 moveto +4.033243e+01 7.969942e+01 lineto +4.025309e+01 7.924212e+01 lineto +4.19331e+01 8.043221e+01 lineto +4.200705e+01 8.085846e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.373413e+01 8.193799e+01 moveto +4.200705e+01 8.085846e+01 lineto +4.19331e+01 8.043221e+01 lineto +4.366572e+01 8.154375e+01 lineto +4.373413e+01 8.193799e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.550971e+01 8.293554e+01 moveto +4.373413e+01 8.193799e+01 lineto +4.366572e+01 8.154375e+01 lineto +4.544702e+01 8.257422e+01 lineto +4.550971e+01 8.293554e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.732975e+01 8.384883e+01 moveto +4.550971e+01 8.293554e+01 lineto +4.544702e+01 8.257422e+01 lineto +4.727291e+01 8.352125e+01 lineto +4.732975e+01 8.384883e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.91901e+01 8.467579e+01 moveto +4.732975e+01 8.384883e+01 lineto +4.727291e+01 8.352125e+01 lineto +4.913925e+01 8.438269e+01 lineto +4.91901e+01 8.467579e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.108652e+01 8.541452e+01 moveto +4.91901e+01 8.467579e+01 lineto +4.913925e+01 8.438269e+01 lineto +5.104176e+01 8.515658e+01 lineto +5.108652e+01 8.541452e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.301467e+01 8.606333e+01 moveto +5.108652e+01 8.541452e+01 lineto +5.104176e+01 8.515658e+01 lineto +5.297612e+01 8.584114e+01 lineto +5.301467e+01 8.606333e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.497016e+01 8.662076e+01 moveto +5.301467e+01 8.606333e+01 lineto +5.297612e+01 8.584114e+01 lineto +5.49379e+01 8.643483e+01 lineto +5.497016e+01 8.662076e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.694854e+01 8.708553e+01 moveto +5.497016e+01 8.662076e+01 lineto +5.49379e+01 8.643483e+01 lineto +5.692264e+01 8.693627e+01 lineto +5.694854e+01 8.708553e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.894528e+01 8.745658e+01 moveto +5.694854e+01 8.708553e+01 lineto +5.692264e+01 8.693627e+01 lineto +5.89258e+01 8.734433e+01 lineto +5.894528e+01 8.745658e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.095583e+01 8.773306e+01 moveto +5.894528e+01 8.745658e+01 lineto +5.89258e+01 8.734433e+01 lineto +6.094282e+01 8.765808e+01 lineto +6.095583e+01 8.773306e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.297561e+01 8.791433e+01 moveto +6.095583e+01 8.773306e+01 lineto +6.094282e+01 8.765808e+01 lineto +6.296909e+01 8.78768e+01 lineto +6.297561e+01 8.791433e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.297561e+01 8.791433e+01 lineto +6.296909e+01 8.78768e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.268264e+01 4.019606e+01 moveto +2.29357e+01 3.821509e+01 lineto +2.306017e+01 3.74474e+01 lineto +2.280786e+01 3.942375e+01 lineto +2.268264e+01 4.019606e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.252612e+01 4.219027e+01 moveto +2.268264e+01 4.019606e+01 lineto +2.280786e+01 3.942375e+01 lineto +2.26518e+01 4.14151e+01 lineto +2.252612e+01 4.219027e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.246649e+01 4.419317e+01 moveto +2.252612e+01 4.219027e+01 lineto +2.26518e+01 4.14151e+01 lineto +2.259235e+01 4.341691e+01 lineto +2.246649e+01 4.419317e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.250388e+01 4.620019e+01 moveto +2.246649e+01 4.419317e+01 lineto +2.259235e+01 4.341691e+01 lineto +2.262963e+01 4.542461e+01 lineto +2.250388e+01 4.620019e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.263821e+01 4.820675e+01 moveto +2.250388e+01 4.620019e+01 lineto +2.262963e+01 4.542461e+01 lineto +2.276356e+01 4.743363e+01 lineto +2.263821e+01 4.820675e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.286917e+01 5.020828e+01 moveto +2.263821e+01 4.820675e+01 lineto +2.276356e+01 4.743363e+01 lineto +2.299384e+01 4.943937e+01 lineto +2.286917e+01 5.020828e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.319624e+01 5.220021e+01 moveto +2.286917e+01 5.020828e+01 lineto +2.299384e+01 4.943937e+01 lineto +2.331994e+01 5.143727e+01 lineto +2.319624e+01 5.220021e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.361867e+01 5.4178e+01 moveto +2.319624e+01 5.220021e+01 lineto +2.331994e+01 5.143727e+01 lineto +2.374112e+01 5.342277e+01 lineto +2.361867e+01 5.4178e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.41355e+01 5.613713e+01 moveto +2.361867e+01 5.4178e+01 lineto +2.374112e+01 5.342277e+01 lineto +2.425642e+01 5.539133e+01 lineto +2.41355e+01 5.613713e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.474555e+01 5.807314e+01 moveto +2.41355e+01 5.613713e+01 lineto +2.425642e+01 5.539133e+01 lineto +2.486466e+01 5.733848e+01 lineto +2.474555e+01 5.807314e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.544742e+01 5.998161e+01 moveto +2.474555e+01 5.807314e+01 lineto +2.486466e+01 5.733848e+01 lineto +2.556446e+01 5.925975e+01 lineto +2.544742e+01 5.998161e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.623951e+01 6.185818e+01 moveto +2.544742e+01 5.998161e+01 lineto +2.556446e+01 5.925975e+01 lineto +2.635421e+01 6.115078e+01 lineto +2.623951e+01 6.185818e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.712003e+01 6.369858e+01 moveto +2.623951e+01 6.185818e+01 lineto +2.635421e+01 6.115078e+01 lineto +2.723212e+01 6.300725e+01 lineto +2.712003e+01 6.369858e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.808695e+01 6.54986e+01 moveto +2.712003e+01 6.369858e+01 lineto +2.723212e+01 6.300725e+01 lineto +2.819618e+01 6.482492e+01 lineto +2.808695e+01 6.54986e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.913808e+01 6.725415e+01 moveto +2.808695e+01 6.54986e+01 lineto +2.819618e+01 6.482492e+01 lineto +2.92442e+01 6.659965e+01 lineto +2.913808e+01 6.725415e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.027101e+01 6.896121e+01 moveto +2.913808e+01 6.725415e+01 lineto +2.92442e+01 6.659965e+01 lineto +3.037378e+01 6.832739e+01 lineto +3.027101e+01 6.896121e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.148317e+01 7.06159e+01 moveto +3.027101e+01 6.896121e+01 lineto +3.037378e+01 6.832739e+01 lineto +3.158235e+01 7.00042e+01 lineto +3.148317e+01 7.06159e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.277178e+01 7.221443e+01 moveto +3.148317e+01 7.06159e+01 lineto +3.158235e+01 7.00042e+01 lineto +3.286714e+01 7.162625e+01 lineto +3.277178e+01 7.221443e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.413391e+01 7.375316e+01 moveto +3.277178e+01 7.221443e+01 lineto +3.286714e+01 7.162625e+01 lineto +3.422524e+01 7.318984e+01 lineto +3.413391e+01 7.375316e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.556645e+01 7.522859e+01 moveto +3.413391e+01 7.375316e+01 lineto +3.422524e+01 7.318984e+01 lineto +3.565354e+01 7.469141e+01 lineto +3.556645e+01 7.522859e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.706613e+01 7.663734e+01 moveto +3.556645e+01 7.522859e+01 lineto +3.565354e+01 7.469141e+01 lineto +3.714879e+01 7.612753e+01 lineto +3.706613e+01 7.663734e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.862953e+01 7.79762e+01 moveto +3.706613e+01 7.663734e+01 lineto +3.714879e+01 7.612753e+01 lineto +3.870756e+01 7.749492e+01 lineto +3.862953e+01 7.79762e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.025309e+01 7.924212e+01 moveto +3.862953e+01 7.79762e+01 lineto +3.870756e+01 7.749492e+01 lineto +4.032631e+01 7.879047e+01 lineto +4.025309e+01 7.924212e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.19331e+01 8.043221e+01 moveto +4.025309e+01 7.924212e+01 lineto +4.032631e+01 7.879047e+01 lineto +4.200135e+01 8.001122e+01 lineto +4.19331e+01 8.043221e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.366572e+01 8.154375e+01 moveto +4.19331e+01 8.043221e+01 lineto +4.200135e+01 8.001122e+01 lineto +4.372885e+01 8.115439e+01 lineto +4.366572e+01 8.154375e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.544702e+01 8.257422e+01 moveto +4.366572e+01 8.154375e+01 lineto +4.372885e+01 8.115439e+01 lineto +4.550487e+01 8.221737e+01 lineto +4.544702e+01 8.257422e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.727291e+01 8.352125e+01 moveto +4.544702e+01 8.257422e+01 lineto +4.550487e+01 8.221737e+01 lineto +4.732537e+01 8.319772e+01 lineto +4.727291e+01 8.352125e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.913925e+01 8.438269e+01 moveto +4.727291e+01 8.352125e+01 lineto +4.732537e+01 8.319772e+01 lineto +4.918618e+01 8.409323e+01 lineto +4.913925e+01 8.438269e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.104176e+01 8.515658e+01 moveto +4.913925e+01 8.438269e+01 lineto +4.918618e+01 8.409323e+01 lineto +5.108306e+01 8.490184e+01 lineto +5.104176e+01 8.515658e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.297612e+01 8.584114e+01 moveto +5.104176e+01 8.515658e+01 lineto +5.108306e+01 8.490184e+01 lineto +5.30117e+01 8.56217e+01 lineto +5.297612e+01 8.584114e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.49379e+01 8.643483e+01 moveto +5.297612e+01 8.584114e+01 lineto +5.30117e+01 8.56217e+01 lineto +5.496768e+01 8.625119e+01 lineto +5.49379e+01 8.643483e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.692264e+01 8.693627e+01 moveto +5.49379e+01 8.643483e+01 lineto +5.496768e+01 8.625119e+01 lineto +5.694654e+01 8.678885e+01 lineto +5.692264e+01 8.693627e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.89258e+01 8.734433e+01 moveto +5.692264e+01 8.693627e+01 lineto +5.694654e+01 8.678885e+01 lineto +5.894377e+01 8.723348e+01 lineto +5.89258e+01 8.734433e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.094282e+01 8.765808e+01 moveto +5.89258e+01 8.734433e+01 lineto +5.894377e+01 8.723348e+01 lineto +6.095483e+01 8.758404e+01 lineto +6.094282e+01 8.765808e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.296909e+01 8.78768e+01 moveto +6.094282e+01 8.765808e+01 lineto +6.095483e+01 8.758404e+01 lineto +6.29751e+01 8.783974e+01 lineto +6.296909e+01 8.78768e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.296909e+01 8.78768e+01 lineto +6.29751e+01 8.783974e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.438772e+01 3.165321e+01 moveto +2.501708e+01 2.978145e+01 lineto +2.538225e+01 2.906325e+01 lineto +2.475864e+01 3.09237e+01 lineto +2.438772e+01 3.165321e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.3851e+01 3.355769e+01 moveto +2.438772e+01 3.165321e+01 lineto +2.475864e+01 3.09237e+01 lineto +2.422682e+01 3.281855e+01 lineto +2.3851e+01 3.355769e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.340815e+01 3.549056e+01 moveto +2.3851e+01 3.355769e+01 lineto +2.422682e+01 3.281855e+01 lineto +2.378801e+01 3.474346e+01 lineto +2.340815e+01 3.549056e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.306017e+01 3.74474e+01 moveto +2.340815e+01 3.549056e+01 lineto +2.378801e+01 3.474346e+01 lineto +2.344321e+01 3.669405e+01 lineto +2.306017e+01 3.74474e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.280786e+01 3.942375e+01 moveto +2.306017e+01 3.74474e+01 lineto +2.344321e+01 3.669405e+01 lineto +2.319321e+01 3.866587e+01 lineto +2.280786e+01 3.942375e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.26518e+01 4.14151e+01 moveto +2.280786e+01 3.942375e+01 lineto +2.319321e+01 3.866587e+01 lineto +2.303858e+01 4.065442e+01 lineto +2.26518e+01 4.14151e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.259235e+01 4.341691e+01 moveto +2.26518e+01 4.14151e+01 lineto +2.303858e+01 4.065442e+01 lineto +2.297966e+01 4.265516e+01 lineto +2.259235e+01 4.341691e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.262963e+01 4.542461e+01 moveto +2.259235e+01 4.341691e+01 lineto +2.297966e+01 4.265516e+01 lineto +2.30166e+01 4.466353e+01 lineto +2.262963e+01 4.542461e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.276356e+01 4.743363e+01 moveto +2.262963e+01 4.542461e+01 lineto +2.30166e+01 4.466353e+01 lineto +2.314931e+01 4.667495e+01 lineto +2.276356e+01 4.743363e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.299384e+01 4.943937e+01 moveto +2.276356e+01 4.743363e+01 lineto +2.314931e+01 4.667495e+01 lineto +2.337749e+01 4.868484e+01 lineto +2.299384e+01 4.943937e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.331994e+01 5.143727e+01 moveto +2.299384e+01 4.943937e+01 lineto +2.337749e+01 4.868484e+01 lineto +2.370061e+01 5.068859e+01 lineto +2.331994e+01 5.143727e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.374112e+01 5.342277e+01 moveto +2.331994e+01 5.143727e+01 lineto +2.370061e+01 5.068859e+01 lineto +2.411795e+01 5.268166e+01 lineto +2.374112e+01 5.342277e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.425642e+01 5.539133e+01 moveto +2.374112e+01 5.342277e+01 lineto +2.411795e+01 5.268166e+01 lineto +2.462854e+01 5.465948e+01 lineto +2.425642e+01 5.539133e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.486466e+01 5.733848e+01 moveto +2.425642e+01 5.539133e+01 lineto +2.462854e+01 5.465948e+01 lineto +2.523122e+01 5.661754e+01 lineto +2.486466e+01 5.733848e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.556446e+01 5.925975e+01 moveto +2.486466e+01 5.733848e+01 lineto +2.523122e+01 5.661754e+01 lineto +2.592463e+01 5.855139e+01 lineto +2.556446e+01 5.925975e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.635421e+01 6.115078e+01 moveto +2.556446e+01 5.925975e+01 lineto +2.592463e+01 5.855139e+01 lineto +2.670717e+01 6.04566e+01 lineto +2.635421e+01 6.115078e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.723212e+01 6.300725e+01 moveto +2.635421e+01 6.115078e+01 lineto +2.670717e+01 6.04566e+01 lineto +2.757706e+01 6.232884e+01 lineto +2.723212e+01 6.300725e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.819618e+01 6.482492e+01 moveto +2.723212e+01 6.300725e+01 lineto +2.757706e+01 6.232884e+01 lineto +2.853231e+01 6.416383e+01 lineto +2.819618e+01 6.482492e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.92442e+01 6.659965e+01 moveto +2.819618e+01 6.482492e+01 lineto +2.853231e+01 6.416383e+01 lineto +2.957076e+01 6.595738e+01 lineto +2.92442e+01 6.659965e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.037378e+01 6.832739e+01 moveto +2.92442e+01 6.659965e+01 lineto +2.957076e+01 6.595738e+01 lineto +3.069002e+01 6.770541e+01 lineto +3.037378e+01 6.832739e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.158235e+01 7.00042e+01 moveto +3.037378e+01 6.832739e+01 lineto +3.069002e+01 6.770541e+01 lineto +3.188755e+01 6.940393e+01 lineto +3.158235e+01 7.00042e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.286714e+01 7.162625e+01 moveto +3.158235e+01 7.00042e+01 lineto +3.188755e+01 6.940393e+01 lineto +3.316062e+01 7.104906e+01 lineto +3.286714e+01 7.162625e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.422524e+01 7.318984e+01 moveto +3.286714e+01 7.162625e+01 lineto +3.316062e+01 7.104906e+01 lineto +3.450631e+01 7.263705e+01 lineto +3.422524e+01 7.318984e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.565354e+01 7.469141e+01 moveto +3.422524e+01 7.318984e+01 lineto +3.450631e+01 7.263705e+01 lineto +3.592157e+01 7.416427e+01 lineto +3.565354e+01 7.469141e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.714879e+01 7.612753e+01 moveto +3.565354e+01 7.469141e+01 lineto +3.592157e+01 7.416427e+01 lineto +3.740316e+01 7.562725e+01 lineto +3.714879e+01 7.612753e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.870756e+01 7.749492e+01 moveto +3.714879e+01 7.612753e+01 lineto +3.740316e+01 7.562725e+01 lineto +3.894769e+01 7.702264e+01 lineto +3.870756e+01 7.749492e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.032631e+01 7.879047e+01 moveto +3.870756e+01 7.749492e+01 lineto +3.894769e+01 7.702264e+01 lineto +4.055166e+01 7.834727e+01 lineto +4.032631e+01 7.879047e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.200135e+01 8.001122e+01 moveto +4.032631e+01 7.879047e+01 lineto +4.055166e+01 7.834727e+01 lineto +4.22114e+01 7.959811e+01 lineto +4.200135e+01 8.001122e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.372885e+01 8.115439e+01 moveto +4.200135e+01 8.001122e+01 lineto +4.22114e+01 7.959811e+01 lineto +4.392312e+01 8.077231e+01 lineto +4.372885e+01 8.115439e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.550487e+01 8.221737e+01 moveto +4.372885e+01 8.115439e+01 lineto +4.392312e+01 8.077231e+01 lineto +4.568293e+01 8.186718e+01 lineto +4.550487e+01 8.221737e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.732537e+01 8.319772e+01 moveto +4.550487e+01 8.221737e+01 lineto +4.568293e+01 8.186718e+01 lineto +4.748679e+01 8.288024e+01 lineto +4.732537e+01 8.319772e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.918618e+01 8.409323e+01 moveto +4.732537e+01 8.319772e+01 lineto +4.748679e+01 8.288024e+01 lineto +4.933061e+01 8.380917e+01 lineto +4.918618e+01 8.409323e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.108306e+01 8.490184e+01 moveto +4.918618e+01 8.409323e+01 lineto +4.933061e+01 8.380917e+01 lineto +5.121017e+01 8.465185e+01 lineto +5.108306e+01 8.490184e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.30117e+01 8.56217e+01 moveto +5.108306e+01 8.490184e+01 lineto +5.121017e+01 8.465185e+01 lineto +5.312119e+01 8.540636e+01 lineto +5.30117e+01 8.56217e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.496768e+01 8.625119e+01 moveto +5.30117e+01 8.56217e+01 lineto +5.312119e+01 8.540636e+01 lineto +5.50593e+01 8.607098e+01 lineto +5.496768e+01 8.625119e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.694654e+01 8.678885e+01 moveto +5.496768e+01 8.625119e+01 lineto +5.50593e+01 8.607098e+01 lineto +5.702009e+01 8.664419e+01 lineto +5.694654e+01 8.678885e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.894377e+01 8.723348e+01 moveto +5.694654e+01 8.678885e+01 lineto +5.702009e+01 8.664419e+01 lineto +5.899909e+01 8.712469e+01 lineto +5.894377e+01 8.723348e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.095483e+01 8.758404e+01 moveto +5.894377e+01 8.723348e+01 lineto +5.899909e+01 8.712469e+01 lineto +6.099177e+01 8.751138e+01 lineto +6.095483e+01 8.758404e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.29751e+01 8.783974e+01 moveto +6.095483e+01 8.758404e+01 lineto +6.099177e+01 8.751138e+01 lineto +6.29936e+01 8.780337e+01 lineto +6.29751e+01 8.783974e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.29751e+01 8.783974e+01 lineto +6.29936e+01 8.780337e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.475864e+01 3.09237e+01 moveto +2.538225e+01 2.906325e+01 lineto +2.599168e+01 2.836316e+01 lineto +2.537766e+01 3.021259e+01 lineto +2.475864e+01 3.09237e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.422682e+01 3.281855e+01 moveto +2.475864e+01 3.09237e+01 lineto +2.537766e+01 3.021259e+01 lineto +2.485402e+01 3.209804e+01 lineto +2.422682e+01 3.281855e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.378801e+01 3.474346e+01 moveto +2.422682e+01 3.281855e+01 lineto +2.485402e+01 3.209804e+01 lineto +2.442196e+01 3.40152e+01 lineto +2.378801e+01 3.474346e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.344321e+01 3.669405e+01 moveto +2.378801e+01 3.474346e+01 lineto +2.442196e+01 3.40152e+01 lineto +2.408247e+01 3.59597e+01 lineto +2.344321e+01 3.669405e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.319321e+01 3.866587e+01 moveto +2.344321e+01 3.669405e+01 lineto +2.408247e+01 3.59597e+01 lineto +2.383631e+01 3.79271e+01 lineto +2.319321e+01 3.866587e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.303858e+01 4.065442e+01 moveto +2.319321e+01 3.866587e+01 lineto +2.383631e+01 3.79271e+01 lineto +2.368406e+01 3.991291e+01 lineto +2.303858e+01 4.065442e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.297966e+01 4.265516e+01 moveto +2.303858e+01 4.065442e+01 lineto +2.368406e+01 3.991291e+01 lineto +2.362605e+01 4.191261e+01 lineto +2.297966e+01 4.265516e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.30166e+01 4.466353e+01 moveto +2.297966e+01 4.265516e+01 lineto +2.362605e+01 4.191261e+01 lineto +2.366242e+01 4.392164e+01 lineto +2.30166e+01 4.466353e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.314931e+01 4.667495e+01 moveto +2.30166e+01 4.466353e+01 lineto +2.366242e+01 4.392164e+01 lineto +2.379309e+01 4.593541e+01 lineto +2.314931e+01 4.667495e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.337749e+01 4.868484e+01 moveto +2.314931e+01 4.667495e+01 lineto +2.379309e+01 4.593541e+01 lineto +2.401775e+01 4.794932e+01 lineto +2.337749e+01 4.868484e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.370061e+01 5.068859e+01 moveto +2.337749e+01 4.868484e+01 lineto +2.401775e+01 4.794932e+01 lineto +2.433591e+01 4.995879e+01 lineto +2.370061e+01 5.068859e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.411795e+01 5.268166e+01 moveto +2.370061e+01 5.068859e+01 lineto +2.433591e+01 4.995879e+01 lineto +2.474682e+01 5.195922e+01 lineto +2.411795e+01 5.268166e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.462854e+01 5.465948e+01 moveto +2.411795e+01 5.268166e+01 lineto +2.474682e+01 5.195922e+01 lineto +2.524956e+01 5.394607e+01 lineto +2.462854e+01 5.465948e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.523122e+01 5.661754e+01 moveto +2.462854e+01 5.465948e+01 lineto +2.524956e+01 5.394607e+01 lineto +2.584297e+01 5.591478e+01 lineto +2.523122e+01 5.661754e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.592463e+01 5.855139e+01 moveto +2.523122e+01 5.661754e+01 lineto +2.584297e+01 5.591478e+01 lineto +2.652571e+01 5.786088e+01 lineto +2.592463e+01 5.855139e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.670717e+01 6.04566e+01 moveto +2.592463e+01 5.855139e+01 lineto +2.652571e+01 5.786088e+01 lineto +2.729621e+01 5.977993e+01 lineto +2.670717e+01 6.04566e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.757706e+01 6.232884e+01 moveto +2.670717e+01 6.04566e+01 lineto +2.729621e+01 5.977993e+01 lineto +2.815272e+01 6.166753e+01 lineto +2.757706e+01 6.232884e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.853231e+01 6.416383e+01 moveto +2.757706e+01 6.232884e+01 lineto +2.815272e+01 6.166753e+01 lineto +2.909328e+01 6.35194e+01 lineto +2.853231e+01 6.416383e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.957076e+01 6.595738e+01 moveto +2.853231e+01 6.416383e+01 lineto +2.909328e+01 6.35194e+01 lineto +3.011576e+01 6.533131e+01 lineto +2.957076e+01 6.595738e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.069002e+01 6.770541e+01 moveto +2.957076e+01 6.595738e+01 lineto +3.011576e+01 6.533131e+01 lineto +3.12178e+01 6.709912e+01 lineto +3.069002e+01 6.770541e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.188755e+01 6.940393e+01 moveto +3.069002e+01 6.770541e+01 lineto +3.12178e+01 6.709912e+01 lineto +3.239691e+01 6.88188e+01 lineto +3.188755e+01 6.940393e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.316062e+01 7.104906e+01 moveto +3.188755e+01 6.940393e+01 lineto +3.239691e+01 6.88188e+01 lineto +3.365039e+01 7.048642e+01 lineto +3.316062e+01 7.104906e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.450631e+01 7.263705e+01 moveto +3.316062e+01 7.104906e+01 lineto +3.365039e+01 7.048642e+01 lineto +3.497539e+01 7.209819e+01 lineto +3.450631e+01 7.263705e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.592157e+01 7.416427e+01 moveto +3.450631e+01 7.263705e+01 lineto +3.497539e+01 7.209819e+01 lineto +3.636887e+01 7.365042e+01 lineto +3.592157e+01 7.416427e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.740316e+01 7.562725e+01 moveto +3.592157e+01 7.416427e+01 lineto +3.636887e+01 7.365042e+01 lineto +3.782767e+01 7.513958e+01 lineto +3.740316e+01 7.562725e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.894769e+01 7.702264e+01 moveto +3.740316e+01 7.562725e+01 lineto +3.782767e+01 7.513958e+01 lineto +3.934845e+01 7.656227e+01 lineto +3.894769e+01 7.702264e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.055166e+01 7.834727e+01 moveto +3.894769e+01 7.702264e+01 lineto +3.934845e+01 7.656227e+01 lineto +4.092774e+01 7.791524e+01 lineto +4.055166e+01 7.834727e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.22114e+01 7.959811e+01 moveto +4.055166e+01 7.834727e+01 lineto +4.092774e+01 7.791524e+01 lineto +4.256195e+01 7.919541e+01 lineto +4.22114e+01 7.959811e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.392312e+01 8.077231e+01 moveto +4.22114e+01 7.959811e+01 lineto +4.256195e+01 7.919541e+01 lineto +4.424734e+01 8.039985e+01 lineto +4.392312e+01 8.077231e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.568293e+01 8.186718e+01 moveto +4.392312e+01 8.077231e+01 lineto +4.424734e+01 8.039985e+01 lineto +4.598007e+01 8.152583e+01 lineto +4.568293e+01 8.186718e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.748679e+01 8.288024e+01 moveto +4.568293e+01 8.186718e+01 lineto +4.598007e+01 8.152583e+01 lineto +4.775619e+01 8.257076e+01 lineto +4.748679e+01 8.288024e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.933061e+01 8.380917e+01 moveto +4.748679e+01 8.288024e+01 lineto +4.775619e+01 8.257076e+01 lineto +4.957165e+01 8.353227e+01 lineto +4.933061e+01 8.380917e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.121017e+01 8.465185e+01 moveto +4.933061e+01 8.380917e+01 lineto +4.957165e+01 8.353227e+01 lineto +5.142229e+01 8.440817e+01 lineto +5.121017e+01 8.465185e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.312119e+01 8.540636e+01 moveto +5.121017e+01 8.465185e+01 lineto +5.142229e+01 8.440817e+01 lineto +5.330392e+01 8.519645e+01 lineto +5.312119e+01 8.540636e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.50593e+01 8.607098e+01 moveto +5.312119e+01 8.540636e+01 lineto +5.330392e+01 8.519645e+01 lineto +5.521222e+01 8.589532e+01 lineto +5.50593e+01 8.607098e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.702009e+01 8.664419e+01 moveto +5.50593e+01 8.607098e+01 lineto +5.521222e+01 8.589532e+01 lineto +5.714285e+01 8.650318e+01 lineto +5.702009e+01 8.664419e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.899909e+01 8.712469e+01 moveto +5.702009e+01 8.664419e+01 lineto +5.714285e+01 8.650318e+01 lineto +5.90914e+01 8.701865e+01 lineto +5.899909e+01 8.712469e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.099177e+01 8.751138e+01 moveto +5.899909e+01 8.712469e+01 lineto +5.90914e+01 8.701865e+01 lineto +6.105343e+01 8.744055e+01 lineto +6.099177e+01 8.751138e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.29936e+01 8.780337e+01 moveto +6.099177e+01 8.751138e+01 lineto +6.105343e+01 8.744055e+01 lineto +6.302446e+01 8.776791e+01 lineto +6.29936e+01 8.780337e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.29936e+01 8.780337e+01 lineto +6.302446e+01 8.776791e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.537766e+01 3.021259e+01 moveto +2.599168e+01 2.836316e+01 lineto +2.68416e+01 2.768549e+01 lineto +2.624096e+01 2.952426e+01 lineto +2.537766e+01 3.021259e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.485402e+01 3.209804e+01 moveto +2.537766e+01 3.021259e+01 lineto +2.624096e+01 2.952426e+01 lineto +2.572873e+01 3.140061e+01 lineto +2.485402e+01 3.209804e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.442196e+01 3.40152e+01 moveto +2.485402e+01 3.209804e+01 lineto +2.572873e+01 3.140061e+01 lineto +2.530609e+01 3.331026e+01 lineto +2.442196e+01 3.40152e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.408247e+01 3.59597e+01 moveto +2.442196e+01 3.40152e+01 lineto +2.530609e+01 3.331026e+01 lineto +2.497399e+01 3.524886e+01 lineto +2.408247e+01 3.59597e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.383631e+01 3.79271e+01 moveto +2.408247e+01 3.59597e+01 lineto +2.497399e+01 3.524886e+01 lineto +2.47332e+01 3.721198e+01 lineto +2.383631e+01 3.79271e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.368406e+01 3.991291e+01 moveto +2.383631e+01 3.79271e+01 lineto +2.47332e+01 3.721198e+01 lineto +2.458426e+01 3.919516e+01 lineto +2.368406e+01 3.991291e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.362605e+01 4.191261e+01 moveto +2.368406e+01 3.991291e+01 lineto +2.458426e+01 3.919516e+01 lineto +2.452752e+01 4.119385e+01 lineto +2.362605e+01 4.191261e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.366242e+01 4.392164e+01 moveto +2.362605e+01 4.191261e+01 lineto +2.452752e+01 4.119385e+01 lineto +2.45631e+01 4.320351e+01 lineto +2.366242e+01 4.392164e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.379309e+01 4.593541e+01 moveto +2.366242e+01 4.392164e+01 lineto +2.45631e+01 4.320351e+01 lineto +2.469092e+01 4.521954e+01 lineto +2.379309e+01 4.593541e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.401775e+01 4.794932e+01 moveto +2.379309e+01 4.593541e+01 lineto +2.469092e+01 4.521954e+01 lineto +2.491069e+01 4.723736e+01 lineto +2.401775e+01 4.794932e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.433591e+01 4.995879e+01 moveto +2.401775e+01 4.794932e+01 lineto +2.491069e+01 4.723736e+01 lineto +2.522191e+01 4.925235e+01 lineto +2.433591e+01 4.995879e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.474682e+01 5.195922e+01 moveto +2.433591e+01 4.995879e+01 lineto +2.522191e+01 4.925235e+01 lineto +2.562387e+01 5.125993e+01 lineto +2.474682e+01 5.195922e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.524956e+01 5.394607e+01 moveto +2.474682e+01 5.195922e+01 lineto +2.562387e+01 5.125993e+01 lineto +2.611566e+01 5.325551e+01 lineto +2.524956e+01 5.394607e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.584297e+01 5.591478e+01 moveto +2.524956e+01 5.394607e+01 lineto +2.611566e+01 5.325551e+01 lineto +2.669614e+01 5.523453e+01 lineto +2.584297e+01 5.591478e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.652571e+01 5.786088e+01 moveto +2.584297e+01 5.591478e+01 lineto +2.669614e+01 5.523453e+01 lineto +2.7364e+01 5.719249e+01 lineto +2.652571e+01 5.786088e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.729621e+01 5.977993e+01 moveto +2.652571e+01 5.786088e+01 lineto +2.7364e+01 5.719249e+01 lineto +2.811771e+01 5.912492e+01 lineto +2.729621e+01 5.977993e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.815272e+01 6.166753e+01 moveto +2.729621e+01 5.977993e+01 lineto +2.811771e+01 5.912492e+01 lineto +2.895556e+01 6.102741e+01 lineto +2.815272e+01 6.166753e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.909328e+01 6.35194e+01 moveto +2.815272e+01 6.166753e+01 lineto +2.895556e+01 6.102741e+01 lineto +2.987563e+01 6.289562e+01 lineto +2.909328e+01 6.35194e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.011576e+01 6.533131e+01 moveto +2.909328e+01 6.35194e+01 lineto +2.987563e+01 6.289562e+01 lineto +3.087582e+01 6.472529e+01 lineto +3.011576e+01 6.533131e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.12178e+01 6.709912e+01 moveto +3.011576e+01 6.533131e+01 lineto +3.087582e+01 6.472529e+01 lineto +3.195386e+01 6.651224e+01 lineto +3.12178e+01 6.709912e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.239691e+01 6.88188e+01 moveto +3.12178e+01 6.709912e+01 lineto +3.195386e+01 6.651224e+01 lineto +3.310728e+01 6.82524e+01 lineto +3.239691e+01 6.88188e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.365039e+01 7.048642e+01 moveto +3.239691e+01 6.88188e+01 lineto +3.310728e+01 6.82524e+01 lineto +3.433345e+01 6.99418e+01 lineto +3.365039e+01 7.048642e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.497539e+01 7.209819e+01 moveto +3.365039e+01 7.048642e+01 lineto +3.433345e+01 6.99418e+01 lineto +3.562957e+01 7.157659e+01 lineto +3.497539e+01 7.209819e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.636887e+01 7.365042e+01 moveto +3.497539e+01 7.209819e+01 lineto +3.562957e+01 7.157659e+01 lineto +3.69927e+01 7.315303e+01 lineto +3.636887e+01 7.365042e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.782767e+01 7.513958e+01 moveto +3.636887e+01 7.365042e+01 lineto +3.69927e+01 7.315303e+01 lineto +3.841971e+01 7.466753e+01 lineto +3.782767e+01 7.513958e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.934845e+01 7.656227e+01 moveto +3.782767e+01 7.513958e+01 lineto +3.841971e+01 7.466753e+01 lineto +3.990735e+01 7.611664e+01 lineto +3.934845e+01 7.656227e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.092774e+01 7.791524e+01 moveto +3.934845e+01 7.656227e+01 lineto +3.990735e+01 7.611664e+01 lineto +4.145224e+01 7.749705e+01 lineto +4.092774e+01 7.791524e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.256195e+01 7.919541e+01 moveto +4.092774e+01 7.791524e+01 lineto +4.145224e+01 7.749705e+01 lineto +4.305084e+01 7.880561e+01 lineto +4.256195e+01 7.919541e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.424734e+01 8.039985e+01 moveto +4.256195e+01 7.919541e+01 lineto +4.305084e+01 7.880561e+01 lineto +4.469951e+01 8.003933e+01 lineto +4.424734e+01 8.039985e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.598007e+01 8.152583e+01 moveto +4.424734e+01 8.039985e+01 lineto +4.469951e+01 8.003933e+01 lineto +4.639449e+01 8.119541e+01 lineto +4.598007e+01 8.152583e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.775619e+01 8.257076e+01 moveto +4.598007e+01 8.152583e+01 lineto +4.639449e+01 8.119541e+01 lineto +4.813191e+01 8.22712e+01 lineto +4.775619e+01 8.257076e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.957165e+01 8.353227e+01 moveto +4.775619e+01 8.257076e+01 lineto +4.813191e+01 8.22712e+01 lineto +4.99078e+01 8.326425e+01 lineto +4.957165e+01 8.353227e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.142229e+01 8.440817e+01 moveto +4.957165e+01 8.353227e+01 lineto +4.99078e+01 8.326425e+01 lineto +5.171813e+01 8.417229e+01 lineto +5.142229e+01 8.440817e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.330392e+01 8.519645e+01 moveto +5.142229e+01 8.440817e+01 lineto +5.171813e+01 8.417229e+01 lineto +5.355875e+01 8.499326e+01 lineto +5.330392e+01 8.519645e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.521222e+01 8.589532e+01 moveto +5.330392e+01 8.519645e+01 lineto +5.355875e+01 8.499326e+01 lineto +5.542548e+01 8.572528e+01 lineto +5.521222e+01 8.589532e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.714285e+01 8.650318e+01 moveto +5.521222e+01 8.589532e+01 lineto +5.542548e+01 8.572528e+01 lineto +5.731404e+01 8.636668e+01 lineto +5.714285e+01 8.650318e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.90914e+01 8.701865e+01 moveto +5.714285e+01 8.650318e+01 lineto +5.731404e+01 8.636668e+01 lineto +5.922014e+01 8.6916e+01 lineto +5.90914e+01 8.701865e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.105343e+01 8.744055e+01 moveto +5.90914e+01 8.701865e+01 lineto +5.922014e+01 8.6916e+01 lineto +6.113942e+01 8.737198e+01 lineto +6.105343e+01 8.744055e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.302446e+01 8.776791e+01 moveto +6.105343e+01 8.744055e+01 lineto +6.113942e+01 8.737198e+01 lineto +6.30675e+01 8.773359e+01 lineto +6.302446e+01 8.776791e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.302446e+01 8.776791e+01 lineto +6.30675e+01 8.773359e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.624096e+01 2.952426e+01 moveto +2.68416e+01 2.768549e+01 lineto +2.792679e+01 2.703443e+01 lineto +2.734323e+01 2.886294e+01 lineto +2.624096e+01 2.952426e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.572873e+01 3.140061e+01 moveto +2.624096e+01 2.952426e+01 lineto +2.734323e+01 2.886294e+01 lineto +2.684557e+01 3.073055e+01 lineto +2.572873e+01 3.140061e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.530609e+01 3.331026e+01 moveto +2.572873e+01 3.140061e+01 lineto +2.684557e+01 3.073055e+01 lineto +2.643494e+01 3.263299e+01 lineto +2.530609e+01 3.331026e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.497399e+01 3.524886e+01 moveto +2.530609e+01 3.331026e+01 lineto +2.643494e+01 3.263299e+01 lineto +2.611229e+01 3.456593e+01 lineto +2.497399e+01 3.524886e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.47332e+01 3.721198e+01 moveto +2.497399e+01 3.524886e+01 lineto +2.611229e+01 3.456593e+01 lineto +2.587835e+01 3.652494e+01 lineto +2.47332e+01 3.721198e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.458426e+01 3.919516e+01 moveto +2.47332e+01 3.721198e+01 lineto +2.587835e+01 3.652494e+01 lineto +2.573364e+01 3.850557e+01 lineto +2.458426e+01 3.919516e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.452752e+01 4.119385e+01 moveto +2.458426e+01 3.919516e+01 lineto +2.573364e+01 3.850557e+01 lineto +2.567851e+01 4.05033e+01 lineto +2.452752e+01 4.119385e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.45631e+01 4.320351e+01 moveto +2.452752e+01 4.119385e+01 lineto +2.567851e+01 4.05033e+01 lineto +2.571308e+01 4.251356e+01 lineto +2.45631e+01 4.320351e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.469092e+01 4.521954e+01 moveto +2.45631e+01 4.320351e+01 lineto +2.571308e+01 4.251356e+01 lineto +2.583727e+01 4.453178e+01 lineto +2.469092e+01 4.521954e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.491069e+01 4.723736e+01 moveto +2.469092e+01 4.521954e+01 lineto +2.583727e+01 4.453178e+01 lineto +2.605079e+01 4.655335e+01 lineto +2.491069e+01 4.723736e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.522191e+01 4.925235e+01 moveto +2.491069e+01 4.723736e+01 lineto +2.605079e+01 4.655335e+01 lineto +2.635316e+01 4.857365e+01 lineto +2.522191e+01 4.925235e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.562387e+01 5.125993e+01 moveto +2.522191e+01 4.925235e+01 lineto +2.635316e+01 4.857365e+01 lineto +2.674369e+01 5.058808e+01 lineto +2.562387e+01 5.125993e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.611566e+01 5.325551e+01 moveto +2.562387e+01 5.125993e+01 lineto +2.674369e+01 5.058808e+01 lineto +2.722149e+01 5.259205e+01 lineto +2.611566e+01 5.325551e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.669614e+01 5.523453e+01 moveto +2.611566e+01 5.325551e+01 lineto +2.722149e+01 5.259205e+01 lineto +2.778546e+01 5.458098e+01 lineto +2.669614e+01 5.523453e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.7364e+01 5.719249e+01 moveto +2.669614e+01 5.523453e+01 lineto +2.778546e+01 5.458098e+01 lineto +2.843433e+01 5.655034e+01 lineto +2.7364e+01 5.719249e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.811771e+01 5.912492e+01 moveto +2.7364e+01 5.719249e+01 lineto +2.843433e+01 5.655034e+01 lineto +2.916661e+01 5.849563e+01 lineto +2.811771e+01 5.912492e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.895556e+01 6.102741e+01 moveto +2.811771e+01 5.912492e+01 lineto +2.916661e+01 5.849563e+01 lineto +2.998063e+01 6.041241e+01 lineto +2.895556e+01 6.102741e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.987563e+01 6.289562e+01 moveto +2.895556e+01 6.102741e+01 lineto +2.998063e+01 6.041241e+01 lineto +3.087453e+01 6.229632e+01 lineto +2.987563e+01 6.289562e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.087582e+01 6.472529e+01 moveto +2.987563e+01 6.289562e+01 lineto +3.087453e+01 6.229632e+01 lineto +3.184628e+01 6.414305e+01 lineto +3.087582e+01 6.472529e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.195386e+01 6.651224e+01 moveto +3.087582e+01 6.472529e+01 lineto +3.184628e+01 6.414305e+01 lineto +3.289366e+01 6.59484e+01 lineto +3.195386e+01 6.651224e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.310728e+01 6.82524e+01 moveto +3.195386e+01 6.651224e+01 lineto +3.289366e+01 6.59484e+01 lineto +3.401427e+01 6.770824e+01 lineto +3.310728e+01 6.82524e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.433345e+01 6.99418e+01 moveto +3.310728e+01 6.82524e+01 lineto +3.401427e+01 6.770824e+01 lineto +3.520557e+01 6.941856e+01 lineto +3.433345e+01 6.99418e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.562957e+01 7.157659e+01 moveto +3.433345e+01 6.99418e+01 lineto +3.520557e+01 6.941856e+01 lineto +3.646484e+01 7.107546e+01 lineto +3.562957e+01 7.157659e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.69927e+01 7.315303e+01 moveto +3.562957e+01 7.157659e+01 lineto +3.646484e+01 7.107546e+01 lineto +3.77892e+01 7.267516e+01 lineto +3.69927e+01 7.315303e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.841971e+01 7.466753e+01 moveto +3.69927e+01 7.315303e+01 lineto +3.77892e+01 7.267516e+01 lineto +3.917562e+01 7.421401e+01 lineto +3.841971e+01 7.466753e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.990735e+01 7.611664e+01 moveto +3.841971e+01 7.466753e+01 lineto +3.917562e+01 7.421401e+01 lineto +4.062096e+01 7.56885e+01 lineto +3.990735e+01 7.611664e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.145224e+01 7.749705e+01 moveto +3.990735e+01 7.611664e+01 lineto +4.062096e+01 7.56885e+01 lineto +4.212191e+01 7.709527e+01 lineto +4.145224e+01 7.749705e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.305084e+01 7.880561e+01 moveto +4.145224e+01 7.749705e+01 lineto +4.212191e+01 7.709527e+01 lineto +4.367505e+01 7.843111e+01 lineto +4.305084e+01 7.880561e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.469951e+01 8.003933e+01 moveto +4.305084e+01 7.880561e+01 lineto +4.367505e+01 7.843111e+01 lineto +4.527683e+01 7.969296e+01 lineto +4.469951e+01 8.003933e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.639449e+01 8.119541e+01 moveto +4.469951e+01 8.003933e+01 lineto +4.527683e+01 7.969296e+01 lineto +4.692361e+01 8.087796e+01 lineto +4.639449e+01 8.119541e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.813191e+01 8.22712e+01 moveto +4.639449e+01 8.119541e+01 lineto +4.692361e+01 8.087796e+01 lineto +4.861162e+01 8.198339e+01 lineto +4.813191e+01 8.22712e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.99078e+01 8.326425e+01 moveto +4.813191e+01 8.22712e+01 lineto +4.861162e+01 8.198339e+01 lineto +5.033701e+01 8.300674e+01 lineto +4.99078e+01 8.326425e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.171813e+01 8.417229e+01 moveto +4.99078e+01 8.326425e+01 lineto +5.033701e+01 8.300674e+01 lineto +5.209585e+01 8.394567e+01 lineto +5.171813e+01 8.417229e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.355875e+01 8.499326e+01 moveto +5.171813e+01 8.417229e+01 lineto +5.209585e+01 8.394567e+01 lineto +5.388413e+01 8.479805e+01 lineto +5.355875e+01 8.499326e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.542548e+01 8.572528e+01 moveto +5.355875e+01 8.499326e+01 lineto +5.388413e+01 8.479805e+01 lineto +5.569777e+01 8.556192e+01 lineto +5.542548e+01 8.572528e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.731404e+01 8.636668e+01 moveto +5.542548e+01 8.572528e+01 lineto +5.569777e+01 8.556192e+01 lineto +5.753262e+01 8.623554e+01 lineto +5.731404e+01 8.636668e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.922014e+01 8.6916e+01 moveto +5.731404e+01 8.636668e+01 lineto +5.753262e+01 8.623554e+01 lineto +5.938451e+01 8.681738e+01 lineto +5.922014e+01 8.6916e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.113942e+01 8.737198e+01 moveto +5.922014e+01 8.6916e+01 lineto +5.938451e+01 8.681738e+01 lineto +6.124921e+01 8.730611e+01 lineto +6.113942e+01 8.737198e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.30675e+01 8.773359e+01 moveto +6.113942e+01 8.737198e+01 lineto +6.124921e+01 8.730611e+01 lineto +6.312246e+01 8.770062e+01 lineto +6.30675e+01 8.773359e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.30675e+01 8.773359e+01 lineto +6.312246e+01 8.770062e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.734323e+01 2.886294e+01 moveto +2.792679e+01 2.703443e+01 lineto +2.924054e+01 2.641397e+01 lineto +2.867766e+01 2.823272e+01 lineto +2.734323e+01 2.886294e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.684557e+01 3.073055e+01 moveto +2.734323e+01 2.886294e+01 lineto +2.867766e+01 2.823272e+01 lineto +2.819764e+01 3.009201e+01 lineto +2.684557e+01 3.073055e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.643494e+01 3.263299e+01 moveto +2.684557e+01 3.073055e+01 lineto +2.819764e+01 3.009201e+01 lineto +2.780156e+01 3.198757e+01 lineto +2.643494e+01 3.263299e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.611229e+01 3.456593e+01 moveto +2.643494e+01 3.263299e+01 lineto +2.780156e+01 3.198757e+01 lineto +2.749034e+01 3.391511e+01 lineto +2.611229e+01 3.456593e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.587835e+01 3.652494e+01 moveto +2.611229e+01 3.456593e+01 lineto +2.749034e+01 3.391511e+01 lineto +2.726469e+01 3.587021e+01 lineto +2.587835e+01 3.652494e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.573364e+01 3.850557e+01 moveto +2.587835e+01 3.652494e+01 lineto +2.726469e+01 3.587021e+01 lineto +2.712511e+01 3.784842e+01 lineto +2.573364e+01 3.850557e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.567851e+01 4.05033e+01 moveto +2.573364e+01 3.850557e+01 lineto +2.712511e+01 3.784842e+01 lineto +2.707194e+01 3.984522e+01 lineto +2.567851e+01 4.05033e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.571308e+01 4.251356e+01 moveto +2.567851e+01 4.05033e+01 lineto +2.707194e+01 3.984522e+01 lineto +2.710528e+01 4.185606e+01 lineto +2.571308e+01 4.251356e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.583727e+01 4.453178e+01 moveto +2.571308e+01 4.251356e+01 lineto +2.710528e+01 4.185606e+01 lineto +2.722507e+01 4.387636e+01 lineto +2.583727e+01 4.453178e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.605079e+01 4.655335e+01 moveto +2.583727e+01 4.453178e+01 lineto +2.722507e+01 4.387636e+01 lineto +2.743102e+01 4.59015e+01 lineto +2.605079e+01 4.655335e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.635316e+01 4.857365e+01 moveto +2.605079e+01 4.655335e+01 lineto +2.743102e+01 4.59015e+01 lineto +2.772268e+01 4.792686e+01 lineto +2.635316e+01 4.857365e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.674369e+01 5.058808e+01 moveto +2.635316e+01 4.857365e+01 lineto +2.772268e+01 4.792686e+01 lineto +2.809937e+01 4.994783e+01 lineto +2.674369e+01 5.058808e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.722149e+01 5.259205e+01 moveto +2.674369e+01 5.058808e+01 lineto +2.809937e+01 4.994783e+01 lineto +2.856023e+01 5.19598e+01 lineto +2.722149e+01 5.259205e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.778546e+01 5.458098e+01 moveto +2.722149e+01 5.259205e+01 lineto +2.856023e+01 5.19598e+01 lineto +2.910422e+01 5.395816e+01 lineto +2.778546e+01 5.458098e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.843433e+01 5.655034e+01 moveto +2.778546e+01 5.458098e+01 lineto +2.910422e+01 5.395816e+01 lineto +2.97301e+01 5.593838e+01 lineto +2.843433e+01 5.655034e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.916661e+01 5.849563e+01 moveto +2.843433e+01 5.655034e+01 lineto +2.97301e+01 5.593838e+01 lineto +3.043643e+01 5.789592e+01 lineto +2.916661e+01 5.849563e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.998063e+01 6.041241e+01 moveto +2.916661e+01 5.849563e+01 lineto +3.043643e+01 5.789592e+01 lineto +3.12216e+01 5.982633e+01 lineto +2.998063e+01 6.041241e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.087453e+01 6.229632e+01 moveto +2.998063e+01 6.041241e+01 lineto +3.12216e+01 5.982633e+01 lineto +3.208383e+01 6.17252e+01 lineto +3.087453e+01 6.229632e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.184628e+01 6.414305e+01 moveto +3.087453e+01 6.229632e+01 lineto +3.208383e+01 6.17252e+01 lineto +3.302114e+01 6.35882e+01 lineto +3.184628e+01 6.414305e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.289366e+01 6.59484e+01 moveto +3.184628e+01 6.414305e+01 lineto +3.302114e+01 6.35882e+01 lineto +3.40314e+01 6.541107e+01 lineto +3.289366e+01 6.59484e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.401427e+01 6.770824e+01 moveto +3.289366e+01 6.59484e+01 lineto +3.40314e+01 6.541107e+01 lineto +3.511231e+01 6.718967e+01 lineto +3.401427e+01 6.770824e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.520557e+01 6.941856e+01 moveto +3.401427e+01 6.770824e+01 lineto +3.511231e+01 6.718967e+01 lineto +3.626139e+01 6.891993e+01 lineto +3.520557e+01 6.941856e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.646484e+01 7.107546e+01 moveto +3.520557e+01 6.941856e+01 lineto +3.626139e+01 6.891993e+01 lineto +3.747603e+01 7.05979e+01 lineto +3.646484e+01 7.107546e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.77892e+01 7.267516e+01 moveto +3.646484e+01 7.107546e+01 lineto +3.747603e+01 7.05979e+01 lineto +3.875346e+01 7.221977e+01 lineto +3.77892e+01 7.267516e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.917562e+01 7.421401e+01 moveto +3.77892e+01 7.267516e+01 lineto +3.875346e+01 7.221977e+01 lineto +4.009076e+01 7.378182e+01 lineto +3.917562e+01 7.421401e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.062096e+01 7.56885e+01 moveto +3.917562e+01 7.421401e+01 lineto +4.009076e+01 7.378182e+01 lineto +4.148488e+01 7.52805e+01 lineto +4.062096e+01 7.56885e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.212191e+01 7.709527e+01 moveto +4.062096e+01 7.56885e+01 lineto +4.148488e+01 7.52805e+01 lineto +4.293264e+01 7.671239e+01 lineto +4.212191e+01 7.709527e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.367505e+01 7.843111e+01 moveto +4.212191e+01 7.709527e+01 lineto +4.293264e+01 7.671239e+01 lineto +4.443074e+01 7.807421e+01 lineto +4.367505e+01 7.843111e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.527683e+01 7.969296e+01 moveto +4.367505e+01 7.843111e+01 lineto +4.443074e+01 7.807421e+01 lineto +4.597576e+01 7.936287e+01 lineto +4.527683e+01 7.969296e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.692361e+01 8.087796e+01 moveto +4.527683e+01 7.969296e+01 lineto +4.597576e+01 7.936287e+01 lineto +4.756418e+01 8.057543e+01 lineto +4.692361e+01 8.087796e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.861162e+01 8.198339e+01 moveto +4.692361e+01 8.087796e+01 lineto +4.756418e+01 8.057543e+01 lineto +4.919237e+01 8.170912e+01 lineto +4.861162e+01 8.198339e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.033701e+01 8.300674e+01 moveto +4.861162e+01 8.198339e+01 lineto +4.919237e+01 8.170912e+01 lineto +5.085662e+01 8.276134e+01 lineto +5.033701e+01 8.300674e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.209585e+01 8.394567e+01 moveto +5.033701e+01 8.300674e+01 lineto +5.085662e+01 8.276134e+01 lineto +5.255313e+01 8.372971e+01 lineto +5.209585e+01 8.394567e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.388413e+01 8.479805e+01 moveto +5.209585e+01 8.394567e+01 lineto +5.255313e+01 8.372971e+01 lineto +5.427804e+01 8.461201e+01 lineto +5.388413e+01 8.479805e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.569777e+01 8.556192e+01 moveto +5.388413e+01 8.479805e+01 lineto +5.427804e+01 8.461201e+01 lineto +5.602741e+01 8.540624e+01 lineto +5.569777e+01 8.556192e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.753262e+01 8.623554e+01 moveto +5.569777e+01 8.556192e+01 lineto +5.602741e+01 8.540624e+01 lineto +5.779724e+01 8.611057e+01 lineto +5.753262e+01 8.623554e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.938451e+01 8.681738e+01 moveto +5.753262e+01 8.623554e+01 lineto +5.779724e+01 8.611057e+01 lineto +5.95835e+01 8.67234e+01 lineto +5.938451e+01 8.681738e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.124921e+01 8.730611e+01 moveto +5.938451e+01 8.681738e+01 lineto +5.95835e+01 8.67234e+01 lineto +6.138212e+01 8.724334e+01 lineto +6.124921e+01 8.730611e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.312246e+01 8.770062e+01 moveto +6.124921e+01 8.730611e+01 lineto +6.138212e+01 8.724334e+01 lineto +6.3189e+01 8.76692e+01 lineto +6.312246e+01 8.770062e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.312246e+01 8.770062e+01 lineto +6.3189e+01 8.76692e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.867766e+01 2.823272e+01 moveto +2.924054e+01 2.641397e+01 lineto +3.077477e+01 2.582796e+01 lineto +3.023604e+01 2.763749e+01 lineto +2.867766e+01 2.823272e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.819764e+01 3.009201e+01 moveto +2.867766e+01 2.823272e+01 lineto +3.023604e+01 2.763749e+01 lineto +2.97766e+01 2.94889e+01 lineto +2.819764e+01 3.009201e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.780156e+01 3.198757e+01 moveto +2.819764e+01 3.009201e+01 lineto +2.97766e+01 2.94889e+01 lineto +2.939752e+01 3.137798e+01 lineto +2.780156e+01 3.198757e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.749034e+01 3.391511e+01 moveto +2.780156e+01 3.198757e+01 lineto +2.939752e+01 3.137798e+01 lineto +2.909966e+01 3.330041e+01 lineto +2.749034e+01 3.391511e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.726469e+01 3.587021e+01 moveto +2.749034e+01 3.391511e+01 lineto +2.909966e+01 3.330041e+01 lineto +2.888368e+01 3.525181e+01 lineto +2.726469e+01 3.587021e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.712511e+01 3.784842e+01 moveto +2.726469e+01 3.587021e+01 lineto +2.888368e+01 3.525181e+01 lineto +2.87501e+01 3.722774e+01 lineto +2.712511e+01 3.784842e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.707194e+01 3.984522e+01 moveto +2.712511e+01 3.784842e+01 lineto +2.87501e+01 3.722774e+01 lineto +2.86992e+01 3.922367e+01 lineto +2.707194e+01 3.984522e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.710528e+01 4.185606e+01 moveto +2.707194e+01 3.984522e+01 lineto +2.86992e+01 3.922367e+01 lineto +2.873111e+01 4.123506e+01 lineto +2.710528e+01 4.185606e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.722507e+01 4.387636e+01 moveto +2.710528e+01 4.185606e+01 lineto +2.873111e+01 4.123506e+01 lineto +2.884576e+01 4.325732e+01 lineto +2.722507e+01 4.387636e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.743102e+01 4.59015e+01 moveto +2.722507e+01 4.387636e+01 lineto +2.884576e+01 4.325732e+01 lineto +2.904288e+01 4.528583e+01 lineto +2.743102e+01 4.59015e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.772268e+01 4.792686e+01 moveto +2.743102e+01 4.59015e+01 lineto +2.904288e+01 4.528583e+01 lineto +2.932202e+01 4.731597e+01 lineto +2.772268e+01 4.792686e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.809937e+01 4.994783e+01 moveto +2.772268e+01 4.792686e+01 lineto +2.932202e+01 4.731597e+01 lineto +2.968255e+01 4.934312e+01 lineto +2.809937e+01 4.994783e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.856023e+01 5.19598e+01 moveto +2.809937e+01 4.994783e+01 lineto +2.968255e+01 4.934312e+01 lineto +3.012365e+01 5.136263e+01 lineto +2.856023e+01 5.19598e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.910422e+01 5.395816e+01 moveto +2.856023e+01 5.19598e+01 lineto +3.012365e+01 5.136263e+01 lineto +3.06443e+01 5.336992e+01 lineto +2.910422e+01 5.395816e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.97301e+01 5.593838e+01 moveto +2.910422e+01 5.395816e+01 lineto +3.06443e+01 5.336992e+01 lineto +3.124332e+01 5.536039e+01 lineto +2.97301e+01 5.593838e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.043643e+01 5.789592e+01 moveto +2.97301e+01 5.593838e+01 lineto +3.124332e+01 5.536039e+01 lineto +3.191934e+01 5.732951e+01 lineto +3.043643e+01 5.789592e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.12216e+01 5.982633e+01 moveto +3.043643e+01 5.789592e+01 lineto +3.191934e+01 5.732951e+01 lineto +3.267083e+01 5.927278e+01 lineto +3.12216e+01 5.982633e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.208383e+01 6.17252e+01 moveto +3.12216e+01 5.982633e+01 lineto +3.267083e+01 5.927278e+01 lineto +3.349606e+01 6.118578e+01 lineto +3.208383e+01 6.17252e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.302114e+01 6.35882e+01 moveto +3.208383e+01 6.17252e+01 lineto +3.349606e+01 6.118578e+01 lineto +3.439316e+01 6.306414e+01 lineto +3.302114e+01 6.35882e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.40314e+01 6.541107e+01 moveto +3.302114e+01 6.35882e+01 lineto +3.439316e+01 6.306414e+01 lineto +3.536008e+01 6.490357e+01 lineto +3.40314e+01 6.541107e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.511231e+01 6.718967e+01 moveto +3.40314e+01 6.541107e+01 lineto +3.536008e+01 6.490357e+01 lineto +3.639461e+01 6.669988e+01 lineto +3.511231e+01 6.718967e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.626139e+01 6.891993e+01 moveto +3.511231e+01 6.718967e+01 lineto +3.639461e+01 6.669988e+01 lineto +3.749439e+01 6.844897e+01 lineto +3.626139e+01 6.891993e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.747603e+01 7.05979e+01 moveto +3.626139e+01 6.891993e+01 lineto +3.749439e+01 6.844897e+01 lineto +3.865692e+01 7.014685e+01 lineto +3.747603e+01 7.05979e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.875346e+01 7.221977e+01 moveto +3.747603e+01 7.05979e+01 lineto +3.865692e+01 7.014685e+01 lineto +3.987954e+01 7.178965e+01 lineto +3.875346e+01 7.221977e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.009076e+01 7.378182e+01 moveto +3.875346e+01 7.221977e+01 lineto +3.987954e+01 7.178965e+01 lineto +4.115946e+01 7.337362e+01 lineto +4.009076e+01 7.378182e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.148488e+01 7.52805e+01 moveto +4.009076e+01 7.378182e+01 lineto +4.115946e+01 7.337362e+01 lineto +4.249377e+01 7.489514e+01 lineto +4.148488e+01 7.52805e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.293264e+01 7.671239e+01 moveto +4.148488e+01 7.52805e+01 lineto +4.249377e+01 7.489514e+01 lineto +4.387941e+01 7.635075e+01 lineto +4.293264e+01 7.671239e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.443074e+01 7.807421e+01 moveto +4.293264e+01 7.671239e+01 lineto +4.387941e+01 7.635075e+01 lineto +4.531324e+01 7.773713e+01 lineto +4.443074e+01 7.807421e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.597576e+01 7.936287e+01 moveto +4.443074e+01 7.807421e+01 lineto +4.531324e+01 7.773713e+01 lineto +4.679197e+01 7.905111e+01 lineto +4.597576e+01 7.936287e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.756418e+01 8.057543e+01 moveto +4.597576e+01 7.936287e+01 lineto +4.679197e+01 7.905111e+01 lineto +4.831224e+01 8.02897e+01 lineto +4.756418e+01 8.057543e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.919237e+01 8.170912e+01 moveto +4.756418e+01 8.057543e+01 lineto +4.831224e+01 8.02897e+01 lineto +4.987058e+01 8.145007e+01 lineto +4.919237e+01 8.170912e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.085662e+01 8.276134e+01 moveto +4.919237e+01 8.170912e+01 lineto +4.987058e+01 8.145007e+01 lineto +5.146343e+01 8.252957e+01 lineto +5.085662e+01 8.276134e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.255313e+01 8.372971e+01 moveto +5.085662e+01 8.276134e+01 lineto +5.146343e+01 8.252957e+01 lineto +5.308715e+01 8.352574e+01 lineto +5.255313e+01 8.372971e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.427804e+01 8.461201e+01 moveto +5.255313e+01 8.372971e+01 lineto +5.308715e+01 8.352574e+01 lineto +5.473806e+01 8.443631e+01 lineto +5.427804e+01 8.461201e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.602741e+01 8.540624e+01 moveto +5.427804e+01 8.461201e+01 lineto +5.473806e+01 8.443631e+01 lineto +5.641237e+01 8.52592e+01 lineto +5.602741e+01 8.540624e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.779724e+01 8.611057e+01 moveto +5.602741e+01 8.540624e+01 lineto +5.641237e+01 8.52592e+01 lineto +5.810627e+01 8.599253e+01 lineto +5.779724e+01 8.611057e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.95835e+01 8.67234e+01 moveto +5.779724e+01 8.611057e+01 lineto +5.810627e+01 8.599253e+01 lineto +5.981589e+01 8.663464e+01 lineto +5.95835e+01 8.67234e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.138212e+01 8.724334e+01 moveto +5.95835e+01 8.67234e+01 lineto +5.981589e+01 8.663464e+01 lineto +6.153735e+01 8.718405e+01 lineto +6.138212e+01 8.724334e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.3189e+01 8.76692e+01 moveto +6.138212e+01 8.724334e+01 lineto +6.153735e+01 8.718405e+01 lineto +6.32667e+01 8.763952e+01 lineto +6.3189e+01 8.76692e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.3189e+01 8.76692e+01 lineto +6.32667e+01 8.763952e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.023604e+01 2.763749e+01 moveto +3.077477e+01 2.582796e+01 lineto +3.252e+01 2.528e+01 lineto +3.200874e+01 2.70809e+01 lineto +3.023604e+01 2.763749e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.97766e+01 2.94889e+01 moveto +3.023604e+01 2.763749e+01 lineto +3.200874e+01 2.70809e+01 lineto +3.157274e+01 2.892496e+01 lineto +2.97766e+01 2.94889e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.939752e+01 3.137798e+01 moveto +2.97766e+01 2.94889e+01 lineto +3.157274e+01 2.892496e+01 lineto +3.121299e+01 3.080797e+01 lineto +2.939752e+01 3.137798e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.909966e+01 3.330041e+01 moveto +2.939752e+01 3.137798e+01 lineto +3.121299e+01 3.080797e+01 lineto +3.093031e+01 3.272563e+01 lineto +2.909966e+01 3.330041e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.888368e+01 3.525181e+01 moveto +2.909966e+01 3.330041e+01 lineto +3.093031e+01 3.272563e+01 lineto +3.072535e+01 3.467358e+01 lineto +2.888368e+01 3.525181e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.87501e+01 3.722774e+01 moveto +2.888368e+01 3.525181e+01 lineto +3.072535e+01 3.467358e+01 lineto +3.059857e+01 3.664736e+01 lineto +2.87501e+01 3.722774e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.86992e+01 3.922367e+01 moveto +2.87501e+01 3.722774e+01 lineto +3.059857e+01 3.664736e+01 lineto +3.055027e+01 3.864248e+01 lineto +2.86992e+01 3.922367e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.873111e+01 4.123506e+01 moveto +2.86992e+01 3.922367e+01 lineto +3.055027e+01 3.864248e+01 lineto +3.058056e+01 4.065438e+01 lineto +2.873111e+01 4.123506e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.884576e+01 4.325732e+01 moveto +2.873111e+01 4.123506e+01 lineto +3.058056e+01 4.065438e+01 lineto +3.068936e+01 4.267847e+01 lineto +2.884576e+01 4.325732e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.904288e+01 4.528583e+01 moveto +2.884576e+01 4.325732e+01 lineto +3.068936e+01 4.267847e+01 lineto +3.087643e+01 4.471014e+01 lineto +2.904288e+01 4.528583e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.932202e+01 4.731597e+01 moveto +2.904288e+01 4.528583e+01 lineto +3.087643e+01 4.471014e+01 lineto +3.114134e+01 4.674475e+01 lineto +2.932202e+01 4.731597e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +2.968255e+01 4.934312e+01 moveto +2.932202e+01 4.731597e+01 lineto +3.114134e+01 4.674475e+01 lineto +3.148348e+01 4.877767e+01 lineto +2.968255e+01 4.934312e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.012365e+01 5.136263e+01 moveto +2.968255e+01 4.934312e+01 lineto +3.148348e+01 4.877767e+01 lineto +3.190208e+01 5.080425e+01 lineto +3.012365e+01 5.136263e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.06443e+01 5.336992e+01 moveto +3.012365e+01 5.136263e+01 lineto +3.190208e+01 5.080425e+01 lineto +3.239618e+01 5.281987e+01 lineto +3.06443e+01 5.336992e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.124332e+01 5.536039e+01 moveto +3.06443e+01 5.336992e+01 lineto +3.239618e+01 5.281987e+01 lineto +3.296466e+01 5.481993e+01 lineto +3.124332e+01 5.536039e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.191934e+01 5.732951e+01 moveto +3.124332e+01 5.536039e+01 lineto +3.296466e+01 5.481993e+01 lineto +3.360621e+01 5.679987e+01 lineto +3.191934e+01 5.732951e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.267083e+01 5.927278e+01 moveto +3.191934e+01 5.732951e+01 lineto +3.360621e+01 5.679987e+01 lineto +3.431938e+01 5.875518e+01 lineto +3.267083e+01 5.927278e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.349606e+01 6.118578e+01 moveto +3.267083e+01 5.927278e+01 lineto +3.431938e+01 5.875518e+01 lineto +3.510253e+01 6.068139e+01 lineto +3.349606e+01 6.118578e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.439316e+01 6.306414e+01 moveto +3.349606e+01 6.118578e+01 lineto +3.510253e+01 6.068139e+01 lineto +3.595388e+01 6.257411e+01 lineto +3.439316e+01 6.306414e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.536008e+01 6.490357e+01 moveto +3.439316e+01 6.306414e+01 lineto +3.595388e+01 6.257411e+01 lineto +3.687149e+01 6.442902e+01 lineto +3.536008e+01 6.490357e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.639461e+01 6.669988e+01 moveto +3.536008e+01 6.490357e+01 lineto +3.687149e+01 6.442902e+01 lineto +3.785327e+01 6.624189e+01 lineto +3.639461e+01 6.669988e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.749439e+01 6.844897e+01 moveto +3.639461e+01 6.669988e+01 lineto +3.785327e+01 6.624189e+01 lineto +3.889697e+01 6.800859e+01 lineto +3.749439e+01 6.844897e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.865692e+01 7.014685e+01 moveto +3.749439e+01 6.844897e+01 lineto +3.889697e+01 6.800859e+01 lineto +4.000022e+01 6.972509e+01 lineto +3.865692e+01 7.014685e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.987954e+01 7.178965e+01 moveto +3.865692e+01 7.014685e+01 lineto +4.000022e+01 6.972509e+01 lineto +4.11605e+01 7.138746e+01 lineto +3.987954e+01 7.178965e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.115946e+01 7.337362e+01 moveto +3.987954e+01 7.178965e+01 lineto +4.11605e+01 7.138746e+01 lineto +4.237515e+01 7.299192e+01 lineto +4.115946e+01 7.337362e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.249377e+01 7.489514e+01 moveto +4.115946e+01 7.337362e+01 lineto +4.237515e+01 7.299192e+01 lineto +4.364142e+01 7.453481e+01 lineto +4.249377e+01 7.489514e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.387941e+01 7.635075e+01 moveto +4.249377e+01 7.489514e+01 lineto +4.364142e+01 7.453481e+01 lineto +4.495641e+01 7.60126e+01 lineto +4.387941e+01 7.635075e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.531324e+01 7.773713e+01 moveto +4.387941e+01 7.635075e+01 lineto +4.495641e+01 7.60126e+01 lineto +4.631712e+01 7.742194e+01 lineto +4.531324e+01 7.773713e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.679197e+01 7.905111e+01 moveto +4.531324e+01 7.773713e+01 lineto +4.631712e+01 7.742194e+01 lineto +4.772045e+01 7.875959e+01 lineto +4.679197e+01 7.905111e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.831224e+01 8.02897e+01 moveto +4.679197e+01 7.905111e+01 lineto +4.772045e+01 7.875959e+01 lineto +4.916319e+01 8.002252e+01 lineto +4.831224e+01 8.02897e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.987058e+01 8.145007e+01 moveto +4.831224e+01 8.02897e+01 lineto +4.916319e+01 8.002252e+01 lineto +5.064207e+01 8.120784e+01 lineto +4.987058e+01 8.145007e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.146343e+01 8.252957e+01 moveto +4.987058e+01 8.145007e+01 lineto +5.064207e+01 8.120784e+01 lineto +5.215369e+01 8.231284e+01 lineto +5.146343e+01 8.252957e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.308715e+01 8.352574e+01 moveto +5.146343e+01 8.252957e+01 lineto +5.215369e+01 8.231284e+01 lineto +5.369462e+01 8.333501e+01 lineto +5.308715e+01 8.352574e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.473806e+01 8.443631e+01 moveto +5.308715e+01 8.352574e+01 lineto +5.369462e+01 8.333501e+01 lineto +5.526134e+01 8.427201e+01 lineto +5.473806e+01 8.443631e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.641237e+01 8.52592e+01 moveto +5.473806e+01 8.443631e+01 lineto +5.526134e+01 8.427201e+01 lineto +5.685027e+01 8.512171e+01 lineto +5.641237e+01 8.52592e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.810627e+01 8.599253e+01 moveto +5.641237e+01 8.52592e+01 lineto +5.685027e+01 8.512171e+01 lineto +5.84578e+01 8.588216e+01 lineto +5.810627e+01 8.599253e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.981589e+01 8.663464e+01 moveto +5.810627e+01 8.599253e+01 lineto +5.84578e+01 8.588216e+01 lineto +6.008024e+01 8.655164e+01 lineto +5.981589e+01 8.663464e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.153735e+01 8.718405e+01 moveto +5.981589e+01 8.663464e+01 lineto +6.008024e+01 8.655164e+01 lineto +6.171391e+01 8.712861e+01 lineto +6.153735e+01 8.718405e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.32667e+01 8.763952e+01 moveto +6.153735e+01 8.718405e+01 lineto +6.171391e+01 8.712861e+01 lineto +6.335508e+01 8.761177e+01 lineto +6.32667e+01 8.763952e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.32667e+01 8.763952e+01 lineto +6.335508e+01 8.761177e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.200874e+01 2.70809e+01 moveto +3.252e+01 2.528e+01 lineto +3.446548e+01 2.477347e+01 lineto +3.398485e+01 2.65664e+01 lineto +3.200874e+01 2.70809e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.157274e+01 2.892496e+01 moveto +3.200874e+01 2.70809e+01 lineto +3.398485e+01 2.65664e+01 lineto +3.357496e+01 2.840366e+01 lineto +3.157274e+01 2.892496e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.121299e+01 3.080797e+01 moveto +3.157274e+01 2.892496e+01 lineto +3.357496e+01 2.840366e+01 lineto +3.323676e+01 3.028106e+01 lineto +3.121299e+01 3.080797e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.093031e+01 3.272563e+01 moveto +3.121299e+01 3.080797e+01 lineto +3.323676e+01 3.028106e+01 lineto +3.297101e+01 3.219431e+01 lineto +3.093031e+01 3.272563e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.072535e+01 3.467358e+01 moveto +3.093031e+01 3.272563e+01 lineto +3.297101e+01 3.219431e+01 lineto +3.277833e+01 3.413906e+01 lineto +3.072535e+01 3.467358e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.059857e+01 3.664736e+01 moveto +3.072535e+01 3.467358e+01 lineto +3.277833e+01 3.413906e+01 lineto +3.265915e+01 3.611086e+01 lineto +3.059857e+01 3.664736e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.055027e+01 3.864248e+01 moveto +3.059857e+01 3.664736e+01 lineto +3.265915e+01 3.611086e+01 lineto +3.261374e+01 3.810523e+01 lineto +3.055027e+01 3.864248e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.058056e+01 4.065438e+01 moveto +3.055027e+01 3.864248e+01 lineto +3.261374e+01 3.810523e+01 lineto +3.264221e+01 4.01176e+01 lineto +3.058056e+01 4.065438e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.068936e+01 4.267847e+01 moveto +3.058056e+01 4.065438e+01 lineto +3.264221e+01 4.01176e+01 lineto +3.274449e+01 4.214339e+01 lineto +3.068936e+01 4.267847e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.087643e+01 4.471014e+01 moveto +3.068936e+01 4.267847e+01 lineto +3.274449e+01 4.214339e+01 lineto +3.292036e+01 4.417798e+01 lineto +3.087643e+01 4.471014e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.114134e+01 4.674475e+01 moveto +3.087643e+01 4.471014e+01 lineto +3.292036e+01 4.417798e+01 lineto +3.31694e+01 4.621672e+01 lineto +3.114134e+01 4.674475e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.148348e+01 4.877767e+01 moveto +3.114134e+01 4.674475e+01 lineto +3.31694e+01 4.621672e+01 lineto +3.349105e+01 4.825498e+01 lineto +3.148348e+01 4.877767e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.190208e+01 5.080425e+01 moveto +3.148348e+01 4.877767e+01 lineto +3.349105e+01 4.825498e+01 lineto +3.388458e+01 5.028808e+01 lineto +3.190208e+01 5.080425e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.239618e+01 5.281987e+01 moveto +3.190208e+01 5.080425e+01 lineto +3.388458e+01 5.028808e+01 lineto +3.434908e+01 5.231141e+01 lineto +3.239618e+01 5.281987e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.296466e+01 5.481993e+01 moveto +3.239618e+01 5.281987e+01 lineto +3.434908e+01 5.231141e+01 lineto +3.488351e+01 5.432033e+01 lineto +3.296466e+01 5.481993e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.360621e+01 5.679987e+01 moveto +3.296466e+01 5.481993e+01 lineto +3.488351e+01 5.432033e+01 lineto +3.548663e+01 5.631028e+01 lineto +3.360621e+01 5.679987e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.431938e+01 5.875518e+01 moveto +3.360621e+01 5.679987e+01 lineto +3.548663e+01 5.631028e+01 lineto +3.615708e+01 5.827671e+01 lineto +3.431938e+01 5.875518e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.510253e+01 6.068139e+01 moveto +3.431938e+01 5.875518e+01 lineto +3.615708e+01 5.827671e+01 lineto +3.689332e+01 6.021513e+01 lineto +3.510253e+01 6.068139e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.595388e+01 6.257411e+01 moveto +3.510253e+01 6.068139e+01 lineto +3.689332e+01 6.021513e+01 lineto +3.769368e+01 6.212113e+01 lineto +3.595388e+01 6.257411e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.687149e+01 6.442902e+01 moveto +3.595388e+01 6.257411e+01 lineto +3.769368e+01 6.212113e+01 lineto +3.855633e+01 6.399035e+01 lineto +3.687149e+01 6.442902e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.785327e+01 6.624189e+01 moveto +3.687149e+01 6.442902e+01 lineto +3.855633e+01 6.399035e+01 lineto +3.94793e+01 6.581854e+01 lineto +3.785327e+01 6.624189e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.889697e+01 6.800859e+01 moveto +3.785327e+01 6.624189e+01 lineto +3.94793e+01 6.581854e+01 lineto +4.046049e+01 6.760151e+01 lineto +3.889697e+01 6.800859e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.000022e+01 6.972509e+01 moveto +3.889697e+01 6.800859e+01 lineto +4.046049e+01 6.760151e+01 lineto +4.149765e+01 6.933521e+01 lineto +4.000022e+01 6.972509e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.11605e+01 7.138746e+01 moveto +4.000022e+01 6.972509e+01 lineto +4.149765e+01 6.933521e+01 lineto +4.258843e+01 7.101568e+01 lineto +4.11605e+01 7.138746e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.237515e+01 7.299192e+01 moveto +4.11605e+01 7.138746e+01 lineto +4.258843e+01 7.101568e+01 lineto +4.373033e+01 7.263908e+01 lineto +4.237515e+01 7.299192e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.364142e+01 7.453481e+01 moveto +4.237515e+01 7.299192e+01 lineto +4.373033e+01 7.263908e+01 lineto +4.492075e+01 7.420172e+01 lineto +4.364142e+01 7.453481e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.495641e+01 7.60126e+01 moveto +4.364142e+01 7.453481e+01 lineto +4.492075e+01 7.420172e+01 lineto +4.615698e+01 7.570002e+01 lineto +4.495641e+01 7.60126e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.631712e+01 7.742194e+01 moveto +4.495641e+01 7.60126e+01 lineto +4.615698e+01 7.570002e+01 lineto +4.743618e+01 7.713058e+01 lineto +4.631712e+01 7.742194e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.772045e+01 7.875959e+01 moveto +4.631712e+01 7.742194e+01 lineto +4.743618e+01 7.713058e+01 lineto +4.875546e+01 7.849012e+01 lineto +4.772045e+01 7.875959e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.916319e+01 8.002252e+01 moveto +4.772045e+01 7.875959e+01 lineto +4.875546e+01 7.849012e+01 lineto +5.011179e+01 7.977554e+01 lineto +4.916319e+01 8.002252e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.064207e+01 8.120784e+01 moveto +4.916319e+01 8.002252e+01 lineto +5.011179e+01 7.977554e+01 lineto +5.150208e+01 8.098392e+01 lineto +5.064207e+01 8.120784e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.215369e+01 8.231284e+01 moveto +5.064207e+01 8.120784e+01 lineto +5.150208e+01 8.098392e+01 lineto +5.292316e+01 8.21125e+01 lineto +5.215369e+01 8.231284e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.369462e+01 8.333501e+01 moveto +5.215369e+01 8.231284e+01 lineto +5.292316e+01 8.21125e+01 lineto +5.437179e+01 8.31587e+01 lineto +5.369462e+01 8.333501e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.526134e+01 8.427201e+01 moveto +5.369462e+01 8.333501e+01 lineto +5.437179e+01 8.31587e+01 lineto +5.584466e+01 8.412013e+01 lineto +5.526134e+01 8.427201e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.685027e+01 8.512171e+01 moveto +5.526134e+01 8.427201e+01 lineto +5.584466e+01 8.412013e+01 lineto +5.733842e+01 8.499461e+01 lineto +5.685027e+01 8.512171e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.84578e+01 8.588216e+01 moveto +5.685027e+01 8.512171e+01 lineto +5.733842e+01 8.499461e+01 lineto +5.884966e+01 8.578013e+01 lineto +5.84578e+01 8.588216e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.008024e+01 8.655164e+01 moveto +5.84578e+01 8.588216e+01 lineto +5.884966e+01 8.578013e+01 lineto +6.037493e+01 8.647492e+01 lineto +6.008024e+01 8.655164e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.171391e+01 8.712861e+01 moveto +6.008024e+01 8.655164e+01 lineto +6.037493e+01 8.647492e+01 lineto +6.191074e+01 8.707737e+01 lineto +6.171391e+01 8.712861e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.335508e+01 8.761177e+01 moveto +6.171391e+01 8.712861e+01 lineto +6.191074e+01 8.707737e+01 lineto +6.345361e+01 8.758612e+01 lineto +6.335508e+01 8.761177e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.335508e+01 8.761177e+01 lineto +6.345361e+01 8.758612e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.398485e+01 2.65664e+01 moveto +3.446548e+01 2.477347e+01 lineto +3.659922e+01 2.431149e+01 lineto +3.615217e+01 2.609715e+01 lineto +3.398485e+01 2.65664e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.357496e+01 2.840366e+01 moveto +3.398485e+01 2.65664e+01 lineto +3.615217e+01 2.609715e+01 lineto +3.577093e+01 2.792821e+01 lineto +3.357496e+01 2.840366e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.323676e+01 3.028106e+01 moveto +3.357496e+01 2.840366e+01 lineto +3.577093e+01 2.792821e+01 lineto +3.545636e+01 2.980049e+01 lineto +3.323676e+01 3.028106e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.297101e+01 3.219431e+01 moveto +3.323676e+01 3.028106e+01 lineto +3.545636e+01 2.980049e+01 lineto +3.520918e+01 3.170972e+01 lineto +3.297101e+01 3.219431e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.277833e+01 3.413906e+01 moveto +3.297101e+01 3.219431e+01 lineto +3.520918e+01 3.170972e+01 lineto +3.502996e+01 3.365156e+01 lineto +3.277833e+01 3.413906e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.265915e+01 3.611086e+01 moveto +3.277833e+01 3.413906e+01 lineto +3.502996e+01 3.365156e+01 lineto +3.491911e+01 3.562156e+01 lineto +3.265915e+01 3.611086e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.261374e+01 3.810523e+01 moveto +3.265915e+01 3.611086e+01 lineto +3.491911e+01 3.562156e+01 lineto +3.487688e+01 3.761524e+01 lineto +3.261374e+01 3.810523e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.264221e+01 4.01176e+01 moveto +3.261374e+01 3.810523e+01 lineto +3.487688e+01 3.761524e+01 lineto +3.490336e+01 3.962804e+01 lineto +3.264221e+01 4.01176e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.274449e+01 4.214339e+01 moveto +3.264221e+01 4.01176e+01 lineto +3.490336e+01 3.962804e+01 lineto +3.499849e+01 4.165538e+01 lineto +3.274449e+01 4.214339e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.292036e+01 4.417798e+01 moveto +3.274449e+01 4.214339e+01 lineto +3.499849e+01 4.165538e+01 lineto +3.516207e+01 4.369263e+01 lineto +3.292036e+01 4.417798e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.31694e+01 4.621672e+01 moveto +3.292036e+01 4.417798e+01 lineto +3.516207e+01 4.369263e+01 lineto +3.539371e+01 4.573514e+01 lineto +3.31694e+01 4.621672e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.349105e+01 4.825498e+01 moveto +3.31694e+01 4.621672e+01 lineto +3.539371e+01 4.573514e+01 lineto +3.569288e+01 4.777826e+01 lineto +3.349105e+01 4.825498e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.388458e+01 5.028808e+01 moveto +3.349105e+01 4.825498e+01 lineto +3.569288e+01 4.777826e+01 lineto +3.605891e+01 4.981732e+01 lineto +3.388458e+01 5.028808e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.434908e+01 5.231141e+01 moveto +3.388458e+01 5.028808e+01 lineto +3.605891e+01 4.981732e+01 lineto +3.649095e+01 5.184767e+01 lineto +3.434908e+01 5.231141e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.488351e+01 5.432033e+01 moveto +3.434908e+01 5.231141e+01 lineto +3.649095e+01 5.184767e+01 lineto +3.698803e+01 5.386468e+01 lineto +3.488351e+01 5.432033e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.548663e+01 5.631028e+01 moveto +3.488351e+01 5.432033e+01 lineto +3.698803e+01 5.386468e+01 lineto +3.754901e+01 5.586376e+01 lineto +3.548663e+01 5.631028e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.615708e+01 5.827671e+01 moveto +3.548663e+01 5.631028e+01 lineto +3.754901e+01 5.586376e+01 lineto +3.817261e+01 5.784033e+01 lineto +3.615708e+01 5.827671e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.689332e+01 6.021513e+01 moveto +3.615708e+01 5.827671e+01 lineto +3.817261e+01 5.784033e+01 lineto +3.885741e+01 5.978989e+01 lineto +3.689332e+01 6.021513e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.769368e+01 6.212113e+01 moveto +3.689332e+01 6.021513e+01 lineto +3.885741e+01 5.978989e+01 lineto +3.960184e+01 6.1708e+01 lineto +3.769368e+01 6.212113e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.855633e+01 6.399035e+01 moveto +3.769368e+01 6.212113e+01 lineto +3.960184e+01 6.1708e+01 lineto +4.04042e+01 6.359027e+01 lineto +3.855633e+01 6.399035e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.94793e+01 6.581854e+01 moveto +3.855633e+01 6.399035e+01 lineto +4.04042e+01 6.359027e+01 lineto +4.126268e+01 6.543242e+01 lineto +3.94793e+01 6.581854e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.046049e+01 6.760151e+01 moveto +3.94793e+01 6.581854e+01 lineto +4.126268e+01 6.543242e+01 lineto +4.21753e+01 6.723024e+01 lineto +4.046049e+01 6.760151e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.149765e+01 6.933521e+01 moveto +4.046049e+01 6.760151e+01 lineto +4.21753e+01 6.723024e+01 lineto +4.313999e+01 6.897963e+01 lineto +4.149765e+01 6.933521e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.258843e+01 7.101568e+01 moveto +4.149765e+01 6.933521e+01 lineto +4.313999e+01 6.897963e+01 lineto +4.415454e+01 7.06766e+01 lineto +4.258843e+01 7.101568e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.373033e+01 7.263908e+01 moveto +4.258843e+01 7.101568e+01 lineto +4.415454e+01 7.06766e+01 lineto +4.521665e+01 7.231728e+01 lineto +4.373033e+01 7.263908e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.492075e+01 7.420172e+01 moveto +4.373033e+01 7.263908e+01 lineto +4.521665e+01 7.231728e+01 lineto +4.632388e+01 7.389793e+01 lineto +4.492075e+01 7.420172e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.615698e+01 7.570002e+01 moveto +4.492075e+01 7.420172e+01 lineto +4.632388e+01 7.389793e+01 lineto +4.747372e+01 7.541493e+01 lineto +4.615698e+01 7.570002e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.743618e+01 7.713058e+01 moveto +4.615698e+01 7.570002e+01 lineto +4.747372e+01 7.541493e+01 lineto +4.866354e+01 7.686484e+01 lineto +4.743618e+01 7.713058e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.875546e+01 7.849012e+01 moveto +4.743618e+01 7.713058e+01 lineto +4.866354e+01 7.686484e+01 lineto +4.989062e+01 7.824434e+01 lineto +4.875546e+01 7.849012e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.011179e+01 7.977554e+01 moveto +4.875546e+01 7.849012e+01 lineto +4.989062e+01 7.824434e+01 lineto +5.115217e+01 7.955029e+01 lineto +5.011179e+01 7.977554e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.150208e+01 8.098392e+01 moveto +5.011179e+01 7.977554e+01 lineto +5.115217e+01 7.955029e+01 lineto +5.244531e+01 8.07797e+01 lineto +5.150208e+01 8.098392e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.292316e+01 8.21125e+01 moveto +5.150208e+01 8.098392e+01 lineto +5.244531e+01 8.07797e+01 lineto +5.376708e+01 8.192978e+01 lineto +5.292316e+01 8.21125e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.437179e+01 8.31587e+01 moveto +5.292316e+01 8.21125e+01 lineto +5.376708e+01 8.192978e+01 lineto +5.511448e+01 8.29979e+01 lineto +5.437179e+01 8.31587e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.584466e+01 8.412013e+01 moveto +5.437179e+01 8.31587e+01 lineto +5.511448e+01 8.29979e+01 lineto +5.648443e+01 8.398162e+01 lineto +5.584466e+01 8.412013e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.733842e+01 8.499461e+01 moveto +5.584466e+01 8.412013e+01 lineto +5.648443e+01 8.398162e+01 lineto +5.787381e+01 8.487869e+01 lineto +5.733842e+01 8.499461e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.884966e+01 8.578013e+01 moveto +5.733842e+01 8.499461e+01 lineto +5.787381e+01 8.487869e+01 lineto +5.927944e+01 8.568708e+01 lineto +5.884966e+01 8.578013e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.037493e+01 8.647492e+01 moveto +5.884966e+01 8.578013e+01 lineto +5.927944e+01 8.568708e+01 lineto +6.069813e+01 8.640494e+01 lineto +6.037493e+01 8.647492e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.191074e+01 8.707737e+01 moveto +6.037493e+01 8.647492e+01 lineto +6.069813e+01 8.640494e+01 lineto +6.212662e+01 8.703063e+01 lineto +6.191074e+01 8.707737e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.345361e+01 8.758612e+01 moveto +6.191074e+01 8.707737e+01 lineto +6.212662e+01 8.703063e+01 lineto +6.356167e+01 8.756272e+01 lineto +6.345361e+01 8.758612e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.345361e+01 8.758612e+01 lineto +6.356167e+01 8.756272e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.615217e+01 2.609715e+01 moveto +3.659922e+01 2.431149e+01 lineto +3.890806e+01 2.389692e+01 lineto +3.849735e+01 2.567605e+01 lineto +3.615217e+01 2.609715e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.577093e+01 2.792821e+01 moveto +3.615217e+01 2.609715e+01 lineto +3.849735e+01 2.567605e+01 lineto +3.81471e+01 2.750154e+01 lineto +3.577093e+01 2.792821e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.545636e+01 2.980049e+01 moveto +3.577093e+01 2.792821e+01 lineto +3.81471e+01 2.750154e+01 lineto +3.785811e+01 2.936923e+01 lineto +3.545636e+01 2.980049e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.520918e+01 3.170972e+01 moveto +3.545636e+01 2.980049e+01 lineto +3.785811e+01 2.936923e+01 lineto +3.763102e+01 3.127486e+01 lineto +3.520918e+01 3.170972e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.502996e+01 3.365156e+01 moveto +3.520918e+01 3.170972e+01 lineto +3.763102e+01 3.127486e+01 lineto +3.746637e+01 3.321408e+01 lineto +3.502996e+01 3.365156e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.491911e+01 3.562156e+01 moveto +3.502996e+01 3.365156e+01 lineto +3.746637e+01 3.321408e+01 lineto +3.736453e+01 3.518246e+01 lineto +3.491911e+01 3.562156e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.487688e+01 3.761524e+01 moveto +3.491911e+01 3.562156e+01 lineto +3.736453e+01 3.518246e+01 lineto +3.732573e+01 3.717552e+01 lineto +3.487688e+01 3.761524e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.490336e+01 3.962804e+01 moveto +3.487688e+01 3.761524e+01 lineto +3.732573e+01 3.717552e+01 lineto +3.735006e+01 3.918871e+01 lineto +3.490336e+01 3.962804e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.499849e+01 4.165538e+01 moveto +3.490336e+01 3.962804e+01 lineto +3.735006e+01 3.918871e+01 lineto +3.743746e+01 4.121744e+01 lineto +3.499849e+01 4.165538e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.516207e+01 4.369263e+01 moveto +3.499849e+01 4.165538e+01 lineto +3.743746e+01 4.121744e+01 lineto +3.758774e+01 4.325708e+01 lineto +3.516207e+01 4.369263e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.539371e+01 4.573514e+01 moveto +3.516207e+01 4.369263e+01 lineto +3.758774e+01 4.325708e+01 lineto +3.780055e+01 4.530297e+01 lineto +3.539371e+01 4.573514e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.569288e+01 4.777826e+01 moveto +3.539371e+01 4.573514e+01 lineto +3.780055e+01 4.530297e+01 lineto +3.80754e+01 4.735045e+01 lineto +3.569288e+01 4.777826e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.605891e+01 4.981732e+01 moveto +3.569288e+01 4.777826e+01 lineto +3.80754e+01 4.735045e+01 lineto +3.841167e+01 4.939486e+01 lineto +3.605891e+01 4.981732e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.649095e+01 5.184767e+01 moveto +3.605891e+01 4.981732e+01 lineto +3.841167e+01 4.939486e+01 lineto +3.880859e+01 5.143152e+01 lineto +3.649095e+01 5.184767e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.698803e+01 5.386468e+01 moveto +3.649095e+01 5.184767e+01 lineto +3.880859e+01 5.143152e+01 lineto +3.926526e+01 5.345579e+01 lineto +3.698803e+01 5.386468e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.754901e+01 5.586376e+01 moveto +3.698803e+01 5.386468e+01 lineto +3.926526e+01 5.345579e+01 lineto +3.978064e+01 5.546305e+01 lineto +3.754901e+01 5.586376e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.817261e+01 5.784033e+01 moveto +3.754901e+01 5.586376e+01 lineto +3.978064e+01 5.546305e+01 lineto +4.035354e+01 5.744872e+01 lineto +3.817261e+01 5.784033e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.885741e+01 5.978989e+01 moveto +3.817261e+01 5.784033e+01 lineto +4.035354e+01 5.744872e+01 lineto +4.098267e+01 5.940828e+01 lineto +3.885741e+01 5.978989e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.960184e+01 6.1708e+01 moveto +3.885741e+01 5.978989e+01 lineto +4.098267e+01 5.940828e+01 lineto +4.166658e+01 6.133725e+01 lineto +3.960184e+01 6.1708e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.04042e+01 6.359027e+01 moveto +3.960184e+01 6.1708e+01 lineto +4.166658e+01 6.133725e+01 lineto +4.240372e+01 6.323124e+01 lineto +4.04042e+01 6.359027e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.126268e+01 6.543242e+01 moveto +4.04042e+01 6.359027e+01 lineto +4.240372e+01 6.323124e+01 lineto +4.31924e+01 6.508592e+01 lineto +4.126268e+01 6.543242e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.21753e+01 6.723024e+01 moveto +4.126268e+01 6.543242e+01 lineto +4.31924e+01 6.508592e+01 lineto +4.403083e+01 6.689706e+01 lineto +4.21753e+01 6.723024e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.313999e+01 6.897963e+01 moveto +4.21753e+01 6.723024e+01 lineto +4.403083e+01 6.689706e+01 lineto +4.49171e+01 6.866053e+01 lineto +4.313999e+01 6.897963e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.415454e+01 7.06766e+01 moveto +4.313999e+01 6.897963e+01 lineto +4.49171e+01 6.866053e+01 lineto +4.584917e+01 7.037231e+01 lineto +4.415454e+01 7.06766e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.521665e+01 7.231728e+01 moveto +4.415454e+01 7.06766e+01 lineto +4.584917e+01 7.037231e+01 lineto +4.682493e+01 7.20285e+01 lineto +4.521665e+01 7.231728e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.632388e+01 7.389793e+01 moveto +4.521665e+01 7.231728e+01 lineto +4.682493e+01 7.20285e+01 lineto +4.784215e+01 7.362531e+01 lineto +4.632388e+01 7.389793e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.747372e+01 7.541493e+01 moveto +4.632388e+01 7.389793e+01 lineto +4.784215e+01 7.362531e+01 lineto +4.889852e+01 7.51591e+01 lineto +4.747372e+01 7.541493e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.866354e+01 7.686484e+01 moveto +4.747372e+01 7.541493e+01 lineto +4.889852e+01 7.51591e+01 lineto +4.999161e+01 7.662637e+01 lineto +4.866354e+01 7.686484e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.989062e+01 7.824434e+01 moveto +4.866354e+01 7.686484e+01 lineto +4.999161e+01 7.662637e+01 lineto +5.111893e+01 7.802379e+01 lineto +4.989062e+01 7.824434e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.115217e+01 7.955029e+01 moveto +4.989062e+01 7.824434e+01 lineto +5.111893e+01 7.802379e+01 lineto +5.227793e+01 7.934815e+01 lineto +5.115217e+01 7.955029e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.244531e+01 8.07797e+01 moveto +5.115217e+01 7.955029e+01 lineto +5.227793e+01 7.934815e+01 lineto +5.346594e+01 8.059644e+01 lineto +5.244531e+01 8.07797e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.376708e+01 8.192978e+01 moveto +5.244531e+01 8.07797e+01 lineto +5.346594e+01 8.059644e+01 lineto +5.468026e+01 8.176581e+01 lineto +5.376708e+01 8.192978e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.511448e+01 8.29979e+01 moveto +5.376708e+01 8.192978e+01 lineto +5.468026e+01 8.176581e+01 lineto +5.591813e+01 8.28536e+01 lineto +5.511448e+01 8.29979e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.648443e+01 8.398162e+01 moveto +5.511448e+01 8.29979e+01 lineto +5.591813e+01 8.28536e+01 lineto +5.717671e+01 8.385731e+01 lineto +5.648443e+01 8.398162e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.787381e+01 8.487869e+01 moveto +5.648443e+01 8.398162e+01 lineto +5.717671e+01 8.385731e+01 lineto +5.845313e+01 8.477467e+01 lineto +5.787381e+01 8.487869e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.927944e+01 8.568708e+01 moveto +5.787381e+01 8.487869e+01 lineto +5.845313e+01 8.477467e+01 lineto +5.97445e+01 8.560358e+01 lineto +5.927944e+01 8.568708e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.069813e+01 8.640494e+01 moveto +5.927944e+01 8.568708e+01 lineto +5.97445e+01 8.560358e+01 lineto +6.104785e+01 8.634214e+01 lineto +6.069813e+01 8.640494e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.212662e+01 8.703063e+01 moveto +6.069813e+01 8.640494e+01 lineto +6.104785e+01 8.634214e+01 lineto +6.236021e+01 8.698868e+01 lineto +6.212662e+01 8.703063e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.356167e+01 8.756272e+01 moveto +6.212662e+01 8.703063e+01 lineto +6.236021e+01 8.698868e+01 lineto +6.36786e+01 8.754172e+01 lineto +6.356167e+01 8.756272e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.356167e+01 8.756272e+01 lineto +6.36786e+01 8.754172e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.849735e+01 2.567605e+01 moveto +3.890806e+01 2.389692e+01 lineto +4.137776e+01 2.353231e+01 lineto +4.100593e+01 2.53057e+01 lineto +3.849735e+01 2.567605e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.81471e+01 2.750154e+01 moveto +3.849735e+01 2.567605e+01 lineto +4.100593e+01 2.53057e+01 lineto +4.068883e+01 2.712629e+01 lineto +3.81471e+01 2.750154e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.785811e+01 2.936923e+01 moveto +3.81471e+01 2.750154e+01 lineto +4.068883e+01 2.712629e+01 lineto +4.042719e+01 2.898995e+01 lineto +3.785811e+01 2.936923e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.763102e+01 3.127486e+01 moveto +3.785811e+01 2.936923e+01 lineto +4.042719e+01 2.898995e+01 lineto +4.02216e+01 3.08924e+01 lineto +3.763102e+01 3.127486e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.746637e+01 3.321408e+01 moveto +3.763102e+01 3.127486e+01 lineto +4.02216e+01 3.08924e+01 lineto +4.007254e+01 3.282932e+01 lineto +3.746637e+01 3.321408e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.736453e+01 3.518246e+01 moveto +3.746637e+01 3.321408e+01 lineto +4.007254e+01 3.282932e+01 lineto +3.998034e+01 3.479628e+01 lineto +3.736453e+01 3.518246e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.732573e+01 3.717552e+01 moveto +3.736453e+01 3.518246e+01 lineto +3.998034e+01 3.479628e+01 lineto +3.994521e+01 3.678879e+01 lineto +3.732573e+01 3.717552e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.735006e+01 3.918871e+01 moveto +3.732573e+01 3.717552e+01 lineto +3.994521e+01 3.678879e+01 lineto +3.996724e+01 3.880232e+01 lineto +3.735006e+01 3.918871e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.743746e+01 4.121744e+01 moveto +3.735006e+01 3.918871e+01 lineto +3.996724e+01 3.880232e+01 lineto +4.004637e+01 4.083227e+01 lineto +3.743746e+01 4.121744e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.758774e+01 4.325708e+01 moveto +3.743746e+01 4.121744e+01 lineto +4.004637e+01 4.083227e+01 lineto +4.018242e+01 4.287401e+01 lineto +3.758774e+01 4.325708e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.780055e+01 4.530297e+01 moveto +3.758774e+01 4.325708e+01 lineto +4.018242e+01 4.287401e+01 lineto +4.037508e+01 4.492288e+01 lineto +3.780055e+01 4.530297e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.80754e+01 4.735045e+01 moveto +3.780055e+01 4.530297e+01 lineto +4.037508e+01 4.492288e+01 lineto +4.062392e+01 4.69742e+01 lineto +3.80754e+01 4.735045e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.841167e+01 4.939486e+01 moveto +3.80754e+01 4.735045e+01 lineto +4.062392e+01 4.69742e+01 lineto +4.092836e+01 4.90233e+01 lineto +3.841167e+01 4.939486e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.880859e+01 5.143152e+01 moveto +3.841167e+01 4.939486e+01 lineto +4.092836e+01 4.90233e+01 lineto +4.128771e+01 5.106551e+01 lineto +3.880859e+01 5.143152e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.926526e+01 5.345579e+01 moveto +3.880859e+01 5.143152e+01 lineto +4.128771e+01 5.106551e+01 lineto +4.170116e+01 5.309616e+01 lineto +3.926526e+01 5.345579e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.978064e+01 5.546305e+01 moveto +3.926526e+01 5.345579e+01 lineto +4.170116e+01 5.309616e+01 lineto +4.216775e+01 5.511062e+01 lineto +3.978064e+01 5.546305e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.035354e+01 5.744872e+01 moveto +3.978064e+01 5.546305e+01 lineto +4.216775e+01 5.511062e+01 lineto +4.268642e+01 5.710431e+01 lineto +4.035354e+01 5.744872e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.098267e+01 5.940828e+01 moveto +4.035354e+01 5.744872e+01 lineto +4.268642e+01 5.710431e+01 lineto +4.3256e+01 5.907266e+01 lineto +4.098267e+01 5.940828e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.166658e+01 6.133725e+01 moveto +4.098267e+01 5.940828e+01 lineto +4.3256e+01 5.907266e+01 lineto +4.387518e+01 6.101119e+01 lineto +4.166658e+01 6.133725e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.240372e+01 6.323124e+01 moveto +4.166658e+01 6.133725e+01 lineto +4.387518e+01 6.101119e+01 lineto +4.454254e+01 6.291547e+01 lineto +4.240372e+01 6.323124e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.31924e+01 6.508592e+01 moveto +4.240372e+01 6.323124e+01 lineto +4.454254e+01 6.291547e+01 lineto +4.525658e+01 6.478117e+01 lineto +4.31924e+01 6.508592e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.403083e+01 6.689706e+01 moveto +4.31924e+01 6.508592e+01 lineto +4.525658e+01 6.478117e+01 lineto +4.601565e+01 6.660403e+01 lineto +4.403083e+01 6.689706e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.49171e+01 6.866053e+01 moveto +4.403083e+01 6.689706e+01 lineto +4.601565e+01 6.660403e+01 lineto +4.681802e+01 6.837989e+01 lineto +4.49171e+01 6.866053e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.584917e+01 7.037231e+01 moveto +4.49171e+01 6.866053e+01 lineto +4.681802e+01 6.837989e+01 lineto +4.766187e+01 7.01047e+01 lineto +4.584917e+01 7.037231e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.682493e+01 7.20285e+01 moveto +4.584917e+01 7.037231e+01 lineto +4.766187e+01 7.01047e+01 lineto +4.854527e+01 7.177451e+01 lineto +4.682493e+01 7.20285e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.784215e+01 7.362531e+01 moveto +4.682493e+01 7.20285e+01 lineto +4.854527e+01 7.177451e+01 lineto +4.946621e+01 7.338554e+01 lineto +4.784215e+01 7.362531e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.889852e+01 7.51591e+01 moveto +4.784215e+01 7.362531e+01 lineto +4.946621e+01 7.338554e+01 lineto +5.042258e+01 7.493409e+01 lineto +4.889852e+01 7.51591e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.999161e+01 7.662637e+01 moveto +4.889852e+01 7.51591e+01 lineto +5.042258e+01 7.493409e+01 lineto +5.141221e+01 7.641664e+01 lineto +4.999161e+01 7.662637e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.111893e+01 7.802379e+01 moveto +4.999161e+01 7.662637e+01 lineto +5.141221e+01 7.641664e+01 lineto +5.243283e+01 7.782981e+01 lineto +5.111893e+01 7.802379e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.227793e+01 7.934815e+01 moveto +5.111893e+01 7.802379e+01 lineto +5.243283e+01 7.782981e+01 lineto +5.348212e+01 7.917037e+01 lineto +5.227793e+01 7.934815e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.346594e+01 8.059644e+01 moveto +5.227793e+01 7.934815e+01 lineto +5.348212e+01 7.917037e+01 lineto +5.455768e+01 8.043526e+01 lineto +5.346594e+01 8.059644e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.468026e+01 8.176581e+01 moveto +5.346594e+01 8.059644e+01 lineto +5.455768e+01 8.043526e+01 lineto +5.565707e+01 8.16216e+01 lineto +5.468026e+01 8.176581e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.591813e+01 8.28536e+01 moveto +5.468026e+01 8.176581e+01 lineto +5.565707e+01 8.16216e+01 lineto +5.677776e+01 8.272668e+01 lineto +5.591813e+01 8.28536e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.717671e+01 8.385731e+01 moveto +5.591813e+01 8.28536e+01 lineto +5.677776e+01 8.272668e+01 lineto +5.791721e+01 8.374799e+01 lineto +5.717671e+01 8.385731e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.845313e+01 8.477467e+01 moveto +5.717671e+01 8.385731e+01 lineto +5.791721e+01 8.374799e+01 lineto +5.907282e+01 8.468318e+01 lineto +5.845313e+01 8.477467e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.97445e+01 8.560358e+01 moveto +5.845313e+01 8.477467e+01 lineto +5.907282e+01 8.468318e+01 lineto +6.024195e+01 8.553014e+01 lineto +5.97445e+01 8.560358e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.104785e+01 8.634214e+01 moveto +5.97445e+01 8.560358e+01 lineto +6.024195e+01 8.553014e+01 lineto +6.142193e+01 8.628692e+01 lineto +6.104785e+01 8.634214e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.236021e+01 8.698868e+01 moveto +6.104785e+01 8.634214e+01 lineto +6.142193e+01 8.628692e+01 lineto +6.261008e+01 8.69518e+01 lineto +6.236021e+01 8.698868e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.36786e+01 8.754172e+01 moveto +6.236021e+01 8.698868e+01 lineto +6.261008e+01 8.69518e+01 lineto +6.380367e+01 8.752326e+01 lineto +6.36786e+01 8.754172e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.36786e+01 8.754172e+01 lineto +6.380367e+01 8.752326e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.100593e+01 2.53057e+01 moveto +4.137776e+01 2.353231e+01 lineto +4.399311e+01 2.32199e+01 lineto +4.366244e+01 2.498837e+01 lineto +4.100593e+01 2.53057e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.068883e+01 2.712629e+01 moveto +4.100593e+01 2.53057e+01 lineto +4.366244e+01 2.498837e+01 lineto +4.338045e+01 2.680477e+01 lineto +4.068883e+01 2.712629e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.042719e+01 2.898995e+01 moveto +4.068883e+01 2.712629e+01 lineto +4.338045e+01 2.680477e+01 lineto +4.314778e+01 2.866497e+01 lineto +4.042719e+01 2.898995e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.02216e+01 3.08924e+01 moveto +4.042719e+01 2.898995e+01 lineto +4.314778e+01 2.866497e+01 lineto +4.296495e+01 3.05647e+01 lineto +4.02216e+01 3.08924e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.007254e+01 3.282932e+01 moveto +4.02216e+01 3.08924e+01 lineto +4.296495e+01 3.05647e+01 lineto +4.283239e+01 3.249965e+01 lineto +4.007254e+01 3.282932e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.998034e+01 3.479628e+01 moveto +4.007254e+01 3.282932e+01 lineto +4.283239e+01 3.249965e+01 lineto +4.27504e+01 3.446539e+01 lineto +3.998034e+01 3.479628e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.994521e+01 3.678879e+01 moveto +3.998034e+01 3.479628e+01 lineto +4.27504e+01 3.446539e+01 lineto +4.271916e+01 3.645744e+01 lineto +3.994521e+01 3.678879e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +3.996724e+01 3.880232e+01 moveto +3.994521e+01 3.678879e+01 lineto +4.271916e+01 3.645744e+01 lineto +4.273875e+01 3.847126e+01 lineto +3.996724e+01 3.880232e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.004637e+01 4.083227e+01 moveto +3.996724e+01 3.880232e+01 lineto +4.273875e+01 3.847126e+01 lineto +4.280911e+01 4.050226e+01 lineto +4.004637e+01 4.083227e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.018242e+01 4.287401e+01 moveto +4.004637e+01 4.083227e+01 lineto +4.280911e+01 4.050226e+01 lineto +4.29301e+01 4.254579e+01 lineto +4.018242e+01 4.287401e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.037508e+01 4.492288e+01 moveto +4.018242e+01 4.287401e+01 lineto +4.29301e+01 4.254579e+01 lineto +4.310144e+01 4.459721e+01 lineto +4.037508e+01 4.492288e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.062392e+01 4.69742e+01 moveto +4.037508e+01 4.492288e+01 lineto +4.310144e+01 4.459721e+01 lineto +4.332272e+01 4.665182e+01 lineto +4.062392e+01 4.69742e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.092836e+01 4.90233e+01 moveto +4.062392e+01 4.69742e+01 lineto +4.332272e+01 4.665182e+01 lineto +4.359346e+01 4.870495e+01 lineto +4.092836e+01 4.90233e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.128771e+01 5.106551e+01 moveto +4.092836e+01 4.90233e+01 lineto +4.359346e+01 4.870495e+01 lineto +4.391303e+01 5.075191e+01 lineto +4.128771e+01 5.106551e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.170116e+01 5.309616e+01 moveto +4.128771e+01 5.106551e+01 lineto +4.391303e+01 5.075191e+01 lineto +4.42807e+01 5.278803e+01 lineto +4.170116e+01 5.309616e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.216775e+01 5.511062e+01 moveto +4.170116e+01 5.309616e+01 lineto +4.42807e+01 5.278803e+01 lineto +4.469563e+01 5.480866e+01 lineto +4.216775e+01 5.511062e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.268642e+01 5.710431e+01 moveto +4.216775e+01 5.511062e+01 lineto +4.469563e+01 5.480866e+01 lineto +4.515688e+01 5.68092e+01 lineto +4.268642e+01 5.710431e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.3256e+01 5.907266e+01 moveto +4.268642e+01 5.710431e+01 lineto +4.515688e+01 5.68092e+01 lineto +4.566339e+01 5.878509e+01 lineto +4.3256e+01 5.907266e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.387518e+01 6.101119e+01 moveto +4.3256e+01 5.907266e+01 lineto +4.566339e+01 5.878509e+01 lineto +4.621402e+01 6.073181e+01 lineto +4.387518e+01 6.101119e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.454254e+01 6.291547e+01 moveto +4.387518e+01 6.101119e+01 lineto +4.621402e+01 6.073181e+01 lineto +4.68075e+01 6.264492e+01 lineto +4.454254e+01 6.291547e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.525658e+01 6.478117e+01 moveto +4.454254e+01 6.291547e+01 lineto +4.68075e+01 6.264492e+01 lineto +4.744247e+01 6.452006e+01 lineto +4.525658e+01 6.478117e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.601565e+01 6.660403e+01 moveto +4.525658e+01 6.478117e+01 lineto +4.744247e+01 6.452006e+01 lineto +4.81175e+01 6.635296e+01 lineto +4.601565e+01 6.660403e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.681802e+01 6.837989e+01 moveto +4.601565e+01 6.660403e+01 lineto +4.81175e+01 6.635296e+01 lineto +4.883104e+01 6.813943e+01 lineto +4.681802e+01 6.837989e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.766187e+01 7.01047e+01 moveto +4.681802e+01 6.837989e+01 lineto +4.883104e+01 6.813943e+01 lineto +4.958147e+01 6.987539e+01 lineto +4.766187e+01 7.01047e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.854527e+01 7.177451e+01 moveto +4.766187e+01 7.01047e+01 lineto +4.958147e+01 6.987539e+01 lineto +5.036706e+01 7.15569e+01 lineto +4.854527e+01 7.177451e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.946621e+01 7.338554e+01 moveto +4.854527e+01 7.177451e+01 lineto +5.036706e+01 7.15569e+01 lineto +5.118604e+01 7.31801e+01 lineto +4.946621e+01 7.338554e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.042258e+01 7.493409e+01 moveto +4.946621e+01 7.338554e+01 lineto +5.118604e+01 7.31801e+01 lineto +5.203653e+01 7.47413e+01 lineto +5.042258e+01 7.493409e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.141221e+01 7.641664e+01 moveto +5.042258e+01 7.493409e+01 lineto +5.203653e+01 7.47413e+01 lineto +5.291659e+01 7.623694e+01 lineto +5.141221e+01 7.641664e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.243283e+01 7.782981e+01 moveto +5.141221e+01 7.641664e+01 lineto +5.291659e+01 7.623694e+01 lineto +5.382421e+01 7.766361e+01 lineto +5.243283e+01 7.782981e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.348212e+01 7.917037e+01 moveto +5.243283e+01 7.782981e+01 lineto +5.382421e+01 7.766361e+01 lineto +5.475733e+01 7.901804e+01 lineto +5.348212e+01 7.917037e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.455768e+01 8.043526e+01 moveto +5.348212e+01 7.917037e+01 lineto +5.475733e+01 7.901804e+01 lineto +5.571381e+01 8.029716e+01 lineto +5.455768e+01 8.043526e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.565707e+01 8.16216e+01 moveto +5.455768e+01 8.043526e+01 lineto +5.571381e+01 8.029716e+01 lineto +5.669147e+01 8.149804e+01 lineto +5.565707e+01 8.16216e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.677776e+01 8.272668e+01 moveto +5.565707e+01 8.16216e+01 lineto +5.669147e+01 8.149804e+01 lineto +5.768809e+01 8.261794e+01 lineto +5.677776e+01 8.272668e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.791721e+01 8.374799e+01 moveto +5.677776e+01 8.272668e+01 lineto +5.768809e+01 8.261794e+01 lineto +5.870139e+01 8.365432e+01 lineto +5.791721e+01 8.374799e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.907282e+01 8.468318e+01 moveto +5.791721e+01 8.374799e+01 lineto +5.870139e+01 8.365432e+01 lineto +5.972905e+01 8.460479e+01 lineto +5.907282e+01 8.468318e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.024195e+01 8.553014e+01 moveto +5.907282e+01 8.468318e+01 lineto +5.972905e+01 8.460479e+01 lineto +6.076874e+01 8.546721e+01 lineto +6.024195e+01 8.553014e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.142193e+01 8.628692e+01 moveto +6.024195e+01 8.553014e+01 lineto +6.076874e+01 8.546721e+01 lineto +6.181808e+01 8.623959e+01 lineto +6.142193e+01 8.628692e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.261008e+01 8.69518e+01 moveto +6.142193e+01 8.628692e+01 lineto +6.181808e+01 8.623959e+01 lineto +6.287468e+01 8.692019e+01 lineto +6.261008e+01 8.69518e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.380367e+01 8.752326e+01 moveto +6.261008e+01 8.69518e+01 lineto +6.287468e+01 8.692019e+01 lineto +6.393613e+01 8.750744e+01 lineto +6.380367e+01 8.752326e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.380367e+01 8.752326e+01 lineto +6.393613e+01 8.750744e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.366244e+01 2.498837e+01 moveto +4.399311e+01 2.32199e+01 lineto +4.673796e+01 2.296162e+01 lineto +4.645051e+01 2.472603e+01 lineto +4.366244e+01 2.498837e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.338045e+01 2.680477e+01 moveto +4.366244e+01 2.498837e+01 lineto +4.645051e+01 2.472603e+01 lineto +4.620536e+01 2.653897e+01 lineto +4.338045e+01 2.680477e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.314778e+01 2.866497e+01 moveto +4.338045e+01 2.680477e+01 lineto +4.620536e+01 2.653897e+01 lineto +4.600309e+01 2.83963e+01 lineto +4.314778e+01 2.866497e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.296495e+01 3.05647e+01 moveto +4.314778e+01 2.866497e+01 lineto +4.600309e+01 2.83963e+01 lineto +4.584415e+01 3.029378e+01 lineto +4.296495e+01 3.05647e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.283239e+01 3.249965e+01 moveto +4.296495e+01 3.05647e+01 lineto +4.584415e+01 3.029378e+01 lineto +4.572891e+01 3.22271e+01 lineto +4.283239e+01 3.249965e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.27504e+01 3.446539e+01 moveto +4.283239e+01 3.249965e+01 lineto +4.572891e+01 3.22271e+01 lineto +4.565763e+01 3.419183e+01 lineto +4.27504e+01 3.446539e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.271916e+01 3.645744e+01 moveto +4.27504e+01 3.446539e+01 lineto +4.565763e+01 3.419183e+01 lineto +4.563048e+01 3.61835e+01 lineto +4.271916e+01 3.645744e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.273875e+01 3.847126e+01 moveto +4.271916e+01 3.645744e+01 lineto +4.563048e+01 3.61835e+01 lineto +4.56475e+01 3.819756e+01 lineto +4.273875e+01 3.847126e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.280911e+01 4.050226e+01 moveto +4.273875e+01 3.847126e+01 lineto +4.56475e+01 3.819756e+01 lineto +4.570868e+01 4.022942e+01 lineto +4.280911e+01 4.050226e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.29301e+01 4.254579e+01 moveto +4.280911e+01 4.050226e+01 lineto +4.570868e+01 4.022942e+01 lineto +4.581386e+01 4.227445e+01 lineto +4.29301e+01 4.254579e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.310144e+01 4.459721e+01 moveto +4.29301e+01 4.254579e+01 lineto +4.581386e+01 4.227445e+01 lineto +4.59628e+01 4.432797e+01 lineto +4.310144e+01 4.459721e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.332272e+01 4.665182e+01 moveto +4.310144e+01 4.459721e+01 lineto +4.59628e+01 4.432797e+01 lineto +4.615518e+01 4.63853e+01 lineto +4.332272e+01 4.665182e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.359346e+01 4.870495e+01 moveto +4.332272e+01 4.665182e+01 lineto +4.615518e+01 4.63853e+01 lineto +4.639054e+01 4.844176e+01 lineto +4.359346e+01 4.870495e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.391303e+01 5.075191e+01 moveto +4.359346e+01 4.870495e+01 lineto +4.639054e+01 4.844176e+01 lineto +4.666835e+01 5.049265e+01 lineto +4.391303e+01 5.075191e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.42807e+01 5.278803e+01 moveto +4.391303e+01 5.075191e+01 lineto +4.666835e+01 5.049265e+01 lineto +4.698798e+01 5.253329e+01 lineto +4.42807e+01 5.278803e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.469563e+01 5.480866e+01 moveto +4.42807e+01 5.278803e+01 lineto +4.698798e+01 5.253329e+01 lineto +4.734869e+01 5.455902e+01 lineto +4.469563e+01 5.480866e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.515688e+01 5.68092e+01 moveto +4.469563e+01 5.480866e+01 lineto +4.734869e+01 5.455902e+01 lineto +4.774967e+01 5.656524e+01 lineto +4.515688e+01 5.68092e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.566339e+01 5.878509e+01 moveto +4.515688e+01 5.68092e+01 lineto +4.774967e+01 5.656524e+01 lineto +4.819e+01 5.854735e+01 lineto +4.566339e+01 5.878509e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.621402e+01 6.073181e+01 moveto +4.566339e+01 5.878509e+01 lineto +4.819e+01 5.854735e+01 lineto +4.866868e+01 6.050083e+01 lineto +4.621402e+01 6.073181e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.68075e+01 6.264492e+01 moveto +4.621402e+01 6.073181e+01 lineto +4.866868e+01 6.050083e+01 lineto +4.918461e+01 6.242124e+01 lineto +4.68075e+01 6.264492e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.744247e+01 6.452006e+01 moveto +4.68075e+01 6.264492e+01 lineto +4.918461e+01 6.242124e+01 lineto +4.973662e+01 6.43042e+01 lineto +4.744247e+01 6.452006e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.81175e+01 6.635296e+01 moveto +4.744247e+01 6.452006e+01 lineto +4.973662e+01 6.43042e+01 lineto +5.032345e+01 6.614539e+01 lineto +4.81175e+01 6.635296e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.883104e+01 6.813943e+01 moveto +4.81175e+01 6.635296e+01 lineto +5.032345e+01 6.614539e+01 lineto +5.094375e+01 6.794063e+01 lineto +4.883104e+01 6.813943e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.958147e+01 6.987539e+01 moveto +4.883104e+01 6.813943e+01 lineto +5.094375e+01 6.794063e+01 lineto +5.159612e+01 6.968583e+01 lineto +4.958147e+01 6.987539e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.036706e+01 7.15569e+01 moveto +4.958147e+01 6.987539e+01 lineto +5.159612e+01 6.968583e+01 lineto +5.227907e+01 7.137699e+01 lineto +5.036706e+01 7.15569e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.118604e+01 7.31801e+01 moveto +5.036706e+01 7.15569e+01 lineto +5.227907e+01 7.137699e+01 lineto +5.299104e+01 7.301026e+01 lineto +5.118604e+01 7.31801e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.203653e+01 7.47413e+01 moveto +5.118604e+01 7.31801e+01 lineto +5.299104e+01 7.301026e+01 lineto +5.373039e+01 7.458192e+01 lineto +5.203653e+01 7.47413e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.291659e+01 7.623694e+01 moveto +5.203653e+01 7.47413e+01 lineto +5.373039e+01 7.458192e+01 lineto +5.449546e+01 7.608838e+01 lineto +5.291659e+01 7.623694e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.382421e+01 7.766361e+01 moveto +5.291659e+01 7.623694e+01 lineto +5.449546e+01 7.608838e+01 lineto +5.528449e+01 7.75262e+01 lineto +5.382421e+01 7.766361e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.475733e+01 7.901804e+01 moveto +5.382421e+01 7.766361e+01 lineto +5.528449e+01 7.75262e+01 lineto +5.609568e+01 7.889211e+01 lineto +5.475733e+01 7.901804e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.571381e+01 8.029716e+01 moveto +5.475733e+01 7.901804e+01 lineto +5.609568e+01 7.889211e+01 lineto +5.692718e+01 8.018299e+01 lineto +5.571381e+01 8.029716e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.669147e+01 8.149804e+01 moveto +5.571381e+01 8.029716e+01 lineto +5.692718e+01 8.018299e+01 lineto +5.77771e+01 8.139589e+01 lineto +5.669147e+01 8.149804e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.768809e+01 8.261794e+01 moveto +5.669147e+01 8.149804e+01 lineto +5.77771e+01 8.139589e+01 lineto +5.86435e+01 8.252804e+01 lineto +5.768809e+01 8.261794e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.870139e+01 8.365432e+01 moveto +5.768809e+01 8.261794e+01 lineto +5.86435e+01 8.252804e+01 lineto +5.952439e+01 8.357688e+01 lineto +5.870139e+01 8.365432e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.972905e+01 8.460479e+01 moveto +5.870139e+01 8.365432e+01 lineto +5.952439e+01 8.357688e+01 lineto +6.041778e+01 8.453999e+01 lineto +5.972905e+01 8.460479e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.076874e+01 8.546721e+01 moveto +5.972905e+01 8.460479e+01 lineto +6.041778e+01 8.453999e+01 lineto +6.132161e+01 8.541519e+01 lineto +6.076874e+01 8.546721e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.181808e+01 8.623959e+01 moveto +6.076874e+01 8.546721e+01 lineto +6.132161e+01 8.541519e+01 lineto +6.223384e+01 8.620047e+01 lineto +6.181808e+01 8.623959e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.287468e+01 8.692019e+01 moveto +6.181808e+01 8.623959e+01 lineto +6.223384e+01 8.620047e+01 lineto +6.315238e+01 8.689406e+01 lineto +6.287468e+01 8.692019e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.393613e+01 8.750744e+01 moveto +6.287468e+01 8.692019e+01 lineto +6.315238e+01 8.689406e+01 lineto +6.407514e+01 8.749436e+01 lineto +6.393613e+01 8.750744e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.393613e+01 8.750744e+01 lineto +6.407514e+01 8.749436e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.645051e+01 2.472603e+01 moveto +4.673796e+01 2.296162e+01 lineto +4.959541e+01 2.275907e+01 lineto +4.935293e+01 2.452029e+01 lineto +4.645051e+01 2.472603e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.620536e+01 2.653897e+01 moveto +4.645051e+01 2.472603e+01 lineto +4.935293e+01 2.452029e+01 lineto +4.914615e+01 2.633051e+01 lineto +4.620536e+01 2.653897e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.600309e+01 2.83963e+01 moveto +4.620536e+01 2.653897e+01 lineto +4.914615e+01 2.633051e+01 lineto +4.897552e+01 2.818559e+01 lineto +4.600309e+01 2.83963e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.584415e+01 3.029378e+01 moveto +4.600309e+01 2.83963e+01 lineto +4.897552e+01 2.818559e+01 lineto +4.884146e+01 3.008132e+01 lineto +4.584415e+01 3.029378e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.572891e+01 3.22271e+01 moveto +4.584415e+01 3.029378e+01 lineto +4.884146e+01 3.008132e+01 lineto +4.874425e+01 3.201335e+01 lineto +4.572891e+01 3.22271e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.565763e+01 3.419183e+01 moveto +4.572891e+01 3.22271e+01 lineto +4.874425e+01 3.201335e+01 lineto +4.868412e+01 3.39773e+01 lineto +4.565763e+01 3.419183e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.563048e+01 3.61835e+01 moveto +4.565763e+01 3.419183e+01 lineto +4.868412e+01 3.39773e+01 lineto +4.866121e+01 3.596866e+01 lineto +4.563048e+01 3.61835e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.56475e+01 3.819756e+01 moveto +4.563048e+01 3.61835e+01 lineto +4.866121e+01 3.596866e+01 lineto +4.867558e+01 3.798291e+01 lineto +4.56475e+01 3.819756e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.570868e+01 4.022942e+01 moveto +4.56475e+01 3.819756e+01 lineto +4.867558e+01 3.798291e+01 lineto +4.872718e+01 4.001545e+01 lineto +4.570868e+01 4.022942e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.581386e+01 4.227445e+01 moveto +4.570868e+01 4.022942e+01 lineto +4.872718e+01 4.001545e+01 lineto +4.88159e+01 4.206164e+01 lineto +4.581386e+01 4.227445e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.59628e+01 4.432797e+01 moveto +4.581386e+01 4.227445e+01 lineto +4.88159e+01 4.206164e+01 lineto +4.894154e+01 4.411682e+01 lineto +4.59628e+01 4.432797e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.615518e+01 4.63853e+01 moveto +4.59628e+01 4.432797e+01 lineto +4.894154e+01 4.411682e+01 lineto +4.910381e+01 4.617629e+01 lineto +4.615518e+01 4.63853e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.639054e+01 4.844176e+01 moveto +4.615518e+01 4.63853e+01 lineto +4.910381e+01 4.617629e+01 lineto +4.930235e+01 4.823536e+01 lineto +4.639054e+01 4.844176e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.666835e+01 5.049265e+01 moveto +4.639054e+01 4.844176e+01 lineto +4.930235e+01 4.823536e+01 lineto +4.953669e+01 5.028932e+01 lineto +4.666835e+01 5.049265e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.698798e+01 5.253329e+01 moveto +4.666835e+01 5.049265e+01 lineto +4.953669e+01 5.028932e+01 lineto +4.980631e+01 5.233351e+01 lineto +4.698798e+01 5.253329e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.734869e+01 5.455902e+01 moveto +4.698798e+01 5.253329e+01 lineto +4.980631e+01 5.233351e+01 lineto +5.011058e+01 5.436325e+01 lineto +4.734869e+01 5.455902e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.774967e+01 5.656524e+01 moveto +4.734869e+01 5.455902e+01 lineto +5.011058e+01 5.436325e+01 lineto +5.044882e+01 5.63739e+01 lineto +4.774967e+01 5.656524e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.819e+01 5.854735e+01 moveto +4.774967e+01 5.656524e+01 lineto +5.044882e+01 5.63739e+01 lineto +5.082025e+01 5.83609e+01 lineto +4.819e+01 5.854735e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.866868e+01 6.050083e+01 moveto +4.819e+01 5.854735e+01 lineto +5.082025e+01 5.83609e+01 lineto +5.122403e+01 6.03197e+01 lineto +4.866868e+01 6.050083e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.918461e+01 6.242124e+01 moveto +4.866868e+01 6.050083e+01 lineto +5.122403e+01 6.03197e+01 lineto +5.165924e+01 6.224583e+01 lineto +4.918461e+01 6.242124e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.973662e+01 6.43042e+01 moveto +4.918461e+01 6.242124e+01 lineto +5.165924e+01 6.224583e+01 lineto +5.212487e+01 6.41349e+01 lineto +4.973662e+01 6.43042e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.032345e+01 6.614539e+01 moveto +4.973662e+01 6.43042e+01 lineto +5.212487e+01 6.41349e+01 lineto +5.261988e+01 6.598261e+01 lineto +5.032345e+01 6.614539e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.094375e+01 6.794063e+01 moveto +5.032345e+01 6.614539e+01 lineto +5.261988e+01 6.598261e+01 lineto +5.314313e+01 6.778473e+01 lineto +5.094375e+01 6.794063e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.159612e+01 6.968583e+01 moveto +5.094375e+01 6.794063e+01 lineto +5.314313e+01 6.778473e+01 lineto +5.369342e+01 6.953716e+01 lineto +5.159612e+01 6.968583e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.227907e+01 7.137699e+01 moveto +5.159612e+01 6.968583e+01 lineto +5.369342e+01 6.953716e+01 lineto +5.426951e+01 7.123589e+01 lineto +5.227907e+01 7.137699e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.299104e+01 7.301026e+01 moveto +5.227907e+01 7.137699e+01 lineto +5.426951e+01 7.123589e+01 lineto +5.487007e+01 7.287706e+01 lineto +5.299104e+01 7.301026e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.373039e+01 7.458192e+01 moveto +5.299104e+01 7.301026e+01 lineto +5.487007e+01 7.287706e+01 lineto +5.549374e+01 7.445692e+01 lineto +5.373039e+01 7.458192e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.449546e+01 7.608838e+01 moveto +5.373039e+01 7.458192e+01 lineto +5.549374e+01 7.445692e+01 lineto +5.61391e+01 7.597187e+01 lineto +5.449546e+01 7.608838e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.528449e+01 7.75262e+01 moveto +5.449546e+01 7.608838e+01 lineto +5.61391e+01 7.597187e+01 lineto +5.680467e+01 7.741844e+01 lineto +5.528449e+01 7.75262e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.609568e+01 7.889211e+01 moveto +5.528449e+01 7.75262e+01 lineto +5.680467e+01 7.741844e+01 lineto +5.748893e+01 7.879335e+01 lineto +5.609568e+01 7.889211e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.692718e+01 8.018299e+01 moveto +5.609568e+01 7.889211e+01 lineto +5.748893e+01 7.879335e+01 lineto +5.819033e+01 8.009345e+01 lineto +5.692718e+01 8.018299e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.77771e+01 8.139589e+01 moveto +5.692718e+01 8.018299e+01 lineto +5.819033e+01 8.009345e+01 lineto +5.890726e+01 8.131577e+01 lineto +5.77771e+01 8.139589e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.86435e+01 8.252804e+01 moveto +5.77771e+01 8.139589e+01 lineto +5.890726e+01 8.131577e+01 lineto +5.963809e+01 8.245754e+01 lineto +5.86435e+01 8.252804e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.952439e+01 8.357688e+01 moveto +5.86435e+01 8.252804e+01 lineto +5.963809e+01 8.245754e+01 lineto +6.038116e+01 8.351614e+01 lineto +5.952439e+01 8.357688e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.041778e+01 8.453999e+01 moveto +5.952439e+01 8.357688e+01 lineto +6.038116e+01 8.351614e+01 lineto +6.113475e+01 8.448917e+01 lineto +6.041778e+01 8.453999e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.132161e+01 8.541519e+01 moveto +6.041778e+01 8.453999e+01 lineto +6.113475e+01 8.448917e+01 lineto +6.189717e+01 8.537439e+01 lineto +6.132161e+01 8.541519e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.223384e+01 8.620047e+01 moveto +6.132161e+01 8.541519e+01 lineto +6.189717e+01 8.537439e+01 lineto +6.266666e+01 8.616979e+01 lineto +6.223384e+01 8.620047e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.315238e+01 8.689406e+01 moveto +6.223384e+01 8.620047e+01 lineto +6.266666e+01 8.616979e+01 lineto +6.344148e+01 8.687356e+01 lineto +6.315238e+01 8.689406e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.407514e+01 8.749436e+01 moveto +6.315238e+01 8.689406e+01 lineto +6.344148e+01 8.687356e+01 lineto +6.421985e+01 8.74841e+01 lineto +6.407514e+01 8.749436e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.407514e+01 8.749436e+01 lineto +6.421985e+01 8.74841e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.935293e+01 2.452029e+01 moveto +4.959541e+01 2.275907e+01 lineto +5.254784e+01 2.261349e+01 lineto +5.235183e+01 2.437242e+01 lineto +4.935293e+01 2.452029e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.914615e+01 2.633051e+01 moveto +4.935293e+01 2.452029e+01 lineto +5.235183e+01 2.437242e+01 lineto +5.218468e+01 2.618068e+01 lineto +4.914615e+01 2.633051e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.897552e+01 2.818559e+01 moveto +4.914615e+01 2.633051e+01 lineto +5.218468e+01 2.618068e+01 lineto +5.204675e+01 2.803416e+01 lineto +4.897552e+01 2.818559e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.884146e+01 3.008132e+01 moveto +4.897552e+01 2.818559e+01 lineto +5.204675e+01 2.803416e+01 lineto +5.193838e+01 2.992861e+01 lineto +4.884146e+01 3.008132e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.874425e+01 3.201335e+01 moveto +4.884146e+01 3.008132e+01 lineto +5.193838e+01 2.992861e+01 lineto +5.18598e+01 3.185973e+01 lineto +4.874425e+01 3.201335e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.868412e+01 3.39773e+01 moveto +4.874425e+01 3.201335e+01 lineto +5.18598e+01 3.185973e+01 lineto +5.18112e+01 3.38231e+01 lineto +4.868412e+01 3.39773e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.866121e+01 3.596866e+01 moveto +4.868412e+01 3.39773e+01 lineto +5.18112e+01 3.38231e+01 lineto +5.179268e+01 3.581426e+01 lineto +4.866121e+01 3.596866e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.867558e+01 3.798291e+01 moveto +4.866121e+01 3.596866e+01 lineto +5.179268e+01 3.581426e+01 lineto +5.18043e+01 3.782864e+01 lineto +4.867558e+01 3.798291e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.872718e+01 4.001545e+01 moveto +4.867558e+01 3.798291e+01 lineto +5.18043e+01 3.782864e+01 lineto +5.184601e+01 3.986167e+01 lineto +4.872718e+01 4.001545e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.88159e+01 4.206164e+01 moveto +4.872718e+01 4.001545e+01 lineto +5.184601e+01 3.986167e+01 lineto +5.191773e+01 4.19087e+01 lineto +4.88159e+01 4.206164e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.894154e+01 4.411682e+01 moveto +4.88159e+01 4.206164e+01 lineto +5.191773e+01 4.19087e+01 lineto +5.201929e+01 4.396506e+01 lineto +4.894154e+01 4.411682e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.910381e+01 4.617629e+01 moveto +4.894154e+01 4.411682e+01 lineto +5.201929e+01 4.396506e+01 lineto +5.215046e+01 4.602606e+01 lineto +4.910381e+01 4.617629e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.930235e+01 4.823536e+01 moveto +4.910381e+01 4.617629e+01 lineto +5.215046e+01 4.602606e+01 lineto +5.231094e+01 4.808701e+01 lineto +4.930235e+01 4.823536e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.953669e+01 5.028932e+01 moveto +4.930235e+01 4.823536e+01 lineto +5.231094e+01 4.808701e+01 lineto +5.250037e+01 5.014319e+01 lineto +4.953669e+01 5.028932e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.980631e+01 5.233351e+01 moveto +4.953669e+01 5.028932e+01 lineto +5.250037e+01 5.014319e+01 lineto +5.271831e+01 5.218992e+01 lineto +4.980631e+01 5.233351e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.011058e+01 5.436325e+01 moveto +4.980631e+01 5.233351e+01 lineto +5.271831e+01 5.218992e+01 lineto +5.296427e+01 5.422254e+01 lineto +5.011058e+01 5.436325e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.044882e+01 5.63739e+01 moveto +5.011058e+01 5.436325e+01 lineto +5.296427e+01 5.422254e+01 lineto +5.323768e+01 5.623639e+01 lineto +5.044882e+01 5.63739e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.082025e+01 5.83609e+01 moveto +5.044882e+01 5.63739e+01 lineto +5.323768e+01 5.623639e+01 lineto +5.353793e+01 5.82269e+01 lineto +5.082025e+01 5.83609e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.122403e+01 6.03197e+01 moveto +5.082025e+01 5.83609e+01 lineto +5.353793e+01 5.82269e+01 lineto +5.386432e+01 6.018951e+01 lineto +5.122403e+01 6.03197e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.165924e+01 6.224583e+01 moveto +5.122403e+01 6.03197e+01 lineto +5.386432e+01 6.018951e+01 lineto +5.421611e+01 6.211975e+01 lineto +5.165924e+01 6.224583e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.212487e+01 6.41349e+01 moveto +5.165924e+01 6.224583e+01 lineto +5.421611e+01 6.211975e+01 lineto +5.45925e+01 6.401323e+01 lineto +5.212487e+01 6.41349e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.261988e+01 6.598261e+01 moveto +5.212487e+01 6.41349e+01 lineto +5.45925e+01 6.401323e+01 lineto +5.499264e+01 6.586561e+01 lineto +5.261988e+01 6.598261e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.314313e+01 6.778473e+01 moveto +5.261988e+01 6.598261e+01 lineto +5.499264e+01 6.586561e+01 lineto +5.54156e+01 6.767268e+01 lineto +5.314313e+01 6.778473e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.369342e+01 6.953716e+01 moveto +5.314313e+01 6.778473e+01 lineto +5.54156e+01 6.767268e+01 lineto +5.586043e+01 6.943031e+01 lineto +5.369342e+01 6.953716e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.426951e+01 7.123589e+01 moveto +5.369342e+01 6.953716e+01 lineto +5.586043e+01 6.943031e+01 lineto +5.63261e+01 7.113449e+01 lineto +5.426951e+01 7.123589e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.487007e+01 7.287706e+01 moveto +5.426951e+01 7.123589e+01 lineto +5.63261e+01 7.113449e+01 lineto +5.681156e+01 7.278133e+01 lineto +5.487007e+01 7.287706e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.549374e+01 7.445692e+01 moveto +5.487007e+01 7.287706e+01 lineto +5.681156e+01 7.278133e+01 lineto +5.73157e+01 7.436709e+01 lineto +5.549374e+01 7.445692e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.61391e+01 7.597187e+01 moveto +5.549374e+01 7.445692e+01 lineto +5.73157e+01 7.436709e+01 lineto +5.783737e+01 7.588813e+01 lineto +5.61391e+01 7.597187e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.680467e+01 7.741844e+01 moveto +5.61391e+01 7.597187e+01 lineto +5.783737e+01 7.588813e+01 lineto +5.837538e+01 7.734099e+01 lineto +5.680467e+01 7.741844e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.748893e+01 7.879335e+01 moveto +5.680467e+01 7.741844e+01 lineto +5.837538e+01 7.734099e+01 lineto +5.89285e+01 7.872237e+01 lineto +5.748893e+01 7.879335e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.819033e+01 8.009345e+01 moveto +5.748893e+01 7.879335e+01 lineto +5.89285e+01 7.872237e+01 lineto +5.949546e+01 8.002909e+01 lineto +5.819033e+01 8.009345e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.890726e+01 8.131577e+01 moveto +5.819033e+01 8.009345e+01 lineto +5.949546e+01 8.002909e+01 lineto +6.007499e+01 8.12582e+01 lineto +5.890726e+01 8.131577e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.963809e+01 8.245754e+01 moveto +5.890726e+01 8.131577e+01 lineto +6.007499e+01 8.12582e+01 lineto +6.066575e+01 8.240687e+01 lineto +5.963809e+01 8.245754e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.038116e+01 8.351614e+01 moveto +5.963809e+01 8.245754e+01 lineto +6.066575e+01 8.240687e+01 lineto +6.12664e+01 8.347249e+01 lineto +6.038116e+01 8.351614e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.113475e+01 8.448917e+01 moveto +6.038116e+01 8.351614e+01 lineto +6.12664e+01 8.347249e+01 lineto +6.187556e+01 8.445264e+01 lineto +6.113475e+01 8.448917e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.189717e+01 8.537439e+01 moveto +6.113475e+01 8.448917e+01 lineto +6.187556e+01 8.445264e+01 lineto +6.249185e+01 8.534507e+01 lineto +6.189717e+01 8.537439e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.266666e+01 8.616979e+01 moveto +6.189717e+01 8.537439e+01 lineto +6.249185e+01 8.534507e+01 lineto +6.311387e+01 8.614774e+01 lineto +6.266666e+01 8.616979e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.344148e+01 8.687356e+01 moveto +6.266666e+01 8.616979e+01 lineto +6.311387e+01 8.614774e+01 lineto +6.374018e+01 8.685884e+01 lineto +6.344148e+01 8.687356e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.421985e+01 8.74841e+01 moveto +6.344148e+01 8.687356e+01 lineto +6.374018e+01 8.685884e+01 lineto +6.436937e+01 8.747673e+01 lineto +6.421985e+01 8.74841e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.421985e+01 8.74841e+01 lineto +6.436937e+01 8.747673e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.235183e+01 2.437242e+01 moveto +5.254784e+01 2.261349e+01 lineto +5.557703e+01 2.252578e+01 lineto +5.542871e+01 2.428333e+01 lineto +5.235183e+01 2.437242e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.218468e+01 2.618068e+01 moveto +5.235183e+01 2.437242e+01 lineto +5.542871e+01 2.428333e+01 lineto +5.530222e+01 2.609042e+01 lineto +5.218468e+01 2.618068e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.204675e+01 2.803416e+01 moveto +5.218468e+01 2.618068e+01 lineto +5.530222e+01 2.609042e+01 lineto +5.519785e+01 2.794292e+01 lineto +5.204675e+01 2.803416e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.193838e+01 2.992861e+01 moveto +5.204675e+01 2.803416e+01 lineto +5.519785e+01 2.794292e+01 lineto +5.511584e+01 2.983661e+01 lineto +5.193838e+01 2.992861e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.18598e+01 3.185973e+01 moveto +5.193838e+01 2.992861e+01 lineto +5.511584e+01 2.983661e+01 lineto +5.505638e+01 3.176718e+01 lineto +5.18598e+01 3.185973e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.18112e+01 3.38231e+01 moveto +5.18598e+01 3.185973e+01 lineto +5.505638e+01 3.176718e+01 lineto +5.50196e+01 3.373021e+01 lineto +5.18112e+01 3.38231e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.179268e+01 3.581426e+01 moveto +5.18112e+01 3.38231e+01 lineto +5.50196e+01 3.373021e+01 lineto +5.500558e+01 3.572123e+01 lineto +5.179268e+01 3.581426e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.18043e+01 3.782864e+01 moveto +5.179268e+01 3.581426e+01 lineto +5.500558e+01 3.572123e+01 lineto +5.501437e+01 3.77357e+01 lineto +5.18043e+01 3.782864e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.184601e+01 3.986167e+01 moveto +5.18043e+01 3.782864e+01 lineto +5.501437e+01 3.77357e+01 lineto +5.504593e+01 3.976902e+01 lineto +5.184601e+01 3.986167e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.191773e+01 4.19087e+01 moveto +5.184601e+01 3.986167e+01 lineto +5.504593e+01 3.976902e+01 lineto +5.510021e+01 4.181655e+01 lineto +5.191773e+01 4.19087e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.201929e+01 4.396506e+01 moveto +5.191773e+01 4.19087e+01 lineto +5.510021e+01 4.181655e+01 lineto +5.517706e+01 4.387363e+01 lineto +5.201929e+01 4.396506e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.215046e+01 4.602606e+01 moveto +5.201929e+01 4.396506e+01 lineto +5.517706e+01 4.387363e+01 lineto +5.527632e+01 4.593556e+01 lineto +5.215046e+01 4.602606e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.231094e+01 4.808701e+01 moveto +5.215046e+01 4.602606e+01 lineto +5.527632e+01 4.593556e+01 lineto +5.539776e+01 4.799763e+01 lineto +5.231094e+01 4.808701e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.250037e+01 5.014319e+01 moveto +5.231094e+01 4.808701e+01 lineto +5.539776e+01 4.799763e+01 lineto +5.554111e+01 5.005515e+01 lineto +5.250037e+01 5.014319e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.271831e+01 5.218992e+01 moveto +5.250037e+01 5.014319e+01 lineto +5.554111e+01 5.005515e+01 lineto +5.570603e+01 5.210342e+01 lineto +5.271831e+01 5.218992e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.296427e+01 5.422254e+01 moveto +5.271831e+01 5.218992e+01 lineto +5.570603e+01 5.210342e+01 lineto +5.589216e+01 5.413776e+01 lineto +5.296427e+01 5.422254e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.323768e+01 5.623639e+01 moveto +5.296427e+01 5.422254e+01 lineto +5.589216e+01 5.413776e+01 lineto +5.609906e+01 5.615354e+01 lineto +5.323768e+01 5.623639e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.353793e+01 5.82269e+01 moveto +5.323768e+01 5.623639e+01 lineto +5.609906e+01 5.615354e+01 lineto +5.632627e+01 5.814616e+01 lineto +5.353793e+01 5.82269e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.386432e+01 6.018951e+01 moveto +5.353793e+01 5.82269e+01 lineto +5.632627e+01 5.814616e+01 lineto +5.657326e+01 6.011107e+01 lineto +5.386432e+01 6.018951e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.421611e+01 6.211975e+01 moveto +5.386432e+01 6.018951e+01 lineto +5.657326e+01 6.011107e+01 lineto +5.683947e+01 6.20438e+01 lineto +5.421611e+01 6.211975e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.45925e+01 6.401323e+01 moveto +5.421611e+01 6.211975e+01 lineto +5.683947e+01 6.20438e+01 lineto +5.71243e+01 6.393992e+01 lineto +5.45925e+01 6.401323e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.499264e+01 6.586561e+01 moveto +5.45925e+01 6.401323e+01 lineto +5.71243e+01 6.393992e+01 lineto +5.742709e+01 6.579512e+01 lineto +5.499264e+01 6.586561e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.54156e+01 6.767268e+01 moveto +5.499264e+01 6.586561e+01 lineto +5.742709e+01 6.579512e+01 lineto +5.774716e+01 6.760517e+01 lineto +5.54156e+01 6.767268e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.586043e+01 6.943031e+01 moveto +5.54156e+01 6.767268e+01 lineto +5.774716e+01 6.760517e+01 lineto +5.808378e+01 6.936593e+01 lineto +5.586043e+01 6.943031e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.63261e+01 7.113449e+01 moveto +5.586043e+01 6.943031e+01 lineto +5.808378e+01 6.936593e+01 lineto +5.843617e+01 7.107339e+01 lineto +5.63261e+01 7.113449e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.681156e+01 7.278133e+01 moveto +5.63261e+01 7.113449e+01 lineto +5.843617e+01 7.107339e+01 lineto +5.880353e+01 7.272366e+01 lineto +5.681156e+01 7.278133e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.73157e+01 7.436709e+01 moveto +5.681156e+01 7.278133e+01 lineto +5.880353e+01 7.272366e+01 lineto +5.918503e+01 7.431296e+01 lineto +5.73157e+01 7.436709e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.783737e+01 7.588813e+01 moveto +5.73157e+01 7.436709e+01 lineto +5.918503e+01 7.431296e+01 lineto +5.95798e+01 7.583768e+01 lineto +5.783737e+01 7.588813e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.837538e+01 7.734099e+01 moveto +5.783737e+01 7.588813e+01 lineto +5.95798e+01 7.583768e+01 lineto +5.998693e+01 7.729433e+01 lineto +5.837538e+01 7.734099e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.89285e+01 7.872237e+01 moveto +5.837538e+01 7.734099e+01 lineto +5.998693e+01 7.729433e+01 lineto +6.040549e+01 7.86796e+01 lineto +5.89285e+01 7.872237e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.949546e+01 8.002909e+01 moveto +5.89285e+01 7.872237e+01 lineto +6.040549e+01 7.86796e+01 lineto +6.083453e+01 7.999032e+01 lineto +5.949546e+01 8.002909e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.007499e+01 8.12582e+01 moveto +5.949546e+01 8.002909e+01 lineto +6.083453e+01 7.999032e+01 lineto +6.127308e+01 8.122351e+01 lineto +6.007499e+01 8.12582e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.066575e+01 8.240687e+01 moveto +6.007499e+01 8.12582e+01 lineto +6.127308e+01 8.122351e+01 lineto +6.172013e+01 8.237634e+01 lineto +6.066575e+01 8.240687e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.12664e+01 8.347249e+01 moveto +6.066575e+01 8.240687e+01 lineto +6.172013e+01 8.237634e+01 lineto +6.217466e+01 8.34462e+01 lineto +6.12664e+01 8.347249e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.187556e+01 8.445264e+01 moveto +6.12664e+01 8.347249e+01 lineto +6.217466e+01 8.34462e+01 lineto +6.263563e+01 8.443063e+01 lineto +6.187556e+01 8.445264e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.249185e+01 8.534507e+01 moveto +6.187556e+01 8.445264e+01 lineto +6.263563e+01 8.443063e+01 lineto +6.3102e+01 8.53274e+01 lineto +6.249185e+01 8.534507e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.311387e+01 8.614774e+01 moveto +6.249185e+01 8.534507e+01 lineto +6.3102e+01 8.53274e+01 lineto +6.35727e+01 8.613446e+01 lineto +6.311387e+01 8.614774e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.374018e+01 8.685884e+01 moveto +6.311387e+01 8.614774e+01 lineto +6.35727e+01 8.613446e+01 lineto +6.404665e+01 8.684996e+01 lineto +6.374018e+01 8.685884e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.436937e+01 8.747673e+01 moveto +6.374018e+01 8.685884e+01 lineto +6.404665e+01 8.684996e+01 lineto +6.452278e+01 8.747228e+01 lineto +6.436937e+01 8.747673e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.436937e+01 8.747673e+01 lineto +6.452278e+01 8.747228e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.542871e+01 2.428333e+01 moveto +5.557703e+01 2.252578e+01 lineto +5.866432e+01 2.249648e+01 lineto +5.856459e+01 2.425357e+01 lineto +5.542871e+01 2.428333e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.530222e+01 2.609042e+01 moveto +5.542871e+01 2.428333e+01 lineto +5.856459e+01 2.425357e+01 lineto +5.847955e+01 2.606026e+01 lineto +5.530222e+01 2.609042e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.519785e+01 2.794292e+01 moveto +5.530222e+01 2.609042e+01 lineto +5.847955e+01 2.606026e+01 lineto +5.840937e+01 2.791244e+01 lineto +5.519785e+01 2.794292e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.511584e+01 2.983661e+01 moveto +5.519785e+01 2.794292e+01 lineto +5.840937e+01 2.791244e+01 lineto +5.835423e+01 2.980588e+01 lineto +5.511584e+01 2.983661e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.505638e+01 3.176718e+01 moveto +5.511584e+01 2.983661e+01 lineto +5.835423e+01 2.980588e+01 lineto +5.831425e+01 3.173626e+01 lineto +5.505638e+01 3.176718e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.50196e+01 3.373021e+01 moveto +5.505638e+01 3.176718e+01 lineto +5.831425e+01 3.173626e+01 lineto +5.828952e+01 3.369918e+01 lineto +5.50196e+01 3.373021e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.500558e+01 3.572123e+01 moveto +5.50196e+01 3.373021e+01 lineto +5.828952e+01 3.369918e+01 lineto +5.82801e+01 3.569016e+01 lineto +5.500558e+01 3.572123e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.501437e+01 3.77357e+01 moveto +5.500558e+01 3.572123e+01 lineto +5.82801e+01 3.569016e+01 lineto +5.828601e+01 3.770465e+01 lineto +5.501437e+01 3.77357e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.504593e+01 3.976902e+01 moveto +5.501437e+01 3.77357e+01 lineto +5.828601e+01 3.770465e+01 lineto +5.830723e+01 3.973807e+01 lineto +5.504593e+01 3.976902e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.510021e+01 4.181655e+01 moveto +5.504593e+01 3.976902e+01 lineto +5.830723e+01 3.973807e+01 lineto +5.834372e+01 4.178577e+01 lineto +5.510021e+01 4.181655e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.517706e+01 4.387363e+01 moveto +5.510021e+01 4.181655e+01 lineto +5.834372e+01 4.178577e+01 lineto +5.83954e+01 4.384309e+01 lineto +5.517706e+01 4.387363e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.527632e+01 4.593556e+01 moveto +5.517706e+01 4.387363e+01 lineto +5.83954e+01 4.384309e+01 lineto +5.846214e+01 4.590533e+01 lineto +5.527632e+01 4.593556e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.539776e+01 4.799763e+01 moveto +5.527632e+01 4.593556e+01 lineto +5.846214e+01 4.590533e+01 lineto +5.854379e+01 4.796778e+01 lineto +5.539776e+01 4.799763e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.554111e+01 5.005515e+01 moveto +5.539776e+01 4.799763e+01 lineto +5.854379e+01 4.796778e+01 lineto +5.864017e+01 5.002574e+01 lineto +5.554111e+01 5.005515e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.570603e+01 5.210342e+01 moveto +5.554111e+01 5.005515e+01 lineto +5.864017e+01 5.002574e+01 lineto +5.875106e+01 5.207452e+01 lineto +5.570603e+01 5.210342e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.589216e+01 5.413776e+01 moveto +5.570603e+01 5.210342e+01 lineto +5.875106e+01 5.207452e+01 lineto +5.88762e+01 5.410944e+01 lineto +5.589216e+01 5.413776e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.609906e+01 5.615354e+01 moveto +5.589216e+01 5.413776e+01 lineto +5.88762e+01 5.410944e+01 lineto +5.901532e+01 5.612587e+01 lineto +5.609906e+01 5.615354e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.632627e+01 5.814616e+01 moveto +5.609906e+01 5.615354e+01 lineto +5.901532e+01 5.612587e+01 lineto +5.916808e+01 5.811919e+01 lineto +5.632627e+01 5.814616e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.657326e+01 6.011107e+01 moveto +5.632627e+01 5.814616e+01 lineto +5.916808e+01 5.811919e+01 lineto +5.933415e+01 6.008487e+01 lineto +5.657326e+01 6.011107e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.683947e+01 6.20438e+01 moveto +5.657326e+01 6.011107e+01 lineto +5.933415e+01 6.008487e+01 lineto +5.951314e+01 6.201843e+01 lineto +5.683947e+01 6.20438e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.71243e+01 6.393992e+01 moveto +5.683947e+01 6.20438e+01 lineto +5.951314e+01 6.201843e+01 lineto +5.970465e+01 6.391544e+01 lineto +5.71243e+01 6.393992e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.742709e+01 6.579512e+01 moveto +5.71243e+01 6.393992e+01 lineto +5.970465e+01 6.391544e+01 lineto +5.990824e+01 6.577158e+01 lineto +5.742709e+01 6.579512e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.774716e+01 6.760517e+01 moveto +5.742709e+01 6.579512e+01 lineto +5.990824e+01 6.577158e+01 lineto +6.012344e+01 6.758262e+01 lineto +5.774716e+01 6.760517e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.808378e+01 6.936593e+01 moveto +5.774716e+01 6.760517e+01 lineto +6.012344e+01 6.758262e+01 lineto +6.034977e+01 6.934443e+01 lineto +5.808378e+01 6.936593e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.843617e+01 7.107339e+01 moveto +5.808378e+01 6.936593e+01 lineto +6.034977e+01 6.934443e+01 lineto +6.058671e+01 7.105298e+01 lineto +5.843617e+01 7.107339e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.880353e+01 7.272366e+01 moveto +5.843617e+01 7.107339e+01 lineto +6.058671e+01 7.105298e+01 lineto +6.083371e+01 7.270439e+01 lineto +5.880353e+01 7.272366e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.918503e+01 7.431296e+01 moveto +5.880353e+01 7.272366e+01 lineto +6.083371e+01 7.270439e+01 lineto +6.109022e+01 7.429488e+01 lineto +5.918503e+01 7.431296e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.95798e+01 7.583768e+01 moveto +5.918503e+01 7.431296e+01 lineto +6.109022e+01 7.429488e+01 lineto +6.135564e+01 7.582083e+01 lineto +5.95798e+01 7.583768e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.998693e+01 7.729433e+01 moveto +5.95798e+01 7.583768e+01 lineto +6.135564e+01 7.582083e+01 lineto +6.162938e+01 7.727875e+01 lineto +5.998693e+01 7.729433e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.040549e+01 7.86796e+01 moveto +5.998693e+01 7.729433e+01 lineto +6.162938e+01 7.727875e+01 lineto +6.191081e+01 7.866532e+01 lineto +6.040549e+01 7.86796e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.083453e+01 7.999032e+01 moveto +6.040549e+01 7.86796e+01 lineto +6.191081e+01 7.866532e+01 lineto +6.219928e+01 7.997737e+01 lineto +6.083453e+01 7.999032e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.127308e+01 8.122351e+01 moveto +6.083453e+01 7.999032e+01 lineto +6.219928e+01 7.997737e+01 lineto +6.249415e+01 8.121192e+01 lineto +6.127308e+01 8.122351e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.172013e+01 8.237634e+01 moveto +6.127308e+01 8.122351e+01 lineto +6.249415e+01 8.121192e+01 lineto +6.279473e+01 8.236614e+01 lineto +6.172013e+01 8.237634e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.217466e+01 8.34462e+01 moveto +6.172013e+01 8.237634e+01 lineto +6.279473e+01 8.236614e+01 lineto +6.310034e+01 8.343741e+01 lineto +6.217466e+01 8.34462e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.263563e+01 8.443063e+01 moveto +6.217466e+01 8.34462e+01 lineto +6.310034e+01 8.343741e+01 lineto +6.341028e+01 8.442328e+01 lineto +6.263563e+01 8.443063e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.3102e+01 8.53274e+01 moveto +6.263563e+01 8.443063e+01 lineto +6.341028e+01 8.442328e+01 lineto +6.372385e+01 8.53215e+01 lineto +6.3102e+01 8.53274e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.35727e+01 8.613446e+01 moveto +6.3102e+01 8.53274e+01 lineto +6.372385e+01 8.53215e+01 lineto +6.404033e+01 8.613002e+01 lineto +6.35727e+01 8.613446e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.404665e+01 8.684996e+01 moveto +6.35727e+01 8.613446e+01 lineto +6.404033e+01 8.613002e+01 lineto +6.4359e+01 8.6847e+01 lineto +6.404665e+01 8.684996e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.452278e+01 8.747228e+01 moveto +6.404665e+01 8.684996e+01 lineto +6.4359e+01 8.6847e+01 lineto +6.467914e+01 8.74708e+01 lineto +6.452278e+01 8.747228e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.452278e+01 8.747228e+01 lineto +6.467914e+01 8.74708e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.856459e+01 2.425357e+01 moveto +5.866432e+01 2.249648e+01 lineto +6.179068e+01 2.252578e+01 lineto +6.174016e+01 2.428333e+01 lineto +5.856459e+01 2.425357e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.847955e+01 2.606026e+01 moveto +5.856459e+01 2.425357e+01 lineto +6.174016e+01 2.428333e+01 lineto +6.169708e+01 2.609042e+01 lineto +5.847955e+01 2.606026e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.840937e+01 2.791244e+01 moveto +5.847955e+01 2.606026e+01 lineto +6.169708e+01 2.609042e+01 lineto +6.166153e+01 2.794292e+01 lineto +5.840937e+01 2.791244e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.835423e+01 2.980588e+01 moveto +5.840937e+01 2.791244e+01 lineto +6.166153e+01 2.794292e+01 lineto +6.16336e+01 2.983661e+01 lineto +5.835423e+01 2.980588e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.831425e+01 3.173626e+01 moveto +5.835423e+01 2.980588e+01 lineto +6.16336e+01 2.983661e+01 lineto +6.161335e+01 3.176718e+01 lineto +5.831425e+01 3.173626e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.828952e+01 3.369918e+01 moveto +5.831425e+01 3.173626e+01 lineto +6.161335e+01 3.176718e+01 lineto +6.160082e+01 3.373021e+01 lineto +5.828952e+01 3.369918e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.82801e+01 3.569016e+01 moveto +5.828952e+01 3.369918e+01 lineto +6.160082e+01 3.373021e+01 lineto +6.159605e+01 3.572123e+01 lineto +5.82801e+01 3.569016e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.828601e+01 3.770465e+01 moveto +5.82801e+01 3.569016e+01 lineto +6.159605e+01 3.572123e+01 lineto +6.159904e+01 3.77357e+01 lineto +5.828601e+01 3.770465e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.830723e+01 3.973807e+01 moveto +5.828601e+01 3.770465e+01 lineto +6.159904e+01 3.77357e+01 lineto +6.160979e+01 3.976902e+01 lineto +5.830723e+01 3.973807e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.834372e+01 4.178577e+01 moveto +5.830723e+01 3.973807e+01 lineto +6.160979e+01 3.976902e+01 lineto +6.162828e+01 4.181655e+01 lineto +5.834372e+01 4.178577e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.83954e+01 4.384309e+01 moveto +5.834372e+01 4.178577e+01 lineto +6.162828e+01 4.181655e+01 lineto +6.165445e+01 4.387363e+01 lineto +5.83954e+01 4.384309e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.846214e+01 4.590533e+01 moveto +5.83954e+01 4.384309e+01 lineto +6.165445e+01 4.387363e+01 lineto +6.168826e+01 4.593556e+01 lineto +5.846214e+01 4.590533e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.854379e+01 4.796778e+01 moveto +5.846214e+01 4.590533e+01 lineto +6.168826e+01 4.593556e+01 lineto +6.172962e+01 4.799763e+01 lineto +5.854379e+01 4.796778e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.864017e+01 5.002574e+01 moveto +5.854379e+01 4.796778e+01 lineto +6.172962e+01 4.799763e+01 lineto +6.177844e+01 5.005515e+01 lineto +5.864017e+01 5.002574e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.875106e+01 5.207452e+01 moveto +5.864017e+01 5.002574e+01 lineto +6.177844e+01 5.005515e+01 lineto +6.183461e+01 5.210342e+01 lineto +5.875106e+01 5.207452e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.88762e+01 5.410944e+01 moveto +5.875106e+01 5.207452e+01 lineto +6.183461e+01 5.210342e+01 lineto +6.1898e+01 5.413776e+01 lineto +5.88762e+01 5.410944e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.901532e+01 5.612587e+01 moveto +5.88762e+01 5.410944e+01 lineto +6.1898e+01 5.413776e+01 lineto +6.196847e+01 5.615354e+01 lineto +5.901532e+01 5.612587e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.916808e+01 5.811919e+01 moveto +5.901532e+01 5.612587e+01 lineto +6.196847e+01 5.615354e+01 lineto +6.204585e+01 5.814616e+01 lineto +5.916808e+01 5.811919e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.933415e+01 6.008487e+01 moveto +5.916808e+01 5.811919e+01 lineto +6.204585e+01 5.814616e+01 lineto +6.212998e+01 6.011107e+01 lineto +5.933415e+01 6.008487e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.951314e+01 6.201843e+01 moveto +5.933415e+01 6.008487e+01 lineto +6.212998e+01 6.011107e+01 lineto +6.222064e+01 6.20438e+01 lineto +5.951314e+01 6.201843e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.970465e+01 6.391544e+01 moveto +5.951314e+01 6.201843e+01 lineto +6.222064e+01 6.20438e+01 lineto +6.231765e+01 6.393992e+01 lineto +5.970465e+01 6.391544e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +5.990824e+01 6.577158e+01 moveto +5.970465e+01 6.391544e+01 lineto +6.231765e+01 6.393992e+01 lineto +6.242078e+01 6.579512e+01 lineto +5.990824e+01 6.577158e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.012344e+01 6.758262e+01 moveto +5.990824e+01 6.577158e+01 lineto +6.242078e+01 6.579512e+01 lineto +6.252979e+01 6.760517e+01 lineto +6.012344e+01 6.758262e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.034977e+01 6.934443e+01 moveto +6.012344e+01 6.758262e+01 lineto +6.252979e+01 6.760517e+01 lineto +6.264444e+01 6.936593e+01 lineto +6.034977e+01 6.934443e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.058671e+01 7.105298e+01 moveto +6.034977e+01 6.934443e+01 lineto +6.264444e+01 6.936593e+01 lineto +6.276446e+01 7.107339e+01 lineto +6.058671e+01 7.105298e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.083371e+01 7.270439e+01 moveto +6.058671e+01 7.105298e+01 lineto +6.276446e+01 7.107339e+01 lineto +6.288957e+01 7.272366e+01 lineto +6.083371e+01 7.270439e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.109022e+01 7.429488e+01 moveto +6.083371e+01 7.270439e+01 lineto +6.288957e+01 7.272366e+01 lineto +6.301951e+01 7.431296e+01 lineto +6.109022e+01 7.429488e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.135564e+01 7.582083e+01 moveto +6.109022e+01 7.429488e+01 lineto +6.301951e+01 7.431296e+01 lineto +6.315396e+01 7.583768e+01 lineto +6.135564e+01 7.582083e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.162938e+01 7.727875e+01 moveto +6.135564e+01 7.582083e+01 lineto +6.315396e+01 7.583768e+01 lineto +6.329262e+01 7.729433e+01 lineto +6.162938e+01 7.727875e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.191081e+01 7.866532e+01 moveto +6.162938e+01 7.727875e+01 lineto +6.329262e+01 7.729433e+01 lineto +6.343518e+01 7.86796e+01 lineto +6.191081e+01 7.866532e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.219928e+01 7.997737e+01 moveto +6.191081e+01 7.866532e+01 lineto +6.343518e+01 7.86796e+01 lineto +6.35813e+01 7.999032e+01 lineto +6.219928e+01 7.997737e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.249415e+01 8.121192e+01 moveto +6.219928e+01 7.997737e+01 lineto +6.35813e+01 7.999032e+01 lineto +6.373067e+01 8.122351e+01 lineto +6.249415e+01 8.121192e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.279473e+01 8.236614e+01 moveto +6.249415e+01 8.121192e+01 lineto +6.373067e+01 8.122351e+01 lineto +6.388292e+01 8.237634e+01 lineto +6.279473e+01 8.236614e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.310034e+01 8.343741e+01 moveto +6.279473e+01 8.236614e+01 lineto +6.388292e+01 8.237634e+01 lineto +6.403773e+01 8.34462e+01 lineto +6.310034e+01 8.343741e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.341028e+01 8.442328e+01 moveto +6.310034e+01 8.343741e+01 lineto +6.403773e+01 8.34462e+01 lineto +6.419473e+01 8.443063e+01 lineto +6.341028e+01 8.442328e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.372385e+01 8.53215e+01 moveto +6.341028e+01 8.442328e+01 lineto +6.419473e+01 8.443063e+01 lineto +6.435357e+01 8.53274e+01 lineto +6.372385e+01 8.53215e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.404033e+01 8.613002e+01 moveto +6.372385e+01 8.53215e+01 lineto +6.435357e+01 8.53274e+01 lineto +6.451388e+01 8.613446e+01 lineto +6.404033e+01 8.613002e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.4359e+01 8.6847e+01 moveto +6.404033e+01 8.613002e+01 lineto +6.451388e+01 8.613446e+01 lineto +6.46753e+01 8.684996e+01 lineto +6.4359e+01 8.6847e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.467914e+01 8.74708e+01 moveto +6.4359e+01 8.6847e+01 lineto +6.46753e+01 8.684996e+01 lineto +6.483747e+01 8.747228e+01 lineto +6.467914e+01 8.74708e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.467914e+01 8.74708e+01 lineto +6.483747e+01 8.747228e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.174016e+01 2.428333e+01 moveto +6.179068e+01 2.252578e+01 lineto +6.493681e+01 2.261349e+01 lineto +6.493582e+01 2.437242e+01 lineto +6.174016e+01 2.428333e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.169708e+01 2.609042e+01 moveto +6.174016e+01 2.428333e+01 lineto +6.493582e+01 2.437242e+01 lineto +6.493497e+01 2.618068e+01 lineto +6.169708e+01 2.609042e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.166153e+01 2.794292e+01 moveto +6.169708e+01 2.609042e+01 lineto +6.493497e+01 2.618068e+01 lineto +6.493427e+01 2.803416e+01 lineto +6.166153e+01 2.794292e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.16336e+01 2.983661e+01 moveto +6.166153e+01 2.794292e+01 lineto +6.493427e+01 2.803416e+01 lineto +6.493372e+01 2.992861e+01 lineto +6.16336e+01 2.983661e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.161335e+01 3.176718e+01 moveto +6.16336e+01 2.983661e+01 lineto +6.493372e+01 2.992861e+01 lineto +6.493332e+01 3.185973e+01 lineto +6.161335e+01 3.176718e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.160082e+01 3.373021e+01 moveto +6.161335e+01 3.176718e+01 lineto +6.493332e+01 3.185973e+01 lineto +6.493308e+01 3.38231e+01 lineto +6.160082e+01 3.373021e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.159605e+01 3.572123e+01 moveto +6.160082e+01 3.373021e+01 lineto +6.493308e+01 3.38231e+01 lineto +6.493298e+01 3.581426e+01 lineto +6.159605e+01 3.572123e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.159904e+01 3.77357e+01 moveto +6.159605e+01 3.572123e+01 lineto +6.493298e+01 3.581426e+01 lineto +6.493304e+01 3.782864e+01 lineto +6.159904e+01 3.77357e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.160979e+01 3.976902e+01 moveto +6.159904e+01 3.77357e+01 lineto +6.493304e+01 3.782864e+01 lineto +6.493325e+01 3.986167e+01 lineto +6.160979e+01 3.976902e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.162828e+01 4.181655e+01 moveto +6.160979e+01 3.976902e+01 lineto +6.493325e+01 3.986167e+01 lineto +6.493362e+01 4.19087e+01 lineto +6.162828e+01 4.181655e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.165445e+01 4.387363e+01 moveto +6.162828e+01 4.181655e+01 lineto +6.493362e+01 4.19087e+01 lineto +6.493413e+01 4.396506e+01 lineto +6.165445e+01 4.387363e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.168826e+01 4.593556e+01 moveto +6.165445e+01 4.387363e+01 lineto +6.493413e+01 4.396506e+01 lineto +6.49348e+01 4.602606e+01 lineto +6.168826e+01 4.593556e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.172962e+01 4.799763e+01 moveto +6.168826e+01 4.593556e+01 lineto +6.49348e+01 4.602606e+01 lineto +6.493561e+01 4.808701e+01 lineto +6.172962e+01 4.799763e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.177844e+01 5.005515e+01 moveto +6.172962e+01 4.799763e+01 lineto +6.493561e+01 4.808701e+01 lineto +6.493657e+01 5.014319e+01 lineto +6.177844e+01 5.005515e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.183461e+01 5.210342e+01 moveto +6.177844e+01 5.005515e+01 lineto +6.493657e+01 5.014319e+01 lineto +6.493768e+01 5.218992e+01 lineto +6.183461e+01 5.210342e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.1898e+01 5.413776e+01 moveto +6.183461e+01 5.210342e+01 lineto +6.493768e+01 5.218992e+01 lineto +6.493893e+01 5.422254e+01 lineto +6.1898e+01 5.413776e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.196847e+01 5.615354e+01 moveto +6.1898e+01 5.413776e+01 lineto +6.493893e+01 5.422254e+01 lineto +6.494032e+01 5.623639e+01 lineto +6.196847e+01 5.615354e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.204585e+01 5.814616e+01 moveto +6.196847e+01 5.615354e+01 lineto +6.494032e+01 5.623639e+01 lineto +6.494184e+01 5.82269e+01 lineto +6.204585e+01 5.814616e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.212998e+01 6.011107e+01 moveto +6.204585e+01 5.814616e+01 lineto +6.494184e+01 5.82269e+01 lineto +6.494349e+01 6.018951e+01 lineto +6.212998e+01 6.011107e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.222064e+01 6.20438e+01 moveto +6.212998e+01 6.011107e+01 lineto +6.494349e+01 6.018951e+01 lineto +6.494528e+01 6.211975e+01 lineto +6.222064e+01 6.20438e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.231765e+01 6.393992e+01 moveto +6.222064e+01 6.20438e+01 lineto +6.494528e+01 6.211975e+01 lineto +6.494719e+01 6.401323e+01 lineto +6.231765e+01 6.393992e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.242078e+01 6.579512e+01 moveto +6.231765e+01 6.393992e+01 lineto +6.494719e+01 6.401323e+01 lineto +6.494922e+01 6.586561e+01 lineto +6.242078e+01 6.579512e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.252979e+01 6.760517e+01 moveto +6.242078e+01 6.579512e+01 lineto +6.494922e+01 6.586561e+01 lineto +6.495137e+01 6.767268e+01 lineto +6.252979e+01 6.760517e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.264444e+01 6.936593e+01 moveto +6.252979e+01 6.760517e+01 lineto +6.495137e+01 6.767268e+01 lineto +6.495362e+01 6.943031e+01 lineto +6.264444e+01 6.936593e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.276446e+01 7.107339e+01 moveto +6.264444e+01 6.936593e+01 lineto +6.495362e+01 6.943031e+01 lineto +6.495599e+01 7.113449e+01 lineto +6.276446e+01 7.107339e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.288957e+01 7.272366e+01 moveto +6.276446e+01 7.107339e+01 lineto +6.495599e+01 7.113449e+01 lineto +6.495845e+01 7.278133e+01 lineto +6.288957e+01 7.272366e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.301951e+01 7.431296e+01 moveto +6.288957e+01 7.272366e+01 lineto +6.495845e+01 7.278133e+01 lineto +6.496101e+01 7.436709e+01 lineto +6.301951e+01 7.431296e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.315396e+01 7.583768e+01 moveto +6.301951e+01 7.431296e+01 lineto +6.496101e+01 7.436709e+01 lineto +6.496366e+01 7.588813e+01 lineto +6.315396e+01 7.583768e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.329262e+01 7.729433e+01 moveto +6.315396e+01 7.583768e+01 lineto +6.496366e+01 7.588813e+01 lineto +6.496639e+01 7.734099e+01 lineto +6.329262e+01 7.729433e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.343518e+01 7.86796e+01 moveto +6.329262e+01 7.729433e+01 lineto +6.496639e+01 7.734099e+01 lineto +6.496919e+01 7.872237e+01 lineto +6.343518e+01 7.86796e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.35813e+01 7.999032e+01 moveto +6.343518e+01 7.86796e+01 lineto +6.496919e+01 7.872237e+01 lineto +6.497207e+01 8.002909e+01 lineto +6.35813e+01 7.999032e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.373067e+01 8.122351e+01 moveto +6.35813e+01 7.999032e+01 lineto +6.497207e+01 8.002909e+01 lineto +6.497501e+01 8.12582e+01 lineto +6.373067e+01 8.122351e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.388292e+01 8.237634e+01 moveto +6.373067e+01 8.122351e+01 lineto +6.497501e+01 8.12582e+01 lineto +6.497801e+01 8.240687e+01 lineto +6.388292e+01 8.237634e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.403773e+01 8.34462e+01 moveto +6.388292e+01 8.237634e+01 lineto +6.497801e+01 8.240687e+01 lineto +6.498105e+01 8.347249e+01 lineto +6.403773e+01 8.34462e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.419473e+01 8.443063e+01 moveto +6.403773e+01 8.34462e+01 lineto +6.498105e+01 8.347249e+01 lineto +6.498415e+01 8.445264e+01 lineto +6.419473e+01 8.443063e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.435357e+01 8.53274e+01 moveto +6.419473e+01 8.443063e+01 lineto +6.498415e+01 8.445264e+01 lineto +6.498727e+01 8.534507e+01 lineto +6.435357e+01 8.53274e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.451388e+01 8.613446e+01 moveto +6.435357e+01 8.53274e+01 lineto +6.498727e+01 8.534507e+01 lineto +6.499043e+01 8.614774e+01 lineto +6.451388e+01 8.613446e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.46753e+01 8.684996e+01 moveto +6.451388e+01 8.613446e+01 lineto +6.499043e+01 8.614774e+01 lineto +6.499361e+01 8.685884e+01 lineto +6.46753e+01 8.684996e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.483747e+01 8.747228e+01 moveto +6.46753e+01 8.684996e+01 lineto +6.499361e+01 8.685884e+01 lineto +6.49968e+01 8.747673e+01 lineto +6.483747e+01 8.747228e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.483747e+01 8.747228e+01 lineto +6.49968e+01 8.747673e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.493582e+01 2.437242e+01 moveto +6.493681e+01 2.261349e+01 lineto +6.808334e+01 2.275907e+01 lineto +6.813188e+01 2.452029e+01 lineto +6.493582e+01 2.437242e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.493497e+01 2.618068e+01 moveto +6.493582e+01 2.437242e+01 lineto +6.813188e+01 2.452029e+01 lineto +6.817327e+01 2.633051e+01 lineto +6.493497e+01 2.618068e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.493427e+01 2.803416e+01 moveto +6.493497e+01 2.618068e+01 lineto +6.817327e+01 2.633051e+01 lineto +6.820742e+01 2.818559e+01 lineto +6.493427e+01 2.803416e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.493372e+01 2.992861e+01 moveto +6.493427e+01 2.803416e+01 lineto +6.820742e+01 2.818559e+01 lineto +6.823425e+01 3.008132e+01 lineto +6.493372e+01 2.992861e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.493332e+01 3.185973e+01 moveto +6.493372e+01 2.992861e+01 lineto +6.823425e+01 3.008132e+01 lineto +6.825371e+01 3.201335e+01 lineto +6.493332e+01 3.185973e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.493308e+01 3.38231e+01 moveto +6.493332e+01 3.185973e+01 lineto +6.825371e+01 3.201335e+01 lineto +6.826575e+01 3.39773e+01 lineto +6.493308e+01 3.38231e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.493298e+01 3.581426e+01 moveto +6.493308e+01 3.38231e+01 lineto +6.826575e+01 3.39773e+01 lineto +6.827033e+01 3.596866e+01 lineto +6.493298e+01 3.581426e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.493304e+01 3.782864e+01 moveto +6.493298e+01 3.581426e+01 lineto +6.827033e+01 3.596866e+01 lineto +6.826746e+01 3.798291e+01 lineto +6.493304e+01 3.782864e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.493325e+01 3.986167e+01 moveto +6.493304e+01 3.782864e+01 lineto +6.826746e+01 3.798291e+01 lineto +6.825713e+01 4.001545e+01 lineto +6.493325e+01 3.986167e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.493362e+01 4.19087e+01 moveto +6.493325e+01 3.986167e+01 lineto +6.825713e+01 4.001545e+01 lineto +6.823937e+01 4.206164e+01 lineto +6.493362e+01 4.19087e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.493413e+01 4.396506e+01 moveto +6.493362e+01 4.19087e+01 lineto +6.823937e+01 4.206164e+01 lineto +6.821422e+01 4.411682e+01 lineto +6.493413e+01 4.396506e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.49348e+01 4.602606e+01 moveto +6.493413e+01 4.396506e+01 lineto +6.821422e+01 4.411682e+01 lineto +6.818174e+01 4.617629e+01 lineto +6.49348e+01 4.602606e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.493561e+01 4.808701e+01 moveto +6.49348e+01 4.602606e+01 lineto +6.818174e+01 4.617629e+01 lineto +6.8142e+01 4.823536e+01 lineto +6.493561e+01 4.808701e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.493657e+01 5.014319e+01 moveto +6.493561e+01 4.808701e+01 lineto +6.8142e+01 4.823536e+01 lineto +6.80951e+01 5.028932e+01 lineto +6.493657e+01 5.014319e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.493768e+01 5.218992e+01 moveto +6.493657e+01 5.014319e+01 lineto +6.80951e+01 5.028932e+01 lineto +6.804113e+01 5.233351e+01 lineto +6.493768e+01 5.218992e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.493893e+01 5.422254e+01 moveto +6.493768e+01 5.218992e+01 lineto +6.804113e+01 5.233351e+01 lineto +6.798023e+01 5.436325e+01 lineto +6.493893e+01 5.422254e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.494032e+01 5.623639e+01 moveto +6.493893e+01 5.422254e+01 lineto +6.798023e+01 5.436325e+01 lineto +6.791253e+01 5.63739e+01 lineto +6.494032e+01 5.623639e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.494184e+01 5.82269e+01 moveto +6.494032e+01 5.623639e+01 lineto +6.791253e+01 5.63739e+01 lineto +6.783818e+01 5.83609e+01 lineto +6.494184e+01 5.82269e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.494349e+01 6.018951e+01 moveto +6.494184e+01 5.82269e+01 lineto +6.783818e+01 5.83609e+01 lineto +6.775736e+01 6.03197e+01 lineto +6.494349e+01 6.018951e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.494528e+01 6.211975e+01 moveto +6.494349e+01 6.018951e+01 lineto +6.775736e+01 6.03197e+01 lineto +6.767025e+01 6.224583e+01 lineto +6.494528e+01 6.211975e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.494719e+01 6.401323e+01 moveto +6.494528e+01 6.211975e+01 lineto +6.767025e+01 6.224583e+01 lineto +6.757705e+01 6.41349e+01 lineto +6.494719e+01 6.401323e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.494922e+01 6.586561e+01 moveto +6.494719e+01 6.401323e+01 lineto +6.757705e+01 6.41349e+01 lineto +6.747797e+01 6.598261e+01 lineto +6.494922e+01 6.586561e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.495137e+01 6.767268e+01 moveto +6.494922e+01 6.586561e+01 lineto +6.747797e+01 6.598261e+01 lineto +6.737324e+01 6.778473e+01 lineto +6.495137e+01 6.767268e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.495362e+01 6.943031e+01 moveto +6.495137e+01 6.767268e+01 lineto +6.737324e+01 6.778473e+01 lineto +6.72631e+01 6.953716e+01 lineto +6.495362e+01 6.943031e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.495599e+01 7.113449e+01 moveto +6.495362e+01 6.943031e+01 lineto +6.72631e+01 6.953716e+01 lineto +6.714779e+01 7.123589e+01 lineto +6.495599e+01 7.113449e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.495845e+01 7.278133e+01 moveto +6.495599e+01 7.113449e+01 lineto +6.714779e+01 7.123589e+01 lineto +6.702758e+01 7.287706e+01 lineto +6.495845e+01 7.278133e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.496101e+01 7.436709e+01 moveto +6.495845e+01 7.278133e+01 lineto +6.702758e+01 7.287706e+01 lineto +6.690275e+01 7.445692e+01 lineto +6.496101e+01 7.436709e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.496366e+01 7.588813e+01 moveto +6.496101e+01 7.436709e+01 lineto +6.690275e+01 7.445692e+01 lineto +6.677358e+01 7.597187e+01 lineto +6.496366e+01 7.588813e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.496639e+01 7.734099e+01 moveto +6.496366e+01 7.588813e+01 lineto +6.677358e+01 7.597187e+01 lineto +6.664036e+01 7.741844e+01 lineto +6.496639e+01 7.734099e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.496919e+01 7.872237e+01 moveto +6.496639e+01 7.734099e+01 lineto +6.664036e+01 7.741844e+01 lineto +6.65034e+01 7.879335e+01 lineto +6.496919e+01 7.872237e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.497207e+01 8.002909e+01 moveto +6.496919e+01 7.872237e+01 lineto +6.65034e+01 7.879335e+01 lineto +6.636301e+01 8.009345e+01 lineto +6.497207e+01 8.002909e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.497501e+01 8.12582e+01 moveto +6.497207e+01 8.002909e+01 lineto +6.636301e+01 8.009345e+01 lineto +6.621951e+01 8.131577e+01 lineto +6.497501e+01 8.12582e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.497801e+01 8.240687e+01 moveto +6.497501e+01 8.12582e+01 lineto +6.621951e+01 8.131577e+01 lineto +6.607323e+01 8.245754e+01 lineto +6.497801e+01 8.240687e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.498105e+01 8.347249e+01 moveto +6.497801e+01 8.240687e+01 lineto +6.607323e+01 8.245754e+01 lineto +6.59245e+01 8.351614e+01 lineto +6.498105e+01 8.347249e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.498415e+01 8.445264e+01 moveto +6.498105e+01 8.347249e+01 lineto +6.59245e+01 8.351614e+01 lineto +6.577366e+01 8.448917e+01 lineto +6.498415e+01 8.445264e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.498727e+01 8.534507e+01 moveto +6.498415e+01 8.445264e+01 lineto +6.577366e+01 8.448917e+01 lineto +6.562105e+01 8.537439e+01 lineto +6.498727e+01 8.534507e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.499043e+01 8.614774e+01 moveto +6.498727e+01 8.534507e+01 lineto +6.562105e+01 8.537439e+01 lineto +6.546703e+01 8.616979e+01 lineto +6.499043e+01 8.614774e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.499361e+01 8.685884e+01 moveto +6.499043e+01 8.614774e+01 lineto +6.546703e+01 8.616979e+01 lineto +6.531195e+01 8.687356e+01 lineto +6.499361e+01 8.685884e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.49968e+01 8.747673e+01 moveto +6.499361e+01 8.685884e+01 lineto +6.531195e+01 8.687356e+01 lineto +6.515615e+01 8.74841e+01 lineto +6.49968e+01 8.747673e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.49968e+01 8.747673e+01 lineto +6.515615e+01 8.74841e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.813188e+01 2.452029e+01 moveto +6.808334e+01 2.275907e+01 lineto +7.121086e+01 2.296162e+01 lineto +7.130863e+01 2.472603e+01 lineto +6.813188e+01 2.452029e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.817327e+01 2.633051e+01 moveto +6.813188e+01 2.452029e+01 lineto +7.130863e+01 2.472603e+01 lineto +7.1392e+01 2.653897e+01 lineto +6.817327e+01 2.633051e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.820742e+01 2.818559e+01 moveto +6.817327e+01 2.633051e+01 lineto +7.1392e+01 2.653897e+01 lineto +7.146079e+01 2.83963e+01 lineto +6.820742e+01 2.818559e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.823425e+01 3.008132e+01 moveto +6.820742e+01 2.818559e+01 lineto +7.146079e+01 2.83963e+01 lineto +7.151484e+01 3.029378e+01 lineto +6.823425e+01 3.008132e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.825371e+01 3.201335e+01 moveto +6.823425e+01 3.008132e+01 lineto +7.151484e+01 3.029378e+01 lineto +7.155404e+01 3.22271e+01 lineto +6.825371e+01 3.201335e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.826575e+01 3.39773e+01 moveto +6.825371e+01 3.201335e+01 lineto +7.155404e+01 3.22271e+01 lineto +7.157828e+01 3.419183e+01 lineto +6.826575e+01 3.39773e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.827033e+01 3.596866e+01 moveto +6.826575e+01 3.39773e+01 lineto +7.157828e+01 3.419183e+01 lineto +7.158752e+01 3.61835e+01 lineto +6.827033e+01 3.596866e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.826746e+01 3.798291e+01 moveto +6.827033e+01 3.596866e+01 lineto +7.158752e+01 3.61835e+01 lineto +7.158172e+01 3.819756e+01 lineto +6.826746e+01 3.798291e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.825713e+01 4.001545e+01 moveto +6.826746e+01 3.798291e+01 lineto +7.158172e+01 3.819756e+01 lineto +7.156092e+01 4.022942e+01 lineto +6.825713e+01 4.001545e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.823937e+01 4.206164e+01 moveto +6.825713e+01 4.001545e+01 lineto +7.156092e+01 4.022942e+01 lineto +7.152515e+01 4.227445e+01 lineto +6.823937e+01 4.206164e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.821422e+01 4.411682e+01 moveto +6.823937e+01 4.206164e+01 lineto +7.152515e+01 4.227445e+01 lineto +7.147449e+01 4.432797e+01 lineto +6.821422e+01 4.411682e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.818174e+01 4.617629e+01 moveto +6.821422e+01 4.411682e+01 lineto +7.147449e+01 4.432797e+01 lineto +7.140907e+01 4.63853e+01 lineto +6.818174e+01 4.617629e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.8142e+01 4.823536e+01 moveto +6.818174e+01 4.617629e+01 lineto +7.140907e+01 4.63853e+01 lineto +7.132902e+01 4.844176e+01 lineto +6.8142e+01 4.823536e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.80951e+01 5.028932e+01 moveto +6.8142e+01 4.823536e+01 lineto +7.132902e+01 4.844176e+01 lineto +7.123454e+01 5.049265e+01 lineto +6.80951e+01 5.028932e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.804113e+01 5.233351e+01 moveto +6.80951e+01 5.028932e+01 lineto +7.123454e+01 5.049265e+01 lineto +7.112583e+01 5.253329e+01 lineto +6.804113e+01 5.233351e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.798023e+01 5.436325e+01 moveto +6.804113e+01 5.233351e+01 lineto +7.112583e+01 5.253329e+01 lineto +7.100316e+01 5.455902e+01 lineto +6.798023e+01 5.436325e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.791253e+01 5.63739e+01 moveto +6.798023e+01 5.436325e+01 lineto +7.100316e+01 5.455902e+01 lineto +7.086678e+01 5.656524e+01 lineto +6.791253e+01 5.63739e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.783818e+01 5.83609e+01 moveto +6.791253e+01 5.63739e+01 lineto +7.086678e+01 5.656524e+01 lineto +7.071703e+01 5.854735e+01 lineto +6.783818e+01 5.83609e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.775736e+01 6.03197e+01 moveto +6.783818e+01 5.83609e+01 lineto +7.071703e+01 5.854735e+01 lineto +7.055423e+01 6.050083e+01 lineto +6.775736e+01 6.03197e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.767025e+01 6.224583e+01 moveto +6.775736e+01 6.03197e+01 lineto +7.055423e+01 6.050083e+01 lineto +7.037876e+01 6.242124e+01 lineto +6.767025e+01 6.224583e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.757705e+01 6.41349e+01 moveto +6.767025e+01 6.224583e+01 lineto +7.037876e+01 6.242124e+01 lineto +7.019103e+01 6.43042e+01 lineto +6.757705e+01 6.41349e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.747797e+01 6.598261e+01 moveto +6.757705e+01 6.41349e+01 lineto +7.019103e+01 6.43042e+01 lineto +6.999145e+01 6.614539e+01 lineto +6.747797e+01 6.598261e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.737324e+01 6.778473e+01 moveto +6.747797e+01 6.598261e+01 lineto +6.999145e+01 6.614539e+01 lineto +6.978049e+01 6.794063e+01 lineto +6.737324e+01 6.778473e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.72631e+01 6.953716e+01 moveto +6.737324e+01 6.778473e+01 lineto +6.978049e+01 6.794063e+01 lineto +6.955862e+01 6.968583e+01 lineto +6.72631e+01 6.953716e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.714779e+01 7.123589e+01 moveto +6.72631e+01 6.953716e+01 lineto +6.955862e+01 6.968583e+01 lineto +6.932635e+01 7.137699e+01 lineto +6.714779e+01 7.123589e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.702758e+01 7.287706e+01 moveto +6.714779e+01 7.123589e+01 lineto +6.932635e+01 7.137699e+01 lineto +6.908421e+01 7.301026e+01 lineto +6.702758e+01 7.287706e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.690275e+01 7.445692e+01 moveto +6.702758e+01 7.287706e+01 lineto +6.908421e+01 7.301026e+01 lineto +6.883276e+01 7.458192e+01 lineto +6.690275e+01 7.445692e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.677358e+01 7.597187e+01 moveto +6.690275e+01 7.445692e+01 lineto +6.883276e+01 7.458192e+01 lineto +6.857256e+01 7.608838e+01 lineto +6.677358e+01 7.597187e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.664036e+01 7.741844e+01 moveto +6.677358e+01 7.597187e+01 lineto +6.857256e+01 7.608838e+01 lineto +6.830422e+01 7.75262e+01 lineto +6.664036e+01 7.741844e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.65034e+01 7.879335e+01 moveto +6.664036e+01 7.741844e+01 lineto +6.830422e+01 7.75262e+01 lineto +6.802833e+01 7.889211e+01 lineto +6.65034e+01 7.879335e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.636301e+01 8.009345e+01 moveto +6.65034e+01 7.879335e+01 lineto +6.802833e+01 7.889211e+01 lineto +6.774554e+01 8.018299e+01 lineto +6.636301e+01 8.009345e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.621951e+01 8.131577e+01 moveto +6.636301e+01 8.009345e+01 lineto +6.774554e+01 8.018299e+01 lineto +6.745649e+01 8.139589e+01 lineto +6.621951e+01 8.131577e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.607323e+01 8.245754e+01 moveto +6.621951e+01 8.131577e+01 lineto +6.745649e+01 8.139589e+01 lineto +6.716183e+01 8.252804e+01 lineto +6.607323e+01 8.245754e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.59245e+01 8.351614e+01 moveto +6.607323e+01 8.245754e+01 lineto +6.716183e+01 8.252804e+01 lineto +6.686224e+01 8.357688e+01 lineto +6.59245e+01 8.351614e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.577366e+01 8.448917e+01 moveto +6.59245e+01 8.351614e+01 lineto +6.686224e+01 8.357688e+01 lineto +6.65584e+01 8.453999e+01 lineto +6.577366e+01 8.448917e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.562105e+01 8.537439e+01 moveto +6.577366e+01 8.448917e+01 lineto +6.65584e+01 8.453999e+01 lineto +6.625101e+01 8.541519e+01 lineto +6.562105e+01 8.537439e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.546703e+01 8.616979e+01 moveto +6.562105e+01 8.537439e+01 lineto +6.625101e+01 8.541519e+01 lineto +6.594076e+01 8.620047e+01 lineto +6.546703e+01 8.616979e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.531195e+01 8.687356e+01 moveto +6.546703e+01 8.616979e+01 lineto +6.594076e+01 8.620047e+01 lineto +6.562837e+01 8.689406e+01 lineto +6.531195e+01 8.687356e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.515615e+01 8.74841e+01 moveto +6.531195e+01 8.687356e+01 lineto +6.562837e+01 8.689406e+01 lineto +6.531454e+01 8.749436e+01 lineto +6.515615e+01 8.74841e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.515615e+01 8.74841e+01 lineto +6.531454e+01 8.749436e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.130863e+01 2.472603e+01 moveto +7.121086e+01 2.296162e+01 lineto +7.430009e+01 2.32199e+01 lineto +7.444648e+01 2.498837e+01 lineto +7.130863e+01 2.472603e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.1392e+01 2.653897e+01 moveto +7.130863e+01 2.472603e+01 lineto +7.444648e+01 2.498837e+01 lineto +7.457132e+01 2.680477e+01 lineto +7.1392e+01 2.653897e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.146079e+01 2.83963e+01 moveto +7.1392e+01 2.653897e+01 lineto +7.457132e+01 2.680477e+01 lineto +7.467433e+01 2.866497e+01 lineto +7.146079e+01 2.83963e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.151484e+01 3.029378e+01 moveto +7.146079e+01 2.83963e+01 lineto +7.467433e+01 2.866497e+01 lineto +7.475527e+01 3.05647e+01 lineto +7.151484e+01 3.029378e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.155404e+01 3.22271e+01 moveto +7.151484e+01 3.029378e+01 lineto +7.475527e+01 3.05647e+01 lineto +7.481396e+01 3.249965e+01 lineto +7.155404e+01 3.22271e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.157828e+01 3.419183e+01 moveto +7.155404e+01 3.22271e+01 lineto +7.481396e+01 3.249965e+01 lineto +7.485026e+01 3.446539e+01 lineto +7.157828e+01 3.419183e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.158752e+01 3.61835e+01 moveto +7.157828e+01 3.419183e+01 lineto +7.485026e+01 3.446539e+01 lineto +7.486409e+01 3.645744e+01 lineto +7.158752e+01 3.61835e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.158172e+01 3.819756e+01 moveto +7.158752e+01 3.61835e+01 lineto +7.486409e+01 3.645744e+01 lineto +7.485541e+01 3.847126e+01 lineto +7.158172e+01 3.819756e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.156092e+01 4.022942e+01 moveto +7.158172e+01 3.819756e+01 lineto +7.485541e+01 3.847126e+01 lineto +7.482426e+01 4.050226e+01 lineto +7.156092e+01 4.022942e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.152515e+01 4.227445e+01 moveto +7.156092e+01 4.022942e+01 lineto +7.482426e+01 4.050226e+01 lineto +7.47707e+01 4.254579e+01 lineto +7.152515e+01 4.227445e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.147449e+01 4.432797e+01 moveto +7.152515e+01 4.227445e+01 lineto +7.47707e+01 4.254579e+01 lineto +7.469485e+01 4.459721e+01 lineto +7.147449e+01 4.432797e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.140907e+01 4.63853e+01 moveto +7.147449e+01 4.432797e+01 lineto +7.469485e+01 4.459721e+01 lineto +7.459688e+01 4.665182e+01 lineto +7.140907e+01 4.63853e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.132902e+01 4.844176e+01 moveto +7.140907e+01 4.63853e+01 lineto +7.459688e+01 4.665182e+01 lineto +7.447702e+01 4.870495e+01 lineto +7.132902e+01 4.844176e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.123454e+01 5.049265e+01 moveto +7.132902e+01 4.844176e+01 lineto +7.447702e+01 4.870495e+01 lineto +7.433554e+01 5.075191e+01 lineto +7.123454e+01 5.049265e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.112583e+01 5.253329e+01 moveto +7.123454e+01 5.049265e+01 lineto +7.433554e+01 5.075191e+01 lineto +7.417277e+01 5.278803e+01 lineto +7.112583e+01 5.253329e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.100316e+01 5.455902e+01 moveto +7.112583e+01 5.253329e+01 lineto +7.417277e+01 5.278803e+01 lineto +7.398907e+01 5.480866e+01 lineto +7.100316e+01 5.455902e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.086678e+01 5.656524e+01 moveto +7.100316e+01 5.455902e+01 lineto +7.398907e+01 5.480866e+01 lineto +7.378487e+01 5.68092e+01 lineto +7.086678e+01 5.656524e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.071703e+01 5.854735e+01 moveto +7.086678e+01 5.656524e+01 lineto +7.378487e+01 5.68092e+01 lineto +7.356063e+01 5.878509e+01 lineto +7.071703e+01 5.854735e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.055423e+01 6.050083e+01 moveto +7.071703e+01 5.854735e+01 lineto +7.356063e+01 5.878509e+01 lineto +7.331686e+01 6.073181e+01 lineto +7.055423e+01 6.050083e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.037876e+01 6.242124e+01 moveto +7.055423e+01 6.050083e+01 lineto +7.331686e+01 6.073181e+01 lineto +7.305411e+01 6.264492e+01 lineto +7.037876e+01 6.242124e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.019103e+01 6.43042e+01 moveto +7.037876e+01 6.242124e+01 lineto +7.305411e+01 6.264492e+01 lineto +7.2773e+01 6.452006e+01 lineto +7.019103e+01 6.43042e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.999145e+01 6.614539e+01 moveto +7.019103e+01 6.43042e+01 lineto +7.2773e+01 6.452006e+01 lineto +7.247415e+01 6.635296e+01 lineto +6.999145e+01 6.614539e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.978049e+01 6.794063e+01 moveto +6.999145e+01 6.614539e+01 lineto +7.247415e+01 6.635296e+01 lineto +7.215826e+01 6.813943e+01 lineto +6.978049e+01 6.794063e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.955862e+01 6.968583e+01 moveto +6.978049e+01 6.794063e+01 lineto +7.215826e+01 6.813943e+01 lineto +7.182603e+01 6.987539e+01 lineto +6.955862e+01 6.968583e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.932635e+01 7.137699e+01 moveto +6.955862e+01 6.968583e+01 lineto +7.182603e+01 6.987539e+01 lineto +7.147824e+01 7.15569e+01 lineto +6.932635e+01 7.137699e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.908421e+01 7.301026e+01 moveto +6.932635e+01 7.137699e+01 lineto +7.147824e+01 7.15569e+01 lineto +7.111566e+01 7.31801e+01 lineto +6.908421e+01 7.301026e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.883276e+01 7.458192e+01 moveto +6.908421e+01 7.301026e+01 lineto +7.111566e+01 7.31801e+01 lineto +7.073914e+01 7.47413e+01 lineto +6.883276e+01 7.458192e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.857256e+01 7.608838e+01 moveto +6.883276e+01 7.458192e+01 lineto +7.073914e+01 7.47413e+01 lineto +7.034952e+01 7.623694e+01 lineto +6.857256e+01 7.608838e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.830422e+01 7.75262e+01 moveto +6.857256e+01 7.608838e+01 lineto +7.034952e+01 7.623694e+01 lineto +6.99477e+01 7.766361e+01 lineto +6.830422e+01 7.75262e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.802833e+01 7.889211e+01 moveto +6.830422e+01 7.75262e+01 lineto +6.99477e+01 7.766361e+01 lineto +6.95346e+01 7.901804e+01 lineto +6.802833e+01 7.889211e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.774554e+01 8.018299e+01 moveto +6.802833e+01 7.889211e+01 lineto +6.95346e+01 7.901804e+01 lineto +6.911115e+01 8.029716e+01 lineto +6.774554e+01 8.018299e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.745649e+01 8.139589e+01 moveto +6.774554e+01 8.018299e+01 lineto +6.911115e+01 8.029716e+01 lineto +6.867832e+01 8.149804e+01 lineto +6.745649e+01 8.139589e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.716183e+01 8.252804e+01 moveto +6.745649e+01 8.139589e+01 lineto +6.867832e+01 8.149804e+01 lineto +6.82371e+01 8.261794e+01 lineto +6.716183e+01 8.252804e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.686224e+01 8.357688e+01 moveto +6.716183e+01 8.252804e+01 lineto +6.82371e+01 8.261794e+01 lineto +6.77885e+01 8.365432e+01 lineto +6.686224e+01 8.357688e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.65584e+01 8.453999e+01 moveto +6.686224e+01 8.357688e+01 lineto +6.77885e+01 8.365432e+01 lineto +6.733353e+01 8.460479e+01 lineto +6.65584e+01 8.453999e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.625101e+01 8.541519e+01 moveto +6.65584e+01 8.453999e+01 lineto +6.733353e+01 8.460479e+01 lineto +6.687325e+01 8.546721e+01 lineto +6.625101e+01 8.541519e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.594076e+01 8.620047e+01 moveto +6.625101e+01 8.541519e+01 lineto +6.687325e+01 8.546721e+01 lineto +6.640869e+01 8.623959e+01 lineto +6.594076e+01 8.620047e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.562837e+01 8.689406e+01 moveto +6.594076e+01 8.620047e+01 lineto +6.640869e+01 8.623959e+01 lineto +6.594091e+01 8.692019e+01 lineto +6.562837e+01 8.689406e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.531454e+01 8.749436e+01 moveto +6.562837e+01 8.689406e+01 lineto +6.594091e+01 8.692019e+01 lineto +6.547099e+01 8.750744e+01 lineto +6.531454e+01 8.749436e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.531454e+01 8.749436e+01 lineto +6.547099e+01 8.750744e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.444648e+01 2.498837e+01 moveto +7.430009e+01 2.32199e+01 lineto +7.733198e+01 2.353231e+01 lineto +7.752609e+01 2.53057e+01 lineto +7.444648e+01 2.498837e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.457132e+01 2.680477e+01 moveto +7.444648e+01 2.498837e+01 lineto +7.752609e+01 2.53057e+01 lineto +7.769163e+01 2.712629e+01 lineto +7.457132e+01 2.680477e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.467433e+01 2.866497e+01 moveto +7.457132e+01 2.680477e+01 lineto +7.769163e+01 2.712629e+01 lineto +7.782822e+01 2.898995e+01 lineto +7.467433e+01 2.866497e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.475527e+01 3.05647e+01 moveto +7.467433e+01 2.866497e+01 lineto +7.782822e+01 2.898995e+01 lineto +7.793555e+01 3.08924e+01 lineto +7.475527e+01 3.05647e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.481396e+01 3.249965e+01 moveto +7.475527e+01 3.05647e+01 lineto +7.793555e+01 3.08924e+01 lineto +7.801337e+01 3.282932e+01 lineto +7.481396e+01 3.249965e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.485026e+01 3.446539e+01 moveto +7.481396e+01 3.249965e+01 lineto +7.801337e+01 3.282932e+01 lineto +7.80615e+01 3.479628e+01 lineto +7.485026e+01 3.446539e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.486409e+01 3.645744e+01 moveto +7.485026e+01 3.446539e+01 lineto +7.80615e+01 3.479628e+01 lineto +7.807984e+01 3.678879e+01 lineto +7.486409e+01 3.645744e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.485541e+01 3.847126e+01 moveto +7.486409e+01 3.645744e+01 lineto +7.807984e+01 3.678879e+01 lineto +7.806834e+01 3.880232e+01 lineto +7.485541e+01 3.847126e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.482426e+01 4.050226e+01 moveto +7.485541e+01 3.847126e+01 lineto +7.806834e+01 3.880232e+01 lineto +7.802703e+01 4.083227e+01 lineto +7.482426e+01 4.050226e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.47707e+01 4.254579e+01 moveto +7.482426e+01 4.050226e+01 lineto +7.802703e+01 4.083227e+01 lineto +7.795601e+01 4.287401e+01 lineto +7.47707e+01 4.254579e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.469485e+01 4.459721e+01 moveto +7.47707e+01 4.254579e+01 lineto +7.795601e+01 4.287401e+01 lineto +7.785543e+01 4.492288e+01 lineto +7.469485e+01 4.459721e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.459688e+01 4.665182e+01 moveto +7.469485e+01 4.459721e+01 lineto +7.785543e+01 4.492288e+01 lineto +7.772552e+01 4.69742e+01 lineto +7.459688e+01 4.665182e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.447702e+01 4.870495e+01 moveto +7.459688e+01 4.665182e+01 lineto +7.772552e+01 4.69742e+01 lineto +7.756659e+01 4.90233e+01 lineto +7.447702e+01 4.870495e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.433554e+01 5.075191e+01 moveto +7.447702e+01 4.870495e+01 lineto +7.756659e+01 4.90233e+01 lineto +7.737899e+01 5.106551e+01 lineto +7.433554e+01 5.075191e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.417277e+01 5.278803e+01 moveto +7.433554e+01 5.075191e+01 lineto +7.737899e+01 5.106551e+01 lineto +7.716315e+01 5.309616e+01 lineto +7.417277e+01 5.278803e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.398907e+01 5.480866e+01 moveto +7.417277e+01 5.278803e+01 lineto +7.716315e+01 5.309616e+01 lineto +7.691957e+01 5.511062e+01 lineto +7.398907e+01 5.480866e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.378487e+01 5.68092e+01 moveto +7.398907e+01 5.480866e+01 lineto +7.691957e+01 5.511062e+01 lineto +7.664879e+01 5.710431e+01 lineto +7.378487e+01 5.68092e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.356063e+01 5.878509e+01 moveto +7.378487e+01 5.68092e+01 lineto +7.664879e+01 5.710431e+01 lineto +7.635144e+01 5.907266e+01 lineto +7.356063e+01 5.878509e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.331686e+01 6.073181e+01 moveto +7.356063e+01 5.878509e+01 lineto +7.635144e+01 5.907266e+01 lineto +7.60282e+01 6.101119e+01 lineto +7.331686e+01 6.073181e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.305411e+01 6.264492e+01 moveto +7.331686e+01 6.073181e+01 lineto +7.60282e+01 6.101119e+01 lineto +7.567981e+01 6.291547e+01 lineto +7.305411e+01 6.264492e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.2773e+01 6.452006e+01 moveto +7.305411e+01 6.264492e+01 lineto +7.567981e+01 6.291547e+01 lineto +7.530705e+01 6.478117e+01 lineto +7.2773e+01 6.452006e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.247415e+01 6.635296e+01 moveto +7.2773e+01 6.452006e+01 lineto +7.530705e+01 6.478117e+01 lineto +7.491077e+01 6.660403e+01 lineto +7.247415e+01 6.635296e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.215826e+01 6.813943e+01 moveto +7.247415e+01 6.635296e+01 lineto +7.491077e+01 6.660403e+01 lineto +7.449189e+01 6.837989e+01 lineto +7.215826e+01 6.813943e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.182603e+01 6.987539e+01 moveto +7.215826e+01 6.813943e+01 lineto +7.449189e+01 6.837989e+01 lineto +7.405136e+01 7.01047e+01 lineto +7.182603e+01 6.987539e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.147824e+01 7.15569e+01 moveto +7.182603e+01 6.987539e+01 lineto +7.405136e+01 7.01047e+01 lineto +7.359018e+01 7.177451e+01 lineto +7.147824e+01 7.15569e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.111566e+01 7.31801e+01 moveto +7.147824e+01 7.15569e+01 lineto +7.359018e+01 7.177451e+01 lineto +7.310941e+01 7.338554e+01 lineto +7.111566e+01 7.31801e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.073914e+01 7.47413e+01 moveto +7.111566e+01 7.31801e+01 lineto +7.310941e+01 7.338554e+01 lineto +7.261013e+01 7.493409e+01 lineto +7.073914e+01 7.47413e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.034952e+01 7.623694e+01 moveto +7.073914e+01 7.47413e+01 lineto +7.261013e+01 7.493409e+01 lineto +7.20935e+01 7.641664e+01 lineto +7.034952e+01 7.623694e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.99477e+01 7.766361e+01 moveto +7.034952e+01 7.623694e+01 lineto +7.20935e+01 7.641664e+01 lineto +7.156068e+01 7.782981e+01 lineto +6.99477e+01 7.766361e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.95346e+01 7.901804e+01 moveto +6.99477e+01 7.766361e+01 lineto +7.156068e+01 7.782981e+01 lineto +7.10129e+01 7.917037e+01 lineto +6.95346e+01 7.901804e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.911115e+01 8.029716e+01 moveto +6.95346e+01 7.901804e+01 lineto +7.10129e+01 7.917037e+01 lineto +7.045141e+01 8.043526e+01 lineto +6.911115e+01 8.029716e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.867832e+01 8.149804e+01 moveto +6.911115e+01 8.029716e+01 lineto +7.045141e+01 8.043526e+01 lineto +6.987747e+01 8.16216e+01 lineto +6.867832e+01 8.149804e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.82371e+01 8.261794e+01 moveto +6.867832e+01 8.149804e+01 lineto +6.987747e+01 8.16216e+01 lineto +6.929242e+01 8.272668e+01 lineto +6.82371e+01 8.261794e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.77885e+01 8.365432e+01 moveto +6.82371e+01 8.261794e+01 lineto +6.929242e+01 8.272668e+01 lineto +6.869757e+01 8.374799e+01 lineto +6.77885e+01 8.365432e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.733353e+01 8.460479e+01 moveto +6.77885e+01 8.365432e+01 lineto +6.869757e+01 8.374799e+01 lineto +6.809428e+01 8.468318e+01 lineto +6.733353e+01 8.460479e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.687325e+01 8.546721e+01 moveto +6.733353e+01 8.460479e+01 lineto +6.809428e+01 8.468318e+01 lineto +6.748394e+01 8.553014e+01 lineto +6.687325e+01 8.546721e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.640869e+01 8.623959e+01 moveto +6.687325e+01 8.546721e+01 lineto +6.748394e+01 8.553014e+01 lineto +6.686793e+01 8.628692e+01 lineto +6.640869e+01 8.623959e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.594091e+01 8.692019e+01 moveto +6.640869e+01 8.623959e+01 lineto +6.686793e+01 8.628692e+01 lineto +6.624766e+01 8.69518e+01 lineto +6.594091e+01 8.692019e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.547099e+01 8.750744e+01 moveto +6.594091e+01 8.692019e+01 lineto +6.624766e+01 8.69518e+01 lineto +6.562454e+01 8.752326e+01 lineto +6.547099e+01 8.750744e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.547099e+01 8.750744e+01 lineto +6.562454e+01 8.752326e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.752609e+01 2.53057e+01 moveto +7.733198e+01 2.353231e+01 lineto +8.028784e+01 2.389692e+01 lineto +8.052848e+01 2.567605e+01 lineto +7.752609e+01 2.53057e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.769163e+01 2.712629e+01 moveto +7.752609e+01 2.53057e+01 lineto +8.052848e+01 2.567605e+01 lineto +8.07337e+01 2.750154e+01 lineto +7.769163e+01 2.712629e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.782822e+01 2.898995e+01 moveto +7.769163e+01 2.712629e+01 lineto +8.07337e+01 2.750154e+01 lineto +8.090303e+01 2.936923e+01 lineto +7.782822e+01 2.898995e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.793555e+01 3.08924e+01 moveto +7.782822e+01 2.898995e+01 lineto +8.090303e+01 2.936923e+01 lineto +8.103608e+01 3.127486e+01 lineto +7.793555e+01 3.08924e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.801337e+01 3.282932e+01 moveto +7.793555e+01 3.08924e+01 lineto +8.103608e+01 3.127486e+01 lineto +8.113255e+01 3.321408e+01 lineto +7.801337e+01 3.282932e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.80615e+01 3.479628e+01 moveto +7.801337e+01 3.282932e+01 lineto +8.113255e+01 3.321408e+01 lineto +8.119222e+01 3.518246e+01 lineto +7.80615e+01 3.479628e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.807984e+01 3.678879e+01 moveto +7.80615e+01 3.479628e+01 lineto +8.119222e+01 3.518246e+01 lineto +8.121495e+01 3.717552e+01 lineto +7.807984e+01 3.678879e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.806834e+01 3.880232e+01 moveto +7.807984e+01 3.678879e+01 lineto +8.121495e+01 3.717552e+01 lineto +8.12007e+01 3.918871e+01 lineto +7.806834e+01 3.880232e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.802703e+01 4.083227e+01 moveto +7.806834e+01 3.880232e+01 lineto +8.12007e+01 3.918871e+01 lineto +8.114949e+01 4.121744e+01 lineto +7.802703e+01 4.083227e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.795601e+01 4.287401e+01 moveto +7.802703e+01 4.083227e+01 lineto +8.114949e+01 4.121744e+01 lineto +8.106144e+01 4.325708e+01 lineto +7.795601e+01 4.287401e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.785543e+01 4.492288e+01 moveto +7.795601e+01 4.287401e+01 lineto +8.106144e+01 4.325708e+01 lineto +8.093675e+01 4.530297e+01 lineto +7.785543e+01 4.492288e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.772552e+01 4.69742e+01 moveto +7.785543e+01 4.492288e+01 lineto +8.093675e+01 4.530297e+01 lineto +8.077571e+01 4.735045e+01 lineto +7.772552e+01 4.69742e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.756659e+01 4.90233e+01 moveto +7.772552e+01 4.69742e+01 lineto +8.077571e+01 4.735045e+01 lineto +8.057868e+01 4.939486e+01 lineto +7.756659e+01 4.90233e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.737899e+01 5.106551e+01 moveto +7.756659e+01 4.90233e+01 lineto +8.057868e+01 4.939486e+01 lineto +8.034611e+01 5.143152e+01 lineto +7.737899e+01 5.106551e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.716315e+01 5.309616e+01 moveto +7.737899e+01 5.106551e+01 lineto +8.034611e+01 5.143152e+01 lineto +8.007854e+01 5.345579e+01 lineto +7.716315e+01 5.309616e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.691957e+01 5.511062e+01 moveto +7.716315e+01 5.309616e+01 lineto +8.007854e+01 5.345579e+01 lineto +7.977657e+01 5.546305e+01 lineto +7.691957e+01 5.511062e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.664879e+01 5.710431e+01 moveto +7.691957e+01 5.511062e+01 lineto +7.977657e+01 5.546305e+01 lineto +7.94409e+01 5.744872e+01 lineto +7.664879e+01 5.710431e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.635144e+01 5.907266e+01 moveto +7.664879e+01 5.710431e+01 lineto +7.94409e+01 5.744872e+01 lineto +7.907228e+01 5.940828e+01 lineto +7.635144e+01 5.907266e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.60282e+01 6.101119e+01 moveto +7.635144e+01 5.907266e+01 lineto +7.907228e+01 5.940828e+01 lineto +7.867156e+01 6.133725e+01 lineto +7.60282e+01 6.101119e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.567981e+01 6.291547e+01 moveto +7.60282e+01 6.101119e+01 lineto +7.867156e+01 6.133725e+01 lineto +7.823965e+01 6.323124e+01 lineto +7.567981e+01 6.291547e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.530705e+01 6.478117e+01 moveto +7.567981e+01 6.291547e+01 lineto +7.823965e+01 6.323124e+01 lineto +7.777755e+01 6.508592e+01 lineto +7.530705e+01 6.478117e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.491077e+01 6.660403e+01 moveto +7.530705e+01 6.478117e+01 lineto +7.777755e+01 6.508592e+01 lineto +7.728629e+01 6.689706e+01 lineto +7.491077e+01 6.660403e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.449189e+01 6.837989e+01 moveto +7.491077e+01 6.660403e+01 lineto +7.728629e+01 6.689706e+01 lineto +7.676701e+01 6.866053e+01 lineto +7.449189e+01 6.837989e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.405136e+01 7.01047e+01 moveto +7.449189e+01 6.837989e+01 lineto +7.676701e+01 6.866053e+01 lineto +7.622089e+01 7.037231e+01 lineto +7.405136e+01 7.01047e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.359018e+01 7.177451e+01 moveto +7.405136e+01 7.01047e+01 lineto +7.622089e+01 7.037231e+01 lineto +7.564917e+01 7.20285e+01 lineto +7.359018e+01 7.177451e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.310941e+01 7.338554e+01 moveto +7.359018e+01 7.177451e+01 lineto +7.564917e+01 7.20285e+01 lineto +7.505315e+01 7.362531e+01 lineto +7.310941e+01 7.338554e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.261013e+01 7.493409e+01 moveto +7.310941e+01 7.338554e+01 lineto +7.505315e+01 7.362531e+01 lineto +7.443421e+01 7.51591e+01 lineto +7.261013e+01 7.493409e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.20935e+01 7.641664e+01 moveto +7.261013e+01 7.493409e+01 lineto +7.443421e+01 7.51591e+01 lineto +7.379374e+01 7.662637e+01 lineto +7.20935e+01 7.641664e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.156068e+01 7.782981e+01 moveto +7.20935e+01 7.641664e+01 lineto +7.379374e+01 7.662637e+01 lineto +7.313322e+01 7.802379e+01 lineto +7.156068e+01 7.782981e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.10129e+01 7.917037e+01 moveto +7.156068e+01 7.782981e+01 lineto +7.313322e+01 7.802379e+01 lineto +7.245414e+01 7.934815e+01 lineto +7.10129e+01 7.917037e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.045141e+01 8.043526e+01 moveto +7.10129e+01 7.917037e+01 lineto +7.245414e+01 7.934815e+01 lineto +7.175806e+01 8.059644e+01 lineto +7.045141e+01 8.043526e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.987747e+01 8.16216e+01 moveto +7.045141e+01 8.043526e+01 lineto +7.175806e+01 8.059644e+01 lineto +7.104656e+01 8.176581e+01 lineto +6.987747e+01 8.16216e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.929242e+01 8.272668e+01 moveto +6.987747e+01 8.16216e+01 lineto +7.104656e+01 8.176581e+01 lineto +7.032127e+01 8.28536e+01 lineto +6.929242e+01 8.272668e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.869757e+01 8.374799e+01 moveto +6.929242e+01 8.272668e+01 lineto +7.032127e+01 8.28536e+01 lineto +6.958384e+01 8.385731e+01 lineto +6.869757e+01 8.374799e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.809428e+01 8.468318e+01 moveto +6.869757e+01 8.374799e+01 lineto +6.958384e+01 8.385731e+01 lineto +6.883595e+01 8.477467e+01 lineto +6.809428e+01 8.468318e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.748394e+01 8.553014e+01 moveto +6.809428e+01 8.468318e+01 lineto +6.883595e+01 8.477467e+01 lineto +6.807931e+01 8.560358e+01 lineto +6.748394e+01 8.553014e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.686793e+01 8.628692e+01 moveto +6.748394e+01 8.553014e+01 lineto +6.807931e+01 8.560358e+01 lineto +6.731565e+01 8.634214e+01 lineto +6.686793e+01 8.628692e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.624766e+01 8.69518e+01 moveto +6.686793e+01 8.628692e+01 lineto +6.731565e+01 8.634214e+01 lineto +6.654671e+01 8.698868e+01 lineto +6.624766e+01 8.69518e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.562454e+01 8.752326e+01 moveto +6.624766e+01 8.69518e+01 lineto +6.654671e+01 8.698868e+01 lineto +6.577424e+01 8.754172e+01 lineto +6.562454e+01 8.752326e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.562454e+01 8.752326e+01 lineto +6.577424e+01 8.754172e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.052848e+01 2.567605e+01 moveto +8.028784e+01 2.389692e+01 lineto +8.314944e+01 2.431149e+01 lineto +8.343512e+01 2.609715e+01 lineto +8.052848e+01 2.567605e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.07337e+01 2.750154e+01 moveto +8.052848e+01 2.567605e+01 lineto +8.343512e+01 2.609715e+01 lineto +8.367876e+01 2.792821e+01 lineto +8.07337e+01 2.750154e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.090303e+01 2.936923e+01 moveto +8.07337e+01 2.750154e+01 lineto +8.367876e+01 2.792821e+01 lineto +8.387978e+01 2.980049e+01 lineto +8.090303e+01 2.936923e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.103608e+01 3.127486e+01 moveto +8.090303e+01 2.936923e+01 lineto +8.387978e+01 2.980049e+01 lineto +8.403774e+01 3.170972e+01 lineto +8.103608e+01 3.127486e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.113255e+01 3.321408e+01 moveto +8.103608e+01 3.127486e+01 lineto +8.403774e+01 3.170972e+01 lineto +8.415227e+01 3.365156e+01 lineto +8.113255e+01 3.321408e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.119222e+01 3.518246e+01 moveto +8.113255e+01 3.321408e+01 lineto +8.415227e+01 3.365156e+01 lineto +8.422311e+01 3.562156e+01 lineto +8.119222e+01 3.518246e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.121495e+01 3.717552e+01 moveto +8.119222e+01 3.518246e+01 lineto +8.422311e+01 3.562156e+01 lineto +8.42501e+01 3.761524e+01 lineto +8.121495e+01 3.717552e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.12007e+01 3.918871e+01 moveto +8.121495e+01 3.717552e+01 lineto +8.42501e+01 3.761524e+01 lineto +8.423318e+01 3.962804e+01 lineto +8.12007e+01 3.918871e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.114949e+01 4.121744e+01 moveto +8.12007e+01 3.918871e+01 lineto +8.423318e+01 3.962804e+01 lineto +8.417238e+01 4.165538e+01 lineto +8.114949e+01 4.121744e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.106144e+01 4.325708e+01 moveto +8.114949e+01 4.121744e+01 lineto +8.417238e+01 4.165538e+01 lineto +8.406785e+01 4.369263e+01 lineto +8.106144e+01 4.325708e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.093675e+01 4.530297e+01 moveto +8.106144e+01 4.325708e+01 lineto +8.406785e+01 4.369263e+01 lineto +8.391982e+01 4.573514e+01 lineto +8.093675e+01 4.530297e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.077571e+01 4.735045e+01 moveto +8.093675e+01 4.530297e+01 lineto +8.391982e+01 4.573514e+01 lineto +8.372863e+01 4.777826e+01 lineto +8.077571e+01 4.735045e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.057868e+01 4.939486e+01 moveto +8.077571e+01 4.735045e+01 lineto +8.372863e+01 4.777826e+01 lineto +8.349472e+01 4.981732e+01 lineto +8.057868e+01 4.939486e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.034611e+01 5.143152e+01 moveto +8.057868e+01 4.939486e+01 lineto +8.349472e+01 4.981732e+01 lineto +8.321863e+01 5.184767e+01 lineto +8.034611e+01 5.143152e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.007854e+01 5.345579e+01 moveto +8.034611e+01 5.143152e+01 lineto +8.321863e+01 5.184767e+01 lineto +8.290097e+01 5.386468e+01 lineto +8.007854e+01 5.345579e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.977657e+01 5.546305e+01 moveto +8.007854e+01 5.345579e+01 lineto +8.290097e+01 5.386468e+01 lineto +8.254248e+01 5.586376e+01 lineto +7.977657e+01 5.546305e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.94409e+01 5.744872e+01 moveto +7.977657e+01 5.546305e+01 lineto +8.254248e+01 5.586376e+01 lineto +8.214397e+01 5.784033e+01 lineto +7.94409e+01 5.744872e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.907228e+01 5.940828e+01 moveto +7.94409e+01 5.744872e+01 lineto +8.214397e+01 5.784033e+01 lineto +8.170635e+01 5.978989e+01 lineto +7.907228e+01 5.940828e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.867156e+01 6.133725e+01 moveto +7.907228e+01 5.940828e+01 lineto +8.170635e+01 5.978989e+01 lineto +8.123063e+01 6.1708e+01 lineto +7.867156e+01 6.133725e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.823965e+01 6.323124e+01 moveto +7.867156e+01 6.133725e+01 lineto +8.123063e+01 6.1708e+01 lineto +8.071787e+01 6.359027e+01 lineto +7.823965e+01 6.323124e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.777755e+01 6.508592e+01 moveto +7.823965e+01 6.323124e+01 lineto +8.071787e+01 6.359027e+01 lineto +8.016927e+01 6.543242e+01 lineto +7.777755e+01 6.508592e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.728629e+01 6.689706e+01 moveto +7.777755e+01 6.508592e+01 lineto +8.016927e+01 6.543242e+01 lineto +7.958606e+01 6.723024e+01 lineto +7.728629e+01 6.689706e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.676701e+01 6.866053e+01 moveto +7.728629e+01 6.689706e+01 lineto +7.958606e+01 6.723024e+01 lineto +7.896958e+01 6.897963e+01 lineto +7.676701e+01 6.866053e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.622089e+01 7.037231e+01 moveto +7.676701e+01 6.866053e+01 lineto +7.896958e+01 6.897963e+01 lineto +7.832123e+01 7.06766e+01 lineto +7.622089e+01 7.037231e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.564917e+01 7.20285e+01 moveto +7.622089e+01 7.037231e+01 lineto +7.832123e+01 7.06766e+01 lineto +7.76425e+01 7.231728e+01 lineto +7.564917e+01 7.20285e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.505315e+01 7.362531e+01 moveto +7.564917e+01 7.20285e+01 lineto +7.76425e+01 7.231728e+01 lineto +7.693492e+01 7.389793e+01 lineto +7.505315e+01 7.362531e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.443421e+01 7.51591e+01 moveto +7.505315e+01 7.362531e+01 lineto +7.693492e+01 7.389793e+01 lineto +7.620012e+01 7.541493e+01 lineto +7.443421e+01 7.51591e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.379374e+01 7.662637e+01 moveto +7.443421e+01 7.51591e+01 lineto +7.620012e+01 7.541493e+01 lineto +7.543977e+01 7.686484e+01 lineto +7.379374e+01 7.662637e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.313322e+01 7.802379e+01 moveto +7.379374e+01 7.662637e+01 lineto +7.543977e+01 7.686484e+01 lineto +7.465561e+01 7.824434e+01 lineto +7.313322e+01 7.802379e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.245414e+01 7.934815e+01 moveto +7.313322e+01 7.802379e+01 lineto +7.465561e+01 7.824434e+01 lineto +7.384942e+01 7.955029e+01 lineto +7.245414e+01 7.934815e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.175806e+01 8.059644e+01 moveto +7.245414e+01 7.934815e+01 lineto +7.384942e+01 7.955029e+01 lineto +7.302304e+01 8.07797e+01 lineto +7.175806e+01 8.059644e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.104656e+01 8.176581e+01 moveto +7.175806e+01 8.059644e+01 lineto +7.302304e+01 8.07797e+01 lineto +7.217836e+01 8.192978e+01 lineto +7.104656e+01 8.176581e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.032127e+01 8.28536e+01 moveto +7.104656e+01 8.176581e+01 lineto +7.217836e+01 8.192978e+01 lineto +7.131731e+01 8.29979e+01 lineto +7.032127e+01 8.28536e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.958384e+01 8.385731e+01 moveto +7.032127e+01 8.28536e+01 lineto +7.131731e+01 8.29979e+01 lineto +7.044185e+01 8.398162e+01 lineto +6.958384e+01 8.385731e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.883595e+01 8.477467e+01 moveto +6.958384e+01 8.385731e+01 lineto +7.044185e+01 8.398162e+01 lineto +6.955397e+01 8.487869e+01 lineto +6.883595e+01 8.477467e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.807931e+01 8.560358e+01 moveto +6.883595e+01 8.477467e+01 lineto +6.955397e+01 8.487869e+01 lineto +6.865571e+01 8.568708e+01 lineto +6.807931e+01 8.560358e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.731565e+01 8.634214e+01 moveto +6.807931e+01 8.560358e+01 lineto +6.865571e+01 8.568708e+01 lineto +6.77491e+01 8.640494e+01 lineto +6.731565e+01 8.634214e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.654671e+01 8.698868e+01 moveto +6.731565e+01 8.634214e+01 lineto +6.77491e+01 8.640494e+01 lineto +6.683623e+01 8.703063e+01 lineto +6.654671e+01 8.698868e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.577424e+01 8.754172e+01 moveto +6.654671e+01 8.698868e+01 lineto +6.683623e+01 8.703063e+01 lineto +6.591916e+01 8.756272e+01 lineto +6.577424e+01 8.754172e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.577424e+01 8.754172e+01 lineto +6.591916e+01 8.756272e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.343512e+01 2.609715e+01 moveto +8.314944e+01 2.431149e+01 lineto +8.589914e+01 2.477347e+01 lineto +8.622811e+01 2.65664e+01 lineto +8.343512e+01 2.609715e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.367876e+01 2.792821e+01 moveto +8.343512e+01 2.609715e+01 lineto +8.622811e+01 2.65664e+01 lineto +8.650866e+01 2.840366e+01 lineto +8.367876e+01 2.792821e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.387978e+01 2.980049e+01 moveto +8.367876e+01 2.792821e+01 lineto +8.650866e+01 2.840366e+01 lineto +8.674014e+01 3.028106e+01 lineto +8.387978e+01 2.980049e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.403774e+01 3.170972e+01 moveto +8.387978e+01 2.980049e+01 lineto +8.674014e+01 3.028106e+01 lineto +8.692203e+01 3.219431e+01 lineto +8.403774e+01 3.170972e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.415227e+01 3.365156e+01 moveto +8.403774e+01 3.170972e+01 lineto +8.692203e+01 3.219431e+01 lineto +8.705391e+01 3.413906e+01 lineto +8.415227e+01 3.365156e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.422311e+01 3.562156e+01 moveto +8.415227e+01 3.365156e+01 lineto +8.705391e+01 3.413906e+01 lineto +8.713548e+01 3.611086e+01 lineto +8.422311e+01 3.562156e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.42501e+01 3.761524e+01 moveto +8.422311e+01 3.562156e+01 lineto +8.713548e+01 3.611086e+01 lineto +8.716656e+01 3.810523e+01 lineto +8.42501e+01 3.761524e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.423318e+01 3.962804e+01 moveto +8.42501e+01 3.761524e+01 lineto +8.716656e+01 3.810523e+01 lineto +8.714707e+01 4.01176e+01 lineto +8.423318e+01 3.962804e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.417238e+01 4.165538e+01 moveto +8.423318e+01 3.962804e+01 lineto +8.714707e+01 4.01176e+01 lineto +8.707706e+01 4.214339e+01 lineto +8.417238e+01 4.165538e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.406785e+01 4.369263e+01 moveto +8.417238e+01 4.165538e+01 lineto +8.707706e+01 4.214339e+01 lineto +8.69567e+01 4.417798e+01 lineto +8.406785e+01 4.369263e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.391982e+01 4.573514e+01 moveto +8.406785e+01 4.369263e+01 lineto +8.69567e+01 4.417798e+01 lineto +8.678624e+01 4.621672e+01 lineto +8.391982e+01 4.573514e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.372863e+01 4.777826e+01 moveto +8.391982e+01 4.573514e+01 lineto +8.678624e+01 4.621672e+01 lineto +8.656609e+01 4.825498e+01 lineto +8.372863e+01 4.777826e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.349472e+01 4.981732e+01 moveto +8.372863e+01 4.777826e+01 lineto +8.656609e+01 4.825498e+01 lineto +8.629674e+01 5.028808e+01 lineto +8.349472e+01 4.981732e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.321863e+01 5.184767e+01 moveto +8.349472e+01 4.981732e+01 lineto +8.629674e+01 5.028808e+01 lineto +8.597881e+01 5.231141e+01 lineto +8.321863e+01 5.184767e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.290097e+01 5.386468e+01 moveto +8.321863e+01 5.184767e+01 lineto +8.597881e+01 5.231141e+01 lineto +8.561303e+01 5.432033e+01 lineto +8.290097e+01 5.386468e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.254248e+01 5.586376e+01 moveto +8.290097e+01 5.386468e+01 lineto +8.561303e+01 5.432033e+01 lineto +8.520023e+01 5.631028e+01 lineto +8.254248e+01 5.586376e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.214397e+01 5.784033e+01 moveto +8.254248e+01 5.586376e+01 lineto +8.520023e+01 5.631028e+01 lineto +8.474134e+01 5.827671e+01 lineto +8.214397e+01 5.784033e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.170635e+01 5.978989e+01 moveto +8.214397e+01 5.784033e+01 lineto +8.474134e+01 5.827671e+01 lineto +8.423742e+01 6.021513e+01 lineto +8.170635e+01 5.978989e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.123063e+01 6.1708e+01 moveto +8.170635e+01 5.978989e+01 lineto +8.423742e+01 6.021513e+01 lineto +8.368962e+01 6.212113e+01 lineto +8.123063e+01 6.1708e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.071787e+01 6.359027e+01 moveto +8.123063e+01 6.1708e+01 lineto +8.368962e+01 6.212113e+01 lineto +8.309919e+01 6.399035e+01 lineto +8.071787e+01 6.359027e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.016927e+01 6.543242e+01 moveto +8.071787e+01 6.359027e+01 lineto +8.309919e+01 6.399035e+01 lineto +8.246747e+01 6.581854e+01 lineto +8.016927e+01 6.543242e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.958606e+01 6.723024e+01 moveto +8.016927e+01 6.543242e+01 lineto +8.246747e+01 6.581854e+01 lineto +8.17959e+01 6.760151e+01 lineto +7.958606e+01 6.723024e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.896958e+01 6.897963e+01 moveto +7.958606e+01 6.723024e+01 lineto +8.17959e+01 6.760151e+01 lineto +8.108602e+01 6.933521e+01 lineto +7.896958e+01 6.897963e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.832123e+01 7.06766e+01 moveto +7.896958e+01 6.897963e+01 lineto +8.108602e+01 6.933521e+01 lineto +8.033945e+01 7.101568e+01 lineto +7.832123e+01 7.06766e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.76425e+01 7.231728e+01 moveto +7.832123e+01 7.06766e+01 lineto +8.033945e+01 7.101568e+01 lineto +7.955788e+01 7.263908e+01 lineto +7.76425e+01 7.231728e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.693492e+01 7.389793e+01 moveto +7.76425e+01 7.231728e+01 lineto +7.955788e+01 7.263908e+01 lineto +7.874311e+01 7.420172e+01 lineto +7.693492e+01 7.389793e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.620012e+01 7.541493e+01 moveto +7.693492e+01 7.389793e+01 lineto +7.874311e+01 7.420172e+01 lineto +7.789698e+01 7.570002e+01 lineto +7.620012e+01 7.541493e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.543977e+01 7.686484e+01 moveto +7.620012e+01 7.541493e+01 lineto +7.789698e+01 7.570002e+01 lineto +7.702144e+01 7.713058e+01 lineto +7.543977e+01 7.686484e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.465561e+01 7.824434e+01 moveto +7.543977e+01 7.686484e+01 lineto +7.702144e+01 7.713058e+01 lineto +7.611847e+01 7.849012e+01 lineto +7.465561e+01 7.824434e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.384942e+01 7.955029e+01 moveto +7.465561e+01 7.824434e+01 lineto +7.611847e+01 7.849012e+01 lineto +7.519014e+01 7.977554e+01 lineto +7.384942e+01 7.955029e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.302304e+01 8.07797e+01 moveto +7.384942e+01 7.955029e+01 lineto +7.519014e+01 7.977554e+01 lineto +7.423856e+01 8.098392e+01 lineto +7.302304e+01 8.07797e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.217836e+01 8.192978e+01 moveto +7.302304e+01 8.07797e+01 lineto +7.423856e+01 8.098392e+01 lineto +7.326591e+01 8.21125e+01 lineto +7.217836e+01 8.192978e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.131731e+01 8.29979e+01 moveto +7.217836e+01 8.192978e+01 lineto +7.326591e+01 8.21125e+01 lineto +7.227441e+01 8.31587e+01 lineto +7.131731e+01 8.29979e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.044185e+01 8.398162e+01 moveto +7.131731e+01 8.29979e+01 lineto +7.227441e+01 8.31587e+01 lineto +7.126631e+01 8.412013e+01 lineto +7.044185e+01 8.398162e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.955397e+01 8.487869e+01 moveto +7.044185e+01 8.398162e+01 lineto +7.126631e+01 8.412013e+01 lineto +7.024391e+01 8.499461e+01 lineto +6.955397e+01 8.487869e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.865571e+01 8.568708e+01 moveto +6.955397e+01 8.487869e+01 lineto +7.024391e+01 8.499461e+01 lineto +6.920956e+01 8.578013e+01 lineto +6.865571e+01 8.568708e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.77491e+01 8.640494e+01 moveto +6.865571e+01 8.568708e+01 lineto +6.920956e+01 8.578013e+01 lineto +6.81656e+01 8.647492e+01 lineto +6.77491e+01 8.640494e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.683623e+01 8.703063e+01 moveto +6.77491e+01 8.640494e+01 lineto +6.81656e+01 8.647492e+01 lineto +6.711442e+01 8.707737e+01 lineto +6.683623e+01 8.703063e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.591916e+01 8.756272e+01 moveto +6.683623e+01 8.703063e+01 lineto +6.711442e+01 8.707737e+01 lineto +6.605842e+01 8.758612e+01 lineto +6.591916e+01 8.756272e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.591916e+01 8.756272e+01 lineto +6.605842e+01 8.758612e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.622811e+01 2.65664e+01 moveto +8.589914e+01 2.477347e+01 lineto +8.852e+01 2.528e+01 lineto +8.889022e+01 2.70809e+01 lineto +8.622811e+01 2.65664e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.650866e+01 2.840366e+01 moveto +8.622811e+01 2.65664e+01 lineto +8.889022e+01 2.70809e+01 lineto +8.920595e+01 2.892496e+01 lineto +8.650866e+01 2.840366e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.674014e+01 3.028106e+01 moveto +8.650866e+01 2.840366e+01 lineto +8.920595e+01 2.892496e+01 lineto +8.946646e+01 3.080797e+01 lineto +8.674014e+01 3.028106e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.692203e+01 3.219431e+01 moveto +8.674014e+01 3.028106e+01 lineto +8.946646e+01 3.080797e+01 lineto +8.967116e+01 3.272563e+01 lineto +8.692203e+01 3.219431e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.705391e+01 3.413906e+01 moveto +8.692203e+01 3.219431e+01 lineto +8.967116e+01 3.272563e+01 lineto +8.981958e+01 3.467358e+01 lineto +8.705391e+01 3.413906e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.713548e+01 3.611086e+01 moveto +8.705391e+01 3.413906e+01 lineto +8.981958e+01 3.467358e+01 lineto +8.991138e+01 3.664736e+01 lineto +8.713548e+01 3.611086e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.716656e+01 3.810523e+01 moveto +8.713548e+01 3.611086e+01 lineto +8.991138e+01 3.664736e+01 lineto +8.994635e+01 3.864248e+01 lineto +8.716656e+01 3.810523e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.714707e+01 4.01176e+01 moveto +8.716656e+01 3.810523e+01 lineto +8.994635e+01 3.864248e+01 lineto +8.992442e+01 4.065438e+01 lineto +8.714707e+01 4.01176e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.707706e+01 4.214339e+01 moveto +8.714707e+01 4.01176e+01 lineto +8.992442e+01 4.065438e+01 lineto +8.984564e+01 4.267847e+01 lineto +8.707706e+01 4.214339e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.69567e+01 4.417798e+01 moveto +8.707706e+01 4.214339e+01 lineto +8.984564e+01 4.267847e+01 lineto +8.971017e+01 4.471014e+01 lineto +8.69567e+01 4.417798e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.678624e+01 4.621672e+01 moveto +8.69567e+01 4.417798e+01 lineto +8.971017e+01 4.471014e+01 lineto +8.951834e+01 4.674475e+01 lineto +8.678624e+01 4.621672e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.656609e+01 4.825498e+01 moveto +8.678624e+01 4.621672e+01 lineto +8.951834e+01 4.674475e+01 lineto +8.927058e+01 4.877767e+01 lineto +8.656609e+01 4.825498e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.629674e+01 5.028808e+01 moveto +8.656609e+01 4.825498e+01 lineto +8.927058e+01 4.877767e+01 lineto +8.896746e+01 5.080425e+01 lineto +8.629674e+01 5.028808e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.597881e+01 5.231141e+01 moveto +8.629674e+01 5.028808e+01 lineto +8.896746e+01 5.080425e+01 lineto +8.860966e+01 5.281987e+01 lineto +8.597881e+01 5.231141e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.561303e+01 5.432033e+01 moveto +8.597881e+01 5.231141e+01 lineto +8.860966e+01 5.281987e+01 lineto +8.819801e+01 5.481993e+01 lineto +8.561303e+01 5.432033e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.520023e+01 5.631028e+01 moveto +8.561303e+01 5.432033e+01 lineto +8.819801e+01 5.481993e+01 lineto +8.773343e+01 5.679987e+01 lineto +8.520023e+01 5.631028e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.474134e+01 5.827671e+01 moveto +8.520023e+01 5.631028e+01 lineto +8.773343e+01 5.679987e+01 lineto +8.7217e+01 5.875518e+01 lineto +8.474134e+01 5.827671e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.423742e+01 6.021513e+01 moveto +8.474134e+01 5.827671e+01 lineto +8.7217e+01 5.875518e+01 lineto +8.664989e+01 6.068139e+01 lineto +8.423742e+01 6.021513e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.368962e+01 6.212113e+01 moveto +8.423742e+01 6.021513e+01 lineto +8.664989e+01 6.068139e+01 lineto +8.603339e+01 6.257411e+01 lineto +8.368962e+01 6.212113e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.309919e+01 6.399035e+01 moveto +8.368962e+01 6.212113e+01 lineto +8.603339e+01 6.257411e+01 lineto +8.536892e+01 6.442902e+01 lineto +8.309919e+01 6.399035e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.246747e+01 6.581854e+01 moveto +8.309919e+01 6.399035e+01 lineto +8.536892e+01 6.442902e+01 lineto +8.465798e+01 6.624189e+01 lineto +8.246747e+01 6.581854e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.17959e+01 6.760151e+01 moveto +8.246747e+01 6.581854e+01 lineto +8.465798e+01 6.624189e+01 lineto +8.390219e+01 6.800859e+01 lineto +8.17959e+01 6.760151e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.108602e+01 6.933521e+01 moveto +8.17959e+01 6.760151e+01 lineto +8.390219e+01 6.800859e+01 lineto +8.310329e+01 6.972509e+01 lineto +8.108602e+01 6.933521e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.033945e+01 7.101568e+01 moveto +8.108602e+01 6.933521e+01 lineto +8.310329e+01 6.972509e+01 lineto +8.226309e+01 7.138746e+01 lineto +8.033945e+01 7.101568e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.955788e+01 7.263908e+01 moveto +8.033945e+01 7.101568e+01 lineto +8.226309e+01 7.138746e+01 lineto +8.138351e+01 7.299192e+01 lineto +7.955788e+01 7.263908e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.874311e+01 7.420172e+01 moveto +7.955788e+01 7.263908e+01 lineto +8.138351e+01 7.299192e+01 lineto +8.046656e+01 7.453481e+01 lineto +7.874311e+01 7.420172e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.789698e+01 7.570002e+01 moveto +7.874311e+01 7.420172e+01 lineto +8.046656e+01 7.453481e+01 lineto +7.951433e+01 7.60126e+01 lineto +7.789698e+01 7.570002e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.702144e+01 7.713058e+01 moveto +7.789698e+01 7.570002e+01 lineto +7.951433e+01 7.60126e+01 lineto +7.852898e+01 7.742194e+01 lineto +7.702144e+01 7.713058e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.611847e+01 7.849012e+01 moveto +7.702144e+01 7.713058e+01 lineto +7.852898e+01 7.742194e+01 lineto +7.751278e+01 7.875959e+01 lineto +7.611847e+01 7.849012e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.519014e+01 7.977554e+01 moveto +7.611847e+01 7.849012e+01 lineto +7.751278e+01 7.875959e+01 lineto +7.646803e+01 8.002252e+01 lineto +7.519014e+01 7.977554e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.423856e+01 8.098392e+01 moveto +7.519014e+01 7.977554e+01 lineto +7.646803e+01 8.002252e+01 lineto +7.539712e+01 8.120784e+01 lineto +7.423856e+01 8.098392e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.326591e+01 8.21125e+01 moveto +7.423856e+01 8.098392e+01 lineto +7.539712e+01 8.120784e+01 lineto +7.43025e+01 8.231284e+01 lineto +7.326591e+01 8.21125e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.227441e+01 8.31587e+01 moveto +7.326591e+01 8.21125e+01 lineto +7.43025e+01 8.231284e+01 lineto +7.318665e+01 8.333501e+01 lineto +7.227441e+01 8.31587e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.126631e+01 8.412013e+01 moveto +7.227441e+01 8.31587e+01 lineto +7.318665e+01 8.333501e+01 lineto +7.205213e+01 8.427201e+01 lineto +7.126631e+01 8.412013e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.024391e+01 8.499461e+01 moveto +7.126631e+01 8.412013e+01 lineto +7.205213e+01 8.427201e+01 lineto +7.090153e+01 8.512171e+01 lineto +7.024391e+01 8.499461e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.920956e+01 8.578013e+01 moveto +7.024391e+01 8.499461e+01 lineto +7.090153e+01 8.512171e+01 lineto +6.973746e+01 8.588216e+01 lineto +6.920956e+01 8.578013e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.81656e+01 8.647492e+01 moveto +6.920956e+01 8.578013e+01 lineto +6.973746e+01 8.588216e+01 lineto +6.856258e+01 8.655164e+01 lineto +6.81656e+01 8.647492e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.711442e+01 8.707737e+01 moveto +6.81656e+01 8.647492e+01 lineto +6.856258e+01 8.655164e+01 lineto +6.737958e+01 8.712861e+01 lineto +6.711442e+01 8.707737e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.605842e+01 8.758612e+01 moveto +6.711442e+01 8.707737e+01 lineto +6.737958e+01 8.712861e+01 lineto +6.619115e+01 8.761177e+01 lineto +6.605842e+01 8.758612e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.605842e+01 8.758612e+01 lineto +6.619115e+01 8.761177e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.889022e+01 2.70809e+01 moveto +8.852e+01 2.528e+01 lineto +9.099585e+01 2.582796e+01 lineto +9.140504e+01 2.763749e+01 lineto +8.889022e+01 2.70809e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.920595e+01 2.892496e+01 moveto +8.889022e+01 2.70809e+01 lineto +9.140504e+01 2.763749e+01 lineto +9.1754e+01 2.94889e+01 lineto +8.920595e+01 2.892496e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.946646e+01 3.080797e+01 moveto +8.920595e+01 2.892496e+01 lineto +9.1754e+01 2.94889e+01 lineto +9.204193e+01 3.137798e+01 lineto +8.946646e+01 3.080797e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.967116e+01 3.272563e+01 moveto +8.946646e+01 3.080797e+01 lineto +9.204193e+01 3.137798e+01 lineto +9.226818e+01 3.330041e+01 lineto +8.967116e+01 3.272563e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.981958e+01 3.467358e+01 moveto +8.967116e+01 3.272563e+01 lineto +9.226818e+01 3.330041e+01 lineto +9.243222e+01 3.525181e+01 lineto +8.981958e+01 3.467358e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.991138e+01 3.664736e+01 moveto +8.981958e+01 3.467358e+01 lineto +9.243222e+01 3.525181e+01 lineto +9.253369e+01 3.722774e+01 lineto +8.991138e+01 3.664736e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.994635e+01 3.864248e+01 moveto +8.991138e+01 3.664736e+01 lineto +9.253369e+01 3.722774e+01 lineto +9.257235e+01 3.922367e+01 lineto +8.994635e+01 3.864248e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.992442e+01 4.065438e+01 moveto +8.994635e+01 3.864248e+01 lineto +9.257235e+01 3.922367e+01 lineto +9.254811e+01 4.123506e+01 lineto +8.992442e+01 4.065438e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.984564e+01 4.267847e+01 moveto +8.992442e+01 4.065438e+01 lineto +9.254811e+01 4.123506e+01 lineto +9.246103e+01 4.325732e+01 lineto +8.984564e+01 4.267847e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.971017e+01 4.471014e+01 moveto +8.984564e+01 4.267847e+01 lineto +9.246103e+01 4.325732e+01 lineto +9.231131e+01 4.528583e+01 lineto +8.971017e+01 4.471014e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.951834e+01 4.674475e+01 moveto +8.971017e+01 4.471014e+01 lineto +9.231131e+01 4.528583e+01 lineto +9.209928e+01 4.731597e+01 lineto +8.951834e+01 4.674475e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.927058e+01 4.877767e+01 moveto +8.951834e+01 4.674475e+01 lineto +9.209928e+01 4.731597e+01 lineto +9.182544e+01 4.934312e+01 lineto +8.927058e+01 4.877767e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.896746e+01 5.080425e+01 moveto +8.927058e+01 4.877767e+01 lineto +9.182544e+01 4.934312e+01 lineto +9.149041e+01 5.136263e+01 lineto +8.896746e+01 5.080425e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.860966e+01 5.281987e+01 moveto +8.896746e+01 5.080425e+01 lineto +9.149041e+01 5.136263e+01 lineto +9.109495e+01 5.336992e+01 lineto +8.860966e+01 5.281987e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.819801e+01 5.481993e+01 moveto +8.860966e+01 5.281987e+01 lineto +9.109495e+01 5.336992e+01 lineto +9.063996e+01 5.536039e+01 lineto +8.819801e+01 5.481993e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.773343e+01 5.679987e+01 moveto +8.819801e+01 5.481993e+01 lineto +9.063996e+01 5.536039e+01 lineto +9.012648e+01 5.732951e+01 lineto +8.773343e+01 5.679987e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.7217e+01 5.875518e+01 moveto +8.773343e+01 5.679987e+01 lineto +9.012648e+01 5.732951e+01 lineto +8.955569e+01 5.927278e+01 lineto +8.7217e+01 5.875518e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.664989e+01 6.068139e+01 moveto +8.7217e+01 5.875518e+01 lineto +8.955569e+01 5.927278e+01 lineto +8.892888e+01 6.118578e+01 lineto +8.664989e+01 6.068139e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.603339e+01 6.257411e+01 moveto +8.664989e+01 6.068139e+01 lineto +8.892888e+01 6.118578e+01 lineto +8.824749e+01 6.306414e+01 lineto +8.603339e+01 6.257411e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.536892e+01 6.442902e+01 moveto +8.603339e+01 6.257411e+01 lineto +8.824749e+01 6.306414e+01 lineto +8.751306e+01 6.490357e+01 lineto +8.536892e+01 6.442902e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.465798e+01 6.624189e+01 moveto +8.536892e+01 6.442902e+01 lineto +8.751306e+01 6.490357e+01 lineto +8.672728e+01 6.669988e+01 lineto +8.465798e+01 6.624189e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.390219e+01 6.800859e+01 moveto +8.465798e+01 6.624189e+01 lineto +8.672728e+01 6.669988e+01 lineto +8.589194e+01 6.844897e+01 lineto +8.390219e+01 6.800859e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.310329e+01 6.972509e+01 moveto +8.390219e+01 6.800859e+01 lineto +8.589194e+01 6.844897e+01 lineto +8.500894e+01 7.014685e+01 lineto +8.310329e+01 6.972509e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.226309e+01 7.138746e+01 moveto +8.310329e+01 6.972509e+01 lineto +8.500894e+01 7.014685e+01 lineto +8.40803e+01 7.178965e+01 lineto +8.226309e+01 7.138746e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.138351e+01 7.299192e+01 moveto +8.226309e+01 7.138746e+01 lineto +8.40803e+01 7.178965e+01 lineto +8.310813e+01 7.337362e+01 lineto +8.138351e+01 7.299192e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.046656e+01 7.453481e+01 moveto +8.138351e+01 7.299192e+01 lineto +8.310813e+01 7.337362e+01 lineto +8.209466e+01 7.489514e+01 lineto +8.046656e+01 7.453481e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.951433e+01 7.60126e+01 moveto +8.046656e+01 7.453481e+01 lineto +8.209466e+01 7.489514e+01 lineto +8.104218e+01 7.635075e+01 lineto +7.951433e+01 7.60126e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.852898e+01 7.742194e+01 moveto +7.951433e+01 7.60126e+01 lineto +8.104218e+01 7.635075e+01 lineto +7.995312e+01 7.773713e+01 lineto +7.852898e+01 7.742194e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.751278e+01 7.875959e+01 moveto +7.852898e+01 7.742194e+01 lineto +7.995312e+01 7.773713e+01 lineto +7.882994e+01 7.905111e+01 lineto +7.751278e+01 7.875959e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.646803e+01 8.002252e+01 moveto +7.751278e+01 7.875959e+01 lineto +7.882994e+01 7.905111e+01 lineto +7.767522e+01 8.02897e+01 lineto +7.646803e+01 8.002252e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.539712e+01 8.120784e+01 moveto +7.646803e+01 8.002252e+01 lineto +7.767522e+01 8.02897e+01 lineto +7.649158e+01 8.145007e+01 lineto +7.539712e+01 8.120784e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.43025e+01 8.231284e+01 moveto +7.539712e+01 8.120784e+01 lineto +7.649158e+01 8.145007e+01 lineto +7.528173e+01 8.252957e+01 lineto +7.43025e+01 8.231284e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.318665e+01 8.333501e+01 moveto +7.43025e+01 8.231284e+01 lineto +7.528173e+01 8.252957e+01 lineto +7.404843e+01 8.352574e+01 lineto +7.318665e+01 8.333501e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.205213e+01 8.427201e+01 moveto +7.318665e+01 8.333501e+01 lineto +7.404843e+01 8.352574e+01 lineto +7.279448e+01 8.443631e+01 lineto +7.205213e+01 8.427201e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.090153e+01 8.512171e+01 moveto +7.205213e+01 8.427201e+01 lineto +7.279448e+01 8.443631e+01 lineto +7.152275e+01 8.52592e+01 lineto +7.090153e+01 8.512171e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.973746e+01 8.588216e+01 moveto +7.090153e+01 8.512171e+01 lineto +7.152275e+01 8.52592e+01 lineto +7.023615e+01 8.599253e+01 lineto +6.973746e+01 8.588216e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.856258e+01 8.655164e+01 moveto +6.973746e+01 8.588216e+01 lineto +7.023615e+01 8.599253e+01 lineto +6.89376e+01 8.663464e+01 lineto +6.856258e+01 8.655164e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.737958e+01 8.712861e+01 moveto +6.856258e+01 8.655164e+01 lineto +6.89376e+01 8.663464e+01 lineto +6.763007e+01 8.718405e+01 lineto +6.737958e+01 8.712861e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.619115e+01 8.761177e+01 moveto +6.737958e+01 8.712861e+01 lineto +6.763007e+01 8.718405e+01 lineto +6.631654e+01 8.763952e+01 lineto +6.619115e+01 8.761177e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.619115e+01 8.761177e+01 lineto +6.631654e+01 8.763952e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.140504e+01 2.763749e+01 moveto +9.099585e+01 2.582796e+01 lineto +9.331142e+01 2.641397e+01 lineto +9.375707e+01 2.823272e+01 lineto +9.140504e+01 2.763749e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.1754e+01 2.94889e+01 moveto +9.140504e+01 2.763749e+01 lineto +9.375707e+01 2.823272e+01 lineto +9.413711e+01 3.009201e+01 lineto +9.1754e+01 2.94889e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.204193e+01 3.137798e+01 moveto +9.1754e+01 2.94889e+01 lineto +9.413711e+01 3.009201e+01 lineto +9.445069e+01 3.198757e+01 lineto +9.204193e+01 3.137798e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.226818e+01 3.330041e+01 moveto +9.204193e+01 3.137798e+01 lineto +9.445069e+01 3.198757e+01 lineto +9.469709e+01 3.391511e+01 lineto +9.226818e+01 3.330041e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.243222e+01 3.525181e+01 moveto +9.226818e+01 3.330041e+01 lineto +9.469709e+01 3.391511e+01 lineto +9.487574e+01 3.587021e+01 lineto +9.243222e+01 3.525181e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.253369e+01 3.722774e+01 moveto +9.243222e+01 3.525181e+01 lineto +9.487574e+01 3.587021e+01 lineto +9.498625e+01 3.784842e+01 lineto +9.253369e+01 3.722774e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.257235e+01 3.922367e+01 moveto +9.253369e+01 3.722774e+01 lineto +9.498625e+01 3.784842e+01 lineto +9.502835e+01 3.984522e+01 lineto +9.257235e+01 3.922367e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.254811e+01 4.123506e+01 moveto +9.257235e+01 3.922367e+01 lineto +9.502835e+01 3.984522e+01 lineto +9.500195e+01 4.185606e+01 lineto +9.254811e+01 4.123506e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.246103e+01 4.325732e+01 moveto +9.254811e+01 4.123506e+01 lineto +9.500195e+01 4.185606e+01 lineto +9.490711e+01 4.387636e+01 lineto +9.246103e+01 4.325732e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.231131e+01 4.528583e+01 moveto +9.246103e+01 4.325732e+01 lineto +9.490711e+01 4.387636e+01 lineto +9.474405e+01 4.59015e+01 lineto +9.231131e+01 4.528583e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.209928e+01 4.731597e+01 moveto +9.231131e+01 4.528583e+01 lineto +9.474405e+01 4.59015e+01 lineto +9.451314e+01 4.792686e+01 lineto +9.209928e+01 4.731597e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.182544e+01 4.934312e+01 moveto +9.209928e+01 4.731597e+01 lineto +9.451314e+01 4.792686e+01 lineto +9.421491e+01 4.994783e+01 lineto +9.182544e+01 4.934312e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.149041e+01 5.136263e+01 moveto +9.182544e+01 4.934312e+01 lineto +9.421491e+01 4.994783e+01 lineto +9.385004e+01 5.19598e+01 lineto +9.149041e+01 5.136263e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.109495e+01 5.336992e+01 moveto +9.149041e+01 5.136263e+01 lineto +9.385004e+01 5.19598e+01 lineto +9.341935e+01 5.395816e+01 lineto +9.109495e+01 5.336992e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.063996e+01 5.536039e+01 moveto +9.109495e+01 5.336992e+01 lineto +9.341935e+01 5.395816e+01 lineto +9.292383e+01 5.593838e+01 lineto +9.063996e+01 5.536039e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.012648e+01 5.732951e+01 moveto +9.063996e+01 5.536039e+01 lineto +9.292383e+01 5.593838e+01 lineto +9.236462e+01 5.789592e+01 lineto +9.012648e+01 5.732951e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.955569e+01 5.927278e+01 moveto +9.012648e+01 5.732951e+01 lineto +9.236462e+01 5.789592e+01 lineto +9.174298e+01 5.982633e+01 lineto +8.955569e+01 5.927278e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.892888e+01 6.118578e+01 moveto +8.955569e+01 5.927278e+01 lineto +9.174298e+01 5.982633e+01 lineto +9.106034e+01 6.17252e+01 lineto +8.892888e+01 6.118578e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.824749e+01 6.306414e+01 moveto +8.892888e+01 6.118578e+01 lineto +9.106034e+01 6.17252e+01 lineto +9.031825e+01 6.35882e+01 lineto +8.824749e+01 6.306414e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.751306e+01 6.490357e+01 moveto +8.824749e+01 6.306414e+01 lineto +9.031825e+01 6.35882e+01 lineto +8.951841e+01 6.541107e+01 lineto +8.751306e+01 6.490357e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.672728e+01 6.669988e+01 moveto +8.751306e+01 6.490357e+01 lineto +8.951841e+01 6.541107e+01 lineto +8.866264e+01 6.718967e+01 lineto +8.672728e+01 6.669988e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.589194e+01 6.844897e+01 moveto +8.672728e+01 6.669988e+01 lineto +8.866264e+01 6.718967e+01 lineto +8.775289e+01 6.891993e+01 lineto +8.589194e+01 6.844897e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.500894e+01 7.014685e+01 moveto +8.589194e+01 6.844897e+01 lineto +8.775289e+01 6.891993e+01 lineto +8.679123e+01 7.05979e+01 lineto +8.500894e+01 7.014685e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.40803e+01 7.178965e+01 moveto +8.500894e+01 7.014685e+01 lineto +8.679123e+01 7.05979e+01 lineto +8.577987e+01 7.221977e+01 lineto +8.40803e+01 7.178965e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.310813e+01 7.337362e+01 moveto +8.40803e+01 7.178965e+01 lineto +8.577987e+01 7.221977e+01 lineto +8.472111e+01 7.378182e+01 lineto +8.310813e+01 7.337362e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.209466e+01 7.489514e+01 moveto +8.310813e+01 7.337362e+01 lineto +8.472111e+01 7.378182e+01 lineto +8.361736e+01 7.52805e+01 lineto +8.209466e+01 7.489514e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.104218e+01 7.635075e+01 moveto +8.209466e+01 7.489514e+01 lineto +8.361736e+01 7.52805e+01 lineto +8.247114e+01 7.671239e+01 lineto +8.104218e+01 7.635075e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.995312e+01 7.773713e+01 moveto +8.104218e+01 7.635075e+01 lineto +8.247114e+01 7.671239e+01 lineto +8.128507e+01 7.807421e+01 lineto +7.995312e+01 7.773713e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.882994e+01 7.905111e+01 moveto +7.995312e+01 7.773713e+01 lineto +8.128507e+01 7.807421e+01 lineto +8.006184e+01 7.936287e+01 lineto +7.882994e+01 7.905111e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.767522e+01 8.02897e+01 moveto +7.882994e+01 7.905111e+01 lineto +8.006184e+01 7.936287e+01 lineto +7.880426e+01 8.057543e+01 lineto +7.767522e+01 8.02897e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.649158e+01 8.145007e+01 moveto +7.767522e+01 8.02897e+01 lineto +7.880426e+01 8.057543e+01 lineto +7.751519e+01 8.170912e+01 lineto +7.649158e+01 8.145007e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.528173e+01 8.252957e+01 moveto +7.649158e+01 8.145007e+01 lineto +7.751519e+01 8.170912e+01 lineto +7.619758e+01 8.276134e+01 lineto +7.528173e+01 8.252957e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.404843e+01 8.352574e+01 moveto +7.528173e+01 8.252957e+01 lineto +7.619758e+01 8.276134e+01 lineto +7.485441e+01 8.372971e+01 lineto +7.404843e+01 8.352574e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.279448e+01 8.443631e+01 moveto +7.404843e+01 8.352574e+01 lineto +7.485441e+01 8.372971e+01 lineto +7.348877e+01 8.461201e+01 lineto +7.279448e+01 8.443631e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.152275e+01 8.52592e+01 moveto +7.279448e+01 8.443631e+01 lineto +7.348877e+01 8.461201e+01 lineto +7.210377e+01 8.540624e+01 lineto +7.152275e+01 8.52592e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.023615e+01 8.599253e+01 moveto +7.152275e+01 8.52592e+01 lineto +7.210377e+01 8.540624e+01 lineto +7.070256e+01 8.611057e+01 lineto +7.023615e+01 8.599253e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.89376e+01 8.663464e+01 moveto +7.023615e+01 8.599253e+01 lineto +7.070256e+01 8.611057e+01 lineto +6.928834e+01 8.67234e+01 lineto +6.89376e+01 8.663464e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.763007e+01 8.718405e+01 moveto +6.89376e+01 8.663464e+01 lineto +6.928834e+01 8.67234e+01 lineto +6.786434e+01 8.724334e+01 lineto +6.763007e+01 8.718405e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.631654e+01 8.763952e+01 moveto +6.763007e+01 8.718405e+01 lineto +6.786434e+01 8.724334e+01 lineto +6.643381e+01 8.76692e+01 lineto +6.631654e+01 8.763952e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.631654e+01 8.763952e+01 lineto +6.643381e+01 8.76692e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.375707e+01 2.823272e+01 moveto +9.331142e+01 2.641397e+01 lineto +9.545245e+01 2.703443e+01 lineto +9.593179e+01 2.886294e+01 lineto +9.375707e+01 2.823272e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.413711e+01 3.009201e+01 moveto +9.375707e+01 2.823272e+01 lineto +9.593179e+01 2.886294e+01 lineto +9.634058e+01 3.073055e+01 lineto +9.413711e+01 3.009201e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.445069e+01 3.198757e+01 moveto +9.413711e+01 3.009201e+01 lineto +9.634058e+01 3.073055e+01 lineto +9.667787e+01 3.263299e+01 lineto +9.445069e+01 3.198757e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.469709e+01 3.391511e+01 moveto +9.445069e+01 3.198757e+01 lineto +9.667787e+01 3.263299e+01 lineto +9.69429e+01 3.456593e+01 lineto +9.469709e+01 3.391511e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.487574e+01 3.587021e+01 moveto +9.469709e+01 3.391511e+01 lineto +9.69429e+01 3.456593e+01 lineto +9.713507e+01 3.652494e+01 lineto +9.487574e+01 3.587021e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.498625e+01 3.784842e+01 moveto +9.487574e+01 3.587021e+01 lineto +9.713507e+01 3.652494e+01 lineto +9.725393e+01 3.850557e+01 lineto +9.498625e+01 3.784842e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.502835e+01 3.984522e+01 moveto +9.498625e+01 3.784842e+01 lineto +9.725393e+01 3.850557e+01 lineto +9.729921e+01 4.05033e+01 lineto +9.502835e+01 3.984522e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.500195e+01 4.185606e+01 moveto +9.502835e+01 3.984522e+01 lineto +9.729921e+01 4.05033e+01 lineto +9.727082e+01 4.251356e+01 lineto +9.500195e+01 4.185606e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.490711e+01 4.387636e+01 moveto +9.500195e+01 4.185606e+01 lineto +9.727082e+01 4.251356e+01 lineto +9.716881e+01 4.453178e+01 lineto +9.490711e+01 4.387636e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.474405e+01 4.59015e+01 moveto +9.490711e+01 4.387636e+01 lineto +9.716881e+01 4.453178e+01 lineto +9.699342e+01 4.655335e+01 lineto +9.474405e+01 4.59015e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.451314e+01 4.792686e+01 moveto +9.474405e+01 4.59015e+01 lineto +9.699342e+01 4.655335e+01 lineto +9.674505e+01 4.857365e+01 lineto +9.451314e+01 4.792686e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.421491e+01 4.994783e+01 moveto +9.451314e+01 4.792686e+01 lineto +9.674505e+01 4.857365e+01 lineto +9.642426e+01 5.058808e+01 lineto +9.421491e+01 4.994783e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.385004e+01 5.19598e+01 moveto +9.421491e+01 4.994783e+01 lineto +9.642426e+01 5.058808e+01 lineto +9.603179e+01 5.259205e+01 lineto +9.385004e+01 5.19598e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.341935e+01 5.395816e+01 moveto +9.385004e+01 5.19598e+01 lineto +9.603179e+01 5.259205e+01 lineto +9.556853e+01 5.458098e+01 lineto +9.341935e+01 5.395816e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.292383e+01 5.593838e+01 moveto +9.341935e+01 5.395816e+01 lineto +9.556853e+01 5.458098e+01 lineto +9.503555e+01 5.655034e+01 lineto +9.292383e+01 5.593838e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.236462e+01 5.789592e+01 moveto +9.292383e+01 5.593838e+01 lineto +9.503555e+01 5.655034e+01 lineto +9.443404e+01 5.849563e+01 lineto +9.236462e+01 5.789592e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.174298e+01 5.982633e+01 moveto +9.236462e+01 5.789592e+01 lineto +9.443404e+01 5.849563e+01 lineto +9.376539e+01 6.041241e+01 lineto +9.174298e+01 5.982633e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.106034e+01 6.17252e+01 moveto +9.174298e+01 5.982633e+01 lineto +9.376539e+01 6.041241e+01 lineto +9.303113e+01 6.229632e+01 lineto +9.106034e+01 6.17252e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.031825e+01 6.35882e+01 moveto +9.106034e+01 6.17252e+01 lineto +9.303113e+01 6.229632e+01 lineto +9.223292e+01 6.414305e+01 lineto +9.031825e+01 6.35882e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.951841e+01 6.541107e+01 moveto +9.031825e+01 6.35882e+01 lineto +9.223292e+01 6.414305e+01 lineto +9.137259e+01 6.59484e+01 lineto +8.951841e+01 6.541107e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.866264e+01 6.718967e+01 moveto +8.951841e+01 6.541107e+01 lineto +9.137259e+01 6.59484e+01 lineto +9.04521e+01 6.770824e+01 lineto +8.866264e+01 6.718967e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.775289e+01 6.891993e+01 moveto +8.866264e+01 6.718967e+01 lineto +9.04521e+01 6.770824e+01 lineto +8.947355e+01 6.941856e+01 lineto +8.775289e+01 6.891993e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.679123e+01 7.05979e+01 moveto +8.775289e+01 6.891993e+01 lineto +8.947355e+01 6.941856e+01 lineto +8.843918e+01 7.107546e+01 lineto +8.679123e+01 7.05979e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.577987e+01 7.221977e+01 moveto +8.679123e+01 7.05979e+01 lineto +8.843918e+01 7.107546e+01 lineto +8.735133e+01 7.267516e+01 lineto +8.577987e+01 7.221977e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.472111e+01 7.378182e+01 moveto +8.577987e+01 7.221977e+01 lineto +8.735133e+01 7.267516e+01 lineto +8.62125e+01 7.421401e+01 lineto +8.472111e+01 7.378182e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.361736e+01 7.52805e+01 moveto +8.472111e+01 7.378182e+01 lineto +8.62125e+01 7.421401e+01 lineto +8.502528e+01 7.56885e+01 lineto +8.361736e+01 7.52805e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.247114e+01 7.671239e+01 moveto +8.361736e+01 7.52805e+01 lineto +8.502528e+01 7.56885e+01 lineto +8.379238e+01 7.709527e+01 lineto +8.247114e+01 7.671239e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.128507e+01 7.807421e+01 moveto +8.247114e+01 7.671239e+01 lineto +8.379238e+01 7.709527e+01 lineto +8.251661e+01 7.843111e+01 lineto +8.128507e+01 7.807421e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.006184e+01 7.936287e+01 moveto +8.128507e+01 7.807421e+01 lineto +8.251661e+01 7.843111e+01 lineto +8.120088e+01 7.969296e+01 lineto +8.006184e+01 7.936287e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.880426e+01 8.057543e+01 moveto +8.006184e+01 7.936287e+01 lineto +8.120088e+01 7.969296e+01 lineto +7.98482e+01 8.087796e+01 lineto +7.880426e+01 8.057543e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.751519e+01 8.170912e+01 moveto +7.880426e+01 8.057543e+01 lineto +7.98482e+01 8.087796e+01 lineto +7.846164e+01 8.198339e+01 lineto +7.751519e+01 8.170912e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.619758e+01 8.276134e+01 moveto +7.751519e+01 8.170912e+01 lineto +7.846164e+01 8.198339e+01 lineto +7.704438e+01 8.300674e+01 lineto +7.619758e+01 8.276134e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.485441e+01 8.372971e+01 moveto +7.619758e+01 8.276134e+01 lineto +7.704438e+01 8.300674e+01 lineto +7.559964e+01 8.394567e+01 lineto +7.485441e+01 8.372971e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.348877e+01 8.461201e+01 moveto +7.485441e+01 8.372971e+01 lineto +7.559964e+01 8.394567e+01 lineto +7.413073e+01 8.479805e+01 lineto +7.348877e+01 8.461201e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.210377e+01 8.540624e+01 moveto +7.348877e+01 8.461201e+01 lineto +7.413073e+01 8.479805e+01 lineto +7.264098e+01 8.556192e+01 lineto +7.210377e+01 8.540624e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.070256e+01 8.611057e+01 moveto +7.210377e+01 8.540624e+01 lineto +7.264098e+01 8.556192e+01 lineto +7.113381e+01 8.623554e+01 lineto +7.070256e+01 8.611057e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.928834e+01 8.67234e+01 moveto +7.070256e+01 8.611057e+01 lineto +7.113381e+01 8.623554e+01 lineto +6.961264e+01 8.681738e+01 lineto +6.928834e+01 8.67234e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.786434e+01 8.724334e+01 moveto +6.928834e+01 8.67234e+01 lineto +6.961264e+01 8.681738e+01 lineto +6.808095e+01 8.730611e+01 lineto +6.786434e+01 8.724334e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.643381e+01 8.76692e+01 moveto +6.786434e+01 8.724334e+01 lineto +6.808095e+01 8.730611e+01 lineto +6.654224e+01 8.770062e+01 lineto +6.643381e+01 8.76692e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.643381e+01 8.76692e+01 lineto +6.654224e+01 8.770062e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.593179e+01 2.886294e+01 moveto +9.545245e+01 2.703443e+01 lineto +9.740572e+01 2.768549e+01 lineto +9.791581e+01 2.952426e+01 lineto +9.593179e+01 2.886294e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.634058e+01 3.073055e+01 moveto +9.593179e+01 2.886294e+01 lineto +9.791581e+01 2.952426e+01 lineto +9.835082e+01 3.140061e+01 lineto +9.634058e+01 3.073055e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.667787e+01 3.263299e+01 moveto +9.634058e+01 3.073055e+01 lineto +9.835082e+01 3.140061e+01 lineto +9.870975e+01 3.331026e+01 lineto +9.667787e+01 3.263299e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.69429e+01 3.456593e+01 moveto +9.667787e+01 3.263299e+01 lineto +9.870975e+01 3.331026e+01 lineto +9.899178e+01 3.524886e+01 lineto +9.69429e+01 3.456593e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.713507e+01 3.652494e+01 moveto +9.69429e+01 3.456593e+01 lineto +9.899178e+01 3.524886e+01 lineto +9.919627e+01 3.721198e+01 lineto +9.713507e+01 3.652494e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.725393e+01 3.850557e+01 moveto +9.713507e+01 3.652494e+01 lineto +9.919627e+01 3.721198e+01 lineto +9.932275e+01 3.919516e+01 lineto +9.725393e+01 3.850557e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.729921e+01 4.05033e+01 moveto +9.725393e+01 3.850557e+01 lineto +9.932275e+01 3.919516e+01 lineto +9.937094e+01 4.119385e+01 lineto +9.729921e+01 4.05033e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.727082e+01 4.251356e+01 moveto +9.729921e+01 4.05033e+01 lineto +9.937094e+01 4.119385e+01 lineto +9.934073e+01 4.320351e+01 lineto +9.727082e+01 4.251356e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.716881e+01 4.453178e+01 moveto +9.727082e+01 4.251356e+01 lineto +9.934073e+01 4.320351e+01 lineto +9.923218e+01 4.521954e+01 lineto +9.716881e+01 4.453178e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.699342e+01 4.655335e+01 moveto +9.716881e+01 4.453178e+01 lineto +9.923218e+01 4.521954e+01 lineto +9.904554e+01 4.723736e+01 lineto +9.699342e+01 4.655335e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.674505e+01 4.857365e+01 moveto +9.699342e+01 4.655335e+01 lineto +9.904554e+01 4.723736e+01 lineto +9.878123e+01 4.925235e+01 lineto +9.674505e+01 4.857365e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.642426e+01 5.058808e+01 moveto +9.674505e+01 4.857365e+01 lineto +9.878123e+01 4.925235e+01 lineto +9.843987e+01 5.125993e+01 lineto +9.642426e+01 5.058808e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.603179e+01 5.259205e+01 moveto +9.642426e+01 5.058808e+01 lineto +9.843987e+01 5.125993e+01 lineto +9.802223e+01 5.325551e+01 lineto +9.603179e+01 5.259205e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.556853e+01 5.458098e+01 moveto +9.603179e+01 5.259205e+01 lineto +9.802223e+01 5.325551e+01 lineto +9.752926e+01 5.523453e+01 lineto +9.556853e+01 5.458098e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.503555e+01 5.655034e+01 moveto +9.556853e+01 5.458098e+01 lineto +9.752926e+01 5.523453e+01 lineto +9.696208e+01 5.719249e+01 lineto +9.503555e+01 5.655034e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.443404e+01 5.849563e+01 moveto +9.503555e+01 5.655034e+01 lineto +9.696208e+01 5.719249e+01 lineto +9.6322e+01 5.912492e+01 lineto +9.443404e+01 5.849563e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.376539e+01 6.041241e+01 moveto +9.443404e+01 5.849563e+01 lineto +9.6322e+01 5.912492e+01 lineto +9.561046e+01 6.102741e+01 lineto +9.376539e+01 6.041241e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.303113e+01 6.229632e+01 moveto +9.376539e+01 6.041241e+01 lineto +9.561046e+01 6.102741e+01 lineto +9.48291e+01 6.289562e+01 lineto +9.303113e+01 6.229632e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.223292e+01 6.414305e+01 moveto +9.303113e+01 6.229632e+01 lineto +9.48291e+01 6.289562e+01 lineto +9.397969e+01 6.472529e+01 lineto +9.223292e+01 6.414305e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.137259e+01 6.59484e+01 moveto +9.223292e+01 6.414305e+01 lineto +9.397969e+01 6.472529e+01 lineto +9.306418e+01 6.651224e+01 lineto +9.137259e+01 6.59484e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.04521e+01 6.770824e+01 moveto +9.137259e+01 6.59484e+01 lineto +9.306418e+01 6.651224e+01 lineto +9.208465e+01 6.82524e+01 lineto +9.04521e+01 6.770824e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.947355e+01 6.941856e+01 moveto +9.04521e+01 6.770824e+01 lineto +9.208465e+01 6.82524e+01 lineto +9.104333e+01 6.99418e+01 lineto +8.947355e+01 6.941856e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.843918e+01 7.107546e+01 moveto +8.947355e+01 6.941856e+01 lineto +9.104333e+01 6.99418e+01 lineto +8.994261e+01 7.157659e+01 lineto +8.843918e+01 7.107546e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.735133e+01 7.267516e+01 moveto +8.843918e+01 7.107546e+01 lineto +8.994261e+01 7.157659e+01 lineto +8.878499e+01 7.315303e+01 lineto +8.735133e+01 7.267516e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.62125e+01 7.421401e+01 moveto +8.735133e+01 7.267516e+01 lineto +8.878499e+01 7.315303e+01 lineto +8.757311e+01 7.466753e+01 lineto +8.62125e+01 7.421401e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.502528e+01 7.56885e+01 moveto +8.62125e+01 7.421401e+01 lineto +8.757311e+01 7.466753e+01 lineto +8.630974e+01 7.611664e+01 lineto +8.502528e+01 7.56885e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.379238e+01 7.709527e+01 moveto +8.502528e+01 7.56885e+01 lineto +8.630974e+01 7.611664e+01 lineto +8.499775e+01 7.749705e+01 lineto +8.379238e+01 7.709527e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.251661e+01 7.843111e+01 moveto +8.379238e+01 7.709527e+01 lineto +8.499775e+01 7.749705e+01 lineto +8.364016e+01 7.880561e+01 lineto +8.251661e+01 7.843111e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.120088e+01 7.969296e+01 moveto +8.251661e+01 7.843111e+01 lineto +8.364016e+01 7.880561e+01 lineto +8.224004e+01 8.003933e+01 lineto +8.120088e+01 7.969296e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.98482e+01 8.087796e+01 moveto +8.120088e+01 7.969296e+01 lineto +8.224004e+01 8.003933e+01 lineto +8.080059e+01 8.119541e+01 lineto +7.98482e+01 8.087796e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.846164e+01 8.198339e+01 moveto +7.98482e+01 8.087796e+01 lineto +8.080059e+01 8.119541e+01 lineto +7.93251e+01 8.22712e+01 lineto +7.846164e+01 8.198339e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.704438e+01 8.300674e+01 moveto +7.846164e+01 8.198339e+01 lineto +7.93251e+01 8.22712e+01 lineto +7.781693e+01 8.326425e+01 lineto +7.704438e+01 8.300674e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.559964e+01 8.394567e+01 moveto +7.704438e+01 8.300674e+01 lineto +7.781693e+01 8.326425e+01 lineto +7.627952e+01 8.417229e+01 lineto +7.559964e+01 8.394567e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.413073e+01 8.479805e+01 moveto +7.559964e+01 8.394567e+01 lineto +7.627952e+01 8.417229e+01 lineto +7.471639e+01 8.499326e+01 lineto +7.413073e+01 8.479805e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.264098e+01 8.556192e+01 moveto +7.413073e+01 8.479805e+01 lineto +7.471639e+01 8.499326e+01 lineto +7.313109e+01 8.572528e+01 lineto +7.264098e+01 8.556192e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.113381e+01 8.623554e+01 moveto +7.264098e+01 8.556192e+01 lineto +7.313109e+01 8.572528e+01 lineto +7.152724e+01 8.636668e+01 lineto +7.113381e+01 8.623554e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.961264e+01 8.681738e+01 moveto +7.113381e+01 8.623554e+01 lineto +7.152724e+01 8.636668e+01 lineto +6.99085e+01 8.6916e+01 lineto +6.961264e+01 8.681738e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.808095e+01 8.730611e+01 moveto +6.961264e+01 8.681738e+01 lineto +6.99085e+01 8.6916e+01 lineto +6.827857e+01 8.737198e+01 lineto +6.808095e+01 8.730611e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.654224e+01 8.770062e+01 moveto +6.808095e+01 8.730611e+01 lineto +6.827857e+01 8.737198e+01 lineto +6.664116e+01 8.773359e+01 lineto +6.654224e+01 8.770062e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.654224e+01 8.770062e+01 lineto +6.664116e+01 8.773359e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.791581e+01 2.952426e+01 moveto +9.740572e+01 2.768549e+01 lineto +9.91592e+01 2.836316e+01 lineto +9.96969e+01 3.021259e+01 lineto +9.791581e+01 2.952426e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.835082e+01 3.140061e+01 moveto +9.791581e+01 2.952426e+01 lineto +9.96969e+01 3.021259e+01 lineto +1.001554e+02 3.209804e+01 lineto +9.835082e+01 3.140061e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.870975e+01 3.331026e+01 moveto +9.835082e+01 3.140061e+01 lineto +1.001554e+02 3.209804e+01 lineto +1.005338e+02 3.40152e+01 lineto +9.870975e+01 3.331026e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.899178e+01 3.524886e+01 moveto +9.870975e+01 3.331026e+01 lineto +1.005338e+02 3.40152e+01 lineto +1.008311e+02 3.59597e+01 lineto +9.899178e+01 3.524886e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.919627e+01 3.721198e+01 moveto +9.899178e+01 3.524886e+01 lineto +1.008311e+02 3.59597e+01 lineto +1.010466e+02 3.79271e+01 lineto +9.919627e+01 3.721198e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.932275e+01 3.919516e+01 moveto +9.919627e+01 3.721198e+01 lineto +1.010466e+02 3.79271e+01 lineto +1.0118e+02 3.991291e+01 lineto +9.932275e+01 3.919516e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.937094e+01 4.119385e+01 moveto +9.932275e+01 3.919516e+01 lineto +1.0118e+02 3.991291e+01 lineto +1.012308e+02 4.191261e+01 lineto +9.937094e+01 4.119385e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.934073e+01 4.320351e+01 moveto +9.937094e+01 4.119385e+01 lineto +1.012308e+02 4.191261e+01 lineto +1.011989e+02 4.392164e+01 lineto +9.934073e+01 4.320351e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.923218e+01 4.521954e+01 moveto +9.934073e+01 4.320351e+01 lineto +1.011989e+02 4.392164e+01 lineto +1.010845e+02 4.593541e+01 lineto +9.923218e+01 4.521954e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.904554e+01 4.723736e+01 moveto +9.923218e+01 4.521954e+01 lineto +1.010845e+02 4.593541e+01 lineto +1.008877e+02 4.794932e+01 lineto +9.904554e+01 4.723736e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.878123e+01 4.925235e+01 moveto +9.904554e+01 4.723736e+01 lineto +1.008877e+02 4.794932e+01 lineto +1.006091e+02 4.995879e+01 lineto +9.878123e+01 4.925235e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.843987e+01 5.125993e+01 moveto +9.878123e+01 4.925235e+01 lineto +1.006091e+02 4.995879e+01 lineto +1.002493e+02 5.195922e+01 lineto +9.843987e+01 5.125993e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.802223e+01 5.325551e+01 moveto +9.843987e+01 5.125993e+01 lineto +1.002493e+02 5.195922e+01 lineto +9.980907e+01 5.394607e+01 lineto +9.802223e+01 5.325551e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.752926e+01 5.523453e+01 moveto +9.802223e+01 5.325551e+01 lineto +9.980907e+01 5.394607e+01 lineto +9.928942e+01 5.591478e+01 lineto +9.752926e+01 5.523453e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.696208e+01 5.719249e+01 moveto +9.752926e+01 5.523453e+01 lineto +9.928942e+01 5.591478e+01 lineto +9.869156e+01 5.786088e+01 lineto +9.696208e+01 5.719249e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.6322e+01 5.912492e+01 moveto +9.696208e+01 5.719249e+01 lineto +9.869156e+01 5.786088e+01 lineto +9.801684e+01 5.977993e+01 lineto +9.6322e+01 5.912492e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.561046e+01 6.102741e+01 moveto +9.6322e+01 5.912492e+01 lineto +9.801684e+01 5.977993e+01 lineto +9.72668e+01 6.166753e+01 lineto +9.561046e+01 6.102741e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.48291e+01 6.289562e+01 moveto +9.561046e+01 6.102741e+01 lineto +9.72668e+01 6.166753e+01 lineto +9.644316e+01 6.35194e+01 lineto +9.48291e+01 6.289562e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.397969e+01 6.472529e+01 moveto +9.48291e+01 6.289562e+01 lineto +9.644316e+01 6.35194e+01 lineto +9.554779e+01 6.533131e+01 lineto +9.397969e+01 6.472529e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.306418e+01 6.651224e+01 moveto +9.397969e+01 6.472529e+01 lineto +9.554779e+01 6.533131e+01 lineto +9.458274e+01 6.709912e+01 lineto +9.306418e+01 6.651224e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.208465e+01 6.82524e+01 moveto +9.306418e+01 6.651224e+01 lineto +9.458274e+01 6.709912e+01 lineto +9.35502e+01 6.88188e+01 lineto +9.208465e+01 6.82524e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.104333e+01 6.99418e+01 moveto +9.208465e+01 6.82524e+01 lineto +9.35502e+01 6.88188e+01 lineto +9.245254e+01 7.048642e+01 lineto +9.104333e+01 6.99418e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.994261e+01 7.157659e+01 moveto +9.104333e+01 6.99418e+01 lineto +9.245254e+01 7.048642e+01 lineto +9.129226e+01 7.209819e+01 lineto +8.994261e+01 7.157659e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.878499e+01 7.315303e+01 moveto +8.994261e+01 7.157659e+01 lineto +9.129226e+01 7.209819e+01 lineto +9.0072e+01 7.365042e+01 lineto +8.878499e+01 7.315303e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.757311e+01 7.466753e+01 moveto +8.878499e+01 7.315303e+01 lineto +9.0072e+01 7.365042e+01 lineto +8.879454e+01 7.513958e+01 lineto +8.757311e+01 7.466753e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.630974e+01 7.611664e+01 moveto +8.757311e+01 7.466753e+01 lineto +8.879454e+01 7.513958e+01 lineto +8.746281e+01 7.656227e+01 lineto +8.630974e+01 7.611664e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.499775e+01 7.749705e+01 moveto +8.630974e+01 7.611664e+01 lineto +8.746281e+01 7.656227e+01 lineto +8.607984e+01 7.791524e+01 lineto +8.499775e+01 7.749705e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.364016e+01 7.880561e+01 moveto +8.499775e+01 7.749705e+01 lineto +8.607984e+01 7.791524e+01 lineto +8.464878e+01 7.919541e+01 lineto +8.364016e+01 7.880561e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.224004e+01 8.003933e+01 moveto +8.364016e+01 7.880561e+01 lineto +8.464878e+01 7.919541e+01 lineto +8.31729e+01 8.039985e+01 lineto +8.224004e+01 8.003933e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.080059e+01 8.119541e+01 moveto +8.224004e+01 8.003933e+01 lineto +8.31729e+01 8.039985e+01 lineto +8.165556e+01 8.152583e+01 lineto +8.080059e+01 8.119541e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.93251e+01 8.22712e+01 moveto +8.080059e+01 8.119541e+01 lineto +8.165556e+01 8.152583e+01 lineto +8.010023e+01 8.257076e+01 lineto +7.93251e+01 8.22712e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.781693e+01 8.326425e+01 moveto +7.93251e+01 8.22712e+01 lineto +8.010023e+01 8.257076e+01 lineto +7.851046e+01 8.353227e+01 lineto +7.781693e+01 8.326425e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.627952e+01 8.417229e+01 moveto +7.781693e+01 8.326425e+01 lineto +7.851046e+01 8.353227e+01 lineto +7.688986e+01 8.440817e+01 lineto +7.627952e+01 8.417229e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.471639e+01 8.499326e+01 moveto +7.627952e+01 8.417229e+01 lineto +7.688986e+01 8.440817e+01 lineto +7.524215e+01 8.519645e+01 lineto +7.471639e+01 8.499326e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.313109e+01 8.572528e+01 moveto +7.471639e+01 8.499326e+01 lineto +7.524215e+01 8.519645e+01 lineto +7.357107e+01 8.589532e+01 lineto +7.313109e+01 8.572528e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.152724e+01 8.636668e+01 moveto +7.313109e+01 8.572528e+01 lineto +7.357107e+01 8.589532e+01 lineto +7.188043e+01 8.650318e+01 lineto +7.152724e+01 8.636668e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.99085e+01 8.6916e+01 moveto +7.152724e+01 8.636668e+01 lineto +7.188043e+01 8.650318e+01 lineto +7.017411e+01 8.701865e+01 lineto +6.99085e+01 8.6916e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.827857e+01 8.737198e+01 moveto +6.99085e+01 8.6916e+01 lineto +7.017411e+01 8.701865e+01 lineto +6.845597e+01 8.744055e+01 lineto +6.827857e+01 8.737198e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.664116e+01 8.773359e+01 moveto +6.827857e+01 8.737198e+01 lineto +6.845597e+01 8.744055e+01 lineto +6.672996e+01 8.776791e+01 lineto +6.664116e+01 8.773359e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.664116e+01 8.773359e+01 lineto +6.672996e+01 8.776791e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.96969e+01 3.021259e+01 moveto +9.91592e+01 2.836316e+01 lineto +1.007021e+02 2.906325e+01 lineto +1.012641e+02 3.09237e+01 lineto +9.96969e+01 3.021259e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.001554e+02 3.209804e+01 moveto +9.96969e+01 3.021259e+01 lineto +1.012641e+02 3.09237e+01 lineto +1.017433e+02 3.281855e+01 lineto +1.001554e+02 3.209804e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.005338e+02 3.40152e+01 moveto +1.001554e+02 3.209804e+01 lineto +1.017433e+02 3.281855e+01 lineto +1.021388e+02 3.474346e+01 lineto +1.005338e+02 3.40152e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.008311e+02 3.59597e+01 moveto +1.005338e+02 3.40152e+01 lineto +1.021388e+02 3.474346e+01 lineto +1.024495e+02 3.669405e+01 lineto +1.008311e+02 3.59597e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.010466e+02 3.79271e+01 moveto +1.008311e+02 3.59597e+01 lineto +1.024495e+02 3.669405e+01 lineto +1.026748e+02 3.866587e+01 lineto +1.010466e+02 3.79271e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.0118e+02 3.991291e+01 moveto +1.010466e+02 3.79271e+01 lineto +1.026748e+02 3.866587e+01 lineto +1.028141e+02 4.065442e+01 lineto +1.0118e+02 3.991291e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.012308e+02 4.191261e+01 moveto +1.0118e+02 3.991291e+01 lineto +1.028141e+02 4.065442e+01 lineto +1.028672e+02 4.265516e+01 lineto +1.012308e+02 4.191261e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.011989e+02 4.392164e+01 moveto +1.012308e+02 4.191261e+01 lineto +1.028672e+02 4.265516e+01 lineto +1.028339e+02 4.466353e+01 lineto +1.011989e+02 4.392164e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.010845e+02 4.593541e+01 moveto +1.011989e+02 4.392164e+01 lineto +1.028339e+02 4.466353e+01 lineto +1.027143e+02 4.667495e+01 lineto +1.010845e+02 4.593541e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.008877e+02 4.794932e+01 moveto +1.010845e+02 4.593541e+01 lineto +1.027143e+02 4.667495e+01 lineto +1.025087e+02 4.868484e+01 lineto +1.008877e+02 4.794932e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.006091e+02 4.995879e+01 moveto +1.008877e+02 4.794932e+01 lineto +1.025087e+02 4.868484e+01 lineto +1.022175e+02 5.068859e+01 lineto +1.006091e+02 4.995879e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.002493e+02 5.195922e+01 moveto +1.006091e+02 4.995879e+01 lineto +1.022175e+02 5.068859e+01 lineto +1.018414e+02 5.268166e+01 lineto +1.002493e+02 5.195922e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.980907e+01 5.394607e+01 moveto +1.002493e+02 5.195922e+01 lineto +1.018414e+02 5.268166e+01 lineto +1.013813e+02 5.465948e+01 lineto +9.980907e+01 5.394607e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.928942e+01 5.591478e+01 moveto +9.980907e+01 5.394607e+01 lineto +1.013813e+02 5.465948e+01 lineto +1.008382e+02 5.661754e+01 lineto +9.928942e+01 5.591478e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.869156e+01 5.786088e+01 moveto +9.928942e+01 5.591478e+01 lineto +1.008382e+02 5.661754e+01 lineto +1.002133e+02 5.855139e+01 lineto +9.869156e+01 5.786088e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.801684e+01 5.977993e+01 moveto +9.869156e+01 5.786088e+01 lineto +1.002133e+02 5.855139e+01 lineto +9.950812e+01 6.04566e+01 lineto +9.801684e+01 5.977993e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.72668e+01 6.166753e+01 moveto +9.801684e+01 5.977993e+01 lineto +9.950812e+01 6.04566e+01 lineto +9.872421e+01 6.232884e+01 lineto +9.72668e+01 6.166753e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.644316e+01 6.35194e+01 moveto +9.72668e+01 6.166753e+01 lineto +9.872421e+01 6.232884e+01 lineto +9.786336e+01 6.416383e+01 lineto +9.644316e+01 6.35194e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.554779e+01 6.533131e+01 moveto +9.644316e+01 6.35194e+01 lineto +9.786336e+01 6.416383e+01 lineto +9.692755e+01 6.595738e+01 lineto +9.554779e+01 6.533131e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.458274e+01 6.709912e+01 moveto +9.554779e+01 6.533131e+01 lineto +9.692755e+01 6.595738e+01 lineto +9.591891e+01 6.770541e+01 lineto +9.458274e+01 6.709912e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.35502e+01 6.88188e+01 moveto +9.458274e+01 6.709912e+01 lineto +9.591891e+01 6.770541e+01 lineto +9.483974e+01 6.940393e+01 lineto +9.35502e+01 6.88188e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.245254e+01 7.048642e+01 moveto +9.35502e+01 6.88188e+01 lineto +9.483974e+01 6.940393e+01 lineto +9.36925e+01 7.104906e+01 lineto +9.245254e+01 7.048642e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.129226e+01 7.209819e+01 moveto +9.245254e+01 7.048642e+01 lineto +9.36925e+01 7.104906e+01 lineto +9.247981e+01 7.263705e+01 lineto +9.129226e+01 7.209819e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.0072e+01 7.365042e+01 moveto +9.129226e+01 7.209819e+01 lineto +9.247981e+01 7.263705e+01 lineto +9.120443e+01 7.416427e+01 lineto +9.0072e+01 7.365042e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.879454e+01 7.513958e+01 moveto +9.0072e+01 7.365042e+01 lineto +9.120443e+01 7.416427e+01 lineto +8.986928e+01 7.562725e+01 lineto +8.879454e+01 7.513958e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.746281e+01 7.656227e+01 moveto +8.879454e+01 7.513958e+01 lineto +8.986928e+01 7.562725e+01 lineto +8.84774e+01 7.702264e+01 lineto +8.746281e+01 7.656227e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.607984e+01 7.791524e+01 moveto +8.746281e+01 7.656227e+01 lineto +8.84774e+01 7.702264e+01 lineto +8.703196e+01 7.834727e+01 lineto +8.607984e+01 7.791524e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.464878e+01 7.919541e+01 moveto +8.607984e+01 7.791524e+01 lineto +8.703196e+01 7.834727e+01 lineto +8.553626e+01 7.959811e+01 lineto +8.464878e+01 7.919541e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.31729e+01 8.039985e+01 moveto +8.464878e+01 7.919541e+01 lineto +8.553626e+01 7.959811e+01 lineto +8.399372e+01 8.077231e+01 lineto +8.31729e+01 8.039985e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.165556e+01 8.152583e+01 moveto +8.31729e+01 8.039985e+01 lineto +8.399372e+01 8.077231e+01 lineto +8.240785e+01 8.186718e+01 lineto +8.165556e+01 8.152583e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.010023e+01 8.257076e+01 moveto +8.165556e+01 8.152583e+01 lineto +8.240785e+01 8.186718e+01 lineto +8.078227e+01 8.288024e+01 lineto +8.010023e+01 8.257076e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.851046e+01 8.353227e+01 moveto +8.010023e+01 8.257076e+01 lineto +8.078227e+01 8.288024e+01 lineto +7.912069e+01 8.380917e+01 lineto +7.851046e+01 8.353227e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.688986e+01 8.440817e+01 moveto +7.851046e+01 8.353227e+01 lineto +7.912069e+01 8.380917e+01 lineto +7.74269e+01 8.465185e+01 lineto +7.688986e+01 8.440817e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.524215e+01 8.519645e+01 moveto +7.688986e+01 8.440817e+01 lineto +7.74269e+01 8.465185e+01 lineto +7.570476e+01 8.540636e+01 lineto +7.524215e+01 8.519645e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.357107e+01 8.589532e+01 moveto +7.524215e+01 8.519645e+01 lineto +7.570476e+01 8.540636e+01 lineto +7.39582e+01 8.607098e+01 lineto +7.357107e+01 8.589532e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.188043e+01 8.650318e+01 moveto +7.357107e+01 8.589532e+01 lineto +7.39582e+01 8.607098e+01 lineto +7.21912e+01 8.664419e+01 lineto +7.188043e+01 8.650318e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.017411e+01 8.701865e+01 moveto +7.188043e+01 8.650318e+01 lineto +7.21912e+01 8.664419e+01 lineto +7.040781e+01 8.712469e+01 lineto +7.017411e+01 8.701865e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.845597e+01 8.744055e+01 moveto +7.017411e+01 8.701865e+01 lineto +7.040781e+01 8.712469e+01 lineto +6.861207e+01 8.751138e+01 lineto +6.845597e+01 8.744055e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.672996e+01 8.776791e+01 moveto +6.845597e+01 8.744055e+01 lineto +6.861207e+01 8.751138e+01 lineto +6.68081e+01 8.780337e+01 lineto +6.672996e+01 8.776791e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.672996e+01 8.776791e+01 lineto +6.68081e+01 8.780337e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.012641e+02 3.09237e+01 moveto +1.007021e+02 2.906325e+01 lineto +1.020249e+02 2.978145e+01 lineto +1.026077e+02 3.165321e+01 lineto +1.012641e+02 3.09237e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.017433e+02 3.281855e+01 moveto +1.012641e+02 3.09237e+01 lineto +1.026077e+02 3.165321e+01 lineto +1.031047e+02 3.355769e+01 lineto +1.017433e+02 3.281855e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.021388e+02 3.474346e+01 moveto +1.017433e+02 3.281855e+01 lineto +1.031047e+02 3.355769e+01 lineto +1.035148e+02 3.549056e+01 lineto +1.021388e+02 3.474346e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.024495e+02 3.669405e+01 moveto +1.021388e+02 3.474346e+01 lineto +1.035148e+02 3.549056e+01 lineto +1.03837e+02 3.74474e+01 lineto +1.024495e+02 3.669405e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.026748e+02 3.866587e+01 moveto +1.024495e+02 3.669405e+01 lineto +1.03837e+02 3.74474e+01 lineto +1.040706e+02 3.942375e+01 lineto +1.026748e+02 3.866587e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.028141e+02 4.065442e+01 moveto +1.026748e+02 3.866587e+01 lineto +1.040706e+02 3.942375e+01 lineto +1.042151e+02 4.14151e+01 lineto +1.028141e+02 4.065442e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.028672e+02 4.265516e+01 moveto +1.028141e+02 4.065442e+01 lineto +1.042151e+02 4.14151e+01 lineto +1.042702e+02 4.341691e+01 lineto +1.028672e+02 4.265516e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.028339e+02 4.466353e+01 moveto +1.028672e+02 4.265516e+01 lineto +1.042702e+02 4.341691e+01 lineto +1.042357e+02 4.542461e+01 lineto +1.028339e+02 4.466353e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.027143e+02 4.667495e+01 moveto +1.028339e+02 4.466353e+01 lineto +1.042357e+02 4.542461e+01 lineto +1.041116e+02 4.743363e+01 lineto +1.027143e+02 4.667495e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.025087e+02 4.868484e+01 moveto +1.027143e+02 4.667495e+01 lineto +1.041116e+02 4.743363e+01 lineto +1.038984e+02 4.943937e+01 lineto +1.025087e+02 4.868484e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.022175e+02 5.068859e+01 moveto +1.025087e+02 4.868484e+01 lineto +1.038984e+02 4.943937e+01 lineto +1.035964e+02 5.143727e+01 lineto +1.022175e+02 5.068859e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.018414e+02 5.268166e+01 moveto +1.022175e+02 5.068859e+01 lineto +1.035964e+02 5.143727e+01 lineto +1.032064e+02 5.342277e+01 lineto +1.018414e+02 5.268166e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.013813e+02 5.465948e+01 moveto +1.018414e+02 5.268166e+01 lineto +1.032064e+02 5.342277e+01 lineto +1.027292e+02 5.539133e+01 lineto +1.013813e+02 5.465948e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.008382e+02 5.661754e+01 moveto +1.013813e+02 5.465948e+01 lineto +1.027292e+02 5.539133e+01 lineto +1.02166e+02 5.733848e+01 lineto +1.008382e+02 5.661754e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.002133e+02 5.855139e+01 moveto +1.008382e+02 5.661754e+01 lineto +1.02166e+02 5.733848e+01 lineto +1.01518e+02 5.925975e+01 lineto +1.002133e+02 5.855139e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.950812e+01 6.04566e+01 moveto +1.002133e+02 5.855139e+01 lineto +1.01518e+02 5.925975e+01 lineto +1.007866e+02 6.115078e+01 lineto +9.950812e+01 6.04566e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.872421e+01 6.232884e+01 moveto +9.950812e+01 6.04566e+01 lineto +1.007866e+02 6.115078e+01 lineto +9.997369e+01 6.300725e+01 lineto +9.872421e+01 6.232884e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.786336e+01 6.416383e+01 moveto +9.872421e+01 6.232884e+01 lineto +9.997369e+01 6.300725e+01 lineto +9.908095e+01 6.482492e+01 lineto +9.786336e+01 6.416383e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.692755e+01 6.595738e+01 moveto +9.786336e+01 6.416383e+01 lineto +9.908095e+01 6.482492e+01 lineto +9.811047e+01 6.659965e+01 lineto +9.692755e+01 6.595738e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.591891e+01 6.770541e+01 moveto +9.692755e+01 6.595738e+01 lineto +9.811047e+01 6.659965e+01 lineto +9.706446e+01 6.832739e+01 lineto +9.591891e+01 6.770541e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.483974e+01 6.940393e+01 moveto +9.591891e+01 6.770541e+01 lineto +9.706446e+01 6.832739e+01 lineto +9.594531e+01 7.00042e+01 lineto +9.483974e+01 6.940393e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.36925e+01 7.104906e+01 moveto +9.483974e+01 6.940393e+01 lineto +9.594531e+01 7.00042e+01 lineto +9.475556e+01 7.162625e+01 lineto +9.36925e+01 7.104906e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.247981e+01 7.263705e+01 moveto +9.36925e+01 7.104906e+01 lineto +9.475556e+01 7.162625e+01 lineto +9.349794e+01 7.318984e+01 lineto +9.247981e+01 7.263705e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.120443e+01 7.416427e+01 moveto +9.247981e+01 7.263705e+01 lineto +9.349794e+01 7.318984e+01 lineto +9.217531e+01 7.469141e+01 lineto +9.120443e+01 7.416427e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.986928e+01 7.562725e+01 moveto +9.120443e+01 7.416427e+01 lineto +9.217531e+01 7.469141e+01 lineto +9.079069e+01 7.612753e+01 lineto +8.986928e+01 7.562725e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.84774e+01 7.702264e+01 moveto +8.986928e+01 7.562725e+01 lineto +9.079069e+01 7.612753e+01 lineto +8.934724e+01 7.749492e+01 lineto +8.84774e+01 7.702264e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.703196e+01 7.834727e+01 moveto +8.84774e+01 7.702264e+01 lineto +8.934724e+01 7.749492e+01 lineto +8.784824e+01 7.879047e+01 lineto +8.703196e+01 7.834727e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.553626e+01 7.959811e+01 moveto +8.703196e+01 7.834727e+01 lineto +8.784824e+01 7.879047e+01 lineto +8.629713e+01 8.001122e+01 lineto +8.553626e+01 7.959811e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.399372e+01 8.077231e+01 moveto +8.553626e+01 7.959811e+01 lineto +8.629713e+01 8.001122e+01 lineto +8.469744e+01 8.115439e+01 lineto +8.399372e+01 8.077231e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.240785e+01 8.186718e+01 moveto +8.399372e+01 8.077231e+01 lineto +8.469744e+01 8.115439e+01 lineto +8.305281e+01 8.221737e+01 lineto +8.240785e+01 8.186718e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.078227e+01 8.288024e+01 moveto +8.240785e+01 8.186718e+01 lineto +8.305281e+01 8.221737e+01 lineto +8.1367e+01 8.319772e+01 lineto +8.078227e+01 8.288024e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.912069e+01 8.380917e+01 moveto +8.078227e+01 8.288024e+01 lineto +8.1367e+01 8.319772e+01 lineto +7.964386e+01 8.409323e+01 lineto +7.912069e+01 8.380917e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.74269e+01 8.465185e+01 moveto +7.912069e+01 8.380917e+01 lineto +7.964386e+01 8.409323e+01 lineto +7.788731e+01 8.490184e+01 lineto +7.74269e+01 8.465185e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.570476e+01 8.540636e+01 moveto +7.74269e+01 8.465185e+01 lineto +7.788731e+01 8.490184e+01 lineto +7.610137e+01 8.56217e+01 lineto +7.570476e+01 8.540636e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.39582e+01 8.607098e+01 moveto +7.570476e+01 8.540636e+01 lineto +7.610137e+01 8.56217e+01 lineto +7.42901e+01 8.625119e+01 lineto +7.39582e+01 8.607098e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.21912e+01 8.664419e+01 moveto +7.39582e+01 8.607098e+01 lineto +7.42901e+01 8.625119e+01 lineto +7.245764e+01 8.678885e+01 lineto +7.21912e+01 8.664419e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.040781e+01 8.712469e+01 moveto +7.21912e+01 8.664419e+01 lineto +7.245764e+01 8.678885e+01 lineto +7.060817e+01 8.723348e+01 lineto +7.040781e+01 8.712469e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.861207e+01 8.751138e+01 moveto +7.040781e+01 8.712469e+01 lineto +7.060817e+01 8.723348e+01 lineto +6.87459e+01 8.758404e+01 lineto +6.861207e+01 8.751138e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.68081e+01 8.780337e+01 moveto +6.861207e+01 8.751138e+01 lineto +6.87459e+01 8.758404e+01 lineto +6.687509e+01 8.783974e+01 lineto +6.68081e+01 8.780337e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.68081e+01 8.780337e+01 lineto +6.687509e+01 8.783974e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.026077e+02 3.165321e+01 moveto +1.020249e+02 2.978145e+01 lineto +1.031193e+02 3.051332e+01 lineto +1.037194e+02 3.23966e+01 lineto +1.026077e+02 3.165321e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.031047e+02 3.355769e+01 moveto +1.026077e+02 3.165321e+01 lineto +1.037194e+02 3.23966e+01 lineto +1.042311e+02 3.431091e+01 lineto +1.031047e+02 3.355769e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.035148e+02 3.549056e+01 moveto +1.031047e+02 3.355769e+01 lineto +1.042311e+02 3.431091e+01 lineto +1.046533e+02 3.625188e+01 lineto +1.035148e+02 3.549056e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.03837e+02 3.74474e+01 moveto +1.035148e+02 3.549056e+01 lineto +1.046533e+02 3.625188e+01 lineto +1.04985e+02 3.821509e+01 lineto +1.03837e+02 3.74474e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.040706e+02 3.942375e+01 moveto +1.03837e+02 3.74474e+01 lineto +1.04985e+02 3.821509e+01 lineto +1.052256e+02 4.019606e+01 lineto +1.040706e+02 3.942375e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.042151e+02 4.14151e+01 moveto +1.040706e+02 3.942375e+01 lineto +1.052256e+02 4.019606e+01 lineto +1.053744e+02 4.219027e+01 lineto +1.042151e+02 4.14151e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.042702e+02 4.341691e+01 moveto +1.042151e+02 4.14151e+01 lineto +1.053744e+02 4.219027e+01 lineto +1.054311e+02 4.419317e+01 lineto +1.042702e+02 4.341691e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.042357e+02 4.542461e+01 moveto +1.042702e+02 4.341691e+01 lineto +1.054311e+02 4.419317e+01 lineto +1.053955e+02 4.620019e+01 lineto +1.042357e+02 4.542461e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.041116e+02 4.743363e+01 moveto +1.042357e+02 4.542461e+01 lineto +1.053955e+02 4.620019e+01 lineto +1.052678e+02 4.820675e+01 lineto +1.041116e+02 4.743363e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.038984e+02 4.943937e+01 moveto +1.041116e+02 4.743363e+01 lineto +1.052678e+02 4.820675e+01 lineto +1.050483e+02 5.020828e+01 lineto +1.038984e+02 4.943937e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.035964e+02 5.143727e+01 moveto +1.038984e+02 4.943937e+01 lineto +1.050483e+02 5.020828e+01 lineto +1.047374e+02 5.220021e+01 lineto +1.035964e+02 5.143727e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.032064e+02 5.342277e+01 moveto +1.035964e+02 5.143727e+01 lineto +1.047374e+02 5.220021e+01 lineto +1.043358e+02 5.4178e+01 lineto +1.032064e+02 5.342277e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.027292e+02 5.539133e+01 moveto +1.032064e+02 5.342277e+01 lineto +1.043358e+02 5.4178e+01 lineto +1.038446e+02 5.613713e+01 lineto +1.027292e+02 5.539133e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.02166e+02 5.733848e+01 moveto +1.027292e+02 5.539133e+01 lineto +1.038446e+02 5.613713e+01 lineto +1.032647e+02 5.807314e+01 lineto +1.02166e+02 5.733848e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.01518e+02 5.925975e+01 moveto +1.02166e+02 5.733848e+01 lineto +1.032647e+02 5.807314e+01 lineto +1.025975e+02 5.998161e+01 lineto +1.01518e+02 5.925975e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.007866e+02 6.115078e+01 moveto +1.01518e+02 5.925975e+01 lineto +1.025975e+02 5.998161e+01 lineto +1.018445e+02 6.185818e+01 lineto +1.007866e+02 6.115078e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.997369e+01 6.300725e+01 moveto +1.007866e+02 6.115078e+01 lineto +1.018445e+02 6.185818e+01 lineto +1.010076e+02 6.369858e+01 lineto +9.997369e+01 6.300725e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.908095e+01 6.482492e+01 moveto +9.997369e+01 6.300725e+01 lineto +1.010076e+02 6.369858e+01 lineto +1.000884e+02 6.54986e+01 lineto +9.908095e+01 6.482492e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.811047e+01 6.659965e+01 moveto +9.908095e+01 6.482492e+01 lineto +1.000884e+02 6.54986e+01 lineto +9.908925e+01 6.725415e+01 lineto +9.811047e+01 6.659965e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.706446e+01 6.832739e+01 moveto +9.811047e+01 6.659965e+01 lineto +9.908925e+01 6.725415e+01 lineto +9.801232e+01 6.896121e+01 lineto +9.706446e+01 6.832739e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.594531e+01 7.00042e+01 moveto +9.706446e+01 6.832739e+01 lineto +9.801232e+01 6.896121e+01 lineto +9.686008e+01 7.06159e+01 lineto +9.594531e+01 7.00042e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.475556e+01 7.162625e+01 moveto +9.594531e+01 7.00042e+01 lineto +9.686008e+01 7.06159e+01 lineto +9.563517e+01 7.221443e+01 lineto +9.475556e+01 7.162625e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.349794e+01 7.318984e+01 moveto +9.475556e+01 7.162625e+01 lineto +9.563517e+01 7.221443e+01 lineto +9.434037e+01 7.375316e+01 lineto +9.349794e+01 7.318984e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.217531e+01 7.469141e+01 moveto +9.349794e+01 7.318984e+01 lineto +9.434037e+01 7.375316e+01 lineto +9.297864e+01 7.522859e+01 lineto +9.217531e+01 7.469141e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.079069e+01 7.612753e+01 moveto +9.217531e+01 7.469141e+01 lineto +9.297864e+01 7.522859e+01 lineto +9.155309e+01 7.663734e+01 lineto +9.079069e+01 7.612753e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.934724e+01 7.749492e+01 moveto +9.079069e+01 7.612753e+01 lineto +9.155309e+01 7.663734e+01 lineto +9.006697e+01 7.79762e+01 lineto +8.934724e+01 7.749492e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.784824e+01 7.879047e+01 moveto +8.934724e+01 7.749492e+01 lineto +9.006697e+01 7.79762e+01 lineto +8.852366e+01 7.924212e+01 lineto +8.784824e+01 7.879047e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.629713e+01 8.001122e+01 moveto +8.784824e+01 7.879047e+01 lineto +8.852366e+01 7.924212e+01 lineto +8.69267e+01 8.043221e+01 lineto +8.629713e+01 8.001122e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.469744e+01 8.115439e+01 moveto +8.629713e+01 8.001122e+01 lineto +8.69267e+01 8.043221e+01 lineto +8.527972e+01 8.154375e+01 lineto +8.469744e+01 8.115439e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.305281e+01 8.221737e+01 moveto +8.469744e+01 8.115439e+01 lineto +8.527972e+01 8.154375e+01 lineto +8.358647e+01 8.257422e+01 lineto +8.305281e+01 8.221737e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.1367e+01 8.319772e+01 moveto +8.305281e+01 8.221737e+01 lineto +8.358647e+01 8.257422e+01 lineto +8.185083e+01 8.352125e+01 lineto +8.1367e+01 8.319772e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.964386e+01 8.409323e+01 moveto +8.1367e+01 8.319772e+01 lineto +8.185083e+01 8.352125e+01 lineto +8.007675e+01 8.438269e+01 lineto +7.964386e+01 8.409323e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.788731e+01 8.490184e+01 moveto +7.964386e+01 8.409323e+01 lineto +8.007675e+01 8.438269e+01 lineto +7.826828e+01 8.515658e+01 lineto +7.788731e+01 8.490184e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.610137e+01 8.56217e+01 moveto +7.788731e+01 8.490184e+01 lineto +7.826828e+01 8.515658e+01 lineto +7.642954e+01 8.584114e+01 lineto +7.610137e+01 8.56217e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.42901e+01 8.625119e+01 moveto +7.610137e+01 8.56217e+01 lineto +7.642954e+01 8.584114e+01 lineto +7.456473e+01 8.643483e+01 lineto +7.42901e+01 8.625119e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.245764e+01 8.678885e+01 moveto +7.42901e+01 8.625119e+01 lineto +7.456473e+01 8.643483e+01 lineto +7.267809e+01 8.693627e+01 lineto +7.245764e+01 8.678885e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.060817e+01 8.723348e+01 moveto +7.245764e+01 8.678885e+01 lineto +7.267809e+01 8.693627e+01 lineto +7.077395e+01 8.734433e+01 lineto +7.060817e+01 8.723348e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.87459e+01 8.758404e+01 moveto +7.060817e+01 8.723348e+01 lineto +7.077395e+01 8.734433e+01 lineto +6.885663e+01 8.765808e+01 lineto +6.87459e+01 8.758404e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.687509e+01 8.783974e+01 moveto +6.87459e+01 8.758404e+01 lineto +6.885663e+01 8.765808e+01 lineto +6.693052e+01 8.78768e+01 lineto +6.687509e+01 8.783974e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.687509e+01 8.783974e+01 lineto +6.693052e+01 8.78768e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.037194e+02 3.23966e+01 moveto +1.031193e+02 3.051332e+01 lineto +1.039788e+02 3.125436e+01 lineto +1.045924e+02 3.314931e+01 lineto +1.037194e+02 3.23966e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.042311e+02 3.431091e+01 moveto +1.037194e+02 3.23966e+01 lineto +1.045924e+02 3.314931e+01 lineto +1.051156e+02 3.507356e+01 lineto +1.042311e+02 3.431091e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.046533e+02 3.625188e+01 moveto +1.042311e+02 3.431091e+01 lineto +1.051156e+02 3.507356e+01 lineto +1.055474e+02 3.702274e+01 lineto +1.046533e+02 3.625188e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.04985e+02 3.821509e+01 moveto +1.046533e+02 3.625188e+01 lineto +1.055474e+02 3.702274e+01 lineto +1.058866e+02 3.89924e+01 lineto +1.04985e+02 3.821509e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.052256e+02 4.019606e+01 moveto +1.04985e+02 3.821509e+01 lineto +1.058866e+02 3.89924e+01 lineto +1.061326e+02 4.097805e+01 lineto +1.052256e+02 4.019606e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.053744e+02 4.219027e+01 moveto +1.052256e+02 4.019606e+01 lineto +1.061326e+02 4.097805e+01 lineto +1.062847e+02 4.297515e+01 lineto +1.053744e+02 4.219027e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.054311e+02 4.419317e+01 moveto +1.053744e+02 4.219027e+01 lineto +1.062847e+02 4.297515e+01 lineto +1.063427e+02 4.497915e+01 lineto +1.054311e+02 4.419317e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.053955e+02 4.620019e+01 moveto +1.054311e+02 4.419317e+01 lineto +1.063427e+02 4.497915e+01 lineto +1.063063e+02 4.698548e+01 lineto +1.053955e+02 4.620019e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.052678e+02 4.820675e+01 moveto +1.053955e+02 4.620019e+01 lineto +1.063063e+02 4.698548e+01 lineto +1.061757e+02 4.898956e+01 lineto +1.052678e+02 4.820675e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.050483e+02 5.020828e+01 moveto +1.052678e+02 4.820675e+01 lineto +1.061757e+02 4.898956e+01 lineto +1.059513e+02 5.098682e+01 lineto +1.050483e+02 5.020828e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.047374e+02 5.220021e+01 moveto +1.050483e+02 5.020828e+01 lineto +1.059513e+02 5.098682e+01 lineto +1.056333e+02 5.297271e+01 lineto +1.047374e+02 5.220021e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.043358e+02 5.4178e+01 moveto +1.047374e+02 5.220021e+01 lineto +1.056333e+02 5.297271e+01 lineto +1.052227e+02 5.494269e+01 lineto +1.043358e+02 5.4178e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.038446e+02 5.613713e+01 moveto +1.043358e+02 5.4178e+01 lineto +1.052227e+02 5.494269e+01 lineto +1.047204e+02 5.689227e+01 lineto +1.038446e+02 5.613713e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.032647e+02 5.807314e+01 moveto +1.038446e+02 5.613713e+01 lineto +1.047204e+02 5.689227e+01 lineto +1.041274e+02 5.8817e+01 lineto +1.032647e+02 5.807314e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.025975e+02 5.998161e+01 moveto +1.032647e+02 5.807314e+01 lineto +1.041274e+02 5.8817e+01 lineto +1.034452e+02 6.07125e+01 lineto +1.025975e+02 5.998161e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.018445e+02 6.185818e+01 moveto +1.025975e+02 5.998161e+01 lineto +1.034452e+02 6.07125e+01 lineto +1.026753e+02 6.257444e+01 lineto +1.018445e+02 6.185818e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.010076e+02 6.369858e+01 moveto +1.018445e+02 6.185818e+01 lineto +1.026753e+02 6.257444e+01 lineto +1.018194e+02 6.439856e+01 lineto +1.010076e+02 6.369858e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.000884e+02 6.54986e+01 moveto +1.010076e+02 6.369858e+01 lineto +1.018194e+02 6.439856e+01 lineto +1.008796e+02 6.618072e+01 lineto +1.000884e+02 6.54986e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.908925e+01 6.725415e+01 moveto +1.000884e+02 6.54986e+01 lineto +1.008796e+02 6.618072e+01 lineto +9.985786e+01 6.791684e+01 lineto +9.908925e+01 6.725415e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.801232e+01 6.896121e+01 moveto +9.908925e+01 6.725415e+01 lineto +9.985786e+01 6.791684e+01 lineto +9.875665e+01 6.960297e+01 lineto +9.801232e+01 6.896121e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.686008e+01 7.06159e+01 moveto +9.801232e+01 6.896121e+01 lineto +9.875665e+01 6.960297e+01 lineto +9.757843e+01 7.123526e+01 lineto +9.686008e+01 7.06159e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.563517e+01 7.221443e+01 moveto +9.686008e+01 7.06159e+01 lineto +9.757843e+01 7.123526e+01 lineto +9.63259e+01 7.280998e+01 lineto +9.563517e+01 7.221443e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.434037e+01 7.375316e+01 moveto +9.563517e+01 7.221443e+01 lineto +9.63259e+01 7.280998e+01 lineto +9.500191e+01 7.432354e+01 lineto +9.434037e+01 7.375316e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.297864e+01 7.522859e+01 moveto +9.434037e+01 7.375316e+01 lineto +9.500191e+01 7.432354e+01 lineto +9.360948e+01 7.577249e+01 lineto +9.297864e+01 7.522859e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.155309e+01 7.663734e+01 moveto +9.297864e+01 7.522859e+01 lineto +9.360948e+01 7.577249e+01 lineto +9.215178e+01 7.715353e+01 lineto +9.155309e+01 7.663734e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.006697e+01 7.79762e+01 moveto +9.155309e+01 7.663734e+01 lineto +9.215178e+01 7.715353e+01 lineto +9.063215e+01 7.84635e+01 lineto +9.006697e+01 7.79762e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.852366e+01 7.924212e+01 moveto +9.006697e+01 7.79762e+01 lineto +9.063215e+01 7.84635e+01 lineto +8.905405e+01 7.969942e+01 lineto +8.852366e+01 7.924212e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.69267e+01 8.043221e+01 moveto +8.852366e+01 7.924212e+01 lineto +8.905405e+01 7.969942e+01 lineto +8.742108e+01 8.085846e+01 lineto +8.69267e+01 8.043221e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.527972e+01 8.154375e+01 moveto +8.69267e+01 8.043221e+01 lineto +8.742108e+01 8.085846e+01 lineto +8.573696e+01 8.193799e+01 lineto +8.527972e+01 8.154375e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.358647e+01 8.257422e+01 moveto +8.527972e+01 8.154375e+01 lineto +8.573696e+01 8.193799e+01 lineto +8.400554e+01 8.293554e+01 lineto +8.358647e+01 8.257422e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.185083e+01 8.352125e+01 moveto +8.358647e+01 8.257422e+01 lineto +8.400554e+01 8.293554e+01 lineto +8.223077e+01 8.384883e+01 lineto +8.185083e+01 8.352125e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.007675e+01 8.438269e+01 moveto +8.185083e+01 8.352125e+01 lineto +8.223077e+01 8.384883e+01 lineto +8.041669e+01 8.467579e+01 lineto +8.007675e+01 8.438269e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.826828e+01 8.515658e+01 moveto +8.007675e+01 8.438269e+01 lineto +8.041669e+01 8.467579e+01 lineto +7.856744e+01 8.541452e+01 lineto +7.826828e+01 8.515658e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.642954e+01 8.584114e+01 moveto +7.826828e+01 8.515658e+01 lineto +7.856744e+01 8.541452e+01 lineto +7.668724e+01 8.606333e+01 lineto +7.642954e+01 8.584114e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.456473e+01 8.643483e+01 moveto +7.642954e+01 8.584114e+01 lineto +7.668724e+01 8.606333e+01 lineto +7.478038e+01 8.662076e+01 lineto +7.456473e+01 8.643483e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.267809e+01 8.693627e+01 moveto +7.456473e+01 8.643483e+01 lineto +7.478038e+01 8.662076e+01 lineto +7.285121e+01 8.708553e+01 lineto +7.267809e+01 8.693627e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.077395e+01 8.734433e+01 moveto +7.267809e+01 8.693627e+01 lineto +7.285121e+01 8.708553e+01 lineto +7.090413e+01 8.745658e+01 lineto +7.077395e+01 8.734433e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.885663e+01 8.765808e+01 moveto +7.077395e+01 8.734433e+01 lineto +7.090413e+01 8.745658e+01 lineto +6.894359e+01 8.773306e+01 lineto +6.885663e+01 8.765808e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.693052e+01 8.78768e+01 moveto +6.885663e+01 8.765808e+01 lineto +6.894359e+01 8.773306e+01 lineto +6.697405e+01 8.791433e+01 lineto +6.693052e+01 8.78768e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.693052e+01 8.78768e+01 lineto +6.697405e+01 8.791433e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.045924e+02 3.314931e+01 moveto +1.039788e+02 3.125436e+01 lineto +1.04598e+02 3.2e+01 lineto +1.052213e+02 3.390668e+01 lineto +1.045924e+02 3.314931e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.051156e+02 3.507356e+01 moveto +1.045924e+02 3.314931e+01 lineto +1.052213e+02 3.390668e+01 lineto +1.057528e+02 3.584095e+01 lineto +1.051156e+02 3.507356e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.055474e+02 3.702274e+01 moveto +1.051156e+02 3.507356e+01 lineto +1.057528e+02 3.584095e+01 lineto +1.061914e+02 3.779839e+01 lineto +1.055474e+02 3.702274e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.058866e+02 3.89924e+01 moveto +1.055474e+02 3.702274e+01 lineto +1.061914e+02 3.779839e+01 lineto +1.065361e+02 3.977453e+01 lineto +1.058866e+02 3.89924e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.061326e+02 4.097805e+01 moveto +1.058866e+02 3.89924e+01 lineto +1.065361e+02 3.977453e+01 lineto +1.067859e+02 4.176488e+01 lineto +1.061326e+02 4.097805e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.062847e+02 4.297515e+01 moveto +1.061326e+02 4.097805e+01 lineto +1.067859e+02 4.176488e+01 lineto +1.069405e+02 4.37649e+01 lineto +1.062847e+02 4.297515e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.063427e+02 4.497915e+01 moveto +1.062847e+02 4.297515e+01 lineto +1.069405e+02 4.37649e+01 lineto +1.069994e+02 4.577001e+01 lineto +1.063427e+02 4.497915e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.063063e+02 4.698548e+01 moveto +1.063427e+02 4.497915e+01 lineto +1.069994e+02 4.577001e+01 lineto +1.069624e+02 4.777564e+01 lineto +1.063063e+02 4.698548e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.061757e+02 4.898956e+01 moveto +1.063063e+02 4.698548e+01 lineto +1.069624e+02 4.777564e+01 lineto +1.068298e+02 4.977722e+01 lineto +1.061757e+02 4.898956e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.059513e+02 5.098682e+01 moveto +1.061757e+02 4.898956e+01 lineto +1.068298e+02 4.977722e+01 lineto +1.066017e+02 5.177019e+01 lineto +1.059513e+02 5.098682e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.056333e+02 5.297271e+01 moveto +1.059513e+02 5.098682e+01 lineto +1.066017e+02 5.177019e+01 lineto +1.062788e+02 5.375e+01 lineto +1.056333e+02 5.297271e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.052227e+02 5.494269e+01 moveto +1.056333e+02 5.297271e+01 lineto +1.062788e+02 5.375e+01 lineto +1.058617e+02 5.571212e+01 lineto +1.052227e+02 5.494269e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.047204e+02 5.689227e+01 moveto +1.052227e+02 5.494269e+01 lineto +1.058617e+02 5.571212e+01 lineto +1.053513e+02 5.765209e+01 lineto +1.047204e+02 5.689227e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.041274e+02 5.8817e+01 moveto +1.047204e+02 5.689227e+01 lineto +1.053513e+02 5.765209e+01 lineto +1.047489e+02 5.956548e+01 lineto +1.041274e+02 5.8817e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.034452e+02 6.07125e+01 moveto +1.041274e+02 5.8817e+01 lineto +1.047489e+02 5.956548e+01 lineto +1.040559e+02 6.144793e+01 lineto +1.034452e+02 6.07125e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.026753e+02 6.257444e+01 moveto +1.034452e+02 6.07125e+01 lineto +1.040559e+02 6.144793e+01 lineto +1.032737e+02 6.329514e+01 lineto +1.026753e+02 6.257444e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.018194e+02 6.439856e+01 moveto +1.026753e+02 6.257444e+01 lineto +1.032737e+02 6.329514e+01 lineto +1.024043e+02 6.510289e+01 lineto +1.018194e+02 6.439856e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.008796e+02 6.618072e+01 moveto +1.018194e+02 6.439856e+01 lineto +1.024043e+02 6.510289e+01 lineto +1.014495e+02 6.686707e+01 lineto +1.008796e+02 6.618072e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.985786e+01 6.791684e+01 moveto +1.008796e+02 6.618072e+01 lineto +1.014495e+02 6.686707e+01 lineto +1.004116e+02 6.858365e+01 lineto +9.985786e+01 6.791684e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.875665e+01 6.960297e+01 moveto +9.985786e+01 6.791684e+01 lineto +1.004116e+02 6.858365e+01 lineto +9.929286e+01 7.024871e+01 lineto +9.875665e+01 6.960297e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.757843e+01 7.123526e+01 moveto +9.875665e+01 6.960297e+01 lineto +9.929286e+01 7.024871e+01 lineto +9.809592e+01 7.185846e+01 lineto +9.757843e+01 7.123526e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.63259e+01 7.280998e+01 moveto +9.757843e+01 7.123526e+01 lineto +9.809592e+01 7.185846e+01 lineto +9.682349e+01 7.340922e+01 lineto +9.63259e+01 7.280998e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.500191e+01 7.432354e+01 moveto +9.63259e+01 7.280998e+01 lineto +9.682349e+01 7.340922e+01 lineto +9.547847e+01 7.489745e+01 lineto +9.500191e+01 7.432354e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.360948e+01 7.577249e+01 moveto +9.500191e+01 7.432354e+01 lineto +9.547847e+01 7.489745e+01 lineto +9.406392e+01 7.631977e+01 lineto +9.360948e+01 7.577249e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.215178e+01 7.715353e+01 moveto +9.360948e+01 7.577249e+01 lineto +9.406392e+01 7.631977e+01 lineto +9.258307e+01 7.767292e+01 lineto +9.215178e+01 7.715353e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.063215e+01 7.84635e+01 moveto +9.215178e+01 7.715353e+01 lineto +9.258307e+01 7.767292e+01 lineto +9.103931e+01 7.895382e+01 lineto +9.063215e+01 7.84635e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.905405e+01 7.969942e+01 moveto +9.063215e+01 7.84635e+01 lineto +9.103931e+01 7.895382e+01 lineto +8.943614e+01 8.015955e+01 lineto +8.905405e+01 7.969942e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.742108e+01 8.085846e+01 moveto +8.905405e+01 7.969942e+01 lineto +8.943614e+01 8.015955e+01 lineto +8.777723e+01 8.128736e+01 lineto +8.742108e+01 8.085846e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.573696e+01 8.193799e+01 moveto +8.742108e+01 8.085846e+01 lineto +8.777723e+01 8.128736e+01 lineto +8.606636e+01 8.233467e+01 lineto +8.573696e+01 8.193799e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.400554e+01 8.293554e+01 moveto +8.573696e+01 8.193799e+01 lineto +8.606636e+01 8.233467e+01 lineto +8.430744e+01 8.32991e+01 lineto +8.400554e+01 8.293554e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.223077e+01 8.384883e+01 moveto +8.400554e+01 8.293554e+01 lineto +8.430744e+01 8.32991e+01 lineto +8.250447e+01 8.417844e+01 lineto +8.223077e+01 8.384883e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.041669e+01 8.467579e+01 moveto +8.223077e+01 8.384883e+01 lineto +8.250447e+01 8.417844e+01 lineto +8.066157e+01 8.49707e+01 lineto +8.041669e+01 8.467579e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.856744e+01 8.541452e+01 moveto +8.041669e+01 8.467579e+01 lineto +8.066157e+01 8.49707e+01 lineto +7.878295e+01 8.567405e+01 lineto +7.856744e+01 8.541452e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.668724e+01 8.606333e+01 moveto +7.856744e+01 8.541452e+01 lineto +7.878295e+01 8.567405e+01 lineto +7.687289e+01 8.62869e+01 lineto +7.668724e+01 8.606333e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.478038e+01 8.662076e+01 moveto +7.668724e+01 8.606333e+01 lineto +7.687289e+01 8.62869e+01 lineto +7.493574e+01 8.680786e+01 lineto +7.478038e+01 8.662076e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.285121e+01 8.708553e+01 moveto +7.478038e+01 8.662076e+01 lineto +7.493574e+01 8.680786e+01 lineto +7.297593e+01 8.723572e+01 lineto +7.285121e+01 8.708553e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.090413e+01 8.745658e+01 moveto +7.285121e+01 8.708553e+01 lineto +7.297593e+01 8.723572e+01 lineto +7.099792e+01 8.756952e+01 lineto +7.090413e+01 8.745658e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.894359e+01 8.773306e+01 moveto +7.090413e+01 8.745658e+01 lineto +7.099792e+01 8.756952e+01 lineto +6.900623e+01 8.780849e+01 lineto +6.894359e+01 8.773306e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.697405e+01 8.791433e+01 moveto +6.894359e+01 8.773306e+01 lineto +6.900623e+01 8.780849e+01 lineto +6.70054e+01 8.79521e+01 lineto +6.697405e+01 8.791433e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.697405e+01 8.791433e+01 lineto +6.70054e+01 8.79521e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.052213e+02 3.390668e+01 moveto +1.04598e+02 3.2e+01 lineto +1.04973e+02 3.274564e+01 lineto +1.056022e+02 3.466405e+01 lineto +1.052213e+02 3.390668e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.057528e+02 3.584095e+01 moveto +1.052213e+02 3.390668e+01 lineto +1.056022e+02 3.466405e+01 lineto +1.061388e+02 3.660833e+01 lineto +1.057528e+02 3.584095e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.061914e+02 3.779839e+01 moveto +1.057528e+02 3.584095e+01 lineto +1.061388e+02 3.660833e+01 lineto +1.065815e+02 3.857403e+01 lineto +1.061914e+02 3.779839e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.065361e+02 3.977453e+01 moveto +1.061914e+02 3.779839e+01 lineto +1.065815e+02 3.857403e+01 lineto +1.069294e+02 4.055667e+01 lineto +1.065361e+02 3.977453e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.067859e+02 4.176488e+01 moveto +1.065361e+02 3.977453e+01 lineto +1.069294e+02 4.055667e+01 lineto +1.071817e+02 4.255172e+01 lineto +1.067859e+02 4.176488e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.069405e+02 4.37649e+01 moveto +1.067859e+02 4.176488e+01 lineto +1.071817e+02 4.255172e+01 lineto +1.073377e+02 4.455464e+01 lineto +1.069405e+02 4.37649e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.069994e+02 4.577001e+01 moveto +1.069405e+02 4.37649e+01 lineto +1.073377e+02 4.455464e+01 lineto +1.073971e+02 4.656086e+01 lineto +1.069994e+02 4.577001e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.069624e+02 4.777564e+01 moveto +1.069994e+02 4.577001e+01 lineto +1.073971e+02 4.656086e+01 lineto +1.073599e+02 4.85658e+01 lineto +1.069624e+02 4.777564e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.068298e+02 4.977722e+01 moveto +1.069624e+02 4.777564e+01 lineto +1.073599e+02 4.85658e+01 lineto +1.07226e+02 5.056489e+01 lineto +1.068298e+02 4.977722e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.066017e+02 5.177019e+01 moveto +1.068298e+02 4.977722e+01 lineto +1.07226e+02 5.056489e+01 lineto +1.069957e+02 5.255356e+01 lineto +1.066017e+02 5.177019e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.062788e+02 5.375e+01 moveto +1.066017e+02 5.177019e+01 lineto +1.069957e+02 5.255356e+01 lineto +1.066697e+02 5.452728e+01 lineto +1.062788e+02 5.375e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.058617e+02 5.571212e+01 moveto +1.062788e+02 5.375e+01 lineto +1.066697e+02 5.452728e+01 lineto +1.062486e+02 5.648155e+01 lineto +1.058617e+02 5.571212e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.053513e+02 5.765209e+01 moveto +1.058617e+02 5.571212e+01 lineto +1.062486e+02 5.648155e+01 lineto +1.057335e+02 5.841192e+01 lineto +1.053513e+02 5.765209e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.047489e+02 5.956548e+01 moveto +1.053513e+02 5.765209e+01 lineto +1.057335e+02 5.841192e+01 lineto +1.051254e+02 6.031396e+01 lineto +1.047489e+02 5.956548e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.040559e+02 6.144793e+01 moveto +1.047489e+02 5.956548e+01 lineto +1.051254e+02 6.031396e+01 lineto +1.044258e+02 6.218336e+01 lineto +1.040559e+02 6.144793e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.032737e+02 6.329514e+01 moveto +1.040559e+02 6.144793e+01 lineto +1.044258e+02 6.218336e+01 lineto +1.036362e+02 6.401584e+01 lineto +1.032737e+02 6.329514e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.024043e+02 6.510289e+01 moveto +1.032737e+02 6.329514e+01 lineto +1.036362e+02 6.401584e+01 lineto +1.027585e+02 6.580722e+01 lineto +1.024043e+02 6.510289e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.014495e+02 6.686707e+01 moveto +1.024043e+02 6.510289e+01 lineto +1.027585e+02 6.580722e+01 lineto +1.017947e+02 6.755342e+01 lineto +1.014495e+02 6.686707e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.004116e+02 6.858365e+01 moveto +1.014495e+02 6.686707e+01 lineto +1.017947e+02 6.755342e+01 lineto +1.007469e+02 6.925046e+01 lineto +1.004116e+02 6.858365e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.929286e+01 7.024871e+01 moveto +1.004116e+02 6.858365e+01 lineto +1.007469e+02 6.925046e+01 lineto +9.961764e+01 7.089445e+01 lineto +9.929286e+01 7.024871e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.809592e+01 7.185846e+01 moveto +9.929286e+01 7.024871e+01 lineto +9.961764e+01 7.089445e+01 lineto +9.840937e+01 7.248166e+01 lineto +9.809592e+01 7.185846e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.682349e+01 7.340922e+01 moveto +9.809592e+01 7.185846e+01 lineto +9.840937e+01 7.248166e+01 lineto +9.712489e+01 7.400846e+01 lineto +9.682349e+01 7.340922e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.547847e+01 7.489745e+01 moveto +9.682349e+01 7.340922e+01 lineto +9.712489e+01 7.400846e+01 lineto +9.576713e+01 7.547137e+01 lineto +9.547847e+01 7.489745e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.406392e+01 7.631977e+01 moveto +9.547847e+01 7.489745e+01 lineto +9.576713e+01 7.547137e+01 lineto +9.433918e+01 7.686705e+01 lineto +9.406392e+01 7.631977e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.258307e+01 7.767292e+01 moveto +9.406392e+01 7.631977e+01 lineto +9.433918e+01 7.686705e+01 lineto +9.284431e+01 7.819232e+01 lineto +9.258307e+01 7.767292e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.103931e+01 7.895382e+01 moveto +9.258307e+01 7.767292e+01 lineto +9.284431e+01 7.819232e+01 lineto +9.128592e+01 7.944415e+01 lineto +9.103931e+01 7.895382e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.943614e+01 8.015955e+01 moveto +9.103931e+01 7.895382e+01 lineto +9.128592e+01 7.944415e+01 lineto +8.966757e+01 8.061969e+01 lineto +8.943614e+01 8.015955e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.777723e+01 8.128736e+01 moveto +8.943614e+01 8.015955e+01 lineto +8.966757e+01 8.061969e+01 lineto +8.799295e+01 8.171626e+01 lineto +8.777723e+01 8.128736e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.606636e+01 8.233467e+01 moveto +8.777723e+01 8.128736e+01 lineto +8.799295e+01 8.171626e+01 lineto +8.626587e+01 8.273136e+01 lineto +8.606636e+01 8.233467e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.430744e+01 8.32991e+01 moveto +8.606636e+01 8.233467e+01 lineto +8.626587e+01 8.273136e+01 lineto +8.449029e+01 8.366266e+01 lineto +8.430744e+01 8.32991e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.250447e+01 8.417844e+01 moveto +8.430744e+01 8.32991e+01 lineto +8.449029e+01 8.366266e+01 lineto +8.267025e+01 8.450806e+01 lineto +8.250447e+01 8.417844e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.066157e+01 8.49707e+01 moveto +8.250447e+01 8.417844e+01 lineto +8.267025e+01 8.450806e+01 lineto +8.08099e+01 8.526561e+01 lineto +8.066157e+01 8.49707e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.878295e+01 8.567405e+01 moveto +8.066157e+01 8.49707e+01 lineto +8.08099e+01 8.526561e+01 lineto +7.891348e+01 8.593359e+01 lineto +7.878295e+01 8.567405e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.687289e+01 8.62869e+01 moveto +7.878295e+01 8.567405e+01 lineto +7.891348e+01 8.593359e+01 lineto +7.698533e+01 8.651047e+01 lineto +7.687289e+01 8.62869e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.493574e+01 8.680786e+01 moveto +7.687289e+01 8.62869e+01 lineto +7.698533e+01 8.651047e+01 lineto +7.502984e+01 8.699495e+01 lineto +7.493574e+01 8.680786e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.297593e+01 8.723572e+01 moveto +7.493574e+01 8.680786e+01 lineto +7.502984e+01 8.699495e+01 lineto +7.305146e+01 8.738591e+01 lineto +7.297593e+01 8.723572e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.099792e+01 8.756952e+01 moveto +7.297593e+01 8.723572e+01 lineto +7.305146e+01 8.738591e+01 lineto +7.105472e+01 8.768246e+01 lineto +7.099792e+01 8.756952e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.900623e+01 8.780849e+01 moveto +7.099792e+01 8.756952e+01 lineto +7.105472e+01 8.768246e+01 lineto +6.904417e+01 8.788393e+01 lineto +6.900623e+01 8.780849e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.70054e+01 8.79521e+01 moveto +6.900623e+01 8.780849e+01 lineto +6.904417e+01 8.788393e+01 lineto +6.702439e+01 8.798986e+01 lineto +6.70054e+01 8.79521e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.70054e+01 8.79521e+01 lineto +6.702439e+01 8.798986e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.071817e+02 4.255172e+01 moveto +1.069294e+02 4.055667e+01 lineto +1.070643e+02 4.133397e+01 lineto +1.073174e+02 4.333371e+01 lineto +1.071817e+02 4.255172e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.073377e+02 4.455464e+01 moveto +1.071817e+02 4.255172e+01 lineto +1.073174e+02 4.333371e+01 lineto +1.074739e+02 4.533952e+01 lineto +1.073377e+02 4.455464e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.073971e+02 4.656086e+01 moveto +1.073377e+02 4.455464e+01 lineto +1.074739e+02 4.533952e+01 lineto +1.075335e+02 4.734684e+01 lineto +1.073971e+02 4.656086e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.073599e+02 4.85658e+01 moveto +1.073971e+02 4.656086e+01 lineto +1.075335e+02 4.734684e+01 lineto +1.074961e+02 4.935109e+01 lineto +1.073599e+02 4.85658e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.07226e+02 5.056489e+01 moveto +1.073599e+02 4.85658e+01 lineto +1.074961e+02 4.935109e+01 lineto +1.073618e+02 5.134769e+01 lineto +1.07226e+02 5.056489e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.069957e+02 5.255356e+01 moveto +1.07226e+02 5.056489e+01 lineto +1.073618e+02 5.134769e+01 lineto +1.071308e+02 5.33321e+01 lineto +1.069957e+02 5.255356e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.066697e+02 5.452728e+01 moveto +1.069957e+02 5.255356e+01 lineto +1.071308e+02 5.33321e+01 lineto +1.068038e+02 5.529978e+01 lineto +1.066697e+02 5.452728e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.062486e+02 5.648155e+01 moveto +1.066697e+02 5.452728e+01 lineto +1.068038e+02 5.529978e+01 lineto +1.063813e+02 5.724624e+01 lineto +1.062486e+02 5.648155e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.057335e+02 5.841192e+01 moveto +1.062486e+02 5.648155e+01 lineto +1.063813e+02 5.724624e+01 lineto +1.058645e+02 5.916705e+01 lineto +1.057335e+02 5.841192e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.051254e+02 6.031396e+01 moveto +1.057335e+02 5.841192e+01 lineto +1.058645e+02 5.916705e+01 lineto +1.052545e+02 6.105783e+01 lineto +1.051254e+02 6.031396e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.044258e+02 6.218336e+01 moveto +1.051254e+02 6.031396e+01 lineto +1.052545e+02 6.105783e+01 lineto +1.045526e+02 6.291426e+01 lineto +1.044258e+02 6.218336e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.036362e+02 6.401584e+01 moveto +1.044258e+02 6.218336e+01 lineto +1.045526e+02 6.291426e+01 lineto +1.037605e+02 6.47321e+01 lineto +1.036362e+02 6.401584e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.027585e+02 6.580722e+01 moveto +1.036362e+02 6.401584e+01 lineto +1.037605e+02 6.47321e+01 lineto +1.0288e+02 6.650721e+01 lineto +1.027585e+02 6.580722e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.017947e+02 6.755342e+01 moveto +1.027585e+02 6.580722e+01 lineto +1.0288e+02 6.650721e+01 lineto +1.01913e+02 6.823554e+01 lineto +1.017947e+02 6.755342e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.007469e+02 6.925046e+01 moveto +1.017947e+02 6.755342e+01 lineto +1.01913e+02 6.823554e+01 lineto +1.008619e+02 6.991315e+01 lineto +1.007469e+02 6.925046e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.961764e+01 7.089445e+01 moveto +1.007469e+02 6.925046e+01 lineto +1.008619e+02 6.991315e+01 lineto +9.972899e+01 7.153621e+01 lineto +9.961764e+01 7.089445e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.840937e+01 7.248166e+01 moveto +9.961764e+01 7.089445e+01 lineto +9.972899e+01 7.153621e+01 lineto +9.851683e+01 7.310102e+01 lineto +9.840937e+01 7.248166e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.712489e+01 7.400846e+01 moveto +9.840937e+01 7.248166e+01 lineto +9.851683e+01 7.310102e+01 lineto +9.722822e+01 7.460401e+01 lineto +9.712489e+01 7.400846e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.576713e+01 7.547137e+01 moveto +9.712489e+01 7.400846e+01 lineto +9.722822e+01 7.460401e+01 lineto +9.586609e+01 7.604175e+01 lineto +9.576713e+01 7.547137e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.433918e+01 7.686705e+01 moveto +9.576713e+01 7.547137e+01 lineto +9.586609e+01 7.604175e+01 lineto +9.443355e+01 7.741095e+01 lineto +9.433918e+01 7.686705e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.284431e+01 7.819232e+01 moveto +9.433918e+01 7.686705e+01 lineto +9.443355e+01 7.741095e+01 lineto +9.293387e+01 7.870851e+01 lineto +9.284431e+01 7.819232e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.128592e+01 7.944415e+01 moveto +9.284431e+01 7.819232e+01 lineto +9.293387e+01 7.870851e+01 lineto +9.137047e+01 7.993145e+01 lineto +9.128592e+01 7.944415e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.966757e+01 8.061969e+01 moveto +9.128592e+01 7.944415e+01 lineto +9.137047e+01 7.993145e+01 lineto +8.974691e+01 8.107699e+01 lineto +8.966757e+01 8.061969e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.799295e+01 8.171626e+01 moveto +8.966757e+01 8.061969e+01 lineto +8.974691e+01 8.107699e+01 lineto +8.80669e+01 8.214252e+01 lineto +8.799295e+01 8.171626e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.626587e+01 8.273136e+01 moveto +8.799295e+01 8.171626e+01 lineto +8.80669e+01 8.214252e+01 lineto +8.633428e+01 8.312559e+01 lineto +8.626587e+01 8.273136e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.449029e+01 8.366266e+01 moveto +8.626587e+01 8.273136e+01 lineto +8.633428e+01 8.312559e+01 lineto +8.455298e+01 8.402398e+01 lineto +8.449029e+01 8.366266e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.267025e+01 8.450806e+01 moveto +8.449029e+01 8.366266e+01 lineto +8.455298e+01 8.402398e+01 lineto +8.272709e+01 8.483564e+01 lineto +8.267025e+01 8.450806e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.08099e+01 8.526561e+01 moveto +8.267025e+01 8.450806e+01 lineto +8.272709e+01 8.483564e+01 lineto +8.086075e+01 8.55587e+01 lineto +8.08099e+01 8.526561e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.891348e+01 8.593359e+01 moveto +8.08099e+01 8.526561e+01 lineto +8.086075e+01 8.55587e+01 lineto +7.895824e+01 8.619152e+01 lineto +7.891348e+01 8.593359e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.698533e+01 8.651047e+01 moveto +7.891348e+01 8.593359e+01 lineto +7.895824e+01 8.619152e+01 lineto +7.702388e+01 8.673266e+01 lineto +7.698533e+01 8.651047e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.502984e+01 8.699495e+01 moveto +7.698533e+01 8.651047e+01 lineto +7.702388e+01 8.673266e+01 lineto +7.50621e+01 8.718089e+01 lineto +7.502984e+01 8.699495e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.305146e+01 8.738591e+01 moveto +7.502984e+01 8.699495e+01 lineto +7.50621e+01 8.718089e+01 lineto +7.307736e+01 8.753517e+01 lineto +7.305146e+01 8.738591e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.105472e+01 8.768246e+01 moveto +7.305146e+01 8.738591e+01 lineto +7.307736e+01 8.753517e+01 lineto +7.10742e+01 8.779471e+01 lineto +7.105472e+01 8.768246e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.904417e+01 8.788393e+01 moveto +7.105472e+01 8.768246e+01 lineto +7.10742e+01 8.779471e+01 lineto +6.905718e+01 8.79589e+01 lineto +6.904417e+01 8.788393e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.702439e+01 8.798986e+01 moveto +6.904417e+01 8.788393e+01 lineto +6.905718e+01 8.79589e+01 lineto +6.703091e+01 8.802739e+01 lineto +6.702439e+01 8.798986e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.702439e+01 8.798986e+01 lineto +6.703091e+01 8.802739e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.068038e+02 5.529978e+01 moveto +1.071308e+02 5.33321e+01 lineto +1.070062e+02 5.410101e+01 lineto +1.066801e+02 5.606272e+01 lineto +1.068038e+02 5.529978e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.063813e+02 5.724624e+01 moveto +1.068038e+02 5.529978e+01 lineto +1.066801e+02 5.606272e+01 lineto +1.062589e+02 5.800147e+01 lineto +1.063813e+02 5.724624e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.058645e+02 5.916705e+01 moveto +1.063813e+02 5.724624e+01 lineto +1.062589e+02 5.800147e+01 lineto +1.057436e+02 5.991285e+01 lineto +1.058645e+02 5.916705e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.052545e+02 6.105783e+01 moveto +1.058645e+02 5.916705e+01 lineto +1.057436e+02 5.991285e+01 lineto +1.051353e+02 6.179249e+01 lineto +1.052545e+02 6.105783e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.045526e+02 6.291426e+01 moveto +1.052545e+02 6.105783e+01 lineto +1.051353e+02 6.179249e+01 lineto +1.044355e+02 6.363611e+01 lineto +1.045526e+02 6.291426e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.037605e+02 6.47321e+01 moveto +1.045526e+02 6.291426e+01 lineto +1.044355e+02 6.363611e+01 lineto +1.036458e+02 6.54395e+01 lineto +1.037605e+02 6.47321e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.0288e+02 6.650721e+01 moveto +1.037605e+02 6.47321e+01 lineto +1.036458e+02 6.54395e+01 lineto +1.027679e+02 6.719854e+01 lineto +1.0288e+02 6.650721e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.01913e+02 6.823554e+01 moveto +1.0288e+02 6.650721e+01 lineto +1.027679e+02 6.719854e+01 lineto +1.018038e+02 6.890922e+01 lineto +1.01913e+02 6.823554e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.008619e+02 6.991315e+01 moveto +1.01913e+02 6.823554e+01 lineto +1.018038e+02 6.890922e+01 lineto +1.007558e+02 7.056765e+01 lineto +1.008619e+02 6.991315e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.972899e+01 7.153621e+01 moveto +1.008619e+02 6.991315e+01 lineto +1.007558e+02 7.056765e+01 lineto +9.962622e+01 7.217003e+01 lineto +9.972899e+01 7.153621e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.851683e+01 7.310102e+01 moveto +9.972899e+01 7.153621e+01 lineto +9.962622e+01 7.217003e+01 lineto +9.841765e+01 7.371272e+01 lineto +9.851683e+01 7.310102e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.722822e+01 7.460401e+01 moveto +9.851683e+01 7.310102e+01 lineto +9.841765e+01 7.371272e+01 lineto +9.713286e+01 7.519219e+01 lineto +9.722822e+01 7.460401e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.586609e+01 7.604175e+01 moveto +9.722822e+01 7.460401e+01 lineto +9.713286e+01 7.519219e+01 lineto +9.577476e+01 7.660507e+01 lineto +9.586609e+01 7.604175e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.443355e+01 7.741095e+01 moveto +9.586609e+01 7.604175e+01 lineto +9.577476e+01 7.660507e+01 lineto +9.434646e+01 7.794813e+01 lineto +9.443355e+01 7.741095e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.293387e+01 7.870851e+01 moveto +9.443355e+01 7.741095e+01 lineto +9.434646e+01 7.794813e+01 lineto +9.285121e+01 7.921832e+01 lineto +9.293387e+01 7.870851e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.137047e+01 7.993145e+01 moveto +9.293387e+01 7.870851e+01 lineto +9.285121e+01 7.921832e+01 lineto +9.129244e+01 8.041273e+01 lineto +9.137047e+01 7.993145e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.974691e+01 8.107699e+01 moveto +9.137047e+01 7.993145e+01 lineto +9.129244e+01 8.041273e+01 lineto +8.967369e+01 8.152864e+01 lineto +8.974691e+01 8.107699e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.80669e+01 8.214252e+01 moveto +8.974691e+01 8.107699e+01 lineto +8.967369e+01 8.152864e+01 lineto +8.799865e+01 8.25635e+01 lineto +8.80669e+01 8.214252e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.633428e+01 8.312559e+01 moveto +8.80669e+01 8.214252e+01 lineto +8.799865e+01 8.25635e+01 lineto +8.627115e+01 8.351496e+01 lineto +8.633428e+01 8.312559e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.455298e+01 8.402398e+01 moveto +8.633428e+01 8.312559e+01 lineto +8.627115e+01 8.351496e+01 lineto +8.449513e+01 8.438084e+01 lineto +8.455298e+01 8.402398e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.272709e+01 8.483564e+01 moveto +8.455298e+01 8.402398e+01 lineto +8.449513e+01 8.438084e+01 lineto +8.267463e+01 8.515916e+01 lineto +8.272709e+01 8.483564e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.086075e+01 8.55587e+01 moveto +8.272709e+01 8.483564e+01 lineto +8.267463e+01 8.515916e+01 lineto +8.081382e+01 8.584817e+01 lineto +8.086075e+01 8.55587e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.895824e+01 8.619152e+01 moveto +8.086075e+01 8.55587e+01 lineto +8.081382e+01 8.584817e+01 lineto +7.891694e+01 8.644627e+01 lineto +7.895824e+01 8.619152e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.702388e+01 8.673266e+01 moveto +7.895824e+01 8.619152e+01 lineto +7.891694e+01 8.644627e+01 lineto +7.69883e+01 8.69521e+01 lineto +7.702388e+01 8.673266e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.50621e+01 8.718089e+01 moveto +7.702388e+01 8.673266e+01 lineto +7.69883e+01 8.69521e+01 lineto +7.503232e+01 8.736452e+01 lineto +7.50621e+01 8.718089e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.307736e+01 8.753517e+01 moveto +7.50621e+01 8.718089e+01 lineto +7.503232e+01 8.736452e+01 lineto +7.305346e+01 8.768259e+01 lineto +7.307736e+01 8.753517e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.10742e+01 8.779471e+01 moveto +7.307736e+01 8.753517e+01 lineto +7.305346e+01 8.768259e+01 lineto +7.105623e+01 8.790556e+01 lineto +7.10742e+01 8.779471e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.905718e+01 8.79589e+01 moveto +7.10742e+01 8.779471e+01 lineto +7.105623e+01 8.790556e+01 lineto +6.904517e+01 8.803295e+01 lineto +6.905718e+01 8.79589e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.703091e+01 8.802739e+01 moveto +6.905718e+01 8.79589e+01 lineto +6.904517e+01 8.803295e+01 lineto +6.70249e+01 8.806445e+01 lineto +6.703091e+01 8.802739e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.703091e+01 8.802739e+01 lineto +6.70249e+01 8.806445e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.018038e+02 6.890922e+01 moveto +1.027679e+02 6.719854e+01 lineto +1.024229e+02 6.787695e+01 lineto +1.014677e+02 6.957031e+01 lineto +1.018038e+02 6.890922e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.007558e+02 7.056765e+01 moveto +1.018038e+02 6.890922e+01 lineto +1.014677e+02 6.957031e+01 lineto +1.004292e+02 7.120992e+01 lineto +1.007558e+02 7.056765e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.962622e+01 7.217003e+01 moveto +1.007558e+02 7.056765e+01 lineto +1.004292e+02 7.120992e+01 lineto +9.930998e+01 7.279201e+01 lineto +9.962622e+01 7.217003e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.841765e+01 7.371272e+01 moveto +9.962622e+01 7.217003e+01 lineto +9.930998e+01 7.279201e+01 lineto +9.811245e+01 7.431299e+01 lineto +9.841765e+01 7.371272e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.713286e+01 7.519219e+01 moveto +9.841765e+01 7.371272e+01 lineto +9.811245e+01 7.431299e+01 lineto +9.683938e+01 7.576938e+01 lineto +9.713286e+01 7.519219e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.577476e+01 7.660507e+01 moveto +9.713286e+01 7.519219e+01 lineto +9.683938e+01 7.576938e+01 lineto +9.549369e+01 7.715786e+01 lineto +9.577476e+01 7.660507e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.434646e+01 7.794813e+01 moveto +9.577476e+01 7.660507e+01 lineto +9.549369e+01 7.715786e+01 lineto +9.407843e+01 7.847527e+01 lineto +9.434646e+01 7.794813e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.285121e+01 7.921832e+01 moveto +9.434646e+01 7.794813e+01 lineto +9.407843e+01 7.847527e+01 lineto +9.259684e+01 7.97186e+01 lineto +9.285121e+01 7.921832e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.129244e+01 8.041273e+01 moveto +9.285121e+01 7.921832e+01 lineto +9.259684e+01 7.97186e+01 lineto +9.105231e+01 8.088501e+01 lineto +9.129244e+01 8.041273e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.967369e+01 8.152864e+01 moveto +9.129244e+01 8.041273e+01 lineto +9.105231e+01 8.088501e+01 lineto +8.944834e+01 8.197184e+01 lineto +8.967369e+01 8.152864e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.799865e+01 8.25635e+01 moveto +8.967369e+01 8.152864e+01 lineto +8.944834e+01 8.197184e+01 lineto +8.77886e+01 8.297661e+01 lineto +8.799865e+01 8.25635e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.627115e+01 8.351496e+01 moveto +8.799865e+01 8.25635e+01 lineto +8.77886e+01 8.297661e+01 lineto +8.607688e+01 8.389704e+01 lineto +8.627115e+01 8.351496e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.449513e+01 8.438084e+01 moveto +8.627115e+01 8.351496e+01 lineto +8.607688e+01 8.389704e+01 lineto +8.431707e+01 8.473102e+01 lineto +8.449513e+01 8.438084e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.267463e+01 8.515916e+01 moveto +8.449513e+01 8.438084e+01 lineto +8.431707e+01 8.473102e+01 lineto +8.251321e+01 8.547665e+01 lineto +8.267463e+01 8.515916e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.081382e+01 8.584817e+01 moveto +8.267463e+01 8.515916e+01 lineto +8.251321e+01 8.547665e+01 lineto +8.066939e+01 8.613222e+01 lineto +8.081382e+01 8.584817e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.891694e+01 8.644627e+01 moveto +8.081382e+01 8.584817e+01 lineto +8.066939e+01 8.613222e+01 lineto +7.878983e+01 8.669625e+01 lineto +7.891694e+01 8.644627e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.69883e+01 8.69521e+01 moveto +7.891694e+01 8.644627e+01 lineto +7.878983e+01 8.669625e+01 lineto +7.687881e+01 8.716745e+01 lineto +7.69883e+01 8.69521e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.503232e+01 8.736452e+01 moveto +7.69883e+01 8.69521e+01 lineto +7.687881e+01 8.716745e+01 lineto +7.49407e+01 8.754473e+01 lineto +7.503232e+01 8.736452e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.305346e+01 8.768259e+01 moveto +7.503232e+01 8.736452e+01 lineto +7.49407e+01 8.754473e+01 lineto +7.297991e+01 8.782725e+01 lineto +7.305346e+01 8.768259e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.105623e+01 8.790556e+01 moveto +7.305346e+01 8.768259e+01 lineto +7.297991e+01 8.782725e+01 lineto +7.100091e+01 8.801435e+01 lineto +7.105623e+01 8.790556e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.904517e+01 8.803295e+01 moveto +7.105623e+01 8.790556e+01 lineto +7.100091e+01 8.801435e+01 lineto +6.900823e+01 8.810561e+01 lineto +6.904517e+01 8.803295e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.70249e+01 8.806445e+01 moveto +6.904517e+01 8.803295e+01 lineto +6.900823e+01 8.810561e+01 lineto +6.70064e+01 8.810082e+01 lineto +6.70249e+01 8.806445e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.70249e+01 8.806445e+01 lineto +6.70064e+01 8.810082e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.683938e+01 7.576938e+01 moveto +9.811245e+01 7.431299e+01 lineto +9.760309e+01 7.489812e+01 lineto +9.634961e+01 7.633202e+01 lineto +9.683938e+01 7.576938e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.549369e+01 7.715786e+01 moveto +9.683938e+01 7.576938e+01 lineto +9.634961e+01 7.633202e+01 lineto +9.502461e+01 7.769672e+01 lineto +9.549369e+01 7.715786e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.407843e+01 7.847527e+01 moveto +9.549369e+01 7.715786e+01 lineto +9.502461e+01 7.769672e+01 lineto +9.363113e+01 7.898912e+01 lineto +9.407843e+01 7.847527e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.259684e+01 7.97186e+01 moveto +9.407843e+01 7.847527e+01 lineto +9.363113e+01 7.898912e+01 lineto +9.217233e+01 8.020626e+01 lineto +9.259684e+01 7.97186e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.105231e+01 8.088501e+01 moveto +9.259684e+01 7.97186e+01 lineto +9.217233e+01 8.020626e+01 lineto +9.065155e+01 8.134538e+01 lineto +9.105231e+01 8.088501e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.944834e+01 8.197184e+01 moveto +9.105231e+01 8.088501e+01 lineto +9.065155e+01 8.134538e+01 lineto +8.907226e+01 8.240387e+01 lineto +8.944834e+01 8.197184e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.77886e+01 8.297661e+01 moveto +8.944834e+01 8.197184e+01 lineto +8.907226e+01 8.240387e+01 lineto +8.743805e+01 8.337931e+01 lineto +8.77886e+01 8.297661e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.607688e+01 8.389704e+01 moveto +8.77886e+01 8.297661e+01 lineto +8.743805e+01 8.337931e+01 lineto +8.575266e+01 8.426949e+01 lineto +8.607688e+01 8.389704e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.431707e+01 8.473102e+01 moveto +8.607688e+01 8.389704e+01 lineto +8.575266e+01 8.426949e+01 lineto +8.401993e+01 8.507237e+01 lineto +8.431707e+01 8.473102e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.251321e+01 8.547665e+01 moveto +8.431707e+01 8.473102e+01 lineto +8.401993e+01 8.507237e+01 lineto +8.224381e+01 8.578612e+01 lineto +8.251321e+01 8.547665e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.066939e+01 8.613222e+01 moveto +8.251321e+01 8.547665e+01 lineto +8.224381e+01 8.578612e+01 lineto +8.042835e+01 8.640912e+01 lineto +8.066939e+01 8.613222e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.878983e+01 8.669625e+01 moveto +8.066939e+01 8.613222e+01 lineto +8.042835e+01 8.640912e+01 lineto +7.857771e+01 8.693993e+01 lineto +7.878983e+01 8.669625e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.687881e+01 8.716745e+01 moveto +7.878983e+01 8.669625e+01 lineto +7.857771e+01 8.693993e+01 lineto +7.669608e+01 8.737736e+01 lineto +7.687881e+01 8.716745e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.49407e+01 8.754473e+01 moveto +7.687881e+01 8.716745e+01 lineto +7.669608e+01 8.737736e+01 lineto +7.478778e+01 8.772039e+01 lineto +7.49407e+01 8.754473e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.297991e+01 8.782725e+01 moveto +7.49407e+01 8.754473e+01 lineto +7.478778e+01 8.772039e+01 lineto +7.285715e+01 8.796826e+01 lineto +7.297991e+01 8.782725e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.100091e+01 8.801435e+01 moveto +7.297991e+01 8.782725e+01 lineto +7.285715e+01 8.796826e+01 lineto +7.09086e+01 8.812039e+01 lineto +7.100091e+01 8.801435e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.900823e+01 8.810561e+01 moveto +7.100091e+01 8.801435e+01 lineto +7.09086e+01 8.812039e+01 lineto +6.894657e+01 8.817644e+01 lineto +6.900823e+01 8.810561e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.70064e+01 8.810082e+01 moveto +6.900823e+01 8.810561e+01 lineto +6.894657e+01 8.817644e+01 lineto +6.697554e+01 8.813628e+01 lineto +6.70064e+01 8.810082e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.70064e+01 8.810082e+01 lineto +6.697554e+01 8.813628e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +9.065155e+01 8.134538e+01 moveto +9.217233e+01 8.020626e+01 lineto +9.158029e+01 8.067831e+01 lineto +9.009265e+01 8.179101e+01 lineto +9.065155e+01 8.134538e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.907226e+01 8.240387e+01 moveto +9.065155e+01 8.134538e+01 lineto +9.009265e+01 8.179101e+01 lineto +8.854776e+01 8.282206e+01 lineto +8.907226e+01 8.240387e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.743805e+01 8.337931e+01 moveto +8.907226e+01 8.240387e+01 lineto +8.854776e+01 8.282206e+01 lineto +8.694916e+01 8.376912e+01 lineto +8.743805e+01 8.337931e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.575266e+01 8.426949e+01 moveto +8.743805e+01 8.337931e+01 lineto +8.694916e+01 8.376912e+01 lineto +8.530049e+01 8.463002e+01 lineto +8.575266e+01 8.426949e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.401993e+01 8.507237e+01 moveto +8.575266e+01 8.426949e+01 lineto +8.530049e+01 8.463002e+01 lineto +8.360551e+01 8.54028e+01 lineto +8.401993e+01 8.507237e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.224381e+01 8.578612e+01 moveto +8.401993e+01 8.507237e+01 lineto +8.360551e+01 8.54028e+01 lineto +8.186809e+01 8.608569e+01 lineto +8.224381e+01 8.578612e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.042835e+01 8.640912e+01 moveto +8.224381e+01 8.578612e+01 lineto +8.186809e+01 8.608569e+01 lineto +8.00922e+01 8.667715e+01 lineto +8.042835e+01 8.640912e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.857771e+01 8.693993e+01 moveto +8.042835e+01 8.640912e+01 lineto +8.00922e+01 8.667715e+01 lineto +7.828187e+01 8.717581e+01 lineto +7.857771e+01 8.693993e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.669608e+01 8.737736e+01 moveto +7.857771e+01 8.693993e+01 lineto +7.828187e+01 8.717581e+01 lineto +7.644125e+01 8.758055e+01 lineto +7.669608e+01 8.737736e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.478778e+01 8.772039e+01 moveto +7.669608e+01 8.737736e+01 lineto +7.644125e+01 8.758055e+01 lineto +7.457452e+01 8.789043e+01 lineto +7.478778e+01 8.772039e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.285715e+01 8.796826e+01 moveto +7.478778e+01 8.772039e+01 lineto +7.457452e+01 8.789043e+01 lineto +7.268596e+01 8.810476e+01 lineto +7.285715e+01 8.796826e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.09086e+01 8.812039e+01 moveto +7.285715e+01 8.796826e+01 lineto +7.268596e+01 8.810476e+01 lineto +7.077986e+01 8.822304e+01 lineto +7.09086e+01 8.812039e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.894657e+01 8.817644e+01 moveto +7.09086e+01 8.812039e+01 lineto +7.077986e+01 8.822304e+01 lineto +6.886058e+01 8.8245e+01 lineto +6.894657e+01 8.817644e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.697554e+01 8.813628e+01 moveto +6.894657e+01 8.817644e+01 lineto +6.886058e+01 8.8245e+01 lineto +6.69325e+01 8.81706e+01 lineto +6.697554e+01 8.813628e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.697554e+01 8.813628e+01 lineto +6.69325e+01 8.81706e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.694916e+01 8.376912e+01 moveto +8.854776e+01 8.282206e+01 lineto +8.787809e+01 8.322384e+01 lineto +8.632495e+01 8.414362e+01 lineto +8.694916e+01 8.376912e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.530049e+01 8.463002e+01 moveto +8.694916e+01 8.376912e+01 lineto +8.632495e+01 8.414362e+01 lineto +8.472317e+01 8.497639e+01 lineto +8.530049e+01 8.463002e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.360551e+01 8.54028e+01 moveto +8.530049e+01 8.463002e+01 lineto +8.472317e+01 8.497639e+01 lineto +8.307639e+01 8.572025e+01 lineto +8.360551e+01 8.54028e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.186809e+01 8.608569e+01 moveto +8.360551e+01 8.54028e+01 lineto +8.307639e+01 8.572025e+01 lineto +8.138838e+01 8.63735e+01 lineto +8.186809e+01 8.608569e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.00922e+01 8.667715e+01 moveto +8.186809e+01 8.608569e+01 lineto +8.138838e+01 8.63735e+01 lineto +7.966299e+01 8.693465e+01 lineto +8.00922e+01 8.667715e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.828187e+01 8.717581e+01 moveto +8.00922e+01 8.667715e+01 lineto +7.966299e+01 8.693465e+01 lineto +7.790415e+01 8.740243e+01 lineto +7.828187e+01 8.717581e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.644125e+01 8.758055e+01 moveto +7.828187e+01 8.717581e+01 lineto +7.790415e+01 8.740243e+01 lineto +7.611587e+01 8.777576e+01 lineto +7.644125e+01 8.758055e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.457452e+01 8.789043e+01 moveto +7.644125e+01 8.758055e+01 lineto +7.611587e+01 8.777576e+01 lineto +7.430223e+01 8.805379e+01 lineto +7.457452e+01 8.789043e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.268596e+01 8.810476e+01 moveto +7.457452e+01 8.789043e+01 lineto +7.430223e+01 8.805379e+01 lineto +7.246738e+01 8.82359e+01 lineto +7.268596e+01 8.810476e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.077986e+01 8.822304e+01 moveto +7.268596e+01 8.810476e+01 lineto +7.246738e+01 8.82359e+01 lineto +7.061549e+01 8.832166e+01 lineto +7.077986e+01 8.822304e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.886058e+01 8.8245e+01 moveto +7.077986e+01 8.822304e+01 lineto +7.061549e+01 8.832166e+01 lineto +6.875079e+01 8.831087e+01 lineto +6.886058e+01 8.8245e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.69325e+01 8.81706e+01 moveto +6.886058e+01 8.8245e+01 lineto +6.875079e+01 8.831087e+01 lineto +6.687754e+01 8.820357e+01 lineto +6.69325e+01 8.81706e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.69325e+01 8.81706e+01 lineto +6.687754e+01 8.820357e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.307639e+01 8.572025e+01 moveto +8.472317e+01 8.497639e+01 lineto +8.402424e+01 8.530647e+01 lineto +8.243582e+01 8.602277e+01 lineto +8.307639e+01 8.572025e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +8.138838e+01 8.63735e+01 moveto +8.307639e+01 8.572025e+01 lineto +8.243582e+01 8.602277e+01 lineto +8.080763e+01 8.664777e+01 lineto +8.138838e+01 8.63735e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.966299e+01 8.693465e+01 moveto +8.138838e+01 8.63735e+01 lineto +8.080763e+01 8.664777e+01 lineto +7.914338e+01 8.718005e+01 lineto +7.966299e+01 8.693465e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.790415e+01 8.740243e+01 moveto +7.966299e+01 8.693465e+01 lineto +7.914338e+01 8.718005e+01 lineto +7.744687e+01 8.761839e+01 lineto +7.790415e+01 8.740243e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.611587e+01 8.777576e+01 moveto +7.790415e+01 8.740243e+01 lineto +7.744687e+01 8.761839e+01 lineto +7.572196e+01 8.796179e+01 lineto +7.611587e+01 8.777576e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.430223e+01 8.805379e+01 moveto +7.611587e+01 8.777576e+01 lineto +7.572196e+01 8.796179e+01 lineto +7.397259e+01 8.820948e+01 lineto +7.430223e+01 8.805379e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.246738e+01 8.82359e+01 moveto +7.430223e+01 8.805379e+01 lineto +7.397259e+01 8.820948e+01 lineto +7.220276e+01 8.836087e+01 lineto +7.246738e+01 8.82359e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.061549e+01 8.832166e+01 moveto +7.246738e+01 8.82359e+01 lineto +7.220276e+01 8.836087e+01 lineto +7.04165e+01 8.841564e+01 lineto +7.061549e+01 8.832166e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.875079e+01 8.831087e+01 moveto +7.061549e+01 8.832166e+01 lineto +7.04165e+01 8.841564e+01 lineto +6.861788e+01 8.837365e+01 lineto +6.875079e+01 8.831087e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.687754e+01 8.820357e+01 moveto +6.875079e+01 8.831087e+01 lineto +6.861788e+01 8.837365e+01 lineto +6.6811e+01 8.8235e+01 lineto +6.687754e+01 8.820357e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.687754e+01 8.820357e+01 lineto +6.6811e+01 8.8235e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.914338e+01 8.718005e+01 moveto +8.080763e+01 8.664777e+01 lineto +8.012942e+01 8.690682e+01 lineto +7.853657e+01 8.741183e+01 lineto +7.914338e+01 8.718005e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.744687e+01 8.761839e+01 moveto +7.914338e+01 8.718005e+01 lineto +7.853657e+01 8.741183e+01 lineto +7.691285e+01 8.782237e+01 lineto +7.744687e+01 8.761839e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.572196e+01 8.796179e+01 moveto +7.744687e+01 8.761839e+01 lineto +7.691285e+01 8.782237e+01 lineto +7.526194e+01 8.81375e+01 lineto +7.572196e+01 8.796179e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.397259e+01 8.820948e+01 moveto +7.572196e+01 8.796179e+01 lineto +7.526194e+01 8.81375e+01 lineto +7.358763e+01 8.835651e+01 lineto +7.397259e+01 8.820948e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.220276e+01 8.836087e+01 moveto +7.397259e+01 8.820948e+01 lineto +7.358763e+01 8.835651e+01 lineto +7.189373e+01 8.847891e+01 lineto +7.220276e+01 8.836087e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.04165e+01 8.841564e+01 moveto +7.220276e+01 8.836087e+01 lineto +7.189373e+01 8.847891e+01 lineto +7.018411e+01 8.85044e+01 lineto +7.04165e+01 8.841564e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.861788e+01 8.837365e+01 moveto +7.04165e+01 8.841564e+01 lineto +7.018411e+01 8.85044e+01 lineto +6.846265e+01 8.843293e+01 lineto +6.861788e+01 8.837365e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.6811e+01 8.8235e+01 moveto +6.861788e+01 8.837365e+01 lineto +6.846265e+01 8.843293e+01 lineto +6.67333e+01 8.826467e+01 lineto +6.6811e+01 8.8235e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.6811e+01 8.8235e+01 lineto +6.67333e+01 8.826467e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.691285e+01 8.782237e+01 moveto +7.853657e+01 8.741183e+01 lineto +7.784631e+01 8.762855e+01 lineto +7.630538e+01 8.801309e+01 lineto +7.691285e+01 8.782237e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.526194e+01 8.81375e+01 moveto +7.691285e+01 8.782237e+01 lineto +7.630538e+01 8.801309e+01 lineto +7.473866e+01 8.83018e+01 lineto +7.526194e+01 8.81375e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.358763e+01 8.835651e+01 moveto +7.526194e+01 8.81375e+01 lineto +7.473866e+01 8.83018e+01 lineto +7.314973e+01 8.849401e+01 lineto +7.358763e+01 8.835651e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.189373e+01 8.847891e+01 moveto +7.358763e+01 8.835651e+01 lineto +7.314973e+01 8.849401e+01 lineto +7.15422e+01 8.858928e+01 lineto +7.189373e+01 8.847891e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.018411e+01 8.85044e+01 moveto +7.189373e+01 8.847891e+01 lineto +7.15422e+01 8.858928e+01 lineto +6.991976e+01 8.85874e+01 lineto +7.018411e+01 8.85044e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.846265e+01 8.843293e+01 moveto +7.018411e+01 8.85044e+01 lineto +6.991976e+01 8.85874e+01 lineto +6.828609e+01 8.848837e+01 lineto +6.846265e+01 8.843293e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.67333e+01 8.826467e+01 moveto +6.846265e+01 8.843293e+01 lineto +6.828609e+01 8.848837e+01 lineto +6.664492e+01 8.829242e+01 lineto +6.67333e+01 8.826467e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.67333e+01 8.826467e+01 lineto +6.664492e+01 8.829242e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.630538e+01 8.801309e+01 moveto +7.784631e+01 8.762855e+01 lineto +7.707684e+01 8.782889e+01 lineto +7.562821e+01 8.81894e+01 lineto +7.630538e+01 8.801309e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.473866e+01 8.83018e+01 moveto +7.630538e+01 8.801309e+01 lineto +7.562821e+01 8.81894e+01 lineto +7.415534e+01 8.845367e+01 lineto +7.473866e+01 8.83018e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.314973e+01 8.849401e+01 moveto +7.473866e+01 8.83018e+01 lineto +7.415534e+01 8.845367e+01 lineto +7.266158e+01 8.86211e+01 lineto +7.314973e+01 8.849401e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.15422e+01 8.858928e+01 moveto +7.314973e+01 8.849401e+01 lineto +7.266158e+01 8.86211e+01 lineto +7.115034e+01 8.869131e+01 lineto +7.15422e+01 8.858928e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.991976e+01 8.85874e+01 moveto +7.15422e+01 8.858928e+01 lineto +7.115034e+01 8.869131e+01 lineto +6.962507e+01 8.866412e+01 lineto +6.991976e+01 8.85874e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.828609e+01 8.848837e+01 moveto +6.991976e+01 8.85874e+01 lineto +6.962507e+01 8.866412e+01 lineto +6.808926e+01 8.853962e+01 lineto +6.828609e+01 8.848837e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.664492e+01 8.829242e+01 moveto +6.828609e+01 8.848837e+01 lineto +6.808926e+01 8.853962e+01 lineto +6.654639e+01 8.831808e+01 lineto +6.664492e+01 8.829242e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.664492e+01 8.829242e+01 lineto +6.654639e+01 8.831808e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.415534e+01 8.845367e+01 moveto +7.562821e+01 8.81894e+01 lineto +7.488552e+01 8.83502e+01 lineto +7.351557e+01 8.859219e+01 lineto +7.415534e+01 8.845367e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.266158e+01 8.86211e+01 moveto +7.415534e+01 8.845367e+01 lineto +7.351557e+01 8.859219e+01 lineto +7.212619e+01 8.873702e+01 lineto +7.266158e+01 8.86211e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.115034e+01 8.869131e+01 moveto +7.266158e+01 8.86211e+01 lineto +7.212619e+01 8.873702e+01 lineto +7.072056e+01 8.878436e+01 lineto +7.115034e+01 8.869131e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.962507e+01 8.866412e+01 moveto +7.115034e+01 8.869131e+01 lineto +7.072056e+01 8.878436e+01 lineto +6.930187e+01 8.87341e+01 lineto +6.962507e+01 8.866412e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.808926e+01 8.853962e+01 moveto +6.962507e+01 8.866412e+01 lineto +6.930187e+01 8.87341e+01 lineto +6.787338e+01 8.858636e+01 lineto +6.808926e+01 8.853962e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.654639e+01 8.831808e+01 moveto +6.808926e+01 8.853962e+01 lineto +6.787338e+01 8.858636e+01 lineto +6.643833e+01 8.834147e+01 lineto +6.654639e+01 8.831808e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.654639e+01 8.831808e+01 lineto +6.643833e+01 8.834147e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.351557e+01 8.859219e+01 moveto +7.488552e+01 8.83502e+01 lineto +7.408187e+01 8.849451e+01 lineto +7.282329e+01 8.87165e+01 lineto +7.351557e+01 8.859219e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.212619e+01 8.873702e+01 moveto +7.351557e+01 8.859219e+01 lineto +7.282329e+01 8.87165e+01 lineto +7.154687e+01 8.884104e+01 lineto +7.212619e+01 8.873702e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.072056e+01 8.878436e+01 moveto +7.212619e+01 8.873702e+01 lineto +7.154687e+01 8.884104e+01 lineto +7.02555e+01 8.886786e+01 lineto +7.072056e+01 8.878436e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.930187e+01 8.87341e+01 moveto +7.072056e+01 8.878436e+01 lineto +7.02555e+01 8.886786e+01 lineto +6.895215e+01 8.87969e+01 lineto +6.930187e+01 8.87341e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.787338e+01 8.858636e+01 moveto +6.930187e+01 8.87341e+01 lineto +6.895215e+01 8.87969e+01 lineto +6.763979e+01 8.86283e+01 lineto +6.787338e+01 8.858636e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.643833e+01 8.834147e+01 moveto +6.787338e+01 8.858636e+01 lineto +6.763979e+01 8.86283e+01 lineto +6.63214e+01 8.836247e+01 lineto +6.643833e+01 8.834147e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.643833e+01 8.834147e+01 lineto +6.63214e+01 8.836247e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.154687e+01 8.884104e+01 moveto +7.282329e+01 8.87165e+01 lineto +7.208279e+01 8.882582e+01 lineto +7.092718e+01 8.893253e+01 lineto +7.154687e+01 8.884104e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.02555e+01 8.886786e+01 moveto +7.154687e+01 8.884104e+01 lineto +7.092718e+01 8.893253e+01 lineto +6.975805e+01 8.89413e+01 lineto +7.02555e+01 8.886786e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.895215e+01 8.87969e+01 moveto +7.02555e+01 8.886786e+01 lineto +6.975805e+01 8.89413e+01 lineto +6.857807e+01 8.885212e+01 lineto +6.895215e+01 8.87969e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.763979e+01 8.86283e+01 moveto +6.895215e+01 8.87969e+01 lineto +6.857807e+01 8.885212e+01 lineto +6.738992e+01 8.866519e+01 lineto +6.763979e+01 8.86283e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.63214e+01 8.836247e+01 moveto +6.763979e+01 8.86283e+01 lineto +6.738992e+01 8.866519e+01 lineto +6.619633e+01 8.838093e+01 lineto +6.63214e+01 8.836247e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.63214e+01 8.836247e+01 lineto +6.619633e+01 8.838093e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.092718e+01 8.893253e+01 moveto +7.208279e+01 8.882582e+01 lineto +7.129861e+01 8.891949e+01 lineto +7.027095e+01 8.901092e+01 lineto +7.092718e+01 8.893253e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.975805e+01 8.89413e+01 moveto +7.092718e+01 8.893253e+01 lineto +7.027095e+01 8.901092e+01 lineto +6.923126e+01 8.900423e+01 lineto +6.975805e+01 8.89413e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.857807e+01 8.885212e+01 moveto +6.975805e+01 8.89413e+01 lineto +6.923126e+01 8.900423e+01 lineto +6.818192e+01 8.889944e+01 lineto +6.857807e+01 8.885212e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.738992e+01 8.866519e+01 moveto +6.857807e+01 8.885212e+01 lineto +6.818192e+01 8.889944e+01 lineto +6.712532e+01 8.86968e+01 lineto +6.738992e+01 8.866519e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.619633e+01 8.838093e+01 moveto +6.738992e+01 8.866519e+01 lineto +6.712532e+01 8.86968e+01 lineto +6.606387e+01 8.839676e+01 lineto +6.619633e+01 8.838093e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.619633e+01 8.838093e+01 lineto +6.606387e+01 8.839676e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +7.027095e+01 8.901092e+01 moveto +7.129861e+01 8.891949e+01 lineto +7.047561e+01 8.899693e+01 lineto +6.958222e+01 8.907572e+01 lineto +7.027095e+01 8.901092e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.923126e+01 8.900423e+01 moveto +7.027095e+01 8.901092e+01 lineto +6.958222e+01 8.907572e+01 lineto +6.867839e+01 8.905625e+01 lineto +6.923126e+01 8.900423e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.818192e+01 8.889944e+01 moveto +6.923126e+01 8.900423e+01 lineto +6.867839e+01 8.905625e+01 lineto +6.776616e+01 8.893857e+01 lineto +6.818192e+01 8.889944e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.712532e+01 8.86968e+01 moveto +6.818192e+01 8.889944e+01 lineto +6.776616e+01 8.893857e+01 lineto +6.684762e+01 8.872293e+01 lineto +6.712532e+01 8.86968e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.606387e+01 8.839676e+01 moveto +6.712532e+01 8.86968e+01 lineto +6.684762e+01 8.872293e+01 lineto +6.592486e+01 8.840984e+01 lineto +6.606387e+01 8.839676e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.606387e+01 8.839676e+01 lineto +6.592486e+01 8.840984e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.867839e+01 8.905625e+01 moveto +6.958222e+01 8.907572e+01 lineto +6.886525e+01 8.912655e+01 lineto +6.810283e+01 8.909705e+01 lineto +6.867839e+01 8.905625e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.776616e+01 8.893857e+01 moveto +6.867839e+01 8.905625e+01 lineto +6.810283e+01 8.909705e+01 lineto +6.733334e+01 8.896925e+01 lineto +6.776616e+01 8.893857e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.684762e+01 8.872293e+01 moveto +6.776616e+01 8.893857e+01 lineto +6.733334e+01 8.896925e+01 lineto +6.655852e+01 8.874342e+01 lineto +6.684762e+01 8.872293e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.592486e+01 8.840984e+01 moveto +6.684762e+01 8.872293e+01 lineto +6.655852e+01 8.874342e+01 lineto +6.578015e+01 8.842009e+01 lineto +6.592486e+01 8.840984e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.592486e+01 8.840984e+01 lineto +6.578015e+01 8.842009e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.810283e+01 8.909705e+01 moveto +6.886525e+01 8.912655e+01 lineto +6.812444e+01 8.916308e+01 lineto +6.750815e+01 8.912637e+01 lineto +6.810283e+01 8.909705e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.733334e+01 8.896925e+01 moveto +6.810283e+01 8.909705e+01 lineto +6.750815e+01 8.912637e+01 lineto +6.688613e+01 8.89913e+01 lineto +6.733334e+01 8.896925e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.655852e+01 8.874342e+01 moveto +6.733334e+01 8.896925e+01 lineto +6.688613e+01 8.89913e+01 lineto +6.625982e+01 8.875815e+01 lineto +6.655852e+01 8.874342e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.578015e+01 8.842009e+01 moveto +6.655852e+01 8.874342e+01 lineto +6.625982e+01 8.875815e+01 lineto +6.563063e+01 8.842747e+01 lineto +6.578015e+01 8.842009e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.578015e+01 8.842009e+01 lineto +6.563063e+01 8.842747e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.750815e+01 8.912637e+01 moveto +6.812444e+01 8.916308e+01 lineto +6.736437e+01 8.918508e+01 lineto +6.6898e+01 8.914404e+01 lineto +6.750815e+01 8.912637e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.688613e+01 8.89913e+01 moveto +6.750815e+01 8.912637e+01 lineto +6.6898e+01 8.914404e+01 lineto +6.64273e+01 8.900458e+01 lineto +6.688613e+01 8.89913e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.625982e+01 8.875815e+01 moveto +6.688613e+01 8.89913e+01 lineto +6.64273e+01 8.900458e+01 lineto +6.595335e+01 8.876702e+01 lineto +6.625982e+01 8.875815e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.563063e+01 8.842747e+01 moveto +6.625982e+01 8.875815e+01 lineto +6.595335e+01 8.876702e+01 lineto +6.547722e+01 8.843191e+01 lineto +6.563063e+01 8.842747e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.563063e+01 8.842747e+01 lineto +6.547722e+01 8.843191e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.6898e+01 8.914404e+01 moveto +6.736437e+01 8.918508e+01 lineto +6.658972e+01 8.919243e+01 lineto +6.627615e+01 8.914994e+01 lineto +6.6898e+01 8.914404e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.64273e+01 8.900458e+01 moveto +6.6898e+01 8.914404e+01 lineto +6.627615e+01 8.914994e+01 lineto +6.595967e+01 8.900902e+01 lineto +6.64273e+01 8.900458e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.595335e+01 8.876702e+01 moveto +6.64273e+01 8.900458e+01 lineto +6.595967e+01 8.900902e+01 lineto +6.5641e+01 8.876999e+01 lineto +6.595335e+01 8.876702e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.547722e+01 8.843191e+01 moveto +6.595335e+01 8.876702e+01 lineto +6.5641e+01 8.876999e+01 lineto +6.532086e+01 8.843339e+01 lineto +6.547722e+01 8.843191e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +6.5e+01 8.8e+01 moveto +6.547722e+01 8.843191e+01 lineto +6.532086e+01 8.843339e+01 lineto +6.5e+01 8.8e+01 lineto +6.5e+01 8.8e+01 lineto +closepath +gsave +8.0e-01 8.0e-01 8.0e-01 setrgbcolor +stroke +grestore +grestore +newpath +5.082419e+01 4.552849e+01 moveto +5.083627e+01 4.532053e+01 lineto +5.090424e+01 4.511525e+01 lineto +5.102784e+01 4.491347e+01 lineto +5.120659e+01 4.471597e+01 lineto +5.143977e+01 4.452354e+01 lineto +5.172646e+01 4.433694e+01 lineto +5.206554e+01 4.41569e+01 lineto +5.245567e+01 4.398413e+01 lineto +5.28953e+01 4.381932e+01 lineto +5.338271e+01 4.366312e+01 lineto +5.391596e+01 4.351614e+01 lineto +5.449296e+01 4.337896e+01 lineto +5.511142e+01 4.325213e+01 lineto +5.576891e+01 4.313614e+01 lineto +5.646283e+01 4.303145e+01 lineto +5.719045e+01 4.293848e+01 lineto +5.794888e+01 4.285759e+01 lineto +5.873514e+01 4.27891e+01 lineto +5.954613e+01 4.273329e+01 lineto +6.037864e+01 4.269037e+01 lineto +6.122938e+01 4.26605e+01 lineto +6.209501e+01 4.264382e+01 lineto +6.297211e+01 4.264038e+01 lineto +6.38572e+01 4.265021e+01 lineto +6.474681e+01 4.267325e+01 lineto +6.563741e+01 4.270942e+01 lineto +6.65255e+01 4.275858e+01 lineto +6.740757e+01 4.282053e+01 lineto +6.828014e+01 4.289503e+01 lineto +6.913977e+01 4.298178e+01 lineto +6.998305e+01 4.308044e+01 lineto +7.080667e+01 4.319063e+01 lineto +7.160737e+01 4.33119e+01 lineto +7.2382e+01 4.344378e+01 lineto +7.312749e+01 4.358575e+01 lineto +7.384091e+01 4.373725e+01 lineto +7.451944e+01 4.389768e+01 lineto +7.51604e+01 4.40664e+01 lineto +7.576126e+01 4.424276e+01 lineto +7.631965e+01 4.442605e+01 lineto +7.683336e+01 4.461555e+01 lineto +7.730038e+01 4.481052e+01 lineto +7.771885e+01 4.501018e+01 lineto +7.808713e+01 4.521374e+01 lineto +7.840375e+01 4.542041e+01 lineto +7.866748e+01 4.562937e+01 lineto +7.887727e+01 4.583979e+01 lineto +7.903229e+01 4.605084e+01 lineto +7.913194e+01 4.62617e+01 lineto +7.917581e+01 4.647151e+01 lineto +newpath +1.14e+02 4.0e+00 moveto +1.14e+02 3.2e+01 lineto +1.112e+02 4.0e+00 moveto +1.168e+02 4.0e+00 lineto +1.112e+02 3.2e+01 moveto +1.168e+02 3.2e+01 lineto +gsave stroke grestore +gsave +newpath +0 0 0 setrgbcolor + +% Comment: canvas init + +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +1.0e+01 setmiterlimit +gsave +/CMMI12 findfont +12.0 scalefont +setfont +1.176e+02 1.426401e+01 moveto +gsave +[ 0.9 0.0 0.0 0.9 66.8280595715 -639.357903855 ] concat +(\150) show +grestore +grestore +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +grestore +grestore +grestore showpage + +% --------------------------------------------------------- + +%%Trailer +%%EOF diff --git a/assets/images/tandem-ez-chiminea.svg b/assets/images/tandem-ez-chiminea.svg index d9fecd65..6b9396c7 100644 --- a/assets/images/tandem-ez-chiminea.svg +++ b/assets/images/tandem-ez-chiminea.svg @@ -1,15021 +1,15021 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/tandem-ez-position-time-blank-axes.svg b/assets/images/tandem-ez-position-time-blank-axes.svg index 7a3ab78c..a6ffc97a 100644 --- a/assets/images/tandem-ez-position-time-blank-axes.svg +++ b/assets/images/tandem-ez-position-time-blank-axes.svg @@ -1,40 +1,40 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/tandem-ez-position-time.svg b/assets/images/tandem-ez-position-time.svg index 7579c43e..b95363da 100644 --- a/assets/images/tandem-ez-position-time.svg +++ b/assets/images/tandem-ez-position-time.svg @@ -1,130 +1,130 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/tandem-filled-aquarium.eps b/assets/images/tandem-filled-aquarium.eps index eb5cf43e..862d316d 100755 --- a/assets/images/tandem-filled-aquarium.eps +++ b/assets/images/tandem-filled-aquarium.eps @@ -1,991 +1,991 @@ -%!PS-Adobe-2.0 EPSF-3.0 -%%BoundingBox: 0 0 160 100 -%%Pages: 1 -%%PageOrder: Ascend - -%%BeginProlog -%%BeginProcSet: -/ReEncodeFont { exch findfont << >> copy dup 3 2 roll /Encoding exch put definefont } def -%%EndProcSet -%%BeginFont: CMSS10 -%!PS-AdobeFont-1.0: CMSS10 003.002 -%%Title: CMSS10 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMSS10. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments - -FontDirectory/CMSS10 known{/CMSS10 findfont dup/UniqueID known{dup -/UniqueID get 5000803 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /CMSS10 def -/FontBBox {-61 -250 999 759 }readonly def -/UniqueID 5000803 def -/PaintType 0 def -/FontInfo 9 dict dup begin - /version (003.002) readonly def - /Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMSS10.) readonly def - /FullName (CMSS10) readonly def - /FamilyName (Computer Modern) readonly def - /Weight (Medium) readonly def - /ItalicAngle 0 def - /isFixedPitch false def - /UnderlinePosition -100 def - /UnderlineThickness 50 def -end readonly def -/Encoding 256 array - 0 1 255 { 1 index exch /.notdef put} for -dup 0 /Gamma put -dup 1 /Delta put -dup 2 /Theta put -dup 3 /Lambda put -dup 4 /Xi put -dup 5 /Pi put -dup 6 /Sigma put -dup 7 /Upsilon put -dup 8 /Phi put -dup 9 /Psi put -dup 10 /Omega put -dup 11 /ff put -dup 12 /fi put -dup 13 /fl put -dup 14 /ffi put -dup 15 /ffl put -dup 16 /dotlessi put -dup 17 /dotlessj put -dup 18 /grave put -dup 19 /acute put -dup 20 /caron put -dup 21 /breve put -dup 22 /macron put -dup 23 /ring put -dup 24 /cedilla put -dup 25 /germandbls put -dup 26 /ae put -dup 27 /oe put -dup 28 /oslash put -dup 29 /AE put -dup 30 /OE put -dup 31 /Oslash put -dup 32 /suppress put -dup 33 /exclam put -dup 34 /quotedblright put -dup 35 /numbersign put -dup 36 /dollar put -dup 37 /percent put -dup 38 /ampersand put -dup 39 /quoteright put -dup 40 /parenleft put -dup 41 /parenright put -dup 42 /asterisk put -dup 43 /plus put -dup 44 /comma put -dup 45 /hyphen put -dup 46 /period put -dup 47 /slash put -dup 48 /zero put -dup 49 /one put -dup 50 /two put -dup 51 /three put -dup 52 /four put -dup 53 /five put -dup 54 /six put -dup 55 /seven put -dup 56 /eight put -dup 57 /nine put -dup 58 /colon put -dup 59 /semicolon put -dup 60 /exclamdown put -dup 61 /equal put -dup 62 /questiondown put -dup 63 /question put -dup 64 /at put -dup 65 /A put -dup 66 /B put -dup 67 /C put -dup 68 /D put -dup 69 /E put -dup 70 /F put -dup 71 /G put -dup 72 /H put -dup 73 /I put -dup 74 /J put -dup 75 /K put -dup 76 /L put -dup 77 /M put -dup 78 /N put -dup 79 /O put -dup 80 /P put -dup 81 /Q put -dup 82 /R put -dup 83 /S put -dup 84 /T put -dup 85 /U put -dup 86 /V put -dup 87 /W put -dup 88 /X put -dup 89 /Y put -dup 90 /Z put -dup 91 /bracketleft put -dup 92 /quotedblleft put -dup 93 /bracketright put -dup 94 /circumflex put -dup 95 /dotaccent put -dup 96 /quoteleft put -dup 97 /a put -dup 98 /b put -dup 99 /c put -dup 100 /d put -dup 101 /e put -dup 102 /f put -dup 103 /g put -dup 104 /h put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 108 /l put -dup 109 /m put -dup 110 /n put -dup 111 /o put -dup 112 /p put -dup 113 /q put -dup 114 /r put -dup 115 /s put -dup 116 /t put -dup 117 /u put -dup 118 /v put -dup 119 /w put -dup 120 /x put -dup 121 /y put -dup 122 /z put -dup 123 /endash put -dup 124 /emdash put -dup 125 /hungarumlaut put -dup 126 /tilde put -dup 127 /dieresis put -dup 128 /suppress put -dup 160 /space put -dup 161 /Gamma put -dup 162 /Delta put -dup 163 /Theta put -dup 164 /Lambda put -dup 165 /Xi put -dup 166 /Pi put -dup 167 /Sigma put -dup 168 /Upsilon put -dup 169 /Phi put -dup 170 /Psi put -dup 171 /sfthyphen put -dup 172 /nbspace put -dup 173 /Omega put -dup 174 /ff put -dup 175 /fi put -dup 176 /fl put -dup 177 /ffi put -dup 178 /ffl put -dup 179 /dotlessi put -dup 180 /dotlessj put -dup 181 /grave put -dup 182 /acute put -dup 183 /caron put -dup 184 /breve put -dup 185 /macron put -dup 186 /ring put -dup 187 /cedilla put -dup 188 /germandbls put -dup 189 /ae put -dup 190 /oe put -dup 191 /oslash put -dup 192 /AE put -dup 193 /OE put -dup 194 /Oslash put -dup 195 /suppress put -dup 196 /dieresis put -readonly def -currentdict end -currentfile eexec -D9D66F633B846AB284BCF8B0411B772DE5CD06DFE1BE899059C588357426D7A07B684C079A47D271 -426064AD18CB9750D8A986D1D67C1B2AEEF8CE785CC19C81DE96489F740045C5E342F02DA1C9F9F3 -C167651E646F1A67CF379789E311EF91511D0F605B045B279357D6FC8537C233E7AEE6A4FDBE73E7 -5A39EB206D20A6F61021961B748D419EBEEB028B592124E174CA595C108E12725B9875544955CFFD -028B698EF742BC8C19F979E35B8E99CADDDDC89CC6C59733F2A24BC3AF36AD861319147A4A219ECB -92D0D9F6228B51A97C295470093CA270C4488BB4EB864B4863941B9739638D2E6F3CC778582B46AE -B4E466D89D1C211225274356A4BC90F3274C6AA56E200249B7D0949A3FD4185DCB3E5286910EFD7C -A72D5D8E8052C96F388D12094B87D3705CE64459558CF024667C0FE96CBB32B0BC9E51037D7BD62B -E4B05FF99384E71D78441A79B0B1DBA1CAE02434A9FAE46596FB86B873B1670DAE0BAF516445A0DD -C127F8FF3ADA0B10EC30A9CC1F7E9248828B5E8AB46C3FE4154B80A54128A08777F5F9B8C519C7E3 -B632B3476F007FA156E9F39FBE57638B4214CD2BA79BA9DDA0F4C073AED814ABCCC2F7906C57A872 -C00E67FF03AC120029DAB92376422FA21C67CA98BCEB8C431CA2D3EDDC16BDA59363F49614070AA6 -859105192CCC6E4911B0B5D0FBDE04872D8C8D84FE6B68702FBFC4682186E03F2141CF8FC8E23254 -2FF446E00D34A7B9B9271B07DEEED93C336653ED0F51DBA0DE34235097373CA4583095151642EEE7 -6B6BA6714F37031F5AD2ECA4875FD02F65D47541F5245588F0CB5933A759342FC460ABF99E014A85 -CE3BFF948BC38F3D29FAFBD205400093EBD129A9C3AF161E7365DEB2905074660FEC703B6D4733A6 -6EC1E78A1FF3FA90863072C108109D4DFF62166EA04DD1E05225CD1B9A6808413402E9E1E81512B7 -1BFD781132923BA7B5DB7032E7AF65CAD135E8D3C0DDEFE960DECAC693166D83DB2A6D819E40024B -40A114818D7E943849FD90359B4BCC4FB0E2E0373A6200C13F194D735815ACC2E09BF4ABC693DE6E -975F0C27BAD1DCFE8D0A3977B48104EA6F85072BC0F5FD3E8FD8D53DBB088061BDB89249A4C3E6BD -B4A5A0F469D9B53E9B35A4A03F558DC93B8870FD28A829735E1F25F455CEA1CC8DFB408888DDBCEC -C050A84B6EBF39E42B4278F92E44C7A41FAA83CE07255B8CAA9F3EB43368900EEDEAADD836AEB663 -7EFF72351D649500FF3544DAB77FE191A5907B8E7C2AA4A9B18D857C63B2F41279FE6E241EB946D9 -A67B3908CF7146DE0D971192BF7908B3319E6C0B33995F4E54BACDA9040693EA19F24266FF8A46B9 -3D6091337C2BBAACE6ED443A6A83EA4296E41E309192D66122FCF7A37578C45859854CADF75A8299 -727CDC5868F365497886C518C001A3CD4C0A5ED589C3FE9C14269A9DBE9A10FBD6B4B0BB6292975E -F7210A6E4959DE1F3063A98393C63ED63D2EA31353ADC92AC1B924678E81B509CD4470DBD22694E2 -EF36266270A78A350581C6AF9747D92BA0ED2019FFFBDEAA908B373CA6A848512CD5A5607A8EF877 -1533539AE3D2F448FE1092CC640F699D73C6CB421B56C630574A11B5F48DF7DDF4942C82FD5DCC9A -5BF9585CB7715053059CF73503C1FBEF7F8F45546039AE0F3BDDE1ADA78C2DB36040C20848ADB414 -4E71B38A447FFC4F768366416027344912C9134FB30AD513BFB40008884FA98F1D25714121082696 -C877790A06A60BFFB6CFAEACF55453878DF4D972841D7D18E510D5E842416F023BA13A40696FA534 -DB3B0601F45B77FB1CECAD240B8594CC95DF65BD45C1A73D2489D6AA84FD46414D992CDA7D307640 -017951656A3C736C73B116EA9F0A3304EAFA312E46A5152E902D840108C2A1858A95B958055A8080 -B97D612BE59E2D24A5362EF77A83CD8656F8FB6519BDFB3CC43E068C8203BAE620255274AA281972 -A1EE85C378818532B42368AAA93A0C984D7380AD57F1B8FFAAFECAD5EAC17A07DA742E272D3C809B -157D2669AB88DA9EBB91B9E060DE7F275ADFE2FFEA18127969214795E7CD9C27CF902AD3EAD6C6AE -0A4BCDDAD88B6F37932BC7B07D9B43742A08A257DFB3FBB532077039C9CE90386F6C80BDED9CA008 -A7783B6F702DD00D9ECFE3AD9DB0704BBFF4CCBE0B3C75401337CFC1A37E008A09C95C4CE6CF8AF5 -56487D6B320F3B3A9D36623E85FF4119D9EAF24099C2E1D9860DD2187E8CDDF80C4F0B164EC85E0B -21901D017E0A20FBE2090DB90EEE5C9BD2EAD87725F7FF37FD8F43031494817603B8A7E69FEE78D1 -4AC7A66F16800B4B7943B7AED95E9044282017A0FED40F053EBFCA7E292B6C4E0C8DB47B054C91C9 -A1DE4A2741E5E7970AE431494BACF4AA487BCA0080D9A6A3FA3D0E77373F2D40B300D8936C71D83B -3332EE113D087B38E1852312C21ED29C688FFD05D07629D2A48AE9B7B6363AAFFC6CC5ABC96A996E -478C37D745E5B6C90A006349A971C554C27F1D4F7AD1CFED394315EE5C7E681D491213E010A328BF -49C988D7E490BDEA5A86B0F2A8C845A01D84751E1C4BFDDD19045AFDC1283279D7AA6A1FBFD539D3 -A0BEC325597E025A4DE112CBFDB439FE719E690F8DCBEDA826D6546EDF93EDCB67F5AA78FD308CC9 -4EB375BA5FD443083665C0E361462AE4EC541ECD1891B6A7B41715FEBAAAB658FF924A171F4504E5 -03CBC27912393C0F85DF4B276DB39A174CF94B2D6FAC5E3E4F886B2C0D67DF8C502E1E513D934938 -831AAD911F3270A67FA434FD5E3D02E9655661BFC2BB9FE7460E6AE8CFACF6BF545C41C730AC58DB -BCF9AC8532C9E85D9ECAC11D0F7C55288962DB1EFD351B56BF6F2051C62377B95FF0C93A09966EE9 -C6B792126A6C7E9995F2D68E20308347FAB463F5F2DB2E8675882CEF049EF0A6406E1647137D9A46 -734D6E909754E66704552A41B3698B50417F2F3D4F883E3D3E6A75743820E689AE4818C297572E29 -2B5761396825B38C2E6D96ED290856AC6154C51FD90C3EE498E46295832503D76A22CDAC68B6B7AC -B36BA3496422936F48E1569777229320718C45F71C0F857EE699FDD1526E4A23418681D41940E7E0 -FA2C551FB8B79495719F34C3774B229DF858F51AA2E26094FC181BCAE64EE209EE131B9472D6A7EF -6A131EFB221E0F2CCC829A0D9672CEDACF44453400D15DDD34C4126F003A0E57455B25785E1CC9AB -4D4EE1A3BCCBEE149CDCC7EDE7B1F09DA1174F48048B568094F280F22590903F3B2C6A1A796E851F -71D34972F00FF13EB51F8136490C2BA6909B130CF3170820C652A1733BC4B69297BF1F5CF816BCB7 -5A0AC3520AC1DE911B72DEE5AD0033228B9F75961ED1280C6808ED0FD548411696C1CC747AEF91A4 -1EF05215DB5720AADE50BC598749C67770515BFF6DBC5A940C07AB462AA296621D7722C5A47AB3FA -6305C55216216540098F86A1EE217C77EDC0BC3F6DFEC4AFA266019C20CAAAEB381145B3588FAD0A -AB944AD9F120DFF24168844BF92C279D1DF5923C9ACF10393655F33CB9E7EB09A74BD898D07A31A1 -07326EA219163FD6CA3E5A0985F74421F895F020D3D482444C50B428B364487B0FEF8717ABD8D223 -2B4D35EB256A3AE5C1B0D2AE331A1E1D4D5DBC7BACF361E52719DA50620E5137E085481F632B861E -FFF31AF04624D486130FB361F799FF5219E405C80DBFB653CCB3C2E10934C95417A7E91DBE161727 -C5861A219A59470E6AF895C93AD43FAD820BB4C58C13678AE33D18C3EF8DB36A7270CDB3BA2BDDAC -02B0C93D29829DC2B9087F070FFB297464CBF426545A65B869B2661F5B7B6575119DA27D715F0A42 -DF446901F0F2A632AF5614C9EC1FD2A6C79E676D80DACB9F2B89FC51333B4CA7CD98D8CE8B62959C -86949E2CC2F530333C9A80879850481167A7DC78A8A76DDE664449367B44F711D88EC7028E92AA59 -EBBBF050573B52DC80B0FA653E2EC9E5161C27DFCC86365648249518E72D8954BCBC439742A80ED6 -8A7DAF601400AAB2899D4851040C80A64C1E9D4C500F23ACEDC18C120C2E3D0001C37895247338EF -A633428297ECE1771E26219BC93237DDF71A9CF08D47B323D03E904243D1E98DC596BD7E7677B7D9 -1C06474CEEC23C4DAF1B29029342D16121B3390C87DB04C65447C2515B12B9BCC3AB98B9EABD9636 -1EDCEB53655A24E4845604C560D1120F90ED4456BC543E5916BD60C986482FB77BBE9060121FE179 -8C34A17A6AB350D85904106032A0A107649EEAD9B8F59E4CF5256B025440BB3713C2FA5638D6CEFB -788A39A5A5C51842A13AE24684EC59A6FAE55A64148FE73DFB3234F3912D21D68769C9470E3F2DCE -B860872E0556A5C72FB6FF7F7015D09B116FDFEC79EBF0544A0A989269B34475BF5E18B5A3111496 -FB39BD1B25468B6E5B2EDD1624C1AFD3401A8F2086CF3C9D366834BFF85115EDEAFCA61D1343367A -1F5441246000D9A585EDBE50D5B5CAB2455D58B855DA66180F8E1EAF8A2D1948DF1DA913C8F86F2C -58365A77F4B867309629DC8A9237EF9EF4CA0515B2D1B7B7ED64589CD8D196FC057EB96B392EDCC8 -60C15FA2622A484D32D4E2AFEBAD06946CDDD7B7AACA6C0AA5A41B3BCC91D459AB502137DC8C5032 -C3DC8E5D96D210F702FFA73794B639D0F9E7AE0D2134546FA90360B851782BACEE3C28CF7871D3F8 -12CAF86221212D1D321A07B39A14CAE62F41DC83E7714F3E315A7C63E2DCDCFB7F87DDA2BBC6CC60 -73839FC2F05C03077D8A0C9E7373849927450DF6DAF94B27277349A60073C6979312CC0D5C81A89A -058584982D449F1E993AE1EEF449F1AC7840BBA7AAFD999F622D0D1DD573326683C09082ED3564A9 -B28D29955F89ED47DD0EBC2ABE45B585D10E85CECBE52F919EFDDD9630CF8F90CBF2F156EA791E0D -BD178AFBB1AE3E72E08CB83F896067121B671F63869EA022BA7D11BD63381E33860317F70941E782 -FDADC1224AD556467935E93C63794E07F5AD57FDD0F6D859C82B562E80758E8A5C1EDD8FD2E37E34 -FA42E49098561E8E9696DF5A62F1A27D6B1D0FBC9911A979C25E5A81181BAA04415306D755B890B6 -0523E4A211D00CA64AA90625CBF5ABE06EE227128114B07536D79841004AA4A1FA1612A78DCF0F03 -B121B2870FD3ECCF2C034578F9A3F008DCDE1D8354625DE2A97D78E6F85782F829F79B3E286480B4 -57680BE7758FC50CDFC17E5EE5FB3276BEA977E933AB1BEEB1B27B2F3D164ED5B9AF1280C482ECC5 -952F608E0AD0D1F6363637CFAAEF4F0FC7CAEDA1EFE35BB80C07E0E701633CCA557BD478B70652C4 -874F4AF391481A982AE0AE8F0764EADD9316048CA985B570DDEFEDE6A64EA15A80BE9AA4709E4FA6 -DA9CC49B546955BFEF78320D67D14F120F47BF0C8568D337D6339CAC2FA9C51AF3EAB6AE46A4584A -89BD235ADB26332DB72F5EA2EE4DFCFEF41726C92C2CE299D54EF8A582E766A2C20F429CA48858A0 -D61716B9CDF7D67FFE5D7D6E72ACF982456C52D0986762485E2E111038EA4C67E1183A40249BBECE -EF800CFF6CFABCB532465C496571541110DCEA197B20E1915F9CDB842444BF7CC4A559262C89B487 -A99B92B7EF0087E6893DDBB5895C047D88FCEC1B29029368C65744591AC683FE613D8582066B6000 -35FA0EF7AD4236BF1A4632A7B9DCDAB2F9B8F6FA6C8E3248841AB3CE22D3741DC40F29A61E2676DF -55882F5F41DE8BDA16B6753D8D9EFC41D5C6AEEEE771F712188F4C92641B7C891EDB3484DE68D56F -58E5EF015B98490C17FE3020479384E19AF8AECD888F718055B81A78B8B39FDAC88BDCCC0C1CD447 -A18F0F04BE83D2C6FC44B376E74752EA4ACF043812E4BF1313703F8A9898D8C175CF434C97CBBA18 -197EC3C5A7928844060723A18F19EC2B26AE7CF1C95E4D2FAD1A4F7F9DB3E4143B69B9E0DF94D313 -F41F045B19D8B71376A44E05A5B41F3DB38EE63C24483DDE9F67A0102597DFC316A853C489B61A3C -C7F1A1908E3C63FDFD4D20754A27D27E5B17AFA895787DE85EB9F560EFDFE4EE3ACE1CD5222553A1 -A6B929665EF740E4B8724327B5A6FBA8C1142CA1FDDDE6DC085764FD4C519FA8742BEC0795773D01 -07E832A84B2A4AFF55102C143B67CA605527E129975852C1F99B765E26371D7A47F328DE406D8710 -C0C7242D624DAE937EA7D01056999ECC3A938AA560090C43EE5087B0A0C66CD9186E9C711A2916B6 -266FD68FCF8F6378241A614E8D7A144F3D9B807850F98C4401049B469FAF5C3BECC8741D47CCD383 -32D2C399B40D270B8B68FFACCD9405F619A897C865D3FA84DCE0F1FA9C54B9F8B9B574C9BA981A8F -4D5F4FBDA945D4DAA725DA6E1E24DA5E9803FD2769809AC972338812B14972D3DC6511903712CBFA -F3161D557B671DFE13AA19A942FE564B1EBF441B06D7B7C739DBFD9C96FDABC13A2B7397CCF37EAD -E23ABD4521F69FDBC483411452285234F655AFCA9BAA73BD43E081ED281383B57BA48F6BB92F810E -2031A6E96810116432D402B6EBD9B7208CAAE4D7E40AE1D275E49DBD4867A1DB946A2F7E67530350 -73F2AD5FB626921DA8E6A2C70502CBFF72067E45A1A5223FDEB1F4790BC4D1FCDE1AFBA9F1907652 -98D70C89645D8F39A9ACA1563B870950BF90C8976690A5CA41DB6CB5A6A9CDAF969876ADE9D82492 -35A41B32BB1A0564C55A46351366D61C6CF716ADE7EBD8CDFA6B217F180D3AB24D7CFF8B49992D3E -2A37BAFF83F757E365397602FCD60D70C65F537DF26778F0A1E7C2BAA3C2273FF88151EB2A6DC5C9 -AF099C7A728E95FBC50D889B416A864471EAB31050AF8C6C27A8EF177B3A686EDA6354FE931EB69E -D9B39C7FB5ECBAF29F54CF5A09B36EB52D088226F1ECF75FEC87BB35E00F89A9D6595584C9EDF98D -2CD7735E9545EEFBAFC14F9474453BE920D964FE48BC5D730D919105F890A84699149E36FEC03230 -E3643472DBBE1ED54BB4DBE53353A8AAAB4882F4EE901A2CD474FB1A5AE8E3DA026B721260093742 -D27A4823BEA13FA939B3D28F3D8F5BD8A2298007C0FC3B5A831F0E1294A9A8D7F224F188960994D9 -67CF182F8FF283468CCAA2EFAF24F053FA68BD9B16EE0597DD573844EF2FC8BA518B7EBEF00FA4A5 -D282F27E133F2A976C29B8FABBE95AFA8E82DE895CED761B0EC7E03DFE08BEF1F042BA8110E6218D -065672D5B8EA61D140333D49804A1B41EB9600075B4BE636483FF2179A06DEA1427DAD8F2871DF34 -68108E12980D03EA5F122A64CCB649DD800417F698DD1F38C55340CD07473B5D493BC6C68FDCF84E -6FB9CA9AAD42FE8010193C391AD3CD97C3DF8BEB06A1B5EEDAB48C92BBABFBD7DA041F2C587EC96D -555457B5A2D6FB52486E122B46B0F934B4D3AF86A1F537B108589C0798CD4B11573C1C25214C7118 -703D6A043902C980ED303B63FF038D0FFCE3C73AF6441404C013501D8621C14CA3C2480E6C3ED0C6 -4CAB288817639F43BC26AED457100D0B2D4117911B9A34D9DF00D636A28CE4351BA69B04B108464F -0BEE3A3791F0EF03E3FCA00533A4C0749B922BB56525D632B4D56864566E29588907BE31659D43EA -D3269FBF0BDF7EAC69D636023144BAF8A49410FE55D995C926F90A2FCC6B2C5D13228390F92CC0CD -581E9374C84B10BF5FF66FFA0459D9091374EEEE0645C7E93225359893C1E102065926E0D6485E15 -E8D6F488950C4DE682A76F8DD650811E220D2ED6CCADCF65D46FA81247C52DA15A39CC85C4B8B059 -37D9F3CB303F6CE7E0FAA58973474CF41ECC17BFC9DB2A957B1456491927803C274177A41AF5C041 -47E58B44ACEC2AC0BA966DA50A6318931ECB40B97152A6CD86F720C6366A7B8BA15AC4F03B0BF167 -AE6561779063F2C35A8AF47CB4C3AB05EEFC76F18BE8B54C5135396DE53F0025FDAE047DBE2CAD2C -FFC87FB822EEB92CDFD745EDE31D47925D8D360916491CDA2C40EF9561E94FA09BD0F0F01A5C69B9 -61B2DCA57BDAE1EF3CB223E5BE042533CD81A31BC92A46D84014B8887FD7388B0404214B6C5205D7 -B59E02D03AB22710938B33114DD5DD3C5FCEE28174F4A81959C7F2F52DC619649FAF3BC7D3F0867D -1B8D78B9A9DE9DB68DFC774FBD896843C02A91FD8CF44F18A407ABDF150C4220A12DCB47B390D11B -C6D7C87ADA05274DFAFF33321965754EBFF75B419BECF34BFCF41D02C7ED542D7EF045B32289A2AE -66476610A3640FBD31ACEE4C5B9C882916A12F81D6145E3354F4BE90491692973EB657B7833FE784 -5B0B200090B2530FC82FFBC9B873C27718E8597D6707D0F521A52BAB856F73DE4B0C345E902DC44D -A6BC40E08883BE79FE205F1C6C6DE2A230F1F4AFA78B27ED20C2D7A30F72987D86B494FECBAF1224 -F32B0E4E3CD18D72C35CCEDEF16C8D4D8DBBA8FD526B451498EAE762E2E5F3F0D68C40E221EFE2C2 -11F55A5D1F1C058602F2D9E7247FDB345E8350B8F483C8FE939C71CBF9C33E90BD7054741AF37436 -7BECFF9694AE2F06973F46E8D6BE94D5DF4DF3FC4C46742AB152EABF469497D65B66C08056F90A5E -121683C1B0F91C00318EAB91191B962D67647228929A92FBEB7B5DD5CB67ECF5494A318728BCE386 -6CDC497A69D1151E8693DA446E98664776EBDB07D78CE919C5A36AF67BA04601C649AC46EA968596 -096263885765CBA3CCE6D84260936E204F735DA45C84832C4AFD284ECF25B6240F0288C34D806011 -E9B97ABF0B1CB5FDA87A272064690D7AD7AC2E23291325A17D6A9356A2968072C47C3B4A24046F2F -1B395AB3BEE6103523BE590AF5861B20E26105D9A975DC5053D8E9AFDFEA1BA745EC2962E4B8337B -554A7045868A257173ED0D30E8DF74B5E73280E403235E6835D4AF87FE74D7BA59343CB6D3F245E3 -86377A9D0CE026F26BB682FE26B37A5666AA205307B31CA2AE48F1F11B222928B021F5E0FE4C96AB -A558CCB318EBD50CFFC961266F18F44B2F9C37D294CC4699C65A96381E0A1215193A420ADC1645E9 -9BE97280ED370DE997AE5F13BE6467563A775F3CE9573F83B95B90559A5E2D649E1D7FD959444420 -9486BEA6CA1A21D6DE2BA2BD718403CA92BC29249BF2AB2068A4FB4B2F6FB78AB0F4AA1C0B8492FF -2DBA624577D20C047563412D41840EA6F6B8C0C82D7589AB4D8E6A562E9FB92D4F4455B19537650F -8F816590646965FA643485013FC0CDE94A2F86DB9A6128578DFC8282B352972C158B12C7B3B598D9 -2573599217F589B604041BB1CF0F7D1B7564BA0284B1FF71C83CDEAF25834105CD9A4E6AD1A47284 -ECB9DE7F6FEE4CC6C42BB6A3D712B0B81023E486CDC8C3E719ED7B0A9C3C0D44F54FEE924824AF95 -0E471B3FCA38495C1C1F27BE19E235F8B3625D15BB9C476A786250F9A932B2CB879DC32D3232A26D -47B9033C89BA861B49D219178911E4AB7B622FF3C96C68D4FFCAA547CFDDFF18860EA755C1A49AA7 -8556DE350DB546DF34006825740C35F6A9F2329DFFB4FA82B702763003C1011FAABA7C4459EDC9EB -E338D026ACBADA65F690A4C36CF75D322C02E5CB4E46E6D041A71AF6B15BCEBA125568C38DCDCCC4 -41C67239FDCDE87EA3598B5745E4CC9A90E4F6CABAB531EADDCF143DE7873C14A14753901F03CFB4 -AE51D00E5636C1F3FA522577207BC09C7D0CC310C4866AD988F97C1F80 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 - -cleartomark -{restore}if -%%EndFont CMSS10 -%%EndProlog -%%Page: 1 1 -gsave -newpath -0.0e+00 0.0e+00 moveto -1.6e+02 0.0e+00 lineto -1.6e+02 1.0e+02 lineto -0.0e+00 1.0e+02 lineto -closepath -clip -1 setlinecap -1 setlinejoin -gsave -newpath -1.5e+01 1.6e+01 moveto -4.5e+01 3.4e+01 lineto -1.53e+02 3.4e+01 lineto -1.23e+02 1.6e+01 lineto -1.5e+01 1.6e+01 lineto -closepath -gsave -7.929983e-01 7.929983e-01 7.929983e-01 setrgbcolor -fill -grestore -newpath -4.5e+01 8.8e+01 moveto -4.5e+01 3.4e+01 lineto -1.5e+01 1.6e+01 lineto -1.5e+01 7.0e+01 lineto -4.5e+01 8.8e+01 lineto -closepath -gsave -7.568935e-01 7.568935e-01 7.568935e-01 setrgbcolor -fill -grestore -newpath -1.53e+02 3.4e+01 moveto -4.5e+01 3.4e+01 lineto -4.5e+01 8.8e+01 lineto -1.53e+02 8.8e+01 lineto -1.53e+02 3.4e+01 lineto -closepath -gsave -8.728938e-01 8.728938e-01 8.728938e-01 setrgbcolor -fill -grestore -gsave -newpath -1.5e+01 7.0e+01 moveto -1.5e+01 1.6e+01 lineto -1.23e+02 1.6e+01 lineto -1.23e+02 7.0e+01 lineto -1.5e+01 7.0e+01 lineto -closepath -clip -newpath -1.5e+01 7.0e+01 moveto -1.5e+01 1.6e+01 lineto -1.23e+02 1.6e+01 lineto -1.23e+02 7.0e+01 lineto -1.5e+01 7.0e+01 lineto -closepath -gsave -7.665581e-01 7.665581e-01 7.665581e-01 setrgbcolor -fill -grestore -newpath -1.23e+02 7.0e+01 moveto -1.23e+02 1.6e+01 lineto -1.53e+02 3.4e+01 lineto -1.53e+02 8.8e+01 lineto -1.23e+02 7.0e+01 lineto -closepath -gsave -6.646889e-01 6.646889e-01 6.646889e-01 setrgbcolor -fill -grestore -newpath -1.5e+01 4.3e+01 moveto -4.5e+01 6.1e+01 lineto -1.53e+02 6.1e+01 lineto -1.23e+02 4.3e+01 lineto -1.5e+01 4.3e+01 lineto -closepath -gsave -5.377958e-01 5.377958e-01 8.021285e-01 setrgbcolor -fill -grestore -newpath -1.5e+01 1.6e+01 moveto -4.5e+01 3.4e+01 lineto -1.53e+02 3.4e+01 lineto -1.23e+02 1.6e+01 lineto -1.5e+01 1.6e+01 lineto -closepath -gsave -7.303622e-01 7.303622e-01 7.303622e-01 setrgbcolor -stroke -grestore -newpath -4.5e+01 8.8e+01 moveto -4.5e+01 3.4e+01 lineto -1.5e+01 1.6e+01 lineto -1.5e+01 7.0e+01 lineto -4.5e+01 8.8e+01 lineto -closepath -gsave -7.303622e-01 7.303622e-01 7.303622e-01 setrgbcolor -stroke -grestore -newpath -1.5e+01 7.0e+01 moveto -1.5e+01 1.6e+01 lineto -1.23e+02 1.6e+01 lineto -1.23e+02 7.0e+01 lineto -1.5e+01 7.0e+01 lineto -closepath -gsave -7.303622e-01 7.303622e-01 7.303622e-01 setrgbcolor -stroke -grestore -newpath -1.53e+02 3.4e+01 moveto -4.5e+01 3.4e+01 lineto -4.5e+01 8.8e+01 lineto -1.53e+02 8.8e+01 lineto -1.53e+02 3.4e+01 lineto -closepath -gsave -7.303622e-01 7.303622e-01 7.303622e-01 setrgbcolor -stroke -grestore -newpath -1.23e+02 7.0e+01 moveto -1.23e+02 1.6e+01 lineto -1.53e+02 3.4e+01 lineto -1.53e+02 8.8e+01 lineto -1.23e+02 7.0e+01 lineto -closepath -gsave -7.303622e-01 7.303622e-01 7.303622e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -1.23e+02 7.0e+01 moveto -1.23e+02 1.6e+01 lineto -1.53e+02 3.4e+01 lineto -1.53e+02 8.8e+01 lineto -1.23e+02 7.0e+01 lineto -closepath -clip -newpath -1.5e+01 7.0e+01 moveto -1.5e+01 1.6e+01 lineto -1.23e+02 1.6e+01 lineto -1.23e+02 7.0e+01 lineto -1.5e+01 7.0e+01 lineto -closepath -gsave -7.265557e-01 7.265557e-01 7.265557e-01 setrgbcolor -fill -grestore -newpath -1.23e+02 7.0e+01 moveto -1.23e+02 1.6e+01 lineto -1.53e+02 3.4e+01 lineto -1.53e+02 8.8e+01 lineto -1.23e+02 7.0e+01 lineto -closepath -gsave -6.300025e-01 6.300025e-01 6.300025e-01 setrgbcolor -fill -grestore -newpath -1.5e+01 4.3e+01 moveto -4.5e+01 6.1e+01 lineto -1.53e+02 6.1e+01 lineto -1.23e+02 4.3e+01 lineto -1.5e+01 4.3e+01 lineto -closepath -gsave -5.014548e-01 5.014548e-01 7.657876e-01 setrgbcolor -fill -grestore -newpath -1.5e+01 1.6e+01 moveto -4.5e+01 3.4e+01 lineto -1.53e+02 3.4e+01 lineto -1.23e+02 1.6e+01 lineto -1.5e+01 1.6e+01 lineto -closepath -gsave -6.891177e-01 6.891177e-01 6.891177e-01 setrgbcolor -stroke -grestore -newpath -4.5e+01 8.8e+01 moveto -4.5e+01 3.4e+01 lineto -1.5e+01 1.6e+01 lineto -1.5e+01 7.0e+01 lineto -4.5e+01 8.8e+01 lineto -closepath -gsave -6.891177e-01 6.891177e-01 6.891177e-01 setrgbcolor -stroke -grestore -newpath -1.5e+01 7.0e+01 moveto -1.5e+01 1.6e+01 lineto -1.23e+02 1.6e+01 lineto -1.23e+02 7.0e+01 lineto -1.5e+01 7.0e+01 lineto -closepath -gsave -6.891177e-01 6.891177e-01 6.891177e-01 setrgbcolor -stroke -grestore -newpath -1.53e+02 3.4e+01 moveto -4.5e+01 3.4e+01 lineto -4.5e+01 8.8e+01 lineto -1.53e+02 8.8e+01 lineto -1.53e+02 3.4e+01 lineto -closepath -gsave -6.891177e-01 6.891177e-01 6.891177e-01 setrgbcolor -stroke -grestore -newpath -1.23e+02 7.0e+01 moveto -1.23e+02 1.6e+01 lineto -1.53e+02 3.4e+01 lineto -1.53e+02 8.8e+01 lineto -1.23e+02 7.0e+01 lineto -closepath -gsave -6.891177e-01 6.891177e-01 6.891177e-01 setrgbcolor -stroke -grestore -grestore -newpath -1.5e+01 4.3e+01 moveto -1.5e+01 1.6e+01 lineto -1.23e+02 1.6e+01 lineto -1.23e+02 4.3e+01 lineto -1.5e+01 4.3e+01 lineto -closepath -gsave -4.84941e-01 4.84941e-01 9.69882e-01 setrgbcolor -fill -grestore -newpath -1.23e+02 4.3e+01 moveto -1.23e+02 1.6e+01 lineto -1.53e+02 3.4e+01 lineto -1.53e+02 6.1e+01 lineto -1.23e+02 4.3e+01 lineto -closepath -gsave -4.204964e-01 4.204964e-01 8.409927e-01 setrgbcolor -fill -grestore -gsave -newpath -1.5e+01 4.3e+01 moveto -1.5e+01 1.6e+01 lineto -1.23e+02 1.6e+01 lineto -1.23e+02 4.3e+01 lineto -1.5e+01 4.3e+01 lineto -closepath -clip -newpath -1.5e+01 4.3e+01 moveto -1.5e+01 1.6e+01 lineto -1.23e+02 1.6e+01 lineto -1.23e+02 4.3e+01 lineto -1.5e+01 4.3e+01 lineto -closepath -gsave -6.536776e-01 6.536776e-01 8.418118e-01 setrgbcolor -fill -grestore -newpath -1.23e+02 4.3e+01 moveto -1.23e+02 1.6e+01 lineto -1.53e+02 3.4e+01 lineto -1.53e+02 6.1e+01 lineto -1.23e+02 4.3e+01 lineto -closepath -gsave -5.668093e-01 5.668093e-01 7.29942e-01 setrgbcolor -fill -grestore -newpath -1.5e+01 1.6e+01 moveto -4.5e+01 3.4e+01 lineto -1.53e+02 3.4e+01 lineto -1.23e+02 1.6e+01 lineto -1.5e+01 1.6e+01 lineto -closepath -gsave -6.139764e-01 6.139764e-01 8.079528e-01 setrgbcolor -stroke -grestore -newpath -4.5e+01 8.8e+01 moveto -4.5e+01 3.4e+01 lineto -1.5e+01 1.6e+01 lineto -1.5e+01 7.0e+01 lineto -4.5e+01 8.8e+01 lineto -closepath -gsave -6.139764e-01 6.139764e-01 8.079528e-01 setrgbcolor -stroke -grestore -newpath -1.5e+01 7.0e+01 moveto -1.5e+01 1.6e+01 lineto -1.23e+02 1.6e+01 lineto -1.23e+02 7.0e+01 lineto -1.5e+01 7.0e+01 lineto -closepath -gsave -6.139764e-01 6.139764e-01 8.079528e-01 setrgbcolor -stroke -grestore -newpath -1.53e+02 3.4e+01 moveto -4.5e+01 3.4e+01 lineto -4.5e+01 8.8e+01 lineto -1.53e+02 8.8e+01 lineto -1.53e+02 3.4e+01 lineto -closepath -gsave -6.139764e-01 6.139764e-01 8.079528e-01 setrgbcolor -stroke -grestore -newpath -1.23e+02 7.0e+01 moveto -1.23e+02 1.6e+01 lineto -1.53e+02 3.4e+01 lineto -1.53e+02 8.8e+01 lineto -1.23e+02 7.0e+01 lineto -closepath -gsave -6.139764e-01 6.139764e-01 8.079528e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -1.23e+02 4.3e+01 moveto -1.23e+02 1.6e+01 lineto -1.53e+02 3.4e+01 lineto -1.53e+02 6.1e+01 lineto -1.23e+02 4.3e+01 lineto -closepath -clip -newpath -1.5e+01 4.3e+01 moveto -1.5e+01 1.6e+01 lineto -1.23e+02 1.6e+01 lineto -1.23e+02 4.3e+01 lineto -1.5e+01 4.3e+01 lineto -closepath -gsave -6.286761e-01 6.286761e-01 7.918088e-01 setrgbcolor -fill -grestore -newpath -1.23e+02 4.3e+01 moveto -1.23e+02 1.6e+01 lineto -1.53e+02 3.4e+01 lineto -1.53e+02 6.1e+01 lineto -1.23e+02 4.3e+01 lineto -closepath -gsave -5.451303e-01 5.451303e-01 6.86584e-01 setrgbcolor -fill -grestore -newpath -1.5e+01 1.6e+01 moveto -4.5e+01 3.4e+01 lineto -1.53e+02 3.4e+01 lineto -1.23e+02 1.6e+01 lineto -1.5e+01 1.6e+01 lineto -closepath -gsave -5.881985e-01 5.881985e-01 7.563971e-01 setrgbcolor -stroke -grestore -newpath -4.5e+01 8.8e+01 moveto -4.5e+01 3.4e+01 lineto -1.5e+01 1.6e+01 lineto -1.5e+01 7.0e+01 lineto -4.5e+01 8.8e+01 lineto -closepath -gsave -5.881985e-01 5.881985e-01 7.563971e-01 setrgbcolor -stroke -grestore -newpath -1.5e+01 7.0e+01 moveto -1.5e+01 1.6e+01 lineto -1.23e+02 1.6e+01 lineto -1.23e+02 7.0e+01 lineto -1.5e+01 7.0e+01 lineto -closepath -gsave -5.881985e-01 5.881985e-01 7.563971e-01 setrgbcolor -stroke -grestore -newpath -1.53e+02 3.4e+01 moveto -4.5e+01 3.4e+01 lineto -4.5e+01 8.8e+01 lineto -1.53e+02 8.8e+01 lineto -1.53e+02 3.4e+01 lineto -closepath -gsave -5.881985e-01 5.881985e-01 7.563971e-01 setrgbcolor -stroke -grestore -newpath -1.23e+02 7.0e+01 moveto -1.23e+02 1.6e+01 lineto -1.53e+02 3.4e+01 lineto -1.53e+02 8.8e+01 lineto -1.23e+02 7.0e+01 lineto -closepath -gsave -5.881985e-01 5.881985e-01 7.563971e-01 setrgbcolor -stroke -grestore -grestore -gsave -newpath -1.5e+01 4.3e+01 moveto -4.5e+01 6.1e+01 lineto -1.53e+02 6.1e+01 lineto -1.23e+02 4.3e+01 lineto -1.5e+01 4.3e+01 lineto -closepath -clip -newpath -1.5e+01 1.6e+01 moveto -4.5e+01 3.4e+01 lineto -1.53e+02 3.4e+01 lineto -1.23e+02 1.6e+01 lineto -1.5e+01 1.6e+01 lineto -closepath -gsave -5.5e-01 5.5e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -4.5e+01 8.8e+01 moveto -4.5e+01 3.4e+01 lineto -1.5e+01 1.6e+01 lineto -1.5e+01 7.0e+01 lineto -4.5e+01 8.8e+01 lineto -closepath -gsave -5.5e-01 5.5e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.5e+01 7.0e+01 moveto -1.5e+01 1.6e+01 lineto -1.23e+02 1.6e+01 lineto -1.23e+02 7.0e+01 lineto -1.5e+01 7.0e+01 lineto -closepath -gsave -6.0e-01 6.0e-01 6.0e-01 setrgbcolor -stroke -grestore -newpath -1.53e+02 3.4e+01 moveto -4.5e+01 3.4e+01 lineto -4.5e+01 8.8e+01 lineto -1.53e+02 8.8e+01 lineto -1.53e+02 3.4e+01 lineto -closepath -gsave -5.5e-01 5.5e-01 8.0e-01 setrgbcolor -stroke -grestore -newpath -1.23e+02 7.0e+01 moveto -1.23e+02 1.6e+01 lineto -1.53e+02 3.4e+01 lineto -1.53e+02 8.8e+01 lineto -1.23e+02 7.0e+01 lineto -closepath -gsave -6.0e-01 6.0e-01 6.0e-01 setrgbcolor -stroke -grestore -grestore -newpath -1.5e+01 1.6e+01 moveto -1.23e+02 1.6e+01 lineto -1.23e+02 7.0e+01 lineto -1.5e+01 7.0e+01 lineto -closepath -gsave -newpath -0 0 0 setrgbcolor - -% Comment: canvas init - -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -1.0e+01 setmiterlimit -gsave -/CMSS10 findfont -10.0 scalefont -setfont -6.016795e+00 4.006102e+01 moveto -gsave -[ 0.9 0.0 0.0 0.9 -63.0243010372 -616.250810225 ] concat -(\063) show -grestore -grestore -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -grestore -gsave -newpath -0 0 0 setrgbcolor - -% Comment: canvas init - -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -1.0e+01 setmiterlimit -gsave -/CMSS10 findfont -10.0 scalefont -setfont -6.67584e+01 5.622041e+00 moveto -gsave -[ 0.9 0.0 0.0 0.9 -2.28269846383 -650.689789814 ] concat -(\064) show -grestore -grestore -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -grestore -gsave -newpath -0 0 0 setrgbcolor - -% Comment: canvas init - -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -1.0e+01 setmiterlimit -gsave -/CMSS10 findfont -10.0 scalefont -setfont -1.458e+02 1.822204e+01 moveto -gsave -[ 0.9 0.0 0.0 0.9 76.7589041096 -638.089789814 ] concat -(\062) show -grestore -grestore -1 setlinewidth -0 setlinecap -0 setlinejoin -[ ] 0 setdash -grestore -grestore -grestore showpage - -% --------------------------------------------------------- - -%%Trailer -%%EOF +%!PS-Adobe-2.0 EPSF-3.0 +%%BoundingBox: 0 0 160 100 +%%Pages: 1 +%%PageOrder: Ascend + +%%BeginProlog +%%BeginProcSet: +/ReEncodeFont { exch findfont << >> copy dup 3 2 roll /Encoding exch put definefont } def +%%EndProcSet +%%BeginFont: CMSS10 +%!PS-AdobeFont-1.0: CMSS10 003.002 +%%Title: CMSS10 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMSS10. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments + +FontDirectory/CMSS10 known{/CMSS10 findfont dup/UniqueID known{dup +/UniqueID get 5000803 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /CMSS10 def +/FontBBox {-61 -250 999 759 }readonly def +/UniqueID 5000803 def +/PaintType 0 def +/FontInfo 9 dict dup begin + /version (003.002) readonly def + /Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMSS10.) readonly def + /FullName (CMSS10) readonly def + /FamilyName (Computer Modern) readonly def + /Weight (Medium) readonly def + /ItalicAngle 0 def + /isFixedPitch false def + /UnderlinePosition -100 def + /UnderlineThickness 50 def +end readonly def +/Encoding 256 array + 0 1 255 { 1 index exch /.notdef put} for +dup 0 /Gamma put +dup 1 /Delta put +dup 2 /Theta put +dup 3 /Lambda put +dup 4 /Xi put +dup 5 /Pi put +dup 6 /Sigma put +dup 7 /Upsilon put +dup 8 /Phi put +dup 9 /Psi put +dup 10 /Omega put +dup 11 /ff put +dup 12 /fi put +dup 13 /fl put +dup 14 /ffi put +dup 15 /ffl put +dup 16 /dotlessi put +dup 17 /dotlessj put +dup 18 /grave put +dup 19 /acute put +dup 20 /caron put +dup 21 /breve put +dup 22 /macron put +dup 23 /ring put +dup 24 /cedilla put +dup 25 /germandbls put +dup 26 /ae put +dup 27 /oe put +dup 28 /oslash put +dup 29 /AE put +dup 30 /OE put +dup 31 /Oslash put +dup 32 /suppress put +dup 33 /exclam put +dup 34 /quotedblright put +dup 35 /numbersign put +dup 36 /dollar put +dup 37 /percent put +dup 38 /ampersand put +dup 39 /quoteright put +dup 40 /parenleft put +dup 41 /parenright put +dup 42 /asterisk put +dup 43 /plus put +dup 44 /comma put +dup 45 /hyphen put +dup 46 /period put +dup 47 /slash put +dup 48 /zero put +dup 49 /one put +dup 50 /two put +dup 51 /three put +dup 52 /four put +dup 53 /five put +dup 54 /six put +dup 55 /seven put +dup 56 /eight put +dup 57 /nine put +dup 58 /colon put +dup 59 /semicolon put +dup 60 /exclamdown put +dup 61 /equal put +dup 62 /questiondown put +dup 63 /question put +dup 64 /at put +dup 65 /A put +dup 66 /B put +dup 67 /C put +dup 68 /D put +dup 69 /E put +dup 70 /F put +dup 71 /G put +dup 72 /H put +dup 73 /I put +dup 74 /J put +dup 75 /K put +dup 76 /L put +dup 77 /M put +dup 78 /N put +dup 79 /O put +dup 80 /P put +dup 81 /Q put +dup 82 /R put +dup 83 /S put +dup 84 /T put +dup 85 /U put +dup 86 /V put +dup 87 /W put +dup 88 /X put +dup 89 /Y put +dup 90 /Z put +dup 91 /bracketleft put +dup 92 /quotedblleft put +dup 93 /bracketright put +dup 94 /circumflex put +dup 95 /dotaccent put +dup 96 /quoteleft put +dup 97 /a put +dup 98 /b put +dup 99 /c put +dup 100 /d put +dup 101 /e put +dup 102 /f put +dup 103 /g put +dup 104 /h put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 108 /l put +dup 109 /m put +dup 110 /n put +dup 111 /o put +dup 112 /p put +dup 113 /q put +dup 114 /r put +dup 115 /s put +dup 116 /t put +dup 117 /u put +dup 118 /v put +dup 119 /w put +dup 120 /x put +dup 121 /y put +dup 122 /z put +dup 123 /endash put +dup 124 /emdash put +dup 125 /hungarumlaut put +dup 126 /tilde put +dup 127 /dieresis put +dup 128 /suppress put +dup 160 /space put +dup 161 /Gamma put +dup 162 /Delta put +dup 163 /Theta put +dup 164 /Lambda put +dup 165 /Xi put +dup 166 /Pi put +dup 167 /Sigma put +dup 168 /Upsilon put +dup 169 /Phi put +dup 170 /Psi put +dup 171 /sfthyphen put +dup 172 /nbspace put +dup 173 /Omega put +dup 174 /ff put +dup 175 /fi put +dup 176 /fl put +dup 177 /ffi put +dup 178 /ffl put +dup 179 /dotlessi put +dup 180 /dotlessj put +dup 181 /grave put +dup 182 /acute put +dup 183 /caron put +dup 184 /breve put +dup 185 /macron put +dup 186 /ring put +dup 187 /cedilla put +dup 188 /germandbls put +dup 189 /ae put +dup 190 /oe put +dup 191 /oslash put +dup 192 /AE put +dup 193 /OE put +dup 194 /Oslash put +dup 195 /suppress put +dup 196 /dieresis put +readonly def +currentdict end +currentfile eexec +D9D66F633B846AB284BCF8B0411B772DE5CD06DFE1BE899059C588357426D7A07B684C079A47D271 +426064AD18CB9750D8A986D1D67C1B2AEEF8CE785CC19C81DE96489F740045C5E342F02DA1C9F9F3 +C167651E646F1A67CF379789E311EF91511D0F605B045B279357D6FC8537C233E7AEE6A4FDBE73E7 +5A39EB206D20A6F61021961B748D419EBEEB028B592124E174CA595C108E12725B9875544955CFFD +028B698EF742BC8C19F979E35B8E99CADDDDC89CC6C59733F2A24BC3AF36AD861319147A4A219ECB +92D0D9F6228B51A97C295470093CA270C4488BB4EB864B4863941B9739638D2E6F3CC778582B46AE +B4E466D89D1C211225274356A4BC90F3274C6AA56E200249B7D0949A3FD4185DCB3E5286910EFD7C +A72D5D8E8052C96F388D12094B87D3705CE64459558CF024667C0FE96CBB32B0BC9E51037D7BD62B +E4B05FF99384E71D78441A79B0B1DBA1CAE02434A9FAE46596FB86B873B1670DAE0BAF516445A0DD +C127F8FF3ADA0B10EC30A9CC1F7E9248828B5E8AB46C3FE4154B80A54128A08777F5F9B8C519C7E3 +B632B3476F007FA156E9F39FBE57638B4214CD2BA79BA9DDA0F4C073AED814ABCCC2F7906C57A872 +C00E67FF03AC120029DAB92376422FA21C67CA98BCEB8C431CA2D3EDDC16BDA59363F49614070AA6 +859105192CCC6E4911B0B5D0FBDE04872D8C8D84FE6B68702FBFC4682186E03F2141CF8FC8E23254 +2FF446E00D34A7B9B9271B07DEEED93C336653ED0F51DBA0DE34235097373CA4583095151642EEE7 +6B6BA6714F37031F5AD2ECA4875FD02F65D47541F5245588F0CB5933A759342FC460ABF99E014A85 +CE3BFF948BC38F3D29FAFBD205400093EBD129A9C3AF161E7365DEB2905074660FEC703B6D4733A6 +6EC1E78A1FF3FA90863072C108109D4DFF62166EA04DD1E05225CD1B9A6808413402E9E1E81512B7 +1BFD781132923BA7B5DB7032E7AF65CAD135E8D3C0DDEFE960DECAC693166D83DB2A6D819E40024B +40A114818D7E943849FD90359B4BCC4FB0E2E0373A6200C13F194D735815ACC2E09BF4ABC693DE6E +975F0C27BAD1DCFE8D0A3977B48104EA6F85072BC0F5FD3E8FD8D53DBB088061BDB89249A4C3E6BD +B4A5A0F469D9B53E9B35A4A03F558DC93B8870FD28A829735E1F25F455CEA1CC8DFB408888DDBCEC +C050A84B6EBF39E42B4278F92E44C7A41FAA83CE07255B8CAA9F3EB43368900EEDEAADD836AEB663 +7EFF72351D649500FF3544DAB77FE191A5907B8E7C2AA4A9B18D857C63B2F41279FE6E241EB946D9 +A67B3908CF7146DE0D971192BF7908B3319E6C0B33995F4E54BACDA9040693EA19F24266FF8A46B9 +3D6091337C2BBAACE6ED443A6A83EA4296E41E309192D66122FCF7A37578C45859854CADF75A8299 +727CDC5868F365497886C518C001A3CD4C0A5ED589C3FE9C14269A9DBE9A10FBD6B4B0BB6292975E +F7210A6E4959DE1F3063A98393C63ED63D2EA31353ADC92AC1B924678E81B509CD4470DBD22694E2 +EF36266270A78A350581C6AF9747D92BA0ED2019FFFBDEAA908B373CA6A848512CD5A5607A8EF877 +1533539AE3D2F448FE1092CC640F699D73C6CB421B56C630574A11B5F48DF7DDF4942C82FD5DCC9A +5BF9585CB7715053059CF73503C1FBEF7F8F45546039AE0F3BDDE1ADA78C2DB36040C20848ADB414 +4E71B38A447FFC4F768366416027344912C9134FB30AD513BFB40008884FA98F1D25714121082696 +C877790A06A60BFFB6CFAEACF55453878DF4D972841D7D18E510D5E842416F023BA13A40696FA534 +DB3B0601F45B77FB1CECAD240B8594CC95DF65BD45C1A73D2489D6AA84FD46414D992CDA7D307640 +017951656A3C736C73B116EA9F0A3304EAFA312E46A5152E902D840108C2A1858A95B958055A8080 +B97D612BE59E2D24A5362EF77A83CD8656F8FB6519BDFB3CC43E068C8203BAE620255274AA281972 +A1EE85C378818532B42368AAA93A0C984D7380AD57F1B8FFAAFECAD5EAC17A07DA742E272D3C809B +157D2669AB88DA9EBB91B9E060DE7F275ADFE2FFEA18127969214795E7CD9C27CF902AD3EAD6C6AE +0A4BCDDAD88B6F37932BC7B07D9B43742A08A257DFB3FBB532077039C9CE90386F6C80BDED9CA008 +A7783B6F702DD00D9ECFE3AD9DB0704BBFF4CCBE0B3C75401337CFC1A37E008A09C95C4CE6CF8AF5 +56487D6B320F3B3A9D36623E85FF4119D9EAF24099C2E1D9860DD2187E8CDDF80C4F0B164EC85E0B +21901D017E0A20FBE2090DB90EEE5C9BD2EAD87725F7FF37FD8F43031494817603B8A7E69FEE78D1 +4AC7A66F16800B4B7943B7AED95E9044282017A0FED40F053EBFCA7E292B6C4E0C8DB47B054C91C9 +A1DE4A2741E5E7970AE431494BACF4AA487BCA0080D9A6A3FA3D0E77373F2D40B300D8936C71D83B +3332EE113D087B38E1852312C21ED29C688FFD05D07629D2A48AE9B7B6363AAFFC6CC5ABC96A996E +478C37D745E5B6C90A006349A971C554C27F1D4F7AD1CFED394315EE5C7E681D491213E010A328BF +49C988D7E490BDEA5A86B0F2A8C845A01D84751E1C4BFDDD19045AFDC1283279D7AA6A1FBFD539D3 +A0BEC325597E025A4DE112CBFDB439FE719E690F8DCBEDA826D6546EDF93EDCB67F5AA78FD308CC9 +4EB375BA5FD443083665C0E361462AE4EC541ECD1891B6A7B41715FEBAAAB658FF924A171F4504E5 +03CBC27912393C0F85DF4B276DB39A174CF94B2D6FAC5E3E4F886B2C0D67DF8C502E1E513D934938 +831AAD911F3270A67FA434FD5E3D02E9655661BFC2BB9FE7460E6AE8CFACF6BF545C41C730AC58DB +BCF9AC8532C9E85D9ECAC11D0F7C55288962DB1EFD351B56BF6F2051C62377B95FF0C93A09966EE9 +C6B792126A6C7E9995F2D68E20308347FAB463F5F2DB2E8675882CEF049EF0A6406E1647137D9A46 +734D6E909754E66704552A41B3698B50417F2F3D4F883E3D3E6A75743820E689AE4818C297572E29 +2B5761396825B38C2E6D96ED290856AC6154C51FD90C3EE498E46295832503D76A22CDAC68B6B7AC +B36BA3496422936F48E1569777229320718C45F71C0F857EE699FDD1526E4A23418681D41940E7E0 +FA2C551FB8B79495719F34C3774B229DF858F51AA2E26094FC181BCAE64EE209EE131B9472D6A7EF +6A131EFB221E0F2CCC829A0D9672CEDACF44453400D15DDD34C4126F003A0E57455B25785E1CC9AB +4D4EE1A3BCCBEE149CDCC7EDE7B1F09DA1174F48048B568094F280F22590903F3B2C6A1A796E851F +71D34972F00FF13EB51F8136490C2BA6909B130CF3170820C652A1733BC4B69297BF1F5CF816BCB7 +5A0AC3520AC1DE911B72DEE5AD0033228B9F75961ED1280C6808ED0FD548411696C1CC747AEF91A4 +1EF05215DB5720AADE50BC598749C67770515BFF6DBC5A940C07AB462AA296621D7722C5A47AB3FA +6305C55216216540098F86A1EE217C77EDC0BC3F6DFEC4AFA266019C20CAAAEB381145B3588FAD0A +AB944AD9F120DFF24168844BF92C279D1DF5923C9ACF10393655F33CB9E7EB09A74BD898D07A31A1 +07326EA219163FD6CA3E5A0985F74421F895F020D3D482444C50B428B364487B0FEF8717ABD8D223 +2B4D35EB256A3AE5C1B0D2AE331A1E1D4D5DBC7BACF361E52719DA50620E5137E085481F632B861E +FFF31AF04624D486130FB361F799FF5219E405C80DBFB653CCB3C2E10934C95417A7E91DBE161727 +C5861A219A59470E6AF895C93AD43FAD820BB4C58C13678AE33D18C3EF8DB36A7270CDB3BA2BDDAC +02B0C93D29829DC2B9087F070FFB297464CBF426545A65B869B2661F5B7B6575119DA27D715F0A42 +DF446901F0F2A632AF5614C9EC1FD2A6C79E676D80DACB9F2B89FC51333B4CA7CD98D8CE8B62959C +86949E2CC2F530333C9A80879850481167A7DC78A8A76DDE664449367B44F711D88EC7028E92AA59 +EBBBF050573B52DC80B0FA653E2EC9E5161C27DFCC86365648249518E72D8954BCBC439742A80ED6 +8A7DAF601400AAB2899D4851040C80A64C1E9D4C500F23ACEDC18C120C2E3D0001C37895247338EF +A633428297ECE1771E26219BC93237DDF71A9CF08D47B323D03E904243D1E98DC596BD7E7677B7D9 +1C06474CEEC23C4DAF1B29029342D16121B3390C87DB04C65447C2515B12B9BCC3AB98B9EABD9636 +1EDCEB53655A24E4845604C560D1120F90ED4456BC543E5916BD60C986482FB77BBE9060121FE179 +8C34A17A6AB350D85904106032A0A107649EEAD9B8F59E4CF5256B025440BB3713C2FA5638D6CEFB +788A39A5A5C51842A13AE24684EC59A6FAE55A64148FE73DFB3234F3912D21D68769C9470E3F2DCE +B860872E0556A5C72FB6FF7F7015D09B116FDFEC79EBF0544A0A989269B34475BF5E18B5A3111496 +FB39BD1B25468B6E5B2EDD1624C1AFD3401A8F2086CF3C9D366834BFF85115EDEAFCA61D1343367A +1F5441246000D9A585EDBE50D5B5CAB2455D58B855DA66180F8E1EAF8A2D1948DF1DA913C8F86F2C +58365A77F4B867309629DC8A9237EF9EF4CA0515B2D1B7B7ED64589CD8D196FC057EB96B392EDCC8 +60C15FA2622A484D32D4E2AFEBAD06946CDDD7B7AACA6C0AA5A41B3BCC91D459AB502137DC8C5032 +C3DC8E5D96D210F702FFA73794B639D0F9E7AE0D2134546FA90360B851782BACEE3C28CF7871D3F8 +12CAF86221212D1D321A07B39A14CAE62F41DC83E7714F3E315A7C63E2DCDCFB7F87DDA2BBC6CC60 +73839FC2F05C03077D8A0C9E7373849927450DF6DAF94B27277349A60073C6979312CC0D5C81A89A +058584982D449F1E993AE1EEF449F1AC7840BBA7AAFD999F622D0D1DD573326683C09082ED3564A9 +B28D29955F89ED47DD0EBC2ABE45B585D10E85CECBE52F919EFDDD9630CF8F90CBF2F156EA791E0D +BD178AFBB1AE3E72E08CB83F896067121B671F63869EA022BA7D11BD63381E33860317F70941E782 +FDADC1224AD556467935E93C63794E07F5AD57FDD0F6D859C82B562E80758E8A5C1EDD8FD2E37E34 +FA42E49098561E8E9696DF5A62F1A27D6B1D0FBC9911A979C25E5A81181BAA04415306D755B890B6 +0523E4A211D00CA64AA90625CBF5ABE06EE227128114B07536D79841004AA4A1FA1612A78DCF0F03 +B121B2870FD3ECCF2C034578F9A3F008DCDE1D8354625DE2A97D78E6F85782F829F79B3E286480B4 +57680BE7758FC50CDFC17E5EE5FB3276BEA977E933AB1BEEB1B27B2F3D164ED5B9AF1280C482ECC5 +952F608E0AD0D1F6363637CFAAEF4F0FC7CAEDA1EFE35BB80C07E0E701633CCA557BD478B70652C4 +874F4AF391481A982AE0AE8F0764EADD9316048CA985B570DDEFEDE6A64EA15A80BE9AA4709E4FA6 +DA9CC49B546955BFEF78320D67D14F120F47BF0C8568D337D6339CAC2FA9C51AF3EAB6AE46A4584A +89BD235ADB26332DB72F5EA2EE4DFCFEF41726C92C2CE299D54EF8A582E766A2C20F429CA48858A0 +D61716B9CDF7D67FFE5D7D6E72ACF982456C52D0986762485E2E111038EA4C67E1183A40249BBECE +EF800CFF6CFABCB532465C496571541110DCEA197B20E1915F9CDB842444BF7CC4A559262C89B487 +A99B92B7EF0087E6893DDBB5895C047D88FCEC1B29029368C65744591AC683FE613D8582066B6000 +35FA0EF7AD4236BF1A4632A7B9DCDAB2F9B8F6FA6C8E3248841AB3CE22D3741DC40F29A61E2676DF +55882F5F41DE8BDA16B6753D8D9EFC41D5C6AEEEE771F712188F4C92641B7C891EDB3484DE68D56F +58E5EF015B98490C17FE3020479384E19AF8AECD888F718055B81A78B8B39FDAC88BDCCC0C1CD447 +A18F0F04BE83D2C6FC44B376E74752EA4ACF043812E4BF1313703F8A9898D8C175CF434C97CBBA18 +197EC3C5A7928844060723A18F19EC2B26AE7CF1C95E4D2FAD1A4F7F9DB3E4143B69B9E0DF94D313 +F41F045B19D8B71376A44E05A5B41F3DB38EE63C24483DDE9F67A0102597DFC316A853C489B61A3C +C7F1A1908E3C63FDFD4D20754A27D27E5B17AFA895787DE85EB9F560EFDFE4EE3ACE1CD5222553A1 +A6B929665EF740E4B8724327B5A6FBA8C1142CA1FDDDE6DC085764FD4C519FA8742BEC0795773D01 +07E832A84B2A4AFF55102C143B67CA605527E129975852C1F99B765E26371D7A47F328DE406D8710 +C0C7242D624DAE937EA7D01056999ECC3A938AA560090C43EE5087B0A0C66CD9186E9C711A2916B6 +266FD68FCF8F6378241A614E8D7A144F3D9B807850F98C4401049B469FAF5C3BECC8741D47CCD383 +32D2C399B40D270B8B68FFACCD9405F619A897C865D3FA84DCE0F1FA9C54B9F8B9B574C9BA981A8F +4D5F4FBDA945D4DAA725DA6E1E24DA5E9803FD2769809AC972338812B14972D3DC6511903712CBFA +F3161D557B671DFE13AA19A942FE564B1EBF441B06D7B7C739DBFD9C96FDABC13A2B7397CCF37EAD +E23ABD4521F69FDBC483411452285234F655AFCA9BAA73BD43E081ED281383B57BA48F6BB92F810E +2031A6E96810116432D402B6EBD9B7208CAAE4D7E40AE1D275E49DBD4867A1DB946A2F7E67530350 +73F2AD5FB626921DA8E6A2C70502CBFF72067E45A1A5223FDEB1F4790BC4D1FCDE1AFBA9F1907652 +98D70C89645D8F39A9ACA1563B870950BF90C8976690A5CA41DB6CB5A6A9CDAF969876ADE9D82492 +35A41B32BB1A0564C55A46351366D61C6CF716ADE7EBD8CDFA6B217F180D3AB24D7CFF8B49992D3E +2A37BAFF83F757E365397602FCD60D70C65F537DF26778F0A1E7C2BAA3C2273FF88151EB2A6DC5C9 +AF099C7A728E95FBC50D889B416A864471EAB31050AF8C6C27A8EF177B3A686EDA6354FE931EB69E +D9B39C7FB5ECBAF29F54CF5A09B36EB52D088226F1ECF75FEC87BB35E00F89A9D6595584C9EDF98D +2CD7735E9545EEFBAFC14F9474453BE920D964FE48BC5D730D919105F890A84699149E36FEC03230 +E3643472DBBE1ED54BB4DBE53353A8AAAB4882F4EE901A2CD474FB1A5AE8E3DA026B721260093742 +D27A4823BEA13FA939B3D28F3D8F5BD8A2298007C0FC3B5A831F0E1294A9A8D7F224F188960994D9 +67CF182F8FF283468CCAA2EFAF24F053FA68BD9B16EE0597DD573844EF2FC8BA518B7EBEF00FA4A5 +D282F27E133F2A976C29B8FABBE95AFA8E82DE895CED761B0EC7E03DFE08BEF1F042BA8110E6218D +065672D5B8EA61D140333D49804A1B41EB9600075B4BE636483FF2179A06DEA1427DAD8F2871DF34 +68108E12980D03EA5F122A64CCB649DD800417F698DD1F38C55340CD07473B5D493BC6C68FDCF84E +6FB9CA9AAD42FE8010193C391AD3CD97C3DF8BEB06A1B5EEDAB48C92BBABFBD7DA041F2C587EC96D +555457B5A2D6FB52486E122B46B0F934B4D3AF86A1F537B108589C0798CD4B11573C1C25214C7118 +703D6A043902C980ED303B63FF038D0FFCE3C73AF6441404C013501D8621C14CA3C2480E6C3ED0C6 +4CAB288817639F43BC26AED457100D0B2D4117911B9A34D9DF00D636A28CE4351BA69B04B108464F +0BEE3A3791F0EF03E3FCA00533A4C0749B922BB56525D632B4D56864566E29588907BE31659D43EA +D3269FBF0BDF7EAC69D636023144BAF8A49410FE55D995C926F90A2FCC6B2C5D13228390F92CC0CD +581E9374C84B10BF5FF66FFA0459D9091374EEEE0645C7E93225359893C1E102065926E0D6485E15 +E8D6F488950C4DE682A76F8DD650811E220D2ED6CCADCF65D46FA81247C52DA15A39CC85C4B8B059 +37D9F3CB303F6CE7E0FAA58973474CF41ECC17BFC9DB2A957B1456491927803C274177A41AF5C041 +47E58B44ACEC2AC0BA966DA50A6318931ECB40B97152A6CD86F720C6366A7B8BA15AC4F03B0BF167 +AE6561779063F2C35A8AF47CB4C3AB05EEFC76F18BE8B54C5135396DE53F0025FDAE047DBE2CAD2C +FFC87FB822EEB92CDFD745EDE31D47925D8D360916491CDA2C40EF9561E94FA09BD0F0F01A5C69B9 +61B2DCA57BDAE1EF3CB223E5BE042533CD81A31BC92A46D84014B8887FD7388B0404214B6C5205D7 +B59E02D03AB22710938B33114DD5DD3C5FCEE28174F4A81959C7F2F52DC619649FAF3BC7D3F0867D +1B8D78B9A9DE9DB68DFC774FBD896843C02A91FD8CF44F18A407ABDF150C4220A12DCB47B390D11B +C6D7C87ADA05274DFAFF33321965754EBFF75B419BECF34BFCF41D02C7ED542D7EF045B32289A2AE +66476610A3640FBD31ACEE4C5B9C882916A12F81D6145E3354F4BE90491692973EB657B7833FE784 +5B0B200090B2530FC82FFBC9B873C27718E8597D6707D0F521A52BAB856F73DE4B0C345E902DC44D +A6BC40E08883BE79FE205F1C6C6DE2A230F1F4AFA78B27ED20C2D7A30F72987D86B494FECBAF1224 +F32B0E4E3CD18D72C35CCEDEF16C8D4D8DBBA8FD526B451498EAE762E2E5F3F0D68C40E221EFE2C2 +11F55A5D1F1C058602F2D9E7247FDB345E8350B8F483C8FE939C71CBF9C33E90BD7054741AF37436 +7BECFF9694AE2F06973F46E8D6BE94D5DF4DF3FC4C46742AB152EABF469497D65B66C08056F90A5E +121683C1B0F91C00318EAB91191B962D67647228929A92FBEB7B5DD5CB67ECF5494A318728BCE386 +6CDC497A69D1151E8693DA446E98664776EBDB07D78CE919C5A36AF67BA04601C649AC46EA968596 +096263885765CBA3CCE6D84260936E204F735DA45C84832C4AFD284ECF25B6240F0288C34D806011 +E9B97ABF0B1CB5FDA87A272064690D7AD7AC2E23291325A17D6A9356A2968072C47C3B4A24046F2F +1B395AB3BEE6103523BE590AF5861B20E26105D9A975DC5053D8E9AFDFEA1BA745EC2962E4B8337B +554A7045868A257173ED0D30E8DF74B5E73280E403235E6835D4AF87FE74D7BA59343CB6D3F245E3 +86377A9D0CE026F26BB682FE26B37A5666AA205307B31CA2AE48F1F11B222928B021F5E0FE4C96AB +A558CCB318EBD50CFFC961266F18F44B2F9C37D294CC4699C65A96381E0A1215193A420ADC1645E9 +9BE97280ED370DE997AE5F13BE6467563A775F3CE9573F83B95B90559A5E2D649E1D7FD959444420 +9486BEA6CA1A21D6DE2BA2BD718403CA92BC29249BF2AB2068A4FB4B2F6FB78AB0F4AA1C0B8492FF +2DBA624577D20C047563412D41840EA6F6B8C0C82D7589AB4D8E6A562E9FB92D4F4455B19537650F +8F816590646965FA643485013FC0CDE94A2F86DB9A6128578DFC8282B352972C158B12C7B3B598D9 +2573599217F589B604041BB1CF0F7D1B7564BA0284B1FF71C83CDEAF25834105CD9A4E6AD1A47284 +ECB9DE7F6FEE4CC6C42BB6A3D712B0B81023E486CDC8C3E719ED7B0A9C3C0D44F54FEE924824AF95 +0E471B3FCA38495C1C1F27BE19E235F8B3625D15BB9C476A786250F9A932B2CB879DC32D3232A26D +47B9033C89BA861B49D219178911E4AB7B622FF3C96C68D4FFCAA547CFDDFF18860EA755C1A49AA7 +8556DE350DB546DF34006825740C35F6A9F2329DFFB4FA82B702763003C1011FAABA7C4459EDC9EB +E338D026ACBADA65F690A4C36CF75D322C02E5CB4E46E6D041A71AF6B15BCEBA125568C38DCDCCC4 +41C67239FDCDE87EA3598B5745E4CC9A90E4F6CABAB531EADDCF143DE7873C14A14753901F03CFB4 +AE51D00E5636C1F3FA522577207BC09C7D0CC310C4866AD988F97C1F80 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 + +cleartomark +{restore}if +%%EndFont CMSS10 +%%EndProlog +%%Page: 1 1 +gsave +newpath +0.0e+00 0.0e+00 moveto +1.6e+02 0.0e+00 lineto +1.6e+02 1.0e+02 lineto +0.0e+00 1.0e+02 lineto +closepath +clip +1 setlinecap +1 setlinejoin +gsave +newpath +1.5e+01 1.6e+01 moveto +4.5e+01 3.4e+01 lineto +1.53e+02 3.4e+01 lineto +1.23e+02 1.6e+01 lineto +1.5e+01 1.6e+01 lineto +closepath +gsave +7.929983e-01 7.929983e-01 7.929983e-01 setrgbcolor +fill +grestore +newpath +4.5e+01 8.8e+01 moveto +4.5e+01 3.4e+01 lineto +1.5e+01 1.6e+01 lineto +1.5e+01 7.0e+01 lineto +4.5e+01 8.8e+01 lineto +closepath +gsave +7.568935e-01 7.568935e-01 7.568935e-01 setrgbcolor +fill +grestore +newpath +1.53e+02 3.4e+01 moveto +4.5e+01 3.4e+01 lineto +4.5e+01 8.8e+01 lineto +1.53e+02 8.8e+01 lineto +1.53e+02 3.4e+01 lineto +closepath +gsave +8.728938e-01 8.728938e-01 8.728938e-01 setrgbcolor +fill +grestore +gsave +newpath +1.5e+01 7.0e+01 moveto +1.5e+01 1.6e+01 lineto +1.23e+02 1.6e+01 lineto +1.23e+02 7.0e+01 lineto +1.5e+01 7.0e+01 lineto +closepath +clip +newpath +1.5e+01 7.0e+01 moveto +1.5e+01 1.6e+01 lineto +1.23e+02 1.6e+01 lineto +1.23e+02 7.0e+01 lineto +1.5e+01 7.0e+01 lineto +closepath +gsave +7.665581e-01 7.665581e-01 7.665581e-01 setrgbcolor +fill +grestore +newpath +1.23e+02 7.0e+01 moveto +1.23e+02 1.6e+01 lineto +1.53e+02 3.4e+01 lineto +1.53e+02 8.8e+01 lineto +1.23e+02 7.0e+01 lineto +closepath +gsave +6.646889e-01 6.646889e-01 6.646889e-01 setrgbcolor +fill +grestore +newpath +1.5e+01 4.3e+01 moveto +4.5e+01 6.1e+01 lineto +1.53e+02 6.1e+01 lineto +1.23e+02 4.3e+01 lineto +1.5e+01 4.3e+01 lineto +closepath +gsave +5.377958e-01 5.377958e-01 8.021285e-01 setrgbcolor +fill +grestore +newpath +1.5e+01 1.6e+01 moveto +4.5e+01 3.4e+01 lineto +1.53e+02 3.4e+01 lineto +1.23e+02 1.6e+01 lineto +1.5e+01 1.6e+01 lineto +closepath +gsave +7.303622e-01 7.303622e-01 7.303622e-01 setrgbcolor +stroke +grestore +newpath +4.5e+01 8.8e+01 moveto +4.5e+01 3.4e+01 lineto +1.5e+01 1.6e+01 lineto +1.5e+01 7.0e+01 lineto +4.5e+01 8.8e+01 lineto +closepath +gsave +7.303622e-01 7.303622e-01 7.303622e-01 setrgbcolor +stroke +grestore +newpath +1.5e+01 7.0e+01 moveto +1.5e+01 1.6e+01 lineto +1.23e+02 1.6e+01 lineto +1.23e+02 7.0e+01 lineto +1.5e+01 7.0e+01 lineto +closepath +gsave +7.303622e-01 7.303622e-01 7.303622e-01 setrgbcolor +stroke +grestore +newpath +1.53e+02 3.4e+01 moveto +4.5e+01 3.4e+01 lineto +4.5e+01 8.8e+01 lineto +1.53e+02 8.8e+01 lineto +1.53e+02 3.4e+01 lineto +closepath +gsave +7.303622e-01 7.303622e-01 7.303622e-01 setrgbcolor +stroke +grestore +newpath +1.23e+02 7.0e+01 moveto +1.23e+02 1.6e+01 lineto +1.53e+02 3.4e+01 lineto +1.53e+02 8.8e+01 lineto +1.23e+02 7.0e+01 lineto +closepath +gsave +7.303622e-01 7.303622e-01 7.303622e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +1.23e+02 7.0e+01 moveto +1.23e+02 1.6e+01 lineto +1.53e+02 3.4e+01 lineto +1.53e+02 8.8e+01 lineto +1.23e+02 7.0e+01 lineto +closepath +clip +newpath +1.5e+01 7.0e+01 moveto +1.5e+01 1.6e+01 lineto +1.23e+02 1.6e+01 lineto +1.23e+02 7.0e+01 lineto +1.5e+01 7.0e+01 lineto +closepath +gsave +7.265557e-01 7.265557e-01 7.265557e-01 setrgbcolor +fill +grestore +newpath +1.23e+02 7.0e+01 moveto +1.23e+02 1.6e+01 lineto +1.53e+02 3.4e+01 lineto +1.53e+02 8.8e+01 lineto +1.23e+02 7.0e+01 lineto +closepath +gsave +6.300025e-01 6.300025e-01 6.300025e-01 setrgbcolor +fill +grestore +newpath +1.5e+01 4.3e+01 moveto +4.5e+01 6.1e+01 lineto +1.53e+02 6.1e+01 lineto +1.23e+02 4.3e+01 lineto +1.5e+01 4.3e+01 lineto +closepath +gsave +5.014548e-01 5.014548e-01 7.657876e-01 setrgbcolor +fill +grestore +newpath +1.5e+01 1.6e+01 moveto +4.5e+01 3.4e+01 lineto +1.53e+02 3.4e+01 lineto +1.23e+02 1.6e+01 lineto +1.5e+01 1.6e+01 lineto +closepath +gsave +6.891177e-01 6.891177e-01 6.891177e-01 setrgbcolor +stroke +grestore +newpath +4.5e+01 8.8e+01 moveto +4.5e+01 3.4e+01 lineto +1.5e+01 1.6e+01 lineto +1.5e+01 7.0e+01 lineto +4.5e+01 8.8e+01 lineto +closepath +gsave +6.891177e-01 6.891177e-01 6.891177e-01 setrgbcolor +stroke +grestore +newpath +1.5e+01 7.0e+01 moveto +1.5e+01 1.6e+01 lineto +1.23e+02 1.6e+01 lineto +1.23e+02 7.0e+01 lineto +1.5e+01 7.0e+01 lineto +closepath +gsave +6.891177e-01 6.891177e-01 6.891177e-01 setrgbcolor +stroke +grestore +newpath +1.53e+02 3.4e+01 moveto +4.5e+01 3.4e+01 lineto +4.5e+01 8.8e+01 lineto +1.53e+02 8.8e+01 lineto +1.53e+02 3.4e+01 lineto +closepath +gsave +6.891177e-01 6.891177e-01 6.891177e-01 setrgbcolor +stroke +grestore +newpath +1.23e+02 7.0e+01 moveto +1.23e+02 1.6e+01 lineto +1.53e+02 3.4e+01 lineto +1.53e+02 8.8e+01 lineto +1.23e+02 7.0e+01 lineto +closepath +gsave +6.891177e-01 6.891177e-01 6.891177e-01 setrgbcolor +stroke +grestore +grestore +newpath +1.5e+01 4.3e+01 moveto +1.5e+01 1.6e+01 lineto +1.23e+02 1.6e+01 lineto +1.23e+02 4.3e+01 lineto +1.5e+01 4.3e+01 lineto +closepath +gsave +4.84941e-01 4.84941e-01 9.69882e-01 setrgbcolor +fill +grestore +newpath +1.23e+02 4.3e+01 moveto +1.23e+02 1.6e+01 lineto +1.53e+02 3.4e+01 lineto +1.53e+02 6.1e+01 lineto +1.23e+02 4.3e+01 lineto +closepath +gsave +4.204964e-01 4.204964e-01 8.409927e-01 setrgbcolor +fill +grestore +gsave +newpath +1.5e+01 4.3e+01 moveto +1.5e+01 1.6e+01 lineto +1.23e+02 1.6e+01 lineto +1.23e+02 4.3e+01 lineto +1.5e+01 4.3e+01 lineto +closepath +clip +newpath +1.5e+01 4.3e+01 moveto +1.5e+01 1.6e+01 lineto +1.23e+02 1.6e+01 lineto +1.23e+02 4.3e+01 lineto +1.5e+01 4.3e+01 lineto +closepath +gsave +6.536776e-01 6.536776e-01 8.418118e-01 setrgbcolor +fill +grestore +newpath +1.23e+02 4.3e+01 moveto +1.23e+02 1.6e+01 lineto +1.53e+02 3.4e+01 lineto +1.53e+02 6.1e+01 lineto +1.23e+02 4.3e+01 lineto +closepath +gsave +5.668093e-01 5.668093e-01 7.29942e-01 setrgbcolor +fill +grestore +newpath +1.5e+01 1.6e+01 moveto +4.5e+01 3.4e+01 lineto +1.53e+02 3.4e+01 lineto +1.23e+02 1.6e+01 lineto +1.5e+01 1.6e+01 lineto +closepath +gsave +6.139764e-01 6.139764e-01 8.079528e-01 setrgbcolor +stroke +grestore +newpath +4.5e+01 8.8e+01 moveto +4.5e+01 3.4e+01 lineto +1.5e+01 1.6e+01 lineto +1.5e+01 7.0e+01 lineto +4.5e+01 8.8e+01 lineto +closepath +gsave +6.139764e-01 6.139764e-01 8.079528e-01 setrgbcolor +stroke +grestore +newpath +1.5e+01 7.0e+01 moveto +1.5e+01 1.6e+01 lineto +1.23e+02 1.6e+01 lineto +1.23e+02 7.0e+01 lineto +1.5e+01 7.0e+01 lineto +closepath +gsave +6.139764e-01 6.139764e-01 8.079528e-01 setrgbcolor +stroke +grestore +newpath +1.53e+02 3.4e+01 moveto +4.5e+01 3.4e+01 lineto +4.5e+01 8.8e+01 lineto +1.53e+02 8.8e+01 lineto +1.53e+02 3.4e+01 lineto +closepath +gsave +6.139764e-01 6.139764e-01 8.079528e-01 setrgbcolor +stroke +grestore +newpath +1.23e+02 7.0e+01 moveto +1.23e+02 1.6e+01 lineto +1.53e+02 3.4e+01 lineto +1.53e+02 8.8e+01 lineto +1.23e+02 7.0e+01 lineto +closepath +gsave +6.139764e-01 6.139764e-01 8.079528e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +1.23e+02 4.3e+01 moveto +1.23e+02 1.6e+01 lineto +1.53e+02 3.4e+01 lineto +1.53e+02 6.1e+01 lineto +1.23e+02 4.3e+01 lineto +closepath +clip +newpath +1.5e+01 4.3e+01 moveto +1.5e+01 1.6e+01 lineto +1.23e+02 1.6e+01 lineto +1.23e+02 4.3e+01 lineto +1.5e+01 4.3e+01 lineto +closepath +gsave +6.286761e-01 6.286761e-01 7.918088e-01 setrgbcolor +fill +grestore +newpath +1.23e+02 4.3e+01 moveto +1.23e+02 1.6e+01 lineto +1.53e+02 3.4e+01 lineto +1.53e+02 6.1e+01 lineto +1.23e+02 4.3e+01 lineto +closepath +gsave +5.451303e-01 5.451303e-01 6.86584e-01 setrgbcolor +fill +grestore +newpath +1.5e+01 1.6e+01 moveto +4.5e+01 3.4e+01 lineto +1.53e+02 3.4e+01 lineto +1.23e+02 1.6e+01 lineto +1.5e+01 1.6e+01 lineto +closepath +gsave +5.881985e-01 5.881985e-01 7.563971e-01 setrgbcolor +stroke +grestore +newpath +4.5e+01 8.8e+01 moveto +4.5e+01 3.4e+01 lineto +1.5e+01 1.6e+01 lineto +1.5e+01 7.0e+01 lineto +4.5e+01 8.8e+01 lineto +closepath +gsave +5.881985e-01 5.881985e-01 7.563971e-01 setrgbcolor +stroke +grestore +newpath +1.5e+01 7.0e+01 moveto +1.5e+01 1.6e+01 lineto +1.23e+02 1.6e+01 lineto +1.23e+02 7.0e+01 lineto +1.5e+01 7.0e+01 lineto +closepath +gsave +5.881985e-01 5.881985e-01 7.563971e-01 setrgbcolor +stroke +grestore +newpath +1.53e+02 3.4e+01 moveto +4.5e+01 3.4e+01 lineto +4.5e+01 8.8e+01 lineto +1.53e+02 8.8e+01 lineto +1.53e+02 3.4e+01 lineto +closepath +gsave +5.881985e-01 5.881985e-01 7.563971e-01 setrgbcolor +stroke +grestore +newpath +1.23e+02 7.0e+01 moveto +1.23e+02 1.6e+01 lineto +1.53e+02 3.4e+01 lineto +1.53e+02 8.8e+01 lineto +1.23e+02 7.0e+01 lineto +closepath +gsave +5.881985e-01 5.881985e-01 7.563971e-01 setrgbcolor +stroke +grestore +grestore +gsave +newpath +1.5e+01 4.3e+01 moveto +4.5e+01 6.1e+01 lineto +1.53e+02 6.1e+01 lineto +1.23e+02 4.3e+01 lineto +1.5e+01 4.3e+01 lineto +closepath +clip +newpath +1.5e+01 1.6e+01 moveto +4.5e+01 3.4e+01 lineto +1.53e+02 3.4e+01 lineto +1.23e+02 1.6e+01 lineto +1.5e+01 1.6e+01 lineto +closepath +gsave +5.5e-01 5.5e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +4.5e+01 8.8e+01 moveto +4.5e+01 3.4e+01 lineto +1.5e+01 1.6e+01 lineto +1.5e+01 7.0e+01 lineto +4.5e+01 8.8e+01 lineto +closepath +gsave +5.5e-01 5.5e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.5e+01 7.0e+01 moveto +1.5e+01 1.6e+01 lineto +1.23e+02 1.6e+01 lineto +1.23e+02 7.0e+01 lineto +1.5e+01 7.0e+01 lineto +closepath +gsave +6.0e-01 6.0e-01 6.0e-01 setrgbcolor +stroke +grestore +newpath +1.53e+02 3.4e+01 moveto +4.5e+01 3.4e+01 lineto +4.5e+01 8.8e+01 lineto +1.53e+02 8.8e+01 lineto +1.53e+02 3.4e+01 lineto +closepath +gsave +5.5e-01 5.5e-01 8.0e-01 setrgbcolor +stroke +grestore +newpath +1.23e+02 7.0e+01 moveto +1.23e+02 1.6e+01 lineto +1.53e+02 3.4e+01 lineto +1.53e+02 8.8e+01 lineto +1.23e+02 7.0e+01 lineto +closepath +gsave +6.0e-01 6.0e-01 6.0e-01 setrgbcolor +stroke +grestore +grestore +newpath +1.5e+01 1.6e+01 moveto +1.23e+02 1.6e+01 lineto +1.23e+02 7.0e+01 lineto +1.5e+01 7.0e+01 lineto +closepath +gsave +newpath +0 0 0 setrgbcolor + +% Comment: canvas init + +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +1.0e+01 setmiterlimit +gsave +/CMSS10 findfont +10.0 scalefont +setfont +6.016795e+00 4.006102e+01 moveto +gsave +[ 0.9 0.0 0.0 0.9 -63.0243010372 -616.250810225 ] concat +(\063) show +grestore +grestore +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +grestore +gsave +newpath +0 0 0 setrgbcolor + +% Comment: canvas init + +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +1.0e+01 setmiterlimit +gsave +/CMSS10 findfont +10.0 scalefont +setfont +6.67584e+01 5.622041e+00 moveto +gsave +[ 0.9 0.0 0.0 0.9 -2.28269846383 -650.689789814 ] concat +(\064) show +grestore +grestore +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +grestore +gsave +newpath +0 0 0 setrgbcolor + +% Comment: canvas init + +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +1.0e+01 setmiterlimit +gsave +/CMSS10 findfont +10.0 scalefont +setfont +1.458e+02 1.822204e+01 moveto +gsave +[ 0.9 0.0 0.0 0.9 76.7589041096 -638.089789814 ] concat +(\062) show +grestore +grestore +1 setlinewidth +0 setlinecap +0 setlinejoin +[ ] 0 setdash +grestore +grestore +grestore showpage + +% --------------------------------------------------------- + +%%Trailer +%%EOF diff --git a/assets/images/tandem-filled-aquarium.svg b/assets/images/tandem-filled-aquarium.svg index 5b2a6462..020b351b 100644 --- a/assets/images/tandem-filled-aquarium.svg +++ b/assets/images/tandem-filled-aquarium.svg @@ -1,268 +1,268 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/tandem-filled-conical-tank.svg b/assets/images/tandem-filled-conical-tank.svg index 6d9393b2..0308c9e2 100644 --- a/assets/images/tandem-filled-conical-tank.svg +++ b/assets/images/tandem-filled-conical-tank.svg @@ -1,8726 +1,8726 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/tandem-h-t-blank-axes.svg b/assets/images/tandem-h-t-blank-axes.svg index cfc88dba..eda09e8a 100644 --- a/assets/images/tandem-h-t-blank-axes.svg +++ b/assets/images/tandem-h-t-blank-axes.svg @@ -1,38 +1,38 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/tandem-sphere-V-t.svg b/assets/images/tandem-sphere-V-t.svg index 88ede3ea..13501bce 100644 --- a/assets/images/tandem-sphere-V-t.svg +++ b/assets/images/tandem-sphere-V-t.svg @@ -1,121 +1,121 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/temp-pop-p-t-blank-axes.svg b/assets/images/temp-pop-p-t-blank-axes.svg index 26b37eba..66bb4c92 100644 --- a/assets/images/temp-pop-p-t-blank-axes.svg +++ b/assets/images/temp-pop-p-t-blank-axes.svg @@ -1,38 +1,38 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/transformations-act-f-combined.svg b/assets/images/transformations-act-f-combined.svg index 33274d06..6e286878 100644 --- a/assets/images/transformations-act-f-combined.svg +++ b/assets/images/transformations-act-f-combined.svg @@ -1,149 +1,149 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/transformations-act-g-combined.svg b/assets/images/transformations-act-g-combined.svg index 53cda099..91405b08 100644 --- a/assets/images/transformations-act-g-combined.svg +++ b/assets/images/transformations-act-g-combined.svg @@ -1,186 +1,186 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/transformations-act-r-translation.svg b/assets/images/transformations-act-r-translation.svg index 661a0fbd..03cc9dd2 100644 --- a/assets/images/transformations-act-r-translation.svg +++ b/assets/images/transformations-act-r-translation.svg @@ -1,155 +1,155 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/transformations-act-s-translation.svg b/assets/images/transformations-act-s-translation.svg index 382d250f..b343d369 100644 --- a/assets/images/transformations-act-s-translation.svg +++ b/assets/images/transformations-act-s-translation.svg @@ -1,135 +1,135 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/transformations-combined-order-1.svg b/assets/images/transformations-combined-order-1.svg index e6cb8257..c93ca05b 100644 --- a/assets/images/transformations-combined-order-1.svg +++ b/assets/images/transformations-combined-order-1.svg @@ -1,152 +1,152 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/transformations-combined-order-2.svg b/assets/images/transformations-combined-order-2.svg index 37609e5d..3a892b64 100644 --- a/assets/images/transformations-combined-order-2.svg +++ b/assets/images/transformations-combined-order-2.svg @@ -1,171 +1,171 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/transformations-combined-order-3.svg b/assets/images/transformations-combined-order-3.svg index 36aa116a..a67f87a0 100644 --- a/assets/images/transformations-combined-order-3.svg +++ b/assets/images/transformations-combined-order-3.svg @@ -1,191 +1,191 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/transformations-combined-order-4.svg b/assets/images/transformations-combined-order-4.svg index 7c244cb4..2d571e29 100644 --- a/assets/images/transformations-combined-order-4.svg +++ b/assets/images/transformations-combined-order-4.svg @@ -1,208 +1,208 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/transformations-horiz.svg b/assets/images/transformations-horiz.svg index 2f84f9a8..32070386 100644 --- a/assets/images/transformations-horiz.svg +++ b/assets/images/transformations-horiz.svg @@ -1,172 +1,172 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/transformations-vert-stretch-1.svg b/assets/images/transformations-vert-stretch-1.svg index 4d0d6097..cfff9767 100644 --- a/assets/images/transformations-vert-stretch-1.svg +++ b/assets/images/transformations-vert-stretch-1.svg @@ -1,191 +1,191 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/transformations-vert-stretch-2.svg b/assets/images/transformations-vert-stretch-2.svg index f27611e7..911d6c68 100644 --- a/assets/images/transformations-vert-stretch-2.svg +++ b/assets/images/transformations-vert-stretch-2.svg @@ -1,177 +1,177 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/transformations-vert.svg b/assets/images/transformations-vert.svg index c9bfdb00..e7c75200 100644 --- a/assets/images/transformations-vert.svg +++ b/assets/images/transformations-vert.svg @@ -1,168 +1,168 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/traversing-act-circle.svg b/assets/images/traversing-act-circle.svg index 6022b2b2..5f925246 100644 --- a/assets/images/traversing-act-circle.svg +++ b/assets/images/traversing-act-circle.svg @@ -1,131 +1,131 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/traversing-act-circular-grid-horiz.svg b/assets/images/traversing-act-circular-grid-horiz.svg index 9a0eb546..726036f2 100644 --- a/assets/images/traversing-act-circular-grid-horiz.svg +++ b/assets/images/traversing-act-circular-grid-horiz.svg @@ -1,50 +1,50 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/traversing-act-circular-grid.svg b/assets/images/traversing-act-circular-grid.svg index c421c5bd..b8164a77 100644 --- a/assets/images/traversing-act-circular-grid.svg +++ b/assets/images/traversing-act-circular-grid.svg @@ -1,50 +1,50 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/traversing-circular-act-oscillator.svg b/assets/images/traversing-circular-act-oscillator.svg index 0555fafb..c00bbfb4 100644 --- a/assets/images/traversing-circular-act-oscillator.svg +++ b/assets/images/traversing-circular-act-oscillator.svg @@ -1,133 +1,133 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/traversing-circular-aroc-circle-20th.svg b/assets/images/traversing-circular-aroc-circle-20th.svg index e65e815c..ac8914d4 100644 --- a/assets/images/traversing-circular-aroc-circle-20th.svg +++ b/assets/images/traversing-circular-aroc-circle-20th.svg @@ -1,87 +1,87 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/traversing-circular-aroc-circle-eighth.svg b/assets/images/traversing-circular-aroc-circle-eighth.svg index 1cb6ba95..14cc2644 100644 --- a/assets/images/traversing-circular-aroc-circle-eighth.svg +++ b/assets/images/traversing-circular-aroc-circle-eighth.svg @@ -1,79 +1,79 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/traversing-circular-properties-circle.svg b/assets/images/traversing-circular-properties-circle.svg index fd6995ef..bd6962f7 100644 --- a/assets/images/traversing-circular-properties-circle.svg +++ b/assets/images/traversing-circular-properties-circle.svg @@ -1,69 +1,69 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/traversing-circular-properties-graph.svg b/assets/images/traversing-circular-properties-graph.svg index c6e7f94d..47adfd3b 100644 --- a/assets/images/traversing-circular-properties-graph.svg +++ b/assets/images/traversing-circular-properties-graph.svg @@ -1,157 +1,157 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/traversing-ez-fxn-1.svg b/assets/images/traversing-ez-fxn-1.svg index f05b9ebc..aed335a1 100644 --- a/assets/images/traversing-ez-fxn-1.svg +++ b/assets/images/traversing-ez-fxn-1.svg @@ -1,113 +1,113 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/traversing-ez-fxn-2.svg b/assets/images/traversing-ez-fxn-2.svg index de505293..9671e410 100644 --- a/assets/images/traversing-ez-fxn-2.svg +++ b/assets/images/traversing-ez-fxn-2.svg @@ -1,113 +1,113 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/traversing-ferris-wheel-animation.svg b/assets/images/traversing-ferris-wheel-animation.svg index 718118e0..fd0f6b47 100644 --- a/assets/images/traversing-ferris-wheel-animation.svg +++ b/assets/images/traversing-ferris-wheel-animation.svg @@ -1,13 +1,13 @@ - - - - - - - - - - - - - + + + + + + + + + + + + + diff --git a/assets/images/traversing-first-example-graph.svg b/assets/images/traversing-first-example-graph.svg index 0ed2c5ef..fb69b4a1 100644 --- a/assets/images/traversing-first-example-graph.svg +++ b/assets/images/traversing-first-example-graph.svg @@ -1,252 +1,252 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/traversing-first-example.svg b/assets/images/traversing-first-example.svg index 7527db32..65eb46a2 100644 --- a/assets/images/traversing-first-example.svg +++ b/assets/images/traversing-first-example.svg @@ -1,188 +1,188 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/unit-circle-16-all-labeled.svg b/assets/images/unit-circle-16-all-labeled.svg index 199a060f..913139fb 100644 --- a/assets/images/unit-circle-16-all-labeled.svg +++ b/assets/images/unit-circle-16-all-labeled.svg @@ -1,853 +1,853 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/unit-circle-16-coords.svg b/assets/images/unit-circle-16-coords.svg index 7e721fb6..9612ab57 100644 --- a/assets/images/unit-circle-16-coords.svg +++ b/assets/images/unit-circle-16-coords.svg @@ -1,264 +1,264 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/unit-circle-24-PA.svg b/assets/images/unit-circle-24-PA.svg index 71a1363d..d09147f8 100644 --- a/assets/images/unit-circle-24-PA.svg +++ b/assets/images/unit-circle-24-PA.svg @@ -1,127 +1,127 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/unit-circle-24s.svg b/assets/images/unit-circle-24s.svg index aff09252..78e2c76e 100644 --- a/assets/images/unit-circle-24s.svg +++ b/assets/images/unit-circle-24s.svg @@ -1,104 +1,104 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/unit-circle-30-60-90.svg b/assets/images/unit-circle-30-60-90.svg index 6240952b..6c72de37 100644 --- a/assets/images/unit-circle-30-60-90.svg +++ b/assets/images/unit-circle-30-60-90.svg @@ -1,67 +1,67 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/unit-circle-45-45-90.svg b/assets/images/unit-circle-45-45-90.svg index 308c2a37..b595551e 100644 --- a/assets/images/unit-circle-45-45-90.svg +++ b/assets/images/unit-circle-45-45-90.svg @@ -1,64 +1,64 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/unit-circle-eqn.svg b/assets/images/unit-circle-eqn.svg index 0e0ab94c..3a240240 100644 --- a/assets/images/unit-circle-eqn.svg +++ b/assets/images/unit-circle-eqn.svg @@ -1,75 +1,75 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/unit-circle-pi-3.svg b/assets/images/unit-circle-pi-3.svg index c7379ae2..273ece93 100644 --- a/assets/images/unit-circle-pi-3.svg +++ b/assets/images/unit-circle-pi-3.svg @@ -1,79 +1,79 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/unit-circle-pi-4.svg b/assets/images/unit-circle-pi-4.svg index f9f15fd7..a3f50bf4 100644 --- a/assets/images/unit-circle-pi-4.svg +++ b/assets/images/unit-circle-pi-4.svg @@ -1,79 +1,79 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/unit-circle-pi-6.svg b/assets/images/unit-circle-pi-6.svg index 65365db4..53719fd5 100644 --- a/assets/images/unit-circle-pi-6.svg +++ b/assets/images/unit-circle-pi-6.svg @@ -1,79 +1,79 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/unit-circle-radian.svg b/assets/images/unit-circle-radian.svg index 2935e41f..c2d8fff0 100644 --- a/assets/images/unit-circle-radian.svg +++ b/assets/images/unit-circle-radian.svg @@ -1,57 +1,57 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/interactives/figures.js b/assets/interactives/figures.js index 31a06e38..eab19e99 100644 --- a/assets/interactives/figures.js +++ b/assets/interactives/figures.js @@ -1,1055 +1,1055 @@ -function Canvas(id, bbox) { - this.id = id - var element = document.getElementById(id); - this.elem = element; - this.ctx = element.getContext("2d"); - - this.backgroundColor = "white"; - - this.plotables = [] - element.moveables = [] - element.moving = null; - element.container = this; - - this.setBackground = function(color) { - backgroundColor = color; - } - - this.addPlotable = function(p) { - if (!Array.isArray(p)) { - var p = [p]; - } - for (var i in p) { - this.plotables.push(p[i]); - p[i].setContext( - this.transform, - this.ctx, - this.bbox - ); - } - } - this.addMoveable = function(m) { - if (!Array.isArray(m)) { - m = [m]; - } - for (i in m) { - element.moveables.push(m[i]); - } - } - - this.removeAllPlotables = function() { - this.plotables = []; - element.moveables = []; - } - - this.resetPlotables = function() { - for (var i = 0; i < this.plotables.length; i++) { - this.plotables[i].setContext(this.transform, this.ctx, this.bbox); - } - } - - this.draw = function() { - this.ctx.clearRect(0,0,element.width,element.height); - this.ctx.fillStyle = this.backgroundColor; - this.ctx.fillRect(0,0,element.width,element.height); - this.ctx.fillStyle = "black"; - for (i in this.plotables) { - var p = this.plotables[i]; - p.draw(); - } - } - - this.margins = [0,0,0,0] - this.transform = new AffineTransform(); - - this.setUpCoordinates = function(bbox) { - this.transform = new AffineTransform(); - var sx = (element.width-this.margins[0]-this.margins[2]) / - (this.bbox[2] - this.bbox[0]); - var sy = (element.height-this.margins[1]-this.margins[3]) / - (this.bbox[3] - this.bbox[1]); - this.transform.translate([this.margins[0], - element.height-this.margins[1]]); - this.transform.scale([sx, -sy]); - this.transform.translate([-this.bbox[0], -this.bbox[1]]); - } - - this.bbox = bbox; - this.setUpCoordinates(bbox); - - element.onmousedown = function(event) { - var x = event.offsetX; - var y = event.offsetY; - for (i in this.moveables) { - if (this.moveables[i].hit(x,y)) { - this.moving = this.moveables[i]; - var p = this.container.transform.inverseTransformPoint([x,y]); - this.moving.move(p); - return; - } - } - - } - element.onmousemove = function(event) { - if (this.moving == null) return; - var x = event.offsetX; - var y = event.offsetY; - var p = this.container.transform.inverseTransformPoint([x,y]); - this.moving.move(p); - - } - element.onmouseup = function(event) { - if (this.moving == null) return; - var x = event.offsetX; - var y = event.offsetY; - var p = this.container.transform.inverseTransformPoint([x,y]); - this.moving.move(p); - this.moving = null; - - } - element.onmouseout = function(event) { - this.moving = null; - } -} - -function AffineTransform() { - this.matrix = [[1,0,0], [0,1,0], [0,0,1]] - this.inverse = [[1,0,0], [0,1,0], [0,0,1]] - var multiply = function(m1, m2) { - r = [[0,0,0], [0,0,0], [0,0,0]] - for (var i = 0; i < m1.length; i++) { - for (var j = 0; j < m2[0].length; j++) { - for (var k = 0; k < m2.length; k++) { - r[i][j] += m1[i][k] * m2[k][j] - } - } - } - return r; - } - var multiplyVector = function(m, v) { - var p = [0, 0, 0]; - for (var i = 0; i < m.length; i++) { - for (var j = 0; j < v.length; j++) { - p[i] += m[i][j] * v[j]; - } - } - return p.slice(0, v.length); - } - this.printMatrix = function() { - console.log(this.matrix[0]); - console.log(this.matrix[1]); - } - this.compose = function(transform) { - this.matrix = multiply(this.matrix, transform.matrix); - this.inverse = multiply(transform.inverse, this.inverse); - } - this.scale = function(s) { - var sx = s[0]; - var sy = s[0]; - if (s.length == 2) sy = s[1]; - var af = new AffineTransform(); - af.matrix = [[sx, 0, 0], [0, sy, 0], [0,0,1]]; - af.inverse = [[1.0/sx, 0, 0], [0, 1.0/sy, 0], [0,0,1]]; - this.compose(af); - } - this.translate = function(t) { - var tx = t[0]; - var ty = t[1]; - var af = new AffineTransform(); - af.matrix = [[1, 0, tx], [0, 1, ty], [0,0,1]]; - af.inverse = [[1, 0, -tx], [0, 1.0, -ty], [0,0,1]]; - this.compose(af); - } - this.rotate = function(angle) { - var af = new AffineTransform(); - af.matrix = [[Math.cos(angle), -Math.sin(angle), 0], - [Math.sin(angle), Math.cos(angle), 0], - [0,0,1]]; - af.inverse = [[Math.cos(angle), Math.sin(angle), 0], - [-Math.sin(angle), Math.cos(angle), 0], - [0,0,1]]; - this.compose(af); - } - this.rotateDeg = function(angle) { - this.rotate(angle * Math.PI / 180.0); - } - this.transformPoint = function(p) { - p = p.slice(0); - p.push(1); - p = multiplyVector(this.matrix, p) - return p.slice(0,2); - } - this.inverseTransformPoint = function(p) { - p = p.slice(0); - p.push(1); - p = multiplyVector(this.inverse, p); - return p.slice(0,2); - } -} - -function Plotable() { - this.fillColor = "black"; - this.strokeColor = "black"; - this.lineWidth = 1; - this.lineDash = null; - this.transform = null; - this.ctx = null; - this.bbox = null; - this.fontsize = 14; - this.font = this.fontsize + "px Arial"; - this.setContext = function(t, c, b) { - this.transform = t; - this.ctx = c; - this.bbox = b; - } - this.moveTo = function(p) { - p = this.transform.transformPoint(p); - this.ctx.moveTo(p[0], p[1]); - } - this.lineTo = function(p) { - p = this.transform.transformPoint(p); - this.ctx.lineTo(p[0], p[1]); - } - this.textAt = function(s, p, offset, align) { - this.ctx.save(); - p = this.transform.transformPoint(p); - this.ctx.translate(p[0], p[1]); - this.ctx.translate(offset[0], offset[1]); - this.ctx.font = this.font; - this.ctx.textAlign = align; - this.ctx.fillText(s, 0, 0); - this.ctx.restore(); - } - this.fill = function() { - if (this.fillColor != null) { - this.ctx.fillStyle = this.fillColor; - this.ctx.fill(); - } - } - this.stroke = function() { - if (this.strokeColor != null) { - this.ctx.lineWidth = this.lineWidth; - this.ctx.strokeStyle = this.strokeColor; - if (this.lineDash != null) this.ctx.setLineDash(this.lineDash); - this.ctx.stroke(); - } - } -} - -function Label(s, p) { - this.s = s; - this.p = p; - this.offset = [0,0]; - this.align = "center" - this.font = "italic 14px arial"; - this.draw = function() { - this.ctx.save(); - p = this.transform.transformPoint(this.p); - this.ctx.translate(p[0], p[1]); - this.ctx.translate(this.offset[0], -this.offset[1]); - this.ctx.font = this.font; - this.ctx.fillStyle = this.color; - this.ctx.textAlign = this.align; - this.ctx.fillText(s, 0, 0); - this.ctx.restore(); - } -} -Label.prototype = new Plotable(); - -function Grid(rx, ry) { - this.rx = rx; - this.ry = ry; - this.strokeColor = "lightgray"; - this.draw = function() { - this.ctx.save(); - this.ctx.strokeStyle = this.strokeColor; - this.ctx.lineWidth = this.lineWidth; - this.ctx.beginPath(); - for (var x = this.rx[0]; x <= this.rx[2]; x += this.rx[1]) { - this.moveTo([x, this.bbox[1]]); - this.lineTo([x, this.bbox[3]]); - } - for (var y = this.ry[0]; y <= this.ry[2]; y += this.ry[1]) { - this.moveTo([this.bbox[0], y]); - this.lineTo([this.bbox[2], y]); - } - this.ctx.stroke(); - this.ctx.restore(); - } -} - -Grid.prototype = new Plotable(); - -function TGrid(a1, a2) { - this.a1 = a1; - this.a2 = a2; - this.strokeColor = "lightgray"; - this.draw = function() { - this.ctx.save(); - this.ctx.strokeStyle = this.strokeColor; - this.ctx.lineWidth = this.lineWidth; - - this.ctx.beginPath() - this.moveTo([this.bbox[0], this.bbox[1]]); - this.lineTo([this.bbox[2], this.bbox[1]]); - this.lineTo([this.bbox[2], this.bbox[3]]); - this.lineTo([this.bbox[0], this.bbox[3]]); - this.ctx.closePath(); - this.ctx.clip(); - - this.ctx.beginPath(); - var num = 100; - for (var i = -num; i <= num; i++) { - this.moveTo(vadd(smult(i, this.a1), smult(-num,this.a2))); - this.lineTo(vadd(smult(i, this.a1), smult(num,this.a2))); - } - for (var i = -num; i <= num; i++) { - this.moveTo(vadd(smult(i, this.a2), smult(-num,this.a1))); - this.lineTo(vadd(smult(i, this.a2), smult(num,this.a1))); - } - - this.ctx.stroke(); - this.ctx.restore(); - } -} -TGrid.prototype = new Plotable(); - -function Axes() { - this.ticks = null; - this.labels = null; - this.draw = function() { - this.ctx.save(); - this.ctx.strokeStyle = this.strokeColor; - this.ctx.beginPath(); - this.moveTo([this.bbox[0], 0]); - this.lineTo([this.bbox[2], 0]); - this.moveTo([0, this.bbox[1]]); - this.lineTo([0, this.bbox[3]]); - this.ctx.stroke(); - - if (this.ticks != null) { - if (this.ticks[0] != null) this.drawHTicks(); - if (this.ticks[1] != null) this.drawVTicks(); - } - if (this.labels != null) { - if (this.labels[0] != null) this.drawHLabels(); - if (this.labels[1] != null) this.drawVLabels(); - } - this.ctx.restore(); - } - - var ticksize = 4; - this.drawHTicks = function() { - for (var x = this.ticks[0][0]; x <= this.ticks[0][2]; - x += this.ticks[0][1]) { - if (Math.abs(x) < 1e-10) continue; - this.ctx.save(); - var p = this.transform.transformPoint([x, 0]); - this.ctx.translate(p[0], p[1]); - this.ctx.lineWidth = 2; - this.ctx.beginPath(); - this.ctx.moveTo(0, -ticksize); - this.ctx.lineTo(0, ticksize); - this.ctx.stroke(); - this.ctx.restore(); - } - } - this.drawVTicks = function() { - for (var y = this.ticks[1][0]; y <= this.ticks[1][2]; - y += this.ticks[1][1]) { - if (Math.abs(y) < 1e-10) continue; - this.ctx.save(); - var p = this.transform.transformPoint([0, y]); - this.ctx.translate(p[0], p[1]); - this.ctx.lineWidth = 2; - this.ctx.beginPath(); - this.ctx.moveTo(-ticksize,0); - this.ctx.lineTo(ticksize,0); - this.ctx.stroke(); - this.ctx.restore(); - } - } - this.drawHLabels = function() { - for (var x = this.labels[0][0]; x <= this.labels[0][2]; - x += this.labels[0][1]) { - if (Math.abs(x) < 1e-10) continue; - this.textAt(x, [x,0], [0, ticksize + this.fontsize], "center"); - } - } - this.drawVLabels = function() { - for (var y = this.labels[1][0]; y <= this.labels[1][2]; - y += this.labels[1][1]) { - if (Math.abs(y) < 1e-10) continue; - this.textAt(y, [0,y], [-ticksize-2,this.fontsize/2.0-2], "right"); - } - - } -} -Axes.prototype = new Plotable(); - -function Slider(rx, y, sx, update) { - this.rx = rx; // coordinates in canvas - this.y = y; - this.sx = sx; // coordinates of slider - this.ratioPerPix = (sx[1]-sx[0])/(rx[1]-rx[0]) - this.point = new Point([rx[0], y]); - this.update = update; - this.init = function(x) { - this.point.point = [this.toPix(x),this.y]; - } - this.toPix = function(x) { - return (x-this.sx[0])/this.ratioPerPix + this.rx[0]; - } - this.fromPix = function(x) { - return (x-this.rx[0])*this.ratioPerPix + this.sx[0]; - } - this.draw = function() { - this.ctx.save(); - this.ctx.beginPath(); - this.moveTo([this.rx[0], this.y]); - this.lineTo([this.rx[1], this.y]); - this.stroke(); - if (this.ticks != null) this.drawTicks(); - if (this.labels != null) this.drawLabels(); - this.point.ctx = this.ctx; - this.point.transform = this.transform; - this.point.draw(); - this.ctx.restore(); - } - this.hit = function(x, y) { - return this.point.hit(x,y); - } - this.move = function(p) { - var x = p[0]; - if (x < this.rx[0] || x > this.rx[1]) return; - this.point.point = [x, this.y] - this.update(); - } - this.coordinate = function() { - return this.fromPix(this.point.point[0]); - } - var ticksize = 4; - this.drawTicks = function() { - for (var x = this.ticks[0]; x <= this.ticks[2]; - x += this.ticks[1]) { - this.ctx.save(); - var p = this.transform.transformPoint([this.toPix(x), this.y]); - this.ctx.translate(p[0], p[1]); - this.ctx.lineWidth = 2; - this.ctx.beginPath(); - this.ctx.moveTo(0, -ticksize); - this.ctx.lineTo(0, ticksize); - this.ctx.stroke(); - this.ctx.restore(); - } - } - this.drawLabels = function() { - for (var x = this.labels[0]; x <= this.labels[2]; - x += this.labels[1]) { - this.textAt(x, [this.toPix(x),this.y], - [0, ticksize + this.fontsize], "center"); - } - } -} -Slider.prototype = new Plotable(); - -function VSlider(x, ry, sy, update) { - this.x = x; - this.ry = ry; // coordinates in canvas - this.sy = sy; // coordinates of slider - this.ratioPerPix = (sy[1]-sy[0])/(ry[1]-ry[0]) - this.point = new Point([x, ry[0]]); - this.update = update; - this.init = function(y) { - this.point.point = [this.x, this.toPix(y)]; - } - this.toPix = function(y) { - return (y-this.sy[0])/this.ratioPerPix + this.ry[0]; - } - this.fromPix = function(y) { - return (y-this.ry[0])*this.ratioPerPix + this.sy[0]; - } - this.draw = function() { - this.ctx.save(); - this.ctx.beginPath(); - this.moveTo([this.x, this.ry[0]]); - this.lineTo([this.x, this.ry[1]]); - this.stroke(); - if (this.ticks != null) this.drawTicks(); - if (this.labels != null) this.drawLabels(); - this.point.ctx = this.ctx; - this.point.transform = this.transform; - this.point.draw(); - this.ctx.restore(); - } - this.hit = function(x, y) { - return this.point.hit(x,y); - } - this.move = function(p) { - var y = p[1]; - if (y < this.ry[0] || y > this.ry[1]) return; - this.point.point = [this.x, y] - this.update(); - } - this.coordinate = function() { - return this.fromPix(this.point.point[1]); - } - var ticksize = 4; - this.drawTicks = function() { - for (var y = this.ticks[0]; y <= this.ticks[2]; - y += this.ticks[1]) { - this.ctx.save(); - var p = this.transform.transformPoint([this.x, this.toPix(y)]); - this.ctx.translate(p[0], p[1]); - this.ctx.lineWidth = 2; - this.ctx.beginPath(); - this.ctx.moveTo(-ticksize, 0); - this.ctx.lineTo(ticksize, 0); - this.ctx.stroke(); - this.ctx.restore(); - } - } - this.drawLabels = function() { - for (var y = this.labels[0]; y <= this.labels[2]; - y += this.labels[1]) { - this.textAt(y, [this.x, this.toPix(y)], - [-10, 5], "center"); - } - } -} -VSlider.prototype = new Plotable(); - -function Function(f) { - this.f = f; - this.dx = 0.0001; - this.value = function(x) { - return this.f(x); - } - this.derivative = function(x) { - return (this.f(x+this.dx) - this.f(x-this.dx)) / (2*this.dx); - } - this.secondDerivative = function(x) { - return (this.f(x+this.dx) - 2*this.f(x) + this.f(x-this.dx))/ - (this.dx*this.dx) - } - this.integral = function(x, a) { - var N = 64; - var h = (x - a)/N; - var x = a; - var sum = 0; - for (var i = 0; i < N/2; i++ ) { - sum += this.f(x) + 4*this.f(x+h) + this.f(x+2*h); - x += 2*h; - } - return sum*h/3.0; - } -} -function Antiderivative(f, a) { - this.f = f; - this.a = a; - this.value = function(x) { - return this.f.integral(x, this.a); - } -} -Antiderivative.prototype = new Function(); - -function Graph(f) { - this.f = f; - this.domain = null; - this.N = 100; - this.draw = function() { - if (this.domain == null) { - this.domain = [this.bbox[0], this.bbox[2]]; - } - var x = this.domain[0]; - var dx = (this.domain[1] - this.domain[0])/this.N; - this.ctx.save(); - this.ctx.beginPath(); - this.moveTo([x, this.f.value(x)]); - for (var i = 0; i < this.N; i++) { - x += dx; - this.lineTo([x,this.f.value(x)]); - } - this.ctx.lineWidth = this.lineWidth; - this.ctx.strokeStyle = this.strokeColor; - if (this.lineDash != null) this.ctx.setLineDash(this.lineDash); - this.ctx.stroke(); - this.ctx.restore(); - } -} -Graph.prototype = new Plotable(); - -function ParametricCurve(x, y, domain) { - this.x = x; - this.y = y; - this.N = 100; - this.domain = domain; - this.draw = function() { - var t = this.domain[0]; - var dt = (this.domain[1]-this.domain[0])/this.N; - this.ctx.save(); - this.ctx.beginPath(); - this.moveTo([this.x(t), this.y(t)]); - for (var i = 0; i < this.N; i++) { - t += dt - this.lineTo([this.x(t), this.y(t)]); - } - this.stroke(); - this.ctx.restore(); - } -} -ParametricCurve.prototype = new Plotable(); - -function Rectangle(ll, dims) { - this.ll = ll; - this.dims = dims; - this.filled = true; - this.draw = function() { - var ur = vadd(this.ll, this.dims); - this.ctx.save(); - this.ctx.beginPath(); - this.moveTo(this.ll); - this.lineTo([ur[0], this.ll[1]]); - this.lineTo(ur); - this.lineTo([this.ll[0], ur[1]]); - this.ctx.closePath(); - if (this.filled) this.fill(); - this.stroke(); - this.ctx.restore(); - } -} -Rectangle.prototype = new Plotable(); - -function Polygon(points) { - this.points = points; - this.draw = function() { - this.ctx.save(); - this.ctx.beginPath(); - this.moveTo(this.points[0]); - for (var i = 1; i < this.points.length; i++) { - this.lineTo(this.points[i]); - } - this.ctx.closePath(); - this.fill(); - this.stroke(); - this.ctx.restore(); - } -} -Polygon.prototype = new Plotable(); - -function AreaBetweenCurves(f) { - this.f = f; - this.g = function(x) {return 0}; - this.N = 100; - this.domain = null; - this.draw = function() { - if (this.domain == null) { - this.domain = [this.bbox[0], this.bbox[2]]; - } - if (this.domain[1] == this.domain[0]) return; - var x = this.domain[0]; - var dx = (this.domain[1] - this.domain[0])/this.N; - this.ctx.save(); - this.ctx.beginPath(); - this.moveTo([x, this.f(x)]); - for (var i = 0; i < this.N; i++) { - x += dx; - this.lineTo([x,this.f(x)]); - } - this.lineTo([x, this.g(x)]); - for (var i = 0; i < this.N; i++) { - x -= dx; - this.lineTo([x,this.g(x)]); - } - this.ctx.closePath(); - if (this.fillColor != null) { - this.ctx.fillStyle = this.fillColor; - this.ctx.fill(); - } - if (this.strokeColor != null) { - this.ctx.lineWidth = this.lineWidth; - this.ctx.strokeStyle = this.strokeColor; - this.ctx.stroke(); - } - this.ctx.restore(); - } -} -AreaBetweenCurves.prototype = new Plotable(); - -var vadd = function(u,v) { - var r = [] - for (var i = 0; i < u.length; i++) { - r.push(u[i] + v[i]); - } - return r -} -var vdiff = function(u,v) { - var r = [] - for (var i = 0; i < u.length; i++) { - r.push(u[i] - v[i]); - } - return r -} -var smult = function(s,u) { - var r = [] - for (var i = 0; i < u.length; i++) { - r.push(s*u[i]); - } - return r -} -var dot = function(u,v) { - var dot = 0; - for (var i = 0; i < u.length; i++) { - dot += u[i]*v[i]; - } - return dot; -} -var vlength = function(u) { - return Math.sqrt(dot(u,u)); -} -var midpoint = function(u,v) { - return smult(0.5, vadd(u,v)); -} - -var pointOnLine = function(p, t, q) { - d = vdiff(q, p); - return vadd(p, smult(t, d)); -} -var isInBbox = function(p, bbox) { - if (p[0] < bbox[0] || p[0] > bbox[2] || p[1] < bbox[1] || p[1] > bbox[3]) - return false; - return true; -} -function Line(p0, p1) { - this.p0 = p0; - this.p1 = p1; - this.infinite = false; - this.draw = function() { - var t0 = 0; - var t1 = 1; - if (this.infinite) { - while (isInBbox(pointOnLine(this.p0, t1, this.p1), this.bbox)) { - t1++; - } - while (isInBbox(pointOnLine(this.p0, t0, this.p1), this.bbox)) { - t0--; - } - } - this.ctx.save(); - this.ctx.lineWidth = this.lineWidth; - this.ctx.strokeStyle = this.strokeColor; - if (this.lineDash != null) this.ctx.setLineDash(this.lineDash); - this.ctx.beginPath(); - this.moveTo(pointOnLine(this.p0, t0, this.p1)); - this.lineTo(pointOnLine(this.p0, t1, this.p1)); - this.ctx.stroke(); - this.ctx.restore(); - } -} -Line.prototype = new Plotable(); - -function Point(p) { - this.point = p; - this.size = 3; - this.style = "circle" - this.draw = function() { - var p = this.transform.transformPoint(this.point); - this.ctx.save(); - this.ctx.translate(p[0], p[1]); - this.ctx.beginPath(); - if (this.style == "circle") { - this.ctx.arc(0,0,this.size, 0, 2*Math.PI); - this.ctx.closePath(); - } else if (this.style == "box") { - this.ctx.moveTo(-this.size, -this.size); - this.ctx.lineTo(this.size, -this.size); - this.ctx.lineTo(this.size, this.size); - this.ctx.lineTo(-this.size, this.size); - this.ctx.closePath(); - } else if (this.style == "rect") { - this.ctx.moveTo(-this.width, -this.height); - this.ctx.lineTo(this.width, -this.height); - this.ctx.lineTo(this.width, this.height); - this.ctx.lineTo(-this.width, this.height); - this.ctx.closePath(); - } - if (this.fillColor != null) { - this.ctx.fillStyle = this.fillColor; - this.ctx.fill(); - } - if (this.strokeColor != null) { - this.ctx.strokeStyle = this.strokeColor; - this.ctx.lineWidth = this.lineWidth; - this.ctx.stroke(); - } - if (this.style == "rect" && this.centerLine) { - this.ctx.beginPath(); - this.ctx.moveTo(0, this.height); - this.ctx.lineTo(0, -this.height); - this.ctx.stroke(); - } - this.ctx.restore(); - } - this.hit = function(x,y) { - var p = this.transform.transformPoint(this.point); - var dx = x-p[0]; - var dy = y-p[1] - if (this.style == "circle") { - return Math.sqrt(dx*dx + dy*dy) <= this.size; - } else if (this.style == "box") { - return Math.abs(dx) <= this.size && Math.abs(dy) <= this.size; - } else if (this.style == "rect") { - return Math.abs(dx) <= this.width && Math.abs(dy) <= this.height; - } - return false; - if (this.fillColor != null) { - this.ctx.fillStyle = this.fillColor; - this.ctx.fill(); - } - if (this.strokeColor != null) { - this.ctx.strokeStyle = this.strokeColor; - this.ctx.stroke(); - } - } -} -Point.prototype = new Plotable(); - -function Ellipse(center, a, b) { - this.center = center; - this.a = a; - this.b = b; - this.N = 100; - this.draw = function() { - this.ctx.save(); - this.ctx.beginPath(); - var theta = 0; - var dtheta = 2*Math.PI/this.N; - this.moveTo(vadd(this.center, - [this.a*Math.cos(theta) , this.b*Math.sin(theta)])) - for (var i = 0; i < this.N; i++) { - theta += dtheta; - this.lineTo(vadd(this.center, - [this.a*Math.cos(theta) , this.b*Math.sin(theta)])) - } - this.ctx.closePath(); - this.fill(); - this.stroke(); - this.ctx.restore(); - } -} -Ellipse.prototype = new Plotable() -function Circle(center, radius) { - this.center = center; - this.a = radius; - this.b = radius; -} -Circle.prototype = new Ellipse(); -function QuadTree(corners, depth) { - this.corners = corners; - this.depth = depth; - this.subdivide = function() { - var bottom = midpoint(this.corners[0], this.corners[1]); - var top = midpoint(this.corners[2], this.corners[3]); - var left = midpoint(this.corners[0], this.corners[3]); - var right = midpoint(this.corners[1], this.corners[2]); - var mid = midpoint(bottom, top); - var quad = [] - quad.push(new QuadTree([this.corners[0], bottom, mid, left], - this.depth-1)); - quad.push(new QuadTree([bottom, this.corners[1], right, mid], - this.depth-1)); - quad.push(new QuadTree([left, mid, top, this.corners[3]], - this.depth-1)); - quad.push(new QuadTree([mid, right, this.corners[2], top], - this.depth-1)); - return quad; - } - this.intersects = function(ctx) { - var sign = ctx.g(this.corners[3]); - for (var i = 0; i < 4; i++) { - var nextsign = ctx.g(this.corners[i]); - if (sign * nextsign <= 0) return true; - sign = nextsign; - } - return false; - } - this.findzero = function(p1, p2, ctx) { - var dx = p2[0] - p1[0]; - var dy = p2[1] - p1[1]; - var dt; - var nextp - change = 0.00001 - if (dx != 0) { - dx = change * Math.abs(dx) / dx; - dy = 0; - dt = dx - } else { - dy = change * Math.abs(dy) / dy; - dx = 0; - dt = dy; - } - var p = p1; - var diff = 1; - var N = 0; - while (Math.abs(diff) > 0.000001 && N < 50) { - var f = ctx.g(p); - if (f == 0) break; - var df = (ctx.g(vadd(p, [dx,dy]))-f)/dt; - diff = f/df; - if (dx != 0) { - nextp = vdiff(p, [diff,0]); - } else { - nextp = vdiff(p, [0, diff]); - } - N ++; - p = nextp; - } - return p - } - this.draw = function(ctx) { - var corner = this.corners[3]; - var sign = ctx.g(corner); - var lastZero = null; - for (var i = 0; i < 4; i++) { - var nextcorner = this.corners[i]; - var nextsign = ctx.g(nextcorner); - if (sign == 0 && nextsign == 0) { - ctx.moveTo(corner); - ctx.lineTo(nextcorner); - } else if (sign * nextsign <= 0) { - if (lastZero == null) { - lastZero = this.findzero(corner, nextcorner, ctx); - } else { - var thisZero = this.findzero(corner, nextcorner, ctx); - ctx.moveTo(lastZero); - ctx.lineTo(thisZero); - lastZero = thisZero; - } - } - corner = nextcorner; - sign = nextsign; - - } - } -} - -function Implicit(f) { - this.initialdepth = 4; - this.depth = 8; - this.f = f; - this.box = null; - this.draw = function() { - if (this.box == null) { - this.box = this.bbox; - } - this.g = function(p) { - return this.f(p) - this.k; - } - this.ctx.save(); - this.ctx.lineWidth = this.lineWidth; - this.ctx.strokeStyle = this.strokeColor; - this.ctx.beginPath(); - var root = new QuadTree([[this.box[0], this.box[1]], - [this.box[2], this.box[1]], - [this.box[2], this.box[2]], - [this.box[0], this.box[2]]], this.depth); - var tree = [root] - for (var i = 0; i < this.initialdepth; i++) { - var newtree = [] - for (var j = 0; j < tree.length; j++) { - var quad = tree[j].subdivide(); - newtree = newtree.concat(tree[j].subdivide()); - } - tree = newtree; - } - while (tree.length > 0) { - var node = tree[0]; - tree.splice(0, 1); - if (node.depth == 0) { - node.draw(this); - } else if (node.intersects(this)) { - tree = tree.concat(node.subdivide()); - } - - } - this.ctx.stroke(); - this.ctx.restore(); - } -} -Implicit.prototype = new Plotable(); - -function Vector(head) { - this.head = head - this.tail = [0,0]; - this.arrowWidth = 2; - this.sw = 5 - this.hw = 2.5*this.sw; // was 3.6 - this.A = 24*Math.PI/180.0; - this.B = 60*Math.PI/180.0; // was 60 - this.draw = function() { - this.ctx.save(); - this.ctx.beginPath(); - - var p0 = this.transform.transformPoint(this.tail); - var p1 = this.transform.transformPoint(this.head); - var dx = p1[0] - p0[0]; - var dy = p1[1] - p0[1]; - var L = Math.sqrt(dx*dx + dy*dy); - var xA = L - 0.5*this.hw/Math.tan(this.A); - var xB = xA + 0.5*(this.hw - this.sw)/Math.tan(this.B); - this.ctx.translate(p0[0], p0[1]); - this.ctx.rotate(Math.atan2(dy, dx)); - - this.ctx.moveTo(0, -0.5*this.sw); - this.ctx.lineTo(xB,-0.5*this.sw); - this.ctx.lineTo(xA,-0.5*this.hw); - this.ctx.lineTo(L, 0); - this.ctx.lineTo(xA, 0.5*this.hw); - this.ctx.lineTo(xB, 0.5*this.sw); - this.ctx.lineTo(0, 0.5*this.sw); - this.ctx.closePath(); - this.fill(); - this.stroke(); - this.ctx.restore(); - } - - this.hit = function(x,y) { - var tail = this.transform.transformPoint(this.tail); - var head = this.transform.transformPoint(this.head); - var dy = head[1] - tail[1]; - var dx = head[0] - tail[0]; - var af = new AffineTransform(); - af.translate(tail); - af.rotate(Math.atan2(dy, dx)); - var p = af.inverseTransformPoint([x,y]); - var L = Math.sqrt(dx*dx + dy*dy); - var xA = L - 0.5*this.hw/Math.tan(this.A); - var maxY = Math.tan(this.A)*(L-p[0]); - if (p[0] > L || p[0] < xA) return false; - if (Math.abs(p[1]) > maxY) return false; - return true; - } -} -Vector.prototype = new Plotable(); - -var getColor = function(r,g,b) { - return 'rgb(' + Math.floor(r) + ',' + - Math.floor(g) + ',' + - Math.floor(b) + ')'; -} - -var timer = null; -var startAnimation = function(update, interval) { - if (timer != null) return; - timer = setInterval(update, interval); -} -var stopAnimation = function() { - if (timer != null) { - clearTimeout(timer); - } - timer = null; -} - - - - +function Canvas(id, bbox) { + this.id = id + var element = document.getElementById(id); + this.elem = element; + this.ctx = element.getContext("2d"); + + this.backgroundColor = "white"; + + this.plotables = [] + element.moveables = [] + element.moving = null; + element.container = this; + + this.setBackground = function(color) { + backgroundColor = color; + } + + this.addPlotable = function(p) { + if (!Array.isArray(p)) { + var p = [p]; + } + for (var i in p) { + this.plotables.push(p[i]); + p[i].setContext( + this.transform, + this.ctx, + this.bbox + ); + } + } + this.addMoveable = function(m) { + if (!Array.isArray(m)) { + m = [m]; + } + for (i in m) { + element.moveables.push(m[i]); + } + } + + this.removeAllPlotables = function() { + this.plotables = []; + element.moveables = []; + } + + this.resetPlotables = function() { + for (var i = 0; i < this.plotables.length; i++) { + this.plotables[i].setContext(this.transform, this.ctx, this.bbox); + } + } + + this.draw = function() { + this.ctx.clearRect(0,0,element.width,element.height); + this.ctx.fillStyle = this.backgroundColor; + this.ctx.fillRect(0,0,element.width,element.height); + this.ctx.fillStyle = "black"; + for (i in this.plotables) { + var p = this.plotables[i]; + p.draw(); + } + } + + this.margins = [0,0,0,0] + this.transform = new AffineTransform(); + + this.setUpCoordinates = function(bbox) { + this.transform = new AffineTransform(); + var sx = (element.width-this.margins[0]-this.margins[2]) / + (this.bbox[2] - this.bbox[0]); + var sy = (element.height-this.margins[1]-this.margins[3]) / + (this.bbox[3] - this.bbox[1]); + this.transform.translate([this.margins[0], + element.height-this.margins[1]]); + this.transform.scale([sx, -sy]); + this.transform.translate([-this.bbox[0], -this.bbox[1]]); + } + + this.bbox = bbox; + this.setUpCoordinates(bbox); + + element.onmousedown = function(event) { + var x = event.offsetX; + var y = event.offsetY; + for (i in this.moveables) { + if (this.moveables[i].hit(x,y)) { + this.moving = this.moveables[i]; + var p = this.container.transform.inverseTransformPoint([x,y]); + this.moving.move(p); + return; + } + } + + } + element.onmousemove = function(event) { + if (this.moving == null) return; + var x = event.offsetX; + var y = event.offsetY; + var p = this.container.transform.inverseTransformPoint([x,y]); + this.moving.move(p); + + } + element.onmouseup = function(event) { + if (this.moving == null) return; + var x = event.offsetX; + var y = event.offsetY; + var p = this.container.transform.inverseTransformPoint([x,y]); + this.moving.move(p); + this.moving = null; + + } + element.onmouseout = function(event) { + this.moving = null; + } +} + +function AffineTransform() { + this.matrix = [[1,0,0], [0,1,0], [0,0,1]] + this.inverse = [[1,0,0], [0,1,0], [0,0,1]] + var multiply = function(m1, m2) { + r = [[0,0,0], [0,0,0], [0,0,0]] + for (var i = 0; i < m1.length; i++) { + for (var j = 0; j < m2[0].length; j++) { + for (var k = 0; k < m2.length; k++) { + r[i][j] += m1[i][k] * m2[k][j] + } + } + } + return r; + } + var multiplyVector = function(m, v) { + var p = [0, 0, 0]; + for (var i = 0; i < m.length; i++) { + for (var j = 0; j < v.length; j++) { + p[i] += m[i][j] * v[j]; + } + } + return p.slice(0, v.length); + } + this.printMatrix = function() { + console.log(this.matrix[0]); + console.log(this.matrix[1]); + } + this.compose = function(transform) { + this.matrix = multiply(this.matrix, transform.matrix); + this.inverse = multiply(transform.inverse, this.inverse); + } + this.scale = function(s) { + var sx = s[0]; + var sy = s[0]; + if (s.length == 2) sy = s[1]; + var af = new AffineTransform(); + af.matrix = [[sx, 0, 0], [0, sy, 0], [0,0,1]]; + af.inverse = [[1.0/sx, 0, 0], [0, 1.0/sy, 0], [0,0,1]]; + this.compose(af); + } + this.translate = function(t) { + var tx = t[0]; + var ty = t[1]; + var af = new AffineTransform(); + af.matrix = [[1, 0, tx], [0, 1, ty], [0,0,1]]; + af.inverse = [[1, 0, -tx], [0, 1.0, -ty], [0,0,1]]; + this.compose(af); + } + this.rotate = function(angle) { + var af = new AffineTransform(); + af.matrix = [[Math.cos(angle), -Math.sin(angle), 0], + [Math.sin(angle), Math.cos(angle), 0], + [0,0,1]]; + af.inverse = [[Math.cos(angle), Math.sin(angle), 0], + [-Math.sin(angle), Math.cos(angle), 0], + [0,0,1]]; + this.compose(af); + } + this.rotateDeg = function(angle) { + this.rotate(angle * Math.PI / 180.0); + } + this.transformPoint = function(p) { + p = p.slice(0); + p.push(1); + p = multiplyVector(this.matrix, p) + return p.slice(0,2); + } + this.inverseTransformPoint = function(p) { + p = p.slice(0); + p.push(1); + p = multiplyVector(this.inverse, p); + return p.slice(0,2); + } +} + +function Plotable() { + this.fillColor = "black"; + this.strokeColor = "black"; + this.lineWidth = 1; + this.lineDash = null; + this.transform = null; + this.ctx = null; + this.bbox = null; + this.fontsize = 14; + this.font = this.fontsize + "px Arial"; + this.setContext = function(t, c, b) { + this.transform = t; + this.ctx = c; + this.bbox = b; + } + this.moveTo = function(p) { + p = this.transform.transformPoint(p); + this.ctx.moveTo(p[0], p[1]); + } + this.lineTo = function(p) { + p = this.transform.transformPoint(p); + this.ctx.lineTo(p[0], p[1]); + } + this.textAt = function(s, p, offset, align) { + this.ctx.save(); + p = this.transform.transformPoint(p); + this.ctx.translate(p[0], p[1]); + this.ctx.translate(offset[0], offset[1]); + this.ctx.font = this.font; + this.ctx.textAlign = align; + this.ctx.fillText(s, 0, 0); + this.ctx.restore(); + } + this.fill = function() { + if (this.fillColor != null) { + this.ctx.fillStyle = this.fillColor; + this.ctx.fill(); + } + } + this.stroke = function() { + if (this.strokeColor != null) { + this.ctx.lineWidth = this.lineWidth; + this.ctx.strokeStyle = this.strokeColor; + if (this.lineDash != null) this.ctx.setLineDash(this.lineDash); + this.ctx.stroke(); + } + } +} + +function Label(s, p) { + this.s = s; + this.p = p; + this.offset = [0,0]; + this.align = "center" + this.font = "italic 14px arial"; + this.draw = function() { + this.ctx.save(); + p = this.transform.transformPoint(this.p); + this.ctx.translate(p[0], p[1]); + this.ctx.translate(this.offset[0], -this.offset[1]); + this.ctx.font = this.font; + this.ctx.fillStyle = this.color; + this.ctx.textAlign = this.align; + this.ctx.fillText(s, 0, 0); + this.ctx.restore(); + } +} +Label.prototype = new Plotable(); + +function Grid(rx, ry) { + this.rx = rx; + this.ry = ry; + this.strokeColor = "lightgray"; + this.draw = function() { + this.ctx.save(); + this.ctx.strokeStyle = this.strokeColor; + this.ctx.lineWidth = this.lineWidth; + this.ctx.beginPath(); + for (var x = this.rx[0]; x <= this.rx[2]; x += this.rx[1]) { + this.moveTo([x, this.bbox[1]]); + this.lineTo([x, this.bbox[3]]); + } + for (var y = this.ry[0]; y <= this.ry[2]; y += this.ry[1]) { + this.moveTo([this.bbox[0], y]); + this.lineTo([this.bbox[2], y]); + } + this.ctx.stroke(); + this.ctx.restore(); + } +} + +Grid.prototype = new Plotable(); + +function TGrid(a1, a2) { + this.a1 = a1; + this.a2 = a2; + this.strokeColor = "lightgray"; + this.draw = function() { + this.ctx.save(); + this.ctx.strokeStyle = this.strokeColor; + this.ctx.lineWidth = this.lineWidth; + + this.ctx.beginPath() + this.moveTo([this.bbox[0], this.bbox[1]]); + this.lineTo([this.bbox[2], this.bbox[1]]); + this.lineTo([this.bbox[2], this.bbox[3]]); + this.lineTo([this.bbox[0], this.bbox[3]]); + this.ctx.closePath(); + this.ctx.clip(); + + this.ctx.beginPath(); + var num = 100; + for (var i = -num; i <= num; i++) { + this.moveTo(vadd(smult(i, this.a1), smult(-num,this.a2))); + this.lineTo(vadd(smult(i, this.a1), smult(num,this.a2))); + } + for (var i = -num; i <= num; i++) { + this.moveTo(vadd(smult(i, this.a2), smult(-num,this.a1))); + this.lineTo(vadd(smult(i, this.a2), smult(num,this.a1))); + } + + this.ctx.stroke(); + this.ctx.restore(); + } +} +TGrid.prototype = new Plotable(); + +function Axes() { + this.ticks = null; + this.labels = null; + this.draw = function() { + this.ctx.save(); + this.ctx.strokeStyle = this.strokeColor; + this.ctx.beginPath(); + this.moveTo([this.bbox[0], 0]); + this.lineTo([this.bbox[2], 0]); + this.moveTo([0, this.bbox[1]]); + this.lineTo([0, this.bbox[3]]); + this.ctx.stroke(); + + if (this.ticks != null) { + if (this.ticks[0] != null) this.drawHTicks(); + if (this.ticks[1] != null) this.drawVTicks(); + } + if (this.labels != null) { + if (this.labels[0] != null) this.drawHLabels(); + if (this.labels[1] != null) this.drawVLabels(); + } + this.ctx.restore(); + } + + var ticksize = 4; + this.drawHTicks = function() { + for (var x = this.ticks[0][0]; x <= this.ticks[0][2]; + x += this.ticks[0][1]) { + if (Math.abs(x) < 1e-10) continue; + this.ctx.save(); + var p = this.transform.transformPoint([x, 0]); + this.ctx.translate(p[0], p[1]); + this.ctx.lineWidth = 2; + this.ctx.beginPath(); + this.ctx.moveTo(0, -ticksize); + this.ctx.lineTo(0, ticksize); + this.ctx.stroke(); + this.ctx.restore(); + } + } + this.drawVTicks = function() { + for (var y = this.ticks[1][0]; y <= this.ticks[1][2]; + y += this.ticks[1][1]) { + if (Math.abs(y) < 1e-10) continue; + this.ctx.save(); + var p = this.transform.transformPoint([0, y]); + this.ctx.translate(p[0], p[1]); + this.ctx.lineWidth = 2; + this.ctx.beginPath(); + this.ctx.moveTo(-ticksize,0); + this.ctx.lineTo(ticksize,0); + this.ctx.stroke(); + this.ctx.restore(); + } + } + this.drawHLabels = function() { + for (var x = this.labels[0][0]; x <= this.labels[0][2]; + x += this.labels[0][1]) { + if (Math.abs(x) < 1e-10) continue; + this.textAt(x, [x,0], [0, ticksize + this.fontsize], "center"); + } + } + this.drawVLabels = function() { + for (var y = this.labels[1][0]; y <= this.labels[1][2]; + y += this.labels[1][1]) { + if (Math.abs(y) < 1e-10) continue; + this.textAt(y, [0,y], [-ticksize-2,this.fontsize/2.0-2], "right"); + } + + } +} +Axes.prototype = new Plotable(); + +function Slider(rx, y, sx, update) { + this.rx = rx; // coordinates in canvas + this.y = y; + this.sx = sx; // coordinates of slider + this.ratioPerPix = (sx[1]-sx[0])/(rx[1]-rx[0]) + this.point = new Point([rx[0], y]); + this.update = update; + this.init = function(x) { + this.point.point = [this.toPix(x),this.y]; + } + this.toPix = function(x) { + return (x-this.sx[0])/this.ratioPerPix + this.rx[0]; + } + this.fromPix = function(x) { + return (x-this.rx[0])*this.ratioPerPix + this.sx[0]; + } + this.draw = function() { + this.ctx.save(); + this.ctx.beginPath(); + this.moveTo([this.rx[0], this.y]); + this.lineTo([this.rx[1], this.y]); + this.stroke(); + if (this.ticks != null) this.drawTicks(); + if (this.labels != null) this.drawLabels(); + this.point.ctx = this.ctx; + this.point.transform = this.transform; + this.point.draw(); + this.ctx.restore(); + } + this.hit = function(x, y) { + return this.point.hit(x,y); + } + this.move = function(p) { + var x = p[0]; + if (x < this.rx[0] || x > this.rx[1]) return; + this.point.point = [x, this.y] + this.update(); + } + this.coordinate = function() { + return this.fromPix(this.point.point[0]); + } + var ticksize = 4; + this.drawTicks = function() { + for (var x = this.ticks[0]; x <= this.ticks[2]; + x += this.ticks[1]) { + this.ctx.save(); + var p = this.transform.transformPoint([this.toPix(x), this.y]); + this.ctx.translate(p[0], p[1]); + this.ctx.lineWidth = 2; + this.ctx.beginPath(); + this.ctx.moveTo(0, -ticksize); + this.ctx.lineTo(0, ticksize); + this.ctx.stroke(); + this.ctx.restore(); + } + } + this.drawLabels = function() { + for (var x = this.labels[0]; x <= this.labels[2]; + x += this.labels[1]) { + this.textAt(x, [this.toPix(x),this.y], + [0, ticksize + this.fontsize], "center"); + } + } +} +Slider.prototype = new Plotable(); + +function VSlider(x, ry, sy, update) { + this.x = x; + this.ry = ry; // coordinates in canvas + this.sy = sy; // coordinates of slider + this.ratioPerPix = (sy[1]-sy[0])/(ry[1]-ry[0]) + this.point = new Point([x, ry[0]]); + this.update = update; + this.init = function(y) { + this.point.point = [this.x, this.toPix(y)]; + } + this.toPix = function(y) { + return (y-this.sy[0])/this.ratioPerPix + this.ry[0]; + } + this.fromPix = function(y) { + return (y-this.ry[0])*this.ratioPerPix + this.sy[0]; + } + this.draw = function() { + this.ctx.save(); + this.ctx.beginPath(); + this.moveTo([this.x, this.ry[0]]); + this.lineTo([this.x, this.ry[1]]); + this.stroke(); + if (this.ticks != null) this.drawTicks(); + if (this.labels != null) this.drawLabels(); + this.point.ctx = this.ctx; + this.point.transform = this.transform; + this.point.draw(); + this.ctx.restore(); + } + this.hit = function(x, y) { + return this.point.hit(x,y); + } + this.move = function(p) { + var y = p[1]; + if (y < this.ry[0] || y > this.ry[1]) return; + this.point.point = [this.x, y] + this.update(); + } + this.coordinate = function() { + return this.fromPix(this.point.point[1]); + } + var ticksize = 4; + this.drawTicks = function() { + for (var y = this.ticks[0]; y <= this.ticks[2]; + y += this.ticks[1]) { + this.ctx.save(); + var p = this.transform.transformPoint([this.x, this.toPix(y)]); + this.ctx.translate(p[0], p[1]); + this.ctx.lineWidth = 2; + this.ctx.beginPath(); + this.ctx.moveTo(-ticksize, 0); + this.ctx.lineTo(ticksize, 0); + this.ctx.stroke(); + this.ctx.restore(); + } + } + this.drawLabels = function() { + for (var y = this.labels[0]; y <= this.labels[2]; + y += this.labels[1]) { + this.textAt(y, [this.x, this.toPix(y)], + [-10, 5], "center"); + } + } +} +VSlider.prototype = new Plotable(); + +function Function(f) { + this.f = f; + this.dx = 0.0001; + this.value = function(x) { + return this.f(x); + } + this.derivative = function(x) { + return (this.f(x+this.dx) - this.f(x-this.dx)) / (2*this.dx); + } + this.secondDerivative = function(x) { + return (this.f(x+this.dx) - 2*this.f(x) + this.f(x-this.dx))/ + (this.dx*this.dx) + } + this.integral = function(x, a) { + var N = 64; + var h = (x - a)/N; + var x = a; + var sum = 0; + for (var i = 0; i < N/2; i++ ) { + sum += this.f(x) + 4*this.f(x+h) + this.f(x+2*h); + x += 2*h; + } + return sum*h/3.0; + } +} +function Antiderivative(f, a) { + this.f = f; + this.a = a; + this.value = function(x) { + return this.f.integral(x, this.a); + } +} +Antiderivative.prototype = new Function(); + +function Graph(f) { + this.f = f; + this.domain = null; + this.N = 100; + this.draw = function() { + if (this.domain == null) { + this.domain = [this.bbox[0], this.bbox[2]]; + } + var x = this.domain[0]; + var dx = (this.domain[1] - this.domain[0])/this.N; + this.ctx.save(); + this.ctx.beginPath(); + this.moveTo([x, this.f.value(x)]); + for (var i = 0; i < this.N; i++) { + x += dx; + this.lineTo([x,this.f.value(x)]); + } + this.ctx.lineWidth = this.lineWidth; + this.ctx.strokeStyle = this.strokeColor; + if (this.lineDash != null) this.ctx.setLineDash(this.lineDash); + this.ctx.stroke(); + this.ctx.restore(); + } +} +Graph.prototype = new Plotable(); + +function ParametricCurve(x, y, domain) { + this.x = x; + this.y = y; + this.N = 100; + this.domain = domain; + this.draw = function() { + var t = this.domain[0]; + var dt = (this.domain[1]-this.domain[0])/this.N; + this.ctx.save(); + this.ctx.beginPath(); + this.moveTo([this.x(t), this.y(t)]); + for (var i = 0; i < this.N; i++) { + t += dt + this.lineTo([this.x(t), this.y(t)]); + } + this.stroke(); + this.ctx.restore(); + } +} +ParametricCurve.prototype = new Plotable(); + +function Rectangle(ll, dims) { + this.ll = ll; + this.dims = dims; + this.filled = true; + this.draw = function() { + var ur = vadd(this.ll, this.dims); + this.ctx.save(); + this.ctx.beginPath(); + this.moveTo(this.ll); + this.lineTo([ur[0], this.ll[1]]); + this.lineTo(ur); + this.lineTo([this.ll[0], ur[1]]); + this.ctx.closePath(); + if (this.filled) this.fill(); + this.stroke(); + this.ctx.restore(); + } +} +Rectangle.prototype = new Plotable(); + +function Polygon(points) { + this.points = points; + this.draw = function() { + this.ctx.save(); + this.ctx.beginPath(); + this.moveTo(this.points[0]); + for (var i = 1; i < this.points.length; i++) { + this.lineTo(this.points[i]); + } + this.ctx.closePath(); + this.fill(); + this.stroke(); + this.ctx.restore(); + } +} +Polygon.prototype = new Plotable(); + +function AreaBetweenCurves(f) { + this.f = f; + this.g = function(x) {return 0}; + this.N = 100; + this.domain = null; + this.draw = function() { + if (this.domain == null) { + this.domain = [this.bbox[0], this.bbox[2]]; + } + if (this.domain[1] == this.domain[0]) return; + var x = this.domain[0]; + var dx = (this.domain[1] - this.domain[0])/this.N; + this.ctx.save(); + this.ctx.beginPath(); + this.moveTo([x, this.f(x)]); + for (var i = 0; i < this.N; i++) { + x += dx; + this.lineTo([x,this.f(x)]); + } + this.lineTo([x, this.g(x)]); + for (var i = 0; i < this.N; i++) { + x -= dx; + this.lineTo([x,this.g(x)]); + } + this.ctx.closePath(); + if (this.fillColor != null) { + this.ctx.fillStyle = this.fillColor; + this.ctx.fill(); + } + if (this.strokeColor != null) { + this.ctx.lineWidth = this.lineWidth; + this.ctx.strokeStyle = this.strokeColor; + this.ctx.stroke(); + } + this.ctx.restore(); + } +} +AreaBetweenCurves.prototype = new Plotable(); + +var vadd = function(u,v) { + var r = [] + for (var i = 0; i < u.length; i++) { + r.push(u[i] + v[i]); + } + return r +} +var vdiff = function(u,v) { + var r = [] + for (var i = 0; i < u.length; i++) { + r.push(u[i] - v[i]); + } + return r +} +var smult = function(s,u) { + var r = [] + for (var i = 0; i < u.length; i++) { + r.push(s*u[i]); + } + return r +} +var dot = function(u,v) { + var dot = 0; + for (var i = 0; i < u.length; i++) { + dot += u[i]*v[i]; + } + return dot; +} +var vlength = function(u) { + return Math.sqrt(dot(u,u)); +} +var midpoint = function(u,v) { + return smult(0.5, vadd(u,v)); +} + +var pointOnLine = function(p, t, q) { + d = vdiff(q, p); + return vadd(p, smult(t, d)); +} +var isInBbox = function(p, bbox) { + if (p[0] < bbox[0] || p[0] > bbox[2] || p[1] < bbox[1] || p[1] > bbox[3]) + return false; + return true; +} +function Line(p0, p1) { + this.p0 = p0; + this.p1 = p1; + this.infinite = false; + this.draw = function() { + var t0 = 0; + var t1 = 1; + if (this.infinite) { + while (isInBbox(pointOnLine(this.p0, t1, this.p1), this.bbox)) { + t1++; + } + while (isInBbox(pointOnLine(this.p0, t0, this.p1), this.bbox)) { + t0--; + } + } + this.ctx.save(); + this.ctx.lineWidth = this.lineWidth; + this.ctx.strokeStyle = this.strokeColor; + if (this.lineDash != null) this.ctx.setLineDash(this.lineDash); + this.ctx.beginPath(); + this.moveTo(pointOnLine(this.p0, t0, this.p1)); + this.lineTo(pointOnLine(this.p0, t1, this.p1)); + this.ctx.stroke(); + this.ctx.restore(); + } +} +Line.prototype = new Plotable(); + +function Point(p) { + this.point = p; + this.size = 3; + this.style = "circle" + this.draw = function() { + var p = this.transform.transformPoint(this.point); + this.ctx.save(); + this.ctx.translate(p[0], p[1]); + this.ctx.beginPath(); + if (this.style == "circle") { + this.ctx.arc(0,0,this.size, 0, 2*Math.PI); + this.ctx.closePath(); + } else if (this.style == "box") { + this.ctx.moveTo(-this.size, -this.size); + this.ctx.lineTo(this.size, -this.size); + this.ctx.lineTo(this.size, this.size); + this.ctx.lineTo(-this.size, this.size); + this.ctx.closePath(); + } else if (this.style == "rect") { + this.ctx.moveTo(-this.width, -this.height); + this.ctx.lineTo(this.width, -this.height); + this.ctx.lineTo(this.width, this.height); + this.ctx.lineTo(-this.width, this.height); + this.ctx.closePath(); + } + if (this.fillColor != null) { + this.ctx.fillStyle = this.fillColor; + this.ctx.fill(); + } + if (this.strokeColor != null) { + this.ctx.strokeStyle = this.strokeColor; + this.ctx.lineWidth = this.lineWidth; + this.ctx.stroke(); + } + if (this.style == "rect" && this.centerLine) { + this.ctx.beginPath(); + this.ctx.moveTo(0, this.height); + this.ctx.lineTo(0, -this.height); + this.ctx.stroke(); + } + this.ctx.restore(); + } + this.hit = function(x,y) { + var p = this.transform.transformPoint(this.point); + var dx = x-p[0]; + var dy = y-p[1] + if (this.style == "circle") { + return Math.sqrt(dx*dx + dy*dy) <= this.size; + } else if (this.style == "box") { + return Math.abs(dx) <= this.size && Math.abs(dy) <= this.size; + } else if (this.style == "rect") { + return Math.abs(dx) <= this.width && Math.abs(dy) <= this.height; + } + return false; + if (this.fillColor != null) { + this.ctx.fillStyle = this.fillColor; + this.ctx.fill(); + } + if (this.strokeColor != null) { + this.ctx.strokeStyle = this.strokeColor; + this.ctx.stroke(); + } + } +} +Point.prototype = new Plotable(); + +function Ellipse(center, a, b) { + this.center = center; + this.a = a; + this.b = b; + this.N = 100; + this.draw = function() { + this.ctx.save(); + this.ctx.beginPath(); + var theta = 0; + var dtheta = 2*Math.PI/this.N; + this.moveTo(vadd(this.center, + [this.a*Math.cos(theta) , this.b*Math.sin(theta)])) + for (var i = 0; i < this.N; i++) { + theta += dtheta; + this.lineTo(vadd(this.center, + [this.a*Math.cos(theta) , this.b*Math.sin(theta)])) + } + this.ctx.closePath(); + this.fill(); + this.stroke(); + this.ctx.restore(); + } +} +Ellipse.prototype = new Plotable() +function Circle(center, radius) { + this.center = center; + this.a = radius; + this.b = radius; +} +Circle.prototype = new Ellipse(); +function QuadTree(corners, depth) { + this.corners = corners; + this.depth = depth; + this.subdivide = function() { + var bottom = midpoint(this.corners[0], this.corners[1]); + var top = midpoint(this.corners[2], this.corners[3]); + var left = midpoint(this.corners[0], this.corners[3]); + var right = midpoint(this.corners[1], this.corners[2]); + var mid = midpoint(bottom, top); + var quad = [] + quad.push(new QuadTree([this.corners[0], bottom, mid, left], + this.depth-1)); + quad.push(new QuadTree([bottom, this.corners[1], right, mid], + this.depth-1)); + quad.push(new QuadTree([left, mid, top, this.corners[3]], + this.depth-1)); + quad.push(new QuadTree([mid, right, this.corners[2], top], + this.depth-1)); + return quad; + } + this.intersects = function(ctx) { + var sign = ctx.g(this.corners[3]); + for (var i = 0; i < 4; i++) { + var nextsign = ctx.g(this.corners[i]); + if (sign * nextsign <= 0) return true; + sign = nextsign; + } + return false; + } + this.findzero = function(p1, p2, ctx) { + var dx = p2[0] - p1[0]; + var dy = p2[1] - p1[1]; + var dt; + var nextp + change = 0.00001 + if (dx != 0) { + dx = change * Math.abs(dx) / dx; + dy = 0; + dt = dx + } else { + dy = change * Math.abs(dy) / dy; + dx = 0; + dt = dy; + } + var p = p1; + var diff = 1; + var N = 0; + while (Math.abs(diff) > 0.000001 && N < 50) { + var f = ctx.g(p); + if (f == 0) break; + var df = (ctx.g(vadd(p, [dx,dy]))-f)/dt; + diff = f/df; + if (dx != 0) { + nextp = vdiff(p, [diff,0]); + } else { + nextp = vdiff(p, [0, diff]); + } + N ++; + p = nextp; + } + return p + } + this.draw = function(ctx) { + var corner = this.corners[3]; + var sign = ctx.g(corner); + var lastZero = null; + for (var i = 0; i < 4; i++) { + var nextcorner = this.corners[i]; + var nextsign = ctx.g(nextcorner); + if (sign == 0 && nextsign == 0) { + ctx.moveTo(corner); + ctx.lineTo(nextcorner); + } else if (sign * nextsign <= 0) { + if (lastZero == null) { + lastZero = this.findzero(corner, nextcorner, ctx); + } else { + var thisZero = this.findzero(corner, nextcorner, ctx); + ctx.moveTo(lastZero); + ctx.lineTo(thisZero); + lastZero = thisZero; + } + } + corner = nextcorner; + sign = nextsign; + + } + } +} + +function Implicit(f) { + this.initialdepth = 4; + this.depth = 8; + this.f = f; + this.box = null; + this.draw = function() { + if (this.box == null) { + this.box = this.bbox; + } + this.g = function(p) { + return this.f(p) - this.k; + } + this.ctx.save(); + this.ctx.lineWidth = this.lineWidth; + this.ctx.strokeStyle = this.strokeColor; + this.ctx.beginPath(); + var root = new QuadTree([[this.box[0], this.box[1]], + [this.box[2], this.box[1]], + [this.box[2], this.box[2]], + [this.box[0], this.box[2]]], this.depth); + var tree = [root] + for (var i = 0; i < this.initialdepth; i++) { + var newtree = [] + for (var j = 0; j < tree.length; j++) { + var quad = tree[j].subdivide(); + newtree = newtree.concat(tree[j].subdivide()); + } + tree = newtree; + } + while (tree.length > 0) { + var node = tree[0]; + tree.splice(0, 1); + if (node.depth == 0) { + node.draw(this); + } else if (node.intersects(this)) { + tree = tree.concat(node.subdivide()); + } + + } + this.ctx.stroke(); + this.ctx.restore(); + } +} +Implicit.prototype = new Plotable(); + +function Vector(head) { + this.head = head + this.tail = [0,0]; + this.arrowWidth = 2; + this.sw = 5 + this.hw = 2.5*this.sw; // was 3.6 + this.A = 24*Math.PI/180.0; + this.B = 60*Math.PI/180.0; // was 60 + this.draw = function() { + this.ctx.save(); + this.ctx.beginPath(); + + var p0 = this.transform.transformPoint(this.tail); + var p1 = this.transform.transformPoint(this.head); + var dx = p1[0] - p0[0]; + var dy = p1[1] - p0[1]; + var L = Math.sqrt(dx*dx + dy*dy); + var xA = L - 0.5*this.hw/Math.tan(this.A); + var xB = xA + 0.5*(this.hw - this.sw)/Math.tan(this.B); + this.ctx.translate(p0[0], p0[1]); + this.ctx.rotate(Math.atan2(dy, dx)); + + this.ctx.moveTo(0, -0.5*this.sw); + this.ctx.lineTo(xB,-0.5*this.sw); + this.ctx.lineTo(xA,-0.5*this.hw); + this.ctx.lineTo(L, 0); + this.ctx.lineTo(xA, 0.5*this.hw); + this.ctx.lineTo(xB, 0.5*this.sw); + this.ctx.lineTo(0, 0.5*this.sw); + this.ctx.closePath(); + this.fill(); + this.stroke(); + this.ctx.restore(); + } + + this.hit = function(x,y) { + var tail = this.transform.transformPoint(this.tail); + var head = this.transform.transformPoint(this.head); + var dy = head[1] - tail[1]; + var dx = head[0] - tail[0]; + var af = new AffineTransform(); + af.translate(tail); + af.rotate(Math.atan2(dy, dx)); + var p = af.inverseTransformPoint([x,y]); + var L = Math.sqrt(dx*dx + dy*dy); + var xA = L - 0.5*this.hw/Math.tan(this.A); + var maxY = Math.tan(this.A)*(L-p[0]); + if (p[0] > L || p[0] < xA) return false; + if (Math.abs(p[1]) > maxY) return false; + return true; + } +} +Vector.prototype = new Plotable(); + +var getColor = function(r,g,b) { + return 'rgb(' + Math.floor(r) + ',' + + Math.floor(g) + ',' + + Math.floor(b) + ')'; +} + +var timer = null; +var startAnimation = function(update, interval) { + if (timer != null) return; + timer = setInterval(update, interval); +} +var stopAnimation = function() { + if (timer != null) { + clearTimeout(timer); + } + timer = null; +} + + + + diff --git a/assets/interactives/index.html b/assets/interactives/index.html index 90144c77..20a3864e 100644 --- a/assets/interactives/index.html +++ b/assets/interactives/index.html @@ -1,71 +1,71 @@ - - - - Transformations - - - -
-

Transformations

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + Transformations + + + +
+

Transformations

+
- - -
- - Your browser does not support HTML5 Canvas. - -
-
-
- - -
- - Your browser does not support HTML5 Canvas. - -
-
-
- - -
- - Your browser does not support HTML5 Canvas. - -
-
-
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/interactives/stylesheet.css b/assets/interactives/stylesheet.css index 69acfd47..27996856 100644 --- a/assets/interactives/stylesheet.css +++ b/assets/interactives/stylesheet.css @@ -1,3 +1,3 @@ -canvas { - border: 0px solid black; +canvas { + border: 0px solid black; } \ No newline at end of file diff --git a/assets/interactives/transformations copy.js b/assets/interactives/transformations copy.js index 90daf39a..7f8dc0ab 100644 --- a/assets/interactives/transformations copy.js +++ b/assets/interactives/transformations copy.js @@ -1,204 +1,204 @@ -function HTranslationDiagram() { - this.canvas = new Canvas("htranslations", [-3,-3,3,3]); - this.canvas.margins = [5,5,5,5] - this.canvas.setUpCoordinates(); - - this.scanvas = new Canvas("hslider", [-4,-1,4,1]); - this.scanvas.margins = [5,5,5,5]; - this.scanvas.setUpCoordinates(); - - this.a = 0; - - this.g = function(x) { - return 1*(Math.atan(x) - (x**2/4-2*x)*Math.exp(-x*x/3))+0.5 + - 0.25*Math.sin(x); - }.bind(this); - - this.f = function(x) { - x = x-this.a; - return this.g(x); - }.bind(this); - - var grid = new Grid([-3,0.5,3], [-3,0.5,3]); - this.canvas.addPlotable(grid); - - var axes = new Axes(); - axes.ticks= [[-3,1,3],[-3,1,3]]; - axes.labels=[[-3,1,3],[-3,1,3]]; - this.canvas.addPlotable(axes); - - var graygraph = new Graph(new Function(this.g)); - graygraph.strokeColor = "lightgray"; - graygraph.lineWidth=2; - this.canvas.addPlotable(graygraph); - - var graph = new Graph(new Function(this.f)); - graph.strokeColor = "blue"; - graph.lineWidth=2; - this.canvas.addPlotable(graph); - - this.move = function() { - this.a = this.slider.coordinate(); - this.update(); - }.bind(this); - - this.slider = new Slider([-3,3], 0, [-3,3], this.move); - this.slider.point.style = "box"; - this.slider.point.size=4; - this.slider.point.fillColor="red"; - this.slider.init(0); - this.slider.ticks=[-3,1,3]; - this.slider.labels=[-3,1,3]; - - this.scanvas.addPlotable(this.slider); - this.scanvas.addMoveable(this.slider); - - var label = new Label("b", [-3,0]); - label.offset=[-8,5]; - label.alignment="rb"; - this.scanvas.addPlotable(label); - - this.update = function() { - this.scanvas.draw(); - this.canvas.draw(); - }.bind(this); - - this.update(); -} - -function VTranslationDiagram() { - this.canvas = new Canvas("vtranslations", [-3,-3,3,3]); - this.canvas.margins = [5,5,5,5] - this.canvas.setUpCoordinates(); - - this.scanvas = new Canvas("vslider", [-4,-1,4,1]); - this.scanvas.margins = [5,5,5,5]; - this.scanvas.setUpCoordinates(); - - this.a = 0; - - this.g = function(x) { - return 1*(Math.atan(x) - (x**2/4-2*x)*Math.exp(-x*x/3))+0.5 + - 0.25*Math.sin(x); - }.bind(this); - - this.f = function(x) { - return this.g(x) + this.a; - }.bind(this); - - var grid = new Grid([-3,0.5,3], [-3,0.5,3]); - this.canvas.addPlotable(grid); - - var axes = new Axes(); - axes.ticks= [[-3,1,3],[-3,1,3]]; - axes.labels=[[-3,1,3],[-3,1,3]]; - this.canvas.addPlotable(axes); - - var graygraph = new Graph(new Function(this.g)); - graygraph.strokeColor = "lightgray"; - graygraph.lineWidth=2; - this.canvas.addPlotable(graygraph); - - var graph = new Graph(new Function(this.f)); - graph.strokeColor = "blue"; - graph.lineWidth=2; - this.canvas.addPlotable(graph); - - this.move = function() { - this.a = this.slider.coordinate(); - this.update(); - }.bind(this); - - this.slider = new Slider([-3,3], 0, [-3,3], this.move); - this.slider.point.style = "box"; - this.slider.point.size=4; - this.slider.point.fillColor="red"; - this.slider.init(0); - this.slider.ticks=[-3,1,3]; - this.slider.labels=[-3,1,3]; - - this.scanvas.addPlotable(this.slider); - this.scanvas.addMoveable(this.slider); - - var label = new Label("a", [-3,0]); - label.offset=[-8,5]; - label.alignment="rb"; - this.scanvas.addPlotable(label); - - this.update = function() { - this.scanvas.draw(); - this.canvas.draw(); - }.bind(this); - - this.update(); -} - -function StretchingDiagram() { - this.canvas = new Canvas("stretching", [-3,-3,3,3]); - this.canvas.margins = [5,5,5,5] - this.canvas.setUpCoordinates(); - - this.scanvas = new Canvas("sslider", [-4,-1,4,1]); - this.scanvas.margins = [5,5,5,5]; - this.scanvas.setUpCoordinates(); - - this.a = 1; - - this.g = function(x) { - return Math.abs(x-1)-1; - }.bind(this); - - this.f = function(x) { - return this.a * this.g(x); - }.bind(this); - - var grid = new Grid([-3,0.5,3], [-3,0.5,3]); - this.canvas.addPlotable(grid); - - var axes = new Axes(); - axes.ticks= [[-3,1,3],[-3,1,3]]; - axes.labels=[[-3,1,3],[-3,1,3]]; - this.canvas.addPlotable(axes); - - var graygraph = new Graph(new Function(this.g)); - graygraph.strokeColor = "lightgray"; - graygraph.lineWidth=2; - this.canvas.addPlotable(graygraph); - - var graph = new Graph(new Function(this.f)); - graph.strokeColor = "blue"; - graph.lineWidth=2; - this.canvas.addPlotable(graph); - - this.move = function() { - this.a = this.slider.coordinate(); - this.update(); - }.bind(this); - - this.slider = new Slider([-3,3], 0, [-3,3], this.move); - this.slider.point.style = "box"; - this.slider.point.size=4; - this.slider.point.fillColor="red"; - this.slider.init(1); - this.slider.ticks=[-3,1,3]; - this.slider.labels=[-3,1,3]; - - this.scanvas.addPlotable(this.slider); - this.scanvas.addMoveable(this.slider); - - var label = new Label("c", [-3,0]); - label.offset=[-8,5]; - label.alignment="rb"; - this.scanvas.addPlotable(label); - - this.update = function() { - this.scanvas.draw(); - this.canvas.draw(); - }.bind(this); - - this.update(); -} - -new HTranslationDiagram(); -new VTranslationDiagram(); -new StretchingDiagram(); +function HTranslationDiagram() { + this.canvas = new Canvas("htranslations", [-3,-3,3,3]); + this.canvas.margins = [5,5,5,5] + this.canvas.setUpCoordinates(); + + this.scanvas = new Canvas("hslider", [-4,-1,4,1]); + this.scanvas.margins = [5,5,5,5]; + this.scanvas.setUpCoordinates(); + + this.a = 0; + + this.g = function(x) { + return 1*(Math.atan(x) - (x**2/4-2*x)*Math.exp(-x*x/3))+0.5 + + 0.25*Math.sin(x); + }.bind(this); + + this.f = function(x) { + x = x-this.a; + return this.g(x); + }.bind(this); + + var grid = new Grid([-3,0.5,3], [-3,0.5,3]); + this.canvas.addPlotable(grid); + + var axes = new Axes(); + axes.ticks= [[-3,1,3],[-3,1,3]]; + axes.labels=[[-3,1,3],[-3,1,3]]; + this.canvas.addPlotable(axes); + + var graygraph = new Graph(new Function(this.g)); + graygraph.strokeColor = "lightgray"; + graygraph.lineWidth=2; + this.canvas.addPlotable(graygraph); + + var graph = new Graph(new Function(this.f)); + graph.strokeColor = "blue"; + graph.lineWidth=2; + this.canvas.addPlotable(graph); + + this.move = function() { + this.a = this.slider.coordinate(); + this.update(); + }.bind(this); + + this.slider = new Slider([-3,3], 0, [-3,3], this.move); + this.slider.point.style = "box"; + this.slider.point.size=4; + this.slider.point.fillColor="red"; + this.slider.init(0); + this.slider.ticks=[-3,1,3]; + this.slider.labels=[-3,1,3]; + + this.scanvas.addPlotable(this.slider); + this.scanvas.addMoveable(this.slider); + + var label = new Label("b", [-3,0]); + label.offset=[-8,5]; + label.alignment="rb"; + this.scanvas.addPlotable(label); + + this.update = function() { + this.scanvas.draw(); + this.canvas.draw(); + }.bind(this); + + this.update(); +} + +function VTranslationDiagram() { + this.canvas = new Canvas("vtranslations", [-3,-3,3,3]); + this.canvas.margins = [5,5,5,5] + this.canvas.setUpCoordinates(); + + this.scanvas = new Canvas("vslider", [-4,-1,4,1]); + this.scanvas.margins = [5,5,5,5]; + this.scanvas.setUpCoordinates(); + + this.a = 0; + + this.g = function(x) { + return 1*(Math.atan(x) - (x**2/4-2*x)*Math.exp(-x*x/3))+0.5 + + 0.25*Math.sin(x); + }.bind(this); + + this.f = function(x) { + return this.g(x) + this.a; + }.bind(this); + + var grid = new Grid([-3,0.5,3], [-3,0.5,3]); + this.canvas.addPlotable(grid); + + var axes = new Axes(); + axes.ticks= [[-3,1,3],[-3,1,3]]; + axes.labels=[[-3,1,3],[-3,1,3]]; + this.canvas.addPlotable(axes); + + var graygraph = new Graph(new Function(this.g)); + graygraph.strokeColor = "lightgray"; + graygraph.lineWidth=2; + this.canvas.addPlotable(graygraph); + + var graph = new Graph(new Function(this.f)); + graph.strokeColor = "blue"; + graph.lineWidth=2; + this.canvas.addPlotable(graph); + + this.move = function() { + this.a = this.slider.coordinate(); + this.update(); + }.bind(this); + + this.slider = new Slider([-3,3], 0, [-3,3], this.move); + this.slider.point.style = "box"; + this.slider.point.size=4; + this.slider.point.fillColor="red"; + this.slider.init(0); + this.slider.ticks=[-3,1,3]; + this.slider.labels=[-3,1,3]; + + this.scanvas.addPlotable(this.slider); + this.scanvas.addMoveable(this.slider); + + var label = new Label("a", [-3,0]); + label.offset=[-8,5]; + label.alignment="rb"; + this.scanvas.addPlotable(label); + + this.update = function() { + this.scanvas.draw(); + this.canvas.draw(); + }.bind(this); + + this.update(); +} + +function StretchingDiagram() { + this.canvas = new Canvas("stretching", [-3,-3,3,3]); + this.canvas.margins = [5,5,5,5] + this.canvas.setUpCoordinates(); + + this.scanvas = new Canvas("sslider", [-4,-1,4,1]); + this.scanvas.margins = [5,5,5,5]; + this.scanvas.setUpCoordinates(); + + this.a = 1; + + this.g = function(x) { + return Math.abs(x-1)-1; + }.bind(this); + + this.f = function(x) { + return this.a * this.g(x); + }.bind(this); + + var grid = new Grid([-3,0.5,3], [-3,0.5,3]); + this.canvas.addPlotable(grid); + + var axes = new Axes(); + axes.ticks= [[-3,1,3],[-3,1,3]]; + axes.labels=[[-3,1,3],[-3,1,3]]; + this.canvas.addPlotable(axes); + + var graygraph = new Graph(new Function(this.g)); + graygraph.strokeColor = "lightgray"; + graygraph.lineWidth=2; + this.canvas.addPlotable(graygraph); + + var graph = new Graph(new Function(this.f)); + graph.strokeColor = "blue"; + graph.lineWidth=2; + this.canvas.addPlotable(graph); + + this.move = function() { + this.a = this.slider.coordinate(); + this.update(); + }.bind(this); + + this.slider = new Slider([-3,3], 0, [-3,3], this.move); + this.slider.point.style = "box"; + this.slider.point.size=4; + this.slider.point.fillColor="red"; + this.slider.init(1); + this.slider.ticks=[-3,1,3]; + this.slider.labels=[-3,1,3]; + + this.scanvas.addPlotable(this.slider); + this.scanvas.addMoveable(this.slider); + + var label = new Label("c", [-3,0]); + label.offset=[-8,5]; + label.alignment="rb"; + this.scanvas.addPlotable(label); + + this.update = function() { + this.scanvas.draw(); + this.canvas.draw(); + }.bind(this); + + this.update(); +} + +new HTranslationDiagram(); +new VTranslationDiagram(); +new StretchingDiagram(); diff --git a/assets/interactives/transformationsC.js b/assets/interactives/transformationsC.js index 065e39b3..2477d2bd 100644 --- a/assets/interactives/transformationsC.js +++ b/assets/interactives/transformationsC.js @@ -1,68 +1,68 @@ -function CompressingDiagram() { - this.canvas = new Canvas("compressing", [-6,-1.5,6,1.5]); - this.canvas.margins = [5,5,5,5] - this.canvas.setUpCoordinates(); - - this.scanvas = new Canvas("cslider", [-1,-1,5,1]); - this.scanvas.margins = [5,5,5,5]; - this.scanvas.setUpCoordinates(); - - this.a = 1; - - this.g = function(x) { - return Math.sin(x); - }.bind(this); - - this.f = function(x) { - return this.g(this.a * x); - }.bind(this); - - var grid = new Grid([-6,1,6],[-1.5,0.25,1.5]); - this.canvas.addPlotable(grid); - - var axes = new Axes(); - axes.ticks= [[-6,1,6],[-1,1,1]]; - axes.labels=[[-6,2,6],[-1,1,1]]; - this.canvas.addPlotable(axes); - - var graygraph = new Graph(new Function(this.g)); - graygraph.strokeColor = "lightgray"; - graygraph.lineWidth=2; - this.canvas.addPlotable(graygraph); - - var graph = new Graph(new Function(this.f, N=600)); - graph.strokeColor = "blue"; - graph.lineWidth=2; - graph.N = 500; - this.canvas.addPlotable(graph); - - this.move = function() { - this.a = this.slider.coordinate(); - this.update(); - }.bind(this); - - this.slider = new Slider([0,4], 0, [0.01,4], this.move); - this.slider.point.style = "box"; - this.slider.point.size=4; - this.slider.point.fillColor="red"; - this.slider.init(1); - this.slider.ticks=[0,1,4]; - this.slider.labels=[0,1,4]; - - this.scanvas.addPlotable(this.slider); - this.scanvas.addMoveable(this.slider); - - var label = new Label("k", [0,0]); - label.offset=[-8,5]; - label.alignment="rb"; - this.scanvas.addPlotable(label); - - this.update = function() { - this.scanvas.draw(); - this.canvas.draw(); - }.bind(this); - - this.update(); -} - -new CompressingDiagram(); +function CompressingDiagram() { + this.canvas = new Canvas("compressing", [-6,-1.5,6,1.5]); + this.canvas.margins = [5,5,5,5] + this.canvas.setUpCoordinates(); + + this.scanvas = new Canvas("cslider", [-1,-1,5,1]); + this.scanvas.margins = [5,5,5,5]; + this.scanvas.setUpCoordinates(); + + this.a = 1; + + this.g = function(x) { + return Math.sin(x); + }.bind(this); + + this.f = function(x) { + return this.g(this.a * x); + }.bind(this); + + var grid = new Grid([-6,1,6],[-1.5,0.25,1.5]); + this.canvas.addPlotable(grid); + + var axes = new Axes(); + axes.ticks= [[-6,1,6],[-1,1,1]]; + axes.labels=[[-6,2,6],[-1,1,1]]; + this.canvas.addPlotable(axes); + + var graygraph = new Graph(new Function(this.g)); + graygraph.strokeColor = "lightgray"; + graygraph.lineWidth=2; + this.canvas.addPlotable(graygraph); + + var graph = new Graph(new Function(this.f, N=600)); + graph.strokeColor = "blue"; + graph.lineWidth=2; + graph.N = 500; + this.canvas.addPlotable(graph); + + this.move = function() { + this.a = this.slider.coordinate(); + this.update(); + }.bind(this); + + this.slider = new Slider([0,4], 0, [0.01,4], this.move); + this.slider.point.style = "box"; + this.slider.point.size=4; + this.slider.point.fillColor="red"; + this.slider.init(1); + this.slider.ticks=[0,1,4]; + this.slider.labels=[0,1,4]; + + this.scanvas.addPlotable(this.slider); + this.scanvas.addMoveable(this.slider); + + var label = new Label("k", [0,0]); + label.offset=[-8,5]; + label.alignment="rb"; + this.scanvas.addPlotable(label); + + this.update = function() { + this.scanvas.draw(); + this.canvas.draw(); + }.bind(this); + + this.update(); +} + +new CompressingDiagram(); diff --git a/assets/interactives/transformationsH.js b/assets/interactives/transformationsH.js index d9167b01..ab4d3431 100644 --- a/assets/interactives/transformationsH.js +++ b/assets/interactives/transformationsH.js @@ -1,204 +1,204 @@ -function HTranslationDiagram() { - this.canvas = new Canvas("htranslations", [-3,-3,3,3]); - this.canvas.margins = [5,5,5,5] - this.canvas.setUpCoordinates(); - - this.scanvas = new Canvas("hslider", [-4,-1,4,1]); - this.scanvas.margins = [5,5,5,5]; - this.scanvas.setUpCoordinates(); - - this.a = 0; - - this.g = function(x) { - return 1*(Math.atan(x) - (x**2/4-2*x)*Math.exp(-x*x/3))+0.5 + - 0.25*Math.sin(x); - }.bind(this); - - this.f = function(x) { - x = x-this.a; - return this.g(x); - }.bind(this); - - var grid = new Grid([-3,0.5,3], [-3,0.5,3]); - this.canvas.addPlotable(grid); - - var axes = new Axes(); - axes.ticks= [[-3,1,3],[-3,1,3]]; - axes.labels=[[-3,1,3],[-3,1,3]]; - this.canvas.addPlotable(axes); - - var graygraph = new Graph(new Function(this.g)); - graygraph.strokeColor = "lightgray"; - graygraph.lineWidth=2; - this.canvas.addPlotable(graygraph); - - var graph = new Graph(new Function(this.f)); - graph.strokeColor = "blue"; - graph.lineWidth=2; - this.canvas.addPlotable(graph); - - this.move = function() { - this.a = this.slider.coordinate(); - this.update(); - }.bind(this); - - this.slider = new Slider([-3,3], 0, [-3,3], this.move); - this.slider.point.style = "box"; - this.slider.point.size=4; - this.slider.point.fillColor="red"; - this.slider.init(0); - this.slider.ticks=[-3,1,3]; - this.slider.labels=[-3,1,3]; - - this.scanvas.addPlotable(this.slider); - this.scanvas.addMoveable(this.slider); - - var label = new Label("b", [-3,0]); - label.offset=[-8,5]; - label.alignment="rb"; - this.scanvas.addPlotable(label); - - this.update = function() { - this.scanvas.draw(); - this.canvas.draw(); - }.bind(this); - - this.update(); -} - -function VTranslationDiagram() { - this.canvas = new Canvas("vtranslations", [-3,-3,3,3]); - this.canvas.margins = [5,5,5,5] - this.canvas.setUpCoordinates(); - - this.scanvas = new Canvas("vslider", [-4,-1,4,1]); - this.scanvas.margins = [5,5,5,5]; - this.scanvas.setUpCoordinates(); - - this.a = 0; - - this.g = function(x) { - return 1*(Math.atan(x) - (x**2/4-2*x)*Math.exp(-x*x/3))+0.5 + - 0.25*Math.sin(x); - }.bind(this); - - this.f = function(x) { - return this.g(x) + this.a; - }.bind(this); - - var grid = new Grid([-3,0.5,3], [-3,0.5,3]); - this.canvas.addPlotable(grid); - - var axes = new Axes(); - axes.ticks= [[-3,1,3],[-3,1,3]]; - axes.labels=[[-3,1,3],[-3,1,3]]; - this.canvas.addPlotable(axes); - - var graygraph = new Graph(new Function(this.g)); - graygraph.strokeColor = "lightgray"; - graygraph.lineWidth=2; - this.canvas.addPlotable(graygraph); - - var graph = new Graph(new Function(this.f)); - graph.strokeColor = "blue"; - graph.lineWidth=2; - this.canvas.addPlotable(graph); - - this.move = function() { - this.a = this.slider.coordinate(); - this.update(); - }.bind(this); - - this.slider = new Slider([-3,3], 0, [-3,3], this.move); - this.slider.point.style = "box"; - this.slider.point.size=4; - this.slider.point.fillColor="red"; - this.slider.init(0); - this.slider.ticks=[-3,1,3]; - this.slider.labels=[-3,1,3]; - - this.scanvas.addPlotable(this.slider); - this.scanvas.addMoveable(this.slider); - - var label = new Label("a", [-3,0]); - label.offset=[-8,5]; - label.alignment="rb"; - this.scanvas.addPlotable(label); - - this.update = function() { - this.scanvas.draw(); - this.canvas.draw(); - }.bind(this); - - this.update(); -} - -function StretchingDiagram() { - this.canvas = new Canvas("stretching", [-3,-3,3,3]); - this.canvas.margins = [5,5,5,5] - this.canvas.setUpCoordinates(); - - this.scanvas = new Canvas("sslider", [-4,-1,4,1]); - this.scanvas.margins = [5,5,5,5]; - this.scanvas.setUpCoordinates(); - - this.a = 1; - - this.g = function(x) { - return Math.abs(x-1)-1; - }.bind(this); - - this.f = function(x) { - return this.a * this.g(x); - }.bind(this); - - var grid = new Grid([-3,0.5,3], [-3,0.5,3]); - this.canvas.addPlotable(grid); - - var axes = new Axes(); - axes.ticks= [[-3,1,3],[-3,1,3]]; - axes.labels=[[-3,1,3],[-3,1,3]]; - this.canvas.addPlotable(axes); - - var graygraph = new Graph(new Function(this.g)); - graygraph.strokeColor = "lightgray"; - graygraph.lineWidth=2; - this.canvas.addPlotable(graygraph); - - var graph = new Graph(new Function(this.f)); - graph.strokeColor = "blue"; - graph.lineWidth=2; - this.canvas.addPlotable(graph); - - this.move = function() { - this.a = this.slider.coordinate(); - this.update(); - }.bind(this); - - this.slider = new Slider([-3,3], 0, [-3,3], this.move); - this.slider.point.style = "box"; - this.slider.point.size=4; - this.slider.point.fillColor="red"; - this.slider.init(1); - this.slider.ticks=[-3,1,3]; - this.slider.labels=[-3,1,3]; - - this.scanvas.addPlotable(this.slider); - this.scanvas.addMoveable(this.slider); - - var label = new Label("c", [-3,0]); - label.offset=[-8,5]; - label.alignment="rb"; - this.scanvas.addPlotable(label); - - this.update = function() { - this.scanvas.draw(); - this.canvas.draw(); - }.bind(this); - - this.update(); -} - -new HTranslationDiagram(); -// new VTranslationDiagram(); -// new StretchingDiagram(); +function HTranslationDiagram() { + this.canvas = new Canvas("htranslations", [-3,-3,3,3]); + this.canvas.margins = [5,5,5,5] + this.canvas.setUpCoordinates(); + + this.scanvas = new Canvas("hslider", [-4,-1,4,1]); + this.scanvas.margins = [5,5,5,5]; + this.scanvas.setUpCoordinates(); + + this.a = 0; + + this.g = function(x) { + return 1*(Math.atan(x) - (x**2/4-2*x)*Math.exp(-x*x/3))+0.5 + + 0.25*Math.sin(x); + }.bind(this); + + this.f = function(x) { + x = x-this.a; + return this.g(x); + }.bind(this); + + var grid = new Grid([-3,0.5,3], [-3,0.5,3]); + this.canvas.addPlotable(grid); + + var axes = new Axes(); + axes.ticks= [[-3,1,3],[-3,1,3]]; + axes.labels=[[-3,1,3],[-3,1,3]]; + this.canvas.addPlotable(axes); + + var graygraph = new Graph(new Function(this.g)); + graygraph.strokeColor = "lightgray"; + graygraph.lineWidth=2; + this.canvas.addPlotable(graygraph); + + var graph = new Graph(new Function(this.f)); + graph.strokeColor = "blue"; + graph.lineWidth=2; + this.canvas.addPlotable(graph); + + this.move = function() { + this.a = this.slider.coordinate(); + this.update(); + }.bind(this); + + this.slider = new Slider([-3,3], 0, [-3,3], this.move); + this.slider.point.style = "box"; + this.slider.point.size=4; + this.slider.point.fillColor="red"; + this.slider.init(0); + this.slider.ticks=[-3,1,3]; + this.slider.labels=[-3,1,3]; + + this.scanvas.addPlotable(this.slider); + this.scanvas.addMoveable(this.slider); + + var label = new Label("b", [-3,0]); + label.offset=[-8,5]; + label.alignment="rb"; + this.scanvas.addPlotable(label); + + this.update = function() { + this.scanvas.draw(); + this.canvas.draw(); + }.bind(this); + + this.update(); +} + +function VTranslationDiagram() { + this.canvas = new Canvas("vtranslations", [-3,-3,3,3]); + this.canvas.margins = [5,5,5,5] + this.canvas.setUpCoordinates(); + + this.scanvas = new Canvas("vslider", [-4,-1,4,1]); + this.scanvas.margins = [5,5,5,5]; + this.scanvas.setUpCoordinates(); + + this.a = 0; + + this.g = function(x) { + return 1*(Math.atan(x) - (x**2/4-2*x)*Math.exp(-x*x/3))+0.5 + + 0.25*Math.sin(x); + }.bind(this); + + this.f = function(x) { + return this.g(x) + this.a; + }.bind(this); + + var grid = new Grid([-3,0.5,3], [-3,0.5,3]); + this.canvas.addPlotable(grid); + + var axes = new Axes(); + axes.ticks= [[-3,1,3],[-3,1,3]]; + axes.labels=[[-3,1,3],[-3,1,3]]; + this.canvas.addPlotable(axes); + + var graygraph = new Graph(new Function(this.g)); + graygraph.strokeColor = "lightgray"; + graygraph.lineWidth=2; + this.canvas.addPlotable(graygraph); + + var graph = new Graph(new Function(this.f)); + graph.strokeColor = "blue"; + graph.lineWidth=2; + this.canvas.addPlotable(graph); + + this.move = function() { + this.a = this.slider.coordinate(); + this.update(); + }.bind(this); + + this.slider = new Slider([-3,3], 0, [-3,3], this.move); + this.slider.point.style = "box"; + this.slider.point.size=4; + this.slider.point.fillColor="red"; + this.slider.init(0); + this.slider.ticks=[-3,1,3]; + this.slider.labels=[-3,1,3]; + + this.scanvas.addPlotable(this.slider); + this.scanvas.addMoveable(this.slider); + + var label = new Label("a", [-3,0]); + label.offset=[-8,5]; + label.alignment="rb"; + this.scanvas.addPlotable(label); + + this.update = function() { + this.scanvas.draw(); + this.canvas.draw(); + }.bind(this); + + this.update(); +} + +function StretchingDiagram() { + this.canvas = new Canvas("stretching", [-3,-3,3,3]); + this.canvas.margins = [5,5,5,5] + this.canvas.setUpCoordinates(); + + this.scanvas = new Canvas("sslider", [-4,-1,4,1]); + this.scanvas.margins = [5,5,5,5]; + this.scanvas.setUpCoordinates(); + + this.a = 1; + + this.g = function(x) { + return Math.abs(x-1)-1; + }.bind(this); + + this.f = function(x) { + return this.a * this.g(x); + }.bind(this); + + var grid = new Grid([-3,0.5,3], [-3,0.5,3]); + this.canvas.addPlotable(grid); + + var axes = new Axes(); + axes.ticks= [[-3,1,3],[-3,1,3]]; + axes.labels=[[-3,1,3],[-3,1,3]]; + this.canvas.addPlotable(axes); + + var graygraph = new Graph(new Function(this.g)); + graygraph.strokeColor = "lightgray"; + graygraph.lineWidth=2; + this.canvas.addPlotable(graygraph); + + var graph = new Graph(new Function(this.f)); + graph.strokeColor = "blue"; + graph.lineWidth=2; + this.canvas.addPlotable(graph); + + this.move = function() { + this.a = this.slider.coordinate(); + this.update(); + }.bind(this); + + this.slider = new Slider([-3,3], 0, [-3,3], this.move); + this.slider.point.style = "box"; + this.slider.point.size=4; + this.slider.point.fillColor="red"; + this.slider.init(1); + this.slider.ticks=[-3,1,3]; + this.slider.labels=[-3,1,3]; + + this.scanvas.addPlotable(this.slider); + this.scanvas.addMoveable(this.slider); + + var label = new Label("c", [-3,0]); + label.offset=[-8,5]; + label.alignment="rb"; + this.scanvas.addPlotable(label); + + this.update = function() { + this.scanvas.draw(); + this.canvas.draw(); + }.bind(this); + + this.update(); +} + +new HTranslationDiagram(); +// new VTranslationDiagram(); +// new StretchingDiagram(); diff --git a/assets/interactives/transformationsS.js b/assets/interactives/transformationsS.js index 10bd45c6..8b698800 100644 --- a/assets/interactives/transformationsS.js +++ b/assets/interactives/transformationsS.js @@ -1,208 +1,208 @@ -function HTranslationDiagram() { - this.canvas = new Canvas("htranslations", [-3,-3,3,3]); - this.canvas.margins = [5,5,5,5] - this.canvas.setUpCoordinates(); - - this.scanvas = new Canvas("hslider", [-4,-1,4,1]); - this.scanvas.margins = [5,5,5,5]; - this.scanvas.setUpCoordinates(); - - this.a = 0; - - this.g = function(x) { - return 1*(Math.atan(x) - (x**2/4-2*x)*Math.exp(-x*x/3))+0.5 + - 0.25*Math.sin(x); - }.bind(this); - - this.f = function(x) { - x = x-this.a; - return this.g(x); - }.bind(this); - - var grid = new Grid([-3,0.5,3], [-3,0.5,3]); - this.canvas.addPlotable(grid); - - var axes = new Axes(); - axes.ticks= [[-3,1,3],[-3,1,3]]; - axes.labels=[[-3,1,3],[-3,1,3]]; - this.canvas.addPlotable(axes); - - var graygraph = new Graph(new Function(this.g)); - graygraph.strokeColor = "lightgray"; - graygraph.lineWidth=2; - graygraph.N = 300; - this.canvas.addPlotable(graygraph); - - var graph = new Graph(new Function(this.f)); - graph.strokeColor = "blue"; - graph.lineWidth=2; - graph.N = 300; - this.canvas.addPlotable(graph); - - this.move = function() { - this.a = this.slider.coordinate(); - this.update(); - }.bind(this); - - this.slider = new Slider([-3,3], 0, [-3,3], this.move); - this.slider.point.style = "box"; - this.slider.point.size=4; - this.slider.point.fillColor="red"; - this.slider.init(0); - this.slider.ticks=[-3,1,3]; - this.slider.labels=[-3,1,3]; - - this.scanvas.addPlotable(this.slider); - this.scanvas.addMoveable(this.slider); - - var label = new Label("b", [-3,0]); - label.offset=[-8,5]; - label.alignment="rb"; - this.scanvas.addPlotable(label); - - this.update = function() { - this.scanvas.draw(); - this.canvas.draw(); - }.bind(this); - - this.update(); -} - -function VTranslationDiagram() { - this.canvas = new Canvas("vtranslations", [-3,-3,3,3]); - this.canvas.margins = [5,5,5,5] - this.canvas.setUpCoordinates(); - - this.scanvas = new Canvas("vslider", [-4,-1,4,1]); - this.scanvas.margins = [5,5,5,5]; - this.scanvas.setUpCoordinates(); - - this.a = 0; - - this.g = function(x) { - return 1*(Math.atan(x) - (x**2/4-2*x)*Math.exp(-x*x/3))+0.5 + - 0.25*Math.sin(x); - }.bind(this); - - this.f = function(x) { - return this.g(x) + this.a; - }.bind(this); - - var grid = new Grid([-3,0.5,3], [-3,0.5,3]); - this.canvas.addPlotable(grid); - - var axes = new Axes(); - axes.ticks= [[-3,1,3],[-3,1,3]]; - axes.labels=[[-3,1,3],[-3,1,3]]; - this.canvas.addPlotable(axes); - - var graygraph = new Graph(new Function(this.g)); - graygraph.strokeColor = "lightgray"; - graygraph.lineWidth=2; - this.canvas.addPlotable(graygraph); - - var graph = new Graph(new Function(this.f)); - graph.strokeColor = "blue"; - graph.lineWidth=2; - this.canvas.addPlotable(graph); - - this.move = function() { - this.a = this.slider.coordinate(); - this.update(); - }.bind(this); - - this.slider = new Slider([-3,3], 0, [-3,3], this.move); - this.slider.point.style = "box"; - this.slider.point.size=4; - this.slider.point.fillColor="red"; - this.slider.init(0); - this.slider.ticks=[-3,1,3]; - this.slider.labels=[-3,1,3]; - - this.scanvas.addPlotable(this.slider); - this.scanvas.addMoveable(this.slider); - - var label = new Label("a", [-3,0]); - label.offset=[-8,5]; - label.alignment="rb"; - this.scanvas.addPlotable(label); - - this.update = function() { - this.scanvas.draw(); - this.canvas.draw(); - }.bind(this); - - this.update(); -} - -function StretchingDiagram() { - this.canvas = new Canvas("stretching", [-3,-3,3,3]); - this.canvas.margins = [5,5,5,5] - this.canvas.setUpCoordinates(); - - this.scanvas = new Canvas("sslider", [-4,-1,4,1]); - this.scanvas.margins = [5,5,5,5]; - this.scanvas.setUpCoordinates(); - - this.a = 1; - - this.g = function(x) { - return Math.abs(x-1)-1; - }.bind(this); - - this.f = function(x) { - return this.a * this.g(x); - }.bind(this); - - var grid = new Grid([-3,0.5,3], [-3,0.5,3]); - this.canvas.addPlotable(grid); - - var axes = new Axes(); - axes.ticks= [[-3,1,3],[-3,1,3]]; - axes.labels=[[-3,1,3],[-3,1,3]]; - this.canvas.addPlotable(axes); - - var graygraph = new Graph(new Function(this.g)); - graygraph.strokeColor = "lightgray"; - graygraph.lineWidth=2; - graygraph.N = 300; - this.canvas.addPlotable(graygraph); - - var graph = new Graph(new Function(this.f)); - graph.strokeColor = "blue"; - graph.lineWidth=2; - graph.N = 300; - this.canvas.addPlotable(graph); - - this.move = function() { - this.a = this.slider.coordinate(); - this.update(); - }.bind(this); - - this.slider = new Slider([-3,3], 0, [-3,3], this.move); - this.slider.point.style = "box"; - this.slider.point.size=4; - this.slider.point.fillColor="red"; - this.slider.init(1); - this.slider.ticks=[-3,1,3]; - this.slider.labels=[-3,1,3]; - - this.scanvas.addPlotable(this.slider); - this.scanvas.addMoveable(this.slider); - - var label = new Label("c", [-3,0]); - label.offset=[-8,5]; - label.alignment="rb"; - this.scanvas.addPlotable(label); - - this.update = function() { - this.scanvas.draw(); - this.canvas.draw(); - }.bind(this); - - this.update(); -} - -// new HTranslationDiagram(); -// new VTranslationDiagram(); -new StretchingDiagram(); +function HTranslationDiagram() { + this.canvas = new Canvas("htranslations", [-3,-3,3,3]); + this.canvas.margins = [5,5,5,5] + this.canvas.setUpCoordinates(); + + this.scanvas = new Canvas("hslider", [-4,-1,4,1]); + this.scanvas.margins = [5,5,5,5]; + this.scanvas.setUpCoordinates(); + + this.a = 0; + + this.g = function(x) { + return 1*(Math.atan(x) - (x**2/4-2*x)*Math.exp(-x*x/3))+0.5 + + 0.25*Math.sin(x); + }.bind(this); + + this.f = function(x) { + x = x-this.a; + return this.g(x); + }.bind(this); + + var grid = new Grid([-3,0.5,3], [-3,0.5,3]); + this.canvas.addPlotable(grid); + + var axes = new Axes(); + axes.ticks= [[-3,1,3],[-3,1,3]]; + axes.labels=[[-3,1,3],[-3,1,3]]; + this.canvas.addPlotable(axes); + + var graygraph = new Graph(new Function(this.g)); + graygraph.strokeColor = "lightgray"; + graygraph.lineWidth=2; + graygraph.N = 300; + this.canvas.addPlotable(graygraph); + + var graph = new Graph(new Function(this.f)); + graph.strokeColor = "blue"; + graph.lineWidth=2; + graph.N = 300; + this.canvas.addPlotable(graph); + + this.move = function() { + this.a = this.slider.coordinate(); + this.update(); + }.bind(this); + + this.slider = new Slider([-3,3], 0, [-3,3], this.move); + this.slider.point.style = "box"; + this.slider.point.size=4; + this.slider.point.fillColor="red"; + this.slider.init(0); + this.slider.ticks=[-3,1,3]; + this.slider.labels=[-3,1,3]; + + this.scanvas.addPlotable(this.slider); + this.scanvas.addMoveable(this.slider); + + var label = new Label("b", [-3,0]); + label.offset=[-8,5]; + label.alignment="rb"; + this.scanvas.addPlotable(label); + + this.update = function() { + this.scanvas.draw(); + this.canvas.draw(); + }.bind(this); + + this.update(); +} + +function VTranslationDiagram() { + this.canvas = new Canvas("vtranslations", [-3,-3,3,3]); + this.canvas.margins = [5,5,5,5] + this.canvas.setUpCoordinates(); + + this.scanvas = new Canvas("vslider", [-4,-1,4,1]); + this.scanvas.margins = [5,5,5,5]; + this.scanvas.setUpCoordinates(); + + this.a = 0; + + this.g = function(x) { + return 1*(Math.atan(x) - (x**2/4-2*x)*Math.exp(-x*x/3))+0.5 + + 0.25*Math.sin(x); + }.bind(this); + + this.f = function(x) { + return this.g(x) + this.a; + }.bind(this); + + var grid = new Grid([-3,0.5,3], [-3,0.5,3]); + this.canvas.addPlotable(grid); + + var axes = new Axes(); + axes.ticks= [[-3,1,3],[-3,1,3]]; + axes.labels=[[-3,1,3],[-3,1,3]]; + this.canvas.addPlotable(axes); + + var graygraph = new Graph(new Function(this.g)); + graygraph.strokeColor = "lightgray"; + graygraph.lineWidth=2; + this.canvas.addPlotable(graygraph); + + var graph = new Graph(new Function(this.f)); + graph.strokeColor = "blue"; + graph.lineWidth=2; + this.canvas.addPlotable(graph); + + this.move = function() { + this.a = this.slider.coordinate(); + this.update(); + }.bind(this); + + this.slider = new Slider([-3,3], 0, [-3,3], this.move); + this.slider.point.style = "box"; + this.slider.point.size=4; + this.slider.point.fillColor="red"; + this.slider.init(0); + this.slider.ticks=[-3,1,3]; + this.slider.labels=[-3,1,3]; + + this.scanvas.addPlotable(this.slider); + this.scanvas.addMoveable(this.slider); + + var label = new Label("a", [-3,0]); + label.offset=[-8,5]; + label.alignment="rb"; + this.scanvas.addPlotable(label); + + this.update = function() { + this.scanvas.draw(); + this.canvas.draw(); + }.bind(this); + + this.update(); +} + +function StretchingDiagram() { + this.canvas = new Canvas("stretching", [-3,-3,3,3]); + this.canvas.margins = [5,5,5,5] + this.canvas.setUpCoordinates(); + + this.scanvas = new Canvas("sslider", [-4,-1,4,1]); + this.scanvas.margins = [5,5,5,5]; + this.scanvas.setUpCoordinates(); + + this.a = 1; + + this.g = function(x) { + return Math.abs(x-1)-1; + }.bind(this); + + this.f = function(x) { + return this.a * this.g(x); + }.bind(this); + + var grid = new Grid([-3,0.5,3], [-3,0.5,3]); + this.canvas.addPlotable(grid); + + var axes = new Axes(); + axes.ticks= [[-3,1,3],[-3,1,3]]; + axes.labels=[[-3,1,3],[-3,1,3]]; + this.canvas.addPlotable(axes); + + var graygraph = new Graph(new Function(this.g)); + graygraph.strokeColor = "lightgray"; + graygraph.lineWidth=2; + graygraph.N = 300; + this.canvas.addPlotable(graygraph); + + var graph = new Graph(new Function(this.f)); + graph.strokeColor = "blue"; + graph.lineWidth=2; + graph.N = 300; + this.canvas.addPlotable(graph); + + this.move = function() { + this.a = this.slider.coordinate(); + this.update(); + }.bind(this); + + this.slider = new Slider([-3,3], 0, [-3,3], this.move); + this.slider.point.style = "box"; + this.slider.point.size=4; + this.slider.point.fillColor="red"; + this.slider.init(1); + this.slider.ticks=[-3,1,3]; + this.slider.labels=[-3,1,3]; + + this.scanvas.addPlotable(this.slider); + this.scanvas.addMoveable(this.slider); + + var label = new Label("c", [-3,0]); + label.offset=[-8,5]; + label.alignment="rb"; + this.scanvas.addPlotable(label); + + this.update = function() { + this.scanvas.draw(); + this.canvas.draw(); + }.bind(this); + + this.update(); +} + +// new HTranslationDiagram(); +// new VTranslationDiagram(); +new StretchingDiagram(); diff --git a/assets/interactives/transformationsV.js b/assets/interactives/transformationsV.js index 558c808a..91fc31fe 100644 --- a/assets/interactives/transformationsV.js +++ b/assets/interactives/transformationsV.js @@ -1,205 +1,205 @@ -function HTranslationDiagram() { - this.canvas = new Canvas("htranslations", [-3,-3,3,3]); - this.canvas.margins = [5,5,5,5] - this.canvas.setUpCoordinates(); - - this.scanvas = new Canvas("hslider", [-4,-1,4,1]); - this.scanvas.margins = [5,5,5,5]; - this.scanvas.setUpCoordinates(); - - this.a = 0; - - this.g = function(x) { - return 1*(Math.atan(x) - (x**2/4-2*x)*Math.exp(-x*x/3))+0.5 + - 0.25*Math.sin(x); - }.bind(this); - - this.f = function(x) { - x = x-this.a; - return this.g(x); - }.bind(this); - - var grid = new Grid([-3,0.5,3], [-3,0.5,3]); - this.canvas.addPlotable(grid); - - var axes = new Axes(); - axes.ticks= [[-3,1,3],[-3,1,3]]; - axes.labels=[[-3,1,3],[-3,1,3]]; - this.canvas.addPlotable(axes); - - var graygraph = new Graph(new Function(this.g)); - graygraph.strokeColor = "lightgray"; - graygraph.lineWidth=2; - this.canvas.addPlotable(graygraph); - - var graph = new Graph(new Function(this.f)); - graph.strokeColor = "blue"; - graph.lineWidth=2; - graph.N=600; - this.canvas.addPlotable(graph); - - this.move = function() { - this.a = this.slider.coordinate(); - this.update(); - }.bind(this); - - this.slider = new Slider([-3,3], 0, [-3,3], this.move); - this.slider.point.style = "box"; - this.slider.point.size=4; - this.slider.point.fillColor="red"; - this.slider.init(0); - this.slider.ticks=[-3,1,3]; - this.slider.labels=[-3,1,3]; - - this.scanvas.addPlotable(this.slider); - this.scanvas.addMoveable(this.slider); - - var label = new Label("b", [-3,0]); - label.offset=[-8,5]; - label.alignment="rb"; - this.scanvas.addPlotable(label); - - this.update = function() { - this.scanvas.draw(); - this.canvas.draw(); - }.bind(this); - - this.update(); -} - -function VTranslationDiagram() { - this.canvas = new Canvas("vtranslations", [-3,-3,3,3]); - this.canvas.margins = [5,5,5,5] - this.canvas.setUpCoordinates(); - - this.scanvas = new Canvas("vslider", [-4,-1,4,1]); - this.scanvas.margins = [5,5,5,5]; - this.scanvas.setUpCoordinates(); - - this.a = 0; - - this.g = function(x) { - return 0.4 * (1*(Math.atan(x) - (x**2/4-2*x)*Math.exp(-x*x/3))+0.5 + - 0.25*Math.sin(x)); - }.bind(this); - - this.f = function(x) { - return this.g(x) + this.a; - }.bind(this); - - var grid = new Grid([-3,0.5,3], [-3,0.5,3]); - this.canvas.addPlotable(grid); - - var axes = new Axes(); - axes.ticks= [[-3,1,3],[-3,1,3]]; - axes.labels=[[-3,1,3],[-3,1,3]]; - this.canvas.addPlotable(axes); - - var graygraph = new Graph(new Function(this.g)); - graygraph.strokeColor = "lightgray"; - graygraph.lineWidth=2; - this.canvas.addPlotable(graygraph); - - var graph = new Graph(new Function(this.f)); - graph.strokeColor = "blue"; - graph.lineWidth=2; - this.canvas.addPlotable(graph); - - this.move = function() { - this.a = this.slider.coordinate(); - this.update(); - }.bind(this); - - this.slider = new Slider([-3,3], 0, [-3,3], this.move); - this.slider.point.style = "box"; - this.slider.point.size=4; - this.slider.point.fillColor="red"; - this.slider.init(0); - this.slider.ticks=[-3,1,3]; - this.slider.labels=[-3,1,3]; - - this.scanvas.addPlotable(this.slider); - this.scanvas.addMoveable(this.slider); - - var label = new Label("a", [-3,0]); - label.offset=[-8,5]; - label.alignment="rb"; - this.scanvas.addPlotable(label); - - this.update = function() { - this.scanvas.draw(); - this.canvas.draw(); - }.bind(this); - - this.update(); -} - -function StretchingDiagram() { - this.canvas = new Canvas("stretching", [-3,-3,3,3]); - this.canvas.margins = [5,5,5,5] - this.canvas.setUpCoordinates(); - - this.scanvas = new Canvas("sslider", [-4,-1,4,1]); - this.scanvas.margins = [5,5,5,5]; - this.scanvas.setUpCoordinates(); - - this.a = 1; - - this.g = function(x) { - return Math.abs(x-1)-1; - }.bind(this); - - this.f = function(x) { - return this.a * this.g(x); - }.bind(this); - - var grid = new Grid([-3,0.5,3], [-3,0.5,3]); - this.canvas.addPlotable(grid); - - var axes = new Axes(); - axes.ticks= [[-3,1,3],[-3,1,3]]; - axes.labels=[[-3,1,3],[-3,1,3]]; - this.canvas.addPlotable(axes); - - var graygraph = new Graph(new Function(this.g)); - graygraph.strokeColor = "lightgray"; - graygraph.lineWidth=2; - this.canvas.addPlotable(graygraph); - - var graph = new Graph(new Function(this.f)); - graph.strokeColor = "blue"; - graph.lineWidth=2; - this.canvas.addPlotable(graph); - - this.move = function() { - this.a = this.slider.coordinate(); - this.update(); - }.bind(this); - - this.slider = new Slider([-3,3], 0, [-3,3], this.move); - this.slider.point.style = "box"; - this.slider.point.size=4; - this.slider.point.fillColor="red"; - this.slider.init(1); - this.slider.ticks=[-3,1,3]; - this.slider.labels=[-3,1,3]; - - this.scanvas.addPlotable(this.slider); - this.scanvas.addMoveable(this.slider); - - var label = new Label("c", [-3,0]); - label.offset=[-8,5]; - label.alignment="rb"; - this.scanvas.addPlotable(label); - - this.update = function() { - this.scanvas.draw(); - this.canvas.draw(); - }.bind(this); - - this.update(); -} - -// new HTranslationDiagram(); -new VTranslationDiagram(); -// new StretchingDiagram(); +function HTranslationDiagram() { + this.canvas = new Canvas("htranslations", [-3,-3,3,3]); + this.canvas.margins = [5,5,5,5] + this.canvas.setUpCoordinates(); + + this.scanvas = new Canvas("hslider", [-4,-1,4,1]); + this.scanvas.margins = [5,5,5,5]; + this.scanvas.setUpCoordinates(); + + this.a = 0; + + this.g = function(x) { + return 1*(Math.atan(x) - (x**2/4-2*x)*Math.exp(-x*x/3))+0.5 + + 0.25*Math.sin(x); + }.bind(this); + + this.f = function(x) { + x = x-this.a; + return this.g(x); + }.bind(this); + + var grid = new Grid([-3,0.5,3], [-3,0.5,3]); + this.canvas.addPlotable(grid); + + var axes = new Axes(); + axes.ticks= [[-3,1,3],[-3,1,3]]; + axes.labels=[[-3,1,3],[-3,1,3]]; + this.canvas.addPlotable(axes); + + var graygraph = new Graph(new Function(this.g)); + graygraph.strokeColor = "lightgray"; + graygraph.lineWidth=2; + this.canvas.addPlotable(graygraph); + + var graph = new Graph(new Function(this.f)); + graph.strokeColor = "blue"; + graph.lineWidth=2; + graph.N=600; + this.canvas.addPlotable(graph); + + this.move = function() { + this.a = this.slider.coordinate(); + this.update(); + }.bind(this); + + this.slider = new Slider([-3,3], 0, [-3,3], this.move); + this.slider.point.style = "box"; + this.slider.point.size=4; + this.slider.point.fillColor="red"; + this.slider.init(0); + this.slider.ticks=[-3,1,3]; + this.slider.labels=[-3,1,3]; + + this.scanvas.addPlotable(this.slider); + this.scanvas.addMoveable(this.slider); + + var label = new Label("b", [-3,0]); + label.offset=[-8,5]; + label.alignment="rb"; + this.scanvas.addPlotable(label); + + this.update = function() { + this.scanvas.draw(); + this.canvas.draw(); + }.bind(this); + + this.update(); +} + +function VTranslationDiagram() { + this.canvas = new Canvas("vtranslations", [-3,-3,3,3]); + this.canvas.margins = [5,5,5,5] + this.canvas.setUpCoordinates(); + + this.scanvas = new Canvas("vslider", [-4,-1,4,1]); + this.scanvas.margins = [5,5,5,5]; + this.scanvas.setUpCoordinates(); + + this.a = 0; + + this.g = function(x) { + return 0.4 * (1*(Math.atan(x) - (x**2/4-2*x)*Math.exp(-x*x/3))+0.5 + + 0.25*Math.sin(x)); + }.bind(this); + + this.f = function(x) { + return this.g(x) + this.a; + }.bind(this); + + var grid = new Grid([-3,0.5,3], [-3,0.5,3]); + this.canvas.addPlotable(grid); + + var axes = new Axes(); + axes.ticks= [[-3,1,3],[-3,1,3]]; + axes.labels=[[-3,1,3],[-3,1,3]]; + this.canvas.addPlotable(axes); + + var graygraph = new Graph(new Function(this.g)); + graygraph.strokeColor = "lightgray"; + graygraph.lineWidth=2; + this.canvas.addPlotable(graygraph); + + var graph = new Graph(new Function(this.f)); + graph.strokeColor = "blue"; + graph.lineWidth=2; + this.canvas.addPlotable(graph); + + this.move = function() { + this.a = this.slider.coordinate(); + this.update(); + }.bind(this); + + this.slider = new Slider([-3,3], 0, [-3,3], this.move); + this.slider.point.style = "box"; + this.slider.point.size=4; + this.slider.point.fillColor="red"; + this.slider.init(0); + this.slider.ticks=[-3,1,3]; + this.slider.labels=[-3,1,3]; + + this.scanvas.addPlotable(this.slider); + this.scanvas.addMoveable(this.slider); + + var label = new Label("a", [-3,0]); + label.offset=[-8,5]; + label.alignment="rb"; + this.scanvas.addPlotable(label); + + this.update = function() { + this.scanvas.draw(); + this.canvas.draw(); + }.bind(this); + + this.update(); +} + +function StretchingDiagram() { + this.canvas = new Canvas("stretching", [-3,-3,3,3]); + this.canvas.margins = [5,5,5,5] + this.canvas.setUpCoordinates(); + + this.scanvas = new Canvas("sslider", [-4,-1,4,1]); + this.scanvas.margins = [5,5,5,5]; + this.scanvas.setUpCoordinates(); + + this.a = 1; + + this.g = function(x) { + return Math.abs(x-1)-1; + }.bind(this); + + this.f = function(x) { + return this.a * this.g(x); + }.bind(this); + + var grid = new Grid([-3,0.5,3], [-3,0.5,3]); + this.canvas.addPlotable(grid); + + var axes = new Axes(); + axes.ticks= [[-3,1,3],[-3,1,3]]; + axes.labels=[[-3,1,3],[-3,1,3]]; + this.canvas.addPlotable(axes); + + var graygraph = new Graph(new Function(this.g)); + graygraph.strokeColor = "lightgray"; + graygraph.lineWidth=2; + this.canvas.addPlotable(graygraph); + + var graph = new Graph(new Function(this.f)); + graph.strokeColor = "blue"; + graph.lineWidth=2; + this.canvas.addPlotable(graph); + + this.move = function() { + this.a = this.slider.coordinate(); + this.update(); + }.bind(this); + + this.slider = new Slider([-3,3], 0, [-3,3], this.move); + this.slider.point.style = "box"; + this.slider.point.size=4; + this.slider.point.fillColor="red"; + this.slider.init(1); + this.slider.ticks=[-3,1,3]; + this.slider.labels=[-3,1,3]; + + this.scanvas.addPlotable(this.slider); + this.scanvas.addMoveable(this.slider); + + var label = new Label("c", [-3,0]); + label.offset=[-8,5]; + label.alignment="rb"; + this.scanvas.addPlotable(label); + + this.update = function() { + this.scanvas.draw(); + this.canvas.draw(); + }.bind(this); + + this.update(); +} + +// new HTranslationDiagram(); +new VTranslationDiagram(); +// new StretchingDiagram(); diff --git a/project.ptx b/project.ptx index 4caf98bb..97d49533 100644 --- a/project.ptx +++ b/project.ptx @@ -1,40 +1,45 @@ - - - - - - - - - - - - - + + + + + + + + + + + + + + diff --git a/publication/publication-solutions.ptx b/publication/publication-solutions.ptx index 980fb24d..c6a5a651 100644 --- a/publication/publication-solutions.ptx +++ b/publication/publication-solutions.ptx @@ -1,17 +1,17 @@ - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + diff --git a/publication/publication-workbook.ptx b/publication/publication-workbook.ptx index 50fae4d7..2f6eaaeb 100644 --- a/publication/publication-workbook.ptx +++ b/publication/publication-workbook.ptx @@ -1,21 +1,21 @@ - - - - - - letterpaper,tmargin=.5in,bmargin=.3in,hmargin=.75in,includeheadfoot - - - - - - - - - - - - - - + + + + + + letterpaper,tmargin=.5in,bmargin=.3in,hmargin=.75in,includeheadfoot + + + + + + + + + + + + + + diff --git a/publication/publication.ptx b/publication/publication.ptx index f7e7aa7d..ad0bb676 100644 --- a/publication/publication.ptx +++ b/publication/publication.ptx @@ -1,26 +1,30 @@ - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/publication/publication_runestone.ptx b/publication/publication_runestone.ptx new file mode 100644 index 00000000..f1d266b5 --- /dev/null +++ b/publication/publication_runestone.ptx @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/requirements.txt b/requirements.txt index a85f8b33..3f281487 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ -# This file was automatically generated with PreTeXt 2.33.0. -pretext == 2.33.0 +# This file was automatically generated with PreTeXt 2.33.0. +pretext == 2.33.0 diff --git a/source/acs-solution-manual.ptx b/source/acs-solution-manual.ptx index 5650fb3d..95f34640 100644 --- a/source/acs-solution-manual.ptx +++ b/source/acs-solution-manual.ptx @@ -1,128 +1,128 @@ - - - - - - - - - - - - - - - - - \newcommand{\dollar}{\$} - \DeclareMathOperator{\erf}{erf} - \DeclareMathOperator{\arctanh}{arctanh} - \DeclareMathOperator{\arcsec}{arcsec} - - % This macro should only be used in ancillary production! - \raggedbottom - - - - Preview Activity - Motivating Questions - - - - <line>Solutions Manual</line> - <line>for</line> - <line>Active Calculus Single Variable</line> - - - - - - - Matthew Boelkins - Department of Mathematics - Grand Valley State University - boelkinm@gvsu.edu - - - - Contributing Authors - - Steven Schlicker - Department of Mathematics - Grand Valley State University - schlicks@gvsu.edu - - - - Ted Sundstrom - Department of Mathematics - Grand Valley State University - sundstrt@gvsu.edu - - - - - - Production Editor - - Mitchel T. Keller - Department of Mathematics - University of Wisconsin-Madison - mitch@rellek.net - - - - - - - - - -

- This Solutions Manual for Active Calculus is organized by section. - Preview Activity solutions are not provided, - but each activity within a section has a solution provided. - The solution to each activity starts at the top of a new page, - so instructors can easily extract the solution for a single activity if they wish to print it for students or post on their course's learning management system site. - After the activity solutions come the exercise solutions. - Solutions for - exercises are not provided, - since those solutions are automatically available in this book's HTML version. - Each exercise also starts at the top of its own page to make it easy to extract only the solutions to certain exercises. -

- -

- Please do not post this solutions manual publicly on the internet nor in any electronic form where it is available in full to students. - As much as possible, - we aspire to keep this solutions manual as a resource for instructors only so that students get the full benefit of activities and exercises by having to struggle with them without looking at solutions. -

- -

- By extracting individual pages from the PDF, - it is fine to share solutions to individual activities or exercises via course management system software. - Please do not post these individual pages publicly on the internet. -

-
- -
- - - - - - - - - - - - -

- This book was authored in . -

-
-
- -
- -
+ + + + + + + + + + + + + + + + + \newcommand{\dollar}{\$} + \DeclareMathOperator{\erf}{erf} + \DeclareMathOperator{\arctanh}{arctanh} + \DeclareMathOperator{\arcsec}{arcsec} + + % This macro should only be used in ancillary production! + \raggedbottom + + + + Preview Activity + Motivating Questions + + + + <line>Solutions Manual</line> + <line>for</line> + <line>Active Calculus Single Variable</line> + + + + + + + Matthew Boelkins + Department of Mathematics + Grand Valley State University + boelkinm@gvsu.edu + + + + Contributing Authors + + Steven Schlicker + Department of Mathematics + Grand Valley State University + schlicks@gvsu.edu + + + + Ted Sundstrom + Department of Mathematics + Grand Valley State University + sundstrt@gvsu.edu + + + + + + Production Editor + + Mitchel T. Keller + Department of Mathematics + University of Wisconsin-Madison + mitch@rellek.net + + + + + + + + + +

+ This Solutions Manual for Active Calculus is organized by section. + Preview Activity solutions are not provided, + but each activity within a section has a solution provided. + The solution to each activity starts at the top of a new page, + so instructors can easily extract the solution for a single activity if they wish to print it for students or post on their course's learning management system site. + After the activity solutions come the exercise solutions. + Solutions for + exercises are not provided, + since those solutions are automatically available in this book's HTML version. + Each exercise also starts at the top of its own page to make it easy to extract only the solutions to certain exercises. +

+ +

+ Please do not post this solutions manual publicly on the internet nor in any electronic form where it is available in full to students. + As much as possible, + we aspire to keep this solutions manual as a resource for instructors only so that students get the full benefit of activities and exercises by having to struggle with them without looking at solutions. +

+ +

+ By extracting individual pages from the PDF, + it is fine to share solutions to individual activities or exercises via course management system software. + Please do not post these individual pages publicly on the internet. +

+
+ +
+ + + + + + + + + + + + +

+ This book was authored in . +

+
+
+ +
+ +
diff --git a/source/activities/act-0-0-0.xml b/source/activities/act-0-0-0.xml index 9f6ba3c7..73fab822 100755 --- a/source/activities/act-0-0-0.xml +++ b/source/activities/act-0-0-0.xml @@ -1,35 +1,35 @@ - - - - - - - - - - - - - - - - -

-

- - - -

- - - - - - -

- - -

- - - + + + + + + + + + + + + + + + + +

+

+ + + +

+ + + + + + +

+ + +

+ + + diff --git a/source/activities/act-changing-aroc-graphs.xml b/source/activities/act-changing-aroc-graphs.xml index 8569821f..a2936ecd 100755 --- a/source/activities/act-changing-aroc-graphs.xml +++ b/source/activities/act-changing-aroc-graphs.xml @@ -1,102 +1,100 @@ - - - - - - - - - - - - - - - - -

- Sketch at least two different possible graphs that satisfy the criteria for the function stated in each part. Make your graphs as significantly different as you can. If it is impossible for a graph to satisfy the criteria, explain why. -

-

- - - -

f is a function defined on [-1,7] such that f(1) = 4 and AV_{[1,3]} = -2. -

- -

ADD ALT TEXT TO THIS IMAGE

-

ADD ALT TEXT TO THIS IMAGE

-
- - - - -

- Since AV_{[1,3]} = -2 and f(1) = 4, we need - \frac{f(3)-4}{3-1} = -2, so f(3) = 0. Any graph passing through - (1,4) and (3,0) satisfies the conditions. Two examples: - the line f(x) = -2x+6, or a curve such as f(x) = -(x-1)^2 + 4 - (which also passes through both required points). -

- - - - - -
- - - -

g is a function defined on [-1,7] such that g(4) = 3, AV_{[0,4]} = 0.5, and g is not always increasing on (0,4). -

- -

ADD ALT TEXT TO THIS IMAGE

-

ADD ALT TEXT TO THIS IMAGE

-
-
- - - -

- Since AV_{[0,4]} = 0.5 and g(4) = 3, we need - \frac{3 - g(0)}{4} = 0.5, so g(0) = 1. Any graph passing through - (0,1) and (4,3) that is not always increasing on (0,4) - satisfies the conditions. For example, a curve that dips below the secant line - between x=0 and x=4 before returning to (4,3). -

- - - - - -
-
- - -

h is a function defined on [-1,7] such that h(2) = 5, h(4) = 3 and AV_{[2,4]} = -2. -

- -

ADD ALT TEXT TO THIS IMAGE

-

ADD ALT TEXT TO THIS IMAGE

-
-
- - - -

- These conditions are impossible to satisfy simultaneously. Given h(2) = 5 - and h(4) = 3, the average rate of change is determined: - AV_{[2,4]} = \frac{h(4) - h(2)}{4-2} = \frac{3-5}{2} = -1 \ne -2. - No function can have both the specified output values and the specified average - rate of change on [2,4]. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Sketch at least two different possible graphs that satisfy the criteria for the function stated in each part. Make your graphs as significantly different as you can. If it is impossible for a graph to satisfy the criteria, explain why. +

+

+ + + +

f is a function defined on [-1,7] such that f(1) = 4 and AV_{[1,3]} = -2. +

+ +

ADD ALT TEXT TO THIS IMAGE

+

ADD ALT TEXT TO THIS IMAGE

+
+ + +

+ Any graph passing through (1,4) and (3,0) satisfies the conditions. +

+ +

+ Since AV_{[1,3]} = -2 and f(1) = 4, we need + \frac{f(3)-4}{3-1} = -2, so f(3) = 0. Any graph passing through + (1,4) and (3,0) satisfies the conditions. Two examples: + the line f(x) = -2x+6, or a curve such as f(x) = -(x-1)^2 + 4 + (which also passes through both required points). +

+ +
+ + + +

g is a function defined on [-1,7] such that g(4) = 3, AV_{[0,4]} = 0.5, and g is not always increasing on (0,4). +

+ +

ADD ALT TEXT TO THIS IMAGE

+

ADD ALT TEXT TO THIS IMAGE

+
+
+ +

+ Any graph passing through (0,1) and (4,3) that is not always increasing on (0,4) satisfies the conditions. +

+ +

+ Since AV_{[0,4]} = 0.5 and g(4) = 3, we need + \frac{3 - g(0)}{4} = 0.5, so g(0) = 1. Any graph passing through + (0,1) and (4,3) that is not always increasing on (0,4) + satisfies the conditions. For example, a curve that dips below the secant line + between x=0 and x=4 before returning to (4,3). +

+ + + + +
+
+ + +

h is a function defined on [-1,7] such that h(2) = 5, h(4) = 3 and AV_{[2,4]} = -2. +

+ +

ADD ALT TEXT TO THIS IMAGE

+

ADD ALT TEXT TO THIS IMAGE

+
+
+ +

+ These conditions are impossible to satisfy simultaneously. +

+ +

+ These conditions are impossible to satisfy simultaneously. Given h(2) = 5 + and h(4) = 3, the average rate of change is determined: + AV_{[2,4]} = \frac{h(4) - h(2)}{4-2} = \frac{3-5}{2} = -1 \ne -2. + No function can have both the specified output values and the specified average + rate of change on [2,4]. +

+
+
+
+
diff --git a/source/activities/act-changing-aroc-population.xml b/source/activities/act-changing-aroc-population.xml index be78a4c2..4c35e0ae 100755 --- a/source/activities/act-changing-aroc-population.xml +++ b/source/activities/act-changing-aroc-population.xml @@ -1,177 +1,180 @@ - - - - - - - - - - - - - - - - -

- According to the US census, - the populations of Kent and Ottawa Counties in Michigan where GVSU is located - (Grand Rapids is in Kent, Allendale in Ottawa) - from 1960 to 2010 measured in 10-year intervals are given in the following tables. -

- - - - Year: - 1960 - 1970 - 1980 - 1990 - 2000 - 2010 - - - Kent County population: - 363,187 - 411,044 - 444,506 - 500,631 - 574,336 - 602,622 - - - - - - Year: - 1960 - 1970 - 1980 - 1990 - 2000 - 2010 - - - Ottawa County Population: - 98,719 - 128,181 - 157,174 - 187,768 - 238,313 - 263,801 - - - -

- Let K(Y) represent the population of Kent County in year Y and W(Y) the population of Ottawa County in year Y. -

-

- - - -

- Compute AV_{[1990,2010]} for both K and W. -

- - - - -

- For Kent County, the population in 1990 was 500,631 and in 2010 was 602,622, so - - AV_{[1990,2010]} &= \frac{602{,}622 - 500{,}631}{2010 - 1990} - &= \frac{101{,}991}{20} - &\approx 5099.55 \text{ people per year.} - -

-

- For Ottawa County, the population in 1990 was 187,768 and in 2010 was 263,801, so - - AV_{[1990,2010]} &= \frac{263{,}801 - 187{,}768}{2010 - 1990} - &= \frac{76{,}033}{20} - &\approx 3801.65 \text{ people per year.} - -

-
- - - -

- What are the units on each of the quantities you computed in (a.)? -

-
- - - -

- The units on AV_{[1990,2010]} for both counties are people per year. -

-
-
- - -

- Write a careful sentence that explains the meaning of the average rate of change of the Ottawa county population on the time interval [1990,2010]. Your sentence should begin something like - In an average year between 1990 and 2010, the population of Ottawa County was \ldots

-
- - - -

- Between 1990 and 2010, the population of Ottawa County grew by an average of - approximately 3801.65 people per year. -

-
-
- - -

- Which county had a greater average rate of change during the time interval [2000,2010]? - Were there any intervals in which one of the counties had a negative average rate of change? -

-
- - - -

- For Kent County on [2000,2010]: - AV_{[2000,2010]} = \frac{602{,}622 - 574{,}336}{10} = \frac{28{,}286}{10} \approx 2828.6 \text{ people per year.} - For Ottawa County on [2000,2010]: - AV_{[2000,2010]} = \frac{263{,}801 - 238{,}313}{10} = \frac{25{,}488}{10} = 2548.8 \text{ people per year.} - Kent County had a greater average rate of change during [2000,2010]. - In both counties, the population increased in every decade from 1960 to 2010, - so the average rate of change was positive on every decade interval for both counties. -

- - -
-
- - -

- Using the given data, what do you predict will be the population of Ottawa County in 2018? Why? -

-
- - - -

- Using the most recent decade's rate of change as a guide, Ottawa County grew at - 2548.8 people per year from 2000 to 2010. Projecting this rate forward - eight years from 2010: - 263{,}801 + 8 \cdot 2548.8 \approx 284{,}191 \text{ people.} -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ According to the US census, + the populations of Kent and Ottawa Counties in Michigan where GVSU is located + (Grand Rapids is in Kent, Allendale in Ottawa) + from 1960 to 2010 measured in 10-year intervals are given in the following tables. +

+ + + + Year: + 1960 + 1970 + 1980 + 1990 + 2000 + 2010 + + + Kent County population: + 363,187 + 411,044 + 444,506 + 500,631 + 574,336 + 602,622 + + + + + + Year: + 1960 + 1970 + 1980 + 1990 + 2000 + 2010 + + + Ottawa County Population: + 98,719 + 128,181 + 157,174 + 187,768 + 238,313 + 263,801 + + + +

+ Let K(Y) represent the population of Kent County in year Y and W(Y) the population of Ottawa County in year Y. +

+

+ + + +

+ Compute AV_{[1990,2010]} for both K and W. +

+ + +

+ For Kent County, AV_{[1990,2010]} \approx 5099.55 people per year. + For Ottawa County, AV_{[1990,2010]} \approx 3801.65 people per year. +

+ +

+ For Kent County, the population in 1990 was 500,631 and in 2010 was 602,622, so + + AV_{[1990,2010]} &= \frac{602{,}622 - 500{,}631}{2010 - 1990} + &= \frac{101{,}991}{20} + &\approx 5099.55 \text{ people per year.} + +

+

+ For Ottawa County, the population in 1990 was 187,768 and in 2010 was 263,801, so + + AV_{[1990,2010]} &= \frac{263{,}801 - 187{,}768}{2010 - 1990} + &= \frac{76{,}033}{20} + &\approx 3801.65 \text{ people per year.} + +

+
+ + + +

+ What are the units on each of the quantities you computed in (a.)? +

+
+ +

+ The units are people per year for both. +

+ +

+ The units on AV_{[1990,2010]} for both counties are people per year. +

+
+
+ + +

+ Write a careful sentence that explains the meaning of the average rate of change of the Ottawa county population on the time interval [1990,2010]. Your sentence should begin something like + In an average year between 1990 and 2010, the population of Ottawa County was \ldots

+
+ +

+ In an average year between 1990 and 2010, the population of Ottawa County was increasing by approximately 3801.65 people per year. +

+ +

+ In an average year between 1990 and 2010, the population of Ottawa County was increasing by approximately 3801.65 people per year. +

+
+
+ + +

+ Which county had a greater average rate of change during the time interval [2000,2010]? + Were there any intervals in which one of the counties had a negative average rate of change? +

+
+ +

+ Kent County had a greater average rate of change during the time interval [2000,2010]. + There were no intervals in which either county had a negative average rate of change. +

+ +

+ For Kent County on [2000,2010]: + AV_{[2000,2010]} = \frac{602{,}622 - 574{,}336}{10} = \frac{28{,}286}{10} \approx 2828.6 \text{ people per year.} + For Ottawa County on [2000,2010]: + AV_{[2000,2010]} = \frac{263{,}801 - 238{,}313}{10} = \frac{25{,}488}{10} = 2548.8 \text{ people per year.} + Kent County had a greater average rate of change during [2000,2010]. + In both counties, the population increased in every decade from 1960 to 2010, + so the average rate of change was positive on every decade interval for both counties. +

+ + +
+
+ + +

+ Using the given data, what do you predict will be the population of Ottawa County in 2018? Why? +

+
+ +

\approx 284{,}191 \text{ people.}

+ +

+ Using the most recent decade's rate of change as a guide, Ottawa County grew at + 2548.8 people per year from 2000 to 2010. Projecting this rate forward + eight years from 2010: + 263{,}801 + 8 \cdot 2548.8 \approx 284{,}191 \text{ people.} +

+
+
+
+
diff --git a/source/activities/act-changing-aroc-trends.xml b/source/activities/act-changing-aroc-trends.xml index 0b1d1eb3..3e62a017 100755 --- a/source/activities/act-changing-aroc-trends.xml +++ b/source/activities/act-changing-aroc-trends.xml @@ -1,144 +1,165 @@ - - - - - - - - - - - - - - - - -

- Let's consider two different functions and see how different computations of their average rate of change tells us about their respective behavior. Plots of q and h are shown in the figures in part (c). -

-

- - - -

- Consider the function q(x) = 4-(x-2)^2. - Compute AV_{[0,1]}, - AV_{[1,2]}, AV_{[2,3]}, and AV_{[3,4]}. - What do your last two computations tell you about the behavior of the function q on [2,4]? -

- - - - -

- Computing the function values: q(0)=0, q(1)=3, q(2)=4, - q(3)=3, q(4)=0. Thus: - AV_{[0,1]} = \frac{3-0}{1} = 3, \quad AV_{[1,2]} = \frac{4-3}{1} = 1, - AV_{[2,3]} = \frac{3-4}{1} = -1, \quad AV_{[3,4]} = \frac{0-3}{1} = -3. - Since AV_{[2,3]} and AV_{[3,4]} are both negative, q is - decreasing on [2,4]. -

-
- - - -

- Consider the function h(t) = 3 - 2(0.5)^t. - Compute AV_{[-1,1]}, - AV_{[1,3]}, and AV_{[3,5]}. - What do your computations tell you about the behavior of the function h on [-1,5]? -

-
- - - -

- Computing function values: h(-1) = 3 - 2(0.5)^{-1} = 3 - 4 = -1, - h(1) = 3 - 2(0.5) = 2, h(3) = 3 - 2(0.5)^3 = \frac{11}{4} \approx 2.75, - h(5) = 3 - 2(0.5)^5 = \frac{47}{16} \approx 2.9375. Thus: - AV_{[-1,1]} = \frac{2-(-1)}{2} = \frac{3}{2} = 1.5, - AV_{[1,3]} = \frac{\frac{11}{4} - 2}{2} = \frac{3}{8} \approx 0.375, - AV_{[3,5]} = \frac{\frac{47}{16} - \frac{11}{4}}{2} = \frac{3}{32} \approx 0.094. - All three average rates of change are positive but decreasing, so h is - increasing on [-1,5], but at a decreasing rate. -

-
-
- - -

- On the graphs that follow (q at left, h at right), plot the line segments whose respective slopes are the average rates of change you computed in (a) and (b). -

- - -

ADD ALT TEXT TO THIS IMAGE

- -

ADD ALT TEXT TO THIS IMAGE

- -
-
- - - -

On the graph of q, draw four line segments: one connecting (0,0) and (1,3) (slope 3), one connecting (1,3) and (2,4) (slope 1), one connecting (2,4) and (3,3) (slope -1), and one connecting (3,3) and (4,0) (slope -3). On the graph of h, draw three line segments: one connecting (-1,-1) and (1,2) (slope 1.5), one connecting (1,2) and (3,2.75) (slope 0.375), and one connecting (3,2.75) and (5,2.9375) (slope 0.094). The decreasing slopes on the left graph reflect that q increases then decreases, while the positive but decreasing slopes on the right reflect that h is increasing at a decreasing rate.

- - - - - - - - - - - -
-
- - -

- True or false: Since AV_{[0,3]} = 1, the function q is increasing on the interval (0,3). Justify your decision. -

-
- - - -

- False. Although AV_{[0,3]} = \frac{q(3)-q(0)}{3} = \frac{3-0}{3} = 1 > 0, - a positive average rate of change over an interval does not mean the function is - increasing everywhere on that interval. From part (a), AV_{[2,3]} = -1 < 0, - so q is actually decreasing on [2,3]. -

-
-
- - -

- Give an example of a function that has the same average rate of change no matter what interval you choose. - You can provide your example through a table, a graph, - or a formula; - regardless of your choice, write a sentence to explain. -

-
- - - -

- Any linear function has constant average rate of change. For example, - f(x) = x has AV_{[a,b]} = \frac{b-a}{b-a} = 1 for every interval - [a,b]. -

-
-
- -

- - -

See solutions to individual tasks above.

- -
-
+ + + + + + + + + + + + + + + + +

+ Let's consider two different functions and see how different computations of their average rate of change tells us about their respective behavior. Plots of q and h are shown in the figures in part (c). +

+

+ + + +

+ Consider the function q(x) = 4-(x-2)^2. + Compute AV_{[0,1]}, + AV_{[1,2]}, AV_{[2,3]}, and AV_{[3,4]}. + What do your last two computations tell you about the behavior of the function q on [2,4]? +

+ + +

+ AV_{[0,1]} = 3, AV_{[1,2]} = 1, AV_{[2,3]} = -1, and AV_{[3,4]} = -3. + The function q is decreasing on [2,4]. +

+ +

+ Computing the function values: q(0)=0, q(1)=3, q(2)=4, + q(3)=3, q(4)=0. Thus: + AV_{[0,1]} = \frac{3-0}{1} = 3, \quad AV_{[1,2]} = \frac{4-3}{1} = 1, + AV_{[2,3]} = \frac{3-4}{1} = -1, \quad AV_{[3,4]} = \frac{0-3}{1} = -3. + Since AV_{[2,3]} and AV_{[3,4]} are both negative, q is + decreasing on [2,4]. +

+
+ + + +

+ Consider the function h(t) = 3 - 2(0.5)^t. + Compute AV_{[-1,1]}, + AV_{[1,3]}, and AV_{[3,5]}. + What do your computations tell you about the behavior of the function h on [-1,5]? +

+
+ +

+ AV_{[-1,1]} = 1.5, AV_{[1,3]} \approx 0.375, and AV_{[3,5]} \approx 0.094. + On [-1,5], the function h is increasing but at a decreasing rate. +

+ +

+ Computing function values: h(-1) = 3 - 2(0.5)^{-1} = 3 - 4 = -1, + h(1) = 3 - 2(0.5) = 2, h(3) = 3 - 2(0.5)^3 = \frac{11}{4} \approx 2.75, + h(5) = 3 - 2(0.5)^5 = \frac{47}{16} \approx 2.9375. Thus: + AV_{[-1,1]} = \frac{2-(-1)}{2} = \frac{3}{2} = 1.5, + AV_{[1,3]} = \frac{\frac{11}{4} - 2}{2} = \frac{3}{8} \approx 0.375, + AV_{[3,5]} = \frac{\frac{47}{16} - \frac{11}{4}}{2} = \frac{3}{32} \approx 0.094. + All three average rates of change are positive but decreasing, so h is + increasing on [-1,5], but at a decreasing rate. +

+
+
+ + +

+ On the graphs that follow (q at left, h at right), plot the line segments whose respective slopes are the average rates of change you computed in (a) and (b). +

+ + +

ADD ALT TEXT TO THIS IMAGE

+ +

ADD ALT TEXT TO THIS IMAGE

+ +
+
+ + +

+ (a) +

+ + plot of average rate of change on the graph of q + plot of average rate of change on the graph of q + plot of average rate of change on the graph of q + +

+ (b) +

+ + plot of average rate of change on the graph of h + plot of average rate of change on the graph of h + plot of average rate of change on the graph of h + +
+ +

On the graph of q, draw four line segments: one connecting (0,0) and (1,3) (slope 3), one connecting (1,3) and (2,4) (slope 1), one connecting (2,4) and (3,3) (slope -1), and one connecting (3,3) and (4,0) (slope -3). On the graph of h, draw three line segments: one connecting (-1,-1) and (1,2) (slope 1.5), one connecting (1,2) and (3,2.75) (slope 0.375), and one connecting (3,2.75) and (5,2.9375) (slope 0.094). The decreasing slopes on the left graph reflect that q increases then decreases, while the positive but decreasing slopes on the right reflect that h is increasing at a decreasing rate.

+ + + plot of average rate of change on the graph of q + plot of average rate of change on the graph of q + plot of average rate of change on the graph of q + + + plot of average rate of change on the graph of h + plot of average rate of change on the graph of h + plot of average rate of change on the graph of h + +
+
+ + +

+ True or false: Since AV_{[0,3]} = 1, the function q is increasing on the interval (0,3). Justify your decision. +

+
+ + +

+ False. +

+
+ +

+ False. Although AV_{[0,3]} = \frac{q(3)-q(0)}{3} = \frac{3-0}{3} = 1 > 0, + a positive average rate of change over an interval does not mean the function is + increasing everywhere on that interval. From part (a), AV_{[2,3]} = -1 < 0, + so q is actually decreasing on [2,3]. +

+
+
+ + +

+ Give an example of a function that has the same average rate of change no matter what interval you choose. + You can provide your example through a table, a graph, + or a formula; + regardless of your choice, write a sentence to explain. +

+
+ +

Answers will vary but will be linear.

+ +

+ Any linear function has constant average rate of change. For example, + f(x) = x has AV_{[a,b]} = \frac{b-a}{b-a} = 1 for every interval + [a,b]. +

+
+
+
+
diff --git a/source/activities/act-changing-combining-arithmetic.xml b/source/activities/act-changing-combining-arithmetic.xml index e978222e..48db88e2 100755 --- a/source/activities/act-changing-combining-arithmetic.xml +++ b/source/activities/act-changing-combining-arithmetic.xml @@ -1,138 +1,145 @@ - - - - - - - - - - - - - - - - -

- Consider the functions f and g defined by the following figures. Assume that the given lines and curves pass through intersection points on the grid when it looks plausible. For instance, (0,2.5) and (3,-0.5) lie on the graph of f, and (-1,3) and (1.5, 1.5) lie on the graph of g. -

- - -

ADD ALT TEXT TO THIS IMAGE

- -

ADD ALT TEXT TO THIS IMAGE

- -
-

- - - -

- Determine the exact value of (f+g)(0). -

- - - - -

- From the graphs, f(0) = \frac{5}{2} and g(0) = 1, so - (f+g)(0) = \frac{5}{2} + 1 = \frac{7}{2}. -

-
- - - -

- Determine the exact value of (g-f)(1). -

-
- - - -

- From the graphs, f(1) = 4 and g(1) = 3, so - (g-f)(1) = 3 - 4 = -1. -

-
-
- - -

- Determine the exact value of (f \cdot g)(-1). -

-
- - - -

- From the graphs, f(-1) = 3 and g(-1) = 3, so - (f \cdot g)(-1) = 3 \cdot 3 = 9. -

-
-
- - -

- Are there any values of x for which \left( \frac{f}{g} \right)(x) is undefined? If not, explain why. If so, determine the values and justify your answer. -

-
- - - -

- \left(\frac{f}{g}\right)(x) is undefined wherever g(x) = 0. - From the graph, g(x) = 0 at x = -2 and x = 3. -

-
-
- - -

- For what values of x is (f \cdot g)(x) = 0? Why? -

-
- - - -

- (f \cdot g)(x) = 0 wherever f(x) = 0 or g(x) = 0. - From the graphs, f(x) = 0 at x = \frac{7}{3}, and - g(x) = 0 at x = -2 and x = 3. - So (f \cdot g)(x) = 0 at x \in \left\{-2,\, \frac{7}{3},\, 3\right\}. -

-
-
- - -

- Are there any values of x for which (f-g)(x) = 0? Why or why not? -

-
- - - -

- Yes: (f-g)(x) = 0 when f(x) = g(x). - One intersection is visible from the graphs at x = -1. - On the interval -1 \lt x \le 1, the formulas are f(x) = \frac{5}{2} + x - and g(x) = -x^2 + 4; setting them equal gives: - - x^2 + x - \frac{3}{2} &= 0 - x &= \frac{-1 + \sqrt{7}}{2}. - - So (f-g)(x) = 0 at x = -1 and x = \dfrac{\sqrt{7}-1}{2}. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Consider the functions f and g defined by the following figures. Assume that the given lines and curves pass through intersection points on the grid when it looks plausible. For instance, (0,2.5) and (3,-0.5) lie on the graph of f, and (-1,3) and (1.5, 1.5) lie on the graph of g. +

+ + + + + +

A piecewise linear function f(x). The first piece goes through (-2,3.5) and ends at the closed circle (-1,3), while the second piece starts at an open circle at (-1,1) and ends at a closed circle at (1,4), and the third piece starts at an open circle at (1,1) passes through an open circle at (2,1/4) and continues to the edge of the graph. +

+
+ + + + + +

A piecewise function g(x). The first piece is a parabola opening downward, with an open circle at the vertex (0,4) and a closed circle at the point (0,1). The first piece ends at a closed circle at (1,3). The second piece is a line starting at an open circle at (1,2) passing through an open circle at (2,1), and continuing to the edge of the graph. +

+
+ +
+ + + + + +

+ + + +

+ Determine the exact value of (f+g)(0). +

+ + +

(f+g)(0) = \frac{7}{2}

+ +

+ From the graphs, f(0) = \frac{5}{2} and g(0) = 1, so + (f+g)(0) = \frac{5}{2} + 1 = \frac{7}{2}. +

+
+ + + +

+ Determine the exact value of (g-f)(1). +

+
+ +

(g-f)(1) = -1

+ +

+ From the graphs, f(1) = 4 and g(1) = 3, so + (g-f)(1) = 3 - 4 = -1. +

+
+
+ + +

+ Determine the exact value of (f \cdot g)(-1). +

+
+ +

(f \cdot g)(-1) = 3

+ +

+ From the graphs, f(-1) = 1 and g(-1) = 3, so + (f \cdot g)(-1) = 1 \cdot 3 = 3. +

+
+
+ + +

+ Are there any values of x for which \left( \frac{f}{g} \right)(x) is undefined? If not, explain why. If so, determine the values and justify your answer. +

+
+ +

x = -2 and x = 3

+ +

+ \left(\frac{f}{g}\right)(x) is undefined wherever g(x) = 0. + From the graph, g(x) = 0 at x = -2 and x = 3. +

+
+
+ + +

+ For what values of x is (f \cdot g)(x) = 0? Why? +

+
+ +

(f \cdot g)(x) = 0 at x= -2,\, \frac{7}{3},\, 3

+ +

+ (f \cdot g)(x) = 0 wherever f(x) = 0 or g(x) = 0. + From the graphs, f(x) = 0 at x = \frac{7}{3}, and + g(x) = 0 at x = -2 and x = 3. + So (f \cdot g)(x) = 0 at x= -2,\, \frac{7}{3},\, 3. +

+
+
+ + +

+ Are there any values of x for which (f-g)(x) = 0? Why or why not? +

+
+ +

(f-g)(x) = 0 at one value between x=0 and x=1. Using algebraic formulas for the functions, x = \dfrac{\sqrt{7}-1}{2}

+ +

+ Yes: (f-g)(x) = 0 when f(x) = g(x). + On the interval 0 \lt x \le 1, the function f starts out below the function g and ends up above the function g with no jumps or holes, so there must have been a place where the two functions crossed. The formulas are f(x) = \frac{5}{2} + x + and g(x) = -x^2 + 4; setting them equal gives: + + x^2 + x - \frac{3}{2} &= 0 + x &= \frac{-1 + \sqrt{7}}{2}. + + So (f-g)(x) = 0 at x = \dfrac{\sqrt{7}-1}{2}, and it looks like they'll cross again off the right side of the graph as well if both functions continue. +

+
+
+
+
diff --git a/source/activities/act-changing-combining-context.xml b/source/activities/act-changing-combining-context.xml index 67a4d1d9..dc9dc1d8 100755 --- a/source/activities/act-changing-combining-context.xml +++ b/source/activities/act-changing-combining-context.xml @@ -1,128 +1,145 @@ - - - - - - - - - - - - - - - - -

- Let f be a function that measures a car's fuel economy in the following way. - Given an input velocity v in miles per hour, - f(v) is the number of gallons of fuel that the car consumes per mile (i.e., gallons per mile). - We know that f(60) = 0.04. -

-

- - - -

- What is the meaning of the statement - f(60) = 0.04 - in the context of the problem? - That is, what does this say about the car's fuel economy? - Write a complete sentence to explain. -

- - - - -

- At a speed of 60 miles per hour, the car consumes 0.04 gallons of fuel - for each mile traveled. -

-
- - - -

- Consider the function g(v) = \frac{1}{f(v)}. - What is the value of g(60)? - What are the units on g? - What does g measure? -

-
- - - -

- g(60) = \frac{1}{f(60)} = \frac{1}{0.04} = 25 miles per gallon. - The function g measures the car's fuel economy in miles per gallon - at a given speed. -

-
-
- - -

- Consider the function h(v) = v \cdot f(v). - What is the value of h(60)? - What are the units on h? - What does h measure? -

-
- - - -

- h(60) = 60 \cdot f(60) = 60 \cdot 0.04 = 2.4 gallons per hour. - The units follow from: miles/hour \times gallons/mile = gallons/hour. - The function h measures the rate at which the car consumes fuel - (in gallons per hour) at a given speed. -

-
-
- - -

- Do f(60), g(60), and h(60) tell us fundamentally different information, or are they all essentially saying the same thing? Explain. -

-
- - - -

- All three convey information about fuel consumption at 60 mph, but with - different units and perspectives: f(60) = 0.04 gives gallons per mile, - g(60) = 25 gives miles per gallon, and h(60) = 2.4 gives - gallons per hour. They describe the same phenomenon from different angles. -

-
-
- - -

- Suppose we also know that f(70) = 0.045. - Find the average rate of change of f on the interval [60,70]. - What are the units on the average rate of change of f? - What does this quantity measure? - Write a complete sentence to explain. -

-
- - - -

- AV_{[60,70]} = \frac{f(70)-f(60)}{70-60} = \frac{0.045 - 0.04}{10} = 0.0005 - \ \frac{\text{gal/mi}}{\text{mph}}. - This measures how much the car's fuel consumption rate (in gallons per mile) - increases per additional mile per hour of speed. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Let f be a function that measures a car's fuel economy in the following way. + Given an input velocity v in miles per hour, + f(v) is the number of gallons of fuel that the car consumes per mile (i.e., gallons per mile). + We know that f(60) = 0.04. +

+

+ + + +

+ What is the meaning of the statement + f(60) = 0.04 + in the context of the problem? + That is, what does this say about the car's fuel economy? + Write a complete sentence to explain. +

+ + +

+ At a speed of 60 miles per hour, the car consumes 0.04 gallons of fuel + for each mile traveled. +

+
+ +

+ At a speed of 60 miles per hour, the car consumes 0.04 gallons of fuel + for each mile traveled. +

+
+ + + +

+ Consider the function g(v) = \frac{1}{f(v)}. + What is the value of g(60)? + What are the units on g? + What does g measure? +

+
+ +

+ g(60) = 25 miles per gallon. + The function g measures the car's fuel economy in miles per gallon + at a given input speed. +

+
+ +

+ g(60) = \frac{1}{f(60)} = \frac{1}{0.04} = 25 miles per gallon. + The function g measures the car's fuel economy in miles per gallon + at a given speed. +

+
+
+ + +

+ Consider the function h(v) = v \cdot f(v). + What is the value of h(60)? + What are the units on h? + What does h measure? +

+
+ +

+ h(60) = 2.4 gallons per hour. + The function h measures the rate at which the car consumes fuel + (in gallons per hour) at a given speed. +

+
+ +

+ h(60) = 60 \cdot f(60) = 60 \cdot 0.04 = 2.4 gallons per hour. + The units follow from: miles/hour \times gallons/mile = gallons/hour. + The function h measures the rate at which the car consumes fuel + (in gallons per hour) at a given speed. +

+
+
+ + +

+ Do f(60), g(60), and h(60) tell us fundamentally different information, or are they all essentially saying the same thing? Explain. +

+
+ +

+ All three convey information about the fuel consumption at 60 mph, but with + different units and perspectives. +

+
+ +

+ All three convey information about fuel consumption at 60 mph, but with + different units and perspectives: f(60) = 0.04 gives gallons per mile, + g(60) = 25 gives miles per gallon, and h(60) = 2.4 gives + gallons per hour. They describe the same phenomenon from different angles. +

+
+
+ + +

+ Suppose we also know that f(70) = 0.045. + Find the average rate of change of f on the interval [60,70]. + What are the units on the average rate of change of f? + What does this quantity measure? + Write a complete sentence to explain. +

+
+ +

+ AV_{[60,70]} = 0.0005 \ \frac{\text{gal/mi}}{\text{mph}}. + This measures how much the car's fuel consumption rate (in gallons per mile) + increases per additional mile per hour of speed. +

+
+ +

+ AV_{[60,70]} = \frac{f(70)-f(60)}{70-60} = \frac{0.045 - 0.04}{10} = 0.0005 + \ \frac{\text{gal/mi}}{\text{mph}}. + This measures how much the car's fuel consumption rate (in gallons per mile) + increases per additional mile per hour of speed. +

+
+
+
+
diff --git a/source/activities/act-changing-combining-piecewise.xml b/source/activities/act-changing-combining-piecewise.xml index db411fce..43620e8f 100755 --- a/source/activities/act-changing-combining-piecewise.xml +++ b/source/activities/act-changing-combining-piecewise.xml @@ -1,131 +1,163 @@ - - - - - - - - - - - - - - - - -

- In what follows, - we work to understand two different piecewise functions entirely by hand based on familiar properties of linear and quadratic functions. -

-

- - - -

- Consider the function p defined by the following rule: - - p(x) = - \begin{cases} - -(x+2)^2 + 2, \amp x \lt 0 \\ - \frac{1}{2}(x-2)^2 + 1, \amp x \ge 0 - \end{cases} - - - What are the values of p(-4), p(-2), p(0), p(2), and p(4)? -

- - - - -

- For x \lt 0, use p(x) = -(x+2)^2 + 2: - p(-4) = -(-2)^2 + 2 = -2; - p(-2) = -(0)^2 + 2 = 2. - For x \ge 0, use p(x) = \frac{1}{2}(x-2)^2 + 1: - p(0) = \frac{1}{2}(4) + 1 = 3; - p(2) = 0 + 1 = 1; - p(4) = \frac{1}{2}(4) + 1 = 3. -

-
- - - -

- What point is the vertex of the quadratic part of p that is valid for x \lt 0? What point is the vertex of the quadratic part of p that is valid for x \ge 0? -

-
- - - -

- The left-side parabola -(x+2)^2 + 2 (valid for x \lt 0) opens - downward and has vertex (-2, 2). - The right-side parabola \frac{1}{2}(x-2)^2 + 1 (valid for x \ge 0) - opens upward and has vertex (2, 1). -

-
-
- - -

- For what values of x is p(x) = 0? In addition, what is the y-intercept of p? -

-
- - - -

- For x \lt 0, setting -(x+2)^2 + 2 = 0 gives (x+2)^2 = 2, - so x = -2 \pm \sqrt{2}. Both values x = -2 + \sqrt{2} \approx -0.586 - and x = -2 - \sqrt{2} \approx -3.414 lie in x \lt 0, so both are - zeros of p. The right-side parabola \frac{1}{2}(x-2)^2+1 \ge 1 \gt 0 - for all x \ge 0, so it contributes no zeros. - The y-intercept is p(0) = 3. -

-
-
- - -

- Sketch an accurate, labeled graph of y = p(x) on the axes provided at left in the following figure. -

- - -

ADD ALT TEXT TO THIS IMAGE

- -

ADD ALT TEXT TO THIS IMAGE

- -
-
- - - -

The graph of y = p(x) consists of two parabolic pieces. For x \lt 0, the piece -(x+2)^2+2 is a downward-opening parabola with vertex (-2,2) that passes through (-4,-2), (-2+\sqrt{2},0), (-2-\sqrt{2},0), and approaches (0,3) from the left (open endpoint). For x \ge 0, the piece \frac{1}{2}(x-2)^2+1 is an upward-opening parabola with vertex (2,1) that starts at (0,3) (closed endpoint) and passes through (4,3). The graph has a jump at x = 0 but the values approach 3 from both sides, so the graph is actually continuous there.

- - -
-
- - -

- For the function f defined by the righthand figure in (d), determine a piecewise-defined formula for f that is expressed in bracket notation similar to the definition of y = p(x) above. -

-
- - - -

Reading from the graph of f, the function appears piecewise linear on three intervals. For -2.5 \lt x \le -1, the line passes through (-2,3.5) and (-1,3), giving slope -\frac{1}{2} and formula f(x) = 3 - \frac{1}{2}(x+1). For -1 \lt x \le 1, the line passes through (0,2.5) and (1,4), giving slope \frac{3}{2} and formula f(x) = 4 + \frac{3}{2}(x-1). For 1 \lt x \lt 3.5 (excluding x = 2), the line passes through (1,1) and (3,-0.5), giving slope -\frac{3}{4} and formula f(x) = 1 - \frac{3}{4}(x-1). Thus f(x) = \begin{cases} 3 - \frac{1}{2}(x+1), \amp -2.5 \lt x \le -1 \\ 4 + \frac{3}{2}(x-1), \amp -1 \lt x \le 1 \\ 1 - \frac{3}{4}(x-1), \amp 1 \lt x \lt 3.5, \ x \ne 2 \end{cases}

-
-
- -

- - -

See solutions to individual tasks above.

- -
-
+ + + + + + + + + + + + + + + + +

+ In what follows, + we work to understand two different piecewise functions entirely by hand based on familiar properties of linear and quadratic functions. +

+

+ + + +

+ Consider the function p defined by the following rule: + + p(x) = + \begin{cases} + -(x+2)^2 + 2, \amp x \lt 0 \\ + \frac{1}{2}(x-2)^2 + 1, \amp x \ge 0 + \end{cases} + + + What are the values of p(-4), p(-2), p(0), p(2), and p(4)? +

+ + +

+ p(-4) = -2; + p(-2) = 2; + p(0) = 3; + p(2) = 1; + p(4) = 3. +

+
+ +

+ For x \lt 0, use p(x) = -(x+2)^2 + 2: + p(-4) = -(-2)^2 + 2 = -2; + p(-2) = -(0)^2 + 2 = 2. + For x \ge 0, use p(x) = \frac{1}{2}(x-2)^2 + 1: + p(0) = \frac{1}{2}(4) + 1 = 3; + p(2) = 0 + 1 = 1; + p(4) = \frac{1}{2}(4) + 1 = 3. +

+
+ + + +

+ What point is the vertex of the quadratic part of p that is valid for x \lt 0? What point is the vertex of the quadratic part of p that is valid for x \ge 0? +

+
+ +

The parabola that is valid for x \lt 0 has vertex (-2, 2). The parabola that is valid for x \ge 0 has vertex (2, 1).

+
+ +

+ The left-side parabola -(x+2)^2 + 2 (valid for x \lt 0) opens + downward and has vertex (-2, 2). + The right-side parabola \frac{1}{2}(x-2)^2 + 1 (valid for x \ge 0) + opens upward and has vertex (2, 1). +

+
+
+ + +

+ For what values of x is p(x) = 0? In addition, what is the y-intercept of p? +

+
+ +

p(x)=0 when x = -2 + \sqrt{2} \approx -0.586 + and x = -2 - \sqrt{2} \approx -3.414. The y-intercept is p(0) = 3.

+
+ +

+ For x \lt 0, setting -(x+2)^2 + 2 = 0 gives (x+2)^2 = 2, + so x = -2 \pm \sqrt{2}. Both values x = -2 + \sqrt{2} \approx -0.586 + and x = -2 - \sqrt{2} \approx -3.414 lie in x \lt 0, so both are + zeros of p. The right-side parabola \frac{1}{2}(x-2)^2+1 \ge 1 \gt 0 + for all x \ge 0, so it contributes no zeros. + The y-intercept is p(0) = 3. +

+
+
+ + +

+ Sketch an accurate, labeled graph of y = p(x) on the axes provided at left in the following figure. +

+ + + + + + +

Blank axes for graphing y = p(x)

+
+ + + + + +

A piecewise linear function f(x). The first piece goes through (-2,3.5) and ends at the closed circle (-1,3), while the second piece starts at an open circle at (-1,1) and ends at a closed circle at (1,4), and the third piece starts at an open circle at (1,1) passes through an open circle at (2,1/4) and continues to the edge of the graph. +

+
+ + +
+
+ + + + + + +

A piecewise function p(x). The first piece is an downward-opening parabola with vertex (-2,2) ending in an open circle at (0,-2), while the second piece is an upward-opening parabola starting at a closed circle at (0,3) with vertex (2,1). +

+
+ +
+ +

The graph of y = p(x) consists of two parabolic pieces. For x \lt 0, the piece -(x+2)^2+2 is a downward-opening parabola with vertex (-2,2) that passes through (-4,-2), (-2+\sqrt{2},0), (-2-\sqrt{2},0), and approaches (0,-2) from the left (open endpoint). For x \ge 0, the piece \frac{1}{2}(x-2)^2+1 is an upward-opening parabola with vertex (2,1) that starts at (0,3) (closed endpoint) and passes through (4,3). The graph has a jump at x = 0.

+ + + + + +

A piecewise function p(x). The first piece is an downward-opening parabola with vertex (-2,2) ending in an open circle at (0,-2), while the second piece is an upward-opening parabola starting at a closed circle at (0,3) with vertex (2,1). +

+
+ + + +
+
+ + +

+ For the function f defined by the righthand figure in (d), determine a piecewise-defined formula for f that is expressed in bracket notation similar to the definition of y = p(x) above. +

+
+ +

f(x) = \begin{cases} 3 - \frac{1}{2}(x+1), \amp -2.5 \lt x \le -1 \\ 4 + \frac{3}{2}(x-1), \amp -1 \lt x \le 1 \\ 1 - \frac{3}{4}(x-1), \amp 1 \lt x \lt 3.5, \ x \ne 2 \end{cases}

+
+ +

Reading from the graph of f, the function appears piecewise linear on three intervals. For -2.5 \lt x \le -1, the line passes through (-2,3.5) and (-1,3), giving slope -\frac{1}{2} and formula f(x) = 3 - \frac{1}{2}(x+1). For -1 \lt x \le 1, the line passes through (0,2.5) and (1,4), giving slope \frac{3}{2} and formula f(x) = 4 + \frac{3}{2}(x-1). For 1 \lt x \lt 3.5 (excluding x = 2), the line passes through (1,1) and (3,-0.5), giving slope -\frac{3}{4} and formula f(x) = 1 - \frac{3}{4}(x-1). Thus f(x) = \begin{cases} 3 - \frac{1}{2}(x+1), \amp -2.5 \lt x \le -1 \\ 4 + \frac{3}{2}(x-1), \amp -1 \lt x \le 1 \\ 1 - \frac{3}{4}(x-1), \amp 1 \lt x \lt 3.5, \ x \ne 2 \end{cases}

+
+
+
+
diff --git a/source/activities/act-changing-composite-aroc.xml b/source/activities/act-changing-composite-aroc.xml index 90841075..45db491c 100755 --- a/source/activities/act-changing-composite-aroc.xml +++ b/source/activities/act-changing-composite-aroc.xml @@ -1,98 +1,92 @@ - - - - - - - - - - - - - - - - -

- Let f(x) = 2x^2 - 3x + 1 and g(x) = \frac{5}{x}. -

-

- - - -

- Compute f(1+h) and expand and simplify the result as much as possible by combining like terms. -

- - - - -

- - f(1+h) &= 2(1+h)^2 - 3(1+h) + 1 - &= 2(1 + 2h + h^2) - 3 - 3h + 1 - &= 2h^2 + h. - -

-
- - - -

- Determine the most simplified expression you can for the average rate of change of f on the interval [1,1+h]. - That is, determine AV_{[1,1+h]} for f and simplify the result as much as possible. -

-
- - - -

- Since f(1) = 2 - 3 + 1 = 0 and f(1+h) = 2h^2 + h: - AV_{[1,1+h]} = \frac{f(1+h) - f(1)}{h} = \frac{2h^2 + h}{h} = 2h + 1. -

-
-
- - -

- Compute g(1+h). - Is there any valid algebra you can do to write g(1+h) more simply? -

-
- - - -

- g(1+h) = \frac{5}{1+h}. - This expression cannot be simplified further. -

-
-
- - -

- Determine the most simplified expression you can for the average rate of change of g on the interval [1,1+h]. - That is, determine AV_{[1,1+h]} for g and simplify the result. -

-
- - - -

- Since g(1) = 5: - - AV_{[1,1+h]} &= \frac{g(1+h) - g(1)}{h} = \frac{\frac{5}{1+h} - 5}{h} - &= \frac{5 - 5(1+h)}{(1+h)h} = \frac{-5h}{(1+h)h} = \frac{-5}{1+h}. - -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Let f(x) = 2x^2 - 3x + 1 and g(x) = \frac{5}{x}. +

+

+ + + +

+ Compute f(1+h) and expand and simplify the result as much as possible by combining like terms. +

+ + +

f(1+h) = 2h^2 + h

+ +

+ + f(1+h) &= 2(1+h)^2 - 3(1+h) + 1 + &= 2(1 + 2h + h^2) - 3 - 3h + 1 + &= 2h^2 + h. + +

+
+ + + +

+ Determine the most simplified expression you can for the average rate of change of f on the interval [1,1+h]. + That is, determine AV_{[1,1+h]} for f and simplify the result as much as possible. +

+
+ +

AV_{[1,1+h]} = 2h + 1

+ +

+ Since f(1) = 2 - 3 + 1 = 0 and f(1+h) = 2h^2 + h: + AV_{[1,1+h]} = \frac{f(1+h) - f(1)}{h} = \frac{2h^2 + h}{h} = 2h + 1. +

+
+
+ + +

+ Compute g(1+h). + Is there any valid algebra you can do to write g(1+h) more simply? +

+
+ +

g(1+h) = \frac{5}{1+h}

+ +

+ g(1+h) = \frac{5}{1+h}. + This expression cannot be simplified further. +

+
+
+ + +

+ Determine the most simplified expression you can for the average rate of change of g on the interval [1,1+h]. + That is, determine AV_{[1,1+h]} for g and simplify the result. +

+
+ +

AV_{[1,1+h]} = \frac{-5}{1+h}

+ +

+ Since g(1) = 5: + + AV_{[1,1+h]} &= \frac{g(1+h) - g(1)}{h} = \frac{\frac{5}{1+h} - 5}{h} + &= \frac{5 - 5(1+h)}{(1+h)h} = \frac{-5h}{(1+h)h} = \frac{-5}{1+h}. + +

+
+
+
+
diff --git a/source/activities/act-changing-composite-crickets-celsius.xml b/source/activities/act-changing-composite-crickets-celsius.xml index ae7a3b91..92f55e5d 100755 --- a/source/activities/act-changing-composite-crickets-celsius.xml +++ b/source/activities/act-changing-composite-crickets-celsius.xml @@ -1,102 +1,248 @@ - - - - - - - - - - - - - - - - -

- Let F = D(N) = 40 + 0.25N be Dolbear's function that converts an input of number of chirps per minute to degrees Fahrenheit, and let C = G(F) = \frac{5}{9}(F-32) be the function that converts an input of degrees Fahrenheit to an output of degrees Celsius. -

-

- - - -

- Determine a formula for the new function H = (G \circ D) that depends only on the variable N. -

- - - - -

- H(N) = G(D(N)) = \frac{5}{9}((40 + 0.25N) - 32) = \frac{5}{9}(8 + 0.25N). -

-
- - - -

- What is the meaning of the function you found in (a)? -

-
- - - -

- The function H converts the number of cricket chirps per minute directly - into a temperature in degrees Celsius. -

-
-
- - -

- How does a plot of the function H = (G \circ D) compare to that of Dolbear's function? Sketch a plot of y = H(N) = (G \circ D)(N) on the blank axes to the right of the plot of Dolbear's function, and discuss the similarities and differences between them. Be sure to label the vertical scale on your axes. -

- - -

ADD ALT TEXT TO THIS IMAGE

- -

ADD ALT TEXT TO THIS IMAGE

- -
-
- - - -

Both Dolbear's function D and H = (G \circ D) are linear functions of N, so their graphs have the same shape. Dolbear's function has slope \frac{1}{4} (degrees Fahrenheit per chirp per minute), while H(N) = \frac{5}{9}(0.25N+8) has a smaller slope of \frac{5}{36} (degrees Celsius per chirp per minute). The vertical scale on the plot of H should reflect the Celsius range: H(40) = 10 (corresponding to 50^\circ F) and H(180) = \frac{265}{9} \approx 29.4 (corresponding to 85^\circ F). The plot of H is an increasing line on [40, 180], similar to Dolbear's function but with a shallower slope and Celsius units on the vertical axis.

- - - - - -
-
- - -

- What is the domain of the function H = G \circ D? What is its range? -

-
- - - -

- As an abstract mathematical function, both the domain and range are all real - numbers. In the context of Dolbear's model (domain [40, 180] chirps per - minute), the domain of H is [40, 180] and the corresponding range - is approximately [10, 29.4] degrees Celsius. -

-
-
- -

- - -

See solutions to individual tasks above.

- -
-
+ + + + + + + + + + + + + + + + +

+ Let F = D(N) = 40 + 0.25N be Dolbear's function that converts an input of number of chirps per minute to degrees Fahrenheit, and let C = G(F) = \frac{5}{9}(F-32) be the function that converts an input of degrees Fahrenheit to an output of degrees Celsius. +

+

+ + + +

+ Determine a formula for the new function H = (G \circ D) that depends only on the variable N. +

+ + +

H(N) = \frac{5}{9}(8 + 0.25N)

+ +

+ H(N) = G(D(N)) = \frac{5}{9}((40 + 0.25N) - 32) = \frac{5}{9}(8 + 0.25N). +

+
+ + + +

+ What is the meaning of the function you found in (a)? +

+
+ +

+ The function H converts the number of cricket chirps per minute directly + into a temperature in degrees Celsius. +

+ +

+ The function H converts the number of cricket chirps per minute directly + into a temperature in degrees Celsius. +

+
+
+ + +

+ How does a plot of the function H = (G \circ D) compare to that of Dolbear's function? Sketch a plot of y = H(N) = (G \circ D)(N) on the blank axes to the right of the plot of Dolbear's function, and discuss the similarities and differences between them. Be sure to label the vertical scale on your axes. +

+ + + + + + p1=(40,50) + p2=(80,60) + p3=(120,70) + p4=(160,80) + p5=(180,85) + + + + + + (120,70) + + + + + + +

Plot of D(N) with horizontal axis labeled N (chirps per minute) and vertical axis in degrees Fahrenheit.

+

+ The graph is a line segment from (40,50) to (180,85), also going through the points (80, 60), (120, 70), and (160, 80). +

+
+ + + + + + + + + + + + + +

Blank axes for plotting H(N) with horizontal axis labeled N (chirps per minute).

+
+ + + + +
+
+ + + + + + + p1=(40,50) + p2=(80,60) + p3=(120,70) + p4=(160,80) + p5=(180,85) + + + + + + (120,70) + + + + + + +

Plot of D(N) with horizontal axis labeled N (chirps per minute) and vertical axis in degrees Fahrenheit.

+

+ The graph is a line segment from (40,50) to (180,85), also going through the points (80, 60), (120, 70), and (160, 80). +

+
+ + + + + h(x)=5/9*(8+0.25*x) + + + + + + + +

Plot of the function H(N) with horizontal axis labeled N (chirps per minute) and vertical axis labeled T (degrees Celsius).

+

+ The graph is a line segment from (40,10) to (180, \frac{265}{9}). +

+
+ +
+
+ +

Both Dolbear's function D and H = (G \circ D) are linear functions of N, so their graphs have the same shape. Dolbear's function has slope \frac{1}{4} (degrees Fahrenheit per chirp per minute), while H(N) = \frac{5}{9}(0.25N+8) has a smaller slope of \frac{5}{36} (degrees Celsius per chirp per minute). The vertical scale on the plot of H should reflect the Celsius range: H(40) = 10 (corresponding to 50^\circ F) and H(180) = \frac{265}{9} \approx 29.4 (corresponding to 85^\circ F). The plot of H is an increasing line on [40, 180], similar to Dolbear's function but with a shallower slope and Celsius units on the vertical axis.

+ + + + + + p1=(40,50) + p2=(80,60) + p3=(120,70) + p4=(160,80) + p5=(180,85) + + + + + + (120,70) + + + + + + +

Plot of D(N) with horizontal axis labeled N (chirps per minute) and vertical axis in degrees Fahrenheit.

+

+ The graph is a line segment from (40,50) to (180,85), also going through the points (80, 60), (120, 70), and (160, 80). +

+
+ + + + + h(x)=5/9*(8+0.25*x) + + + + + + + +

Plot of the function H(N) with horizontal axis labeled N (chirps per minute) and vertical axis labeled T (degrees Celsius).

+

+ The graph is a line segment from (40,10) to (180, \frac{265}{9}). +

+
+ +
+ + +
+
+ + +

+ What is the domain of the function H = G \circ D? What is its range? +

+
+ +

The domain of H is [40, 180] and the range is approximately [10, 29.4].

+ +

+ As an abstract mathematical function, both the domain and range are all real + numbers. In the context of Dolbear's model (domain [40, 180] chirps per + minute), the domain of H is [40, 180] and the corresponding range + is approximately [10, 29.4] degrees Celsius. +

+
+
+
+
diff --git a/source/activities/act-changing-composite-tables-graphs.xml b/source/activities/act-changing-composite-tables-graphs.xml index 7857ecd8..a4a38735 100755 --- a/source/activities/act-changing-composite-tables-graphs.xml +++ b/source/activities/act-changing-composite-tables-graphs.xml @@ -1,192 +1,212 @@ - - - - - - - - - - - - - - - - -

- Let functions p and q be given by the graphs in the figure below, which are each piecewise linear - that is, parts that look like straight lines are straight lines. In addition, let f and g be given by the tables below. -

- - - - - - x - - 0 - 1 - 2 - 3 - 4 - - - - f(x) - - 6 - 4 - 3 - 4 - 6 - - - - g(x) - - 1 - 3 - 0 - 4 - 2 - - - -

ADD ALT TEXT TO THIS IMAGE

- -
-

- Compute each of the following quantities or explain why they are not defined. -

-

- - - -

- p(q(0)) -

- - - - -

- From the graph, q(0) = 2 and p(2) = 1, so p(q(0)) = 1. -

-
- - - -

- q(p(0)) -

-
- - - -

- From the graph, p(0) = -\frac{1}{2} and q\!\left(-\frac{1}{2}\right) = 2, - so q(p(0)) = 2. -

-
-
- - - (p \circ p)(-1) - - - - -

- From the graph, p(-1) = -1, so (p \circ p)(-1) = p(p(-1)) = p(-1) = -1. -

-
-
- - -

- (f \circ g)(2) -

-
- - - -

- From the table, g(2) = 0 and f(0) = 6, so (f \circ g)(2) = 6. -

-
-
- - -

- (g \circ f)(3) -

-
- - - -

- From the table, f(3) = 4 and g(4) = 2, so (g \circ f)(3) = 2. -

-
-
- - -

- g(f(0)) -

-
- - - -

- From the table, f(0) = 6, but g(6) is not defined in the table, - so g(f(0)) is undefined. -

-
-
- - -

- For what value(s) of x is f(g(x)) = 4? -

-
- - - -

- We need f(g(x)) = 4, which requires g(x) = 1 or g(x) = 3 - (since f(1)=4 and f(3)=4 from the table). From the table, - g(0) = 1 and g(1) = 3, so f(g(x)) = 4 for x = 0 - and x = 1. -

-
-
- - -

- For what value(s) of x is q(p(x)) = 1? -

-
- - - -

- We need q(p(x)) = 1, which (from the graph of q) requires - p(x) = -\frac{4}{3} or p(x) = 2. From the graph of p, - p(x) = 2 at x = 2 and at x \approx -2.5; there are no - x-values for which p(x) = -\frac{4}{3}. So q(p(x)) = 1 - for x = 2 and x \approx -2.5. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Let functions p and q be given by the graphs in the figure below, which are each piecewise linear - that is, parts that look like straight lines are straight lines. In addition, let f and g be given by the tables below. +

+ + + + + + x + + 0 + 1 + 2 + 3 + 4 + + + + f(x) + + 6 + 4 + 3 + 4 + 6 + + + + g(x) + + 1 + 3 + 0 + 4 + 2 + + + + + + + + + + + + + + + +

graph of two piecewise linear functions p(x) and q(x) with domain at least [-3.5,3.5]. Each function consists of three linear pieces.

+

The first piece of p(x) goes through the point (-3, 3) and ends at the point (-1, -1). The second piece of p(x) starts at the point (-1, -1) and ends at the point (1, 0). The third piece of p(x) starts at the point (1, 0) and goes through the point (2, 2).

+

The first piece of q(x) goes through the point (-2, -1) and ends at the point (-1, 2). The second piece of q(x) starts at the point (-1, 2) and ends at the point (1, 2). The third piece of q(x) starts at the point (1, 2) and goes through the point (3, 0). +

+ + + +
+

+ Compute each of the following quantities or explain why they are not defined. +

+

+ + + +

+ p(q(0)) +

+ + +

p(q(0)) = 1

+ +

+ From the graph, q(0) = 2 and p(2) = 1, so p(q(0)) = 1. +

+
+ + + +

+ q(p(0)) +

+
+ +

q(p(0)) = 2

+ +

+ From the graph, p(0) = -\frac{1}{2} and q\!\left(-\frac{1}{2}\right) = 2, + so q(p(0)) = 2. +

+
+
+ + + (p \circ p)(-1) + + +

(p \circ p)(-1) = -1

+ +

+ From the graph, p(-1) = -1, so (p \circ p)(-1) = p(p(-1)) = p(-1) = -1. +

+
+
+ + +

+ (f \circ g)(2) +

+
+ +

(f \circ g)(2) = 6

+ +

+ From the table, g(2) = 0 and f(0) = 6, so (f \circ g)(2) = 6. +

+
+
+ + +

+ (g \circ f)(3) +

+
+ +

(g \circ f)(3) = 2

+ +

+ From the table, f(3) = 4 and g(4) = 2, so (g \circ f)(3) = 2. +

+
+
+ + +

+ g(f(0)) +

+
+ +

g(f(0)) = \text{undefined}

+ +

+ From the table, f(0) = 6, but g(6) is not defined in the table, + so g(f(0)) is undefined. +

+
+
+ + +

+ For what value(s) of x is f(g(x)) = 4? +

+
+ +

f(g(x)) = 4 when x = 0 or x = 1

+ +

+ We need f(g(x)) = 4, which requires g(x) = 1 or g(x) = 3 + (since f(1)=4 and f(3)=4 from the table). From the table, + g(0) = 1 and g(1) = 3, so f(g(x)) = 4 for x = 0 + and x = 1. +

+
+
+ + +

+ For what value(s) of x is q(p(x)) = 1? +

+
+ +

q(p(x)) = 1 when x = 2 or x \approx -2.5

+ +

+ We need q(p(x)) = 1, which (from the graph of q) requires + p(x) = -\frac{4}{3} or p(x) = 2. From the graph of p, + p(x) = 2 at x = 2 and at x \approx -2.5; there are no + x-values for which p(x) = -\frac{4}{3}. So q(p(x)) = 1 + for x = 2 and x \approx -2.5. +

+
+
+
+
diff --git a/source/activities/act-changing-functions-is-it.xml b/source/activities/act-changing-functions-is-it.xml index 00ad7f1a..2768fdb3 100755 --- a/source/activities/act-changing-functions-is-it.xml +++ b/source/activities/act-changing-functions-is-it.xml @@ -1,152 +1,152 @@ - - - - - - - - - - - - - - - - -

- Each of the following prompts describes a relationship between two quantities. For each, your task is to decide whether or not the relationship can be thought of as a function. If not, explain why. If so, state the domain and codomain of the function and write at least one sentence to explain the process that leads from the collection of inputs to the collection of outputs. -

-

- - - -

- The relationship between x and y in each of the graphs below (address each graph separately as a potential situation where y is a function of x). In the lefthand figure, any point on the circle relates x and y. For instance, the y-value \sqrt{7} is related to the x-value -3. In the righthand figure, any point on the blue curve relates x and y. For instance, when x = -1, the corresponding y-value is y = 3. An unfilled circle indicates that there is not a point on the graph at that specific location. -

- - -

ADD ALT TEXT TO THIS IMAGE

- -

ADD ALT TEXT TO THIS IMAGE

- -
- - - - -

- The circle is not a function of x, because some values of x - correspond to more than one value of y. For example, when x = 0, - both y = 4 and y = -4 lie on the circle. -

-

- The curve in the righthand figure is a function of x, because - each value of x in the domain corresponds to exactly one value of y. -

-
- - - -

- The relationship between the day of the year and the value of the S&P500 stock index (at the close of trading on a given day), where we attempt to consider the index's value (at the close of trading) as a function of the day of the year. -

-
- - - -

- The closing value of the S&P500 can be expressed as a function of the day of - the year, provided the domain is restricted to trading days (excluding weekends and - market holidays). With this restriction, each day in the domain corresponds to - exactly one closing value. -

-
-
- - -

- The relationship between a car's velocity and its odometer, where we attempt to view the car's odometer reading as a function of its velocity. -

-
- - - -

- The odometer reading cannot be viewed as a function of the car's velocity. - The same speed can occur at many different odometer readings throughout a trip, - so a single velocity value can correspond to multiple odometer values. -

-
-
- - -

- The relationship between x and y that is given in the following table where we attempt to view y as depending on x. -

- - - - - x - - - 1 - - - 2 - - - 3 - - - 2 - - - 1 - - - - - y - - - 11 - - - 12 - - - 13 - - - 14 - - - 15 - - - - -
- - - -

- The table does not represent a function, because the input values - x = 1 and x = 2 each correspond to more than one output value. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Each of the following prompts describes a relationship between two quantities. For each, your task is to decide whether or not the relationship can be thought of as a function. If not, explain why. If so, state the domain and codomain of the function and write at least one sentence to explain the process that leads from the collection of inputs to the collection of outputs. +

+

+ + + +

+ The relationship between x and y in each of the graphs below (address each graph separately as a potential situation where y is a function of x). In the lefthand figure, any point on the circle relates x and y. For instance, the y-value \sqrt{7} is related to the x-value -3. In the righthand figure, any point on the blue curve relates x and y. For instance, when x = -1, the corresponding y-value is y = 3. An unfilled circle indicates that there is not a point on the graph at that specific location. +

+ + +

ADD ALT TEXT TO THIS IMAGE

+ +

ADD ALT TEXT TO THIS IMAGE

+ +
+ + +

The circle is not a function of x, but the curve in the right-hand figure is a function of x.

+ +

+ The circle is not a function of x, because some values of x + correspond to more than one value of y. For example, when x = 0, + both y = 4 and y = -4 lie on the circle. +

+

+ The curve in the right-hand figure is a function of x, because + each value of x in the domain corresponds to exactly one value of y. +

+
+ + + +

+ The relationship between the day of the year and the value of the S&P500 stock index (at the close of trading on a given day), where we attempt to consider the index's value (at the close of trading) as a function of the day of the year. +

+
+ +

+ The relationship between the day of the year and the S&P500 stock index is a function. +

+ +

+ The closing value of the S&P500 can be expressed as a function of the day of + the year, provided the domain is restricted to trading days (excluding weekends and + market holidays). With this restriction, each day in the domain corresponds to + exactly one closing value. +

+
+
+ + +

+ The relationship between a car's velocity and its odometer, where we attempt to view the car's odometer reading as a function of its velocity. +

+
+ +

+ The odometer reading cannot be viewed as a function of the car's velocity. +

+ +

+ The odometer reading cannot be viewed as a function of the car's velocity. + The same speed can occur at many different odometer readings throughout a trip, + so a single velocity value can correspond to multiple odometer values. +

+
+
+ + +

+ The relationship between x and y that is given in the following table where we attempt to view y as depending on x. +

+ + + + + x + + + 1 + + + 2 + + + 3 + + + 2 + + + 1 + + + + + y + + + 11 + + + 12 + + + 13 + + + 14 + + + 15 + + + + +
+ +

+ Not a function, because there is at least one input value which corresponds to more than one output value. +

+ +

+ The table does not represent a function, because the input values + x = 1 and x = 2 each correspond to more than one output value. +

+
+
+
+
diff --git a/source/activities/act-changing-functions-spherical-tank-draining.xml b/source/activities/act-changing-functions-spherical-tank-draining.xml index 24c66467..4e06edcd 100755 --- a/source/activities/act-changing-functions-spherical-tank-draining.xml +++ b/source/activities/act-changing-functions-spherical-tank-draining.xml @@ -1,147 +1,166 @@ - - - - - - - - - - - - - - - - -

- Consider a spherical tank of radius 4 m that is completely full of water. Suppose that the tank is being drained by regulating an exit valve in such a way that the height of the water in the tank is always decreasing at a rate of 0.5 meters per minute. Let - V be the volume of water in the tank (in cubic meters) at a given time t (in minutes), and - h the depth of the water (in meters) at the same time. It can be shown using calculus - that V is a function of t according to the model - - V = p(t) = \frac{256\pi}{3} - \frac{\pi}{24} t^2(24-t) - . - In addition, let h = q(t) be the function whose output is the depth of the water in the tank at time t. -

-

- - - -

- What is the height of the water when t = 0? When t = 1? When t = 2? How long will it take the tank to completely drain? Why? -

- - - - -

- At t = 0, the tank is full and the height of the water is 8 m. - At t = 1 minute, 0.5 m of water has drained and the height is 7.5 m. - At t = 2 minutes, 1 m of water has drained and the height is 7 m. -

-

- The tank has 8 m of water (depth), which is 16 half-meters, with one - half-meter draining each minute. Thus it will take 16 minutes for the tank - to drain completely. The linear height model - h = q(t) = 8 - 0.5t - gives q(t) = 0 when t = 16. -

-
- - - -

- What is the domain of the model h = q(t)? What is the domain of the model V = p(t)? -

-
- - - -

- The domain of each model is determined by the time it takes the tank to drain. - Assuming the tank begins draining at t = 0 minutes and is empty at - t = 16 minutes, the domain of both models is 0 \le t \le 16, - or equivalently [0, 16]. -

-
-
- - -

- How much water is in the tank when the tank is full? What is the range of the model h = q(t)? What is the range of the model V = p(t)? -

-
- - - -

- When the tank is full, the depth of the water equals the diameter of the tank, - 2 \times 4 = 8 m. The volume of water in the full tank equals the volume - of the sphere: - \frac{4}{3}\pi (4)^3 = \frac{256\pi}{3} \approx 268 \text{ m}^3. -

-

- The range of the volume model is 0 \le V \le \frac{256\pi}{3}, going from - completely empty to completely full. The range of the height model is likewise - 0 \le h \le 8. -

-
-
- - -

- We will frequently use a graphing utility to help us understand function behavior, and strongly recommend Desmos because it is intuitive, online, and free. To learn more about Desmos, see their outstanding online tutorials.

-

- In this prepared Desmos worksheet, you can see how we enter the (abstract) function V = p(t) = \frac{256\pi}{3} - \frac{\pi}{24} t^2(24-t), as well as the corresponding graph the program generates. Make as many observations as you can about the model V = p(t). You should discuss its shape and overall behavior, its domain, its range, and more. -

-
- - - -

The graph of V = p(t) = \frac{256\pi}{3} - \frac{\pi}{24}t^2(24-t) on [0,16] is a curve that decreases from V(0) = \frac{256\pi}{3} \approx 268 cubic meters down to V(16) = 0. The curve is concave down for small t (volume decreasing rapidly as the full, wide sphere loses water) and concave up near t = 16 (volume decreasing more slowly as the narrow bottom empties). The domain is [0, 16] minutes and the range is \left[0, \frac{256\pi}{3}\right] cubic meters.

- - -
-
- - -

- How does the model V = p(t) = \frac{256\pi}{3} - \frac{\pi}{24} t^2(24-t) differ from the abstract function y = r(x) = \frac{256\pi}{3} - \frac{\pi}{24} x^2(24-x)? In particular, how do the domain and range of the model differ from those of the abstract function, if at all? -

-
- - - -

- The model V = p(t) differs from the abstract function y = r(x) - in its domain and range. The model's domain is restricted to [0, 16] - and its range to \left[0, \frac{256\pi}{3}\right] by the physical context. - The abstract function has an unrestricted domain and an unrestricted range. -

-
-
- - -

- How should the graph of the height function h = q(t) appear? Can you determine a formula for q? Explain your thinking. -

-
- - - -

- The height function should be linear and decreasing, because the height decreases - by the same amount (0.5 m) every minute. The formula is - q(t) = 8 - 0.5t. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Consider a spherical tank of radius 4 m that is completely full of water. Suppose that the tank is being drained by regulating an exit valve in such a way that the height of the water in the tank is always decreasing at a rate of 0.5 meters per minute. Let + V be the volume of water in the tank (in cubic meters) at a given time t (in minutes), and + h the depth of the water (in meters) at the same time. It can be shown using calculus + that V is a function of t according to the model + + V = p(t) = \frac{256\pi}{3} - \frac{\pi}{24} t^2(24-t) + . + In addition, let h = q(t) be the function whose output is the depth of the water in the tank at time t. +

+

+ + + +

+ What is the height of the water when t = 0? When t = 1? When t = 2? How long will it take the tank to completely drain? Why? +

+ + +

+ At t = 0, the height of the water is 8 m. + At t = 1 minute, the height is 7.5 m. + At t = 2 minutes, the height is 7 m. + It will take 16 minutes for the tank + to drain completely. +

+
+ +

+ At t = 0, the tank is full and the height of the water is 8 m. + At t = 1 minute, 0.5 m of water has drained and the height is 7.5 m. + At t = 2 minutes, 1 m of water has drained and the height is 7 m. +

+

+ The tank has 8 m of water (depth), which is 16 half-meters, with one + half-meter draining each minute. Thus it will take 16 minutes for the tank + to drain completely. The linear height model + h = q(t) = 8 - 0.5t + gives q(t) = 0 when t = 16. +

+
+ + + +

+ What is the domain of the model h = q(t)? What is the domain of the model V = p(t)? +

+
+ +

The domain of each model is 0 \le t \le 16, + or equivalently [0, 16].

+ +

+ The domain of each model is determined by the time it takes the tank to drain. + Assuming the tank begins draining at t = 0 minutes and is empty at + t = 16 minutes, the domain of both models is 0 \le t \le 16, + or equivalently [0, 16]. +

+
+
+ + +

+ How much water is in the tank when the tank is full? What is the range of the model h = q(t)? What is the range of the model V = p(t)? +

+
+ +

+ When the tank is full, there are \frac{256\pi}{3} \approx 268.1 cubic meters of water in the tank. + The range of the model h = q(t) is 0 \le h \le 8, or equivalently [0, 8]. + The range of the model V = p(t) is 0 \le V \le \frac{256\pi}{3}, or equivalently \left[0, \frac{256\pi}{3}\right]. +

+
+ +

+ When the tank is full, the depth of the water equals the diameter of the tank, + 2 \times 4 = 8 m. The volume of water in the full tank equals the volume + of the sphere: + \frac{4}{3}\pi (4)^3 = \frac{256\pi}{3} \approx 268 \text{ m}^3. +

+

+ The range of the volume model is 0 \le V \le \frac{256\pi}{3}, going from + completely empty to completely full. The range of the height model is likewise + 0 \le h \le 8. +

+
+
+ + +

+ We will frequently use a graphing utility to help us understand function behavior, and strongly recommend Desmos because it is intuitive, online, and free. To learn more about Desmos, see their outstanding online tutorials.

+

+ In this prepared Desmos worksheet, you can see how we enter the (abstract) function V = p(t) = \frac{256\pi}{3} - \frac{\pi}{24} t^2(24-t), as well as the corresponding graph the program generates. Make as many observations as you can about the model V = p(t). You should discuss its shape and overall behavior, its domain, its range, and more. +

+
+ +

+ Descriptions will vary. The graph of V = p(t) = \frac{256\pi}{3} - \frac{\pi}{24}t^2(24-t) on [0,16] is a curve that decreases from V(0) = \frac{256\pi}{3} \approx 268 cubic meters down to V(16) = 0. The domain is [0, 16] minutes and the range is \left[0, \frac{256\pi}{3}\right] cubic meters. +

+
+ +

The graph of V = p(t) = \frac{256\pi}{3} - \frac{\pi}{24}t^2(24-t) on [0,16] is a curve that decreases from V(0) = \frac{256\pi}{3} \approx 268 cubic meters down to V(16) = 0. The curve is concave down for small t (volume decreasing rapidly as the full, wide sphere loses water) and concave up near t = 16 (volume decreasing more slowly as the narrow bottom empties). The domain is [0, 16] minutes and the range is \left[0, \frac{256\pi}{3}\right] cubic meters.

+ + +
+
+ + +

+ How does the model V = p(t) = \frac{256\pi}{3} - \frac{\pi}{24} t^2(24-t) differ from the abstract function y = r(x) = \frac{256\pi}{3} - \frac{\pi}{24} x^2(24-x)? In particular, how do the domain and range of the model differ from those of the abstract function, if at all? +

+
+ +

+ The model's domain is restricted to [0, 16] + and its range to \left[0, \frac{256\pi}{3}\right] by the physical context. + The abstract function has an unrestricted domain and an unrestricted range. +

+
+ +

+ The model V = p(t) differs from the abstract function y = r(x) + in its domain and range. The model's domain is restricted to [0, 16] + and its range to \left[0, \frac{256\pi}{3}\right] by the physical context. + The abstract function has an unrestricted domain and an unrestricted range. +

+
+
+ + +

+ How should the graph of the height function h = q(t) appear? Can you determine a formula for q? Explain your thinking. +

+
+ +

+ The height function should be linear and decreasing. The formula is + q(t) = 8 - 0.5t. +

+
+ +

+ The height function should be linear and decreasing, because the height decreases + by the same amount (0.5 m) every minute. The formula is + q(t) = 8 - 0.5t. +

+
+
+
+
diff --git a/source/activities/act-changing-functions-spherical-tank.xml b/source/activities/act-changing-functions-spherical-tank.xml index 12a68ab4..f0923ece 100755 --- a/source/activities/act-changing-functions-spherical-tank.xml +++ b/source/activities/act-changing-functions-spherical-tank.xml @@ -1,128 +1,130 @@ - - - - - - - - - - - - - - - - -

- Consider a spherical tank of radius 4 m that is filling with water. Let - V be the volume of water in the tank (in cubic meters) at a given time, and - h the depth of the water (in meters) at the same time. It can be shown using calculus - that V is a function of h according to the rule - - V = f(h) = \frac{\pi}{3} h^2(12-h) - . -

-

- - - -

- What values of h make sense to consider in the context of this function? What values of V make sense in the same context? -

- - - - -

- Since depth can't be negative and can't exceed the tank's diameter of 8 m, - the values of h that make sense are 0 \le h \le 8. - The corresponding values of V range from 0 (empty tank) to - f(8) = \frac{256\pi}{3} (full tank), so 0 \le V \le \frac{256\pi}{3}. -

-
- - - -

- What is the domain of the function f in the context of the spherical tank? Why? What is the corresponding codomain? Why? -

-
- - - -

- The domain of f in context is [0, 8], since the water depth - can range from 0 m (empty) to 8 m (full diameter). - The range is \left[0, \frac{256\pi}{3}\right]. - Since volumes are non-negative, the codomain can be taken as [0, \infty), - or more broadly as all real numbers if we consider the abstract formula - without physical constraints. -

-
-
- - -

- Determine and interpret (with appropriate units) the values - f(2), f(4), and f(8). What is important about the value of f(8)? -

-
- - - -

- - f(2) &= \frac{\pi}{3}(4)(10) = \frac{40\pi}{3} \approx 41.9 \text{ m}^3 - f(4) &= \frac{\pi}{3}(16)(8) = \frac{128\pi}{3} \approx 134.0 \text{ m}^3 - f(8) &= \frac{\pi}{3}(64)(4) = \frac{256\pi}{3} \approx 268.1 \text{ m}^3 - - These give the volume of water when the depth is 2, 4, and 8 - meters respectively. The value f(8) = \frac{256\pi}{3} equals the volume - of a sphere of radius 4, confirming that the tank is completely full when - h = 8. -

-
-
- - -

- Consider the claim: since f(9) = \frac{\pi}{3} 9^2(12-9) = 81\pi \approx 254.47, when the water is 9 meters deep, there is about 254.47 cubic meters of water in the tank. Is this claim valid? Why or why not? Further, does it make sense to observe that f(13) = -\frac{169\pi}{3}? Why or why not? -

-
- - - -

- Neither claim is valid. The domain of f is [0, 8], so - h = 9 is outside the domain — the water cannot be 9 m deep in a - tank whose diameter is only 8 m. Similarly, f(13) falls outside the - domain, and the negative value it produces is further evidence that the formula - should not be applied beyond h = 8. -

-
-
- - -

- Can you determine a value of h for which f(h) = 300 cubic meters? Why or why not? -

-
- - - -

- No. The maximum value of f on its domain [0, 8] is - f(8) = \frac{256\pi}{3} \approx 268.1 m^3, which is less than - 300. The tank simply cannot hold 300 cubic meters of water. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Consider a spherical tank of radius 4 m that is filling with water. Let + V be the volume of water in the tank (in cubic meters) at a given time, and + h the depth of the water (in meters) at the same time. It can be shown using calculus + that V is a function of h according to the rule + + V = f(h) = \frac{\pi}{3} h^2(12-h) + . +

+

+ + + +

+ What values of h make sense to consider in the context of this function? What values of V make sense in the same context? +

+ + +

0 \le h \le 8 and 0 \le V \le \frac{256\pi}{3}

+ +

+ Since depth can't be negative and can't exceed the tank's diameter of 8 m, + the values of h that make sense are 0 \le h \le 8. + The corresponding values of V range from 0 (empty tank) to + f(8) = \frac{256\pi}{3} (full tank), so 0 \le V \le \frac{256\pi}{3}. +

+
+ + + +

+ What is the domain of the function f in the context of the spherical tank? Why? What is the corresponding codomain? Why? +

+
+ +

The domain is [0, 8] and the codomain is \left[0, \frac{256\pi}{3}\right].

+ +

+ The domain of f in context is [0, 8], since the water depth + can range from 0 m (empty) to 8 m (full diameter). + The range is \left[0, \frac{256\pi}{3}\right]. + Since volumes are non-negative, the codomain can be taken as [0, \infty), + or more broadly as all real numbers if we consider the abstract formula + without physical constraints. +

+
+
+ + +

+ Determine and interpret (with appropriate units) the values + f(2), f(4), and f(8). What is important about the value of f(8)? +

+
+ + +

+ + f(2)\amp = \frac{40\pi}{3} \approx 41.9 \text{ m}^3 + f(4)\amp = \frac{128\pi}{3} \approx 134.0 \text{ m}^3 + f(8)\amp = \frac{256\pi}{3} \approx 268.1 \text{ m}^3 + +

+
+ +

+ + f(2) &= \frac{\pi}{3}(4)(10) = \frac{40\pi}{3} \approx 41.9 \text{ m}^3 + f(4) &= \frac{\pi}{3}(16)(8) = \frac{128\pi}{3} \approx 134.0 \text{ m}^3 + f(8) &= \frac{\pi}{3}(64)(4) = \frac{256\pi}{3} \approx 268.1 \text{ m}^3 + + These give the volume of water when the depth is 2, 4, and 8 + meters respectively. The value f(8) = \frac{256\pi}{3} equals the volume + of a sphere of radius 4, confirming that the tank is completely full when + h = 8. +

+
+
+ + +

+ Consider the claim: since f(9) = \frac{\pi}{3} 9^2(12-9) = 81\pi \approx 254.47, when the water is 9 meters deep, there is about 254.47 cubic meters of water in the tank. Is this claim valid? Why or why not? Further, does it make sense to observe that f(13) = -\frac{169\pi}{3}? Why or why not? +

+
+ +

Neither claim is valid.

+ +

+ Neither claim is valid. The domain of f is [0, 8], so + h = 9 is outside the domain — the water cannot be 9 m deep in a + tank whose diameter is only 8 m. Similarly, f(13) falls outside the + domain, and the negative value it produces is further evidence that the formula + should not be applied beyond h = 8. +

+
+
+ + +

+ Can you determine a value of h for which f(h) = 300 cubic meters? Why or why not? +

+
+ +

No, the tank cannot hold 300 cubic meters of water.

+ +

+ No. The maximum value of f on its domain [0, 8] is + f(8) = \frac{256\pi}{3} \approx 268.1 m^3, which is less than + 300. The tank simply cannot hold 300 cubic meters of water. +

+
+
+
+
diff --git a/source/activities/act-changing-inverse-Dolbear.xml b/source/activities/act-changing-inverse-Dolbear.xml index 61a0ae57..1c73f31e 100755 --- a/source/activities/act-changing-inverse-Dolbear.xml +++ b/source/activities/act-changing-inverse-Dolbear.xml @@ -1,94 +1,88 @@ - - - - - - - - - - - - - - - - -

- Recall Dolbear's function F = D(N) = 40 + \frac{1}{4}N that converts the number, N, of snowy tree cricket chirps per minute to a corresponding Fahrenheit temperature. We have earlier established that the domain of D is [40,180] and the range of D is [50,85]. -

-

- - - -

- Solve the equation F = 40 + \frac{1}{4}N for N in terms of F. Call the resulting function N = E(F). -

- - - - -

- Subtracting 40 and multiplying by 4: - E(F) = N = 4(F - 40). -

-
- - - -

- Explain in words the process or effect of the function N = E(F). What does it take as input? What does it generate as output? -

-
- - - -

- The function E takes a temperature in degrees Fahrenheit as its input and - outputs the corresponding number of snowy tree cricket chirps per minute. -

-
-
- - -

- Use the function E that you found in (a.) to compute j(N) = E(D(N)). Simplify your result as much as possible. Do likewise for k(F) = D(E(F)). What do you notice about these two composite functions j and k? -

-
- - - -

- j(N) = E(D(N)) = 4\!\left(\left(40 + \frac{1}{4}N\right) - 40\right) = 4 \cdot \frac{N}{4} = N. - k(F) = D(E(F)) = 40 + \frac{1}{4}(4(F-40)) = 40 + (F-40) = F. - Both j and k are the identity: composing D and E - in either order returns the original input, confirming that E and D - are inverse functions. -

-
-
- - -

- Consider the equations F = 40 + \frac{1}{4}N and N = 4(F-40). Do these equations express different relationships between F and N, or do they express the same relationship in two different ways? Explain. -

-
- - - -

- They express the same relationship between F and N, just solved - for different variables. Each equation can be obtained from the other by - algebraic manipulation, so they describe the same connection between temperature - and chirp rate. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Recall Dolbear's function F = D(N) = 40 + \frac{1}{4}N that converts the number, N, of snowy tree cricket chirps per minute to a corresponding Fahrenheit temperature. We have earlier established that the domain of D is [40,180] and the range of D is [50,85]. +

+

+ + + +

+ Solve the equation F = 40 + \frac{1}{4}N for N in terms of F. Call the resulting function N = E(F). +

+ + +

N = E(F) = 4(F-40)

+ +

+ Subtracting 40 and multiplying by 4: + E(F) = N = 4(F - 40). +

+
+ + + +

+ Explain in words the process or effect of the function N = E(F). What does it take as input? What does it generate as output? +

+
+ +

The function E takes a temperature in degrees Fahrenheit as its input and outputs the corresponding number of snowy tree cricket chirps per minute.

+ +

+ The function E takes a temperature in degrees Fahrenheit as its input and + outputs the corresponding number of snowy tree cricket chirps per minute. +

+
+
+ + +

+ Use the function E that you found in (a.) to compute j(N) = E(D(N)). Simplify your result as much as possible. Do likewise for k(F) = D(E(F)). What do you notice about these two composite functions j and k? +

+
+ +

j(N) = N and k(F) = F

+ +

+ j(N) = E(D(N)) = 4\!\left(\left(40 + \frac{1}{4}N\right) - 40\right) = 4 \cdot \frac{N}{4} = N. + k(F) = D(E(F)) = 40 + \frac{1}{4}(4(F-40)) = 40 + (F-40) = F. + Both j and k are the identity: composing D and E + in either order returns the original input, confirming that E and D + are inverse functions. +

+
+
+ + +

+ Consider the equations F = 40 + \frac{1}{4}N and N = 4(F-40). Do these equations express different relationships between F and N, or do they express the same relationship in two different ways? Explain. +

+
+ +

They express the same relationship between F and N, just solved for different variables.

+ +

+ They express the same relationship between F and N, just solved + for different variables. Each equation can be obtained from the other by + algebraic manipulation, so they describe the same connection between temperature + and chirp rate. +

+
+
+
+
diff --git a/source/activities/act-changing-inverse-does-it.xml b/source/activities/act-changing-inverse-does-it.xml index 42b460ed..66b9fe62 100755 --- a/source/activities/act-changing-inverse-does-it.xml +++ b/source/activities/act-changing-inverse-does-it.xml @@ -1,172 +1,199 @@ - - - - - - - - - - - - - - - - -

- Determine, with justification, whether each of the following functions has an inverse function. For each function that has an inverse function, give two examples of values of the inverse function by writing statements such as s^{-1}(3) = 1. -

-

- - - -

- The function f : S \to S given by the table of values below, where S = \{0, 1, 2, 3, 4 \}. -

- - - - - x - - 0 - 1 - 2 - 3 - 4 - - - - f(x) - - 1 - 2 - 4 - 3 - 2 - - - - - - - -

- The function f does not have an inverse, because f(1) = 2 = f(4), - so f^{-1}(2) would need to equal both 1 and 4 — not a function. -

-
- - - -

- The function g : S \to S given by the table of values below, where S = \{0, 1, 2, 3, 4 \}. -

- - - - - x - - 0 - 1 - 2 - 3 - 4 - - - - g(x) - - 4 - 0 - 3 - 1 - 2 - - - -
- - - -

- The function g does have an inverse, since all five output values - are distinct. For example, g^{-1}(4) = 0 and g^{-1}(0) = 1. -

-
-
- - -

- The function p given by p(t) = 7 - \frac{3}{5}t. Assume that the domain and codomain of p are both all real numbers. -

-
- - - -

- The function p(t) = 7 - \frac{3}{5}t is linear and one-to-one, so it - does have an inverse. Solving y = 7 - \frac{3}{5}t for t: - p^{-1}(y) = \frac{5}{3}(7-y). - For example, p^{-1}(7) = 0 and p^{-1}(4) = 5. -

-
-
- - -

- The function q given by q(t) = 7 - \frac{3}{5}t^4. Assume that the domain and codomain of q are both all real numbers. -

-
- - - -

- The function q(t) = 7 - \frac{3}{5}t^4 does not have an inverse. - Since q(1) = q(-1) = 7 - \frac{3}{5}, the value q^{-1}\!\left(\frac{32}{5}\right) - could be either 1 or -1. -

-
-
- - -

- The functions r and s given by the graphs in the figures below. Assume that the graphs show all of the important behavior of the functions and that the apparent trends continue beyond what is pictured. -

- - -

ADD ALT TEXT TO THIS IMAGE

- -

ADD ALT TEXT TO THIS IMAGE

- -
-
- - - -

- The function r(t) passes the horizontal line test, so it does - have an inverse. For example, r^{-1}(2) = -1 and r^{-1}(0) = 0. -

-

- The function s(t) does not have an inverse, because it fails the - horizontal line test: a horizontal line between y=1 and y=2 crosses - the graph in more than one place. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Determine, with justification, whether each of the following functions has an inverse function. For each function that has an inverse function, give two examples of values of the inverse function by writing statements such as s^{-1}(3) = 1. +

+

+ + + +

+ The function f : S \to S given by the table of values below, where S = \{0, 1, 2, 3, 4 \}. +

+ + + + + x + + 0 + 1 + 2 + 3 + 4 + + + + f(x) + + 1 + 2 + 4 + 3 + 2 + + + + + +

The function f does not have an inverse, because f(1) = 2 = f(4).

+ +

+ The function f does not have an inverse, because f(1) = 2 = f(4), + so f^{-1}(2) would need to equal both 1 and 4 — not a function. +

+
+ + + +

+ The function g : S \to S given by the table of values below, where S = \{0, 1, 2, 3, 4 \}. +

+ + + + + x + + 0 + 1 + 2 + 3 + 4 + + + + g(x) + + 4 + 0 + 3 + 1 + 2 + + + +
+ +

The function g does have an inverse. For example, g^{-1}(4) = 0 and g^{-1}(0) = 1.

+ +

+ The function g does have an inverse, since all five output values + are distinct. For example, g^{-1}(4) = 0 and g^{-1}(0) = 1. +

+
+
+ + +

+ The function p given by p(t) = 7 - \frac{3}{5}t. Assume that the domain and codomain of p are both all real numbers. +

+
+ +

The function p does have an inverse. For example, p^{-1}(7) = 0 and p^{-1}(4) = 5.

+ +

+ The function p(t) = 7 - \frac{3}{5}t is linear and one-to-one, so it + does have an inverse. Solving y = 7 - \frac{3}{5}t for t: + p^{-1}(y) = \frac{5}{3}(7-y). + For example, p^{-1}(7) = 0 and p^{-1}(4) = 5. +

+
+
+ + +

+ The function q given by q(t) = 7 - \frac{3}{5}t^4. Assume that the domain and codomain of q are both all real numbers. +

+
+ +

The function q does not have an inverse, because q(1) = q(-1).

+ +

+ The function q(t) = 7 - \frac{3}{5}t^4 does not have an inverse. + Since q(1) = q(-1) = 7 - \frac{3}{5}, the value q^{-1}\!\left(\frac{32}{5}\right) + could be either 1 or -1. +

+
+
+ + +

+ The functions r and s given by the graphs in the figures below. Assume that the graphs show all of the important behavior of the functions and that the apparent trends continue beyond what is pictured. +

+ + + + + + + + f(x)=-2.5*atan(x) + + + + + +

Graph of a decreasing function r(t)that is first curving downward, goes through the origin, and starts curving upward.

+ + + + + + f1(x)=-2*(x+3)+1 + f2(x)=2/3*x + f3(x)=-x + + + + + + + + + + + +

Graph of a piecewise linear function s(t) whose first piece goes from (-5,5) to an open circle at (-3,1), and whose second piece goes from a closed circle at (-3,-2) ending with an open circle at (3,2), and whose third piece goes from a closed circle at (3,-3) to the edge of the graph at (5,-5).

+
+ +
+ +

The function r has an inverse, for example r^{-1}(2) = -1 and r^{-1}(0) = 0. The function s does not have an inverse.

+ +

+ The function r(t) passes the horizontal line test, so it does + have an inverse. For example, r^{-1}(2) = -1 and r^{-1}(0) = 0. +

+

+ The function s(t) does not have an inverse, because it fails the + horizontal line test: a horizontal line between y=1 and y=2 crosses + the graph in more than one place. +

+
+
+
+
diff --git a/source/activities/act-changing-inverse-rainfall.xml b/source/activities/act-changing-inverse-rainfall.xml index 13a73d30..e65da657 100755 --- a/source/activities/act-changing-inverse-rainfall.xml +++ b/source/activities/act-changing-inverse-rainfall.xml @@ -1,124 +1,143 @@ - - - - - - - - - - - - - - - - -

- During a major rainstorm, the rainfall at Gerald R. Ford Airport is measured on a frequent basis for a 10-hour period of time. The following function g models the rate, R, at which the rain falls (in cm/hr) on the time interval t = 0 to t = 10: - - R = g(t) = \frac{4}{t+2} + 1 - . -

-

- - - -

- Compute g(3) and write a complete sentence to explain its meaning in the given context, including units. -

- - - - -

- g(3) = \frac{4}{3+2} + 1 = \frac{4}{5} + 1 = \frac{9}{5} = 1.8 \text{ cm/hr.} - At t = 3 hours into the storm, the rain is falling at a rate of 1.8 - centimeters per hour. -

-
- - - -

- Compute the average rate of change of g on the time interval [3,5] and write two careful complete sentences to explain the meaning of this value in the context of the problem, including units. Explicitly address what the value you compute tells you about how rain is falling over a certain time interval, and what you should expect as time goes on. -

-
- - - -

- Using g(3) = \frac{9}{5} and g(5) = \frac{4}{7} + 1 = \frac{11}{7}: - AV_{[3,5]} = \frac{\frac{11}{7} - \frac{9}{5}}{2} = \frac{\frac{55-63}{35}}{2} = \frac{-8/35}{2} = -\frac{4}{35} \approx -0.114 \text{ cm/hr}^2. - Between hours 3 and 5, the rate of rainfall decreased on average by about - 0.114 cm/hr per hour. Since g is a decreasing function, we expect - the rainfall rate to continue decreasing throughout the storm. -

-
-
- - -

- Plot the function y = g(t) using a computational device. On the domain [0,10], what is the corresponding range of g? Why does the function g have an inverse function? -

-
- - - -

- At the endpoints: g(0) = \frac{4}{2}+1 = 3 and - g(10) = \frac{4}{12}+1 = \frac{4}{3}. Since g is strictly - decreasing on [0,10], the range is \left[\frac{4}{3}, 3\right]. - The function has an inverse because it is strictly decreasing (one-to-one) on - this domain — it passes the horizontal line test. -

- - -
-
- - -

- Determine g^{-1} \left( \frac{9}{5} \right) and write a complete sentence to explain its meaning in the given context. -

-
- - - -

- Setting \frac{9}{5} = \frac{4}{t+2} + 1: - - \frac{4}{5} &= \frac{4}{t+2} - t + 2 &= 5 \implies t = 3. - - So g^{-1}\!\left(\frac{9}{5}\right) = 3: the rainfall rate equals - 1.8 cm/hr at exactly 3 hours into the storm. -

-
-
- - -

- According to the model g, is there ever a time during the storm that the rain falls at a rate of exactly 1 centimeter per hour? Why or why not? Provide an algebraic justification for your answer. -

-
- - - -

- No. Setting g(t) = 1 gives \frac{4}{t+2} + 1 = 1, so - \frac{4}{t+2} = 0, which has no solution. Since \frac{4}{t+2} > 0 - for all t in [0,10], we have g(t) > 1 throughout the storm. - (The range of g is \left[\frac{4}{3}, 3\right], and - 1 \notin \left[\frac{4}{3}, 3\right].) -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ During a major rainstorm, the rainfall at Gerald R. Ford Airport is measured on a frequent basis for a 10-hour period of time. The following function g models the rate, R, at which the rain falls (in cm/hr) on the time interval t = 0 to t = 10: + + R = g(t) = \frac{4}{t+2} + 1 + . +

+

+ + + +

+ Compute g(3) and write a complete sentence to explain its meaning in the given context, including units. +

+ + +

g(3) = 1.8 cm/hr. At t = 3 hours into the storm, the rain is falling at a rate of 1.8 centimeters per hour.

+ +

+ g(3) = \frac{4}{3+2} + 1 = \frac{4}{5} + 1 = \frac{9}{5} = 1.8 \text{ cm/hr.} + At t = 3 hours into the storm, the rain is falling at a rate of 1.8 + centimeters per hour. +

+
+ + + +

+ Compute the average rate of change of g on the time interval [3,5] and write two careful complete sentences to explain the meaning of this value in the context of the problem, including units. Explicitly address what the value you compute tells you about how rain is falling over a certain time interval, and what you should expect as time goes on. +

+
+ +

AV_{[3,5]} = -\frac{4}{35} \text{cm/hr}^2. This means that between hours 3 and 5, the rate of rainfall decreased on average by about 0.114 cm/hr per hour. We expect the rainfall rate to continue decreasing.

+ +

+ Using g(3) = \frac{9}{5} and g(5) = \frac{4}{7} + 1 = \frac{11}{7}: + AV_{[3,5]} = \frac{\frac{11}{7} - \frac{9}{5}}{2} = \frac{\frac{55-63}{35}}{2} = \frac{-8/35}{2} = -\frac{4}{35} \approx -0.114 \text{ cm/hr}^2. + Between hours 3 and 5, the rate of rainfall decreased on average by about + 0.114 cm/hr per hour. Since g is a decreasing function, we expect + the rainfall rate to continue decreasing throughout the storm. +

+
+
+ + +

+ Plot the function y = g(t) using a computational device. On the domain [0,10], what is the corresponding range of g? Why does the function g have an inverse function? +

+
+ + + + + + + + g(x)=4/(x+2)+1 + + + + +

Graph of R=g(t), which goes through (0,3) and decreases curving upward until stopping at (10,\frac{4}{3}).

+

The range of g on [0,10] is \left[\frac{4}{3}, 3\right]. The function g has an inverse because it is strictly decreasing and passes the horizontal line test.

+ +

+ At the endpoints: g(0) = \frac{4}{2}+1 = 3 and + g(10) = \frac{4}{12}+1 = \frac{4}{3}. Since g is strictly + decreasing on [0,10], the range is \left[\frac{4}{3}, 3\right]. + The function has an inverse because it is strictly decreasing (one-to-one) on + this domain — it passes the horizontal line test. +

+ + + + + + + g(x)=4/(x+2)+1 + + + + +

Graph of R=g(t), which goes through (0,3) and decreases curving upward until stopping at (10,\frac{4}{3}).

+ + +
+
+ + +

+ Determine g^{-1} \left( \frac{9}{5} \right) and write a complete sentence to explain its meaning in the given context. +

+
+ +

g^{-1}\!\left(\frac{9}{5}\right) = 3. The rainfall rate equals + 1.8 cm/hr at exactly 3 hours into the storm.

+ +

+ Setting \frac{9}{5} = \frac{4}{t+2} + 1: + + \frac{4}{5} &= \frac{4}{t+2} + t + 2 &= 5 \implies t = 3. + + So g^{-1}\!\left(\frac{9}{5}\right) = 3: the rainfall rate equals + 1.8 cm/hr at exactly 3 hours into the storm. +

+
+
+ + +

+ According to the model g, is there ever a time during the storm that the rain falls at a rate of exactly 1 centimeter per hour? Why or why not? Provide an algebraic justification for your answer. +

+
+ +

No. Setting g(t) = 1 gives \frac{4}{t+2} + 1 = 1, but \frac{4}{t+2} \gt 0 for all t in [0,10], so there is no solution.

+ +

+ No. Setting g(t) = 1 gives \frac{4}{t+2} + 1 = 1, so + \frac{4}{t+2} = 0, which has no solution. Since \frac{4}{t+2} > 0 + for all t in [0,10], we have g(t) > 1 throughout the storm. + (The range of g is \left[\frac{4}{3}, 3\right], and + 1 \notin \left[\frac{4}{3}, 3\right].) +

+
+
+
+
diff --git a/source/activities/act-changing-linear-Kilimanjaro.xml b/source/activities/act-changing-linear-Kilimanjaro.xml index 26838d17..92c4e2e0 100755 --- a/source/activities/act-changing-linear-Kilimanjaro.xml +++ b/source/activities/act-changing-linear-Kilimanjaro.xml @@ -1,129 +1,125 @@ - - - - - - - - - - - - - - - - -

- The summit of Africa's largest peak, Mt. - Kilimanjaro, has two main ice fields and a glacier at its peak. - Geologists measured the ice cover in the year 2000 (t = 0) to be approximately 1951 m^2; - in the year 2007, the ice cover measured 1555 m^2. -

-

- - - -

- Suppose that the amount of ice cover at the peak of Mt. - Kilimanjaro is changing at a constant average rate from year to year. - Find a linear model A = f(t) whose output is the area of the ice cover, - A, - in square meters in year t - (where t is the number of years after 2000). -

- - - - -

- Using the points (0, 1951) and (7, 1555), the slope is - \frac{1555-1951}{7-0} = \frac{-396}{7} \approx -56.6 m^2/year. - Since t=0 gives A = 1951, the model is: - f(t) = 1951 - \frac{396}{7} t \approx 1951 - 56.6t. -

-
- - - -

- What do the slope and A-intercept mean in the model you found in (a)? In particular, what are the units on the slope? -

-
- - - -

- The slope \approx -56.6 m^2/year means the ice cover decreases by - about 56.6 square meters per year. The A-intercept of 1951 m^2 - represents the ice cover in the year 2000 (t=0). -

-
-
- - -

- Compute f(17). - What does this quantity measure? - Write a complete sentence to explain. -

-
- - - -

- f(17) \approx 1951 - 56.6(17) \approx 989 \text{ m}^2. - In the year 2017, the model predicts that the ice field near the summit of - Mt. Kilimanjaro will have an area of approximately 989 square meters. -

-
-
- - -

- If the model holds further into the future, - when do we predict the ice cover will vanish? -

-
- - - -

- Setting f(t) = 0: - - 0 &\approx 1951 - 56.6t - t &\approx \frac{1951}{56.6} \approx 34.5. - - The model predicts the ice will vanish around the year 2034. -

-
-
- - -

- In light of your work above, - what is a reasonable domain to use for the model A = f(t)? - What is the corresponding range? -

-
- - - -

- A reasonable domain is 0 \le t \le 34.5 (from the year 2000 until the ice - disappears). The corresponding range is 0 \le A \le 1951. -

-
-
- -

- - -

- - -

The main context of the sequence of questions in this activity comes from Exercise 30 on p.27 of Connally's - Functions Modeling Change, 5th ed.

- -
-
+ + + + + + + + + + + + + + + + +

+ The summit of Africa's largest peak, Mt. + Kilimanjaro, has two main ice fields and a glacier at its peak. + Geologists measured the ice cover in the year 2000 (t = 0) to be approximately 1951 m^2; + in the year 2007, the ice cover measured 1555 m^2. +

+

+ + + +

+ Suppose that the amount of ice cover at the peak of Mt. + Kilimanjaro is changing at a constant average rate from year to year. + Find a linear model A = f(t) whose output is the area of the ice cover, + A, + in square meters in year t + (where t is the number of years after 2000). +

+ + +

f(t) = 1951 - \frac{396}{7} t \approx 1951 - 56.6t.

+ +

+ Using the points (0, 1951) and (7, 1555), the slope is + \frac{1555-1951}{7-0} = \frac{-396}{7} \approx -56.6 m^2/year. + Since t=0 gives A = 1951, the model is: + f(t) = 1951 - \frac{396}{7} t \approx 1951 - 56.6t. +

+
+ + + +

+ What do the slope and A-intercept mean in the model you found in (a)? In particular, what are the units on the slope? +

+
+ +

+ The slope has units of \frac{\text{m}^2}{\text{year}}, or square meters per year, and represents how much the ice cover is changing each year. The A-intercept has units \text{m}^2 and represents the amount of ice cover in the year 2000. +

+ +

+ The slope \approx -56.6 m^2/year means the ice cover decreases by + about 56.6 square meters per year. The A-intercept of 1951 m^2 + represents the ice cover in the year 2000 (t=0). +

+
+
+ + +

+ Compute f(17). + What does this quantity measure? + Write a complete sentence to explain. +

+
+ +

f(17) \approx 989 m^2. This is the predicted area of the ice cover in the year 2017.

+ +

+ f(17) \approx 1951 - 56.6(17) \approx 989 \text{ m}^2. + In the year 2017, the model predicts that the ice field near the summit of + Mt. Kilimanjaro will have an area of approximately 989 square meters. +

+
+
+ + +

+ If the model holds further into the future, + when do we predict the ice cover will vanish? +

+
+ +

t \approx 34.5, which corresponds to the middle of the year 2034.

+ +

+ Setting f(t) = 0: + + 0 &\approx 1951 - 56.6t + t &\approx \frac{1951}{56.6} \approx 34.5. + + The model predicts the ice will vanish around the year 2034. +

+
+
+ + +

+ In light of your work above, + what is a reasonable domain to use for the model A = f(t)? + What is the corresponding range? +

+
+ +

A reasonable domain is 0 \le t \le 34.5, and the corresponding range is 0 \le A \le 1951.

+ +

+ A reasonable domain is 0 \le t \le 34.5 (from the year 2000 until the ice + disappears). The corresponding range is 0 \le A \le 1951. +

+
+
+ +

The main context of the sequence of questions in this activity comes from Exercise 30 on p.27 of Connally's + Functions Modeling Change, 5th ed.

+
+
+
diff --git a/source/activities/act-changing-linear-finding-eqs.xml b/source/activities/act-changing-linear-finding-eqs.xml index 42322d66..52a8dabd 100755 --- a/source/activities/act-changing-linear-finding-eqs.xml +++ b/source/activities/act-changing-linear-finding-eqs.xml @@ -1,160 +1,154 @@ - - - - - - - - - - - - - - - - -

- Find an equation for the line that is determined by the following conditions; - write your answer in point-slope form wherever possible. -

-

- - - -

- The line with slope \frac{3}{7} that passes through (-11, -17). -

- - - - -

- y - (-17) = \frac{3}{7}(x - (-11)), \quad \text{i.e.,} \quad y + 17 = \frac{3}{7}(x+11). -

-
- - - -

- The line passing through the points (-2,5) and (3,-1). -

-
- - - -

- The slope is m = \frac{-1-5}{3-(-2)} = -\frac{6}{5}. Using the point - (3,-1): - y + 1 = -\frac{6}{5}(x-3). -

-
-
- - -

- The line passing through (4,9) that is parallel to the line 2x - 3y = 5. -

-
- - - -

- Solving 2x - 3y = 5 for y gives y = \frac{2}{3}x - \frac{5}{3}, - so the slope is m = \frac{2}{3}. Using the point (4,9): - y - 9 = \frac{2}{3}(x-4). -

-
-
- - -

- Explain why the function f given by the data in the following table appears to be linear and find a formula for f(x). -

- - - - - x - - - 1 - - - 3 - - - 4 - - - 7 - - - - - f(x) - - - 7 - - - 3 - - - 1 - - - -5 - - - - - -
- - - -

- The function appears to be linear because the rate of change is constant: - for each increase of 1 in x, f(x) decreases by 2, - giving slope m = -2. Using the point (1,7): - - y - 7 &= -2(x-1) - f(x) &= 9 - 2x. - -

-
-
- - -

- Find a formula for the linear function shown in the following figure. -

- -

ADD ALT TEXT TO THIS IMAGE

- -
- - - -

- The graph has slope m = -\frac{1}{3} and passes through (4,1), so: - - y - 1 &= -\frac{1}{3}(x-4) - h(x) &= \frac{7}{3} - \frac{1}{3}x. - -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Find an equation for the line that is determined by the following conditions; + write your answer in point-slope form wherever possible. +

+

+ + + +

+ The line with slope \frac{3}{7} that passes through (-11, -17). +

+ + +

y + 17 = \frac{3}{7}(x+11)

+ +

+ y - (-17) = \frac{3}{7}(x - (-11)), \quad \text{i.e.,} \quad y + 17 = \frac{3}{7}(x+11). +

+
+ + + +

+ The line passing through the points (-2,5) and (3,-1). +

+
+ +

y + 1 = -\frac{6}{5}(x-3)

+ +

+ The slope is m = \frac{-1-5}{3-(-2)} = -\frac{6}{5}. Using the point + (3,-1): + y + 1 = -\frac{6}{5}(x-3). +

+
+
+ + +

+ The line passing through (4,9) that is parallel to the line 2x - 3y = 5. +

+
+ +

y - 9 = \frac{2}{3}(x-4)

+ +

+ Solving 2x - 3y = 5 for y gives y = \frac{2}{3}x - \frac{5}{3}, + so the slope is m = \frac{2}{3}. Using the point (4,9): + y - 9 = \frac{2}{3}(x-4). +

+
+
+ + +

+ Explain why the function f given by the data in the following table appears to be linear and find a formula for f(x). +

+ + + + + x + + + 1 + + + 3 + + + 4 + + + 7 + + + + + f(x) + + + 7 + + + 3 + + + 1 + + + -5 + + + + + +
+ +

The function appears to be linear because the rate of change is constant per 1 change in x. f(x) = 9 - 2x

+ +

+ The function appears to be linear because the rate of change is constant: + for each increase of 1 in x, f(x) decreases by 2, + giving slope m = -2. Using the point (1,7): + + y - 7 &= -2(x-1) + f(x) &= 9 - 2x. + +

+
+
+ + +

+ Find a formula for the linear function shown in the following figure. +

+ +

Graph of a function y = h(x) which is a straight line going through the points (-2,3) and (4,1).

+ +
+ +

h(x) = \frac{7}{3} - \frac{1}{3}x

+ +

+ The graph has slope m = -\frac{1}{3} and passes through (4,1), so: + + y - 1 &= -\frac{1}{3}(x-4) + h(x) &= \frac{7}{3} - \frac{1}{3}x. + +

+
+
+
+
diff --git a/source/activities/act-changing-linear-in-context.xml b/source/activities/act-changing-linear-in-context.xml index 4c1acaf5..4329019b 100755 --- a/source/activities/act-changing-linear-in-context.xml +++ b/source/activities/act-changing-linear-in-context.xml @@ -1,111 +1,110 @@ - - - - - - - - - - - - - - - - -

- In each of the following prompts, we investigate linear functions in context. -

-

- - - -

- A town's population initially has 28750 people present and then grows at a constant rate of 825 people per year. - Find a linear model P = f(t) for the number of people in the town in year t. -

- - - - -

- f(t) = 28750 + 825t. -

-
- - - -

- A different town's population Q is given by the function Q = g(t) = 42505 - 465t. What is the slope of this function and what is its meaning in the model? Write a complete sentence to explain. -

-
- - - -

- The slope is -465 people per year. This means the town's population - decreases by 465 people each year. -

-
-
- - -

- A spherical tank is being drained with a pump. Initially the tank is full with \frac{32\pi}{3} cubic feet of water. Assume the tank is drained at a constant rate of 1.2 cubic feet per minute. Find a linear model V = p(t) for the total amount of water in the tank at time t. In addition, what is a reasonable approximate domain for the model? -

-
- - - -

- p(t) = \frac{32\pi}{3} - 1.2t. - The tank empties when p(t) = 0, i.e., t = \frac{32\pi}{3 \cdot 1.2} \approx 27.9 minutes. - A reasonable domain is [0, 27.9]. -

-
-
- - -

- A conical tank is being filled in such a way that the height of the water in the tank, h (in feet), at time t (in minutes) is given by the function h = q(t) = 0.65t. What can you say about how the water level is rising? Write at least one careful sentence to explain. -

-
- - - -

- Since q(t) = 0.65t is a linear function with slope 0.65, the water - level rises at a constant rate of 0.65 feet per minute. -

-
-
- - -

- Suppose we know that a 5-year old car's value is $10200, and that after 10 years its value is $4600. Assuming that the car's value depreciates linearly, find a function C = L(t) whose output is the value of the car in year t. What is a reasonable domain for the model? What is the value and meaning of the slope of the line? Write at least one careful sentence to explain. -

-
- - - -

- The slope is \frac{4600 - 10200}{10-5} = \frac{-5600}{5} = -1120 dollars per year. - Using the point (5, 10200): - - C - 10200 &= -1120(t-5) - L(t) &= 15800 - 1120t. - - The car reaches zero value when t \approx 14.1, so a reasonable domain is - [0, 14.1]. The slope means the car loses \$1120 in value each year. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ In each of the following prompts, we investigate linear functions in context. +

+

+ + + +

+ A town's population initially has 28750 people present and then grows at a constant rate of 825 people per year. + Find a linear model P = f(t) for the number of people in the town in year t. +

+ + +

f(t) = 28750 + 825t

+ +

+ f(t) = 28750 + 825t +

+
+ + + +

+ A different town's population Q is given by the function Q = g(t) = 42505 - 465t. What is the slope of this function and what is its meaning in the model? Write a complete sentence to explain. +

+
+ +

+ The slope is -465. This means the town's population + decreases by 465 people each year. +

+ +

+ The slope is -465 people per year. This means the town's population + decreases by 465 people each year. +

+
+
+ + +

+ A spherical tank is being drained with a pump. Initially the tank is full with \frac{32\pi}{3} cubic feet of water. Assume the tank is drained at a constant rate of 1.2 cubic feet per minute. Find a linear model V = p(t) for the total amount of water in the tank at time t. In addition, what is a reasonable approximate domain for the model? +

+
+ +

p(t) = \frac{32\pi}{3} - 1.2t. A reasonable domain is [0, 27.9].

+ +

+ p(t) = \frac{32\pi}{3} - 1.2t. + The tank empties when p(t) = 0, i.e., t = \frac{32\pi}{3 \cdot 1.2} \approx 27.9 minutes. + A reasonable domain is [0, 27.9]. +

+
+
+ + +

+ A conical tank is being filled in such a way that the height of the water in the tank, h (in feet), at time t (in minutes) is given by the function h = q(t) = 0.65t. What can you say about how the water level is rising? Write at least one careful sentence to explain. +

+
+ +

+ The water level rises at a constant rate of 0.65 feet per minute. +

+ +

+ Since q(t) = 0.65t is a linear function with slope 0.65, the water + level rises at a constant rate of 0.65 feet per minute. +

+
+
+ + +

+ Suppose we know that a 5-year old car's value is $10200, and that after 10 years its value is $4600. Assuming that the car's value depreciates linearly, find a function C = L(t) whose output is the value of the car in year t. What is a reasonable domain for the model? What is the value and meaning of the slope of the line? Write at least one careful sentence to explain. +

+
+ +

C=L(t) = 15800 - 1120t. A reasonable domain is [0, 14.1]. The slope is -1120, meaning the car loses \$1120 in value each year.

+ +

+ The slope is \frac{4600 - 10200}{10-5} = \frac{-5600}{5} = -1120 dollars per year. + Using the point (5, 10200): + + C - 10200 &= -1120(t-5) + L(t) &= 15800 - 1120t. + + The car reaches zero value when t \approx 14.1, so a reasonable domain is + [0, 14.1]. The slope means the car loses \$1120 in value each year. +

+
+
+
+
diff --git a/source/activities/act-changing-quadratic-falling-ball.xml b/source/activities/act-changing-quadratic-falling-ball.xml index 30b1e954..bcc916e1 100755 --- a/source/activities/act-changing-quadratic-falling-ball.xml +++ b/source/activities/act-changing-quadratic-falling-ball.xml @@ -1,137 +1,190 @@ - - - - - - - - - - - - - - - - -

- A water balloon is tossed vertically from a window at an initial height of 37 feet and with an initial velocity of 41 feet per second. -

-

- - - -

- Determine a formula, s(t), - for the function that models the height of the water balloon at time t. -

- - - - -

- Using the standard model s(t) = -16t^2 + v_0 t + s_0 with initial height - s_0 = 37 ft and initial velocity v_0 = 41 ft/s: - s(t) = -16t^2 + 41t + 37. -

-
- - - -

- Plot the function in Desmos - in an appropriate window. Sketch a copy of the graph here. -

-
- - - -

Plotting s(t) = -16t^2 + 41t + 37 in an appropriate window (for example, 0 \le t \le 4 and 0 \le s \le 70) shows an upside-down parabola that rises from s(0) = 37, reaches a maximum near t \approx 1.28 seconds and s \approx 63.3 feet, and then falls back to ground level near t \approx 3.3 seconds. Answers will vary on the exact sketch.

- - -
-
- - -

- Use the graph to estimate the time the water balloon lands. -

-
- - - -

- From the graph, the balloon appears to land at approximately t \approx 3.3 seconds. -

-
-
- - -

- Use algebra to find the exact - time the water balloon lands. -

-
- - - -

- Setting s(t) = 0 and applying the quadratic formula with a=-16, - b=41, c=37: - - t &= \frac{-41 \pm \sqrt{41^2 - 4(-16)(37)}}{2(-16)} - &= \frac{-41 \pm \sqrt{1681 + 2368}}{-32} - &= \frac{-41 \pm \sqrt{4049}}{-32}. - - Taking the root that gives t > 0: t = \frac{-41 - \sqrt{4049}}{-32} \approx 3.27 seconds. -

-
-
- - -

- Determine the exact time the water balloon reaches its highest point and its height at that time. -

-
- - - -

- The vertex occurs at t = -\frac{b}{2a} = -\frac{41}{2(-16)} = \frac{41}{32} \approx 1.28 seconds. - The maximum height is - s\!\left(\frac{41}{32}\right) = -16 \cdot \frac{1681}{1024} + 41 \cdot \frac{41}{32} + 37 = \frac{4049}{64} \approx 63.3 \text{ feet.} -

-
-
- - -

- Compute the average rate of change of s on the intervals [1.5, 2], - [2, 2.5], [2.5,3]. - Include units on your answers and write one sentence to explain the meaning of the values you found. - Sketch appropriate lines on the graph of s whose respective slopes are the values of these average rates of change. -

-
- - - -

- Using s(1.5) = 62.5, s(2) = 55, s(2.5) = 39.5, s(3) = 16: - AV_{[1.5,2]} = \frac{55-62.5}{0.5} = -15 \text{ ft/s}, - AV_{[2,2.5]} = \frac{39.5-55}{0.5} = -31 \text{ ft/s}, - AV_{[2.5,3]} = \frac{16-39.5}{0.5} = -47 \text{ ft/s.} - These values represent the average downward velocity of the balloon over each - half-second interval; the balloon is falling faster and faster as it descends. -

- - -
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ A water balloon is tossed vertically from a window at an initial height of 37 feet and with an initial velocity of 41 feet per second. +

+

+ + + +

+ Determine a formula, s(t), + for the function that models the height of the water balloon at time t. +

+ + +

s(t) = -16t^2 + 41t + 37

+ +

+ Using the standard model s(t) = -16t^2 + v_0 t + s_0 with initial height + s_0 = 37 ft and initial velocity v_0 = 41 ft/s: + s(t) = -16t^2 + 41t + 37. +

+
+ + + +

+ Plot the function in Desmos + in an appropriate window. Sketch a copy of the graph here. +

+
+ + + + + + f(x)=-16*x^2+41*x+37 + + + + + + +

A graph of s(t).

+
+ +

Plotting s(t) = -16t^2 + 41t + 37 in an appropriate window (for example, 0 \le t \le 4 and 0 \le s \le 70) shows an upside-down parabola that rises from s(0) = 37, reaches a maximum near t \approx 1.28 seconds and s \approx 63.3 feet, and then falls back to ground level near t \approx 3.3 seconds. Answers will vary on the exact sketch.

+ + + + + f(x)=-16*x^2+41*x+37 + + + + + + +

A graph of s(t).

+ + + +
+
+ + +

+ Use the graph to estimate the time the water balloon lands. +

+
+ +

t \approx 3.25 seconds

+ +

+ From the graph, the balloon appears to land at approximately t \approx 3.25 seconds. +

+
+
+ + +

+ Use algebra to find the exact + time the water balloon lands. +

+
+ +

t = \frac{-41 - \sqrt{4049}}{-32} \approx 3.27 seconds

+ +

+ Setting s(t) = 0 and applying the quadratic formula with a=-16, + b=41, c=37: + + t &= \frac{-41 \pm \sqrt{41^2 - 4(-16)(37)}}{2(-16)} + &= \frac{-41 \pm \sqrt{1681 + 2368}}{-32} + &= \frac{-41 \pm \sqrt{4049}}{-32}. + + Taking the root that gives t > 0: t = \frac{-41 - \sqrt{4049}}{-32} \approx 3.27 seconds. +

+
+
+ + +

+ Determine the exact time the water balloon reaches its highest point and its height at that time. +

+
+ +

t = \frac{41}{32} \approx 1.28 seconds; s\left(\frac{41}{32}\right) = \frac{4049}{64} \approx 63.3 feet

+ +

+ The vertex occurs at t = -\frac{b}{2a} = -\frac{41}{2(-16)} = \frac{41}{32} \approx 1.28 seconds. + The maximum height is + s\left(\frac{41}{32}\right) = -16 \cdot \frac{1681}{1024} + 41 \cdot \frac{41}{32} + 37 = \frac{4049}{64} \approx 63.3 \text{ feet.} +

+
+
+ + +

+ Compute the average rate of change of s on the intervals [1.5, 2], + [2, 2.5], [2.5,3]. + Include units on your answers and write one sentence to explain the meaning of the values you found. + Sketch appropriate lines on the graph of s whose respective slopes are the values of these average rates of change. +

+
+ +

AV_{[1.5,2]} = -15 \text{ ft/s}, AV_{[2,2.5]} = -31 \text{ ft/s}, AV_{[2.5,3]} = -47 \text{ ft/s}. Between t=1.5 and t=2, the water balloon is falling at an average rate of 15 feet per second; similarly for the other intervals. The balloon is falling faster and faster as it descends.

+ + + + f(x)=-16*x^2+41*x+37 + + + + + + + + + +

A graph of s(t) along with the lines representing the average rates of change on [1.5,2], [2,2.5], and [2.5,3].

+
+ + +

+ Using s(1.5) = 62.5, s(2) = 55, s(2.5) = 39.5, s(3) = 16: + AV_{[1.5,2]} = \frac{55-62.5}{0.5} = -15 \text{ ft/s}, + AV_{[2,2.5]} = \frac{39.5-55}{0.5} = -31 \text{ ft/s}, + AV_{[2.5,3]} = \frac{16-39.5}{0.5} = -47 \text{ ft/s.} + These values represent the average velocity of the balloon over each + half-second interval; the balloon is falling faster and faster as it descends. +

+ + + + + f(x)=-16*x^2+41*x+37 + + + + + + + + + +

A graph of s(t) along with the lines representing the average rates of change on [1.5,2], [2,2.5], and [2.5,3].

+ +
+
+
+
diff --git a/source/activities/act-changing-quadratic-parameters.xml b/source/activities/act-changing-quadratic-parameters.xml index 2d35eb25..89bf4192 100755 --- a/source/activities/act-changing-quadratic-parameters.xml +++ b/source/activities/act-changing-quadratic-parameters.xml @@ -1,121 +1,120 @@ - - - - - - - - - - - - - - - - -

- Open a browser and point it to Desmos. - In Desmos, enter q(x) = ax^2 + bx + c; - you will be prompted to add sliders for a, b, - and c. Do so. - Then begin exploring with the sliders and respond to the following questions. -

-

- - - -

- Describe how changing the value of a affects the graph of q. -

- - - - -

- If a > 0 the parabola opens upward; if a < 0 it opens downward. - The larger |a| is, the narrower the parabola; the closer |a| is to - zero, the wider the parabola. -

-
- - - -

- Describe how changing the value of b affects the graph of q. -

-
- - - -

- With a = 1 and c = 0, changing b shifts the vertex - diagonally: making b > 0 moves the vertex left and down, while - making b < 0 moves it right and down. -

-
-
- - -

- Describe how changing the value of c affects the graph of q. -

-
- - - -

- With a = 1 and b = 0, changing c moves the vertex straight - up or down along the y-axis. The vertex is at (0, c), and c - is the y-intercept of the function. -

-
-
- - -

- Which parameter seems to have the simplest effect? - Which parameter seems to have the most complicated effect? - Why? -

-
- - - -

- The parameter a has the most clearly understandable effect: it controls - whether the parabola opens up or down and how wide it is. The parameter c - has a simple effect as well (pure vertical translation). The parameter b - has the most complicated effect because changing it moves the vertex diagonally - rather than purely up, down, or in terms of width. -

-
-
- - -

- Is it possible to find a formula for a quadratic function that passes through the points (0,8), - (1,12), (2,12)? If yes, do so; if not, explain why not. -

-
- - - -

- Yes. Since (1,12) and (2,12) have the same output, the axis of - symmetry is x = 1.5 and the vertex has x-coordinate 1.5. - Since the parabola must pass through (0,8), which is below the values at - x=1 and x=2, the parabola opens downward. With c = q(0) = 8 - and using vertex form or solving the system, the formula is - q(x) = -2x^2 + 6x + 8. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Open a browser and point it to Desmos. + In Desmos, enter q(x) = ax^2 + bx + c; + you will be prompted to add sliders for a, b, + and c. Do so. + Then begin exploring with the sliders and respond to the following questions. +

+

+ + + +

+ Describe how changing the value of a affects the graph of q. +

+ + +

If a > 0 the parabola opens upward; if a < 0 it opens downward. + The larger |a| is, the narrower the parabola; the closer |a| is to + zero, the wider the parabola.

+ +

+ If a > 0 the parabola opens upward; if a < 0 it opens downward. + The larger |a| is, the narrower the parabola; the closer |a| is to + zero, the wider the parabola. +

+
+ + + +

+ Describe how changing the value of b affects the graph of q. +

+
+ +

With a = 1 and c = 0, changing b shifts the vertex + diagonally: making b > 0 moves the vertex left and down, while + making b < 0 moves it right and down.

+ +

+ With a = 1 and c = 0, changing b shifts the vertex + diagonally: making b > 0 moves the vertex left and down, while + making b < 0 moves it right and down. +

+
+
+ + +

+ Describe how changing the value of c affects the graph of q. +

+
+ +

With a = 1 and b = 0, changing c moves the vertex straight + up or down along the y-axis.

+ +

+ With a = 1 and b = 0, changing c moves the vertex straight + up or down along the y-axis. The vertex is at (0, c), and c + is the y-intercept of the function. +

+
+
+ + +

+ Which parameter seems to have the simplest effect? + Which parameter seems to have the most complicated effect? + Why? +

+
+ +

The parameter c seems to have the simplest effect while b seems to have the most complicated effect.

+ +

+ The parameter a has the most clearly understandable effect: it controls + whether the parabola opens up or down and how wide it is. The parameter c + has a simple effect as well (pure vertical translation). The parameter b + has the most complicated effect because changing it moves the vertex diagonally + rather than purely up, down, or in terms of width. +

+
+
+ + +

+ Is it possible to find a formula for a quadratic function that passes through the points (0,8), + (1,12), (2,12)? If yes, do so; if not, explain why not. +

+
+ +

q(x) = -2x^2 + 6x + 8

+ +

+ Yes. Since (1,12) and (2,12) have the same output, the axis of + symmetry is x = 1.5 and the vertex has x-coordinate 1.5. + Since the parabola must pass through (0,8), which is below the values at + x=1 and x=2, the parabola opens downward. With c = q(0) = 8 + and using vertex form or solving the system, the formula is + q(x) = -2x^2 + 6x + 8. +

+
+
+
+
diff --git a/source/activities/act-changing-quadratic-properties.xml b/source/activities/act-changing-quadratic-properties.xml index ea52eed6..d5699531 100755 --- a/source/activities/act-changing-quadratic-properties.xml +++ b/source/activities/act-changing-quadratic-properties.xml @@ -1,120 +1,114 @@ - - - - - - - - - - - - - - - - -

- Reason algebraically using appropriate properties of quadratic functions to answer the following questions. Use Desmos to check your results graphically. -

-

- - - -

- How many quadratic functions have x-intercepts at (-5,0) and (10,0) and a y-intercept at (0,-1)? Can you determine an exact formula for such a function? If yes, do so. If not, explain why. -

- - - - -

- Three points determine a unique quadratic, so exactly one such function exists. - Using the factored form q(x) = a(x+5)(x-10) and the y-intercept - q(0) = -1: - a(5)(-10) = -50a = -1 \implies a = \frac{1}{50}. - Thus q(x) = \frac{1}{50}x^2 - \frac{1}{10}x - 1. -

-
- - - -

- Suppose that a quadratic function q has vertex (-3,-4) and opens upward. How many x-intercepts can you guarantee the function has? Why? -

-
- - - -

- We can guarantee exactly two x-intercepts. Since the vertex (-3,-4) - is below the x-axis and the parabola opens upward, both arms must cross the - x-axis. -

-
-
- - -

- In addition to the information in (b), suppose you know that q(-1) = -3. Can you determine an exact formula for q? If yes, do so. If not, explain why. -

-
- - - -

- Yes. Using vertex form q(x) = a(x+3)^2 - 4 and the point (-1,-3): - - -3 &= a(-1+3)^2 - 4 = 4a - 4 - a &= \frac{1}{4}. - - Thus q(x) = \frac{1}{4}(x+3)^2 - 4. -

-
-
- - -

- Does the quadratic function p(x) = -3(x+1)^2 + 9 have 0, 1, or 2 x-intercepts? Reason algebraically to determine the exact values of any such intercepts or explain why none exist. -

-
- - - -

- The vertex (-1,9) is above the x-axis and a=-3 < 0, so the - parabola opens downward and has two x-intercepts. Setting p(x)=0: - - -3(x+1)^2 + 9 &= 0 - (x+1)^2 &= 3 - x &= -1 \pm \sqrt{3}. - -

-
-
- - -

- Does the quadratic function w(x) = -2x^2 + 10x - 20 have 0, 1, or 2 x-intercepts? Reason algebraically to determine the exact values of any such intercepts or explain why none exist. -

-
- - - -

- The discriminant is b^2 - 4ac = 10^2 - 4(-2)(-20) = 100 - 160 = -60 < 0, - so there are no real x-intercepts. Equivalently, the vertex is at - x = \frac{-10}{2(-2)} = 2.5 with w(2.5) = -7.5 < 0, and since - a = -2 < 0 the parabola opens downward and lies entirely below the - x-axis. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Reason algebraically using appropriate properties of quadratic functions to answer the following questions. Use Desmos to check your results graphically. +

+

+ + + +

+ How many quadratic functions have x-intercepts at (-5,0) and (10,0) and a y-intercept at (0,-1)? Can you determine an exact formula for such a function? If yes, do so. If not, explain why. +

+ + +

One, q(x) = \frac{1}{50}x^2 - \frac{1}{10}x - 1.

+ +

+ Three points determine a unique quadratic, so exactly one such function exists. + Using the factored form q(x) = a(x+5)(x-10) and the y-intercept + q(0) = -1: + a(5)(-10) = -50a = -1 \implies a = \frac{1}{50}. + Thus q(x) = \frac{1}{50}x^2 - \frac{1}{10}x - 1. +

+
+ + + +

+ Suppose that a quadratic function q has vertex (-3,-4) and opens upward. How many x-intercepts can you guarantee the function has? Why? +

+
+ +

Two, because the vertex is below the x-axis and the parabola opens upward.

+ +

+ We can guarantee exactly two x-intercepts. Since the vertex (-3,-4) + is below the x-axis and the parabola opens upward, both arms must cross the + x-axis. +

+
+
+ + +

+ In addition to the information in (b), suppose you know that q(-1) = -3. Can you determine an exact formula for q? If yes, do so. If not, explain why. +

+
+ +

q(x) = \frac{1}{4}(x+3)^2 - 4

+ +

+ Yes. Using vertex form q(x) = a(x+3)^2 - 4 and the point (-1,-3): + + -3 &= a(-1+3)^2 - 4 = 4a - 4 + a &= \frac{1}{4}. + + Thus q(x) = \frac{1}{4}(x+3)^2 - 4. +

+
+
+ + +

+ Does the quadratic function p(x) = -3(x+1)^2 + 9 have 0, 1, or 2 x-intercepts? Reason algebraically to determine the exact values of any such intercepts or explain why none exist. +

+
+ +

Two, because the vertex (-1,9) is above the x-axis and the parabola opens downward. x=-1 \pm \sqrt{3}

+ +

+ The vertex (-1,9) is above the x-axis and a=-3 < 0, so the + parabola opens downward and has two x-intercepts. Setting p(x)=0: + + -3(x+1)^2 + 9 &= 0 + (x+1)^2 &= 3 + x &= -1 \pm \sqrt{3}. + +

+
+
+ + +

+ Does the quadratic function w(x) = -2x^2 + 10x - 20 have 0, 1, or 2 x-intercepts? Reason algebraically to determine the exact values of any such intercepts or explain why none exist. +

+
+ +

Zero, because b^2 - 4ac = 10^2 - 4(-2)(-20) is negative.

+ +

+ The discriminant is b^2 - 4ac = 10^2 - 4(-2)(-20) = 100 - 160 = -60 < 0, + so there are no real x-intercepts. Equivalently, the vertex is at + x = \frac{-10}{2(-2)} = 2.5 with w(2.5) = -7.5 < 0, and since + a = -2 < 0 the parabola opens downward and lies entirely below the + x-axis. +

+
+
+
+
diff --git a/source/activities/act-changing-tandem-conical-tank.xml b/source/activities/act-changing-tandem-conical-tank.xml index f331e089..d11961fd 100755 --- a/source/activities/act-changing-tandem-conical-tank.xml +++ b/source/activities/act-changing-tandem-conical-tank.xml @@ -1,150 +1,341 @@ - - - - - - - - - - - - - - - - -

- Consider a tank in the shape of an inverted circular cone (point down) where the tank's radius is 2 feet and its depth is 4 feet. Suppose that the tank is being filled with water that is entering at a constant rate of 0.75 cubic feet per minute. -

-

- - - -

- Sketch a labeled picture of the tank, including a snapshot of there being water in the tank prior to the tank being completely full. -

- - - - -

Answers will vary. A sketch should show an inverted cone with labeled radius 2 ft and depth 4 ft, with water partially filling the bottom of the tank.

-
- - - -

- What are some quantities that are changing in this scenario? What are some quantities that are not changing? -

-
- - - -

Quantities that are changing include the volume of water in the tank, the height of the water, the surface area of the top of the water, and time. Quantities that are not changing include the rate at which water enters, the height of the tank, and the radius of the tank.

-
-
- - -

- Fill in the following table of values to determine how much water, V, is in the tank at a given time in minutes, t, and thus generate a graph of the relationship between volume and time by plotting the data on the provided axes. -

- - - - - - t - - - V - - - - - 0 - - - - - - - - 1 - - - - - - - - 2 - - - - - - - - 3 - - - - - - - - 4 - - - - - - - - 5 - - - - - - - - - -

ADD ALT TEXT TO THIS IMAGE

- -
-
- - - -

Since water enters at a constant rate of 0.75 cubic feet per minute, V = 0.75t. The table values are: t = 0, V = 0; t = 1, V = 0.75; t = 2, V = 1.5; t = 3, V = 2.25; t = 4, V = 3.0; t = 5, V = 3.75. The graph of V versus t is a straight line through the origin with slope 0.75.

-
-
- - -

- Finally, think about how the height, h, of the water changes in tandem with time. Without attempting to determine specific values of h at particular values of t, how would you expect the data for the relationship between h and t to appear? Use the provided axes to sketch at least two possibilities; write at least one sentence to explain how you think the graph should appear. -

- -

ADD ALT TEXT TO THIS IMAGE

-

ADD ALT TEXT TO THIS IMAGE

-
-
- - - -

Since the radius of the cone increases as the water level rises, the height of the water increases rapidly at first but the rate of increase slows as the water level rises. Sketches should show a concave-down increasing curve approaching the maximum depth of 4 ft.

-
-
- -

- - -

See solutions to individual tasks above.

- -
-
+ + + + + + + + + + + + + + + + +

+ Consider a tank in the shape of an inverted circular cone (point down) where the tank's radius is 2 feet and its depth is 4 feet. Suppose that the tank is being filled with water that is entering at a constant rate of 0.75 cubic feet per minute. +

+

+ + + +

+ Sketch a labeled picture of the tank, including a snapshot of there being water in the tank prior to the tank being completely full. +

+ + +

Sketches should look something like the following image.

+ + + + + + + + + + + + + + + +

An inverted cone with labeled radius 2 ft and depth 4 ft, with water partially filling the bottom of the tank.

+
+ +

Answers will vary. A sketch should show an inverted cone with labeled radius 2 ft and depth 4 ft, with water partially filling the bottom of the tank.

+ + + + + + + + + + + + + + + +

An inverted cone with labeled radius 2 ft and depth 4 ft, with water partially filling the bottom of the tank.

+
+ + + +

+ What are some quantities that are changing in this scenario? What are some quantities that are not changing? +

+
+ +

Changing: volume, height, surface area, and time. Not changing: rate of water entering, height of tank, and radius of tank.

+ +

Quantities that are changing include the volume of water in the tank, the height of the water, the surface area of the top of the water, and time. Quantities that are not changing include the rate at which water enters, the height of the tank, and the radius of the tank.

+
+
+ + +

+ Fill in the following table of values to determine how much water, V, is in the tank at a given time in minutes, t, and thus generate a graph of the relationship between volume and time by plotting the data on the provided axes. +

+ + + + + t + + + V + + + + + 0 + + + + + + + + 1 + + + + + + + + 2 + + + + + + + + 3 + + + + + + + + 4 + + + + + + + + 5 + + + + + + + + + + + + + + +

Blank axes for making a graph of volume versus time.

+ +
+
+ + + + + + + t + + + V + + + + + 0 + + + 0 + + + + + 1 + + + 0.75 + + + + + 2 + + + 1.5 + + + + + 3 + + + 2.25 + + + + + 4 + + + 3.0 + + + + + 5 + + + 3.75 + + + + + + + f(x)=0.75*x + + + + + + +

A graph of volume versus time, using the values from the table. The graph is a straight line through the origin with slope 0.75.

+
+
+ +

Since water enters at a constant rate of 0.75 cubic feet per minute, V = 0.75t. The table values are: t = 0, V = 0; t = 1, V = 0.75; t = 2, V = 1.5; t = 3, V = 2.25; t = 4, V = 3.0; t = 5, V = 3.75. The graph of V versus t is a straight line through the origin with slope 0.75.

+ + + + + t + + + V + + + + + 0 + + + 0 + + + + + 1 + + + 0.75 + + + + + 2 + + + 1.5 + + + + + 3 + + + 2.25 + + + + + 4 + + + 3.0 + + + + + 5 + + + 3.75 + + + + + + + f(x)=0.75*x + + + + + + +

A graph of volume versus time, using the values from the table. The graph is a straight line through the origin with slope 0.75.

+
+
+
+ + +

+ Finally, think about how the height, h, of the water changes in tandem with time. Without attempting to determine specific values of h at particular values of t, how would you expect the data for the relationship between h and t to appear? Use the provided axes to sketch at least two possibilities; write at least one sentence to explain how you think the graph should appear. +

+ + + + + + + + + +

Blank axes for making a graph of height versus time.

+ + + + + + + + +

Blank axes for making a graph of height versus time.

+ +
+
+ +

Sketches should show a curve starting at the origin that is bending downwards as it approaches the maximum depth of 4 ft.

+ +

Since the radius of the cone increases as the water level rises, the height of the water increases rapidly at first but the rate of increase slows as the water level rises. Sketches should show a concave-down increasing curve approaching the maximum depth of 4 ft.

+
+
+
+
diff --git a/source/activities/act-changing-tandem-spherical-tank.xml b/source/activities/act-changing-tandem-spherical-tank.xml index f05d31ae..c215ff44 100755 --- a/source/activities/act-changing-tandem-spherical-tank.xml +++ b/source/activities/act-changing-tandem-spherical-tank.xml @@ -1,160 +1,360 @@ - - - - - - - - - - - - - - - - -

- Consider a tank in the shape of a sphere where the tank's radius is 3 feet. Suppose that the tank is initially completely full and that it is being drained by a pump at a constant rate of 1.2 cubic feet per minute. -

-

- - - -

- Sketch a labeled picture of the tank, including a snapshot of some water remaining in the tank prior to the tank being completely empty. -

- - - - -

Answers will vary. A sketch should show a sphere with labeled radius 3 ft, with water partially filling the tank.

-
- - - -

- What are some quantities that are changing in this scenario? What are some quantities that are not changing? -

-
- - - -

Quantities that are changing include the volume of water in the tank, the height of the water, the surface area of the top of the water, and time. Quantities that are not changing include the rate at which water is pumped out and the radius of the tank.

-
-
- - -

- Recall that the volume of a sphere of radius r is V = \frac{4}{3} \pi r^3. When the tank is completely full at time t = 0 right before it starts being drained, how much water is present? -

-
- - - -

Since the radius is 3 feet, the full tank contains \frac{4}{3}\pi(3)^3 = 36\pi \approx 113.1 cubic feet of water.

-
-
- - -

- How long will it take for the tank to drain completely? -

-
- - - -

Water is removed at 1.2 cubic feet per minute. The tank drains when 1.2t = 36\pi, so t = \frac{36\pi}{1.2} = 30\pi \approx 94.25 minutes.

-
-
- - -

- Fill in the following table of values to determine how much water, V, is in the tank at a given time in minutes, t, and thus generate a graph of the relationship between volume and time. Write a sentence to explain why the data's graph appears the way that it does. -

- - - - - - t - - - V - - - - - 0 - - - - - - 20 - - - - - - 40 - - - - - - 60 - - - - - - 80 - - - - - - 94.24 - - - - - -

ADD ALT TEXT TO THIS IMAGE

- -
-
- - - -

Since water is removed at a constant rate, V = 36\pi - 1.2t. The approximate values are: t = 0, V \approx 113.1; t = 20, V \approx 89.1; t = 40, V \approx 65.1; t = 60, V \approx 41.1; t = 80, V \approx 17.1; t = 94.24, V \approx 0. The graph is linear because water is removed at a constant rate.

-
-
- - -

- Finally, think about how the height of the water changes in tandem with time. What is the height of the water when t = 0? What is the height when the tank is empty? How would you expect the data for the relationship between h and t to appear? Use the provided axes to sketch at least two possibilities; write at least one sentence to explain how you think the graph should appear. -

- -

ADD ALT TEXT TO THIS IMAGE

-

ADD ALT TEXT TO THIS IMAGE

-
-
- - - -

When t = 0 the tank is full, so the height of the water is the diameter h = 6 ft. When the tank is empty, h = 0. The height decreases quickly at first, then the rate of decrease slows as the widest part of the sphere is reached, then speeds up again as the tank nears empty. Sketches should show an S-shaped decreasing curve from h = 6 to h = 0.

-
-
- -

- - -

See solutions to individual tasks above.

- -
-
+ + + + + + + + + + + + + + + + +

+ Consider a tank in the shape of a sphere where the tank's radius is 3 feet. Suppose that the tank is initially completely full and that it is being drained by a pump at a constant rate of 1.2 cubic feet per minute. +

+

+ + + +

+ Sketch a labeled picture of the tank, including a snapshot of some water remaining in the tank prior to the tank being completely empty. +

+ + +

Sketches should look something like the following image.

+ + + + points=((-1.8,-.4),(2*cos(5*pi/4),2*sin(5*pi/4)),(2*cos(6*pi/4),2*sin(6*pi/4)),(2*cos(7*pi/4),2*sin(7*pi/4)), (1.8,-.43), (0,-.43), (-1.8,-.4)) + + + + + + + + + + + + + + + +

An sphere with labeled radius 3 ft, with water partially filling the bottom of the spherical tank.

+
+ +

Answers will vary. A sketch should show a sphere with labeled radius 3 ft, with water partially filling the tank.

+ + + + points=((-1.8,-.4),(2*cos(5*pi/4),2*sin(5*pi/4)),(2*cos(6*pi/4),2*sin(6*pi/4)),(2*cos(7*pi/4),2*sin(7*pi/4)), (1.8,-.43), (0,-.43), (-1.8,-.4)) + + + + + + + + + + + + + + + +

An sphere with labeled radius 3 ft, with water partially filling the bottom of the spherical tank.

+
+ + + +

+ What are some quantities that are changing in this scenario? What are some quantities that are not changing? +

+
+ +

Changing: volume, height, surface area, and time. Not changing: rate of water being pumped out and radius of the tank.

+ +

Quantities that are changing include the volume of water in the tank, the height of the water, the surface area of the top of the water, and time. Quantities that are not changing include the rate at which water is pumped out and the radius of the tank.

+
+
+ + +

+ Recall that the volume of a sphere of radius r is V = \frac{4}{3} \pi r^3. When the tank is completely full at time t = 0 right before it starts being drained, how much water is present? +

+
+ +

\frac{4}{3}\pi(3)^3 = 36\pi \approx 113.1 cubic feet of water.

+ +

Since the radius is 3 feet, the full tank contains \frac{4}{3}\pi(3)^3 = 36\pi \approx 113.1 cubic feet of water.

+
+
+ + +

+ How long will it take for the tank to drain completely? +

+
+ +

Approximately 94.25 minutes

+ +

Water is removed at 1.2 cubic feet per minute. The tank drains when 1.2t = 36\pi, so t = \frac{36\pi}{1.2} = 30\pi \approx 94.25 minutes.

+
+
+ + +

+ Fill in the following table of values to determine how much water, V, is in the tank at a given time in minutes, t, and thus generate a graph of the relationship between volume and time. Write a sentence to explain why the data's graph appears the way that it does. +

+ + + + + + t + + + V + + + + + 0 + + + + + + 20 + + + + + + 40 + + + + + + 60 + + + + + + 80 + + + + + + 94.25 + + + + + + + + + + + + + +

Blank axes for graphing volume versus time.

+ + + +
+
+ + + + + + + + t + + + V + + + + + 0 + + 113.1 + + + + 20 + + 89.1 + + + + 40 + + 65.1 + + + + 60 + + 41.1 + + + + 80 + + 17.1 + + + + 94.25 + + 0 + + + + + + + f(x)=36*pi-1.2*x + + + + + + +

A graph of volume versus time, using the values from the table. The graph is a straight line through (0, 36\pi) with slope -1.2.

+ + +
+
+ +

Since water is removed at a constant rate, V = 36\pi - 1.2t. The approximate values are: t = 0, V \approx 113.1; t = 20, V \approx 89.1; t = 40, V \approx 65.1; t = 60, V \approx 41.1; t = 80, V \approx 17.1; t = 94.24, V \approx 0. The graph is linear because water is removed at a constant rate.

+ + + + + + t + + + V + + + + + 0 + + 113.1 + + + + 20 + + 89.1 + + + + 40 + + 65.1 + + + + 60 + + 41.1 + + + + 80 + + 17.1 + + + + 94.25 + + 0 + + + + + + + f(x)=36*pi-1.2*x + + + + + + +

A graph of volume versus time, using the values from the table. The graph is a straight line through (0, 36\pi) with slope -1.2.

+ + +
+
+
+ + +

+ Finally, think about how the height of the water changes in tandem with time. What is the height of the water when t = 0? What is the height when the tank is empty? How would you expect the data for the relationship between h and t to appear? Use the provided axes to sketch at least two possibilities; write at least one sentence to explain how you think the graph should appear. +

+ + + + + + + + + +

Blank axes for making a graph of height versus time.

+ + + + + + + + +

Blank axes for making a graph of height versus time.

+ +
+
+ +

Sketches should show an S-shaped decreasing curve from h = 6 to h = 0.

+ +

When t = 0 the tank is full, so the height of the water is the diameter h = 6 ft. When the tank is empty, h = 0. The height decreases quickly at first, then the rate of decrease slows as the widest part of the sphere is reached, then speeds up again as the tank nears empty. Sketches should show an S-shaped decreasing curve from h = 6 to h = 0.

+
+
+
+
diff --git a/source/activities/act-changing-transformations-combined.xml b/source/activities/act-changing-transformations-combined.xml index 6ac8760a..0c816ee4 100755 --- a/source/activities/act-changing-transformations-combined.xml +++ b/source/activities/act-changing-transformations-combined.xml @@ -1,117 +1,162 @@ - - - - - - - - - - - - - - - - -

- Consider the functions f and g given in the following figures. -

- - -

ADD ALT TEXT TO THIS IMAGE

- -

ADD ALT TEXT TO THIS IMAGE

- -
-

- - - -

- Sketch an accurate graph of the transformation y = p(x) = -\frac{1}{2}f(x-1)+2. Write at least one sentence to explain how you developed the graph of p, and identify the point on p that corresponds to the original point (-2,2) on the graph of f. -

- - - - -

- The function p(x) = -\frac{1}{2}f(x-1)+2 is obtained from f by - shifting right 1 unit, applying a vertical compression by \frac{1}{2} and - a reflection across the x-axis, then shifting up 2 units. - The point (-2, 2) on f moves to (-1, 1) on p. -

- - -
- - - -

- Sketch an accurate graph of the transformation y = q(x) = 2g(x+0.5)-0.75. Write at least one sentence to explain how you developed the graph of q, and identify the point on q that corresponds to the original point (1.5,1.5) on the graph of g. -

-
- - - -

- The function q(x) = 2g(x+0.5) - 0.75 is obtained from g by - shifting left 0.5 units, stretching vertically by a factor of 2, then - shifting down 0.75 units. - The point (1.5, 1.5) on g moves to (1, 2.25) on q. -

- - -
-
- - -

- Is the function y = r(x) = \frac{1}{2}(-f(x-1) - 4) the same function as p in part (a) or different? Why? Explain in two different ways: discuss the algebraic similarities and differences between p and r, and also discuss how each is a transformation of f. -

-
- - - -

- Algebraically: - r(x) = \frac{1}{2}(-f(x-1)-4) = -\frac{1}{2}f(x-1) - 2. - Since p(x) = -\frac{1}{2}f(x-1)+2, we have r(x) \ne p(x) - — they differ by 4 in output. - As transformations, both shift f right 1 unit and apply a vertical - compression and reflection by -\frac{1}{2}, but p then shifts - the result up 2 units while r shifts it down 2 units. -

-
-
- - -

- Find a formula for a function y = s(x) (in terms of g) that represents this transformation of g: a horizontal shift of 1.25 units left, followed by a reflection across the x-axis and a vertical stretch by a factor of 2.5 units, followed by a vertical shift of 1.75 units. Sketch an accurate, labeled graph of s on the following axes along with the given parent function g. -

- -

ADD ALT TEXT TO THIS IMAGE

-
-
- - - -

- s(x) = -2.5\,g(x+1.25) + 1.75. - The point (1.5, 1.5) on g moves to (0.25, -2) on s. -

- - -
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Consider the functions f and g given in the following figures. +

+ + + + + +

Graph of a piecewise linear function f(x) whose first piece goes from (-4,2) to the point (-2,2), and whose second piece goes from (-2,2) to (2,2), and whose third piece goes from (2,2) to the edge of the graph at (4,2). The point (-2,2) is marked on the graph.

+ + + + +

Graph of a function g(x) which is going up and down repeatedly, hitting peaks of 1.5 and valleys of -1.5. The point (1.5,1.5) is marked on the graph.

+
+ +

+ + + +

+ Sketch an accurate graph of the transformation y = p(x) = -\frac{1}{2}f(x-1)+2. Write at least one sentence to explain how you developed the graph of p, and identify the point on p that corresponds to the original point (-2,2) on the graph of f. +

+ + +

Shift right 1 unit, then compress vertically by a factor of \frac{1}{2}, then reflect across the x-axis, and lastly shift up 2 units. The point (-2, 2) on f moves to (-1, 1) on p.

+ + + + +

Graph of the piecewise linear function f(x), along with a transformation of f.

The function p(x) is also piecewise linear, but has been flipped upside-down, shrunk vertically so that the slopes of each line are half what they are in g, and shifted to the right. The point (-1,1) is marked on the graph of p.

+ +
+ +

+ The function p(x) = -\frac{1}{2}f(x-1)+2 is obtained from f by + shifting right 1 unit, applying a vertical compression by \frac{1}{2} and + a reflection across the x-axis, then shifting up 2 units. + The point (-2, 2) on f moves to (-1, 1) on p. +

+ + + + + +

Graph of the piecewise linear function f(x), along with a transformation of f.

The function p(x) is also piecewise linear, but has been flipped upside-down, shrunk vertically so that the slopes of each line are half the magnitude of what they are in g, and shifted to the right. The point (-1,1) is marked on the graph of p.

+ + + +
+ + + +

+ Sketch an accurate graph of the transformation y = q(x) = 2g(x+0.5)-0.75. Write at least one sentence to explain how you developed the graph of q, and identify the point on q that corresponds to the original point (1.5,1.5) on the graph of g. +

+
+ +

Shift left 0.5 units, then stretch vertically by a factor of 2, and lastly + shift down 0.75 units. The point (1.5, 1.5) on g moves to (1, 2.25) on q.

+ + + + +

Graph of the function g(x), along with a transformation of g.

The function g is going up and down repeatedly, hitting peaks of 1.5 and valleys of -1.5. The point (1.5,1.5) is marked on the graph of g.

The function q(x) is also going up and down repeatedly, but reaches higher peaks and valleys and has been shifted horizontally. The point (1,2.25) is marked on the graph of q.

+ +
+ +

+ The function q(x) = 2g(x+0.5) - 0.75 is obtained from g by + shifting left 0.5 units, stretching vertically by a factor of 2, then + shifting down 0.75 units. + The point (1.5, 1.5) on g moves to (1, 2.25) on q. +

+ + + + + +

Graph of the function g(x), along with a transformation of g.

The function g is going up and down repeatedly, hitting peaks of 1.5 and valleys of -1.5. The point (1.5,1.5) is marked on the graph of g.

The function q(x) is also going up and down repeatedly, but reaches higher peaks and valleys and has been shifted horizontally. The point (1,2.25) is marked on the graph of q.

+ + +
+
+ + +

+ Is the function y = r(x) = \frac{1}{2}(-f(x-1) - 4) the same function as p in part (a) or different? Why? Explain in two different ways: discuss the algebraic similarities and differences between p and r, and also discuss how each is a transformation of f. +

+
+ +

Both shift f right 1 unit and apply a vertical + compression and reflection by -\frac{1}{2}, but p then shifts + the result up 2 units while r shifts it down 2 units.

+ +

+ Algebraically: + r(x) = \frac{1}{2}(-f(x-1)-4) = -\frac{1}{2}f(x-1) - 2. + Since p(x) = -\frac{1}{2}f(x-1)+2, we have r(x) \ne p(x) + — they differ by 4 in output. + As transformations, both shift f right 1 unit and apply a vertical + compression and reflection by -\frac{1}{2}, but p then shifts + the result up 2 units while r shifts it down 2 units. +

+
+
+ + +

+ Find a formula for a function y = s(x) (in terms of g) that represents this transformation of g: a horizontal shift of 1.25 units left, followed by a reflection across the x-axis and a vertical stretch by a factor of 2.5 units, followed by a vertical shift of 1.75 units. Sketch an accurate, labeled graph of s on the following axes along with the given parent function g. +

+ + + + +

Graph of a function g(x) which is going up and down repeatedly, hitting peaks of 1.5 and valleys of -1.5. The point (1.5,1.5) is marked on the graph.

+ +
+ +

s(x) = -2.5\,g(x+1.25) + 1.75.

+ + + + +

Graph of a function g(x) which is going up and down repeatedly, hitting peaks of 1.5 and valleys of -1.5. The point (1.5,1.5) is marked on the graph.

+
+ +

+ s(x) = -2.5\,g(x+1.25) + 1.75. + The point (1.5, 1.5) on g moves to (0.25, -2) on s. +

+ + + + +

Graph of a function g(x) which is going up and down repeatedly, hitting peaks of 1.5 and valleys of -1.5. The point (1.5,1.5) is marked on the graph.

+ +
+
+
+
diff --git a/source/activities/act-changing-transformations-translations.xml b/source/activities/act-changing-transformations-translations.xml index ea93f507..4c599a1a 100755 --- a/source/activities/act-changing-transformations-translations.xml +++ b/source/activities/act-changing-transformations-translations.xml @@ -1,101 +1,150 @@ - - - - - - - - - - - - - - - - -

- Consider the functions r and s given in the figures below. -

- - -

ADD ALT TEXT TO THIS IMAGE

- -

ADD ALT TEXT TO THIS IMAGE

- -
-

- - - -

- On the same axes as the plot of y = r(x), sketch the following graphs: y = g(x) = r(x) + 2, y = h(x) = r(x+1), and y = f(x) = r(x+1) + 2. Be sure to label the point on each of g, h, and f that corresponds to (-2,-1) on the original graph of r. In addition, write one sentence to explain the overall transformations that have resulted in g, h, and f. -

- - - - -

- The graph of g(x) = r(x) + 2 is r shifted vertically up 2 units; - the point (-2, -1) moves to (-2, 1). - The graph of h(x) = r(x+1) is r shifted horizontally to the left - 1 unit; the point (-2, -1) moves to (-3, -1). - The graph of f(x) = r(x+1) + 2 combines both transformations — a shift - left 1 unit and up 2 units — moving (-2, -1) to (-3, 1). -

- - -
- - - -

- On the same axes as the plot of y = s(x), sketch the following graphs: y = k(x) = s(x) - 1, y = j(x) = s(x-2), and y = m(x) = s(x-2) - 1. Be sure to label the point on each of k, j, and m that corresponds to (-2,-3) on the original graph of s. In addition, write one sentence to explain the overall transformations that have resulted in k, j, and m. -

-
- - - -

- The graph of k(x) = s(x) - 1 is s shifted down 1 unit; - the point (-2, -3) moves to (-2, -4). - The graph of j(x) = s(x-2) is s shifted right 2 units; - the point (-2, -3) moves to (0, -3). - The graph of m(x) = s(x-2) - 1 combines both — a shift right 2 units - and down 1 unit — moving (-2, -3) to (0, -4). -

-
-
- - -

- Now consider the function q(x) = x^2. Determine a formula for the function that is given by p(x) = q(x+3) - 4. How is p a transformation of q? -

-
- - - -

- Substituting q(x) = x^2: - - p(x) &= q(x+3) - 4 = (x+3)^2 - 4 - &= x^2 + 6x + 9 - 4 = x^2 + 6x + 5. - - The function p is a translation of q three units to the left - and four units down. -

- - -
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Consider the functions r and s given in the figures below. +

+ + + + + + +

A parent function r(x). +

+
+ + + + + + + +

A parent function s(x). +

+
+ + + +
+

+ + + +

+ On the same axes as the plot of y = r(x), sketch the following graphs: y = g(x) = r(x) + 2, y = h(x) = r(x+1), and y = f(x) = r(x+1) + 2. Be sure to label the point on each of g, h, and f that corresponds to (2,-1) on the original graph of r. In addition, write one sentence to explain the overall transformations that have resulted in g, h, and f. +

+ + +

The function g(x) shifts r up 2 units, while the function h(x) shifts r left 1 unit, and the function f(x) shifts r both up 2 and left 1.

+ + + + +

A parent function r(x) along with three transformations: h(x) which shifts to the left 1 unit, g(x) which shifts up 2 units, and f(x) which shifts both left 1 unit and up 2 units. +

+
+ +
+ +

+ The graph of g(x) = r(x) + 2 is r shifted vertically up 2 units; + the point (2, -1) moves to (2, 1). + The graph of h(x) = r(x+1) is r shifted horizontally to the left + 1 unit; the point (2, -1) moves to (1, -1). + The graph of f(x) = r(x+1) + 2 combines both transformations — a shift + left 1 unit and up 2 units — moving (2, -1) to (1, 1). +

+ + + + + +

A parent function r(x) along with three transformations: h(x) which shifts to the left 1 unit, g(x) which shifts up 2 units, and f(x) which shifts both left 1 unit and up 2 units. +

+
+ + + +
+ + + +

+ On the same axes as the plot of y = s(x), sketch the following graphs: y = k(x) = s(x) - 1, y = j(x) = s(x-2), and y = m(x) = s(x-2) - 1. Be sure to label the point on each of k, j, and m that corresponds to (-2,-3) on the original graph of s. In addition, write one sentence to explain the overall transformations that have resulted in k, j, and m. +

+
+ +

The function k(x) shifts s down 1 unit, while the function j(x) shifts s right 2 units, and the function m(x) shifts s both down 1 and right 2.

+ + + + +

A parent function s(x) along with three transformations: j(x) which shifts to the right 2 units, k(x) which shifts down 1 units, and m(x) which shifts both right 2 units and down 1 unit. +

+
+ +
+ +

+ The graph of k(x) = s(x) - 1 is s shifted down 1 unit; + the point (-2, -3) moves to (-2, -4). + The graph of j(x) = s(x-2) is s shifted right 2 units; + the point (-2, -3) moves to (0, -3). + The graph of m(x) = s(x-2) - 1 combines both — a shift right 2 units + and down 1 unit — moving (-2, -3) to (0, -4). +

+ + + + + +

A parent function s(x) along with three transformations: j(x) which shifts to the right 2 units, k(x) which shifts down 1 units, and m(x) which shifts both right 2 units and down 1 unit. +

+
+ + + +
+
+ + +

+ Now consider the function q(x) = x^2. Determine a formula for the function that is given by p(x) = q(x+3) - 4. How is p a transformation of q? +

+
+ +

+ The function p(x)=x^2 + 6x + 5, and is the result of translating q(x) three units to the left and four units down. +

+
+ +

+ Substituting q(x) = x^2: + + p(x) &= q(x+3) - 4 = (x+3)^2 - 4 + &= x^2 + 6x + 9 - 4 = x^2 + 6x + 5. + + The function p is a translation of q three units to the left + and four units down. +

+
+
+
+
diff --git a/source/activities/act-changing-transformations-vert-stretch.xml b/source/activities/act-changing-transformations-vert-stretch.xml index c5b3a626..3fc2eaf0 100755 --- a/source/activities/act-changing-transformations-vert-stretch.xml +++ b/source/activities/act-changing-transformations-vert-stretch.xml @@ -1,124 +1,237 @@ - - - - - - - - - - - - - - - - -

- Consider the functions r and s given in the figures below. -

- - -

ADD ALT TEXT TO THIS IMAGE

- -

ADD ALT TEXT TO THIS IMAGE

- -
-

- - - -

- On the same axes as the plot of y = r(x), sketch the following graphs: y = g(x) = 3r(x) and y = h(x) = \frac{1}{3}r(x). Be sure to label the point on g and h that corresponds to the point (-2,-1) on the original graph of r. In addition, write one sentence to explain the overall transformations that have resulted in g and h from r. -

- - - - -

- The graph of g(x) = 3r(x) is a vertical stretch of r by a factor - of 3; the point (-2, -1) moves to (-2, -3). - The graph of h(x) = \frac{1}{3}r(x) is a vertical compression of r - by a factor of \frac{1}{3}; the point (-2, -1) moves to - (-2, -\frac{1}{3}). -

- - -
- - - -

- On the same axes as the plot of y = s(x), sketch the following graphs: y = k(x) = -s(x) and y = j(x) = -\frac{1}{2}s(x). Be sure to label the point on k and j that corresponds to the point (-2,-3) on the original graph of s. In addition, write one sentence to explain the overall transformations that have resulted in k and j from s. -

-
- - - -

- The graph of k(x) = -s(x) is a reflection of s across the - x-axis; the point (-2, -3) moves to (-2, 3). - The graph of j(x) = -\frac{1}{2}s(x) is a vertical compression by - \frac{1}{2} combined with a reflection across the x-axis; - the point (-2, -3) moves to (-2, \frac{3}{2}). -

- - -
-
- - -

- On the additional copies of the two figures below, sketch the graphs of the following transformed functions: y = m(x) = 2r(x+1)-1 (at left) and y = n(x) = \frac{1}{2}s(x-2)+2. As above, be sure to label a key point on each graph that corresonds to the labeled point on the original parent function. -

- -

ADD ALT TEXT TO THIS IMAGE

-

ADD ALT TEXT TO THIS IMAGE

-
-
- - - -

- For m(x) = 2r(x+1) - 1: the point (-2, -1) on r moves - to (-3, -3) on m. - For n(x) = \frac{1}{2}s(x-2) + 2: the point (-2, -3) on s - moves to (0, \frac{1}{2}) on n. -

- - - - - -
-
- - -

- Describe in words how the function y = m(x) = 2r(x+1)-1 is the result of three elementary transformations of y = r(x). Does the order in which these transformations occur matter? Why or why not? -

-
- - - -

- The function m(x) = 2r(x+1) - 1 results from three elementary - transformations of r: a horizontal shift left 1 unit (replacing x - with x+1), a vertical stretch by a factor of 2 (multiplying by 2), and - a vertical shift down 1 unit (subtracting 1). - The vertical stretch and the horizontal shift may be applied in either order, - but both must be applied before the vertical shift. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Consider the functions r and s given in the figures below. +

+ + + + + +

A parent function r(x). +

+
+ + + + + + + +

A parent function s(x). +

+
+ + + +
+

+ + + +

+ On the same axes as the plot of y = r(x), sketch the following graphs: y = g(x) = 3r(x) and y = h(x) = \frac{1}{3}r(x). Be sure to label the point on g and h that corresponds to the point (-2,1) on the original graph of r. In addition, write one sentence to explain the overall transformations that have resulted in g and h from r. +

+ + +

+ The graph of g(x) = 3r(x) is a vertical stretch of r by a factor + of 3 while the graph of h(x) = \frac{1}{3}r(x) is a vertical compression of r + by a factor of \frac{1}{3}. +

+ + + + +

A parent function r(x) along with two transformations: g(x) which stretches vertical heights by a factor of 3, and h(x) which vertically compresses vertical heights by a factor of 1/3. +

+
+ +
+ +

+ The graph of g(x) = 3r(x) is a vertical stretch of r by a factor + of 3; the point (-2, 1) moves to (-2, 3). + The graph of h(x) = \frac{1}{3}r(x) is a vertical compression of r + by a factor of \frac{1}{3}; the point (-2, 1) moves to + (-2, \frac{1}{3}). +

+ + + + + +

A parent function r(x) along with two transformations: g(x) which stretches vertical heights by a factor of 3, and h(x) which vertically compresses vertical heights by a factor of 1/3. +

+
+ + + +
+ + + +

+ On the same axes as the plot of y = s(x), sketch the following graphs: y = k(x) = -s(x) and y = j(x) = -\frac{1}{2}s(x). Be sure to label the point on k and j that corresponds to the point (-2,-3) on the original graph of s. In addition, write one sentence to explain the overall transformations that have resulted in k and j from s. +

+
+ +

+ The graph of k(x) = -s(x) is a reflection of s across the + x-axis, while the graph of j(x) = -\frac{1}{2}s(x) is a vertical compression by \frac{1}{2} combined with a reflection across the x-axis. +

+ + + + + +

A parent function s(x) along with two transformations: k(x) which reflects heights over the x-axis and j(x) which reflects and vertically compresses vertical heights by a factor of 1/2. +

+
+ +
+ +

+ The graph of k(x) = -s(x) is a reflection of s across the + x-axis; the point (-2, -3) moves to (-2, 3). + The graph of j(x) = -\frac{1}{2}s(x) is a vertical compression by + \frac{1}{2} combined with a reflection across the x-axis; + the point (-2, -3) moves to (-2, \frac{3}{2}). +

+ + + + + +

A parent function s(x) along with two transformations: k(x) which reflects heights over the x-axis and j(x) which reflects and vertically compresses vertical heights by a factor of 1/2. +

+
+ + +
+
+ + +

+ On the additional copies of the two figures below, sketch the graphs of the following transformed functions: y = m(x) = 2r(x+1)-1 (at left) and y = n(x) = \frac{1}{2}s(x-2)+2. As above, be sure to label a key point on each graph that corresponds to a labeled point on the original parent function. +

+ + + + + +

A parent function r(x). +

+
+ + + + + +

A parent function s(x). +

+
+ + + + +
+
+ + + + + + + +

A parent function r(x) along with a transformation m(x) which shifts left 1 unit, stretches vertical heights by a factor of 2, and shifts down by 1 unit. +

+
+ + + + + +

A parent function s(x) along with a transformation n(x) which shifts right 2 units, compresses vertical heights by a factor of 1/2, and shifts up by 2 units. +

+
+ + + +
+
+ +

+ For m(x) = 2r(x+1) - 1: the point (2, -1) on r moves + to (1, -3) on m. + For n(x) = \frac{1}{2}s(x-2) + 2: the point (-2, -3) on s + moves to (0, \frac{1}{2}) on n. +

+ + + + + + +

A parent function r(x) along with a transformation m(x) which shifts left 1 unit, stretches vertical heights by a factor of 2, and shifts down by 1 unit. +

+
+ + + + + +

A parent function s(x) along with a transformation n(x) which shifts right 2 units, compresses vertical heights by a factor of 1/2, and shifts up by 2 units. +

+
+ + + +
+
+
+ + +

+ Describe in words how the function y = m(x) = 2r(x+1)-1 is the result of three elementary transformations of y = r(x). Does the order in which these transformations occur matter? Why or why not? +

+
+ +

+ The function m(x) = 2r(x+1) - 1 results from three elementary + transformations of r: a horizontal shift left 1 unit (replacing x + with x+1), a vertical stretch by a factor of 2 (multiplying by 2), and + a vertical shift down 1 unit (subtracting 1). + The vertical stretch and the horizontal shift may be applied in either order, + but both must be applied before the vertical shift. +

+
+ +

+ The function m(x) = 2r(x+1) - 1 results from three elementary + transformations of r: a horizontal shift left 1 unit (replacing x + with x+1), a vertical stretch by a factor of 2 (multiplying by 2), and + a vertical shift down 1 unit (subtracting 1). + The vertical stretch and the horizontal shift may be applied in either order, + but both must be applied before the vertical shift. +

+
+
+
+
diff --git a/source/activities/act-circular-sine-cosine-computing.xml b/source/activities/act-circular-sine-cosine-computing.xml index 2f3c27eb..68a8aff9 100755 --- a/source/activities/act-circular-sine-cosine-computing.xml +++ b/source/activities/act-circular-sine-cosine-computing.xml @@ -1,137 +1,153 @@ - - - - - - - - - - - - - - - - -

- Answer the following questions exactly wherever possible. If you estimate a value, do so to at least 5 decimal places of accuracy. -

-

- - - -

- The x coordinate of the point on the unit circle that lies in the third quadrant and whose y-coordinate is y = -\frac{3}{4}. -

- - - - -

- Using x^2 + \left(-\frac{3}{4}\right)^2 = 1, we solve for x = -\frac{\sqrt{7}}{4} \approx -0.66143 (negative since in Quadrant III). -

-
- - - -

- The y-coordinate of the point on the unit circle generated by a central angle opening counterclockwise with one side on the positive x-axis that measures t = 2 radians. -

-
- - - -

- \sin(2 \text{ rad}) \approx 0.90929. -

-
-
- - -

- The x-coordinate of the point on the unit circle generated by a central angle with one side on the positive x-axis that measures t = -3.05 radians. (With the negative radian measure, we view the angle as opening clockwise from its initial side on the positive x-axis.) -

-
- - - -

- \cos(-3.05 \text{ rad}) \approx -0.99581. -

-
-
- - -

- The value of \cos(t) where t is an angle in Quadrant II that satisfies \sin(t) = \frac{1}{2}. -

-
- - - -

- If \sin(t) = \frac{1}{2} and t is in Quadrant II, then t = \frac{5\pi}{6} and \cos(t) = -\frac{\sqrt{3}}{2}. -

-
-
- - -

- The value of \sin(t) where t is an angle in Quadrant III for which \cos(t) = -0.7. -

-
- - - -

- Using \sin^2(t) + \cos^2(t) = 1, we get \sin(t) = -\sqrt{1 - 0.49} = -\sqrt{0.51} \approx -0.71414 (negative since in Quadrant III). -

-
-
- - -

- The average rate of change of f(t) = \sin(t) on the intervals [0.1,0.2] and [0.8,0.9]. -

-
- - - -

- - AV_{[0.1,0.2]} = \frac{\sin(0.2) - \sin(0.1)}{0.2 - 0.1} \approx \frac{0.19867 - 0.09983}{0.1} \approx 0.98836 - - - AV_{[0.8,0.9]} = \frac{\sin(0.9) - \sin(0.8)}{0.9 - 0.8} \approx \frac{0.78333 - 0.71736}{0.1} \approx 0.65971 - -

-
-
- - -

- The average rate of change of g(t) = \cos(t) on the intervals [0.1,0.2] and [0.8,0.9]. -

-
- - - -

- - AV_{[0.1,0.2]} = \frac{\cos(0.2) - \cos(0.1)}{0.2 - 0.1} \approx \frac{0.98007 - 0.99500}{0.1} \approx -0.14938 - - - AV_{[0.8,0.9]} = \frac{\cos(0.9) - \cos(0.8)}{0.9 - 0.8} \approx \frac{0.62161 - 0.69671}{0.1} \approx -0.75097 - -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Answer the following questions exactly wherever possible. If you estimate a value, do so to at least 5 decimal places of accuracy. +

+

+ + + +

+ The x coordinate of the point on the unit circle that lies in the third quadrant and whose y-coordinate is y = -\frac{3}{4}. +

+ + +

x = -\frac{\sqrt{7}}{4}

+ +

+ Using x^2 + \left(-\frac{3}{4}\right)^2 = 1, we solve for x = -\frac{\sqrt{7}}{4} \approx -0.66143 (negative since in Quadrant III). +

+
+ + + +

+ The y-coordinate of the point on the unit circle generated by a central angle opening counterclockwise with one side on the positive x-axis that measures t = 2 radians. +

+
+ +

\sin(2 \text{ rad}) \approx 0.90929

+ +

+ \sin(2 \text{ rad}) \approx 0.90929. +

+
+
+ + +

+ The x-coordinate of the point on the unit circle generated by a central angle with one side on the positive x-axis that measures t = -3.05 radians. (With the negative radian measure, we view the angle as opening clockwise from its initial side on the positive x-axis.) +

+
+ + +

+ \cos(-3.05 \text{ rad}) \approx -0.99581. +

+
+ +

+ \cos(-3.05 \text{ rad}) \approx -0.99581. +

+
+
+ + +

+ The value of \cos(t) where t is an angle in Quadrant II that satisfies \sin(t) = \frac{1}{2}. +

+
+ +

\cos(t) = -\frac{\sqrt{3}}{2}

+ +

+ If \sin(t) = \frac{1}{2} and t is in Quadrant II, then t = \frac{5\pi}{6} and \cos(t) = -\frac{\sqrt{3}}{2}. +

+
+
+ + +

+ The value of \sin(t) where t is an angle in Quadrant III for which \cos(t) = -0.7. +

+
+ +

\sin(t) = -\sqrt{0.51} \approx -0.71414

+ +

+ Using \sin^2(t) + \cos^2(t) = 1, we get \sin(t) = -\sqrt{1 - 0.49} = -\sqrt{0.51} \approx -0.71414 (negative since in Quadrant III). +

+
+
+ + +

+ The average rate of change of f(t) = \sin(t) on the intervals [0.1,0.2] and [0.8,0.9]. +

+
+ + +

+ + AV_{[0.1,0.2]} \approx 0.98836 + + + AV_{[0.8,0.9]} \approx 0.65971 + +

+
+ +

+ + AV_{[0.1,0.2]} = \frac{\sin(0.2) - \sin(0.1)}{0.2 - 0.1} \approx \frac{0.19867 - 0.09983}{0.1} \approx 0.98836 + + + AV_{[0.8,0.9]} = \frac{\sin(0.9) - \sin(0.8)}{0.9 - 0.8} \approx \frac{0.78333 - 0.71736}{0.1} \approx 0.65971 + +

+
+
+ + +

+ The average rate of change of g(t) = \cos(t) on the intervals [0.1,0.2] and [0.8,0.9]. +

+
+ + +

+ + AV_{[0.1,0.2]} \approx -0.14938 + + + AV_{[0.8,0.9]} \approx -0.75097 + +

+
+ +

+ + AV_{[0.1,0.2]} = \frac{\cos(0.2) - \cos(0.1)}{0.2 - 0.1} \approx \frac{0.98007 - 0.99500}{0.1} \approx -0.14938 + + + AV_{[0.8,0.9]} = \frac{\cos(0.9) - \cos(0.8)}{0.9 - 0.8} \approx \frac{0.62161 - 0.69671}{0.1} \approx -0.75097 + +

+
+
+
+
diff --git a/source/activities/act-circular-sine-cosine-incr-CCU.xml b/source/activities/act-circular-sine-cosine-incr-CCU.xml index c8c5b2aa..2f2154ab 100755 --- a/source/activities/act-circular-sine-cosine-incr-CCU.xml +++ b/source/activities/act-circular-sine-cosine-incr-CCU.xml @@ -1,131 +1,129 @@ - - - - - - - - - - - - - - - - -

- Use Figure 2.3.12 in the text (which plots the sine and cosine functions ont the same axes) to assist in answering the following questions. -

-

- - - -

- Give an example of the largest interval you can find on which - f(t) = \sin(t) is decreasing. -

- - - - -

- The function f(t) = \sin(t) is decreasing on the interval \left[\frac{\pi}{2}, \frac{3\pi}{2}\right]. -

-
- - - -

- Give an example of the largest interval you can find on which - f(t) = \sin(t) is decreasing and concave down. -

-
- - - -

- The function f(t) = \sin(t) is decreasing and concave down on the interval \left[\frac{\pi}{2}, \pi\right]. -

-
-
- - -

- Give an example of the largest interval you can find on which - g(t) = \cos(t) is increasing. -

-
- - - -

- The function g(t) = \cos(t) is increasing on the interval [\pi, 2\pi]. -

-
-
- - -

- Give an example of the largest interval you can find on which - g(t) = \cos(t) is increasing and concave up. -

-
- - - -

- The function g(t) = \cos(t) is increasing and concave up on the interval \left[\pi, \frac{3\pi}{2}\right]. -

-
-
- - -

- Without doing any computation, on which interval is the average rate of change of g(t) = \cos(t) greater: [\pi, \pi+0.1] or [\frac{3\pi}{2}, \frac{3\pi}{2} + 0.1]? Why? -

-
- - - -

- The average rate of change of g(t) = \cos(t) is greater on the interval \left[\frac{3\pi}{2}, \frac{3\pi}{2} + 0.1\right] because g(t) has a steeper slope near \frac{3\pi}{2} (a zero crossing) than near \pi (a minimum). -

-
-
- - -

- In general, how would you characterize the locations on the sine and cosine graphs where the functions are increasing or decreasingly most rapidly? -

-
- - - -

- The most rapid average rates of change on both graphs occur near the zero crossing points (where the function crosses the midline). -

-
-
- - -

- Thinking from the perspective of the unit circle, for which quadrants of the x-y plane is \cos(t) negative for an angle t that lies in that quadrant? -

-
- - - -

- The function g(t) = \cos(t) is negative on quadrants II and III. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Use Figure 2.3.12 in the text (which plots the sine and cosine functions ont the same axes) to assist in answering the following questions. +

+

+ + + +

+ Give an example of the largest interval you can find on which + f(t) = \sin(t) is decreasing. +

+ + +

\left[\frac{\pi}{2}, \frac{3\pi}{2}\right]

+ +

+ The function f(t) = \sin(t) is decreasing on the interval \left[\frac{\pi}{2}, \frac{3\pi}{2}\right]. +

+
+ + + +

+ Give an example of the largest interval you can find on which + f(t) = \sin(t) is decreasing and concave down. +

+
+ +

\left[\frac{\pi}{2}, \pi\right]

+ +

+ The function f(t) = \sin(t) is decreasing and concave down on the interval \left[\frac{\pi}{2}, \pi\right]. +

+
+
+ + +

+ Give an example of the largest interval you can find on which + g(t) = \cos(t) is increasing. +

+
+ +

[\pi, 2\pi]

+ +

+ The function g(t) = \cos(t) is increasing on the interval [\pi, 2\pi]. +

+
+
+ + +

+ Give an example of the largest interval you can find on which + g(t) = \cos(t) is increasing and concave up. +

+
+ +

\left[\pi, \frac{3\pi}{2}\right]

+ +

+ The function g(t) = \cos(t) is increasing and concave up on the interval \left[\pi, \frac{3\pi}{2}\right]. +

+
+
+ + +

+ Without doing any computation, on which interval is the average rate of change of g(t) = \cos(t) greater: [\pi, \pi+0.1] or [\frac{3\pi}{2}, \frac{3\pi}{2} + 0.1]? Why? +

+
+ +

\left[\frac{3\pi}{2}, \frac{3\pi}{2} + 0.1\right]

+ +

+ The average rate of change of g(t) = \cos(t) is greater on the interval \left[\frac{3\pi}{2}, \frac{3\pi}{2} + 0.1\right] because g(t) has a steeper slope near \frac{3\pi}{2} (a zero crossing) than near \pi (a minimum). +

+
+
+ + +

+ In general, how would you characterize the locations on the sine and cosine graphs where the functions are increasing or decreasingly most rapidly? +

+
+ + +

+ The most rapid average rates of change on both graphs occur near the zero crossing points (where the function crosses the midline). +

+
+ +

+ The most rapid average rates of change on both graphs occur near the zero crossing points (where the function crosses the midline). +

+
+
+ + +

+ Thinking from the perspective of the unit circle, for which quadrants of the x-y plane is \cos(t) negative for an angle t that lies in that quadrant? +

+
+ +

quadrants II and III

+ +

+ The function g(t) = \cos(t) is negative on quadrants II and III. +

+
+
+
+
diff --git a/source/activities/act-circular-sine-cosine.xml b/source/activities/act-circular-sine-cosine.xml index edf94b91..a04f4bd8 100755 --- a/source/activities/act-circular-sine-cosine.xml +++ b/source/activities/act-circular-sine-cosine.xml @@ -1,263 +1,344 @@ - - - - - - - - - - - - - - - - -

- Let k = g(t) be the function that tracks the x-coordinate of a point traversing the unit circle counterclockwise from (1,0). That is, g(t) = \cos(t). Use the information we know about the unit circle that is summarized in Figure 2.3.1 (with 16 labeled special points) to respond to the following questions. -

-

- - - -

- What is the exact value of \cos(\frac{\pi}{6})? of \cos(\frac{5\pi}{6})? \cos(-\frac{\pi}{3})? -

- - - - -

- \cos\left(\frac{\pi}{6}\right) = \frac{\sqrt{3}}{2}; \cos\left(\frac{5\pi}{6}\right) = -\frac{\sqrt{3}}{2}; \cos\left(-\frac{\pi}{3}\right) = \frac{1}{2}. -

-
- - - -

- Complete the following table with the exact values of k that correspond to the stated inputs. -

- - - - - t - - - 0 - - - \frac{\pi}{6} - - - \frac{\pi}{4} - - - \frac{\pi}{3} - - - \frac{\pi}{2} - - - \frac{2\pi}{3} - - - \frac{3\pi}{4} - - - \frac{5\pi}{6} - - - \pi - - - - - k - - - - - - - - - - - - - - - - - t - - - \pi - - - \frac{7\pi}{6} - - - \frac{5\pi}{4} - - - \frac{4\pi}{3} - - - \frac{3\pi}{2} - - - \frac{5\pi}{3} - - - \frac{7\pi}{4} - - - \frac{11\pi}{6} - - - 2\pi - - - - - k - - - - - - - - - - - - - -
- - - - - - t - 0 - \frac{\pi}{6} - \frac{\pi}{4} - \frac{\pi}{3} - \frac{\pi}{2} - \frac{2\pi}{3} - \frac{3\pi}{4} - \frac{5\pi}{6} - \pi - - - k - 1 - \frac{\sqrt{3}}{2} - \frac{\sqrt{2}}{2} - \frac{1}{2} - 0 - -\frac{1}{2} - -\frac{\sqrt{2}}{2} - -\frac{\sqrt{3}}{2} - -1 - - - - t - \pi - \frac{7\pi}{6} - \frac{5\pi}{4} - \frac{4\pi}{3} - \frac{3\pi}{2} - \frac{5\pi}{3} - \frac{7\pi}{4} - \frac{11\pi}{6} - 2\pi - - - k - -1 - -\frac{\sqrt{3}}{2} - -\frac{\sqrt{2}}{2} - -\frac{1}{2} - 0 - \frac{1}{2} - \frac{\sqrt{2}}{2} - \frac{\sqrt{3}}{2} - 1 - - - -
- - -

- On the axes provided in the following figure, sketch an accurate graph of k = \cos(t). Label the exact location of several key points on the curve. -

- -

ADD ALT TEXT TO THIS IMAGE

- -
- - - - - -
- - -

- What is the exact value of \cos( \frac{11\pi}{4} )? of \cos( \frac{14\pi}{3} )? -

-
- - - -

- \cos\left(\frac{11\pi}{4}\right) = \cos\left(\frac{3\pi}{4}\right) = -\frac{\sqrt{2}}{2}; and \cos\left(\frac{14\pi}{3}\right) = \cos\left(\frac{2\pi}{3}\right) = -\frac{1}{2}. -

-
-
- - -

- Give four different values of t for which \cos(t) = -\frac{\sqrt{3}}{2}. -

-
- - - -

- \cos(t) = -\frac{\sqrt{3}}{2} for t = \frac{5\pi}{6},\ \frac{7\pi}{6},\ \frac{17\pi}{6},\ \frac{19\pi}{6}. -

-
-
- - -

- How is the graph of k = \cos(t) different from the graph of h = \sin(t)? How are the graphs similar? -

-
- - - -

- The graphs of k = \cos(t) and h = \sin(t) are actually identical, just with a horizontal shift of \pm\frac{\pi}{2}. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Let k = g(t) be the function that tracks the x-coordinate of a point traversing the unit circle counterclockwise from (1,0). That is, g(t) = \cos(t). Use the information we know about the unit circle that is summarized in Figure 2.3.1 (with 16 labeled special points) to respond to the following questions. +

+

+ + + +

+ What is the exact value of \cos(\frac{\pi}{6})? of \cos(\frac{5\pi}{6})? \cos(-\frac{\pi}{3})? +

+ + + +

+ \cos\left(\frac{\pi}{6}\right) = \frac{\sqrt{3}}{2}; \cos\left(\frac{5\pi}{6}\right) = -\frac{\sqrt{3}}{2}; \cos\left(-\frac{\pi}{3}\right) = \frac{1}{2}. +

+
+ +

+ \cos\left(\frac{\pi}{6}\right) = \frac{\sqrt{3}}{2}; \cos\left(\frac{5\pi}{6}\right) = -\frac{\sqrt{3}}{2}; \cos\left(-\frac{\pi}{3}\right) = \frac{1}{2}. +

+
+ + + +

+ Complete the following table with the exact values of k that correspond to the stated inputs. +

+ + + + + t + + + 0 + + + \frac{\pi}{6} + + + \frac{\pi}{4} + + + \frac{\pi}{3} + + + \frac{\pi}{2} + + + \frac{2\pi}{3} + + + \frac{3\pi}{4} + + + \frac{5\pi}{6} + + + \pi + + + + + k + + + + + + + + + + + + + + + + + t + + + \pi + + + \frac{7\pi}{6} + + + \frac{5\pi}{4} + + + \frac{4\pi}{3} + + + \frac{3\pi}{2} + + + \frac{5\pi}{3} + + + \frac{7\pi}{4} + + + \frac{11\pi}{6} + + + 2\pi + + + + + k + + + + + + + + + + + + + +
+ + + + + t + 0 + \frac{\pi}{6} + \frac{\pi}{4} + \frac{\pi}{3} + \frac{\pi}{2} + \frac{2\pi}{3} + \frac{3\pi}{4} + \frac{5\pi}{6} + \pi + + + k + 1 + \frac{\sqrt{3}}{2} + \frac{\sqrt{2}}{2} + \frac{1}{2} + 0 + -\frac{1}{2} + -\frac{\sqrt{2}}{2} + -\frac{\sqrt{3}}{2} + -1 + + + + t + \pi + \frac{7\pi}{6} + \frac{5\pi}{4} + \frac{4\pi}{3} + \frac{3\pi}{2} + \frac{5\pi}{3} + \frac{7\pi}{4} + \frac{11\pi}{6} + 2\pi + + + k + -1 + -\frac{\sqrt{3}}{2} + -\frac{\sqrt{2}}{2} + -\frac{1}{2} + 0 + \frac{1}{2} + \frac{\sqrt{2}}{2} + \frac{\sqrt{3}}{2} + 1 + + + + + + + t + 0 + \frac{\pi}{6} + \frac{\pi}{4} + \frac{\pi}{3} + \frac{\pi}{2} + \frac{2\pi}{3} + \frac{3\pi}{4} + \frac{5\pi}{6} + \pi + + + k + 1 + \frac{\sqrt{3}}{2} + \frac{\sqrt{2}}{2} + \frac{1}{2} + 0 + -\frac{1}{2} + -\frac{\sqrt{2}}{2} + -\frac{\sqrt{3}}{2} + -1 + + + + t + \pi + \frac{7\pi}{6} + \frac{5\pi}{4} + \frac{4\pi}{3} + \frac{3\pi}{2} + \frac{5\pi}{3} + \frac{7\pi}{4} + \frac{11\pi}{6} + 2\pi + + + k + -1 + -\frac{\sqrt{3}}{2} + -\frac{\sqrt{2}}{2} + -\frac{1}{2} + 0 + \frac{1}{2} + \frac{\sqrt{2}}{2} + \frac{\sqrt{3}}{2} + 1 + + + +
+ + +

+ On the axes provided in the following figure, sketch an accurate graph of k = \cos(t). Label the exact location of several key points on the curve. +

+ + + + + +

Blank axes for graphing \cos(t)

+
+ + + +
+ + + + + + +

a plot of \cos(t)

+ +
+ + + + + +

a plot of \cos(t)

+ +
+
+ + +

+ What is the exact value of \cos( \frac{11\pi}{4} )? of \cos( \frac{14\pi}{3} )? +

+
+ + +

+ \cos\left(\frac{11\pi}{4}\right) = \cos\left(\frac{3\pi}{4}\right) = -\frac{\sqrt{2}}{2}; and \cos\left(\frac{14\pi}{3}\right) = \cos\left(\frac{2\pi}{3}\right) = -\frac{1}{2}. +

+
+ +

+ \cos\left(\frac{11\pi}{4}\right) = \cos\left(\frac{3\pi}{4}\right) = -\frac{\sqrt{2}}{2}; and \cos\left(\frac{14\pi}{3}\right) = \cos\left(\frac{2\pi}{3}\right) = -\frac{1}{2}. +

+
+
+ + +

+ Give four different values of t for which \cos(t) = -\frac{\sqrt{3}}{2}. +

+
+ + +

+ \cos(t) = -\frac{\sqrt{3}}{2} for t = \frac{5\pi}{6},\ \frac{7\pi}{6},\ \frac{17\pi}{6},\ \frac{19\pi}{6}. +

+
+ +

+ \cos(t) = -\frac{\sqrt{3}}{2} for t = \frac{5\pi}{6},\ \frac{7\pi}{6},\ \frac{17\pi}{6},\ \frac{19\pi}{6}. +

+
+
+ + +

+ How is the graph of k = \cos(t) different from the graph of h = \sin(t)? How are the graphs similar? +

+
+ + +

+ The graphs of k = \cos(t) and h = \sin(t) are the same after a horizontal shift of \frac{\pi}{2}. +

+
+ +

+ The graphs of k = \cos(t) and h = \sin(t) are actually identical, just with a horizontal shift of \frac{\pi}{2}. +

+
+
+
+
diff --git a/source/activities/act-circular-sinusoidal-horiz-stretch.xml b/source/activities/act-circular-sinusoidal-horiz-stretch.xml index dfd9dc89..03002145 100755 --- a/source/activities/act-circular-sinusoidal-horiz-stretch.xml +++ b/source/activities/act-circular-sinusoidal-horiz-stretch.xml @@ -1,102 +1,139 @@ - - - - - - - - - - - - - - - - -

- Consider the functions f and g given in the following figures. -

- - -

ADD ALT TEXT TO THIS IMAGE

- -

ADD ALT TEXT TO THIS IMAGE

- -
-

- - - -

- On the same axes as the plot of y = f(t), sketch the following graphs: y = h(t) = f(\frac{1}{3}t) and y = j(t) = f(4t). Be sure to label several points on each of f, h, and j with arrows to indicate their correspondence. In addition, write one sentence to explain the overall transformations that have resulted in h and j from f. -

- - - - -

- The function h(t) = f\!\left(\frac{1}{3}t\right) represents a horizontal scaling of f by a factor of 3 (stretching). The function j(t) = f(4t) represents a horizontal scaling by a factor of \frac{1}{4} (compression). -

- -
- - - -

- On the same axes as the plot of y = g(t), sketch the following graphs: y = k(t) = g(2t) and y = m(t) = g(\frac{1}{2}t). Be sure to label several points on each of g, k, and m with arrows to indicate their correspondence. In addition, write one sentence to explain the overall transformations that have resulted in k and m from g. -

-
- - - -

- The function k(t) = g(2t) represents a horizontal scaling of g by a factor of \frac{1}{2} (compression). The function m(t) = g\!\left(\frac{1}{2}t\right) represents a horizontal scaling by a factor of 2 (stretching). -

- -
-
- - -

- On the additional copies of the two figures below, sketch the graphs of the following transformed functions: y = r(t) = 2f(\frac{1}{2}t) (at left) and y = s(t) = \frac{1}{2}g(2t). As above, be sure to label several points on each graph and indicate their correspondence to points on the original parent function. -

- -

ADD ALT TEXT TO THIS IMAGE

-

ADD ALT TEXT TO THIS IMAGE

-
-
- - - -

- The function r(t) = 2f\!\left(\frac{1}{2}t\right) applies both a horizontal scaling by a factor of 2 and a vertical scaling by a factor of 2. The function s(t) = \frac{1}{2}g(2t) applies both a horizontal scaling by a factor of \frac{1}{2} and a vertical scaling by a factor of \frac{1}{2}. -

- -
-
- - -

- Describe in words how the function y = r(t) = 2f(\frac{1}{2}t) is the result of composing two elementary transformations of y = f(t). Does the order in which these transformations are composed matter? Why or why not? -

-
- - - -

- The function r(t) = 2f\!\left(\frac{1}{2}t\right) is both a vertical and a horizontal scaling. The order does not matter: applying the horizontal stretch by 2 and then the vertical stretch by 2 produces the same result as applying them in the opposite order. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Consider the functions f and g given in the following figures. +

+ + + + + + + +

A parent function f(x)

+ + + + + + +

A parent function g(x)

+ +
+

+ + + +

+ On the same axes as the plot of y = f(t), sketch the following graphs: y = h(t) = f(\frac{1}{3}t) and y = j(t) = f(4t). Be sure to label several points on each of f, h, and j with arrows to indicate their correspondence. In addition, write one sentence to explain the overall transformations that have resulted in h and j from f. +

+ + + +

+ The function h(t) = f\!\left(\frac{1}{3}t\right) represents a horizontal scaling of f by a factor of 3 (stretching). The function j(t) = f(4t) represents a horizontal scaling by a factor of \frac{1}{4} (compression). +

+ +

Graphs of two horizontal scaling functions of f(x)

+ +
+ +

+ The function h(t) = f\!\left(\frac{1}{3}t\right) represents a horizontal scaling of f by a factor of 3 (stretching). The function j(t) = f(4t) represents a horizontal scaling by a factor of \frac{1}{4} (compression). +

+ +

Graphs of two horizontal scaling functions of f(x)

+ +
+ + + +

+ On the same axes as the plot of y = g(t), sketch the following graphs: y = k(t) = g(2t) and y = m(t) = g(\frac{1}{2}t). Be sure to label several points on each of g, k, and m with arrows to indicate their correspondence. In addition, write one sentence to explain the overall transformations that have resulted in k and m from g. +

+
+ + +

+ The function k(t) = g(2t) represents a horizontal scaling of g by a factor of \frac{1}{2} (compression). The function m(t) = g\!\left(\frac{1}{2}t\right) represents a horizontal scaling by a factor of 2 (stretching). +

+ +

Graphs of two horizontal scaling functions of g(x)

+ +
+ +

+ The function k(t) = g(2t) represents a horizontal scaling of g by a factor of \frac{1}{2} (compression). The function m(t) = g\!\left(\frac{1}{2}t\right) represents a horizontal scaling by a factor of 2 (stretching). +

+ +

Graphs of two horizontal scaling functions of g(x)

+ +
+
+ + +

+ On the additional copies of the two figures below, sketch the graphs of the following transformed functions: y = r(t) = 2f(\frac{1}{2}t) (at left) and y = s(t) = \frac{1}{2}g(2t). As above, be sure to label several points on each graph and indicate their correspondence to points on the original parent function. +

+ + + + + + +

A parent function f(x)

+ + + + + +

A parent function g(x)

+
+
+ + +

+ The function r(t) = 2f\!\left(\frac{1}{2}t\right) applies both a horizontal scaling by a factor of 2 and a vertical scaling by a factor of 2. The function s(t) = \frac{1}{2}g(2t) applies both a horizontal scaling by a factor of \frac{1}{2} and a vertical scaling by a factor of \frac{1}{2}. +

+

Graphs of transformations which scale both horizontally and vertically.

+
+ +

+ The function r(t) = 2f\!\left(\frac{1}{2}t\right) applies both a horizontal scaling by a factor of 2 and a vertical scaling by a factor of 2. The function s(t) = \frac{1}{2}g(2t) applies both a horizontal scaling by a factor of \frac{1}{2} and a vertical scaling by a factor of \frac{1}{2}. +

+

Graphs of transformations which scale both horizontally and vertically.

+
+
+ + +

+ Describe in words how the function y = r(t) = 2f(\frac{1}{2}t) is the result of composing two elementary transformations of y = f(t). Does the order in which these transformations are composed matter? Why or why not? +

+
+ +

The function r(t) = 2f\!\left(\frac{1}{2}t\right) is both a vertical and a horizontal scaling. The order does not matter

+ +

+ The function r(t) = 2f\!\left(\frac{1}{2}t\right) is both a vertical and a horizontal scaling. The order does not matter: applying the horizontal stretch by 2 and then the vertical stretch by 2 produces the same result as applying them in the opposite order. +

+
+
+
+
diff --git a/source/activities/act-circular-sinusoidal-model.xml b/source/activities/act-circular-sinusoidal-model.xml index 42a47e5b..1811dbde 100755 --- a/source/activities/act-circular-sinusoidal-model.xml +++ b/source/activities/act-circular-sinusoidal-model.xml @@ -1,43 +1,49 @@ - - - - - - - - - - - - - - - - -

- Consider a spring-mass system where the weight is hanging from the ceiling in such a way that the following is known: - we let d(t) denote the distance from the ceiling to the weight at time t in seconds and know that the weight oscillates periodically with a minimum value of - 1.5 feet and a maximum value of 4 feet, - with a period of 3, - and you know d(0.5) = 2.75 and d\left(1.25\right) = 4. -

-

- State the midline, amplitude, range, and an anchor point for the function, and hence determine a formula for d(t) in the form a\cos(k(t-b))+c or a\sin(k(t-b))+c. - Show your work and thinking, - and use Desmos appropriately to check that your formula generates the desired behavior. -

-
- -

- - -

- The midline is c = \frac{1.5+4}{2} = 2.75 feet, the amplitude is a = \frac{4-1.5}{2} = 1.25 feet, the range is [1.5,4], and the anchor point is at approximately (0, 1.67). Since d(1.25) = 4 is the maximum and the period is 3, we have k = \frac{2\pi}{3} and b = 1.25. The formula is - - d(t) = 1.25\cos\!\left(\frac{2\pi}{3}(t - 1.25)\right) + 2.75. - -

- - -
-
+ + + + + + + + + + + + + + + + +

+ Consider a spring-mass system where the weight is hanging from the ceiling in such a way that the following is known: + we let d(t) denote the distance from the ceiling to the weight at time t in seconds and know that the weight oscillates periodically with a minimum value of + 1.5 feet and a maximum value of 4 feet, + with a period of 3, + and you know d(0.5) = 2.75 and d\left(1.25\right) = 4. +

+

+ State the midline, amplitude, range, and an anchor point for the function, and hence determine a formula for d(t) in the form a\cos(k(t-b))+c or a\sin(k(t-b))+c. + Show your work and thinking, + and use Desmos appropriately to check that your formula generates the desired behavior. +

+
+ +

+ The midline is c = \frac{1.5+4}{2} = 2.75 feet, the amplitude is a = \frac{4-1.5}{2} = 1.25 feet, the range is [1.5,4], and the anchor point is at approximately (0, 1.67). The formula is + + d(t) = 1.25\cos\!\left(\frac{2\pi}{3}(t - 1.25)\right) + 2.75 + . +

+

Graph of d(t)

+
+ +

+ The midline is c = \frac{1.5+4}{2} = 2.75 feet, the amplitude is a = \frac{4-1.5}{2} = 1.25 feet, the range is [1.5,4], and the anchor point is at approximately (0, 1.67). Since d(1.25) = 4 is the maximum and the period is 3, we have k = \frac{2\pi}{3} and b = 1.25. The formula is + + d(t) = 1.25\cos\!\left(\frac{2\pi}{3}(t - 1.25)\right) + 2.75. + +

+

Graph of d(t)

+
+
+
diff --git a/source/activities/act-circular-sinusoidal-oscillator.xml b/source/activities/act-circular-sinusoidal-oscillator.xml index 04d5232d..9ee6e1ef 100755 --- a/source/activities/act-circular-sinusoidal-oscillator.xml +++ b/source/activities/act-circular-sinusoidal-oscillator.xml @@ -1,33 +1,34 @@ - - - - - - - - - - - - - - - - -

- Consider a spring-mass system where a weight is resting on a frictionless table. We let d(t) denote the distance from the wall (where the spring is attached) to the weight at time t in seconds and know that the weight oscillates periodically with a minimum value of 2 feet and a maximum value of 7 feet with a period of 2 \pi. We also know that d(0) = 4.5 and d\left(\frac{\pi}{2}\right) = 2. -

-

- Determine a formula for d(t) in the form d(t) = a\cos(t-b)+c or d(t) = a\sin(t-b)+c. Is it possible to find two different formulas that work? For any formula you find, identify the anchor point. -

-
- -

- - -

- Note, the measurements of the system are physical, so exact values are not appropriate. The spring-mass system may be described in many ways. One formula is d(t) = -2.5\sin(t) + 4.5, and has an anchor point with coordinates (0, 4.5), corresponding to the starting position of the mass. Another formula with the same anchor point is d(t) = 2.5\cos\!\left(t + \frac{\pi}{2}\right) + 4.5. -

- -
-
+ + + + + + + + + + + + + + + + +

+ Consider a spring-mass system where a weight is resting on a frictionless table. We let d(t) denote the distance from the wall (where the spring is attached) to the weight at time t in seconds and know that the weight oscillates periodically with a minimum value of 2 feet and a maximum value of 7 feet with a period of 2 \pi. We also know that d(0) = 4.5 and d\left(\frac{\pi}{2}\right) = 2. +

+

+ Determine a formula for d(t) in the form d(t) = a\cos(t-b)+c or d(t) = a\sin(t-b)+c. Is it possible to find two different formulas that work? For any formula you find, identify the anchor point. +

+
+ +

One formula is d(t) = -2.5\sin(t) + 4.5, which has an anchor point with coordinates (0, 4.5). Another formula with the same anchor point is d(t) = 2.5\cos\left(t + \frac{\pi}{2}\right) + 4.5. +

+
+ +

+ Note, the measurements of the system are physical, so exact values are not appropriate. The spring-mass system may be described in many ways. One formula is d(t) = -2.5\sin(t) + 4.5, and has an anchor point with coordinates (0, 4.5), corresponding to the starting position of the mass. Another formula with the same anchor point is d(t) = 2.5\cos\!\left(t + \frac{\pi}{2}\right) + 4.5. +

+
+
+
diff --git a/source/activities/act-circular-sinusoidal-period.xml b/source/activities/act-circular-sinusoidal-period.xml index 82c5eaf7..4469f660 100755 --- a/source/activities/act-circular-sinusoidal-period.xml +++ b/source/activities/act-circular-sinusoidal-period.xml @@ -1,99 +1,113 @@ - - - - - - - - - - - - - - - - -

- Determine the exact period, amplitude, and midline of each of the following functions. In addition, state the range of each function, any horizontal shift that has been introduced to the graph, and identify an anchor point. Make your conclusions without consulting Desmos, and then use the program to check your work. -

-

- - - -

- p(x) = \sin(10x) + 2 -

- - - - -

- Period \frac{\pi}{5}, amplitude 1, midline y=2, range [1,3], no horizontal shift, anchor point (0,2). -

-
- - - -

- q(x) = -3\cos(0.25x) - 4 -

-
- - - -

- Period 8\pi, amplitude 3 (with reflection), midline y=-4, range [-7,-1], no horizontal shift, anchor point (0,-7). -

-
-
- - -

- r(x) = 2\sin\left( \frac{\pi}{4} x\right) + 5 -

-
- - - -

- Period 8, amplitude 2, midline y=5, range [3,7], no horizontal shift, anchor point (0,5). -

-
-
- - -

- w(x) = 2\cos\left( \frac{\pi}{2} (x-3) \right) + 5 -

-
- - - -

- Period 4, amplitude 2, midline y=5, range [3,7], horizontal shift 3 units to the right, anchor point (0,5). -

-
-
- - -

- u(x) = -0.25\sin\left(3x-6\right) + 5 -

-
- - - -

- Note that u(x) = -0.25\sin(3(x-2)) + 5. Period \frac{2\pi}{3}, amplitude 0.25, midline y=5, range [4.75,5.25], horizontal shift 2 units to the right. The anchor point is at approximately (0, 4.93), since u(0) = -0.25\sin(-6)+5 is not a convenient exact value. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Determine the exact period, amplitude, and midline of each of the following functions. In addition, state the range of each function, any horizontal shift that has been introduced to the graph, and identify an anchor point. Make your conclusions without consulting Desmos, and then use the program to check your work. +

+

+ + + +

+ p(x) = \sin(10x) + 2 +

+ + + +

+ Period \frac{\pi}{5}, amplitude 1, midline y=2, range [1,3], no horizontal shift, anchor point (0,2). +

+
+ +

+ Period \frac{\pi}{5}, amplitude 1, midline y=2, range [1,3], no horizontal shift, anchor point (0,2). +

+
+ + + +

+ q(x) = -3\cos(0.25x) - 4 +

+
+ + +

+ Period 8\pi, amplitude 3 (with reflection), midline y=-4, range [-7,-1], no horizontal shift, anchor point (0,-7). +

+
+ +

+ Period 8\pi, amplitude 3 (with reflection), midline y=-4, range [-7,-1], no horizontal shift, anchor point (0,-7). +

+
+
+ + +

+ r(x) = 2\sin\left( \frac{\pi}{4} x\right) + 5 +

+
+ + +

+ Period 8, amplitude 2, midline y=5, range [3,7], no horizontal shift, anchor point (0,5). +

+
+ +

+ Period 8, amplitude 2, midline y=5, range [3,7], no horizontal shift, anchor point (0,5). +

+
+
+ + +

+ w(x) = 2\cos\left( \frac{\pi}{2} (x-3) \right) + 5 +

+
+ + +

+ Period 4, amplitude 2, midline y=5, range [3,7], horizontal shift 3 units to the right, anchor point (0,5). +

+
+ +

+ Period 4, amplitude 2, midline y=5, range [3,7], horizontal shift 3 units to the right, anchor point (0,5). +

+
+
+ + +

+ u(x) = -0.25\sin\left(3x-6\right) + 5 +

+
+ + +

+ Note that u(x) = -0.25\sin(3(x-2)) + 5. Period \frac{2\pi}{3}, amplitude 0.25, midline y=5, range [4.75,5.25], horizontal shift 2 units to the right. The anchor point is at approximately (0, 4.93), since u(0) = -0.25\sin(-6)+5 is not a convenient exact value. +

+
+ +

+ Note that u(x) = -0.25\sin(3(x-2)) + 5. Period \frac{2\pi}{3}, amplitude 0.25, midline y=5, range [4.75,5.25], horizontal shift 2 units to the right. The anchor point is at approximately (0, 4.93), since u(0) = -0.25\sin(-6)+5 is not a convenient exact value. +

+
+
+
+
diff --git a/source/activities/act-circular-traversing-2nd-ex.xml b/source/activities/act-circular-traversing-2nd-ex.xml index 43330b23..2ef46908 100755 --- a/source/activities/act-circular-traversing-2nd-ex.xml +++ b/source/activities/act-circular-traversing-2nd-ex.xml @@ -1,264 +1,321 @@ - - - - - - - - - - - - - - - - -

- Consider the circle pictured in the following figure that is centered at the point (2,2) and that has circumference 8. Assume that we track the y-coordinate (that is, the height, h) of a point that is traversing the circle counterclockwise and that it starts at P_0 as pictured. -

- - -

ADD ALT TEXT TO THIS IMAGE

- -

ADD ALT TEXT TO THIS IMAGE

- -
-

- - - -

- How far along the circle is the point P_1 from P_0? Why? -

- - - - -

- The eight points on the circle are evenly spaced, and the circle has a circumference of 8 units. Thus, the distance between any two sequential points is 1 unit. -

-
- - - -

- Label the subsequent points in the figure P_2, P_3, \ldots as we move counterclockwise around the circle. What is the exact y-coordinate of the point P_2? of P_4? Why? -

-
- - - -

- The point P_2 is directly below the center, at coordinates (2, 2), and thus has a y-coordinate that is one radius less than 2. Using the formula for circumference, C = 2\pi r, the radius must be 8/(2\pi) = \frac{4}{\pi}. Therefore, the y-coordinate of point P_2 is 2 - \frac{4}{\pi} = \frac{2(\pi - 2)}{\pi}. At point P_4, the point is at the same height as the center, so the y-coordinate of P_4 is 2. -

-
-
- - -

- Determine the y-coordinates of the remaining points on the circle (exactly where possible, otherwise approximately) and hence complete the entries in the following table that track the height, h, of the point traversing the circle as a function of distance traveled, d. Note that the d-values in the table correspond to the point traversing the circle more than once. -

- - - - - d - - - 0 - - - 1 - - - 2 - - - 3 - - - 4 - - - 5 - - - 6 - - - 7 - - - 8 - - - 9 - - - 10 - - - 11 - - - 12 - - - 13 - - - 14 - - - 15 - - - 16 - - - - - h - - - 2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -

- The completed table is: -

- - - d - 0123 - 4567 - 8 - - - h - 21.100.731.10 - 22.903.272.90 - 2 - - - - - d - 9101112 - 13141516 - - - h - 1.100.731.102 - 2.903.272.902 - - -
-
- - -

- By plotting the points in the table in part (c) and connecting them in an intuitive way, sketch a graph of h as a function of d over the interval 0 \le d \le 16 on the axes provided in the figure in part (a). Clearly label the scale of your axes and the coordinates of several important points on the curve. -

-
- - - - - -
- - -

- What is similar about your graph in comparison to the one in Figure 2.1.5 in the text? What is different? -

-
- - - -

- The graph has a very similar shape to Figure 2.1.5. This graph is shifted up, shifted to the right, and is compressed horizontally compared to the textbook figure. -

-
-
- - -

- What will be the value of h when d = 51? How about when d = 102? -

-
- - - -

- To find h when d = 51, we use the periodicity of the function: 51 = 4 \cdot 8 + 3, so h(51) = h(3) \approx 1.10. Likewise, h(102) = h(6) \approx 3.27, because 102 = 12 \cdot 8 + 6. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Consider the circle pictured in the following figure that is centered at the point (2,2) and that has circumference 8. Assume that we track the y-coordinate (that is, the height, h) of a point that is traversing the circle counterclockwise and that it starts at P_0 as pictured. +

+ + + + + + +

Circle centered at (2,2) with circumference 8.

+
+ + + + + +

Blank axes for plotting h versus d.

+
+ + + + + +
+

+ + + +

+ How far along the circle is the point P_1 from P_0? Why? +

+ + +

1 unit apart

+
+ +

+ The eight points on the circle are evenly spaced, and the circle has a circumference of 8 units. Thus, the distance between any two sequential points is 1 unit. +

+
+ + + +

+ Label the subsequent points in the figure P_2, P_3, \ldots as we move counterclockwise around the circle. What is the exact y-coordinate of the point P_2? of P_4? Why? +

+
+ +

The y-coordinate of P_2 is 2 - \frac{4}{\pi} = \frac{2(\pi - 2)}{\pi}. The y-coordinate of P_4 is 2.

+
+ +

+ The point P_2 is directly below the center, at coordinates (2, 2), and thus has a y-coordinate that is one radius less than 2. Using the formula for circumference, C = 2\pi r, the radius must be 8/(2\pi) = \frac{4}{\pi}. Therefore, the y-coordinate of point P_2 is 2 - \frac{4}{\pi} = \frac{2(\pi - 2)}{\pi}. At point P_4, the point is at the same height as the center, so the y-coordinate of P_4 is 2. +

+
+
+ + +

+ Determine the y-coordinates of the remaining points on the circle (exactly where possible, otherwise approximately) and hence complete the entries in the following table that track the height, h, of the point traversing the circle as a function of distance traveled, d. Note that the d-values in the table correspond to the point traversing the circle more than once. +

+ + + + + d + + + 0 + + + 1 + + + 2 + + + 3 + + + 4 + + + 5 + + + 6 + + + 7 + + + 8 + + + 9 + + + 10 + + + 11 + + + 12 + + + 13 + + + 14 + + + 15 + + + 16 + + + + + h + + + 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + d + 0123 + 4567 + 8 + + + h + 21.100.731.10 + 22.903.272.90 + 2 + + + + + d + 9101112 + 13141516 + + + h + 1.100.731.102 + 2.903.272.902 + + + + +

+ The completed table is: +

+ + + d + 0123 + 4567 + 8 + + + h + 21.100.731.10 + 22.903.272.90 + 2 + + + + + d + 9101112 + 13141516 + + + h + 1.100.731.102 + 2.903.272.902 + + +
+
+ + +

+ By plotting the points in the table in part (c) and connecting them in an intuitive way, sketch a graph of h as a function of d over the interval 0 \le d \le 16 on the axes provided in the figure in part (a). Clearly label the scale of your axes and the coordinates of several important points on the curve. +

+
+ + + + + + +

Graph of h versus d with points marked at d=2,4,6,8,10,12,14 and 16.

+
+ +
+ + + + + +

Graph of h versus d with points marked at d=2,4,6,8,10,12,14 and 16.

+
+ + +
+
+ + +

+ What is similar about your graph in comparison to the one in Figure 2.1.5 in the text? What is different? +

+
+ +

+ This graph is shifted up, shifted to the right, and is compressed horizontally compared to the textbook figure. +

+
+ +

+ The graph has a very similar shape to Figure 2.1.5. This graph is shifted up, shifted to the right, and is compressed horizontally compared to the textbook figure. +

+
+
+ + +

+ What will be the value of h when d = 51? How about when d = 102? +

+
+ +

h(51) = \approx 1.10 and h(102) = \approx 3.27 +

+
+ +

+ To find h when d = 51, we use the periodicity of the function: 51 = 4 \cdot 8 + 3, so h(51) = h(3) \approx 1.10. Likewise, h(102) = h(6) \approx 3.27, because 102 = 12 \cdot 8 + 6. +

+
+
+
+
diff --git a/source/activities/act-circular-traversing-oscillator-aroc.xml b/source/activities/act-circular-traversing-oscillator-aroc.xml index 378917dd..a9d585a5 100755 --- a/source/activities/act-circular-traversing-oscillator-aroc.xml +++ b/source/activities/act-circular-traversing-oscillator-aroc.xml @@ -1,270 +1,290 @@ - - - - - - - - - - - - - - - - -

- Consider the same setting as Activity: a weight oscillates back and forth on a frictionless table with distance from the wall given by, h = f(t) (in inches) at any given time, t (in seconds). - A graph of f and a table of select values are given below. -

- - - - - t - - - f(t) - - - - - 0.25 - - - 6.087 - - - - - 0.5 - - - 4.464 - - - - - 0.75 - - - 3.381 - - - - - 1 - - - 3.000 - - - - - 1.25 - - - 3.381 - - - - - 1.5 - - - 4.464 - - - - - 1.75 - - - 6.087 - - - - - 2 - - - 8.000 - - - - - - - t - - - f(t) - - - - - 2.25 - - - 9.913 - - - - - 2.5 - - - 11.536 - - - - - 2.75 - - - 12.619 - - - - - 3 - - - 13.000 - - - - - 3.25 - - - 12.619 - - - - - 3.5 - - - 11.536 - - - - - 3.75 - - - 9.913 - - - - - 4 - - - 8.000 - - - -

ADD ALT TEXT TO THIS IMAGE

-
-

- - - -

- Determine AV_{[2,2.25]}, AV_{[2.25,2.5]}, AV_{[2.5,2.75]}, and AV_{[2.75,3]}. What do these four values tell us about how the weight is moving on the interval [2,3]? -

- - - - -

-

    -
  • AV_{[2,2.25]} = \frac{9.913 - 8.00}{2.25 - 2} = \frac{1.913}{0.25} \approx 7.652 inches/sec
  • -
  • AV_{[2.25,2.5]} = \frac{11.536 - 9.913}{2.5 - 2.25} = \frac{1.623}{0.25} \approx 6.492 inches/sec
  • -
  • AV_{[2.5,2.75]} = \frac{12.619 - 11.536}{2.75 - 2.5} = \frac{1.083}{0.25} \approx 4.332 inches/sec
  • -
  • AV_{[2.75,3]} = \frac{13.000 - 12.619}{3.00 - 2.75} = \frac{0.381}{0.25} \approx 1.524 inches/sec
  • -
- The weight is always moving in the same direction (away from the wall) on the interval [2,3], but is slowing down. -

-
- - - -

- Give an example of an interval of length 0.25 units on which f has its most negative average rate of change. Justify your choice. -

-
- - - -

- The greatest (steepest) negative rates of change occur near the midline where the function is decreasing. Examples include intervals such as [0, 0.25], [3.75, 4.00], and [4.00, 4.25]. These occur near the midline where the function crosses from above to below (or vice versa), meaning the weight is moving most rapidly toward the equilibrium position. -

-
-
- - -

- Give an example of the longest interval you can find on which f is decreasing. -

-
- - - -

- The function is decreasing from each peak to each trough. Examples of longest such intervals are [3,5], [7,9], and [11,13]. -

-
-
- - -

- Give an example of an interval on which f is concave up. (Recall that a function is concave up on an interval provided that throughout the interval, the curve bends upward, similar to a parabola that opens up.)

-
- - - -

- The intervals on which f is concave up include [0,2], [4,6], [8,10], and [12,14]. -

-
-
- - -

- On an interval where f is both decreasing and concave down, what does this tell us about how the weight is moving on that interval? For instance, is the weight moving toward or away from the wall? is it speeding up or slowing down? -

-
- - - -

- On intervals that are decreasing and concave up, the weight is moving toward the wall, but at a decreasing rate (slowing down). -

-
-
- - -

- What general conclusions can you make about the average rate of change of a circular function on intervals near its highest or lowest points? about its average rate of change on intervals near the function's midline? -

-
- - - -

- At the highest and lowest points, the function has the smallest rates of change. Near the midline, the function has its greatest rates of change. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Consider the same setting as Activity: a weight oscillates back and forth on a frictionless table with distance from the wall given by, h = f(t) (in inches) at any given time, t (in seconds). + A graph of f and a table of select values are given below. +

+ + + + + t + + + f(t) + + + + + 0.25 + + + 6.087 + + + + + 0.5 + + + 4.464 + + + + + 0.75 + + + 3.381 + + + + + 1 + + + 3.000 + + + + + 1.25 + + + 3.381 + + + + + 1.5 + + + 4.464 + + + + + 1.75 + + + 6.087 + + + + + 2 + + + 8.000 + + + + + + + t + + + f(t) + + + + + 2.25 + + + 9.913 + + + + + 2.5 + + + 11.536 + + + + + 2.75 + + + 12.619 + + + + + 3 + + + 13.000 + + + + + 3.25 + + + 12.619 + + + + + 3.5 + + + 11.536 + + + + + 3.75 + + + 9.913 + + + + + 4 + + + 8.000 + + + +

ADD ALT TEXT TO THIS IMAGE

+
+

+ + + +

+ Determine AV_{[2,2.25]}, AV_{[2.25,2.5]}, AV_{[2.5,2.75]}, and AV_{[2.75,3]}. What do these four values tell us about how the weight is moving on the interval [2,3]? +

+ + + +

+

    +
  • AV_{[2,2.25]} \approx 7.652 inches/sec
  • +
  • AV_{[2.25,2.5]} \approx 6.492 inches/sec
  • +
  • AV_{[2.5,2.75]} \approx 4.332 inches/sec
  • +
  • AV_{[2.75,3]} \approx 1.524 inches/sec
  • +
+ The weight is always moving in the same direction (away from the wall) on the interval [2,3], but is slowing down. +

+
+ +

+

    +
  • AV_{[2,2.25]} = \frac{9.913 - 8.00}{2.25 - 2} = \frac{1.913}{0.25} \approx 7.652 inches/sec
  • +
  • AV_{[2.25,2.5]} = \frac{11.536 - 9.913}{2.5 - 2.25} = \frac{1.623}{0.25} \approx 6.492 inches/sec
  • +
  • AV_{[2.5,2.75]} = \frac{12.619 - 11.536}{2.75 - 2.5} = \frac{1.083}{0.25} \approx 4.332 inches/sec
  • +
  • AV_{[2.75,3]} = \frac{13.000 - 12.619}{3.00 - 2.75} = \frac{0.381}{0.25} \approx 1.524 inches/sec
  • +
+ The weight is always moving in the same direction (away from the wall) on the interval [2,3], but is slowing down. +

+
+ + + +

+ Give an example of an interval of length 0.25 units on which f has its most negative average rate of change. Justify your choice. +

+
+ + +

+ The weight slows down as it reaches the farthest distance away from the midline and speeds up back toward the center. The greatest (steepest) negative rates of change occur near the midline where the function is decreasing, in intervals such as [0, 0.25], [3.75, 4.00], and [4.00, 4.25]. +

+
+ +

+ The greatest (steepest) negative rates of change occur near the midline where the function is decreasing. Examples include intervals such as [0, 0.25], [3.75, 4.00], and [4.00, 4.25]. These occur near the midline where the function crosses from above to below (or vice versa), meaning the weight is moving most rapidly toward the equilibrium position. +

+
+
+ + +

+ Give an example of the longest interval you can find on which f is decreasing. +

+
+ + +

+ Examples of longest such intervals are [3,5], [7,9], and [11,13]. +

+
+ +

+ The function is decreasing from each peak to each trough. Examples of longest such intervals are [3,5], [7,9], and [11,13]. +

+
+
+ + +

+ Give an example of an interval on which f is concave up. (Recall that a function is concave up on an interval provided that throughout the interval, the curve bends upward, similar to a parabola that opens up.)

+
+ + +

+ The intervals on which f is concave up include [0,2], [4,6], [8,10], and [12,14]. +

+
+ +

+ The intervals on which f is concave up include [0,2], [4,6], [8,10], and [12,14]. +

+
+
+ + +

+ On an interval where f is both decreasing and concave down, what does this tell us about how the weight is moving on that interval? For instance, is the weight moving toward or away from the wall? is it speeding up or slowing down? +

+
+ +

The weight is moving toward the wall but slowing down.

+ +

+ On intervals that are decreasing and concave up, the weight is moving toward the wall, but at a decreasing rate (slowing down). +

+
+
+ + +

+ What general conclusions can you make about the average rate of change of a circular function on intervals near its highest or lowest points? about its average rate of change on intervals near the function's midline? +

+
+ + +

+ At the highest and lowest points, the function has the smallest rates of change. Near the midline, the function has its greatest rates of change. +

+
+ +

+ At the highest and lowest points, the function has the smallest rates of change. Near the midline, the function has its greatest rates of change. +

+
+
+
+
diff --git a/source/activities/act-circular-traversing-oscillator.xml b/source/activities/act-circular-traversing-oscillator.xml index d2360730..7e90bc5e 100755 --- a/source/activities/act-circular-traversing-oscillator.xml +++ b/source/activities/act-circular-traversing-oscillator.xml @@ -1,247 +1,254 @@ - - - - - - - - - - - - - - - - -

- A weight is placed on a frictionless table next to a wall and attached to a spring that is fixed to the wall. From its natural position of rest, the weight is imparted an initial velocity that sets it in motion. The weight then oscillates back and forth, - and we can measure its distance, h = f(t) (in inches) - from the wall at any given time, t (in seconds). - A graph of f and a table of select values are given below. -

- - - - - t - - - f(t) - - - - - 0.25 - - - 6.087 - - - - - 0.5 - - - 4.464 - - - - - 0.75 - - - 3.381 - - - - - 1 - - - 3.000 - - - - - 1.25 - - - 3.381 - - - - - 1.5 - - - 4.464 - - - - - 1.75 - - - 6.087 - - - - - 2 - - - 8.000 - - - - - - - t - - - f(t) - - - - - 2.25 - - - 9.913 - - - - - 2.5 - - - 11.536 - - - - - 2.75 - - - 12.619 - - - - - 3 - - - 13.000 - - - - - 3.25 - - - 12.619 - - - - - 3.5 - - - 11.536 - - - - - 3.75 - - - 9.913 - - - - - 4 - - - 8.000 - - - -

ADD ALT TEXT TO THIS IMAGE

-
-

- - - -

- Determine the period p, midline y = m, and amplitude a of the function f. -

- - - - -

- The period of the motion is p = 4 seconds. The midline is y = 8 inches. The amplitude is a = 5 inches. -

-
- - - -

- What is the greatest distance the weight is displaced from the wall? What is the least distance the weight is displaced from the wall? What is the range of f? -

-
- - - -

- The greatest displacement of the weight is equal to the maximum of the graph: 13 inches. The least displacement is the minimum: 3 inches. The range of f is [3, 13]. -

-
-
- - -

- Determine the average rate of change of f on the intervals [4,4.25] and [4.75,5]. Write one careful sentence to explain the meaning of each (including units). In addition, write a sentence to compare the two different values you find and what they together say about the motion of the weight. -

-
- - - -

- The average rate of change AV_{[4,4.25]} on the interval [4,4.25] is - - \frac{6.807 - 8.00}{4.25 - 4} = \frac{-1.193}{0.25} = -4.772 \text{ inches per second}. - - The average rate of change AV_{[4.75,5]} on the interval [4.75,5] is - - \frac{3.000 - 3.381}{5 - 4.75} = \frac{-0.381}{0.25} = -1.524 \text{ inches per second}. - - The average rate of change of this function represents the speed of the weight. Taken together, these two values indicate that the weight is moving more slowly on the interval [4.75,5] than on the interval [4,4.25], but that the weight is moving in the same direction on each of these intervals. -

-
-
- - -

- Based on the periodicity of the function, what is the value of f(6.75)? of f(11.25)? -

-
- - - -

- The value of f(6.75) = f(2.75) = 12.619 inches. The value of f(11.25) = f(7.25) = f(3.25) = 12.619 inches. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ A weight is placed on a frictionless table next to a wall and attached to a spring that is fixed to the wall. From its natural position of rest, the weight is imparted an initial velocity that sets it in motion. The weight then oscillates back and forth, + and we can measure its distance, h = f(t) (in inches) + from the wall at any given time, t (in seconds). + A graph of f and a table of select values are given below. +

+ + + + + t + + + f(t) + + + + + 0.25 + + + 6.087 + + + + + 0.5 + + + 4.464 + + + + + 0.75 + + + 3.381 + + + + + 1 + + + 3.000 + + + + + 1.25 + + + 3.381 + + + + + 1.5 + + + 4.464 + + + + + 1.75 + + + 6.087 + + + + + 2 + + + 8.000 + + + + + + + t + + + f(t) + + + + + 2.25 + + + 9.913 + + + + + 2.5 + + + 11.536 + + + + + 2.75 + + + 12.619 + + + + + 3 + + + 13.000 + + + + + 3.25 + + + 12.619 + + + + + 3.5 + + + 11.536 + + + + + 3.75 + + + 9.913 + + + + + 4 + + + 8.000 + + + +

ADD ALT TEXT TO THIS IMAGE

+
+

+ + + +

+ Determine the period p, midline y = m, and amplitude a of the function f. +

+ + +

+ The period of the motion is p = 4 seconds. The midline is y = 8 inches. The amplitude is a = 5 inches. +

+
+ +

+ The period of the motion is p = 4 seconds. The midline is y = 8 inches. The amplitude is a = 5 inches. +

+
+ + + +

+ What is the greatest distance the weight is displaced from the wall? What is the least distance the weight is displaced from the wall? What is the range of f? +

+
+ +

+ The greatest displacement of the weight is 13 inches. The least displacement is 3 inches. The range of f is [3, 13]. +

+
+ +

+ The greatest displacement of the weight is equal to the maximum of the graph: 13 inches. The least displacement is the minimum: 3 inches. The range of f is [3, 13]. +

+
+
+ + +

+ Determine the average rate of change of f on the intervals [4,4.25] and [4.75,5]. Write one careful sentence to explain the meaning of each (including units). In addition, write a sentence to compare the two different values you find and what they together say about the motion of the weight. +

+
+ +

+ AV_{[4,4.25]}= -4.772 inches per second on the interval [4,4.25].

+ AV_{[4.75,5]} = -1.524 inches per second on the interval [4.75,5].

+ The average rate of change of this function represents the speed of the weight. Taken together, these two values indicate that the weight is moving more slowly on the interval [4.75,5] than on the interval [4,4.25], but that the weight is moving in the same direction on each of these intervals. +

+
+ +

+ The average rate of change AV_{[4,4.25]} on the interval [4,4.25] is + + \frac{6.807 - 8.00}{4.25 - 4} = \frac{-1.193}{0.25} = -4.772 \text{ inches per second}. + + The average rate of change AV_{[4.75,5]} on the interval [4.75,5] is + + \frac{3.000 - 3.381}{5 - 4.75} = \frac{-0.381}{0.25} = -1.524 \text{ inches per second}. + + The average rate of change of this function represents the speed of the weight. Taken together, these two values indicate that the weight is moving more slowly on the interval [4.75,5] than on the interval [4,4.25], but that the weight is moving in the same direction on each of these intervals. +

+
+
+ + +

+ Based on the periodicity of the function, what is the value of f(6.75)? of f(11.25)? +

+
+ +

f(6.75) = 12.619 inches and f(11.25) = 12.619 inches. +

+
+ +

+ The value of f(6.75) = f(2.75) = 12.619 inches. The value of f(11.25) = f(7.25) = f(3.25) = 12.619 inches. +

+
+
+
+
diff --git a/source/activities/act-circular-unit-circle-non-unit.xml b/source/activities/act-circular-unit-circle-non-unit.xml index 5669acb6..33d6e756 100755 --- a/source/activities/act-circular-unit-circle-non-unit.xml +++ b/source/activities/act-circular-unit-circle-non-unit.xml @@ -1,86 +1,80 @@ - - - - - - - - - - - - - - - - -

- Determine each of the following values or points exactly. -

-

- - - -

- In a circle of radius 11, the arc length intercepted by a central angle of \frac{5\pi}{3}. -

- - - - -

- In a circle of radius 11, the arc length intercepted by a central angle of \frac{5\pi}{3} is 11 \cdot \frac{5\pi}{3} = \frac{55\pi}{3}. -

-
- - - -

- In a circle of radius 3, the central angle measure that intercepts an arc of length \frac{\pi}{4}. -

-
- - - -

- In a circle of radius 3, the central angle that intercepts an arc length \frac{\pi}{4} is \frac{\pi/4}{3} = \frac{\pi}{12}. -

-
-
- - -

- The radius of the circle in which an angle of - \frac{7\pi}{6} intercepts an arc of length \frac{\pi}{2}. -

-
- - - -

- The radius is \frac{\pi/2}{7\pi/6} = \frac{3}{7}. -

-
-
- - -

- The exact coordinates of the point on the circle of radius 5 that lies \frac{25\pi}{6} units counterclockwise along the circle from (5,0). -

-
- - - -

- The angle corresponding to the arc length is \theta = \frac{25\pi/6}{5} = \frac{5\pi}{6}. But since \frac{25\pi}{6} = 4\pi + \frac{\pi}{6}, the effective angle is \frac{\pi}{6}. Using the unit circle coordinates at \frac{\pi}{6}, the point on the circle of radius 5 is \left( \frac{5\sqrt{3}}{2}, \frac{5}{2} \right). -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Determine each of the following values or points exactly. +

+

+ + + +

+ In a circle of radius 11, the arc length intercepted by a central angle of \frac{5\pi}{3}. +

+ + +

11 \cdot \frac{5\pi}{3} = \frac{55\pi}{3}

+ +

+ In a circle of radius 11, the arc length intercepted by a central angle of \frac{5\pi}{3} is 11 \cdot \frac{5\pi}{3} = \frac{55\pi}{3}. +

+
+ + + +

+ In a circle of radius 3, the central angle measure that intercepts an arc of length \frac{\pi}{4}. +

+
+ +

\frac{\pi/4}{3} = \frac{\pi}{12}

+ +

+ In a circle of radius 3, the central angle that intercepts an arc length \frac{\pi}{4} is \frac{\pi/4}{3} = \frac{\pi}{12}. +

+
+
+ + +

+ The radius of the circle in which an angle of + \frac{7\pi}{6} intercepts an arc of length \frac{\pi}{2}. +

+
+ +

\frac{\pi/2}{7\pi/6} = \frac{3}{7}

+ +

+ The radius is \frac{\pi/2}{7\pi/6} = \frac{3}{7}. +

+
+
+ + +

+ The exact coordinates of the point on the circle of radius 5 that lies \frac{25\pi}{6} units counterclockwise along the circle from (5,0). +

+
+ +

\left( \frac{5\sqrt{3}}{2}, \frac{5}{2} \right)

+ +

+ The angle corresponding to the arc length is \theta = \frac{25\pi/6}{5} = \frac{5\pi}{6}. But since \frac{25\pi}{6} = 4\pi + \frac{\pi}{6}, the effective angle is \frac{\pi}{6}. Using the unit circle coordinates at \frac{\pi}{6}, the point on the circle of radius 5 is \left( \frac{5\sqrt{3}}{2}, \frac{5}{2} \right). +

+
+
+
+
diff --git a/source/activities/act-circular-unit-circle-radians-degrees.xml b/source/activities/act-circular-unit-circle-radians-degrees.xml index 8cf334be..7e15e3f0 100755 --- a/source/activities/act-circular-unit-circle-radians-degrees.xml +++ b/source/activities/act-circular-unit-circle-radians-degrees.xml @@ -1,110 +1,128 @@ - - - - - - - - - - - - - - - - -

- Convert each of the following quantities to the alternative measure: degrees to radians or radians to degrees. -

-

- - - -

- 30^\circ -

- - - - -

- 30^\circ = \frac{\pi}{6} radians \approx 0.524 radians. -

-
- - - -

\frac{2\pi}{3} radians -

-
- - - -

- \frac{2\pi}{3} radians = 120^\circ. -

-
-
- - -

\frac{5\pi}{4} radians -

-
- - - -

- \frac{5\pi}{4} radians = 225^\circ. -

-
-
- - -

- 240^\circ -

-
- - - -

- 240^\circ = \frac{4\pi}{3} radians \approx 4.189 radians. -

-
-
- - -

- 17^\circ -

-
- - - -

- 17^\circ = \frac{17\pi}{180} radians \approx 0.297 radians. -

-
-
- - -

2 radians -

-
- - - -

- 2 radians = \frac{360}{\pi}^\circ \approx 114^\circ. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Convert each of the following quantities to the alternative measure: degrees to radians or radians to degrees. +

+

+ + + +

+ 30^\circ +

+ + + +

+ 30^\circ = \frac{\pi}{6} radians +

+
+ +

+ 30^\circ = \frac{\pi}{6} radians +

+
+ + + +

\frac{2\pi}{3} radians +

+
+ + +

+ \frac{2\pi}{3} radians = 120^\circ +

+
+ +

+ \frac{2\pi}{3} radians = 120^\circ +

+
+
+ + +

\frac{5\pi}{4} radians +

+
+ + +

+ \frac{5\pi}{4} radians = 225^\circ +

+
+ +

+ \frac{5\pi}{4} radians = 225^\circ +

+
+
+ + +

+ 240^\circ +

+
+ + +

+ 240^\circ = \frac{4\pi}{3} radians +

+
+ +

+ 240^\circ = \frac{4\pi}{3} radians +

+
+
+ + +

+ 17^\circ +

+
+ + +

+ 17^\circ = \frac{17\pi}{180} \approx 0.297 radians +

+
+ +

+ 17^\circ = \frac{17\pi}{180} \approx 0.297 radians +

+
+
+ + +

2 radians +

+
+ + +

+ 2 radians = \frac{360}{\pi}^\circ \approx 114^\circ. +

+
+ +

+ 2 radians = \frac{360}{\pi}^\circ \approx 114^\circ. +

+
+
+
+
diff --git a/source/activities/act-circular-unit-circle-special-triangles.xml b/source/activities/act-circular-unit-circle-special-triangles.xml index 1cf1c968..2388ebe6 100755 --- a/source/activities/act-circular-unit-circle-special-triangles.xml +++ b/source/activities/act-circular-unit-circle-special-triangles.xml @@ -1,114 +1,116 @@ - - - - - - - - - - - - - - - - -

- In what follows, we work to understand key relationships in - 45^\circ-45^\circ-90^\circ and - 30^\circ-60^\circ-90^\circ triangles. -

- - -

ADD ALT TEXT TO THIS IMAGE

- -

ADD ALT TEXT TO THIS IMAGE

- -
-

- - - -

- For the 45^\circ-45^\circ-90^\circ triangle with legs of length x and y and hypotenuse of length 1, what does the fact that the triangle is isosceles tell us about the relationship between x and y? What are their exact values? -

- - - - -

- Because a 45^\circ-45^\circ-90^\circ triangle is isosceles, the sides x and y must be equal. From the Pythagorean theorem, \sqrt{x^2 + y^2} = 1, which reduces to \sqrt{2x^2} = 1, giving x = y = \frac{\sqrt{2}}{2}. -

-
- - - -

- Now consider the 30^\circ-60^\circ-90^\circ triangle with hypotenuse of length 1 and the longer leg (of length x) lying along the positive x-axis. What special kind of triangle is formed when we reflect this triangle across the x-axis? How can we use this perspective to determine the exact values of x and y? -

-
- - - -

- When the 30^\circ-60^\circ-90^\circ triangle is reflected across the x-axis, the outer perimeter of the resulting shape forms an equilateral triangle where all three interior angles are 60^\circ and all sides have the same length, 1 unit. This gives us the insight that side y must have a length equal to half of one unit: y = \frac{1}{2}. Side x is determined from the Pythagorean theorem: x = \frac{\sqrt{3}}{2}. -

-
-
- - -

- Suppose we consider the related 30^\circ-60^\circ-90^\circ triangle with hypotenuse of length 1 and the shorter leg (of length x) lying along the positive x-axis. What are the exact values of x and y in this triangle? -

-
- - - -

- When a 30^\circ-60^\circ-90^\circ triangle is constructed such that the angle between the hypotenuse and the x-side is 60^\circ, the sides are y = \frac{\sqrt{3}}{2} and x = \frac{1}{2}. -

-
-
- - -

- We know from the conversion factor from degrees to radians that an angle of 30^\circ corresponds to an angle measuring \frac{\pi}{6} radians, an angle of 45^\circ corresponds to \frac{\pi}{4} radians, and 60^\circ corresponds to \frac{\pi}{3} radians. -

- - -

ADD ALT TEXT TO THIS IMAGE

- -

ADD ALT TEXT TO THIS IMAGE

- -

ADD ALT TEXT TO THIS IMAGE

- -
-

- Use your work in (a), (b), and (c) to label the noted point in each of the three respective figures with its exact coordinates. -

-
- - - -

- The coordinates of the point at \theta = \frac{\pi}{6} on the unit circle are \left( \frac{\sqrt{3}}{2}, \frac{1}{2} \right). The coordinates at \theta = \frac{\pi}{4} are \left( \frac{\sqrt{2}}{2}, \frac{\sqrt{2}}{2} \right). The coordinates at \theta = \frac{\pi}{3} are \left( \frac{1}{2}, \frac{\sqrt{3}}{2} \right). -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ In what follows, we work to understand key relationships in + 45^\circ-45^\circ-90^\circ and + 30^\circ-60^\circ-90^\circ triangles. +

+ + +

ADD ALT TEXT TO THIS IMAGE

+ +

ADD ALT TEXT TO THIS IMAGE

+ +
+

+ + + +

+ For the 45^\circ-45^\circ-90^\circ triangle with legs of length x and y and hypotenuse of length 1, what does the fact that the triangle is isosceles tell us about the relationship between x and y? What are their exact values? +

+ + +

x = y = \frac{\sqrt{2}}{2}

+ +

+ Because a 45^\circ-45^\circ-90^\circ triangle is isosceles, the sides x and y must be equal. From the Pythagorean theorem, \sqrt{x^2 + y^2} = 1, which reduces to \sqrt{2x^2} = 1, giving x = y = \frac{\sqrt{2}}{2}. +

+
+ + + +

+ Now consider the 30^\circ-60^\circ-90^\circ triangle with hypotenuse of length 1 and the longer leg (of length x) lying along the positive x-axis. What special kind of triangle is formed when we reflect this triangle across the x-axis? How can we use this perspective to determine the exact values of x and y? +

+
+ + +

+ The resulting shape forms an equilateral triangle where all three interior angles are 60^\circ and all sides have the same length, 1 unit. Thus, y = \frac{1}{2} and by the Pythagorean theorem, x = \frac{\sqrt{3}}{2}. +

+
+ +

+ When the 30^\circ-60^\circ-90^\circ triangle is reflected across the x-axis, the outer perimeter of the resulting shape forms an equilateral triangle where all three interior angles are 60^\circ and all sides have the same length, 1 unit. This gives us the insight that side y must have a length equal to half of one unit: y = \frac{1}{2}. Side x is determined from the Pythagorean theorem: x = \frac{\sqrt{3}}{2}. +

+
+
+ + +

+ Suppose we consider the related 30^\circ-60^\circ-90^\circ triangle with hypotenuse of length 1 and the shorter leg (of length x) lying along the positive x-axis. What are the exact values of x and y in this triangle? +

+
+ +

y = \frac{\sqrt{3}}{2} and x = \frac{1}{2}

+ +

+ When a 30^\circ-60^\circ-90^\circ triangle is constructed such that the angle between the hypotenuse and the x-side is 60^\circ, the sides are y = \frac{\sqrt{3}}{2} and x = \frac{1}{2}. +

+
+
+ + +

+ We know from the conversion factor from degrees to radians that an angle of 30^\circ corresponds to an angle measuring \frac{\pi}{6} radians, an angle of 45^\circ corresponds to \frac{\pi}{4} radians, and 60^\circ corresponds to \frac{\pi}{3} radians. +

+ + +

ADD ALT TEXT TO THIS IMAGE

+ +

ADD ALT TEXT TO THIS IMAGE

+ +

ADD ALT TEXT TO THIS IMAGE

+ +
+

+ Use your work in (a), (b), and (c) to label the noted point in each of the three respective figures with its exact coordinates. +

+
+ + +

+ The coordinates of the point at \theta = \frac{\pi}{6} on the unit circle are \left( \frac{\sqrt{3}}{2}, \frac{1}{2} \right). The coordinates at \theta = \frac{\pi}{4} are \left( \frac{\sqrt{2}}{2}, \frac{\sqrt{2}}{2} \right). The coordinates at \theta = \frac{\pi}{3} are \left( \frac{1}{2}, \frac{\sqrt{3}}{2} \right). +

+
+ +

+ The coordinates of the point at \theta = \frac{\pi}{6} on the unit circle are \left( \frac{\sqrt{3}}{2}, \frac{1}{2} \right). The coordinates at \theta = \frac{\pi}{4} are \left( \frac{\sqrt{2}}{2}, \frac{\sqrt{2}}{2} \right). The coordinates at \theta = \frac{\pi}{3} are \left( \frac{1}{2}, \frac{\sqrt{3}}{2} \right). +

+
+
+
+
diff --git a/source/activities/act-exp-e-aroc-e.xml b/source/activities/act-exp-e-aroc-e.xml index 5503b1e7..542e255c 100755 --- a/source/activities/act-exp-e-aroc-e.xml +++ b/source/activities/act-exp-e-aroc-e.xml @@ -1,143 +1,184 @@ - - - - - - - - - - - - - - - - -

- Recall from Section that the average rate of change of a function f on an interval [a,b] is - - AV_{[a,b]} = \frac{f(b)-f(a)}{b-a} - . - In Section, we also saw that if we instead think of the average rate of change of f on the interval [a,a+h], the expression changes to - - AV_{[a,a+h]} = \frac{f(a+h)-f(a)}{h} - . - In this activity we explore the average rate of change of f(t) = e^t near the points where t = 1 and t = 2. -

-

- In a new Desmos worksheet, let f(t) = e^t and define the function A by the rule - - A(h) = \frac{f(1+h)-f(1)}{h} - . -

-

- - - -

- What is the meaning of A(0.5) in terms of the function f and its graph? -

- - - - -

- The function A evaluated at h = 0.5 gives the average rate of change of f(t) = e^t on the interval [1, 1.5]. -

-
- - - -

- Compute the value of A(h) for at least 6 different small values of h, both positive and negative. For instance, one value to try might be h = 0.0001. Record a table of your results. -

-
- - - - - - h - A(h) - - - 0.2 - 3.010 - - - 0.1 - 2.859 - - - 0.01 - 2.732 - - - 0.001 - 2.720 - - - 0.0001 - 2.718 - - - 0.00001 - 2.718 - - - -
- - -

- What do you notice about the values you found in (b)? How do they compare to an important number? -

-
- - - -

- As h gets smaller and smaller, the value of A(h) approaches the value of e. -

-
-
- - -

- Explain why the following sentence makes sense: The function e^t is increasing at an average rate that is about the same as its value on small intervals near t = 1.

-
- - - -

- The statement makes sense because the rate of change on small intervals near t = 1 is close to the value of e^1 = e. -

-
-
- - -

- Adjust your definition of A in Desmos by changing 1 to 2 so that - - A(h) = \frac{f(2+h)-f(2)}{h} - . - How does the value of A(h) compare to f(2) for small values of h? -

-
- - - -

- The value of A(h) near h = 0 appears to be the same as the value of f(2) = e^2. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Recall from Section that the average rate of change of a function f on an interval [a,b] is + + AV_{[a,b]} = \frac{f(b)-f(a)}{b-a} + . + In Section, we also saw that if we instead think of the average rate of change of f on the interval [a,a+h], the expression changes to + + AV_{[a,a+h]} = \frac{f(a+h)-f(a)}{h} + . + In this activity we explore the average rate of change of f(t) = e^t near the points where t = 1 and t = 2. +

+

+ In a new Desmos worksheet, let f(t) = e^t and define the function A by the rule + + A(h) = \frac{f(1+h)-f(1)}{h} + . +

+

+ + + +

+ What is the meaning of A(0.5) in terms of the function f and its graph? +

+ + + +

+ A(0.5) gives the average rate of change of f(t) = e^t on the interval [1, 1.5], which is the slope of the line between the points (1,f(1)) and (1.5,f(1.5)). +

+
+ +

+ The function A evaluated at h = 0.5 gives the average rate of change of f(t) = e^t on the interval [1, 1.5]. This is the slope of the line between the points (1,f(1)) and (1.5,f(1.5)). +

+
+ + + +

+ Compute the value of A(h) for at least 6 different small values of h, both positive and negative. For instance, one value to try might be h = 0.0001. Record a table of your results. +

+
+ + + + + h + A(h) + + + 0.01 + 2.7319 + + + 0.001 + 2.7196 + + + 0.0001 + 2.7184 + + + -0.0001 + 2.7181 + + + -0.001 + 2.7169 + + + -0.01 + 2.7047 + + + + + + + h + A(h) + + + 0.01 + 2.7319 + + + 0.001 + 2.7196 + + + 0.0001 + 2.7184 + + + -0.0001 + 2.7181 + + + -0.001 + 2.7169 + + + -0.01 + 2.7047 + + + +
+ + +

+ What do you notice about the values you found in (b)? How do they compare to an important number? +

+
+ + +

+ As h gets smaller and smaller, the value of A(h) approaches the value of e. +

+
+ +

+ As h gets smaller and smaller, the value of A(h) approaches the value of e. +

+
+
+ + +

+ Explain why the following sentence makes sense: The function e^t is increasing at an average rate that is about the same as its value on small intervals near t = 1.

+
+ + +

+ The statement makes sense because the rate of change on small intervals near t = 1 is close to the value of e^1 = e. +

+
+ +

+ The statement makes sense because the rate of change on small intervals near t = 1 is close to the value of e^1 = e. +

+
+
+ + +

+ Adjust your definition of A in Desmos by changing 1 to 2 so that + + A(h) = \frac{f(2+h)-f(2)}{h} + . + How does the value of A(h) compare to f(2) for small values of h? +

+
+ + +

+ The value of A(h) near h = 0 appears to be the same as the value of f(2) = e^2. +

+
+ +

+ The value of A(h) near h = 0 appears to be the same as the value of f(2) = e^2. +

+
+
+
+
diff --git a/source/activities/act-exp-e-graph-solve.xml b/source/activities/act-exp-e-graph-solve.xml index 0b70b5bb..ac8c52cd 100755 --- a/source/activities/act-exp-e-graph-solve.xml +++ b/source/activities/act-exp-e-graph-solve.xml @@ -1,116 +1,117 @@ - - - - - - - - - - - - - - - - -

- By graphing f(t) = e^t and appropriate horizontal lines, estimate the solution to each of the following equations. Note that in some parts, you may need to do some algebraic work in addition to using the graph. -

-

- - - -

- e^t = 2 -

- - - - -

- For e^t = 2, t = \ln 2 \approx 0.6931. -

-
- - - -

- e^{3t} = 5 -

-
- - - -

- For e^{3t} = 5, t = \frac{\ln 5}{3} \approx 0.5365. -

-
-
- - -

- 2e^t - 4 = 7 -

-
- - - -

- The equation 2e^t - 4 = 7 simplifies to e^t = \frac{11}{2}, so t = \ln\!\left(\frac{11}{2}\right) \approx 1.7047. -

-
-
- - -

- 3e^{0.25t} + 2 = 6 -

-
- - - -

- The equation 3e^{0.25t} + 2 = 6 simplifies to e^{0.25t} = \frac{4}{3}, so t = 4\ln\!\left(\frac{4}{3}\right) \approx 1.1507. -

-
-
- - -

- 4 - 2e^{-0.7t} = 3 -

-
- - - -

- The equation 4 - 2e^{-0.7t} = 3 simplifies to e^{-0.7t} = \frac{1}{2}, so t = \frac{\ln 2}{0.7} \approx 0.9902. -

-
-
- - -

- 2e^{1.2t} = 1.5e^{1.6t} -

-
- - - -

- The equation 2e^{1.2t} = 1.5e^{1.6t} simplifies to e^{-0.4t} = \frac{3}{4}, so t = \frac{-\ln(3/4)}{0.4} \approx 0.7192. -

-
-
- -

- - -

- A graph of f(t) = e^t showing the solutions to each equation is below. -

- - -
-
+ + + + + + + + + + + + + + + + +

+ By graphing f(t) = e^t and appropriate horizontal lines, estimate the solution to each of the following equations. Note that in some parts, you may need to do some algebraic work in addition to using the graph. +

+

+ + + +

+ e^t = 2 +

+ + + +

+ t \approx 0.6931 +

+
+ +

+ For e^t = 2, t \approx 0.6931. +

+
+ + + +

+ e^{3t} = 5 +

+
+ +

t = \approx 0.5365

+ +

+ For e^{3t} = 5, t \approx 0.5365. +

+
+
+ + +

+ 2e^t - 4 = 7 +

+
+ +

t \approx 1.7047

+ +

+ The equation 2e^t - 4 = 7 simplifies to e^t = \frac{11}{2}, so t \approx 1.7047. +

+
+
+ + +

+ 3e^{0.25t} + 2 = 6 +

+
+ +

t \approx 1.1507

+ +

+ The equation 3e^{0.25t} + 2 = 6 simplifies to e^{0.25t} = \frac{4}{3}, so t \approx 1.1507. +

+
+
+ + +

+ 4 - 2e^{-0.7t} = 3 +

+
+ +

t \approx 0.9902

+ +

+ The equation 4 - 2e^{-0.7t} = 3 simplifies to e^{-0.7t} = \frac{1}{2}, so t \approx 0.9902. +

+
+
+ + +

+ 2e^{1.2t} = 1.5e^{1.6t} +

+
+ +

t \approx 0.7192

+ +

+ The equation 2e^{1.2t} = 1.5e^{1.6t} simplifies to e^{-0.4t} = \frac{3}{4}, so t \approx 0.7192. +

+
+
+ +
+
diff --git a/source/activities/act-exp-growth-a-b-t.xml b/source/activities/act-exp-growth-a-b-t.xml index 8c2e8fd3..b823df45 100755 --- a/source/activities/act-exp-growth-a-b-t.xml +++ b/source/activities/act-exp-growth-a-b-t.xml @@ -1,117 +1,119 @@ - - - - - - - - - - - - - - - - -

- In Desmos, define the function g(t) = ab^t and create sliders for both a and b when prompted. Click on the sliders to set the minimum value for each to 0.1 and the maximum value to 10. Note that for g to be an exponential function, we require b \ne 1, even though the slider for b will allow this value. -

-

- - - -

- What is the domain of g(t) = ab^t? -

- - - - -

- The domain of g(t) = ab^t is all real numbers, (-\infty, \infty). -

-
- - - -

- What is the range of g(t) = ab^t? -

-
- - - -

- Allowing for all possible values of a and b, the range of g(t) is all real numbers. If we restrict a and b to 0.1 \le a, b \le 10, the range of g(t) becomes (0, \infty). -

-
-
- - -

- What is the y-intercept of g(t) = ab^t? -

-
- - - -

- The y-intercept for g(t) is a. -

-
-
- - -

- How does changing the value of b affect the shape and behavior of the graph of g(t) = ab^t? Write several sentences to explain. -

-
- - - -

- When b is less than 1, the graph approaches \infty as t approaches -\infty, and the graph approaches 0 when t approaches \infty. When b is greater than 1, the graph approaches 0 when t approaches -\infty and the graph approaches \infty when t approaches \infty. -

-
-
- - -

- For what values of the growth factor b is the corresponding growth rate positive? For which b-values is the growth rate negative? -

-
- - - -

- When b is greater than 1, the function describes positive growth (growing with time). When b is between 0 and 1, the function describes negative growth (decreasing with time). -

-
-
- - -

- Consider the graphs of the exponential functions p and q provided in the following figure. If p(t) = ab^t and q(t) = cd^t, what can you say about the values a, b, c, and d (beyond the fact that all are positive and b \ne 1 and d \ne 1)? For instance, can you say a certain value is larger than another? Or that one of the values is less than 1? -

- -

ADD ALT TEXT TO THIS IMAGE

- -
- - - -

- The function p(t) shows negative growth, so the value of b must be between 0 and 1. The function q(t) shows positive growth, so the value of d must be greater than 1. The function p has a y-intercept that is greater than the function q's y-intercept, thus a \gt c. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ In Desmos, define the function g(t) = ab^t and create sliders for both a and b when prompted. Click on the sliders to set the minimum value for each to 0.1 and the maximum value to 10. Note that for g to be an exponential function, we require b \ne 1, even though the slider for b will allow this value. +

+

+ + + +

+ What is the domain of g(t) = ab^t? +

+ + +

All real numbers, or (-\infty, \infty).

+ +

+ The domain of g(t) = ab^t is all real numbers, (-\infty, \infty). +

+
+ + + +

+ What is the range of g(t) = ab^t? +

+
+ +

(0, \infty)

+ +

+ The range of g(t) is (0, \infty). +

+
+
+ + +

+ What is the y-intercept of g(t) = ab^t? +

+
+ +

a

+ +

+ The y-intercept for g(t) is a. +

+
+
+ + +

+ How does changing the value of b affect the shape and behavior of the graph of g(t) = ab^t? Write several sentences to explain. +

+
+ +

When b is less than 1, the function is decreasing and concave up, approaching 0 as x gets larger and larger. When When b is greater than 1, the function is increasing and concave up, approaching \infty as x gets larger and larger.

+ +

+ When b is less than 1, the function is decreasing and concave up. The graph approaches \infty as t approaches -\infty, and the graph approaches 0 as t approaches \infty. When b is greater than 1, the function is increasing and concave up. The graph approaches 0 as t approaches -\infty and the graph approaches \infty as t approaches \infty. +

+
+
+ + +

+ For what values of the growth factor b is the corresponding growth rate positive? For which b-values is the growth rate negative? +

+
+ +

+ When b is greater than 1, the function describes positive growth (growing with time). When b is between 0 and 1, the function describes negative growth (decreasing with time). +

+
+ +

+ When b is greater than 1, the function describes positive growth (growing with time). When b is between 0 and 1, the function describes negative growth (decreasing with time). +

+
+
+ + +

+ Consider the graphs of the exponential functions p and q provided in the following figure. If p(t) = ab^t and q(t) = cd^t, what can you say about the values a, b, c, and d (beyond the fact that all are positive and b \ne 1 and d \ne 1)? For instance, can you say a certain value is larger than another? Or that one of the values is less than 1? +

+ + + + + + +

Graph of two exponential functions, p(t)=ab^t and q(t)=cd^t. The function p(t) is decreasing towards 0 and has a higher y-intercept, while the function q(t) has a lower y-intercept and is increasing towards higher and higher values as x increases.

+ +
+ +

We can tell that 0 \lt b \lt 1 while d \gt 1. Also, a \gt c.

+ +

+ The function p(t) shows negative growth, so the value of b must be between 0 and 1. The function q(t) shows positive growth, so the value of d must be greater than 1. The function p has a y-intercept that is greater than the function q's y-intercept, thus a \gt c. +

+
+
+
+
diff --git a/source/activities/act-exp-growth-find-a-b.xml b/source/activities/act-exp-growth-find-a-b.xml index 145b0875..987efcc9 100755 --- a/source/activities/act-exp-growth-find-a-b.xml +++ b/source/activities/act-exp-growth-find-a-b.xml @@ -1,85 +1,83 @@ - - - - - - - - - - - - - - - - -

- The value of an automobile is depreciating. When the car is 3 years old, its value is $12500; when the car is 7 years old, its value is $6500. -

-

- - - -

- Suppose the car's value t years after its purchase is given by the function V(t) and that V is exponential with form V(t) = ab^t, what are the values of a and b? Find a and b both exactly and approximately. -

- - - - -

- Given V(t) = ab^t, V(3) = \$12{,}500, and V(7) = \$6{,}500, the ratio of the two specified points gives b = \left( \dfrac{13}{25} \right)^{1/4} exactly. Solving either equation for a gives a = 12500 \left( \dfrac{25}{13} \right)^{3/4} = 6500 \left( \dfrac{25}{13} \right)^{7/4} exactly. In approximate form, V(t) \approx \$20{,}413 \times (0.8492)^t. -

-
- - - -

- Using the exponential model determined in (a), determine the purchase value of the car and then use Desmos to estimate when the car will be worth less than $1000. -

-
- - - -

- Using the approximate model, the purchase value of the car is approximately $20{,}413. Solving 1000 = 20413 \times 0.8492^t using logarithms gives t \approx 18.45, so the car is worth less than $1000 after about 18 years. -

-
-
- - -

- Suppose instead that the car's value is modeled by a linear function L and satisfies the values stated at the outset of this activity. Find a formula for L(t) and determine both the purchase value of the car and when the car will be worth $1000. -

-
- - - -

- If the car's value is linear, then L(t) = b + mt. Using L(3) = 12500 and L(7) = 6500, we find m = (12500 - 6500)/(3 - 7) = -1500 dollars per year and b = \$17{,}000. Thus L(t) = 17000 - 1500t, and the car will be worth $1000 when t = \frac{32}{3} \approx 10.67 years. -

-
-
- - -

- Which model do you think is more realistic? Why? -

-
- - - -

- The exponential model seems more realistic because new cars decrease in value at a faster rate than older cars. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ The value of an automobile is depreciating. When the car is 3 years old, its value is \$ 12500; when the car is 7 years old, its value is \$ 6500. +

+

+ + + +

+ Suppose the car's value t years after its purchase is given by the function V(t) and that V is exponential with form V(t) = ab^t, what are the values of a and b? Find a and b both exactly and approximately. +

+ + +

Exactly: b = \left( \dfrac{13}{25} \right)^{1/4}, a = 12500 \left( \dfrac{25}{13} \right)^{3/4} = 6500 \left( \dfrac{25}{13} \right)^{7/4}. In approximate form, V(t) \approx \$ 20413 \cdot (0.8492)^t.

+ +

+ Given V(t) = ab^t, V(3) = \$12{,}500, and V(7) = \$6{,}500, the ratio of the two specified points gives b = \left( \dfrac{13}{25} \right)^{1/4} exactly. Solving either equation for a gives a = 12500 \left( \dfrac{25}{13} \right)^{3/4} = 6500 \left( \dfrac{25}{13} \right)^{7/4} exactly. In approximate form, V(t) \approx \$20{,}413 \cdot (0.8492)^t. +

+
+ + + +

+ Using the exponential model determined in (a), determine the purchase value of the car and then use Desmos to estimate when the car will be worth less than \$ 1000. +

+
+ +

The purchase value of the car is approximately \$ 20413, and the car is worth less than \$ 1000 after a little over 18 years.

+ +

+ Using the approximate model, the purchase value of the car is approximately \$ 20{,}413. Using Desmos, we see that 1000 = 20413 \cdot 0.8492^t when t \approx 18.45, so the car is worth less than \$ 1000 after about 18 years. +

+
+
+ + +

+ Suppose instead that the car's value is modeled by a linear function L and satisfies the values stated at the outset of this activity. Find a formula for L(t) and determine both the purchase value of the car and when the car will be worth \$ 1000. +

+
+ +

L(t) = 17000 - 1500t, and the car will be worth \$ 1000 when t = \frac{32}{3} \approx 10.67 years.

+ +

+ If the car's value is linear, then L(t) = b + mt. Using L(3) = 12500 and L(7) = 6500, we find m = (12500 - 6500)/(3 - 7) = -1500 dollars per year and b = \$17{,}000. Thus L(t) = 17000 - 1500t, and the car will be worth $1000 when t = \frac{32}{3} \approx 10.67 years. +

+
+
+ + +

+ Which model do you think is more realistic? Why? +

+
+ + +

+ The exponential model seems more realistic because new cars decrease in value faster rate at the beginning and more slowly as they get older. +

+
+ +

+ The exponential model seems more realistic because new cars decrease in value faster rate at the beginning and more slowly as they get older. +

+
+
+
+
diff --git a/source/activities/act-exp-growth-rates.xml b/source/activities/act-exp-growth-rates.xml index 24fe5de2..6bfa3805 100755 --- a/source/activities/act-exp-growth-rates.xml +++ b/source/activities/act-exp-growth-rates.xml @@ -1,108 +1,188 @@ - - - - - - - - - - - - - - - - -

- For each of the following prompts, give an example of a function that satisfies the stated characteristics by both providing a formula and sketching a graph. -

-

- - - -

- A function p that is always decreasing and decreases at a constant rate. -

- - - - -

- If p is always decreasing at a constant rate, then p is a linear function of the form p(x) = mx + b, where m \lt 0. For example, p(x) = -4x + 2. -

- -
- - - -

- A function q that is always increasing and increases at an increasing rate. -

-
- - - -

- If q is always increasing and increases at an increasing rate, then q may be an exponential function. For example, q(x) = 2^x. -

- -
-
- - -

- A function r that is always increasing for t \lt 2, always decreasing for t \gt 2, and is always changing at a decreasing rate. -

-
- - - -

- One option is the piecewise function - - r(t) = \begin{cases} -\left(\frac{1}{2}\right)^t & \text{if } t \lt 2 \\ \left(\frac{1}{2}\right)^t - \frac{1}{2} & \text{if } t \gt 2 \end{cases} - - whose rate of change is always decreasing with increasing t. -

- -
-
- - -

- A function s that is always increasing and increases at a decreasing rate. (Hint: to find a formula, think about how you might use a transformation of a familiar function.) -

-
- - - -

- Let s(t) = -\left(\frac{1}{2}\right)^t, so that s(t) is always increasing with a decreasing rate. -

- -
-
- - -

- A function u that is always decreasing and decreases at a decreasing rate. -

-
- - - -

- The function u(t) = \left(\frac{1}{2}\right)^t is always decreasing at a decreasing rate. -

- -
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ For each of the following prompts, give an example of a function that satisfies the stated characteristics by both providing a formula and sketching a graph. +

+

+ + + +

+ A function p that is always decreasing and decreases at a constant rate. +

+ + + +

+ Any line with negative slope, for example, p(x) = -2x + 1. +

+ + + + +

A line with negative slope

+ +
+ +

+ If p is always decreasing at a constant rate, then p is a linear function of the form p(x) = mx + b, where m \lt 0. For example, p(x) = -2x + 1. +

+ + + + +

A line with negative slope

+ + +
+ + + +

+ A function q that is always increasing and increases at an increasing rate. +

+
+ + +

+ For example, q(x) = 2^x. +

+ + + + +

The function 2^x, which is increasing at an increasing rate.

+ +
+ +

+ If q is always increasing and increases at an increasing rate, then q may be an exponential function. For example, q(x) = 2^x. +

+ + + + +

The function 2^x, which is increasing at an increasing rate.

+ + +
+
+ + +

+ A function r that is always increasing for t \lt 2, always decreasing for t \gt 2, and is always changing at a decreasing rate. (Recall that when a negative number decreases, it becomes more negative.) +

+
+ + +

+ One option is a downward-opening parabola, such as -(x-2)^2+4. +

+ + + + +

A downward-opening parabola which has its peak at x=2.

+ +
+ + +

+ One option is a downward-opening parabola, such as -(x-2)^2+4. +

+ + + + +

A downward-opening parabola which has its peak at x=2.

+ +
+
+ + +

+ A function s that is always increasing and increases at a decreasing rate. (Hint: to find a formula, think about how you might use a transformation of a familiar function.) +

+
+ + +

+ For example, s(x) = -\left(\frac{1}{2}\right)^x+5. +

+ + + + +

The function -\left(\frac{1}{2}\right)^x+5, which is increasing at a decreasing rate.

+ +
+ +

+ We know that an exponential function whose b value is between 0 and 1 will be decreasing more and more slowly, so we flip it across the x-axis to obtain a function that is always increasing more and more slowly. For example, s(x) = -\left(\frac{1}{2}\right)^x+5. +

+ + + + +

The function -\left(\frac{1}{2}\right)^x+5, which is increasing at a decreasing rate.

+ + +
+
+ + +

+ A function u that is always decreasing and decreases at a decreasing rate. (Recall that when a negative number decreases, it becomes more negative.) +

+
+ + +

+ For example, s(x) = -\left(\frac{1}{2}\right)^{-x}+5. +

+ + + + +

The function -\left(\frac{1}{2}\right)^{-x}+5, which is decreasing at a decreasing rate.

+ +
+ +

+ We want to take the previous example and flip it left to right, or across the y-axis, to obtain a function that is always decreasing by more and more. For example, s(x) = -\left(\frac{1}{2}\right)^{-x}+5. +

+ + + + +

The function -\left(\frac{1}{2}\right)^{-x}+5, which is decreasing at a decreasing rate.

+ + +
+
+
+
diff --git a/source/activities/act-exp-log-base-10.xml b/source/activities/act-exp-log-base-10.xml index ff5432bd..f9ed0bd0 100755 --- a/source/activities/act-exp-log-base-10.xml +++ b/source/activities/act-exp-log-base-10.xml @@ -1,127 +1,141 @@ - - - - - - - - - - - - - - - - -

- For each of the following equations, determine the exact value of the unknown variable. If the exact value involves a logarithm, use a computational device to also report an approximate value. For instance, if the exact value is y = \log_{10}(2), you can also note that y \approx 0.301. -

-

- - - -

- 10^t = 0.00001 -

- - - - -

- t = \log_{10}(0.00001) = -5, exactly. -

-
- - - -

- \log_{10}(1000000) = t -

-
- - - -

- t = \log_{10}(1000000) = 6, exactly. -

-
-
- - -

- 10^t = 37 -

-
- - - -

- t = \log_{10}(37) \approx 1.568. -

-
-
- - -

- \log_{10}(y) = 1.375 -

-
- - - -

- y = 10^{1.375} \approx 23.71. -

-
-
- - -

- 10^t = 0.04 -

-
- - - -

- t = \log_{10}(0.04) \approx -1.398. -

-
-
- - -

- 3 \cdot 10^t + 11 = 147 -

-
- - - -

- 3 \cdot 10^t + 11 = 147 gives 10^t = \frac{136}{3}, so t = \log_{10}\!\left(\frac{136}{3}\right) \approx 1.656. -

-
-
- - -

- 2\log_{10}(y) + 5 = 1 -

-
- - - -

- 2\log_{10}(y) + 5 = 1 gives \log_{10}(y) = -2, so y = 10^{-2} = 0.01, exactly. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ For each of the following equations, determine the exact value of the unknown variable. If the exact value involves a logarithm, use a computational device to also report an approximate value. For instance, if the exact value is y = \log_{10}(2), you can also note that y \approx 0.301. +

+

+ + + +

+ 10^t = 0.00001 +

+ + + +

+ t = \log_{10}(0.00001) = -5, exactly. +

+
+ +

+ t = \log_{10}(0.00001) = -5, exactly. +

+
+ + + +

+ \log_{10}(1000000) = t +

+
+ + +

+ t = \log_{10}(1000000) = 6, exactly. +

+
+ +

+ t = \log_{10}(1000000) = 6, exactly. +

+
+
+ + +

+ 10^t = 37 +

+
+ + +

+ t = \log_{10}(37) \approx 1.568. +

+
+ +

+ t = \log_{10}(37) \approx 1.568. +

+
+
+ + +

+ \log_{10}(y) = 1.375 +

+
+ + +

+ y = 10^{1.375} \approx 23.71. +

+
+ +

+ y = 10^{1.375} \approx 23.71. +

+
+
+ + +

+ 10^t = 0.04 +

+
+ + +

+ t = \log_{10}(0.04) \approx -1.398. +

+
+ +

+ t = \log_{10}(0.04) \approx -1.398. +

+
+
+ + +

+ 3 \cdot 10^t + 11 = 147 +

+
+ +

t = \log_{10}\left(\frac{136}{3}\right) \approx 1.656

+ +

+ 3 \cdot 10^t + 11 = 147 gives 10^t = \frac{136}{3}, so t = \log_{10}\left(\frac{136}{3}\right) \approx 1.656. +

+
+
+ + +

+ 2\log_{10}(y) + 5 = 1 +

+
+ +

y = 10^{-2} = 0.01, exactly

+ +

+ 2\log_{10}(y) + 5 = 1 gives \log_{10}(y) = -2, so y = 10^{-2} = 0.01, exactly. +

+
+
+
+
diff --git a/source/activities/act-exp-log-equations.xml b/source/activities/act-exp-log-equations.xml index 6fc070ca..cba25bef 100755 --- a/source/activities/act-exp-log-equations.xml +++ b/source/activities/act-exp-log-equations.xml @@ -1,141 +1,151 @@ - - - - - - - - - - - - - - - - -

- Solve each of the following equations for the exact value of the unknown variable. If there is no solution to the equation, explain why not. -

-

- - - -

- e^t = \frac{1}{10} -

- - - - -

- t = \ln\!\left(\frac{1}{10}\right) \approx -2.30 -

-
- - - -

- 5e^{t}=7 -

-
- - - -

- t = \ln\!\left(\frac{7}{5}\right) \approx 0.336 -

-
-
- - -

- \ln(t) = -\frac{1}{3} -

-
- - - -

- t = e^{-1/3} \approx 0.717 -

-
-
- - -

- e^{1-3t} = 4 -

-
- - - -

- e^{1-3t} = 4 gives 1 - 3t = \ln 4, so t = \dfrac{1 - \ln 4}{3} \approx -0.129. -

-
-
- - -

- 2\ln(t) + 1 = 4 -

-
- - - -

- 2\ln(t) + 1 = 4 gives \ln(t) = \frac{3}{2}, so t = e^{3/2} \approx 4.48. -

-
-
- - -

- 4 - 3e^{2t} = 2 -

-
- - - -

- 4 - 3e^{2t} = 2 gives e^{2t} = \frac{2}{3}, so t = \frac{1}{2}\ln\!\left(\frac{2}{3}\right) \approx -0.203. -

-
-
- - -

- 4 + 3e^{2t} = 2 -

-
- - - -

- There is no solution because the equation gives e^{2t} = -\frac{2}{3}, and there is no exponent for which e raised to that power is negative. -

-
-
- - -

- \ln(5 - 6t) = -2 -

-
- - - -

- \ln(5 - 6t) = -2 gives 5 - 6t = e^{-2}, so t = \frac{5 - e^{-2}}{6} \approx 0.811. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Solve each of the following equations for the exact value of the unknown variable. If there is no solution to the equation, explain why not. +

+

+ + + +

+ e^t = \frac{1}{10} +

+ + + +

+ t = \ln\left(\frac{1}{10}\right) \approx -2.30 +

+
+ +

+ t = \ln\left(\frac{1}{10}\right) \approx -2.30 +

+
+ + + +

+ 5e^{t}=7 +

+
+ + +

+ t = \ln\left(\frac{7}{5}\right) \approx 0.336 +

+
+ +

+ t = \ln\left(\frac{7}{5}\right) \approx 0.336 +

+
+
+ + +

+ \ln(t) = -\frac{1}{3} +

+
+ + +

+ t = e^{-1/3} \approx 0.717 +

+
+ +

+ t = e^{-1/3} \approx 0.717 +

+
+
+ + +

+ e^{1-3t} = 4 +

+
+ +

t = \dfrac{1 - \ln 4}{3} \approx -0.129

+ +

+ e^{1-3t} = 4 gives 1 - 3t = \ln 4, so t = \dfrac{1 - \ln 4}{3} \approx -0.129. +

+
+
+ + +

+ 2\ln(t) + 1 = 4 +

+
+ +

t = e^{3/2} \approx 4.48

+ +

+ 2\ln(t) + 1 = 4 gives \ln(t) = \frac{3}{2}, so t = e^{3/2} \approx 4.48. +

+
+
+ + +

+ 4 - 3e^{2t} = 2 +

+
+ +

t = \frac{1}{2}\ln\left(\frac{2}{3}\right) \approx -0.203

+ +

+ 4 - 3e^{2t} = 2 gives e^{2t} = \frac{2}{3}, so t = \frac{1}{2}\ln\left(\frac{2}{3}\right) \approx -0.203. +

+
+
+ + +

+ 4 + 3e^{2t} = 2 +

+
+ + +

+ There is no solution because the equation gives e^{2t} = -\frac{2}{3}, and there is no exponent for which e raised to that power is negative. +

+
+ +

+ There is no solution because the equation gives e^{2t} = -\frac{2}{3}, and there is no exponent for which e raised to that power is negative. +

+
+
+ + +

+ \ln(5 - 6t) = -2 +

+
+ +

t = \frac{5 - e^{-2}}{6} \approx 0.811

+ +

+ \ln(5 - 6t) = -2 gives 5 - 6t = e^{-2}, so t = \frac{5 - e^{-2}}{6} \approx 0.811. +

+
+
+
+
diff --git a/source/activities/act-exp-log-exponential-equations.xml b/source/activities/act-exp-log-exponential-equations.xml index 9d0c4498..2a095f2d 100755 --- a/source/activities/act-exp-log-exponential-equations.xml +++ b/source/activities/act-exp-log-exponential-equations.xml @@ -1,113 +1,107 @@ - - - - - - - - - - - - - - - - -

- Solve each of the following equations exactly and then find an estimate that is accurate to 5 decimal places. -

-

- - - -

- 3^t = 5 -

- - - - -

- From 3^t = 5, we take the natural log of both sides to get t \ln 3 = \ln 5, so t = \dfrac{\ln 5}{\ln 3} \approx 1.46497. -

-
- - - -

- 4 \cdot 2^t - 2 = 3 -

-
- - - -

- From 4 \cdot 2^t - 2 = 3, we get 2^t = \frac{5}{4}, so t \ln 2 = \ln\!\left(\frac{5}{4}\right) and t = \dfrac{\ln 5 - \ln 4}{\ln 2} \approx 0.32193. -

-
-
- - -

- 3.7 \cdot (0.9)^{0.3t} + 1.5 = 2.1 -

-
- - - -

- From 3.7 \cdot (0.9)^{0.3t} + 1.5 = 2.1, we get (0.9)^{0.3t} = \frac{0.6}{3.7}, so 0.3t \ln(0.9) = \ln\!\left(\frac{0.6}{3.7}\right) and t = \dfrac{\ln(0.6) - \ln(3.7)}{0.3\ln(0.9)} \approx 57.55. -

-
-
- - -

- 72 - 30(0.7)^{0.05t} = 60 -

-
- - - -

- From 72 - 30(0.7)^{0.05t} = 60, we get (0.7)^{0.05t} = \frac{12}{30} = \frac{2}{5}, so 0.05t \ln(0.7) = \ln\!\left(\frac{2}{5}\right) and t = \dfrac{\ln(12) - \ln(30)}{0.05\ln(0.7)} \approx 51.38. -

-
-
- - -

- \ln(t) = -2 -

-
- - - -

- From \ln(t) = -2, we get t = e^{-2} \approx 0.13534. -

-
-
- - -

- 3 + 2\log_{10}(t) = 3.5 -

-
- - - -

- From 3 + 2\log_{10}(t) = 3.5, we get \log_{10}(t) = 0.25, so t = 10^{0.25} \approx 1.77828. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Solve each of the following equations exactly and then find an estimate that is accurate to 5 decimal places. +

+

+ + + +

+ 3^t = 5 +

+ + +

t = \dfrac{\ln 5}{\ln 3} \approx 1.46497

+ +

+ From 3^t = 5, we take the natural log of both sides to get t \ln 3 = \ln 5, so t = \dfrac{\ln 5}{\ln 3} \approx 1.46497. +

+
+ + + +

+ 4 \cdot 2^t - 2 = 3 +

+
+ +

t = \dfrac{\ln 5 - \ln 4}{\ln 2} \approx 0.32193

+ +

+ From 4 \cdot 2^t - 2 = 3, we get 2^t = \frac{5}{4}, so t \ln 2 = \ln\left(\frac{5}{4}\right) and t = \dfrac{\ln 5 - \ln 4}{\ln 2} \approx 0.32193. +

+
+
+ + +

+ 3.7 \cdot (0.9)^{0.3t} + 1.5 = 2.1 +

+
+ +

t = \dfrac{\ln(0.6) - \ln(3.7)}{0.3\ln(0.9)} \approx 57.55

+ +

+ From 3.7 \cdot (0.9)^{0.3t} + 1.5 = 2.1, we get (0.9)^{0.3t} = \frac{0.6}{3.7}, so 0.3t \ln(0.9) = \ln\left(\frac{0.6}{3.7}\right) and t = \dfrac{\ln(0.6) - \ln(3.7)}{0.3\ln(0.9)} \approx 57.55. +

+
+
+ + +

+ 72 - 30(0.7)^{0.05t} = 60 +

+
+ +

t = \dfrac{\ln(12) - \ln(30)}{0.05\ln(0.7)} \approx 51.38

+ +

+ From 72 - 30(0.7)^{0.05t} = 60, we get (0.7)^{0.05t} = \frac{12}{30} = \frac{2}{5}, so 0.05t \ln(0.7) = \ln\!\left(\frac{2}{5}\right) and t = \dfrac{\ln(12) - \ln(30)}{0.05\ln(0.7)} \approx 51.38. +

+
+
+ + +

+ \ln(t) = -2 +

+
+ +

t = e^{-2} \approx 0.13534

+ +

+ From \ln(t) = -2, we get t = e^{-2} \approx 0.13534. +

+
+
+ + +

+ 3 + 2\log_{10}(t) = 3.5 +

+
+ +

t = 10^{0.25} \approx 1.77828

+ +

+ From 3 + 2\log_{10}(t) = 3.5, we get \log_{10}(t) = 0.25, so t = 10^{0.25} \approx 1.77828. +

+
+
+
+
diff --git a/source/activities/act-exp-log-natural.xml b/source/activities/act-exp-log-natural.xml index be0a98bf..ccaacab7 100755 --- a/source/activities/act-exp-log-natural.xml +++ b/source/activities/act-exp-log-natural.xml @@ -1,216 +1,289 @@ - - - - - - - - - - - - - - - - -

- Let E(t) = e^t and N(y) = \ln(y) be the natural exponential function and the natural logarithm function, respectively. -

-

- - - -

- What are the domain and range of E? -

- - - - -

- The domain of E(t) = e^t is all real numbers, and its range is all positive real numbers. -

-
- - - -

- What are the domain and range of N? -

-
- - - -

- The domain of N(y) = \ln(y) is all positive real numbers, and its range is all real numbers. -

-
-
- - -

- What can you say about \ln(e^t) for every real number t? -

-
- - - -

- For every real number t, \ln(e^t) = t. -

-
-
- - -

- What can you say about e^{\ln(y)} for every positive real number y? -

-
- - - -

- For every positive real number y, e^{\ln(y)} = y. -

-
-
- - -

- Complete the following tables with both exact and approximate values of E and N. Then, plot the corresponding ordered pairs from each table on the axes provided and connect the points in an intuitive way. When you plot the ordered pairs on the axes, in both cases view the first line of the table as generating values on the horizontal axis and the second line of the table as producing values on the vertical axis. Note that when we take this perspective for plotting the data in the table for N, we are viewing N as a function of t, writing N(t) = \ln(t) in order to plot the function on the t-y axes; label each ordered pair you plot appropriately. -

-

- - - - - t - - - -2 - - - -1 - - - 0 - - - 1 - - - 2 - - - - - E(t)=e^t - - - e^{-2} \approx 0.135 - - - - - - - - - - - - y - - - e^{-2} - - - e^{-1} - - - 1 - - - e^1 - - - e^2 - - - - - N(y)=\ln(y) - - - -2 - - - - - - - - -

- -

ADD ALT TEXT TO THIS IMAGE

- -
- - - - - - t - -2 - -1 - 0 - 1 - 2 - - - E(t) = e^t (exact) - e^{-2} - e^{-1} - 1 - e - e^2 - - - E(t) = e^t (approx.) - 0.135 - 0.368 - 1 - 2.718 - 7.39 - - - - - y - e^{-2} - e^{-1} - 1 - e^1 - e^2 - - - N(y) = \ln(y) - -2 - -1 - 0 - 1 - 2 - - - - -
- -
-
+ + + + + + + + + + + + + + + + +

+ Let E(t) = e^t and N(y) = \ln(y) be the natural exponential function and the natural logarithm function, respectively. +

+

+ + + +

+ What are the domain and range of E? +

+ + + +

+ The domain of E(t) = e^t is all real numbers, and its range is all positive real numbers. +

+
+ +

+ The domain of E(t) = e^t is all real numbers, and its range is all positive real numbers. +

+
+ + + +

+ What are the domain and range of N? +

+
+ + +

+ The domain of N(y) = \ln(y) is all positive real numbers, and its range is all real numbers. +

+
+ +

+ The domain of N(y) = \ln(y) is all positive real numbers, and its range is all real numbers. +

+
+
+ + +

+ What can you say about \ln(e^t) for every real number t? +

+
+ + +

+ For every real number t, \ln(e^t) = t. +

+
+ +

+ For every real number t, \ln(e^t) = t. +

+
+
+ + +

+ What can you say about e^{\ln(y)} for every positive real number y? +

+
+ + +

+ For every positive real number y, e^{\ln(y)} = y. +

+
+ +

+ For every positive real number y, e^{\ln(y)} = y. +

+
+
+ + +

+ Complete the following tables with both exact and approximate values of E and N. Then, plot the corresponding ordered pairs from each table on the axes provided and connect the points in an intuitive way. When you plot the ordered pairs on the axes, in both cases view the first line of the table as generating values on the horizontal axis and the second line of the table as producing values on the vertical axis. Note that when we take this perspective for plotting the data in the table for N, we are viewing N as a function of t, writing N(t) = \ln(t) in order to plot the function on the t-y axes; label each ordered pair you plot appropriately. +

+ + + + + t + + + -2 + + + -1 + + + 0 + + + 1 + + + 2 + + + + + E(t)=e^t + + + e^{-2} \approx 0.135 + + + + + + + + + + + + y + + + e^{-2} + + + e^{-1} + + + 1 + + + e^1 + + + e^2 + + + + + N(y)=\ln(y) + + + + + + -2 + + + + + + + + + + + + + + + + + +

Blank axes for graphing e^t and \ln(t)

+ +
+ + + + + t + -2 + -1 + 0 + 1 + 2 + + + E(t) = e^t (exact) + e^{-2} + e^{-1} + 1 + e + e^2 + + + E(t) = e^t (approx.) + 0.135 + 0.368 + 1 + 2.718 + 7.39 + + + + + y + e^{-2} + e^{-1} + 1 + e^1 + e^2 + + + N(y) = \ln(y) + -2 + -1 + 0 + 1 + 2 + + + +

graphs of e^t and \ln(t) with points from the tables labeled on the graphs

+
+ + + + t + -2 + -1 + 0 + 1 + 2 + + + E(t) = e^t (exact) + e^{-2} + e^{-1} + 1 + e + e^2 + + + E(t) = e^t (approx.) + 0.135 + 0.368 + 1 + 2.718 + 7.39 + + + + + y + e^{-2} + e^{-1} + 1 + e^1 + e^2 + + + N(y) = \ln(y) + -2 + -1 + 0 + 1 + 2 + + + +

graphs of e^t and \ln(t) with points from the tables labeled on the graphs

+
+
+ +
+
diff --git a/source/activities/act-exp-log-properties-exp-or-log.xml b/source/activities/act-exp-log-properties-exp-or-log.xml index f17470f2..b55cec3b 100755 --- a/source/activities/act-exp-log-properties-exp-or-log.xml +++ b/source/activities/act-exp-log-properties-exp-or-log.xml @@ -1,126 +1,136 @@ - - - - - - - - - - - - - - - - -

- In the questions that follow, we compare and contrast the properties and behaviors of exponential and logarithmic functions. -

-

- - - -

- Let f(t) = 1 - e^{-(t-1)} and g(t) = \ln(t). Plot each function on the same set of coordinate axes. What properties do the two functions have in common? For what properties do the two functions differ? Consider each function's domain, range, t-intercept, y-intercept, increasing/decreasing behavior, concavity, and long-term behavior. -

- - - - -

- Both f(t) = 1 - e^{-(t-1)} and g(t) = \ln(t) are always increasing and concave down, and both have a t-intercept at t = 1. The domain of f is all real numbers, while the domain of g is all positive real numbers. The range of f is the interval (-\infty, 1), while the range of g is all real numbers. The y-intercept of f is f(0) = 1 - e \approx -1.718, while g has no y-intercept since t = 0 is not in its domain. As t \to \infty, f(t) \to 1 (bounded), while g(t) \to \infty (unbounded). -

-
- - - -

- Let h(t) = a - be^{-k(t-c)}, where a, b, c, and k are positive constants. Describe h as a transformation of the function E(t) = e^t. -

-
- - - -

- The function h(t) = a - be^{-k(t-c)} is a transformation of E(t) = e^t in which E(t) is reflected over the horizontal axis and vertically stretched by a factor of b, horizontally compressed by a factor of k (with a horizontal reflection), shifted horizontally to the right by c units, and shifted vertically up by a units. -

-
-
- - -

- Let r(t) = a + b\ln(t-c), where a, b, and c are positive constants. Describe r as a transformation of the function L(t) = \ln(t). -

-
- - - -

- The function r(t) = a + b\ln(t - c) is a transformation of L(t) = \ln(t) that is vertically stretched by a factor of b, shifted horizontally to the right by c units, and shifted vertically up by a units. -

-
-
- - -

- Data for the height of a tree is given in the following table; - time t is measured in years and height is given in feet. At http://gvsu.edu/s/0yy, you can find a Desmos worksheet with this data already input. -

- - - - - t - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - 11 - - - - h(t) - - 6 - 9.5 - 13 - 15 - 16.5 - 17.5 - 18.5 - 19 - 19.5 - 19.7 - 19.8 - - - -

- Do you think this data is better modeled by a logarithmic function of form p(t) = a + b\ln(t-c) or by an exponential function of form q(t) = m + ne^{-rt}. Provide reasons based in how the data appears and how you think a tree grows, as well as by experimenting with sliders appropriately in Desmos. (Note: you may need to adjust the upper and lower bounds of several of the sliders in order to match the data well.) -

-
- - - -

- Experimenting with Desmos, the exponential model q(t) = m + ne^{-rt} provides a good fit to the data; for instance, q(t) = 20.3 - 20.8e^{-0.35t} fits well. A logarithmic model is not as effective because the data levels off at a horizontal asymptote, which is consistent with an exponential model of the form a + be^{-kt} but not with a logarithmic model whose values grow without bound. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ In the questions that follow, we compare and contrast the properties and behaviors of exponential and logarithmic functions. +

+

+ + + +

+ Let f(t) = 1 - e^{-(t-1)} and g(t) = \ln(t). Plot each function on the same set of coordinate axes. What properties do the two functions have in common? For what properties do the two functions differ? Consider each function's domain, range, t-intercept, y-intercept, increasing/decreasing behavior, concavity, and long-term behavior. +

+ + + +

+ Both f(t) = 1 - e^{-(t-1)} and g(t) = \ln(t) are always increasing and concave down, and both have a t-intercept at t = 1. The domain of f is all real numbers, while the domain of g is all positive real numbers. The range of f is the interval (-\infty, 1), while the range of g is all real numbers. The y-intercept of f is f(0) = 1 - e \approx -1.718, while g has no y-intercept since t = 0 is not in its domain. As t \to \infty, f(t) \to 1 (bounded), while g(t) \to \infty (unbounded). +

+
+ +

+ Both f(t) = 1 - e^{-(t-1)} and g(t) = \ln(t) are always increasing and concave down, and both have a t-intercept at t = 1. The domain of f is all real numbers, while the domain of g is all positive real numbers. The range of f is the interval (-\infty, 1), while the range of g is all real numbers. The y-intercept of f is f(0) = 1 - e \approx -1.718, while g has no y-intercept since t = 0 is not in its domain. As t \to \infty, f(t) \to 1 (bounded), while g(t) \to \infty (unbounded). +

+
+ + + +

+ Let h(t) = a - be^{-k(t-c)}, where a, b, c, and k are positive constants. Describe h as a transformation of the function E(t) = e^t. +

+
+ + +

+ The function h(t) = a - be^{-k(t-c)} is a transformation of E(t) = e^t in which E(t) is reflected over the horizontal axis and vertically stretched by a factor of b, horizontally compressed by a factor of k (with a horizontal reflection), shifted horizontally to the right by c units, and shifted vertically up by a units. +

+
+ +

+ The function h(t) = a - be^{-k(t-c)} is a transformation of E(t) = e^t in which E(t) is reflected over the horizontal axis and vertically stretched by a factor of b, horizontally compressed by a factor of k (with a horizontal reflection), shifted horizontally to the right by c units, and shifted vertically up by a units. +

+
+
+ + +

+ Let r(t) = a + b\ln(t-c), where a, b, and c are positive constants. Describe r as a transformation of the function L(t) = \ln(t). +

+
+ + +

+ The function r(t) = a + b\ln(t - c) is a transformation of L(t) = \ln(t) that is vertically stretched by a factor of b, shifted horizontally to the right by c units, and shifted vertically up by a units. +

+
+ +

+ The function r(t) = a + b\ln(t - c) is a transformation of L(t) = \ln(t) that is vertically stretched by a factor of b, shifted horizontally to the right by c units, and shifted vertically up by a units. +

+
+
+ + +

+ Data for the height of a tree is given in the following table; + time t is measured in years and height is given in feet. At http://gvsu.edu/s/0yy, you can find a Desmos worksheet with this data already input. +

+ + + + + t + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + + + + h(t) + + 6 + 9.5 + 13 + 15 + 16.5 + 17.5 + 18.5 + 19 + 19.5 + 19.7 + 19.8 + + + +

+ Do you think this data is better modeled by a logarithmic function of form p(t) = a + b\ln(t-c) or by an exponential function of form q(t) = m + ne^{-rt}. Provide reasons based in how the data appears and how you think a tree grows, as well as by experimenting with sliders appropriately in Desmos. (Note: you may need to adjust the upper and lower bounds of several of the sliders in order to match the data well.) +

+
+ + +

+ Experimenting with Desmos, the exponential model q(t) = m + ne^{-rt} provides a good fit to the data; for instance, q(t) = 20.3 - 20.8e^{-0.35t} fits well. A logarithmic model is not as effective because the data levels off at a horizontal asymptote, which is consistent with an exponential model of the form a + be^{-kt} but not with a logarithmic model whose values grow without bound. +

+
+ +

+ Experimenting with Desmos, the exponential model q(t) = m + ne^{-rt} provides a good fit to the data; for instance, q(t) = 20.3 - 20.8e^{-0.35t} fits well. A logarithmic model is not as effective because the data levels off at a horizontal asymptote, which is consistent with an exponential model of the form a + be^{-kt} but not with a logarithmic model whose values grow without bound. +

+
+
+
+
diff --git a/source/activities/act-exp-log-properties-find-k.xml b/source/activities/act-exp-log-properties-find-k.xml index 486b83ab..68e1e6ce 100755 --- a/source/activities/act-exp-log-properties-find-k.xml +++ b/source/activities/act-exp-log-properties-find-k.xml @@ -1,85 +1,79 @@ - - - - - - - - - - - - - - - - -

- Solve each of the following equations for the exact value of k. -

-

- - - -

- 41 = 50e^{-k \cdot 7} -

- - - - -

- From 41 = 50e^{-7k}, we get e^{-7k} = \frac{41}{50}, so -7k = \ln\!\left(\frac{41}{50}\right) and k = -\dfrac{\ln(41/50)}{7}. -

-
- - - -

- 65 = 34 + 47e^{-k \cdot 45} -

-
- - - -

- From 65 = 34 + 47e^{-45k}, we get 31 = 47e^{-45k}, so e^{-45k} = \frac{31}{47} and k = -\dfrac{\ln(31/47)}{45}. -

-
-
- - -

- 7e^{2k-1} + 4 = 32 -

-
- - - -

- From 7e^{2k-1} + 4 = 32, we get e^{2k-1} = 4, so 2k - 1 = \ln 4 and k = \dfrac{\ln 4 + 1}{2}. -

-
-
- - -

- \frac{5}{1+2e^{-10k}} = 4 -

-
- - - -

- From \dfrac{5}{1 + 2e^{-10k}} = 4, we get 5 = 4 + 8e^{-10k}, so e^{-10k} = \frac{1}{8} and k = -\dfrac{\ln(1/8)}{10} = \dfrac{\ln 8}{10}. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Solve each of the following equations for the exact value of k. +

+

+ + + +

+ 41 = 50e^{-k \cdot 7} +

+ + +

k = -\dfrac{\ln(41/50)}{7}

+ +

+ From 41 = 50e^{-7k}, we get e^{-7k} = \frac{41}{50}, so -7k = \ln\!\left(\frac{41}{50}\right) and k = -\dfrac{\ln(41/50)}{7}. +

+
+ + + +

+ 65 = 34 + 47e^{-k \cdot 45} +

+
+ +

k = -\dfrac{\ln(31/47)}{45}

+ +

+ From 65 = 34 + 47e^{-45k}, we get 31 = 47e^{-45k}, so e^{-45k} = \frac{31}{47} and k = -\dfrac{\ln(31/47)}{45}. +

+
+
+ + +

+ 7e^{2k-1} + 4 = 32 +

+
+ +

k = \dfrac{\ln 4 + 1}{2}

+ +

+ From 7e^{2k-1} + 4 = 32, we get e^{2k-1} = 4, so 2k - 1 = \ln 4 and k = \dfrac{\ln 4 + 1}{2}. +

+
+
+ + +

+ \frac{5}{1+2e^{-10k}} = 4 +

+
+ +

k = -\dfrac{\ln(1/8)}{10} = \dfrac{\ln 8}{10}

+ +

+ From \dfrac{5}{1 + 2e^{-10k}} = 4, we get 5 = 4 + 8e^{-10k}, so e^{-10k} = \frac{1}{8} and k = -\dfrac{\ln(1/8)}{10} = \dfrac{\ln 8}{10}. +

+
+
+
+
diff --git a/source/activities/act-exp-modeling-behavior.xml b/source/activities/act-exp-modeling-behavior.xml index 52e174c6..85d2b88e 100755 --- a/source/activities/act-exp-modeling-behavior.xml +++ b/source/activities/act-exp-modeling-behavior.xml @@ -1,130 +1,148 @@ - - - - - - - - - - - - - - - - -

- For each of the following functions, without using graphing technology, determine whether the function is -

    -
  1. -

    - always increasing or always decreasing; -

    -
  2. -
  3. -

    - always concave up or always concave down; and -

    -
  4. -
  5. -

    - increasing without bound, decreasing without bound, or increasing/decreasing toward a finite value. -

    -
  6. -
- In addition, state the y-intercept and the range of the function. For each function, write a sentence that explains your thinking and sketch a rough graph of how the function appears. -

-
- - -

- p(t) = 4372 (1.000235)^t + 92856 -

-
- - - -

- The function p(t) = 4372(1.000235)^t + 92856 is always increasing, always concave up, and increasing without bound. The y-intercept is p(0) = 97{,}228 and the range is (92856, \infty). -

-
-
- - -

- q(t) = 27931 (0.97231)^t + 549786 -

-
- - - -

- The function q(t) = 27931(0.97231)^t + 549786 is always decreasing, always concave up, and decreasing toward 549786. The y-intercept is q(0) = 577{,}717 and the range is (549786, \infty). -

-
-
- - -

- r(t) = -17398 (0.85234)^t -

-
- - - -

- The function r(t) = -17398(0.85234)^t is always increasing, always concave down, and increasing toward 0. The y-intercept is r(0) = -17398 and the range is (-\infty, 0). -

-
-
- - -

- s(t) = -17398 (0.85234)^t + 19411 -

-
- - - -

- The function s(t) = -17398(0.85234)^t + 19411 is always increasing, always concave down, and increasing toward the value 19411. The y-intercept is s(0) = 2013 and the range is (-\infty, 19411). -

-
-
- - -

- u(t) = -7522 (1.03817)^t -

-
- - - -

- The function u(t) = -7522(1.03817)^t is always decreasing, always concave down, and decreasing without bound. The y-intercept is u(0) = -7522 and the range is (-\infty, 0). -

-
-
- - -

- v(t) = -7522 (1.03817)^t + 6731 -

-
- - - -

- The function v(t) = -7522(1.03817)^t + 6731 is always decreasing, always concave down, and decreasing without bound. The y-intercept is v(0) = -791 and the range is (-\infty, 6731). -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ For each of the following functions, without using graphing technology, determine whether the function is +

    +
  1. +

    + always increasing or always decreasing; +

    +
  2. +
  3. +

    + always concave up or always concave down; and +

    +
  4. +
  5. +

    + increasing without bound, decreasing without bound, or increasing/decreasing toward a finite value. +

    +
  6. +
+ In addition, state the y-intercept and the range of the function. For each function, write a sentence that explains your thinking and sketch a rough graph of how the function appears. +

+ + + +

+ p(t) = 4372 (1.000235)^t + 92856 +

+
+ + +

+ The function p(t) = ab^t+c = 4372(1.000235)^t + 92856 has a \gt 0 and b \gt 1, so p(t) is always increasing, always concave up, and increasing without bound and has been shifted vertically up by 92856. The y-intercept is p(0) = 4372+92856= 97228 and the range is (92856, \infty). +

+
+ +

+ The function p(t) = ab^t+c = 4372(1.000235)^t + 92856 has a \gt 0 and b \gt 1, so p(t) is always increasing, always concave up, and increasing without bound and has been shifted vertically up by 92856. The y-intercept is p(0) = 4372+92856= 97228 and the range is (92856, \infty). +

+
+
+ + +

+ q(t) = 27931 (0.97231)^t + 549786 +

+
+ + +

+ The function q(t) = 27931(0.97231)^t + 549786 is always decreasing, always concave up, and decreasing toward 549786. The y-intercept is q(0) = 577717 and the range is (549786, \infty). +

+
+ +

+ The function q(t) = 27931(0.97231)^t + 549786 is always decreasing, always concave up, and decreasing toward 549786. The y-intercept is q(0) = 577717 and the range is (549786, \infty). +

+
+
+ + +

+ r(t) = -17398 (0.85234)^t +

+
+ + +

+ The function r(t) = -17398(0.85234)^t is always increasing, always concave down, and increasing toward 0. The y-intercept is r(0) = -17398 and the range is (-\infty, 0). +

+
+ +

+ The function r(t) = -17398(0.85234)^t is always increasing, always concave down, and increasing toward 0. The y-intercept is r(0) = -17398 and the range is (-\infty, 0). +

+
+
+ + +

+ s(t) = -17398 (0.85234)^t + 19411 +

+
+ + +

+ The function s(t) = -17398(0.85234)^t + 19411 is always increasing, always concave down, and increasing toward the value 19411. The y-intercept is s(0) = 2013 and the range is (-\infty, 19411). +

+
+ +

+ The function s(t) = -17398(0.85234)^t + 19411 is always increasing, always concave down, and increasing toward the value 19411. The y-intercept is s(0) = 2013 and the range is (-\infty, 19411). +

+
+
+ + +

+ u(t) = -7522 (1.03817)^t +

+
+ + +

+ The function u(t) = -7522(1.03817)^t is always decreasing, always concave down, and decreasing without bound. The y-intercept is u(0) = -7522 and the range is (-\infty, 0). +

+
+ +

+ The function u(t) = -7522(1.03817)^t is always decreasing, always concave down, and decreasing without bound. The y-intercept is u(0) = -7522 and the range is (-\infty, 0). +

+
+
+ + +

+ v(t) = -7522 (1.03817)^t + 6731 +

+
+ + +

+ The function v(t) = -7522(1.03817)^t + 6731 is always decreasing, always concave down, and decreasing without bound. The y-intercept is v(0) = -791 and the range is (-\infty, 6731). +

+
+ +

+ The function v(t) = -7522(1.03817)^t + 6731 is always decreasing, always concave down, and decreasing without bound. The y-intercept is v(0) = -791 and the range is (-\infty, 6731). +

+
+
+
+
diff --git a/source/activities/act-exp-modeling-potato.xml b/source/activities/act-exp-modeling-potato.xml index 20309a4c..a7971cb0 100755 --- a/source/activities/act-exp-modeling-potato.xml +++ b/source/activities/act-exp-modeling-potato.xml @@ -1,113 +1,142 @@ - - - - - - - - - - - - - - - - -

- A potato initially at room temperature (68^\circ) is placed in an oven (at 350^\circ) at time t = 0. - It is known that the potato's temperature at time t is given by the function - F(t) = a - b(0.98)^t for some positive constants a and b, - where F is measured in degrees Fahrenheit and t is time in minutes. -

-

- - - -

- What is the numerical value of F(0)? - What does this tell you about the value of a - b? -

- - - - -

- The numerical value of F(0) is 68^\circ, because the potato begins at room temperature. Therefore, F(0) = a - b(0.98)^0 = a - b = 68. -

-
- - - -

- Based on the context of the problem, - what should be the long-range behavior of the function F(t)? - Use this fact along with the behavior of - (0.98)^t to determine the value of a. Write a sentence to explain your thinking. -

-
- - - -

- The long-range behavior of F(t) should reflect the potato approaching the oven temperature of 350^\circ. The expression (0.98)^t approaches zero as t gets large, so F(t) \to a. Therefore a = 350^\circ. -

-
-
- - -

- What is the value of b? Why? -

-
- - - -

- The value of b is a - 68 = 350 - 68 = 282^\circ, since we established that a - b = 68 and a = 350. -

-
-
- - -

- Check your work above by plotting the function F using graphing technology in an appropriate window. - Record your results on the axes provided below, labeling the scale on the axes. - Then, use the graph to estimate the time at which the potato's temperature reaches 325 degrees. -

- -

ADD ALT TEXT TO THIS IMAGE

- -
- - - -

- The function F(t) = 350 - 282(0.98)^t is shown below. The potato reaches 325 degrees after about 120 minutes of baking in the 350 degree oven. -

- -
-
- - -

- How can we view the function F(t) = a - b(0.98)^t as a transformation of the parent function f(t) = (0.98)^t? Explain. -

-
- - - -

- We can view F(t) = a - b(0.98)^t as a transformation of the parent function f(t) = (0.98)^t by first stretching f vertically by a factor of b, then reflecting over the t-axis, and finally shifting vertically up by a units. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ A potato initially at room temperature (68^\circ) is placed in an oven (at 350^\circ) at time t = 0. It turns out that the potato's temperature will eventually stabilize near the boiling point of water, or 212^\circ. + It is known that the potato's temperature at time t is given by the function + F(t) = a - b(0.98)^t for some positive constants a and b, + where F is measured in degrees Fahrenheit and t is time in minutes. +

+

+ + + +

+ What is the numerical value of F(0)? + What does this tell you about the value of a - b? +

+ + + +

+ F(0)=68^\circ, and a - b = 68 +

+
+ +

+ The numerical value of F(0) is 68^\circ, because the potato begins at room temperature. Therefore, F(0) = a - b(0.98)^0 = a - b = 68. +

+
+ + + +

+ Based on the context of the problem, + what should be the long-range behavior of the function F(t)? + Use this fact along with the behavior of + (0.98)^t to determine the value of a. Write a sentence to explain your thinking. +

+
+ + +

+ The expression (0.98)^t approaches zero as t gets large, so F(t) \to a, and therefore a = 212^\circ. +

+
+ +

+ The long-range behavior of F(t) should reflect the potato approaching the boiling point of water, or 212^\circ. The expression (0.98)^t approaches zero as t gets large, so F(t) \to a. Therefore a = 212^\circ. +

+
+
+ + +

+ What is the value of b? Why? +

+
+ +

b=144^\circ

+ +

+ The value of b is a - 68 = 212 - 68 = 144^\circ, since we established that a - b = 68 and a = 212. +

+
+
+ + +

+ Check your work above by plotting the function F using graphing technology in an appropriate window. + Record your results on the axes provided below, labeling the scale on the axes. + Then, use the graph to estimate the time at which the potato's temperature reaches 180 degrees. +

+ + + + + +

Blank axes for plotting F as a function of t.

+ + + + +
+ + +

+ The function F(t) = 212 - 144(0.98)^t is shown below. The potato reaches 180 degrees after about 75 minutes of baking in the 350 degree oven. +

+ + + + +

Graph of F(t)=212-144(0.98)^t.

+ +
+ +

+ The function F(t) = 212 - 144(0.98)^t is shown below. The potato reaches 180 degrees after about 75 minutes of baking in the 350 degree oven. +

+ + + + +

Graph of F(t)=212-144(0.98)^t.

+ + +
+
+ + +

+ How can we view the function F(t) = a - b(0.98)^t as a transformation of the parent function f(t) = (0.98)^t? Explain. +

+
+ + +

+ We can view F(t) = a - b(0.98)^t as a transformation of the parent function f(t) = (0.98)^t by first stretching f vertically by a factor of b, then reflecting over the t-axis, and finally shifting vertically up by a units. +

+
+ +

+ We can view F(t) = a - b(0.98)^t as a transformation of the parent function f(t) = (0.98)^t by first stretching f vertically by a factor of b, then reflecting over the t-axis, and finally shifting vertically up by a units. +

+
+
+
+
diff --git a/source/activities/act-exp-modeling-soda.xml b/source/activities/act-exp-modeling-soda.xml index d981498c..0eb8b752 100755 --- a/source/activities/act-exp-modeling-soda.xml +++ b/source/activities/act-exp-modeling-soda.xml @@ -1,128 +1,163 @@ - - - - - - - - - - - - - - - - -

- A can of soda (at room temperature) is placed in a refrigerator at time t = 0 (in minutes) - and its temperature, F(t), in degrees Fahrenheit, is computed at regular intervals. - Based on the data, a model is formulated for the object's temperature, given by - - F(t) = 42 + 30(0.95)^{t} - . -

-

- - - -

- Consider the simpler (parent) function p(t) = (0.95)^t. - How do you expect the graph of this function to appear? - How will it behave as time increases? - Without using graphing technology, - sketch a rough graph of p and write a sentence of explanation. -

- - - - -

- The graph of p(t) = (0.95)^t is always decreasing, always concave up, and decreasing toward zero. -

- -
- - - -

- For the slightly more complicated function r(t) = 30 (0.95)^{t}, how do you expect this function to look in comparison to p? What is the long-range behavior of this function as t increases? - Without using graphing technology, sketch a rough graph of r and write a sentence of explanation. -

-
- - - -

- The function r(t) = 30(0.95)^t is similar to p(t) but stretched vertically by a factor of 30. It is always decreasing, always concave up, and decreasing toward zero. -

- -
-
- - -

- Finally, how do you expect the graph of F(t) = 42 + 30(0.95)^{t} to appear? - Why? First sketch a rough graph without graphing technology, and then use technology to check your thinking - and report an accurate, labeled graph on the axes provided below. -

- -

ADD ALT TEXT TO THIS IMAGE

- -
- - - -

- Since F(t) = 42 + 30(0.95)^t has a vertical shift of 42 up, it remains always decreasing, always concave up, but decreasing toward 42. -

- -
-
- - -

- What is the temperature of the refrigerator? - What is the room temperature of the surroundings outside the refrigerator? - Why? -

-
- - - -

- Because F(t) decreases toward 42, that is the temperature of the refrigerator. Because the function starts at 42 + 30 = 72, that is the room temperature of the surroundings outside the refrigerator. -

-
-
- - -

- Determine the average rate of change of F on the intervals [10,20], - [20,30], and [30,40]. - Write at least two careful sentences that explain the meaning of the values you found, including units, - and discuss any overall trend in how the average rate of change is changing. -

-
- - - -

- - AV_{[10,20]} &= \frac{30(0.95^{20} - 0.95^{10})}{20-10} \approx -0.721 \text{ degrees per minute} \\ - AV_{[20,30]} &= \frac{30(0.95^{30} - 0.95^{20})}{30-20} \approx -0.432 \text{ degrees per minute} \\ - AV_{[30,40]} &= \frac{30(0.95^{40} - 0.95^{30})}{40-30} \approx -0.258 \text{ degrees per minute} - - The average rate of change is always negative and is decreasing in magnitude as t increases. This is consistent with a function that is always decreasing and always concave up. In context, the soda is cooling more and more slowly as time goes on. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ A can of soda (at room temperature) is placed in a refrigerator at time t = 0 (in minutes) + and its temperature, F(t), in degrees Fahrenheit, is computed at regular intervals. + Based on the data, a model is formulated for the object's temperature, given by + + F(t) = 42 + 30(0.95)^{t} + . +

+

+ + + +

+ Consider the simpler (parent) function p(t) = (0.95)^t. + How do you expect the graph of this function to appear? + How will it behave as time increases? + Without using graphing technology, + sketch a rough graph of p and write a sentence of explanation. +

+ + + +

+ The graph of p(t) = (0.95)^t is always decreasing, always concave up, and decreasing toward zero. +

+ +

graph of p(t) = (0.95)^t

+
+ +

+ The graph of p(t) = (0.95)^t is always decreasing, always concave up, and decreasing toward zero. +

+ +

graph of p(t) = (0.95)^t

+
+ + + +

+ For the slightly more complicated function r(t) = 30 (0.95)^{t}, how do you expect this function to look in comparison to p? What is the long-range behavior of this function as t increases? + Without using graphing technology, sketch a rough graph of r and write a sentence of explanation. +

+
+ + +

+ The function r(t) = 30(0.95)^t is similar to p(t) but stretched vertically by a factor of 30. It is always decreasing, always concave up, and decreasing toward zero. +

+ +

graph of r(t) = 30 (0.95)^t

+
+ +

+ The function r(t) = 30(0.95)^t is similar to p(t) but stretched vertically by a factor of 30. It is always decreasing, always concave up, and decreasing toward zero. +

+ +

graph of r(t) = 30 (0.95)^t

+
+
+ + +

+ Finally, how do you expect the graph of F(t) = 42 + 30(0.95)^{t} to appear? + Why? First sketch a rough graph without graphing technology, and then use technology to check your thinking + and report an accurate, labeled graph on the axes provided below. +

+ + + + + + +

Blank axes for plotting F as a function of t.

+ + + +
+ + +

+ Since F(t) = 42 + 30(0.95)^t has a vertical shift of 42 up, it remains always decreasing, always concave up, but decreasing toward 42. +

+ +

graph of F(t) = 42+ 30 (0.95)^t

+
+ +

+ Since F(t) = 42 + 30(0.95)^t has a vertical shift of 42 up, it remains always decreasing, always concave up, but decreasing toward 42. +

+ +

graph of F(t) = 42+ 30 (0.95)^t

+
+
+ + +

+ What is the temperature of the refrigerator? + What is the room temperature of the surroundings outside the refrigerator? + Why? +

+
+ + +

+ The temperature of the refrigerator is 42. The room temperature of the surroundings outside the refrigerator is 72. +

+
+ +

+ Because F(t) decreases toward 42, that is the temperature of the refrigerator. Because the function starts at 42 + 30 = 72, that is the room temperature of the surroundings outside the refrigerator. +

+
+
+ + +

+ Determine the average rate of change of F on the intervals [10,20], + [20,30], and [30,40]. + Write at least two careful sentences that explain the meaning of the values you found, including units, + and discuss any overall trend in how the average rate of change is changing. +

+
+ + +

+ + AV_{[10,20]} & \approx -0.721 \text{ degrees per minute} \\ + AV_{[20,30]} & \approx -0.432 \text{ degrees per minute} \\ + AV_{[30,40]} & \approx -0.258 \text{ degrees per minute} + + The average rate of change is always negative and is decreasing in magnitude as t increases. This is consistent with a function that is always decreasing and always concave up. In context, the soda is cooling more and more slowly as time goes on. +

+
+ +

+ + AV_{[10,20]} &= \frac{30(0.95^{20} - 0.95^{10})}{20-10} \approx -0.721 \text{ degrees per minute} \\ + AV_{[20,30]} &= \frac{30(0.95^{30} - 0.95^{20})}{30-20} \approx -0.432 \text{ degrees per minute} \\ + AV_{[30,40]} &= \frac{30(0.95^{40} - 0.95^{30})}{40-30} \approx -0.258 \text{ degrees per minute} + + The average rate of change is always negative and is decreasing in magnitude as t increases. This is consistent with a function that is always decreasing and always concave up. In context, the soda is cooling more and more slowly as time goes on. +

+
+
+
+
diff --git a/source/activities/act-exp-temp-pop-NLOC1.xml b/source/activities/act-exp-temp-pop-NLOC1.xml index 92b702a4..14576652 100755 --- a/source/activities/act-exp-temp-pop-NLOC1.xml +++ b/source/activities/act-exp-temp-pop-NLOC1.xml @@ -1,101 +1,105 @@ - - - - - - - - - - - - - - - - -

- A can of soda is initially at room temperature, 72.3^\circ Fahrenheit, and at time t = 0 is placed in a refrigerator set at 37.7^\circ. In addition, we know that after 30 minutes, the soda's temperature has dropped to 59.5^\circ. Let F(t) represent the temperature of the soda in degrees Fahrenheit at time t in minutes. -

-

- - - -

- Use algebraic reasoning and your understanding of the physical situation to determine the exact values of a, - c, - and k in the model F(t) = ae^{-kt}+c. - Write at least one careful sentence to explain your thinking. -

- - - - -

- Since the soda cools toward the refrigerator temperature in the long run, and e^{-kt} \to 0 as t \to \infty, we have c = 37.7. At t = 0, F(0) = a + c = a + 37.7 = 72.3, so a = 34.6. Finally, using F(30) = 59.5: 34.6e^{-30k} + 37.7 = 59.5, so 34.6e^{-30k} = 21.8 and k = -\dfrac{1}{30}\ln\!\left(\dfrac{21.8}{34.6}\right) \approx 0.01540. -

-
- - - -

- Determine the exact time the object's temperature is 42.4^\circ. - Clearly show your algebraic work and thinking. -

-
- - - -

- Setting F(t) = 42.4: - - 34.6e^{-kt} + 37.7 &= 42.4 - 34.6e^{-kt} &= 4.7 - e^{-kt} &= \frac{4.7}{34.6} - t &= -\frac{1}{k}\ln\!\left(\frac{4.7}{34.6}\right) \approx 131 \text{ minutes.} - -

-
-
- - -

- In Desmos, enter the values you found for a, c, and k in order to define the function F. Then, use Desmos to find the average rate of change of F on the interval [25,30]. - What is the meaning - (with units) - of this value? -

-
- - - -

- Using F(t) = 34.6e^{-0.01540t} + 37.7 in Desmos, the average rate of change on [25,30] is approximately \frac{F(30)-F(25)}{5} \approx -0.349 degrees Fahrenheit per minute. This means the soda is cooling at a rate of about 0.349^\circF per minute during the five-minute interval from t = 25 to t = 30. -

-
-
- - -

- If everything stayed the same except the value of F(0), - and instead F(0) = 65, - would the value of k be larger or smaller? - Why? -

-
- - - -

- If F(0) = 65, then a = 65 - 37.7 = 27.3, which is smaller than the original a = 34.6. Using the same condition F(30) = 59.5: 27.3e^{-30k} = 21.8, giving k \approx 0.00751. This is smaller than the original k \approx 0.0154. With a smaller initial temperature difference between the soda and the refrigerator, the soda cools more slowly, so k is smaller. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ A can of soda is initially at room temperature, 72.3^\circ Fahrenheit, and at time t = 0 is placed in a refrigerator set at 37.7^\circ. In addition, we know that after 30 minutes, the soda's temperature has dropped to 59.5^\circ. Let F(t) represent the temperature of the soda in degrees Fahrenheit at time t in minutes. +

+

+ + + +

+ Use algebraic reasoning and your understanding of the physical situation to determine the exact values of a, + c, + and k in the model F(t) = ae^{-kt}+c. + Write at least one careful sentence to explain your thinking. +

+ + + +

+ Since the soda cools toward the refrigerator temperature in the long run, and e^{-kt} \to 0 as t \to \infty, we have c = 37.7. At t = 0, F(0) = a + c = a + 37.7 = 72.3, so a = 34.6.

+

Finally, using F(30) = 59.5: 34.6e^{-30k} + 37.7 = 59.5, so 34.6e^{-30k} = 21.8 and k = -\dfrac{1}{30}\ln\left(\dfrac{21.8}{34.6}\right) \approx 0.01540. +

+
+ +

+ Since the soda cools toward the refrigerator temperature in the long run, and e^{-kt} \to 0 as t \to \infty, we have c = 37.7. At t = 0, F(0) = a + c = a + 37.7 = 72.3, so a = 34.6.

+

Finally, using F(30) = 59.5: 34.6e^{-30k} + 37.7 = 59.5, so 34.6e^{-30k} = 21.8 and k = -\dfrac{1}{30}\ln\left(\dfrac{21.8}{34.6}\right) \approx 0.01540. +

+
+ + + +

+ Determine the exact time the object's temperature is 42.4^\circ. + Clearly show your algebraic work and thinking. +

+
+ +

t = -\frac{1}{k}\ln\left(\frac{4.7}{34.6}\right) \approx 131 \text{ minutes.}

+ +

+ Setting F(t) = 42.4: + + 34.6e^{-kt} + 37.7 &= 42.4 + 34.6e^{-kt} &= 4.7 + e^{-kt} &= \frac{4.7}{34.6} + t &= -\frac{1}{k}\ln\left(\frac{4.7}{34.6}\right) \approx 131 \text{ minutes.} + +

+
+
+ + +

+ In Desmos, enter the values you found for a, c, and k in order to define the function F. Then, use Desmos to find the average rate of change of F on the interval [25,30]. + What is the meaning + (with units) + of this value? +

+
+ + +

+ Using F(t) = 34.6e^{-0.01540t} + 37.7 in Desmos, the average rate of change on [25,30] is approximately \frac{F(30)-F(25)}{5} \approx -0.349 degrees Fahrenheit per minute. This means the soda is cooling at a rate of about 0.349^\circF per minute during the five-minute interval from t = 25 to t = 30. +

+
+ +

+ Using F(t) = 34.6e^{-0.01540t} + 37.7 in Desmos, the average rate of change on [25,30] is approximately \frac{F(30)-F(25)}{5} \approx -0.349 degrees Fahrenheit per minute. This means the soda is cooling at a rate of about 0.349^\circF per minute during the five-minute interval from t = 25 to t = 30. +

+
+
+ + +

+ If everything stayed the same except the value of F(0), + and instead F(0) = 65, + would the value of k be larger or smaller? + Why? +

+
+ +

k \approx 0.00751. With a smaller initial temperature difference between the soda and the refrigerator, the soda cools more slowly, so k is smaller.

+ +

+ If F(0) = 65, then a = 65 - 37.7 = 27.3, which is smaller than the original a = 34.6. Using the same condition F(30) = 59.5: 27.3e^{-30k} = 21.8, giving k \approx 0.00751. This is smaller than the original k \approx 0.0154. With a smaller initial temperature difference between the soda and the refrigerator, the soda cools more slowly, so k is smaller. +

+
+
+
+
diff --git a/source/activities/act-exp-temp-pop-logistic-Desmos.xml b/source/activities/act-exp-temp-pop-logistic-Desmos.xml index bf5b1ca3..e9ad9290 100755 --- a/source/activities/act-exp-temp-pop-logistic-Desmos.xml +++ b/source/activities/act-exp-temp-pop-logistic-Desmos.xml @@ -1,90 +1,97 @@ - - - - - - - - - - - - - - - - -

- In Desmos, define P(t) = \frac{A}{1 + Me^{-kt}} and accept sliders for A, M, and k. Set the slider ranges for these parameters as follows: 0.01 \le A \le 10; 0.01 \le M \le 10; 0.01 \le k \le 5. -

-

- - - -

- Sketch a typical graph of P(t) on the axes provided and write several sentences to explain the effects of A, M, and k on the graph of P. -

- -

ADD ALT TEXT TO THIS IMAGE

- - - - - -

- A typical graph of P(t) = \dfrac{A}{1 + Me^{-kt}} has an S-shape (sigmoidal curve) that rises from near 0 as t \to -\infty to the value A as t \to \infty. The parameter A sets the upper asymptote (the carrying capacity). The parameter M affects the y-intercept: since P(0) = \frac{A}{1+M}, larger M gives a lower initial value, producing an effect similar to a horizontal shift. The parameter k controls the steepness of the transition from the lower asymptote to the upper asymptote. -

- -
- - - -

- On a typical logistic graph, where does it appear that the population is growing most rapidly? How is this value connected to the carrying capacity, A? -

-
- - - -

- The population appears to grow most rapidly at the midpoint of the transition from near 0 to the carrying capacity A. This occurs when P(t) = \dfrac{A}{2}, that is, at half the carrying capacity. -

-
-
- - -

- How does the function 1 + Me^{-kt} behave as t decreases without bound? What is the algebraic reason that this occurs? -

-
- - - -

- As t \to \infty, e^{-kt} \to 0 (since k > 0), so Me^{-kt} \to 0 and therefore 1 + Me^{-kt} \to 1. This causes P(t) = \frac{A}{1 + Me^{-kt}} \to \frac{A}{1} = A, which is why A is the carrying capacity. -

-
-
- - -

- Use your Desmos worksheet to find a logistic function P that has the following properties: P(0) = 2, P(2) = 4, and P(t) approaches 9 as t increases without bound. What are the approximate values of A, M, and k that make the function P fit these criteria? -

-
- - - -

- Since P(t) \to 9 as t \to \infty, we have A = 9. From P(0) = \frac{9}{1+M} = 2, we get M = \frac{7}{2} = 3.5. From P(2) = \frac{9}{1 + 3.5e^{-2k}} = 4, we get 1 + 3.5e^{-2k} = 2.25, so e^{-2k} = \frac{1.25}{3.5} = \frac{5}{14} and k = \dfrac{1}{2}\ln\!\left(\dfrac{14}{5}\right) \approx 0.516. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ In Desmos, define P(t) = \frac{A}{1 + Me^{-kt}} and accept sliders for A, M, and k. Set the slider ranges for these parameters as follows: 0.01 \le A \le 10; 0.01 \le M \le 10; 0.01 \le k \le 5. +

+

+ + + +

+ Sketch a typical graph of P(t) on the axes provided and write several sentences to explain the effects of A, M, and k on the graph of P. +

+ +

Blank axes for graphing P as a function of t

+ + + + +

+ A typical graph of P(t) = \dfrac{A}{1 + Me^{-kt}} has an S-shape (sigmoidal curve) that rises from near 0 as t \to -\infty to the value A as t \to \infty. The parameter A sets the upper asymptote. The parameter M affects the y-intercept: since P(0) = \frac{A}{1+M}, larger M gives a lower initial value, producing an effect similar to a horizontal shift. The parameter k controls the steepness of the transition from the lower asymptote to the upper asymptote. +

+

graph of P(t) for some values of the sliders

+
+ +

+ A typical graph of P(t) = \dfrac{A}{1 + Me^{-kt}} has an S-shape (sigmoidal curve) that rises from near 0 as t \to -\infty to the value A as t \to \infty. The parameter A sets the upper asymptote (the carrying capacity). The parameter M affects the y-intercept: since P(0) = \frac{A}{1+M}, larger M gives a lower initial value, producing an effect similar to a horizontal shift. The parameter k controls the steepness of the transition from the lower asymptote to the upper asymptote. +

+

graph of P(t) for some values of the sliders

+
+ + + +

+ On a typical logistic graph, where does it appear that the population is growing most rapidly? How is this value connected to the carrying capacity, A? +

+
+ + +

+ The population appears to grow most rapidly at the midpoint of the transition from near 0 to the carrying capacity A. This occurs when P(t) = \dfrac{A}{2}, that is, at half the carrying capacity. +

+
+ +

+ The population appears to grow most rapidly at the midpoint of the transition from near 0 to the carrying capacity A. This occurs when P(t) = \dfrac{A}{2}, that is, at half the carrying capacity. +

+
+
+ + +

+ How does the function 1 + Me^{-kt} behave as t decreases without bound? What is the algebraic reason that this occurs? +

+
+ +

P(t) = \frac{A}{1 + Me^{-kt}} \to \frac{A}{1} = A

+ +

+ As t \to \infty, e^{-kt} \to 0 (since k > 0), so Me^{-kt} \to 0 and therefore 1 + Me^{-kt} \to 1. This causes P(t) = \frac{A}{1 + Me^{-kt}} \to \frac{A}{1} = A, which is why A is the carrying capacity. +

+
+
+ + +

+ Use your Desmos worksheet to find a logistic function P that has the following properties: P(0) = 2, P(2) = 4, and P(t) approaches 9 as t increases without bound. What are the approximate values of A, M, and k that make the function P fit these criteria? +

+
+ + +

+ A = 9, M = \frac{7}{2} = 3.5, and k = \dfrac{1}{2}\ln\!\left(\dfrac{14}{5}\right) \approx 0.516. +

+
+ +

+ Since P(t) \to 9 as t \to \infty, we have A = 9. From P(0) = \frac{9}{1+M} = 2, we get M = \frac{7}{2} = 3.5. From P(2) = \frac{9}{1 + 3.5e^{-2k}} = 4, we get 1 + 3.5e^{-2k} = 2.25, so e^{-2k} = \frac{1.25}{3.5} = \frac{5}{14} and k = \dfrac{1}{2}\ln\!\left(\dfrac{14}{5}\right) \approx 0.516. +

+
+
+
+
diff --git a/source/activities/act-exp-temp-pop-logistic-exact.xml b/source/activities/act-exp-temp-pop-logistic-exact.xml index e8999cf0..a35246b6 100755 --- a/source/activities/act-exp-temp-pop-logistic-exact.xml +++ b/source/activities/act-exp-temp-pop-logistic-exact.xml @@ -1,96 +1,101 @@ - - - - - - - - - - - - - - - - -

- Suppose that a population of animals (measured in thousands) that lives on an island is known to grow according to the logistic model, where t is measured in years. We know the following information: P(0) = 2.45, P(3) = 4.52, and as t increases without bound, P(t) approaches 11.7. -

-

- - - -

- Determine the exact values of A, M, and k in the logistic model - - P(t) = \frac{A}{1 + Me^{-kt}} - . - Clearly show your algebraic work and thinking. -

- - - - -

- Since P(t) \to 11.7 as t \to \infty, A = 11.7. From P(0) = \frac{11.7}{1+M} = 2.45, we get 1+M = \frac{11.7}{2.45}, so M = \frac{11.7}{2.45} - 1 = \frac{9.25}{2.45} \approx 3.776. Using P(3) = 4.52: - - \frac{11.7}{1 + 3.776e^{-3k}} &= 4.52 - 1 + 3.776e^{-3k} &= \frac{11.7}{4.52} \approx 2.589 - e^{-3k} &= \frac{1.589}{3.776} \approx 0.421 - k &= -\frac{1}{3}\ln(0.421) \approx 0.289. - -

-
- - - -

- Plot your model from (a) and check that its values match the desired characteristics. - Then, compute the average rate of change of P on the intervals [0,2], - [2,4], [4,6], and [6,8]. - What is the meaning (with units) of the values you've found? How is the population growing on these intervals? -

-
- - - -

- Using P(t) = \dfrac{11.7}{1 + 3.776e^{-0.289t}}, we compute: - P(0) \approx 2.45, P(2) \approx 3.75, P(4) \approx 5.34, P(6) \approx 7.02, P(8) \approx 8.51. - The average rates of change are: - AV_{[0,2]} \approx 0.650, AV_{[2,4]} \approx 0.796, AV_{[4,6]} \approx 0.836, AV_{[6,8]} \approx 0.747 thousand animals per year. - These represent the average rate at which the population grows on each interval. The population grows most rapidly on [4,6], which makes sense since the midpoint between the asymptotes (0 and 11.7) is 5.85, which falls in this interval. -

- -
-
- - -

- Find the exact time value when the population will be 10 (thousand). Show your algebraic work and thinking. -

-
- - - -

- Setting P(t) = 10: - - \frac{11.7}{1 + 3.776e^{-0.289t}} &= 10 - 1 + 3.776e^{-0.289t} &= 1.17 - 3.776e^{-0.289t} &= 0.17 - e^{-0.289t} &= \frac{0.17}{3.776} \approx 0.04503 - t &= -\frac{\ln(0.04503)}{0.289} \approx 10.74 \text{ years.} - -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Suppose that a population of animals (measured in thousands) that lives on an island is known to grow according to the logistic model, where t is measured in years. We know the following information: P(0) = 2.45, P(3) = 4.52, and as t increases without bound, P(t) approaches 11.7. +

+

+ + + +

+ Determine the exact values of A, M, and k in the logistic model + + P(t) = \frac{A}{1 + Me^{-kt}} + . + Clearly show your algebraic work and thinking. +

+ + + +

+ A = 11.7, M \approx 3.776, and + k = -\frac{1}{3}\ln(0.421) \approx 0.289. +

+
+ +

+ Since P(t) \to 11.7 as t \to \infty, A = 11.7. From P(0) = \frac{11.7}{1+M} = 2.45, we get 1+M = \frac{11.7}{2.45}, so M = \frac{11.7}{2.45} - 1 = \frac{9.25}{2.45} \approx 3.776. Using P(3) = 4.52: + + \frac{11.7}{1 + 3.776e^{-3k}} &= 4.52 + 1 + 3.776e^{-3k} &= \frac{11.7}{4.52} \approx 2.589 + e^{-3k} &= \frac{1.589}{3.776} \approx 0.421 + k &= -\frac{1}{3}\ln(0.421) \approx 0.289. + +

+
+ + + +

+ Plot your model from (a) and check that its values match the desired characteristics. + Then, compute the average rate of change of P on the intervals [0,2], + [2,4], [4,6], and [6,8]. + What is the meaning (with units) of the values you've found? How is the population growing on these intervals? +

+
+ + +

+ The average rates of change are: + AV_{[0,2]} \approx 0.650, AV_{[2,4]} \approx 0.796, AV_{[4,6]} \approx 0.836, AV_{[6,8]} \approx 0.747 thousand animals per year. + These represent the average rate at which the population grows on each interval. +

+
+ +

+ Using P(t) = \dfrac{11.7}{1 + 3.776e^{-0.289t}}, we compute: + P(0) \approx 2.45, P(2) \approx 3.75, P(4) \approx 5.34, P(6) \approx 7.02, P(8) \approx 8.51. + The average rates of change are: + AV_{[0,2]} \approx 0.650, AV_{[2,4]} \approx 0.796, AV_{[4,6]} \approx 0.836, AV_{[6,8]} \approx 0.747 thousand animals per year. + These represent the average rate at which the population grows on each interval. The population grows most rapidly on [4,6], which makes sense since the midpoint between the asymptotes (0 and 11.7) is 5.85, which falls in this interval. +

+ +
+
+ + +

+ Find the exact time value when the population will be 10 (thousand). Show your algebraic work and thinking. +

+
+ +

t = -\frac{\ln(0.04503)}{0.289} \approx 10.74 \text{ years.}

+ +

+ Setting P(t) = 10: + + \frac{11.7}{1 + 3.776e^{-0.289t}} &= 10 + 1 + 3.776e^{-0.289t} &= 1.17 + 3.776e^{-0.289t} &= 0.17 + e^{-0.289t} &= \frac{0.17}{3.776} \approx 0.04503 + t &= -\frac{\ln(0.04503)}{0.289} \approx 10.74 \text{ years.} + +

+
+
+
+
diff --git a/source/activities/act-poly-infty-limit.xml b/source/activities/act-poly-infty-limit.xml index e6e88f76..71f0eb59 100755 --- a/source/activities/act-poly-infty-limit.xml +++ b/source/activities/act-poly-infty-limit.xml @@ -1,174 +1,190 @@ - - - - - - - - - - - - - - - - -

- Complete the following table by entering - \infty,-\infty,0, or no limit - to identify how the function behaves as either x increases or decreases without bound. - As much as possible, work to decide the behavior without using a graphing utility. -

- - - - - f(x) - - - \lim_{x \to \infty} f(x) - - - \lim_{x \to -\infty} f(x) - - - - - e^x - - - - - - - - - - - e^{-x} - - - - - - - - - - - \ln(x) - - - - - - - - - - - x - - - - - - - - - - - x^2 - - - - - - - - - - - x^3 - - - - - - - - - - - x^4 - - - - - - - - - - - \frac{1}{x} - - - - - - - - - - - \frac{1}{x^2} - - - - - - - - - - - \sin(x) - - - - - - - - - - -
- -

- - - - - f(x) - \lim_{x \to \infty} f(x) - \lim_{x \to -\infty} f(x) - - e^x\infty0 - e^{-x}0\infty - \ln(x)\inftynot defined - x\infty-\infty - x^2\infty\infty - x^3\infty-\infty - x^4\infty\infty - \frac{1}{x}00 - \frac{1}{x^2}00 - \sin(x)no limitno limit - -

Note: \ln(x) is undefined for x \le 0, so \lim_{x \to -\infty} \ln(x) does not exist.

- -
-
+ + + + + + + + + + + + + + + + +

+ Complete the following table by entering + \infty,-\infty,0, or no limit + to identify how the function behaves as either x increases or decreases without bound. + As much as possible, work to decide the behavior without using a graphing utility. +

+ + + + + f(x) + + + \lim_{x \to \infty} f(x) + + + \lim_{x \to -\infty} f(x) + + + + + e^x + + + + + + + + + + + e^{-x} + + + + + + + + + + + \ln(x) + + + + + + + + + + + x + + + + + + + + + + + x^2 + + + + + + + + + + + x^3 + + + + + + + + + + + x^4 + + + + + + + + + + + \frac{1}{x} + + + + + + + + + + + \frac{1}{x^2} + + + + + + + + + + + \sin(x) + + + + + + + + + + +
+ + + + f(x) + \lim_{x \to \infty} f(x) + \lim_{x \to -\infty} f(x) + + e^x\infty0 + e^{-x}0\infty + \ln(x)\inftynot defined + x\infty-\infty + x^2\infty\infty + x^3\infty-\infty + x^4\infty\infty + \frac{1}{x}00 + \frac{1}{x^2}00 + \sin(x)no limitno limit + + + + + + f(x) + \lim_{x \to \infty} f(x) + \lim_{x \to -\infty} f(x) + + e^x\infty0 + e^{-x}0\infty + \ln(x)\inftynot defined + x\infty-\infty + x^2\infty\infty + x^3\infty-\infty + x^4\infty\infty + \frac{1}{x}00 + \frac{1}{x^2}00 + \sin(x)no limitno limit + +

Note: \ln(x) is undefined for x \le 0, so \lim_{x \to -\infty} \ln(x) does not exist.

+
+
+
diff --git a/source/activities/act-poly-infty-natural-powers.xml b/source/activities/act-poly-infty-natural-powers.xml index 1a7c21b1..0bae6e9f 100755 --- a/source/activities/act-poly-infty-natural-powers.xml +++ b/source/activities/act-poly-infty-natural-powers.xml @@ -1,100 +1,110 @@ - - - - - - - - - - - - - - - - -

- Point your browser to the Desmos worksheet at http://gvsu.edu/s/0zu. - In what follows, we explore the behavior of power functions of the form y = x^n where n \ge 1. -

-

- - - -

- Press the play button next to the slider labeled n. - Watch at least two loops of the animation and then discuss the trends that you observe. - Write a careful sentence each for at least two different trends. -

- - - - -

- Two trends to observe: (1) As n increases, the graph becomes flatter and wider near x = 0 before rising steeply. (2) When n is even, both ends of the graph go to +\infty (symmetric about the y-axis); when n is odd, the left end goes to -\infty and the right end goes to +\infty. -

-
- - - -

- Click the icons next to each of the following 8 functions so that you can see all of y = x, - y = x^2, \ldots, - y = x^8 graphed at once. - On the interval 0 \lt x \lt 1, - how do the graphs of x^a and x^b compare if a \lt b? -

-
- - - -

- On 0 \lt x \lt 1, the graph of x^b stays closer to 0 than x^a when b \gt a. That is, x^a \gt x^b on (0,1) when a \lt b. -

-
-
- - -

- Uncheck the icons on each of the 8 functions to hide their graphs. - Click the settings icon to change the domain settings for the axes, - and change them to -10 \le x \le 10 and -10,000 \le y \le 10,000. - Play the animation through twice and then discuss the trends that you observe. - Write a careful sentence each for at least two different trends. -

-
- - - -

- Two trends to observe: (1) The graphs with even n are symmetric about the y-axis, while odd-n graphs pass through the origin from lower-left to upper-right. (2) For larger n, the function stays very close to 0 on (-1,1) and then rises very steeply outside that interval. -

-
-
- - -

- Click the icons next to each of the following 8 functions so that you can see all of y = x, - y = x^2, \ldots, - y = x^8 graphed at once. - On the interval x \gt 1, - how do the graphs of x^a and x^b compare if a \lt b? -

-
- - - -

- On x \gt 1, the graph of x^b lies above the graph of x^a when b \gt a: larger exponents produce faster growth for x \gt 1. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Point your browser to the Desmos worksheet at http://gvsu.edu/s/0zu. + In what follows, we explore the behavior of power functions of the form y = x^n where n \ge 1. +

+

+ + + +

+ Press the play button next to the slider labeled n. + Watch at least two loops of the animation and then discuss the trends that you observe. + Write a careful sentence each for at least two different trends. +

+ + + +

+ Two trends to observe: (1) As n increases, the graph becomes flatter and wider near x = 0 before rising steeply. (2) When n is even, both ends of the graph go to +\infty (symmetric about the y-axis); when n is odd, the left end goes to -\infty and the right end goes to +\infty. +

+
+ +

+ Two trends to observe: (1) As n increases, the graph becomes flatter and wider near x = 0 before rising steeply. (2) When n is even, both ends of the graph go to +\infty (symmetric about the y-axis); when n is odd, the left end goes to -\infty and the right end goes to +\infty. +

+
+ + + +

+ Click the icons next to each of the following 8 functions so that you can see all of y = x, + y = x^2, \ldots, + y = x^8 graphed at once. + On the interval 0 \lt x \lt 1, + how do the graphs of x^a and x^b compare if a \lt b? +

+
+ + +

+ On 0 \lt x \lt 1, the graph of x^b stays closer to 0 than x^a when b \gt a. That is, x^a \gt x^b on (0,1) when a \lt b. +

+
+ +

+ On 0 \lt x \lt 1, the graph of x^b stays closer to 0 than x^a when b \gt a. That is, x^a \gt x^b on (0,1) when a \lt b. +

+
+
+ + +

+ Uncheck the icons on each of the 8 functions to hide their graphs. + Click the settings icon to change the domain settings for the axes, + and change them to -10 \le x \le 10 and -10,000 \le y \le 10,000. + Play the animation through twice and then discuss the trends that you observe. + Write a careful sentence each for at least two different trends. +

+
+ + +

+ Two trends to observe: (1) The graphs with even n are symmetric about the y-axis, while odd-n graphs pass through the origin from lower-left to upper-right. (2) For larger n, the function stays very close to 0 on (-1,1) and then rises very steeply outside that interval. +

+
+ +

+ Two trends to observe: (1) The graphs with even n are symmetric about the y-axis, while odd-n graphs pass through the origin from lower-left to upper-right. (2) For larger n, the function stays very close to 0 on (-1,1) and then rises very steeply outside that interval. +

+
+
+ + +

+ Click the icons next to each of the following 8 functions so that you can see all of y = x, + y = x^2, \ldots, + y = x^8 graphed at once. + On the interval x \gt 1, + how do the graphs of x^a and x^b compare if a \lt b? +

+
+ + +

+ On x \gt 1, the graph of x^b lies above the graph of x^a when b \gt a: larger exponents produce faster growth for x \gt 1. +

+
+ +

+ On x \gt 1, the graph of x^b lies above the graph of x^a when b \gt a: larger exponents produce faster growth for x \gt 1. +

+
+
+
+
diff --git a/source/activities/act-poly-infty-negative-powers.xml b/source/activities/act-poly-infty-negative-powers.xml index 5d495d04..5107aefa 100755 --- a/source/activities/act-poly-infty-negative-powers.xml +++ b/source/activities/act-poly-infty-negative-powers.xml @@ -1,112 +1,126 @@ - - - - - - - - - - - - - - - - -

- Point your browser to the Desmos worksheet at - http://gvsu.edu/s/0zv. - In what follows, we explore the behavior of power functions y = x^n where n \le -1. -

-

- - - -

- Press the play button next to the slider labeled n. - Watch two loops of the animation and then discuss the trends that you observe. - Write a careful sentence each for at least two different trends. -

- - - - -

- Two trends: (1) For even-n exponents (like x^{-2}, x^{-4}, \ldots), the graph is symmetric about the y-axis and stays positive; for odd exponents (like x^{-1}, x^{-3}, \ldots), the graph is negative for x \lt 0 and positive for x \gt 0. (2) As the exponent becomes more negative, the graph becomes more sharply L-shaped near x = 0. -

-
- - - -

- Click the icons next to each of the following 8 functions so that you can see all of y = x^{-1}, - y = x^{-2}, \ldots, - y = x^{-8} graphed at once. - On the interval 1 \lt x, how do the functions - x^a and x^b compare if a \lt b? (Be careful with negative numbers here: - e.g., -3 \lt -2.) -

-
- - - -

- On x \gt 1, x^a \lt x^b when a \lt b (with both negative). For example, x^{-3} \lt x^{-2} for x \gt 1, since dividing by a higher power gives a smaller result. -

-
-
- - -

- How do your answers change on the interval 0 \lt x \lt 1? -

-
- - - -

- On 0 \lt x \lt 1, the situation reverses: x^a \gt x^b when a \lt b (i.e., more negative exponents give larger values on (0,1) since dividing by a small number raised to a high power gives a large result). -

-
-
- - -

- Uncheck the icons on each of the 8 functions to hide their graphs. - Click the settings icon to change the domain settings for the axes, - and change them to -10 \le x \le 10 and -10,000 \le y \le 10,000. - Play the animation through twice and then discuss the trends that you observe. - Write a careful sentence each for at least two different trends. -

-
- - - -

- Two trends with the wider window: (1) The graphs with even exponents are symmetric about the y-axis; odd-exponent graphs are antisymmetric. (2) As the exponent becomes more negative, the function rises more steeply near x = 0 (steeper asymptotic behavior). -

-
-
- - -

- Explain why \lim_{x \to \infty} \frac{1}{x^n} = 0 for any choice of n = 1, 2, \ldots. -

-
- - - -

- As x \to \infty, x^n \to \infty for any positive integer n, so \frac{1}{x^n} = x^{-n} \to 0. Dividing 1 by an ever-larger number drives the result to 0. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Point your browser to the Desmos worksheet at + http://gvsu.edu/s/0zv. + In what follows, we explore the behavior of power functions y = x^n where n \le -1. +

+

+ + + +

+ Press the play button next to the slider labeled n. + Watch two loops of the animation and then discuss the trends that you observe. + Write a careful sentence each for at least two different trends. +

+ + + +

+ Two trends: (1) For even-n exponents (like x^{-2}, x^{-4}, \ldots), the graph is symmetric about the y-axis and stays positive; for odd exponents (like x^{-1}, x^{-3}, \ldots), the graph is negative for x \lt 0 and positive for x \gt 0. (2) As the exponent becomes more negative, the graph becomes more sharply L-shaped near x = 0. +

+
+ +

+ Two trends: (1) For even-n exponents (like x^{-2}, x^{-4}, \ldots), the graph is symmetric about the y-axis and stays positive; for odd exponents (like x^{-1}, x^{-3}, \ldots), the graph is negative for x \lt 0 and positive for x \gt 0. (2) As the exponent becomes more negative, the graph becomes more sharply L-shaped near x = 0. +

+
+ + + +

+ Click the icons next to each of the following 8 functions so that you can see all of y = x^{-1}, + y = x^{-2}, \ldots, + y = x^{-8} graphed at once. + On the interval 1 \lt x, how do the functions + x^a and x^b compare if a \lt b? (Be careful with negative numbers here: + e.g., -3 \lt -2.) +

+
+ + +

+ On x \gt 1, x^a \lt x^b when a \lt b (with both negative). For example, x^{-3} \lt x^{-2} for x \gt 1, since dividing by a higher power gives a smaller result. +

+
+ +

+ On x \gt 1, x^a \lt x^b when a \lt b (with both negative). For example, x^{-3} \lt x^{-2} for x \gt 1, since dividing by a higher power gives a smaller result. +

+
+
+ + +

+ How do your answers change on the interval 0 \lt x \lt 1? +

+
+ + +

+ On 0 \lt x \lt 1, the situation reverses: x^a \gt x^b when a \lt b (i.e., more negative exponents give larger values on (0,1) since dividing by a small number raised to a high power gives a large result). +

+
+ +

+ On 0 \lt x \lt 1, the situation reverses: x^a \gt x^b when a \lt b (i.e., more negative exponents give larger values on (0,1) since dividing by a small number raised to a high power gives a large result). +

+
+
+ + +

+ Uncheck the icons on each of the 8 functions to hide their graphs. + Click the settings icon to change the domain settings for the axes, + and change them to -10 \le x \le 10 and -10,000 \le y \le 10,000. + Play the animation through twice and then discuss the trends that you observe. + Write a careful sentence each for at least two different trends. +

+
+ + +

+ Two trends with the wider window: (1) The graphs with even exponents are symmetric about the y-axis; odd-exponent graphs are antisymmetric. (2) As the exponent becomes more negative, the function rises more steeply near x = 0 (steeper asymptotic behavior). +

+
+ +

+ Two trends with the wider window: (1) The graphs with even exponents are symmetric about the y-axis; odd-exponent graphs are antisymmetric. (2) As the exponent becomes more negative, the function rises more steeply near x = 0 (steeper asymptotic behavior). +

+
+
+ + +

+ Explain why \lim_{x \to \infty} \frac{1}{x^n} = 0 for any choice of n = 1, 2, \ldots. +

+
+ + +

+ As x \to \infty, x^n \to \infty for any positive integer n, so \frac{1}{x^n} = x^{-n} \to 0. Dividing 1 by an ever-larger number drives the result to 0. +

+
+ +

+ As x \to \infty, x^n \to \infty for any positive integer n, so \frac{1}{x^n} = x^{-n} \to 0. Dividing 1 by an ever-larger number drives the result to 0. +

+
+
+
+
diff --git a/source/activities/act-poly-polynomial-applications-Taylor.xml b/source/activities/act-poly-polynomial-applications-Taylor.xml index 3bbbc824..14913ba0 100755 --- a/source/activities/act-poly-polynomial-applications-Taylor.xml +++ b/source/activities/act-poly-polynomial-applications-Taylor.xml @@ -1,100 +1,102 @@ - - - - - - - - - - - - - - - - -

- We understand the theoretical rule behind the function f(t) = \sin(t): given an angle t in radians, \sin(t) measures the value of the y-coordinate of the corresponding point on the unit circle. For special values of t, we have determined the exact value of \sin(t). For example, \sin(\frac{\pi}{3}) = \frac{\sqrt{3}}{2}. But note that we don't have a formula for \sin(t). Instead, we use a button on our calculator or command on our computer to find values like \sin(1.35). It turns out that a combination of calculus and polynomial functions explains how computers determine values of the sine function. -

-

- At http://gvsu.edu/s/0zA, you'll find a Desmos worksheet that has the sine function already defined, along with a sequence of polynomials labeled T_1(x), T_3(x), T_5(x), T_7(x), \ldots. You can see these functions' graphs by clicking on their respective icons. -

-

- - - -

- For what values of x does it appear that \sin(x) \approx T_1(x)? -

- - - - -

The polynomial T_1(x) = x. It appears that \sin(x) \approx T_1(x) for values of x near 0, roughly for |x| \lesssim 0.5.

-
- - - -

- For what values of x does it appear that \sin(x) \approx T_3(x)? -

-
- - - -

The polynomial T_3(x) = x - \dfrac{x^3}{3!}. It appears that \sin(x) \approx T_3(x) for roughly |x| \lesssim 1.5.

-
-
- - -

- For what values of x does it appear that \sin(x) \approx T_5(x)? -

-
- - - -

The polynomial T_5(x) = x - \dfrac{x^3}{3!} + \dfrac{x^5}{5!}. It appears that \sin(x) \approx T_5(x) for roughly |x| \lesssim 2.5.

-
-
- - -

- What overall trend do you observe? How good is the approximation generated by T_{19}(x)? -

-
- - - -

Each additional term in the polynomial extends the range of x-values over which the approximation is accurate. T_{19}(x) provides an excellent approximation to \sin(x) over a very large interval, essentially indistinguishable from \sin(x) on most standard viewing windows.

-
-
- - -

- In a new Desmos worksheet, plot the function y = \cos(x) along with the following functions: P_2(x) = 1 - \frac{x^2}{2!} and P_4(x) = 1 - \frac{x^2}{2!} + \frac{x^4}{4!}. Based on the patterns with the coefficients in the polynomials approximating \sin(x) and the polynomials P_2 and P_4 here, conjecture formulas for P_6, P_8, and P_{18} and plot them. How well can we approximate y = \cos(x) using polynomials? -

-
- - - -

Following the pattern of alternating signs and even powers, the next polynomials are - - P_6(x) &= 1 - \frac{x^2}{2!} + \frac{x^4}{4!} - \frac{x^6}{6!}, - P_8(x) &= 1 - \frac{x^2}{2!} + \frac{x^4}{4!} - \frac{x^6}{6!} + \frac{x^8}{8!}, - P_{18}(x) &= \sum_{j=0}^{9} \frac{(-1)^j x^{2j}}{(2j)!}. - - Polynomial approximations can approximate y = \cos(x) just as well as y = \sin(x); each added term extends the range of accuracy.

-
-
- -

- - -

- T_1(x)=x is good near x=0; each higher-degree polynomial extends the interval of accuracy. T_{19} approximates \sin(x) extremely well. The cosine analogues follow the pattern P_{2k}(x) = \sum_{j=0}^{k} \frac{(-1)^j x^{2j}}{(2j)!}. -

- -
-
+ + + + + + + + + + + + + + + + +

+ We understand the theoretical rule behind the function f(t) = \sin(t): given an angle t in radians, \sin(t) measures the value of the y-coordinate of the corresponding point on the unit circle. For special values of t, we have determined the exact value of \sin(t). For example, \sin(\frac{\pi}{3}) = \frac{\sqrt{3}}{2}. But note that we don't have a formula for \sin(t). Instead, we use a button on our calculator or command on our computer to find values like \sin(1.35). It turns out that a combination of calculus and polynomial functions explains how computers determine values of the sine function. +

+

+ At http://gvsu.edu/s/0zA, you'll find a Desmos worksheet that has the sine function already defined, along with a sequence of polynomials labeled T_1(x), T_3(x), T_5(x), T_7(x), \ldots. You can see these functions' graphs by clicking on their respective icons. +

+

+ + + +

+ For what values of x does it appear that \sin(x) \approx T_1(x)? +

+ + +

About |x| \le 0.5

+ +

The polynomial T_1(x) = x. It appears that \sin(x) \approx T_1(x) for values of x near 0, roughly for |x| \le 0.5.

+
+ + + +

+ For what values of x does it appear that \sin(x) \approx T_3(x)? +

+
+ +

About |x| \le 1.5

+ +

The polynomial T_3(x) = x - \dfrac{x^3}{3!}. It appears that \sin(x) \approx T_3(x) for roughly |x| \le 1.5.

+
+
+ + +

+ For what values of x does it appear that \sin(x) \approx T_5(x)? +

+
+ +

About |x| \le 2.5

+ +

The polynomial T_5(x) = x - \dfrac{x^3}{3!} + \dfrac{x^5}{5!}. It appears that \sin(x) \approx T_5(x) for roughly |x| \le 2.5.

+
+
+ + +

+ What overall trend do you observe? How good is the approximation generated by T_{19}(x)? +

+
+ + +

Each additional term in the polynomial extends the range of x-values over which the approximation is accurate. T_{19}(x) provides an excellent approximation to \sin(x) over a very large interval, essentially indistinguishable from \sin(x) on most standard viewing windows.

+
+ +

Each additional term in the polynomial extends the range of x-values over which the approximation is accurate. T_{19}(x) provides an excellent approximation to \sin(x) over a very large interval, essentially indistinguishable from \sin(x) on most standard viewing windows.

+
+
+ + +

+ In a new Desmos worksheet, plot the function y = \cos(x) along with the following functions: P_2(x) = 1 - \frac{x^2}{2!} and P_4(x) = 1 - \frac{x^2}{2!} + \frac{x^4}{4!}. Based on the patterns with the coefficients in the polynomials approximating \sin(x) and the polynomials P_2 and P_4 here, conjecture formulas for P_6, P_8, and P_{18} and plot them. How well can we approximate y = \cos(x) using polynomials? +

+
+ + +

Following the pattern of alternating signs and even powers, the next polynomials are + + P_6(x) &= 1 - \frac{x^2}{2!} + \frac{x^4}{4!} - \frac{x^6}{6!}, + P_8(x) &= 1 - \frac{x^2}{2!} + \frac{x^4}{4!} - \frac{x^6}{6!} + \frac{x^8}{8!}, + P_{18}(x) &= \sum_{j=0}^{9} \frac{(-1)^j x^{2j}}{(2j)!}. + + Polynomial approximations can approximate y = \cos(x) just as well as y = \sin(x); each added term extends the range of accuracy.

+
+ +

Following the pattern of alternating signs and even powers, the next polynomials are + + P_6(x) &= 1 - \frac{x^2}{2!} + \frac{x^4}{4!} - \frac{x^6}{6!}, + P_8(x) &= 1 - \frac{x^2}{2!} + \frac{x^4}{4!} - \frac{x^6}{6!} + \frac{x^8}{8!}, + P_{18}(x) &= \sum_{j=0}^{9} \frac{(-1)^j x^{2j}}{(2j)!}. + + Polynomial approximations can approximate y = \cos(x) just as well as y = \sin(x); each added term extends the range of accuracy.

+
+
+
+
diff --git a/source/activities/act-poly-polynomial-applications-postal.xml b/source/activities/act-poly-polynomial-applications-postal.xml index 91b7463e..66ea62e9 100755 --- a/source/activities/act-poly-polynomial-applications-postal.xml +++ b/source/activities/act-poly-polynomial-applications-postal.xml @@ -1,102 +1,96 @@ - - - - - - - - - - - - - - - - -

- According to a shipping company's regulations, the girth plus the length of a parcel they transport for their lowest rate may not exceed 120 inches, where by girth we mean the perimeter of one end. -

- -

ADD ALT TEXT TO THIS IMAGE

- -

- Suppose that we want to ship a parcel that has a square end of width x and an overall length of y, both measured in inches. -

-

- - - -

- Label the provided picture, using x for the length of each side of the square end, and y for the other edge of the package. -

- - - - -

The square end has side length x inches and the length of the package is y inches.

-
- - - -

- How does the length plus girth of 120 inches result in an equation (often called a constraint equation) that relates x and y? Explain, and state the equation. -

-
- - - -

The girth is the perimeter of the square end: 4x. The constraint is that girth plus length is at most 120 inches. To maximize volume we use the entire allowance, giving the constraint equation 4x + y = 120.

-
-
- - -

- Solve the equation you found in (b) for one of the variables present. -

-
- - - -

Solving for y: y = 120 - 4x.

-
-
- - -

- Hence determine the volume, V, of the package as a function of a single variable. -

-
- - - -

The volume of the rectangular box with square end of side x and length y is V = x^2 y. Substituting y = 120 - 4x: - - V(x) = x^2(120 - 4x) = 4x^2(30 - x). - -

-
-
- - -

- What is the domain of the function V in the context of the physical setting of this problem? (Hint: neither x nor y can equal 0.) -

-
- - - -

We need both x > 0 and y = 120 - 4x > 0, which gives x < 30. So the domain of V in context is (0, 30).

-
-
- -

- - -

- With a square end of side x and length y = 120 - 4x, the volume is V(x) = x^2(120 - 4x) = 4x^2(30-x) for x \in (0, 30). -

- -
-
+ + + + + + + + + + + + + + + + +

+ According to a shipping company's regulations, the girth plus the length of a parcel they transport for their lowest rate may not exceed 120 inches, where by girth we mean the perimeter of one end. +

+ +

Image of a three-dimensional rectangular box

+ +

+ Suppose that we want to ship a parcel that has a square end of width x and an overall length of y, both measured in inches. +

+

+ + + +

+ Label the provided picture, using x for the length of each side of the square end, and y for the other edge of the package. +

+ + +

The square end has side length x inches and the length of the package is y inches.

+ +

The square end has side length x inches and the length of the package is y inches.

+
+ + + +

+ How does the length plus girth of 120 inches result in an equation (often called a constraint equation) that relates x and y? Explain, and state the equation. +

+
+ +

4x + y = 120

+ +

The girth is the perimeter of the square end: 4x. The constraint is that girth plus length is at most 120 inches. To maximize volume we use the entire allowance, giving the constraint equation 4x + y = 120.

+
+
+ + +

+ Solve the equation you found in (b) for one of the variables present. +

+
+ +

y = 120 - 4x

+ +

Solving for y: y = 120 - 4x.

+
+
+ + +

+ Hence determine the volume, V, of the package as a function of a single variable. +

+
+ +

+ V(x) = x^2(120 - 4x) = 4x^2(30 - x). +

+ +

The volume of the rectangular box with square end of side x and length y is V = x^2 y. Substituting y = 120 - 4x: + + V(x) = x^2(120 - 4x) = 4x^2(30 - x). + +

+
+
+ + +

+ What is the domain of the function V in the context of the physical setting of this problem? (Hint: neither x nor y can equal 0.) +

+
+ +

(0, 30)

+ +

We need both x > 0 and y = 120 - 4x > 0, which gives x < 30. So the domain of V in context is (0, 30).

+
+
+
+
diff --git a/source/activities/act-poly-polynomial-applications-soup.xml b/source/activities/act-poly-polynomial-applications-soup.xml index 51c9856f..3adb5501 100755 --- a/source/activities/act-poly-polynomial-applications-soup.xml +++ b/source/activities/act-poly-polynomial-applications-soup.xml @@ -1,94 +1,88 @@ - - - - - - - - - - - - - - - - -

- Suppose that we want to construct a cylindrical can using 60 square inches of material for the surface of the can. In this context, how does the can's volume depend on the radius we choose? -

-

- Let the cylindrical can have base radius r and height h. -

-

- - - -

- Use the formula for the surface area of a cylinder and the given constraint that the can's surface area is 60 square inches to write an equation that connects the radius r and height h. -

- - - - -

The surface area of a closed cylinder is 2\pi r^2 + 2\pi r h. Setting this equal to 60 square inches gives - - 2\pi r^2 + 2\pi r h = 60. - -

-
- - - -

- Solve the equation you found in (a) for h in terms of r. -

-
- - - -

Solving for h: - - h = \frac{60 - 2\pi r^2}{2\pi r} = \frac{30}{\pi r} - r. - -

-
-
- - -

- Recall that the volume of a cylinder is V = \pi r^2 h. Use your work in (b) to write V as a function of the single variable r; simplify the formula as much as possible. -

-
- - - -

Substituting into V = \pi r^2 h: - - V(r) = \pi r^2 \left(\frac{30}{\pi r} - r\right) = 30r - \pi r^3. - -

-
-
- - -

- What is the domain of the function V in the context of the physical setting of this problem? (Hint: how does the constraint on surface area provide an upper bound for the value of r? Think about the maximum area that can be allocated to the top and bottom of the can.) -

-
- - - -

We need r > 0 and h > 0. From h = \frac{30}{\pi r} - r > 0, we get \frac{30}{\pi r} > r, so r^2 < \frac{30}{\pi}, giving r < \sqrt{\frac{30}{\pi}}. The domain is \left(0,\ \sqrt{\frac{30}{\pi}}\right).

-
-
- -

- - -

- The surface area constraint 2\pi r^2 + 2\pi r h = 60 gives h = \frac{30}{\pi r} - r, so the volume is V(r) = 30r - \pi r^3 for r \in \left(0,\ \sqrt{\frac{30}{\pi}}\right). -

- -
-
+ + + + + + + + + + + + + + + + +

+ Suppose that we want to construct a cylindrical can using 60 square inches of material for the surface of the can. In this context, how does the can's volume depend on the radius we choose? +

+

+ Let the cylindrical can have base radius r and height h. +

+

+ + + +

+ Use the formula for the surface area of a cylinder and the given constraint that the can's surface area is 60 square inches to write an equation that connects the radius r and height h. +

+ + +

+ 2\pi r^2 + 2\pi r h = 60. +

+ +

The surface area of a closed cylinder is 2\pi r^2 + 2\pi r h. Setting this equal to 60 square inches gives + + 2\pi r^2 + 2\pi r h = 60. + +

+
+ + + +

+ Solve the equation you found in (a) for h in terms of r. +

+
+ +

h = \frac{30}{\pi r} - r

+ +

Solving for h: + + h = \frac{60 - 2\pi r^2}{2\pi r} = \frac{30}{\pi r} - r + . +

+
+
+ + +

+ Recall that the volume of a cylinder is V = \pi r^2 h. Use your work in (b) to write V as a function of the single variable r; simplify the formula as much as possible. +

+
+ +

V(r) = 30r - \pi r^3

+ +

Substituting into V = \pi r^2 h: + + V(r) = \pi r^2 \left(\frac{30}{\pi r} - r\right) = 30r - \pi r^3 + . +

+
+
+ + +

+ What is the domain of the function V in the context of the physical setting of this problem? (Hint: how does the constraint on surface area provide an upper bound for the value of r? Think about the maximum area that can be allocated to the top and bottom of the can.) +

+
+ +

\left(0,\ \sqrt{\frac{30}{\pi}}\right)

+ +

We need r > 0 and h > 0. From h = \frac{30}{\pi r} - r > 0, we get \frac{30}{\pi r} > r, so r^2 < \frac{30}{\pi}, giving r < \sqrt{\frac{30}{\pi}}. The domain is \left(0,\ \sqrt{\frac{30}{\pi}}\right).

+
+
+
+
diff --git a/source/activities/act-poly-polynomials-find.xml b/source/activities/act-poly-polynomials-find.xml index a9cbec75..2210bca7 100755 --- a/source/activities/act-poly-polynomials-find.xml +++ b/source/activities/act-poly-polynomials-find.xml @@ -1,85 +1,79 @@ - - - - - - - - - - - - - - - - -

- By experimenting with coefficients in Desmos, find a formula for a polynomial function that has the stated properties, or explain why no such polynomial exists. If you enter p(x)=a+bx+cx^2+dx^3+fx^4+gx^5 in Desmos, you'll get prompted to add sliders that make it easy to explore a degree 5 polynomial. (We skip using e as one of the constants since Desmos reserves e as the Euler constant.) -

-

- - - -

- A polynomial p of degree 5 with exactly 3 real zeros, 4 turning points, and such that \lim_{x \to -\infty} p(x) = +\infty and \lim_{x \to \infty} p(x) = -\infty. -

- - - - -

- One example: p(x) = 1 - x - 2x^2 + 4x^3 + 2x^4 - 2x^5. This degree-5 polynomial has exactly 3 real zeros, 4 turning points, and since the leading coefficient is -2 \lt 0 and the degree is odd: \lim_{x \to -\infty} p(x) = +\infty and \lim_{x \to \infty} p(x) = -\infty. -

-
- - - -

- A polynomial p of degree 4 with exactly 4 real zeros, 3 turning points, and such that \lim_{x \to -\infty} p(x) = +\infty and \lim_{x \to \infty} p(x) = -\infty. -

-
- - - -

- No such polynomial exists. A degree-4 polynomial has even degree, so both limits as x \to \pm\infty must be either both +\infty or both -\infty. It is impossible for the limits at -\infty and +\infty to be opposite infinities. -

-
-
- - -

- A polynomial p of degree 6 with exactly 2 real zeros, 3 turning points, and such that \lim_{x \to -\infty} p(x) = -\infty and \lim_{x \to \infty} p(x) = -\infty. -

-
- - - -

- One example: p(x) = -1 + x - 2x^5 - x^6. This degree-6 polynomial has negative leading coefficient, so \lim_{x \to \pm\infty} p(x) = -\infty. It has 2 real zeros and 3 turning points. -

-
-
- - -

- A polynomial p of degree 5 with exactly 5 real zeros, 3 turning points, and such that \lim_{x \to -\infty} p(x) = +\infty and \lim_{x \to \infty} p(x) = -\infty. -

-
- - - -

- No such polynomial exists. A degree-5 polynomial with odd degree and a positive leading coefficient has \lim_{x \to -\infty} p(x) = -\infty and \lim_{x \to \infty} p(x) = +\infty, while a negative leading coefficient gives the reverse. It is impossible for a degree-5 polynomial to have \lim_{x \to -\infty} p(x) = +\infty and simultaneously 3 turning points (an odd number of turning points forces matching end behavior, but odd-degree polynomials have opposite end behaviors). -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ By experimenting with coefficients in Desmos, find a formula for a polynomial function that has the stated properties, or explain why no such polynomial exists. If you enter p(x)=a+bx+cx^2+dx^3+fx^4+gx^5 in Desmos, you'll get prompted to add sliders that make it easy to explore a degree 5 polynomial. (We skip using e as one of the constants since Desmos reserves e as the Euler constant.) +

+

+ + + +

+ A polynomial p of degree 5 with exactly 3 real zeros, 4 turning points, and such that \lim_{x \to -\infty} p(x) = +\infty and \lim_{x \to \infty} p(x) = -\infty. +

+ + +

One example: p(x) = 1 - x - 2x^2 + 4x^3 + 2x^4 - 2x^5.

+ +

+ One example: p(x) = 1 - x - 2x^2 + 4x^3 + 2x^4 - 2x^5. This degree-5 polynomial has exactly 3 real zeros, 4 turning points, and since the leading coefficient is -2 \lt 0 and the degree is odd: \lim_{x \to -\infty} p(x) = +\infty and \lim_{x \to \infty} p(x) = -\infty. +

+
+ + + +

+ A polynomial p of degree 4 with exactly 4 real zeros, 3 turning points, and such that \lim_{x \to -\infty} p(x) = +\infty and \lim_{x \to \infty} p(x) = -\infty. +

+
+ +

No such polynomial exists.

+ +

+ No such polynomial exists. A degree-4 polynomial has even degree, so both limits as x \to \pm\infty must be either both +\infty or both -\infty. It is impossible for the limits at -\infty and +\infty to be opposite infinities. +

+
+
+ + +

+ A polynomial p of degree 6 with exactly 2 real zeros, 3 turning points, and such that \lim_{x \to -\infty} p(x) = -\infty and \lim_{x \to \infty} p(x) = -\infty. +

+
+ +

One example: p(x) = -1 + x - 2x^5 - x^6.

+ +

+ One example: p(x) = -1 + x - 2x^5 - x^6. This degree-6 polynomial has negative leading coefficient, so \lim_{x \to \pm\infty} p(x) = -\infty. It has 2 real zeros and 3 turning points. +

+
+
+ + +

+ A polynomial p of degree 5 with exactly 5 real zeros, 3 turning points, and such that \lim_{x \to -\infty} p(x) = +\infty and \lim_{x \to \infty} p(x) = -\infty. +

+
+ +

No such polynomial exists.

+ +

+ No such polynomial exists. A degree-5 polynomial with odd degree and a positive leading coefficient has \lim_{x \to -\infty} p(x) = -\infty and \lim_{x \to \infty} p(x) = +\infty, while a negative leading coefficient gives the reverse. It is impossible for a degree-5 polynomial to have \lim_{x \to -\infty} p(x) = +\infty and simultaneously 3 turning points (an odd number of turning points forces matching end behavior, but odd-degree polynomials have opposite end behaviors). +

+
+
+
+
diff --git a/source/activities/act-poly-polynomials-multiple-zeros.xml b/source/activities/act-poly-polynomials-multiple-zeros.xml index d25b5e12..2745bf55 100755 --- a/source/activities/act-poly-polynomials-multiple-zeros.xml +++ b/source/activities/act-poly-polynomials-multiple-zeros.xml @@ -1,105 +1,98 @@ - - - - - - - - - - - - - - - - -

- For each of the following prompts, try to determine a formula for a polynomial that satisfies the given criteria. If no such polynomial exists, explain why. -

-

- - - -

- A polynomial f of degree 10 whose zeros are x = -12 (multiplicity 3), x = -9 (multiplicity 2), x = 4 (multiplicity 4), and x = 10 (multiplicity 1), and f satisfies f(0) = 21. What can you say about the values of \lim_{x \to -\infty} f(x) and \lim_{x \to \infty} f(x)? -

- - - - -

- One formula: f(x) = -21\!\left(\dfrac{x+12}{12}\right)^3\!\left(\dfrac{x+9}{9}\right)^2\!\left(\dfrac{x-4}{4}\right)^4\!\left(\dfrac{x-10}{10}\right). We can verify: f(0) = -21\cdot 1 \cdot 1 \cdot 1 \cdot (-1) = 21 ✓. Since the degree is 10 (even) and the leading coefficient is negative, \lim_{x \to \pm\infty} f(x) = -\infty. -

-
- - - -

- A polynomial p of degree 9 that satisfies p(0) = -2 and has the graph shown in the following figure. Assume that all of the zeros of p are shown in the figure. -

- -

ADD ALT TEXT TO THIS IMAGE

- -
- - - -

- From the graph (reading off the zeros and their behavior), one example with p(0)=-2 is: p(x) = -2\!\left(\dfrac{x+8}{8}\right)^2\!\left(\dfrac{x+4}{4}\right)^3(x-1)\!\left(\dfrac{x-5}{5}\right)^2\!\left(\dfrac{x-7.5}{7.5}\right), which has degree 9 and p(0)=-2. -

-
-
- - -

- A polynomial q of degree 8 with 3 distinct real zeros (possibly of different multiplicities) such that q has the sign chart in the figure below and satisfies q(0) = -10. -

- -

ADD ALT TEXT TO THIS IMAGE

- -
- - - -

- From the sign chart (positive, then negative, then positive, then negative, with the pattern showing even-multiplicity zeros where sign doesn't change and odd-multiplicity zeros where it does), one example: q(x) = -10\!\left(\dfrac{x+2}{2}\right)^4\!\left(\dfrac{x-3}{3}\right)\!\left(\dfrac{x-9}{9}\right)^3. This has degree 8, three distinct real zeros, and q(0) = -10 \cdot 1 \cdot (-1) \cdot (-1) = -10 ✓. -

-
-
- - -

- A polynomial q of degree 9 with 3 distinct real zeros (possibly of different multiplicities) such that q satisfies the sign chart in part (c) and satisfies q(0) = -10. -

-
- - - -

- It is not possible to have a degree 9 polynomial satisfying the sign chart from part (c) and q(0)=-10, if the sign chart shows the same behavior at both ends (both positive or both negative for large |x|). A degree-9 polynomial has odd degree, so its limits at +\infty and -\infty must be opposite. If the sign chart requires both ends to have the same sign, degree 9 is impossible. -

-
-
- - -

- A polynomial p of degree 11 that satisfies p(0) = -2 and p has the graph shown in part (b). Assume that all of the zeros of p are shown in the figure. -

-
- - - -

- It is not possible to have a degree-11 polynomial matching the graph in part (b) if that graph shows the same long-term behavior at both ends. A degree-11 polynomial has odd degree, so its limits at +\infty and -\infty must have opposite signs, while the graph in (b) (a degree-9 example) already illustrates this odd-degree behavior. However, a degree-11 polynomial could match the graph if the overall end behavior is also opposite-going. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ For each of the following prompts, try to determine a formula for a polynomial that satisfies the given criteria. If no such polynomial exists, explain why. +

+

+ + + +

+ A polynomial f of degree 10 whose zeros are x = -12 (multiplicity 3), x = -9 (multiplicity 2), x = 4 (multiplicity 4), and x = 10 (multiplicity 1), and f satisfies f(0) = 21. What can you say about the values of \lim_{x \to -\infty} f(x) and \lim_{x \to \infty} f(x)? +

+ + +

One formula: f(x) = -21\left(\dfrac{x+12}{12}\right)^3\left(\dfrac{x+9}{9}\right)^2\left(\dfrac{x-4}{4}\right)^4\left(\dfrac{x-10}{10}\right)

+ +

+ One formula: f(x) = -21\left(\dfrac{x+12}{12}\right)^3\left(\dfrac{x+9}{9}\right)^2\left(\dfrac{x-4}{4}\right)^4\left(\dfrac{x-10}{10}\right). We can verify: f(0) = -21\cdot 1 \cdot 1 \cdot 1 \cdot (-1) = 21 ✓. Since the degree is 10 (even) and the leading coefficient is negative, \lim_{x \to \pm\infty} f(x) = -\infty. +

+
+ + + +

+ A polynomial p of degree 9 that satisfies p(0) = -2 and has the graph shown in the following figure. Assume that all of the zeros of p are shown in the figure. +

+ +

Graph of a polynomial p(x)

+ +
+ +

One example is: p(x) = -2\left(\dfrac{x+8}{8}\right)^2\left(\dfrac{x+4}{4}\right)^3(x-1)\left(\dfrac{x-5}{5}\right)^2\left(\dfrac{x-7.5}{7.5}\right)

+ +

+ From the graph (reading off the zeros and their behavior), one example with p(0)=-2 is: p(x) = -2\left(\dfrac{x+8}{8}\right)^2\left(\dfrac{x+4}{4}\right)^3(x-1)\left(\dfrac{x-5}{5}\right)^2\left(\dfrac{x-7.5}{7.5}\right), which has degree 9 and p(0)=-2. +

+
+
+ + +

+ A polynomial q of degree 8 with 3 distinct real zeros (possibly of different multiplicities) such that q has the sign chart in the figure below and satisfies q(0) = -10. +

+

Sign chart showing roots of x=-2,3,9 and signs from left to right around the roots of negative, negative, positive, negative.

+ +
+ +

One example: q(x) = -10\left(\dfrac{x+2}{2}\right)^4\left(\dfrac{x-3}{3}\right)\left(\dfrac{x-9}{9}\right)^3

+ +

+ From the sign chart (negative, then negative, then positive, then negative, with the pattern showing even-multiplicity zeros where sign doesn't change and odd-multiplicity zeros where it does), one example: q(x) = -10\left(\dfrac{x+2}{2}\right)^4\left(\dfrac{x-3}{3}\right)\left(\dfrac{x-9}{9}\right)^3. This has degree 8, three distinct real zeros, and q(0) = -10 \cdot 1 \cdot (-1) \cdot (-1) = -10 ✓. +

+
+
+ + +

+ A polynomial q of degree 9 with 3 distinct real zeros (possibly of different multiplicities) such that q satisfies the sign chart in part (c) and satisfies q(0) = -10. +

+
+ +

Not possible.

+ +

+ It is not possible to have a degree 9 polynomial satisfying the sign chart from part (c) and q(0)=-10, if the sign chart shows the same behavior at both ends (both positive or both negative for large |x|). A degree-9 polynomial has odd degree, so its limits at +\infty and -\infty must be opposite. If the sign chart requires both ends to have the same sign, degree 9 is impossible. +

+
+
+ + +

+ A polynomial p of degree 11 that satisfies p(0) = -2 and p has the graph shown in part (b). Assume that all of the zeros of p are shown in the figure. +

+
+ +

Not possible.

+ +

+ It is not possible to have a degree-11 polynomial matching the graph in part (b) if that graph shows the same long-term behavior at both ends. A degree-11 polynomial has odd degree, so its limits at +\infty and -\infty must have opposite signs, while the graph in (b) (a degree-9 example) already illustrates this odd-degree behavior. However, a degree-11 polynomial could match the graph if the overall end behavior is also opposite-going. +

+
+
+
+
diff --git a/source/activities/act-poly-polynomials-sign-chart.xml b/source/activities/act-poly-polynomials-sign-chart.xml index 69604295..310da1d6 100755 --- a/source/activities/act-poly-polynomials-sign-chart.xml +++ b/source/activities/act-poly-polynomials-sign-chart.xml @@ -1,121 +1,123 @@ - - - - - - - - - - - - - - - - -

- Consider the polynomial function given by - - p(x) = 4692(x+1520)(x^2+10000)(x-3471)^2(x-9738) - . -

-

- - - -

- What is the degree of p? How can you tell without fully expanding the factored form of the function? -

- - - - -

- The degree is 1 + 2 + 2 + 1 = 6. We add the exponents from each factor: (x+1520)^1(x^2+10000)^1(x-3471)^2(x-9738)^1 contributes degrees 1+2+2+1=6. -

-
- - - -

- What can you say about the sign of the factor (x^2 + 10000)? -

-
- - - -

- The factor (x^2 + 10000) is always positive for all real x, since x^2 \ge 0 so x^2 + 10000 \ge 10000 \gt 0. -

-
-
- - -

- What are the zeros of the polynomial p? -

-
- - - -

- The real zeros are x = -1520, x = 3471, and x = 9738. (The factor x^2+10000 has no real zeros since x^2 = -10000 has no real solution.) -

-
-
- - -

- Construct a sign chart for p by using the zeros you identified in (c) and then analyzing the sign of each factor of p. -

-
- - - -

- The constant 4692 \gt 0, and (x^2+10000) \gt 0 always, and (x-3471)^2 \ge 0 always (no sign change at x=3471). The sign is thus determined by (x+1520) and (x-9738): -

    -
  • x \lt -1520: (x+1520) \lt 0 and (x-9738) \lt 0, product is positive: p \gt 0.

  • -
  • -1520 \lt x \lt 9738 (and x \ne 3471): (x+1520) \gt 0 and (x-9738) \lt 0: p \lt 0. (At x=3471, p=0 and the sign does not change.)

  • -
  • x \gt 9738: both factors positive: p \gt 0.

  • -
-

-
-
- - -

- Without using a graphing utility, construct an approximate graph of p that has the zeros of p carefully labeled on the x-axis. -

-
- - - -

- The graph is positive (above the x-axis) for x \lt -1520, crosses zero at x=-1520 (passes through), touches zero at x=3471 (bounce, even multiplicity), remains negative until x=9738, then crosses zero and becomes positive. The leading term 4692 x^6 means both ends go to +\infty. -

-
-
- - -

- Use a graphing utility to check your earlier work. What is challenging or misleading when using technology to graph p? -

-
- - - -

- Using a graphing utility, the zeros at x=-1520, 3471, and 9738 are spread over a large x-range, making it challenging to see all features at once. It is difficult to tell from the graph that x=3471 is a bounce point (touching zero without crossing) unless the scale is set appropriately. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Consider the polynomial function given by + + p(x) = 4692(x+1520)(x^2+10000)(x-3471)^2(x-9738) + . +

+

+ + + +

+ What is the degree of p? How can you tell without fully expanding the factored form of the function? +

+ + +

6, adding the exponents from each factor.

+ +

+ The degree is 1 + 2 + 2 + 1 = 6. We add the exponents from each factor: (x+1520)^1(x^2+10000)^1(x-3471)^2(x-9738)^1 contributes degrees 1+2+2+1=6. +

+
+ + + +

+ What can you say about the sign of the factor (x^2 + 10000)? +

+
+ +

always positive

+ +

+ The factor (x^2 + 10000) is always positive for all real x, since x^2 \ge 0 so x^2 + 10000 \ge 10000 \gt 0. +

+
+
+ + +

+ What are the zeros of the polynomial p? +

+
+ +

The real zeros are x = -1520, x = 3471, and x = 9738.

+ +

+ The real zeros are x = -1520, x = 3471, and x = 9738. (The factor x^2+10000 has no real zeros since x^2 = -10000 has no real solution.) +

+
+
+ + +

+ Construct a sign chart for p by using the zeros you identified in (c) and then analyzing the sign of each factor of p. +

+
+ +

From left to right around the roots: positive, negative, negative, positive

+ +

+ The constant 4692 \gt 0, and (x^2+10000) \gt 0 always, and (x-3471)^2 \ge 0 always (no sign change at x=3471). The sign is thus determined by (x+1520) and (x-9738): +

    +
  • x \lt -1520: (x+1520) \lt 0 and (x-9738) \lt 0, product is positive: p \gt 0.

  • +
  • -1520 \lt x \lt 9738 (and x \ne 3471): (x+1520) \gt 0 and (x-9738) \lt 0: p \lt 0. (At x=3471, p=0 and the sign does not change.)

  • +
  • x \gt 9738: both factors positive: p \gt 0.

  • +
+

+
+
+ + +

+ Without using a graphing utility, construct an approximate graph of p that has the zeros of p carefully labeled on the x-axis. +

+
+ + +

+ The graph is positive (above the x-axis) for x \lt -1520, crosses zero at x=-1520 (passes through), touches zero at x=3471 (bounce, even multiplicity), remains negative until x=9738, then crosses zero and becomes positive. The leading term 4692 x^6 means both ends go to +\infty. +

+
+ +

+ The graph is positive (above the x-axis) for x \lt -1520, crosses zero at x=-1520 (passes through), touches zero at x=3471 (bounce, even multiplicity), remains negative until x=9738, then crosses zero and becomes positive. The leading term 4692 x^6 means both ends go to +\infty. +

+
+
+ + +

+ Use a graphing utility to check your earlier work. What is challenging or misleading when using technology to graph p? +

+
+ + +

+ Using a graphing utility, the zeros at x=-1520, 3471, and 9738 are spread over a large x-range, making it challenging to see all features at once. It is difficult to tell from the graph that x=3471 is a bounce point (touching zero without crossing) unless the scale is set appropriately. +

+
+ +

+ Using a graphing utility, the zeros at x=-1520, 3471, and 9738 are spread over a large x-range, making it challenging to see all features at once. It is difficult to tell from the graph that x=3471 is a bounce point (touching zero without crossing) unless the scale is set appropriately. +

+
+
+
+
diff --git a/source/activities/act-poly-rational-application.xml b/source/activities/act-poly-rational-application.xml index 8d299514..ccca1b33 100755 --- a/source/activities/act-poly-rational-application.xml +++ b/source/activities/act-poly-rational-application.xml @@ -1,111 +1,109 @@ - - - - - - - - - - - - - - - - -

- Suppose that we want to build an open rectangular box (that is, without a top) that holds 15 cubic feet of volume. If we want one side of the base to be twice as long as the other, how does the amount of material required depend on the shorter side of the base? We investigate this question through the following sequence of prompts. -

-

- - - -

- Draw a labeled picture of the box. Let x represent the shorter side of the base and h the height of the box. What is the length of the longer side of the base in terms of x? -

- - - - -

The box has a shorter base side of length x, a longer base side of length 2x, and height h.

-
- - - -

- Use the given volume constraint to write an equation that relates x and h, and solve the equation for h in terms of x. -

-
- - - -

The volume is V = x \cdot 2x \cdot h = 2x^2 h. Setting V = 15: 2x^2 h = 15, so h = \dfrac{15}{2x^2}.

-
-
- - -

- Determine a formula for the surface area, S, of the box in terms of x and h. -

-
- - - -

The open box (no top) has: one rectangular base (2x^2), two short sides (2 \cdot xh = 2xh), and two long sides (2 \cdot 2xh = 4xh). So - - S = 2x^2 + 2xh + 4xh = 2x^2 + 6xh. - -

-
-
- - -

- Using the constraint equation from (b) together with your work in (c), write surface area, S, as a function of the single variable x. -

-
- - - -

Substituting h = \dfrac{15}{2x^2}: - - S(x) = 2x^2 + 6x \cdot \frac{15}{2x^2} = 2x^2 + \frac{45}{x}. - -

-
-
- - -

- What type of function is S? What is its domain? -

-
- - - -

S(x) = 2x^2 + \dfrac{45}{x} = \dfrac{2x^3 + 45}{x} is a rational function. In the physical context, x > 0 (the side length must be positive), so the domain is (0, \infty).

-
-
- - -

- Plot the function S using Desmos. What appears to be the least amount of material that can be used to construct the desired box that holds 15 cubic feet of volume? -

-
- - - -

From a graph of S(x) = 2x^2 + \dfrac{45}{x} on (0, \infty), the minimum value of S occurs at approximately x \approx 2.24 feet, giving a minimum surface area of approximately S \approx 30.0 square feet. (The exact minimum occurs at x = \sqrt[3]{45/4}.)

-
-
- -

- - -

- With base sides x and 2x and volume constraint 2x^2 h = 15, we get h = 15/(2x^2) and surface area S(x) = 2x^2 + 45/x, a rational function on domain (0, \infty). Its minimum is approximately S \approx 30.0 sq ft at x \approx 2.24 ft. -

- -
-
+ + + + + + + + + + + + + + + + +

+ Suppose that we want to build an open rectangular box (that is, without a top) that holds 15 cubic feet of volume. If we want one side of the base to be twice as long as the other, how does the amount of material required depend on the shorter side of the base? We investigate this question through the following sequence of prompts. +

+

+ + + +

+ Draw a labeled picture of the box. Let x represent the shorter side of the base and h the height of the box. What is the length of the longer side of the base in terms of x? +

+ + + +

The box has a shorter base side of length x, a longer base side of length 2x, and height h.

+
+ +

The box has a shorter base side of length x, a longer base side of length 2x, and height h.

+
+ + + +

+ Use the given volume constraint to write an equation that relates x and h, and solve the equation for h in terms of x. +

+
+ + +

The volume is V = 2x^2 h. Setting V = 15 gives h = \dfrac{15}{2x^2}.

+
+ +

The volume is V = x \cdot 2x \cdot h = 2x^2 h. Setting V = 15: 2x^2 h = 15, so h = \dfrac{15}{2x^2}.

+
+
+ + +

+ Determine a formula for the surface area, S, of the box in terms of x and h. +

+
+ +

S = 2x^2 + 2xh + 4xh = 2x^2 + 6xh.

+ +

The open box (no top) has: one rectangular base (2x^2), two short sides (2 \cdot xh = 2xh), and two long sides (2 \cdot 2xh = 4xh). So + + S = 2x^2 + 2xh + 4xh = 2x^2 + 6xh. + +

+
+
+ + +

+ Using the constraint equation from (b) together with your work in (c), write surface area, S, as a function of the single variable x. +

+
+ +

S(x) = 2x^2 + \frac{45}{x}

+ +

Substituting h = \dfrac{15}{2x^2}: + + S(x) = 2x^2 + 6x \cdot \frac{15}{2x^2} = 2x^2 + \frac{45}{x}. + +

+
+
+ + +

+ What type of function is S? What is its domain? +

+
+ +

S is a rational function with domain (0, \infty).

+ +

S(x) = 2x^2 + \dfrac{45}{x} = \dfrac{2x^3 + 45}{x} is a rational function. In the physical context, x > 0 (the side length must be positive), so the domain is (0, \infty).

+
+
+ + +

+ Plot the function S using Desmos. What appears to be the least amount of material that can be used to construct the desired box that holds 15 cubic feet of volume? +

+
+ + +

From a graph of S(x) = 2x^2 + \dfrac{45}{x} on (0, \infty), the minimum value of S occurs at approximately x \approx 2.24 feet, giving a minimum surface area of approximately S \approx 30.0 square feet.

+
+ +

From a graph of S(x) = 2x^2 + \dfrac{45}{x} on (0, \infty), the minimum value of S occurs at approximately x \approx 2.24 feet, giving a minimum surface area of approximately S \approx 30.0 square feet. (The exact minimum occurs at x = \sqrt[3]{45/4}.)

+
+
+
+
diff --git a/source/activities/act-poly-rational-domain.xml b/source/activities/act-poly-rational-domain.xml index 43843d11..61569460 100755 --- a/source/activities/act-poly-rational-domain.xml +++ b/source/activities/act-poly-rational-domain.xml @@ -1,103 +1,95 @@ - - - - - - - - - - - - - - - - -

- Determine the domain of each of the following functions. In each case, write a sentence to accurately describe the domain. -

-

- - - -

- \displaystyle f(x) = \frac{x^2-1}{x^2 + 1} -

- - - - -

The denominator x^2+1 is always positive, so it is never zero. The domain of f is all real numbers.

-
- - - -

- \displaystyle g(x) = \frac{x^2 - 1}{x^2 + 3x - 4} -

-
- - - -

Factoring the denominator: x^2+3x-4 = (x-1)(x+4). The denominator is zero when x = 1 or x = -4. The domain of g is all real numbers except x = 1 and x = -4.

-
-
- - -

- \displaystyle h(x) = \frac{1}{x} + \frac{1}{x-1} + \frac{1}{x-2} -

-
- - - -

Each fraction is undefined when its denominator is zero: 1/x is undefined at x=0, 1/(x-1) is undefined at x=1, and 1/(x-2) is undefined at x=2. The domain of h is all real numbers except x = 0, x = 1, and x = 2.

-
-
- - -

- \displaystyle j(x) = \frac{(x+5)(x-3)(x+1)(x-4)}{(x+1)(x+3)(x-5)} -

-
- - - -

The denominator is zero when x = -1, x = -3, or x = 5. The domain of j is all real numbers except x = -1, x = -3, and x = 5.

-
-
- - -

- \displaystyle k(x) = \frac{2x^2 + 7}{3x^3 - 12x} -

-
- - - -

Factoring the denominator: 3x^3 - 12x = 3x(x^2 - 4) = 3x(x-2)(x+2). The denominator is zero when x = 0, x = 2, or x = -2. The domain of k is all real numbers except x = -2, x = 0, and x = 2.

-
-
- - -

- \displaystyle m(x) = \frac{5x^2 - 45}{7(x-2)(x-3)^2(x^2 + 9)(x+1)} -

-
- - - -

The denominator is zero when x = 2, x = 3, or x = -1 (the factor x^2+9 has no real zeros since x^2 \geq 0). The domain of m is all real numbers except x = -1, x = 2, and x = 3.

-
-
- -

- - -

- Rational functions are undefined wherever the denominator is zero. Factor each denominator and exclude those x-values: f has domain \mathbb{R}; g excludes x \in \{-4,1\}; h excludes x \in \{0,1,2\}; j excludes x \in \{-3,-1,5\}; k excludes x \in \{-2,0,2\}; m excludes x \in \{-1,2,3\}. -

- -
-
+ + + + + + + + + + + + + + + + +

+ Determine the domain of each of the following functions. In each case, write a sentence to accurately describe the domain. +

+

+ + + +

+ \displaystyle f(x) = \frac{x^2-1}{x^2 + 1} +

+ + +

The domain of f is all real numbers.

+ +

The denominator x^2+1 is always positive, so it is never zero. The domain of f is all real numbers.

+
+ + + +

+ \displaystyle g(x) = \frac{x^2 - 1}{x^2 + 3x - 4} +

+
+ +

The domain of g is all real numbers except x = 1 and x = -4.

+ +

Factoring the denominator: x^2+3x-4 = (x-1)(x+4). The denominator is zero when x = 1 or x = -4. The domain of g is all real numbers except x = 1 and x = -4.

+
+
+ + +

+ \displaystyle h(x) = \frac{1}{x} + \frac{1}{x-1} + \frac{1}{x-2} +

+
+ +

The domain of h is all real numbers except x = 0, x = 1, and x = 2.

+ +

Each fraction is undefined when its denominator is zero: 1/x is undefined at x=0, 1/(x-1) is undefined at x=1, and 1/(x-2) is undefined at x=2. The domain of h is all real numbers except x = 0, x = 1, and x = 2.

+
+
+ + +

+ \displaystyle j(x) = \frac{(x+5)(x-3)(x+1)(x-4)}{(x+1)(x+3)(x-5)} +

+
+ +

The domain of j is all real numbers except x = -1, x = -3, and x = 5.

+ +

The denominator is zero when x = -1, x = -3, or x = 5. The domain of j is all real numbers except x = -1, x = -3, and x = 5.

+
+
+ + +

+ \displaystyle k(x) = \frac{2x^2 + 7}{3x^3 - 12x} +

+
+ +

The domain of k is all real numbers except x = -2, x = 0, and x = 2.

+ +

Factoring the denominator: 3x^3 - 12x = 3x(x^2 - 4) = 3x(x-2)(x+2). The denominator is zero when x = 0, x = 2, or x = -2. The domain of k is all real numbers except x = -2, x = 0, and x = 2.

+
+
+ + +

+ \displaystyle m(x) = \frac{5x^2 - 45}{7(x-2)(x-3)^2(x^2 + 9)(x+1)} +

+
+ +

The domain of m is all real numbers except x = -1, x = 2, and x = 3.

+ +

The denominator is zero when x = 2, x = 3, or x = -1 (the factor x^2+9 has no real zeros since x^2 \geq 0). The domain of m is all real numbers except x = -1, x = 2, and x = 3.

+
+
+
+
diff --git a/source/activities/act-poly-rational-features-ZAH.xml b/source/activities/act-poly-rational-features-ZAH.xml index 40182218..235f164a 100755 --- a/source/activities/act-poly-rational-features-ZAH.xml +++ b/source/activities/act-poly-rational-features-ZAH.xml @@ -1,151 +1,203 @@ - - - - - - - - - - - - - - - - -

- For each of the following rational functions, state the function's domain and determine the locations of all zeros, vertical asymptotes, and holes. Provide clear justification for your work by discussing the zeros of the numerator and denominator, as well as a table of values of the function near any point where you believe the function has a hole. In addition, state the value of the horizontal asymptote of the function or explain why the function has no such asymptote. -

-

- - - -

- \displaystyle f(x) = \frac{x^3 - 6x^2 + 5x}{x^2-1} -

- - - - -

Factor: f(x) = \dfrac{x(x-1)(x-5)}{(x+1)(x-1)}. The factor (x-1) cancels, giving the reduced form \dfrac{x(x-5)}{x+1}. -

    -
  • Domain: all reals except x = 1 and x = -1.

  • -
  • Zeros: x = 0 and x = 5 (where reduced numerator is zero and x \neq -1, 1).

  • -
  • Vertical asymptote: x = -1 (denominator zero, numerator nonzero in reduced form).

  • -
  • Hole: at x = 1; hole value \frac{1(1-5)}{1+1} = -2, so hole at (1, -2).

  • -
  • Horizontal asymptote: none (reduced form has degree 2 over degree 1; there is an oblique asymptote y = x - 6).

  • -
-

-
- - - -

- \displaystyle g(x) = \frac{11(x^2 + 1)(x-7)}{23(x-1)(x^2+4)} -

-
- - - -

The numerator x^2+1 > 0 always; the only real zero of the numerator is x = 7. The denominator zeros: x = 1 from (x-1); x^2+4 > 0 always. No common factors. -

    -
  • Domain: all reals except x = 1.

  • -
  • Zero: x = 7.

  • -
  • Vertical asymptote: x = 1.

  • -
  • Holes: none.

  • -
  • Horizontal asymptote: y = \dfrac{11}{23} (degree 3 over degree 3, ratio of leading coefficients).

  • -
-

-
-
- - -

- \displaystyle h(x) = \frac{x^2 - 8x + 12}{x^2 - 3x - 18} -

-
- - - -

Factor: h(x) = \dfrac{(x-2)(x-6)}{(x-6)(x+3)}. The factor (x-6) cancels. -

    -
  • Domain: all reals except x = 6 and x = -3.

  • -
  • Zero: x = 2.

  • -
  • Vertical asymptote: x = -3.

  • -
  • Hole: at x = 6; hole value \dfrac{6-2}{6+3} = \dfrac{4}{9}, so hole at \left(6,\, \dfrac{4}{9}\right).

  • -
  • Horizontal asymptote: y = 1 (same degree, leading coefficients both 1).

  • -
-

-
-
- - -

- \displaystyle q(x) = \frac{(x-2)(x^2-9)}{(x-3)(x^2 + 4)} -

-
- - - -

Factor: q(x) = \dfrac{(x-2)(x-3)(x+3)}{(x-3)(x^2+4)}. The factor (x-3) cancels; x^2+4 > 0 always. -

    -
  • Domain: all reals except x = 3.

  • -
  • Zeros: x = 2 and x = -3.

  • -
  • Vertical asymptotes: none (the only denominator zero x=3 is a hole).

  • -
  • Hole: at x = 3; hole value \dfrac{(3-2)(3+3)}{3^2+4} = \dfrac{6}{13}, so hole at \left(3,\, \dfrac{6}{13}\right).

  • -
  • Horizontal asymptote: y = 1 (degree 3 over degree 3).

  • -
-

-
-
- - -

- \displaystyle r(x) = \frac{19(x-2) (x-3)^2 (x+1)}{17(x+1)(x-4)^2(x-5)} -

-
- - - -

The factor (x+1) cancels. -

    -
  • Domain: all reals except x = -1, x = 4, and x = 5.

  • -
  • Zeros: x = 2 and x = 3.

  • -
  • Vertical asymptotes: x = 4 and x = 5.

  • -
  • Hole: at x = -1; hole value \dfrac{19(-1-2)(-1-3)^2}{17(-1-4)^2(-1-5)} = \dfrac{19(-3)(16)}{17(25)(-6)} = \dfrac{-912}{-2550} = \dfrac{152}{425}, so hole at \left(-1,\, \dfrac{152}{425}\right).

  • -
  • Horizontal asymptote: y = \dfrac{19}{17} (degree 4 over degree 4).

  • -
-

-
-
- - -

- \displaystyle s(x) = \frac{1}{x^2 + 1} -

-
- - - -

The numerator is always 1 \neq 0, and the denominator x^2+1 > 0 always. -

    -
  • Domain: all real numbers.

  • -
  • Zeros: none.

  • -
  • Vertical asymptotes: none.

  • -
  • Holes: none.

  • -
  • Horizontal asymptote: y = 0 (degree 0 over degree 2).

  • -
-

-
-
- -

- - -

- Factor numerator and denominator, cancel common factors, then identify: zeros (numerator zero in reduced form), vertical asymptotes (denominator zero in reduced form), holes (cancelled factors), horizontal asymptote (degree comparison of leading terms). -

- -
-
+ + + + + + + + + + + + + + + + +

+ For each of the following rational functions, state the function's domain and determine the locations of all zeros, vertical asymptotes, and holes. Provide clear justification for your work by discussing the zeros of the numerator and denominator, as well as a table of values of the function near any point where you believe the function has a hole. In addition, state the value of the horizontal asymptote of the function or explain why the function has no such asymptote. +

+

+ + + +

+ \displaystyle f(x) = \frac{x^3 - 6x^2 + 5x}{x^2-1} +

+ + + +

+

    +
  • Domain: all reals except x = 1 and x = -1

  • +
  • Zeros: x = 0 and x = 5

  • +
  • Vertical asymptote: x = -1

  • +
  • Hole: at x = 1, values nearby seem to be approaching -2

  • +
  • Horizontal asymptote: none

  • +
+

+
+ +

Factor: f(x) = \dfrac{x(x-1)(x-5)}{(x+1)(x-1)}. The factor (x-1) cancels, giving the reduced form \dfrac{x(x-5)}{x+1}. +

    +
  • Domain: all reals except x = 1 and x = -1.

  • +
  • Zeros: x = 0 and x = 5 (where reduced numerator is zero and x \neq -1, 1).

  • +
  • Vertical asymptote: x = -1 (denominator zero, numerator nonzero in reduced form).

  • +
  • Hole: at x = 1; hole value \frac{1(1-5)}{1+1} = -2, so hole at (1, -2).

  • +
  • Horizontal asymptote: none (reduced form has degree 2 over degree 1; there is an oblique asymptote y = x - 6).

  • +
+

+
+ + + +

+ \displaystyle g(x) = \frac{11(x^2 + 1)(x-7)}{23(x-1)(x^2+4)} +

+
+ + +

+

    +
  • Domain: all reals except x = 1

  • +
  • Zero: x = 7

  • +
  • Vertical asymptote: x = 1

  • +
  • Holes: none

  • +
  • Horizontal asymptote: y = \dfrac{11}{23}

  • +
+

+
+ +

The numerator x^2+1 > 0 always; the only real zero of the numerator is x = 7. The denominator zeros: x = 1 from (x-1); x^2+4 > 0 always. No common factors. +

    +
  • Domain: all reals except x = 1.

  • +
  • Zero: x = 7.

  • +
  • Vertical asymptote: x = 1.

  • +
  • Holes: none.

  • +
  • Horizontal asymptote: y = \dfrac{11}{23} (degree 3 over degree 3, ratio of leading coefficients).

  • +
+

+
+
+ + +

+ \displaystyle h(x) = \frac{x^2 - 8x + 12}{x^2 - 3x - 18} +

+
+ + +

+

    +
  • Domain: all reals except x = 6 and x = -3

  • +
  • Zero: x = 2

  • +
  • Vertical asymptote: x = -3

  • +
  • Hole: at x = 6; values nearby are approaching \dfrac{4}{9}

  • +
  • Horizontal asymptote: y = 1

  • +
+

+
+ +

Factor: h(x) = \dfrac{(x-2)(x-6)}{(x-6)(x+3)}. The factor (x-6) cancels. +

    +
  • Domain: all reals except x = 6 and x = -3.

  • +
  • Zero: x = 2.

  • +
  • Vertical asymptote: x = -3.

  • +
  • Hole: at x = 6; hole value \dfrac{6-2}{6+3} = \dfrac{4}{9}, so hole at \left(6,\, \dfrac{4}{9}\right).

  • +
  • Horizontal asymptote: y = 1 (same degree, leading coefficients both 1).

  • +
+

+
+
+ + +

+ \displaystyle q(x) = \frac{(x-2)(x^2-9)}{(x-3)(x^2 + 4)} +

+
+ + +

+

    +
  • Domain: all reals except x = 3

  • +
  • Zeros: x = 2 and x = -3

  • +
  • Vertical asymptotes: none

  • +
  • Hole: at x = 3; values nearby are approaching \dfrac{6}{13}\right)

  • +
  • Horizontal asymptote: y = 1

  • +
+

+
+ +

Factor: q(x) = \dfrac{(x-2)(x-3)(x+3)}{(x-3)(x^2+4)}. The factor (x-3) cancels; x^2+4 > 0 always. +

    +
  • Domain: all reals except x = 3.

  • +
  • Zeros: x = 2 and x = -3.

  • +
  • Vertical asymptotes: none (the only denominator zero x=3 is a hole).

  • +
  • Hole: at x = 3; hole value \dfrac{(3-2)(3+3)}{3^2+4} = \dfrac{6}{13}, so hole at \left(3,\, \dfrac{6}{13}\right).

  • +
  • Horizontal asymptote: y = 1 (degree 3 over degree 3).

  • +
+

+
+
+ + +

+ \displaystyle r(x) = \frac{19(x-2) (x-3)^2 (x+1)}{17(x+1)(x-4)^2(x-5)} +

+
+ + +

+

    +
  • Domain: all reals except x = -1, x = 4, and x = 5.

  • +
  • Zeros: x = 2 and x = 3.

  • +
  • Vertical asymptotes: x = 4 and x = 5.

  • +
  • Hole: at x = -1; values nearby are approaching \dfrac{152}{425}\right).

  • +
  • Horizontal asymptote: y = \dfrac{19}{17}

  • +
+

+
+ +

The factor (x+1) cancels. +

    +
  • Domain: all reals except x = -1, x = 4, and x = 5.

  • +
  • Zeros: x = 2 and x = 3.

  • +
  • Vertical asymptotes: x = 4 and x = 5.

  • +
  • Hole: at x = -1; hole value \dfrac{19(-1-2)(-1-3)^2}{17(-1-4)^2(-1-5)} = \dfrac{19(-3)(16)}{17(25)(-6)} = \dfrac{-912}{-2550} = \dfrac{152}{425}, so hole at \left(-1,\, \dfrac{152}{425}\right).

  • +
  • Horizontal asymptote: y = \dfrac{19}{17} (degree 4 over degree 4).

  • +
+

+
+
+ + +

+ \displaystyle s(x) = \frac{1}{x^2 + 1} +

+
+ + +

+

    +
  • Domain: all real numbers.

  • +
  • Zeros: none.

  • +
  • Vertical asymptotes: none.

  • +
  • Holes: none.

  • +
  • Horizontal asymptote: y = 0

  • +
+

+
+ +

The numerator is always 1 \neq 0, and the denominator x^2+1 > 0 always. +

    +
  • Domain: all real numbers.

  • +
  • Zeros: none.

  • +
  • Vertical asymptotes: none.

  • +
  • Holes: none.

  • +
  • Horizontal asymptote: y = 0 (degree 0 over degree 2).

  • +
+

+
+
+
+
diff --git a/source/activities/act-poly-rational-formula.xml b/source/activities/act-poly-rational-formula.xml index 50fb1f5d..5e6dd5b3 100755 --- a/source/activities/act-poly-rational-formula.xml +++ b/source/activities/act-poly-rational-formula.xml @@ -1,116 +1,127 @@ - - - - - - - - - - - - - - - - -

- Find a formula for a rational function that meets the stated criteria as given by words, a sign chart, or graph. Write several sentences to justify why your formula matches the specifications. -

-

- - - -

- A rational function r such that r has a vertical asymptote at x = -2, a zero at x = 1, a hole at x = 5, and a horizontal asymptote of y = -3. -

- - - - -

We need: a factor (x+2) in the denominator for the vertical asymptote at x=-2; a factor (x-1) in the numerator for the zero at x=1; the factor (x-5) in both numerator and denominator for the hole at x=5; and a ratio of leading coefficients of -3 for the horizontal asymptote y=-3. One such function is - - r(x) = \frac{-3(x-1)(x-5)}{(x+2)(x-5)}. - -

-
- - - -

- A rational function u whose numerator has degree 3, denominator has degree 3, and that has exactly one vertical asymptote at x = -4 and a horizontal asymptote of y = \frac{3}{7}. -

-
- - - -

We need: exactly one factor (x+4) in the denominator for the vertical asymptote; the other two denominator factors must introduce no new real zeros (e.g., x^2+1); and ratio of leading coefficients \frac{3}{7}. One such function is - - u(x) = \frac{3x(x^2+3)}{7(x+4)(x^2+1)}. - - Both numerator and denominator have degree 3, there is exactly one vertical asymptote at x=-4, and the horizontal asymptote is y = \frac{3}{7}.

-
-
- - -

- A rational function w whose formula generates a graph with all of the characteristics shown in the following figure. Assume that w(5) = 0 but w(x) \gt 0 for all other x such that x \gt 3. -

- -

ADD ALT TEXT TO THIS IMAGE

-
- - - -

From the graph, w appears to have zeros at x = -4 and at x = 5 (with even multiplicity, since w(x) > 0 for other x > 3), and vertical asymptotes at x = -1 and x = 3. One formula consistent with these features is - - w(x) = \frac{9(x+4)(x-5)^2}{50(x+1)^2(x-3)}. - -

-
-
- - -

- A rational function z whose formula satisfies the sign chart shown in the following figure, and for which z has no horizontal asymptote and its only vertical asymptotes occur at the middle two values of x noted on the sign chart. -

- -

ADD ALT TEXT TO THIS IMAGE

- -
- - - -

From the sign chart, the function has zeros at x = -4 and x = 5, vertical asymptotes at x = -1 and x = 3, no horizontal asymptote, and the behavior shown in the chart requires the numerator degree to exceed the denominator degree. One formula is - - z(x) = -\frac{(x+4)(x-5)^2}{(x+1)(x-3)}. - -

-
-
- - -

- A rational function f that has exactly two holes, two vertical asymptotes, two zeros, and a horizontal asymptote. -

-
- - - -

We need: two factors that cancel for the holes; two denominator factors that don't cancel for the VAs; two remaining numerator factors for the zeros; and equal numerator/denominator degree for the HA. One formula is - - f(x) = \frac{(x-1)(x+1)(x+2)(x-2)}{(x-1)(x+1)(x-3)(x+3)}. - - After simplification, f(x) = \dfrac{(x+2)(x-2)}{(x-3)(x+3)}. This has holes at \left(-1,\dfrac{3}{8}\right) and \left(1,\dfrac{3}{8}\right), vertical asymptotes at x = 3 and x = -3, zeros at x = 2 and x = -2, and horizontal asymptote y = 1.

-
-
- -

- - -

- Sample answers: (a) r(x)=-3(x-1)(x-5)/[(x+2)(x-5)]; (b) u(x)=3x(x^2+3)/[7(x+4)(x^2+1)]; (c) based on graph features; (d) based on sign chart; (e) f(x)=(x-1)(x+1)(x+2)(x-2)/[(x-1)(x+1)(x-3)(x+3)]. -

- -
-
+ + + + + + + + + + + + + + + + +

+ Find a formula for a rational function that meets the stated criteria as given by words, a sign chart, or graph. Write several sentences to justify why your formula matches the specifications. +

+

+ + + +

+ A rational function r such that r has a vertical asymptote at x = -2, a zero at x = 1, a hole at x = 5, and a horizontal asymptote of y = -3. +

+ + +

One such function is + + r(x) = \frac{-3(x-1)(x-5)}{(x+2)(x-5)}. + +

+ +

We need: a factor (x+2) in the denominator for the vertical asymptote at x=-2; a factor (x-1) in the numerator for the zero at x=1; the factor (x-5) in both numerator and denominator for the hole at x=5; and a ratio of leading coefficients of -3 for the horizontal asymptote y=-3. One such function is + + r(x) = \frac{-3(x-1)(x-5)}{(x+2)(x-5)}. + +

+
+ + + +

+ A rational function u whose numerator has degree 3, denominator has degree 3, and that has exactly one vertical asymptote at x = -4 and a horizontal asymptote of y = \frac{3}{7}. +

+
+ +

One such function is + + u(x) = \frac{3x(x^2+3)}{7(x+4)(x^2+1)}. +

+ +

We need: exactly one factor (x+4) in the denominator for the vertical asymptote; the other two denominator factors must introduce no new real zeros (e.g., x^2+1); and ratio of leading coefficients \frac{3}{7}. One such function is + + u(x) = \frac{3x(x^2+3)}{7(x+4)(x^2+1)} + . + Both numerator and denominator have degree 3, there is exactly one vertical asymptote at x=-4, and the horizontal asymptote is y = \frac{3}{7}.

+
+
+ + +

+ A rational function w whose formula generates a graph with all of the characteristics shown in the following figure. Assume that w(5) = 0 but w(x) \gt 0 for all other x such that x \gt 3. +

+ +

Graph of a function with vertical asymptotes at x=-1 and x=3, and roots at x=-4 and x=5.

+
+ +

One formula consistent with these features is + + w(x) = \frac{9(x+4)(x-5)^2}{50(x+1)^2(x-3)}. + +

+ +

From the graph, w appears to have zeros at x = -4 and at x = 5 (with even multiplicity, since w(x) > 0 for other x > 3), and vertical asymptotes at x = -1 and x = 3. One formula consistent with these features is + + w(x) = \frac{9(x+4)(x-5)^2}{50(x+1)^2(x-3)}. + +

+
+
+ + +

+ A rational function z whose formula satisfies the sign chart shown in the following figure, and for which z has no horizontal asymptote and its only vertical asymptotes occur at the middle two values of x noted on the sign chart. +

+ +

Sign chart showing roots of x=-4,-1,3,5 and whose signs from left to right around the roots are positive, negative, positive, negative, negative.

+ +
+ +

One formula is + + z(x) = -\frac{(x+4)(x-5)^2}{(x+1)(x-3)}. + +

+
+ +

From the sign chart, the function has zeros at x = -4 and x = 5, vertical asymptotes at x = -1 and x = 3, no horizontal asymptote, and the behavior shown in the chart requires the numerator degree to exceed the denominator degree. One formula is + + z(x) = -\frac{(x+4)(x-5)^2}{(x+1)(x-3)}. + +

+
+
+ + +

+ A rational function f that has exactly two holes, two vertical asymptotes, two zeros, and a horizontal asymptote. +

+
+ +

One formula is + + f(x) = \frac{(x-1)(x+1)(x+2)(x-2)}{(x-1)(x+1)(x-3)(x+3)}. +

+ +

We need: two factors that cancel for the holes; two denominator factors that don't cancel for the VAs; two remaining numerator factors for the zeros; and equal numerator/denominator degree for the HA. One formula is + + f(x) = \frac{(x-1)(x+1)(x+2)(x-2)}{(x-1)(x+1)(x-3)(x+3)}. + + After simplification, f(x) = \dfrac{(x+2)(x-2)}{(x-3)(x+3)}. This has holes at \left(-1,\dfrac{3}{8}\right) and \left(1,\dfrac{3}{8}\right), vertical asymptotes at x = 3 and x = -3, zeros at x = 2 and x = -2, and horizontal asymptote y = 1.

+
+
+
+
diff --git a/source/activities/act-poly-rational-long-term-1.xml b/source/activities/act-poly-rational-long-term-1.xml index 043ba3a7..95e2bbe1 100755 --- a/source/activities/act-poly-rational-long-term-1.xml +++ b/source/activities/act-poly-rational-long-term-1.xml @@ -1,103 +1,99 @@ - - - - - - - - - - - - - - - - -

- Consider the rational function r(x) = \frac{3x^2 - 5x + 1}{7x^2 + 2x - 11}. -

-

- Observe that the largest power of x that's present in r(x) is x^2. In addition, because of the dominant terms of 3x^2 in the numerator and 7x^2 in the denominator, both the numerator and denominator of r increase without bound as x increases without bound. In order to understand the long-range behavior of r, we choose to write the function in a different algebraic form. -

-

- - - -

- Note that we can multiply the formula for r by the form of 1 given by 1 = \frac{\frac{1}{x^2}}{\frac{1}{x^2}}. Do so, and distribute and simplify as much as possible in both the numerator and denominator to write r in a different algebraic form. -

- - - - -

Multiplying numerator and denominator by \dfrac{1}{x^2}: - - r(x) &= \frac{3x^2 - 5x + 1}{7x^2 + 2x - 11} \cdot \frac{\frac{1}{x^2}}{\frac{1}{x^2}} - &= \frac{3 - \frac{5}{x} + \frac{1}{x^2}}{7 + \frac{2}{x} - \frac{11}{x^2}}. - -

-
- - - -

- Having rewritten r, we are in a better position to evaluate \lim_{x \to \infty} r(x). - Using our work from (a), we have - - \lim_{x \to \infty} r(x) = \lim_{x \to \infty} \frac{3 - \frac{5}{x} + \frac{1}{x^2}}{7 + \frac{2}{x} - \frac{11}{x^2}} - . - What is the exact value of this limit and why? -

-
- - - -

As x \to \infty, the terms \frac{5}{x}, \frac{1}{x^2}, \frac{2}{x}, and \frac{11}{x^2} all approach 0. Therefore - - \lim_{x \to \infty} r(x) = \frac{3 - 0 + 0}{7 + 0 - 0} = \frac{3}{7}. - -

-
-
- - -

- Next, determine - - \lim_{x \to -\infty} r(x) = \lim_{x \to -\infty} \frac{3 - \frac{5}{x} + \frac{1}{x^2}}{7 + \frac{2}{x} - \frac{11}{x^2}} - . -

-
- - - -

For the same reason, as x \to -\infty the terms with x in the denominator all approach 0, so - - \lim_{x \to -\infty} r(x) = \frac{3}{7}. - -

-
-
- - -

- Use Desmos to plot r on the interval [-10,10]. In addition, plot the horizontal line y = \frac{3}{7}. What is the meaning of the limits you found in (b) and (c)? -

-
- - - -

The graph of r approaches the horizontal line y = \dfrac{3}{7} as x \to \pm\infty. This line is called a horizontal asymptote of r. The limits found in (b) and (c) say that far to the left and far to the right of the origin, r(x) gets arbitrarily close to \dfrac{3}{7}.

-
-
- -

- - -

- Multiplying by \frac{1/x^2}{1/x^2} gives r(x) = \frac{3 - 5/x + 1/x^2}{7 + 2/x - 11/x^2}. Since the terms with x in the denominator vanish as x \to \pm\infty, both limits equal \frac{3}{7}, the ratio of the leading coefficients. The horizontal asymptote is y = \frac{3}{7}. -

- -
-
+ + + + + + + + + + + + + + + + +

+ Consider the rational function r(x) = \frac{3x^2 - 5x + 1}{7x^2 + 2x - 11}. +

+

+ Observe that the largest power of x that's present in r(x) is x^2. In addition, because of the dominant terms of 3x^2 in the numerator and 7x^2 in the denominator, both the numerator and denominator of r increase without bound as x increases without bound. In order to understand the long-range behavior of r, we choose to write the function in a different algebraic form. +

+

+ + + +

+ Note that we can multiply the formula for r by the form of 1 given by 1 = \frac{\frac{1}{x^2}}{\frac{1}{x^2}}. Do so, and distribute and simplify as much as possible in both the numerator and denominator to write r in a different algebraic form. +

+ + +

r(x)=\frac{3 - \frac{5}{x} + \frac{1}{x^2}}{7 + \frac{2}{x} - \frac{11}{x^2}}

+ +

Multiplying numerator and denominator by \dfrac{1}{x^2}: + + r(x) &= \frac{3x^2 - 5x + 1}{7x^2 + 2x - 11} \cdot \frac{\frac{1}{x^2}}{\frac{1}{x^2}} + &= \frac{3 - \frac{5}{x} + \frac{1}{x^2}}{7 + \frac{2}{x} - \frac{11}{x^2}}. + +

+
+ + + +

+ Having rewritten r, we are in a better position to evaluate \lim_{x \to \infty} r(x). + Using our work from (a), we have + + \lim_{x \to \infty} r(x) = \lim_{x \to \infty} \frac{3 - \frac{5}{x} + \frac{1}{x^2}}{7 + \frac{2}{x} - \frac{11}{x^2}} + . + What is the exact value of this limit and why? +

+
+ +

+ \lim_{x \to \infty} r(x) = \frac{3 - 0 + 0}{7 + 0 - 0} = \frac{3}{7}. +

+ +

As x \to \infty, the terms \frac{5}{x}, \frac{1}{x^2}, \frac{2}{x}, and \frac{11}{x^2} all approach 0. Therefore + + \lim_{x \to \infty} r(x) = \frac{3 - 0 + 0}{7 + 0 - 0} = \frac{3}{7}. + +

+
+
+ + +

+ Next, determine + + \lim_{x \to -\infty} r(x) = \lim_{x \to -\infty} \frac{3 - \frac{5}{x} + \frac{1}{x^2}}{7 + \frac{2}{x} - \frac{11}{x^2}} + . +

+
+ +

\lim_{x \to -\infty} r(x) = \frac{3}{7}

+ +

For the same reason, as x \to -\infty the terms with x in the denominator all approach 0, so + + \lim_{x \to -\infty} r(x) = \frac{3}{7}. + +

+
+
+ + +

+ Use Desmos to plot r on the interval [-10,10]. In addition, plot the horizontal line y = \frac{3}{7}. What is the meaning of the limits you found in (b) and (c)? +

+
+ + +

The graph of r approaches the horizontal line y = \dfrac{3}{7} as x \to \pm\infty. This line is called a horizontal asymptote of r. The limits found in (b) and (c) say that far to the left and far to the right of the origin, r(x) gets arbitrarily close to \dfrac{3}{7}.

+
+ +

The graph of r approaches the horizontal line y = \dfrac{3}{7} as x \to \pm\infty. This line is called a horizontal asymptote of r. The limits found in (b) and (c) say that far to the left and far to the right of the origin, r(x) gets arbitrarily close to \dfrac{3}{7}.

+
+
+
+
diff --git a/source/activities/act-poly-rational-long-term-2.xml b/source/activities/act-poly-rational-long-term-2.xml index a2eadc96..64073bb7 100755 --- a/source/activities/act-poly-rational-long-term-2.xml +++ b/source/activities/act-poly-rational-long-term-2.xml @@ -1,95 +1,89 @@ - - - - - - - - - - - - - - - - -

- Let s(x) = \frac{3x - 5}{7x^2 + 2x - 11} and u(x) = \frac{3x^2 - 5x + 1}{7x + 2}. Note that both the numerator and denominator of each of these rational functions increases without bound as x \to \infty, and in addition that x^2 is the highest order term present in each of s and u. -

-

- - - -

- Using a similar algebraic approach to our work in Activity, multiply s(x) by 1 = \frac{\frac{1}{x^2}}{\frac{1}{x^2}} and hence evaluate - - \lim_{x \to \infty} \frac{3x - 5}{7x^2 + 2x - 11} - . - What value do you find? -

- - - - -

Multiplying s(x) = \dfrac{3x-5}{7x^2+2x-11} by \dfrac{1/x^2}{1/x^2}: - - s(x) = \frac{\frac{3}{x} - \frac{5}{x^2}}{7 + \frac{2}{x} - \frac{11}{x^2}}. - - As x \to \infty, the numerator \to 0 and the denominator \to 7, so \displaystyle\lim_{x \to \infty} s(x) = 0.

-
- - - -

- Plot the function y = s(x) on the interval [-10,10]. What is the graphical meaning of the limit you found in (a)? -

-
- - - -

The graph of y = s(x) has a horizontal asymptote at y = 0. Far to the left and right, s(x) approaches the x-axis. This occurs because the denominator grows much faster than the numerator (degree 2 vs. degree 1).

-
-
- - -

- Next, use appropriate algebraic work to consider u(x) and evaluate - - \lim_{x \to \infty} \frac{3x^2 - 5x + 1}{7x + 2} - . - What do you find? -

-
- - - -

Multiplying u(x) = \dfrac{3x^2-5x+1}{7x+2} by \dfrac{1/x^2}{1/x^2}: - - u(x) = \frac{3 - \frac{5}{x} + \frac{1}{x^2}}{\frac{7}{x} + \frac{2}{x^2}}. - - As x \to \infty, the numerator \to 3 and the denominator \to 0^+, so \displaystyle\lim_{x \to \infty} u(x) = +\infty. The numerator degree exceeds the denominator degree, so there is no horizontal asymptote.

-
-
- - -

- Plot the function y = u(x) on the interval [-10,10]. What is the graphical meaning of the limit you computed in (c)? -

-
- - - -

The graph of y = u(x) increases without bound as x \to \infty; u has no horizontal asymptote. Instead, it has an oblique (slant) asymptote. The graph shows that u(x) grows like a linear function for large |x|.

-
-
- -

- - -

- For s(x) (degree 1 over degree 2): \lim_{x \to \infty} s(x) = 0, horizontal asymptote y=0. For u(x) (degree 2 over degree 1): \lim_{x \to \infty} u(x) = +\infty, no horizontal asymptote. -

- -
-
+ + + + + + + + + + + + + + + + +

+ Let s(x) = \frac{3x - 5}{7x^2 + 2x - 11} and u(x) = \frac{3x^2 - 5x + 1}{7x + 2}. Note that both the numerator and denominator of each of these rational functions increases without bound as x \to \infty, and in addition that x^2 is the highest order term present in each of s and u. +

+

+ + + +

+ Using a similar algebraic approach to our work in Activity, multiply s(x) by 1 = \frac{\frac{1}{x^2}}{\frac{1}{x^2}} and hence evaluate + + \lim_{x \to \infty} \frac{3x - 5}{7x^2 + 2x - 11} + . + What value do you find? +

+ + +

As x \to \infty, the numerator \to 0 and the denominator \to 7, so \displaystyle\lim_{x \to \infty} s(x) = 0.

+ +

Multiplying s(x) = \dfrac{3x-5}{7x^2+2x-11} by \dfrac{1/x^2}{1/x^2}: + + s(x) = \frac{\frac{3}{x} - \frac{5}{x^2}}{7 + \frac{2}{x} - \frac{11}{x^2}}. + + As x \to \infty, the numerator \to 0 and the denominator \to 7, so \displaystyle\lim_{x \to \infty} s(x) = 0.

+
+ + + +

+ Plot the function y = s(x) on the interval [-10,10]. What is the graphical meaning of the limit you found in (a)? +

+
+ + +

The graph of y = s(x) has a horizontal asymptote at y = 0. Far to the left and right, s(x) approaches the x-axis. This occurs because the denominator grows much faster than the numerator (degree 2 vs. degree 1).

+
+ +

The graph of y = s(x) has a horizontal asymptote at y = 0. Far to the left and right, s(x) approaches the x-axis. This occurs because the denominator grows much faster than the numerator (degree 2 vs. degree 1).

+
+
+ + +

+ Next, use appropriate algebraic work to consider u(x) and evaluate + + \lim_{x \to \infty} \frac{3x^2 - 5x + 1}{7x + 2} + . + What do you find? +

+
+ +

As x \to \infty, the numerator \to 3 and the denominator \to 0^+, so \displaystyle\lim_{x \to \infty} u(x) = +\infty.

+ +

Multiplying u(x) = \dfrac{3x^2-5x+1}{7x+2} by \dfrac{1/x^2}{1/x^2}: + + u(x) = \frac{3 - \frac{5}{x} + \frac{1}{x^2}}{\frac{7}{x} + \frac{2}{x^2}}. + + As x \to \infty, the numerator \to 3 and the denominator \to 0^+, so \displaystyle\lim_{x \to \infty} u(x) = +\infty. The numerator degree exceeds the denominator degree, so there is no horizontal asymptote.

+
+
+ + +

+ Plot the function y = u(x) on the interval [-10,10]. What is the graphical meaning of the limit you computed in (c)? +

+
+ +

The graph of y = u(x) increases without bound as x \to \infty; u has no horizontal asymptote.

+ +

The graph of y = u(x) increases without bound as x \to \infty; u has no horizontal asymptote. Instead, it has an oblique (slant) asymptote. The graph shows that u(x) grows like a linear function for large |x|.

+
+
+
+
diff --git a/source/activities/act-trig-finding-angles-baseball.xml b/source/activities/act-trig-finding-angles-baseball.xml index daada1cb..e420e4d4 100755 --- a/source/activities/act-trig-finding-angles-baseball.xml +++ b/source/activities/act-trig-finding-angles-baseball.xml @@ -1,44 +1,49 @@ - - - - - - - - - - - - - - - - -

- On a baseball diamond - (which is a square with 90-foot sides), - the third baseman fields the ball right on the line from third base to home plate and 10 feet away from third base - (towards home plate). When he throws the ball to first base, what angle - (in degrees) does the line the ball travels make with the first base line? What angle does it make with the third base line? - Draw a well-labeled diagram to support your thinking. -

-

- What angles arise if he throws the ball to second base instead? -

-
- -

- - -

- Place home plate at the origin, first base at (90, 0), second base at (90, 90), and third base at (0, 90). The third baseman is at (0, 80) (10 feet from third base toward home plate). -

-

- Throwing to first base. The straight-line distance is \sqrt{90^2 + 80^2} = 10\sqrt{145} feet. The angle the throw makes with the first base line is \arctan\!\left(\dfrac{80}{90}\right) = \arctan\!\left(\dfrac{8}{9}\right) \approx 41.6^{\circ}, and with the third base line it is \arctan\!\left(\dfrac{90}{80}\right) = \arctan\!\left(\dfrac{9}{8}\right) \approx 48.4^{\circ}. -

-

- Throwing to second base. The displacement from (0, 80) to second base at (90, 90) is (90, 10), so the distance is \sqrt{90^2 + 10^2} = 10\sqrt{82} feet. The angle with the first base line is \arctan\!\left(\dfrac{10}{90}\right) = \arctan\!\left(\dfrac{1}{9}\right) \approx 6.3^{\circ}, and with the third base line it is approximately 83.7^{\circ}. -

- -
-
+ + + + + + + + + + + + + + + + +

+ On a baseball diamond + (which is a square with 90-foot sides), + the third baseman fields the ball right on the line from third base to home plate and 10 feet away from third base + (towards home plate). When he throws the ball to first base, what angle + (in degrees) does the line the ball travels make with the first base line? What angle does it make with the third base line? + Draw a well-labeled diagram to support your thinking. +

+

+ What angles arise if he throws the ball to second base instead? +

+
+ +

+ Throwing to first base. The angle the throw makes with the first base line is \arctan\left(\dfrac{80}{90}\right) \approx 41.6^{\circ}, and with the third base line it is \arctan\left(\dfrac{90}{80}\right) \approx 48.4^{\circ}. +

+

+ Throwing to second base. The angle with the first base line is \arctan\left(\dfrac{10}{90}\right) \approx 6.3^{\circ}, and with the third base line it is approximately 83.7^{\circ}. +

+
+ +

+ Place home plate at the origin, first base at (90, 0), second base at (90, 90), and third base at (0, 90). The third baseman is at (0, 80) (10 feet from third base toward home plate). +

+

+ Throwing to first base. The straight-line distance is \sqrt{90^2 + 80^2} = 10\sqrt{145} feet. The angle the throw makes with the first base line is \arctan\left(\dfrac{80}{90}\right) = \arctan\left(\dfrac{8}{9}\right) \approx 41.6^{\circ}, and with the third base line it is \arctan\left(\dfrac{90}{80}\right) = \arctan\!\left(\dfrac{9}{8}\right) \approx 48.4^{\circ}. +

+

+ Throwing to second base. The displacement from (0, 80) to second base at (90, 90) is (90, 10), so the distance is \sqrt{90^2 + 10^2} = 10\sqrt{82} feet. The angle with the first base line is \arctan\!\left(\dfrac{10}{90}\right) = \arctan\!\left(\dfrac{1}{9}\right) \approx 6.3^{\circ}, and with the third base line it is approximately 83.7^{\circ}. +

+
+
+
diff --git a/source/activities/act-trig-finding-angles-exactly.xml b/source/activities/act-trig-finding-angles-exactly.xml index 76b76b52..6ab7879f 100755 --- a/source/activities/act-trig-finding-angles-exactly.xml +++ b/source/activities/act-trig-finding-angles-exactly.xml @@ -1,74 +1,73 @@ - - - - - - - - - - - - - - - - -

- For each of the following different scenarios, draw a picture of the situation and use inverse trigonometric functions appropriately to determine the missing information both exactly and approximately. -

-

- - - -

- Consider a right triangle with legs of length 11 and 13. What are the measures - (in radians) of the non-right angles and what is the length of the hypotenuse? -

- - - - -

- The hypotenuse has length \sqrt{11^2 + 13^2} = \sqrt{290}. The angle \alpha opposite the leg of length 11 satisfies \alpha = \arcsin\!\left(\dfrac{11}{\sqrt{290}}\right) = \arccos\!\left(\dfrac{13}{\sqrt{290}}\right) \approx 0.702 radians. The angle \beta opposite the leg of length 13 satisfies \beta = \arcsin\!\left(\dfrac{13}{\sqrt{290}}\right) = \arccos\!\left(\dfrac{11}{\sqrt{290}}\right) \approx 0.869 radians. -

-
- - - -

- Consider an angle \alpha in standard position (vertex at the origin, one side on the positive x-axis) for which we know \cos(\alpha) = -\frac{1}{2} and \alpha lies in quadrant III. What is the measure of \alpha in radians? In addition, what is the value of \sin(\alpha)? -

-
- - - -

- Since \cos(\alpha) = -\frac{1}{2} and \alpha is in quadrant III, the reference angle is \arccos\!\left(\frac{1}{2}\right) = \frac{\pi}{3}, so \alpha = \pi + \frac{\pi}{3} = \frac{4\pi}{3}. In addition, \sin(\alpha) = -\dfrac{\sqrt{3}}{2}. -

-
-
- - -

- Consider an angle \beta in standard position for which we know - \sin(\beta) = 0.1 and \beta lies in quadrant II. What is the measure of \beta in radians? - In addition, what is the value of \cos(\beta)? -

-
- - - -

- Since \sin(\beta) = 0.1 and \beta is in quadrant II, we have \beta = \pi - \arcsin(0.1) \approx 3.041 radians. In addition, \cos(\beta) = -\cos(\arcsin(0.1)) = -\sqrt{1 - 0.01} = -\sqrt{0.99} \approx -0.9950. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ For each of the following different scenarios, draw a picture of the situation and use inverse trigonometric functions appropriately to determine the missing information both exactly and approximately. +

+

+ + + +

+ Consider a right triangle with legs of length 11 and 13. What are the measures + (in radians) of the non-right angles and what is the length of the hypotenuse? +

+ + + +

+ The hypotenuse has length \sqrt{11^2 + 13^2} = \sqrt{290}. + The angle \alpha opposite the leg of length 11 satisfies \alpha = \arcsin\left(\dfrac{11}{\sqrt{290}}\right) = \arccos\left(\dfrac{13}{\sqrt{290}}\right) \approx 0.702 radians. The angle \beta opposite the leg of length 13 satisfies \beta = \arcsin\left(\dfrac{13}{\sqrt{290}}\right) = \arccos\left(\dfrac{11}{\sqrt{290}}\right) \approx 0.869 radians. +

+
+ +

+ The hypotenuse has length \sqrt{11^2 + 13^2} = \sqrt{290}. The angle \alpha opposite the leg of length 11 satisfies \alpha = \arcsin\left(\dfrac{11}{\sqrt{290}}\right) = \arccos\left(\dfrac{13}{\sqrt{290}}\right) \approx 0.702 radians. The angle \beta opposite the leg of length 13 satisfies \beta = \arcsin\left(\dfrac{13}{\sqrt{290}}\right) = \arccos\left(\dfrac{11}{\sqrt{290}}\right) \approx 0.869 radians. +

+
+ + + +

+ Consider an angle \alpha in standard position (vertex at the origin, one side on the positive x-axis) for which we know \cos(\alpha) = -\frac{1}{2} and \alpha lies in quadrant III. What is the measure of \alpha in radians? In addition, what is the value of \sin(\alpha)? +

+
+ +

\alpha = \frac{4\pi}{3}. In addition, \sin(\alpha) = -\dfrac{\sqrt{3}}{2}.

+ +

+ Since \cos(\alpha) = -\frac{1}{2} and \alpha is in quadrant III, the reference angle is \arccos\!\left(\frac{1}{2}\right) = \frac{\pi}{3}, so \alpha = \pi + \frac{\pi}{3} = \frac{4\pi}{3}. In addition, \sin(\alpha) = -\dfrac{\sqrt{3}}{2}. +

+
+
+ + +

+ Consider an angle \beta in standard position for which we know + \sin(\beta) = 0.1 and \beta lies in quadrant II. What is the measure of \beta in radians? + In addition, what is the value of \cos(\beta)? +

+
+ +

\beta = \approx 3.041 radians. In addition, \cos(\beta) \approx -0.9950.

+ +

+ Since \sin(\beta) = 0.1 and \beta is in quadrant II, we have \beta = \pi - \arcsin(0.1) \approx 3.041 radians. In addition, \cos(\beta) = -\cos(\arcsin(0.1)) = -\sqrt{1 - 0.01} = -\sqrt{0.99} \approx -0.9950. +

+
+
+
+
diff --git a/source/activities/act-trig-finding-angles-rocket.xml b/source/activities/act-trig-finding-angles-rocket.xml index 32977012..5585230c 100755 --- a/source/activities/act-trig-finding-angles-rocket.xml +++ b/source/activities/act-trig-finding-angles-rocket.xml @@ -1,60 +1,65 @@ - - - - - - - - - - - - - - - - -

- A camera is tracking the launch of a SpaceX rocket. - The camera is located 4000' from the rocket's launching pad, - and the camera angle changes in order to keep the rocket in focus. - At what angle \theta - (in radians) - is the camera tilted when the rocket is 3000' off the ground? - Answer both exactly and approximately. -

-

- Now, rather than considering the rocket at a fixed height of 3000', let its height vary and call the rocket's height h. - Determine the camera's angle, - \theta as a function of h, - and compute the average rate of change of \theta on the intervals [3000,3500], - [5000,5500], and [7000,7500]. - What do you observe about how the camera angle is changing? -

-
- -

- - -

- When the rocket is 3000' off the ground, the right triangle has legs 3000 and 4000 and hypotenuse 5000. The camera angle is \theta_0 = \arctan\!\left(\dfrac{3000}{4000}\right) = \arccos\!\left(\dfrac{4}{5}\right) \approx 0.644 radians. -

-

- For general height h, \theta(h) = \arctan\!\left(\dfrac{h}{4000}\right). Using the table of values below (with angles in radians): -

- - - h (feet) - 300035005000550070007500 - - - \theta(h) - 0.6440.7190.8960.9421.0501.080 - - -

- The average rates of change are: AV_{[3000,3500]} \approx \frac{0.075}{500} = 1.5 \times 10^{-4} rad/ft; AV_{[5000,5500]} \approx \frac{0.046}{500} = 9.2 \times 10^{-5} rad/ft; AV_{[7000,7500]} \approx \frac{0.030}{500} = 6 \times 10^{-5} rad/ft. The camera angle is increasing at a decreasing rate as the rocket climbs higher. -

- -
-
+ + + + + + + + + + + + + + + + +

+ A camera is tracking the launch of a SpaceX rocket. + The camera is located 4000' from the rocket's launching pad, + and the camera angle changes in order to keep the rocket in focus. + At what angle \theta + (in radians) + is the camera tilted when the rocket is 3000' off the ground? + Answer both exactly and approximately. +

+

+ Now, rather than considering the rocket at a fixed height of 3000', let its height vary and call the rocket's height h. + Determine the camera's angle, + \theta as a function of h, + and compute the average rate of change of \theta on the intervals [3000,3500], + [5000,5500], and [7000,7500]. + What do you observe about how the camera angle is changing? +

+
+ +

+ For general height h, \theta(h) = \arctan\left(\dfrac{h}{4000}\right). +

+

+ The average rates of change are: AV_{[3000,3500]} \approx \frac{0.075}{500} = 1.5 \times 10^{-4} rad/ft; AV_{[5000,5500]} \approx \frac{0.046}{500} = 9.2 \times 10^{-5} rad/ft; AV_{[7000,7500]} \approx \frac{0.030}{500} = 6 \times 10^{-5} rad/ft. The camera angle is increasing at a decreasing rate as the rocket climbs higher. +

+
+ +

+ When the rocket is 3000' off the ground, the right triangle has legs 3000 and 4000 and hypotenuse 5000. The camera angle is \theta_0 = \arctan\!\left(\dfrac{3000}{4000}\right) = \arccos\!\left(\dfrac{4}{5}\right) \approx 0.644 radians. +

+

+ For general height h, \theta(h) = \arctan\!\left(\dfrac{h}{4000}\right). Using the table of values below (with angles in radians): +

+ + + h (feet) + 300035005000550070007500 + + + \theta(h) + 0.6440.7190.8960.9421.0501.080 + + +

+ The average rates of change are: AV_{[3000,3500]} \approx \frac{0.075}{500} = 1.5 \times 10^{-4} rad/ft; AV_{[5000,5500]} \approx \frac{0.046}{500} = 9.2 \times 10^{-5} rad/ft; AV_{[7000,7500]} \approx \frac{0.030}{500} = 6 \times 10^{-5} rad/ft. The camera angle is increasing at a decreasing rate as the rocket climbs higher. +

+
+
+
diff --git a/source/activities/act-trig-finding-angles-roof.xml b/source/activities/act-trig-finding-angles-roof.xml index 9040e79d..51e53858 100755 --- a/source/activities/act-trig-finding-angles-roof.xml +++ b/source/activities/act-trig-finding-angles-roof.xml @@ -1,36 +1,38 @@ - - - - - - - - - - - - - - - - -

- A roof is being built with a 7-12 pitch. - This means that the roof rises 7 inches vertically for every 12 inches of horizontal span; - in other words, the slope of the roof is \frac{7}{12}. - What is the exact measure (in degrees) - of the angle the roof makes with the horizontal? - What is the approximate measure? - What are the exact and approximate measures of the angle at the peak of the roof (made by the front and back portions of the roof that meet to form the ridge)? -

-
- -

- - -

- The angle of the roof with the horizontal is \arctan\!\left(\dfrac{7}{12}\right) \approx 30.26^{\circ} (exactly \arctan\!\left(\frac{7}{12}\right) radians). Alternatively, this angle equals \arcsin\!\left(\dfrac{7}{\sqrt{193}}\right) = \arccos\!\left(\dfrac{12}{\sqrt{193}}\right). The angle at the peak of the roof is formed by the two sloping surfaces; since each makes an angle of \arctan\!\left(\frac{7}{12}\right) with the horizontal, the ridge angle is 180^{\circ} - 2\arctan\!\left(\frac{7}{12}\right) \approx 119.5^{\circ}. -

- -
-
+ + + + + + + + + + + + + + + + +

+ A roof is being built with a 7-12 pitch. + This means that the roof rises 7 inches vertically for every 12 inches of horizontal span; + in other words, the slope of the roof is \frac{7}{12}. + What is the exact measure (in degrees) + of the angle the roof makes with the horizontal? + What is the approximate measure? + What are the exact and approximate measures of the angle at the peak of the roof (made by the front and back portions of the roof that meet to form the ridge)? +

+
+ +

+ The angle of the roof with the horizontal is \arctan\left(\dfrac{7}{12}\right) \approx 30.26^{\circ} (exactly \arctan\left(\frac{7}{12}\right) radians). Alternatively, this angle equals \arcsin\left(\dfrac{7}{\sqrt{193}}\right) = \arccos\left(\dfrac{12}{\sqrt{193}}\right). The angle at the peak of the roof is formed by the two sloping surfaces; since each makes an angle of \arctan\left(\frac{7}{12}\right) with the horizontal, the ridge angle is 180^{\circ} - 2\arctan\left(\frac{7}{12}\right) \approx 119.5^{\circ}. +

+
+ +

+ The angle of the roof with the horizontal is \arctan\left(\dfrac{7}{12}\right) \approx 30.26^{\circ} (exactly \arctan\left(\frac{7}{12}\right) radians). Alternatively, this angle equals \arcsin\left(\dfrac{7}{\sqrt{193}}\right) = \arccos\left(\dfrac{12}{\sqrt{193}}\right). The angle at the peak of the roof is formed by the two sloping surfaces; since each makes an angle of \arctan\left(\frac{7}{12}\right) with the horizontal, the ridge angle is 180^{\circ} - 2\arctan\left(\frac{7}{12}\right) \approx 119.5^{\circ}. +

+
+
+
diff --git a/source/activities/act-trig-inverse-arccos.xml b/source/activities/act-trig-inverse-arccos.xml index 56d35a0b..f15e9eb1 100755 --- a/source/activities/act-trig-inverse-arccos.xml +++ b/source/activities/act-trig-inverse-arccos.xml @@ -1,149 +1,143 @@ - - - - - - - - - - - - - - - - -

- Use the special points on the unit circle (see, for instance, the start of Section) to determine the exact values of each of the following numerical expressions. Do so without using a computational device. -

-

- - - -

- \arccos(\frac{1}{2}) -

- - - - -

\arccos\!\left(\frac{1}{2}\right) = \frac{\pi}{3}

-
- - - -

- \arccos(\frac{\sqrt{2}}{2}) -

-
- - - -

\arccos\!\left(\frac{\sqrt{2}}{2}\right) = \frac{\pi}{4}

-
-
- - -

- \arccos(\frac{\sqrt{3}}{2}) -

-
- - - -

\arccos\!\left(\frac{\sqrt{3}}{2}\right) = \frac{\pi}{6}

-
-
- - -

- \arccos(-\frac{1}{2}) -

-
- - - -

\arccos\!\left(-\frac{1}{2}\right) = \frac{2\pi}{3}

-
-
- - -

- \arccos(-\frac{\sqrt{2}}{2}) -

-
- - - -

\arccos\!\left(-\frac{\sqrt{2}}{2}\right) = \frac{3\pi}{4}

-
-
- - -

- \arccos(-\frac{\sqrt{3}}{2}) -

-
- - - -

\arccos\!\left(-\frac{\sqrt{3}}{2}\right) = \frac{5\pi}{6}

-
-
- - -

- \arccos(-1) -

-
- - - -

\arccos(-1) = \pi

-
-
- - -

- \arccos(0) -

-
- - - -

\arccos(0) = \frac{\pi}{2}

-
-
- - -

- \cos(\arccos(-\frac{1}{2})) -

-
- - - -

\cos\!\left(\arccos\!\left(-\frac{1}{2}\right)\right) = -\frac{1}{2}, since cosine and arccosine are inverse functions.

-
-
- - -

- \arccos(\cos(\frac{7\pi}{6})) -

-
- - - -

\arccos\!\left(\cos\!\left(\frac{7\pi}{6}\right)\right) = \frac{5\pi}{6}, since \cos\!\left(\frac{7\pi}{6}\right) = -\frac{\sqrt{3}}{2} and \arccos\!\left(-\frac{\sqrt{3}}{2}\right) = \frac{5\pi}{6}.

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Use the special points on the unit circle (see, for instance, the start of Section) to determine the exact values of each of the following numerical expressions. Do so without using a computational device. +

+

+ + + +

+ \arccos(\frac{1}{2}) +

+ + +

\frac{\pi}{3}

+ +

\arccos\left(\frac{1}{2}\right) = \frac{\pi}{3}

+
+ + + +

+ \arccos(\frac{\sqrt{2}}{2}) +

+
+ +

\frac{\pi}{4}

+ +

\arccos\left(\frac{\sqrt{2}}{2}\right) = \frac{\pi}{4}

+
+
+ + +

+ \arccos(\frac{\sqrt{3}}{2}) +

+
+ +

\frac{\pi}{6}

+ +

\arccos\left(\frac{\sqrt{3}}{2}\right) = \frac{\pi}{6}

+
+
+ + +

+ \arccos(-\frac{1}{2}) +

+
+ +

\frac{2\pi}{3}

+ +

\arccos\left(-\frac{1}{2}\right) = \frac{2\pi}{3}

+
+
+ + +

+ \arccos(-\frac{\sqrt{2}}{2}) +

+
+ +

\frac{3\pi}{4}

+ +

\arccos\left(-\frac{\sqrt{2}}{2}\right) = \frac{3\pi}{4}

+
+
+ + +

+ \arccos(-\frac{\sqrt{3}}{2}) +

+
+ +

\frac{5\pi}{6}

+ +

\arccos\left(-\frac{\sqrt{3}}{2}\right) = \frac{5\pi}{6}

+
+
+ + +

+ \arccos(-1) +

+
+ +

\pi

+ +

\arccos(-1) = \pi

+
+
+ + +

+ \arccos(0) +

+
+ +

\frac{\pi}{2}

+ +

\arccos(0) = \frac{\pi}{2}

+
+
+ + +

+ \cos(\arccos(-\frac{1}{2})) +

+
+ +

-\frac{1}{2}

+ +

\cos\left(\arccos\left(-\frac{1}{2}\right)\right) = -\frac{1}{2}, since cosine and arccosine are inverse functions.

+
+
+ + +

+ \arccos(\cos(\frac{7\pi}{6})) +

+
+ +

\frac{5\pi}{6}

+ +

\arccos\!\left(\cos\!\left(\frac{7\pi}{6}\right)\right) = \frac{5\pi}{6}, since \cos\!\left(\frac{7\pi}{6}\right) = -\frac{\sqrt{3}}{2} and \arccos\!\left(-\frac{\sqrt{3}}{2}\right) = \frac{5\pi}{6}.

+
+
+
+
diff --git a/source/activities/act-trig-inverse-arcsin.xml b/source/activities/act-trig-inverse-arcsin.xml index 240751d6..af682988 100755 --- a/source/activities/act-trig-inverse-arcsin.xml +++ b/source/activities/act-trig-inverse-arcsin.xml @@ -1,81 +1,76 @@ - - - - - - - - - - - - - - - - -

- The goal of this activity is to understand key properties of the arcsine function in a way similar to our recent discussion of the arccosine function. -

-

- - - -

- Using the definition of the arcsine function, what are the domain and range of the arcsine function? -

- - - - -

The domain of \arcsin is [-1, 1] and the range is \left[-\frac{\pi}{2}, \frac{\pi}{2}\right].

-
- - - -

- Determine the following values exactly: \arcsin(-1), \arcsin(-\frac{\sqrt{2}}{2}), \arcsin(0), \arcsin(\frac{1}{2}), and \arcsin(\frac{\sqrt{3}}{2}). -

-
- - - -

\arcsin(-1) = -\frac{\pi}{2}, \arcsin\!\left(-\frac{\sqrt{2}}{2}\right) = -\frac{\pi}{4}, \arcsin(0) = 0, \arcsin\!\left(\frac{1}{2}\right) = \frac{\pi}{6}, and \arcsin\!\left(\frac{\sqrt{3}}{2}\right) = \frac{\pi}{3}.

-
-
- - -

- On the axes provided, sketch a careful plot of the restricted sine function on the interval [-\frac{\pi}{2},\frac{\pi}{2}] along with its corresponding inverse, the arcsine function. Label at least three points on each curve so that each point on the sine graph corresponds to a point on the arcsine graph. In addition, sketch the line y = t to demonstrate how the graphs are reflections of one another across this line. -

- -

ADD ALT TEXT TO THIS IMAGE

- -
- - - - - -
- - -

- True or false: \arcsin(\sin(5\pi)) = 5\pi. Write a complete sentence to explain your reasoning. -

-
- - - -

False. Since \sin(5\pi) = 0 and \arcsin(0) = 0, we have \arcsin(\sin(5\pi)) = 0 \ne 5\pi. The arcsine function only returns values in \left[-\frac{\pi}{2}, \frac{\pi}{2}\right], so \arcsin(\sin(t)) = t only when t is already in that interval.

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ The goal of this activity is to understand key properties of the arcsine function in a way similar to our recent discussion of the arccosine function. +

+

+ + + +

+ Using the definition of the arcsine function, what are the domain and range of the arcsine function? +

+ + +

The domain of \arcsin is [-1, 1] and the range is \left[-\frac{\pi}{2}, \frac{\pi}{2}\right].

+ +

The domain of \arcsin is [-1, 1] and the range is \left[-\frac{\pi}{2}, \frac{\pi}{2}\right].

+
+ + + +

+ Determine the following values exactly: \arcsin(-1), \arcsin(-\frac{\sqrt{2}}{2}), \arcsin(0), \arcsin(\frac{1}{2}), and \arcsin(\frac{\sqrt{3}}{2}). +

+
+ +

\arcsin(-1) = -\frac{\pi}{2}, \arcsin\!\left(-\frac{\sqrt{2}}{2}\right) = -\frac{\pi}{4}, \arcsin(0) = 0, \arcsin\!\left(\frac{1}{2}\right) = \frac{\pi}{6}, and \arcsin\!\left(\frac{\sqrt{3}}{2}\right) = \frac{\pi}{3}.

+ +

\arcsin(-1) = -\frac{\pi}{2}, \arcsin\!\left(-\frac{\sqrt{2}}{2}\right) = -\frac{\pi}{4}, \arcsin(0) = 0, \arcsin\!\left(\frac{1}{2}\right) = \frac{\pi}{6}, and \arcsin\!\left(\frac{\sqrt{3}}{2}\right) = \frac{\pi}{3}.

+
+
+ + +

+ On the axes provided, sketch a careful plot of the restricted sine function on the interval [-\frac{\pi}{2},\frac{\pi}{2}] along with its corresponding inverse, the arcsine function. Label at least three points on each curve so that each point on the sine graph corresponds to a point on the arcsine graph. In addition, sketch the line y = t to demonstrate how the graphs are reflections of one another across this line. +

+ +

Blank axes for plotting the graph of sine and arcsine.

+ +
+ +

Graph of \arcsin(t)

+
+ +

Graph of \arcsin(t)

+
+
+ + +

+ True or false: \arcsin(\sin(5\pi)) = 5\pi. Write a complete sentence to explain your reasoning. +

+
+ +

False. Since \sin(5\pi) = 0 and \arcsin(0) = 0, we have \arcsin(\sin(5\pi)) = 0 \ne 5\pi.

+ +

False. Since \sin(5\pi) = 0 and \arcsin(0) = 0, we have \arcsin(\sin(5\pi)) = 0 \ne 5\pi. The arcsine function only returns values in \left[-\frac{\pi}{2}, \frac{\pi}{2}\right], so \arcsin(\sin(t)) = t only when t is already in that interval.

+
+
+
+
diff --git a/source/activities/act-trig-inverse-arctan.xml b/source/activities/act-trig-inverse-arctan.xml index c6e2e05b..db1f30da 100755 --- a/source/activities/act-trig-inverse-arctan.xml +++ b/source/activities/act-trig-inverse-arctan.xml @@ -1,87 +1,95 @@ - - - - - - - - - - - - - - - - -

- The goal of this activity is to understand key properties of the arctangent function. -

-

- - - -

- Using the definition of the arctangent function, what are the domain and range of the arctangent function? -

- - - - -

- The domain of the arctangent function is all real numbers (-\infty, \infty), and the range is the open interval \left(-\frac{\pi}{2}, \frac{\pi}{2}\right). -

-
- - - -

- Determine the following values exactly: \arctan(-\sqrt{3}), \arctan(-1), \arctan(0), and \arctan(\frac{1}{\sqrt{3}}). -

-
- - - -

- \arctan(-\sqrt{3}) = -\frac{\pi}{3}, \arctan(-1) = -\frac{\pi}{4}, \arctan(0) = 0, and \arctan\!\left(\frac{1}{\sqrt{3}}\right) = \frac{\pi}{6}. -

-
-
- - -

- A plot of the restricted tangent function on the interval (-\frac{\pi}{2},\frac{\pi}{2}) is provided in the following figure. Sketch its corresponding inverse function, the arctangent function, on the same axes. Label at least three points on each curve so that each point on the tangent graph corresponds to a point on the arctangent graph. In addition, sketch the line y = t to demonstrate how the graphs are reflections of one another across this line. -

- -

ADD ALT TEXT TO THIS IMAGE

- -
- - - - - -
- - -

- Complete the following sentence: as t increases without bound, \arctan(t) \ldots. -

-
- - - -

- As t increases without bound, \arctan(t) approaches \frac{\pi}{2}. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ The goal of this activity is to understand key properties of the arctangent function. +

+

+ + + +

+ Using the definition of the arctangent function, what are the domain and range of the arctangent function? +

+ + + +

+ The domain of the arctangent function is all real numbers (-\infty, \infty), and the range is the open interval \left(-\frac{\pi}{2}, \frac{\pi}{2}\right). +

+
+ +

+ The domain of the arctangent function is all real numbers (-\infty, \infty), and the range is the open interval \left(-\frac{\pi}{2}, \frac{\pi}{2}\right). +

+
+ + + +

+ Determine the following values exactly: \arctan(-\sqrt{3}), \arctan(-1), \arctan(0), and \arctan(\frac{1}{\sqrt{3}}). +

+
+ + +

+ \arctan(-\sqrt{3}) = -\frac{\pi}{3}, \arctan(-1) = -\frac{\pi}{4}, \arctan(0) = 0, and \arctan\!\left(\frac{1}{\sqrt{3}}\right) = \frac{\pi}{6}. +

+
+ +

+ \arctan(-\sqrt{3}) = -\frac{\pi}{3}, \arctan(-1) = -\frac{\pi}{4}, \arctan(0) = 0, and \arctan\!\left(\frac{1}{\sqrt{3}}\right) = \frac{\pi}{6}. +

+
+
+ + +

+ A plot of the restricted tangent function on the interval (-\frac{\pi}{2},\frac{\pi}{2}) is provided in the following figure. Sketch its corresponding inverse function, the arctangent function, on the same axes. Label at least three points on each curve so that each point on the tangent graph corresponds to a point on the arctangent graph. In addition, sketch the line y = t to demonstrate how the graphs are reflections of one another across this line. +

+ +

A graph of tangent for sketching the graph of arctangent.

+ +
+ + +

graph of tangent and arctangent

+
+ +

graph of tangent and arctangent

+
+
+ + +

+ Complete the following sentence: as t increases without bound, \arctan(t) \ldots. +

+
+ + +

+ As t increases without bound, \arctan(t) approaches \frac{\pi}{2}. +

+
+ +

+ As t increases without bound, \arctan(t) approaches \frac{\pi}{2}. +

+
+
+
+
diff --git a/source/activities/act-trig-other-aroc-sine.xml b/source/activities/act-trig-other-aroc-sine.xml index afb081e0..389ff3d9 100755 --- a/source/activities/act-trig-other-aroc-sine.xml +++ b/source/activities/act-trig-other-aroc-sine.xml @@ -1,104 +1,114 @@ - - - - - - - - - - - - - - - - -

- In this activity, we investigate how a sum of two angles identity for the sine function helps us gain a different perspective on the average rate of change of the sine function. -

-

- Recall that for any function f on an interval [a,a+h], its average rate of change is - - AV_{[a,a+h]} = \frac{f(a+h)-f(a)}{h} - . -

-

- - - -

- Let f(x) = \sin(x). Use the definition of AV_{[a,a+h]} to write an expression for the average rate of change of the sine function on the interval [a,a+h]. -

- - - - -

- AV_{[a,a+h]} = \dfrac{\sin(a+h) - \sin(a)}{h} -

-
- - - -

- Apply the sum of two angles identity for the sine function, \sin(\alpha + \beta) = \sin(\alpha) \cos(\beta) + \cos(\alpha) \sin(\beta), to the expression \sin(a+h). -

-
- - - -

- Using the sum identity: \sin(a+h) = \sin(a)\cos(h) + \cos(a)\sin(h). -

-
-
- - -

- Explain why your work in (a) and (b) together with some algebra shows that - - AV_{[a,a+h]} = \sin(a) \cdot \frac{\cos(h)-1}{h} - \cos(a) \cdot \frac{\sin(h)}{h} - . -

-
- - - -

- Substituting into the average rate of change: - - AV_{[a,a+h]} &= \frac{\sin(a)\cos(h) + \cos(a)\sin(h) - \sin(a)}{h} - &= \frac{\sin(a)(\cos(h)-1) + \cos(a)\sin(h)}{h} - &= \sin(a) \cdot \frac{\cos(h)-1}{h} + \cos(a) \cdot \frac{\sin(h)}{h} - - which matches the stated formula (noting the sign: the formula in the problem has \frac{\cos(h)-1}{h}, which equals the same as written). -

-
-
- - -

- In calculus, we move from average rate of change to instantaneous rate of change by letting h approach 0 in the expression for average rate of change. Using a computational device in radian mode, investigate the behavior of - - \frac{\cos(h)-1}{h} - - as h gets close to 0. What happens? Similarly, how does \frac{\sin(h)}{h} behave for small values of h? What does this tell us about AV_{[a,a+h]} for the sine function as h approaches 0? -

-
- - - -

- As h approaches 0, the expression \dfrac{\cos(h)-1}{h} approaches 0, and \dfrac{\sin(h)}{h} approaches 1. Therefore AV_{[a,a+h]} approaches \sin(a) \cdot 0 + \cos(a) \cdot 1 = \cos(a). This tells us that the instantaneous rate of change of the sine function at a is \cos(a). -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ In this activity, we investigate how a sum of two angles identity for the sine function helps us gain a different perspective on the average rate of change of the sine function. +

+

+ Recall that for any function f on an interval [a,a+h], its average rate of change is + + AV_{[a,a+h]} = \frac{f(a+h)-f(a)}{h} + . +

+

+ + + +

+ Let f(x) = \sin(x). Use the definition of AV_{[a,a+h]} to write an expression for the average rate of change of the sine function on the interval [a,a+h]. +

+ + + +

+ AV_{[a,a+h]} = \dfrac{\sin(a+h) - \sin(a)}{h} +

+
+ +

+ AV_{[a,a+h]} = \dfrac{\sin(a+h) - \sin(a)}{h} +

+
+ + + +

+ Apply the sum of two angles identity for the sine function, \sin(\alpha + \beta) = \sin(\alpha) \cos(\beta) + \cos(\alpha) \sin(\beta), to the expression \sin(a+h). +

+
+ +

\sin(a+h) = \sin(a)\cos(h) + \cos(a)\sin(h)

+ +

+ Using the sum identity: \sin(a+h) = \sin(a)\cos(h) + \cos(a)\sin(h). +

+
+
+ + +

+ Explain why your work in (a) and (b) together with some algebra shows that + + AV_{[a,a+h]} = \sin(a) \cdot \frac{\cos(h)-1}{h} - \cos(a) \cdot \frac{\sin(h)}{h} + . +

+
+ + +

+ + AV_{[a,a+h]} &= \frac{\sin(a)\cos(h) + \cos(a)\sin(h) - \sin(a)}{h} + &= \frac{\sin(a)(\cos(h)-1) + \cos(a)\sin(h)}{h} + &= \sin(a) \cdot \frac{\cos(h)-1}{h} + \cos(a) \cdot \frac{\sin(h)}{h} + +

+
+ +

+ Substituting into the average rate of change: + + AV_{[a,a+h]} &= \frac{\sin(a)\cos(h) + \cos(a)\sin(h) - \sin(a)}{h} + &= \frac{\sin(a)(\cos(h)-1) + \cos(a)\sin(h)}{h} + &= \sin(a) \cdot \frac{\cos(h)-1}{h} + \cos(a) \cdot \frac{\sin(h)}{h} + + which matches the stated formula (noting the sign: the formula in the problem has \frac{\cos(h)-1}{h}, which equals the same as written). +

+
+
+ + +

+ In calculus, we move from average rate of change to instantaneous rate of change by letting h approach 0 in the expression for average rate of change. Using a computational device in radian mode, investigate the behavior of + + \frac{\cos(h)-1}{h} + + as h gets close to 0. What happens? Similarly, how does \frac{\sin(h)}{h} behave for small values of h? What does this tell us about AV_{[a,a+h]} for the sine function as h approaches 0? +

+
+ + +

+ As h approaches 0, the expression \dfrac{\cos(h)-1}{h} approaches 0, and \dfrac{\sin(h)}{h} approaches 1. Therefore AV_{[a,a+h]} approaches \sin(a) \cdot 0 + \cos(a) \cdot 1 = \cos(a). This tells us that the instantaneous rate of change of the sine function at a is \cos(a). +

+
+ +

+ As h approaches 0, the expression \dfrac{\cos(h)-1}{h} approaches 0, and \dfrac{\sin(h)}{h} approaches 1. Therefore AV_{[a,a+h]} approaches \sin(a) \cdot 0 + \cos(a) \cdot 1 = \cos(a). This tells us that the instantaneous rate of change of the sine function at a is \cos(a). +

+
+
+
+
diff --git a/source/activities/act-trig-other-cot.xml b/source/activities/act-trig-other-cot.xml index c7fd8409..2582515c 100755 --- a/source/activities/act-trig-other-cot.xml +++ b/source/activities/act-trig-other-cot.xml @@ -1,420 +1,436 @@ - - - - - - - - - - - - - - - - -

- In this activity, we develop the standard properties of the cotangent function, r(t) = \cot(t). -

-

- - - -

- Complete the following tables to determine the exact values of the cotangent function at the special points on the unit circle. Enter u for any value at which r(t) = \cot(t) is undefined. -

- - - - - t - - - 0 - - - \frac{\pi}{6} - - - \frac{\pi}{4} - - - \frac{\pi}{3} - - - \frac{\pi}{2} - - - \frac{2\pi}{3} - - - \frac{3\pi}{4} - - - \frac{5\pi}{6} - - - \pi - - - - - \sin(t) - - - 0 - - - \frac{1}{2} - - - \frac{\sqrt{2}}{2} - - - \frac{\sqrt{3}}{2} - - - 1 - - - \frac{\sqrt{3}}{2} - - - \frac{\sqrt{2}}{2} - - - \frac{1}{2} - - - 0 - - - - - \cos(t) - - - 1 - - - \frac{\sqrt{3}}{2} - - - \frac{\sqrt{2}}{2} - - - \frac{1}{2} - - - 0 - - - -\frac{1}{2} - - - -\frac{\sqrt{2}}{2} - - - -\frac{\sqrt{3}}{2} - - - -1 - - - - - \tan(t) - - - 0 - - - \frac{1}{\sqrt{3}} - - - 1 - - - \frac{3}{\sqrt{3}} - - u - - -\frac{3}{\sqrt{3}} - - - -1 - - - -\frac{1}{\sqrt{3}} - - - 0 - - - - - \cot(t) - - - - - - - - - - - - - - - - - t - - - \frac{7\pi}{6} - - - \frac{5\pi}{4} - - - \frac{4\pi}{3} - - - \frac{3\pi}{2} - - - \frac{5\pi}{3} - - - \frac{7\pi}{4} - - - \frac{11\pi}{6} - - - 2\pi - - - - - \sin(t) - - - -\frac{1}{2} - - - -\frac{\sqrt{2}}{2} - - - -\frac{\sqrt{3}}{2} - - - -1 - - - -\frac{\sqrt{3}}{2} - - - -\frac{\sqrt{2}}{2} - - - -\frac{1}{2} - - - 0 - - - - - \cos(t) - - - -\frac{\sqrt{3}}{2} - - - -\frac{\sqrt{2}}{2} - - - -\frac{1}{2} - - - 0 - - - \frac{1}{2} - - - \frac{\sqrt{2}}{2} - - - \frac{\sqrt{3}}{2} - - - 1 - - - - - \tan(t) - - - \frac{1}{\sqrt{3}} - - - 1 - - - \frac{3}{\sqrt{3}} - - u - - -\frac{3}{\sqrt{3}} - - - -1 - - - -\frac{1}{\sqrt{3}} - - - 0 - - - - - \cot(t) - - - - - - - - - - - - - - - - -

- Since \cot(t) = \cos(t)/\sin(t), the cotangent values for Q1–Q2 are: u, \sqrt{3}, 1, \frac{1}{\sqrt{3}}, 0, -\frac{1}{\sqrt{3}}, -1, -\sqrt{3}, u; and for Q3–Q4: \sqrt{3}, 1, \frac{1}{\sqrt{3}}, 0, -\frac{1}{\sqrt{3}}, -1, -\sqrt{3}, u. -

-
- - - -

- In which quadrants is r(t) = \cot(t) positive? negative? -

-
- - - -

- The cotangent function is positive in quadrants I and III (where sine and cosine have the same sign) and negative in quadrants II and IV (where they have opposite signs). -

-
-
- - -

- At what t-values does r(t) = \cot(t) have a vertical asymptote? Why? -

-
- - - -

- The cotangent function has vertical asymptotes wherever \sin(t) = 0, that is, at every integer multiple of \pi: t = 0, \pm\pi, \pm 2\pi, \ldots -

-
-
- - -

- What is the domain of the cotangent function? What is its range? -

-
- - - -

- The domain of the cotangent function is all real numbers except integer multiples of \pi. The range is all real numbers (-\infty, \infty). -

-
-
- - -

- Sketch an accurate, labeled graph of r(t) = \cot(t) on the axes provided below, including the special points that come from the unit circle. -

- -

ADD ALT TEXT TO THIS IMAGE

- -
- - - - - -
- - -

- On intervals where the function is defined at every point in the interval, is r(t) = \cot(t) always increasing, always decreasing, or neither? -

-
- - - -

- The cotangent function is always decreasing on every interval where it is defined. -

-
-
- - -

- What is the period of the cotangent function? -

-
- - - -

- The period of the cotangent function is \pi radians. -

-
-
- - -

- How would you describe the relationship between the graphs of the tangent and cotangent functions? -

-
- - - -

- The graph of r(t) = \cot(t) can be obtained from the graph of \tan(t) by reflecting over the y-axis and then shifting \frac{\pi}{2} to the right. Equivalently, \cot(t) = \tan\!\left(\frac{\pi}{2} - t\right). -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ In this activity, we develop the standard properties of the cotangent function, r(t) = \cot(t). +

+

+ + + +

+ Complete the following tables to determine the exact values of the cotangent function at the special points on the unit circle. Enter u for any value at which r(t) = \cot(t) is undefined. +

+ + + + + t + + + 0 + + + \frac{\pi}{6} + + + \frac{\pi}{4} + + + \frac{\pi}{3} + + + \frac{\pi}{2} + + + \frac{2\pi}{3} + + + \frac{3\pi}{4} + + + \frac{5\pi}{6} + + + \pi + + + + + \sin(t) + + + 0 + + + \frac{1}{2} + + + \frac{\sqrt{2}}{2} + + + \frac{\sqrt{3}}{2} + + + 1 + + + \frac{\sqrt{3}}{2} + + + \frac{\sqrt{2}}{2} + + + \frac{1}{2} + + + 0 + + + + + \cos(t) + + + 1 + + + \frac{\sqrt{3}}{2} + + + \frac{\sqrt{2}}{2} + + + \frac{1}{2} + + + 0 + + + -\frac{1}{2} + + + -\frac{\sqrt{2}}{2} + + + -\frac{\sqrt{3}}{2} + + + -1 + + + + + \tan(t) + + + 0 + + + \frac{1}{\sqrt{3}} + + + 1 + + + \frac{3}{\sqrt{3}} + + u + + -\frac{3}{\sqrt{3}} + + + -1 + + + -\frac{1}{\sqrt{3}} + + + 0 + + + + + \cot(t) + + + + + + + + + + + + + + + + + t + + + \frac{7\pi}{6} + + + \frac{5\pi}{4} + + + \frac{4\pi}{3} + + + \frac{3\pi}{2} + + + \frac{5\pi}{3} + + + \frac{7\pi}{4} + + + \frac{11\pi}{6} + + + 2\pi + + + + + \sin(t) + + + -\frac{1}{2} + + + -\frac{\sqrt{2}}{2} + + + -\frac{\sqrt{3}}{2} + + + -1 + + + -\frac{\sqrt{3}}{2} + + + -\frac{\sqrt{2}}{2} + + + -\frac{1}{2} + + + 0 + + + + + \cos(t) + + + -\frac{\sqrt{3}}{2} + + + -\frac{\sqrt{2}}{2} + + + -\frac{1}{2} + + + 0 + + + \frac{1}{2} + + + \frac{\sqrt{2}}{2} + + + \frac{\sqrt{3}}{2} + + + 1 + + + + + \tan(t) + + + \frac{1}{\sqrt{3}} + + + 1 + + + \frac{3}{\sqrt{3}} + + u + + -\frac{3}{\sqrt{3}} + + + -1 + + + -\frac{1}{\sqrt{3}} + + + 0 + + + + + \cot(t) + + + + + + + + + + + + + + + +

+ Since \cot(t) = \cos(t)/\sin(t), the cotangent values for Q1 and Q2 are: u, \sqrt{3}, 1, \frac{1}{\sqrt{3}}, 0, -\frac{1}{\sqrt{3}}, -1, -\sqrt{3}, u; and for Q3 and Q4: \sqrt{3}, 1, \frac{1}{\sqrt{3}}, 0, -\frac{1}{\sqrt{3}}, -1, -\sqrt{3}, u. +

+
+ +

+ Since \cot(t) = \cos(t)/\sin(t), the cotangent values for Q1 and Q2 are: u, \sqrt{3}, 1, \frac{1}{\sqrt{3}}, 0, -\frac{1}{\sqrt{3}}, -1, -\sqrt{3}, u; and for Q3 and Q4: \sqrt{3}, 1, \frac{1}{\sqrt{3}}, 0, -\frac{1}{\sqrt{3}}, -1, -\sqrt{3}, u. +

+
+ + + +

+ In which quadrants is r(t) = \cot(t) positive? negative? +

+
+ + +

+ The cotangent function is positive in quadrants I and III and negative in quadrants II and IV. +

+
+ +

+ The cotangent function is positive in quadrants I and III (where sine and cosine have the same sign) and negative in quadrants II and IV (where they have opposite signs). +

+
+
+ + +

+ At what t-values does r(t) = \cot(t) have a vertical asymptote? Why? +

+
+ + +

+ At every integer multiple of \pi: t = 0, \pm\pi, \pm 2\pi, \ldots +

+
+ +

+ The cotangent function has vertical asymptotes wherever \sin(t) = 0, that is, at every integer multiple of \pi: t = 0, \pm\pi, \pm 2\pi, \ldots +

+
+
+ + +

+ What is the domain of the cotangent function? What is its range? +

+
+ + +

+ The domain of the cotangent function is all real numbers except integer multiples of \pi. The range is all real numbers (-\infty, \infty). +

+
+ +

+ The domain of the cotangent function is all real numbers except integer multiples of \pi. The range is all real numbers (-\infty, \infty). +

+
+
+ + +

+ Sketch an accurate, labeled graph of r(t) = \cot(t) on the axes provided below, including the special points that come from the unit circle. +

+ +

Axes with tangent for graphing cotangent

+ +
+ + +

graph of cotangent

+
+ +

graph of cotangent

+
+
+ + +

+ On intervals where the function is defined at every point in the interval, is r(t) = \cot(t) always increasing, always decreasing, or neither? +

+
+ + +

+ The cotangent function is always decreasing on every interval where it is defined. +

+
+ +

+ The cotangent function is always decreasing on every interval where it is defined. +

+
+
+ + +

+ What is the period of the cotangent function? +

+
+ +

\pi radians

+ +

+ The period of the cotangent function is \pi radians. +

+
+
+ + +

+ How would you describe the relationship between the graphs of the tangent and cotangent functions? +

+
+ +

The graph of r(t) = \cot(t) can be obtained from the graph of \tan(t) by reflecting over the y-axis and then shifting \frac{\pi}{2} to the right.

+ +

+ The graph of r(t) = \cot(t) can be obtained from the graph of \tan(t) by reflecting over the y-axis and then shifting \frac{\pi}{2} to the right. Equivalently, \cot(t) = \tan\left(\frac{\pi}{2} - t\right). +

+
+
+
+
diff --git a/source/activities/act-trig-other-csc.xml b/source/activities/act-trig-other-csc.xml index ec43c9b5..e715c93a 100755 --- a/source/activities/act-trig-other-csc.xml +++ b/source/activities/act-trig-other-csc.xml @@ -1,308 +1,312 @@ - - - - - - - - - - - - - - - - -

- In this activity, we develop the standard properties of the cosecant function, q(t) = \csc(t). -

- -

ADD ALT TEXT TO THIS IMAGE

- -

- - - -

- Complete the tables below to determine the exact values of the cosecant function at the special points on the unit circle. Enter u for any value at which q(t) = \csc(t) is undefined. -

- - - - - t - - - 0 - - - \frac{\pi}{6} - - - \frac{\pi}{4} - - - \frac{\pi}{3} - - - \frac{\pi}{2} - - - \frac{2\pi}{3} - - - \frac{3\pi}{4} - - - \frac{5\pi}{6} - - - \pi - - - - - \sin(t) - - - 0 - - - \frac{1}{2} - - - \frac{\sqrt{2}}{2} - - - \frac{\sqrt{3}}{2} - - - 1 - - - \frac{\sqrt{3}}{2} - - - \frac{\sqrt{2}}{2} - - - \frac{1}{2} - - - 0 - - - - - \csc(t) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - t - - - \frac{7\pi}{6} - - - \frac{5\pi}{4} - - - \frac{4\pi}{3} - - - \frac{3\pi}{2} - - - \frac{5\pi}{3} - - - \frac{7\pi}{4} - - - \frac{11\pi}{6} - - - 2\pi - - - - - \sin(t) - - - -\frac{1}{2} - - - -\frac{\sqrt{2}}{2} - - - -\frac{\sqrt{3}}{2} - - - -1 - - - -\frac{\sqrt{3}}{2} - - - -\frac{\sqrt{2}}{2} - - - -\frac{1}{2} - - - 0 - - - - - \csc(t) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

- The csc values are reciprocals of sin: Q1-Q2: u, 2, \sqrt{2}, \frac{2\sqrt{3}}{3}, 1, \frac{2\sqrt{3}}{3}, \sqrt{2}, 2, u; Q3-Q4: -2, -\sqrt{2}, -\frac{2\sqrt{3}}{3}, -1, -\frac{2\sqrt{3}}{3}, -\sqrt{2}, -2, u. -

-
- - - -

- In which quadrants is q(t) = \csc(t) positive? negative? -

-
- - - -

- Since \csc(t) = 1/\sin(t), the cosecant function is positive wherever sine is positive, that is, in quadrants I and II, and negative wherever sine is negative, that is, in quadrants III and IV. -

-
-
- - -

- At what t-values does q(t) = \csc(t) have a vertical asymptote? Why? -

-
- - - -

- The cosecant function has vertical asymptotes wherever \sin(t) = 0, which occurs at every integer multiple of \pi: t = 0, \pm\pi, \pm 2\pi, \ldots At these values \csc(t) = 1/\sin(t) is undefined (division by zero). -

-
-
- - -

- What is the domain of the cosecant function? What is its range? -

-
- - - -

- The domain of the cosecant function is all real numbers except integer multiples of \pi. The range is (-\infty, -1] \cup [1, \infty). -

-
-
- - -

- Sketch an accurate, labeled graph of q(t) = \csc(t) on the figure given at the start of this activity, including the special points that come from the unit circle. -

-
- - - - - -
- - -

- What is the period of the cosecant function? -

-
- - - -

- The period of the cosecant function is 2\pi radians. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ In this activity, we develop the standard properties of the cosecant function, q(t) = \csc(t). +

+ +

Axes for plotting q(t) = \csc(t)

+ +

+ + + +

+ Complete the tables below to determine the exact values of the cosecant function at the special points on the unit circle. Enter u for any value at which q(t) = \csc(t) is undefined. +

+ + + + + t + + + 0 + + + \frac{\pi}{6} + + + \frac{\pi}{4} + + + \frac{\pi}{3} + + + \frac{\pi}{2} + + + \frac{2\pi}{3} + + + \frac{3\pi}{4} + + + \frac{5\pi}{6} + + + \pi + + + + + \sin(t) + + + 0 + + + \frac{1}{2} + + + \frac{\sqrt{2}}{2} + + + \frac{\sqrt{3}}{2} + + + 1 + + + \frac{\sqrt{3}}{2} + + + \frac{\sqrt{2}}{2} + + + \frac{1}{2} + + + 0 + + + + + \csc(t) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + t + + + \frac{7\pi}{6} + + + \frac{5\pi}{4} + + + \frac{4\pi}{3} + + + \frac{3\pi}{2} + + + \frac{5\pi}{3} + + + \frac{7\pi}{4} + + + \frac{11\pi}{6} + + + 2\pi + + + + + \sin(t) + + + -\frac{1}{2} + + + -\frac{\sqrt{2}}{2} + + + -\frac{\sqrt{3}}{2} + + + -1 + + + -\frac{\sqrt{3}}{2} + + + -\frac{\sqrt{2}}{2} + + + -\frac{1}{2} + + + 0 + + + + + \csc(t) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+ The cosecant values are reciprocals of sine. In Q1 and Q2: u, 2, \sqrt{2}, \frac{2\sqrt{3}}{3}, 1, \frac{2\sqrt{3}}{3}, \sqrt{2}, 2, u; In Q3 and Q4: -2, -\sqrt{2}, -\frac{2\sqrt{3}}{3}, -1, -\frac{2\sqrt{3}}{3}, -\sqrt{2}, -2, u. +

+
+ +

+ The cosecant values are reciprocals of sine. In Q1 and Q2: u, 2, \sqrt{2}, \frac{2\sqrt{3}}{3}, 1, \frac{2\sqrt{3}}{3}, \sqrt{2}, 2, u; In Q3 and Q4: -2, -\sqrt{2}, -\frac{2\sqrt{3}}{3}, -1, -\frac{2\sqrt{3}}{3}, -\sqrt{2}, -2, u. +

+
+ + + +

+ In which quadrants is q(t) = \csc(t) positive? negative? +

+
+ +

The cosecant function is positive in quadrants I and II and negative in quadrants III and IV.

+ +

+ Since \csc(t) = 1/\sin(t), the cosecant function is positive wherever sine is positive, that is, in quadrants I and II, and negative wherever sine is negative, that is, in quadrants III and IV. +

+
+
+ + +

+ At what t-values does q(t) = \csc(t) have a vertical asymptote? Why? +

+
+ +

At every integer multiple of \pi: t = 0, \pm\pi, \pm 2\pi, \ldots

+ +

+ The cosecant function has vertical asymptotes wherever \sin(t) = 0, which occurs at every integer multiple of \pi: t = 0, \pm\pi, \pm 2\pi, \ldots At these values \csc(t) = 1/\sin(t) is undefined (division by zero). +

+
+
+ + +

+ What is the domain of the cosecant function? What is its range? +

+
+ + +

+ The domain of the cosecant function is all real numbers except integer multiples of \pi. The range is (-\infty, -1] \cup [1, \infty). +

+
+ +

+ The domain of the cosecant function is all real numbers except integer multiples of \pi. The range is (-\infty, -1] \cup [1, \infty). +

+
+
+ + +

+ Sketch an accurate, labeled graph of q(t) = \csc(t) on the figure given at the start of this activity, including the special points that come from the unit circle. +

+
+ + +

graph of cosecant

+
+ +

graph of cosecant

+
+
+ + +

+ What is the period of the cosecant function? +

+
+ +

2\pi radians

+ +

+ The period of the cosecant function is 2\pi radians. +

+
+
+
+
diff --git a/source/activities/act-trig-other-special.xml b/source/activities/act-trig-other-special.xml index b0387044..5f307063 100755 --- a/source/activities/act-trig-other-special.xml +++ b/source/activities/act-trig-other-special.xml @@ -1,28 +1,32 @@ - - - - - - - - - - - - - - - - -

- Suppose that \beta is an angle in standard position with its terminal side in quadrant II and you know that \sec(\beta) = -2. Without using a computational device in any way, determine the exact values of the other five trigonometric functions evaluated at \beta. -

-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Suppose that \beta is an angle in standard position with its terminal side in quadrant II and you know that \sec(\beta) = -2. Without using a computational device in any way, determine the exact values of the other five trigonometric functions evaluated at \beta. +

+ + +

+ \cos(\beta) = -\frac{1}{2}, \sin(\beta) = \frac{\sqrt{3}}{2}, \csc(\beta) = \frac{2}{\sqrt{3}}, \cot(\beta) = -\frac{\sqrt{3}}{3}, \tan(\beta) = -\frac{3}{\sqrt{3}}. +

+
+ +

+ If \sec(\beta) = -2, then \cos(\beta) = -\frac{1}{2}. The angle whose terminal side is in quadrant II satisfying \sec(\beta) = -2 is \beta=\frac{2\pi}{3}, so \sin(\beta) = \frac{\sqrt{3}}{2}, \csc(\beta) = \frac{2}{\sqrt{3}}, \cot(\beta) = -\frac{\sqrt{3}}{3}, \tan(\beta) = -\frac{3}{\sqrt{3}}. +

+
+
+
diff --git a/source/activities/act-trig-right-SOH-CAH.xml b/source/activities/act-trig-right-SOH-CAH.xml index 2851cf11..14dce820 100755 --- a/source/activities/act-trig-right-SOH-CAH.xml +++ b/source/activities/act-trig-right-SOH-CAH.xml @@ -1,113 +1,127 @@ - - - - - - - - - - - - - - - - -

- In each of the following scenarios involving a right triangle, determine the exact values of as many of the remaining side lengths and angle measures (in radians) that you can. If there are quantities that you cannot determine, explain why. For every prompt, draw a labeled diagram of the situation. -

-

- - - -

- A right triangle with hypotenuse 7 and one non-right angle of measure \frac{\pi}{7}. -

- - - - -

- With hypotenuse 7 and non-right angle \theta = \frac{\pi}{7}, the adjacent leg is x = 7\cos\!\left(\frac{\pi}{7}\right) \approx 6.3, the opposite leg is y = 7\sin\!\left(\frac{\pi}{7}\right) \approx 3.0, and the other non-right angle is \phi = \frac{\pi}{2} - \frac{\pi}{7} = \frac{5\pi}{14}. -

-
- - - -

- A right triangle with non-right angle \alpha that satisfies \sin(\alpha) = \frac{3}{5}. -

-
- - - -

- We know \sin(\alpha) = \frac{3}{5}, so the opposite side and hypotenuse are in ratio 3:5, and by the Pythagorean theorem the adjacent side is in ratio 4:5. Without a specific side length, we can only determine that the triangle is similar to a 3-4-5 right triangle: sides are 3a, 4a, 5a for some a > 0. The angles are \alpha = \arcsin\!\left(\frac{3}{5}\right) \approx 0.6435 and \frac{\pi}{2} - \alpha \approx 0.9273 radians. -

-
-
- - -

- A right triangle where one of the non-right angles has measure 1.2 and the hypotenuse has length 2.7. -

-
- - - -

- With angle \beta = 1.2 radians and hypotenuse 2.7: adjacent leg x = 2.7\cos(1.2) \approx 0.98, opposite leg y = 2.7\sin(1.2) \approx 2.5, and other angle \alpha = \frac{\pi}{2} - 1.2 \approx 0.371 radians. -

-
-
- - -

- A right triangle with hypotenuse 13 and one leg of length 6.5. -

-
- - - -

- With hypotenuse 13 and one leg 6.5, the other leg is \sqrt{13^2 - 6.5^2} = \sqrt{169 - 42.25} \approx 11.26. The angles are \arccos\!\left(\frac{6.5}{13}\right) = \arccos\!\left(\frac{1}{2}\right) = \frac{\pi}{3} \approx 1.047 and \arcsin\!\left(\frac{1}{2}\right) = \frac{\pi}{6} \approx 0.524 radians. -

-
-
- - -

- A right triangle with legs of length 5 and 12. -

-
- - - -

- With legs 5 and 12, the hypotenuse is \sqrt{5^2 + 12^2} = \sqrt{169} = 13. The angles are \arctan\!\left(\frac{5}{12}\right) \approx 0.395 and \arctan\!\left(\frac{12}{5}\right) \approx 1.176 radians. -

-
-
- - -

- A right triangle where one of the non-right angles has measure \frac{\pi}{5} and the leg opposite this angle has length 4. -

-
- - - -

- With angle \beta = \frac{\pi}{5} and opposite leg 4: \sin\!\left(\frac{\pi}{5}\right) = \frac{4}{h} where h is the hypotenuse, so h = \frac{4}{\sin(\pi/5)} \approx 6.805. The adjacent leg is \sqrt{h^2 - 16} \approx 5.505. The other angle is \frac{\pi}{2} - \frac{\pi}{5} = \frac{3\pi}{10}. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ In each of the following scenarios involving a right triangle, determine the exact values of as many of the remaining side lengths and angle measures (in radians) that you can. If there are quantities that you cannot determine, explain why. For every prompt, draw a labeled diagram of the situation. +

+

+ + + +

+ A right triangle with hypotenuse 7 and one non-right angle of measure \frac{\pi}{7}. +

+ + + +

+ With hypotenuse 7 and non-right angle \theta = \frac{\pi}{7}, the adjacent leg is x = 7\cos\left(\frac{\pi}{7}\right) \approx 6.3, the opposite leg is y = 7\sin\left(\frac{\pi}{7}\right) \approx 3.0, and the other non-right angle is \phi = \frac{\pi}{2} - \frac{\pi}{7} = \frac{5\pi}{14}. +

+
+ +

+ With hypotenuse 7 and non-right angle \theta = \frac{\pi}{7}, the adjacent leg is x = 7\cos\left(\frac{\pi}{7}\right) \approx 6.3, the opposite leg is y = 7\sin\left(\frac{\pi}{7}\right) \approx 3.0, and the other non-right angle is \phi = \frac{\pi}{2} - \frac{\pi}{7} = \frac{5\pi}{14}. +

+
+ + + +

+ A right triangle with non-right angle \alpha that satisfies \sin(\alpha) = \frac{3}{5}. +

+
+ +

Without a specific side length, we can only determine that the triangle is similar to a 3-4-5 right triangle: sides are 3a, 4a, 5a for some a > 0. The angles are \alpha = \arcsin\left(\frac{3}{5}\right) \approx 0.6435 and \frac{\pi}{2} - \alpha \approx 0.9273 radians.

+ +

+ We know \sin(\alpha) = \frac{3}{5}, so the opposite side and hypotenuse are in ratio 3:5, and by the Pythagorean theorem the adjacent side is in ratio 4:5. Without a specific side length, we can only determine that the triangle is similar to a 3-4-5 right triangle: sides are 3a, 4a, 5a for some a > 0. The angles are \alpha = \arcsin\left(\frac{3}{5}\right) \approx 0.6435 and \frac{\pi}{2} - \alpha \approx 0.9273 radians. +

+
+
+ + +

+ A right triangle where one of the non-right angles has measure 1.2 and the hypotenuse has length 2.7. +

+
+ + +

+ With angle \beta = 1.2 radians and hypotenuse 2.7: adjacent leg x = 2.7\cos(1.2) \approx 0.98, opposite leg y = 2.7\sin(1.2) \approx 2.5, and other angle \alpha = \frac{\pi}{2} - 1.2 \approx 0.371 radians. +

+
+ +

+ With angle \beta = 1.2 radians and hypotenuse 2.7: adjacent leg x = 2.7\cos(1.2) \approx 0.98, opposite leg y = 2.7\sin(1.2) \approx 2.5, and other angle \alpha = \frac{\pi}{2} - 1.2 \approx 0.371 radians. +

+
+
+ + +

+ A right triangle with hypotenuse 13 and one leg of length 6.5. +

+
+ + +

+ With hypotenuse 13 and one leg 6.5, the other leg is \sqrt{13^2 - 6.5^2} = \sqrt{169 - 42.25} \approx 11.26. The angles are \arccos\left(\frac{6.5}{13}\right) = \arccos\left(\frac{1}{2}\right) = \frac{\pi}{3} \approx 1.047 and \arcsin\left(\frac{1}{2}\right) = \frac{\pi}{6} \approx 0.524 radians. +

+
+ +

+ With hypotenuse 13 and one leg 6.5, the other leg is \sqrt{13^2 - 6.5^2} = \sqrt{169 - 42.25} \approx 11.26. The angles are \arccos\left(\frac{6.5}{13}\right) = \arccos\left(\frac{1}{2}\right) = \frac{\pi}{3} \approx 1.047 and \arcsin\left(\frac{1}{2}\right) = \frac{\pi}{6} \approx 0.524 radians. +

+
+
+ + +

+ A right triangle with legs of length 5 and 12. +

+
+ + +

+ With legs 5 and 12, the hypotenuse is \sqrt{5^2 + 12^2} = \sqrt{169} = 13. The angles are \arctan\left(\frac{5}{12}\right) \approx 0.395 and \arctan\left(\frac{12}{5}\right) \approx 1.176 radians. +

+
+ +

+ With legs 5 and 12, the hypotenuse is \sqrt{5^2 + 12^2} = \sqrt{169} = 13. The angles are \arctan\left(\frac{5}{12}\right) \approx 0.395 and \arctan\left(\frac{12}{5}\right) \approx 1.176 radians. +

+
+
+ + +

+ A right triangle where one of the non-right angles has measure \frac{\pi}{5} and the leg opposite this angle has length 4. +

+
+ + +

+ With angle \beta = \frac{\pi}{5} and opposite leg 4: \sin\left(\frac{\pi}{5}\right) = \frac{4}{h} where h is the hypotenuse, so h = \frac{4}{\sin(\pi/5)} \approx 6.805. The adjacent leg is \sqrt{h^2 - 16} \approx 5.505. The other angle is \frac{\pi}{2} - \frac{\pi}{5} = \frac{3\pi}{10}. +

+
+ +

+ With angle \beta = \frac{\pi}{5} and opposite leg 4: \sin\left(\frac{\pi}{5}\right) = \frac{4}{h} where h is the hypotenuse, so h = \frac{4}{\sin(\pi/5)} \approx 6.805. The adjacent leg is \sqrt{h^2 - 16} \approx 5.505. The other angle is \frac{\pi}{2} - \frac{\pi}{5} = \frac{3\pi}{10}. +

+
+
+
+
diff --git a/source/activities/act-trig-right-similar.xml b/source/activities/act-trig-right-similar.xml index df55ec06..475b5856 100755 --- a/source/activities/act-trig-right-similar.xml +++ b/source/activities/act-trig-right-similar.xml @@ -1,89 +1,91 @@ - - - - - - - - - - - - - - - - -

- Consider right triangle OPQ given in the following figure, and assume that the length of the hypotenuse is OP = r for some constant r \gt 1. Let point M lie on \overline{OP} (the line segment between O and P) in such a way that OM = 1, and let point N lie on \overline{OQ} so that \angle ONM is a right angle, as pictured. In addition, assume that point O corresponds to (0,0), point Q to (x,0), and point P to (x,y) so that OQ = x and PQ = y. Finally, let \theta be the measure of \angle POQ. -

- -

ADD ALT TEXT TO THIS IMAGE

- -

- - - -

- Explain why \triangle OPQ and \triangle OMN are similar triangles. -

- - - - -

- Both triangles share the angle \theta at vertex O, and both have a right angle (\angle OPQ and \angle ONM). Since two pairs of angles are equal, the triangles are similar by AA similarity. -

-
- - - -

- What is the value of the ratio \frac{OP}{OM}? What does this tell you about the ratios \frac{OQ}{ON} and \frac{PQ}{MN}? -

-
- - - -

- The ratio \frac{OP}{OM} = \frac{r}{1} = r. Since the triangles are similar with scale factor r, every pair of corresponding sides has the same ratio, so \frac{OQ}{ON} = r and \frac{PQ}{MN} = r. -

-
-
- - -

- What is the value of ON in terms of \theta? What is the value of MN in terms of \theta? -

-
- - - -

- In the smaller right triangle \triangle OMN with hypotenuse OM = 1 and angle \theta at O, we have ON = \cos(\theta) (adjacent side) and MN = \sin(\theta) (opposite side). -

-
-
- - -

- Use your conclusions in (b) and (c) to express the values of x and y in terms of r and \theta. -

-
- - - -

- Since \frac{OQ}{ON} = r, we get x = OQ = r \cdot ON = r\cos(\theta). Since \frac{PQ}{MN} = r, we get y = PQ = r \cdot MN = r\sin(\theta). -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Consider right triangle OPQ given in the following figure, and assume that the length of the hypotenuse is OP = r for some constant r \gt 1. Let point M lie on \overline{OP} (the line segment between O and P) in such a way that OM = 1, and let point N lie on \overline{OQ} so that \angle ONM is a right angle, as pictured. In addition, assume that point O corresponds to (0,0), point Q to (x,0), and point P to (x,y) so that OQ = x and PQ = y. Finally, let \theta be the measure of \angle POQ. +

+ +

Two right triangles which share vertex O: a larger one, \triangle OPQ whose hypotenuse is r, and a smaller one, \triangle OMN whose hypotenuse is 1.

+ +

+ + + +

+ Explain why \triangle OPQ and \triangle OMN are similar triangles. +

+ + + +

+ Both triangles share the angle \theta at vertex O, and both have a right angle (\angle OPQ and \angle ONM). Since two pairs of angles are equal, the triangles are similar by AA similarity. +

+
+ +

+ Both triangles share the angle \theta at vertex O, and both have a right angle (\angle OPQ and \angle ONM). Since two pairs of angles are equal, the triangles are similar by AA similarity. +

+
+ + + +

+ What is the value of the ratio \frac{OP}{OM}? What does this tell you about the ratios \frac{OQ}{ON} and \frac{PQ}{MN}? +

+
+ + +

+ The ratio \frac{OP}{OM} = r, so \frac{OQ}{ON} = r and \frac{PQ}{MN} = r. +

+
+ +

+ The ratio \frac{OP}{OM} = \frac{r}{1} = r. Since the triangles are similar with scale factor r, every pair of corresponding sides has the same ratio, so \frac{OQ}{ON} = r and \frac{PQ}{MN} = r. +

+
+
+ + +

+ What is the value of ON in terms of \theta? What is the value of MN in terms of \theta? +

+
+ +

ON = \cos(\theta) and MN = \sin(\theta)

+ +

+ In the smaller right triangle \triangle OMN with hypotenuse OM = 1 and angle \theta at O, we have ON = \cos(\theta) (adjacent side) and MN = \sin(\theta) (opposite side). +

+
+
+ + +

+ Use your conclusions in (b) and (c) to express the values of x and y in terms of r and \theta. +

+
+ +

x = r\cos(\theta) and y = r\sin(\theta).

+ +

+ Since \frac{OQ}{ON} = r, we get x = OQ = r \cdot ON = r\cos(\theta). Since \frac{PQ}{MN} = r, we get y = PQ = r \cdot MN = r\sin(\theta). +

+
+
+
+
diff --git a/source/activities/act-trig-right-sine-cosine-ratio.xml b/source/activities/act-trig-right-sine-cosine-ratio.xml index 995db56f..e268b442 100755 --- a/source/activities/act-trig-right-sine-cosine-ratio.xml +++ b/source/activities/act-trig-right-sine-cosine-ratio.xml @@ -1,37 +1,36 @@ - - - - - - - - - - - - - - - - - -

- We want to determine the distance between two points A and B that are directly across from one another on opposite sides of a river, as pictured in the given diagram. - We mark the locations of those points and walk 50 meters downstream from B to point P - and use a sextant to measure \angle BPA. If the measure of \angle BPA is 56.4^{\circ}, how wide is the river? - What other information about the situation can you determine? -

- -

ADD ALT TEXT TO THIS IMAGE

- -
-
- -

- - -

- - - + + + + + + + + + + + + + + + + + +

+ We want to determine the distance between two points A and B that are directly across from one another on opposite sides of a river, as pictured in the given diagram. + We mark the locations of those points and walk 50 meters downstream from B to point P + and use a sextant to measure \angle BPA. If the measure of \angle BPA is 56.4^{\circ}, how wide is the river? + What other information about the situation can you determine? +

+ +

A triangle \triangle APB formed between two river banks where \angle BPA = 56.4^{\circ} and the length of leg PB is 50 meters.

+ + + + +

The river is approximately 75.256 meters wide. We could also determine the hypotenuse and the missing non-right angle.

+
+

The river is 50\cdot\frac{\sin(56.4)}{\cos(56.4)} \approx 75.256 meters wide. We could also determine the hypotenuse and the missing non-right angle.

+
+
+
diff --git a/source/activities/act-trig-tangent-mountain.xml b/source/activities/act-trig-tangent-mountain.xml index 77d1344a..3407c0d5 100755 --- a/source/activities/act-trig-tangent-mountain.xml +++ b/source/activities/act-trig-tangent-mountain.xml @@ -1,123 +1,117 @@ - - - - - - - - - - - - - - - - -

- Surveyors are trying to determine the height of a hill relative to sea level. First, they choose a point to take an initial measurement with a sextant that shows the angle of elevation from the ground to the peak of the hill is 19^\circ. Next, they move 1000 feet closer to the hill, staying at the same elevation relative to sea level, and find that the angle of elevation has increased to 25^\circ, as pictured in the given diagram. We let h represent the height of the hill relative to the two measurements, and x represent the distance from the second measurement location to the center of the hill that lies directly under the peak. -

- -

ADD ALT TEXT TO THIS IMAGE

- -

- - - -

- Using the right triangle with the 25^\circ angle, find an equation that relates x and h. -

- - - - -

- Using the right triangle with the 25^\circ angle, the opposite side is h and the adjacent side is x, so \tan(25^\circ) = \dfrac{h}{x}. -

-
- - - -

- Using the right triangle with the 19^\circ angle, find a second equation that relates x and h. -

-
- - - -

- Using the right triangle with the 19^\circ angle, the opposite side is h and the adjacent side is x + 1000, so \tan(19^\circ) = \dfrac{h}{x+1000}. -

-
-
- - -

- Our work in (a) and (b) results in a system of two equations in the two unknowns x and h. Solve each of the two equations for h and then substitute appropriately in order to find a single equation in the variable x. -

-
- - - -

- From (a), h = x\tan(25^\circ). From (b), h = (x+1000)\tan(19^\circ). Setting equal: - - x\tan(25^\circ) &= (x+1000)\tan(19^\circ) - x\tan(25^\circ) - x\tan(19^\circ) &= 1000\tan(19^\circ) - x(\tan(25^\circ) - \tan(19^\circ)) &= 1000\tan(19^\circ) - x &= \dfrac{1000\tan(19^\circ)}{\tan(25^\circ) - \tan(19^\circ)}. - -

-
-
- - -

- Solve the equation from (c) to find the exact value of x and determine an approximate value accurate to 3 decimal places. -

-
- - - -

- The exact value is x = \dfrac{1000\tan(19^\circ)}{\tan(25^\circ) - \tan(19^\circ)}. Numerically, x \approx 3412.527 feet. -

-
-
- - -

- Use your preceding work to solve for h exactly, plus determine an estimate accurate to 3 decimal places. -

-
- - - -

- Using h = x\tan(25^\circ) with x \approx 3412.527: h \approx 3412.527 \cdot \tan(25^\circ) \approx 1591.287 feet. -

-
-
- - -

- If the surveyors' initial measurements were taken from an elevation of 78 feet above sea level, how high above sea level is the peak of the hill? -

-
- - - -

- If the initial measurements were taken from 78 feet above sea level, the peak of the hill is approximately 1591.287 + 78 \approx 1669 feet above sea level. -

-
-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Surveyors are trying to determine the height of a hill relative to sea level. First, they choose a point to take an initial measurement with a sextant that shows the angle of elevation from the ground to the peak of the hill is 19^\circ. Next, they move 1000 feet closer to the hill, staying at the same elevation relative to sea level, and find that the angle of elevation has increased to 25^\circ, as pictured in the given diagram. We let h represent the height of the hill relative to the two measurements, and x represent the distance from the second measurement location to the center of the hill that lies directly under the peak. +

+ +

Triangle with various lengths and angles labeled

+ +

+ + + +

+ Using the right triangle with the 25^\circ angle, find an equation that relates x and h. +

+ + +

\tan(25^\circ) = \dfrac{h}{x}

+ +

+ Using the right triangle with the 25^\circ angle, the opposite side is h and the adjacent side is x, so \tan(25^\circ) = \dfrac{h}{x}. +

+
+ + + +

+ Using the right triangle with the 19^\circ angle, find a second equation that relates x and h. +

+
+ +

\tan(19^\circ) = \dfrac{h}{x+1000}

+ +

+ Using the right triangle with the 19^\circ angle, the opposite side is h and the adjacent side is x + 1000, so \tan(19^\circ) = \dfrac{h}{x+1000}. +

+
+
+ + +

+ Our work in (a) and (b) results in a system of two equations in the two unknowns x and h. Solve each of the two equations for h and then substitute appropriately in order to find a single equation in the variable x. +

+
+ +

x\tan(25^\circ) = (x+1000)\tan(19^\circ)

+ +

+ From (a), h = x\tan(25^\circ). From (b), h = (x+1000)\tan(19^\circ). Setting equal: + + x\tan(25^\circ) &= (x+1000)\tan(19^\circ) + x\tan(25^\circ) - x\tan(19^\circ) &= 1000\tan(19^\circ) + x(\tan(25^\circ) - \tan(19^\circ)) &= 1000\tan(19^\circ) + x &= \dfrac{1000\tan(19^\circ)}{\tan(25^\circ) - \tan(19^\circ)}. + +

+
+
+ + +

+ Solve the equation from (c) to find the exact value of x and determine an approximate value accurate to 3 decimal places. +

+
+ +

x = \dfrac{1000\tan(19^\circ)}{\tan(25^\circ) - \tan(19^\circ)} \approx 3412.527

+ +

+ The exact value is x = \dfrac{1000\tan(19^\circ)}{\tan(25^\circ) - \tan(19^\circ)}. Numerically, x \approx 3412.527 feet. +

+
+
+ + +

+ Use your preceding work to solve for h exactly, plus determine an estimate accurate to 3 decimal places. +

+
+ +

h \approx 1591.287 feet

+ +

+ Using h = x\tan(25^\circ) with x \approx 3412.527: h \approx 3412.527 \cdot \tan(25^\circ) \approx 1591.287 feet. +

+
+
+ + +

+ If the surveyors' initial measurements were taken from an elevation of 78 feet above sea level, how high above sea level is the peak of the hill? +

+
+ +

approximately 1591.287 + 78 \approx 1669 feet above sea level

+ +

+ If the initial measurements were taken from 78 feet above sea level, the peak of the hill is approximately 1591.287 + 78 \approx 1669 feet above sea level. +

+
+
+
+
diff --git a/source/activities/act-trig-tangent-tower.xml b/source/activities/act-trig-tangent-tower.xml index 1e0d50dd..8be2e3ce 100755 --- a/source/activities/act-trig-tangent-tower.xml +++ b/source/activities/act-trig-tangent-tower.xml @@ -1,28 +1,28 @@ - - - - - - - - - - - - - - - - -

- The top of a 225 foot tower is to be anchored by four cables that each make an angle of 32.5^{\circ} with the ground. How long do the cables have to be and how far from the base of the tower must they be anchored? -

-
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ The top of a 225 foot tower is to be anchored by four cables that each make an angle of 32.5^{\circ} with the ground. How long do the cables have to be and how far from the base of the tower must they be anchored? +

+ + +

The cables have to be about 418.76 feet long, anchored about 353.18 feet away from the base of the tower.

+
+ +

The cables have to be \frac{225}{\sin(32.5)}\approx 418.76 feet long, anchored \frac{225}{\tan(32.5)}\approx 353.18 feet away from the base of the tower.

+
+
+
diff --git a/source/activities/act-trig-tangent-two-towers.xml b/source/activities/act-trig-tangent-two-towers.xml index f478bd96..85fd460a 100755 --- a/source/activities/act-trig-tangent-two-towers.xml +++ b/source/activities/act-trig-tangent-two-towers.xml @@ -1,34 +1,33 @@ - - - - - - - - - - - - - - - - - -

- Supertall high rises have changed the Manhattan skyline. These skyscrapers are known for their small footprint in proportion to their height, with their ratio of width to height at most 1:10, and some as extreme as 1:24. Suppose that a relatively short supertall has been built to a height of 635 feet, as pictured in the given figure, and that a second supertall is built nearby. Given the two angles that are computed from the new building, how tall, s, is the new building, and how far apart, d, are the two towers? -

- -

ADD ALT TEXT TO THIS IMAGE

- -
-
- -

- - -

- - - + + + + + + + + + + + + + + + + + +

+ Supertall high rises have changed the Manhattan skyline. These skyscrapers are known for their small footprint in proportion to their height, with their ratio of width to height at most 1:10, and some as extreme as 1:24. Suppose that a relatively short supertall has been built to a height of 635 feet, as pictured in the given figure, and that a second supertall is built nearby. Given the two angles that are computed from the new building, how tall, s, is the new building, and how far apart, d, are the two towers? +

+ +

Two supertall skyscrapers a width of d apart. The shorter one on the right has a height of 635 feet, and its top makes an angle of 31^\circ at the ground at the bottom of the skyscraper on the left. The taller skyscraper on the left makes an angle of 34^\circ at the top when connected with the bottom of the skyscraper on the right.

+ + + +

d=\frac{635}{\tan(31)}\approx 1056.8 and s=\frac{1056.8}{\tan(34)}\approx 1566.77

+
+ +

The two towers have to be d=\frac{635}{\tan(31)}\approx 1056.8 feet apart. The skyscraper on the left then is s=\frac{1056.8}{\tan(34)}\approx 1566.77 feet high.

+
+
+
diff --git a/source/activities/z-act-inverse-rainfall.xml b/source/activities/z-act-inverse-rainfall.xml index 47d5a590..4857f4e4 100644 --- a/source/activities/z-act-inverse-rainfall.xml +++ b/source/activities/z-act-inverse-rainfall.xml @@ -1,35 +1,35 @@ - - - - - - - - - - - - - - - - -

-

- - - -

- - - - - - -

- - -

- - - + + + + + + + + + + + + + + + + +

+

+ + + +

+ + + + + + +

+ + +

+ + + diff --git a/source/activities/z-act-transformations-translations.xml b/source/activities/z-act-transformations-translations.xml index d70f14c6..84474878 100644 --- a/source/activities/z-act-transformations-translations.xml +++ b/source/activities/z-act-transformations-translations.xml @@ -1,81 +1,81 @@ - - - - - - - - - - - - - - - - -

- Consider the functions r and s given in Figure and Figure. -

- -
-
-

A parent function r.

-
- -
-
-

A parent function s.

-
- - -

- - - -

- On the same axes as the plot of y = r(x), sketch the following graphs: y = g(x) = r(x) + 2, y = h(x) = r(x+1), and y = f(x) = r(x+1) + 2. Be sure to label the point on each of g, h, and f that corresponds to (-2,-1) on the original graph of r. -

- - - - - - - -

- Is it possible to view the function f in (a) as the result of composition of g and h? If so, in what order should g and h be composed in order to produce f? -

-
- - - -
- - -

- On the same axes as the plot of y = s(x), sketch the following graphs: y = k(x) = s(x) - 1, y = j(x) = s(x-2), and y = m(x) = s(x-2) - 1. Be sure to label the point on each of k, j, and m that corresponds to (-2,-3) on the original graph of r. -

-
- - - -
- - -

- Now consider the function q(x) = x^2. Determine a formula for the function that is given by p(x) = q(x+3) - 4. How is p a transformation of q? -

-
- - - -
- -

- - -

- - - + + + + + + + + + + + + + + + + +

+ Consider the functions r and s given in Figure and Figure. +

+ +
+
+

A parent function r.

+
+ +
+
+

A parent function s.

+
+ + +

+ + + +

+ On the same axes as the plot of y = r(x), sketch the following graphs: y = g(x) = r(x) + 2, y = h(x) = r(x+1), and y = f(x) = r(x+1) + 2. Be sure to label the point on each of g, h, and f that corresponds to (-2,-1) on the original graph of r. +

+ + + + + + + +

+ Is it possible to view the function f in (a) as the result of composition of g and h? If so, in what order should g and h be composed in order to produce f? +

+
+ + + +
+ + +

+ On the same axes as the plot of y = s(x), sketch the following graphs: y = k(x) = s(x) - 1, y = j(x) = s(x-2), and y = m(x) = s(x-2) - 1. Be sure to label the point on each of k, j, and m that corresponds to (-2,-3) on the original graph of r. +

+
+ + + +
+ + +

+ Now consider the function q(x) = x^2. Determine a formula for the function that is given by p(x) = q(x+3) - 4. How is p a transformation of q? +

+
+ + + +
+ +

+ + +

+ + + diff --git a/source/apc-activity-workbook.ptx b/source/apc-activity-workbook.ptx index 918134da..7e15d1a6 100644 --- a/source/apc-activity-workbook.ptx +++ b/source/apc-activity-workbook.ptx @@ -1,84 +1,84 @@ - - - - - - - - - - - - - - - - - - - - - - APC - - - - - - Preview Activity - - Motivating Questions - - - - - - - - - - <line>Activities Workbook</line> - <line>for</line> - <line>Active Prelude to Calculus</line> - - - - - - -

- This Activities Workbook for Active Prelude to Calculus collects all the Preview Activities and Activities in a way that each starts on a new page. - The Activities Workbook is designed to be used by students who wish to have a complete set of the activities to work through as they read the book in an electronic format and for instructors who wish to have a one activity per page format to make printing for distribution in class easier. -

- -

- The design of this workbook is such that each Preview Activity and Activity starts on a right-hand page. - As a result, - most left-hand pages in this workbook are intentionally left blank as a place for student work associated with one of the adjacent activities. -

- - - - - - - - - - - Back Matter - -

- This book was authored in . -

-
-
- - - + + + + + + + + + + + + + + + + + + + + + + APC + + + + + + Preview Activity + + Motivating Questions + + + + + + + + + + <line>Activities Workbook</line> + <line>for</line> + <line>Active Prelude to Calculus</line> + + + + + + +

+ This Activities Workbook for Active Prelude to Calculus collects all the Preview Activities and Activities in a way that each starts on a new page. + The Activities Workbook is designed to be used by students who wish to have a complete set of the activities to work through as they read the book in an electronic format and for instructors who wish to have a one activity per page format to make printing for distribution in class easier. +

+ +

+ The design of this workbook is such that each Preview Activity and Activity starts on a right-hand page. + As a result, + most left-hand pages in this workbook are intentionally left blank as a place for student work associated with one of the adjacent activities. +

+
+
+ + + + + + + + + Back Matter + +

+ This book was authored in . +

+
+
+ +
+
diff --git a/source/apc-solution-manual.ptx b/source/apc-solution-manual.ptx index 1af79c06..293b337c 100644 --- a/source/apc-solution-manual.ptx +++ b/source/apc-solution-manual.ptx @@ -1,88 +1,88 @@ - - - - - - - - - - - - - - - - - - - - - - - <line>Solutions Manual</line> - <line>for</line> - <line>Active Prelude to Calculus</line> - - - - - - - Matthew Boelkins - Department of Mathematics - Grand Valley State University - boelkinm@gvsu.edu - - - - Production Editor - - Mitchel T. Keller - Department of Mathematics - University of Wisconsin-Madison - mitch.keller@wisc.edu - - - - - - - - - -

- This Solutions Manual for Active Prelude to Calculus is organized by section. - Preview Activity solutions are not provided, - but each activity within a section has a solution provided. - The solution to each activity starts at the top of a new page, - so instructors can easily extract the solution for a single activity if they wish to print it for students or post on their course's learning management system site. - After the activity solutions come the exercise solutions. - Solutions for - exercises are not provided, - since those solutions are automatically available in this book's HTML version. - Each exercise also starts at the top of its own page to make it easy to extract only the solutions to certain exercises. -

- -

- Please do not post this solutions manual publicly on the internet nor in any electronic form where it is available in full to students. - As much as possible, - we aspire to keep this solutions manual as a resource for instructors only so that students get the full benefit of activities and exercises by having to struggle with them without looking at solutions. -

- -

- By extracting individual pages from the PDF, - it is fine to share solutions to individual activities or exercises via course management system software. - Please do not post these individual pages publicly on the internet. -

-
- -
- - - - - -
- -
+ + + + + + + + + + + + + + + + + + + + + + + <line>Solutions Manual</line> + <line>for</line> + <line>Active Prelude to Calculus</line> + + + + + + + Matthew Boelkins + Department of Mathematics + Grand Valley State University + boelkinm@gvsu.edu + + + + Production Editor + + Mitchel T. Keller + Department of Mathematics + University of Wisconsin-Madison + mitch.keller@wisc.edu + + + + + + + + + +

+ This Solutions Manual for Active Prelude to Calculus is organized by section. + Preview Activity solutions are not provided, + but each activity within a section has a solution provided. + The solution to each activity starts at the top of a new page, + so instructors can easily extract the solution for a single activity if they wish to print it for students or post on their course's learning management system site. + After the activity solutions come the exercise solutions. + Solutions for + exercises are not provided, + since those solutions are automatically available in this book's HTML version. + Each exercise also starts at the top of its own page to make it easy to extract only the solutions to certain exercises. +

+ +

+ Please do not post this solutions manual publicly on the internet nor in any electronic form where it is available in full to students. + As much as possible, + we aspire to keep this solutions manual as a resource for instructors only so that students get the full benefit of activities and exercises by having to struggle with them without looking at solutions. +

+ +

+ By extracting individual pages from the PDF, + it is fine to share solutions to individual activities or exercises via course management system software. + Please do not post these individual pages publicly on the internet. +

+
+ +
+ + + + + +
+ +
diff --git a/source/backmatter.xml b/source/backmatter.xml index e61d358d..d71094ef 100644 --- a/source/backmatter.xml +++ b/source/backmatter.xml @@ -1,71 +1,73 @@ - - - - - - - - - - - - - - - Back Matter - - - - - - - - - - - - - Index - - - - -

- This book was authored in . -

-
-
+ + + + + + + + + + + + + + + Back Matter + + + + + + + + + + + + + + Answers to Activities + +

This appendix contains answers to all activities in the text. Answers for preview activities are not included.

+
+
+ + + + + + Index + + + + +

+ This book was authored in . +

+
+
diff --git a/source/bibinfo.xml b/source/bibinfo.xml index a2391548..45dfdae1 100644 --- a/source/bibinfo.xml +++ b/source/bibinfo.xml @@ -1,59 +1,59 @@ - - - - - - - - - - - - - - - - Matthew Boelkins - Department of Mathematics - Grand Valley State University - boelkinm@gvsu.edu - - - - Production Editor - - Mitchel T. Keller - Department of Mathematics - University of Wisconsin-Madison - mitch@rellek.net - - - - - - - Cover Photo - Noah Wyn Photography - - - 2019 - - - - - - - 2019 - Matthew Boelkins - CC BY-SA 4.0 License - - - Permission is granted to copy and (re)distribute this material in any format and/or adapt it (even commercially) under the terms of the Creative Commons Attribution-ShareAlike 4.0 International License. The work may be used for free in any way by any party so long as attribution is given to the author(s) and if the material is modified, the resulting contributions are distributed under the same license as this original. All trademarks are the registered marks of their respective owners. The graphic - -

ADD ALT TEXT TO THIS IMAGE

- - that may appear in other locations in the text shows that the work is licensed with the Creative Commons and that the work may be used for free by any party so long as attribution is given to the author(s) and if the material is modified, the resulting contributions are distributed under the same license as this original. Full details may be found by visiting https://creativecommons.org/licenses/by-sa/4.0/ or sending a letter to Creative Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA. -
-
- -
+ + + + + + + + + + + + + + + + Matthew Boelkins + Department of Mathematics + Grand Valley State University + boelkinm@gvsu.edu + + + + Production Editor + + Mitchel T. Keller + Department of Mathematics + University of Wisconsin-Madison + mitch@rellek.net + + + + + + + Cover Photo + Noah Wyn Photography + + + 2019 + + + + + + + 2019 + Matthew Boelkins + CC BY-SA 4.0 License + + + Permission is granted to copy and (re)distribute this material in any format and/or adapt it (even commercially) under the terms of the Creative Commons Attribution-ShareAlike 4.0 International License. The work may be used for free in any way by any party so long as attribution is given to the author(s) and if the material is modified, the resulting contributions are distributed under the same license as this original. All trademarks are the registered marks of their respective owners. The graphic + +

ADD ALT TEXT TO THIS IMAGE

+ + that may appear in other locations in the text shows that the work is licensed with the Creative Commons and that the work may be used for free by any party so long as attribution is given to the author(s) and if the material is modified, the resulting contributions are distributed under the same license as this original. Full details may be found by visiting https://creativecommons.org/licenses/by-sa/4.0/ or sending a letter to Creative Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA. +
+
+ +
diff --git a/source/bookinfo.xml b/source/bookinfo.xml index 5df203bc..ceb9bcc5 100644 --- a/source/bookinfo.xml +++ b/source/bookinfo.xml @@ -1,46 +1,53 @@ - - - - - - - - - - - - - - - - - - - - APC - - - Preview Activity - - Motivating Questions - - - - + + + + + + + + + + + + + + + + + + + + APC + + + active-prelude + + Active Prelude to Calculus is designed for college students who aspire to take calculus and who either need to take a course to prepare them for calculus or want to do some additional self-study. The reader will find that the text requires them to engage actively with the material, to view topics from multiple perspectives, and to develop deep conceptual undersanding of ideas. Every section offers engaging activities for students to complete before and during class; additional exercises that challenge students to connect and assimilate core concepts; interactive WeBWorK exercises; opportunities for students to improve their skills at communicating mathematical ideas. The text is free and open-source, available in HTML, PDF, and print formats. Ancillary materials for instructors are also available. + + + Preview Activity + + Motivating Questions + + + + + + diff --git a/source/chap-changing-wb.xml b/source/chap-changing-wb.xml index 42b788d9..8a14e3b6 100644 --- a/source/chap-changing-wb.xml +++ b/source/chap-changing-wb.xml @@ -1,27 +1,27 @@ - - - - - - - - - - - - - - - Relating Changing Quantities - - - - - - - - - - - - + + + + + + + + + + + + + + + Relating Changing Quantities + + + + + + + + + + + + diff --git a/source/chap-changing.xml b/source/chap-changing.xml index 1f97cae6..31e511f1 100755 --- a/source/chap-changing.xml +++ b/source/chap-changing.xml @@ -1,27 +1,27 @@ - - - - - - - - - - - - - - - Relating Changing Quantities - - - - - - - - - - - - + + + + + + + + + + + + + + + Relating Changing Quantities + + + + + + + + + + + + diff --git a/source/chap-circular-wb.xml b/source/chap-circular-wb.xml index c4e3a872..194e9282 100644 --- a/source/chap-circular-wb.xml +++ b/source/chap-circular-wb.xml @@ -1,22 +1,22 @@ - - - - - - - - - - - - - - - Circular Functions - - - - - - - + + + + + + + + + + + + + + + Circular Functions + + + + + + + diff --git a/source/chap-circular.xml b/source/chap-circular.xml index 395b5689..b1068721 100755 --- a/source/chap-circular.xml +++ b/source/chap-circular.xml @@ -1,22 +1,22 @@ - - - - - - - - - - - - - - - Circular Functions - - - - - - - + + + + + + + + + + + + + + + Circular Functions + + + + + + + diff --git a/source/chap-exp-wb.xml b/source/chap-exp-wb.xml index c1f5130f..648f5ae8 100644 --- a/source/chap-exp-wb.xml +++ b/source/chap-exp-wb.xml @@ -1,24 +1,24 @@ - - - - - - - - - - - - - - - Exponential and Logarithmic Functions - - - - - - - - - + + + + + + + + + + + + + + + Exponential and Logarithmic Functions + + + + + + + + + diff --git a/source/chap-exp.xml b/source/chap-exp.xml index e73052c3..8bd6caab 100755 --- a/source/chap-exp.xml +++ b/source/chap-exp.xml @@ -1,24 +1,24 @@ - - - - - - - - - - - - - - - Exponential and Logarithmic Functions - - - - - - - - - + + + + + + + + + + + + + + + Exponential and Logarithmic Functions + + + + + + + + + diff --git a/source/chap-poly-wb.xml b/source/chap-poly-wb.xml index 4f429701..8869a177 100644 --- a/source/chap-poly-wb.xml +++ b/source/chap-poly-wb.xml @@ -1,23 +1,23 @@ - - - - - - - - - - - - - - - Polynomial and Rational Functions - - - - - - - - + + + + + + + + + + + + + + + Polynomial and Rational Functions + + + + + + + + diff --git a/source/chap-poly.xml b/source/chap-poly.xml index 659499b3..693d12d7 100755 --- a/source/chap-poly.xml +++ b/source/chap-poly.xml @@ -1,23 +1,23 @@ - - - - - - - - - - - - - - - Polynomial and Rational Functions - - - - - - - - + + + + + + + + + + + + + + + Polynomial and Rational Functions + + + + + + + + diff --git a/source/chap-trig-wb.xml b/source/chap-trig-wb.xml index 05c29d99..bb4a8a62 100644 --- a/source/chap-trig-wb.xml +++ b/source/chap-trig-wb.xml @@ -1,23 +1,23 @@ - - - - - - - - - - - - - - - Trigonometry - - - - - - - - + + + + + + + + + + + + + + + Trigonometry + + + + + + + + diff --git a/source/chap-trig.xml b/source/chap-trig.xml index 76a3eaf3..92f0f724 100755 --- a/source/chap-trig.xml +++ b/source/chap-trig.xml @@ -1,23 +1,23 @@ - - - - - - - - - - - - - - - Trigonometry - - - - - - - - + + + + + + + + + + + + + + + Trigonometry + + + + + + + + diff --git a/source/colophon.xml b/source/colophon.xml index e256fcb7..28767c5b 100644 --- a/source/colophon.xml +++ b/source/colophon.xml @@ -1,16 +1,16 @@ - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + diff --git a/source/exercises/ez-0-0.xml b/source/exercises/ez-0-0.xml index c7a78b2a..02ac1ccc 100755 --- a/source/exercises/ez-0-0.xml +++ b/source/exercises/ez-0-0.xml @@ -1,42 +1,42 @@ - - - - - - - - - - - - - - - - - - - -

- Exercise Statement -

-
- -

- Exercise Answer -

-
- -

- Exercise Solution -

-
-
-
+ + + + + + + + + + + + + + + + + + + +

+ Exercise Statement +

+
+ +

+ Exercise Answer +

+
+ +

+ Exercise Solution +

+
+
+
diff --git a/source/exercises/ez-changing-aroc.xml b/source/exercises/ez-changing-aroc.xml index 84b2267a..3b460493 100755 --- a/source/exercises/ez-changing-aroc.xml +++ b/source/exercises/ez-changing-aroc.xml @@ -1,220 +1,220 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

- A cold can of soda is removed from a refrigerator. Its temperature F in degrees Fahrenheit is measured at 5-minute intervals, as recorded in the following table. -

- -
+ + +
+ + Your browser does not support HTML5 Canvas. + +
+
+
+ + +
+ + Your browser does not support HTML5 Canvas. + +
+
+
+ + +
+ + Your browser does not support HTML5 Canvas. + +
+
+
A parent function r.A parent function s.A parent function r.A parent function s.
- Data for the soda's temperature as a function of time. - - - t (minutes) - 0 - 5 - 10 - 15 - 20 - 25 - 30 - 35 - - - F (Fahrenheit temp) - 37.00 - 44.74 - 50.77 - 55.47 - 59.12 - 61.97 - 64.19 - 65.92 - - -
- -

-

    -
  1. -

    - Determine AV_{[0,5]}, AV_{[5,10]}, and AV_{[10,15]}, including appropriate units. Choose one of these quantities and write a careful sentence to explain its meaning. Your sentence might look something like On the interval \ldots, the temperature of the soda is \ldots on average by \ldots for each 1-unit increase in \ldots. -

    -
  2. -
  3. -

    - On which interval is there more total change in the soda's temperature: [10,20] or [25,35]? -

    -
  4. -
  5. -

    - What can you observe about when the soda's temperature appears to be changing most rapidly? -

    -
  6. -
  7. -

    - Estimate the soda's temperature when t = 37 minutes. Write at least one sentence to explain your thinking. -

    -
  8. -
-

- - - -

- Exercise Answer -

-
- -

  1. AV_{[0,5]} = \frac{44.74 - 37.00}{5} = 1.548 F/min; AV_{[5,10]} = \frac{50.77 - 44.74}{5} = 1.206 F/min; AV_{[10,15]} = \frac{55.47 - 50.77}{5} = 0.940 F/min. For example, on the interval [0,5], the temperature of the soda is increasing on average by 1.548 degrees Fahrenheit for each additional minute.

  2. Change on [10,20]: 59.12 - 50.77 = 8.35 F. Change on [25,35]: 65.92 - 61.97 = 3.95 F. There is more total change on [10,20].

  3. The soda's temperature is changing most rapidly at the beginning (when t is smallest), and the rate of change decreases over time as the soda approaches room temperature.

  4. The rate of change on [30,35] is AV_{[30,35]} = \frac{65.92 - 64.19}{5} = 0.346 F/min. Extending this trend by 2 minutes: F(37) \approx 65.92 + 2(0.346) \approx 66.6 F.

- - -
- - - - -

- The position of a car driving along a straight road at time t in minutes is given by the function - y = s(t) that is pictured in Figure. - The car's position function has units measured in thousands of feet. - For instance, - the point (2,4) on the graph indicates that after 2 minutes, - the car has traveled 4000 feet. -

- -
- The graph of y = s(t), the position of the car (measured in thousands of feet from its starting location) at time t in minutes. -

The graph of y = s(t), the position of the car (measured in thousands of feet from its starting location) at time t in minutes.

-
-
- -

-

    -
  1. -

    - In everyday language, - describe the behavior of the car over the provided time interval. - In particular, - carefully discuss what is happening on each of the time intervals [0,1], - [1,2], [2,3], - [3,4], and [4,5], - plus provide commentary overall on what the car is doing on the interval [0,12]. -

    -
  2. -
  3. -

    - Compute the average rate of change of s on the intervals [3,4], [4,6], and [5,8]. Label your results using the notation AV_{[a,b]} appropriately, and include units on each quantity. -

    -
  4. -
  5. -

    - On the graph of s, sketch the three lines whose slope corresponds to the values of AV_{[3,4]}, AV_{[4,6]}, and AV_{[5,8]} that you computed in (b). -

    -
  6. -
  7. -

    - Is there a time interval on which the car's average velocity is 5000 feet per minute? Why or why not? -

    -
  8. -
  9. -

    - Is there ever a time interval when the car is going in reverse? Why or why not? -

    -
  10. -
-

- -
- -

- Exercise Answer -

-
- -

  1. Read from the graph: describe behavior on each interval. Where the graph rises steeply, the car moves quickly; where flat, the car is stopped; where the slope is gentler, the car moves more slowly.

  2. From the graph: AV_{[3,4]} = \frac{s(4)-s(3)}{1}, AV_{[4,6]} = \frac{s(6)-s(4)}{2}, AV_{[5,8]} = \frac{s(8)-s(5)}{3}, each in thousands of feet per minute.

  3. On the graph, sketch line segments connecting (3, s(3)) to (4, s(4)), (4, s(4)) to (6, s(6)), and (5, s(5)) to (8, s(8)); their slopes represent the respective average velocities.

  4. An average velocity of 5000 ft/min requires a slope of 5 on the graph. Examine whether any secant line connecting two points on the graph achieves this slope.

  5. If the position graph is always non-decreasing, the car never goes in reverse. Reverse motion would correspond to a portion of the graph with negative slope (decreasing s).

-
-
- - - -

- Consider an inverted conical tank (point down) whose top has a radius of 3 feet and that is 2 feet deep. The tank is initially empty and then is filled at a constant rate of 0.75 cubic feet per minute. Let V=f(t) denote the volume of water (in cubic feet) at time t in minutes, and let h= g(t) denote the depth of the water (in feet) at time t. It turns out that the formula for the function g is g(t) = \left( \frac{t}{\pi} \right)^{1/3}. -

- -

-

    -
  1. -

    - In everyday language, describe how you expect the height function h = g(t) to behave as time increases. -

    -
  2. -
  3. -

    - For the height function h = g(t) = \left( \frac{t}{\pi} \right)^{1/3}, compute AV_{[0,2]}, AV_{[2,4]}, and AV_{[4,6]}. Include units on your results. -

    -
  4. -
  5. -

    - Again working with the height function, can you determine an interval [a,b] on which AV_{[a,b]} = 2 feet per minute? If yes, state the interval; if not, explain why there is no such interval. -

    -
  6. -
  7. -

    - Now consider the volume function, V = f(t). Even though we don't have a formula for f, is it possible to determine the average rate of change of the volume function on the intervals [0,2], [2,4], and [4,6]? Why or why not? -

    -
  8. -
-

- -
- -

- Exercise Answer -

-
- -

  1. As the conical tank fills, the cone widens, so equal amounts of water produce smaller increases in height. Therefore h = g(t) is increasing but at a decreasing rate (concave down).

  2. Using g(t) = (t/\pi)^{1/3}: g(0)=0, g(2)=(2/\pi)^{1/3}\approx 0.860, g(4)=(4/\pi)^{1/3}\approx 1.084, g(6)=(6/\pi)^{1/3}\approx 1.240. Thus AV_{[0,2]}\approx 0.430 ft/min, AV_{[2,4]}\approx 0.112 ft/min, AV_{[4,6]}\approx 0.078 ft/min.

  3. Yes. For intervals [0,b] starting at t=0: AV_{[0,b]} = g(b)/b = (1/\pi)^{1/3} b^{-2/3}. Setting this equal to 2 gives b^{2/3} = (1/\pi)^{1/3}/2, so b = (1/(8\pi))^{1/2} = 1/(2\sqrt{\pi}\,) \approx 0.282 min. The interval [0, 1/(2\sqrt{\pi})] gives AV = 2 ft/min.

  4. Since V = f(t) = 0.75t is linear with constant slope 0.75, the average rate of change of volume is always 0.75 cu ft/min on every interval, including [0,2], [2,4], and [4,6].

-
-
- - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+ A cold can of soda is removed from a refrigerator. Its temperature F in degrees Fahrenheit is measured at 5-minute intervals, as recorded in the following table. +

+ + + Data for the soda's temperature as a function of time. + + + t (minutes) + 0 + 5 + 10 + 15 + 20 + 25 + 30 + 35 + + + F (Fahrenheit temp) + 37.00 + 44.74 + 50.77 + 55.47 + 59.12 + 61.97 + 64.19 + 65.92 + + +
+ +

+

    +
  1. +

    + Determine AV_{[0,5]}, AV_{[5,10]}, and AV_{[10,15]}, including appropriate units. Choose one of these quantities and write a careful sentence to explain its meaning. Your sentence might look something like On the interval \ldots, the temperature of the soda is \ldots on average by \ldots for each 1-unit increase in \ldots. +

    +
  2. +
  3. +

    + On which interval is there more total change in the soda's temperature: [10,20] or [25,35]? +

    +
  4. +
  5. +

    + What can you observe about when the soda's temperature appears to be changing most rapidly? +

    +
  6. +
  7. +

    + Estimate the soda's temperature when t = 37 minutes. Write at least one sentence to explain your thinking. +

    +
  8. +
+

+ +
+ +

+ Exercise Answer +

+
+ +

  1. AV_{[0,5]} = \frac{44.74 - 37.00}{5} = 1.548 F/min; AV_{[5,10]} = \frac{50.77 - 44.74}{5} = 1.206 F/min; AV_{[10,15]} = \frac{55.47 - 50.77}{5} = 0.940 F/min. For example, on the interval [0,5], the temperature of the soda is increasing on average by 1.548 degrees Fahrenheit for each additional minute.

  2. Change on [10,20]: 59.12 - 50.77 = 8.35 F. Change on [25,35]: 65.92 - 61.97 = 3.95 F. There is more total change on [10,20].

  3. The soda's temperature is changing most rapidly at the beginning (when t is smallest), and the rate of change decreases over time as the soda approaches room temperature.

  4. The rate of change on [30,35] is AV_{[30,35]} = \frac{65.92 - 64.19}{5} = 0.346 F/min. Extending this trend by 2 minutes: F(37) \approx 65.92 + 2(0.346) \approx 66.6 F.

+ + +
+
+ + + +

+ The position of a car driving along a straight road at time t in minutes is given by the function + y = s(t) that is pictured in Figure. + The car's position function has units measured in thousands of feet. + For instance, + the point (2,4) on the graph indicates that after 2 minutes, + the car has traveled 4000 feet. +

+ +
+ The graph of y = s(t), the position of the car (measured in thousands of feet from its starting location) at time t in minutes. +

The graph of y = s(t), the position of the car (measured in thousands of feet from its starting location) at time t in minutes.

+
+
+ +

+

    +
  1. +

    + In everyday language, + describe the behavior of the car over the provided time interval. + In particular, + carefully discuss what is happening on each of the time intervals [0,1], + [1,2], [2,3], + [3,4], and [4,5], + plus provide commentary overall on what the car is doing on the interval [0,12]. +

    +
  2. +
  3. +

    + Compute the average rate of change of s on the intervals [3,4], [4,6], and [5,8]. Label your results using the notation AV_{[a,b]} appropriately, and include units on each quantity. +

    +
  4. +
  5. +

    + On the graph of s, sketch the three lines whose slope corresponds to the values of AV_{[3,4]}, AV_{[4,6]}, and AV_{[5,8]} that you computed in (b). +

    +
  6. +
  7. +

    + Is there a time interval on which the car's average velocity is 5000 feet per minute? Why or why not? +

    +
  8. +
  9. +

    + Is there ever a time interval when the car is going in reverse? Why or why not? +

    +
  10. +
+

+ +
+ +

+ Exercise Answer +

+
+ +

  1. Read from the graph: describe behavior on each interval. Where the graph rises steeply, the car moves quickly; where flat, the car is stopped; where the slope is gentler, the car moves more slowly.

  2. From the graph: AV_{[3,4]} = \frac{s(4)-s(3)}{1}, AV_{[4,6]} = \frac{s(6)-s(4)}{2}, AV_{[5,8]} = \frac{s(8)-s(5)}{3}, each in thousands of feet per minute.

  3. On the graph, sketch line segments connecting (3, s(3)) to (4, s(4)), (4, s(4)) to (6, s(6)), and (5, s(5)) to (8, s(8)); their slopes represent the respective average velocities.

  4. An average velocity of 5000 ft/min requires a slope of 5 on the graph. Examine whether any secant line connecting two points on the graph achieves this slope.

  5. If the position graph is always non-decreasing, the car never goes in reverse. Reverse motion would correspond to a portion of the graph with negative slope (decreasing s).

+
+
+ + + +

+ Consider an inverted conical tank (point down) whose top has a radius of 3 feet and that is 2 feet deep. The tank is initially empty and then is filled at a constant rate of 0.75 cubic feet per minute. Let V=f(t) denote the volume of water (in cubic feet) at time t in minutes, and let h= g(t) denote the depth of the water (in feet) at time t. It turns out that the formula for the function g is g(t) = \left( \frac{t}{\pi} \right)^{1/3}. +

+ +

+

    +
  1. +

    + In everyday language, describe how you expect the height function h = g(t) to behave as time increases. +

    +
  2. +
  3. +

    + For the height function h = g(t) = \left( \frac{t}{\pi} \right)^{1/3}, compute AV_{[0,2]}, AV_{[2,4]}, and AV_{[4,6]}. Include units on your results. +

    +
  4. +
  5. +

    + Again working with the height function, can you determine an interval [a,b] on which AV_{[a,b]} = 2 feet per minute? If yes, state the interval; if not, explain why there is no such interval. +

    +
  6. +
  7. +

    + Now consider the volume function, V = f(t). Even though we don't have a formula for f, is it possible to determine the average rate of change of the volume function on the intervals [0,2], [2,4], and [4,6]? Why or why not? +

    +
  8. +
+

+ +
+ +

+ Exercise Answer +

+
+ +

  1. As the conical tank fills, the cone widens, so equal amounts of water produce smaller increases in height. Therefore h = g(t) is increasing but at a decreasing rate (concave down).

  2. Using g(t) = (t/\pi)^{1/3}: g(0)=0, g(2)=(2/\pi)^{1/3}\approx 0.860, g(4)=(4/\pi)^{1/3}\approx 1.084, g(6)=(6/\pi)^{1/3}\approx 1.240. Thus AV_{[0,2]}\approx 0.430 ft/min, AV_{[2,4]}\approx 0.112 ft/min, AV_{[4,6]}\approx 0.078 ft/min.

  3. Yes. For intervals [0,b] starting at t=0: AV_{[0,b]} = g(b)/b = (1/\pi)^{1/3} b^{-2/3}. Setting this equal to 2 gives b^{2/3} = (1/\pi)^{1/3}/2, so b = (1/(8\pi))^{1/2} = 1/(2\sqrt{\pi}\,) \approx 0.282 min. The interval [0, 1/(2\sqrt{\pi})] gives AV = 2 ft/min.

  4. Since V = f(t) = 0.75t is linear with constant slope 0.75, the average rate of change of volume is always 0.75 cu ft/min on every interval, including [0,2], [2,4], and [4,6].

+
+
+ +
diff --git a/source/exercises/ez-changing-combining.xml b/source/exercises/ez-changing-combining.xml index a07661a7..776986ad 100755 --- a/source/exercises/ez-changing-combining.xml +++ b/source/exercises/ez-changing-combining.xml @@ -1,313 +1,313 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

- Let r(t) = 2t - 3 and s(t) = 5 - 3t. - Determine a formula for each of the following new functions and simplify your result as much as possible. -

- -

-

    -
  1. -

    - f(t) = (r+s)(t) -

    -
  2. - -
  3. -

    - g(t) = (\frac{s}{r})(t) -

    -
  4. - -
  5. -

    - h(t) = (r \cdot s)(t) -

    -
  6. - -
  7. -

    - q(t) = (s \circ r)(t) -

    -
  8. - -
  9. -

    - w(t) = r(t-4) + 7 -

    -
  10. -
-

-
- -

- Exercise Answer -

-
- -

  1. f(t) = (r+s)(t) = (2t-3)+(5-3t) = 2-t

  2. g(t) = \left(\frac{s}{r}\right)(t) = \frac{5-3t}{2t-3} (undefined when t = \frac{3}{2})

  3. h(t) = (r\cdot s)(t) = (2t-3)(5-3t) = -6t^2+19t-15

  4. q(t) = (s\circ r)(t) = s(2t-3) = 5-3(2t-3) = 14-6t

  5. w(t) = r(t-4)+7 = 2(t-4)-3+7 = 2t-4

-
-
- - - -

- Consider the functions s and g defined by the graphs in Figure and Figure. Assume that to the left and right of the pictured domains, each function continues behaving according to the trends seen in the figures. -

- - -
- The graph of a piecewise function, s. -

The graph of a piecewise function, s.

-
-
-
- The graph of a piecewise function, g. -

The graph of a piecewise function, g.

-
-
-
- -

-

    -
  1. -

    - Determine a piecewise formula for the function y = s(t) that is valid for all real numbers t. -

    -
  2. -
  3. -

    - Determine a piecewise formula for the function y = g(x) that is valid for all real numbers x. -

    -
  4. -
  5. -

    - Determine each of the following quantities or explain why they are not defined. -

    -

    -

      -
    1. -

      - (s \cdot g)(1) -

      -
    2. -
    3. -

      - (g-s)(3) -

      -
    4. - -
    5. -

      - (s \circ g)(1.5) -

      -
    6. -
    7. -

      - (g \circ s)(-4) -

      -
    8. -
    -

    -
  6. -
-

- -
- -

- Exercise Answer -

-
- -

  1. Read the graph of s to identify its behavior on each piece. Find the equations of each linear piece and write them in bracket notation with the corresponding domain intervals.

  2. Similarly, read the graph of g and write a piecewise formula.

  3. With formulas for s and g in hand: (i) (s\cdot g)(1) = s(1)\cdot g(1); (ii) (g-s)(3) = g(3)-s(3); (iii) (s\circ g)(1.5) = s(g(1.5)); (iv) (g\circ s)(-4) = g(s(-4)). For each, evaluate using the piecewise formulas.

-
-
- - - - -

- One of the most important principles in the study of changing quantities is found in the relationship between distance, - average velocity, and time. - For a moving body traveling on a straight-line path at an average rate of v for a period of time t, - the distance traveled, d, is given by - - d = v \cdot t - -

- -

- In the Ironman Triathlon, - competitors swim 2.4 miles, bike 112 miles, - and then run a 26.2 mile marathon. - In the following sequence of questions, - we build a piecewise function that models a competitor's location in the race at a given time t. - To start, we have the following known information. - -

    -
  • -

    - She swims at an average rate of 2.5 miles per hour throughout the 2.4 miles in the water. -

    -
  • - -
  • -

    - Her transition from swim to bike takes 3 minutes (0.05 hours), - during which time she doesn't travel any additional distance. -

    -
  • - -
  • -

    - She bikes at an average rate of 21 miles per hour throughout the 112 miles of biking. -

    -
  • - -
  • -

    - Her transition from bike to run takes just over 2 minutes (0.03 hours), - during which time she doesn't travel any additional distance. -

    -
  • - -
  • -

    - She runs at an average rate of 8.5 miles per hour throughout the marathon. -

    -
  • - -
  • -

    - In the questions that follow, - assume for the purposes of the model that the triathlete swims, bikes, - and runs at essentially constant rates - (given by the average rates stated above). -

    -
  • -
- -
    -
  1. -

    - Determine the time the swimmer exits the water. - Report your result in hours. -

    -
  2. - -
  3. -

    - Likewise, determine the time the athlete gets off her bike, - as well as the time she finishes the race. -

    -
  4. - -
  5. -

    - List 5 key points in the form (time, distance): - when exiting the water, when starting the bike, - when finishing the bike, when starting the run, - and when finishing the run. -

    -
  6. - -
  7. -

    - What is the triathlete's average velocity over the course of the entire race? - Is this velocity the average of her swim velocity, bike velocity, and run velocity? Why or why not? -

    -
  8. - -
  9. -

    - Determine a piecewise function s(t) whose value at any given time - (in hours) - is the triathlete's total distance traveled. -

    -
  10. - -
  11. -

    - Sketch a carefully labeled graph of the triathlete's distance traveled as a function of time on the axes provided. - Provide clear scale and note key points on the graph. -

    - - -

    ADD ALT TEXT TO THIS IMAGE

    -

    ADD ALT TEXT TO THIS IMAGE

    -
    -
  12. - -
  13. -

    - Sketch a possible graph of the triathete's velocity, V, - as a function of time on the righthand axes. - Here, too, label key points and provide clear scale. Write several sentences to explain and justify your graph. -

    -
  14. -
-

-
- -

- Exercise Answer -

-
- -

  1. The triathlete exits the water after the swim at t = 2.4/2.5 = 0.96 hours.

  2. The bike finishes at t = 0.96 + 0.05 + 112/21 \approx 6.34 hours; the race ends at t \approx 6.37 + 26.2/8.5 \approx 9.45 hours.

  3. Key points: exits water at (0.96, 2.4); starts bike at (1.01, 2.4); finishes bike at (6.34, 114.4); starts run at (6.37, 114.4); finishes at (9.45, 140.6).

  4. f(t) = \begin{cases} 2.5t, \amp 0 \le t \le 0.96 \\ 2.4, \amp 0.96 \lt t \le 1.01 \\ 2.4 + 21(t-1.01), \amp 1.01 \lt t \le 6.34 \\ 114.4, \amp 6.34 \lt t \le 6.37 \\ 114.4 + 8.5(t-6.37), \amp 6.37 \lt t \le 9.45 \end{cases}

  5. See graphs below.

- - - - -
-
-
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+ Let r(t) = 2t - 3 and s(t) = 5 - 3t. + Determine a formula for each of the following new functions and simplify your result as much as possible. +

+ +

+

    +
  1. +

    + f(t) = (r+s)(t) +

    +
  2. + +
  3. +

    + g(t) = (\frac{s}{r})(t) +

    +
  4. + +
  5. +

    + h(t) = (r \cdot s)(t) +

    +
  6. + +
  7. +

    + q(t) = (s \circ r)(t) +

    +
  8. + +
  9. +

    + w(t) = r(t-4) + 7 +

    +
  10. +
+

+
+ +

+ Exercise Answer +

+
+ +

  1. f(t) = (r+s)(t) = (2t-3)+(5-3t) = 2-t

  2. g(t) = \left(\frac{s}{r}\right)(t) = \frac{5-3t}{2t-3} (undefined when t = \frac{3}{2})

  3. h(t) = (r\cdot s)(t) = (2t-3)(5-3t) = -6t^2+19t-15

  4. q(t) = (s\circ r)(t) = s(2t-3) = 5-3(2t-3) = 14-6t

  5. w(t) = r(t-4)+7 = 2(t-4)-3+7 = 2t-4

+
+
+ + + +

+ Consider the functions s and g defined by the graphs in Figure and Figure. Assume that to the left and right of the pictured domains, each function continues behaving according to the trends seen in the figures. +

+ + +
+ The graph of a piecewise function, s. +

The graph of a piecewise function, s.

+
+
+
+ The graph of a piecewise function, g. +

The graph of a piecewise function, g.

+
+
+
+ +

+

    +
  1. +

    + Determine a piecewise formula for the function y = s(t) that is valid for all real numbers t. +

    +
  2. +
  3. +

    + Determine a piecewise formula for the function y = g(x) that is valid for all real numbers x. +

    +
  4. +
  5. +

    + Determine each of the following quantities or explain why they are not defined. +

    +

    +

      +
    1. +

      + (s \cdot g)(1) +

      +
    2. +
    3. +

      + (g-s)(3) +

      +
    4. + +
    5. +

      + (s \circ g)(1.5) +

      +
    6. +
    7. +

      + (g \circ s)(-4) +

      +
    8. +
    +

    +
  6. +
+

+ +
+ +

+ Exercise Answer +

+
+ +

  1. Read the graph of s to identify its behavior on each piece. Find the equations of each linear piece and write them in bracket notation with the corresponding domain intervals.

  2. Similarly, read the graph of g and write a piecewise formula.

  3. With formulas for s and g in hand: (i) (s\cdot g)(1) = s(1)\cdot g(1); (ii) (g-s)(3) = g(3)-s(3); (iii) (s\circ g)(1.5) = s(g(1.5)); (iv) (g\circ s)(-4) = g(s(-4)). For each, evaluate using the piecewise formulas.

+
+
+ + + + +

+ One of the most important principles in the study of changing quantities is found in the relationship between distance, + average velocity, and time. + For a moving body traveling on a straight-line path at an average rate of v for a period of time t, + the distance traveled, d, is given by + + d = v \cdot t + +

+ +

+ In the Ironman Triathlon, + competitors swim 2.4 miles, bike 112 miles, + and then run a 26.2 mile marathon. + In the following sequence of questions, + we build a piecewise function that models a competitor's location in the race at a given time t. + To start, we have the following known information. + +

    +
  • +

    + She swims at an average rate of 2.5 miles per hour throughout the 2.4 miles in the water. +

    +
  • + +
  • +

    + Her transition from swim to bike takes 3 minutes (0.05 hours), + during which time she doesn't travel any additional distance. +

    +
  • + +
  • +

    + She bikes at an average rate of 21 miles per hour throughout the 112 miles of biking. +

    +
  • + +
  • +

    + Her transition from bike to run takes just over 2 minutes (0.03 hours), + during which time she doesn't travel any additional distance. +

    +
  • + +
  • +

    + She runs at an average rate of 8.5 miles per hour throughout the marathon. +

    +
  • + +
  • +

    + In the questions that follow, + assume for the purposes of the model that the triathlete swims, bikes, + and runs at essentially constant rates + (given by the average rates stated above). +

    +
  • +
+ +
    +
  1. +

    + Determine the time the swimmer exits the water. + Report your result in hours. +

    +
  2. + +
  3. +

    + Likewise, determine the time the athlete gets off her bike, + as well as the time she finishes the race. +

    +
  4. + +
  5. +

    + List 5 key points in the form (time, distance): + when exiting the water, when starting the bike, + when finishing the bike, when starting the run, + and when finishing the run. +

    +
  6. + +
  7. +

    + What is the triathlete's average velocity over the course of the entire race? + Is this velocity the average of her swim velocity, bike velocity, and run velocity? Why or why not? +

    +
  8. + +
  9. +

    + Determine a piecewise function s(t) whose value at any given time + (in hours) + is the triathlete's total distance traveled. +

    +
  10. + +
  11. +

    + Sketch a carefully labeled graph of the triathlete's distance traveled as a function of time on the axes provided. + Provide clear scale and note key points on the graph. +

    + + +

    ADD ALT TEXT TO THIS IMAGE

    +

    ADD ALT TEXT TO THIS IMAGE

    +
    +
  12. + +
  13. +

    + Sketch a possible graph of the triathete's velocity, V, + as a function of time on the righthand axes. + Here, too, label key points and provide clear scale. Write several sentences to explain and justify your graph. +

    +
  14. +
+

+
+ +

+ Exercise Answer +

+
+ +

  1. The triathlete exits the water after the swim at t = 2.4/2.5 = 0.96 hours.

  2. The bike finishes at t = 0.96 + 0.05 + 112/21 \approx 6.34 hours; the race ends at t \approx 6.37 + 26.2/8.5 \approx 9.45 hours.

  3. Key points: exits water at (0.96, 2.4); starts bike at (1.01, 2.4); finishes bike at (6.34, 114.4); starts run at (6.37, 114.4); finishes at (9.45, 140.6).

  4. f(t) = \begin{cases} 2.5t, \amp 0 \le t \le 0.96 \\ 2.4, \amp 0.96 \lt t \le 1.01 \\ 2.4 + 21(t-1.01), \amp 1.01 \lt t \le 6.34 \\ 114.4, \amp 6.34 \lt t \le 6.37 \\ 114.4 + 8.5(t-6.37), \amp 6.37 \lt t \le 9.45 \end{cases}

  5. See graphs below.

+ + + + +
+
+
diff --git a/source/exercises/ez-changing-composite.xml b/source/exercises/ez-changing-composite.xml index 9c3a3f12..9bcc5124 100755 --- a/source/exercises/ez-changing-composite.xml +++ b/source/exercises/ez-changing-composite.xml @@ -1,328 +1,328 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

- Use the given information about various functions to answer the following questions involving composition. -

- -

-

    -
  1. -

    - Let functions f and g be given by the graphs in Figure and . An open circle means there is not a point at that location on the graph. For instance, f(-1) = 1, but f(3) is not defined. -

    - - -
    - Plot of y = f(x). -

    Plot of y = f(x).

    -
    -
    -
    - Plot of y = g(x). -

    Plot of y = g(x).

    -
    -
    -
    - -

    - Determine f(g(1)) and g(f(-2)). -

    -
  2. -
  3. -

    - Again using the functions given in (a), can you determine a value of x for which g(f(x)) is not defined? Why or why not? -

    -
  4. -
  5. -

    - Let functions r and s be defined by Table. -

    - - - Table that defines <m>r</m> and <m>s</m>. - - - t - -4 - -3 - -2 - -1 - 0 - 1 - 2 - 3 - 4 - - - r(t) - 4 - 1 - 2 - 3 - 0 - -3 - 2 - -1 - -4 - - - s(t) - -5 - -6 - -7 - -8 - 0 - 8 - 7 - 6 - 5 - - -
    - -

    - Determine (s \circ r)(3), (s \circ r)(-4), and (s \circ r)(a) for one additional value of a of your choice. -

    -
  6. -
  7. -

    - For the functions r and s defined in (c), state the domain and range of each function. For how many different values of b is it possible to determine (r \circ s)(b)? Explain. -

    -
  8. -
  9. -

    - Let m(u) = u^3 + 4u^2 - 5u + 1. Determine expressions for m(x^2), m(2+h), and m(a+h). -

    -
  10. -
  11. -

    - For the function F(x) = 4 - 3x - x^2, determine the most simplified expression you can find for AV_{[2,2+h]}. Show your algebraic work and thinking fully. -

    -
  12. -
-

-
- -

- Exercise Answer -

-
- -

  1. From the graphs: g(1) can be read, then f(g(1)); and f(-2) can be read, then g(f(-2)).

  2. g(f(x)) is undefined if f(x) falls outside the domain of g or if f(x) is itself undefined.

  3. From the table: (s\circ r)(3) = s(r(3)) = s(-1) = -8; (s\circ r)(-4) = s(r(-4)) = s(4) = 5; for example (s\circ r)(0) = s(r(0)) = s(0) = 0.

  4. Domain of r: \{-4,-3,-2,-1,0,1,2,3,4\}; range of r: \{-4,-3,-1,0,1,2,3,4\}. Domain of s: \{-4,...,4\}; range of s: \{-8,-7,-6,-5,0,5,6,7,8\}. For (r\circ s)(b), we need s(b) in the domain of r. The only value of s in \{-4,...,4\} is s(0)=0, so only b=0 works: (r\circ s)(0) = r(0) = 0.

  5. m(x^2) = x^6 + 4x^4 - 5x^2 + 1. m(2+h) = (2+h)^3 + 4(2+h)^2 - 5(2+h) + 1 = h^3 + 10h^2 + 23h + 15. m(a+h) = (a+h)^3 + 4(a+h)^2 - 5(a+h) + 1.

  6. F(x) = 4-3x-x^2. F(2) = -6 and F(2+h) = 4-3(2+h)-(2+h)^2 = -6-7h-h^2. Thus AV_{[2,2+h]} = \frac{-6-7h-h^2-(-6)}{h} = -7-h.

-
-
- - - -

- Recall Dolbear's function that defines temperature, - F, in Fahrenheit degrees, - as a function of the number of chirps per minute, N, - is F = D(N) = 40 + \frac{1}{4}N. -

-

- -

    -
  1. -

    - Solve the equation F = 40 + \frac{1}{4}N for N in terms of F. -

    -
  2. - -
  3. -

    - Say that N = g(F) is the function you just found in (a). What is the meaning of this function? - What does it take as inputs and what does it produce as outputs? -

    -
  4. -
  5. -

    - How many chirps per minute do we expect when the outsidet temperature is 82 degrees F? How can we express this in the notation of the function g? -

    -
  6. - -
  7. -

    - Recall that the function that converts Fahrenheit to Celsius is - C = G(F) = \frac{5}{9}(F-32). - Solve the equation C = \frac{5}{9}(F-32) for F in terms of C. Call the resulting function F = p(C). What is the meaning of this function? -

    -
  8. -
  9. -

    - Is it possible to write the chirp-rate N as a function of temperature C in Celsius? - That is, can we produce a function whose input is in degrees Celsius and whose output is the number of chirps per minute? - If yes, do so and explain your thinking. If not, explain why it's not possible. -

    -
  10. -
-

-
- -

- Exercise Answer -

-
- -

  1. Solving F = 40 + \frac{1}{4}N for N: N = 4(F-40) = 4F - 160.

  2. g(F) = 4F - 160 converts temperature in Fahrenheit to expected chirps per minute.

  3. g(82) = 4(82) - 160 = 168 chirps per minute, written N = g(82) = 168.

  4. Solving C = \frac{5}{9}(F-32) for F: F = \frac{9}{5}C + 32 = p(C). This converts Celsius to Fahrenheit.

  5. Yes: N = (g\circ p)(C) = g(p(C)) = g\!\left(\frac{9C}{5}+32\right) = 4\!\left(\frac{9C}{5}+32\right) - 160 = \frac{36C}{5} - 32. This function converts Celsius temperature to expected chirps per minute.

-
-
- - - -

- For each of the following functions, find two simpler functions f and g such that the given function can be written as the composite function g \circ f. -

-

-

    -
  1. -

    - h(x) = (x^2 + 7)^3 -

    -
  2. - -
  3. -

    - r(x) = \sqrt{5-x^3} -

    -
  4. - -
  5. -

    - m(x) = \frac{1}{x^4 + 2x^2 + 1} -

    -
  6. - -
  7. -

    - w(x) = 2^{3-x^2} -

    -
  8. -
-

-
-
- - - -

- A spherical tank has radius 4 feet. The tank is initially empty and then begins to be filled in such a way that the height of the water rises at a constant rate of 0.4 feet per minute. Let V be the volume of water in the tank at a given instant, and h the depth of the water at the same instant; let t denote the time elapsed in minutes since the tank started being filled. -

-

-

    -
  1. -

    - Calculus can be used to show that the volume, V, is a function of the depth, h, of the water in the tank according to the function - - V = f(h) = \frac{\pi}{3} h^2(12-h) - . - What is the domain of this model? Why? What is the corresponding range? -

    -
  2. -
  3. -

    - We are given the fact that the tank is being filled in such a way that the height of the water rises at a constant rate of 0.4 feet per minute. Said differently, h is a function of t whose average rate of change is constant. What kind of function does this make h = p(t)? Determine a formula for p(t). -

    -
  4. -
  5. -

    - What are the domain and range of the function h = p(t)? How is this tied to the dimensions of the tank? -

    -
  6. -
  7. -

    - In (a) we observed that V is a function of h, and in (b) we found that h is a function of t. Use these two facts and function composition appropriately to write V as a function of t. Call the resulting function V = q(t). -

    -
  8. -
  9. -

    - What are the domain and range of the function q? Why? -

    -
  10. -
  11. -

    - On the provided axes, sketch accurate graphs of h = p(t) and V = q(t), labeling the vertical and horizontal scale on each graph appropriately. Make your graphs as precise as you can; use a computing device to assist as needed. -

    - - -

    ADD ALT TEXT TO THIS IMAGE

    -

    ADD ALT TEXT TO THIS IMAGE

    -
    - -

    - Why do each of the two graphs have their respective shapes? Write at least one sentence to explain each graph; refer explicitly to the shape of the tank and other information given in the problem. -

    - -
  12. -
-

-
- -

- Exercise Answer -

-
- -

  1. Domain: 0 \le h \le 8 (diameter of sphere). Range: 0 \le V \le \frac{256\pi}{3}.

  2. Since the height increases at a constant rate, h = p(t) = 0.4t is a linear function.

  3. Domain: [0, 20] minutes (height reaches 8 m at t = 8/0.4 = 20 min). Range: [0, 8] m.

  4. V = q(t) = f(p(t)) = \frac{\pi}{3}(0.4t)^2(12 - 0.4t) = \frac{\pi}{3}(0.16t^2)(12-0.4t) = \frac{\pi}{3}\cdot\frac{0.064t^2(30-t)}{1} = \frac{8\pi}{375}t^2(30-t).

  5. Domain: [0, 20] minutes. Range: \left[0, \frac{256\pi}{3}\right] cubic meters.

  6. The graph of h = p(t) is a straight line (height rises at constant rate). The graph of V = q(t) is an S-shaped increasing cubic: slow at first (sphere is narrow near the bottom), then faster through the middle (widest part), then slower again as the sphere narrows near the top.

- - - - - -
-
-
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+ Use the given information about various functions to answer the following questions involving composition. +

+ +

+

    +
  1. +

    + Let functions f and g be given by the graphs in Figure and . An open circle means there is not a point at that location on the graph. For instance, f(-1) = 1, but f(3) is not defined. +

    + + +
    + Plot of y = f(x). +

    Plot of y = f(x).

    +
    +
    +
    + Plot of y = g(x). +

    Plot of y = g(x).

    +
    +
    +
    + +

    + Determine f(g(1)) and g(f(-2)). +

    +
  2. +
  3. +

    + Again using the functions given in (a), can you determine a value of x for which g(f(x)) is not defined? Why or why not? +

    +
  4. +
  5. +

    + Let functions r and s be defined by Table. +

    + + + Table that defines <m>r</m> and <m>s</m>. + + + t + -4 + -3 + -2 + -1 + 0 + 1 + 2 + 3 + 4 + + + r(t) + 4 + 1 + 2 + 3 + 0 + -3 + 2 + -1 + -4 + + + s(t) + -5 + -6 + -7 + -8 + 0 + 8 + 7 + 6 + 5 + + +
    + +

    + Determine (s \circ r)(3), (s \circ r)(-4), and (s \circ r)(a) for one additional value of a of your choice. +

    +
  6. +
  7. +

    + For the functions r and s defined in (c), state the domain and range of each function. For how many different values of b is it possible to determine (r \circ s)(b)? Explain. +

    +
  8. +
  9. +

    + Let m(u) = u^3 + 4u^2 - 5u + 1. Determine expressions for m(x^2), m(2+h), and m(a+h). +

    +
  10. +
  11. +

    + For the function F(x) = 4 - 3x - x^2, determine the most simplified expression you can find for AV_{[2,2+h]}. Show your algebraic work and thinking fully. +

    +
  12. +
+

+
+ +

+ Exercise Answer +

+
+ +

  1. From the graphs: g(1) can be read, then f(g(1)); and f(-2) can be read, then g(f(-2)).

  2. g(f(x)) is undefined if f(x) falls outside the domain of g or if f(x) is itself undefined.

  3. From the table: (s\circ r)(3) = s(r(3)) = s(-1) = -8; (s\circ r)(-4) = s(r(-4)) = s(4) = 5; for example (s\circ r)(0) = s(r(0)) = s(0) = 0.

  4. Domain of r: \{-4,-3,-2,-1,0,1,2,3,4\}; range of r: \{-4,-3,-1,0,1,2,3,4\}. Domain of s: \{-4,...,4\}; range of s: \{-8,-7,-6,-5,0,5,6,7,8\}. For (r\circ s)(b), we need s(b) in the domain of r. The only value of s in \{-4,...,4\} is s(0)=0, so only b=0 works: (r\circ s)(0) = r(0) = 0.

  5. m(x^2) = x^6 + 4x^4 - 5x^2 + 1. m(2+h) = (2+h)^3 + 4(2+h)^2 - 5(2+h) + 1 = h^3 + 10h^2 + 23h + 15. m(a+h) = (a+h)^3 + 4(a+h)^2 - 5(a+h) + 1.

  6. F(x) = 4-3x-x^2. F(2) = -6 and F(2+h) = 4-3(2+h)-(2+h)^2 = -6-7h-h^2. Thus AV_{[2,2+h]} = \frac{-6-7h-h^2-(-6)}{h} = -7-h.

+
+
+ + + +

+ Recall Dolbear's function that defines temperature, + F, in Fahrenheit degrees, + as a function of the number of chirps per minute, N, + is F = D(N) = 40 + \frac{1}{4}N. +

+

+ +

    +
  1. +

    + Solve the equation F = 40 + \frac{1}{4}N for N in terms of F. +

    +
  2. + +
  3. +

    + Say that N = g(F) is the function you just found in (a). What is the meaning of this function? + What does it take as inputs and what does it produce as outputs? +

    +
  4. +
  5. +

    + How many chirps per minute do we expect when the outsidet temperature is 82 degrees F? How can we express this in the notation of the function g? +

    +
  6. + +
  7. +

    + Recall that the function that converts Fahrenheit to Celsius is + C = G(F) = \frac{5}{9}(F-32). + Solve the equation C = \frac{5}{9}(F-32) for F in terms of C. Call the resulting function F = p(C). What is the meaning of this function? +

    +
  8. +
  9. +

    + Is it possible to write the chirp-rate N as a function of temperature C in Celsius? + That is, can we produce a function whose input is in degrees Celsius and whose output is the number of chirps per minute? + If yes, do so and explain your thinking. If not, explain why it's not possible. +

    +
  10. +
+

+
+ +

+ Exercise Answer +

+
+ +

  1. Solving F = 40 + \frac{1}{4}N for N: N = 4(F-40) = 4F - 160.

  2. g(F) = 4F - 160 converts temperature in Fahrenheit to expected chirps per minute.

  3. g(82) = 4(82) - 160 = 168 chirps per minute, written N = g(82) = 168.

  4. Solving C = \frac{5}{9}(F-32) for F: F = \frac{9}{5}C + 32 = p(C). This converts Celsius to Fahrenheit.

  5. Yes: N = (g\circ p)(C) = g(p(C)) = g\!\left(\frac{9C}{5}+32\right) = 4\!\left(\frac{9C}{5}+32\right) - 160 = \frac{36C}{5} - 32. This function converts Celsius temperature to expected chirps per minute.

+
+
+ + + +

+ For each of the following functions, find two simpler functions f and g such that the given function can be written as the composite function g \circ f. +

+

+

    +
  1. +

    + h(x) = (x^2 + 7)^3 +

    +
  2. + +
  3. +

    + r(x) = \sqrt{5-x^3} +

    +
  4. + +
  5. +

    + m(x) = \frac{1}{x^4 + 2x^2 + 1} +

    +
  6. + +
  7. +

    + w(x) = 2^{3-x^2} +

    +
  8. +
+

+
+
+ + + +

+ A spherical tank has radius 4 feet. The tank is initially empty and then begins to be filled in such a way that the height of the water rises at a constant rate of 0.4 feet per minute. Let V be the volume of water in the tank at a given instant, and h the depth of the water at the same instant; let t denote the time elapsed in minutes since the tank started being filled. +

+

+

    +
  1. +

    + Calculus can be used to show that the volume, V, is a function of the depth, h, of the water in the tank according to the function + + V = f(h) = \frac{\pi}{3} h^2(12-h) + . + What is the domain of this model? Why? What is the corresponding range? +

    +
  2. +
  3. +

    + We are given the fact that the tank is being filled in such a way that the height of the water rises at a constant rate of 0.4 feet per minute. Said differently, h is a function of t whose average rate of change is constant. What kind of function does this make h = p(t)? Determine a formula for p(t). +

    +
  4. +
  5. +

    + What are the domain and range of the function h = p(t)? How is this tied to the dimensions of the tank? +

    +
  6. +
  7. +

    + In (a) we observed that V is a function of h, and in (b) we found that h is a function of t. Use these two facts and function composition appropriately to write V as a function of t. Call the resulting function V = q(t). +

    +
  8. +
  9. +

    + What are the domain and range of the function q? Why? +

    +
  10. +
  11. +

    + On the provided axes, sketch accurate graphs of h = p(t) and V = q(t), labeling the vertical and horizontal scale on each graph appropriately. Make your graphs as precise as you can; use a computing device to assist as needed. +

    + + +

    ADD ALT TEXT TO THIS IMAGE

    +

    ADD ALT TEXT TO THIS IMAGE

    +
    + +

    + Why do each of the two graphs have their respective shapes? Write at least one sentence to explain each graph; refer explicitly to the shape of the tank and other information given in the problem. +

    + +
  12. +
+

+
+ +

+ Exercise Answer +

+
+ +

  1. Domain: 0 \le h \le 8 (diameter of sphere). Range: 0 \le V \le \frac{256\pi}{3}.

  2. Since the height increases at a constant rate, h = p(t) = 0.4t is a linear function.

  3. Domain: [0, 20] minutes (height reaches 8 m at t = 8/0.4 = 20 min). Range: [0, 8] m.

  4. V = q(t) = f(p(t)) = \frac{\pi}{3}(0.4t)^2(12 - 0.4t) = \frac{\pi}{3}(0.16t^2)(12-0.4t) = \frac{\pi}{3}\cdot\frac{0.064t^2(30-t)}{1} = \frac{8\pi}{375}t^2(30-t).

  5. Domain: [0, 20] minutes. Range: \left[0, \frac{256\pi}{3}\right] cubic meters.

  6. The graph of h = p(t) is a straight line (height rises at constant rate). The graph of V = q(t) is an S-shaped increasing cubic: slow at first (sphere is narrow near the bottom), then faster through the middle (widest part), then slower again as the sphere narrows near the top.

+ + + + + +
+
+
diff --git a/source/exercises/ez-changing-functions.xml b/source/exercises/ez-changing-functions.xml index a1e7fc68..814172d8 100644 --- a/source/exercises/ez-changing-functions.xml +++ b/source/exercises/ez-changing-functions.xml @@ -1,227 +1,227 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

- Consider an inverted conical tank (point down) whose top has a radius of 3 feet and that is 2 feet deep. The tank is initially empty and then is filled at a constant rate of 0.75 cubic feet per minute. Let V=f(t) denote the volume of water (in cubic feet) at time t in minutes, and let h= g(t) denote the depth of the water (in feet) at time t. -

- -

-

    -
  1. -

    - Recall that the volume of a conical tank of radius r and depth h is given by the formula V = \frac{1}{3} \pi r^2 h. How long will it take for the tank to be completely full and how much water will be in the tank at that time? -

    -
  2. -
  3. -

    - On the provided axes, sketch possible graphs of both V = f(t) and h = g(t), making them as accurate as you can. Label the scale on your axes and points whose coordinates you know for sure; write at least one sentence for each graph to discuss the shape of your graph and why it makes sense in the context of the model. -

    - - -

    ADD ALT TEXT TO THIS IMAGE

    -

    ADD ALT TEXT TO THIS IMAGE

    -
    - -
  4. - -
  5. -

    - What is the domain of the model h = g(t)? its range? why? -

    -
  6. - -
  7. -

    - It's possible to show that the formula for the function g is g(t) = \left( \frac{t}{\pi} \right)^{1/3}. Use a computational device to generate two plots: on the axes at left, the graph of the model h = g(t) = \left( \frac{t}{\pi} \right)^{1/3} on the domain that you decided in (c); on the axes at right, the graph of the abstract function y = p(t) = \left( \frac{t}{\pi} \right)^{1/3} on a wider domain than that of g. What are the domain and range of p and how do these differ from those of the physical model g? -

    - - -

    ADD ALT TEXT TO THIS IMAGE

    -

    ADD ALT TEXT TO THIS IMAGE

    -
    -
  8. - - -
-

- -
- -

- Exercise Answer -

-
- -

  1. The full volume is V = \frac{1}{3}\pi(3)^2(2) = 6\pi \approx 18.85 cubic feet. At a constant fill rate of 0.75 cu ft/min, the tank fills in \frac{6\pi}{0.75} = 8\pi \approx 25.1 minutes.

  2. The graph of V = f(t) is a straight line from (0,0) to (8\pi, 6\pi) (constant rate). The graph of h = g(t) is a concave-down increasing curve from (0,0) to (8\pi, 2): since the cone widens as it fills, equal volumes of water raise the height by smaller and smaller amounts.

  3. The domain of h = g(t) is [0, 8\pi] minutes and the range is [0, 2] feet.

  4. The model h = g(t) = \left(\frac{t}{\pi}\right)^{1/3} has domain [0, 8\pi] and range [0,2]. The abstract function y = p(t) = \left(\frac{t}{\pi}\right)^{1/3} has domain [0, \infty) and range [0, \infty). The model is the abstract function restricted to the physical scenario.

- - - - - - -
-
- - - -

- A person is taking a walk along a straight path. Their velocity, v (in feet per second), which is a function of time t (in seconds), is given by the graph in Figure. -

- -
- The velocity graph for a person walking along a straight path. -

The velocity graph for a person walking along a straight path.

-
-
- -

-

    -
  1. -

    - What is the person's velocity when t = 2? when t = 7? -

    -
  2. -
  3. -

    - Are there any times when the person's velocity is exactly v = 3 feet per second? If yes, identify all such times; if not, explain why. -

    -
  4. -
  5. -

    - Describe the person's behavior on the time interval 4 \le t \le 5. -

    -
  6. -
  7. -

    - On which time interval does the person travel a farther distance: [1,3] or [6,8]? Why? -

    -
  8. -
-

-
- -

- Exercise Answer -

-
- -

  1. The values of v(2) and v(7) can be read directly from the graph at t = 2 and t = 7, respectively.

  2. Any time the graph of v crosses or touches the horizontal line v = 3 gives a time when the velocity equals exactly 3 ft/s. Read these times from the graph.

  3. On the interval [4,5], examine whether the graph is positive (walking forward), negative (walking backward), or zero (stationary), and whether the velocity is increasing or decreasing.

  4. The distance traveled is proportional to the area under the velocity curve (or its absolute value). Compare the areas under the graph on [1,3] and on [6,8] to determine which interval has greater total distance.

-
-
- - - -

- A driver of a new car periodically keeps track of the number of gallons of gas remaining in their car's tank, while simultaneously tracking the trip odometer mileage. Their data is recorded in the following table. Note that at mileages where they add fuel to the tank, they record the mileage twice: once before fuel is added, and once afterward. -

- - - Remaining gas as a function of distance traveled. - - - D (miles) - 0 - 50 - 100 - 100 - 150 - 200 - 250 - 300 - 300 - 350 - - - G (gallons) - 4.5 - 3.0 - 1.5 - 10.0 - 8.5 - 7.0 - 5.5 - 4.0 - 11.0 - 9.5 - - -
- -

- Use the table to respond to the questions below. -

- -

-

    -
  1. -

    - Can the amount of fuel in the gas tank, G, be viewed as a function of distance traveled, D? Why or why not? -

    -
  2. -
  3. -

    - Does the car's fuel economy appear to be constant or does it appear to vary? Why? -

    -
  4. -
  5. -

    - At what odometer reading did the driver put the most gas in the tank? -

    -
  6. -
-

- -
- -

- Exercise Answer -

-
- -

  1. No, G cannot be viewed as a function of D. At D = 100, there are two recorded values (G = 1.5 before refueling and G = 10.0 after), and similarly at D = 300. A function must assign exactly one output to each input.

  2. The fuel economy appears to be constant. Between D = 0 and D = 100, the car used 4.5 - 1.5 = 3.0 gallons for 100 miles, giving 100/3 \approx 33.3 mpg. The same rate holds for subsequent segments.

  3. At D = 100, the driver added 10.0 - 1.5 = 8.5 gallons. At D = 300, the driver added 11.0 - 4.0 = 7.0 gallons. So the driver put the most gas in the tank at D = 100 miles.

-
-
- - - -
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+ Consider an inverted conical tank (point down) whose top has a radius of 3 feet and that is 2 feet deep. The tank is initially empty and then is filled at a constant rate of 0.75 cubic feet per minute. Let V=f(t) denote the volume of water (in cubic feet) at time t in minutes, and let h= g(t) denote the depth of the water (in feet) at time t. +

+ +

+

    +
  1. +

    + Recall that the volume of a conical tank of radius r and depth h is given by the formula V = \frac{1}{3} \pi r^2 h. How long will it take for the tank to be completely full and how much water will be in the tank at that time? +

    +
  2. +
  3. +

    + On the provided axes, sketch possible graphs of both V = f(t) and h = g(t), making them as accurate as you can. Label the scale on your axes and points whose coordinates you know for sure; write at least one sentence for each graph to discuss the shape of your graph and why it makes sense in the context of the model. +

    + + +

    ADD ALT TEXT TO THIS IMAGE

    +

    ADD ALT TEXT TO THIS IMAGE

    +
    + +
  4. + +
  5. +

    + What is the domain of the model h = g(t)? its range? why? +

    +
  6. + +
  7. +

    + It's possible to show that the formula for the function g is g(t) = \left( \frac{t}{\pi} \right)^{1/3}. Use a computational device to generate two plots: on the axes at left, the graph of the model h = g(t) = \left( \frac{t}{\pi} \right)^{1/3} on the domain that you decided in (c); on the axes at right, the graph of the abstract function y = p(t) = \left( \frac{t}{\pi} \right)^{1/3} on a wider domain than that of g. What are the domain and range of p and how do these differ from those of the physical model g? +

    + + +

    ADD ALT TEXT TO THIS IMAGE

    +

    ADD ALT TEXT TO THIS IMAGE

    +
    +
  8. + + +
+

+ +
+ +

+ Exercise Answer +

+
+ +

  1. The full volume is V = \frac{1}{3}\pi(3)^2(2) = 6\pi \approx 18.85 cubic feet. At a constant fill rate of 0.75 cu ft/min, the tank fills in \frac{6\pi}{0.75} = 8\pi \approx 25.1 minutes.

  2. The graph of V = f(t) is a straight line from (0,0) to (8\pi, 6\pi) (constant rate). The graph of h = g(t) is a concave-down increasing curve from (0,0) to (8\pi, 2): since the cone widens as it fills, equal volumes of water raise the height by smaller and smaller amounts.

  3. The domain of h = g(t) is [0, 8\pi] minutes and the range is [0, 2] feet.

  4. The model h = g(t) = \left(\frac{t}{\pi}\right)^{1/3} has domain [0, 8\pi] and range [0,2]. The abstract function y = p(t) = \left(\frac{t}{\pi}\right)^{1/3} has domain [0, \infty) and range [0, \infty). The model is the abstract function restricted to the physical scenario.

+ + + + + + +
+
+ + + +

+ A person is taking a walk along a straight path. Their velocity, v (in feet per second), which is a function of time t (in seconds), is given by the graph in Figure. +

+ +
+ The velocity graph for a person walking along a straight path. +

The velocity graph for a person walking along a straight path.

+
+
+ +

+

    +
  1. +

    + What is the person's velocity when t = 2? when t = 7? +

    +
  2. +
  3. +

    + Are there any times when the person's velocity is exactly v = 3 feet per second? If yes, identify all such times; if not, explain why. +

    +
  4. +
  5. +

    + Describe the person's behavior on the time interval 4 \le t \le 5. +

    +
  6. +
  7. +

    + On which time interval does the person travel a farther distance: [1,3] or [6,8]? Why? +

    +
  8. +
+

+
+ +

+ Exercise Answer +

+
+ +

  1. The values of v(2) and v(7) can be read directly from the graph at t = 2 and t = 7, respectively.

  2. Any time the graph of v crosses or touches the horizontal line v = 3 gives a time when the velocity equals exactly 3 ft/s. Read these times from the graph.

  3. On the interval [4,5], examine whether the graph is positive (walking forward), negative (walking backward), or zero (stationary), and whether the velocity is increasing or decreasing.

  4. The distance traveled is proportional to the area under the velocity curve (or its absolute value). Compare the areas under the graph on [1,3] and on [6,8] to determine which interval has greater total distance.

+
+
+ + + +

+ A driver of a new car periodically keeps track of the number of gallons of gas remaining in their car's tank, while simultaneously tracking the trip odometer mileage. Their data is recorded in the following table. Note that at mileages where they add fuel to the tank, they record the mileage twice: once before fuel is added, and once afterward. +

+ + + Remaining gas as a function of distance traveled. + + + D (miles) + 0 + 50 + 100 + 100 + 150 + 200 + 250 + 300 + 300 + 350 + + + G (gallons) + 4.5 + 3.0 + 1.5 + 10.0 + 8.5 + 7.0 + 5.5 + 4.0 + 11.0 + 9.5 + + +
+ +

+ Use the table to respond to the questions below. +

+ +

+

    +
  1. +

    + Can the amount of fuel in the gas tank, G, be viewed as a function of distance traveled, D? Why or why not? +

    +
  2. +
  3. +

    + Does the car's fuel economy appear to be constant or does it appear to vary? Why? +

    +
  4. +
  5. +

    + At what odometer reading did the driver put the most gas in the tank? +

    +
  6. +
+

+ +
+ +

+ Exercise Answer +

+
+ +

  1. No, G cannot be viewed as a function of D. At D = 100, there are two recorded values (G = 1.5 before refueling and G = 10.0 after), and similarly at D = 300. A function must assign exactly one output to each input.

  2. The fuel economy appears to be constant. Between D = 0 and D = 100, the car used 4.5 - 1.5 = 3.0 gallons for 100 miles, giving 100/3 \approx 33.3 mpg. The same rate holds for subsequent segments.

  3. At D = 100, the driver added 10.0 - 1.5 = 8.5 gallons. At D = 300, the driver added 11.0 - 4.0 = 7.0 gallons. So the driver put the most gas in the tank at D = 100 miles.

+
+
+ + + +
diff --git a/source/exercises/ez-changing-inverse.xml b/source/exercises/ez-changing-inverse.xml index 2c4a283e..57ca9421 100755 --- a/source/exercises/ez-changing-inverse.xml +++ b/source/exercises/ez-changing-inverse.xml @@ -1,202 +1,202 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

- Consider the functions p and q whose graphs are given by Figure -

- -
- Plots of the graphs of p and q. -

Plots of the graphs of p and q.

-
-
- -

-

    -
  1. -

    - Compute each of the following values exactly, or explain why they are not defined: p^{-1}(2.5), p^{-1}(-2), p^{-1}(0), and q^{-1}(2). -

    -
  2. -
  3. -

    - From your work in (a), you know that the point (2.5, -3.5) lies on the graph of p^{-1}. In addition to the other two points you know from (a), find three additional points that lie on the graph of p^{-1}. -

    -
  4. -
  5. -

    - On Figure, plot the 6 points you have determined in (a) and (b) that lie on the graph of y = p^{-1}(x). Then, sketch the complete graph of y = p^{-1}(x). How are the graphs of p and p^{-1} related to each other? -

    -
  6. -
-

-
- -

- Exercise Answer -

-
- -

  1. From the graph: p^{-1}(2.5) is the input to p that gives output 2.5, found by reading p(x) = 2.5 from the graph. The problem states p^{-1}(2.5) = -3.5. p^{-1}(-2) and p^{-1}(0) are read similarly; q^{-1}(2) requires reading q(x) = 2.

  2. Since the graph of p^{-1} is the reflection of the graph of p across the line y = x, any point (a, b) on the graph of p gives a point (b, a) on the graph of p^{-1}. Use this to find additional points.

  3. Plot the six known points and sketch the complete graph of y = p^{-1}(x). The graphs of p and p^{-1} are reflections of each other across the line y = x.

- - -
-
- - - -

- Consider an inverted conical tank that is being filled with water. The tank's radius is 2 m and its depth is 4 m. Suppose the tank is initially empty and is being filled in such a way that the height of the water is always rising at a rate of 0.25 meters per minute. -

- - -
- The conical tank. -

The conical tank.

-
-
-
- Axes to plot V = g(t). -

Axes to plot V = g(t).

-
-
-
- -

-

    -
  1. -

    - Explain why the height, h, of the water can be viewed as a function of t according to the formula h= f(t) = 0.25t. -

    -
  2. -
  3. -

    - At what time is the water in the tank 2.5 m deep? At what time is the tank completely full? -

    -
  4. -
  5. -

    - Suppose we think of the volume, V, of water in the tank as a function of t and name the function V = g(t). Do you expect that the function g has an inverse function? Why or why not? -

    -
  6. -
  7. -

    - Recall that the volume of a cone of radius r and height h is V = \frac{\pi}{3} r^2 h. Due to the shape of the tank, similar triangles tell us that r and h satisfy the proportion r = \frac{1}{2}h, and thus - - V = \frac{\pi}{3} \left( \frac{1}{2}h \right)^2 h = \frac{\pi}{12}h^3 - . -

    - -

    - Use the fact that h = f(t) = 0.25t along with Equation to find a formula for V = g(t). Sketch a plot of V = g(t) on the blank axes provided in Figure. Write at least one sentence to explain why V = g(t) has the shape that it does. -

    - - - -
  8. -
  9. -

    - Take the formula for V = g(t) that you determined in (d) and solve for t to determine a formula for t = g^{-1}(V). What is the meaning of the formula you find? -

    -
  10. -
  11. -

    - Find the exact time that there is \frac{8}{3}\pi cubic meters of volume in the tank. -

    -
  12. -
-

-
- -

- Exercise Answer -

-
- -

  1. Since the water level rises at a constant rate of 0.25 m/min starting from 0, the height at time t is h = 0.25t, so f(t) = 0.25t.

  2. At h = 2.5: 0.25t = 2.5 \Rightarrow t = 10 min. Full (h=4): t = 4/0.25 = 16 min.

  3. Yes: as time increases, the volume strictly increases (more water is added continuously), so the function g is one-to-one and has an inverse.

  4. Substituting h = 0.25t: V = \frac{\pi}{12}(0.25t)^3 = \frac{\pi}{12} \cdot \frac{t^3}{64} = \frac{\pi t^3}{768}. The graph is an increasing cubic curve (concave up), since the cone widens as it fills.

  5. Solving V = \frac{\pi t^3}{768} for t: t^3 = \frac{768V}{\pi}, so t = g^{-1}(V) = \left(\frac{768V}{\pi}\right)^{1/3}. This gives the time (in minutes) for the volume in the tank to reach V cubic meters.

  6. At V = \frac{8\pi}{3}: t = \left(\frac{768 \cdot \frac{8\pi}{3}}{\pi}\right)^{1/3} = \left(2048\right)^{1/3} = 8\cdot 2^{2/3} = 8\sqrt[3]{4} minutes.

- - -
-
- - - -

- Recall that in Activity, we showed that Celsius temperature is a function of the number of chirps per minute from a snowy tree cricket according to the formula - - C = H(N) = \frac{40}{9} + \frac{5}{36}N - . -

- -

-

    -
  1. -

    - What familiar type of function is H? Why must H have an inverse function? -

    -
  2. -
  3. -

    - Determine an algebraic formula for N = H^{-1}(C). Clearly show your work and thinking. -

    -
  4. -
  5. -

    - What is the meaning of the statement 72 = H^{-1}\left(\frac{130}{9}\right)? -

    -
  6. -
  7. -

    - Determine the average rate of change of H on the interval [40,50]. Write a complete sentence to explain the meaning of the value you find, including units on the value. Explain clearly how this number describes how the temperature is changing. -

    -
  8. -
  9. -

    - Determine the average rate of change of H^{-1} on the interval [15,20]. Write a complete sentence to explain the meaning of the value you find, including units on the value. Explain clearly how this number describes how the number of chirps per minute is changing. -

    -
  10. -
-

-
-
- -
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+ Consider the functions p and q whose graphs are given by Figure +

+ +
+ Plots of the graphs of p and q. +

Plots of the graphs of p and q.

+
+
+ +

+

    +
  1. +

    + Compute each of the following values exactly, or explain why they are not defined: p^{-1}(2.5), p^{-1}(-2), p^{-1}(0), and q^{-1}(2). +

    +
  2. +
  3. +

    + From your work in (a), you know that the point (2.5, -3.5) lies on the graph of p^{-1}. In addition to the other two points you know from (a), find three additional points that lie on the graph of p^{-1}. +

    +
  4. +
  5. +

    + On Figure, plot the 6 points you have determined in (a) and (b) that lie on the graph of y = p^{-1}(x). Then, sketch the complete graph of y = p^{-1}(x). How are the graphs of p and p^{-1} related to each other? +

    +
  6. +
+

+
+ +

+ Exercise Answer +

+
+ +

  1. From the graph: p^{-1}(2.5) is the input to p that gives output 2.5, found by reading p(x) = 2.5 from the graph. The problem states p^{-1}(2.5) = -3.5. p^{-1}(-2) and p^{-1}(0) are read similarly; q^{-1}(2) requires reading q(x) = 2.

  2. Since the graph of p^{-1} is the reflection of the graph of p across the line y = x, any point (a, b) on the graph of p gives a point (b, a) on the graph of p^{-1}. Use this to find additional points.

  3. Plot the six known points and sketch the complete graph of y = p^{-1}(x). The graphs of p and p^{-1} are reflections of each other across the line y = x.

+ + +
+
+ + + +

+ Consider an inverted conical tank that is being filled with water. The tank's radius is 2 m and its depth is 4 m. Suppose the tank is initially empty and is being filled in such a way that the height of the water is always rising at a rate of 0.25 meters per minute. +

+ + +
+ The conical tank. +

The conical tank.

+
+
+
+ Axes to plot V = g(t). +

Axes to plot V = g(t).

+
+
+
+ +

+

    +
  1. +

    + Explain why the height, h, of the water can be viewed as a function of t according to the formula h= f(t) = 0.25t. +

    +
  2. +
  3. +

    + At what time is the water in the tank 2.5 m deep? At what time is the tank completely full? +

    +
  4. +
  5. +

    + Suppose we think of the volume, V, of water in the tank as a function of t and name the function V = g(t). Do you expect that the function g has an inverse function? Why or why not? +

    +
  6. +
  7. +

    + Recall that the volume of a cone of radius r and height h is V = \frac{\pi}{3} r^2 h. Due to the shape of the tank, similar triangles tell us that r and h satisfy the proportion r = \frac{1}{2}h, and thus + + V = \frac{\pi}{3} \left( \frac{1}{2}h \right)^2 h = \frac{\pi}{12}h^3 + . +

    + +

    + Use the fact that h = f(t) = 0.25t along with Equation to find a formula for V = g(t). Sketch a plot of V = g(t) on the blank axes provided in Figure. Write at least one sentence to explain why V = g(t) has the shape that it does. +

    + + + +
  8. +
  9. +

    + Take the formula for V = g(t) that you determined in (d) and solve for t to determine a formula for t = g^{-1}(V). What is the meaning of the formula you find? +

    +
  10. +
  11. +

    + Find the exact time that there is \frac{8}{3}\pi cubic meters of volume in the tank. +

    +
  12. +
+

+
+ +

+ Exercise Answer +

+
+ +

  1. Since the water level rises at a constant rate of 0.25 m/min starting from 0, the height at time t is h = 0.25t, so f(t) = 0.25t.

  2. At h = 2.5: 0.25t = 2.5 \Rightarrow t = 10 min. Full (h=4): t = 4/0.25 = 16 min.

  3. Yes: as time increases, the volume strictly increases (more water is added continuously), so the function g is one-to-one and has an inverse.

  4. Substituting h = 0.25t: V = \frac{\pi}{12}(0.25t)^3 = \frac{\pi}{12} \cdot \frac{t^3}{64} = \frac{\pi t^3}{768}. The graph is an increasing cubic curve (concave up), since the cone widens as it fills.

  5. Solving V = \frac{\pi t^3}{768} for t: t^3 = \frac{768V}{\pi}, so t = g^{-1}(V) = \left(\frac{768V}{\pi}\right)^{1/3}. This gives the time (in minutes) for the volume in the tank to reach V cubic meters.

  6. At V = \frac{8\pi}{3}: t = \left(\frac{768 \cdot \frac{8\pi}{3}}{\pi}\right)^{1/3} = \left(2048\right)^{1/3} = 8\cdot 2^{2/3} = 8\sqrt[3]{4} minutes.

+ + +
+
+ + + +

+ Recall that in Activity, we showed that Celsius temperature is a function of the number of chirps per minute from a snowy tree cricket according to the formula + + C = H(N) = \frac{40}{9} + \frac{5}{36}N + . +

+ +

+

    +
  1. +

    + What familiar type of function is H? Why must H have an inverse function? +

    +
  2. +
  3. +

    + Determine an algebraic formula for N = H^{-1}(C). Clearly show your work and thinking. +

    +
  4. +
  5. +

    + What is the meaning of the statement 72 = H^{-1}\left(\frac{130}{9}\right)? +

    +
  6. +
  7. +

    + Determine the average rate of change of H on the interval [40,50]. Write a complete sentence to explain the meaning of the value you find, including units on the value. Explain clearly how this number describes how the temperature is changing. +

    +
  8. +
  9. +

    + Determine the average rate of change of H^{-1} on the interval [15,20]. Write a complete sentence to explain the meaning of the value you find, including units on the value. Explain clearly how this number describes how the number of chirps per minute is changing. +

    +
  10. +
+

+
+
+ +
diff --git a/source/exercises/ez-changing-linear.xml b/source/exercises/ez-changing-linear.xml index b858a7b7..c8a4f287 100755 --- a/source/exercises/ez-changing-linear.xml +++ b/source/exercises/ez-changing-linear.xml @@ -1,222 +1,222 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

- An apartment manager keeps careful record of how the rent charged per unit corresponds to the number of occupied units in a large complex. The collected data is shown in Table.This problem is a slightly modified version of one found in Carroll College's Chapter Zero resource for Active Calculus. -

- - Data relating occupied apartments to monthly rent. - - - Monthly Rent - $650 - $700 - $750 - $800 - $850 - $900 - - - Occupied Apartments - 203 - 196 - 189 - 182 - 175 - 168 - - -
- -

-

    -
  1. -

    - Why is it reasonable to say that the number of occupied apartments is a linear function of rent? -

    -
  2. - -
  3. -

    - Let A be the number of occupied apartments and R the monthly rent charged (in dollars). If we let A = f(R), what is the slope of the linear function f? What is the meaning of the slope in the context of this question? -

    -
  4. - -
  5. -

    - Determine a formula for A = f(R). What do you think is a reasonable domain for the function? Why? -

    -
  6. - -
  7. -

    - If the rent were to be increased to $1000, how many occupied apartments should the - apartment manager expect? How much total revenue would the manager collect in a given month when rent is set at $1000? -

    -
  8. - -
  9. -

    - Why do you think the apartment manager is interested in the data that has been collected? -

    -
  10. -
-

-
- -

- Exercise Answer -

-
- -

  1. Each \$50 increase in rent results in a decrease of exactly 7 occupied apartments (constant rate of change), which means the relationship is linear.

  2. Slope = \frac{196-203}{700-650} = \frac{-7}{50} = -0.14 apartments per dollar. For each dollar increase in rent, the expected number of occupied apartments decreases by 0.14.

  3. A = f(R) = 203 - 0.14(R - 650) = 294 - 0.14R. A reasonable domain is [650, 2100] (rents below \$650 are below current data, and above \$2100 all apartments would be empty).

  4. At R = 1000: A = 294 - 0.14(1000) = 154 apartments. Monthly revenue = 1000 \times 154 = \$154{,}000.

  5. The manager wants to find the rent that maximizes total revenue, R \cdot f(R) = 294R - 0.14R^2. This is maximized at R = 294/(2 \times 0.14) = \$1050, giving 147 apartments and \$154{,}350 monthly revenue.

-
-
- - - -

- Alicia and Dexter are each walking on a straight path. For a particular 10-second window of time, each has their velocity (in feet per second) measured and recorded as a function of time. Their respective velocity functions are plotted in Figure. -

- -
- The velocity functions A = f(t) and D = g(t) for Alicia and Damon, respectively. -

The velocity functions A = f(t) and D = g(t) for Alicia and Damon, respectively.

-
-
- -

-

    -
  1. -

    - Determine formulas for both A = f(t) and D = g(t). -

    -
  2. -
  3. -

    - What is the value and meaning of the slope of A? Write a complete sentence to explain and be sure to include units in your response. -

    -
  4. -
  5. -

    - What is the value and meaning of the average rate of change of D on the interval [4,8]? Write a complete sentence to explain and be sure to include units in your response. -

    -
  6. -
  7. -

    - Is there ever a time when Alicia and Damon are walking at the same velocity? If yes, determine both the time and velocity; if not, explain why. -

    -
  8. -
  9. -

    - Is is possible to determine if there is ever a time when Alicia and Damon are located at the same place on the path? If yes, determine the time and location; if not, explain why not enough information is provided. -

    -
  10. -
-

-
- -

- Exercise Answer -

-
- -

  1. Read the formulas for A = f(t) and D = g(t) from the graph by identifying slope and intercept for each linear piece.

  2. The slope of A = f(t) is its constant rate of change (acceleration in ft/s²). Write a sentence interpreting this value: e.g., "Alicia's velocity increases/decreases at a rate of [slope] feet per second per second."

  3. AV_{[4,8]} for D is computed from the graph values g(4) and g(8); its meaning is the average rate of change of Damon's velocity on that interval.

  4. Set f(t) = g(t) and solve for t. If a solution exists in [0,10], they walk at the same velocity at that time.

  5. The velocity functions do not give us location information (we would need initial positions), so it is generally not possible to determine when/if they are at the same location.

-
-
- - - -

- An inverted conical tank with depth 4 feet and radius 2 feet is completely full of water. The tank is being drained by a pump in such a way that the amount of water in the tank is decreasing at a constant rate of 1.5 cubic feet per minute. Let V = f(t) denote the volume of water in the tank at time t and h = g(t) the depth of the water in the tank at time t, where t is measured in minutes. -

- -
- The inverted conical tank. -

The inverted conical tank.

-
-
- -

-

    -
  1. -

    - How much water is in the tank at t = 0 when the tank is completely full? -

    -
  2. -
  3. -

    - Explain why volume, V, when viewed as a function of time, t, is a linear function. -

    -
  4. -
  5. -

    - Determine a formula for V = f(t). -

    -
  6. -
  7. -

    - At what exact time will the tank be empty? -

    -
  8. -
  9. -

    - What is a reasonable domain to use for the model f? What is its corresponding range? -

    -
  10. -
-

- -
- -

- Exercise Answer -

-
- -

  1. The full cone has volume V(0) = \frac{1}{3}\pi(2)^2(4) = \frac{16\pi}{3} \approx 16.76 cu ft.

  2. The volume decreases at a constant rate of 1.5 cu ft/min (given), so the rate of change of V with respect to t is constant: V is linear in t.

  3. V = f(t) = \frac{16\pi}{3} - 1.5t.

  4. Setting f(t) = 0: t = \frac{16\pi}{3 \times 1.5} = \frac{16\pi}{4.5} = \frac{32\pi}{9} \approx 11.17 minutes.

  5. Domain: \left[0, \frac{32\pi}{9}\right]. Range: \left[0, \frac{16\pi}{3}\right].

-
-
- -
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+ An apartment manager keeps careful record of how the rent charged per unit corresponds to the number of occupied units in a large complex. The collected data is shown in Table.This problem is a slightly modified version of one found in Carroll College's Chapter Zero resource for Active Calculus. +

+ + Data relating occupied apartments to monthly rent. + + + Monthly Rent + $650 + $700 + $750 + $800 + $850 + $900 + + + Occupied Apartments + 203 + 196 + 189 + 182 + 175 + 168 + + +
+ +

+

    +
  1. +

    + Why is it reasonable to say that the number of occupied apartments is a linear function of rent? +

    +
  2. + +
  3. +

    + Let A be the number of occupied apartments and R the monthly rent charged (in dollars). If we let A = f(R), what is the slope of the linear function f? What is the meaning of the slope in the context of this question? +

    +
  4. + +
  5. +

    + Determine a formula for A = f(R). What do you think is a reasonable domain for the function? Why? +

    +
  6. + +
  7. +

    + If the rent were to be increased to $1000, how many occupied apartments should the + apartment manager expect? How much total revenue would the manager collect in a given month when rent is set at $1000? +

    +
  8. + +
  9. +

    + Why do you think the apartment manager is interested in the data that has been collected? +

    +
  10. +
+

+
+ +

+ Exercise Answer +

+
+ +

  1. Each \$50 increase in rent results in a decrease of exactly 7 occupied apartments (constant rate of change), which means the relationship is linear.

  2. Slope = \frac{196-203}{700-650} = \frac{-7}{50} = -0.14 apartments per dollar. For each dollar increase in rent, the expected number of occupied apartments decreases by 0.14.

  3. A = f(R) = 203 - 0.14(R - 650) = 294 - 0.14R. A reasonable domain is [650, 2100] (rents below \$650 are below current data, and above \$2100 all apartments would be empty).

  4. At R = 1000: A = 294 - 0.14(1000) = 154 apartments. Monthly revenue = 1000 \times 154 = \$154{,}000.

  5. The manager wants to find the rent that maximizes total revenue, R \cdot f(R) = 294R - 0.14R^2. This is maximized at R = 294/(2 \times 0.14) = \$1050, giving 147 apartments and \$154{,}350 monthly revenue.

+
+
+ + + +

+ Alicia and Dexter are each walking on a straight path. For a particular 10-second window of time, each has their velocity (in feet per second) measured and recorded as a function of time. Their respective velocity functions are plotted in Figure. +

+ +
+ The velocity functions A = f(t) and D = g(t) for Alicia and Damon, respectively. +

The velocity functions A = f(t) and D = g(t) for Alicia and Damon, respectively.

+
+
+ +

+

    +
  1. +

    + Determine formulas for both A = f(t) and D = g(t). +

    +
  2. +
  3. +

    + What is the value and meaning of the slope of A? Write a complete sentence to explain and be sure to include units in your response. +

    +
  4. +
  5. +

    + What is the value and meaning of the average rate of change of D on the interval [4,8]? Write a complete sentence to explain and be sure to include units in your response. +

    +
  6. +
  7. +

    + Is there ever a time when Alicia and Damon are walking at the same velocity? If yes, determine both the time and velocity; if not, explain why. +

    +
  8. +
  9. +

    + Is is possible to determine if there is ever a time when Alicia and Damon are located at the same place on the path? If yes, determine the time and location; if not, explain why not enough information is provided. +

    +
  10. +
+

+
+ +

+ Exercise Answer +

+
+ +

  1. Read the formulas for A = f(t) and D = g(t) from the graph by identifying slope and intercept for each linear piece.

  2. The slope of A = f(t) is its constant rate of change (acceleration in ft/s²). Write a sentence interpreting this value: e.g., "Alicia's velocity increases/decreases at a rate of [slope] feet per second per second."

  3. AV_{[4,8]} for D is computed from the graph values g(4) and g(8); its meaning is the average rate of change of Damon's velocity on that interval.

  4. Set f(t) = g(t) and solve for t. If a solution exists in [0,10], they walk at the same velocity at that time.

  5. The velocity functions do not give us location information (we would need initial positions), so it is generally not possible to determine when/if they are at the same location.

+
+
+ + + +

+ An inverted conical tank with depth 4 feet and radius 2 feet is completely full of water. The tank is being drained by a pump in such a way that the amount of water in the tank is decreasing at a constant rate of 1.5 cubic feet per minute. Let V = f(t) denote the volume of water in the tank at time t and h = g(t) the depth of the water in the tank at time t, where t is measured in minutes. +

+ +
+ The inverted conical tank. +

The inverted conical tank.

+
+
+ +

+

    +
  1. +

    + How much water is in the tank at t = 0 when the tank is completely full? +

    +
  2. +
  3. +

    + Explain why volume, V, when viewed as a function of time, t, is a linear function. +

    +
  4. +
  5. +

    + Determine a formula for V = f(t). +

    +
  6. +
  7. +

    + At what exact time will the tank be empty? +

    +
  8. +
  9. +

    + What is a reasonable domain to use for the model f? What is its corresponding range? +

    +
  10. +
+

+ +
+ +

+ Exercise Answer +

+
+ +

  1. The full cone has volume V(0) = \frac{1}{3}\pi(2)^2(4) = \frac{16\pi}{3} \approx 16.76 cu ft.

  2. The volume decreases at a constant rate of 1.5 cu ft/min (given), so the rate of change of V with respect to t is constant: V is linear in t.

  3. V = f(t) = \frac{16\pi}{3} - 1.5t.

  4. Setting f(t) = 0: t = \frac{16\pi}{3 \times 1.5} = \frac{16\pi}{4.5} = \frac{32\pi}{9} \approx 11.17 minutes.

  5. Domain: \left[0, \frac{32\pi}{9}\right]. Range: \left[0, \frac{16\pi}{3}\right].

+
+
+ +
diff --git a/source/exercises/ez-changing-quadratic.xml b/source/exercises/ez-changing-quadratic.xml index dbf3744b..7ee31f7c 100755 --- a/source/exercises/ez-changing-quadratic.xml +++ b/source/exercises/ez-changing-quadratic.xml @@ -1,244 +1,244 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

- Two quadratic functions, f and g, are determined by their respective graphs in Figure. -

- -
- Two quadratic functions, f and g. -

Two quadratic functions, f and g.

-
-
- -

-

    -
  1. -

    - How does the information provided enable you to find a formula for f? Explain, and determine the formula. -

    -
  2. -
  3. -

    - How does the information provided enable you to find a formula for g? Explain, and determine the formula. -

    -
  4. -
  5. -

    - Consider an additional quadratic function h given by h(x) = 2x^2 - 8x + 6. Does the graph of h intersect the graph of f? If yes, determine the exact points of intersection, with justification. If not, explain why. -

    -
  6. -
  7. -

    - Does the graph of h intersect the graph of g? If yes, determine the exact points of intersection, with justification. If not, explain why. -

    -
  8. -
-

-
- -

- Exercise Answer -

-
- -

  1. For f: read the vertex (h,k) and one additional point from the graph. Write f(x) = a(x-h)^2 + k and solve for a using the additional point.

  2. For g: similarly read the vertex and one additional point and determine the formula g(x) = a(x-h)^2 + k.

  3. Set h(x) = f(x): 2x^2 - 8x + 6 = f(x). Solve the resulting equation (quadratic). If the discriminant is non-negative, there are intersection points; otherwise the graphs do not intersect.

  4. Set h(x) = g(x) and solve similarly. The discriminant determines whether intersection points exist.

- - -
-
- - - -

- Consider the quadratic function f given by f(x) = \frac{1}{2}(x-2)^2 + 1. -

- -

-

    -
  1. -

    - Determine the exact location of the vertex of f. -

    -
  2. -
  3. -

    - Does f have 0, 1, or 2 x-intercepts? Explain, and determine the location(s) of any x-intercept(s) that exist. -

    -
  4. -
  5. -

    - Complete the following tables of function values and average rates of change of f at the stated inputs and intervals. -

    - - - - Function values for <m>f</m> at select inputs. - - - x - f(x) - - - 0 - - - - 1 - - - - 2 - - - - 3 - - - - 4 - - - - 5 - - - -
    - - Average rates of change for <m>f</m> on select intervals. - - - [a,b] - AV_{[a,b]} - - - [0,1] - - - - [1,2] - - - - [2,3] - - - - [3,4] - - - - [4,5] - - - -
    -
    -
  6. -
  7. -

    - What pattern(s) do you observe in Table and ? -

    -
  8. -
-

-
- -

- Exercise Answer -

-
- -

  1. Vertex at (2, 1) (from vertex form).

  2. The minimum value is f(2) = 1 \gt 0, so f has no x-intercepts.

  3. Function values: f(0) = 3, f(1) = \frac{3}{2}, f(2) = 1, f(3) = \frac{3}{2}, f(4) = 3, f(5) = \frac{11}{2}. Average rates of change: AV_{[0,1]} = -\frac{3}{2}, AV_{[1,2]} = -\frac{1}{2}, AV_{[2,3]} = \frac{1}{2}, AV_{[3,4]} = \frac{3}{2}, AV_{[4,5]} = \frac{5}{2}.

  4. The function values are symmetric about x = 2 (the vertex). The average rates of change form an arithmetic sequence increasing by 1 at each step, a characteristic pattern of quadratic functions.

-
-
- - - -

- A water balloon is tossed vertically from a window on the fourth floor of a dormitory from an initial height of 56.3 feet. A person two floors above observes the balloon reach its highest point 1.2 seconds after being launched. -

- -

-

    -
  1. -

    - What is the balloon's exact height at t = 2.4? Why? -

    -
  2. -
  3. -

    - What is the exact maximum height the balloon reaches at t = 1.2? -

    -
  4. -
  5. -

    - What exact time did the balloon land? -

    -
  6. -
  7. -

    - At what initial velocity was the balloon launched? -

    -
  8. -
-

-
- -

- Exercise Answer -

-
- -

  1. The vertex occurs at t = 1.2. By symmetry of the parabola, t = 2.4 is symmetric to t = 0 about the vertex: s(2.4) = s(0) = 56.3 feet.

  2. At the vertex, the initial velocity is v_0 = 32 \times 1.2 = 38.4 ft/s (since vertex is at t = v_0/32). Maximum height: s(1.2) = -16(1.44) + 38.4(1.2) + 56.3 = -23.04 + 46.08 + 56.3 = 79.34 feet.

  3. Set s(t) = 0: -16t^2 + 38.4t + 56.3 = 0. Using the quadratic formula: t = \frac{38.4 + \sqrt{38.4^2 + 4(16)(56.3)}}{32} = \frac{38.4 + \sqrt{5077.76}}{32} \approx \frac{38.4 + 71.26}{32} \approx 3.43 seconds.

  4. The initial velocity is v_0 = 38.4 = \frac{192}{5} feet per second.

-
-
- -
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+ Two quadratic functions, f and g, are determined by their respective graphs in Figure. +

+ +
+ Two quadratic functions, f and g. +

Two quadratic functions, f and g.

+
+
+ +

+

    +
  1. +

    + How does the information provided enable you to find a formula for f? Explain, and determine the formula. +

    +
  2. +
  3. +

    + How does the information provided enable you to find a formula for g? Explain, and determine the formula. +

    +
  4. +
  5. +

    + Consider an additional quadratic function h given by h(x) = 2x^2 - 8x + 6. Does the graph of h intersect the graph of f? If yes, determine the exact points of intersection, with justification. If not, explain why. +

    +
  6. +
  7. +

    + Does the graph of h intersect the graph of g? If yes, determine the exact points of intersection, with justification. If not, explain why. +

    +
  8. +
+

+
+ +

+ Exercise Answer +

+
+ +

  1. For f: read the vertex (h,k) and one additional point from the graph. Write f(x) = a(x-h)^2 + k and solve for a using the additional point.

  2. For g: similarly read the vertex and one additional point and determine the formula g(x) = a(x-h)^2 + k.

  3. Set h(x) = f(x): 2x^2 - 8x + 6 = f(x). Solve the resulting equation (quadratic). If the discriminant is non-negative, there are intersection points; otherwise the graphs do not intersect.

  4. Set h(x) = g(x) and solve similarly. The discriminant determines whether intersection points exist.

+ + +
+
+ + + +

+ Consider the quadratic function f given by f(x) = \frac{1}{2}(x-2)^2 + 1. +

+ +

+

    +
  1. +

    + Determine the exact location of the vertex of f. +

    +
  2. +
  3. +

    + Does f have 0, 1, or 2 x-intercepts? Explain, and determine the location(s) of any x-intercept(s) that exist. +

    +
  4. +
  5. +

    + Complete the following tables of function values and average rates of change of f at the stated inputs and intervals. +

    + + + + Function values for <m>f</m> at select inputs. + + + x + f(x) + + + 0 + + + + 1 + + + + 2 + + + + 3 + + + + 4 + + + + 5 + + + +
    + + Average rates of change for <m>f</m> on select intervals. + + + [a,b] + AV_{[a,b]} + + + [0,1] + + + + [1,2] + + + + [2,3] + + + + [3,4] + + + + [4,5] + + + +
    +
    +
  6. +
  7. +

    + What pattern(s) do you observe in Table and ? +

    +
  8. +
+

+
+ +

+ Exercise Answer +

+
+ +

  1. Vertex at (2, 1) (from vertex form).

  2. The minimum value is f(2) = 1 \gt 0, so f has no x-intercepts.

  3. Function values: f(0) = 3, f(1) = \frac{3}{2}, f(2) = 1, f(3) = \frac{3}{2}, f(4) = 3, f(5) = \frac{11}{2}. Average rates of change: AV_{[0,1]} = -\frac{3}{2}, AV_{[1,2]} = -\frac{1}{2}, AV_{[2,3]} = \frac{1}{2}, AV_{[3,4]} = \frac{3}{2}, AV_{[4,5]} = \frac{5}{2}.

  4. The function values are symmetric about x = 2 (the vertex). The average rates of change form an arithmetic sequence increasing by 1 at each step, a characteristic pattern of quadratic functions.

+
+
+ + + +

+ A water balloon is tossed vertically from a window on the fourth floor of a dormitory from an initial height of 56.3 feet. A person two floors above observes the balloon reach its highest point 1.2 seconds after being launched. +

+ +

+

    +
  1. +

    + What is the balloon's exact height at t = 2.4? Why? +

    +
  2. +
  3. +

    + What is the exact maximum height the balloon reaches at t = 1.2? +

    +
  4. +
  5. +

    + What exact time did the balloon land? +

    +
  6. +
  7. +

    + At what initial velocity was the balloon launched? +

    +
  8. +
+

+
+ +

+ Exercise Answer +

+
+ +

  1. The vertex occurs at t = 1.2. By symmetry of the parabola, t = 2.4 is symmetric to t = 0 about the vertex: s(2.4) = s(0) = 56.3 feet.

  2. At the vertex, the initial velocity is v_0 = 32 \times 1.2 = 38.4 ft/s (since vertex is at t = v_0/32). Maximum height: s(1.2) = -16(1.44) + 38.4(1.2) + 56.3 = -23.04 + 46.08 + 56.3 = 79.34 feet.

  3. Set s(t) = 0: -16t^2 + 38.4t + 56.3 = 0. Using the quadratic formula: t = \frac{38.4 + \sqrt{38.4^2 + 4(16)(56.3)}}{32} = \frac{38.4 + \sqrt{5077.76}}{32} \approx \frac{38.4 + 71.26}{32} \approx 3.43 seconds.

  4. The initial velocity is v_0 = 38.4 = \frac{192}{5} feet per second.

+
+
+ +
diff --git a/source/exercises/ez-changing-tandem.xml b/source/exercises/ez-changing-tandem.xml index 764a8190..bfc5e459 100755 --- a/source/exercises/ez-changing-tandem.xml +++ b/source/exercises/ez-changing-tandem.xml @@ -1,190 +1,190 @@ - - - - - - - - - - - - - - - - - - - - - - - - - -

- Suppose we have an unusual tank whose base is a perfect sphere with radius 3 feet, and then atop the spherical base is a cylindrical chimney that is a circular cylinder of radius 1 foot and height 2 feet, as shown in Figure. The tank is initially empty, but then a spigot is turned on that pumps water into the tank at a constant rate of 1.25 cubic feet per minute. -

- -
- A spherical tank with a cylindrical chimney. -

A spherical tank with a cylindrical chimney.

-
-
- -

- Let V denote the total volume of water (in cubic feet) in the tank at any time t (in minutes), and h the depth of the water (in feet) at time t. -

- -

-

    -
  1. -

    - It is possible to use calculus to show that the total volume this tank can hold is V_{\text{full}} = \pi(20 + \frac{38}{3}\sqrt{2}) \approx 119.11 cubic feet. In addition, the actual height of the tank (from the bottom of the spherical base to the top of the chimney) is h_{\text{full}} = \sqrt{8} + 5 \approx 7.83 feet. How long does it take the tank to fill? Why? -

    -
  2. -
  3. -

    - On the blank axes provided below, sketch (by hand) possible graphs of how V and t change in tandem and how h and t change in tandem. -

    - - -

    ADD ALT TEXT TO THIS IMAGE

    -

    ADD ALT TEXT TO THIS IMAGE

    -
    - -

    - For each graph, label any ordered pairs on the graph that you know for certain, and write at least one sentence that explains why your graphs have the shape they do. -

    -
  4. -
  5. -

    - How would your graph(s) change (if at all) if the chimney was shaped like an inverted cone instead of a cylinder? Explain and discuss. -

    -
  6. -
-

- -
- -

- Exercise Answer -

-
- -

  1. At a fill rate of 1.25 cu ft/min, the time to fill is \frac{V_{\text{full}}}{1.25} = \frac{\pi(20 + \frac{38}{3}\sqrt{2})}{1.25} \approx \frac{119.11}{1.25} \approx 95.3 minutes.

  2. The graph of V vs t is a straight line with slope 1.25 from (0,0) to (95.3, 119.11). The graph of h vs t is an S-shaped increasing curve: initially h rises quickly as the narrow bottom of the sphere fills, then more slowly as the widest part of the sphere fills, then speeds up slightly as the narrow chimney fills. Key points include (0,0), the time when h = \sqrt{8} + 3 \approx 5.83 ft (sphere full, chimney starts), and the endpoint (95.3, \sqrt{8}+5).

  3. If the chimney were an inverted cone, its cross-section would shrink as it fills, so the height would increase more quickly in the chimney. The V-vs-t graph would not change (still linear), but the h-vs-t graph would rise more steeply once the water enters the cone-shaped chimney.

-
-
- - - -

- Suppose we have a tank that is a perfect sphere with radius 6 feet. The tank is initially empty, but then a spigot is turned on that is pumping water into the tank in a very special way: the faucet is regulated so that the depth of water in the tank is increasing at a constant rate of 0.4 feet per minute. -

- -

- Let V denote the total volume of water (in cubic feet) in the tank at any time t (in minutes), and h the depth of the water (in feet) at given time t. -

- -

-

    -
  1. -

    - How long does it take the tank to fill? What will the values of V and h be at the moment the tank is full? Why? -

    -
  2. -
  3. -

    - On the blank axes provided below, sketch (by hand) possible graphs of how V and t change in tandem and how h and t change in tandem. -

    - - -

    ADD ALT TEXT TO THIS IMAGE

    -

    ADD ALT TEXT TO THIS IMAGE

    -
    - -

    - For each graph, label any ordered pairs on the graph that you know for certain, and write at least one sentence that explains why your graphs have the shape they do. -

    -
  4. -
  5. -

    - How do your responses change if the tank stays the same but instead the tank is initially full and the tank drains in such a way that the height of the water is always decreasing at a constant rate of 0.25 feet per minute? -

    -
  6. -
-

- -
- -

- Exercise Answer -

-
- -

  1. At a constant rate of 0.4 ft/min, the depth reaches 12 ft (the diameter) in 12/0.4 = 30 minutes. At that time, V = \frac{4}{3}\pi(6)^3 = 288\pi \approx 904.8 cu ft.

  2. Since the height rises linearly, h = 0.4t is a straight line. The volume V as a function of t starts slowly (the bottom of the sphere is narrow), increases rapidly through the middle (widest part of sphere), and slows again as the top narrows. The V-vs-t graph is S-shaped (concave up then concave down). Key points: (0,0) and (30, 288\pi).

  3. For the draining scenario: h starts at 12 ft and decreases linearly at 0.25 ft/min to 0 in 48 minutes. The h-vs-t graph is a decreasing line. The V-vs-t graph is an S-shaped decreasing curve (symmetric to the filling case), from (0, 288\pi) to (48, 0).

-
-
- - - -

- The relationship between the position, s, of a car driving on a straight road at time t is given by the graph - pictured at left in Figure. - The car's positionYou can think of the car's position like mile-markers on a highway. Saying that s = 500 means that the car is located 500 feet from marker zero on the road. has units measured in thousands of feet while time is measured in minutes. - For instance, the point (4,6) on the graph indicates that after 4 minutes, - the car has traveled 6000 feet from its starting location. -

- -

-

    -
  1. -

    - Write several sentences that explain the how the car is being driven and how you make these conclusions from the graph. -

    -
  2. -
  3. -

    - How far did the car travel between t = 2 and t = 10? -

    -
  4. -
  5. -

    - Does the car ever travel in reverse? Why or why not? If not, how would the graph have to look to indicate such motion? -

    -
  6. -
  7. -

    - On the blank axes in Figure, plot points or sketch a curve to describe the behavior of a car that is driven in the following way: from t = 0 to t = 5 the car travels straight down the road at a constant rate of 1000 feet per minute. At t = 5, the car pulls over and parks for 2 full minutes. Then, at t = 7, the car does an abrupt U-turn and returns in the opposite direction at a constant rate of 800 feet per minute for 5 additional minutes. As part of your work, determine (and label) the car's location at several additional points in time other than t = 0, 5, 7, 12. -

    -
    - A graph of the relationship between a car's position s and time t - -

    A graph of the relationship between a car's position s and time t

    -
    -

    A graph of the relationship between a car's position s and time t

    -
    -
    -
    - -
  8. -
-

- -
- -

- Exercise Answer -

-
- -

  1. Describe the car based on the graph: on intervals where s is increasing, the car moves forward; where s is flat, the car is stopped; where s decreases, the car is in reverse. The slope (steepness) indicates speed.

  2. From the graph, s(2) and s(10) can be read. The distance traveled between t = 2 and t = 10 is |s(10) - s(2)| thousand feet.

  3. If the position graph is always non-decreasing (never moves backward), the car never goes in reverse. A graph that decreases (negative slope) over some interval would indicate reverse motion.

  4. For the described motion: t = 0: s = 0. At t = 5: s = 1000 \times 5 = 5000 ft (i.e., 5 thousand ft). From t = 5 to t = 7: car is stopped, so s = 5. At t = 7: U-turn, moving at -800 ft/min. At t = 12: s = 5000 - 800 \times 5 = 5000 - 4000 = 1000 ft (i.e., 1 thousand ft). Plot a line of slope 1 from (0,0) to (5,5), horizontal from (5,5) to (7,5), and a line of slope -0.8 from (7,5) to (12,1).

-
-
- -
+ + + + + + + + + + + + + + + + + + + + + + + + + +

+ Suppose we have an unusual tank whose base is a perfect sphere with radius 3 feet, and then atop the spherical base is a cylindrical chimney that is a circular cylinder of radius 1 foot and height 2 feet, as shown in Figure. The tank is initially empty, but then a spigot is turned on that pumps water into the tank at a constant rate of 1.25 cubic feet per minute. +

+ +
+ A spherical tank with a cylindrical chimney. +

A spherical tank with a cylindrical chimney.

+
+
+ +

+ Let V denote the total volume of water (in cubic feet) in the tank at any time t (in minutes), and h the depth of the water (in feet) at time t. +

+ +

+

    +
  1. +

    + It is possible to use calculus to show that the total volume this tank can hold is V_{\text{full}} = \pi(20 + \frac{38}{3}\sqrt{2}) \approx 119.11 cubic feet. In addition, the actual height of the tank (from the bottom of the spherical base to the top of the chimney) is h_{\text{full}} = \sqrt{8} + 5 \approx 7.83 feet. How long does it take the tank to fill? Why? +

    +
  2. +
  3. +

    + On the blank axes provided below, sketch (by hand) possible graphs of how V and t change in tandem and how h and t change in tandem. +

    + + +

    ADD ALT TEXT TO THIS IMAGE

    +

    ADD ALT TEXT TO THIS IMAGE

    +
    + +

    + For each graph, label any ordered pairs on the graph that you know for certain, and write at least one sentence that explains why your graphs have the shape they do. +

    +
  4. +
  5. +

    + How would your graph(s) change (if at all) if the chimney was shaped like an inverted cone instead of a cylinder? Explain and discuss. +

    +
  6. +
+

+ +
+ +

+ Exercise Answer +

+
+ +

  1. At a fill rate of 1.25 cu ft/min, the time to fill is \frac{V_{\text{full}}}{1.25} = \frac{\pi(20 + \frac{38}{3}\sqrt{2})}{1.25} \approx \frac{119.11}{1.25} \approx 95.3 minutes.

  2. The graph of V vs t is a straight line with slope 1.25 from (0,0) to (95.3, 119.11). The graph of h vs t is an S-shaped increasing curve: initially h rises quickly as the narrow bottom of the sphere fills, then more slowly as the widest part of the sphere fills, then speeds up slightly as the narrow chimney fills. Key points include (0,0), the time when h = \sqrt{8} + 3 \approx 5.83 ft (sphere full, chimney starts), and the endpoint (95.3, \sqrt{8}+5).

  3. If the chimney were an inverted cone, its cross-section would shrink as it fills, so the height would increase more quickly in the chimney. The V-vs-t graph would not change (still linear), but the h-vs-t graph would rise more steeply once the water enters the cone-shaped chimney.

+
+
+ + + +

+ Suppose we have a tank that is a perfect sphere with radius 6 feet. The tank is initially empty, but then a spigot is turned on that is pumping water into the tank in a very special way: the faucet is regulated so that the depth of water in the tank is increasing at a constant rate of 0.4 feet per minute. +

+ +

+ Let V denote the total volume of water (in cubic feet) in the tank at any time t (in minutes), and h the depth of the water (in feet) at given time t. +

+ +

+

    +
  1. +

    + How long does it take the tank to fill? What will the values of V and h be at the moment the tank is full? Why? +

    +
  2. +
  3. +

    + On the blank axes provided below, sketch (by hand) possible graphs of how V and t change in tandem and how h and t change in tandem. +

    + + +

    ADD ALT TEXT TO THIS IMAGE

    +

    ADD ALT TEXT TO THIS IMAGE

    +
    + +

    + For each graph, label any ordered pairs on the graph that you know for certain, and write at least one sentence that explains why your graphs have the shape they do. +

    +
  4. +
  5. +

    + How do your responses change if the tank stays the same but instead the tank is initially full and the tank drains in such a way that the height of the water is always decreasing at a constant rate of 0.25 feet per minute? +

    +
  6. +
+

+ +
+ +

+ Exercise Answer +

+
+ +

  1. At a constant rate of 0.4 ft/min, the depth reaches 12 ft (the diameter) in 12/0.4 = 30 minutes. At that time, V = \frac{4}{3}\pi(6)^3 = 288\pi \approx 904.8 cu ft.

  2. Since the height rises linearly, h = 0.4t is a straight line. The volume V as a function of t starts slowly (the bottom of the sphere is narrow), increases rapidly through the middle (widest part of sphere), and slows again as the top narrows. The V-vs-t graph is S-shaped (concave up then concave down). Key points: (0,0) and (30, 288\pi).

  3. For the draining scenario: h starts at 12 ft and decreases linearly at 0.25 ft/min to 0 in 48 minutes. The h-vs-t graph is a decreasing line. The V-vs-t graph is an S-shaped decreasing curve (symmetric to the filling case), from (0, 288\pi) to (48, 0).

+
+
+ + + +

+ The relationship between the position, s, of a car driving on a straight road at time t is given by the graph + pictured at left in Figure. + The car's positionYou can think of the car's position like mile-markers on a highway. Saying that s = 500 means that the car is located 500 feet from marker zero on the road. has units measured in thousands of feet while time is measured in minutes. + For instance, the point (4,6) on the graph indicates that after 4 minutes, + the car has traveled 6000 feet from its starting location. +

+ +

+

    +
  1. +

    + Write several sentences that explain the how the car is being driven and how you make these conclusions from the graph. +

    +
  2. +
  3. +

    + How far did the car travel between t = 2 and t = 10? +

    +
  4. +
  5. +

    + Does the car ever travel in reverse? Why or why not? If not, how would the graph have to look to indicate such motion? +

    +
  6. +
  7. +

    + On the blank axes in Figure, plot points or sketch a curve to describe the behavior of a car that is driven in the following way: from t = 0 to t = 5 the car travels straight down the road at a constant rate of 1000 feet per minute. At t = 5, the car pulls over and parks for 2 full minutes. Then, at t = 7, the car does an abrupt U-turn and returns in the opposite direction at a constant rate of 800 feet per minute for 5 additional minutes. As part of your work, determine (and label) the car's location at several additional points in time other than t = 0, 5, 7, 12. +

    +
    + A graph of the relationship between a car's position s and time t + +

    A graph of the relationship between a car's position s and time t

    +
    +

    A graph of the relationship between a car's position s and time t

    +
    +
    +
    + +
  8. +
+

+ +
+ +

+ Exercise Answer +

+
+ +

  1. Describe the car based on the graph: on intervals where s is increasing, the car moves forward; where s is flat, the car is stopped; where s decreases, the car is in reverse. The slope (steepness) indicates speed.

  2. From the graph, s(2) and s(10) can be read. The distance traveled between t = 2 and t = 10 is |s(10) - s(2)| thousand feet.

  3. If the position graph is always non-decreasing (never moves backward), the car never goes in reverse. A graph that decreases (negative slope) over some interval would indicate reverse motion.

  4. For the described motion: t = 0: s = 0. At t = 5: s = 1000 \times 5 = 5000 ft (i.e., 5 thousand ft). From t = 5 to t = 7: car is stopped, so s = 5. At t = 7: U-turn, moving at -800 ft/min. At t = 12: s = 5000 - 800 \times 5 = 5000 - 4000 = 1000 ft (i.e., 1 thousand ft). Plot a line of slope 1 from (0,0) to (5,5), horizontal from (5,5) to (7,5), and a line of slope -0.8 from (7,5) to (12,1).

+
+
+ +
diff --git a/source/exercises/ez-changing-transformations.xml b/source/exercises/ez-changing-transformations.xml index f8ad9abd..f660e1cc 100755 --- a/source/exercises/ez-changing-transformations.xml +++ b/source/exercises/ez-changing-transformations.xml @@ -1,197 +1,197 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

- Let f(x) = x^2. -

- -

-

    -
  1. -

    - Let g(x) = f(x) + 5. Determine AV_{[-3,-1]} and AV_{[2,5]} for both f and g. What do you observe? Why does this phenomenon occur? -

    -
  2. -
  3. -

    - Let h(x) = f(x-2). For f, recall that you determined AV_{[-3,-1]} and AV_{[2,5]} in (a). In addition, determine AV_{[-1,1]} and AV_{[4,7]} for h. What do you observe? Why does this phenomenon occur? -

    -
  4. -
  5. -

    - Let k(x) = 3f(x). Determine AV_{[-3,-1]} and AV_{[2,5]} for k, and compare the results to your earlier computations of AV_{[-3,-1]} and AV_{[2,5]} for f. What do you observe? Why does this phenomenon occur? -

    -
  6. -
  7. -

    - Finally, let m(x) = 3f(x-2) + 5. Without doing any computations, what do you think will be true about the relationship between AV_{[-3,-1]} for f and AV_{[-1,1]} for m? Why? After making your conjecture, execute appropriate computations to see if your intuition is correct. -

    -
  8. -
-

-
- -

- Exercise Answer -

-
- -

  1. For f(x)=x^2: AV_{[-3,-1]}=(1-9)/2=-4 and AV_{[2,5]}=(25-4)/3=7. For g(x)=x^2+5: AV_{[-3,-1]}=(6-14)/2=-4 and AV_{[2,5]}=(30-9)/3=7. The values are the same: vertical shifts do not change average rates of change.

  2. For h(x)=(x-2)^2: AV_{[-1,1]}=(1-9)/2=-4 (same as AV_{[-3,-1]} for f) and AV_{[4,7]}=(25-4)/3=7 (same as AV_{[2,5]} for f). A horizontal shift of 2 units right causes the average rate of change to match on intervals that are shifted right by 2.

  3. For k(x)=3x^2: AV_{[-3,-1]}=(3-27)/2=-12=3\cdot(-4) and AV_{[2,5]}=(75-12)/3=21=3\cdot 7. Multiplying the output by 3 multiplies all average rates of change by 3.

  4. Conjecture: AV_{[-1,1]} for m equals 3\cdot AV_{[-3,-1]} for f, which is 3(-4) = -12. Verification: m(x)=3(x-2)^2+5, m(-1)=3(9)+5=32, m(1)=3(1)+5=8, AV_{[-1,1]}=(8-32)/2=-12. \checkmark

-
-
- - - -

- Consider the parent function y = f(x) = x. -

- -

-

    -
  1. -

    - Consider the linear function in point-slope form given by y = L(x) = -4(x-3) + 5. What is the slope of this line? What is the most obvious point that lies on the line? -

    -
  2. -
  3. -

    - How can the function L given in (a) be viewed as a transformation of the parent function f? Explain the roles of 3, -4, and 5, respectively. -

    -
  4. -
  5. -

    - Explain why any non-vertical line of the form P(x) = m(x-x_0) + y_0 can be thought of as a transformation of the parent function f(x) = x. Specifically discuss the transformation(s) involved. -

    -
  6. -
  7. -

    - Find a formula for the transformation of f(x) = x that corresponds to a horizontal shift of 7 units left, a reflection across y = 0 and vertical stretch of 3 units away from the x-axis, and a vertical shift of -11 units. -

    -
  8. -
-

-
- -

- Exercise Answer -

-
- -

  1. The slope is -4. The most obvious point is (3, 5).

  2. Starting from f(x)=x: shift right by 3 gives f(x-3)=x-3; multiply by -4 gives -4(x-3) (vertical stretch by 4 and reflection); shift up by 5 gives -4(x-3)+5 = L(x). So 3 is the horizontal shift, -4 is the vertical stretch/reflection factor, and 5 is the vertical shift.

  3. P(x)=m(x-x_0)+y_0 is a horizontal shift of f by x_0, a vertical stretch by m, and a vertical shift by y_0.

  4. Horizontal shift left 7: f(x+7) = x+7. Reflection and vertical stretch by 3: -3(x+7). Vertical shift -11: -3(x+7)-11 = -3x-32.

-
-
- - - -

- We have explored the effects of adding a constant to the output of a function, y = f(x) + a, adding a constant to the input, y = f(x+a), and multiplying the output of a function by a constant, y = af(x). There is one remaining natural transformation to explore: multiplying the input to a function by a constant. In this exercise, we consider the effects of the constant a in transforming a parent function f by the rule y = f(ax). -

- -

- Let f(x) = (x-2)^2 + 1. -

- -

-

    -
  1. -

    - Let g(x) = f(4x), h(x) = f(2x), k(x) = f(0.5x), and m(x) = f(0.25x). Use Desmos to plot these functions. Then, sketch and label g, h, k, and m on the provided axes in Figure along with the graph of f. For each of the functions, label and identify its vertex, its y-intercept, and its x-intercepts. -

    - - -
    - Axes for plotting f, g, h, k, and m in part (a). -

    Axes for plotting f, g, h, k, and m in part (a).

    -
    -
    -
    - Axes for plotting f, r, and s from parts (c) and (d). -

    Axes for plotting f, r, and s from parts (c) and (d).

    -
    -
    -
    -
  2. -
  3. -

    - Based on your work in (a), how would you describe the effect(s) of the transformation y = f(ax) where a \gt 0? What is the impact on the graph of f? Are any parts of the graph of f unchanged? -

    -
  4. -
  5. -

    - Now consider the function r(x) = f(-x). Observe that r(-1) = f(1), r(2) = f(-2), and so on. Without using a graphing utility, how do you expect the graph of y = r(x) to compare to the graph of y = f(x)? Explain. Then test your conjecture by using a graphing utility and record the plots of f and r on the axes in Figure. -

    -
  6. -
  7. -

    - How do you expect the graph of s(x) = f(-2x) to appear? Why? More generally, how does the graph of y = f(ax) compare to the graph of y = f(x) in the situation where a \lt 0? -

    -
  8. -
-

-
- -

- Exercise Answer -

-
- -

  1. With f(x)=(x-2)^2+1: g(x)=f(4x) has vertex at (\frac{1}{2}, 1), y-intercept 5, no x-intercepts. h(x)=f(2x) has vertex (1,1), y-intercept 5. k(x)=f(0.5x) has vertex (4,1), y-intercept 5. m(x)=f(0.25x) has vertex (8,1), y-intercept 5. All have the same minimum value and y-intercept; increasing a horizontally compresses the graph.

  2. The transformation y=f(ax) with a\gt 0 horizontally compresses the graph by factor a (when a\gt 1) or stretches it by factor 1/a (when 0\lt a\lt 1). Points on the y-axis are unchanged.

  3. r(x)=f(-x)=(-x-2)^2+1=(x+2)^2+1. This is the reflection of f across the y-axis: every point (a,b) on f maps to (-a,b) on r.

  4. s(x)=f(-2x) combines a horizontal compression by 2 with reflection across the y-axis. In general, y=f(ax) with a\lt 0 reflects across the y-axis and compresses horizontally by |a|.

- - - - - -
-
-
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+ Let f(x) = x^2. +

+ +

+

    +
  1. +

    + Let g(x) = f(x) + 5. Determine AV_{[-3,-1]} and AV_{[2,5]} for both f and g. What do you observe? Why does this phenomenon occur? +

    +
  2. +
  3. +

    + Let h(x) = f(x-2). For f, recall that you determined AV_{[-3,-1]} and AV_{[2,5]} in (a). In addition, determine AV_{[-1,1]} and AV_{[4,7]} for h. What do you observe? Why does this phenomenon occur? +

    +
  4. +
  5. +

    + Let k(x) = 3f(x). Determine AV_{[-3,-1]} and AV_{[2,5]} for k, and compare the results to your earlier computations of AV_{[-3,-1]} and AV_{[2,5]} for f. What do you observe? Why does this phenomenon occur? +

    +
  6. +
  7. +

    + Finally, let m(x) = 3f(x-2) + 5. Without doing any computations, what do you think will be true about the relationship between AV_{[-3,-1]} for f and AV_{[-1,1]} for m? Why? After making your conjecture, execute appropriate computations to see if your intuition is correct. +

    +
  8. +
+

+
+ +

+ Exercise Answer +

+
+ +

  1. For f(x)=x^2: AV_{[-3,-1]}=(1-9)/2=-4 and AV_{[2,5]}=(25-4)/3=7. For g(x)=x^2+5: AV_{[-3,-1]}=(6-14)/2=-4 and AV_{[2,5]}=(30-9)/3=7. The values are the same: vertical shifts do not change average rates of change.

  2. For h(x)=(x-2)^2: AV_{[-1,1]}=(1-9)/2=-4 (same as AV_{[-3,-1]} for f) and AV_{[4,7]}=(25-4)/3=7 (same as AV_{[2,5]} for f). A horizontal shift of 2 units right causes the average rate of change to match on intervals that are shifted right by 2.

  3. For k(x)=3x^2: AV_{[-3,-1]}=(3-27)/2=-12=3\cdot(-4) and AV_{[2,5]}=(75-12)/3=21=3\cdot 7. Multiplying the output by 3 multiplies all average rates of change by 3.

  4. Conjecture: AV_{[-1,1]} for m equals 3\cdot AV_{[-3,-1]} for f, which is 3(-4) = -12. Verification: m(x)=3(x-2)^2+5, m(-1)=3(9)+5=32, m(1)=3(1)+5=8, AV_{[-1,1]}=(8-32)/2=-12. \checkmark

+
+
+ + + +

+ Consider the parent function y = f(x) = x. +

+ +

+

    +
  1. +

    + Consider the linear function in point-slope form given by y = L(x) = -4(x-3) + 5. What is the slope of this line? What is the most obvious point that lies on the line? +

    +
  2. +
  3. +

    + How can the function L given in (a) be viewed as a transformation of the parent function f? Explain the roles of 3, -4, and 5, respectively. +

    +
  4. +
  5. +

    + Explain why any non-vertical line of the form P(x) = m(x-x_0) + y_0 can be thought of as a transformation of the parent function f(x) = x. Specifically discuss the transformation(s) involved. +

    +
  6. +
  7. +

    + Find a formula for the transformation of f(x) = x that corresponds to a horizontal shift of 7 units left, a reflection across y = 0 and vertical stretch of 3 units away from the x-axis, and a vertical shift of -11 units. +

    +
  8. +
+

+
+ +

+ Exercise Answer +

+
+ +

  1. The slope is -4. The most obvious point is (3, 5).

  2. Starting from f(x)=x: shift right by 3 gives f(x-3)=x-3; multiply by -4 gives -4(x-3) (vertical stretch by 4 and reflection); shift up by 5 gives -4(x-3)+5 = L(x). So 3 is the horizontal shift, -4 is the vertical stretch/reflection factor, and 5 is the vertical shift.

  3. P(x)=m(x-x_0)+y_0 is a horizontal shift of f by x_0, a vertical stretch by m, and a vertical shift by y_0.

  4. Horizontal shift left 7: f(x+7) = x+7. Reflection and vertical stretch by 3: -3(x+7). Vertical shift -11: -3(x+7)-11 = -3x-32.

+
+
+ + + +

+ We have explored the effects of adding a constant to the output of a function, y = f(x) + a, adding a constant to the input, y = f(x+a), and multiplying the output of a function by a constant, y = af(x). There is one remaining natural transformation to explore: multiplying the input to a function by a constant. In this exercise, we consider the effects of the constant a in transforming a parent function f by the rule y = f(ax). +

+ +

+ Let f(x) = (x-2)^2 + 1. +

+ +

+

    +
  1. +

    + Let g(x) = f(4x), h(x) = f(2x), k(x) = f(0.5x), and m(x) = f(0.25x). Use Desmos to plot these functions. Then, sketch and label g, h, k, and m on the provided axes in Figure along with the graph of f. For each of the functions, label and identify its vertex, its y-intercept, and its x-intercepts. +

    + + +
    + Axes for plotting f, g, h, k, and m in part (a). +

    Axes for plotting f, g, h, k, and m in part (a).

    +
    +
    +
    + Axes for plotting f, r, and s from parts (c) and (d). +

    Axes for plotting f, r, and s from parts (c) and (d).

    +
    +
    +
    +
  2. +
  3. +

    + Based on your work in (a), how would you describe the effect(s) of the transformation y = f(ax) where a \gt 0? What is the impact on the graph of f? Are any parts of the graph of f unchanged? +

    +
  4. +
  5. +

    + Now consider the function r(x) = f(-x). Observe that r(-1) = f(1), r(2) = f(-2), and so on. Without using a graphing utility, how do you expect the graph of y = r(x) to compare to the graph of y = f(x)? Explain. Then test your conjecture by using a graphing utility and record the plots of f and r on the axes in Figure. +

    +
  6. +
  7. +

    + How do you expect the graph of s(x) = f(-2x) to appear? Why? More generally, how does the graph of y = f(ax) compare to the graph of y = f(x) in the situation where a \lt 0? +

    +
  8. +
+

+
+ +

+ Exercise Answer +

+
+ +

  1. With f(x)=(x-2)^2+1: g(x)=f(4x) has vertex at (\frac{1}{2}, 1), y-intercept 5, no x-intercepts. h(x)=f(2x) has vertex (1,1), y-intercept 5. k(x)=f(0.5x) has vertex (4,1), y-intercept 5. m(x)=f(0.25x) has vertex (8,1), y-intercept 5. All have the same minimum value and y-intercept; increasing a horizontally compresses the graph.

  2. The transformation y=f(ax) with a\gt 0 horizontally compresses the graph by factor a (when a\gt 1) or stretches it by factor 1/a (when 0\lt a\lt 1). Points on the y-axis are unchanged.

  3. r(x)=f(-x)=(-x-2)^2+1=(x+2)^2+1. This is the reflection of f across the y-axis: every point (a,b) on f maps to (-a,b) on r.

  4. s(x)=f(-2x) combines a horizontal compression by 2 with reflection across the y-axis. In general, y=f(ax) with a\lt 0 reflects across the y-axis and compresses horizontally by |a|.

+ + + + + +
+
+
diff --git a/source/exercises/ez-circular-sine-cosine.xml b/source/exercises/ez-circular-sine-cosine.xml index 30d2ee1f..6bc8770c 100755 --- a/source/exercises/ez-circular-sine-cosine.xml +++ b/source/exercises/ez-circular-sine-cosine.xml @@ -1,220 +1,220 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

- Without using a computational device, determine the exact value of each of the following quantities. -

- -

-

    - -
  1. -

    - \sin(-\frac{11\pi}{4}) -

    -
  2. -
  3. -

    - \cos(\frac{29\pi}{6}) -

    -
  4. -
  5. -

    - \cos(\frac{17\pi}{3}) -

    -
  6. -
  7. -

    - \sin(47\pi) -

    -
  8. -
  9. -

    - \cos(-113\pi) -

    -
  10. -
  11. -

    - t in quadrant III such that \cos(t) = -\frac{\sqrt{3}}{2} -

    -
  12. -
  13. -

    - t in quadrant IV such that \sin(t) = -\frac{\sqrt{3}}{2} -

    -
  14. -
-

- -
- -

- Exercise Answer -

-
- -

-

    -
  1. \sin\!\left(-\frac{11\pi}{4}\right) = \sin\!\left(\frac{5\pi}{4}\right) = -\frac{\sqrt{2}}{2}

  2. -
  3. \cos\!\left(\frac{29\pi}{6}\right) = \cos\!\left(\frac{5\pi}{6}\right) = -\frac{\sqrt{3}}{2}

  4. -
  5. \cos\!\left(\frac{17\pi}{3}\right) = \cos\!\left(\frac{5\pi}{3}\right) = \frac{1}{2}

  6. -
  7. \sin(47\pi) = 0

  8. -
  9. \cos(-113\pi) = \cos(113\pi) = (-1)^{113} = -1

  10. -
  11. t = \frac{7\pi}{6}

  12. -
  13. t = \frac{5\pi}{3}

  14. -
-

-
-
- - - -

- We now know three different identities involving the sine and cosine functions: \sin(t+\frac{\pi}{2}) = \cos(t), \cos(t-\frac{\pi}{2}) = \sin(t), and \cos^2(t) + \sin^2(t) = 1. Following are several proposed identities. For each, your task is to decide whether the identity is true or false. If true, give a convincing argument for why it is true; if false, give an example of a t-value for which the equation fails to hold. -

- -

-

    -
  1. -

    - \cos(t + 2\pi) = \cos(t) -

    -
  2. -
  3. -

    - \sin(t-\pi) = -\sin(t) -

    -
  4. -
  5. -

    - \cos(t - \frac{3\pi}{2}) = \sin(t) -

    -
  6. -
  7. -

    - \sin^2(t) = 1 - \cos^2(t) -

    -
  8. -
  9. -

    - \sin(t) + \cos(t) = 1 -

    -
  10. -
  11. -

    - \sin(t) + \sin(\frac{\pi}{2}) = \cos(t) -

    -
  12. -
-

- -
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - Yes, \cos(t+2\pi) = \cos(t) is true because the function has a periodicity of 2\pi. -

    -
  2. -
  3. -

    - Yes, \sin(t-\pi) = -\sin(t) is true because a shift of \pi around the unit circle is equivalent to making the argument negative, and \sin is an odd function. Also, graphically, \sin gives the y-coordinate of points on the unit circle, and shifting the argument by \pm\pi essentially reflects the point across the x-axis, changing the sign of the y-coordinate. -

    -
  4. -
  5. -

    - No, \cos\!\left(t - \frac{3\pi}{2}\right) \ne \sin(t). For example, \cos\!\left(\frac{\pi}{2} - \frac{3\pi}{2}\right) = \cos(-\pi) = -1 while \sin\!\left(\frac{\pi}{2}\right) = 1. -

    -
  6. -
  7. -

    - Yes, \sin^2(t) = 1 - \cos^2(t), because of the Fundamental Trigonometric Identity. -

    -
  8. -
  9. -

    - No, \sin(t) + \cos(t) \ne 1. For example, \sin\!\left(\frac{\pi}{3}\right) + \cos\!\left(\frac{\pi}{3}\right) = \frac{1 + \sqrt{3}}{2} \ne 1. -

    -
  10. -
  11. -

    - No, \sin(t) + \sin\!\left(\frac{\pi}{2}\right) \ne \cos(t). For example, \sin\!\left(\frac{\pi}{4}\right) + \sin\!\left(\frac{\pi}{2}\right) = \frac{\sqrt{2} + 2}{2} while \cos\!\left(\frac{\pi}{4}\right) = \frac{\sqrt{2}}{2}. -

    -
  12. -
-

-
-
- - - -
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+ Without using a computational device, determine the exact value of each of the following quantities. +

+ +

+

    + +
  1. +

    + \sin(-\frac{11\pi}{4}) +

    +
  2. +
  3. +

    + \cos(\frac{29\pi}{6}) +

    +
  4. +
  5. +

    + \cos(\frac{17\pi}{3}) +

    +
  6. +
  7. +

    + \sin(47\pi) +

    +
  8. +
  9. +

    + \cos(-113\pi) +

    +
  10. +
  11. +

    + t in quadrant III such that \cos(t) = -\frac{\sqrt{3}}{2} +

    +
  12. +
  13. +

    + t in quadrant IV such that \sin(t) = -\frac{\sqrt{3}}{2} +

    +
  14. +
+

+ +
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. \sin\!\left(-\frac{11\pi}{4}\right) = \sin\!\left(\frac{5\pi}{4}\right) = -\frac{\sqrt{2}}{2}

  2. +
  3. \cos\!\left(\frac{29\pi}{6}\right) = \cos\!\left(\frac{5\pi}{6}\right) = -\frac{\sqrt{3}}{2}

  4. +
  5. \cos\!\left(\frac{17\pi}{3}\right) = \cos\!\left(\frac{5\pi}{3}\right) = \frac{1}{2}

  6. +
  7. \sin(47\pi) = 0

  8. +
  9. \cos(-113\pi) = \cos(113\pi) = (-1)^{113} = -1

  10. +
  11. t = \frac{7\pi}{6}

  12. +
  13. t = \frac{5\pi}{3}

  14. +
+

+
+
+ + + +

+ We now know three different identities involving the sine and cosine functions: \sin(t+\frac{\pi}{2}) = \cos(t), \cos(t-\frac{\pi}{2}) = \sin(t), and \cos^2(t) + \sin^2(t) = 1. Following are several proposed identities. For each, your task is to decide whether the identity is true or false. If true, give a convincing argument for why it is true; if false, give an example of a t-value for which the equation fails to hold. +

+ +

+

    +
  1. +

    + \cos(t + 2\pi) = \cos(t) +

    +
  2. +
  3. +

    + \sin(t-\pi) = -\sin(t) +

    +
  4. +
  5. +

    + \cos(t - \frac{3\pi}{2}) = \sin(t) +

    +
  6. +
  7. +

    + \sin^2(t) = 1 - \cos^2(t) +

    +
  8. +
  9. +

    + \sin(t) + \cos(t) = 1 +

    +
  10. +
  11. +

    + \sin(t) + \sin(\frac{\pi}{2}) = \cos(t) +

    +
  12. +
+

+ +
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + Yes, \cos(t+2\pi) = \cos(t) is true because the function has a periodicity of 2\pi. +

    +
  2. +
  3. +

    + Yes, \sin(t-\pi) = -\sin(t) is true because a shift of \pi around the unit circle is equivalent to making the argument negative, and \sin is an odd function. Also, graphically, \sin gives the y-coordinate of points on the unit circle, and shifting the argument by \pm\pi essentially reflects the point across the x-axis, changing the sign of the y-coordinate. +

    +
  4. +
  5. +

    + No, \cos\!\left(t - \frac{3\pi}{2}\right) \ne \sin(t). For example, \cos\!\left(\frac{\pi}{2} - \frac{3\pi}{2}\right) = \cos(-\pi) = -1 while \sin\!\left(\frac{\pi}{2}\right) = 1. +

    +
  6. +
  7. +

    + Yes, \sin^2(t) = 1 - \cos^2(t), because of the Fundamental Trigonometric Identity. +

    +
  8. +
  9. +

    + No, \sin(t) + \cos(t) \ne 1. For example, \sin\!\left(\frac{\pi}{3}\right) + \cos\!\left(\frac{\pi}{3}\right) = \frac{1 + \sqrt{3}}{2} \ne 1. +

    +
  10. +
  11. +

    + No, \sin(t) + \sin\!\left(\frac{\pi}{2}\right) \ne \cos(t). For example, \sin\!\left(\frac{\pi}{4}\right) + \sin\!\left(\frac{\pi}{2}\right) = \frac{\sqrt{2} + 2}{2} while \cos\!\left(\frac{\pi}{4}\right) = \frac{\sqrt{2}}{2}. +

    +
  12. +
+

+
+
+ + + +
diff --git a/source/exercises/ez-circular-sinusoidal.xml b/source/exercises/ez-circular-sinusoidal.xml index 40f89555..d263d5db 100755 --- a/source/exercises/ez-circular-sinusoidal.xml +++ b/source/exercises/ez-circular-sinusoidal.xml @@ -1,205 +1,205 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

- Find a possible formula for the circular function whose values are in the following table. -

- - - Data for a circular function. - - - x - 0 - 0.1 - 0.2 - 0.3 - 0.4 - 0.5 - 0.6 - 0.7 - 0.8 - 0.9 - 1.0 - - - g(x) - 2 - 2.6 - 3 - 3 - 2.6 - 2 - 1.4 - 1 - 1 - 1.4 - 2 - - -
- -

- Hint: Plot the points first; - doing so in Desmos is ideal. -

- -
- -

- Exercise Answer -

-
- -

- There is more than one possible correct answer. If we take the points to indicate a period of 1.0 and midpoint at y = 2, with an anchor point at (0, 2), a formula is - - g(x) = \sin(2\pi x) + 2. - -

-
-
- - - -

- In 2018, on the summer solstice, June 21, Grand Rapids, MI, experiences 15 hours, 21 minutes, and 25 seconds of daylight. Said differently, on the 172nd day of the year, people on earth at the latitude of Grand Rapids experience 15.3569 hours of daylight. On the winter solstice, December 21, 2018, the same latitude has 9 hours, 0 minutes, and 31 seconds of daylight; equivalently, on day 355, there are 9.0086 hours of daylight. This data is essentially identical every year as the patterns of the earth's rotation repeat. -

- -

- Let t be the day of the year starting with t = 0 on December 31, 2017. In addition, let s(t) be the number of hours of daylight on day t in Grand Rapids, MI. Find a formula for a circular function s(t) that fits this data. What is the function's midline, amplitude, and period? What are you using as an anchor point? Explain fully, and then graph your function to check your conclusions. -

-
- -

- Exercise Answer -

-
- -

- Assuming the period is 365 days, the amplitude is approximately 3.17545 hours, the midline is at y = 12.18405, and the maximum occurs at day t = 172 (with the minimum at day 355). Using the maximum as an anchor point, the duration of daylight is - - s(t) = 3.17545\cos\!\left(\frac{2\pi}{365}(t - 172)\right) + 12.18405. - -

-
-
- - - -

- We now understand the effects of the transformation h(t) = f(kt) where k \gt 0 for a given function f. Our goal is to understand what happens when k \lt 0. -

- -

-

    -
  1. -

    - We first consider the special case where k = -1. Let f(t) = 2t - 1, and let g(t) = f(-1 \cdot t) = f(-t) = -2t - 1. Plot f and g on the same coordinate axes. How are their graphs related to one another? -

    -
  2. -
  3. -

    - Given any function p, how do you expect the graph of y = q(t) = p(-t) to be related to the graph of p? -

    -
  4. -
  5. -

    - How is the graph of y = \sin(-3t) related to the graph of y = \sin(t)? -

    -
  6. -
  7. -

    - How is the graph of y = \cos(-3t) related to the graph of y = \cos(t)? -

    -
  8. -
  9. -

    - Given any function p and a constant k \lt 0, how do you expect the graph of y = q(t) = p(kt) to be related to the graph of p? -

    -
  10. -
  11. -

    - How are \sin(-t) and \sin(t) related? How are \cos(t) and \cos(-t) related? -

    -
  12. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - The graphs of f(t) = 2t - 1 and g(t) = -2t - 1 have lines that are reflected across the y-axis. -

    -
  2. -
  3. -

    - For any function p, the function q(t) = p(-t) is a reflection of p across the y-axis. -

    -
  4. -
  5. -

    - The graph of y = \sin(-3t) is a graph of y = \sin(t) first horizontally scaled by a factor of \frac{1}{3} and then reflected across the y-axis. -

    -
  6. -
  7. -

    - The graph of y = \cos(-3t) is a graph of y = \cos(t) first horizontally scaled by a factor of \frac{1}{3} and then reflected across the y-axis. Since \cos is symmetric across the y-axis, y = \cos(-3t) appears identical to y = \cos(3t). -

    -
  8. -
  9. -

    - For any function p(t), the graph of q(t) = p(kt) with k \lt 0 is equivalent to the graph of p(t) scaled horizontally by a factor of \frac{1}{|k|} and then reflected across the y-axis. -

    -
  10. -
  11. -

    - The graphs \sin(-t) and \sin(t) are related such that \sin(-t) = -\sin(t), while \cos(-t) = \cos(t). -

    -
  12. -
-

-
-
-
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+ Find a possible formula for the circular function whose values are in the following table. +

+ + + Data for a circular function. + + + x + 0 + 0.1 + 0.2 + 0.3 + 0.4 + 0.5 + 0.6 + 0.7 + 0.8 + 0.9 + 1.0 + + + g(x) + 2 + 2.6 + 3 + 3 + 2.6 + 2 + 1.4 + 1 + 1 + 1.4 + 2 + + +
+ +

+ Hint: Plot the points first; + doing so in Desmos is ideal. +

+ +
+ +

+ Exercise Answer +

+
+ +

+ There is more than one possible correct answer. If we take the points to indicate a period of 1.0 and midpoint at y = 2, with an anchor point at (0, 2), a formula is + + g(x) = \sin(2\pi x) + 2. + +

+
+
+ + + +

+ In 2018, on the summer solstice, June 21, Grand Rapids, MI, experiences 15 hours, 21 minutes, and 25 seconds of daylight. Said differently, on the 172nd day of the year, people on earth at the latitude of Grand Rapids experience 15.3569 hours of daylight. On the winter solstice, December 21, 2018, the same latitude has 9 hours, 0 minutes, and 31 seconds of daylight; equivalently, on day 355, there are 9.0086 hours of daylight. This data is essentially identical every year as the patterns of the earth's rotation repeat. +

+ +

+ Let t be the day of the year starting with t = 0 on December 31, 2017. In addition, let s(t) be the number of hours of daylight on day t in Grand Rapids, MI. Find a formula for a circular function s(t) that fits this data. What is the function's midline, amplitude, and period? What are you using as an anchor point? Explain fully, and then graph your function to check your conclusions. +

+
+ +

+ Exercise Answer +

+
+ +

+ Assuming the period is 365 days, the amplitude is approximately 3.17545 hours, the midline is at y = 12.18405, and the maximum occurs at day t = 172 (with the minimum at day 355). Using the maximum as an anchor point, the duration of daylight is + + s(t) = 3.17545\cos\!\left(\frac{2\pi}{365}(t - 172)\right) + 12.18405. + +

+
+
+ + + +

+ We now understand the effects of the transformation h(t) = f(kt) where k \gt 0 for a given function f. Our goal is to understand what happens when k \lt 0. +

+ +

+

    +
  1. +

    + We first consider the special case where k = -1. Let f(t) = 2t - 1, and let g(t) = f(-1 \cdot t) = f(-t) = -2t - 1. Plot f and g on the same coordinate axes. How are their graphs related to one another? +

    +
  2. +
  3. +

    + Given any function p, how do you expect the graph of y = q(t) = p(-t) to be related to the graph of p? +

    +
  4. +
  5. +

    + How is the graph of y = \sin(-3t) related to the graph of y = \sin(t)? +

    +
  6. +
  7. +

    + How is the graph of y = \cos(-3t) related to the graph of y = \cos(t)? +

    +
  8. +
  9. +

    + Given any function p and a constant k \lt 0, how do you expect the graph of y = q(t) = p(kt) to be related to the graph of p? +

    +
  10. +
  11. +

    + How are \sin(-t) and \sin(t) related? How are \cos(t) and \cos(-t) related? +

    +
  12. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + The graphs of f(t) = 2t - 1 and g(t) = -2t - 1 have lines that are reflected across the y-axis. +

    +
  2. +
  3. +

    + For any function p, the function q(t) = p(-t) is a reflection of p across the y-axis. +

    +
  4. +
  5. +

    + The graph of y = \sin(-3t) is a graph of y = \sin(t) first horizontally scaled by a factor of \frac{1}{3} and then reflected across the y-axis. +

    +
  6. +
  7. +

    + The graph of y = \cos(-3t) is a graph of y = \cos(t) first horizontally scaled by a factor of \frac{1}{3} and then reflected across the y-axis. Since \cos is symmetric across the y-axis, y = \cos(-3t) appears identical to y = \cos(3t). +

    +
  8. +
  9. +

    + For any function p(t), the graph of q(t) = p(kt) with k \lt 0 is equivalent to the graph of p(t) scaled horizontally by a factor of \frac{1}{|k|} and then reflected across the y-axis. +

    +
  10. +
  11. +

    + The graphs \sin(-t) and \sin(t) are related such that \sin(-t) = -\sin(t), while \cos(-t) = \cos(t). +

    +
  12. +
+

+
+
+
diff --git a/source/exercises/ez-circular-traversing.xml b/source/exercises/ez-circular-traversing.xml index 2c2fe698..0373a9ac 100755 --- a/source/exercises/ez-circular-traversing.xml +++ b/source/exercises/ez-circular-traversing.xml @@ -1,340 +1,340 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

- Consider the circle pictured in Figure that is centered at the point (2,2) and that has circumference 8. Suppose that we track the x-coordinate (that is, the horizontal location, which we will call k) of a point that is traversing the circle counterclockwise and that it starts at P_0 as pictured. -

- - -
- A point traversing the circle. -

A point traversing the circle.

-
-
-
- Axes for plotting k as a function of d. -

Axes for plotting k as a function of d.

-
-
-
- -

- Recall that in Activity we identified the exact and approximate vertical coordinates of all 8 noted points on the circle. In addition, recall that the radius of the circle is r = \frac{8}{2\pi} \approx 1.2732. -

- -

-

    -
  1. -

    - What is the exact horizontal coordinate of P_0? Why? -

    -
  2. -
  3. -

    - Complete the entries in Table that track the horizontal location, k, of the point traversing the circle as a function of distance traveled, d. -

    - - - Data for <m>k</m> as a function of <m>d</m>. - - - d - 0 - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - 11 - 12 - 13 - 14 - 15 - 16 - - - k - 0.73 - - - - - - - - - - - - - - - - - - -
    -
  4. -
  5. -

    - By plotting the points in Table and connecting them in an intuitive way, sketch a graph of k as a function of d on the axes provided in Figure over the interval 0 \le d \le 16. Clearly label the scale of your axes and the coordinates of several important points on the curve. -

    -
  6. -
  7. -

    - What is similar about your graph in comparison to the one in ? What is different? -

    -
  8. -
  9. -

    - What will be the value of k when d = 51? How about when d = 102? -

    -
  10. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - The point P_0 is directly to the left of the center (2,2), so its x-coordinate is one radius less than 2. The radius is \frac{8}{2\pi} = \frac{4}{\pi}, so the exact x-coordinate is 2 - \frac{4}{\pi} = \frac{2(\pi-2)}{\pi} \approx 0.727. -

    -
  2. -
  3. - - - d - 0123 - 4567 - 8 - - - k - 0.731.1022.90 - 3.272.9021.10 - 0.73 - - - - - d - 9101112 - 13141516 - - - k - 1.1022.903.27 - 2.9021.100.73 - - -
  4. -
  5. - -
  6. -
  7. -

    - The graph is just a horizontal shift compared to the graph of h from . -

    -
  8. -
  9. -

    - When d = 51, k(51) = 2.90. When d = 102, k(102) = 2. -

    -
  10. -
-

-
-
- - - -

- Two circular functions, f and g, are generated by tracking the y-coordinate of a point traversing two different circles. The resulting graphs are shown in Figure and Figure. Assuming the horizontal scale matches the vertical scale, answer the following questions for each of the functions f and g. -

- - -
- A plot of the circular function f. -

A plot of the circular function f.

-
-
-
- A plot of the circular function g. -

A plot of the circular function g.

-
-
-
- -

-

    -
  1. -

    - Assume that the circle used to generate the circular function is centered at the point (0,m) and has radius r. What are the numerical values of m and r? Why? -

    -
  2. -
  3. -

    - What are the coordinates of the location on the circle at which the point begins its traverse? Said differently, what point on the circle corresponds to t = 0 on the function's graph? -

    -
  4. -
  5. -

    - What is the period of the function? How is this connected to the circle and to the scale on the horizontal axes on which the function is graphed? -

    -
  6. -
  7. -

    - How would the graph look if the circle's radius was 1 unit larger? 1 unit smaller? -

    -
  8. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - The midline of each oscillation graph corresponds to the center y-coordinate, and the amplitude equals the radius. Function f has a maximum of 11 and a minimum of 3, so the radius (amplitude) is 4 and the midline is y = 7. Function g has a maximum of 12 and a minimum of 1, so the radius (amplitude) is 5.5 and the midline is y = 6.5. -

    -
  2. -
  3. -

    - Assuming counterclockwise motion: the circle for function f begins its traverse at the 9:00 position with coordinates (-4, 7). The circle for function g begins at the 12:00 position with coordinates (0, 12). -

    -
  4. -
  5. -

    - For function f, the period of the function is 8 units. For function g, the period is 8 units. For these graphs, one period is one complete traverse of the circle. The speed v of the point is equal to the circumference of the circle divided by the period T of one complete circle: v = \frac{2\pi r}{T}, so the horizontal scale corresponds to defining each period as \frac{2\pi r}{v}. -

    -
  6. -
  7. -

    - The changes to the graph depend in part on whether the speed stays the same. If the circle's radius gets one unit larger and the speed stays the same, then the period of the graph of function f increases to \frac{5}{4} \cdot 8 = 10 units; the amplitude of the graph changes to 5. For function g, a constant-speed scenario changes the period to \frac{7.5}{6.5} \cdot 8 \approx 9.23 units; the amplitude of g changes to 7.5. If the circle's radius gets one unit smaller and the speed stays the same, then the period of the graph of function f decreases to \frac{3}{4} \cdot 8 = 6 units; the amplitude of the graph changes to 3. For function g, a constant-speed scenario changes the period to \frac{5.5}{6.5} \cdot 8 \approx 6.77 units; the amplitude changes to 4.5. The amplitude of each graph will increase by 1 if the radius increases and decrease by 1 if the radius decreases, but there is no change to the midline. -

    -
  8. -
-

-
-
- - - -

- A person goes for a ride on a ferris wheel. They enter one of the cars at the lowest possible point on the wheel from a platform 7 feet off the ground. When they are at the very top of the wheel, they are 92 feet off the ground. Let h represent the height of the car (in feet) and d (in feet) the distance the car has traveled along the wheel's circumference from its starting location at the bottom of the wheel. We'll use the notation h = f(d) for how height is a function of distance traveled. -

- -

-

    -
  1. -

    - How high above the ground is the center of the ferris wheel? -

    -
  2. -
  3. -

    - How far does the car travel in one complete trip around the wheel? -

    -
  4. -
  5. -

    - For the circular function h = f(d), what is its amplitude? midline? period? -

    -
  6. -
  7. -

    - Sketch an accurate graph of h through at least two full periods. Clearly label the scale on the horizontal and vertical axes along with several important points. -

    -
  8. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - The center of the ferris wheel is at height \frac{92 - 7}{2} + 7 = 49.5 feet. -

    -
  2. -
  3. -

    - The radius is 42.5 feet, so the circumference is 2\pi \cdot 42.5 = 85\pi \approx 267 feet. -

    -
  4. -
  5. -

    - The circular function h = f(d) has amplitude 42.5 feet, midline y = 49.5 feet, and period 85\pi \approx 267 feet. -

    -
  6. -
  7. - -
  8. -
-

-
-
- - - -
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+ Consider the circle pictured in Figure that is centered at the point (2,2) and that has circumference 8. Suppose that we track the x-coordinate (that is, the horizontal location, which we will call k) of a point that is traversing the circle counterclockwise and that it starts at P_0 as pictured. +

+ + +
+ A point traversing the circle. +

A point traversing the circle.

+
+
+
+ Axes for plotting k as a function of d. +

Axes for plotting k as a function of d.

+
+
+
+ +

+ Recall that in Activity we identified the exact and approximate vertical coordinates of all 8 noted points on the circle. In addition, recall that the radius of the circle is r = \frac{8}{2\pi} \approx 1.2732. +

+ +

+

    +
  1. +

    + What is the exact horizontal coordinate of P_0? Why? +

    +
  2. +
  3. +

    + Complete the entries in Table that track the horizontal location, k, of the point traversing the circle as a function of distance traveled, d. +

    + + + Data for <m>k</m> as a function of <m>d</m>. + + + d + 0 + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 13 + 14 + 15 + 16 + + + k + 0.73 + + + + + + + + + + + + + + + + + + +
    +
  4. +
  5. +

    + By plotting the points in Table and connecting them in an intuitive way, sketch a graph of k as a function of d on the axes provided in Figure over the interval 0 \le d \le 16. Clearly label the scale of your axes and the coordinates of several important points on the curve. +

    +
  6. +
  7. +

    + What is similar about your graph in comparison to the one in ? What is different? +

    +
  8. +
  9. +

    + What will be the value of k when d = 51? How about when d = 102? +

    +
  10. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + The point P_0 is directly to the left of the center (2,2), so its x-coordinate is one radius less than 2. The radius is \frac{8}{2\pi} = \frac{4}{\pi}, so the exact x-coordinate is 2 - \frac{4}{\pi} = \frac{2(\pi-2)}{\pi} \approx 0.727. +

    +
  2. +
  3. + + + d + 0123 + 4567 + 8 + + + k + 0.731.1022.90 + 3.272.9021.10 + 0.73 + + + + + d + 9101112 + 13141516 + + + k + 1.1022.903.27 + 2.9021.100.73 + + +
  4. +
  5. + +
  6. +
  7. +

    + The graph is just a horizontal shift compared to the graph of h from . +

    +
  8. +
  9. +

    + When d = 51, k(51) = 2.90. When d = 102, k(102) = 2. +

    +
  10. +
+

+
+
+ + + +

+ Two circular functions, f and g, are generated by tracking the y-coordinate of a point traversing two different circles. The resulting graphs are shown in Figure and Figure. Assuming the horizontal scale matches the vertical scale, answer the following questions for each of the functions f and g. +

+ + +
+ A plot of the circular function f. +

A plot of the circular function f.

+
+
+
+ A plot of the circular function g. +

A plot of the circular function g.

+
+
+
+ +

+

    +
  1. +

    + Assume that the circle used to generate the circular function is centered at the point (0,m) and has radius r. What are the numerical values of m and r? Why? +

    +
  2. +
  3. +

    + What are the coordinates of the location on the circle at which the point begins its traverse? Said differently, what point on the circle corresponds to t = 0 on the function's graph? +

    +
  4. +
  5. +

    + What is the period of the function? How is this connected to the circle and to the scale on the horizontal axes on which the function is graphed? +

    +
  6. +
  7. +

    + How would the graph look if the circle's radius was 1 unit larger? 1 unit smaller? +

    +
  8. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + The midline of each oscillation graph corresponds to the center y-coordinate, and the amplitude equals the radius. Function f has a maximum of 11 and a minimum of 3, so the radius (amplitude) is 4 and the midline is y = 7. Function g has a maximum of 12 and a minimum of 1, so the radius (amplitude) is 5.5 and the midline is y = 6.5. +

    +
  2. +
  3. +

    + Assuming counterclockwise motion: the circle for function f begins its traverse at the 9:00 position with coordinates (-4, 7). The circle for function g begins at the 12:00 position with coordinates (0, 12). +

    +
  4. +
  5. +

    + For function f, the period of the function is 8 units. For function g, the period is 8 units. For these graphs, one period is one complete traverse of the circle. The speed v of the point is equal to the circumference of the circle divided by the period T of one complete circle: v = \frac{2\pi r}{T}, so the horizontal scale corresponds to defining each period as \frac{2\pi r}{v}. +

    +
  6. +
  7. +

    + The changes to the graph depend in part on whether the speed stays the same. If the circle's radius gets one unit larger and the speed stays the same, then the period of the graph of function f increases to \frac{5}{4} \cdot 8 = 10 units; the amplitude of the graph changes to 5. For function g, a constant-speed scenario changes the period to \frac{7.5}{6.5} \cdot 8 \approx 9.23 units; the amplitude of g changes to 7.5. If the circle's radius gets one unit smaller and the speed stays the same, then the period of the graph of function f decreases to \frac{3}{4} \cdot 8 = 6 units; the amplitude of the graph changes to 3. For function g, a constant-speed scenario changes the period to \frac{5.5}{6.5} \cdot 8 \approx 6.77 units; the amplitude changes to 4.5. The amplitude of each graph will increase by 1 if the radius increases and decrease by 1 if the radius decreases, but there is no change to the midline. +

    +
  8. +
+

+
+
+ + + +

+ A person goes for a ride on a ferris wheel. They enter one of the cars at the lowest possible point on the wheel from a platform 7 feet off the ground. When they are at the very top of the wheel, they are 92 feet off the ground. Let h represent the height of the car (in feet) and d (in feet) the distance the car has traveled along the wheel's circumference from its starting location at the bottom of the wheel. We'll use the notation h = f(d) for how height is a function of distance traveled. +

+ +

+

    +
  1. +

    + How high above the ground is the center of the ferris wheel? +

    +
  2. +
  3. +

    + How far does the car travel in one complete trip around the wheel? +

    +
  4. +
  5. +

    + For the circular function h = f(d), what is its amplitude? midline? period? +

    +
  6. +
  7. +

    + Sketch an accurate graph of h through at least two full periods. Clearly label the scale on the horizontal and vertical axes along with several important points. +

    +
  8. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + The center of the ferris wheel is at height \frac{92 - 7}{2} + 7 = 49.5 feet. +

    +
  2. +
  3. +

    + The radius is 42.5 feet, so the circumference is 2\pi \cdot 42.5 = 85\pi \approx 267 feet. +

    +
  4. +
  5. +

    + The circular function h = f(d) has amplitude 42.5 feet, midline y = 49.5 feet, and period 85\pi \approx 267 feet. +

    +
  6. +
  7. + +
  8. +
+

+
+
+ + + +
diff --git a/source/exercises/ez-circular-unit-circle.xml b/source/exercises/ez-circular-unit-circle.xml index cf276d72..e8f6123a 100755 --- a/source/exercises/ez-circular-unit-circle.xml +++ b/source/exercises/ez-circular-unit-circle.xml @@ -1,247 +1,247 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

- Let (x,y) be a point on the unit circle. In each of the following situations, determine the requested value exactly. -

- -

-

    -
  1. -

    - Suppose that x = -0.3 and y is negative. Find the value of y. -

    -
  2. -
  3. -

    - Suppose that (x,y) lies in Quadrant II and x = -2y. Find the values of x and y. -

    -
  4. -
  5. -

    - Suppose that (x,y) lies a distance of \frac{29\pi}{6} units clockwise around the circle from (1,0). Find the values of x and y. -

    -
  6. -
  7. -

    - At what exact point(s) does the line y = \frac{1}{2}x + \frac{1}{2} intersect the unit circle? -

    -
  8. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - Using x^2 + y^2 = 1 with x = -0.3 and y < 0: y = -\sqrt{1 - 0.09} = -\frac{\sqrt{91}}{10} \approx -0.954. -

    -
  2. -
  3. -

    - With x = -2y and x^2 + y^2 = 1: 4y^2 + y^2 = 1, so y = \frac{\sqrt{5}}{5} and x = -\frac{2\sqrt{5}}{5}. -

    -
  4. -
  5. -

    - Going \frac{29\pi}{6} clockwise corresponds to the angle -\frac{29\pi}{6} \equiv \frac{7\pi}{6} \pmod{2\pi}. The coordinates are \left(-\frac{\sqrt{3}}{2}, -\frac{1}{2}\right). -

    -
  6. -
  7. -

    - Substituting y = \frac{1}{2}x + \frac{1}{2} into x^2 + y^2 = 1 and solving gives x = -1 or x = \frac{3}{5}. The intersection points are (-1, 0) and \left(\frac{3}{5}, \frac{4}{5}\right). -

    -
  8. -
-

-
-
- - - -

- The unit circle is centered at (0,0) and radius r = 1, from which the Pythagorean Theorem tells us that any point (x,y) on the unit circle satisfies the equation x^2 + y^2 = 1. -

- -

-

    -
  1. -

    - Explain why any point (x,y) on a circle of radius r centered at (h,k) satisfies the equation (x-h)^2 + (y-k)^2 = r^2. -

    -
  2. -
  3. -

    - Determine the equation of a circle centered at (-3,5) with radius r = 2. -

    -
  4. -
  5. -

    - Suppose that the unit circle is magnified by a factor of 5 and then shifted 4 units right and 7 units down. What is the equation of the resulting circle? -

    -
  6. -
  7. -

    - What is the length of the arc intercepted by a central angle of \frac{2\pi}{3} radians in the circle (x-1)^2 + (y-3)^2 = 16? -

    -
  8. -
  9. -

    - Suppose that the line segment from (-2,-1) to (4,2) is a diameter of a circle. What is the circle's center, radius, and equation? -

    -
  10. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - A circle of radius r centered at (h,k) is simply the unit circle transformed with a horizontal translation h units to the right, a vertical translation k units up, and scaled both horizontally and vertically by a factor of r. Thus the parent equation x^2 + y^2 = 1 is transformed with x \to \frac{x-h}{r} and y \to \frac{y-k}{r}: - - \left(\frac{x-h}{r}\right)^2 + \left(\frac{y-k}{r}\right)^2 &= 1 \\ - \frac{(x-h)^2}{r^2} + \frac{(y-k)^2}{r^2} &= 1 \\ - (x-h)^2 + (y-k)^2 &= r^2. - -

    -
  2. -
  3. -

    - (x+3)^2 + (y-5)^2 = 4. -

    -
  4. -
  5. -

    - (x-4)^2 + (y+7)^2 = 25. -

    -
  6. -
  7. -

    - The circle has radius 4, so the arc length is 4 \cdot \frac{2\pi}{3} = \frac{8\pi}{3}. -

    -
  8. -
  9. -

    - The diameter has length \sqrt{(4-(-2))^2 + (2-(-1))^2} = \sqrt{45}, so the radius is \frac{\sqrt{45}}{2}. The center is the midpoint \left(1, \frac{1}{2}\right). The equation is (x-1)^2 + \left(y - \frac{1}{2}\right)^2 = \frac{45}{4}. -

    -
  10. -
-

-
-
- - - -

- Consider the circle whose center is (0,0) and whose radius is r = 5. Let a point (x,y) traverse the circle counterclockwise from (5,0), and say the distance along the circle from (5,0) is represented by d. -

- -

-

    -
  1. -

    - Consider the point (a,b) that is generated by the central angle \theta with vertices (5,0), (0,0), and (a,b). If \theta = \frac{\pi}{6}, what are the exact values of a and b? -

    -
  2. -
  3. -

    - Answer the same question as in (a) except with \theta = \frac{\pi}{4} and \theta = \frac{\pi}{3}. -

    -
  4. -
  5. -

    - How far has the point (x,y) traveled after it has traversed the circle one full revolution? -

    -
  6. -
  7. -

    - Let h = f(d) be the circular function that tracks the height of the point (x,y) as a function of distance, d, traversed counterclockwise from (5,0). Sketch an accurate graph of f through two full periods, labeling several special points on the graph as well as the horizontal and vertical scale of the axes. -

    -
  8. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - At \theta = \frac{\pi}{6}: a = \frac{5\sqrt{3}}{2}, b = \frac{5}{2}. -

    -
  2. -
  3. -

    - At \theta = \frac{\pi}{4}: a = b = \frac{5\sqrt{2}}{2}. At \theta = \frac{\pi}{3}: a = \frac{5}{2}, b = \frac{5\sqrt{3}}{2}. -

    -
  4. -
  5. -

    - One full revolution has distance equal to the circumference: 2\pi \cdot 5 = 10\pi. -

    -
  6. -
  7. - -
  8. -
-

-
-
- -
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+ Let (x,y) be a point on the unit circle. In each of the following situations, determine the requested value exactly. +

+ +

+

    +
  1. +

    + Suppose that x = -0.3 and y is negative. Find the value of y. +

    +
  2. +
  3. +

    + Suppose that (x,y) lies in Quadrant II and x = -2y. Find the values of x and y. +

    +
  4. +
  5. +

    + Suppose that (x,y) lies a distance of \frac{29\pi}{6} units clockwise around the circle from (1,0). Find the values of x and y. +

    +
  6. +
  7. +

    + At what exact point(s) does the line y = \frac{1}{2}x + \frac{1}{2} intersect the unit circle? +

    +
  8. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + Using x^2 + y^2 = 1 with x = -0.3 and y < 0: y = -\sqrt{1 - 0.09} = -\frac{\sqrt{91}}{10} \approx -0.954. +

    +
  2. +
  3. +

    + With x = -2y and x^2 + y^2 = 1: 4y^2 + y^2 = 1, so y = \frac{\sqrt{5}}{5} and x = -\frac{2\sqrt{5}}{5}. +

    +
  4. +
  5. +

    + Going \frac{29\pi}{6} clockwise corresponds to the angle -\frac{29\pi}{6} \equiv \frac{7\pi}{6} \pmod{2\pi}. The coordinates are \left(-\frac{\sqrt{3}}{2}, -\frac{1}{2}\right). +

    +
  6. +
  7. +

    + Substituting y = \frac{1}{2}x + \frac{1}{2} into x^2 + y^2 = 1 and solving gives x = -1 or x = \frac{3}{5}. The intersection points are (-1, 0) and \left(\frac{3}{5}, \frac{4}{5}\right). +

    +
  8. +
+

+
+
+ + + +

+ The unit circle is centered at (0,0) and radius r = 1, from which the Pythagorean Theorem tells us that any point (x,y) on the unit circle satisfies the equation x^2 + y^2 = 1. +

+ +

+

    +
  1. +

    + Explain why any point (x,y) on a circle of radius r centered at (h,k) satisfies the equation (x-h)^2 + (y-k)^2 = r^2. +

    +
  2. +
  3. +

    + Determine the equation of a circle centered at (-3,5) with radius r = 2. +

    +
  4. +
  5. +

    + Suppose that the unit circle is magnified by a factor of 5 and then shifted 4 units right and 7 units down. What is the equation of the resulting circle? +

    +
  6. +
  7. +

    + What is the length of the arc intercepted by a central angle of \frac{2\pi}{3} radians in the circle (x-1)^2 + (y-3)^2 = 16? +

    +
  8. +
  9. +

    + Suppose that the line segment from (-2,-1) to (4,2) is a diameter of a circle. What is the circle's center, radius, and equation? +

    +
  10. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + A circle of radius r centered at (h,k) is simply the unit circle transformed with a horizontal translation h units to the right, a vertical translation k units up, and scaled both horizontally and vertically by a factor of r. Thus the parent equation x^2 + y^2 = 1 is transformed with x \to \frac{x-h}{r} and y \to \frac{y-k}{r}: + + \left(\frac{x-h}{r}\right)^2 + \left(\frac{y-k}{r}\right)^2 &= 1 \\ + \frac{(x-h)^2}{r^2} + \frac{(y-k)^2}{r^2} &= 1 \\ + (x-h)^2 + (y-k)^2 &= r^2. + +

    +
  2. +
  3. +

    + (x+3)^2 + (y-5)^2 = 4. +

    +
  4. +
  5. +

    + (x-4)^2 + (y+7)^2 = 25. +

    +
  6. +
  7. +

    + The circle has radius 4, so the arc length is 4 \cdot \frac{2\pi}{3} = \frac{8\pi}{3}. +

    +
  8. +
  9. +

    + The diameter has length \sqrt{(4-(-2))^2 + (2-(-1))^2} = \sqrt{45}, so the radius is \frac{\sqrt{45}}{2}. The center is the midpoint \left(1, \frac{1}{2}\right). The equation is (x-1)^2 + \left(y - \frac{1}{2}\right)^2 = \frac{45}{4}. +

    +
  10. +
+

+
+
+ + + +

+ Consider the circle whose center is (0,0) and whose radius is r = 5. Let a point (x,y) traverse the circle counterclockwise from (5,0), and say the distance along the circle from (5,0) is represented by d. +

+ +

+

    +
  1. +

    + Consider the point (a,b) that is generated by the central angle \theta with vertices (5,0), (0,0), and (a,b). If \theta = \frac{\pi}{6}, what are the exact values of a and b? +

    +
  2. +
  3. +

    + Answer the same question as in (a) except with \theta = \frac{\pi}{4} and \theta = \frac{\pi}{3}. +

    +
  4. +
  5. +

    + How far has the point (x,y) traveled after it has traversed the circle one full revolution? +

    +
  6. +
  7. +

    + Let h = f(d) be the circular function that tracks the height of the point (x,y) as a function of distance, d, traversed counterclockwise from (5,0). Sketch an accurate graph of f through two full periods, labeling several special points on the graph as well as the horizontal and vertical scale of the axes. +

    +
  8. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + At \theta = \frac{\pi}{6}: a = \frac{5\sqrt{3}}{2}, b = \frac{5}{2}. +

    +
  2. +
  3. +

    + At \theta = \frac{\pi}{4}: a = b = \frac{5\sqrt{2}}{2}. At \theta = \frac{\pi}{3}: a = \frac{5}{2}, b = \frac{5\sqrt{3}}{2}. +

    +
  4. +
  5. +

    + One full revolution has distance equal to the circumference: 2\pi \cdot 5 = 10\pi. +

    +
  6. +
  7. + +
  8. +
+

+
+
+ +
diff --git a/source/exercises/ez-exp-e.xml b/source/exercises/ez-exp-e.xml index e65a6e9c..5d1542fa 100755 --- a/source/exercises/ez-exp-e.xml +++ b/source/exercises/ez-exp-e.xml @@ -1,269 +1,269 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

- When a single investment of principal, $P, is invested in an account that returns interest at an annual rate of r (a decimal that corresponds to the percentage rate, such as r = 0.05 corresponding to 5%) that is compounded n times per year, the amount of money in the account after t years is given by A(t) = P(1 + \frac{r}{n})^{nt}. -

- -

- Suppose we invest $100 in an account that earns 8% annual interest. We investigate the effects of different rates of compounding. -

- -

-

    -
  1. -

    - Compute A(1) if interest is compounded quarterly (n = 4). -

    -
  2. -
  3. -

    - Compute A(1) if interest is compounded monthly. -

    -
  4. -
  5. -

    - Compute A(1) if interest is compounded weekly. -

    -
  6. -
  7. -

    - Compute A(1) if interest is compounded daily. -

    -
  8. -
  9. -

    - If we let the number of times that interest is compounded increase without bound, we say that the interest is compounded continuously. continuously compounded interest When interest is compounded continuously, it turns out that the amount of money an account with initial investment $P after t years at an annual interest rate of r is A(t) = Pe^{rt}, where e is the natural base. Compute A(1) in the same context as the preceding questions but where interest is compounded continuously. -

    -
  10. -
  11. -

    - How much of a difference does continuously compounded interest make over interest compounded quarterly in one year's time? How does your answer change over 25 years' time? -

    -
  12. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - With P = 100, r = 0.08, and n = 4: A(1) = 100\left(1 + \frac{0.08}{4}\right)^{4} = 100(1.02)^4 \approx \$108.24. -

    -
  2. -
  3. -

    - With n = 12: A(1) = 100\left(1 + \frac{0.08}{12}\right)^{12} \approx \$108.30. -

    -
  4. -
  5. -

    - With n = 52: A(1) = 100\left(1 + \frac{0.08}{52}\right)^{52} \approx \$108.32. -

    -
  6. -
  7. -

    - With n = 365: A(1) = 100\left(1 + \frac{0.08}{365}\right)^{365} \approx \$108.33. -

    -
  8. -
  9. -

    - With continuous compounding: A(1) = 100e^{0.08} \approx \$108.33. -

    -
  10. -
  11. -

    - In one year, continuously compounded interest yields approximately P \times 0.000855 more than quarterly compounding. Over 25 years, the difference grows to approximately P \times 0.144, with the greater amount coming from continuously compounded interest. -

    -
  12. -
-

-
-
- - - -

- In Desmos, define the function g(t) = e^{kt} and accept the slider for k. Set the range of the slider to -2 \le k \le 2, and assume that k \ne 0. Experiment with a wide range of values of k to see the effects of changing k. -

- -

-

    -
  1. -

    - For what values of k is g always increasing? For what values of k is g always decreasing? -

    -
  2. -
  3. -

    - For which value of k is the average rate of change of g on [0,1] greater: when k = -0.1 or when k = -0.05? -

    -
  4. -
  5. -

    - What is the long-term behavior of g when k \lt 0? Why does this occur? -

    -
  6. -
  7. -

    - Experiment with the slider to find a value of k for which g(2) = \frac{1}{2}. Test your estimate by computing e^{2k}. How accurate is your estimate? -

    -
  8. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - When k \gt 0, g(t) is always increasing. When k \lt 0, g(t) is always decreasing. -

    -
  2. -
  3. -

    - The average rate of change of g(t) on [0,1] is greater (less negative) when k = -0.05, giving AV_{[0,1]} \approx -0.049, than when k = -0.1, giving AV_{[0,1]} \approx -0.095. However, the magnitude of the rate of change is greater for k = -0.1. -

    -
  4. -
  5. -

    - When k \lt 0, the long-term behavior of g(t) is that g(t) \to 0 as t \to \infty, since e^{-kt} \to \infty and e^{kt} = 1/e^{-kt} \to 0. -

    -
  6. -
  7. -

    - We need g(2) = e^{2k} = \frac{1}{2}, so k = -\frac{\ln 2}{2} \approx -0.3466. -

    -
  8. -
-

-
-
- - - -

- A can of soda is removed from a refrigerator at time t = 0 (in minutes) - and its temperature, F(t), in degrees Fahrenheit, is computed at regular intervals. - Based on the data, a model is formulated for the object's temperature, given by - - F(t) = 74.4 - 38.8e^{-0.05t} - . -

- -

-

    -
  1. -

    - What is the long-term behavior of the function g(t) = e^{-0.05t}? Why? -

    -
  2. -
  3. -

    - What is the long-term behavior of the function F(t) = 74.4 - 38.8e^{-0.05t}? What is the meaning of this value in the physical context of the problem? -

    -
  4. -
  5. -

    - What is the temperature of the refrigerator? Why? -

    -
  6. -
  7. -

    - Compute the average rate of change of F on the intervals [10,20], [20,30], and [30,40]. Write a careful sentence, with units, to explain the meaning of each, and write an additional sentence to describe any overall trends in how the average rate of change of F is changing. -

    -
  8. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - The long-term behavior of g(t) = e^{-0.05t} is that g(t) \to 0 as t \to \infty, since the exponent becomes increasingly negative. -

    -
  2. -
  3. -

    - The function F(t) \to 74.4 as t \to \infty. This means the soda approaches the room temperature of 74.4^\circ F as it warms up. -

    -
  4. -
  5. -

    - The temperature of the refrigerator is F(0) = 74.4 - 38.8 = 35.6^\circ F. -

    -
  6. -
  7. -

    - AV_{[10,20]} \approx 0.926 degrees per minute, AV_{[20,30]} \approx 0.562 degrees per minute, and AV_{[30,40]} \approx 0.341 degrees per minute. On the interval [10, 20], the soda is warming at an average rate of about 0.926 degrees per minute. The average rate of warming is decreasing over time, meaning the soda is warming more slowly as time goes on. -

    -
  8. -
-

-
-
- -
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+ When a single investment of principal, $P, is invested in an account that returns interest at an annual rate of r (a decimal that corresponds to the percentage rate, such as r = 0.05 corresponding to 5%) that is compounded n times per year, the amount of money in the account after t years is given by A(t) = P(1 + \frac{r}{n})^{nt}. +

+ +

+ Suppose we invest $100 in an account that earns 8% annual interest. We investigate the effects of different rates of compounding. +

+ +

+

    +
  1. +

    + Compute A(1) if interest is compounded quarterly (n = 4). +

    +
  2. +
  3. +

    + Compute A(1) if interest is compounded monthly. +

    +
  4. +
  5. +

    + Compute A(1) if interest is compounded weekly. +

    +
  6. +
  7. +

    + Compute A(1) if interest is compounded daily. +

    +
  8. +
  9. +

    + If we let the number of times that interest is compounded increase without bound, we say that the interest is compounded continuously. continuously compounded interest When interest is compounded continuously, it turns out that the amount of money an account with initial investment $P after t years at an annual interest rate of r is A(t) = Pe^{rt}, where e is the natural base. Compute A(1) in the same context as the preceding questions but where interest is compounded continuously. +

    +
  10. +
  11. +

    + How much of a difference does continuously compounded interest make over interest compounded quarterly in one year's time? How does your answer change over 25 years' time? +

    +
  12. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + With P = 100, r = 0.08, and n = 4: A(1) = 100\left(1 + \frac{0.08}{4}\right)^{4} = 100(1.02)^4 \approx \$108.24. +

    +
  2. +
  3. +

    + With n = 12: A(1) = 100\left(1 + \frac{0.08}{12}\right)^{12} \approx \$108.30. +

    +
  4. +
  5. +

    + With n = 52: A(1) = 100\left(1 + \frac{0.08}{52}\right)^{52} \approx \$108.32. +

    +
  6. +
  7. +

    + With n = 365: A(1) = 100\left(1 + \frac{0.08}{365}\right)^{365} \approx \$108.33. +

    +
  8. +
  9. +

    + With continuous compounding: A(1) = 100e^{0.08} \approx \$108.33. +

    +
  10. +
  11. +

    + In one year, continuously compounded interest yields approximately P \times 0.000855 more than quarterly compounding. Over 25 years, the difference grows to approximately P \times 0.144, with the greater amount coming from continuously compounded interest. +

    +
  12. +
+

+
+
+ + + +

+ In Desmos, define the function g(t) = e^{kt} and accept the slider for k. Set the range of the slider to -2 \le k \le 2, and assume that k \ne 0. Experiment with a wide range of values of k to see the effects of changing k. +

+ +

+

    +
  1. +

    + For what values of k is g always increasing? For what values of k is g always decreasing? +

    +
  2. +
  3. +

    + For which value of k is the average rate of change of g on [0,1] greater: when k = -0.1 or when k = -0.05? +

    +
  4. +
  5. +

    + What is the long-term behavior of g when k \lt 0? Why does this occur? +

    +
  6. +
  7. +

    + Experiment with the slider to find a value of k for which g(2) = \frac{1}{2}. Test your estimate by computing e^{2k}. How accurate is your estimate? +

    +
  8. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + When k \gt 0, g(t) is always increasing. When k \lt 0, g(t) is always decreasing. +

    +
  2. +
  3. +

    + The average rate of change of g(t) on [0,1] is greater (less negative) when k = -0.05, giving AV_{[0,1]} \approx -0.049, than when k = -0.1, giving AV_{[0,1]} \approx -0.095. However, the magnitude of the rate of change is greater for k = -0.1. +

    +
  4. +
  5. +

    + When k \lt 0, the long-term behavior of g(t) is that g(t) \to 0 as t \to \infty, since e^{-kt} \to \infty and e^{kt} = 1/e^{-kt} \to 0. +

    +
  6. +
  7. +

    + We need g(2) = e^{2k} = \frac{1}{2}, so k = -\frac{\ln 2}{2} \approx -0.3466. +

    +
  8. +
+

+
+
+ + + +

+ A can of soda is removed from a refrigerator at time t = 0 (in minutes) + and its temperature, F(t), in degrees Fahrenheit, is computed at regular intervals. + Based on the data, a model is formulated for the object's temperature, given by + + F(t) = 74.4 - 38.8e^{-0.05t} + . +

+ +

+

    +
  1. +

    + What is the long-term behavior of the function g(t) = e^{-0.05t}? Why? +

    +
  2. +
  3. +

    + What is the long-term behavior of the function F(t) = 74.4 - 38.8e^{-0.05t}? What is the meaning of this value in the physical context of the problem? +

    +
  4. +
  5. +

    + What is the temperature of the refrigerator? Why? +

    +
  6. +
  7. +

    + Compute the average rate of change of F on the intervals [10,20], [20,30], and [30,40]. Write a careful sentence, with units, to explain the meaning of each, and write an additional sentence to describe any overall trends in how the average rate of change of F is changing. +

    +
  8. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + The long-term behavior of g(t) = e^{-0.05t} is that g(t) \to 0 as t \to \infty, since the exponent becomes increasingly negative. +

    +
  2. +
  3. +

    + The function F(t) \to 74.4 as t \to \infty. This means the soda approaches the room temperature of 74.4^\circ F as it warms up. +

    +
  4. +
  5. +

    + The temperature of the refrigerator is F(0) = 74.4 - 38.8 = 35.6^\circ F. +

    +
  6. +
  7. +

    + AV_{[10,20]} \approx 0.926 degrees per minute, AV_{[20,30]} \approx 0.562 degrees per minute, and AV_{[30,40]} \approx 0.341 degrees per minute. On the interval [10, 20], the soda is warming at an average rate of about 0.926 degrees per minute. The average rate of warming is decreasing over time, meaning the soda is warming more slowly as time goes on. +

    +
  8. +
+

+
+
+ +
diff --git a/source/exercises/ez-exp-growth.xml b/source/exercises/ez-exp-growth.xml index 27cc4fe2..27b66203 100755 --- a/source/exercises/ez-exp-growth.xml +++ b/source/exercises/ez-exp-growth.xml @@ -1,380 +1,380 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

- Grinnell Glacier in Glacier National Park in Montana covered about 142 acres in 2007 and was found to be shrinking at about 4.4% per year.See Exercise 34 on p. 146 of Connally's Functions Modeling Change. -

- -

-

    -
  1. -

    - Let G(t) denote the area of Grinnell Glacier in acres in year t, - where t is the number of years since 2007. - Find a formula for G(t) and define the function in Desmos. -

    -
  2. -
  3. -

    - How many acres of ice were in the glacier in 1997? - In 2012? - What does the model predict for 2022? -

    -
  4. -
  5. -

    - How many total acres of ice were lost from 2007 to 2012? -

    -
  6. -
  7. -

    - What was the average rate of change of G from 2007 to 2012? - Write a sentence to explain the meaning of this number and include units on your answer. - In addition, - how does this compare to the average rate of change of G from 2012 to 2017? -

    -
  8. -
  9. -

    - How would you you describe the overall behavior of G, and thus what is happening to the Grinnell Glacier? -

    -
  10. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - The area of Grinnell Glacier is G(t) = 142(0.956)^t. -

    - -
  2. -
  3. -

    - In 1997 (t = -10), the model predicts 142(0.956)^{-10} \approx 223 acres. In 2012 (t = 5), the model predicts 142(0.956)^{5} \approx 113 acres. In 2022 (t = 15), the model predicts 142(0.956)^{15} \approx 72 acres. -

    -
  4. -
  5. -

    - According to the model, between 2007 and 2012 the glacier lost about 142 - 113 = 29 acres. -

    -
  6. -
  7. -

    - The average rate of change of G from 2007 to 2012 is approximately -29/5 \approx -5.8 acres per year. The average retreat of the glacier was about 5.8 acres per year from 2007 to 2012. This rate of change is expected to be larger in magnitude than the average rate of change from 2012 to 2017, because the rate of decrease is decreasing with time. -

    -
  8. -
  9. -

    - The Grinnell Glacier is retreating at a decreasing rate. -

    -
  10. -
-

-
-
- - - -

- Consider the exponential function f whose graph is given by Figure. Note that f passes through the two noted points exactly. -

- -
- A plot of the exponential function f. -

A plot of the exponential function f.

-
-
- -

-

    -
  1. -

    - Determine the values of a and b exactly. -

    -
  2. -
  3. -

    - Determine the average rate of change of f on the intervals [2,7] and [7,12]. Which average rate is greater? -

    -
  4. -
  5. -

    - Find the equation of the linear function L that passes through the points (2,20) and (7,5). -

    -
  6. -
  7. -

    - Which average rate of change is greater? The average rate of change of f on [0,2] or the average rate of change of L on [0,2]? -

    -
  8. -
-

- -
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - Taking the ratio of the two given points: b = \left(\frac{1}{4}\right)^{1/5} \approx 0.7579, and substituting back gives a = 10 \cdot 2^{9/5} \approx 34.82. -

    -
  2. -
  3. -

    - AV_{[2,7]} = (5 - 20)/(7 - 2) = -3 and AV_{[7,12]} = (f(12) - 5)/(12 - 7) = -\frac{3}{4}. The greater average rate of change is on the interval [2,7]. -

    -
  4. -
  5. -

    - A linear equation passing through (2, 20) and (7, 5) is L = -3t + 26. -

    -
  6. -
  7. -

    - Given that the rate of decrease of the exponential function f is decreasing and the rate of change of the linear function L is constant, the average rate of change of f will be greater in magnitude than L on the interval [0, 2]. -

    -
  8. -
-

-
-
- - - -

- A cup of hot coffee is brought outside on a cold winter morning in Winnipeg, Manitoba, where the surrounding temperature is 0 degrees Fahrenheit. A temperature probe records the coffee's temperature (in degrees Fahrenheit) every minute and generates the data shown in Table. -

- - - The temperature, <m>F</m>, of the coffee at time <m>t</m>. - - - t - 0 - 2 - 4 - 6 - 8 - 10 - - - F(t) - 175 - 129.64 - 96.04 - 71.15 - 52.71 - 39.05 - - -
- -

-

    -
  1. -

    - Assume that the data in the table represents the overall trend of the behavior of F. Is F linear, exponential, or neither? Why? -

    -
  2. -
  3. -

    - Is it possible to determine an exact formula for F? If yes, do so and justify your formula; if not, explain why not. -

    -
  4. -
  5. -

    - What is the average rate of change of F on [4,6]? Write a sentence that explains the practical meaning of this value in the context of the overall exercise. -

    -
  6. -
  7. -

    - How do you think the data would appear if instead of being in a regular coffee cup, the coffee was contained in an insulated mug? -

    -
  8. -
-

- -
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - The function described by the data appears exponential because there is a consistent ratio of about 0.7408 between temperatures at sequential 2-minute intervals. -

    -
  2. -
  3. -

    - It is necessary to take the square root of the ratio between 2-minute measurements to find the 1-minute growth factor. A possible formula is F(t) = 175(0.7408)^{t/2} \approx 175(0.8607)^t. We can verify: F(0) = 175, F(2) \approx 129.64, F(4) \approx 96.04, and so on. -

    -
  4. -
  5. -

    - AV_{[4,6]} = (71.15 - 96.04)/(6 - 4) \approx -12.45 degrees per minute. The meaning of this rate of change is the average amount of cooling per minute on the interval [4,6]. -

    -
  6. -
  7. -

    - An insulating mug would reduce the rate of cooling, but the temperature would still follow an exponential model. The growth factor would be less than 1 but closer to 1 than 0.8607. -

    -
  8. -
-

-
-
- - - -

- The amount (in milligrams) of a drug in a person's body following one dose is given by an exponential decay function. Let A(t) denote the amount of drug in the body at time t in hours after the dose was taken. In addition, suppose you know that A(3) = 22.7 and A(6) = 15.2. -

- -

-

    -
  1. -

    - Find a formula for A in the form A(t) = ab^t, where you determine the values of a and b exactly. -

    -
  2. -
  3. -

    - What is the size of the initial dose the person was given? -

    -
  4. -
  5. -

    - How much of the drug remains in the person's body 8 hours after the dose was taken? -

    -
  6. -
  7. -

    - Estimate how long it will take until there is less than 1 mg of the drug remaining in the body. -

    -
  8. -
  9. -

    - Compute the average rate of change of A on the intervals [3,5], [5,7], and [7,9]. Write at least one careful sentence to explain the meaning of the values you found, including appropriate units. Then write at least one additional sentence to explain any overall trend(s) you observe in the average rate of change. -

    -
  10. -
  11. -

    - Plot A(t) on an appropriate interval and label important points and features of the graph to highlight graphical interpretations of your answers in (b), (c), (d), and (e). -

    -
  12. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - The value of b is about 0.875, or \sqrt[3]{15.2/22.7}. The value of a is about 33.9 milligrams. -

    -
  2. -
  3. -

    - The initial dose is equal to the coefficient a, about 33.9 milligrams. -

    -
  4. -
  5. -

    - Eight hours after the initial dose, the remaining amount is 33.9(0.875)^8 \approx 11.6 milligrams. -

    -
  6. -
  7. -

    - There will be less than 1 mg in the body after about 26.4 hours. -

    -
  8. -
  9. -

    - AV_{[3,5]} \approx -2.7 mg/hour, AV_{[5,7]} \approx -2.0 mg/hour, and AV_{[7,9]} \approx -1.6 mg/hour. On the interval [3,5], the amount of drug in the patient is decreasing at an average rate of 2.7 mg per hour. The rate of decrease is decreasing over time. -

    -
  10. -
  11. -

    - A graph of the model is shown below. -

    - -
  12. -
-

-
-
- -
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+ Grinnell Glacier in Glacier National Park in Montana covered about 142 acres in 2007 and was found to be shrinking at about 4.4% per year.See Exercise 34 on p. 146 of Connally's Functions Modeling Change. +

+ +

+

    +
  1. +

    + Let G(t) denote the area of Grinnell Glacier in acres in year t, + where t is the number of years since 2007. + Find a formula for G(t) and define the function in Desmos. +

    +
  2. +
  3. +

    + How many acres of ice were in the glacier in 1997? + In 2012? + What does the model predict for 2022? +

    +
  4. +
  5. +

    + How many total acres of ice were lost from 2007 to 2012? +

    +
  6. +
  7. +

    + What was the average rate of change of G from 2007 to 2012? + Write a sentence to explain the meaning of this number and include units on your answer. + In addition, + how does this compare to the average rate of change of G from 2012 to 2017? +

    +
  8. +
  9. +

    + How would you you describe the overall behavior of G, and thus what is happening to the Grinnell Glacier? +

    +
  10. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + The area of Grinnell Glacier is G(t) = 142(0.956)^t. +

    + +
  2. +
  3. +

    + In 1997 (t = -10), the model predicts 142(0.956)^{-10} \approx 223 acres. In 2012 (t = 5), the model predicts 142(0.956)^{5} \approx 113 acres. In 2022 (t = 15), the model predicts 142(0.956)^{15} \approx 72 acres. +

    +
  4. +
  5. +

    + According to the model, between 2007 and 2012 the glacier lost about 142 - 113 = 29 acres. +

    +
  6. +
  7. +

    + The average rate of change of G from 2007 to 2012 is approximately -29/5 \approx -5.8 acres per year. The average retreat of the glacier was about 5.8 acres per year from 2007 to 2012. This rate of change is expected to be larger in magnitude than the average rate of change from 2012 to 2017, because the rate of decrease is decreasing with time. +

    +
  8. +
  9. +

    + The Grinnell Glacier is retreating at a decreasing rate. +

    +
  10. +
+

+
+
+ + + +

+ Consider the exponential function f whose graph is given by Figure. Note that f passes through the two noted points exactly. +

+ +
+ A plot of the exponential function f. +

A plot of the exponential function f.

+
+
+ +

+

    +
  1. +

    + Determine the values of a and b exactly. +

    +
  2. +
  3. +

    + Determine the average rate of change of f on the intervals [2,7] and [7,12]. Which average rate is greater? +

    +
  4. +
  5. +

    + Find the equation of the linear function L that passes through the points (2,20) and (7,5). +

    +
  6. +
  7. +

    + Which average rate of change is greater? The average rate of change of f on [0,2] or the average rate of change of L on [0,2]? +

    +
  8. +
+

+ +
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + Taking the ratio of the two given points: b = \left(\frac{1}{4}\right)^{1/5} \approx 0.7579, and substituting back gives a = 10 \cdot 2^{9/5} \approx 34.82. +

    +
  2. +
  3. +

    + AV_{[2,7]} = (5 - 20)/(7 - 2) = -3 and AV_{[7,12]} = (f(12) - 5)/(12 - 7) = -\frac{3}{4}. The greater average rate of change is on the interval [2,7]. +

    +
  4. +
  5. +

    + A linear equation passing through (2, 20) and (7, 5) is L = -3t + 26. +

    +
  6. +
  7. +

    + Given that the rate of decrease of the exponential function f is decreasing and the rate of change of the linear function L is constant, the average rate of change of f will be greater in magnitude than L on the interval [0, 2]. +

    +
  8. +
+

+
+
+ + + +

+ A cup of hot coffee is brought outside on a cold winter morning in Winnipeg, Manitoba, where the surrounding temperature is 0 degrees Fahrenheit. A temperature probe records the coffee's temperature (in degrees Fahrenheit) every minute and generates the data shown in Table. +

+ + + The temperature, <m>F</m>, of the coffee at time <m>t</m>. + + + t + 0 + 2 + 4 + 6 + 8 + 10 + + + F(t) + 175 + 129.64 + 96.04 + 71.15 + 52.71 + 39.05 + + +
+ +

+

    +
  1. +

    + Assume that the data in the table represents the overall trend of the behavior of F. Is F linear, exponential, or neither? Why? +

    +
  2. +
  3. +

    + Is it possible to determine an exact formula for F? If yes, do so and justify your formula; if not, explain why not. +

    +
  4. +
  5. +

    + What is the average rate of change of F on [4,6]? Write a sentence that explains the practical meaning of this value in the context of the overall exercise. +

    +
  6. +
  7. +

    + How do you think the data would appear if instead of being in a regular coffee cup, the coffee was contained in an insulated mug? +

    +
  8. +
+

+ +
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + The function described by the data appears exponential because there is a consistent ratio of about 0.7408 between temperatures at sequential 2-minute intervals. +

    +
  2. +
  3. +

    + It is necessary to take the square root of the ratio between 2-minute measurements to find the 1-minute growth factor. A possible formula is F(t) = 175(0.7408)^{t/2} \approx 175(0.8607)^t. We can verify: F(0) = 175, F(2) \approx 129.64, F(4) \approx 96.04, and so on. +

    +
  4. +
  5. +

    + AV_{[4,6]} = (71.15 - 96.04)/(6 - 4) \approx -12.45 degrees per minute. The meaning of this rate of change is the average amount of cooling per minute on the interval [4,6]. +

    +
  6. +
  7. +

    + An insulating mug would reduce the rate of cooling, but the temperature would still follow an exponential model. The growth factor would be less than 1 but closer to 1 than 0.8607. +

    +
  8. +
+

+
+
+ + + +

+ The amount (in milligrams) of a drug in a person's body following one dose is given by an exponential decay function. Let A(t) denote the amount of drug in the body at time t in hours after the dose was taken. In addition, suppose you know that A(3) = 22.7 and A(6) = 15.2. +

+ +

+

    +
  1. +

    + Find a formula for A in the form A(t) = ab^t, where you determine the values of a and b exactly. +

    +
  2. +
  3. +

    + What is the size of the initial dose the person was given? +

    +
  4. +
  5. +

    + How much of the drug remains in the person's body 8 hours after the dose was taken? +

    +
  6. +
  7. +

    + Estimate how long it will take until there is less than 1 mg of the drug remaining in the body. +

    +
  8. +
  9. +

    + Compute the average rate of change of A on the intervals [3,5], [5,7], and [7,9]. Write at least one careful sentence to explain the meaning of the values you found, including appropriate units. Then write at least one additional sentence to explain any overall trend(s) you observe in the average rate of change. +

    +
  10. +
  11. +

    + Plot A(t) on an appropriate interval and label important points and features of the graph to highlight graphical interpretations of your answers in (b), (c), (d), and (e). +

    +
  12. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + The value of b is about 0.875, or \sqrt[3]{15.2/22.7}. The value of a is about 33.9 milligrams. +

    +
  2. +
  3. +

    + The initial dose is equal to the coefficient a, about 33.9 milligrams. +

    +
  4. +
  5. +

    + Eight hours after the initial dose, the remaining amount is 33.9(0.875)^8 \approx 11.6 milligrams. +

    +
  6. +
  7. +

    + There will be less than 1 mg in the body after about 26.4 hours. +

    +
  8. +
  9. +

    + AV_{[3,5]} \approx -2.7 mg/hour, AV_{[5,7]} \approx -2.0 mg/hour, and AV_{[7,9]} \approx -1.6 mg/hour. On the interval [3,5], the amount of drug in the patient is decreasing at an average rate of 2.7 mg per hour. The rate of decrease is decreasing over time. +

    +
  10. +
  11. +

    + A graph of the model is shown below. +

    + +
  12. +
+

+
+
+ +
diff --git a/source/exercises/ez-exp-log-properties.xml b/source/exercises/ez-exp-log-properties.xml index f800f6b5..09f7d962 100755 --- a/source/exercises/ez-exp-log-properties.xml +++ b/source/exercises/ez-exp-log-properties.xml @@ -1,259 +1,259 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

- For a population that is growing exponentially according to a model of the form P(t) = Ae^{kt}, the doubling time exponential functiondoubling time is the amount of time that it takes the population to double. For each population described below, assume the function is growing exponentially according to a model P(t) = Ae^{kt}, where t is measured in years. -

- -

-

    -
  1. -

    - Suppose that a certain population initially has 100 members and doubles after 3 years. What are the values of A and k in the model? -

    -
  2. -
  3. -

    - A different population is observed to satisfy P(4) = 250 and P(11) = 500. What is the population's doubling time? When will 2000 members of the population be present? -

    -
  4. -
  5. -

    - Another population is observed to have doubling time t = 21. What is the value of k in the model? -

    -
  6. -
  7. -

    - How is k related to a population's doubling time, regardless of how long the doubling time is? -

    -
  8. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - Since the population initially has 100 members, A = 100. Since the population doubles in 3 years, we have P(3) = 200, so 200 = 100e^{3k}, giving e^{3k} = 2 and thus k = \frac{1}{3}\ln 2 \approx 0.2310. -

    -
  2. -
  3. -

    - Since P(4) = 250 and P(11) = 500, the population doubles every 11 - 4 = 7 years. So the doubling time is 7 years. The population will reach 2000 = 4 \cdot 500 members two doublings after t = 11, i.e., at t = 11 + 14 = 25 years. -

    -
  4. -
  5. -

    - If the doubling time is 21 years, then 2A = Ae^{21k}, so e^{21k} = 2 and k = \frac{1}{21}\ln 2. -

    -
  6. -
  7. -

    - If the doubling time is t_2, then k = \frac{1}{t_2}\ln 2 = \frac{\ln 2}{t_2}. -

    -
  8. -
-

-
-
- - - -

- A new car is purchased for $28000. Exactly 1 year later, the value of the car is $23200. Assume that the car's value in dollars, V, t years after purchase decays exponentially according to a model of form V(t) = Ae^{-kt}. -

- -

-

    -
  1. -

    - Determine the exact values of A and k in the model. -

    -
  2. -
  3. -

    - How many years will it take until the car's value is $10000? -

    -
  4. -
  5. -

    - Suppose that rather than having the car's value decay all the way to $0, the lowest dollar amount its value ever approaches is $500. Explain why a model of the form V(t) = Ae^{-kt} + c is more appropriate. -

    -
  6. -
  7. -

    - Under the original assumptions (V(0) = 28000 and V(1) = 23200) along with the condition in (c) that the car's value will approach $500 in the long-term, determine the exact values of A, k, and c in the model V(t) = Ae^{-kt} + c. Are the values of A and k the same or different from the model explored in (a)? Why? -

    -
  8. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - At purchase (t = 0), V(0) = A = \$28000. Using V(1) = 23200, we get 23200 = 28000e^{-k}, so e^{-k} = \frac{23200}{28000} and k = -\ln\!\left(\frac{23200}{28000}\right) \approx 0.1880. -

    -
  2. -
  3. -

    - We solve 10000 = 28000e^{-kt}, giving e^{-kt} = \frac{10000}{28000}, so - - t = \frac{\ln(10000/28000)}{-k} = \frac{\ln(10000) - \ln(28000)}{\ln(23200) - \ln(28000)} \approx 5.48 \text{ years}. - -

    -
  4. -
  5. -

    - As t \to \infty, the model V(t) = Ae^{-kt} approaches 0, but if the car's value approaches \$500, adding a positive constant c = 500 gives V(t) = Ae^{-kt} + 500, whose long-term behavior approaches \$500 as desired. -

    -
  6. -
  7. -

    - With c = 500, from V(0) = 28000 we get A + 500 = 28000, so A = 27500. From V(1) = 23200 we get 27500e^{-k} + 500 = 23200, so e^{-k} = \frac{22700}{27500} and k = -\ln\!\left(\frac{22700}{27500}\right) \approx 0.1913. The values of A and k are different from part (a) because the model now incorporates the long-term value of \$500. -

    -
  8. -
-

-
-
- - - -

- In Exercise, we explored graphically how the function y = \log_b(x) can be thought of as a vertical stretch of the nautral logarithm, y = \ln(x). In this exercise, we determine the exact value of the vertical stretch that is needed. -

- -

- Recall that \log_b(x) is the power to which we raise b to get x. -

- -

-

    -
  1. -

    - Write the equation y = \log_b(x) as an equivalent equation involving exponents with no logarithms present. -

    -
  2. -
  3. -

    - Take the equation you found in (a) and take the natural logarithm of each side. -

    -
  4. -
  5. -

    - Use rules and properties of logarithms appropriately to solve the equation from (b) for y. Your result here should express y in terms of \ln(x) and \ln(b). -

    -
  6. -
  7. -

    - Recall that y = \log_b(x). Explain why the following equation (often called the Golden Rule for Logarithms) is true: - - \log_b(x) = \frac{\ln(x)}{\ln(b)} - . -

    -
  8. -
  9. -

    - What is the value of k that allows us to express the function y = \log_b(x) as a vertical stretch of the function y = \ln(x)? -

    -
  10. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - The equation y = \log_b(x) is equivalent to b^y = x. -

    -
  2. -
  3. -

    - Taking the natural log of both sides of b^y = x gives y\ln(b) = \ln(x). -

    -
  4. -
  5. -

    - Dividing both sides by \ln(b) gives y = \dfrac{\ln(x)}{\ln(b)}. -

    -
  6. -
  7. -

    - Since y = \log_b(x) and we showed y = \dfrac{\ln(x)}{\ln(b)}, it must be true that \log_b(x) = \dfrac{\ln(x)}{\ln(b)}. -

    -
  8. -
  9. -

    - Since \log_b(x) = \dfrac{\ln(x)}{\ln(b)} = \dfrac{1}{\ln(b)} \cdot \ln(x), the value of k that gives a vertical stretch is k = \dfrac{1}{\ln(b)}. -

    -
  10. -
-

-
-
- -
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+ For a population that is growing exponentially according to a model of the form P(t) = Ae^{kt}, the doubling time exponential functiondoubling time is the amount of time that it takes the population to double. For each population described below, assume the function is growing exponentially according to a model P(t) = Ae^{kt}, where t is measured in years. +

+ +

+

    +
  1. +

    + Suppose that a certain population initially has 100 members and doubles after 3 years. What are the values of A and k in the model? +

    +
  2. +
  3. +

    + A different population is observed to satisfy P(4) = 250 and P(11) = 500. What is the population's doubling time? When will 2000 members of the population be present? +

    +
  4. +
  5. +

    + Another population is observed to have doubling time t = 21. What is the value of k in the model? +

    +
  6. +
  7. +

    + How is k related to a population's doubling time, regardless of how long the doubling time is? +

    +
  8. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + Since the population initially has 100 members, A = 100. Since the population doubles in 3 years, we have P(3) = 200, so 200 = 100e^{3k}, giving e^{3k} = 2 and thus k = \frac{1}{3}\ln 2 \approx 0.2310. +

    +
  2. +
  3. +

    + Since P(4) = 250 and P(11) = 500, the population doubles every 11 - 4 = 7 years. So the doubling time is 7 years. The population will reach 2000 = 4 \cdot 500 members two doublings after t = 11, i.e., at t = 11 + 14 = 25 years. +

    +
  4. +
  5. +

    + If the doubling time is 21 years, then 2A = Ae^{21k}, so e^{21k} = 2 and k = \frac{1}{21}\ln 2. +

    +
  6. +
  7. +

    + If the doubling time is t_2, then k = \frac{1}{t_2}\ln 2 = \frac{\ln 2}{t_2}. +

    +
  8. +
+

+
+
+ + + +

+ A new car is purchased for $28000. Exactly 1 year later, the value of the car is $23200. Assume that the car's value in dollars, V, t years after purchase decays exponentially according to a model of form V(t) = Ae^{-kt}. +

+ +

+

    +
  1. +

    + Determine the exact values of A and k in the model. +

    +
  2. +
  3. +

    + How many years will it take until the car's value is $10000? +

    +
  4. +
  5. +

    + Suppose that rather than having the car's value decay all the way to $0, the lowest dollar amount its value ever approaches is $500. Explain why a model of the form V(t) = Ae^{-kt} + c is more appropriate. +

    +
  6. +
  7. +

    + Under the original assumptions (V(0) = 28000 and V(1) = 23200) along with the condition in (c) that the car's value will approach $500 in the long-term, determine the exact values of A, k, and c in the model V(t) = Ae^{-kt} + c. Are the values of A and k the same or different from the model explored in (a)? Why? +

    +
  8. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + At purchase (t = 0), V(0) = A = \$28000. Using V(1) = 23200, we get 23200 = 28000e^{-k}, so e^{-k} = \frac{23200}{28000} and k = -\ln\!\left(\frac{23200}{28000}\right) \approx 0.1880. +

    +
  2. +
  3. +

    + We solve 10000 = 28000e^{-kt}, giving e^{-kt} = \frac{10000}{28000}, so + + t = \frac{\ln(10000/28000)}{-k} = \frac{\ln(10000) - \ln(28000)}{\ln(23200) - \ln(28000)} \approx 5.48 \text{ years}. + +

    +
  4. +
  5. +

    + As t \to \infty, the model V(t) = Ae^{-kt} approaches 0, but if the car's value approaches \$500, adding a positive constant c = 500 gives V(t) = Ae^{-kt} + 500, whose long-term behavior approaches \$500 as desired. +

    +
  6. +
  7. +

    + With c = 500, from V(0) = 28000 we get A + 500 = 28000, so A = 27500. From V(1) = 23200 we get 27500e^{-k} + 500 = 23200, so e^{-k} = \frac{22700}{27500} and k = -\ln\!\left(\frac{22700}{27500}\right) \approx 0.1913. The values of A and k are different from part (a) because the model now incorporates the long-term value of \$500. +

    +
  8. +
+

+
+
+ + + +

+ In Exercise, we explored graphically how the function y = \log_b(x) can be thought of as a vertical stretch of the nautral logarithm, y = \ln(x). In this exercise, we determine the exact value of the vertical stretch that is needed. +

+ +

+ Recall that \log_b(x) is the power to which we raise b to get x. +

+ +

+

    +
  1. +

    + Write the equation y = \log_b(x) as an equivalent equation involving exponents with no logarithms present. +

    +
  2. +
  3. +

    + Take the equation you found in (a) and take the natural logarithm of each side. +

    +
  4. +
  5. +

    + Use rules and properties of logarithms appropriately to solve the equation from (b) for y. Your result here should express y in terms of \ln(x) and \ln(b). +

    +
  6. +
  7. +

    + Recall that y = \log_b(x). Explain why the following equation (often called the Golden Rule for Logarithms) is true: + + \log_b(x) = \frac{\ln(x)}{\ln(b)} + . +

    +
  8. +
  9. +

    + What is the value of k that allows us to express the function y = \log_b(x) as a vertical stretch of the function y = \ln(x)? +

    +
  10. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + The equation y = \log_b(x) is equivalent to b^y = x. +

    +
  2. +
  3. +

    + Taking the natural log of both sides of b^y = x gives y\ln(b) = \ln(x). +

    +
  4. +
  5. +

    + Dividing both sides by \ln(b) gives y = \dfrac{\ln(x)}{\ln(b)}. +

    +
  6. +
  7. +

    + Since y = \log_b(x) and we showed y = \dfrac{\ln(x)}{\ln(b)}, it must be true that \log_b(x) = \dfrac{\ln(x)}{\ln(b)}. +

    +
  8. +
  9. +

    + Since \log_b(x) = \dfrac{\ln(x)}{\ln(b)} = \dfrac{1}{\ln(b)} \cdot \ln(x), the value of k that gives a vertical stretch is k = \dfrac{1}{\ln(b)}. +

    +
  10. +
+

+
+
+ +
diff --git a/source/exercises/ez-exp-log.xml b/source/exercises/ez-exp-log.xml index 48e1f89d..a129558a 100755 --- a/source/exercises/ez-exp-log.xml +++ b/source/exercises/ez-exp-log.xml @@ -1,290 +1,290 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

- Recall that when a function y = f(x) has an inverse function, the two equations y = f(x) and x = f^{-1}(y) say the same thing from different perspectives: the first equation expresses y in terms of x, while the second expresses x in terms of y. When y = f(x) = e^x, we know its inverse is x = f^{-1}(y) = \ln(y). Through logarithms, we now have the ability to find the inverse of many different exponential functions. In particular, because exponential functions and their transformations are either always increasing or always decreasing, any function of the form y = f(x) = ae^{-kx} + c will have an inverse function. -

- -

- Find the inverse function for each given function by solving algebraically for x as a function of y. In addition, state the domain and range of the given function and the domain and range of the inverse function. -

- -

-

    -
  1. -

    - y = g(x) = e^{-0.25x} -

    -
  2. -
  3. -

    - - y = h(x) = 2e^{x} + 1 - -

    -
  4. -
  5. -

    - - y = r(x) = 21 + 15e^{-0.1x} - -

    -
  6. -
  7. -

    - y = s(x) = 72 - 40e^{-0.05x} -

    -
  8. -
  9. -

    - y = u(x) = -5e^{3x-4} + 8 -

    -
  10. -
  11. -

    - y = w(x) = 3\ln(x) + 4 -

    -
  12. -
  13. -

    - y = z(x) = -0.2 \ln(2x - 5) + 1 -

    -
  14. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - The domain of y = g(x) = e^{-0.25x} is all real numbers and the range is all positive real numbers. Solving for x: x = g^{-1}(y) = \dfrac{\ln y}{-0.25}. The domain of the inverse is all positive real numbers and the range is all real numbers. -

    -
  2. -
  3. -

    - The domain of y = h(x) = 2e^x + 1 is all real numbers and the range is all real numbers greater than 1. The inverse is x = h^{-1}(y) = \ln\!\dfrac{y-1}{2}. The domain of the inverse is all real numbers greater than 1 and the range is all real numbers. -

    -
  4. -
  5. -

    - The domain of y = r(x) = 21 + 15e^{-0.1x} is all real numbers and the range is all real numbers greater than 21. The inverse is x = r^{-1}(y) = \dfrac{\ln\!\left(\frac{y-21}{15}\right)}{-0.1}. The domain of the inverse is all real numbers greater than 21 and the range is all real numbers. -

    -
  6. -
  7. -

    - The domain of y = s(x) = 72 - 40e^{-0.05x} is all real numbers and the range is all real numbers less than 72. The inverse is x = s^{-1}(y) = \dfrac{\ln\!\left(\frac{y-72}{-40}\right)}{-0.05}. The domain of the inverse is all real numbers less than 72 and the range is all real numbers. -

    -
  8. -
  9. -

    - The domain of y = u(x) = -5e^{3x-4} + 8 is all real numbers and the range is all real numbers less than 8. The inverse is x = u^{-1}(y) = \dfrac{\ln\!\left(\frac{y-8}{-5}\right) + 4}{3}. The domain of the inverse is all real numbers less than 8 and the range is all real numbers. -

    -
  10. -
  11. -

    - The domain of y = w(x) = 3\ln(x) + 4 is all positive real numbers and the range is all real numbers. The inverse is x = w^{-1}(y) = e^{(y-4)/3}. The domain of the inverse is all real numbers and the range is all positive real numbers. -

    -
  12. -
  13. -

    - The domain of y = z(x) = -0.2\ln(2x-5) + 1 is all real numbers greater than \frac{5}{2} and the range is all real numbers. The inverse is x = z^{-1}(y) = \dfrac{e^{(y-1)/(-0.2)} + 5}{2}. The domain of the inverse is all real numbers and the range is all real numbers greater than \frac{5}{2}. -

    -
  14. -
-

-
-
- - - -

- We've seen that any exponential function f(t) = b^t (b \gt 0, b \ne 1) can be written in the form f(t) = e^{kt} for some real number k, and this is because f(t) = b^t is a horizontal scaling of the function E(t) = e^{t}. In this exercise, we explore how the natural logarithm can be scaled to achieve a logarithm of any base. -

- -

- Let b \gt 1. Because the function y = f(t) = b^t has an inverse function, it makes sense to define its inverse like we did when b = 10 or b = e. The base-b logarithm, logarithmbase-bdefinition denoted \log_b(y) is defined to be the power to which we raise b to get y. Thus, writing y = f(t) = b^t is the same as writing t = f^{-1}(y) = \log_b(y). -

- -

- In Desmos, the natural logarithm function is given by ln(t), while the base-10 logarithm by log(t). To get a logarithm of a different base, such as a base-2 logarithm, type log_2(t) (the underscore will generate a subscript; then use the right arrow to get out of subscript mode). -

- -

- In a new Desmos worksheet, enter V(t) = k * ln(t) and accept the slider for k. Set the lower and upper bounds for the slider to 0.01 and 15, respectively. -

- -

-

    -
  1. -

    - Define f(t) = \log_2(t) in Desmos. Can you find a value of k for which \log_2(t) = k\ln(t)? If yes, what is the value? If not, why not? -

    -
  2. -
  3. -

    - Repeat (a) for the functions g(t) = \log_3(t), h(t) = \log_5(t), and p(t) = \log_{1.25}(t). What pattern(s) do you observe? -

    -
  4. -
  5. -

    - True or false: for any value of b \gt 1, the function \log_b(t) can be viewed as a vertical scaling of \ln(t). -

    -
  6. -
  7. -

    - Compute the following values: \frac{1}{\ln(2)}, \frac{1}{\ln(3)}, \frac{1}{\ln(5)}, and \frac{1}{\ln(1.25)}. What do you notice about these values compared to those of k you found in (a) and (b)? -

    -
  8. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - In Desmos, entering V(t) = k * ln(t) and f(t) = log_2(t), we can adjust the slider until the graphs coincide. The value k = \frac{1}{\ln 2} \approx 1.443 makes \log_2(t) = k\ln(t). -

    -
  2. -
  3. -

    - Similarly, the values of k for the other functions are: for g(t) = \log_3(t), k = \frac{1}{\ln 3} \approx 0.910; for h(t) = \log_5(t), k = \frac{1}{\ln 5} \approx 0.621; and for p(t) = \log_{1.25}(t), k = \frac{1}{\ln(1.25)} \approx 4.481. In each case, k = \frac{1}{\ln b}. -

    -
  4. -
  5. -

    - True. For any b \gt 1, the function \log_b(t) is a vertical scaling of \ln(t) by a factor of \frac{1}{\ln b}. -

    -
  6. -
  7. -

    - We compute \frac{1}{\ln 2} \approx 1.443, \frac{1}{\ln 3} \approx 0.910, \frac{1}{\ln 5} \approx 0.621, and \frac{1}{\ln(1.25)} \approx 4.481. These are exactly the values of k found in (a) and (b), confirming that \log_b(t) = \frac{1}{\ln b} \cdot \ln(t). -

    -
  8. -
-

-
-
- - - -

- A can of soda is removed from a refrigerator at time t = 0 (in minutes) - and its temperature, F(t), in degrees Fahrenheit, is computed at regular intervals. - Based on the data, a model is formulated for the object's temperature, given by - - F(t) = 74.4 - 38.8e^{-0.05t} - . -

- -

-

    -
  1. -

    - Determine the exact time when the soda's temperature is 50^\circ. -

    -
  2. -
  3. -

    - Is there ever a time when the soda's temperature is 36^\circ? Why or why not? -

    -
  4. -
  5. -

    - For the model, its domain is the set of all positive real numbers, t \gt 0. What is its range? -

    -
  6. -
  7. -

    - Find a formula for the inverse of the function y = F(t). What is the meaning of this function? -

    -
  8. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - We solve 74.4 - 38.8e^{-0.05t} = 50. Subtracting 74.4 and dividing by -38.8 gives e^{-0.05t} = \frac{50 - 74.4}{-38.8} = \frac{24.4}{38.8}. Taking the natural log, -0.05t = \ln\!\left(\frac{24.4}{38.8}\right), so - - t = \frac{\ln\!\left(\frac{24.4}{38.8}\right)}{-0.05} \approx 9.28 \text{ minutes}. - -

    -
  2. -
  3. -

    - At t = 0, F(0) = 74.4 - 38.8 = 35.6^\circ. Since F is an increasing function (the exponential term decreases as t increases, so F increases from its initial value), and F(0) = 35.6 \lt 36, yes, there is a time when the soda's temperature reaches 36^\circ. -

    -
  4. -
  5. -

    - Since e^{-0.05t} \to 0 as t \to \infty, the temperature approaches 74.4^\circ but never reaches it. At t = 0, F(0) = 35.6^\circ. Thus the range of F on the domain t \gt 0 is (35.6, 74.4). -

    -
  6. -
  7. -

    - Solving y = 74.4 - 38.8e^{-0.05t} for t: we get e^{-0.05t} = \frac{y - 74.4}{-38.8}, so - - t = F^{-1}(y) = \frac{\ln\!\left(\frac{y - 74.4}{-38.8}\right)}{-0.05}. - - This inverse function tells us the time (in minutes) at which the soda reaches a given temperature y (in degrees Fahrenheit). -

    -
  8. -
-

-
-
-
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+ Recall that when a function y = f(x) has an inverse function, the two equations y = f(x) and x = f^{-1}(y) say the same thing from different perspectives: the first equation expresses y in terms of x, while the second expresses x in terms of y. When y = f(x) = e^x, we know its inverse is x = f^{-1}(y) = \ln(y). Through logarithms, we now have the ability to find the inverse of many different exponential functions. In particular, because exponential functions and their transformations are either always increasing or always decreasing, any function of the form y = f(x) = ae^{-kx} + c will have an inverse function. +

+ +

+ Find the inverse function for each given function by solving algebraically for x as a function of y. In addition, state the domain and range of the given function and the domain and range of the inverse function. +

+ +

+

    +
  1. +

    + y = g(x) = e^{-0.25x} +

    +
  2. +
  3. +

    + + y = h(x) = 2e^{x} + 1 + +

    +
  4. +
  5. +

    + + y = r(x) = 21 + 15e^{-0.1x} + +

    +
  6. +
  7. +

    + y = s(x) = 72 - 40e^{-0.05x} +

    +
  8. +
  9. +

    + y = u(x) = -5e^{3x-4} + 8 +

    +
  10. +
  11. +

    + y = w(x) = 3\ln(x) + 4 +

    +
  12. +
  13. +

    + y = z(x) = -0.2 \ln(2x - 5) + 1 +

    +
  14. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + The domain of y = g(x) = e^{-0.25x} is all real numbers and the range is all positive real numbers. Solving for x: x = g^{-1}(y) = \dfrac{\ln y}{-0.25}. The domain of the inverse is all positive real numbers and the range is all real numbers. +

    +
  2. +
  3. +

    + The domain of y = h(x) = 2e^x + 1 is all real numbers and the range is all real numbers greater than 1. The inverse is x = h^{-1}(y) = \ln\!\dfrac{y-1}{2}. The domain of the inverse is all real numbers greater than 1 and the range is all real numbers. +

    +
  4. +
  5. +

    + The domain of y = r(x) = 21 + 15e^{-0.1x} is all real numbers and the range is all real numbers greater than 21. The inverse is x = r^{-1}(y) = \dfrac{\ln\!\left(\frac{y-21}{15}\right)}{-0.1}. The domain of the inverse is all real numbers greater than 21 and the range is all real numbers. +

    +
  6. +
  7. +

    + The domain of y = s(x) = 72 - 40e^{-0.05x} is all real numbers and the range is all real numbers less than 72. The inverse is x = s^{-1}(y) = \dfrac{\ln\!\left(\frac{y-72}{-40}\right)}{-0.05}. The domain of the inverse is all real numbers less than 72 and the range is all real numbers. +

    +
  8. +
  9. +

    + The domain of y = u(x) = -5e^{3x-4} + 8 is all real numbers and the range is all real numbers less than 8. The inverse is x = u^{-1}(y) = \dfrac{\ln\!\left(\frac{y-8}{-5}\right) + 4}{3}. The domain of the inverse is all real numbers less than 8 and the range is all real numbers. +

    +
  10. +
  11. +

    + The domain of y = w(x) = 3\ln(x) + 4 is all positive real numbers and the range is all real numbers. The inverse is x = w^{-1}(y) = e^{(y-4)/3}. The domain of the inverse is all real numbers and the range is all positive real numbers. +

    +
  12. +
  13. +

    + The domain of y = z(x) = -0.2\ln(2x-5) + 1 is all real numbers greater than \frac{5}{2} and the range is all real numbers. The inverse is x = z^{-1}(y) = \dfrac{e^{(y-1)/(-0.2)} + 5}{2}. The domain of the inverse is all real numbers and the range is all real numbers greater than \frac{5}{2}. +

    +
  14. +
+

+
+
+ + + +

+ We've seen that any exponential function f(t) = b^t (b \gt 0, b \ne 1) can be written in the form f(t) = e^{kt} for some real number k, and this is because f(t) = b^t is a horizontal scaling of the function E(t) = e^{t}. In this exercise, we explore how the natural logarithm can be scaled to achieve a logarithm of any base. +

+ +

+ Let b \gt 1. Because the function y = f(t) = b^t has an inverse function, it makes sense to define its inverse like we did when b = 10 or b = e. The base-b logarithm, logarithmbase-bdefinition denoted \log_b(y) is defined to be the power to which we raise b to get y. Thus, writing y = f(t) = b^t is the same as writing t = f^{-1}(y) = \log_b(y). +

+ +

+ In Desmos, the natural logarithm function is given by ln(t), while the base-10 logarithm by log(t). To get a logarithm of a different base, such as a base-2 logarithm, type log_2(t) (the underscore will generate a subscript; then use the right arrow to get out of subscript mode). +

+ +

+ In a new Desmos worksheet, enter V(t) = k * ln(t) and accept the slider for k. Set the lower and upper bounds for the slider to 0.01 and 15, respectively. +

+ +

+

    +
  1. +

    + Define f(t) = \log_2(t) in Desmos. Can you find a value of k for which \log_2(t) = k\ln(t)? If yes, what is the value? If not, why not? +

    +
  2. +
  3. +

    + Repeat (a) for the functions g(t) = \log_3(t), h(t) = \log_5(t), and p(t) = \log_{1.25}(t). What pattern(s) do you observe? +

    +
  4. +
  5. +

    + True or false: for any value of b \gt 1, the function \log_b(t) can be viewed as a vertical scaling of \ln(t). +

    +
  6. +
  7. +

    + Compute the following values: \frac{1}{\ln(2)}, \frac{1}{\ln(3)}, \frac{1}{\ln(5)}, and \frac{1}{\ln(1.25)}. What do you notice about these values compared to those of k you found in (a) and (b)? +

    +
  8. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + In Desmos, entering V(t) = k * ln(t) and f(t) = log_2(t), we can adjust the slider until the graphs coincide. The value k = \frac{1}{\ln 2} \approx 1.443 makes \log_2(t) = k\ln(t). +

    +
  2. +
  3. +

    + Similarly, the values of k for the other functions are: for g(t) = \log_3(t), k = \frac{1}{\ln 3} \approx 0.910; for h(t) = \log_5(t), k = \frac{1}{\ln 5} \approx 0.621; and for p(t) = \log_{1.25}(t), k = \frac{1}{\ln(1.25)} \approx 4.481. In each case, k = \frac{1}{\ln b}. +

    +
  4. +
  5. +

    + True. For any b \gt 1, the function \log_b(t) is a vertical scaling of \ln(t) by a factor of \frac{1}{\ln b}. +

    +
  6. +
  7. +

    + We compute \frac{1}{\ln 2} \approx 1.443, \frac{1}{\ln 3} \approx 0.910, \frac{1}{\ln 5} \approx 0.621, and \frac{1}{\ln(1.25)} \approx 4.481. These are exactly the values of k found in (a) and (b), confirming that \log_b(t) = \frac{1}{\ln b} \cdot \ln(t). +

    +
  8. +
+

+
+
+ + + +

+ A can of soda is removed from a refrigerator at time t = 0 (in minutes) + and its temperature, F(t), in degrees Fahrenheit, is computed at regular intervals. + Based on the data, a model is formulated for the object's temperature, given by + + F(t) = 74.4 - 38.8e^{-0.05t} + . +

+ +

+

    +
  1. +

    + Determine the exact time when the soda's temperature is 50^\circ. +

    +
  2. +
  3. +

    + Is there ever a time when the soda's temperature is 36^\circ? Why or why not? +

    +
  4. +
  5. +

    + For the model, its domain is the set of all positive real numbers, t \gt 0. What is its range? +

    +
  6. +
  7. +

    + Find a formula for the inverse of the function y = F(t). What is the meaning of this function? +

    +
  8. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + We solve 74.4 - 38.8e^{-0.05t} = 50. Subtracting 74.4 and dividing by -38.8 gives e^{-0.05t} = \frac{50 - 74.4}{-38.8} = \frac{24.4}{38.8}. Taking the natural log, -0.05t = \ln\!\left(\frac{24.4}{38.8}\right), so + + t = \frac{\ln\!\left(\frac{24.4}{38.8}\right)}{-0.05} \approx 9.28 \text{ minutes}. + +

    +
  2. +
  3. +

    + At t = 0, F(0) = 74.4 - 38.8 = 35.6^\circ. Since F is an increasing function (the exponential term decreases as t increases, so F increases from its initial value), and F(0) = 35.6 \lt 36, yes, there is a time when the soda's temperature reaches 36^\circ. +

    +
  4. +
  5. +

    + Since e^{-0.05t} \to 0 as t \to \infty, the temperature approaches 74.4^\circ but never reaches it. At t = 0, F(0) = 35.6^\circ. Thus the range of F on the domain t \gt 0 is (35.6, 74.4). +

    +
  6. +
  7. +

    + Solving y = 74.4 - 38.8e^{-0.05t} for t: we get e^{-0.05t} = \frac{y - 74.4}{-38.8}, so + + t = F^{-1}(y) = \frac{\ln\!\left(\frac{y - 74.4}{-38.8}\right)}{-0.05}. + + This inverse function tells us the time (in minutes) at which the soda reaches a given temperature y (in degrees Fahrenheit). +

    +
  8. +
+

+
+
+
diff --git a/source/exercises/ez-exp-modeling.xml b/source/exercises/ez-exp-modeling.xml index f0daf721..d791afc3 100755 --- a/source/exercises/ez-exp-modeling.xml +++ b/source/exercises/ez-exp-modeling.xml @@ -1,172 +1,172 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - -

- A can of soda has been in a refrigerator for several days; the refrigerator has temperature 41^\circ Fahrenheit. Upon removal, the soda is placed on a kitchen table in a room with surrounding temperature 72^\circ. Let F(t) represent the soda's temperature in degrees Fahrenheit at time t in minutes, where t = 0 corresponds to the time the can is removed from the refrigerator. We know from Newton's Law of Cooling that F has form F(t) = ab^t + c for some constants a, b, and c, where 0 \lt b \lt 1. -

- -

-

    -
  1. -

    - What is the numerical value of the soda's initial temperature? What is the value of F(0) in terms of a, b, and c? What do these two observations tell us? -

    -
  2. -
  3. -

    - What is the numerical value of the soda's long-term temperature? What is the long-term value of F(t) in terms of a, b, and c? What do these two observations tell us? -

    -
  4. -
  5. -

    - Using your work in (a) and (b), determine the numerical values of a and c. -

    -
  6. -
  7. -

    - Suppose it can be determined that b = 0.931. What is the soda's temperature after 10 minutes? -

    -
  8. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - The soda's initial temperature is 41^\circ Fahrenheit. Since F(0) = ab^0 + c = a + c, we have a + c = 41. -

    -
  2. -
  3. -

    - The soda's long-term temperature is the room temperature, 72^\circ. Since 0 \lt b \lt 1, the term ab^t \to 0 as t \to \infty, so F(t) \to c. Thus c = 72. -

    -
  4. -
  5. -

    - Using a + c = 41 and c = 72, we find a = 41 - 72 = -31. -

    -
  6. -
  7. -

    - With b = 0.931, the soda's temperature after 10 minutes is F(10) = -31(0.931)^{10} + 72 \approx 56.8^\circ Fahrenheit. -

    -
  8. -
-

-
-
- - - -

- Consider the graphs of the following four functions p, q, r, and s. Each is a shifted exponential function of the form ab^t + c. -

- - -

ADD ALT TEXT TO THIS IMAGE

-

ADD ALT TEXT TO THIS IMAGE

-
- -

ADD ALT TEXT TO THIS IMAGE

-

ADD ALT TEXT TO THIS IMAGE

-
- -

- For each function p, q, r, and s, determine -

    -
  • -

    - whether a \gt 0 or a \lt 0; -

    -
  • -
  • -

    - whether 0 \lt b \lt 1 or b \gt 1; -

    -
  • -
  • -

    - whether c \gt 0, c = 0, or c \lt 0; and -

    -
  • -
  • -

    - the range of the function in terms of c. -

    -
  • -
-

-
- -

- Exercise Answer -

-
- -

- Each function has the form ab^t + c, where b \gt 0. For the function p(t) (upper left graph), a \gt 0, 0 \lt b \lt 1, and c \lt 0. For the function q(t) (upper right graph), a \lt 0, 0 \lt b \lt 1, and c appears to be close to zero. For the function r(t) (lower left graph), a \gt 0, b \gt 1, and c \gt 0. Finally, for s(t) (lower right graph), a \lt 0, b \gt 1, and c \gt 0. -

-
-
- - - -

- A cup of coffee has its temperature, C(t), measured in degrees Celsius. When poured outdoors on a cold morning, its temperature is C(0) = 95. Ten minutes later, C(10) = 80. If the surrounding temperature outside is 0^\circ Celsius, find a formula for a function C(t) that models the coffee's temperature at time t. -

- -

- In addition, recall that we can convert between Celsius and Fahrenheit according to the equations F = \frac{9}{5}C + 32 and C = \frac{5}{9}(F-32). Use this information to also find a formula for F(t), the coffee's Fahrenheit temperature at time t. What is similar and what is different regarding the functions C(t) and F(t)? -

-
- -

- Exercise Answer -

-
- -

- Assuming a cooling law of the form C(t) = ab^t + c, we use C(0) = 95, C(10) = 80, and end behavior C(t) \to 0 as t \to \infty (so c = 0). From C(0) = a = 95 and C(10) = 95b^{10} = 80, we find b = (80/95)^{1/10} \approx 0.983. So C(t) = 95(0.983)^t. -

-

- Converting to Fahrenheit: F(t) = \frac{9}{5}C(t) + 32 = \frac{9}{5}(95(0.983)^t) + 32 = 171(0.983)^t + 32. The cooling law has the same basic ab^t + c form in either temperature scale. The coefficient c happens to be zero in the Celsius scale and 32 in the Fahrenheit scale, reflecting the different zero points of the two scales. -

-
-
- -
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +

+ A can of soda has been in a refrigerator for several days; the refrigerator has temperature 41^\circ Fahrenheit. Upon removal, the soda is placed on a kitchen table in a room with surrounding temperature 72^\circ. Let F(t) represent the soda's temperature in degrees Fahrenheit at time t in minutes, where t = 0 corresponds to the time the can is removed from the refrigerator. We know from Newton's Law of Cooling that F has form F(t) = ab^t + c for some constants a, b, and c, where 0 \lt b \lt 1. +

+ +

+

    +
  1. +

    + What is the numerical value of the soda's initial temperature? What is the value of F(0) in terms of a, b, and c? What do these two observations tell us? +

    +
  2. +
  3. +

    + What is the numerical value of the soda's long-term temperature? What is the long-term value of F(t) in terms of a, b, and c? What do these two observations tell us? +

    +
  4. +
  5. +

    + Using your work in (a) and (b), determine the numerical values of a and c. +

    +
  6. +
  7. +

    + Suppose it can be determined that b = 0.931. What is the soda's temperature after 10 minutes? +

    +
  8. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + The soda's initial temperature is 41^\circ Fahrenheit. Since F(0) = ab^0 + c = a + c, we have a + c = 41. +

    +
  2. +
  3. +

    + The soda's long-term temperature is the room temperature, 72^\circ. Since 0 \lt b \lt 1, the term ab^t \to 0 as t \to \infty, so F(t) \to c. Thus c = 72. +

    +
  4. +
  5. +

    + Using a + c = 41 and c = 72, we find a = 41 - 72 = -31. +

    +
  6. +
  7. +

    + With b = 0.931, the soda's temperature after 10 minutes is F(10) = -31(0.931)^{10} + 72 \approx 56.8^\circ Fahrenheit. +

    +
  8. +
+

+
+
+ + + +

+ Consider the graphs of the following four functions p, q, r, and s. Each is a shifted exponential function of the form ab^t + c. +

+ + +

ADD ALT TEXT TO THIS IMAGE

+

ADD ALT TEXT TO THIS IMAGE

+
+ +

ADD ALT TEXT TO THIS IMAGE

+

ADD ALT TEXT TO THIS IMAGE

+
+ +

+ For each function p, q, r, and s, determine +

    +
  • +

    + whether a \gt 0 or a \lt 0; +

    +
  • +
  • +

    + whether 0 \lt b \lt 1 or b \gt 1; +

    +
  • +
  • +

    + whether c \gt 0, c = 0, or c \lt 0; and +

    +
  • +
  • +

    + the range of the function in terms of c. +

    +
  • +
+

+
+ +

+ Exercise Answer +

+
+ +

+ Each function has the form ab^t + c, where b \gt 0. For the function p(t) (upper left graph), a \gt 0, 0 \lt b \lt 1, and c \lt 0. For the function q(t) (upper right graph), a \lt 0, 0 \lt b \lt 1, and c appears to be close to zero. For the function r(t) (lower left graph), a \gt 0, b \gt 1, and c \gt 0. Finally, for s(t) (lower right graph), a \lt 0, b \gt 1, and c \gt 0. +

+
+
+ + + +

+ A cup of coffee has its temperature, C(t), measured in degrees Celsius. When poured outdoors on a cold morning, its temperature is C(0) = 95. Ten minutes later, C(10) = 80. If the surrounding temperature outside is 0^\circ Celsius, find a formula for a function C(t) that models the coffee's temperature at time t. +

+ +

+ In addition, recall that we can convert between Celsius and Fahrenheit according to the equations F = \frac{9}{5}C + 32 and C = \frac{5}{9}(F-32). Use this information to also find a formula for F(t), the coffee's Fahrenheit temperature at time t. What is similar and what is different regarding the functions C(t) and F(t)? +

+
+ +

+ Exercise Answer +

+
+ +

+ Assuming a cooling law of the form C(t) = ab^t + c, we use C(0) = 95, C(10) = 80, and end behavior C(t) \to 0 as t \to \infty (so c = 0). From C(0) = a = 95 and C(10) = 95b^{10} = 80, we find b = (80/95)^{1/10} \approx 0.983. So C(t) = 95(0.983)^t. +

+

+ Converting to Fahrenheit: F(t) = \frac{9}{5}C(t) + 32 = \frac{9}{5}(95(0.983)^t) + 32 = 171(0.983)^t + 32. The cooling law has the same basic ab^t + c form in either temperature scale. The coefficient c happens to be zero in the Celsius scale and 32 in the Fahrenheit scale, reflecting the different zero points of the two scales. +

+
+
+ +
diff --git a/source/exercises/ez-exp-temp-pop.xml b/source/exercises/ez-exp-temp-pop.xml index 79fd07d9..dbcea63e 100755 --- a/source/exercises/ez-exp-temp-pop.xml +++ b/source/exercises/ez-exp-temp-pop.xml @@ -1,256 +1,256 @@ - - - - - - - - - - - - - - - - - - - - - - - - -

In Exercise below, use the following structure/formula for N(t): N(t)=\frac{L}{1+Ab^{-kt}}. In particular, note that when the instructions say find A, this use of A is not in reference to carrying capacity.

- - - - - - - - -

- A glass filled with ice and water is set on a table in a climate-controlled room with constant temperature of 71^\circ Fahrenheit. A temperature probe is placed in the glass, and we find that the following temperatures are recorded (at time t in minutes). -

- - - - - t - 0 - 20 - - - F(t) - 34.2 - 41.7 - - - - -

-

    -
  1. -

    - Make a rough sketch of how you think the temperature graph should appear. Is the temperature function always increasing? always decreasing? always concave up? always concave down? what's its long-range behavior? -

    -
  2. -
  3. -

    - By describing F as a transformation of e^t, explain why a function of form F(t) = c - ae^{-kt}, where a, c, and k are positive constants is an appropriate model for how we expect the temperature function to behave. -

    -
  4. -
  5. -

    - Use the given information to determine the exact values of a, c, and k in the model F(t) = c - ae^{-kt}. -

    -
  6. -
  7. -

    - Determine the exact time when the water's temperature is 60^\circ. -

    -
  8. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - The temperature is always increasing (the ice water warms toward room temperature), concave down, and approaches 71^\circF asymptotically in the long run. -

    -
  2. -
  3. -

    - The function F(t) = c - ae^{-kt} is a transformation of e^t that is reflected over the horizontal axis, vertically stretched by a, horizontally stretched by k, and shifted vertically by c. As t \to \infty, e^{-kt} \to 0 so F(t) \to c, giving the correct long-term behavior. The function increases at a decreasing rate (concave down) because -ae^{-kt} is increasing toward 0, and the rate of increase slows as the exponential term shrinks. -

    -
  4. -
  5. -

    - Since F(t) \to c = 71 as t \to \infty, we have c = 71. From F(0) = 71 - a = 34.2, we get a = 36.8. Using F(20) = 41.7: 71 - 36.8e^{-20k} = 41.7, so 36.8e^{-20k} = 29.3 and k = -\dfrac{1}{20}\ln\!\left(\dfrac{29.3}{36.8}\right) \approx 0.01140. -

    -
  6. -
  7. -

    - Setting F(t) = 60: 71 - 36.8e^{-kt} = 60, so 36.8e^{-kt} = 11 and t = -\dfrac{1}{k}\ln\!\left(\dfrac{11}{36.8}\right) \approx 106 minutes. -

    -
  8. -
-

-
-
- - - -

- A popular cruise ship sets sail in the Gulf of Mexico with 5000 passengers and crew on board. Unfortunately, a five family members who board the ship are carrying a highly contagious virus. After interacting with many other passengers in the first few hours of the cruise, all five of them get very sick. -

- -

- Let S(t) be the number of people who have acquired the virus t days after the ship has left port. It turns out that a logistic function is a good model for S, and thus we assume that - - S(t) = \frac{A}{1 + Me^{-kt}} - - for some positive constants A, M, and k. Suppose that after 1 day, 20 people have gotten the virus. -

- -

-

    -
  1. -

    - Recall we know that S(0) = 5 and S(1) = 20. In addition, assume that 5000 is the number of people who will eventually get sick. Use this information determine the exact values of A, M, and k in the logistic model. -

    -
  2. -
  3. -

    - How many days will it take for 4000 of the people on the cruise ship to have acquired the virus? -

    -
  4. -
  5. -

    - Compute the average rate of change of S on the intervals [1,2], [3,4], and [5,7]. What is the meaning of each of these values (with units) in the context of the question, and what trend(s) do you observe in these average rates of change? -

    -
  6. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - Since all 5000 passengers will eventually get sick, A = 5000. From S(0) = \frac{5000}{1+M} = 5, we get M = 999. Using S(1) = 20: \frac{5000}{1 + 999e^{-k}} = 20, so 999e^{-k} = 249 and k = \ln\!\left(\frac{999}{249}\right) \approx 1.389. -

    -
  2. -
  3. -

    - Setting S(t) = 4000: \frac{5000}{1 + 999e^{-1.389t}} = 4000, so 999e^{-1.389t} = 0.25 and t = -\dfrac{\ln(0.25/999)}{1.389} \approx 5.97 days. -

    -
  4. -
  5. -

    - The average rates of change are approximately AV_{[1,2]} \approx 59.3, AV_{[3,4]} \approx 726.1, and AV_{[5,7]} \approx 1084.3 people per day. These represent the average number of people per day acquiring the virus on each time interval. The rate of spread is increasing through the first seven days, but must eventually decrease since the total number who can be infected is bounded by 5000. -

    -
  6. -
-

-
-
- - - -

- A closed tank with an inflow and outflow contains a 100 liters of saltwater solution. Let the amount of salt in the tank at time t (in minutes) be given by the function A(t), whose output is measured in grams. At time t = 0 there is an initial amount of salt present in the tank, and the inflow line also carries a saltwater mixture to the tank at a fixed rate; the outflow occurs at the same rate and carries a perfectly mixed solution out of the tank. Because of these conditions, the volume of solution in the tank stays fixed over time, but the amount of salt possibly changes. -

- -

- It turns out that the problem of determining the amount of salt in the tank at time t is similar to the problem of determining the temperature of a warming or cooling object, and that the function A(t) has form - - A(t) = ae^{-kt} + c - - for constants a, c, and k. Suppose that for a particular set of conditions, we know that - - A(t) = -500e^{-0.25t} + 750 - . - Again, A(t) measures the amount of salt in the tank after t minutes. -

- -

-

    -
  1. -

    - How much salt is in the tank initially? -

    -
  2. -
  3. -

    - In the long run, how much salt do we expect to eventually be in the tank? -

    -
  4. -
  5. -

    - At what exact time are there exactly 500 grams of salt present in the tank? -

    -
  6. -
  7. -

    - Can you determine the concentration of the solution that is being delivered by the inflow to the tank? If yes, explain why and determine this value. If not, explain why that information cannot be found without additional data. -

    -
  8. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - At t = 0: A(0) = -500e^{0} + 750 = -500 + 750 = 250 grams of salt. -

    -
  2. -
  3. -

    - As t \to \infty, e^{-0.25t} \to 0, so A(t) \to 750 grams. -

    -
  4. -
  5. -

    - Setting A(t) = 500: -500e^{-0.25t} + 750 = 500, so e^{-0.25t} = \frac{1}{2} and t = -\dfrac{\ln(1/2)}{0.25} = 4\ln 2 \approx 2.773 minutes. -

    -
  6. -
  7. -

    - Yes. In the long run, the tank contains 750 grams of salt in 100 liters of solution, giving a concentration of \frac{750}{100} = 7.5 grams per liter. Since the salt concentration in the tank approaches that of the inflow over time, the inflow concentration is 7.5 grams per liter. -

    -
  8. -
-

-
-
-
+ + + + + + + + + + + + + + + + + + + + + + + + +

In Exercise below, use the following structure/formula for N(t): N(t)=\frac{L}{1+Ab^{-kt}}. In particular, note that when the instructions say find A, this use of A is not in reference to carrying capacity.

+ + + + + + + + +

+ A glass filled with ice and water is set on a table in a climate-controlled room with constant temperature of 71^\circ Fahrenheit. A temperature probe is placed in the glass, and we find that the following temperatures are recorded (at time t in minutes). +

+ + + + + t + 0 + 20 + + + F(t) + 34.2 + 41.7 + + + + +

+

    +
  1. +

    + Make a rough sketch of how you think the temperature graph should appear. Is the temperature function always increasing? always decreasing? always concave up? always concave down? what's its long-range behavior? +

    +
  2. +
  3. +

    + By describing F as a transformation of e^t, explain why a function of form F(t) = c - ae^{-kt}, where a, c, and k are positive constants is an appropriate model for how we expect the temperature function to behave. +

    +
  4. +
  5. +

    + Use the given information to determine the exact values of a, c, and k in the model F(t) = c - ae^{-kt}. +

    +
  6. +
  7. +

    + Determine the exact time when the water's temperature is 60^\circ. +

    +
  8. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + The temperature is always increasing (the ice water warms toward room temperature), concave down, and approaches 71^\circF asymptotically in the long run. +

    +
  2. +
  3. +

    + The function F(t) = c - ae^{-kt} is a transformation of e^t that is reflected over the horizontal axis, vertically stretched by a, horizontally stretched by k, and shifted vertically by c. As t \to \infty, e^{-kt} \to 0 so F(t) \to c, giving the correct long-term behavior. The function increases at a decreasing rate (concave down) because -ae^{-kt} is increasing toward 0, and the rate of increase slows as the exponential term shrinks. +

    +
  4. +
  5. +

    + Since F(t) \to c = 71 as t \to \infty, we have c = 71. From F(0) = 71 - a = 34.2, we get a = 36.8. Using F(20) = 41.7: 71 - 36.8e^{-20k} = 41.7, so 36.8e^{-20k} = 29.3 and k = -\dfrac{1}{20}\ln\!\left(\dfrac{29.3}{36.8}\right) \approx 0.01140. +

    +
  6. +
  7. +

    + Setting F(t) = 60: 71 - 36.8e^{-kt} = 60, so 36.8e^{-kt} = 11 and t = -\dfrac{1}{k}\ln\!\left(\dfrac{11}{36.8}\right) \approx 106 minutes. +

    +
  8. +
+

+
+
+ + + +

+ A popular cruise ship sets sail in the Gulf of Mexico with 5000 passengers and crew on board. Unfortunately, a five family members who board the ship are carrying a highly contagious virus. After interacting with many other passengers in the first few hours of the cruise, all five of them get very sick. +

+ +

+ Let S(t) be the number of people who have acquired the virus t days after the ship has left port. It turns out that a logistic function is a good model for S, and thus we assume that + + S(t) = \frac{A}{1 + Me^{-kt}} + + for some positive constants A, M, and k. Suppose that after 1 day, 20 people have gotten the virus. +

+ +

+

    +
  1. +

    + Recall we know that S(0) = 5 and S(1) = 20. In addition, assume that 5000 is the number of people who will eventually get sick. Use this information determine the exact values of A, M, and k in the logistic model. +

    +
  2. +
  3. +

    + How many days will it take for 4000 of the people on the cruise ship to have acquired the virus? +

    +
  4. +
  5. +

    + Compute the average rate of change of S on the intervals [1,2], [3,4], and [5,7]. What is the meaning of each of these values (with units) in the context of the question, and what trend(s) do you observe in these average rates of change? +

    +
  6. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + Since all 5000 passengers will eventually get sick, A = 5000. From S(0) = \frac{5000}{1+M} = 5, we get M = 999. Using S(1) = 20: \frac{5000}{1 + 999e^{-k}} = 20, so 999e^{-k} = 249 and k = \ln\!\left(\frac{999}{249}\right) \approx 1.389. +

    +
  2. +
  3. +

    + Setting S(t) = 4000: \frac{5000}{1 + 999e^{-1.389t}} = 4000, so 999e^{-1.389t} = 0.25 and t = -\dfrac{\ln(0.25/999)}{1.389} \approx 5.97 days. +

    +
  4. +
  5. +

    + The average rates of change are approximately AV_{[1,2]} \approx 59.3, AV_{[3,4]} \approx 726.1, and AV_{[5,7]} \approx 1084.3 people per day. These represent the average number of people per day acquiring the virus on each time interval. The rate of spread is increasing through the first seven days, but must eventually decrease since the total number who can be infected is bounded by 5000. +

    +
  6. +
+

+
+
+ + + +

+ A closed tank with an inflow and outflow contains a 100 liters of saltwater solution. Let the amount of salt in the tank at time t (in minutes) be given by the function A(t), whose output is measured in grams. At time t = 0 there is an initial amount of salt present in the tank, and the inflow line also carries a saltwater mixture to the tank at a fixed rate; the outflow occurs at the same rate and carries a perfectly mixed solution out of the tank. Because of these conditions, the volume of solution in the tank stays fixed over time, but the amount of salt possibly changes. +

+ +

+ It turns out that the problem of determining the amount of salt in the tank at time t is similar to the problem of determining the temperature of a warming or cooling object, and that the function A(t) has form + + A(t) = ae^{-kt} + c + + for constants a, c, and k. Suppose that for a particular set of conditions, we know that + + A(t) = -500e^{-0.25t} + 750 + . + Again, A(t) measures the amount of salt in the tank after t minutes. +

+ +

+

    +
  1. +

    + How much salt is in the tank initially? +

    +
  2. +
  3. +

    + In the long run, how much salt do we expect to eventually be in the tank? +

    +
  4. +
  5. +

    + At what exact time are there exactly 500 grams of salt present in the tank? +

    +
  6. +
  7. +

    + Can you determine the concentration of the solution that is being delivered by the inflow to the tank? If yes, explain why and determine this value. If not, explain why that information cannot be found without additional data. +

    +
  8. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + At t = 0: A(0) = -500e^{0} + 750 = -500 + 750 = 250 grams of salt. +

    +
  2. +
  3. +

    + As t \to \infty, e^{-0.25t} \to 0, so A(t) \to 750 grams. +

    +
  4. +
  5. +

    + Setting A(t) = 500: -500e^{-0.25t} + 750 = 500, so e^{-0.25t} = \frac{1}{2} and t = -\dfrac{\ln(1/2)}{0.25} = 4\ln 2 \approx 2.773 minutes. +

    +
  6. +
  7. +

    + Yes. In the long run, the tank contains 750 grams of salt in 100 liters of solution, giving a concentration of \frac{750}{100} = 7.5 grams per liter. Since the salt concentration in the tank approaches that of the inflow over time, the inflow concentration is 7.5 grams per liter. +

    +
  8. +
+

+
+
+
diff --git a/source/exercises/ez-poly-infty.xml b/source/exercises/ez-poly-infty.xml index 78f7d1e0..9b14223c 100755 --- a/source/exercises/ez-poly-infty.xml +++ b/source/exercises/ez-poly-infty.xml @@ -1,241 +1,241 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

- We've observed that several different familiar functions grow without bound as x \to \infty, including f(x) = \ln(x), g(x) = x^2, and h(x) = e^x. In this exercise, we compare and contrast how these three functions grow. -

- -

-

    -
  1. -

    - Use a computational device to compute decimal expressions for f(10), g(10), and h(10), as well as f(100), g(100), and h(100). What do you observe? -

    -
  2. -
  3. -

    - For each of f, g, and h, how large an input is needed in order to ensure that the function's output value is at least 10^{10}? What do these values tell us about how each function grows? -

    -
  4. -
  5. -

    - Consider the new function r(x) = \frac{g(x)}{h(x)} = \frac{x^2}{e^x}. Compute r(10), r(100), and r(1000). What do the results suggest about the long-range behavior of r? What is surprising about this, in light of the fact that both x^2 and e^x grow without bound? -

    -
  6. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - f(10) = \ln(10) \approx 2.303, g(10) = 100, h(10) = e^{10} \approx 22026; - f(100) \approx 4.605, g(100) = 10000, h(100) \approx 2.69 \times 10^{43}. - The exponential h grows dramatically faster than the polynomial g, which in turn grows faster than the logarithm f. -

    -
  2. -
  3. -

    - f(x) = \ln(x) \ge 10^{10} requires x \ge e^{10^{10}} \approx 10^{4.3 \times 10^9} (an astronomically large value). - g(x) = x^2 \ge 10^{10} requires x \ge 10^5 = 100000. - h(x) = e^x \ge 10^{10} requires x \ge 10\ln(10) \approx 23.03. - The exponential reaches 10^{10} at a tiny input compared to the others, confirming that e^x grows fastest. -

    -
  4. -
  5. -

    - r(10) = \frac{100}{e^{10}} \approx 0.00454, r(100) \approx 3.7 \times 10^{-40}, r(1000) \approx 10^{-432}. - Despite both x^2 and e^x growing without bound, r(x) \to 0 because the exponential grows far faster than the polynomial, so the ratio shrinks toward zero. -

    -
  6. -
-

-
-
- - - -

- Consider the familiar graph of f(x) = \frac{1}{x}, which has a vertical asypmtote at x = 0 and a horizontal asymptote at y = 0, as pictured in Figure. In addition, consider the similarly-shaped function g shown in Figure, which has vertical asymptote x = -1 and horizontal asymptote y = -2. -

- - -
- A plot of y = f(x) = \frac{1}{x}. -

A plot of y = f(x) = \frac{1}{x}.

-
-
-
- A plot of a related function y = g(x). -

A plot of a related function y = g(x).

-
-
-
- -

-

    -
  1. -

    - How can we view g as a transformation of f? Explain, and state how g can be expressed algebraically in terms of f. -

    -
  2. -
  3. -

    - Find a formula for g as a function of x. What is the domain of g? -

    -
  4. -
  5. -

    - Explain algebraically (using the form of g from (b)) why \lim_{x \to \infty} g(x) = -2 and \lim_{x \to -1^+} g(x) = \infty. -

    -
  6. -
  7. -

    - What if a function h (again of a similar shape as f) has vertical asymptote x = 5 and horizontal asymtote y = 10. What is a possible formula for h(x)? -

    -
  8. -
  9. -

    - Suppose that r(x) = \frac{1}{x+35} - 27. Without using a graphing utility, how do you expect the graph of r to appear? Does it have a horizontal asymptote? A vertical asymptote? What is its domain? -

    -
  10. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - g is f shifted 1 unit to the left and 2 units down: g(x) = f(x+1) - 2. -

    -
  2. -
  3. -

    - g(x) = \dfrac{1}{x+1} - 2. The domain is all real numbers except x = -1. -

    -
  4. -
  5. -

    - As x \to \infty, \frac{1}{x+1} \to 0, so g(x) \to -2. As x \to -1^+, x+1 \to 0^+ so \frac{1}{x+1} \to +\infty, giving g(x) \to +\infty. -

    -
  6. -
  7. -

    - A possible formula is h(x) = \dfrac{1}{x-5} + 10. -

    -
  8. -
  9. -

    - r(x) = \frac{1}{x+35} - 27 has vertical asymptote x = -35, horizontal asymptote y = -27, and domain all real numbers except x = -35. The graph looks like y = 1/x shifted left 35 units and down 27 units. -

    -
  10. -
-

-
-
- - - - - -

- Power functions can have powers that are not whole numbers. For instance, we can consider such functions as - f(x)=x^{2.4}, g(x)=x^{2.5}, and h(x)=x^{2.6}. -

- -

-

    -
  1. -

    - Compare and contrast the graphs of f, g, and h. How are they similar? How are they different? (There is a lot you can discuss here.) -

    -
  2. -
  3. -

    - Observe that we can think of f(x) = x^{2.4} as f(x) = x^{24/10} = x^{12/5}. In addition, recall by exponent rules that we can also view f as having the form f(x) = \sqrt[5]{x^{12}}. Write g and h in similar forms, and explain why g has a different domain than f and h. -

    -
  4. -
  5. -

    - How do the graphs of f, g, and h compare to the graphs of y = x^2 and y = x^3? Why are these natural functions to use for comparison? -

    -
  6. -
  7. -

    - Explore similar questions for the graphs of p(x) = x^{-2.4}, q(x) = x^{-2.5}, and r(x) = x^{-2.6}. -

    -
  8. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - All three functions are positive for x \gt 0 and grow roughly like x^2. They differ for x \lt 0: f(x) = x^{2.4} is even-symmetric (defined and positive for all x); g(x) = x^{2.5} is only defined for x \ge 0; h(x) = x^{2.6} is odd-symmetric (defined for all x, negative for x \lt 0). -

    -
  2. -
  3. -

    - g(x) = x^{5/2} = \sqrt{x^5}, defined only for x \ge 0 since square roots are undefined for negative inputs. h(x) = x^{13/5} = \sqrt[5]{x^{13}}, defined for all real x. g has a different domain (only x \ge 0) because it involves an even root. -

    -
  4. -
  5. -

    - f and h resemble x^2 and x^3 respectively (since 2.4 and 2.6 are close to those integers). These are natural comparisons because they represent the even and odd symmetry templates for power functions with exponents near 2.4 and 2.6. -

    -
  6. -
  7. -

    - p(x) = x^{-2.4} = \sqrt[5]{x^{-12}}, defined for all x \ne 0, even-symmetric, approaching 0 as x \to \pm\infty. q(x) = x^{-2.5} = \frac{1}{\sqrt{x^5}}, defined only for x \gt 0. r(x) = x^{-2.6} = \sqrt[5]{x^{-13}}, defined for all x \ne 0, odd-symmetric. All approach 0 as x \to \pm\infty. -

    -
  8. -
-

-
-
- -
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+ We've observed that several different familiar functions grow without bound as x \to \infty, including f(x) = \ln(x), g(x) = x^2, and h(x) = e^x. In this exercise, we compare and contrast how these three functions grow. +

+ +

+

    +
  1. +

    + Use a computational device to compute decimal expressions for f(10), g(10), and h(10), as well as f(100), g(100), and h(100). What do you observe? +

    +
  2. +
  3. +

    + For each of f, g, and h, how large an input is needed in order to ensure that the function's output value is at least 10^{10}? What do these values tell us about how each function grows? +

    +
  4. +
  5. +

    + Consider the new function r(x) = \frac{g(x)}{h(x)} = \frac{x^2}{e^x}. Compute r(10), r(100), and r(1000). What do the results suggest about the long-range behavior of r? What is surprising about this, in light of the fact that both x^2 and e^x grow without bound? +

    +
  6. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + f(10) = \ln(10) \approx 2.303, g(10) = 100, h(10) = e^{10} \approx 22026; + f(100) \approx 4.605, g(100) = 10000, h(100) \approx 2.69 \times 10^{43}. + The exponential h grows dramatically faster than the polynomial g, which in turn grows faster than the logarithm f. +

    +
  2. +
  3. +

    + f(x) = \ln(x) \ge 10^{10} requires x \ge e^{10^{10}} \approx 10^{4.3 \times 10^9} (an astronomically large value). + g(x) = x^2 \ge 10^{10} requires x \ge 10^5 = 100000. + h(x) = e^x \ge 10^{10} requires x \ge 10\ln(10) \approx 23.03. + The exponential reaches 10^{10} at a tiny input compared to the others, confirming that e^x grows fastest. +

    +
  4. +
  5. +

    + r(10) = \frac{100}{e^{10}} \approx 0.00454, r(100) \approx 3.7 \times 10^{-40}, r(1000) \approx 10^{-432}. + Despite both x^2 and e^x growing without bound, r(x) \to 0 because the exponential grows far faster than the polynomial, so the ratio shrinks toward zero. +

    +
  6. +
+

+
+
+ + + +

+ Consider the familiar graph of f(x) = \frac{1}{x}, which has a vertical asypmtote at x = 0 and a horizontal asymptote at y = 0, as pictured in Figure. In addition, consider the similarly-shaped function g shown in Figure, which has vertical asymptote x = -1 and horizontal asymptote y = -2. +

+ + +
+ A plot of y = f(x) = \frac{1}{x}. +

A plot of y = f(x) = \frac{1}{x}.

+
+
+
+ A plot of a related function y = g(x). +

A plot of a related function y = g(x).

+
+
+
+ +

+

    +
  1. +

    + How can we view g as a transformation of f? Explain, and state how g can be expressed algebraically in terms of f. +

    +
  2. +
  3. +

    + Find a formula for g as a function of x. What is the domain of g? +

    +
  4. +
  5. +

    + Explain algebraically (using the form of g from (b)) why \lim_{x \to \infty} g(x) = -2 and \lim_{x \to -1^+} g(x) = \infty. +

    +
  6. +
  7. +

    + What if a function h (again of a similar shape as f) has vertical asymptote x = 5 and horizontal asymtote y = 10. What is a possible formula for h(x)? +

    +
  8. +
  9. +

    + Suppose that r(x) = \frac{1}{x+35} - 27. Without using a graphing utility, how do you expect the graph of r to appear? Does it have a horizontal asymptote? A vertical asymptote? What is its domain? +

    +
  10. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + g is f shifted 1 unit to the left and 2 units down: g(x) = f(x+1) - 2. +

    +
  2. +
  3. +

    + g(x) = \dfrac{1}{x+1} - 2. The domain is all real numbers except x = -1. +

    +
  4. +
  5. +

    + As x \to \infty, \frac{1}{x+1} \to 0, so g(x) \to -2. As x \to -1^+, x+1 \to 0^+ so \frac{1}{x+1} \to +\infty, giving g(x) \to +\infty. +

    +
  6. +
  7. +

    + A possible formula is h(x) = \dfrac{1}{x-5} + 10. +

    +
  8. +
  9. +

    + r(x) = \frac{1}{x+35} - 27 has vertical asymptote x = -35, horizontal asymptote y = -27, and domain all real numbers except x = -35. The graph looks like y = 1/x shifted left 35 units and down 27 units. +

    +
  10. +
+

+
+
+ + + + + +

+ Power functions can have powers that are not whole numbers. For instance, we can consider such functions as + f(x)=x^{2.4}, g(x)=x^{2.5}, and h(x)=x^{2.6}. +

+ +

+

    +
  1. +

    + Compare and contrast the graphs of f, g, and h. How are they similar? How are they different? (There is a lot you can discuss here.) +

    +
  2. +
  3. +

    + Observe that we can think of f(x) = x^{2.4} as f(x) = x^{24/10} = x^{12/5}. In addition, recall by exponent rules that we can also view f as having the form f(x) = \sqrt[5]{x^{12}}. Write g and h in similar forms, and explain why g has a different domain than f and h. +

    +
  4. +
  5. +

    + How do the graphs of f, g, and h compare to the graphs of y = x^2 and y = x^3? Why are these natural functions to use for comparison? +

    +
  6. +
  7. +

    + Explore similar questions for the graphs of p(x) = x^{-2.4}, q(x) = x^{-2.5}, and r(x) = x^{-2.6}. +

    +
  8. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + All three functions are positive for x \gt 0 and grow roughly like x^2. They differ for x \lt 0: f(x) = x^{2.4} is even-symmetric (defined and positive for all x); g(x) = x^{2.5} is only defined for x \ge 0; h(x) = x^{2.6} is odd-symmetric (defined for all x, negative for x \lt 0). +

    +
  2. +
  3. +

    + g(x) = x^{5/2} = \sqrt{x^5}, defined only for x \ge 0 since square roots are undefined for negative inputs. h(x) = x^{13/5} = \sqrt[5]{x^{13}}, defined for all real x. g has a different domain (only x \ge 0) because it involves an even root. +

    +
  4. +
  5. +

    + f and h resemble x^2 and x^3 respectively (since 2.4 and 2.6 are close to those integers). These are natural comparisons because they represent the even and odd symmetry templates for power functions with exponents near 2.4 and 2.6. +

    +
  6. +
  7. +

    + p(x) = x^{-2.4} = \sqrt[5]{x^{-12}}, defined for all x \ne 0, even-symmetric, approaching 0 as x \to \pm\infty. q(x) = x^{-2.5} = \frac{1}{\sqrt{x^5}}, defined only for x \gt 0. r(x) = x^{-2.6} = \sqrt[5]{x^{-13}}, defined for all x \ne 0, odd-symmetric. All approach 0 as x \to \pm\infty. +

    +
  8. +
+

+
+
+ +
diff --git a/source/exercises/ez-poly-polynomial-applications.xml b/source/exercises/ez-poly-polynomial-applications.xml index 310d7d2d..cf635f42 100755 --- a/source/exercises/ez-poly-polynomial-applications.xml +++ b/source/exercises/ez-poly-polynomial-applications.xml @@ -1,234 +1,234 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - -

- An open triangular trough, as pictured in Figure is being constructed from aluminum. The trough is to have equilateral triangular ends of side length s and a length of l. We want the trough to used a fixed 100 square feet of aluminum. -

- -
- A triangular trough. -

A triangular trough.

-
-
- -

-

    -
  1. -

    - What is the area of one of the equilateral triangle ends as a function of s? -

    -
  2. -
  3. -

    - Recall that for an object with constant cross-sectional area, its volume is the area of one of those cross-sections times its height (or length). Hence determine a formula for the volume of the trough that depends on s and l. -

    -
  4. -
  5. -

    - Find a formula involving s and l for the surface area of the trough. -

    -
  6. -
  7. -

    - Use the constraint that we have 100 square feet of available aluminum to generate an equation that connects s and l and hence solve for l in terms of s. -

    -
  8. -
  9. -

    - Use your work in (d) and (b) to express the volume of the trough, V, as a function of s only. -

    -
  10. -
  11. -

    - What is the domain of the function V in the context of the situation being modeled? Why? -

    -
  12. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - The area of an equilateral triangle with side length s is A_{\triangle} = \dfrac{\sqrt{3}}{4}s^2. -

    -
  2. -
  3. -

    - The volume of the trough is cross-sectional area times length: V = \dfrac{\sqrt{3}}{4}s^2 l. -

    -
  4. -
  5. -

    - The trough has two equilateral triangular ends and two rectangular side panels (the open top means there is no rectangular top panel). The surface area is - - A = 2 \cdot \frac{\sqrt{3}}{4}s^2 + 2sl = \frac{\sqrt{3}}{2}s^2 + 2sl. - -

    -
  6. -
  7. -

    - Setting the surface area equal to 100: \dfrac{\sqrt{3}}{2}s^2 + 2sl = 100, so - - l = \frac{100 - \frac{\sqrt{3}}{2}s^2}{2s} = \frac{50}{s} - \frac{\sqrt{3}}{4}s. - -

    -
  8. -
  9. -

    - Substituting into the volume formula: - - V(s) &= \frac{\sqrt{3}}{4}s^2\left(\frac{50}{s} - \frac{\sqrt{3}}{4}s\right) - &= \frac{50\sqrt{3}}{4}s - \frac{3}{16}s^3 - &= \frac{25\sqrt{3}}{2}s - \frac{3}{16}s^3. - -

    -
  10. -
  11. -

    - We need s > 0 and l > 0. From l = \dfrac{50}{s} - \dfrac{\sqrt{3}}{4}s > 0, we get s^2 < \dfrac{200}{\sqrt{3}} = \dfrac{200\sqrt{3}}{3}, so s < \sqrt{\dfrac{200\sqrt{3}}{3}}. The domain is \left(0,\ \sqrt{\dfrac{200\sqrt{3}}{3}}\right). -

    -
  12. -
-

-
-
- - - -

- A rectangular box is being constructed so that its base is twice as long as it is wide. In addition, the base and top of the box cost $2 per square foot while the sides cost $1.50 per square foot. If we only want to spend $10 on materials for the box, how can we write the box's volume as a function of a single variable? What is the domain of this volume function? (Hint: first find the box's surface area in terms of two variables, and then find an expression for the cost of the box in terms of those same variables. Use the fact that cost is constrained to solve for one variable in terms of another.) -

-
- -

- Exercise Answer -

-
- -

- Let the box have width w, length 2w, and height h. The areas of the base and top are each 2w^2, and the combined area of the four sides is 2(wh) + 2(2wh) = 6wh. The cost constraint is - - 2(2w^2 + 2w^2) + 1.5(6wh) = 8w^2 + 9wh = 10. - - Solving for h: h = \dfrac{10 - 8w^2}{9w}. The volume is - - V(w) = w \cdot 2w \cdot h = 2w^2 \cdot \frac{10 - 8w^2}{9w} = \frac{20w - 16w^3}{9}. - - For the domain, we need h > 0, so 10 - 8w^2 > 0, giving w < \sqrt{\dfrac{10}{8}} = \dfrac{\sqrt{5}}{2}. With w > 0, the domain is \left(0,\ \dfrac{\sqrt{5}}{2}\right). -

-
-
- - - -

- Suppose that we want a cylindrical barrel to hold 8 cubic feet of volume. Let the barrel have radius r and height h, each measured in feet. How can we write the surface area, A, of the barrel solely as a function of r? -

- -

-

    -
  1. -

    - Draw several possible pictures of how the barrel might look. For instance, what if the radius is very small? How will the height appear in comparison? Likewise, what happens if the height is very small? -

    -
  2. -
  3. -

    - Use the fact that volume is fixed at 8 cubic feet to state a constraint equation and solve that equation for h in terms of r. -

    -
  4. -
  5. -

    - Recall that the surface area of a cylinder is A = 2\pi r^2 + 2\pi rh. Use your work in (c) to write A as a function of only r. -

    -
  6. -
  7. -

    - What is the domain of A? Why? -

    -
  8. -
  9. -

    - Explain why A is not a polynomial function of r. -

    -
  10. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - If the radius is very small, the cylinder must be very tall to hold 8 cubic feet; if the radius is large, the cylinder is short and flat. -

    -
  2. -
  3. -

    - The volume constraint \pi r^2 h = 8 gives h = \dfrac{8}{\pi r^2}. -

    -
  4. -
  5. -

    - Substituting into the surface area formula: - - A(r) = 2\pi r^2 + 2\pi r \cdot \frac{8}{\pi r^2} = 2\pi r^2 + \frac{16}{r}. - -

    -
  6. -
  7. -

    - The domain is r > 0, since the radius must be positive. -

    -
  8. -
  9. -

    - A(r) = 2\pi r^2 + \dfrac{16}{r} is not a polynomial because of the term \dfrac{16}{r} = 16r^{-1}, which has a negative exponent. Polynomial functions have only non-negative integer exponents. -

    -
  10. -
-

-
-
- -
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +

+ An open triangular trough, as pictured in Figure is being constructed from aluminum. The trough is to have equilateral triangular ends of side length s and a length of l. We want the trough to used a fixed 100 square feet of aluminum. +

+ +
+ A triangular trough. +

A triangular trough.

+
+
+ +

+

    +
  1. +

    + What is the area of one of the equilateral triangle ends as a function of s? +

    +
  2. +
  3. +

    + Recall that for an object with constant cross-sectional area, its volume is the area of one of those cross-sections times its height (or length). Hence determine a formula for the volume of the trough that depends on s and l. +

    +
  4. +
  5. +

    + Find a formula involving s and l for the surface area of the trough. +

    +
  6. +
  7. +

    + Use the constraint that we have 100 square feet of available aluminum to generate an equation that connects s and l and hence solve for l in terms of s. +

    +
  8. +
  9. +

    + Use your work in (d) and (b) to express the volume of the trough, V, as a function of s only. +

    +
  10. +
  11. +

    + What is the domain of the function V in the context of the situation being modeled? Why? +

    +
  12. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + The area of an equilateral triangle with side length s is A_{\triangle} = \dfrac{\sqrt{3}}{4}s^2. +

    +
  2. +
  3. +

    + The volume of the trough is cross-sectional area times length: V = \dfrac{\sqrt{3}}{4}s^2 l. +

    +
  4. +
  5. +

    + The trough has two equilateral triangular ends and two rectangular side panels (the open top means there is no rectangular top panel). The surface area is + + A = 2 \cdot \frac{\sqrt{3}}{4}s^2 + 2sl = \frac{\sqrt{3}}{2}s^2 + 2sl. + +

    +
  6. +
  7. +

    + Setting the surface area equal to 100: \dfrac{\sqrt{3}}{2}s^2 + 2sl = 100, so + + l = \frac{100 - \frac{\sqrt{3}}{2}s^2}{2s} = \frac{50}{s} - \frac{\sqrt{3}}{4}s. + +

    +
  8. +
  9. +

    + Substituting into the volume formula: + + V(s) &= \frac{\sqrt{3}}{4}s^2\left(\frac{50}{s} - \frac{\sqrt{3}}{4}s\right) + &= \frac{50\sqrt{3}}{4}s - \frac{3}{16}s^3 + &= \frac{25\sqrt{3}}{2}s - \frac{3}{16}s^3. + +

    +
  10. +
  11. +

    + We need s > 0 and l > 0. From l = \dfrac{50}{s} - \dfrac{\sqrt{3}}{4}s > 0, we get s^2 < \dfrac{200}{\sqrt{3}} = \dfrac{200\sqrt{3}}{3}, so s < \sqrt{\dfrac{200\sqrt{3}}{3}}. The domain is \left(0,\ \sqrt{\dfrac{200\sqrt{3}}{3}}\right). +

    +
  12. +
+

+
+
+ + + +

+ A rectangular box is being constructed so that its base is twice as long as it is wide. In addition, the base and top of the box cost $2 per square foot while the sides cost $1.50 per square foot. If we only want to spend $10 on materials for the box, how can we write the box's volume as a function of a single variable? What is the domain of this volume function? (Hint: first find the box's surface area in terms of two variables, and then find an expression for the cost of the box in terms of those same variables. Use the fact that cost is constrained to solve for one variable in terms of another.) +

+
+ +

+ Exercise Answer +

+
+ +

+ Let the box have width w, length 2w, and height h. The areas of the base and top are each 2w^2, and the combined area of the four sides is 2(wh) + 2(2wh) = 6wh. The cost constraint is + + 2(2w^2 + 2w^2) + 1.5(6wh) = 8w^2 + 9wh = 10. + + Solving for h: h = \dfrac{10 - 8w^2}{9w}. The volume is + + V(w) = w \cdot 2w \cdot h = 2w^2 \cdot \frac{10 - 8w^2}{9w} = \frac{20w - 16w^3}{9}. + + For the domain, we need h > 0, so 10 - 8w^2 > 0, giving w < \sqrt{\dfrac{10}{8}} = \dfrac{\sqrt{5}}{2}. With w > 0, the domain is \left(0,\ \dfrac{\sqrt{5}}{2}\right). +

+
+
+ + + +

+ Suppose that we want a cylindrical barrel to hold 8 cubic feet of volume. Let the barrel have radius r and height h, each measured in feet. How can we write the surface area, A, of the barrel solely as a function of r? +

+ +

+

    +
  1. +

    + Draw several possible pictures of how the barrel might look. For instance, what if the radius is very small? How will the height appear in comparison? Likewise, what happens if the height is very small? +

    +
  2. +
  3. +

    + Use the fact that volume is fixed at 8 cubic feet to state a constraint equation and solve that equation for h in terms of r. +

    +
  4. +
  5. +

    + Recall that the surface area of a cylinder is A = 2\pi r^2 + 2\pi rh. Use your work in (c) to write A as a function of only r. +

    +
  6. +
  7. +

    + What is the domain of A? Why? +

    +
  8. +
  9. +

    + Explain why A is not a polynomial function of r. +

    +
  10. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + If the radius is very small, the cylinder must be very tall to hold 8 cubic feet; if the radius is large, the cylinder is short and flat. +

    +
  2. +
  3. +

    + The volume constraint \pi r^2 h = 8 gives h = \dfrac{8}{\pi r^2}. +

    +
  4. +
  5. +

    + Substituting into the surface area formula: + + A(r) = 2\pi r^2 + 2\pi r \cdot \frac{8}{\pi r^2} = 2\pi r^2 + \frac{16}{r}. + +

    +
  6. +
  7. +

    + The domain is r > 0, since the radius must be positive. +

    +
  8. +
  9. +

    + A(r) = 2\pi r^2 + \dfrac{16}{r} is not a polynomial because of the term \dfrac{16}{r} = 16r^{-1}, which has a negative exponent. Polynomial functions have only non-negative integer exponents. +

    +
  10. +
+

+
+
+ +
diff --git a/source/exercises/ez-poly-polynomials.xml b/source/exercises/ez-poly-polynomials.xml index 2fb99099..02a81b0a 100755 --- a/source/exercises/ez-poly-polynomials.xml +++ b/source/exercises/ez-poly-polynomials.xml @@ -1,359 +1,359 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

- Consider the polynomial function given by - - p(x) = 0.0005(x+21.7)^3 (x-20.9)^2 (x-31.4)(x^2+100) - . -

- -

-

    -
  1. -

    - What is the degree of p? -

    -
  2. - -
  3. -

    - What are the real zeros of p? - State them with multiplicity. -

    -
  4. - -
  5. -

    - Construct a carefully labeled sign chart for p(x). -

    -
  6. - -
  7. -

    - Plot the function p in Desmos. - Are the zeros obvious from the graph? - How do you have to adjust the window in order to tell? - Even in an adjusted window, can you tell them exactly from the graph? -

    -
  8. - -
  9. -

    - Now consider the related but different polynomial - - q(x) = -0.0005(x+21.7)^3 (x-20.9)^2 (x-31.4)(x^2+100)(x-92.3) - . - What is the degree of q? - What are the zeros of q? - What is obvious from its graph and what is not? -

    -
  10. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - The degree of p is 3+2+1+2 = 8. -

    -
  2. -
  3. -

    - The real zeros are x=-21.7 (multiplicity 3), x=20.9 (multiplicity 2), and x=31.4 (multiplicity 1). (The factor x^2+100 has no real zeros.) -

    -
  4. -
  5. -

    - The sign of p is determined by (x+21.7)^3 and (x-31.4) (since the other factors are always non-negative and (x-20.9)^2 doesn't change sign): p \gt 0 for x \lt -21.7; p \lt 0 for -21.7 \lt x \lt 31.4 (with p=0 at x=20.9, a bounce); p \gt 0 for x \gt 31.4. -

    -
  6. -
  7. -

    - The zeros span a large range (-21.7 to 31.4), so a viewing window such as -40 \le x \le 40 and -3 \times 10^8 \le y \le 2 \times 10^8 is needed. Even then, the bounce at x=20.9 is subtle. -

    -
  8. -
  9. -

    - q(x) = -0.0005(x+21.7)^3(x-20.9)^2(x-31.4)(x^2+100)(x-92.3) has degree 9. Its real zeros are x=-21.7 (mult 3), x=20.9 (mult 2), x=31.4 (mult 1), and x=92.3 (mult 1). With such widely-spaced zeros, no single window shows all features clearly. -

    -
  10. -
-

-
-
- - - -

- Consider the (non-polynomial) function r(x) = e^{-x^2}(x^2+1)(x-2)(x-3). -

- -

-

    -
  1. -

    - What are the zeros of r(x)? (Hint: - is e^{\Box} ever equal to zero?) -

    -
  2. - -
  3. -

    - Construct a sign chart for r(x). -

    -
  4. - -
  5. -

    - Plot r(x) in Desmos. - Is the sign and overall behavior of r obvious from the plot? - Why or why not? -

    -
  6. - -
  7. -

    - From the graph, - what appears to be the value of \lim_{x \to \infty} r(x)? - Why is this surprising in light of the behavior of - f(x)=(x^2+1)(x-2)(x-3) as x \to \infty? -

    -
  8. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - Since e^{-x^2} \gt 0 always and x^2+1 \gt 0 always, the only real zeros come from (x-2)(x-3). The real zeros are x = 2 and x = 3. -

    -
  2. -
  3. -

    - The sign of r equals the sign of (x-2)(x-3): positive for x \lt 2, negative for 2 \lt x \lt 3, positive for x \gt 3. -

    -
  4. -
  5. -

    - In Desmos, the zeros at x=2 and x=3 are visible, but the graph decays very rapidly to 0 for large |x| due to the e^{-x^2} factor. -

    -
  6. -
  7. -

    - \lim_{x \to \infty} r(x) = 0. This is surprising because (x^2+1)(x-2)(x-3) \to \infty, but the factor e^{-x^2} decays to zero much faster than any polynomial grows, so the product is driven to zero. -

    -
  8. -
-

-
-
- - - -

- In each following question, find a formula for a polynomial with certain properties, generate a plot that demonstrates you’ve found a function with the given specifications, and write several sentences to explain your thinking. -

- -

-

    -
  1. -

    - A quadratic function q has zeros at x = −7 and x = 11 and its y-value at its vertex is 42. -

    -
  2. -
  3. -

    - A polynomial r of degree 4 has zeros at x = −3 and x = 5, both of multiplicity 2, and the function has a y-intercept at the point (0, 28). -

    -
  4. -
  5. -

    - A polynomial f has degree 11 and the following zeros: zeros of multiplicity 1 at x = −3 and x = 5, zeros of multiplicity 2 at x = −2 and x = 3, and a zero of multiplicity 3 at x = 1. In addition, \lim_{x \to \infty} f(x) = -\infty. -

    -
  6. -
  7. -

    - A polynomial g has its graph given in Figure below. Determine a possible formula for g(x) where the polynomial you find has the lowest possible degree to match the graph. What is the degree of the function you find? -

    - -
    - A polynomial function g. -

    A polynomial function g.

    -
    -
    -
  8. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - q(x) = -\dfrac{14}{27}(x+7)(x-11). The vertex is at x = \frac{-7+11}{2} = 2. Setting q(2) = -\frac{14}{27}(9)(-9) = 42 confirms the vertex value. -

    -
  2. -
  3. -

    - r(x) = \dfrac{28}{225}(x+3)^2(x-5)^2. We have r(0) = \frac{28}{225}(9)(25) = 28 ✓. -

    -
  4. -
  5. -

    - Since the stated multiplicities sum to 1+1+2+2+3=9 but the degree must be 11, we need two additional roots (a complex conjugate pair). One example: f(x) = -(x+3)(x-5)(x+2)^2(x-3)^2(x-1)^3(x^2+1), which has degree 11 and \lim_{x \to \infty} f(x) = -\infty. -

    -
  6. -
  7. -

    - Reading from the graph (which shows zeros at approximately x = -3, 1, 4 with the zero at x=-3 being a touch/bounce and those at x=1, 4 being crossings): one possible formula is g(x) = -\dfrac{27}{50}\!\left(\dfrac{x+3}{3}\right)^3(x-1)^2\!\left(\dfrac{x-4}{4}\right), a degree-6 polynomial. -

    -
  8. -
-

-
-
- - - -

- Like we have worked to understand families of functions that involve parameters such as - p(t) = a\cos(k(t-b)) + c and F(t) = a + be^{-kt}, - we are often interested in polynomials that involve one or more parameters and understanding how those parameters affect the function's behavior. -

- -

- For example, let a \gt 0 be a positive constant, - and consider p(x) = x^3 - a^2x. -

- -

-

    -
  1. -

    - What is the degree of p? -

    -
  2. -
  3. -

    - What is the long-term behavior of p? State your responses using limit notation. -

    -
  4. -
  5. -

    - In terms of the constant a, what are the zeros of p? -

    -
  6. -
  7. -

    - Construct a carefully labeled sign chart for p. -

    -
  8. -
  9. -

    - How does changing the value of a affect the graph of p? -

    -
  10. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - p has degree 3. -

    -
  2. -
  3. -

    - \lim_{x \to -\infty} p(x) = -\infty and \lim_{x \to \infty} p(x) = +\infty (since the leading term is x^3, positive coefficient, odd degree). -

    -
  4. -
  5. -

    - Factor: p(x) = x(x^2-a^2) = x(x-a)(x+a). The zeros are x = -a, 0, a. -

    -
  6. -
  7. -

    - Sign chart (with a \gt 0): p \lt 0 for x \lt -a; p \gt 0 for -a \lt x \lt 0; p \lt 0 for 0 \lt x \lt a; p \gt 0 for x \gt a. -

    -
  8. -
  9. -

    - As a increases, the zeros at \pm a spread further apart and the local maximum and minimum values grow in magnitude. The overall shape remains an S-curve, but wider and taller. -

    -
  10. -
-

-
-
-
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+ Consider the polynomial function given by + + p(x) = 0.0005(x+21.7)^3 (x-20.9)^2 (x-31.4)(x^2+100) + . +

+ +

+

    +
  1. +

    + What is the degree of p? +

    +
  2. + +
  3. +

    + What are the real zeros of p? + State them with multiplicity. +

    +
  4. + +
  5. +

    + Construct a carefully labeled sign chart for p(x). +

    +
  6. + +
  7. +

    + Plot the function p in Desmos. + Are the zeros obvious from the graph? + How do you have to adjust the window in order to tell? + Even in an adjusted window, can you tell them exactly from the graph? +

    +
  8. + +
  9. +

    + Now consider the related but different polynomial + + q(x) = -0.0005(x+21.7)^3 (x-20.9)^2 (x-31.4)(x^2+100)(x-92.3) + . + What is the degree of q? + What are the zeros of q? + What is obvious from its graph and what is not? +

    +
  10. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + The degree of p is 3+2+1+2 = 8. +

    +
  2. +
  3. +

    + The real zeros are x=-21.7 (multiplicity 3), x=20.9 (multiplicity 2), and x=31.4 (multiplicity 1). (The factor x^2+100 has no real zeros.) +

    +
  4. +
  5. +

    + The sign of p is determined by (x+21.7)^3 and (x-31.4) (since the other factors are always non-negative and (x-20.9)^2 doesn't change sign): p \gt 0 for x \lt -21.7; p \lt 0 for -21.7 \lt x \lt 31.4 (with p=0 at x=20.9, a bounce); p \gt 0 for x \gt 31.4. +

    +
  6. +
  7. +

    + The zeros span a large range (-21.7 to 31.4), so a viewing window such as -40 \le x \le 40 and -3 \times 10^8 \le y \le 2 \times 10^8 is needed. Even then, the bounce at x=20.9 is subtle. +

    +
  8. +
  9. +

    + q(x) = -0.0005(x+21.7)^3(x-20.9)^2(x-31.4)(x^2+100)(x-92.3) has degree 9. Its real zeros are x=-21.7 (mult 3), x=20.9 (mult 2), x=31.4 (mult 1), and x=92.3 (mult 1). With such widely-spaced zeros, no single window shows all features clearly. +

    +
  10. +
+

+
+
+ + + +

+ Consider the (non-polynomial) function r(x) = e^{-x^2}(x^2+1)(x-2)(x-3). +

+ +

+

    +
  1. +

    + What are the zeros of r(x)? (Hint: + is e^{\Box} ever equal to zero?) +

    +
  2. + +
  3. +

    + Construct a sign chart for r(x). +

    +
  4. + +
  5. +

    + Plot r(x) in Desmos. + Is the sign and overall behavior of r obvious from the plot? + Why or why not? +

    +
  6. + +
  7. +

    + From the graph, + what appears to be the value of \lim_{x \to \infty} r(x)? + Why is this surprising in light of the behavior of + f(x)=(x^2+1)(x-2)(x-3) as x \to \infty? +

    +
  8. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + Since e^{-x^2} \gt 0 always and x^2+1 \gt 0 always, the only real zeros come from (x-2)(x-3). The real zeros are x = 2 and x = 3. +

    +
  2. +
  3. +

    + The sign of r equals the sign of (x-2)(x-3): positive for x \lt 2, negative for 2 \lt x \lt 3, positive for x \gt 3. +

    +
  4. +
  5. +

    + In Desmos, the zeros at x=2 and x=3 are visible, but the graph decays very rapidly to 0 for large |x| due to the e^{-x^2} factor. +

    +
  6. +
  7. +

    + \lim_{x \to \infty} r(x) = 0. This is surprising because (x^2+1)(x-2)(x-3) \to \infty, but the factor e^{-x^2} decays to zero much faster than any polynomial grows, so the product is driven to zero. +

    +
  8. +
+

+
+
+ + + +

+ In each following question, find a formula for a polynomial with certain properties, generate a plot that demonstrates you’ve found a function with the given specifications, and write several sentences to explain your thinking. +

+ +

+

    +
  1. +

    + A quadratic function q has zeros at x = −7 and x = 11 and its y-value at its vertex is 42. +

    +
  2. +
  3. +

    + A polynomial r of degree 4 has zeros at x = −3 and x = 5, both of multiplicity 2, and the function has a y-intercept at the point (0, 28). +

    +
  4. +
  5. +

    + A polynomial f has degree 11 and the following zeros: zeros of multiplicity 1 at x = −3 and x = 5, zeros of multiplicity 2 at x = −2 and x = 3, and a zero of multiplicity 3 at x = 1. In addition, \lim_{x \to \infty} f(x) = -\infty. +

    +
  6. +
  7. +

    + A polynomial g has its graph given in Figure below. Determine a possible formula for g(x) where the polynomial you find has the lowest possible degree to match the graph. What is the degree of the function you find? +

    + +
    + A polynomial function g. +

    A polynomial function g.

    +
    +
    +
  8. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + q(x) = -\dfrac{14}{27}(x+7)(x-11). The vertex is at x = \frac{-7+11}{2} = 2. Setting q(2) = -\frac{14}{27}(9)(-9) = 42 confirms the vertex value. +

    +
  2. +
  3. +

    + r(x) = \dfrac{28}{225}(x+3)^2(x-5)^2. We have r(0) = \frac{28}{225}(9)(25) = 28 ✓. +

    +
  4. +
  5. +

    + Since the stated multiplicities sum to 1+1+2+2+3=9 but the degree must be 11, we need two additional roots (a complex conjugate pair). One example: f(x) = -(x+3)(x-5)(x+2)^2(x-3)^2(x-1)^3(x^2+1), which has degree 11 and \lim_{x \to \infty} f(x) = -\infty. +

    +
  6. +
  7. +

    + Reading from the graph (which shows zeros at approximately x = -3, 1, 4 with the zero at x=-3 being a touch/bounce and those at x=1, 4 being crossings): one possible formula is g(x) = -\dfrac{27}{50}\!\left(\dfrac{x+3}{3}\right)^3(x-1)^2\!\left(\dfrac{x-4}{4}\right), a degree-6 polynomial. +

    +
  8. +
+

+
+
+ + + +

+ Like we have worked to understand families of functions that involve parameters such as + p(t) = a\cos(k(t-b)) + c and F(t) = a + be^{-kt}, + we are often interested in polynomials that involve one or more parameters and understanding how those parameters affect the function's behavior. +

+ +

+ For example, let a \gt 0 be a positive constant, + and consider p(x) = x^3 - a^2x. +

+ +

+

    +
  1. +

    + What is the degree of p? +

    +
  2. +
  3. +

    + What is the long-term behavior of p? State your responses using limit notation. +

    +
  4. +
  5. +

    + In terms of the constant a, what are the zeros of p? +

    +
  6. +
  7. +

    + Construct a carefully labeled sign chart for p. +

    +
  8. +
  9. +

    + How does changing the value of a affect the graph of p? +

    +
  10. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + p has degree 3. +

    +
  2. +
  3. +

    + \lim_{x \to -\infty} p(x) = -\infty and \lim_{x \to \infty} p(x) = +\infty (since the leading term is x^3, positive coefficient, odd degree). +

    +
  4. +
  5. +

    + Factor: p(x) = x(x^2-a^2) = x(x-a)(x+a). The zeros are x = -a, 0, a. +

    +
  6. +
  7. +

    + Sign chart (with a \gt 0): p \lt 0 for x \lt -a; p \gt 0 for -a \lt x \lt 0; p \lt 0 for 0 \lt x \lt a; p \gt 0 for x \gt a. +

    +
  8. +
  9. +

    + As a increases, the zeros at \pm a spread further apart and the local maximum and minimum values grow in magnitude. The overall shape remains an S-curve, but wider and taller. +

    +
  10. +
+

+
+
+
diff --git a/source/exercises/ez-poly-rational-features.xml b/source/exercises/ez-poly-rational-features.xml index 8c42700c..c80cad3d 100755 --- a/source/exercises/ez-poly-rational-features.xml +++ b/source/exercises/ez-poly-rational-features.xml @@ -1,427 +1,427 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

- For each of the following rational functions, determine, with justification, the exact locations of all (i) horizontal asymptotes, (ii) vertical asymptotes, (iii) zeros, and (iv) holes of the function. Clearly show your work and thinking. -

- -

-

    -
  1. -

    - \displaystyle r(x) = \frac{-19(x+11.3)^2(x-15.1)(x-17.3)}{41(x+5.7)(x+11.3)(x-8.4)(x-15.1)} -

    -
  2. -
  3. -

    - \displaystyle s(x) = \frac{-29(x^2-16)(x^2+99)(x-53)}{101(x^2-4)(x-13)^2(x+104)} -

    -
  4. -
  5. -

    - \displaystyle u(x) = \frac{-71(x^2 - 13x + 36)(x-58.4)(x+78.2)}{83(x+58.4)(x-78.2)(x^2 - 12x + 27)} -

    -
  6. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - r(x) = \dfrac{-19(x+11.3)^2(x-15.1)(x-17.3)}{41(x+5.7)(x+11.3)(x-8.4)(x-15.1)}. Both (x+11.3) and (x-15.1) appear in both numerator and denominator, so they cancel. The reduced form is \dfrac{-19(x+11.3)(x-17.3)}{41(x+5.7)(x-8.4)}. -

      -
    • Horizontal asymptote: y = -\dfrac{19}{41} (same degree after cancellation).

    • -
    • Vertical asymptotes: x = -5.7 and x = 8.4.

    • -
    • Zero: x = 17.3 (the factor x+11.3 in reduced numerator gives x=-11.3, but that is a hole).

    • -
    • Holes: at x = -11.3 (hole value 0, since x+11.3=0 makes reduced numerator zero) and at x = 15.1.

    • -
    -

    -
  2. -
  3. -

    - s(x) = \dfrac{-29(x^2-16)(x^2+99)(x-53)}{101(x^2-4)(x-13)^2(x+104)}. Factor: numerator = -29(x-4)(x+4)(x^2+99)(x-53); denominator = 101(x-2)(x+2)(x-13)^2(x+104). No common factors. -

      -
    • Horizontal asymptote: y = -\dfrac{29}{101} (degree 5 over degree 5).

    • -
    • Vertical asymptotes: x = 2, x = -2, x = 13, x = -104.

    • -
    • Zeros: x = 4, x = -4, x = 53 (note x^2+99 > 0 always).

    • -
    • Holes: none.

    • -
    -

    -
  4. -
  5. -

    - u(x) = \dfrac{-71(x^2-13x+36)(x-58.4)(x+78.2)}{83(x+58.4)(x-78.2)(x^2-12x+27)}. Factor: x^2-13x+36 = (x-4)(x-9) and x^2-12x+27 = (x-3)(x-9). The factor (x-9) cancels. -

      -
    • Horizontal asymptote: y = -\dfrac{71}{83} (degree 4 over degree 4).

    • -
    • Vertical asymptotes: x = -58.4, x = 78.2, x = 3.

    • -
    • Zeros: x = 4, x = 58.4, x = -78.2.

    • -
    • Hole: at x = 9.

    • -
    -

    -
  6. -
-

-
-
- - - -

- Find a formula for a rational function that meets the stated criteria, with justification. If no such formula is possible, explain why. -

- -

-

    -
  1. -

    - A rational function r(x) in the form r(x) = \frac{k}{x-a} + b so that r has a horizontal asymptote of y = -\frac{3}{7}, a vertical asymptote of x = \frac{5}{2}, and r(0) = 4. -

    -
  2. -
  3. -

    - A rational function s(x) that has no horizontal asymptote, has zeros at x = -5 and x = 3, has a single vertical asymptote at x = -1, and satisfies \lim_{x \to \infty} s(x) = -\infty and \lim_{x \to -\infty} s(x) = +\infty. -

    -
  4. -
  5. -

    - A rational function u(x) that is positive for x \lt -4, negative for -4 \lt x \lt -2, negative for -2 \lt x \lt 1, positive for 1 \lt x \lt 5, and negative for x \gt 5. The only zeros of u are located at x = -4 and x = -2. In addition, u has a hole at x = 4. -

    -
  6. -
  7. -

    - A rational function w(x) whose graph is shown in Figure. -

    - -
    - A plot of the rational function w. -

    A plot of the rational function w.

    -
    -
    -
  8. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - We need b = -\dfrac{3}{7} (horizontal asymptote) and a = \dfrac{5}{2} (vertical asymptote). Then r(0) = \dfrac{k}{0 - \frac{5}{2}} - \dfrac{3}{7} = -\dfrac{2k}{5} - \dfrac{3}{7} = 4, so -\dfrac{2k}{5} = \dfrac{31}{7} and k = -\dfrac{155}{14}. Thus r(x) = -\dfrac{155/14}{x - 5/2} - \dfrac{3}{7}. -

    -
  2. -
  3. -

    - We need: numerator degree greater than denominator degree (no horizontal asymptote); zeros at x=-5 and x=3; single vertical asymptote at x=-1; and the correct end behavior. The function - - s(x) = -\frac{(x+5)(x-3)}{x+1} - - satisfies all criteria: as x \to \infty, s(x) \to -\infty (since -(+)(+)/(+) \to -\infty); as x \to -\infty, s(x) \to +\infty. -

    -
  4. -
  5. -

    - Zeros only at x=-4 and x=-2, with x=-2 having even multiplicity (no sign change), VAs at x=1 and x=5, hole at x=4. One formula: - - u(x) = \frac{(x+4)(x+2)^2(x-4)}{(x-1)(x-5)(x-4)}. - -

    -
  6. -
  7. -

    - Reading from the graph: zeros near x=-1 and x=5, vertical asymptotes near x=3 and x=8, a hole near x=10, and a horizontal asymptote near y=0. One formula consistent with the graph is - - w(x) = -\frac{(x+2)(x-5)(x-10)}{5(x-3)(x-8)(x-10)}. - -

    -
  8. -
-

-
-
- - - -

- Graph each of the following rational functions and decide whether or not each function has an inverse function. If an inverse function exists, find its formula. In addition, state the domain and range of each function you consider (the original function as well as its inverse function, if the inverse function exists). -

- -

-

    -
  1. -

    - \displaystyle r(x) = -\frac{3}{x-4} + 5 -

    -
  2. -
  3. -

    - \displaystyle s(x) = \frac{4 - 3x}{7x - 2} -

    -
  4. -
  5. -

    - \displaystyle u(x) = \frac{2x - 1}{(x-1)^2} -

    -
  6. -
  7. -

    - \displaystyle w(x) = \frac{11}{(x+4)^3} - 7 -

    -
  8. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - r(x) = -\dfrac{3}{x-4} + 5. Domain: x \neq 4. Range: r \neq 5. The graph passes the horizontal line test, so an inverse exists. Solving y = -\dfrac{3}{x-4}+5 for x: y-5 = -\dfrac{3}{x-4}, so x-4 = -\dfrac{3}{y-5} and x = 4 - \dfrac{3}{y-5}. Thus - - r^{-1}(x) = 4 - \frac{3}{x-5}. - - Domain of r^{-1}: x \neq 5. Range of r^{-1}: r^{-1} \neq 4. -

    -
  2. -
  3. -

    - s(x) = \dfrac{4-3x}{7x-2}. Domain: x \neq \dfrac{2}{7}. Range: s \neq -\dfrac{3}{7}. The graph passes the horizontal line test. Solving y = \dfrac{4-3x}{7x-2} for x: y(7x-2) = 4-3x, so 7xy + 3x = 4+2y, giving x = \dfrac{2y+4}{7y+3}. Thus - - s^{-1}(x) = \frac{2x+4}{7x+3}. - - Domain of s^{-1}: x \neq -\dfrac{3}{7}. Range of s^{-1}: s^{-1} \neq \dfrac{2}{7}. -

    -
  4. -
  5. -

    - u(x) = \dfrac{2x-1}{(x-1)^2}. Domain: x \neq 1. This function fails the horizontal line test (not monotone), so it has no inverse function. -

    -
  6. -
  7. -

    - w(x) = \dfrac{11}{(x+4)^3} - 7. Domain: x \neq -4. Range: w \neq -7. The graph passes the horizontal line test. Solving for x: y+7 = \dfrac{11}{(x+4)^3}, so (x+4)^3 = \dfrac{11}{y+7} and x = -4 + \sqrt[3]{\dfrac{11}{y+7}}. Thus - - w^{-1}(x) = -4 + \sqrt[3]{\frac{11}{x+7}}. - - Domain of w^{-1}: x \neq -7. Range of w^{-1}: w^{-1} \neq -4. -

    -
  8. -
-

-
-
- - - -

- For each of the following rational functions, identify the location of any potential hole in the graph. Then, create a table of function values for input values near where the hole should be located. Use your work to decide whether or not the graph indeed has a hole, with written justification. -

- -

-

    -
  1. -

    - \displaystyle r(x) = \frac{x^2-16}{x+4} -

    -
  2. -
  3. -

    - \displaystyle s(x) = \frac{(x-2)^2(x+3)}{x^2 - 5x - 6} -

    -
  4. -
  5. -

    - \displaystyle u(x) = \frac{(x-2)^3(x+3)}{(x^2 - 5x - 6)(x-7)} -

    -
  6. -
  7. -

    - \displaystyle w(x) = \frac{x^2 + x - 6}{(x^2 + 5x + 6)(x+3)} -

    -
  8. -
  9. -

    - True or false: given r(x) = \frac{p(x)}{q(x)}, if p(a) = 0 and q(a) = 0, then r has a hole at x = a. -

    -
  10. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - r(x) = \dfrac{x^2-16}{x+4} = \dfrac{(x-4)(x+4)}{x+4}. At x = -4, both numerator and denominator are zero. After cancellation, r(x) = x-4 for x \neq -4. Near x = -4, the values approach -4-4 = -8 (e.g., r(-3.9) \approx -7.9). So the graph has a hole at (-4, -8). -

    -
  2. -
  3. -

    - s(x) = \dfrac{(x-2)^2(x+3)}{x^2-5x-6} = \dfrac{(x-2)^2(x+3)}{(x-6)(x+1)}. The denominator zeros are x = 6 and x = -1; neither equals a numerator zero. There are no holes. -

    -
  4. -
  5. -

    - u(x) = \dfrac{(x-2)^3(x+3)}{(x^2-5x-6)(x-7)} = \dfrac{(x-2)^3(x+3)}{(x-6)(x+1)(x-7)}. The denominator zeros x=6, x=-1, x=7 share no factors with the numerator. There are no holes. -

    -
  6. -
  7. -

    - w(x) = \dfrac{x^2+x-6}{(x^2+5x+6)(x+3)} = \dfrac{(x+3)(x-2)}{(x+2)(x+3)^2}. One factor of (x+3) cancels, leaving \dfrac{x-2}{(x+2)(x+3)}. At x=-3, the original is 0/0 and the reduced form still has (x+3) in the denominator, so x=-3 is a vertical asymptote, not a hole. There are no holes. -

    -
  8. -
  9. -

    - False. Part (d) provides a counterexample: at x=-3, both p(-3)=0 and q(-3)=0, yet the graph has a vertical asymptote rather than a hole. A hole occurs only when the factor cancels completely in the reduced form. -

    -
  10. -
-

-
-
- - - -

- In the questions that follow, we explore the average rate of change of power functions on the interval [1,x]. To begin, let f(x) = x^2 and let A(x) be the average rate of change of f on [1,x]. -

- -

-

    -
  1. -

    - Explain why A is a rational function of x. -

    -
  2. -
  3. -

    - What is the domain of A? -

    -
  4. -
  5. -

    - At the point where A is undefined, does A have a vertical asymptote or a hole? Justify your thinking clearly. -

    -
  6. -
  7. -

    - What can you say about the average rate of change of f on [1,x] as x gets closer and closer (but not equal) to 1? -

    -
  8. -
  9. -

    - Now let g(x) = x^3 and B(x) be the average rate of change of B on [1,x]. Respond to prompts (a) - (d) but this time for the function B instead of A. -

    -
  10. -
  11. -

    - Finally, let h(x) = x^4 and C(x) be the average rate of change of C on [1,x]. Respond to prompts (a) - (d) but this time for the function C instead of A. -

    -
  12. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - A(x) = \dfrac{f(x)-f(1)}{x-1} = \dfrac{x^2-1}{x-1}, which is a ratio of polynomials and hence a rational function. -

    -
  2. -
  3. -

    - A is undefined at x = 1 (divides by zero). Domain: all real numbers except x = 1. -

    -
  4. -
  5. -

    - Factoring: A(x) = \dfrac{(x+1)(x-1)}{x-1} = x+1 for x \neq 1. Near x=1, A(x) \to 2. So A has a hole at (1, 2), not a vertical asymptote. -

    -
  6. -
  7. -

    - As x \to 1, A(x) = x+1 \to 2. The average rate of change of f(x)=x^2 on [1,x] approaches 2. -

    -
  8. -
  9. -

    - For g(x) = x^3: B(x) = \dfrac{x^3-1}{x-1} = \dfrac{(x-1)(x^2+x+1)}{x-1} = x^2+x+1 for x \neq 1. This is a rational function. Domain: x \neq 1. Hole at (1, 3) (since 1^2+1+1=3). As x \to 1, B(x) \to 3. -

    -
  10. -
  11. -

    - For h(x) = x^4: C(x) = \dfrac{x^4-1}{x-1} = \dfrac{(x-1)(x^3+x^2+x+1)}{x-1} = x^3+x^2+x+1 for x \neq 1. This is a rational function. Domain: x \neq 1. Hole at (1, 4). As x \to 1, C(x) \to 4. -

    -
  12. -
-

-
-
- -
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+ For each of the following rational functions, determine, with justification, the exact locations of all (i) horizontal asymptotes, (ii) vertical asymptotes, (iii) zeros, and (iv) holes of the function. Clearly show your work and thinking. +

+ +

+

    +
  1. +

    + \displaystyle r(x) = \frac{-19(x+11.3)^2(x-15.1)(x-17.3)}{41(x+5.7)(x+11.3)(x-8.4)(x-15.1)} +

    +
  2. +
  3. +

    + \displaystyle s(x) = \frac{-29(x^2-16)(x^2+99)(x-53)}{101(x^2-4)(x-13)^2(x+104)} +

    +
  4. +
  5. +

    + \displaystyle u(x) = \frac{-71(x^2 - 13x + 36)(x-58.4)(x+78.2)}{83(x+58.4)(x-78.2)(x^2 - 12x + 27)} +

    +
  6. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + r(x) = \dfrac{-19(x+11.3)^2(x-15.1)(x-17.3)}{41(x+5.7)(x+11.3)(x-8.4)(x-15.1)}. Both (x+11.3) and (x-15.1) appear in both numerator and denominator, so they cancel. The reduced form is \dfrac{-19(x+11.3)(x-17.3)}{41(x+5.7)(x-8.4)}. +

      +
    • Horizontal asymptote: y = -\dfrac{19}{41} (same degree after cancellation).

    • +
    • Vertical asymptotes: x = -5.7 and x = 8.4.

    • +
    • Zero: x = 17.3 (the factor x+11.3 in reduced numerator gives x=-11.3, but that is a hole).

    • +
    • Holes: at x = -11.3 (hole value 0, since x+11.3=0 makes reduced numerator zero) and at x = 15.1.

    • +
    +

    +
  2. +
  3. +

    + s(x) = \dfrac{-29(x^2-16)(x^2+99)(x-53)}{101(x^2-4)(x-13)^2(x+104)}. Factor: numerator = -29(x-4)(x+4)(x^2+99)(x-53); denominator = 101(x-2)(x+2)(x-13)^2(x+104). No common factors. +

      +
    • Horizontal asymptote: y = -\dfrac{29}{101} (degree 5 over degree 5).

    • +
    • Vertical asymptotes: x = 2, x = -2, x = 13, x = -104.

    • +
    • Zeros: x = 4, x = -4, x = 53 (note x^2+99 > 0 always).

    • +
    • Holes: none.

    • +
    +

    +
  4. +
  5. +

    + u(x) = \dfrac{-71(x^2-13x+36)(x-58.4)(x+78.2)}{83(x+58.4)(x-78.2)(x^2-12x+27)}. Factor: x^2-13x+36 = (x-4)(x-9) and x^2-12x+27 = (x-3)(x-9). The factor (x-9) cancels. +

      +
    • Horizontal asymptote: y = -\dfrac{71}{83} (degree 4 over degree 4).

    • +
    • Vertical asymptotes: x = -58.4, x = 78.2, x = 3.

    • +
    • Zeros: x = 4, x = 58.4, x = -78.2.

    • +
    • Hole: at x = 9.

    • +
    +

    +
  6. +
+

+
+
+ + + +

+ Find a formula for a rational function that meets the stated criteria, with justification. If no such formula is possible, explain why. +

+ +

+

    +
  1. +

    + A rational function r(x) in the form r(x) = \frac{k}{x-a} + b so that r has a horizontal asymptote of y = -\frac{3}{7}, a vertical asymptote of x = \frac{5}{2}, and r(0) = 4. +

    +
  2. +
  3. +

    + A rational function s(x) that has no horizontal asymptote, has zeros at x = -5 and x = 3, has a single vertical asymptote at x = -1, and satisfies \lim_{x \to \infty} s(x) = -\infty and \lim_{x \to -\infty} s(x) = +\infty. +

    +
  4. +
  5. +

    + A rational function u(x) that is positive for x \lt -4, negative for -4 \lt x \lt -2, negative for -2 \lt x \lt 1, positive for 1 \lt x \lt 5, and negative for x \gt 5. The only zeros of u are located at x = -4 and x = -2. In addition, u has a hole at x = 4. +

    +
  6. +
  7. +

    + A rational function w(x) whose graph is shown in Figure. +

    + +
    + A plot of the rational function w. +

    A plot of the rational function w.

    +
    +
    +
  8. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + We need b = -\dfrac{3}{7} (horizontal asymptote) and a = \dfrac{5}{2} (vertical asymptote). Then r(0) = \dfrac{k}{0 - \frac{5}{2}} - \dfrac{3}{7} = -\dfrac{2k}{5} - \dfrac{3}{7} = 4, so -\dfrac{2k}{5} = \dfrac{31}{7} and k = -\dfrac{155}{14}. Thus r(x) = -\dfrac{155/14}{x - 5/2} - \dfrac{3}{7}. +

    +
  2. +
  3. +

    + We need: numerator degree greater than denominator degree (no horizontal asymptote); zeros at x=-5 and x=3; single vertical asymptote at x=-1; and the correct end behavior. The function + + s(x) = -\frac{(x+5)(x-3)}{x+1} + + satisfies all criteria: as x \to \infty, s(x) \to -\infty (since -(+)(+)/(+) \to -\infty); as x \to -\infty, s(x) \to +\infty. +

    +
  4. +
  5. +

    + Zeros only at x=-4 and x=-2, with x=-2 having even multiplicity (no sign change), VAs at x=1 and x=5, hole at x=4. One formula: + + u(x) = \frac{(x+4)(x+2)^2(x-4)}{(x-1)(x-5)(x-4)}. + +

    +
  6. +
  7. +

    + Reading from the graph: zeros near x=-1 and x=5, vertical asymptotes near x=3 and x=8, a hole near x=10, and a horizontal asymptote near y=0. One formula consistent with the graph is + + w(x) = -\frac{(x+2)(x-5)(x-10)}{5(x-3)(x-8)(x-10)}. + +

    +
  8. +
+

+
+
+ + + +

+ Graph each of the following rational functions and decide whether or not each function has an inverse function. If an inverse function exists, find its formula. In addition, state the domain and range of each function you consider (the original function as well as its inverse function, if the inverse function exists). +

+ +

+

    +
  1. +

    + \displaystyle r(x) = -\frac{3}{x-4} + 5 +

    +
  2. +
  3. +

    + \displaystyle s(x) = \frac{4 - 3x}{7x - 2} +

    +
  4. +
  5. +

    + \displaystyle u(x) = \frac{2x - 1}{(x-1)^2} +

    +
  6. +
  7. +

    + \displaystyle w(x) = \frac{11}{(x+4)^3} - 7 +

    +
  8. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + r(x) = -\dfrac{3}{x-4} + 5. Domain: x \neq 4. Range: r \neq 5. The graph passes the horizontal line test, so an inverse exists. Solving y = -\dfrac{3}{x-4}+5 for x: y-5 = -\dfrac{3}{x-4}, so x-4 = -\dfrac{3}{y-5} and x = 4 - \dfrac{3}{y-5}. Thus + + r^{-1}(x) = 4 - \frac{3}{x-5}. + + Domain of r^{-1}: x \neq 5. Range of r^{-1}: r^{-1} \neq 4. +

    +
  2. +
  3. +

    + s(x) = \dfrac{4-3x}{7x-2}. Domain: x \neq \dfrac{2}{7}. Range: s \neq -\dfrac{3}{7}. The graph passes the horizontal line test. Solving y = \dfrac{4-3x}{7x-2} for x: y(7x-2) = 4-3x, so 7xy + 3x = 4+2y, giving x = \dfrac{2y+4}{7y+3}. Thus + + s^{-1}(x) = \frac{2x+4}{7x+3}. + + Domain of s^{-1}: x \neq -\dfrac{3}{7}. Range of s^{-1}: s^{-1} \neq \dfrac{2}{7}. +

    +
  4. +
  5. +

    + u(x) = \dfrac{2x-1}{(x-1)^2}. Domain: x \neq 1. This function fails the horizontal line test (not monotone), so it has no inverse function. +

    +
  6. +
  7. +

    + w(x) = \dfrac{11}{(x+4)^3} - 7. Domain: x \neq -4. Range: w \neq -7. The graph passes the horizontal line test. Solving for x: y+7 = \dfrac{11}{(x+4)^3}, so (x+4)^3 = \dfrac{11}{y+7} and x = -4 + \sqrt[3]{\dfrac{11}{y+7}}. Thus + + w^{-1}(x) = -4 + \sqrt[3]{\frac{11}{x+7}}. + + Domain of w^{-1}: x \neq -7. Range of w^{-1}: w^{-1} \neq -4. +

    +
  8. +
+

+
+
+ + + +

+ For each of the following rational functions, identify the location of any potential hole in the graph. Then, create a table of function values for input values near where the hole should be located. Use your work to decide whether or not the graph indeed has a hole, with written justification. +

+ +

+

    +
  1. +

    + \displaystyle r(x) = \frac{x^2-16}{x+4} +

    +
  2. +
  3. +

    + \displaystyle s(x) = \frac{(x-2)^2(x+3)}{x^2 - 5x - 6} +

    +
  4. +
  5. +

    + \displaystyle u(x) = \frac{(x-2)^3(x+3)}{(x^2 - 5x - 6)(x-7)} +

    +
  6. +
  7. +

    + \displaystyle w(x) = \frac{x^2 + x - 6}{(x^2 + 5x + 6)(x+3)} +

    +
  8. +
  9. +

    + True or false: given r(x) = \frac{p(x)}{q(x)}, if p(a) = 0 and q(a) = 0, then r has a hole at x = a. +

    +
  10. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + r(x) = \dfrac{x^2-16}{x+4} = \dfrac{(x-4)(x+4)}{x+4}. At x = -4, both numerator and denominator are zero. After cancellation, r(x) = x-4 for x \neq -4. Near x = -4, the values approach -4-4 = -8 (e.g., r(-3.9) \approx -7.9). So the graph has a hole at (-4, -8). +

    +
  2. +
  3. +

    + s(x) = \dfrac{(x-2)^2(x+3)}{x^2-5x-6} = \dfrac{(x-2)^2(x+3)}{(x-6)(x+1)}. The denominator zeros are x = 6 and x = -1; neither equals a numerator zero. There are no holes. +

    +
  4. +
  5. +

    + u(x) = \dfrac{(x-2)^3(x+3)}{(x^2-5x-6)(x-7)} = \dfrac{(x-2)^3(x+3)}{(x-6)(x+1)(x-7)}. The denominator zeros x=6, x=-1, x=7 share no factors with the numerator. There are no holes. +

    +
  6. +
  7. +

    + w(x) = \dfrac{x^2+x-6}{(x^2+5x+6)(x+3)} = \dfrac{(x+3)(x-2)}{(x+2)(x+3)^2}. One factor of (x+3) cancels, leaving \dfrac{x-2}{(x+2)(x+3)}. At x=-3, the original is 0/0 and the reduced form still has (x+3) in the denominator, so x=-3 is a vertical asymptote, not a hole. There are no holes. +

    +
  8. +
  9. +

    + False. Part (d) provides a counterexample: at x=-3, both p(-3)=0 and q(-3)=0, yet the graph has a vertical asymptote rather than a hole. A hole occurs only when the factor cancels completely in the reduced form. +

    +
  10. +
+

+
+
+ + + +

+ In the questions that follow, we explore the average rate of change of power functions on the interval [1,x]. To begin, let f(x) = x^2 and let A(x) be the average rate of change of f on [1,x]. +

+ +

+

    +
  1. +

    + Explain why A is a rational function of x. +

    +
  2. +
  3. +

    + What is the domain of A? +

    +
  4. +
  5. +

    + At the point where A is undefined, does A have a vertical asymptote or a hole? Justify your thinking clearly. +

    +
  6. +
  7. +

    + What can you say about the average rate of change of f on [1,x] as x gets closer and closer (but not equal) to 1? +

    +
  8. +
  9. +

    + Now let g(x) = x^3 and B(x) be the average rate of change of B on [1,x]. Respond to prompts (a) - (d) but this time for the function B instead of A. +

    +
  10. +
  11. +

    + Finally, let h(x) = x^4 and C(x) be the average rate of change of C on [1,x]. Respond to prompts (a) - (d) but this time for the function C instead of A. +

    +
  12. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + A(x) = \dfrac{f(x)-f(1)}{x-1} = \dfrac{x^2-1}{x-1}, which is a ratio of polynomials and hence a rational function. +

    +
  2. +
  3. +

    + A is undefined at x = 1 (divides by zero). Domain: all real numbers except x = 1. +

    +
  4. +
  5. +

    + Factoring: A(x) = \dfrac{(x+1)(x-1)}{x-1} = x+1 for x \neq 1. Near x=1, A(x) \to 2. So A has a hole at (1, 2), not a vertical asymptote. +

    +
  6. +
  7. +

    + As x \to 1, A(x) = x+1 \to 2. The average rate of change of f(x)=x^2 on [1,x] approaches 2. +

    +
  8. +
  9. +

    + For g(x) = x^3: B(x) = \dfrac{x^3-1}{x-1} = \dfrac{(x-1)(x^2+x+1)}{x-1} = x^2+x+1 for x \neq 1. This is a rational function. Domain: x \neq 1. Hole at (1, 3) (since 1^2+1+1=3). As x \to 1, B(x) \to 3. +

    +
  10. +
  11. +

    + For h(x) = x^4: C(x) = \dfrac{x^4-1}{x-1} = \dfrac{(x-1)(x^3+x^2+x+1)}{x-1} = x^3+x^2+x+1 for x \neq 1. This is a rational function. Domain: x \neq 1. Hole at (1, 4). As x \to 1, C(x) \to 4. +

    +
  12. +
+

+
+
+ +
diff --git a/source/exercises/ez-poly-rational.xml b/source/exercises/ez-poly-rational.xml index 01e134d0..173181f7 100755 --- a/source/exercises/ez-poly-rational.xml +++ b/source/exercises/ez-poly-rational.xml @@ -1,227 +1,227 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

- For each rational function below, determine the function's domain as well as any horizontal asymptotes. -

- -

-

    -
  1. -

    - \displaystyle f(x) = \frac{17x^2 + 34}{19x^2 - 76} -

    -
  2. -
  3. -

    - \displaystyle g(x) = \frac{29}{53} + \frac{1}{x-2} -

    -
  4. -
  5. -

    - \displaystyle h(x) = \frac{4-31x}{11x - 7} -

    -
  6. -
  7. -

    - \displaystyle r(x) = \frac{151(x-4)(x+5)^2(x-2)}{537(x+5)(x+1)(x^2+1)(x-15)} -

    -
  8. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - f(x) = \dfrac{17x^2+34}{19x^2-76} = \dfrac{17(x^2+2)}{19(x-2)(x+2)}. Domain: all real numbers except x = \pm 2. Horizontal asymptote: y = \dfrac{17}{19} (ratio of leading coefficients, same degree). -

    -
  2. -
  3. -

    - g(x) = \dfrac{29}{53} + \dfrac{1}{x-2} is undefined at x = 2. Domain: all real numbers except x = 2. Horizontal asymptote: y = \dfrac{29}{53} (as x \to \pm\infty, the term \frac{1}{x-2} \to 0). -

    -
  4. -
  5. -

    - h(x) = \dfrac{4-31x}{11x-7} is undefined at x = \dfrac{7}{11}. Domain: all real numbers except x = \dfrac{7}{11}. Horizontal asymptote: y = \dfrac{-31}{11} (ratio of leading coefficients). -

    -
  6. -
  7. -

    - r(x) = \dfrac{151(x-4)(x+5)^2(x-2)}{537(x+5)(x+1)(x^2+1)(x-15)}. The factor (x+5) cancels, leaving a hole at x = -5. The reduced denominator zeros are x = -1 and x = 15 (note x^2+1 > 0 always). Domain: all real numbers except x = -5, x = -1, and x = 15. Since the numerator has degree 4 and denominator has degree 5, the horizontal asymptote is y = 0. -

    -
  8. -
-

-
-
- - - -

- A rectangular box is being constructed so that its base is 1.5 times as long as it is wide. In addition, suppose that material for the base and top of the box costs $3.75 per square foot, while material for the sides costs $2.50 per square foot. Finally, we want the box to hold 8 cubic feet of volume. -

- -

-

    -
  1. -

    - Draw a labeled picture of the box with x as the length of the shorter side of the box's base and h as its height. -

    -
  2. -
  3. -

    - Determine a formula involving x and h for the total surface area, S, of the box. -

    -
  4. -
  5. -

    - Use your work from (b) along with the given information about cost to determine a formula for the total cost, C, oif the box in terms of x and h. -

    -
  6. -
  7. -

    - Use the volume constraint given in the problem to write an equation that relates x and h, and solve that equation for h in terms of x. -

    -
  8. -
  9. -

    - Combine your work in (c) and (d) to write the cost, C, of the box as a function solely of x. -

    -
  10. -
  11. -

    - What is the domain of the cost function? How does a graph of the cost function appear? What does this suggest about the ideal box for the given constraints? -

    -
  12. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - The box has width x, length 1.5x, and height h. -

    -
  2. -
  3. -

    - The surface area is: base and top each 1.5x^2, two short sides each xh, two long sides each 1.5xh. So S = 3x^2 + 5xh. -

    -
  4. -
  5. -

    - Cost: C = 3.75(3x^2) + 2.50(5xh) = 11.25x^2 + 12.50xh. -

    -
  6. -
  7. -

    - Volume constraint: 1.5x^2 h = 8, so h = \dfrac{8}{1.5x^2} = \dfrac{16}{3x^2}. -

    -
  8. -
  9. -

    - Substituting: - - C(x) = 11.25x^2 + 12.50 \cdot x \cdot \frac{16}{3x^2} = 11.25x^2 + \frac{200}{3x}. - -

    -
  10. -
  11. -

    - The domain is x > 0. As x \to 0^+, C \to \infty; as x \to \infty, C \to \infty. A graph shows a minimum at x \approx 1.44 ft, suggesting the ideal box has approximate dimensions 1.44 \times 2.15 \times 2.58 feet. -

    -
  12. -
-

-
-
- - - -

- A cylindrical can is being constructed so that its volume is 16 cubic inches. Suppose that material for the lids (the top and bottom) cost $0.11 per square inch and material for the side of the can costs $0.07 per square inch. Determine a formula for the total cost of the can as a function of the can's radius. What is the domain of the function and why? -

-
- -

- You may find it helpful to ask yourself a sequence of questions like those stated in Exercise). -

-
- -

- Exercise Answer -

-
- -

- With radius r and height h, the volume constraint \pi r^2 h = 16 gives h = \dfrac{16}{\pi r^2}. The cost is - - C(r) &= 0.11 \cdot 2\pi r^2 + 0.07 \cdot 2\pi r h - &= 0.22\pi r^2 + 0.14\pi r \cdot \frac{16}{\pi r^2} - &= 0.22\pi r^2 + \frac{2.24}{r}. - - Numerically, C(r) \approx 0.691 r^2 + \dfrac{2.240}{r}. The domain is r > 0 (radius must be positive). A graph shows a minimum at r \approx 1.48 inches, giving a height of about h \approx 2.33 inches and cost of about \$3.03. -

-
-
-
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+ For each rational function below, determine the function's domain as well as any horizontal asymptotes. +

+ +

+

    +
  1. +

    + \displaystyle f(x) = \frac{17x^2 + 34}{19x^2 - 76} +

    +
  2. +
  3. +

    + \displaystyle g(x) = \frac{29}{53} + \frac{1}{x-2} +

    +
  4. +
  5. +

    + \displaystyle h(x) = \frac{4-31x}{11x - 7} +

    +
  6. +
  7. +

    + \displaystyle r(x) = \frac{151(x-4)(x+5)^2(x-2)}{537(x+5)(x+1)(x^2+1)(x-15)} +

    +
  8. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + f(x) = \dfrac{17x^2+34}{19x^2-76} = \dfrac{17(x^2+2)}{19(x-2)(x+2)}. Domain: all real numbers except x = \pm 2. Horizontal asymptote: y = \dfrac{17}{19} (ratio of leading coefficients, same degree). +

    +
  2. +
  3. +

    + g(x) = \dfrac{29}{53} + \dfrac{1}{x-2} is undefined at x = 2. Domain: all real numbers except x = 2. Horizontal asymptote: y = \dfrac{29}{53} (as x \to \pm\infty, the term \frac{1}{x-2} \to 0). +

    +
  4. +
  5. +

    + h(x) = \dfrac{4-31x}{11x-7} is undefined at x = \dfrac{7}{11}. Domain: all real numbers except x = \dfrac{7}{11}. Horizontal asymptote: y = \dfrac{-31}{11} (ratio of leading coefficients). +

    +
  6. +
  7. +

    + r(x) = \dfrac{151(x-4)(x+5)^2(x-2)}{537(x+5)(x+1)(x^2+1)(x-15)}. The factor (x+5) cancels, leaving a hole at x = -5. The reduced denominator zeros are x = -1 and x = 15 (note x^2+1 > 0 always). Domain: all real numbers except x = -5, x = -1, and x = 15. Since the numerator has degree 4 and denominator has degree 5, the horizontal asymptote is y = 0. +

    +
  8. +
+

+
+
+ + + +

+ A rectangular box is being constructed so that its base is 1.5 times as long as it is wide. In addition, suppose that material for the base and top of the box costs $3.75 per square foot, while material for the sides costs $2.50 per square foot. Finally, we want the box to hold 8 cubic feet of volume. +

+ +

+

    +
  1. +

    + Draw a labeled picture of the box with x as the length of the shorter side of the box's base and h as its height. +

    +
  2. +
  3. +

    + Determine a formula involving x and h for the total surface area, S, of the box. +

    +
  4. +
  5. +

    + Use your work from (b) along with the given information about cost to determine a formula for the total cost, C, oif the box in terms of x and h. +

    +
  6. +
  7. +

    + Use the volume constraint given in the problem to write an equation that relates x and h, and solve that equation for h in terms of x. +

    +
  8. +
  9. +

    + Combine your work in (c) and (d) to write the cost, C, of the box as a function solely of x. +

    +
  10. +
  11. +

    + What is the domain of the cost function? How does a graph of the cost function appear? What does this suggest about the ideal box for the given constraints? +

    +
  12. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + The box has width x, length 1.5x, and height h. +

    +
  2. +
  3. +

    + The surface area is: base and top each 1.5x^2, two short sides each xh, two long sides each 1.5xh. So S = 3x^2 + 5xh. +

    +
  4. +
  5. +

    + Cost: C = 3.75(3x^2) + 2.50(5xh) = 11.25x^2 + 12.50xh. +

    +
  6. +
  7. +

    + Volume constraint: 1.5x^2 h = 8, so h = \dfrac{8}{1.5x^2} = \dfrac{16}{3x^2}. +

    +
  8. +
  9. +

    + Substituting: + + C(x) = 11.25x^2 + 12.50 \cdot x \cdot \frac{16}{3x^2} = 11.25x^2 + \frac{200}{3x}. + +

    +
  10. +
  11. +

    + The domain is x > 0. As x \to 0^+, C \to \infty; as x \to \infty, C \to \infty. A graph shows a minimum at x \approx 1.44 ft, suggesting the ideal box has approximate dimensions 1.44 \times 2.15 \times 2.58 feet. +

    +
  12. +
+

+
+
+ + + +

+ A cylindrical can is being constructed so that its volume is 16 cubic inches. Suppose that material for the lids (the top and bottom) cost $0.11 per square inch and material for the side of the can costs $0.07 per square inch. Determine a formula for the total cost of the can as a function of the can's radius. What is the domain of the function and why? +

+
+ +

+ You may find it helpful to ask yourself a sequence of questions like those stated in Exercise). +

+
+ +

+ Exercise Answer +

+
+ +

+ With radius r and height h, the volume constraint \pi r^2 h = 16 gives h = \dfrac{16}{\pi r^2}. The cost is + + C(r) &= 0.11 \cdot 2\pi r^2 + 0.07 \cdot 2\pi r h + &= 0.22\pi r^2 + 0.14\pi r \cdot \frac{16}{\pi r^2} + &= 0.22\pi r^2 + \frac{2.24}{r}. + + Numerically, C(r) \approx 0.691 r^2 + \dfrac{2.240}{r}. The domain is r > 0 (radius must be positive). A graph shows a minimum at r \approx 1.48 inches, giving a height of about h \approx 2.33 inches and cost of about \$3.03. +

+
+
+
diff --git a/source/exercises/ez-trig-finding-angles.xml b/source/exercises/ez-trig-finding-angles.xml index b6fd726c..0701a692 100755 --- a/source/exercises/ez-trig-finding-angles.xml +++ b/source/exercises/ez-trig-finding-angles.xml @@ -1,266 +1,266 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

- At an airshow, a pilot is flying low over a runway while maintaining a constant altitude of 2000 feet and a constant speed. On a straight path over the runway, the pilot observes on her laser range-finder that the distance from the plane to a fixed building adjacent to the runway is 7500 feet. Five seconds later, she observes that distance to the same building is now 6000 feet. -

- -

-

    -
  1. -

    - What is the angle of depression from the plane to the building when the plane is 7500 feet away from the building? (The angle of depression is the angle that the pilot's line of sight makes with the horizontal.) -

    -
  2. -
  3. -

    - What is the angle of depression when the plane is 6000 feet from the building? -

    -
  4. -
  5. -

    - How far did the plane travel during the time between the two different observations? -

    -
  6. -
  7. -

    - What is the plane's velocity (in miles per hour)? -

    -
  8. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - The plane is at altitude 2000 feet and 7500 feet from the building (slant distance). The angle of depression is \arcsin\!\left(\dfrac{2000}{7500}\right) = \arcsin\!\left(\dfrac{4}{15}\right) \approx 0.2699 radians, or about 15.47^{\circ}. -

    -
  2. -
  3. -

    - When the slant distance is 6000 feet, the angle of depression is \arcsin\!\left(\dfrac{2000}{6000}\right) = \arcsin\!\left(\dfrac{1}{3}\right) \approx 0.3398 radians, or about 19.47^{\circ}. -

    -
  4. -
  5. -

    - The horizontal distance at 7500 feet is \sqrt{7500^2 - 2000^2} = 500\sqrt{209} \approx 7228 feet, and at 6000 feet it is \sqrt{6000^2 - 2000^2} = 4000\sqrt{2} \approx 5657 feet. The plane traveled 500\sqrt{209} - 4000\sqrt{2} = 500(\sqrt{209} - 8\sqrt{2}) \approx 1572 feet. -

    -
  6. -
  7. -

    - Traveling 500(\sqrt{209}-8\sqrt{2}) feet in 5 seconds gives a speed of 100(\sqrt{209}-8\sqrt{2}) \approx 314 feet per second, which is approximately 214 miles per hour. -

    -
  8. -
-

-
-
- - - -

- On a calm day, a photographer is filming a hot air balloon. When the balloon launches, the photographer is stationed 850 feet away from the balloon. -

- -

-

    -
  1. -

    - When the balloon is 200 feet off the ground, what is the angle of elevation of the camera? -

    -
  2. -
  3. -

    - When the balloon is 275 feet off the ground, what is the angle of elevation of the camera? -

    -
  4. -
  5. -

    - Let \theta represent the camera's angle of elevation when the balloon is at an arbitrary height h above the ground. Express \theta as a function of h. -

    -
  6. -
  7. -

    - Determine AV_{[200,275]} for \theta (as a function of h) and write at least one sentence to carefully explain the meaning of the value you find, including units. -

    -
  8. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - When the balloon is 200 feet off the ground, the angle of elevation is \arctan\!\left(\dfrac{200}{850}\right) \approx 0.2311 radians (about 13.24^{\circ}). -

    -
  2. -
  3. -

    - When the balloon is 275 feet off the ground, the angle of elevation is \arctan\!\left(\dfrac{275}{850}\right) \approx 0.3129 radians (about 17.93^{\circ}). -

    -
  4. -
  5. -

    - The angle of elevation as a function of height is \theta(h) = \arctan\!\left(\dfrac{h}{850}\right). -

    -
  6. -
  7. -

    - The average rate of change on [200,275] is AV_{[200,275]} = \dfrac{\theta(275) - \theta(200)}{75} \approx \dfrac{0.3129 - 0.2311}{75} \approx 0.001091 radians per foot. This means that as the balloon rises from 200 to 275 feet, the camera angle must increase at an average rate of about 0.001091 radians for each foot of altitude gained. -

    -
  8. -
-

-
-
- - - -

- Consider a right triangle where the two legs measure 5 and 12 respectively and \alpha is the angle opposite the shorter leg and \beta is the angle opposite the longer leg. -

- -

-

    -
  1. -

    - What is the exact value of \cos(\alpha)? -

    -
  2. -
  3. -

    - What is the exact value of \sin(\beta)? -

    -
  4. -
  5. -

    - What is the exact value of \tan(\beta)? of \tan(\alpha)? -

    -
  6. -
  7. -

    - What is the exact radian measure of \alpha? approximate measure? -

    -
  8. -
  9. -

    - What is the exact radian measure of \beta? approximate measure? -

    -
  10. -
  11. -

    - True or false: for any two angles \theta and \gamma such that \theta + \gamma = \frac{\pi}{2} (radians), it follows that \cos(\theta) = \sin(\gamma). -

    -
  12. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - The hypotenuse has length \sqrt{5^2 + 12^2} = 13. Since \alpha is opposite the leg of length 5, we have \cos(\alpha) = \dfrac{12}{13}. -

    -
  2. -
  3. -

    - \sin(\beta) = \dfrac{12}{13}. -

    -
  4. -
  5. -

    - \tan(\beta) = \dfrac{12}{5} and \tan(\alpha) = \dfrac{5}{12}. -

    -
  6. -
  7. -

    - \alpha = \arctan\!\left(\dfrac{5}{12}\right) \approx 0.3948 radians. -

    -
  8. -
  9. -

    - \beta = \arctan\!\left(\dfrac{12}{5}\right) \approx 1.176 radians. -

    -
  10. -
  11. -

    - True. If \theta + \gamma = \frac{\pi}{2}, then \theta and \gamma are complementary angles in a right triangle. Labeling the side opposite \theta as B and the side opposite \gamma as C, with hypotenuse H, we get \cos(\theta) = \frac{C}{H} = \sin(\gamma). -

    -
  12. -
-

-
-
-
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+ At an airshow, a pilot is flying low over a runway while maintaining a constant altitude of 2000 feet and a constant speed. On a straight path over the runway, the pilot observes on her laser range-finder that the distance from the plane to a fixed building adjacent to the runway is 7500 feet. Five seconds later, she observes that distance to the same building is now 6000 feet. +

+ +

+

    +
  1. +

    + What is the angle of depression from the plane to the building when the plane is 7500 feet away from the building? (The angle of depression is the angle that the pilot's line of sight makes with the horizontal.) +

    +
  2. +
  3. +

    + What is the angle of depression when the plane is 6000 feet from the building? +

    +
  4. +
  5. +

    + How far did the plane travel during the time between the two different observations? +

    +
  6. +
  7. +

    + What is the plane's velocity (in miles per hour)? +

    +
  8. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + The plane is at altitude 2000 feet and 7500 feet from the building (slant distance). The angle of depression is \arcsin\!\left(\dfrac{2000}{7500}\right) = \arcsin\!\left(\dfrac{4}{15}\right) \approx 0.2699 radians, or about 15.47^{\circ}. +

    +
  2. +
  3. +

    + When the slant distance is 6000 feet, the angle of depression is \arcsin\!\left(\dfrac{2000}{6000}\right) = \arcsin\!\left(\dfrac{1}{3}\right) \approx 0.3398 radians, or about 19.47^{\circ}. +

    +
  4. +
  5. +

    + The horizontal distance at 7500 feet is \sqrt{7500^2 - 2000^2} = 500\sqrt{209} \approx 7228 feet, and at 6000 feet it is \sqrt{6000^2 - 2000^2} = 4000\sqrt{2} \approx 5657 feet. The plane traveled 500\sqrt{209} - 4000\sqrt{2} = 500(\sqrt{209} - 8\sqrt{2}) \approx 1572 feet. +

    +
  6. +
  7. +

    + Traveling 500(\sqrt{209}-8\sqrt{2}) feet in 5 seconds gives a speed of 100(\sqrt{209}-8\sqrt{2}) \approx 314 feet per second, which is approximately 214 miles per hour. +

    +
  8. +
+

+
+
+ + + +

+ On a calm day, a photographer is filming a hot air balloon. When the balloon launches, the photographer is stationed 850 feet away from the balloon. +

+ +

+

    +
  1. +

    + When the balloon is 200 feet off the ground, what is the angle of elevation of the camera? +

    +
  2. +
  3. +

    + When the balloon is 275 feet off the ground, what is the angle of elevation of the camera? +

    +
  4. +
  5. +

    + Let \theta represent the camera's angle of elevation when the balloon is at an arbitrary height h above the ground. Express \theta as a function of h. +

    +
  6. +
  7. +

    + Determine AV_{[200,275]} for \theta (as a function of h) and write at least one sentence to carefully explain the meaning of the value you find, including units. +

    +
  8. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + When the balloon is 200 feet off the ground, the angle of elevation is \arctan\!\left(\dfrac{200}{850}\right) \approx 0.2311 radians (about 13.24^{\circ}). +

    +
  2. +
  3. +

    + When the balloon is 275 feet off the ground, the angle of elevation is \arctan\!\left(\dfrac{275}{850}\right) \approx 0.3129 radians (about 17.93^{\circ}). +

    +
  4. +
  5. +

    + The angle of elevation as a function of height is \theta(h) = \arctan\!\left(\dfrac{h}{850}\right). +

    +
  6. +
  7. +

    + The average rate of change on [200,275] is AV_{[200,275]} = \dfrac{\theta(275) - \theta(200)}{75} \approx \dfrac{0.3129 - 0.2311}{75} \approx 0.001091 radians per foot. This means that as the balloon rises from 200 to 275 feet, the camera angle must increase at an average rate of about 0.001091 radians for each foot of altitude gained. +

    +
  8. +
+

+
+
+ + + +

+ Consider a right triangle where the two legs measure 5 and 12 respectively and \alpha is the angle opposite the shorter leg and \beta is the angle opposite the longer leg. +

+ +

+

    +
  1. +

    + What is the exact value of \cos(\alpha)? +

    +
  2. +
  3. +

    + What is the exact value of \sin(\beta)? +

    +
  4. +
  5. +

    + What is the exact value of \tan(\beta)? of \tan(\alpha)? +

    +
  6. +
  7. +

    + What is the exact radian measure of \alpha? approximate measure? +

    +
  8. +
  9. +

    + What is the exact radian measure of \beta? approximate measure? +

    +
  10. +
  11. +

    + True or false: for any two angles \theta and \gamma such that \theta + \gamma = \frac{\pi}{2} (radians), it follows that \cos(\theta) = \sin(\gamma). +

    +
  12. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + The hypotenuse has length \sqrt{5^2 + 12^2} = 13. Since \alpha is opposite the leg of length 5, we have \cos(\alpha) = \dfrac{12}{13}. +

    +
  2. +
  3. +

    + \sin(\beta) = \dfrac{12}{13}. +

    +
  4. +
  5. +

    + \tan(\beta) = \dfrac{12}{5} and \tan(\alpha) = \dfrac{5}{12}. +

    +
  6. +
  7. +

    + \alpha = \arctan\!\left(\dfrac{5}{12}\right) \approx 0.3948 radians. +

    +
  8. +
  9. +

    + \beta = \arctan\!\left(\dfrac{12}{5}\right) \approx 1.176 radians. +

    +
  10. +
  11. +

    + True. If \theta + \gamma = \frac{\pi}{2}, then \theta and \gamma are complementary angles in a right triangle. Labeling the side opposite \theta as B and the side opposite \gamma as C, with hypotenuse H, we get \cos(\theta) = \frac{C}{H} = \sin(\gamma). +

    +
  12. +
+

+
+
+
diff --git a/source/exercises/ez-trig-inverse.xml b/source/exercises/ez-trig-inverse.xml index 17c08396..85d846df 100755 --- a/source/exercises/ez-trig-inverse.xml +++ b/source/exercises/ez-trig-inverse.xml @@ -1,278 +1,278 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

- Use the special points on the unit circle (see, for instance, Figure) to determine the exact values of each of the following numerical expressions. Do so without using a computational device. -

- -

-

    -
  1. -

    - \arcsin(\frac{1}{2}) -

    -
  2. -
  3. -

    - \arctan(-1) -

    -
  4. -
  5. -

    - \arcsin(-\frac{\sqrt{3}}{2}) -

    -
  6. -
  7. -

    - \arctan(-\frac{1}{\sqrt{3}}) -

    -
  8. -
  9. -

    - \arccos(\sin(\frac{\pi}{3})) -

    -
  10. -
  11. -

    - \cos(\arcsin(-\frac{\sqrt{3}}{2})) -

    -
  12. -
  13. -

    - \tan(\arcsin(-\frac{\sqrt{2}}{2})) -

    -
  14. -
  15. -

    - \arctan(\sin(\frac{\pi}{2})) -

    -
  16. -
  17. -

    - \sin(\arcsin(-\frac{1}{2})) -

    -
  18. -
  19. -

    - \arctan(\tan(\frac{7\pi}{4})) -

    -
  20. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. \arcsin\!\left(\frac{1}{2}\right) = \frac{\pi}{6}

  2. -
  3. \arctan(-1) = -\frac{\pi}{4}

  4. -
  5. \arcsin\!\left(-\frac{\sqrt{3}}{2}\right) = -\frac{\pi}{3}

  6. -
  7. \arctan\!\left(-\frac{1}{\sqrt{3}}\right) = -\frac{\pi}{6}

  8. -
  9. \arccos\!\left(\sin\!\left(\frac{\pi}{3}\right)\right) = \frac{\pi}{6}

  10. -
  11. \cos\!\left(\arcsin\!\left(-\frac{\sqrt{3}}{2}\right)\right) = \frac{1}{2}

  12. -
  13. \tan\!\left(\arcsin\!\left(-\frac{\sqrt{2}}{2}\right)\right) = -1

  14. -
  15. \arctan\!\left(\sin\!\left(\frac{\pi}{2}\right)\right) = \frac{\pi}{4}

  16. -
  17. \sin\!\left(\arcsin\!\left(-\frac{1}{2}\right)\right) = -\frac{1}{2}

  18. -
  19. \arctan\!\left(\tan\!\left(\frac{7\pi}{4}\right)\right) = -\frac{\pi}{4}

  20. -
-

-
-
- - - -

- For each of the following claims, determine whether the statement is true or false. If true, write one sentence to justify your reasoning. If false, give an example of a value that shows the claim fails. -

- -

-

    -
  1. -

    - For any y such that -1 \le y \le 1, \sin(\arcsin(y)) = y. -

    -
  2. -
  3. -

    - For any real number t, \arcsin(\sin(t)) = t. -

    -
  4. -
  5. -

    - For any real number t, \arccos(\cos(t)) = t. -

    -
  6. -
  7. -

    - For any y such that -1 \le y \le 1, \cos(\arccos(y)) = y. -

    -
  8. -
  9. -

    - For any real number y, \tan(\arctan(y)) = y. -

    -
  10. -
  11. -

    - For any real number t, \arctan(\tan(t)) = t. -

    -
  12. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - True. Sine is the inverse function of arcsine, and therefore \sin(\arcsin(y)) = y for any y with -1 \le y \le 1. -

    -
  2. -
  3. -

    - False. For example, \arcsin\!\left(\sin\!\left(\frac{3\pi}{4}\right)\right) = \arcsin\!\left(\frac{\sqrt{2}}{2}\right) = \frac{\pi}{4} \ne \frac{3\pi}{4}. -

    -
  4. -
  5. -

    - False. For example, \arccos\!\left(\cos\!\left(-\frac{\pi}{4}\right)\right) = \arccos\!\left(\frac{\sqrt{2}}{2}\right) = \frac{\pi}{4} \ne -\frac{\pi}{4}. -

    -
  6. -
  7. -

    - True. Cosine is the inverse function of arccosine, and therefore \cos(\arccos(y)) = y for any y with -1 \le y \le 1. -

    -
  8. -
  9. -

    - True. Tangent is the inverse function of arctangent, and therefore \tan(\arctan(y)) = y for any real number y. -

    -
  10. -
  11. -

    - False. For example, \arctan\!\left(\tan\!\left(\frac{3\pi}{4}\right)\right) = \arctan(-1) = -\frac{\pi}{4} \ne \frac{3\pi}{4}. -

    -
  12. -
-

-
-
- - - -

- Let's consider the composite function h(x) = \cos(\arcsin(x)). This function makes sense to consider since the arcsine function produces an angle, at which the cosine function can then be evaluated. In the questions that follow, we investigate how to express h without using trigonometric functions at all. -

- -

-

    -
  1. -

    - What is the domain of h? The range of h? -

    -
  2. -
  3. -

    - Since the arcsine function produces an angle, let's say that \theta = \arcsin(x), so that \theta is the angle whose sine is x. By definition, we can picture \theta as an angle in a right triangle with hypotenuse 1 and a vertical leg of length x, as shown in Figure. Use the Pythagorean Theorem to determine the length of the horizontal leg as a function of x. -

    - - - -
    - The right triangle that corresponds to the angle \theta = \arcsin(x). -

    The right triangle that corresponds to the angle \theta = \arcsin(x).

    -
    -
    - -
    - The right triangle that corresponds to the angle \alpha = \arctan(x). -

    The right triangle that corresponds to the angle \alpha = \arctan(x).

    -
    -
    - -
    -
  4. -
  5. -

    - What is the value of \cos(\theta) as a function of x? What have we shown about h(x) = \cos(\arcsin(x))? -

    -
  6. - -
  7. -

    - How about the function p(x) = \cos(\arctan(x))? How can you reason similarly to write p in a way that doesn't involve any trigonometric functions at all? (Hint: let \alpha = \arctan(x) and consider the right triangle in Figure.) -

    -
  8. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - The domain of h is [-1, 1] (the domain of arcsine). The range of h is [0, 1], since arcsin returns values in \left[-\frac{\pi}{2}, \frac{\pi}{2}\right] and cosine is non-negative on that interval. -

    -
  2. -
  3. -

    - With hypotenuse 1 and vertical leg x, the Pythagorean Theorem gives the horizontal leg length as \sqrt{1 - x^2}. -

    -
  4. -
  5. -

    - We have \cos(\theta) = \dfrac{\sqrt{1-x^2}}{1} = \sqrt{1-x^2}. Therefore h(x) = \cos(\arcsin(x)) = \sqrt{1 - x^2}. -

    -
  6. -
  7. -

    - Let \alpha = \arctan(x), so \tan(\alpha) = x. In the corresponding right triangle, the opposite leg has length x, the adjacent leg has length 1, and by the Pythagorean Theorem the hypotenuse has length \sqrt{1 + x^2}. Therefore p(x) = \cos(\arctan(x)) = \dfrac{1}{\sqrt{1+x^2}}. -

    -
  8. -
-

-
-
- -
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+ Use the special points on the unit circle (see, for instance, Figure) to determine the exact values of each of the following numerical expressions. Do so without using a computational device. +

+ +

+

    +
  1. +

    + \arcsin(\frac{1}{2}) +

    +
  2. +
  3. +

    + \arctan(-1) +

    +
  4. +
  5. +

    + \arcsin(-\frac{\sqrt{3}}{2}) +

    +
  6. +
  7. +

    + \arctan(-\frac{1}{\sqrt{3}}) +

    +
  8. +
  9. +

    + \arccos(\sin(\frac{\pi}{3})) +

    +
  10. +
  11. +

    + \cos(\arcsin(-\frac{\sqrt{3}}{2})) +

    +
  12. +
  13. +

    + \tan(\arcsin(-\frac{\sqrt{2}}{2})) +

    +
  14. +
  15. +

    + \arctan(\sin(\frac{\pi}{2})) +

    +
  16. +
  17. +

    + \sin(\arcsin(-\frac{1}{2})) +

    +
  18. +
  19. +

    + \arctan(\tan(\frac{7\pi}{4})) +

    +
  20. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. \arcsin\!\left(\frac{1}{2}\right) = \frac{\pi}{6}

  2. +
  3. \arctan(-1) = -\frac{\pi}{4}

  4. +
  5. \arcsin\!\left(-\frac{\sqrt{3}}{2}\right) = -\frac{\pi}{3}

  6. +
  7. \arctan\!\left(-\frac{1}{\sqrt{3}}\right) = -\frac{\pi}{6}

  8. +
  9. \arccos\!\left(\sin\!\left(\frac{\pi}{3}\right)\right) = \frac{\pi}{6}

  10. +
  11. \cos\!\left(\arcsin\!\left(-\frac{\sqrt{3}}{2}\right)\right) = \frac{1}{2}

  12. +
  13. \tan\!\left(\arcsin\!\left(-\frac{\sqrt{2}}{2}\right)\right) = -1

  14. +
  15. \arctan\!\left(\sin\!\left(\frac{\pi}{2}\right)\right) = \frac{\pi}{4}

  16. +
  17. \sin\!\left(\arcsin\!\left(-\frac{1}{2}\right)\right) = -\frac{1}{2}

  18. +
  19. \arctan\!\left(\tan\!\left(\frac{7\pi}{4}\right)\right) = -\frac{\pi}{4}

  20. +
+

+
+
+ + + +

+ For each of the following claims, determine whether the statement is true or false. If true, write one sentence to justify your reasoning. If false, give an example of a value that shows the claim fails. +

+ +

+

    +
  1. +

    + For any y such that -1 \le y \le 1, \sin(\arcsin(y)) = y. +

    +
  2. +
  3. +

    + For any real number t, \arcsin(\sin(t)) = t. +

    +
  4. +
  5. +

    + For any real number t, \arccos(\cos(t)) = t. +

    +
  6. +
  7. +

    + For any y such that -1 \le y \le 1, \cos(\arccos(y)) = y. +

    +
  8. +
  9. +

    + For any real number y, \tan(\arctan(y)) = y. +

    +
  10. +
  11. +

    + For any real number t, \arctan(\tan(t)) = t. +

    +
  12. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + True. Sine is the inverse function of arcsine, and therefore \sin(\arcsin(y)) = y for any y with -1 \le y \le 1. +

    +
  2. +
  3. +

    + False. For example, \arcsin\!\left(\sin\!\left(\frac{3\pi}{4}\right)\right) = \arcsin\!\left(\frac{\sqrt{2}}{2}\right) = \frac{\pi}{4} \ne \frac{3\pi}{4}. +

    +
  4. +
  5. +

    + False. For example, \arccos\!\left(\cos\!\left(-\frac{\pi}{4}\right)\right) = \arccos\!\left(\frac{\sqrt{2}}{2}\right) = \frac{\pi}{4} \ne -\frac{\pi}{4}. +

    +
  6. +
  7. +

    + True. Cosine is the inverse function of arccosine, and therefore \cos(\arccos(y)) = y for any y with -1 \le y \le 1. +

    +
  8. +
  9. +

    + True. Tangent is the inverse function of arctangent, and therefore \tan(\arctan(y)) = y for any real number y. +

    +
  10. +
  11. +

    + False. For example, \arctan\!\left(\tan\!\left(\frac{3\pi}{4}\right)\right) = \arctan(-1) = -\frac{\pi}{4} \ne \frac{3\pi}{4}. +

    +
  12. +
+

+
+
+ + + +

+ Let's consider the composite function h(x) = \cos(\arcsin(x)). This function makes sense to consider since the arcsine function produces an angle, at which the cosine function can then be evaluated. In the questions that follow, we investigate how to express h without using trigonometric functions at all. +

+ +

+

    +
  1. +

    + What is the domain of h? The range of h? +

    +
  2. +
  3. +

    + Since the arcsine function produces an angle, let's say that \theta = \arcsin(x), so that \theta is the angle whose sine is x. By definition, we can picture \theta as an angle in a right triangle with hypotenuse 1 and a vertical leg of length x, as shown in Figure. Use the Pythagorean Theorem to determine the length of the horizontal leg as a function of x. +

    + + + +
    + The right triangle that corresponds to the angle \theta = \arcsin(x). +

    The right triangle that corresponds to the angle \theta = \arcsin(x).

    +
    +
    + +
    + The right triangle that corresponds to the angle \alpha = \arctan(x). +

    The right triangle that corresponds to the angle \alpha = \arctan(x).

    +
    +
    + +
    +
  4. +
  5. +

    + What is the value of \cos(\theta) as a function of x? What have we shown about h(x) = \cos(\arcsin(x))? +

    +
  6. + +
  7. +

    + How about the function p(x) = \cos(\arctan(x))? How can you reason similarly to write p in a way that doesn't involve any trigonometric functions at all? (Hint: let \alpha = \arctan(x) and consider the right triangle in Figure.) +

    +
  8. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + The domain of h is [-1, 1] (the domain of arcsine). The range of h is [0, 1], since arcsin returns values in \left[-\frac{\pi}{2}, \frac{\pi}{2}\right] and cosine is non-negative on that interval. +

    +
  2. +
  3. +

    + With hypotenuse 1 and vertical leg x, the Pythagorean Theorem gives the horizontal leg length as \sqrt{1 - x^2}. +

    +
  4. +
  5. +

    + We have \cos(\theta) = \dfrac{\sqrt{1-x^2}}{1} = \sqrt{1-x^2}. Therefore h(x) = \cos(\arcsin(x)) = \sqrt{1 - x^2}. +

    +
  6. +
  7. +

    + Let \alpha = \arctan(x), so \tan(\alpha) = x. In the corresponding right triangle, the opposite leg has length x, the adjacent leg has length 1, and by the Pythagorean Theorem the hypotenuse has length \sqrt{1 + x^2}. Therefore p(x) = \cos(\arctan(x)) = \dfrac{1}{\sqrt{1+x^2}}. +

    +
  8. +
+

+
+
+ +
diff --git a/source/exercises/ez-trig-other.xml b/source/exercises/ez-trig-other.xml index ee30eb33..92e99683 100755 --- a/source/exercises/ez-trig-other.xml +++ b/source/exercises/ez-trig-other.xml @@ -1,190 +1,190 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

- Let \beta be an angle in quadrant II that satisfies \cos(\beta) = -\frac{12}{13}. - Determine the values of the other five trigonometric functions evaluated at \beta exactly and without evaluating any trigonometric function on a computational device. -

- -

- How do your answers change if \beta lies in quadrant III? -

-
- -

- Exercise Answer -

-
- -

- With \cos(\beta) = -\frac{12}{13} and \beta in quadrant II, the Pythagorean identity gives \sin(\beta) = \frac{5}{13} (positive in QII). The remaining values are: - - \sec(\beta) = -\frac{13}{12}, \quad \csc(\beta) = \frac{13}{5}, \quad \tan(\beta) = -\frac{5}{12}, \quad \cot(\beta) = -\frac{12}{5}. - -

-

- If \beta lies in quadrant III, then \cos(\beta) is still -\frac{12}{13} but now \sin(\beta) = -\frac{5}{13} (negative in QIII). So \sec(\beta) = -\frac{13}{12} (unchanged), \csc(\beta) = -\frac{13}{5}, \tan(\beta) = \frac{5}{12}, and \cot(\beta) = \frac{12}{5}. -

-
-
- - - - -

- For each of the following transformations of standard trigonometric functions, use your understanding of transformations to determine the domain, range, asymptotes, and period of the function, with careful justification. Then, check your results using Desmos or another graphing utility. -

- -

-

    -
  1. -

    - f(t) = 5\sec(t-\frac{\pi}{2}) + 3 -

    -
  2. -
  3. -

    - g(t) = -\frac{1}{3}\csc(2t) - 4 -

    -
  4. -
  5. -

    - h(t) = -7\tan(t+\frac{\pi}{4}) + 1 -

    -
  6. -
  7. -

    - j(t) = \frac{1}{2}\cot(4t) - 2 -

    -
  8. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - f(t) = 5\sec\!\left(t - \frac{\pi}{2}\right) + 3: The parent \sec(t) has period 2\pi, domain all reals except \frac{\pi}{2} + j\pi, range (-\infty,-1]\cup[1,\infty). Shifting by \frac{\pi}{2} moves the asymptotes to t = j\pi. The vertical stretch by 5 and shift by 3 give range (-\infty,-2]\cup[8,\infty). Period remains 2\pi. -

    -
  2. -
  3. -

    - g(t) = -\frac{1}{3}\csc(2t) - 4: The horizontal compression by 2 gives period \pi and moves asymptotes to all multiples of \frac{\pi}{2} (i.e., t = \frac{j\pi}{2} for any integer j), so the domain is all reals except multiples of \frac{\pi}{2}. The factor -\frac{1}{3} and vertical shift -4 give range (-\infty, -\frac{13}{3}]\cup[-\frac{11}{3},\infty). -

    -
  4. -
  5. -

    - h(t) = -7\tan\!\left(t + \frac{\pi}{4}\right) + 1: The parent \tan(t) has period \pi, asymptotes at \frac{\pi}{2}+j\pi, range all reals. The horizontal shift moves asymptotes to t = \frac{\pi}{4} + j\pi. Domain is all reals except \frac{\pi}{4}+j\pi. Range remains all reals. Period remains \pi. -

    -
  6. -
  7. -

    - j(t) = \frac{1}{2}\cot(4t) - 2: The horizontal compression by 4 gives period \frac{\pi}{4} and moves asymptotes to t = \frac{j\pi}{4}. Domain is all reals except \frac{j\pi}{4}. Range remains all reals. -

    -
  8. -
-

-
-
- - - -

- In a right triangle with hypotenuse 1 and vertical leg x, - with angle \theta opposite x, - determine the simplest expression you can for each of the following quantities in terms of x. -

- -

-

    -
  1. -

    - \sin(\theta) -

    -
  2. - -
  3. -

    - \sec(\theta) -

    -
  4. - -
  5. -

    - \csc(\theta) -

    -
  6. - -
  7. -

    - \tan(\theta) -

    -
  8. - -
  9. -

    - \cos(\arcsin(x)) -

    -
  10. - -
  11. -

    - \cot(\arcsin(x)) -

    -
  12. -
-

-
- -

- Exercise Answer -

-
- -

- In the right triangle, the horizontal leg has length \sqrt{1-x^2} by the Pythagorean Theorem. -

    -
  1. \sin(\theta) = x

  2. -
  3. \sec(\theta) = \dfrac{1}{\sqrt{1-x^2}}

  4. -
  5. \csc(\theta) = \dfrac{1}{x}

  6. -
  7. \tan(\theta) = \dfrac{x}{\sqrt{1-x^2}}

  8. -
  9. \cos(\arcsin(x)) = \cos(\theta) = \sqrt{1-x^2}

  10. -
  11. \cot(\arcsin(x)) = \cot(\theta) = \dfrac{\sqrt{1-x^2}}{x}

  12. -
-

-
-
- - -
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+ Let \beta be an angle in quadrant II that satisfies \cos(\beta) = -\frac{12}{13}. + Determine the values of the other five trigonometric functions evaluated at \beta exactly and without evaluating any trigonometric function on a computational device. +

+ +

+ How do your answers change if \beta lies in quadrant III? +

+
+ +

+ Exercise Answer +

+
+ +

+ With \cos(\beta) = -\frac{12}{13} and \beta in quadrant II, the Pythagorean identity gives \sin(\beta) = \frac{5}{13} (positive in QII). The remaining values are: + + \sec(\beta) = -\frac{13}{12}, \quad \csc(\beta) = \frac{13}{5}, \quad \tan(\beta) = -\frac{5}{12}, \quad \cot(\beta) = -\frac{12}{5}. + +

+

+ If \beta lies in quadrant III, then \cos(\beta) is still -\frac{12}{13} but now \sin(\beta) = -\frac{5}{13} (negative in QIII). So \sec(\beta) = -\frac{13}{12} (unchanged), \csc(\beta) = -\frac{13}{5}, \tan(\beta) = \frac{5}{12}, and \cot(\beta) = \frac{12}{5}. +

+
+
+ + + + +

+ For each of the following transformations of standard trigonometric functions, use your understanding of transformations to determine the domain, range, asymptotes, and period of the function, with careful justification. Then, check your results using Desmos or another graphing utility. +

+ +

+

    +
  1. +

    + f(t) = 5\sec(t-\frac{\pi}{2}) + 3 +

    +
  2. +
  3. +

    + g(t) = -\frac{1}{3}\csc(2t) - 4 +

    +
  4. +
  5. +

    + h(t) = -7\tan(t+\frac{\pi}{4}) + 1 +

    +
  6. +
  7. +

    + j(t) = \frac{1}{2}\cot(4t) - 2 +

    +
  8. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + f(t) = 5\sec\!\left(t - \frac{\pi}{2}\right) + 3: The parent \sec(t) has period 2\pi, domain all reals except \frac{\pi}{2} + j\pi, range (-\infty,-1]\cup[1,\infty). Shifting by \frac{\pi}{2} moves the asymptotes to t = j\pi. The vertical stretch by 5 and shift by 3 give range (-\infty,-2]\cup[8,\infty). Period remains 2\pi. +

    +
  2. +
  3. +

    + g(t) = -\frac{1}{3}\csc(2t) - 4: The horizontal compression by 2 gives period \pi and moves asymptotes to all multiples of \frac{\pi}{2} (i.e., t = \frac{j\pi}{2} for any integer j), so the domain is all reals except multiples of \frac{\pi}{2}. The factor -\frac{1}{3} and vertical shift -4 give range (-\infty, -\frac{13}{3}]\cup[-\frac{11}{3},\infty). +

    +
  4. +
  5. +

    + h(t) = -7\tan\!\left(t + \frac{\pi}{4}\right) + 1: The parent \tan(t) has period \pi, asymptotes at \frac{\pi}{2}+j\pi, range all reals. The horizontal shift moves asymptotes to t = \frac{\pi}{4} + j\pi. Domain is all reals except \frac{\pi}{4}+j\pi. Range remains all reals. Period remains \pi. +

    +
  6. +
  7. +

    + j(t) = \frac{1}{2}\cot(4t) - 2: The horizontal compression by 4 gives period \frac{\pi}{4} and moves asymptotes to t = \frac{j\pi}{4}. Domain is all reals except \frac{j\pi}{4}. Range remains all reals. +

    +
  8. +
+

+
+
+ + + +

+ In a right triangle with hypotenuse 1 and vertical leg x, + with angle \theta opposite x, + determine the simplest expression you can for each of the following quantities in terms of x. +

+ +

+

    +
  1. +

    + \sin(\theta) +

    +
  2. + +
  3. +

    + \sec(\theta) +

    +
  4. + +
  5. +

    + \csc(\theta) +

    +
  6. + +
  7. +

    + \tan(\theta) +

    +
  8. + +
  9. +

    + \cos(\arcsin(x)) +

    +
  10. + +
  11. +

    + \cot(\arcsin(x)) +

    +
  12. +
+

+
+ +

+ Exercise Answer +

+
+ +

+ In the right triangle, the horizontal leg has length \sqrt{1-x^2} by the Pythagorean Theorem. +

    +
  1. \sin(\theta) = x

  2. +
  3. \sec(\theta) = \dfrac{1}{\sqrt{1-x^2}}

  4. +
  5. \csc(\theta) = \dfrac{1}{x}

  6. +
  7. \tan(\theta) = \dfrac{x}{\sqrt{1-x^2}}

  8. +
  9. \cos(\arcsin(x)) = \cos(\theta) = \sqrt{1-x^2}

  10. +
  11. \cot(\arcsin(x)) = \cot(\theta) = \dfrac{\sqrt{1-x^2}}{x}

  12. +
+

+
+
+ + +
diff --git a/source/exercises/ez-trig-right.xml b/source/exercises/ez-trig-right.xml index be9b610a..88476287 100755 --- a/source/exercises/ez-trig-right.xml +++ b/source/exercises/ez-trig-right.xml @@ -1,103 +1,103 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - -

- A person standing 50 feet away from a streetlight observes that they cast a shadow that is 14 feet long. If a ray of light from the streetlight to the tip of the person's shadow forms an angle of 27.5^\circ with the ground, how tall is the person and how tall is the streetlight? What other information about the situation can you determine? -

-
- -

- Exercise Answer -

-
- -

- Let the angle of elevation be 27.5^\circ. The line from the streetlight to the tip of the shadow is the hypotenuse of a large right triangle with base 50 + 14 = 64 feet, so this hypotenuse is \frac{64}{\cos(27.5^\circ)} \approx 72.1 feet. The line from the person's head to the tip of the shadow is the hypotenuse of a smaller right triangle with base 14 feet, so it has length \frac{14}{\cos(27.5^\circ)} \approx 15.7 feet. The person's height is \sqrt{15.7^2 - 14^2} \approx 7.1 feet, and the streetlight's height is \sqrt{72.1^2 - 64^2} \approx 33.2 feet. -

-
-
- - - -

- A person watching a rocket launch uses a laser range-finder to measure the distance from themselves to the rocket. The range-finder also reports the angle at which the finder is being elevated from horizontal. At a certain instant, the range-finder reports that it is elevated at an angle of 17.4^\circ from horizontal and that the distance to the rocket is 1650 meters. How high off the ground is the rocket? Assuming a straight-line vertical path for the rocket that is perpendicular to the earth, how far away was the rocket from the range-finder at the moment it was launched? -

-
- -

- Exercise Answer -

-
- -

- With the range-finder elevated at 17.4^\circ and at distance 1650 meters from the rocket, the height of the rocket is 1650\sin(17.4^\circ) \approx 493.4 meters. The horizontal distance from the range-finder to the launch point is 1650\cos(17.4^\circ) \approx 1574 meters. -

-
-
- - - -

- A trough is constructed by bending a 4' \times 24' rectangular sheet of metal. Two symmetric folds 2 feet apart are made parallel to the longest side of the rectangle so that the trough has cross-sections in the shape of a trapezoid, as pictured in Figure. Determine a formula for V(\theta), the volume of the trough as a function of \theta. -

- -
- A cross-section of the trough. -

A cross-section of the trough.

-
-
-
- -

- The volume of the trough is the area of a cross-section times the length of the trough. -

-
- -

- Exercise Answer -

-
- -

- Each side panel is a 2' \times 24' strip folded at angle \theta from the base. The depth of the trough is \sin(\theta) feet, and the two slanted sides each add \cos(\theta) feet to the top width, giving a total top width of 2 + 2\cos(\theta) feet. The cross-sectional area of the trapezoidal cross-section is \frac{1}{2}(2 + 2 + 2\cos(\theta))\sin(\theta) = \sin(\theta)(2 + \cos(\theta)) square feet. Multiplying by the length of 24 feet gives - - V(\theta) = 24\sin(\theta)(2 + \cos(\theta)). - -

-
-
- -
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

+ A person standing 50 feet away from a streetlight observes that they cast a shadow that is 14 feet long. If a ray of light from the streetlight to the tip of the person's shadow forms an angle of 27.5^\circ with the ground, how tall is the person and how tall is the streetlight? What other information about the situation can you determine? +

+
+ +

+ Exercise Answer +

+
+ +

+ Let the angle of elevation be 27.5^\circ. The line from the streetlight to the tip of the shadow is the hypotenuse of a large right triangle with base 50 + 14 = 64 feet, so this hypotenuse is \frac{64}{\cos(27.5^\circ)} \approx 72.1 feet. The line from the person's head to the tip of the shadow is the hypotenuse of a smaller right triangle with base 14 feet, so it has length \frac{14}{\cos(27.5^\circ)} \approx 15.7 feet. The person's height is \sqrt{15.7^2 - 14^2} \approx 7.1 feet, and the streetlight's height is \sqrt{72.1^2 - 64^2} \approx 33.2 feet. +

+
+
+ + + +

+ A person watching a rocket launch uses a laser range-finder to measure the distance from themselves to the rocket. The range-finder also reports the angle at which the finder is being elevated from horizontal. At a certain instant, the range-finder reports that it is elevated at an angle of 17.4^\circ from horizontal and that the distance to the rocket is 1650 meters. How high off the ground is the rocket? Assuming a straight-line vertical path for the rocket that is perpendicular to the earth, how far away was the rocket from the range-finder at the moment it was launched? +

+
+ +

+ Exercise Answer +

+
+ +

+ With the range-finder elevated at 17.4^\circ and at distance 1650 meters from the rocket, the height of the rocket is 1650\sin(17.4^\circ) \approx 493.4 meters. The horizontal distance from the range-finder to the launch point is 1650\cos(17.4^\circ) \approx 1574 meters. +

+
+
+ + + +

+ A trough is constructed by bending a 4' \times 24' rectangular sheet of metal. Two symmetric folds 2 feet apart are made parallel to the longest side of the rectangle so that the trough has cross-sections in the shape of a trapezoid, as pictured in Figure. Determine a formula for V(\theta), the volume of the trough as a function of \theta. +

+ +
+ A cross-section of the trough. +

A cross-section of the trough.

+
+
+
+ +

+ The volume of the trough is the area of a cross-section times the length of the trough. +

+
+ +

+ Exercise Answer +

+
+ +

+ Each side panel is a 2' \times 24' strip folded at angle \theta from the base. The depth of the trough is \sin(\theta) feet, and the two slanted sides each add \cos(\theta) feet to the top width, giving a total top width of 2 + 2\cos(\theta) feet. The cross-sectional area of the trapezoidal cross-section is \frac{1}{2}(2 + 2 + 2\cos(\theta))\sin(\theta) = \sin(\theta)(2 + \cos(\theta)) square feet. Multiplying by the length of 24 feet gives + + V(\theta) = 24\sin(\theta)(2 + \cos(\theta)). + +

+
+
+ +
diff --git a/source/exercises/ez-trig-tangent.xml b/source/exercises/ez-trig-tangent.xml index f52b6bf7..5fccffa3 100755 --- a/source/exercises/ez-trig-tangent.xml +++ b/source/exercises/ez-trig-tangent.xml @@ -1,151 +1,151 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

- A wheelchair ramp is to be built so that the angle it forms with level ground is 4^{\circ}. - If the ramp is going to rise from a level sidewalk up to a front porch that is 3 feet above the ground, - how long does the ramp have to be? - How far from the front porch will it meet the sidewalk? - What is the slope of the ramp? -

-
- -

- Exercise Answer -

-
- -

- The ramp makes a 4^\circ angle with the ground and rises 3 feet. Its length is \frac{3}{\sin(4^\circ)} \approx 43.0 feet. It meets the sidewalk approximately \frac{3}{\tan(4^\circ)} \approx 42.9 feet from the porch. The slope is \frac{3}{42.9} \approx 0.0699. -

-
-
- - - -

- A person is flying a kite and at the end of a fixed length of string. Assume there is no slack in the string. -

- -

- At a certain moment, the kite is 170 feet off the ground, and the angle of elevation the string makes with the ground is 40^\circ. -

- -

-

    -
  1. -

    - How far is it from the person flying the kite to another person who is standing directly beneath the kite? -

    -
  2. -
  3. -

    - How much string is out between the person flying the kite and the kite itself? -

    -
  4. -
  5. -

    - With the same amount of string out, the angle of elevation increases to 50^\circ. How high is the kite at this time? -

    -
  6. -
-

-
- -

- Exercise Answer -

-
- -

-

    -
  1. -

    - With the kite at 170 feet elevation and elevation angle 40^\circ, the horizontal distance is \frac{170}{\tan(40^\circ)} \approx 202.6 feet. -

    -
  2. -
  3. -

    - The string length is \frac{170}{\sin(40^\circ)} \approx 264.5 feet. -

    -
  4. -
  5. -

    - With the same string length and elevation angle 50^\circ, the kite height is 264.5\sin(50^\circ) \approx 202.6 feet. -

    -
  6. -
-

-
-
- - - -

- An airplane is flying at a constant speed along a straight path above a straight road at a constant elevation of 2400 feet. A person on the road observes the plane flying directly at them and uses a sextant to measure the angle of elevation from them to the plane. The first measurement they take records an angle of 36^\circ; a second measurement taken 2 seconds later is 41^\circ. -

- -

- How far did the plane travel during the two seconds between the two angle measurements? How fast was the plane flying? -

-
- -

- Exercise Answer -

-
- -

- At angle 36^\circ, the plane's horizontal distance is \frac{2400}{\tan(36^\circ)} \approx 3301 feet. Two seconds later at 41^\circ, the distance is \frac{2400}{\tan(41^\circ)} \approx 2759 feet. The plane traveled 3301 - 2759 \approx 542 feet in 2 seconds, giving a speed of approximately 271 feet per second, or about 185 miles per hour. -

-
-
- -
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+ A wheelchair ramp is to be built so that the angle it forms with level ground is 4^{\circ}. + If the ramp is going to rise from a level sidewalk up to a front porch that is 3 feet above the ground, + how long does the ramp have to be? + How far from the front porch will it meet the sidewalk? + What is the slope of the ramp? +

+
+ +

+ Exercise Answer +

+
+ +

+ The ramp makes a 4^\circ angle with the ground and rises 3 feet. Its length is \frac{3}{\sin(4^\circ)} \approx 43.0 feet. It meets the sidewalk approximately \frac{3}{\tan(4^\circ)} \approx 42.9 feet from the porch. The slope is \frac{3}{42.9} \approx 0.0699. +

+
+
+ + + +

+ A person is flying a kite and at the end of a fixed length of string. Assume there is no slack in the string. +

+ +

+ At a certain moment, the kite is 170 feet off the ground, and the angle of elevation the string makes with the ground is 40^\circ. +

+ +

+

    +
  1. +

    + How far is it from the person flying the kite to another person who is standing directly beneath the kite? +

    +
  2. +
  3. +

    + How much string is out between the person flying the kite and the kite itself? +

    +
  4. +
  5. +

    + With the same amount of string out, the angle of elevation increases to 50^\circ. How high is the kite at this time? +

    +
  6. +
+

+
+ +

+ Exercise Answer +

+
+ +

+

    +
  1. +

    + With the kite at 170 feet elevation and elevation angle 40^\circ, the horizontal distance is \frac{170}{\tan(40^\circ)} \approx 202.6 feet. +

    +
  2. +
  3. +

    + The string length is \frac{170}{\sin(40^\circ)} \approx 264.5 feet. +

    +
  4. +
  5. +

    + With the same string length and elevation angle 50^\circ, the kite height is 264.5\sin(50^\circ) \approx 202.6 feet. +

    +
  6. +
+

+
+
+ + + +

+ An airplane is flying at a constant speed along a straight path above a straight road at a constant elevation of 2400 feet. A person on the road observes the plane flying directly at them and uses a sextant to measure the angle of elevation from them to the plane. The first measurement they take records an angle of 36^\circ; a second measurement taken 2 seconds later is 41^\circ. +

+ +

+ How far did the plane travel during the two seconds between the two angle measurements? How fast was the plane flying? +

+
+ +

+ Exercise Answer +

+
+ +

+ At angle 36^\circ, the plane's horizontal distance is \frac{2400}{\tan(36^\circ)} \approx 3301 feet. Two seconds later at 41^\circ, the distance is \frac{2400}{\tan(41^\circ)} \approx 2759 feet. The plane traveled 3301 - 2759 \approx 542 feet in 2 seconds, giving a speed of approximately 271 feet per second, or about 185 miles per hour. +

+
+
+ +
diff --git a/source/exercises/misc.xml b/source/exercises/misc.xml index 6ed5f72b..c56e793a 100644 --- a/source/exercises/misc.xml +++ b/source/exercises/misc.xml @@ -1,11 +1,11 @@ - - - - - - - - - - - + + + + + + + + + + + diff --git a/source/frontmatter.xml b/source/frontmatter.xml index 4ed7a5c9..e0a4ba17 100644 --- a/source/frontmatter.xml +++ b/source/frontmatter.xml @@ -1,346 +1,346 @@ - - - - - - - - - - - - - - - - - - - -

- This text began as my sabbatical project in the fall semester of 2018, - during which I wrote most of the material. - For the sabbatical leave, I express my deep gratitude to Grand Valley State University for its support of the project, - as well as to my colleagues in the Department of Mathematics and the College of Liberal Arts and Sciences for their endorsement of the project. - - -

- -

- The beautiful full-color .eps graphics, as well as the occasional interactive JavaScript graphics, use David Austin's Python library that employs Bill Casselman's PiScript. - The .html version of the text is the result Rob Beezer's amazing work to develop the publishing language (formerly known as Mathbook XML); learn more at pretextbook.org. - I'm grateful to the American Institute of Mathematics for hosting and funding - a weeklong workshop in San Jose, CA, in April 2016, which enabled me to get started in . The ongoing support of the user group is invaluable, and David Farmer of AIM is has also been a source of major support and advocacy. - Mitch Keller of the University of Wisconsin is the production editor of both Active Calculus: Single Variable and this text; his technical expertise is a gift. -

- - - -
- - - Contributors -

- Users of the text contribute important insight: they find errors, suggest improvements, and offer feedback and impressions. I'm grateful for all of it. As you use the text, I hope you'll contact me to share anything you think could make the book better. -

- -

- The following contributing editors have offered feedback that includes information about typographical errors or suggestions to improve the exposition. -

- - - - Mandy Calvillo - GVSU - - - - Marcia Frobish - GVSU - - - - Robert Talbert - GVSU - - - - Greg Thull - GVSU - - - - -
- - - Our Goals -

- This text is designed for college students who aspire to take calculus and who either need to take a course to prepare them for calculus or want to do some additional self-study. Many of the core topics of the course will be familiar to students who have completed high school. At the same time, we take a perspective on every topic that emphasizes how it is important in calculus. This text is written in the spirit of Active Calculus and is especially ideal for students who will eventually study calculus from that text. The reader will find that the text requires them to engage actively with the material, to view topics from multiple perspectives, and to develop deep conceptual undersanding of ideas. -

- -

- Many courses at the high school and college level with titles such as college algebra, precalculus, and trigonometry serve other disciplines and courses other than calculus. As such, these prerequisite classes frequently contain wide-ranging material that, while mathematically interesting and important, isn't necessary for calculus. Perhaps because of these additional topics, certain ideas that are essential in calculus are under-emphasized or ignored. In Active Prelude to Calculus, one of our top goals is to keep the focus narrow on the following most important ideas. -

- -

-

    -
  • -

    - Functions as processes. The mathematical concept of function is sophisticated. Understanding how a function is a special mathematical process that converts a collection of inputs to a collection of outputs is crucial for success in calculus, as calculus is the study of how functions change. -

    -
  • -
  • -

    - Average rate of change. The central idea in differential calculus is the instantaneous rate of change of a function, which measures how fast a function's output changes with respect to changes in the input at a particular location. Because instantaneous rate of change is defined in terms of average rate of change, it's essential that students are comfortable and familiar with the idea, meaning, and applications of average rate of change. -

    -
  • -
  • -

    - Library of basic functions. The vast majority of functions in calculus come from an algebraic combination of a collection of familiar basic functions that include power, circular, exponential, and logarithmic functions. By developing understanding of a relatively small family of basic functions and using these along with transformations to consider larger collections of functions, we work to make the central objects of calculus more intuitive and accessible. -

    -
  • -
  • -

    - Families of functions that model important phenomena. Mathematics is the language of science, and it's remarkable how effective mathematics is at representing observable physical phenomena. From quadratic functions that model how an object falls under the influence of gravity, to shifted exponential functions that model how coffee cools, to sinusoidal functions that model how a spring-mass system oscillates, familiar basic functions find many important applications in the world around us. We regularly use these physical situations to help us see the importance of functions and to understand how families of functions that depend on different parameters are needed to represent these situations. -

    -
  • -
  • -

    - The sine and cosine are circular functions. Many students are first introduced to the sine and cosine functions through right triangles. While this perspective is important, it is more important in calculus and other advanced courses to understand how the sine and cosine functions arise from a point traversing a circle. We take this circular function perspective early and first, and do so in order to develop deep understanding of how the familiar sine and cosine waves are generated. -

    -
  • -
  • -

    - Inverses of functions. When a function has an inverse function, the inverse function affords us the opportunity to view an idea from a new perspective. Inverses also play a crucial role in solving algebraic equations and in determining unknown parameters in models. We emphasize the perspective that an inverse function is a process that reverses the process of the original function, as well as important basic functions that arise as inverses of other functions, especially logarithms and inverse trigonometric functions. -

    -
  • -
  • -

    - Exact values versus approximate ones. The ability to represent numbers exactly is a powerful tool in mathematics. We regularly and consistently distinguish between a number's exact value, such as \sqrt{2}, and its approximation, say 1.414. This idea is also closely tied to functions and function notation: e^{-1}, \cos(2), and \ln(7) are all symbolic representations of exact numbers that can only be approximated by a computer. -

    -
  • -
  • -

    - Finding function formulas in applied settings. In applied settings with unknown variables, it's especially useful to be able to represent relationships among variables, since such relationships often lead to functions whose behavior we can study. We work throughout Active Prelude to Calculus to ready students for problems in calculus that ask them to develop function formulas by observing relationships. -

    -
  • -
  • -

    - Long-term trends, unbounded behavior, and limits. By working to study functions as objects themselves, we often focus on trends and overall behavior. In addition to introducing the ideas of a function being increasing or decreasing, or concave up or concave down, we also focus on using algebraic approaces to comprehend function behavior where the input and/or output increase without bound. In anticipation of calculus, we use limit notation and work to understand how this shorthand summarizes key features of functions. -

    -
  • -
-

- -
- - - Features of the Text -

- Instructors and students alike will find several consistent features in the presentation, - including: -

-
  • - Motivating Questions -

    - At the start of each section, - we list 23 motivating questions - that provide motivation for why the following material is of interest to us. - One goal of each section is to answer each of the motivating questions. -

    -
  • - -
  • - Preview Activities -

    - Each section of the text begins with a short introduction, - followed by a preview activity. - This brief reading and preview activity are designed to foreshadow the upcoming ideas in the remainder of the section; - both the reading and preview activity are intended to be accessible to students - in advance of class, - and indeed to be completed by students before the particular section is to be considered - in class. -

    -
  • - -
  • - Activities -

    - A typical section in the text has at least three activities. - These are designed to engage students in an inquiry-based style that encourages them to construct solutions to key examples on their own, - working in small groups or individually. -

    -
  • - -
  • - Exercises -

    - There are dozens of college algebra and trignometry texts with (collectively) tens of thousands of exercises. - Rather than repeat standard and routine exercises in this text, - we recommend the use of - - with its access to the Open Problem Library (OPL) and many thousands of relevant problems. - In this text, - each section includes a small collection of anonymous exercises that offer - students immediate feedback without penalty, - as well as 34 additional challenging exercises per section. - Each of the non- exercises has multiple parts, - requires the student to connect several key ideas, - and expects that the student will do at least a modest amount of writing to answer the questions and explain their findings. -

    -
  • - -
  • - Graphics -

    - As much as possible, - we strive to demonstrate key fundamental ideas visually, - and to encourage students to do the same. - Throughout the text, we use full-colorTo keep cost low, - the graphics in the print-on-demand version are in black and white. - When the text itself refers to color in images, - one needs to view the .html or .pdf electronically. graphics to exemplify and magnify key ideas, - and to use this graphical perspective alongside both numerical and algebraic representations of calculus. -

    -
  • - -
  • - Interactive graphics -

    - Many of the ideas of how functions behave are best understood dynamically; - applets offer an often ideal format for investigations and demonstrations. - Desmos provides a free and easy-to-use online graphing utility that we occasionally link to and often direct students to use. Thanks to David Austin, there are also select interactive javascript figures within the text itself. -

    -
  • - -
  • - Summary of Key Ideas -

    - Each section concludes with a summary of the key ideas encountered in the preceding section; - this summary normally reflects responses to the motivating questions that began the section. -

    -
  • -
    -

    -
    - - - - Students! Read this! -

    - This book is different. -

    - -

    - The text is available in three different formats: HTML, PDF, and print, each of which is available via links on the landing page at https://activecalculus.org/. The first two formats are free. If you are going to use the book electronically, the best mode is the HTML. The HTML version looks great in any browser, including on a smartphone, and the links are much easier to navigate in HTML than in PDF. Some particular direct suggestions about using the HTML follow among the next few paragraphs; alternatively, you can watch this short video from the author (based on using the text Active Calculus, which is similar). It is also wise to download and save the PDF, since you can use the PDF offline, while the HTML version requires an internet connection. An inexpensive print copy is available on Amazon. -

    - -

    - This book is intended to be read sequentially and engaged with, much more than to be used as a lookup reference. For example, each section begins with a short introduction and a Preview Activity; you should read the short introduction and complete the Preview Activity prior to class. Your instructor may require you to do this. Most Preview Activities can be completed in 15-20 minutes and are intended to be accessible based on the understanding you have from preceding sections. -

    - -

    - As you use the book, think of it as a workbook, not a worked-book. There is a great deal of scholarship that shows people learn better when they interactively engage and struggle with ideas themselves, rather than passively watch others. Thus, instead of reading worked examples or watching an instructor complete examples, you will engage with Activities that prompt you to grapple with concepts and develop deep understanding. You should expect to spend time in class working with peers on Activities and getting feedback from them and from your instructor. You can purchase a separate Activities Workbook from Amazon in which to record your work on the activities, or you can find a free PDF at the home page for the textbooks (scroll down in the left panel and look for the link to download PDF in the student workbook section) that has only the activities along with room to record your work. Your goal should be to do all of the activities in the relevant sections of the text and keep a careful record of your work. -

    - -

    - Each section concludes with a Summary. Reading the Summary after you have read the section and worked the Activities is a good way to find a short list of key ideas that are most essential to take from the section. A good study habit is to write similar summaries in your own words. -

    - -

    - At the end of each section, you'll find two types of Exercises. First, there are several anonymous exercises. These are online, interactive exercises that allow you to submit answers for immediate feedback with unlimited attempts without penalty; to submit answers, you have to be using the HTML version of the text (see this short video on the HTML version that includes a demonstration). You should use these exercises as a way to test your understanding of basic ideas in the preceding section. If your institution uses , you may also need to log in to a server as directed by your instructor to complete assigned sets as part of your course grade. The exercises included in this text are ungraded and not connected to any individual account. Following the exercises there are 3-4 additional challenging exercises that are designed to encourage you to connect ideas, investigate new situations, and write about your understanding. -

    - - - -

    - The best way to be successful in mathematics generally and calculus specifically is to strive to make sense of the main ideas. We make sense of ideas by asking questions, interacting with others, attempting to solve problems, making mistakes, revising attempts, and writing and speaking about our understanding. This text has been designed to help you make sense of key ideas that are needed in calculus and to help you be well-prepared for success in calculus; we wish you the very best as you undertake the large and challenging task of doing so. -

    - -
    - - - Instructors! Read this! -

    - This book is different. Before you read further, first read Students! Read this! as well as Our Goals. More information for instructors can also be found at the home page for the text, at activecalculus.org generally, and on the instructors page. -

    - -

    - Among the three formats (HTML, PDF, print), the HTML is optimal for display in class if you have a suitable projector. The HTML is also best for navigation, as links to internal and external references are much more obvious. We recommend saving a downloaded version of the PDF format as a backup in the event you don't have internet access. It's a good idea for each student to have a printed version of the Activities Workbook, which can be purchased from Amazon, or you can find a free PDF at the home page for the textbooks (scroll down in the left panel and look for the link to download PDF in the student workbook section) that has only the activities along with room to work; many instructors use the PDF to have coursepacks printed for students to purchase from their local bookstore. -

    - -

    - The text is written so that, on average, one section corresponds to two hours of class meeting time. A typical instructional sequence when starting a new section might look like the following: -

      -
    • -

      - Students complete a Preview Activity in advance of class. Class begins with a short debrief among peers followed by all class discussion. (5-10 minutes) -

      -
    • -
    • -

      - Brief lecture and discussion to build on the preview activity and set the stage for the next activity. (5-10 minutes) -

      -
    • -
    • -

      - Students engage with peers to work on and discuss the first activity in the section. (15-20 minutes) -

      -
    • -
    • -

      - Brief discussion and possibly lecture to reach closure on the preceding activity, followed by transition to new ideas. (Varies, but 5-15 minutes) -

      -
    • -
    • -

      - Possibly begin next activity. -

      -
    • -
    - The next hour of class would be similar, but without the Preview Activity to complete prior to class: the principal focus of class will be completing 2 activities. Then rinse and repeat. -

    - -

    - We recommend that instructors use appropriate incentives to encourage students to complete Preview Activities prior to class. Having these be part of completion-based assignments that count 5% of the semester grade usually results in the vast majority of students completing the vast majority of the previews. If you'd like to see a sample syllabus for how to organize a course and weight various assignments, you can request one via email to the author. -

    - -

    - Note that the exercises in the HTML version are anonymous and there's not a way to track students' engagement with them. These are intended to be formative for students and provide them with immediate feedback without penalty. If your institution is a user, in the near future we will have sets of .def files that correspond to the sections in the text; these will be available upon request to the author. -

    - - - - - -

    - The source code for the text can be found on GitHub. If you find errors in the text or have other suggestions, you can file an issue on GitHub or email the author directly. To engage with instructors who use the text, we maintain a Google group and a blog; you can request to join the Google group via the link at the instructors page. Finally, if you're interested in a video presentation on using the similar Active Calculus text, you can see this online video presentation to the MIT Electronic Seminar on Mathematics Education; at about the 17-minute mark, the portion begins where we demonstrate features of and how to use the text. -

    - -

    - Thank you for considering Active Prelude to Calculus as a resource to help your students develop deep understanding of the subject. I wish you the very best in your work and hope to hear from you. -

    -
    - -
    + + + + + + + + + + + + + + + + + + + +

    + This text began as my sabbatical project in the fall semester of 2018, + during which I wrote most of the material. + For the sabbatical leave, I express my deep gratitude to Grand Valley State University for its support of the project, + as well as to my colleagues in the Department of Mathematics and the College of Liberal Arts and Sciences for their endorsement of the project. + + +

    + +

    + The beautiful full-color .eps graphics, as well as the occasional interactive JavaScript graphics, use David Austin's Python library that employs Bill Casselman's PiScript. + The .html version of the text is the result Rob Beezer's amazing work to develop the publishing language (formerly known as Mathbook XML); learn more at pretextbook.org. + I'm grateful to the American Institute of Mathematics for hosting and funding + a weeklong workshop in San Jose, CA, in April 2016, which enabled me to get started in . The ongoing support of the user group is invaluable, and David Farmer of AIM is has also been a source of major support and advocacy. + Mitch Keller of the University of Wisconsin is the production editor of both Active Calculus: Single Variable and this text; his technical expertise is a gift. +

    + + + +
    + + + Contributors +

    + Users of the text contribute important insight: they find errors, suggest improvements, and offer feedback and impressions. I'm grateful for all of it. As you use the text, I hope you'll contact me to share anything you think could make the book better. +

    + +

    + The following contributing editors have offered feedback that includes information about typographical errors or suggestions to improve the exposition. +

    + + + + Mandy Calvillo + GVSU + + + + Marcia Frobish + GVSU + + + + Robert Talbert + GVSU + + + + Greg Thull + GVSU + + + + +
    + + + Our Goals +

    + This text is designed for college students who aspire to take calculus and who either need to take a course to prepare them for calculus or want to do some additional self-study. Many of the core topics of the course will be familiar to students who have completed high school. At the same time, we take a perspective on every topic that emphasizes how it is important in calculus. This text is written in the spirit of Active Calculus and is especially ideal for students who will eventually study calculus from that text. The reader will find that the text requires them to engage actively with the material, to view topics from multiple perspectives, and to develop deep conceptual undersanding of ideas. +

    + +

    + Many courses at the high school and college level with titles such as college algebra, precalculus, and trigonometry serve other disciplines and courses other than calculus. As such, these prerequisite classes frequently contain wide-ranging material that, while mathematically interesting and important, isn't necessary for calculus. Perhaps because of these additional topics, certain ideas that are essential in calculus are under-emphasized or ignored. In Active Prelude to Calculus, one of our top goals is to keep the focus narrow on the following most important ideas. +

    + +

    +

      +
    • +

      + Functions as processes. The mathematical concept of function is sophisticated. Understanding how a function is a special mathematical process that converts a collection of inputs to a collection of outputs is crucial for success in calculus, as calculus is the study of how functions change. +

      +
    • +
    • +

      + Average rate of change. The central idea in differential calculus is the instantaneous rate of change of a function, which measures how fast a function's output changes with respect to changes in the input at a particular location. Because instantaneous rate of change is defined in terms of average rate of change, it's essential that students are comfortable and familiar with the idea, meaning, and applications of average rate of change. +

      +
    • +
    • +

      + Library of basic functions. The vast majority of functions in calculus come from an algebraic combination of a collection of familiar basic functions that include power, circular, exponential, and logarithmic functions. By developing understanding of a relatively small family of basic functions and using these along with transformations to consider larger collections of functions, we work to make the central objects of calculus more intuitive and accessible. +

      +
    • +
    • +

      + Families of functions that model important phenomena. Mathematics is the language of science, and it's remarkable how effective mathematics is at representing observable physical phenomena. From quadratic functions that model how an object falls under the influence of gravity, to shifted exponential functions that model how coffee cools, to sinusoidal functions that model how a spring-mass system oscillates, familiar basic functions find many important applications in the world around us. We regularly use these physical situations to help us see the importance of functions and to understand how families of functions that depend on different parameters are needed to represent these situations. +

      +
    • +
    • +

      + The sine and cosine are circular functions. Many students are first introduced to the sine and cosine functions through right triangles. While this perspective is important, it is more important in calculus and other advanced courses to understand how the sine and cosine functions arise from a point traversing a circle. We take this circular function perspective early and first, and do so in order to develop deep understanding of how the familiar sine and cosine waves are generated. +

      +
    • +
    • +

      + Inverses of functions. When a function has an inverse function, the inverse function affords us the opportunity to view an idea from a new perspective. Inverses also play a crucial role in solving algebraic equations and in determining unknown parameters in models. We emphasize the perspective that an inverse function is a process that reverses the process of the original function, as well as important basic functions that arise as inverses of other functions, especially logarithms and inverse trigonometric functions. +

      +
    • +
    • +

      + Exact values versus approximate ones. The ability to represent numbers exactly is a powerful tool in mathematics. We regularly and consistently distinguish between a number's exact value, such as \sqrt{2}, and its approximation, say 1.414. This idea is also closely tied to functions and function notation: e^{-1}, \cos(2), and \ln(7) are all symbolic representations of exact numbers that can only be approximated by a computer. +

      +
    • +
    • +

      + Finding function formulas in applied settings. In applied settings with unknown variables, it's especially useful to be able to represent relationships among variables, since such relationships often lead to functions whose behavior we can study. We work throughout Active Prelude to Calculus to ready students for problems in calculus that ask them to develop function formulas by observing relationships. +

      +
    • +
    • +

      + Long-term trends, unbounded behavior, and limits. By working to study functions as objects themselves, we often focus on trends and overall behavior. In addition to introducing the ideas of a function being increasing or decreasing, or concave up or concave down, we also focus on using algebraic approaches to comprehend function behavior where the input and/or output increase without bound. In anticipation of calculus, we use limit notation and work to understand how this shorthand summarizes key features of functions. +

      +
    • +
    +

    + +
    + + + Features of the Text +

    + Instructors and students alike will find several consistent features in the presentation, + including: +

    +
  • + Motivating Questions +

    + At the start of each section, + we list 23 motivating questions + that provide motivation for why the following material is of interest to us. + One goal of each section is to answer each of the motivating questions. +

    +
  • + +
  • + Preview Activities +

    + Each section of the text begins with a short introduction, + followed by a preview activity. + This brief reading and preview activity are designed to foreshadow the upcoming ideas in the remainder of the section; + both the reading and preview activity are intended to be accessible to students + in advance of class, + and indeed to be completed by students before the particular section is to be considered + in class. +

    +
  • + +
  • + Activities +

    + A typical section in the text has at least three activities. + These are designed to engage students in an inquiry-based style that encourages them to construct solutions to key examples on their own, + working in small groups or individually. +

    +
  • + +
  • + Exercises +

    + There are dozens of college algebra and trignometry texts with (collectively) tens of thousands of exercises. + Rather than repeat standard and routine exercises in this text, + we recommend the use of + + with its access to the Open Problem Library (OPL) and many thousands of relevant problems. + In this text, + each section includes a small collection of anonymous exercises that offer + students immediate feedback without penalty, + as well as 34 additional challenging exercises per section. + Each of the non- exercises has multiple parts, + requires the student to connect several key ideas, + and expects that the student will do at least a modest amount of writing to answer the questions and explain their findings. +

    +
  • + +
  • + Graphics +

    + As much as possible, + we strive to demonstrate key fundamental ideas visually, + and to encourage students to do the same. + Throughout the text, we use full-colorTo keep cost low, + the graphics in the print-on-demand version are in black and white. + When the text itself refers to color in images, + one needs to view the .html or .pdf electronically. graphics to exemplify and magnify key ideas, + and to use this graphical perspective alongside both numerical and algebraic representations of calculus. +

    +
  • + +
  • + Interactive graphics +

    + Many of the ideas of how functions behave are best understood dynamically; + applets offer an often ideal format for investigations and demonstrations. + Desmos provides a free and easy-to-use online graphing utility that we occasionally link to and often direct students to use. Thanks to David Austin, there are also select interactive javascript figures within the text itself. +

    +
  • + +
  • + Summary of Key Ideas +

    + Each section concludes with a summary of the key ideas encountered in the preceding section; + this summary normally reflects responses to the motivating questions that began the section. +

    +
  • +
    +

    +
    + + + + Students! Read this! +

    + This book is different. +

    + +

    + The text is available in three different formats: HTML, PDF, and print, each of which is available via links on the landing page at https://activecalculus.org/. The first two formats are free. If you are going to use the book electronically, the best mode is the HTML. The HTML version looks great in any browser, including on a smartphone, and the links are much easier to navigate in HTML than in PDF. Some particular direct suggestions about using the HTML follow among the next few paragraphs; alternatively, you can watch this short video from the author (based on using the text Active Calculus, which is similar). It is also wise to download and save the PDF, since you can use the PDF offline, while the HTML version requires an internet connection. An inexpensive print copy is available on Amazon. +

    + +

    + This book is intended to be read sequentially and engaged with, much more than to be used as a lookup reference. For example, each section begins with a short introduction and a Preview Activity; you should read the short introduction and complete the Preview Activity prior to class. Your instructor may require you to do this. Most Preview Activities can be completed in 15-20 minutes and are intended to be accessible based on the understanding you have from preceding sections. +

    + +

    + As you use the book, think of it as a workbook, not a worked-book. There is a great deal of scholarship that shows people learn better when they interactively engage and struggle with ideas themselves, rather than passively watch others. Thus, instead of reading worked examples or watching an instructor complete examples, you will engage with Activities that prompt you to grapple with concepts and develop deep understanding. You should expect to spend time in class working with peers on Activities and getting feedback from them and from your instructor. You can purchase a separate Activities Workbook from Amazon in which to record your work on the activities, or you can find a free PDF at the home page for the textbooks (scroll down in the left panel and look for the link to download PDF in the student workbook section) that has only the activities along with room to record your work. Your goal should be to do all of the activities in the relevant sections of the text and keep a careful record of your work. +

    + +

    + Each section concludes with a Summary. Reading the Summary after you have read the section and worked the Activities is a good way to find a short list of key ideas that are most essential to take from the section. A good study habit is to write similar summaries in your own words. +

    + +

    + At the end of each section, you'll find two types of Exercises. First, there are several anonymous exercises. These are online, interactive exercises that allow you to submit answers for immediate feedback with unlimited attempts without penalty; to submit answers, you have to be using the HTML version of the text (see this short video on the HTML version that includes a demonstration). You should use these exercises as a way to test your understanding of basic ideas in the preceding section. If your institution uses , you may also need to log in to a server as directed by your instructor to complete assigned sets as part of your course grade. The exercises included in this text are ungraded and not connected to any individual account. Following the exercises there are 3-4 additional challenging exercises that are designed to encourage you to connect ideas, investigate new situations, and write about your understanding. +

    + + + +

    + The best way to be successful in mathematics generally and calculus specifically is to strive to make sense of the main ideas. We make sense of ideas by asking questions, interacting with others, attempting to solve problems, making mistakes, revising attempts, and writing and speaking about our understanding. This text has been designed to help you make sense of key ideas that are needed in calculus and to help you be well-prepared for success in calculus; we wish you the very best as you undertake the large and challenging task of doing so. +

    + +
    + + + Instructors! Read this! +

    + This book is different. Before you read further, first read Students! Read this! as well as Our Goals. More information for instructors can also be found at the home page for the text, at activecalculus.org generally, and on the instructors page. +

    + +

    + Among the three formats (HTML, PDF, print), the HTML is optimal for display in class if you have a suitable projector. The HTML is also best for navigation, as links to internal and external references are much more obvious. We recommend saving a downloaded version of the PDF format as a backup in the event you don't have internet access. It's a good idea for each student to have a printed version of the Activities Workbook, which can be purchased from Amazon, or you can find a free PDF at the home page for the textbooks (scroll down in the left panel and look for the link to download PDF in the student workbook section) that has only the activities along with room to work; many instructors use the PDF to have coursepacks printed for students to purchase from their local bookstore. +

    + +

    + The text is written so that, on average, one section corresponds to two hours of class meeting time. A typical instructional sequence when starting a new section might look like the following: +

      +
    • +

      + Students complete a Preview Activity in advance of class. Class begins with a short debrief among peers followed by all class discussion. (5-10 minutes) +

      +
    • +
    • +

      + Brief lecture and discussion to build on the preview activity and set the stage for the next activity. (5-10 minutes) +

      +
    • +
    • +

      + Students engage with peers to work on and discuss the first activity in the section. (15-20 minutes) +

      +
    • +
    • +

      + Brief discussion and possibly lecture to reach closure on the preceding activity, followed by transition to new ideas. (Varies, but 5-15 minutes) +

      +
    • +
    • +

      + Possibly begin next activity. +

      +
    • +
    + The next hour of class would be similar, but without the Preview Activity to complete prior to class: the principal focus of class will be completing 2 activities. Then rinse and repeat. +

    + +

    + We recommend that instructors use appropriate incentives to encourage students to complete Preview Activities prior to class. Having these be part of completion-based assignments that count 5% of the semester grade usually results in the vast majority of students completing the vast majority of the previews. If you'd like to see a sample syllabus for how to organize a course and weight various assignments, you can request one via email to the author. +

    + +

    + Note that the exercises in the HTML version are anonymous and there's not a way to track students' engagement with them. These are intended to be formative for students and provide them with immediate feedback without penalty. If your institution is a user, in the near future we will have sets of .def files that correspond to the sections in the text; these will be available upon request to the author. +

    + + + + + +

    + The source code for the text can be found on GitHub. If you find errors in the text or have other suggestions, you can file an issue on GitHub or email the author directly. To engage with instructors who use the text, we maintain a Google group and a blog; you can request to join the Google group via the link at the instructors page. Finally, if you're interested in a video presentation on using the similar Active Calculus text, you can see this online video presentation to the MIT Electronic Seminar on Mathematics Education; at about the 17-minute mark, the portion begins where we demonstrate features of and how to use the text. +

    + +

    + Thank you for considering Active Prelude to Calculus as a resource to help your students develop deep understanding of the subject. I wish you the very best in your work and hope to hear from you. +

    +
    + +
    diff --git a/source/main.ptx b/source/main.ptx index 8028ee31..ac39b889 100644 --- a/source/main.ptx +++ b/source/main.ptx @@ -1,33 +1,33 @@ - - - - - - - - - - - - - - - - - - - - Active Prelude to Calculus - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + Active Prelude to Calculus + + + + + + + + + + + + + diff --git a/source/prefigure/chap-changing/aroc-act-trends-h.xml b/source/prefigure/chap-changing/aroc-act-trends-h.xml new file mode 100644 index 00000000..ed50ff62 --- /dev/null +++ b/source/prefigure/chap-changing/aroc-act-trends-h.xml @@ -0,0 +1,20 @@ + + + + + + + + h(t)=3-2*(0.5)^t + + + + + + + + + + diff --git a/source/prefigure/chap-changing/aroc-act-trends-q.xml b/source/prefigure/chap-changing/aroc-act-trends-q.xml new file mode 100644 index 00000000..319f173f --- /dev/null +++ b/source/prefigure/chap-changing/aroc-act-trends-q.xml @@ -0,0 +1,20 @@ + + + + + + + + f(x)=4-(x-2)^2 + + + + + + + + + + diff --git a/source/prefigure/chap-changing/aroc-ez-position-graph.xml b/source/prefigure/chap-changing/aroc-ez-position-graph.xml new file mode 100644 index 00000000..5e832417 --- /dev/null +++ b/source/prefigure/chap-changing/aroc-ez-position-graph.xml @@ -0,0 +1,32 @@ + + + + + + + + f1(x)=2*sin(0.5*pi*(x-1)) + 2 + f2(x)=4 + f3(x)=-2*sin(0.5*pi*(x-2)) + 6 + f4(x)=8 + f5(x)=-2*sin(0.5*pi*(x-2)) + 10 + f6(x)=12 + f7(x)=-2*sin(0.5*pi*(x-1)) + 14 + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-changing/aroc-f-x-defn.xml b/source/prefigure/chap-changing/aroc-f-x-defn.xml new file mode 100644 index 00000000..c9e0a851 --- /dev/null +++ b/source/prefigure/chap-changing/aroc-f-x-defn.xml @@ -0,0 +1,27 @@ + + + + a=1 + b=4 + f(x) = (0.05*x*(x+2)*(x-4))*(x+1) + 2.5 + + + + + + (a,f(a)) + + + (b,f(b)) + + + + + + + + + diff --git a/source/prefigure/chap-changing/aroc-s-t-blank-axes.xml b/source/prefigure/chap-changing/aroc-s-t-blank-axes.xml new file mode 100644 index 00000000..104968e5 --- /dev/null +++ b/source/prefigure/chap-changing/aroc-s-t-blank-axes.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + diff --git a/source/prefigure/chap-changing/aroc-s-t-ex-1.xml b/source/prefigure/chap-changing/aroc-s-t-ex-1.xml new file mode 100644 index 00000000..6ef2cc02 --- /dev/null +++ b/source/prefigure/chap-changing/aroc-s-t-ex-1.xml @@ -0,0 +1,26 @@ + + + + + + + + f(x)=64-16*(x-1)^2 + + + + (1.5,60) + (2.5,28) + + + + + + + + diff --git a/source/prefigure/chap-changing/combining-act-f.xml b/source/prefigure/chap-changing/combining-act-f.xml new file mode 100644 index 00000000..8fcb48b9 --- /dev/null +++ b/source/prefigure/chap-changing/combining-act-f.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-changing/combining-piecewise-abs-val.xml b/source/prefigure/chap-changing/combining-piecewise-abs-val.xml new file mode 100644 index 00000000..ba8351fd --- /dev/null +++ b/source/prefigure/chap-changing/combining-piecewise-abs-val.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-changing/combining-piecewise-act-parabolas.xml b/source/prefigure/chap-changing/combining-piecewise-act-parabolas.xml new file mode 100644 index 00000000..ea813356 --- /dev/null +++ b/source/prefigure/chap-changing/combining-piecewise-act-parabolas.xml @@ -0,0 +1,28 @@ + + + + + + f1(x)=-(x+2)^2+2 + f2(x)=1/2*(x-2)^2+1 + + a=-2 + b=2 + c=0 + + + + + + + + + + + + + + \ No newline at end of file diff --git a/source/prefigure/chap-changing/composite-Dolbears-Law-celcius-blank.xml b/source/prefigure/chap-changing/composite-Dolbears-Law-celcius-blank.xml new file mode 100644 index 00000000..51135d93 --- /dev/null +++ b/source/prefigure/chap-changing/composite-Dolbears-Law-celcius-blank.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + diff --git a/source/prefigure/chap-changing/composite-act-graphs.xml b/source/prefigure/chap-changing/composite-act-graphs.xml new file mode 100644 index 00000000..e1b162f3 --- /dev/null +++ b/source/prefigure/chap-changing/composite-act-graphs.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-changing/composite-aroc-a-b.xml b/source/prefigure/chap-changing/composite-aroc-a-b.xml new file mode 100644 index 00000000..eba58a20 --- /dev/null +++ b/source/prefigure/chap-changing/composite-aroc-a-b.xml @@ -0,0 +1,29 @@ + + + + + f(x)=64-16*(x-1/2)^2 + + a=1 + b=2 + + + + + (a,f(a)) + (b,f(b)) + + + + + + + + + diff --git a/source/prefigure/chap-changing/composite-aroc-a-h.xml b/source/prefigure/chap-changing/composite-aroc-a-h.xml new file mode 100644 index 00000000..3788e0b5 --- /dev/null +++ b/source/prefigure/chap-changing/composite-aroc-a-h.xml @@ -0,0 +1,39 @@ + + + + + f(x)=64-16*(x-1/2)^2 + + a=1 + b=2 + h=b-a + + + + + (a,f(a)) + + (a+h,f(a+h)) + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-changing/composite-ez-f.xml b/source/prefigure/chap-changing/composite-ez-f.xml new file mode 100644 index 00000000..286e4a6a --- /dev/null +++ b/source/prefigure/chap-changing/composite-ez-f.xml @@ -0,0 +1,41 @@ + + + + + + + + f1(x)=1+2*(x+4)^2 + f2(x)=-x + f3(x)=-4+3*x^2/4 + f4(x)=-2.5+3/4*(x-2) + f5(x)=-2.5+sin(pi/(x-1.999999)) + + a=-2 + b=-1 + c=3 + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-changing/composite-ez-g.xml b/source/prefigure/chap-changing/composite-ez-g.xml new file mode 100644 index 00000000..e892e579 --- /dev/null +++ b/source/prefigure/chap-changing/composite-ez-g.xml @@ -0,0 +1,32 @@ + + + + + + f1(x)=4-x^2 + f2(x)=3-x + + a=0 + b=1 + c=2 + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/source/prefigure/chap-changing/function-Dolbears-Law.xml b/source/prefigure/chap-changing/function-Dolbears-Law.xml new file mode 100644 index 00000000..a4277091 --- /dev/null +++ b/source/prefigure/chap-changing/function-Dolbears-Law.xml @@ -0,0 +1,20 @@ + + + + + + + + f(x)=40+1/4*x + + + + (120, 70) + + + + + + + diff --git a/source/prefigure/chap-changing/functions-act-is-it-1.xml b/source/prefigure/chap-changing/functions-act-is-it-1.xml new file mode 100644 index 00000000..661f70aa --- /dev/null +++ b/source/prefigure/chap-changing/functions-act-is-it-1.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + (-3,\sqrt{7}) + + + + + + + diff --git a/source/prefigure/chap-changing/functions-act-is-it-2.xml b/source/prefigure/chap-changing/functions-act-is-it-2.xml new file mode 100644 index 00000000..4503f712 --- /dev/null +++ b/source/prefigure/chap-changing/functions-act-is-it-2.xml @@ -0,0 +1,26 @@ + + + + + + + + f(x)=4-x^2 + g(x)=3-x + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-changing/functions-ez-velocity.xml b/source/prefigure/chap-changing/functions-ez-velocity.xml new file mode 100644 index 00000000..6fddf832 --- /dev/null +++ b/source/prefigure/chap-changing/functions-ez-velocity.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-changing/functions-y-x-blank-axes-centered-2.xml b/source/prefigure/chap-changing/functions-y-x-blank-axes-centered-2.xml new file mode 100644 index 00000000..8babad4f --- /dev/null +++ b/source/prefigure/chap-changing/functions-y-x-blank-axes-centered-2.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + diff --git a/source/prefigure/chap-changing/functions-y-x-blank-axes-centered-low.xml b/source/prefigure/chap-changing/functions-y-x-blank-axes-centered-low.xml new file mode 100644 index 00000000..62ddbe51 --- /dev/null +++ b/source/prefigure/chap-changing/functions-y-x-blank-axes-centered-low.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + diff --git a/source/prefigure/chap-changing/functions-y-x-blank-axes.xml b/source/prefigure/chap-changing/functions-y-x-blank-axes.xml new file mode 100644 index 00000000..d50e049e --- /dev/null +++ b/source/prefigure/chap-changing/functions-y-x-blank-axes.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + diff --git a/source/prefigure/chap-changing/inverse-act-does-it-1.xml b/source/prefigure/chap-changing/inverse-act-does-it-1.xml new file mode 100644 index 00000000..d1d0b5a4 --- /dev/null +++ b/source/prefigure/chap-changing/inverse-act-does-it-1.xml @@ -0,0 +1,17 @@ + + + + + f(x)=-2.5*atan(x) + + + + + + + + + diff --git a/source/prefigure/chap-changing/inverse-act-does-it-2.xml b/source/prefigure/chap-changing/inverse-act-does-it-2.xml new file mode 100644 index 00000000..70be9d40 --- /dev/null +++ b/source/prefigure/chap-changing/inverse-act-does-it-2.xml @@ -0,0 +1,27 @@ + + + + + f1(x)=-2*(x+3)+1 + f2(x)=2/3*x + f3(x)=-x + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-changing/inverse-cubic.xml b/source/prefigure/chap-changing/inverse-cubic.xml new file mode 100644 index 00000000..5b00ce91 --- /dev/null +++ b/source/prefigure/chap-changing/inverse-cubic.xml @@ -0,0 +1,17 @@ + + + + + f(x)=3-(x-1)^3/5 + + + + + + + + + diff --git a/source/prefigure/chap-changing/inverse-does-it-1.xml b/source/prefigure/chap-changing/inverse-does-it-1.xml new file mode 100644 index 00000000..cd0ac0c5 --- /dev/null +++ b/source/prefigure/chap-changing/inverse-does-it-1.xml @@ -0,0 +1,25 @@ + + + + + f(x)=-0.75*(x-3)**2 + 6 + a=2 + b=4 + c=f(a) + + + + + + + + + + a + b + c + + + + + diff --git a/source/prefigure/chap-changing/inverse-does-it-2.xml b/source/prefigure/chap-changing/inverse-does-it-2.xml new file mode 100644 index 00000000..ff39287b --- /dev/null +++ b/source/prefigure/chap-changing/inverse-does-it-2.xml @@ -0,0 +1,30 @@ + + + + + f(x)=0.75*(x-1)+2.5 + a=2 + b=4 + c=f(a) + d=f(b) + + + + + + + + + + + a + b + c + d + + + + + + + diff --git a/source/prefigure/chap-changing/inverse-ez-p-q.xml b/source/prefigure/chap-changing/inverse-ez-p-q.xml new file mode 100644 index 00000000..c932c77e --- /dev/null +++ b/source/prefigure/chap-changing/inverse-ez-p-q.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-changing/inverse-plot-reflection.xml b/source/prefigure/chap-changing/inverse-plot-reflection.xml new file mode 100644 index 00000000..b735e968 --- /dev/null +++ b/source/prefigure/chap-changing/inverse-plot-reflection.xml @@ -0,0 +1,36 @@ + + + + + f(x)=2^x + g(x)=log(x)/log(2) + h(x)=x + + + + + + + + \left(-1,\frac12\right) + + + \left(\frac12,-1\right) + + + + + + + + + diff --git a/source/prefigure/chap-changing/inverse-quadratic.xml b/source/prefigure/chap-changing/inverse-quadratic.xml new file mode 100644 index 00000000..1eea611e --- /dev/null +++ b/source/prefigure/chap-changing/inverse-quadratic.xml @@ -0,0 +1,17 @@ + + + + + f(x)=3-(x-1)^2/5 + + + + + + + + + diff --git a/source/prefigure/chap-changing/linear-PA-ex-3.xml b/source/prefigure/chap-changing/linear-PA-ex-3.xml new file mode 100644 index 00000000..e423973a --- /dev/null +++ b/source/prefigure/chap-changing/linear-PA-ex-3.xml @@ -0,0 +1,17 @@ + + + + + + + + f(x)=3-1/3*(x+2) + + + + + + + diff --git a/source/prefigure/chap-changing/linear-ez-walkers.xml b/source/prefigure/chap-changing/linear-ez-walkers.xml new file mode 100644 index 00000000..e2cfc3a7 --- /dev/null +++ b/source/prefigure/chap-changing/linear-ez-walkers.xml @@ -0,0 +1,24 @@ + + + + + + + + f(t)=4+0.4*t + g(t)=9/10*t + + + + + + + + + + diff --git a/source/prefigure/chap-changing/linear-point-intercept.xml b/source/prefigure/chap-changing/linear-point-intercept.xml new file mode 100644 index 00000000..cd862512 --- /dev/null +++ b/source/prefigure/chap-changing/linear-point-intercept.xml @@ -0,0 +1,34 @@ + + + + + + + a=0 + b=3 + f(x)=x/2+1 + + + + + + (0,y_0) + (x,y) + + + + + + + + diff --git a/source/prefigure/chap-changing/linear-point-slope.xml b/source/prefigure/chap-changing/linear-point-slope.xml new file mode 100644 index 00000000..5c5cece5 --- /dev/null +++ b/source/prefigure/chap-changing/linear-point-slope.xml @@ -0,0 +1,34 @@ + + + + + + + a=5/3 + b=4 + f(x)=3-2/3*(x-4/3) + + + + + + (x_0,y_0) + (x,y) + + + + + + + + diff --git a/source/prefigure/chap-changing/linear-slope-intercept.xml b/source/prefigure/chap-changing/linear-slope-intercept.xml new file mode 100644 index 00000000..5c5cece5 --- /dev/null +++ b/source/prefigure/chap-changing/linear-slope-intercept.xml @@ -0,0 +1,34 @@ + + + + + + + a=5/3 + b=4 + f(x)=3-2/3*(x-4/3) + + + + + + (x_0,y_0) + (x,y) + + + + + + + + diff --git a/source/prefigure/chap-changing/quadratic-1-CCD.xml b/source/prefigure/chap-changing/quadratic-1-CCD.xml new file mode 100644 index 00000000..b75fe032 --- /dev/null +++ b/source/prefigure/chap-changing/quadratic-1-CCD.xml @@ -0,0 +1,20 @@ + + + + + + + + p(x)=-3*(x-1)^2/4+6 + + + + + + + + + + diff --git a/source/prefigure/chap-changing/quadratic-3-CCU.xml b/source/prefigure/chap-changing/quadratic-3-CCU.xml new file mode 100644 index 00000000..de80c133 --- /dev/null +++ b/source/prefigure/chap-changing/quadratic-3-CCU.xml @@ -0,0 +1,32 @@ + + + + + + + + q(x)=(x-2)^2/4 + r(x)=q(x)-2.5 + p(x)=q(x)+2.5 + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-changing/quadratic-change-linear.xml b/source/prefigure/chap-changing/quadratic-change-linear.xml new file mode 100644 index 00000000..0a006c53 --- /dev/null +++ b/source/prefigure/chap-changing/quadratic-change-linear.xml @@ -0,0 +1,24 @@ + + + + + + + + h(t)=-5*t^2+20*t+25 + sec(t)=h(2)-5*(t-2) + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-changing/quadratic-ez-find-formula.xml b/source/prefigure/chap-changing/quadratic-ez-find-formula.xml new file mode 100644 index 00000000..9dcab849 --- /dev/null +++ b/source/prefigure/chap-changing/quadratic-ez-find-formula.xml @@ -0,0 +1,34 @@ + + + + + + + + f(x)=2+(x-2)^2/2 + g(x)=2-2*(x+2)^2 + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-changing/quadratic-vertex-CCD.xml b/source/prefigure/chap-changing/quadratic-vertex-CCD.xml new file mode 100644 index 00000000..8483cf58 --- /dev/null +++ b/source/prefigure/chap-changing/quadratic-vertex-CCD.xml @@ -0,0 +1,25 @@ + + + + + + + p(x)=-3*(x-1)^2/4+6 + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-changing/quadratic-vertex-CCU.xml b/source/prefigure/chap-changing/quadratic-vertex-CCU.xml new file mode 100644 index 00000000..cb06fb10 --- /dev/null +++ b/source/prefigure/chap-changing/quadratic-vertex-CCU.xml @@ -0,0 +1,30 @@ + + + + + + + p(x)=(x-2)^2/4+2.5 + + + + + + + \left(-\frac{b}{2a},p\left(-\frac{b}{2a}\right)\right) + + + + + + + + + + diff --git a/source/prefigure/chap-changing/tandem-V-t-blank-axes.xml b/source/prefigure/chap-changing/tandem-V-t-blank-axes.xml new file mode 100644 index 00000000..545a6b67 --- /dev/null +++ b/source/prefigure/chap-changing/tandem-V-t-blank-axes.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + diff --git a/source/prefigure/chap-changing/tandem-aquarium-V-t.xml b/source/prefigure/chap-changing/tandem-aquarium-V-t.xml new file mode 100644 index 00000000..e9164d29 --- /dev/null +++ b/source/prefigure/chap-changing/tandem-aquarium-V-t.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/source/prefigure/chap-changing/tandem-cone-V-t.xml b/source/prefigure/chap-changing/tandem-cone-V-t.xml new file mode 100644 index 00000000..3c2bfdbe --- /dev/null +++ b/source/prefigure/chap-changing/tandem-cone-V-t.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-changing/tandem-cone-h-t.xml b/source/prefigure/chap-changing/tandem-cone-h-t.xml new file mode 100644 index 00000000..3fe6f0cf --- /dev/null +++ b/source/prefigure/chap-changing/tandem-cone-h-t.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-changing/tandem-ez-position-time-blank-axes.xml b/source/prefigure/chap-changing/tandem-ez-position-time-blank-axes.xml new file mode 100644 index 00000000..28ee1f93 --- /dev/null +++ b/source/prefigure/chap-changing/tandem-ez-position-time-blank-axes.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + diff --git a/source/prefigure/chap-changing/tandem-ez-position-time.xml b/source/prefigure/chap-changing/tandem-ez-position-time.xml new file mode 100644 index 00000000..873f4397 --- /dev/null +++ b/source/prefigure/chap-changing/tandem-ez-position-time.xml @@ -0,0 +1,31 @@ + + + + + + + + f1(x)=2*sin(0.5*pi*(x-1)) + 2 + f2(x)=4 + f3(x)=-2*sin(0.5*pi*(x-2)) + 6 + f4(x)=8 + f5(x)=-2*sin(0.5*pi*(x-2)) + 10 + f6(x)=12 + f7(x)=-2*sin(0.5*pi*(x-1)) + 14 + + + + + + + + + + (4,6) + + + + + diff --git a/source/prefigure/chap-changing/tandem-h-t-blank-axes.xml b/source/prefigure/chap-changing/tandem-h-t-blank-axes.xml new file mode 100644 index 00000000..ce773644 --- /dev/null +++ b/source/prefigure/chap-changing/tandem-h-t-blank-axes.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + diff --git a/source/prefigure/chap-changing/tandem-sphere-V-t.xml b/source/prefigure/chap-changing/tandem-sphere-V-t.xml new file mode 100644 index 00000000..0e22767a --- /dev/null +++ b/source/prefigure/chap-changing/tandem-sphere-V-t.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/source/prefigure/chap-changing/temp-pop-p-t-blank-axes.xml b/source/prefigure/chap-changing/temp-pop-p-t-blank-axes.xml new file mode 100644 index 00000000..7ec40933 --- /dev/null +++ b/source/prefigure/chap-changing/temp-pop-p-t-blank-axes.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + diff --git a/source/prefigure/chap-changing/transformations-act-f-combined-p.xml b/source/prefigure/chap-changing/transformations-act-f-combined-p.xml new file mode 100644 index 00000000..b45bdddf --- /dev/null +++ b/source/prefigure/chap-changing/transformations-act-f-combined-p.xml @@ -0,0 +1,40 @@ + + + + + + f(x)=2+2*(x+2) + g(x)=2 + h(x)=2-2*(x-2) + ft(x)=-1/2*f(x-1)+2 + gt(x)=-1/2*g(x-1)+2 + ht(x)=-1/2*h(x-1)+2 + + + + + + + + + + + + + + + (-2,2) + + + + (-1,1) + + + + + + \ No newline at end of file diff --git a/source/prefigure/chap-changing/transformations-act-f-combined.xml b/source/prefigure/chap-changing/transformations-act-f-combined.xml new file mode 100644 index 00000000..4121ffce --- /dev/null +++ b/source/prefigure/chap-changing/transformations-act-f-combined.xml @@ -0,0 +1,25 @@ + + + + + f(x)=2+2*(x+2) + g(x)=2 + h(x)=2-2*(x-2) + + + + + + + + + (-2,2) + + + + + + + diff --git a/source/prefigure/chap-changing/transformations-act-g-combined-q.xml b/source/prefigure/chap-changing/transformations-act-g-combined-q.xml new file mode 100644 index 00000000..30ee0409 --- /dev/null +++ b/source/prefigure/chap-changing/transformations-act-g-combined-q.xml @@ -0,0 +1,26 @@ + + + + + f(x)=-1.5*sin(pi*x) + g(x)=2*f(x+0.5)-0.75 + + + + + + (1.5,1.5) + + + (1,2.25) + + + + + + + \ No newline at end of file diff --git a/source/prefigure/chap-changing/transformations-act-g-combined-s.xml b/source/prefigure/chap-changing/transformations-act-g-combined-s.xml new file mode 100644 index 00000000..5eb490e4 --- /dev/null +++ b/source/prefigure/chap-changing/transformations-act-g-combined-s.xml @@ -0,0 +1,26 @@ + + + + + + f(x)=-1.5*sin(pi*x) + s(x)=-2.5*f(x+1.25) + 1.75 + + + + + + (1.5,1.5) + + + (0.25,-2) + + + + + + \ No newline at end of file diff --git a/source/prefigure/chap-changing/transformations-act-g-combined.xml b/source/prefigure/chap-changing/transformations-act-g-combined.xml new file mode 100644 index 00000000..429a6c8d --- /dev/null +++ b/source/prefigure/chap-changing/transformations-act-g-combined.xml @@ -0,0 +1,18 @@ + + + + + + f(x)=-1.5*sin(pi*x) + + + + + (1.5,1.5) + + + + + \ No newline at end of file diff --git a/source/prefigure/chap-changing/transformations-act-r-translations-f-g-h.xml b/source/prefigure/chap-changing/transformations-act-r-translations-f-g-h.xml new file mode 100644 index 00000000..a6e91406 --- /dev/null +++ b/source/prefigure/chap-changing/transformations-act-r-translations-f-g-h.xml @@ -0,0 +1,69 @@ + + + + + p=3/2 + d=4^p/2 + f(x)=1+3/2*(x+2) + g(x)=1-(x+2)^p/d + h(x)=-1+(x-2) + f1(x)=f(x)+2 + g1(x)=g(x)+2 + h1(x)=h(x)+2 + f2(x)=f(x+1) + g2(x)=g(x+1) + h2(x)=h(x+1) + f3(x)=f(x+1)+2 + g3(x)=g(x+1)+2 + h3(x)=h(x+1)+2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-changing/transformations-act-r-translations.xml b/source/prefigure/chap-changing/transformations-act-r-translations.xml new file mode 100644 index 00000000..544243c3 --- /dev/null +++ b/source/prefigure/chap-changing/transformations-act-r-translations.xml @@ -0,0 +1,24 @@ + + + + + p=3/2 + d=4^p/2 + f(x)=1+3/2*(x+2) + g(x)=1-(x+2)^p/d + h(x)=-1+(x-2) + + + + + + + + + + + + + diff --git a/source/prefigure/chap-changing/transformations-act-r-vert-stretch-g-h.xml b/source/prefigure/chap-changing/transformations-act-r-vert-stretch-g-h.xml new file mode 100644 index 00000000..8d423a73 --- /dev/null +++ b/source/prefigure/chap-changing/transformations-act-r-vert-stretch-g-h.xml @@ -0,0 +1,56 @@ + + + + x + + p=3/2 + d=4^p/2 + f(x)=1+3/2*(x+2) + g(x)=1-(x+2)^p/d + h(x)=-1+(x-2) + f1(x)=3*f(x) + g1(x)=3*g(x) + h1(x)=3*h(x) + f2(x)=1/3*f(x) + g2(x)=1/3*g(x) + h2(x)=1/3*h(x) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/source/prefigure/chap-changing/transformations-act-r-vert-stretch-m.xml b/source/prefigure/chap-changing/transformations-act-r-vert-stretch-m.xml new file mode 100644 index 00000000..ea639d29 --- /dev/null +++ b/source/prefigure/chap-changing/transformations-act-r-vert-stretch-m.xml @@ -0,0 +1,44 @@ + + + + x + + p=3/2 + d=4^p/2 + f(x)=1+3/2*(x+2) + g(x)=1-(x+2)^p/d + h(x)=-1+(x-2) + f1(x)=2*f(x+1)-1 + g1(x)=2*g(x+1)-1 + h1(x)=2*h(x+1)-1 + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-changing/transformations-act-s-translations-j-k-m.xml b/source/prefigure/chap-changing/transformations-act-s-translations-j-k-m.xml new file mode 100644 index 00000000..cf8097e0 --- /dev/null +++ b/source/prefigure/chap-changing/transformations-act-s-translations-j-k-m.xml @@ -0,0 +1,53 @@ + + + + + f(x)=-3-3*(x+2) + g(x)=-3+0.5*(x+2) + f1(x)=f(x)-1 + g1(x)=g(x)-1 + f2(x)=f(x-2) + g2(x)=g(x-2) + f3(x)=f(x-2)-1 + g3(x)=g(x-2)-1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-changing/transformations-act-s-translations.xml b/source/prefigure/chap-changing/transformations-act-s-translations.xml new file mode 100644 index 00000000..627e37ce --- /dev/null +++ b/source/prefigure/chap-changing/transformations-act-s-translations.xml @@ -0,0 +1,19 @@ + + + + + f(x)=-3-3*(x+2) + g(x)=-3+0.5*(x+2) + + + + + + + + + + + diff --git a/source/prefigure/chap-changing/transformations-act-s-vert-stretch-j-k.xml b/source/prefigure/chap-changing/transformations-act-s-vert-stretch-j-k.xml new file mode 100644 index 00000000..445935d8 --- /dev/null +++ b/source/prefigure/chap-changing/transformations-act-s-vert-stretch-j-k.xml @@ -0,0 +1,42 @@ + + + + + f(x)=-3-3*(x+2) + g(x)=-3+0.5*(x+2) + f1(x)=-1/2*f(x) + g1(x)=-1/2*g(x) + f2(x)=-f(x) + g2(x)=-g(x) + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-changing/transformations-act-s-vert-stretch-n.xml b/source/prefigure/chap-changing/transformations-act-s-vert-stretch-n.xml new file mode 100644 index 00000000..ad972d6b --- /dev/null +++ b/source/prefigure/chap-changing/transformations-act-s-vert-stretch-n.xml @@ -0,0 +1,30 @@ + + + + + f(x)=-3-3*(x+2) + g(x)=-3+0.5*(x+2) + f1(x)=1/2*f(x-2)+2 + g1(x)=1/2*g(x-2)+2 + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/source/prefigure/chap-changing/transformations-combined-order-1.xml b/source/prefigure/chap-changing/transformations-combined-order-1.xml new file mode 100644 index 00000000..434da935 --- /dev/null +++ b/source/prefigure/chap-changing/transformations-combined-order-1.xml @@ -0,0 +1,25 @@ + + + + + p=3/2 + d=4^p/2 + f(x)=1+3/2*(x+2) + g(x)=1-(x+2)^p/d + h(x)=-1+(x-2) + + + + + + + + + + (2,-1) + + + + \ No newline at end of file diff --git a/source/prefigure/chap-changing/transformations-combined-order-2.xml b/source/prefigure/chap-changing/transformations-combined-order-2.xml new file mode 100644 index 00000000..15a14f6a --- /dev/null +++ b/source/prefigure/chap-changing/transformations-combined-order-2.xml @@ -0,0 +1,40 @@ + + + + + p=3/2 + d=4^p/2 + f(x)=1+3/2*(x+2) + g(x)=1-(x+2)^p/d + h(x)=-1+(x-2) + f1(x)=f(x+1) + g1(x)=g(x+1) + h1(x)=h(x+1) + + + + + + + + + + + + + + + + + + (1,-1) + + + + + \ No newline at end of file diff --git a/source/prefigure/chap-changing/transformations-combined-order-3.xml b/source/prefigure/chap-changing/transformations-combined-order-3.xml new file mode 100644 index 00000000..8ca7f4de --- /dev/null +++ b/source/prefigure/chap-changing/transformations-combined-order-3.xml @@ -0,0 +1,43 @@ + + + + + p=3/2 + d=4^p/2 + f(x)=1+3/2*(x+2) + g(x)=1-(x+2)^p/d + h(x)=-1+(x-2) + f1(x)=f(x+1) + g1(x)=g(x+1) + h1(x)=h(x+1) + f2(x)=2*f(x+1) + g2(x)=2*g(x+1) + h2(x)=2*h(x+1) + + + + + + + + + + + + + + + + + + (1,-2) + + + + + diff --git a/source/prefigure/chap-changing/transformations-combined-order-4.xml b/source/prefigure/chap-changing/transformations-combined-order-4.xml new file mode 100644 index 00000000..7329ac2f --- /dev/null +++ b/source/prefigure/chap-changing/transformations-combined-order-4.xml @@ -0,0 +1,47 @@ + + + + + p=3/2 + d=4^p/2 + f(x)=1+3/2*(x+2) + g(x)=1-(x+2)^p/d + h(x)=-1+(x-2) + f1(x)=f(x+1) + g1(x)=g(x+1) + h1(x)=h(x+1) + f2(x)=2*f(x+1) + g2(x)=2*g(x+1) + h2(x)=2*h(x+1) + f3(x)=2*f(x+1)-1 + g3(x)=2*g(x+1)-1 + h3(x)=2*h(x+1)-1 + + + + + + + + + + + + + + + + + + (1,-3) + + + + + + diff --git a/source/prefigure/chap-changing/transformations-horiz.xml b/source/prefigure/chap-changing/transformations-horiz.xml new file mode 100644 index 00000000..51034998 --- /dev/null +++ b/source/prefigure/chap-changing/transformations-horiz.xml @@ -0,0 +1,20 @@ + + + + + + + + (-2,1) + + + (0,1) + + + + + \ No newline at end of file diff --git a/source/prefigure/chap-changing/transformations-vert.xml b/source/prefigure/chap-changing/transformations-vert.xml new file mode 100644 index 00000000..267c6134 --- /dev/null +++ b/source/prefigure/chap-changing/transformations-vert.xml @@ -0,0 +1,20 @@ + + + + + + + + (0,0) + + + (0,-3) + + + + + \ No newline at end of file diff --git a/source/prefigure/chap-circular/sine-and-cosine-graphs.xml b/source/prefigure/chap-circular/sine-and-cosine-graphs.xml new file mode 100644 index 00000000..fa54968f --- /dev/null +++ b/source/prefigure/chap-circular/sine-and-cosine-graphs.xml @@ -0,0 +1,67 @@ + + k=pi/8 + f(x)=sin(k*x) + g(x)=cos(k*x) + p=[0,4/3,2,8/3,4,16/3,6,20/3] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-circular/sine-cosine-act-graph-cosine.xml b/source/prefigure/chap-circular/sine-cosine-act-graph-cosine.xml new file mode 100644 index 00000000..28e4b7e6 --- /dev/null +++ b/source/prefigure/chap-circular/sine-cosine-act-graph-cosine.xml @@ -0,0 +1,61 @@ + + k=pi/8 + f(x)=cos(k*x) + p=[0,4/3,2,8/3,4,16/3,6,20/3] + + + + + + + \left(\frac{\pi}{4},\frac{\sqrt{2}}{2}\right) + \left(\frac{\pi}{3},\frac{1}{2}\right) + \left(\pi,-1\right) + \left(\frac{7\pi}{6},-\frac{\sqrt{3}}{2}\right) + \left(2\pi,1\right) + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-circular/sine-cosine-definition-axes.xml b/source/prefigure/chap-circular/sine-cosine-definition-axes.xml new file mode 100644 index 00000000..1f608911 --- /dev/null +++ b/source/prefigure/chap-circular/sine-cosine-definition-axes.xml @@ -0,0 +1,54 @@ + + k=pi/8 + f(x)=sin(k*x) + p=[0,4/3,2,8/3,4,16/3,6,20/3] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-circular/sine-cosine-right-triangle.xml b/source/prefigure/chap-circular/sine-cosine-right-triangle.xml new file mode 100644 index 00000000..b66799b8 --- /dev/null +++ b/source/prefigure/chap-circular/sine-cosine-right-triangle.xml @@ -0,0 +1,46 @@ + + t=0.5 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-circular/sine-cosine-unit-circle.xml b/source/prefigure/chap-circular/sine-cosine-unit-circle.xml new file mode 100644 index 00000000..c2f9c2f3 --- /dev/null +++ b/source/prefigure/chap-circular/sine-cosine-unit-circle.xml @@ -0,0 +1,45 @@ + + t=0.5 + + + + + + + + + + + + (1,0) + + + + (\cos(t),\sin(t)) + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-circular/sine-definition-graph.xml b/source/prefigure/chap-circular/sine-definition-graph.xml new file mode 100644 index 00000000..705f5b99 --- /dev/null +++ b/source/prefigure/chap-circular/sine-definition-graph.xml @@ -0,0 +1,73 @@ + + k=pi/8 + f(x)=sin(k*x) + p=[0,1/6,1/4,1/3,1/2,2/3,3/4,5/6] + p=[0,4/3,2,8/3,4,16/3,6,20/3] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-circular/sine-defn-cosine.xml b/source/prefigure/chap-circular/sine-defn-cosine.xml new file mode 100644 index 00000000..f96cc475 --- /dev/null +++ b/source/prefigure/chap-circular/sine-defn-cosine.xml @@ -0,0 +1,44 @@ + + + + + p=(cos(1), sin(1)) + + + + + + + + + + (a,b) + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-circular/sine-defn.xml b/source/prefigure/chap-circular/sine-defn.xml new file mode 100644 index 00000000..ea335d4d --- /dev/null +++ b/source/prefigure/chap-circular/sine-defn.xml @@ -0,0 +1,36 @@ + + + + + p=(cos(1), sin(1)) + + + + + + + + + + (a,b) + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-circular/sine-labeling-graph.xml b/source/prefigure/chap-circular/sine-labeling-graph.xml new file mode 100644 index 00000000..297d40ca --- /dev/null +++ b/source/prefigure/chap-circular/sine-labeling-graph.xml @@ -0,0 +1,64 @@ + + k=pi/8 + f(x)=sin(k*x) + p=[0,1/6,1/4,1/3,1/2,2/3,3/4,5/6] + p=[0,4/3,2,8/3,4,16/3,6,20/3] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-circular/sinusoidal-horiz-scaling-1.xml b/source/prefigure/chap-circular/sinusoidal-horiz-scaling-1.xml new file mode 100644 index 00000000..ebe5b14c --- /dev/null +++ b/source/prefigure/chap-circular/sinusoidal-horiz-scaling-1.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + (2,-2) + + + + + + + + + + diff --git a/source/prefigure/chap-circular/sinusoidal-horiz-scaling-2.xml b/source/prefigure/chap-circular/sinusoidal-horiz-scaling-2.xml new file mode 100644 index 00000000..e9c920b0 --- /dev/null +++ b/source/prefigure/chap-circular/sinusoidal-horiz-scaling-2.xml @@ -0,0 +1,24 @@ + + f(x)=-(x+2)^2+2 + + + + + + + + (-2,2) + + + + + + + + + + diff --git a/source/prefigure/chap-circular/sinusoidal-sine-horiz-scaling-2.xml b/source/prefigure/chap-circular/sinusoidal-sine-horiz-scaling-2.xml new file mode 100644 index 00000000..82d7be93 --- /dev/null +++ b/source/prefigure/chap-circular/sinusoidal-sine-horiz-scaling-2.xml @@ -0,0 +1,50 @@ + + k=pi/8 + f(x)=sin(k*x) + g(x)=f(x/2) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-circular/sinusoidal-sine-horiz-scaling.xml b/source/prefigure/chap-circular/sinusoidal-sine-horiz-scaling.xml new file mode 100644 index 00000000..028c0492 --- /dev/null +++ b/source/prefigure/chap-circular/sinusoidal-sine-horiz-scaling.xml @@ -0,0 +1,53 @@ + + k=pi/8 + f(x)=sin(k*x) + g(x)=f(2*x) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-circular/sinusoidal-transformed-cosine.xml b/source/prefigure/chap-circular/sinusoidal-transformed-cosine.xml new file mode 100644 index 00000000..86da3ddc --- /dev/null +++ b/source/prefigure/chap-circular/sinusoidal-transformed-cosine.xml @@ -0,0 +1,117 @@ + + k=pi/8 + g(x)=cos(k*x) + b=1/k + g1(x)=g(x-b) + a=2.23 + g2(x)=a*g1(x) + c=1.5 + g3(x)=g2(x)+c + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (b,a+c) + + + + + + + + diff --git a/source/prefigure/chap-circular/traversing-act-circle.xml b/source/prefigure/chap-circular/traversing-act-circle.xml new file mode 100644 index 00000000..bb372a25 --- /dev/null +++ b/source/prefigure/chap-circular/traversing-act-circle.xml @@ -0,0 +1,29 @@ + + + + + r=4/pi + f(x)=r-r*cos(x/12*pi) + + + + + + + + (2,2) + + + + + + + + \ No newline at end of file diff --git a/source/prefigure/chap-circular/traversing-act-circular-grid-fcn.xml b/source/prefigure/chap-circular/traversing-act-circular-grid-fcn.xml new file mode 100644 index 00000000..09bc152a --- /dev/null +++ b/source/prefigure/chap-circular/traversing-act-circular-grid-fcn.xml @@ -0,0 +1,22 @@ + + f(x)=4/pi*sin(pi/4*x-pi)+2 + + + + + + (6,3.27) + (2,0.73) + (4,2) + (8,2) + (10,0.73) + (12,2) + (14,3.27) + (16,2) + + + + + diff --git a/source/prefigure/chap-circular/traversing-act-circular-grid-horiz.xml b/source/prefigure/chap-circular/traversing-act-circular-grid-horiz.xml new file mode 100644 index 00000000..e4f29e54 --- /dev/null +++ b/source/prefigure/chap-circular/traversing-act-circular-grid-horiz.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + diff --git a/source/prefigure/chap-circular/traversing-act-circular-grid.xml b/source/prefigure/chap-circular/traversing-act-circular-grid.xml new file mode 100644 index 00000000..e6c3d82b --- /dev/null +++ b/source/prefigure/chap-circular/traversing-act-circular-grid.xml @@ -0,0 +1,9 @@ + + + + + + + \ No newline at end of file diff --git a/source/prefigure/chap-circular/traversing-circular-act-oscillator.xml b/source/prefigure/chap-circular/traversing-circular-act-oscillator.xml new file mode 100644 index 00000000..8ba0a933 --- /dev/null +++ b/source/prefigure/chap-circular/traversing-circular-act-oscillator.xml @@ -0,0 +1,24 @@ + + p=2*pi/4 + f(x)=8-5*sin(p*x) + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-circular/traversing-circular-aroc-circle-20th.xml b/source/prefigure/chap-circular/traversing-circular-aroc-circle-20th.xml new file mode 100644 index 00000000..f5043e29 --- /dev/null +++ b/source/prefigure/chap-circular/traversing-circular-aroc-circle-20th.xml @@ -0,0 +1,54 @@ + + q=(cos(pi/10), sin(pi/10)) + r=(cos(4*pi/10), sin(4*pi/10)) + + + + + + + + + + + + + + + + + + + + + + + + + + S + + + R + + + Q + + + P + + + + + + diff --git a/source/prefigure/chap-circular/traversing-circular-aroc-circle-eighth.xml b/source/prefigure/chap-circular/traversing-circular-aroc-circle-eighth.xml new file mode 100644 index 00000000..20227303 --- /dev/null +++ b/source/prefigure/chap-circular/traversing-circular-aroc-circle-eighth.xml @@ -0,0 +1,45 @@ + + q=(cos(pi/4), sin(pi/4)) + + + + + + + + + + + + + + + + + + + + + + R + + + Q + + + P + + + + + + diff --git a/source/prefigure/chap-circular/traversing-circular-properties-circle.xml b/source/prefigure/chap-circular/traversing-circular-properties-circle.xml new file mode 100644 index 00000000..9b0cdcf9 --- /dev/null +++ b/source/prefigure/chap-circular/traversing-circular-properties-circle.xml @@ -0,0 +1,49 @@ + + + + + + + r=4/pi + f(x)=r-r*cos(x/12*pi) + + + + + + + + + S + + + + Q + + + + P + + + + R + + + + + + + + + + + + diff --git a/source/prefigure/chap-circular/traversing-circular-properties-graph.xml b/source/prefigure/chap-circular/traversing-circular-properties-graph.xml new file mode 100644 index 00000000..5d291df1 --- /dev/null +++ b/source/prefigure/chap-circular/traversing-circular-properties-graph.xml @@ -0,0 +1,44 @@ + + p=8 + r=p/(2*pi) + f(x)=2+r*cos(x/p*2*pi) + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-circular/traversing-ez-fxn-1.xml b/source/prefigure/chap-circular/traversing-ez-fxn-1.xml new file mode 100644 index 00000000..9ffde32c --- /dev/null +++ b/source/prefigure/chap-circular/traversing-ez-fxn-1.xml @@ -0,0 +1,24 @@ + + p=2*pi/8 + f(x)=7-4*sin(p*x) + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-circular/traversing-ez-fxn-2.xml b/source/prefigure/chap-circular/traversing-ez-fxn-2.xml new file mode 100644 index 00000000..6722e0fa --- /dev/null +++ b/source/prefigure/chap-circular/traversing-ez-fxn-2.xml @@ -0,0 +1,24 @@ + + p=2*pi/8 + f(x)=6.5+5.5*cos(p*x) + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-circular/traversing-first-example-graph.xml b/source/prefigure/chap-circular/traversing-first-example-graph.xml new file mode 100644 index 00000000..84355bba --- /dev/null +++ b/source/prefigure/chap-circular/traversing-first-example-graph.xml @@ -0,0 +1,40 @@ + + + + + + + + + + r=12/pi + f(x)=r-r*cos(x/12*pi) + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-circular/traversing-first-example.xml b/source/prefigure/chap-circular/traversing-first-example.xml new file mode 100644 index 00000000..42f422d4 --- /dev/null +++ b/source/prefigure/chap-circular/traversing-first-example.xml @@ -0,0 +1,42 @@ + + + + + + + + r=12/pi + p1=(r*sin(pi/4), -r*cos(pi/4)+r) + p5=(r*sin(5*pi/4), -r*cos(5*pi/4)+r) + + + + + + d=0 + + + d=3 + + + d=6 + + + d=9 + + + d=12 + + + d=15 + + + d=18 + + + + + + diff --git a/source/prefigure/chap-circular/unit-circle-16-all-labeled.xml b/source/prefigure/chap-circular/unit-circle-16-all-labeled.xml new file mode 100644 index 00000000..e691bbb1 --- /dev/null +++ b/source/prefigure/chap-circular/unit-circle-16-all-labeled.xml @@ -0,0 +1,84 @@ + + space=0.2 + p(x)=(cos(x*pi), sin(x*pi)) + + + + + + + + + + + + (1,0)_{t=0} + + + + \left(\frac{\sqrt{3}}2, \frac12\right)_{t=\frac{\pi}6} + + + + \left(\frac1{\sqrt{2}}, \frac1{\sqrt{2}}\right)_{t=\frac{\pi}4} + + + + \left(\frac12,\frac1{\sqrt{2}}\right)_{t=\frac{\pi}3} + + + + (0,1)_{t=\frac{\pi}2} + + + + \left(-\frac12,\frac{\sqrt{3}}2\right)_{t=\frac{2\pi}3} + + + + \left(-\frac1{\sqrt{2}}, \frac1{\sqrt{2}}\right)_{t=\frac{3\pi}4} + + + + \left(-\frac{\sqrt{3}}2,\frac12\right)_{t=\frac{5\pi}6} + + + + (-1,0)_{t=\pi} + + + + \left(-\frac{\sqrt{3}}2,-\frac12\right)_{t=\frac{7\pi}6} + + + + \left(-\frac1{\sqrt{2}}, -\frac1{\sqrt{2}}\right)_{t=\frac{5\pi}4} + + + + \left(-\frac12,-\frac{\sqrt{3}}2\right)_{t=\frac{4\pi}3} + + + + (0,-1)_{t=\frac{3\pi}2} + + + + \left(\frac12,-\frac{\sqrt{3}}2\right)_{t=\frac{5\pi}3} + + + + \left(\frac1{\sqrt{2}}, -\frac1{\sqrt{2}}\right)_{t=\frac{7\pi}4} + + + + \left(\frac{\sqrt{3}}2,-\frac12\right)_{t=\frac{11\pi}6} + + + + + + diff --git a/source/prefigure/chap-circular/unit-circle-16-coords.xml b/source/prefigure/chap-circular/unit-circle-16-coords.xml new file mode 100644 index 00000000..ad66ad18 --- /dev/null +++ b/source/prefigure/chap-circular/unit-circle-16-coords.xml @@ -0,0 +1,44 @@ + + space=0.2 + p=(cos(pi/3), sin(pi/3)) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-circular/unit-circle-24-PA.xml b/source/prefigure/chap-circular/unit-circle-24-PA.xml new file mode 100644 index 00000000..7c72af1c --- /dev/null +++ b/source/prefigure/chap-circular/unit-circle-24-PA.xml @@ -0,0 +1,26 @@ + + space=0.2 + p(x)=(cos(x/12*pi),sin(x/12*pi)) + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-circular/unit-circle-24s.xml b/source/prefigure/chap-circular/unit-circle-24s.xml new file mode 100644 index 00000000..4037f05d --- /dev/null +++ b/source/prefigure/chap-circular/unit-circle-24s.xml @@ -0,0 +1,42 @@ + + space=0.2 + p(x)=(cos(x/12*pi),sin(x/12*pi)) + + + + + + + + + t_0 + + + + t_1 + + + + t_2 + + + + t_3 + + + + t_4 + + + + t_5 + + + + t_6 + + + + + + diff --git a/source/prefigure/chap-circular/unit-circle-30-60-90.xml b/source/prefigure/chap-circular/unit-circle-30-60-90.xml new file mode 100644 index 00000000..a58c9e95 --- /dev/null +++ b/source/prefigure/chap-circular/unit-circle-30-60-90.xml @@ -0,0 +1,39 @@ + + + p=(1, sin(pi/6)/cos(pi/6)) + q=(1, -sin(pi/6)/cos(pi/6)) + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-circular/unit-circle-45-45-90.xml b/source/prefigure/chap-circular/unit-circle-45-45-90.xml new file mode 100644 index 00000000..59add25f --- /dev/null +++ b/source/prefigure/chap-circular/unit-circle-45-45-90.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-circular/unit-circle-eqn.xml b/source/prefigure/chap-circular/unit-circle-eqn.xml new file mode 100644 index 00000000..c111387a --- /dev/null +++ b/source/prefigure/chap-circular/unit-circle-eqn.xml @@ -0,0 +1,33 @@ + + space=0.2 + p=(0.8,0.6) + + + + + + + + + + + (x,y) + + + + + + + + + + + + diff --git a/source/prefigure/chap-circular/unit-circle-find-30-60.xml b/source/prefigure/chap-circular/unit-circle-find-30-60.xml new file mode 100644 index 00000000..1f4ba3f6 --- /dev/null +++ b/source/prefigure/chap-circular/unit-circle-find-30-60.xml @@ -0,0 +1,42 @@ + + + p=(1, sin(pi/6)/cos(pi/6)) + q=(1, -sin(pi/6)/cos(pi/6)) + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-circular/unit-circle-pi-3.xml b/source/prefigure/chap-circular/unit-circle-pi-3.xml new file mode 100644 index 00000000..d414d8db --- /dev/null +++ b/source/prefigure/chap-circular/unit-circle-pi-3.xml @@ -0,0 +1,41 @@ + + space=0.2 + p=(cos(pi/3), sin(pi/3)) + + + + + + + + + + + (x,y) + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-circular/unit-circle-pi-4.xml b/source/prefigure/chap-circular/unit-circle-pi-4.xml new file mode 100644 index 00000000..59df8008 --- /dev/null +++ b/source/prefigure/chap-circular/unit-circle-pi-4.xml @@ -0,0 +1,41 @@ + + space=0.2 + p=(cos(pi/4), sin(pi/4)) + + + + + + + + + + + (x,y) + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-circular/unit-circle-pi-6.xml b/source/prefigure/chap-circular/unit-circle-pi-6.xml new file mode 100644 index 00000000..90f342c7 --- /dev/null +++ b/source/prefigure/chap-circular/unit-circle-pi-6.xml @@ -0,0 +1,41 @@ + + space=0.2 + p=(cos(pi/6), sin(pi/6)) + + + + + + + + + + + (x,y) + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-circular/unit-circle-radian.xml b/source/prefigure/chap-circular/unit-circle-radian.xml new file mode 100644 index 00000000..4c4dcf6b --- /dev/null +++ b/source/prefigure/chap-circular/unit-circle-radian.xml @@ -0,0 +1,42 @@ + + space=0.2 + p(x)=(cos(x/12*pi),sin(x/12*pi)) + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-exp/e-2-e-3.xml b/source/prefigure/chap-exp/e-2-e-3.xml new file mode 100644 index 00000000..de65585a --- /dev/null +++ b/source/prefigure/chap-exp/e-2-e-3.xml @@ -0,0 +1,36 @@ + + t(x)=2^x + r(x)=e^x + q(x)=3^x + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-exp/e-b-k.xml b/source/prefigure/chap-exp/e-b-k.xml new file mode 100644 index 00000000..83cdae3d --- /dev/null +++ b/source/prefigure/chap-exp/e-b-k.xml @@ -0,0 +1,44 @@ + + r(x)=e^x + a=2 + b=7 + c=4.3 + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-exp/e-base-compression.xml b/source/prefigure/chap-exp/e-base-compression.xml new file mode 100644 index 00000000..bb7b4adf --- /dev/null +++ b/source/prefigure/chap-exp/e-base-compression.xml @@ -0,0 +1,44 @@ + + t(x)=2^x + r(x)=e^x + q(x)=4^x + p(x)=6^x + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-exp/exp-log-blank-axes.xml b/source/prefigure/chap-exp/exp-log-blank-axes.xml new file mode 100644 index 00000000..8e464f05 --- /dev/null +++ b/source/prefigure/chap-exp/exp-log-blank-axes.xml @@ -0,0 +1,10 @@ + + + + + + + + diff --git a/source/prefigure/chap-exp/growth-PA-blank-axes.xml b/source/prefigure/chap-exp/growth-PA-blank-axes.xml new file mode 100644 index 00000000..1e4c6e45 --- /dev/null +++ b/source/prefigure/chap-exp/growth-PA-blank-axes.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + diff --git a/source/prefigure/chap-exp/growth-act-a-b-t.xml b/source/prefigure/chap-exp/growth-act-a-b-t.xml new file mode 100644 index 00000000..d857e287 --- /dev/null +++ b/source/prefigure/chap-exp/growth-act-a-b-t.xml @@ -0,0 +1,26 @@ + + f(x)=6*0.75^x + g(x)=3*1.1^x + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-exp/growth-decr-CCU.xml b/source/prefigure/chap-exp/growth-decr-CCU.xml new file mode 100644 index 00000000..5719be71 --- /dev/null +++ b/source/prefigure/chap-exp/growth-decr-CCU.xml @@ -0,0 +1,19 @@ + + f(x)=8*0.85^x + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-exp/growth-ez-find-a-b.xml b/source/prefigure/chap-exp/growth-ez-find-a-b.xml new file mode 100644 index 00000000..7e2b2cde --- /dev/null +++ b/source/prefigure/chap-exp/growth-ez-find-a-b.xml @@ -0,0 +1,26 @@ + + f(x)=34.82202 * 0.75786**x + + + + + + + + + + (2,20) + + + (7,5) + + + + + + + + diff --git a/source/prefigure/chap-exp/growth-incr-CCU.xml b/source/prefigure/chap-exp/growth-incr-CCU.xml new file mode 100644 index 00000000..a4c69d09 --- /dev/null +++ b/source/prefigure/chap-exp/growth-incr-CCU.xml @@ -0,0 +1,16 @@ + + f(x)=2*1.15^x + + + + + + + + + + + diff --git a/source/prefigure/chap-exp/growth-rates-act-decr-ccd.xml b/source/prefigure/chap-exp/growth-rates-act-decr-ccd.xml new file mode 100644 index 00000000..8420db0a --- /dev/null +++ b/source/prefigure/chap-exp/growth-rates-act-decr-ccd.xml @@ -0,0 +1,10 @@ + + f(x)=-(1/2)^(-x)+5 + + + + + + + + \ No newline at end of file diff --git a/source/prefigure/chap-exp/growth-rates-act-incr-ccd.xml b/source/prefigure/chap-exp/growth-rates-act-incr-ccd.xml new file mode 100644 index 00000000..4f7a11e6 --- /dev/null +++ b/source/prefigure/chap-exp/growth-rates-act-incr-ccd.xml @@ -0,0 +1,10 @@ + + f(x)=-(1/2)^x+5 + + + + + + + + \ No newline at end of file diff --git a/source/prefigure/chap-exp/growth-rates-act-incr-ccu.xml b/source/prefigure/chap-exp/growth-rates-act-incr-ccu.xml new file mode 100644 index 00000000..ac08c728 --- /dev/null +++ b/source/prefigure/chap-exp/growth-rates-act-incr-ccu.xml @@ -0,0 +1,10 @@ + + f(x)=2^x + + + + + + + + \ No newline at end of file diff --git a/source/prefigure/chap-exp/growth-rates-act-line.xml b/source/prefigure/chap-exp/growth-rates-act-line.xml new file mode 100644 index 00000000..dac3c552 --- /dev/null +++ b/source/prefigure/chap-exp/growth-rates-act-line.xml @@ -0,0 +1,11 @@ + + f(x)=-2*x+1 + + + + + + + + \ No newline at end of file diff --git a/source/prefigure/chap-exp/growth-rates-act-parabola.xml b/source/prefigure/chap-exp/growth-rates-act-parabola.xml new file mode 100644 index 00000000..0676255e --- /dev/null +++ b/source/prefigure/chap-exp/growth-rates-act-parabola.xml @@ -0,0 +1,10 @@ + + f(x)=-(x-2)^2+5 + + + + + + + + \ No newline at end of file diff --git a/source/prefigure/chap-exp/modeling-F-t-blank-axes.xml b/source/prefigure/chap-exp/modeling-F-t-blank-axes.xml new file mode 100644 index 00000000..71a4eb54 --- /dev/null +++ b/source/prefigure/chap-exp/modeling-F-t-blank-axes.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/source/prefigure/chap-exp/modeling-coffee-original.xml b/source/prefigure/chap-exp/modeling-coffee-original.xml new file mode 100644 index 00000000..215e76a6 --- /dev/null +++ b/source/prefigure/chap-exp/modeling-coffee-original.xml @@ -0,0 +1,37 @@ + + points=((0,186),(1,179),(2,175),(3,171),(8,156),(13,144), + (18,135),(23,127),(28,120),(33,116),(38,111),(43,107),(48,104)) + f(x)=103.503 * (0.974)**x + 71 + shift=(0,0) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-exp/modeling-coffee-shifted.xml b/source/prefigure/chap-exp/modeling-coffee-shifted.xml new file mode 100644 index 00000000..58bd8107 --- /dev/null +++ b/source/prefigure/chap-exp/modeling-coffee-shifted.xml @@ -0,0 +1,37 @@ + + points=((0,186),(1,179),(2,175),(3,171),(8,156),(13,144), + (18,135),(23,127),(28,120),(33,116),(38,111),(43,107),(48,104)) + f(x)=103.503 * (0.974)**x + shift=(0,71) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-exp/modeling-exp-coffee.xml b/source/prefigure/chap-exp/modeling-exp-coffee.xml new file mode 100644 index 00000000..4b716481 --- /dev/null +++ b/source/prefigure/chap-exp/modeling-exp-coffee.xml @@ -0,0 +1,33 @@ + + points=((0,186),(1,179),(2,175),(3,171),(8,156),(13,144), + (18,135),(23,127),(28,120),(33,116),(38,111),(43,107),(48,104)) + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-exp/modeling-exp-ez-p.xml b/source/prefigure/chap-exp/modeling-exp-ez-p.xml new file mode 100644 index 00000000..d68061b5 --- /dev/null +++ b/source/prefigure/chap-exp/modeling-exp-ez-p.xml @@ -0,0 +1,23 @@ + + c=-1 + f(x)=c + p(x)=1.75*(0.35)**x +c + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-exp/modeling-exp-ez-q.xml b/source/prefigure/chap-exp/modeling-exp-ez-q.xml new file mode 100644 index 00000000..b06c28eb --- /dev/null +++ b/source/prefigure/chap-exp/modeling-exp-ez-q.xml @@ -0,0 +1,22 @@ + + c=-1 + f(x)=c + p(x)=-2*(0.35)**x + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-exp/modeling-exp-ez-r.xml b/source/prefigure/chap-exp/modeling-exp-ez-r.xml new file mode 100644 index 00000000..bd97dbbd --- /dev/null +++ b/source/prefigure/chap-exp/modeling-exp-ez-r.xml @@ -0,0 +1,23 @@ + + c=1 + f(x)=c + p(x)=1.25*(1.75)**x+c + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-exp/modeling-exp-ez-s.xml b/source/prefigure/chap-exp/modeling-exp-ez-s.xml new file mode 100644 index 00000000..4343a88d --- /dev/null +++ b/source/prefigure/chap-exp/modeling-exp-ez-s.xml @@ -0,0 +1,23 @@ + + c=2 + f(x)=c + p(x)=-1.25*(1.75)**x+c + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-exp/modeling-exp-reflection.xml b/source/prefigure/chap-exp/modeling-exp-reflection.xml new file mode 100644 index 00000000..183d4100 --- /dev/null +++ b/source/prefigure/chap-exp/modeling-exp-reflection.xml @@ -0,0 +1,28 @@ + + p(x)=2^x + q(x)=0.5^x + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-exp/modeling-potato-act-temp-graph.xml b/source/prefigure/chap-exp/modeling-potato-act-temp-graph.xml new file mode 100644 index 00000000..12076c7b --- /dev/null +++ b/source/prefigure/chap-exp/modeling-potato-act-temp-graph.xml @@ -0,0 +1,8 @@ + + f(x)=212 - 144*0.98^x + + + + + \ No newline at end of file diff --git a/source/prefigure/chap-exp/modeling-vert-transl-0.xml b/source/prefigure/chap-exp/modeling-vert-transl-0.xml new file mode 100644 index 00000000..ad9df7a8 --- /dev/null +++ b/source/prefigure/chap-exp/modeling-vert-transl-0.xml @@ -0,0 +1,27 @@ + + p(x)=6*0.75^x + + + + + + + (0,a) + + + + + + + + + + + + + diff --git a/source/prefigure/chap-exp/modeling-vert-transl-c.xml b/source/prefigure/chap-exp/modeling-vert-transl-c.xml new file mode 100644 index 00000000..1f590bce --- /dev/null +++ b/source/prefigure/chap-exp/modeling-vert-transl-c.xml @@ -0,0 +1,29 @@ + + f(x)=2 + p(x)=6*0.75^x+f(x) + + + + + + + + (0,a+c) + + + + + + + + + + + + + diff --git a/source/prefigure/chap-exp/temp-pop-p-t-blank-axes.xml b/source/prefigure/chap-exp/temp-pop-p-t-blank-axes.xml new file mode 100644 index 00000000..f2d9ef90 --- /dev/null +++ b/source/prefigure/chap-exp/temp-pop-p-t-blank-axes.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/source/prefigure/chap-poly/infty-VA-0-HA-0.xml b/source/prefigure/chap-poly/infty-VA-0-HA-0.xml new file mode 100644 index 00000000..603a4dbe --- /dev/null +++ b/source/prefigure/chap-poly/infty-VA-0-HA-0.xml @@ -0,0 +1,24 @@ + + ep=0.0001 + f(x)=1/x + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-poly/infty-VA-1-HA-2.xml b/source/prefigure/chap-poly/infty-VA-1-HA-2.xml new file mode 100644 index 00000000..395934b4 --- /dev/null +++ b/source/prefigure/chap-poly/infty-VA-1-HA-2.xml @@ -0,0 +1,30 @@ + + ep=0.0001 + f(x)=1/(x+1)-2 + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-poly/infty-exp-reflection.xml b/source/prefigure/chap-poly/infty-exp-reflection.xml new file mode 100644 index 00000000..35330156 --- /dev/null +++ b/source/prefigure/chap-poly/infty-exp-reflection.xml @@ -0,0 +1,28 @@ + + f(x)=e^x + g(x)=1/f(x) + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-poly/infty-log-graph.xml b/source/prefigure/chap-poly/infty-log-graph.xml new file mode 100644 index 00000000..7a51c18f --- /dev/null +++ b/source/prefigure/chap-poly/infty-log-graph.xml @@ -0,0 +1,32 @@ + + f(x)=e^x + g(x)=log(x) + h(x)=x + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-poly/poly-degree-7-far.xml b/source/prefigure/chap-poly/poly-degree-7-far.xml new file mode 100644 index 00000000..3649c04c --- /dev/null +++ b/source/prefigure/chap-poly/poly-degree-7-far.xml @@ -0,0 +1,23 @@ + + f(x)=-0.000025*(x+8)*(x+6)*(x-5)*(x**2+1)*(x-7)*(x-9) + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-poly/poly-degree-7-near.xml b/source/prefigure/chap-poly/poly-degree-7-near.xml new file mode 100644 index 00000000..806d9ec6 --- /dev/null +++ b/source/prefigure/chap-poly/poly-degree-7-near.xml @@ -0,0 +1,24 @@ + + f(x)=-0.000025*(x+8)*(x+6)*(x-5)*(x**2+1)*(x-7)*(x-9) + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-poly/poly-degree-9.xml b/source/prefigure/chap-poly/poly-degree-9.xml new file mode 100644 index 00000000..fcef5e59 --- /dev/null +++ b/source/prefigure/chap-poly/poly-degree-9.xml @@ -0,0 +1,24 @@ + + f(x)=-0.0000025 * (x+8)**2 * (x+4)**3 * (x-1) * (x-5)**2 * (x-7.5) + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-poly/poly-ez-g.xml b/source/prefigure/chap-poly/poly-ez-g.xml new file mode 100644 index 00000000..4890e350 --- /dev/null +++ b/source/prefigure/chap-poly/poly-ez-g.xml @@ -0,0 +1,27 @@ + + f(x)=-0.005*(x+3)**3 * (x-1)**2 * (x-4) + + + + + + + + + (2,1.25) + + + + + + + + + + diff --git a/source/prefigure/chap-poly/polynomial-1-1-1-1.xml b/source/prefigure/chap-poly/polynomial-1-1-1-1.xml new file mode 100644 index 00000000..d7a5e4a8 --- /dev/null +++ b/source/prefigure/chap-poly/polynomial-1-1-1-1.xml @@ -0,0 +1,27 @@ + + f(x)=x*(x-1)*(x+1)*(x-2) + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-poly/polynomial-2-1-1.xml b/source/prefigure/chap-poly/polynomial-2-1-1.xml new file mode 100644 index 00000000..f10a02d8 --- /dev/null +++ b/source/prefigure/chap-poly/polynomial-2-1-1.xml @@ -0,0 +1,26 @@ + + f(x)=x**2 * (x-1)*(x+1) + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-poly/polynomial-2-2.xml b/source/prefigure/chap-poly/polynomial-2-2.xml new file mode 100644 index 00000000..5a885e8b --- /dev/null +++ b/source/prefigure/chap-poly/polynomial-2-2.xml @@ -0,0 +1,25 @@ + + f(x)=x**2 * (x-1)**2 + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-poly/polynomial-3-1-1.xml b/source/prefigure/chap-poly/polynomial-3-1-1.xml new file mode 100644 index 00000000..2a51a5fe --- /dev/null +++ b/source/prefigure/chap-poly/polynomial-3-1-1.xml @@ -0,0 +1,22 @@ + + dx=0.4 + f(x)=x^3*(x-1) + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-poly/polynomial-3-1-3.xml b/source/prefigure/chap-poly/polynomial-3-1-3.xml new file mode 100644 index 00000000..6667b2b0 --- /dev/null +++ b/source/prefigure/chap-poly/polynomial-3-1-3.xml @@ -0,0 +1,23 @@ + + dx=0.4 + f(x)=x^3*(x-1) + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-poly/polynomial-3-1.xml b/source/prefigure/chap-poly/polynomial-3-1.xml new file mode 100644 index 00000000..f6f79c7d --- /dev/null +++ b/source/prefigure/chap-poly/polynomial-3-1.xml @@ -0,0 +1,32 @@ + + dx=0.4 + f(x)=x^3*(x-1) + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-trig/finding-angles-ex-1.xml b/source/prefigure/chap-trig/finding-angles-ex-1.xml new file mode 100644 index 00000000..1fb5b424 --- /dev/null +++ b/source/prefigure/chap-trig/finding-angles-ex-1.xml @@ -0,0 +1,35 @@ + + a=(0,0) + b=(23,0) + c=(23,10) + dx=1.5 + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-trig/inv-trig-cosarcsin.xml b/source/prefigure/chap-trig/inv-trig-cosarcsin.xml new file mode 100644 index 00000000..cbcebaa9 --- /dev/null +++ b/source/prefigure/chap-trig/inv-trig-cosarcsin.xml @@ -0,0 +1,32 @@ + + a=(0,0) + b=(13,0) + c=(13,25) + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-trig/inv-trig-cosarctan.xml b/source/prefigure/chap-trig/inv-trig-cosarctan.xml new file mode 100644 index 00000000..b65c88da --- /dev/null +++ b/source/prefigure/chap-trig/inv-trig-cosarctan.xml @@ -0,0 +1,32 @@ + + a=(0,0) + b=(13,0) + c=(13,25) + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-trig/inverse-tan-graph.xml b/source/prefigure/chap-trig/inverse-tan-graph.xml new file mode 100644 index 00000000..343df968 --- /dev/null +++ b/source/prefigure/chap-trig/inverse-tan-graph.xml @@ -0,0 +1,35 @@ + + ep=0.0001 + f(x)=sin(x)/cos(x) + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-trig/inverse-trig-PA-cosine.xml b/source/prefigure/chap-trig/inverse-trig-PA-cosine.xml new file mode 100644 index 00000000..264abba5 --- /dev/null +++ b/source/prefigure/chap-trig/inverse-trig-PA-cosine.xml @@ -0,0 +1,34 @@ + + f(x)=cos(x) + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-trig/inverse-trig-arccos-graph.xml b/source/prefigure/chap-trig/inverse-trig-arccos-graph.xml new file mode 100644 index 00000000..c9110523 --- /dev/null +++ b/source/prefigure/chap-trig/inverse-trig-arccos-graph.xml @@ -0,0 +1,34 @@ + + f(x)=cos(x) + g(x)=x + + + + + + + + + + + + + y=\cos(t) + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-trig/inverse-trig-arcsin-graph.xml b/source/prefigure/chap-trig/inverse-trig-arcsin-graph.xml new file mode 100644 index 00000000..4d8db024 --- /dev/null +++ b/source/prefigure/chap-trig/inverse-trig-arcsin-graph.xml @@ -0,0 +1,32 @@ + + f(x)=sin(x) + g(x)=x + + + + + + + + + + + y=\sin(t) + + + + + y=\arcsin(t) + + + + + + + + + + diff --git a/source/prefigure/chap-trig/inverse-trig-arctan-graph.xml b/source/prefigure/chap-trig/inverse-trig-arctan-graph.xml new file mode 100644 index 00000000..c2be413b --- /dev/null +++ b/source/prefigure/chap-trig/inverse-trig-arctan-graph.xml @@ -0,0 +1,38 @@ + + ep=0.0001 + f(x)=sin(x)/cos(x) + g(x)=x + h(x)=atan(x) + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-trig/inverse-trig-blank-axes-arcsin.xml b/source/prefigure/chap-trig/inverse-trig-blank-axes-arcsin.xml new file mode 100644 index 00000000..f5962ef4 --- /dev/null +++ b/source/prefigure/chap-trig/inverse-trig-blank-axes-arcsin.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-trig/other-cot-definition-graph.xml b/source/prefigure/chap-trig/other-cot-definition-graph.xml new file mode 100644 index 00000000..754d64d1 --- /dev/null +++ b/source/prefigure/chap-trig/other-cot-definition-graph.xml @@ -0,0 +1,43 @@ + + a=pi/4 + ep=0.00001 + f(x)=sin(a*x)/cos(a*x) + g(x)=1/f(x) + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-trig/other-csc-activity-graph.xml b/source/prefigure/chap-trig/other-csc-activity-graph.xml new file mode 100644 index 00000000..e2a94336 --- /dev/null +++ b/source/prefigure/chap-trig/other-csc-activity-graph.xml @@ -0,0 +1,41 @@ + + a=pi/4 + ep=0.00001 + f(x)=sin(a*x) + g(x)=1/f(x) + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-trig/other-right-triangle-3-4-5.xml b/source/prefigure/chap-trig/other-right-triangle-3-4-5.xml new file mode 100644 index 00000000..e133b806 --- /dev/null +++ b/source/prefigure/chap-trig/other-right-triangle-3-4-5.xml @@ -0,0 +1,62 @@ + + a=(0,0) + b=(4,0) + c=(4,3) + d=smult(1.5,(0.8,0)) + f=smult(1.5,(0.8,0.6)) + dx=0.3 + + + + + + + + + + + + + O + + + Q + + + P + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-trig/other-sec-definition-graph.xml b/source/prefigure/chap-trig/other-sec-definition-graph.xml new file mode 100644 index 00000000..fd160c93 --- /dev/null +++ b/source/prefigure/chap-trig/other-sec-definition-graph.xml @@ -0,0 +1,59 @@ + + a=pi/4 + ep=0.00001 + f(x)=cos(a*x) + g(x)=1/f(x) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-trig/right-act-river-riv.xml b/source/prefigure/chap-trig/right-act-river-riv.xml new file mode 100644 index 00000000..896c85b8 --- /dev/null +++ b/source/prefigure/chap-trig/right-act-river-riv.xml @@ -0,0 +1,49 @@ + + p=(5,0) + q=(20,0) + r=(20,20) + + + + + + + + + + + + + + P + + + B + + + A + + + + + + + + + + + + + diff --git a/source/prefigure/chap-trig/right-act-river.xml b/source/prefigure/chap-trig/right-act-river.xml new file mode 100644 index 00000000..51f2037c --- /dev/null +++ b/source/prefigure/chap-trig/right-act-river.xml @@ -0,0 +1,43 @@ + + p=(5,0) + q=(20,0) + r=(20,20) + + + + + + + + + + + + + + P + + + B + + + A + + + + + + + + + + + diff --git a/source/prefigure/chap-trig/right-triangle-5.xml b/source/prefigure/chap-trig/right-triangle-5.xml new file mode 100644 index 00000000..31658443 --- /dev/null +++ b/source/prefigure/chap-trig/right-triangle-5.xml @@ -0,0 +1,55 @@ + + p=(0,5) + q=(30,5) + r=(30,20) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-trig/right-triangle-SOH-CAH-TOA.xml b/source/prefigure/chap-trig/right-triangle-SOH-CAH-TOA.xml new file mode 100644 index 00000000..c0321a43 --- /dev/null +++ b/source/prefigure/chap-trig/right-triangle-SOH-CAH-TOA.xml @@ -0,0 +1,38 @@ + + p=(0,0) + q=(13,0) + r=(13,20) + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-trig/right-triangle-SOH-CAH.xml b/source/prefigure/chap-trig/right-triangle-SOH-CAH.xml new file mode 100644 index 00000000..c0321a43 --- /dev/null +++ b/source/prefigure/chap-trig/right-triangle-SOH-CAH.xml @@ -0,0 +1,38 @@ + + p=(0,0) + q=(13,0) + r=(13,20) + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-trig/right-triangle-act-similar.xml b/source/prefigure/chap-trig/right-triangle-act-similar.xml new file mode 100644 index 00000000..f983ceef --- /dev/null +++ b/source/prefigure/chap-trig/right-triangle-act-similar.xml @@ -0,0 +1,77 @@ + + p=(0,5) + q=(30,5) + r=(30,20) + t=(15,5) + u=(15,15/30*15+5) + dx=2 + + + + + + + + + + + + + + + + + + + + O + + + N + + + Q + + + M + + + P + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-trig/right-triangle-ex-ratio.xml b/source/prefigure/chap-trig/right-triangle-ex-ratio.xml new file mode 100644 index 00000000..fc65cf1d --- /dev/null +++ b/source/prefigure/chap-trig/right-triangle-ex-ratio.xml @@ -0,0 +1,47 @@ + + p=(0,0) + q=(25,0) + r=(25,20) + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-trig/right-triangle-r-theta.xml b/source/prefigure/chap-trig/right-triangle-r-theta.xml new file mode 100644 index 00000000..8b09b036 --- /dev/null +++ b/source/prefigure/chap-trig/right-triangle-r-theta.xml @@ -0,0 +1,60 @@ + + p=(0,5) + q=(30,5) + r=(30,20) + t=(15,5) + u=(15,15/30*15+5) + dx=2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-trig/right-triangle-trough.xml b/source/prefigure/chap-trig/right-triangle-trough.xml new file mode 100644 index 00000000..beaaa6e2 --- /dev/null +++ b/source/prefigure/chap-trig/right-triangle-trough.xml @@ -0,0 +1,42 @@ + + p=(2,10) + q=(5,0) + r=(20,0) + u=(23,10) + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-trig/sine-cosine-right-triangle.xml b/source/prefigure/chap-trig/sine-cosine-right-triangle.xml new file mode 100644 index 00000000..45b114c7 --- /dev/null +++ b/source/prefigure/chap-trig/sine-cosine-right-triangle.xml @@ -0,0 +1,46 @@ + + t=0.5 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-trig/sine-cosine-unit-circle.xml b/source/prefigure/chap-trig/sine-cosine-unit-circle.xml new file mode 100644 index 00000000..a5582ed7 --- /dev/null +++ b/source/prefigure/chap-trig/sine-cosine-unit-circle.xml @@ -0,0 +1,45 @@ + + t=0.5 + + + + + + + + + + + + (1,0) + + + + (\cos(t),\sin(t)) + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-trig/tan-act-mountain.xml b/source/prefigure/chap-trig/tan-act-mountain.xml new file mode 100644 index 00000000..1c9e4685 --- /dev/null +++ b/source/prefigure/chap-trig/tan-act-mountain.xml @@ -0,0 +1,40 @@ + + a=(0,0) + b=(4,0) + c=(4,1.5) + d=(1,0) + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-trig/tan-act-two-towers.xml b/source/prefigure/chap-trig/tan-act-two-towers.xml new file mode 100644 index 00000000..3ffac05f --- /dev/null +++ b/source/prefigure/chap-trig/tan-act-two-towers.xml @@ -0,0 +1,38 @@ + + a=(0,0) + b=(0,1.534) + c=(1.073,0) + d=(1.073,0.635) + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-trig/tan-definition-graph.xml b/source/prefigure/chap-trig/tan-definition-graph.xml new file mode 100644 index 00000000..b4b5e0ed --- /dev/null +++ b/source/prefigure/chap-trig/tan-definition-graph.xml @@ -0,0 +1,53 @@ + + a=pi/4 + ep=0.0001 + f(x)=sin(a*x)/cos(a*x) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/prefigure/chap-trig/tan-defn-unit-circle.xml b/source/prefigure/chap-trig/tan-defn-unit-circle.xml new file mode 100644 index 00000000..59a19c51 --- /dev/null +++ b/source/prefigure/chap-trig/tan-defn-unit-circle.xml @@ -0,0 +1,37 @@ + + + + + p=(cos(1), sin(1)) + + + + + + + + + + (a,b) + + + + + + + + + + + + + + + diff --git a/source/previews/PA-0-0.xml b/source/previews/PA-0-0.xml index 3f3a7118..1a680038 100755 --- a/source/previews/PA-0-0.xml +++ b/source/previews/PA-0-0.xml @@ -1,20 +1,20 @@ - - - - - - - - - - - - - - - - -

    - - - + + + + + + + + + + + + + + + + +

    + + + diff --git a/source/previews/PA-changing-aroc-D.xml b/source/previews/PA-changing-aroc-D.xml new file mode 100644 index 00000000..ccebbe23 --- /dev/null +++ b/source/previews/PA-changing-aroc-D.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/source/previews/PA-changing-aroc.xml b/source/previews/PA-changing-aroc.xml index e593155f..a1d3edc8 100755 --- a/source/previews/PA-changing-aroc.xml +++ b/source/previews/PA-changing-aroc.xml @@ -1,167 +1,167 @@ - - - - - - - - - - - - - - - - -

    - Let the height function for a ball tossed vertically be given by s(t) = 64 - 16(t-1)^2, - where t is measured in seconds and s is measured in feet above the ground. -

    -

    - - - -

    - Compute the value of AV_{[1.5,2.5]}. -

    -
    - - - -

    - First compute s(1.5) = 64 - 16(1.5-1)^2 = 60 and - s(2.5) = 64 - 16(2.5-1)^2 = 28. Then - - AV_{[1.5,2.5]} &= \frac{s(2.5)-s(1.5)}{2.5-1.5} = \frac{28-60}{1} = -32. - -

    -
    - - - -

    - What are the units on the quantity AV_{[1.5,2.5]}? - What is the meaning of this number in the context of the rising/falling ball? -

    -
    - - - -

    - The units are feet per second. The value AV_{[1.5,2.5]} = -32 means that - between t = 1.5 and t = 2.5 seconds, the ball's height decreases - at an average rate of 32 feet per second. -

    -
    -
    - - -

    - In Desmos, plot the function - s(t) = 64 - 16(t-1)^2 along with the points - (1.5,s(1.5)) and (2.5, s(2.5)). - Make a copy of your plot on the axes in the figure provided, - labeling key points as well as the scale on your axes. - What is the domain of the model? - The range? - Why? -

    - -

    ADD ALT TEXT TO THIS IMAGE

    - -
    - - - -

    - Without additional context specifying when the ball is launched or lands, the - domain and range of the model are not fully determined by the equation alone. - The formula s(t) = 64 - 16(t-1)^2 is a classical free-fall equation, - and negative values of t or s are not necessarily unphysical. -

    - - -
    -
    - - -

    - Work by hand to find the equation of the line through the points - (1.5,s(1.5)) and (2.5, s(2.5)). - Write the line in the form - y = mt + b and plot the line in Desmos, - as well as on the axes above. -

    -
    - - - -

    - The slope is m = AV_{[1.5,2.5]} = -32. Using the point (1.5, 60) - to find the vertical intercept: - - 60 &= -32(1.5) + b - b &= 108. - - The equation of the line is y = -32t + 108. -

    - - -
    -
    - - -

    - What is a geometric interpretation of the value - AV_{[1.5,2.5]} in light of your work in the preceding questions? -

    -
    - - - -

    - AV_{[1.5,2.5]} is the slope of the secant line connecting the points - (1.5, s(1.5)) and (2.5, s(2.5)) on the graph of s. -

    -
    -
    - - -

    - How do your answers in the preceding questions change if we instead consider the interval - [0.25, 0.75]? [0.5, 1.5]? [1,3]? -

    -
    - - - -

    - Interval [0.25, 0.75]: - s(0.25) = 55, s(0.75) = 63, so - AV_{[0.25,0.75]} = \frac{63-55}{0.5} = 16 \text{ ft/sec.} - The secant line through (0.25, 55) with slope 16 is y = 16t + 51. -

    -

    - Interval [0.5, 1.5]: - s(0.5) = 60 and s(1.5) = 60, so - AV_{[0.5,1.5]} = \frac{60-60}{1} = 0 \text{ ft/sec.} - The secant line is the horizontal line y = 60. -

    -

    - Interval [1, 3]: - s(1) = 64, s(3) = 0, so - AV_{[1,3]} = \frac{0-64}{2} = -32 \text{ ft/sec.} - The secant line through (3, 0) with slope -32 is y = -32t + 96. -

    - - - - - - -
    -
    -
    -
    + + + + + + + + + + + + + + + + +

    + Let the height function for a ball tossed vertically be given by s(t) = 64 - 16(t-1)^2, + where t is measured in seconds and s is measured in feet above the ground. +

    +

    + + + +

    + Compute the value of AV_{[1.5,2.5]}. +

    + + + +

    + First compute s(1.5) = 64 - 16(1.5-1)^2 = 60 and + s(2.5) = 64 - 16(2.5-1)^2 = 28. Then + + AV_{[1.5,2.5]} &= \frac{s(2.5)-s(1.5)}{2.5-1.5} = \frac{28-60}{1} = -32. + +

    +
    + + + +

    + What are the units on the quantity AV_{[1.5,2.5]}? + What is the meaning of this number in the context of the rising/falling ball? +

    +
    + + +

    + The units are feet per second. The value AV_{[1.5,2.5]} = -32 means that + between t = 1.5 and t = 2.5 seconds, the ball's height decreases + at an average rate of 32 feet per second. +

    +
    +
    + + +

    + In Desmos, plot the function + s(t) = 64 - 16(t-1)^2 along with the points + (1.5,s(1.5)) and (2.5, s(2.5)). + Make a copy of your plot on the axes in the figure provided, + labeling key points as well as the scale on your axes. + What is the domain of the model? + The range? + Why? +

    + +

    ADD ALT TEXT TO THIS IMAGE

    + +
    + + +

    + Without additional context specifying when the ball is launched or lands, the + domain and range of the model are not fully determined by the equation alone. + The formula s(t) = 64 - 16(t-1)^2 is a classical free-fall equation, + and negative values of t or s are not necessarily unphysical. +

    + + +
    +
    + + +

    + Work by hand to find the equation of the line through the points + (1.5,s(1.5)) and (2.5, s(2.5)). + Write the line in the form + y = mt + b and plot the line in Desmos, + as well as on the axes above. +

    +
    + + +

    + The slope is m = AV_{[1.5,2.5]} = -32. Using the point (1.5, 60) + to find the vertical intercept: + + 60 &= -32(1.5) + b + b &= 108. + + The equation of the line is y = -32t + 108. +

    + + +
    +
    + + +

    + What is a geometric interpretation of the value + AV_{[1.5,2.5]} in light of your work in the preceding questions? +

    +
    + + +

    + AV_{[1.5,2.5]} is the slope of the secant line connecting the points + (1.5, s(1.5)) and (2.5, s(2.5)) on the graph of s. +

    +
    +
    + + +

    + How do your answers in the preceding questions change if we instead consider the interval + [0.25, 0.75]? [0.5, 1.5]? [1,3]? +

    +
    + + +

    + Interval [0.25, 0.75]: + s(0.25) = 55, s(0.75) = 63, so + AV_{[0.25,0.75]} = \frac{63-55}{0.5} = 16 \text{ ft/sec.} + The secant line through (0.25, 55) with slope 16 is y = 16t + 51. +

    +

    + Interval [0.5, 1.5]: + s(0.5) = 60 and s(1.5) = 60, so + AV_{[0.5,1.5]} = \frac{60-60}{1} = 0 \text{ ft/sec.} + The secant line is the horizontal line y = 60. +

    +

    + Interval [1, 3]: + s(1) = 64, s(3) = 0, so + AV_{[1,3]} = \frac{0-64}{2} = -32 \text{ ft/sec.} + The secant line through (3, 0) with slope -32 is y = -32t + 96. +

    + + + + + + +
    +
    +
    +
    diff --git a/source/previews/PA-changing-combining-D.xml b/source/previews/PA-changing-combining-D.xml new file mode 100644 index 00000000..0ac220a4 --- /dev/null +++ b/source/previews/PA-changing-combining-D.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/source/previews/PA-changing-combining.xml b/source/previews/PA-changing-combining.xml index c96b2d87..f74c065d 100755 --- a/source/previews/PA-changing-combining.xml +++ b/source/previews/PA-changing-combining.xml @@ -1,160 +1,160 @@ - - - - - - - - - - - - - - - - -

    - Consider the functions f and g defined by the following table and the piecewise linear functions p and q defined by the following figure. Assume that the lines in the figure pass through whole number coordinates where they appear to do so; for example, (2,2) lies on the graph of q, and (3,-3) lies on the graph of p. -

    - - - - - - x - - 0 - 1 - 2 - 3 - 4 - - - - f(x) - - 5 - 10 - 15 - 20 - 25 - - - - g(x) - - 9 - 5 - 3 - 2 - 3 - - - -

    ADD ALT TEXT TO THIS IMAGE

    - -
    -

    - - - -

    - Let h(x) = f(x) + g(x). Determine h(3). -

    - - - - -

    - From the table, f(3) = 20 and g(3) = 2, so - h(3) = f(3) + g(3) = 20 + 2 = 22. -

    -
    - - - -

    - Let r(x) = p(x) - q(x). Determine r(-1) exactly. -

    -
    - - - -

    - From the graph, p(-1) = \frac{1}{5} and q(-1) = \frac{7}{2}, so - r(-1) = p(-1) - q(-1) = \frac{1}{5} - \frac{7}{2} = \frac{2}{10} - \frac{35}{10} = -\frac{33}{10}. -

    -
    -
    - - -

    - Are there any values of x for which r(x) = 0? If not, explain why; if so, determine all such values, with justification. -

    -
    - - - -

    - Yes. Setting r(x) = 0 requires p(x) = q(x). - On the relevant interval, p(x) = -\frac{2}{5}x - \frac{1}{5} and - q(x) = 4x + 12, so: - - -\frac{2}{5}x - \frac{1}{5} &= 4x + 12 - -\frac{22}{5}x &= \frac{61}{5} - x &= -\frac{61}{22}. - -

    -
    -
    - - -

    - Let k(x) = f(x) \cdot g(x). Determine k(0). -

    -
    - - - -

    - From the table, f(0) = 5 and g(0) = 9, so - k(0) = f(0) \cdot g(0) = 5 \cdot 9 = 45. -

    -
    -
    - - -

    - Let s(x) = \frac{p(x)}{q(x)}. Determine s(1) exactly. -

    -
    - - - -

    - From the graph, p(1) = -\frac{3}{5} and q(1) = \frac{5}{2}, so - s(1) = \frac{p(1)}{q(1)} = \frac{-3/5}{5/2} = -\frac{3}{5} \cdot \frac{2}{5} = -\frac{6}{25}. -

    -
    -
    - - -

    - Are there any values of x in the interval -4 \le x \le 4 for which s(x) is not defined? If not, explain why; if so, determine all such values, with justification. -

    -
    - - - -

    - Yes: s(x) is undefined wherever q(x) = 0. - From the graph, q(-3) = 0, so s(-3) is undefined. -

    -
    -
    -
    -
    + + + + + + + + + + + + + + + + +

    + Consider the functions f and g defined by the following table and the piecewise linear functions p and q defined by the following figure. Assume that the lines in the figure pass through whole number coordinates where they appear to do so; for example, (2,2) lies on the graph of q, and (3,-3) lies on the graph of p. +

    + + + + + + x + + 0 + 1 + 2 + 3 + 4 + + + + f(x) + + 5 + 10 + 15 + 20 + 25 + + + + g(x) + + 9 + 5 + 3 + 2 + 3 + + + +

    ADD ALT TEXT TO THIS IMAGE

    + +
    +

    + + + +

    + Let h(x) = f(x) + g(x). Determine h(3). +

    + + + +

    + From the table, f(3) = 20 and g(3) = 2, so + h(3) = f(3) + g(3) = 20 + 2 = 22. +

    +
    + + + +

    + Let r(x) = p(x) - q(x). Determine r(-1) exactly. +

    +
    + + +

    + From the graph, p(-1) = \frac{1}{5} and q(-1) = \frac{7}{2}, so + r(-1) = p(-1) - q(-1) = \frac{1}{5} - \frac{7}{2} = \frac{2}{10} - \frac{35}{10} = -\frac{33}{10}. +

    +
    +
    + + +

    + Are there any values of x for which r(x) = 0? If not, explain why; if so, determine all such values, with justification. +

    +
    + + +

    + Yes. Setting r(x) = 0 requires p(x) = q(x). + On the relevant interval, p(x) = -\frac{2}{5}x - \frac{1}{5} and + q(x) = 4x + 12, so: + + -\frac{2}{5}x - \frac{1}{5} &= 4x + 12 + -\frac{22}{5}x &= \frac{61}{5} + x &= -\frac{61}{22}. + +

    +
    +
    + + +

    + Let k(x) = f(x) \cdot g(x). Determine k(0). +

    +
    + + +

    + From the table, f(0) = 5 and g(0) = 9, so + k(0) = f(0) \cdot g(0) = 5 \cdot 9 = 45. +

    +
    +
    + + +

    + Let s(x) = \frac{p(x)}{q(x)}. Determine s(1) exactly. +

    +
    + + +

    + From the graph, p(1) = -\frac{3}{5} and q(1) = \frac{5}{2}, so + s(1) = \frac{p(1)}{q(1)} = \frac{-3/5}{5/2} = -\frac{3}{5} \cdot \frac{2}{5} = -\frac{6}{25}. +

    +
    +
    + + +

    + Are there any values of x in the interval -4 \le x \le 4 for which s(x) is not defined? If not, explain why; if so, determine all such values, with justification. +

    +
    + + +

    + Yes: s(x) is undefined wherever q(x) = 0. + From the graph, q(-3) = 0, so s(-3) is undefined. +

    +
    +
    +
    +
    diff --git a/source/previews/PA-changing-composite-D.xml b/source/previews/PA-changing-composite-D.xml new file mode 100644 index 00000000..c4103e2c --- /dev/null +++ b/source/previews/PA-changing-composite-D.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/source/previews/PA-changing-composite.xml b/source/previews/PA-changing-composite.xml index 0408ec83..aded8191 100755 --- a/source/previews/PA-changing-composite.xml +++ b/source/previews/PA-changing-composite.xml @@ -1,87 +1,87 @@ - - - - - - - - - - - - - - - - -

    - Let y = p(x) = 3x - 4 and x = q(t) = t^2 - 1. -

    -

    - - - -

    - Let r(t) = p(q(t)). Determine a formula for r that depends only on t and not on p or q. -

    - - - - -

    - - r(t) &= p(q(t)) = p(t^2 - 1) - &= 3(t^2 - 1) - 4 - &= 3t^2 - 7. - -

    -
    - - - -

    - Review the introductory example with f(x) = x^2 - 1 and g(t) = 3t - 4, which involved functions similar to p and q in part (a). What is the biggest difference between your work in (a) above and in the introductory example? -

    -
    - - - -

    - In the introductory example, the inner function g(t) = 3t-4 is linear - and the outer function f(x) = x^2 - 1 is quadratic. In part (a), the - roles are reversed: the inner function q(t) = t^2-1 is quadratic and the - outer function p(x) = 3x-4 is linear. -

    -
    -
    - - -

    - Let t = s(z) = \frac{1}{z+4} and recall that x = q(t) = t^2 - 1. Determine a formula for x = q(s(z)) that depends only on z. -

    -
    - - - -

    - q(s(z)) = \left(\frac{1}{z+4}\right)^2 - 1 = \frac{1}{(z+4)^2} - 1. -

    -
    -
    - - -

    - Suppose that h(t) = \sqrt{2t^2 + 5}. Determine formulas for two related functions, y = f(x) and x = g(t), so that h(t) = f(g(t)). -

    -
    - - - -

    - One natural decomposition: f(x) = \sqrt{x} and g(t) = 2t^2 + 5, - so that f(g(t)) = \sqrt{2t^2 + 5} = h(t). -

    -
    -
    -
    -
    + + + + + + + + + + + + + + + + +

    + Let y = p(x) = 3x - 4 and x = q(t) = t^2 - 1. +

    +

    + + + +

    + Let r(t) = p(q(t)). Determine a formula for r that depends only on t and not on p or q. +

    + + + +

    + + r(t) &= p(q(t)) = p(t^2 - 1) + &= 3(t^2 - 1) - 4 + &= 3t^2 - 7. + +

    +
    + + + +

    + Review the introductory example with f(x) = x^2 - 1 and g(t) = 3t - 4, which involved functions similar to p and q in part (a). What is the biggest difference between your work in (a) above and in the introductory example? +

    +
    + + +

    + In the introductory example, the inner function g(t) = 3t-4 is linear + and the outer function f(x) = x^2 - 1 is quadratic. In part (a), the + roles are reversed: the inner function q(t) = t^2-1 is quadratic and the + outer function p(x) = 3x-4 is linear. +

    +
    +
    + + +

    + Let t = s(z) = \frac{1}{z+4} and recall that x = q(t) = t^2 - 1. Determine a formula for x = q(s(z)) that depends only on z. +

    +
    + + +

    + q(s(z)) = \left(\frac{1}{z+4}\right)^2 - 1 = \frac{1}{(z+4)^2} - 1. +

    +
    +
    + + +

    + Suppose that h(t) = \sqrt{2t^2 + 5}. Determine formulas for two related functions, y = f(x) and x = g(t), so that h(t) = f(g(t)). +

    +
    + + +

    + One natural decomposition: f(x) = \sqrt{x} and g(t) = 2t^2 + 5, + so that f(g(t)) = \sqrt{2t^2 + 5} = h(t). +

    +
    +
    +
    +
    diff --git a/source/previews/PA-changing-functions-crickets-D.xml b/source/previews/PA-changing-functions-crickets-D.xml new file mode 100644 index 00000000..4b3be293 --- /dev/null +++ b/source/previews/PA-changing-functions-crickets-D.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + ` + + + + + \ No newline at end of file diff --git a/source/previews/PA-changing-functions-crickets.xml b/source/previews/PA-changing-functions-crickets.xml index d915a540..0db0e144 100755 --- a/source/previews/PA-changing-functions-crickets.xml +++ b/source/previews/PA-changing-functions-crickets.xml @@ -1,83 +1,83 @@ - - - - - - - - - - - - - - - - -

    - Use the equation T = 40 + 0.25N that relates the temperature, T, to the number of chirps per minute, N, to respond to the questions below. The equation is also called Dolbear's Law. -

    -

    - - - -

    - If we hear snowy tree crickets chirping at a rate of 92 chirps per minute, what does Dolbear's Law suggest should be the outside temperature? -

    - - - - -

    We seek T when N = 92: T = 40 + 0.25(92) = 63. So the temperature should be 63^\circ F.

    -
    - - - -

    - If the outside temperature is 77^\circ F, how many chirps per minute should we expect to hear? -

    -
    - - - -

    We seek N when T = 77. Solving 77 = 40 + 0.25N gives N = \frac{77 - 40}{0.25} = 148 chirps per minute.

    -
    -
    - - -

    - Is the model valid for determining the number of chirps one should hear when the outside temperature is 35^\circ F? Why or why not? -

    -
    - - - -

    The model is known to be accurate only for temperatures from 50^\circ to 85^\circ F, so 35^\circ F lies outside the valid range and we should not expect reasonable results at this temperature.

    -
    -
    - - -

    - Suppose that in the morning an observer hears 65 chirps per minute, and several hours later hears 75 chirps per minute. How much has the temperature risen between observations? -

    -
    - - - -

    At 65 chirps per minute the temperature is T = 40 + 0.25(65) = 56.25^\circ F, and at 75 chirps per minute the temperature is T = 40 + 0.25(75) = 58.75^\circ F. The temperature has risen by 58.75 - 56.25 = 2.5 degrees Fahrenheit.

    -
    -
    - - -

    - Dolbear's Law is known to be accurate for temperatures from 50^\circ to 85^\circ. What is the fewest number of chirps per minute an observer could expect to hear? the greatest number of chirps per minute? -

    -
    - - - -

    At 50^\circ F we get N = \frac{50 - 40}{0.25} = 40 chirps per minute; at 85^\circ F we get N = \frac{85 - 40}{0.25} = 180 chirps per minute. The fewest expected is 40 and the greatest is 180 chirps per minute.

    -
    -
    -
    -
    + + + + + + + + + + + + + + + + +

    + Use the equation T = 40 + 0.25N that relates the temperature, T, to the number of chirps per minute, N, to respond to the questions below. The equation is also called Dolbear's Law. +

    +

    + + + +

    + If we hear snowy tree crickets chirping at a rate of 92 chirps per minute, what does Dolbear's Law suggest should be the outside temperature? +

    + + + +

    We seek T when N = 92: T = 40 + 0.25(92) = 63. So the temperature should be 63^\circ F.

    +
    + + + +

    + If the outside temperature is 77^\circ F, how many chirps per minute should we expect to hear? +

    +
    + + +

    We seek N when T = 77. Solving 77 = 40 + 0.25N gives N = \frac{77 - 40}{0.25} = 148 chirps per minute.

    +
    +
    + + +

    + Is the model valid for determining the number of chirps one should hear when the outside temperature is 35^\circ F? Why or why not? +

    +
    + + +

    The model is known to be accurate only for temperatures from 50^\circ to 85^\circ F, so 35^\circ F lies outside the valid range and we should not expect reasonable results at this temperature.

    +
    +
    + + +

    + Suppose that in the morning an observer hears 65 chirps per minute, and several hours later hears 75 chirps per minute. How much has the temperature risen between observations? +

    +
    + + +

    At 65 chirps per minute the temperature is T = 40 + 0.25(65) = 56.25^\circ F, and at 75 chirps per minute the temperature is T = 40 + 0.25(75) = 58.75^\circ F. The temperature has risen by 58.75 - 56.25 = 2.5 degrees Fahrenheit.

    +
    +
    + + +

    + Dolbear's Law is known to be accurate for temperatures from 50^\circ to 85^\circ. What is the fewest number of chirps per minute an observer could expect to hear? the greatest number of chirps per minute? +

    +
    + + +

    At 50^\circ F we get N = \frac{50 - 40}{0.25} = 40 chirps per minute; at 85^\circ F we get N = \frac{85 - 40}{0.25} = 180 chirps per minute. The fewest expected is 40 and the greatest is 180 chirps per minute.

    +
    +
    +
    +
    diff --git a/source/previews/PA-changing-inverse-F-C-D.xml b/source/previews/PA-changing-inverse-F-C-D.xml new file mode 100644 index 00000000..87801641 --- /dev/null +++ b/source/previews/PA-changing-inverse-F-C-D.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + ` + + + + + \ No newline at end of file diff --git a/source/previews/PA-changing-inverse-F-C.xml b/source/previews/PA-changing-inverse-F-C.xml index f98707e9..6481f5ee 100755 --- a/source/previews/PA-changing-inverse-F-C.xml +++ b/source/previews/PA-changing-inverse-F-C.xml @@ -1,94 +1,94 @@ - - - - - - - - - - - - - - - - -

    - Recall that F = g(C) = \frac{9}{5}C + 32 is the function that takes Celsius temperature inputs and produces the corresponding Fahrenheit temperature outputs. -

    -

    - - - -

    - Show that it is possible to solve the equation F = \frac{9}{5}C + 32 for C in terms of F and that doing so results in the equation C = \frac{5}{9}(F-32). -

    - - - - -

    - Subtracting 32 from both sides: F - 32 = \frac{9}{5}C. - Multiplying both sides by \frac{5}{9}: - C = \frac{5}{9}(F-32). -

    -
    - - - -

    - Note that the equation C = \frac{5}{9}(F-32) expresses C as a function of F. Call this function h so that C = h(F) = \frac{5}{9}(F-32). -

    -

    - Find the simplest expression that you can for the composite function j(C) = h(g(C)). -

    -
    - - - -

    - - j(C) &= h(g(C)) = \frac{5}{9}\!\left(\frac{9}{5}C + 32 - 32\right) - &= \frac{5}{9} \cdot \frac{9}{5}C = C. - -

    -
    -
    - - -

    - Find the simplest expression that you can for the composite function k(F) = g(h(F)). -

    -
    - - - -

    - - k(F) &= g(h(F)) = \frac{9}{5}\!\left(\frac{5}{9}(F-32)\right) + 32 - &= (F-32) + 32 = F. - -

    -
    -
    - - -

    - Why are the functions j and k so simple? Explain by discussing how the functions g and h process inputs to generate outputs and what happens when we first execute one followed by the other. -

    -
    - - - -

    - The function g converts Celsius to Fahrenheit, and h converts - Fahrenheit back to Celsius. Composing them in either order simply undoes the - conversion: applying both functions in sequence returns the original input. - This is why j(C) = C and k(F) = F — the two functions are - inverses of each other. -

    -
    -
    -
    -
    + + + + + + + + + + + + + + + + +

    + Recall that F = g(C) = \frac{9}{5}C + 32 is the function that takes Celsius temperature inputs and produces the corresponding Fahrenheit temperature outputs. +

    +

    + + + +

    + Show that it is possible to solve the equation F = \frac{9}{5}C + 32 for C in terms of F and that doing so results in the equation C = \frac{5}{9}(F-32). +

    + + + +

    + Subtracting 32 from both sides: F - 32 = \frac{9}{5}C. + Multiplying both sides by \frac{5}{9}: + C = \frac{5}{9}(F-32). +

    +
    + + + +

    + Note that the equation C = \frac{5}{9}(F-32) expresses C as a function of F. Call this function h so that C = h(F) = \frac{5}{9}(F-32). +

    +

    + Find the simplest expression that you can for the composite function j(C) = h(g(C)). +

    +
    + + +

    + + j(C) &= h(g(C)) = \frac{5}{9}\!\left(\frac{9}{5}C + 32 - 32\right) + &= \frac{5}{9} \cdot \frac{9}{5}C = C. + +

    +
    +
    + + +

    + Find the simplest expression that you can for the composite function k(F) = g(h(F)). +

    +
    + + +

    + + k(F) &= g(h(F)) = \frac{9}{5}\!\left(\frac{5}{9}(F-32)\right) + 32 + &= (F-32) + 32 = F. + +

    +
    +
    + + +

    + Why are the functions j and k so simple? Explain by discussing how the functions g and h process inputs to generate outputs and what happens when we first execute one followed by the other. +

    +
    + + +

    + The function g converts Celsius to Fahrenheit, and h converts + Fahrenheit back to Celsius. Composing them in either order simply undoes the + conversion: applying both functions in sequence returns the original input. + This is why j(C) = C and k(F) = F — the two functions are + inverses of each other. +

    +
    +
    +
    +
    diff --git a/source/previews/PA-changing-linear-3-ex-D.xml b/source/previews/PA-changing-linear-3-ex-D.xml new file mode 100644 index 00000000..432454a8 --- /dev/null +++ b/source/previews/PA-changing-linear-3-ex-D.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + ` + + + + + \ No newline at end of file diff --git a/source/previews/PA-changing-linear-3-ex.xml b/source/previews/PA-changing-linear-3-ex.xml index 1c1d1325..86ef5601 100755 --- a/source/previews/PA-changing-linear-3-ex.xml +++ b/source/previews/PA-changing-linear-3-ex.xml @@ -1,203 +1,203 @@ - - - - - - - - - - - - - - - - -

    - - - -

    - Let y = f(x) = 7 - 3x. Determine AV_{[-3,-1]}, AV_{[2,5]}, and AV_{[4,10]} for the function f. -

    - - - - -

    - AV_{[-3,-1]} = \frac{f(-1)-f(-3)}{-1-(-3)} = \frac{10-16}{2} = -3, - AV_{[2,5]} = \frac{f(5)-f(2)}{5-2} = \frac{-8-1}{3} = -3, - AV_{[4,10]} = \frac{f(10)-f(4)}{10-4} = \frac{-23-(-5)}{6} = -3. - All three average rates of change equal -3. -

    -
    - - - -

    - Let y = g(x) be given by the data in the following table. -

    - - - - - x - - - -5 - - - -4 - - - -3 - - - -2 - - - -1 - - - 0 - - - 1 - - - 2 - - - 3 - - - 4 - - - 5 - - - - - g(x) - - - -2.75 - - - -2.25 - - - -1.75 - - - -1.25 - - - -0.75 - - - -0.25 - - - 0.25 - - - 0.75 - - - 1.25 - - - 1.75 - - - 2.25 - - - - -

    - Determine AV_{[-5,-2]}, AV_{[-1,1]}, and AV_{[0,4]} for the function g. -

    -
    - - - -

    - Reading values from the table: - AV_{[-5,-2]} = \frac{g(-2)-g(-5)}{-2-(-5)} = \frac{-1.25-(-2.75)}{3} = \frac{1.5}{3} = 0.5, - AV_{[-1,1]} = \frac{g(1)-g(-1)}{1-(-1)} = \frac{0.25-(-0.75)}{2} = \frac{1}{2} = 0.5, - AV_{[0,4]} = \frac{g(4)-g(0)}{4-0} = \frac{1.75-(-0.25)}{4} = \frac{2}{4} = 0.5. - All three average rates of change equal 0.5. -

    -
    -
    - - -

    - Consider the function y = h(x) defined by the graph in the following figure. -

    - -

    ADD ALT TEXT TO THIS IMAGE

    - -

    - Determine AV_{[-5,-2]}, AV_{[-1,1]}, and AV_{[0,4]} for the function h. -

    -
    - - - -

    - Reading values from the graph: - AV_{[-5,-2]} = \frac{h(-2)-h(-5)}{-2-(-5)} = \frac{3-4}{3} = -\frac{1}{3}, - AV_{[-1,1]} = \frac{h(1)-h(-1)}{1-(-1)} = \frac{2-\frac{8}{3}}{2} = -\frac{1}{3}, - AV_{[0,4]} = \frac{h(4)-h(0)}{4-0} = \frac{1-\frac{7}{3}}{4} = -\frac{1}{3}. - All three average rates of change equal -\frac{1}{3}. -

    -
    -
    - - -

    - What do all three examples above have in common? How do they differ? -

    -
    - - - -

    - All three functions have a constant average rate of change: the average rate of - change is the same regardless of which interval is chosen. They differ in their - specific rate of change (-3, 0.5, and -\frac{1}{3} respectively) - and in how they were presented (formula, table, graph). -

    -
    -
    - - -

    - For the function y = f(x) = 7 - 3x from (a), find the simplest expression you can for - - AV_{[a,b]} = \frac{f(b)-f(a)}{b-a} - - where a \ne b. -

    -
    - - - -

    - - AV_{[a,b]} &= \frac{f(b)-f(a)}{b-a} = \frac{(7-3b)-(7-3a)}{b-a} - &= \frac{3a-3b}{b-a} = \frac{3(a-b)}{b-a} = -3. - - For any a \ne b, AV_{[a,b]} = -3. -

    -
    -
    -
    -
    + + + + + + + + + + + + + + + + +

    + + + +

    + Let y = f(x) = 7 - 3x. Determine AV_{[-3,-1]}, AV_{[2,5]}, and AV_{[4,10]} for the function f. +

    + + + +

    + AV_{[-3,-1]} = \frac{f(-1)-f(-3)}{-1-(-3)} = \frac{10-16}{2} = -3, + AV_{[2,5]} = \frac{f(5)-f(2)}{5-2} = \frac{-8-1}{3} = -3, + AV_{[4,10]} = \frac{f(10)-f(4)}{10-4} = \frac{-23-(-5)}{6} = -3. + All three average rates of change equal -3. +

    +
    + + + +

    + Let y = g(x) be given by the data in the following table. +

    + + + + + x + + + -5 + + + -4 + + + -3 + + + -2 + + + -1 + + + 0 + + + 1 + + + 2 + + + 3 + + + 4 + + + 5 + + + + + g(x) + + + -2.75 + + + -2.25 + + + -1.75 + + + -1.25 + + + -0.75 + + + -0.25 + + + 0.25 + + + 0.75 + + + 1.25 + + + 1.75 + + + 2.25 + + + + +

    + Determine AV_{[-5,-2]}, AV_{[-1,1]}, and AV_{[0,4]} for the function g. +

    +
    + + +

    + Reading values from the table: + AV_{[-5,-2]} = \frac{g(-2)-g(-5)}{-2-(-5)} = \frac{-1.25-(-2.75)}{3} = \frac{1.5}{3} = 0.5, + AV_{[-1,1]} = \frac{g(1)-g(-1)}{1-(-1)} = \frac{0.25-(-0.75)}{2} = \frac{1}{2} = 0.5, + AV_{[0,4]} = \frac{g(4)-g(0)}{4-0} = \frac{1.75-(-0.25)}{4} = \frac{2}{4} = 0.5. + All three average rates of change equal 0.5. +

    +
    +
    + + +

    + Consider the function y = h(x) defined by the graph in the following figure. +

    + +

    ADD ALT TEXT TO THIS IMAGE

    + +

    + Determine AV_{[-5,-2]}, AV_{[-1,1]}, and AV_{[0,4]} for the function h. +

    +
    + + +

    + Reading values from the graph: + AV_{[-5,-2]} = \frac{h(-2)-h(-5)}{-2-(-5)} = \frac{3-4}{3} = -\frac{1}{3}, + AV_{[-1,1]} = \frac{h(1)-h(-1)}{1-(-1)} = \frac{2-\frac{8}{3}}{2} = -\frac{1}{3}, + AV_{[0,4]} = \frac{h(4)-h(0)}{4-0} = \frac{1-\frac{7}{3}}{4} = -\frac{1}{3}. + All three average rates of change equal -\frac{1}{3}. +

    +
    +
    + + +

    + What do all three examples above have in common? How do they differ? +

    +
    + + +

    + All three functions have a constant average rate of change: the average rate of + change is the same regardless of which interval is chosen. They differ in their + specific rate of change (-3, 0.5, and -\frac{1}{3} respectively) + and in how they were presented (formula, table, graph). +

    +
    +
    + + +

    + For the function y = f(x) = 7 - 3x from (a), find the simplest expression you can for + + AV_{[a,b]} = \frac{f(b)-f(a)}{b-a} + + where a \ne b. +

    +
    + + +

    + + AV_{[a,b]} &= \frac{f(b)-f(a)}{b-a} = \frac{(7-3b)-(7-3a)}{b-a} + &= \frac{3a-3b}{b-a} = \frac{3(a-b)}{b-a} = -3. + + For any a \ne b, AV_{[a,b]} = -3. +

    +
    +
    +
    +
    diff --git a/source/previews/PA-changing-quadratic-D.xml b/source/previews/PA-changing-quadratic-D.xml new file mode 100644 index 00000000..1dc307d8 --- /dev/null +++ b/source/previews/PA-changing-quadratic-D.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + ` + + + + + \ No newline at end of file diff --git a/source/previews/PA-changing-quadratic.xml b/source/previews/PA-changing-quadratic.xml index 3950fa1c..7304d825 100755 --- a/source/previews/PA-changing-quadratic.xml +++ b/source/previews/PA-changing-quadratic.xml @@ -1,192 +1,192 @@ - - - - - - - - - - - - - - - - -

    - A water balloon is tossed vertically from a fifth story window. Its height, h, in meters, at time t, in seconds, is modeled by the function - - h = q(t) = -5t^2 + 20t + 25 - . -

    -

    - - - -

    - Execute appropriate computations to complete both of the following tables: values of the function h on the left, average rates of change for h on the right. -

    - - - - - - t - - - h = q(t) - - - - - 0 - - - q(0) = 25 - - - - - 1 - - - - - - 2 - - - - - - 3 - - - - - - 4 - - - - - - 5 - - - - - - - - - [a,b] - - - AV_{[a,b]} - - - - - [0,1] - - AV_{[0,1]} = 15 m/s - - - - [1,2] - - - - - - [2,3] - - - - - - [3,4] - - - - - - [4,5] - - - - - - - - - - - - - -

    - Function values: q(1) = 40, q(2) = 45, q(3) = 40, - q(4) = 25, q(5) = 0. - Average rates of change: - AV_{[1,2]} = 5 m/s, AV_{[2,3]} = -5 m/s, - AV_{[3,4]} = -15 m/s, AV_{[4,5]} = -25 m/s. -

    -
    - - - -

    - What pattern(s) do you observe in the table of function values and in the table of average rates of change? -

    -
    - - - -

    - The function values increase from 25 to a peak of 45 at t=2, then decrease - back to 0 symmetrically. The average rates of change decrease by exactly 10 m/s - on each successive interval: 15, 5, -5, -15, -25. -

    -
    -
    - - -

    - Explain why h = q(t) is not a linear function. Use the definition of a linear function (that is, referencing average rate of change) in your response. -

    -
    - - - -

    - A linear function must have the same average rate of change on every interval. - But AV_{[0,1]} = 15 \ne 5 = AV_{[1,2]}, so q is not linear. -

    -
    -
    - - -

    - What is the average velocity of the water balloon in the final second before it lands? How does this value compare to the average velocity on the time interval [4.9, 5]? -

    -
    - - - -

    - The average velocity on [4,5] is AV_{[4,5]} = -25 m/s. - On the shorter interval, q(4.9) = -5(4.9)^2 + 20(4.9) + 25 = 2.95, so - AV_{[4.9,5]} = \frac{0 - 2.95}{5 - 4.9} = -29.5 \text{ m/s.} - The balloon is falling faster (greater speed) on [4.9, 5] than over the - full final second [4,5]. -

    -
    -
    -
    -
    + + + + + + + + + + + + + + + + +

    + A water balloon is tossed vertically from a fifth story window. Its height, h, in meters, at time t, in seconds, is modeled by the function + + h = q(t) = -5t^2 + 20t + 25 + . +

    +

    + + + +

    + Execute appropriate computations to complete both of the following tables: values of the function h on the left, average rates of change for h on the right. +

    + + + + + + t + + + h = q(t) + + + + + 0 + + + q(0) = 25 + + + + + 1 + + + + + + 2 + + + + + + 3 + + + + + + 4 + + + + + + 5 + + + + + + + + + [a,b] + + + AV_{[a,b]} + + + + + [0,1] + + AV_{[0,1]} = 15 m/s + + + + [1,2] + + + + + + [2,3] + + + + + + [3,4] + + + + + + [4,5] + + + + + + + + + + + + +

    + Function values: q(1) = 40, q(2) = 45, q(3) = 40, + q(4) = 25, q(5) = 0. + Average rates of change: + AV_{[1,2]} = 5 m/s, AV_{[2,3]} = -5 m/s, + AV_{[3,4]} = -15 m/s, AV_{[4,5]} = -25 m/s. +

    +
    + + + +

    + What pattern(s) do you observe in the table of function values and in the table of average rates of change? +

    +
    + + +

    + The function values increase from 25 to a peak of 45 at t=2, then decrease + back to 0 symmetrically. The average rates of change decrease by exactly 10 m/s + on each successive interval: 15, 5, -5, -15, -25. +

    +
    +
    + + +

    + Explain why h = q(t) is not a linear function. Use the definition of a linear function (that is, referencing average rate of change) in your response. +

    +
    + + +

    + A linear function must have the same average rate of change on every interval. + But AV_{[0,1]} = 15 \ne 5 = AV_{[1,2]}, so q is not linear. +

    +
    +
    + + +

    + What is the average velocity of the water balloon in the final second before it lands? How does this value compare to the average velocity on the time interval [4.9, 5]? +

    +
    + + +

    + The average velocity on [4,5] is AV_{[4,5]} = -25 m/s. + On the shorter interval, q(4.9) = -5(4.9)^2 + 20(4.9) + 25 = 2.95, so + AV_{[4.9,5]} = \frac{0 - 2.95}{5 - 4.9} = -29.5 \text{ m/s.} + The balloon is falling faster (greater speed) on [4.9, 5] than over the + full final second [4,5]. +

    +
    +
    +
    +
    diff --git a/source/previews/PA-changing-tandem-aquarium-D.xml b/source/previews/PA-changing-tandem-aquarium-D.xml new file mode 100644 index 00000000..0ac7ba54 --- /dev/null +++ b/source/previews/PA-changing-tandem-aquarium-D.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + ` + + + + + \ No newline at end of file diff --git a/source/previews/PA-changing-tandem-aquarium.xml b/source/previews/PA-changing-tandem-aquarium.xml index e4332741..6cc3762b 100755 --- a/source/previews/PA-changing-tandem-aquarium.xml +++ b/source/previews/PA-changing-tandem-aquarium.xml @@ -1,83 +1,83 @@ - - - - - - - - - - - - - - - - -

    - Suppose that a rectangular aquarium is being filled with water. The tank is 4 feet long by 2 feet wide by 3 feet high, and the hose that is filling the tank is delivering water at a rate of 0.5 cubic feet per minute. -

    - -
    - The empty aquarium. -

    The empty aquarium.

    -
    -
    -
    - The aquarium, partially filled. -

    The aquarium, partially filled.

    -
    -
    -
    -

    - - - -

    - What are some different quantities that are changing in this scenario? -

    - - - - -

    The depth of the water in the tank, the amount of water in the tank, and time are all changing.

    -
    - - - -

    - After 1 minute has elapsed, how much water is in the tank? At this moment, how deep is the water? -

    -
    - - - -

    Since water is entering at a rate of 0.5 cubic feet per minute, after 1 minute the tank contains 0.5 cubic feet of water. If d is the depth at this time, then 4 \times 2 \times d = 0.5, so d = \frac{1}{16} feet.

    -
    -
    - - -

    - How much water is in the tank and how deep is the water after 2 minutes? After 3 minutes? -

    -
    - - - -

    After 2 minutes the tank contains 1 cubic foot of water, and the depth satisfies 4 \times 2 \times d = 1, giving d = \frac{1}{8} feet. After 3 minutes the tank contains 1.5 cubic feet of water and the depth satisfies 4 \times 2 \times d = 1.5, giving d = \frac{3}{16} feet.

    -
    -
    - - -

    - How long will it take for the tank to be completely full? Why? -

    -
    - - - -

    The tank holds 4 \times 2 \times 3 = 24 cubic feet. Since water enters at 0.5 cubic feet per minute, the volume at time t is 0.5t cubic feet. The tank is completely full when 0.5t = 24, so t = 48 minutes.

    -
    -
    -
    -
    + + + + + + + + + + + + + + + + +

    + Suppose that a rectangular aquarium is being filled with water. The tank is 4 feet long by 2 feet wide by 3 feet high, and the hose that is filling the tank is delivering water at a rate of 0.5 cubic feet per minute. +

    + +
    + The empty aquarium. +

    The empty aquarium.

    +
    +
    +
    + The aquarium, partially filled. +

    The aquarium, partially filled.

    +
    +
    +
    +

    + + + +

    + What are some different quantities that are changing in this scenario? +

    + + + +

    The depth of the water in the tank, the amount of water in the tank, and time are all changing.

    +
    + + + +

    + After 1 minute has elapsed, how much water is in the tank? At this moment, how deep is the water? +

    +
    + + +

    Since water is entering at a rate of 0.5 cubic feet per minute, after 1 minute the tank contains 0.5 cubic feet of water. If d is the depth at this time, then 4 \times 2 \times d = 0.5, so d = \frac{1}{16} feet.

    +
    +
    + + +

    + How much water is in the tank and how deep is the water after 2 minutes? After 3 minutes? +

    +
    + + +

    After 2 minutes the tank contains 1 cubic foot of water, and the depth satisfies 4 \times 2 \times d = 1, giving d = \frac{1}{8} feet. After 3 minutes the tank contains 1.5 cubic feet of water and the depth satisfies 4 \times 2 \times d = 1.5, giving d = \frac{3}{16} feet.

    +
    +
    + + +

    + How long will it take for the tank to be completely full? Why? +

    +
    + + +

    The tank holds 4 \times 2 \times 3 = 24 cubic feet. Since water enters at 0.5 cubic feet per minute, the volume at time t is 0.5t cubic feet. The tank is completely full when 0.5t = 24, so t = 48 minutes.

    +
    +
    +
    +
    diff --git a/source/previews/PA-changing-transformations-quadratic-D.xml b/source/previews/PA-changing-transformations-quadratic-D.xml new file mode 100644 index 00000000..2ce98cbc --- /dev/null +++ b/source/previews/PA-changing-transformations-quadratic-D.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + ` + + + + + \ No newline at end of file diff --git a/source/previews/PA-changing-transformations-quadratic.xml b/source/previews/PA-changing-transformations-quadratic.xml index 552bceda..4ed390d4 100755 --- a/source/previews/PA-changing-transformations-quadratic.xml +++ b/source/previews/PA-changing-transformations-quadratic.xml @@ -1,118 +1,118 @@ - - - - - - - - - - - - - - - - -

    - Open a new Desmos graph and define the function f(x) = x^2. - Adjust the window so that the range is for -4 \le x \le 4 and -10 \le y \le 10. -

    -

    - - - -

    - In Desmos, - define the function g(x) = f(x) + a. (That is, - in Desmos on line 2, enter - g(x) = f(x) + a.) You will get prompted to add a slider for a. - Do so. -

    -

    - Explore by moving the slider for a and write at least one sentence to describe - the effect that changing the value of a has on the graph of g. -

    - - - - -

    - Changing a shifts the graph of f vertically: positive values of - a shift it up, and negative values shift it down. -

    -
    - - - -

    - Next, - define the function h(x) = f(x-b). (That is, - in Desmos on line 4, enter - h(x) = f(x-b) and add the slider for b.) -

    -

    - Move the slider for b and write at least one sentence to describe - the effect that changing the value of b has on the graph of h. -

    -
    - - - -

    - Changing b shifts the graph of f horizontally: positive values of - b shift it to the right, and negative values shift it to the left. -

    -
    -
    - - -

    - Now define the function p(x) = cf(x). (That is, - in Desmos on line 6, enter - p(x) = cf(x) and add the slider for c.) -

    -

    - Move the slider for c and write at least one sentence to describe - the effect that changing the value of c has on the graph of p. - In particular, when c = -1, - how is the graph of p related to the graph of f? -

    -
    - - - -

    - The value c vertically stretches or compresses the graph of f: - when |c| \gt 1 the graph is stretched away from the x-axis, - and when 0 \lt |c| \lt 1 it is compressed toward the x-axis. - When c = -1, the graph of p is a perfect reflection of the graph - of f across the x-axis. -

    -
    -
    - - -

    - Finally, click on the icons next to g, h, and p to temporarily hide them, and go back to Line 1 and change your formula for f. - You can make it whatever you'd like, - but try something like f(x) = x^2 + 2x + 3 or f(x) = x^3 - 1. - Then, investigate with the sliders a, b, - and c to see the effects on g, h, and p (unhiding them appropriately). - Write a couple of sentences to describe your observations of your explorations. -

    -
    - - - -

    - The same three effects hold for any choice of f: adding a shifts - the graph vertically, replacing x with x - b shifts it horizontally, - and multiplying by c stretches, compresses, or reflects it vertically. - The shape of the particular function f changes, but the roles of - a, b, and c remain the same. -

    -
    -
    -
    -
    + + + + + + + + + + + + + + + + +

    + Open a new Desmos graph and define the function f(x) = x^2. + Adjust the window so that the range is for -4 \le x \le 4 and -10 \le y \le 10. +

    +

    + + + +

    + In Desmos, + define the function g(x) = f(x) + a. (That is, + in Desmos on line 2, enter + g(x) = f(x) + a.) You will get prompted to add a slider for a. + Do so. +

    +

    + Explore by moving the slider for a and write at least one sentence to describe + the effect that changing the value of a has on the graph of g. +

    + + + +

    + Changing a shifts the graph of f vertically: positive values of + a shift it up, and negative values shift it down. +

    +
    + + + +

    + Next, + define the function h(x) = f(x-b). (That is, + in Desmos on line 4, enter + h(x) = f(x-b) and add the slider for b.) +

    +

    + Move the slider for b and write at least one sentence to describe + the effect that changing the value of b has on the graph of h. +

    +
    + + +

    + Changing b shifts the graph of f horizontally: positive values of + b shift it to the right, and negative values shift it to the left. +

    +
    +
    + + +

    + Now define the function p(x) = cf(x). (That is, + in Desmos on line 6, enter + p(x) = cf(x) and add the slider for c.) +

    +

    + Move the slider for c and write at least one sentence to describe + the effect that changing the value of c has on the graph of p. + In particular, when c = -1, + how is the graph of p related to the graph of f? +

    +
    + + +

    + The value c vertically stretches or compresses the graph of f: + when |c| \gt 1 the graph is stretched away from the x-axis, + and when 0 \lt |c| \lt 1 it is compressed toward the x-axis. + When c = -1, the graph of p is a perfect reflection of the graph + of f across the x-axis. +

    +
    +
    + + +

    + Finally, click on the icons next to g, h, and p to temporarily hide them, and go back to Line 1 and change your formula for f. + You can make it whatever you'd like, + but try something like f(x) = x^2 + 2x + 3 or f(x) = x^3 - 1. + Then, investigate with the sliders a, b, + and c to see the effects on g, h, and p (unhiding them appropriately). + Write a couple of sentences to describe your observations of your explorations. +

    +
    + + +

    + The same three effects hold for any choice of f: adding a shifts + the graph vertically, replacing x with x - b shifts it horizontally, + and multiplying by c stretches, compresses, or reflects it vertically. + The shape of the particular function f changes, but the roles of + a, b, and c remain the same. +

    +
    +
    +
    +
    diff --git a/source/previews/PA-circular-sine-D.xml b/source/previews/PA-circular-sine-D.xml new file mode 100644 index 00000000..3704b191 --- /dev/null +++ b/source/previews/PA-circular-sine-D.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + ` + + + + + \ No newline at end of file diff --git a/source/previews/PA-circular-sine.xml b/source/previews/PA-circular-sine.xml index 24b9c842..d04fc941 100755 --- a/source/previews/PA-circular-sine.xml +++ b/source/previews/PA-circular-sine.xml @@ -1,231 +1,231 @@ - - - - - - - - - - - - - - - - -

    - If we consider the unit circle with 16 labeled special points in Figure 2.3.1, start at t = 0, and traverse the circle counterclockwise, we may view the height, h, of the traversing point as a function of the angle, t, in radians. From there, we can plot the resulting (t,h) ordered pairs and connect them to generate the circular function pictured in the following figure, which tracks the height of a point traversing the unit circle. -

    - -

    ADD ALT TEXT TO THIS IMAGE

    - -

    - - - -

    - What is the exact value of f( \frac{\pi}{4} )? of f( \frac{\pi}{3} )? -

    - - - - -

    - The exact value of f\left(\frac{\pi}{4}\right) = \frac{\sqrt{2}}{2}, and the exact value of f\left(\frac{\pi}{3}\right) = \frac{\sqrt{3}}{2}. -

    -
    - - - -

    - Complete the following table with the exact values of h that correspond to the stated inputs. -

    - - - - - t - - - 0 - - - \frac{\pi}{6} - - - \frac{\pi}{4} - - - \frac{\pi}{3} - - - \frac{\pi}{2} - - - \frac{2\pi}{3} - - - \frac{3\pi}{4} - - - \frac{5\pi}{6} - - - \pi - - - - - h - - - - - - - - - - - - - - - - - t - - - \pi - - - \frac{7\pi}{6} - - - \frac{5\pi}{4} - - - \frac{4\pi}{3} - - - \frac{3\pi}{2} - - - \frac{5\pi}{3} - - - \frac{7\pi}{4} - - - \frac{11\pi}{6} - - - 2\pi - - - - - h - - - - - - - - - - - - - -
    - - - - - - t - 0 - \frac{\pi}{6} - \frac{\pi}{4} - \frac{\pi}{3} - \frac{\pi}{2} - \frac{2\pi}{3} - \frac{3\pi}{4} - \frac{5\pi}{6} - \pi - - - h - 0 - \frac{1}{2} - \frac{\sqrt{2}}{2} - \frac{\sqrt{3}}{2} - 1 - \frac{\sqrt{3}}{2} - \frac{\sqrt{2}}{2} - \frac{1}{2} - 0 - - - - t - \pi - \frac{7\pi}{6} - \frac{5\pi}{4} - \frac{4\pi}{3} - \frac{3\pi}{2} - \frac{5\pi}{3} - \frac{7\pi}{4} - \frac{11\pi}{6} - 2\pi - - - h - 0 - -\frac{1}{2} - -\frac{\sqrt{2}}{2} - -\frac{\sqrt{3}}{2} - -1 - -\frac{\sqrt{3}}{2} - -\frac{\sqrt{2}}{2} - -\frac{1}{2} - 0 - - - -
    - - -

    - What is the exact value of f( \frac{11\pi}{4} )? of f( \frac{14\pi}{3} )? -

    -
    - - - -

    - The exact value of f\left(\frac{11\pi}{4}\right) is the same as f\left(\frac{3\pi}{4}\right) = \frac{\sqrt{2}}{2}, because of the periodicity of 2\pi. Likewise, f\left(\frac{14\pi}{3}\right) = f\left(\frac{2\pi}{3}\right) = \frac{\sqrt{3}}{2}. -

    -
    -
    - - -

    - Give four different values of t for which f(t) = -\frac{\sqrt{3}}{2}. -

    -
    - - - -

    - f(t) = -\frac{\sqrt{3}}{2} for values t = n(2\pi) + \frac{4\pi}{3} and t = n(2\pi) + \frac{5\pi}{3}, where n is a non-negative integer. Four such values are: t = \frac{4\pi}{3},\ \frac{5\pi}{3},\ \frac{10\pi}{3},\ \frac{11\pi}{3}. -

    -
    -
    -
    -
    + + + + + + + + + + + + + + + + +

    + If we consider the unit circle with 16 labeled special points in Figure 2.3.1, start at t = 0, and traverse the circle counterclockwise, we may view the height, h, of the traversing point as a function of the angle, t, in radians. From there, we can plot the resulting (t,h) ordered pairs and connect them to generate the circular function pictured in the following figure, which tracks the height of a point traversing the unit circle. +

    + +

    ADD ALT TEXT TO THIS IMAGE

    + +

    + + + +

    + What is the exact value of f( \frac{\pi}{4} )? of f( \frac{\pi}{3} )? +

    + + + +

    + The exact value of f\left(\frac{\pi}{4}\right) = \frac{\sqrt{2}}{2}, and the exact value of f\left(\frac{\pi}{3}\right) = \frac{\sqrt{3}}{2}. +

    +
    + + + +

    + Complete the following table with the exact values of h that correspond to the stated inputs. +

    + + + + + t + + + 0 + + + \frac{\pi}{6} + + + \frac{\pi}{4} + + + \frac{\pi}{3} + + + \frac{\pi}{2} + + + \frac{2\pi}{3} + + + \frac{3\pi}{4} + + + \frac{5\pi}{6} + + + \pi + + + + + h + + + + + + + + + + + + + + + + + t + + + \pi + + + \frac{7\pi}{6} + + + \frac{5\pi}{4} + + + \frac{4\pi}{3} + + + \frac{3\pi}{2} + + + \frac{5\pi}{3} + + + \frac{7\pi}{4} + + + \frac{11\pi}{6} + + + 2\pi + + + + + h + + + + + + + + + + + + + +
    + + + + + t + 0 + \frac{\pi}{6} + \frac{\pi}{4} + \frac{\pi}{3} + \frac{\pi}{2} + \frac{2\pi}{3} + \frac{3\pi}{4} + \frac{5\pi}{6} + \pi + + + h + 0 + \frac{1}{2} + \frac{\sqrt{2}}{2} + \frac{\sqrt{3}}{2} + 1 + \frac{\sqrt{3}}{2} + \frac{\sqrt{2}}{2} + \frac{1}{2} + 0 + + + + t + \pi + \frac{7\pi}{6} + \frac{5\pi}{4} + \frac{4\pi}{3} + \frac{3\pi}{2} + \frac{5\pi}{3} + \frac{7\pi}{4} + \frac{11\pi}{6} + 2\pi + + + h + 0 + -\frac{1}{2} + -\frac{\sqrt{2}}{2} + -\frac{\sqrt{3}}{2} + -1 + -\frac{\sqrt{3}}{2} + -\frac{\sqrt{2}}{2} + -\frac{1}{2} + 0 + + + +
    + + +

    + What is the exact value of f( \frac{11\pi}{4} )? of f( \frac{14\pi}{3} )? +

    +
    + + +

    + The exact value of f\left(\frac{11\pi}{4}\right) is the same as f\left(\frac{3\pi}{4}\right) = \frac{\sqrt{2}}{2}, because of the periodicity of 2\pi. Likewise, f\left(\frac{14\pi}{3}\right) = f\left(\frac{2\pi}{3}\right) = \frac{\sqrt{3}}{2}. +

    +
    +
    + + +

    + Give four different values of t for which f(t) = -\frac{\sqrt{3}}{2}. +

    +
    + + +

    + f(t) = -\frac{\sqrt{3}}{2} for values t = n(2\pi) + \frac{4\pi}{3} and t = n(2\pi) + \frac{5\pi}{3}, where n is a non-negative integer. Four such values are: t = \frac{4\pi}{3},\ \frac{5\pi}{3},\ \frac{10\pi}{3},\ \frac{11\pi}{3}. +

    +
    +
    +
    +
    diff --git a/source/previews/PA-circular-sinusoidal-D.xml b/source/previews/PA-circular-sinusoidal-D.xml new file mode 100644 index 00000000..170d560e --- /dev/null +++ b/source/previews/PA-circular-sinusoidal-D.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + ` + + + + + \ No newline at end of file diff --git a/source/previews/PA-circular-sinusoidal.xml b/source/previews/PA-circular-sinusoidal.xml index dbe7876a..fdd568e3 100755 --- a/source/previews/PA-circular-sinusoidal.xml +++ b/source/previews/PA-circular-sinusoidal.xml @@ -1,75 +1,75 @@ - - - - - - - - - - - - - - - - -

    - Let f(t) = \cos(t). First, answer all of the questions below without using Desmos; - then use Desmos to confirm your conjectures. For each prompt, describe the graphs of g and h as transformations of f and, in addition, state the amplitude, midline, and period of both g and h. -

    -

    - - - -

    g(t) = 3\cos(t) and h(t) = -\frac{1}{4}\cos(t)

    - - - - -

    - g(t) is a vertical stretch of f by a factor of 3, with amplitude 3, midline y=0, and period 2\pi. h(t) is a vertical shrink by a factor of \frac{1}{4} combined with a reflection over the x-axis, with amplitude \frac{1}{4}, midline y=0, and period 2\pi. -

    -
    - - - -

    g(t) = \cos(t-\pi) and h(t) = \cos\left(t+ \frac{\pi}{2}\right)

    -
    - - - -

    - g(t) is a horizontal translation of f by \pi units to the right (equivalently, a reflection over the x-axis due to periodicity), with amplitude 1, midline y=0, and period 2\pi. h(t) is a horizontal translation \frac{\pi}{2} units to the left, with amplitude 1, midline y=0, and period 2\pi. -

    -
    -
    - - -

    g(t) = \cos(t)+4 and h(t) = \cos\left(t\right)-2

    -
    - - - -

    - g(t) is a vertical translation of f by 4 units up, with amplitude 1, midline y=4, and period 2\pi. h(t) is a vertical translation 2 units down, with amplitude 1, midline y=-2, and period 2\pi. -

    -
    -
    - - -

    g(t) = 3\cos(t-\pi)+4 and h(t) = -\frac{1}{4}\cos\left(t+ \frac{\pi}{2}\right)-2

    -
    - - - -

    - g(t) is a vertical stretch by a factor of 3, followed by a horizontal shift \pi units to the right, and a vertical shift 4 units up. Due to the periodicity, it is also accurate to say that g(t) is reflected over the x-axis, stretched by a factor of 3, and shifted vertically up 4 units. g(t) has amplitude 3, midline y=4, and period 2\pi. -

    -

    - h(t) is a reflection over the x-axis, followed by a vertical shrink by a factor of \frac{1}{4}, then a horizontal shift \frac{\pi}{2} units to the left, and a vertical shift 2 units down. Due to the periodicity, it is also accurate to say that h(t) is shifted \frac{\pi}{2} units to the right, shrunk by a factor of \frac{1}{4}, and shifted 2 units down. h(t) has amplitude \frac{1}{4}, midline y=-2, and period 2\pi. -

    -
    -
    -
    -
    + + + + + + + + + + + + + + + + +

    + Let f(t) = \cos(t). First, answer all of the questions below without using Desmos; + then use Desmos to confirm your conjectures. For each prompt, describe the graphs of g and h as transformations of f and, in addition, state the amplitude, midline, and period of both g and h. +

    +

    + + + +

    g(t) = 3\cos(t) and h(t) = -\frac{1}{4}\cos(t)

    + + + +

    + g(t) is a vertical stretch of f by a factor of 3, with amplitude 3, midline y=0, and period 2\pi. h(t) is a vertical shrink by a factor of \frac{1}{4} combined with a reflection over the x-axis, with amplitude \frac{1}{4}, midline y=0, and period 2\pi. +

    +
    + + + +

    g(t) = \cos(t-\pi) and h(t) = \cos\left(t+ \frac{\pi}{2}\right)

    +
    + + +

    + g(t) is a horizontal translation of f by \pi units to the right (equivalently, a reflection over the x-axis due to periodicity), with amplitude 1, midline y=0, and period 2\pi. h(t) is a horizontal translation \frac{\pi}{2} units to the left, with amplitude 1, midline y=0, and period 2\pi. +

    +
    +
    + + +

    g(t) = \cos(t)+4 and h(t) = \cos\left(t\right)-2

    +
    + + +

    + g(t) is a vertical translation of f by 4 units up, with amplitude 1, midline y=4, and period 2\pi. h(t) is a vertical translation 2 units down, with amplitude 1, midline y=-2, and period 2\pi. +

    +
    +
    + + +

    g(t) = 3\cos(t-\pi)+4 and h(t) = -\frac{1}{4}\cos\left(t+ \frac{\pi}{2}\right)-2

    +
    + + +

    + g(t) is a vertical stretch by a factor of 3, followed by a horizontal shift \pi units to the right, and a vertical shift 4 units up. Due to the periodicity, it is also accurate to say that g(t) is reflected over the x-axis, stretched by a factor of 3, and shifted vertically up 4 units. g(t) has amplitude 3, midline y=4, and period 2\pi. +

    +

    + h(t) is a reflection over the x-axis, followed by a vertical shrink by a factor of \frac{1}{4}, then a horizontal shift \frac{\pi}{2} units to the left, and a vertical shift 2 units down. Due to the periodicity, it is also accurate to say that h(t) is shifted \frac{\pi}{2} units to the right, shrunk by a factor of \frac{1}{4}, and shifted 2 units down. h(t) has amplitude \frac{1}{4}, midline y=-2, and period 2\pi. +

    +
    +
    +
    +
    diff --git a/source/previews/PA-circular-traversing-D.xml b/source/previews/PA-circular-traversing-D.xml new file mode 100644 index 00000000..a44dbe07 --- /dev/null +++ b/source/previews/PA-circular-traversing-D.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + ` + + + + + \ No newline at end of file diff --git a/source/previews/PA-circular-traversing.xml b/source/previews/PA-circular-traversing.xml index cd5abd5c..cd577013 100755 --- a/source/previews/PA-circular-traversing.xml +++ b/source/previews/PA-circular-traversing.xml @@ -1,110 +1,110 @@ - - - - - - - - - - - - - - - - -

    - In the context of the ferris wheel pictured in Figure 2.1.1 in the text, assume that the height, h, of the moving point (the cab in which you are riding), and the distance, d, that the point has traveled around the circumference of the ferris wheel are both measured in meters. -

    -

    - Further, assume that the circumference of the ferris wheel is 150 meters. In addition, suppose that after getting in your cab at the lowest point on the wheel, you traverse the full circle several times. -

    -

    - - - -

    - Recall that the circumference, C, of a circle is connected to the circle's radius, r, by the formula C = 2\pi r. What is the radius of the ferris wheel? How high is the highest point on the ferris wheel? -

    - - - - -

    - The circumference 2\pi r of the Ferris wheel is 150 meters, so the radius is \frac{150}{2\pi} = \frac{75}{\pi} meters, or about 23.9 meters. The highest point on the Ferris wheel is twice the radius plus however far the wheel begins off the ground at the bottom. If we neglect this starting height, the height of this particular Ferris wheel is \frac{150}{\pi} meters, or about 47.7 meters. -

    -
    - - - -

    - How high is the cab after it has traveled 1/4 of the circumference of the circle? -

    -
    - - - -

    - The cab starts at the bottom, at a height of zero. At 1/4 of the distance around, the cab is at the same height as the hub of the wheel, so it is one radius up: \frac{75}{\pi} meters. -

    -
    -
    - - -

    - How much distance along the circle has the cab traversed at the moment it first reaches a height of \frac{150}{\pi} \approx 47.75 meters? -

    -
    - - - -

    - The highest point of the Ferris wheel is at \frac{150}{\pi} meters. There is only one point on the Ferris wheel that is this high. The first time the cab reaches it is when the cab has traveled one-half the way around the wheel, a distance of 75 meters. -

    -
    -
    - - -

    - Can h be thought of as a function of d? Why or why not? -

    -
    - - - -

    - Yes. In this scenario, the height h may be thought of as a function of distance traveled d because given a distance it is possible to determine the (singular) height of the cab. -

    -
    -
    - - -

    - Can d be thought of as a function of h? Why or why not? -

    -
    - - - -

    - No. The distance d traveled is not a function of height h because the Ferris wheel may make multiple turns so that there are multiple distances associated with a given height. -

    -
    -
    - - -

    - Why do you think the curve shown at right in Figure 2.1.1 has the shape that it does? Write several sentences to explain. -

    -
    - - - -

    - The curve has the shape that it does because the height of the Ferris wheel changes slowly at the bottom and at the top, where much of the distance travelled is horizontal instead of vertical. The function describing height in terms of distance is a sine function. -

    -
    -
    -
    -
    + + + + + + + + + + + + + + + + +

    + In the context of the ferris wheel pictured in Figure 2.1.1 in the text, assume that the height, h, of the moving point (the cab in which you are riding), and the distance, d, that the point has traveled around the circumference of the ferris wheel are both measured in meters. +

    +

    + Further, assume that the circumference of the ferris wheel is 150 meters. In addition, suppose that after getting in your cab at the lowest point on the wheel, you traverse the full circle several times. +

    +

    + + + +

    + Recall that the circumference, C, of a circle is connected to the circle's radius, r, by the formula C = 2\pi r. What is the radius of the ferris wheel? How high is the highest point on the ferris wheel? +

    + + + +

    + The circumference 2\pi r of the Ferris wheel is 150 meters, so the radius is \frac{150}{2\pi} = \frac{75}{\pi} meters, or about 23.9 meters. The highest point on the Ferris wheel is twice the radius plus however far the wheel begins off the ground at the bottom. If we neglect this starting height, the height of this particular Ferris wheel is \frac{150}{\pi} meters, or about 47.7 meters. +

    +
    + + + +

    + How high is the cab after it has traveled 1/4 of the circumference of the circle? +

    +
    + + +

    + The cab starts at the bottom, at a height of zero. At 1/4 of the distance around, the cab is at the same height as the hub of the wheel, so it is one radius up: \frac{75}{\pi} meters. +

    +
    +
    + + +

    + How much distance along the circle has the cab traversed at the moment it first reaches a height of \frac{150}{\pi} \approx 47.75 meters? +

    +
    + + +

    + The highest point of the Ferris wheel is at \frac{150}{\pi} meters. There is only one point on the Ferris wheel that is this high. The first time the cab reaches it is when the cab has traveled one-half the way around the wheel, a distance of 75 meters. +

    +
    +
    + + +

    + Can h be thought of as a function of d? Why or why not? +

    +
    + + +

    + Yes. In this scenario, the height h may be thought of as a function of distance traveled d because given a distance it is possible to determine the (singular) height of the cab. +

    +
    +
    + + +

    + Can d be thought of as a function of h? Why or why not? +

    +
    + + +

    + No. The distance d traveled is not a function of height h because the Ferris wheel may make multiple turns so that there are multiple distances associated with a given height. +

    +
    +
    + + +

    + Why do you think the curve shown at right in Figure 2.1.1 has the shape that it does? Write several sentences to explain. +

    +
    + + +

    + The curve has the shape that it does because the height of the Ferris wheel changes slowly at the bottom and at the top, where much of the distance travelled is horizontal instead of vertical. The function describing height in terms of distance is a sine function. +

    +
    +
    +
    +
    diff --git a/source/previews/PA-circular-unit-circle-D.xml b/source/previews/PA-circular-unit-circle-D.xml new file mode 100644 index 00000000..e79270d7 --- /dev/null +++ b/source/previews/PA-circular-unit-circle-D.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + ` + + + + + \ No newline at end of file diff --git a/source/previews/PA-circular-unit-circle.xml b/source/previews/PA-circular-unit-circle.xml index 8651dfa1..697c3625 100755 --- a/source/previews/PA-circular-unit-circle.xml +++ b/source/previews/PA-circular-unit-circle.xml @@ -1,92 +1,92 @@ - - - - - - - - - - - - - - - - -

    - In the following figure there are 24 equally spaced points on the unit circle. Since the circumference of the unit circle is 2\pi, each of the points is \frac{1}{24} \cdot 2\pi = \frac{\pi}{12} units apart (traveled along the circle). Thus, - the first point counterclockwise from (1,0) corresponds to the distance - t = \frac{\pi}{12} traveled along the unit circle. The second point is twice as far, and thus t = 2 \cdot \frac{\pi}{12} = \frac{\pi}{6} units along the circle away from (1,0). -

    - -

    ADD ALT TEXT TO THIS IMAGE

    - -

    - - - -

    - Label each of the subsequent points on the unit circle with the exact distance they lie counter-clockwise away from (1,0); write each fraction in lowest terms. -

    - - - - - - - - - -

    - Which distance along the unit circle corresponds to \frac{1}{4} of a full rotation around? to \frac{5}{8} of a full rotation? -

    -
    - - - -

    - One-quarter of a full rotation corresponds to a distance of \frac{\pi}{2}. Five-eighths of a full rotation corresponds to a distance of \frac{5\pi}{4}. -

    -
    -
    - - -

    - One way to measure angles is connected to the arc length along a circle. For an angle whose vertex is at (0,0) in the unit circle, we say the angle's measure is 1 radianradian provided that the angle intercepts an arc of the circle that is 1 unit in length, as pictured in the following figure. Note particularly that an angle measuring 1 radian intercepts an arc of the same length as the circle's radius. -

    - - -

    ADD ALT TEXT TO THIS IMAGE

    - -
    -

    - Suppose that \alpha and \beta are angles with respective radian measures \alpha = \frac{\pi}{3} and \beta = \frac{3\pi}{4}. Assuming that we view \alpha and \beta as having their vertex at (0,0) and one side along the positive x-axis, sketch the angles \alpha and \beta on the unit circle in part (a). -

    -
    - - - - - -
    - - -

    - What is the radian measure that corresponds to a 90^\circ angle? -

    -
    - - - -

    - 90^\circ corresponds to \frac{\pi}{2} radians. -

    -
    -
    -
    -
    + + + + + + + + + + + + + + + + +

    + In the following figure there are 24 equally spaced points on the unit circle. Since the circumference of the unit circle is 2\pi, each of the points is \frac{1}{24} \cdot 2\pi = \frac{\pi}{12} units apart (traveled along the circle). Thus, + the first point counterclockwise from (1,0) corresponds to the distance + t = \frac{\pi}{12} traveled along the unit circle. The second point is twice as far, and thus t = 2 \cdot \frac{\pi}{12} = \frac{\pi}{6} units along the circle away from (1,0). +

    + +

    ADD ALT TEXT TO THIS IMAGE

    + +

    + + + +

    + Label each of the subsequent points on the unit circle with the exact distance they lie counter-clockwise away from (1,0); write each fraction in lowest terms. +

    + + + + + + + + +

    + Which distance along the unit circle corresponds to \frac{1}{4} of a full rotation around? to \frac{5}{8} of a full rotation? +

    +
    + + +

    + One-quarter of a full rotation corresponds to a distance of \frac{\pi}{2}. Five-eighths of a full rotation corresponds to a distance of \frac{5\pi}{4}. +

    +
    +
    + + +

    + One way to measure angles is connected to the arc length along a circle. For an angle whose vertex is at (0,0) in the unit circle, we say the angle's measure is 1 radianradian provided that the angle intercepts an arc of the circle that is 1 unit in length, as pictured in the following figure. Note particularly that an angle measuring 1 radian intercepts an arc of the same length as the circle's radius. +

    + + +

    ADD ALT TEXT TO THIS IMAGE

    + +
    +

    + Suppose that \alpha and \beta are angles with respective radian measures \alpha = \frac{\pi}{3} and \beta = \frac{3\pi}{4}. Assuming that we view \alpha and \beta as having their vertex at (0,0) and one side along the positive x-axis, sketch the angles \alpha and \beta on the unit circle in part (a). +

    +
    + + + + +
    + + +

    + What is the radian measure that corresponds to a 90^\circ angle? +

    +
    + + +

    + 90^\circ corresponds to \frac{\pi}{2} radians. +

    +
    +
    +
    +
    diff --git a/source/previews/PA-exp-e-D.xml b/source/previews/PA-exp-e-D.xml new file mode 100644 index 00000000..19ac2b3e --- /dev/null +++ b/source/previews/PA-exp-e-D.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + ` + + + + + \ No newline at end of file diff --git a/source/previews/PA-exp-e.xml b/source/previews/PA-exp-e.xml index 5187420d..4e0fe543 100755 --- a/source/previews/PA-exp-e.xml +++ b/source/previews/PA-exp-e.xml @@ -1,93 +1,93 @@ - - - - - - - - - - - - - - - - -

    - Open a new Desmos worksheet and define the following functions: f(t) = 2^t, g(t) = 3^t, h(t) = (\frac{1}{3})^t, and p(t) = f(kt). After you define p, accept the slider for k, and set the range of the slider to be -2 \le k \le 2. -

    -

    - - - -

    - By experimenting with the value of k, find a value of k so that the graph of p(t) = f(kt) = 2^{kt} appears to align with the graph of g(t) = 3^t. What is the value of k? -

    - - - - -

    - The value of k is approximately k = \ln 3 / \ln 2 \approx 1.585. -

    -
    - - - -

    - Similarly, experiment to find a value of k so that the graph of p(t) = f(kt) = 2^{kt} appears to align with the graph of h(t) = (\frac{1}{3})^t. What is the value of k? -

    -
    - - - -

    - The value of k is approximately k = -\ln 3 / \ln 2 \approx -1.585. -

    -
    -
    - - -

    - For the value of k you determined in (a), compute 2^k. What do you observe? -

    -
    - - - -

    - 2^k = 2^{\ln 3 / \ln 2} = 3. This makes sense because the equation 2^{kt} = 3^t requires 2^k = 3. -

    -
    -
    - - -

    - For the value of k you determined in (b), compute 2^k. What do you observe? -

    -
    - - - -

    - 2^k = 2^{-\ln 3 / \ln 2} = \frac{1}{3}. This makes sense because the equation 2^{kt} = (1/3)^t requires 2^k = 1/3. -

    -
    -
    - - -

    - Given any exponential function of the form b^t, do you think it's possible to find a value of k to that p(t) = f(kt) = 2^{kt} is the same function as b^t? Why or why not? -

    -
    - - - -

    - Yes, it is possible to find a value of k for any exponential function of the form b^t, provided b is a positive number. Setting 2^{kt} = b^t and taking logarithms gives k \ln 2 = \ln b, so k = \dfrac{\ln b}{\ln 2}. -

    -
    -
    -
    -
    + + + + + + + + + + + + + + + + +

    + Open a new Desmos worksheet and define the following functions: f(t) = 2^t, g(t) = 3^t, h(t) = (\frac{1}{3})^t, and p(t) = f(kt). After you define p, accept the slider for k, and set the range of the slider to be -2 \le k \le 2. +

    +

    + + + +

    + By experimenting with the value of k, find a value of k so that the graph of p(t) = f(kt) = 2^{kt} appears to align with the graph of g(t) = 3^t. What is the value of k? +

    + + + +

    + The value of k is approximately k = \ln 3 / \ln 2 \approx 1.585. +

    +
    + + + +

    + Similarly, experiment to find a value of k so that the graph of p(t) = f(kt) = 2^{kt} appears to align with the graph of h(t) = (\frac{1}{3})^t. What is the value of k? +

    +
    + + +

    + The value of k is approximately k = -\ln 3 / \ln 2 \approx -1.585. +

    +
    +
    + + +

    + For the value of k you determined in (a), compute 2^k. What do you observe? +

    +
    + + +

    + 2^k = 2^{\ln 3 / \ln 2} = 3. This makes sense because the equation 2^{kt} = 3^t requires 2^k = 3. +

    +
    +
    + + +

    + For the value of k you determined in (b), compute 2^k. What do you observe? +

    +
    + + +

    + 2^k = 2^{-\ln 3 / \ln 2} = \frac{1}{3}. This makes sense because the equation 2^{kt} = (1/3)^t requires 2^k = 1/3. +

    +
    +
    + + +

    + Given any exponential function of the form b^t, do you think it's possible to find a value of k to that p(t) = f(kt) = 2^{kt} is the same function as b^t? Why or why not? +

    +
    + + +

    + Yes, it is possible to find a value of k for any exponential function of the form b^t, provided b is a positive number. Setting 2^{kt} = b^t and taking logarithms gives k \ln 2 = \ln b, so k = \dfrac{\ln b}{\ln 2}. +

    +
    +
    +
    +
    diff --git a/source/previews/PA-exp-growth-D.xml b/source/previews/PA-exp-growth-D.xml new file mode 100644 index 00000000..7cbdd8f0 --- /dev/null +++ b/source/previews/PA-exp-growth-D.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + ` + + + + + \ No newline at end of file diff --git a/source/previews/PA-exp-growth.xml b/source/previews/PA-exp-growth.xml index 3f9082e4..b8cd345e 100755 --- a/source/previews/PA-exp-growth.xml +++ b/source/previews/PA-exp-growth.xml @@ -1,87 +1,87 @@ - - - - - - - - - - - - - - - - -

    - Suppose that at age 20 you have $20000 and you can choose between one of two ways to use the money: you can invest it in a mutual fund that will, on average, earn 8% interest annually, or you can purchase a new automobile that will, on average, depreciate 12% annually. Let's explore how the $20000 changes over time. -

    -

    - Let I(t) denote the value of the $20000 after t years if it is invested in the mutual fund, and let V(t) denote the value of the automobile t years after it is purchased. -

    -

    - - - -

    - Determine I(0), I(1), I(2), and I(3). -

    - - - - -

    - I(0) = \$20{,}000 \times 1 = \$20{,}000, I(1) = \$20{,}000 \times 1.08 = \$21{,}600, I(2) = (\$20{,}000 \times 1.08) \times 1.08 = \$23{,}328, and I(3) = ((\$20{,}000 \times 1.08) \times 1.08) \times 1.08 = \$25{,}194.24. -

    -
    - - - -

    - Note that if a quantity depreciates 12% annually, after a given year, 88% of the quantity remains. Compute V(0), V(1), V(2), and V(3). -

    -
    - - - -

    - V(0) = \$20{,}000, V(1) = \$20{,}000 \times 0.88 = \$17{,}600, V(2) = (\$20{,}000 \times 0.88) \times 0.88 = \$15{,}488, and V(3) = ((\$20{,}000 \times 0.88) \times 0.88) \times 0.88 = \$13{,}629.44. -

    -
    -
    - - -

    - Based on the patterns in your computations in (a) and (b), determine formulas for I(t) and V(t). -

    -
    - - - -

    - For the appreciating investment of $20,000: I(t) = \$20{,}000 \times 1.08^t, and for the depreciating $20,000 vehicle: V(t) = \$20{,}000 \times 0.88^t. -

    -
    -
    - - -

    - Use Desmos to define I(t) and V(t). Plot each function on the interval 0 \le t \le 20 and record your results on the axes in the figure below, being sure to label the scale on the axes. What trends do you observe in the graphs? How do I(20) and V(20) compare? -

    - -

    ADD ALT TEXT TO THIS IMAGE

    - -
    - - - -

    - The red curve shows the growing value of a $20,000 investment earning 8% interest per year. The blue curve shows the decreasing value of a $20,000 vehicle losing 12% of its value each year. -

    - -
    -
    -
    -
    + + + + + + + + + + + + + + + + +

    + Suppose that at age 20 you have $20000 and you can choose between one of two ways to use the money: you can invest it in a mutual fund that will, on average, earn 8% interest annually, or you can purchase a new automobile that will, on average, depreciate 12% annually. Let's explore how the $20000 changes over time. +

    +

    + Let I(t) denote the value of the $20000 after t years if it is invested in the mutual fund, and let V(t) denote the value of the automobile t years after it is purchased. +

    +

    + + + +

    + Determine I(0), I(1), I(2), and I(3). +

    + + + +

    + I(0) = \$20{,}000 \times 1 = \$20{,}000, I(1) = \$20{,}000 \times 1.08 = \$21{,}600, I(2) = (\$20{,}000 \times 1.08) \times 1.08 = \$23{,}328, and I(3) = ((\$20{,}000 \times 1.08) \times 1.08) \times 1.08 = \$25{,}194.24. +

    +
    + + + +

    + Note that if a quantity depreciates 12% annually, after a given year, 88% of the quantity remains. Compute V(0), V(1), V(2), and V(3). +

    +
    + + +

    + V(0) = \$20{,}000, V(1) = \$20{,}000 \times 0.88 = \$17{,}600, V(2) = (\$20{,}000 \times 0.88) \times 0.88 = \$15{,}488, and V(3) = ((\$20{,}000 \times 0.88) \times 0.88) \times 0.88 = \$13{,}629.44. +

    +
    +
    + + +

    + Based on the patterns in your computations in (a) and (b), determine formulas for I(t) and V(t). +

    +
    + + +

    + For the appreciating investment of $20,000: I(t) = \$20{,}000 \times 1.08^t, and for the depreciating $20,000 vehicle: V(t) = \$20{,}000 \times 0.88^t. +

    +
    +
    + + +

    + Use Desmos to define I(t) and V(t). Plot each function on the interval 0 \le t \le 20 and record your results on the axes in the figure below, being sure to label the scale on the axes. What trends do you observe in the graphs? How do I(20) and V(20) compare? +

    + +

    ADD ALT TEXT TO THIS IMAGE

    + +
    + + +

    + The red curve shows the growing value of a $20,000 investment earning 8% interest per year. The blue curve shows the decreasing value of a $20,000 vehicle losing 12% of its value each year. +

    + +
    +
    +
    +
    diff --git a/source/previews/PA-exp-log-D.xml b/source/previews/PA-exp-log-D.xml new file mode 100644 index 00000000..1e05aa5b --- /dev/null +++ b/source/previews/PA-exp-log-D.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + ` + + + + + \ No newline at end of file diff --git a/source/previews/PA-exp-log-properties-D.xml b/source/previews/PA-exp-log-properties-D.xml new file mode 100644 index 00000000..e455dfa5 --- /dev/null +++ b/source/previews/PA-exp-log-properties-D.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + ` + + + + + \ No newline at end of file diff --git a/source/previews/PA-exp-log-properties.xml b/source/previews/PA-exp-log-properties.xml index 0914aeb4..6c6a9f29 100755 --- a/source/previews/PA-exp-log-properties.xml +++ b/source/previews/PA-exp-log-properties.xml @@ -1,86 +1,86 @@ - - - - - - - - - - - - - - - - -

    - In the following questions, we investigate how \log_{10}(a \cdot b) can be equivalently written in terms of \log_{10}(a) and \log_{10}(b). -

    -

    - - - -

    - Write 10^x \cdot 10^y as 10 raised to a single power. That is, complete the equation - - 10^x \cdot 10^y = 10^{\Box} - - by filling in the box with an appropriate expression involving x and y. -

    - - - - -

    - 10^x \cdot 10^y = 10^{x+y} -

    -
    - - - -

    - What is the simplest possible way to write \log_{10}10^x? What about the simplest equivalent expression for \log_{10}10^y? -

    -
    - - - -

    - \log_{10}10^x = x and \log_{10}10^y = y. -

    -
    -
    - - -

    - Explain why each of the following three equal signs is valid in the sequence of equalities: - \log_{10}(10^x \cdot 10^y) &= \log_{10}(10^{x+y}) &= x+y &= \log_{10}(10^x) + \log_{10}(10^y). -

    -
    - - - -

    - The first equal sign holds because 10^x \cdot 10^y = 10^{x+y} by the rule for multiplying exponentials with the same base. The second equal sign holds because \log_{10}(10^A) = A for any real number A. The third equal sign holds because x = \log_{10}(10^x) and y = \log_{10}(10^y). -

    -
    -
    - - -

    - Suppose that a and b are positive real numbers so we can think of a as 10^x for some real number x and - b as 10^y for some real number y. That is, say that a = 10^x and b = 10^y. What does our work in (c) tell us about - \log_{10}(ab)? -

    -
    - - - -

    - Since a = 10^x and b = 10^y, we have ab = 10^x \cdot 10^y. Our work in (c) shows that \log_{10}(10^x \cdot 10^y) = \log_{10}(10^x) + \log_{10}(10^y). With \log_{10}(10^x) = \log_{10}(a) and \log_{10}(10^y) = \log_{10}(b), it follows that \log_{10}(ab) = \log_{10}(a) + \log_{10}(b). -

    -
    -
    -
    -
    + + + + + + + + + + + + + + + + +

    + In the following questions, we investigate how \log_{10}(a \cdot b) can be equivalently written in terms of \log_{10}(a) and \log_{10}(b). +

    +

    + + + +

    + Write 10^x \cdot 10^y as 10 raised to a single power. That is, complete the equation + + 10^x \cdot 10^y = 10^{\Box} + + by filling in the box with an appropriate expression involving x and y. +

    + + + +

    + 10^x \cdot 10^y = 10^{x+y} +

    +
    + + + +

    + What is the simplest possible way to write \log_{10}10^x? What about the simplest equivalent expression for \log_{10}10^y? +

    +
    + + +

    + \log_{10}10^x = x and \log_{10}10^y = y. +

    +
    +
    + + +

    + Explain why each of the following three equal signs is valid in the sequence of equalities: + \log_{10}(10^x \cdot 10^y) &= \log_{10}(10^{x+y}) &= x+y &= \log_{10}(10^x) + \log_{10}(10^y). +

    +
    + + +

    + The first equal sign holds because 10^x \cdot 10^y = 10^{x+y} by the rule for multiplying exponentials with the same base. The second equal sign holds because \log_{10}(10^A) = A for any real number A. The third equal sign holds because x = \log_{10}(10^x) and y = \log_{10}(10^y). +

    +
    +
    + + +

    + Suppose that a and b are positive real numbers so we can think of a as 10^x for some real number x and + b as 10^y for some real number y. That is, say that a = 10^x and b = 10^y. What does our work in (c) tell us about + \log_{10}(ab)? +

    +
    + + +

    + Since a = 10^x and b = 10^y, we have ab = 10^x \cdot 10^y. Our work in (c) shows that \log_{10}(10^x \cdot 10^y) = \log_{10}(10^x) + \log_{10}(10^y). With \log_{10}(10^x) = \log_{10}(a) and \log_{10}(10^y) = \log_{10}(b), it follows that \log_{10}(ab) = \log_{10}(a) + \log_{10}(b). +

    +
    +
    +
    +
    diff --git a/source/previews/PA-exp-log.xml b/source/previews/PA-exp-log.xml index 2e2263a5..d7d9eed0 100755 --- a/source/previews/PA-exp-log.xml +++ b/source/previews/PA-exp-log.xml @@ -1,226 +1,226 @@ - - - - - - - - - - - - - - - - -

    - Let P(t) be the powers of 10 function, which is given by P(t) = 10^t. -

    -

    - - - -

    - Complete the following table to generate certain values of P. -

    - - - - - t - - -3 - -2 - -1 - 0 - 1 - 2 - 3 - - - - y = P(t) = 10^t - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - t - -3 - -2 - -1 - 0 - 1 - 2 - 3 - - - P(t) = 10^t - 0.001 - 0.01 - 0.1 - 1 - 10 - 100 - 1000 - - - - - - -

    - Why does P have an inverse function? -

    -
    - - - -

    - The function P(t) has an inverse because it is a one-to-one function, where each value of y has only one corresponding value of t. -

    -
    -
    - - -

    - Since P has an inverse function, we know there exists some other function, say L, - such that writing y = P(t) - says the exact same thing as writing t = L(y). In words, where P produces the result of raising 10 to a given power, the function L reverses this process and instead tells us the power to which we need to raise 10, given a desired result. Complete the following table to generate a collection of values of L. -

    - - - - - y - - - 10^{-3} - - - 10^{-2} - - - 10^{-1} - - - 10^{0} - - - 10^{1} - - - 10^{2} - - - 10^{3} - - - - - - - - - - - - - - - L(y) - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - y - 10^{-3} - 10^{-2} - 10^{-1} - 10^{0} - 10^{1} - 10^{2} - 10^{3} - - - - L(y) - -3 - -2 - -1 - 0 - 1 - 2 - 3 - - - -
    - - -

    - What are the domain and range of the function P? What are the domain and range of the function L? -

    -
    - - - -

    - The domain of y = P(t) = 10^t is all real numbers, and the range is all positive real numbers. The domain of t = L(y) is all positive real numbers, and the range is all real numbers. -

    -
    -
    -
    -
    + + + + + + + + + + + + + + + + +

    + Let P(t) be the powers of 10 function, which is given by P(t) = 10^t. +

    +

    + + + +

    + Complete the following table to generate certain values of P. +

    + + + + + t + + -3 + -2 + -1 + 0 + 1 + 2 + 3 + + + + y = P(t) = 10^t + + + + + + + + + + + + + + + + + + + + + + + + + + + + + t + -3 + -2 + -1 + 0 + 1 + 2 + 3 + + + P(t) = 10^t + 0.001 + 0.01 + 0.1 + 1 + 10 + 100 + 1000 + + + + + + +

    + Why does P have an inverse function? +

    +
    + + +

    + The function P(t) has an inverse because it is a one-to-one function, where each value of y has only one corresponding value of t. +

    +
    +
    + + +

    + Since P has an inverse function, we know there exists some other function, say L, + such that writing y = P(t) + says the exact same thing as writing t = L(y). In words, where P produces the result of raising 10 to a given power, the function L reverses this process and instead tells us the power to which we need to raise 10, given a desired result. Complete the following table to generate a collection of values of L. +

    + + + + + y + + + 10^{-3} + + + 10^{-2} + + + 10^{-1} + + + 10^{0} + + + 10^{1} + + + 10^{2} + + + 10^{3} + + + + + + + + + + + + + + + L(y) + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + y + 10^{-3} + 10^{-2} + 10^{-1} + 10^{0} + 10^{1} + 10^{2} + 10^{3} + + + + L(y) + -3 + -2 + -1 + 0 + 1 + 2 + 3 + + + +
    + + +

    + What are the domain and range of the function P? What are the domain and range of the function L? +

    +
    + + +

    + The domain of y = P(t) = 10^t is all real numbers, and the range is all positive real numbers. The domain of t = L(y) is all positive real numbers, and the range is all real numbers. +

    +
    +
    +
    +
    diff --git a/source/previews/PA-exp-modeling-D.xml b/source/previews/PA-exp-modeling-D.xml new file mode 100644 index 00000000..dd152af0 --- /dev/null +++ b/source/previews/PA-exp-modeling-D.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + ` + + + + + \ No newline at end of file diff --git a/source/previews/PA-exp-modeling.xml b/source/previews/PA-exp-modeling.xml index c5b9b7f1..65467ff9 100755 --- a/source/previews/PA-exp-modeling.xml +++ b/source/previews/PA-exp-modeling.xml @@ -1,90 +1,90 @@ - - - - - - - - - - - - - - - - -

    - In Desmos, define - g(t) = ab^t+c and accept the prompt for sliders for a, b, and c. - Edit the sliders so that a has values from a = 5 to a = 50, - b has values from b = 0.7 to b = 1.3, and - c has values from c = -5 to c = 5 - (each with a step-size of 0.01). - In addition, in Desmos - let P = (0, g(0)) and check the box to show the label. - Finally, zoom out so that the window shows an interval of t-values from -30 \le t \le 30. -

    -

    - - - -

    - Set b = 1.1 and explore the effects of changing the values of a and c. Write several sentences to summarize your observations. -

    - - - - -

    - When b = 1.1, changing the value of a where 5 \le a \le 50 causes a vertical stretch effect. The coefficient c causes a vertical shift. -

    -
    - - - -

    - Follow the directions for (a) again, this time with b = 0.9

    -
    - - - -

    - The same vertical stretch and vertical shift behavior is apparent when b = 0.9. -

    -
    -
    - - -

    - Set a = 5 and c = 4. - Explore the effects of changing the value of b; - be sure to include values of b both less than and greater than 1. - Write several sentences to summarize your observations. -

    -
    - - - -

    - When a = 5 and c = 4, the line rises to the left and flattens to the right when b \lt 1, the line is flat when b = 1, and the line flattens to the left and rises to the right when b \gt 1. -

    -
    -
    - - -

    - When 0 \lt b \lt 1, - what happens to the graph of g when we consider positive t-values that get larger and larger? -

    -
    - - - -

    - When 0 \lt b \lt 1, the graph gets closer and closer to c at greater and greater values of t. -

    -
    -
    -
    -
    + + + + + + + + + + + + + + + + +

    + In Desmos, define + g(t) = ab^t+c and accept the prompt for sliders for a, b, and c. + Edit the sliders so that a has values from a = 5 to a = 50, + b has values from b = 0.7 to b = 1.3, and + c has values from c = -5 to c = 5 + (each with a step-size of 0.01). + In addition, in Desmos + let P = (0, g(0)) and check the box to show the label. + Finally, zoom out so that the window shows an interval of t-values from -30 \le t \le 30. +

    +

    + + + +

    + Set b = 1.1 and explore the effects of changing the values of a and c. Write several sentences to summarize your observations. +

    + + + +

    + When b = 1.1, changing the value of a where 5 \le a \le 50 causes a vertical stretch effect. The coefficient c causes a vertical shift. +

    +
    + + + +

    + Follow the directions for (a) again, this time with b = 0.9

    +
    + + +

    + The same vertical stretch and vertical shift behavior is apparent when b = 0.9. +

    +
    +
    + + +

    + Set a = 5 and c = 4. + Explore the effects of changing the value of b; + be sure to include values of b both less than and greater than 1. + Write several sentences to summarize your observations. +

    +
    + + +

    + When a = 5 and c = 4, the line rises to the left and flattens to the right when b \lt 1, the line is flat when b = 1, and the line flattens to the left and rises to the right when b \gt 1. +

    +
    +
    + + +

    + When 0 \lt b \lt 1, + what happens to the graph of g when we consider positive t-values that get larger and larger? +

    +
    + + +

    + When 0 \lt b \lt 1, the graph gets closer and closer to c at greater and greater values of t. +

    +
    +
    +
    +
    diff --git a/source/previews/PA-exp-temp-pop-D.xml b/source/previews/PA-exp-temp-pop-D.xml new file mode 100644 index 00000000..59d766b8 --- /dev/null +++ b/source/previews/PA-exp-temp-pop-D.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + ` + + + + + \ No newline at end of file diff --git a/source/previews/PA-exp-temp-pop.xml b/source/previews/PA-exp-temp-pop.xml index 65e948b6..2bc58668 100755 --- a/source/previews/PA-exp-temp-pop.xml +++ b/source/previews/PA-exp-temp-pop.xml @@ -1,86 +1,86 @@ - - - - - - - - - - - - - - - - -

    - In each of the following situations, determine the exact value of the unknown quantity that is identified. -

    -

    - - - -

    - The temperature of a warming object in an oven is given by F(t) = 275 - 203e^{-kt}, and we know that the object's temperature after 20 minutes is F(20) = 101. Determine the exact value of k. -

    - - - - -

    - Setting F(20) = 101, we have 275 - 203e^{-20k} = 101, so 203e^{-20k} = 174 and e^{-20k} = \frac{174}{203}. Thus k = -\dfrac{1}{20}\ln\!\left(\frac{174}{203}\right) \approx 7.708 \times 10^{-3}. -

    -
    - - - -

    - The temperature of a cooling object in a refrigerator is modeled by F(t) = a + 37.4e^{-0.05t}, and the temperature of the refrigerator is 39.8^\circ. By thinking about the long-term behavior of e^{-0.05t} and the long-term behavior of the object's temperature, determine the exact value of a. -

    -
    - - - -

    - As t \to \infty, e^{-0.05t} \to 0, so F(t) \to a. Since the object cools toward the refrigerator temperature of 39.8^\circ, the long-term temperature is 39.8^\circ, and therefore a = 39.8. -

    -
    -
    - - -

    - Later in this section, we'll learn that one model for how a population grows over time can be given by a function of the form - - P(t) = \frac{A}{1 + Me^{-kt}} - . Models of this form lead naturally to equations that have structure like - - 3 = \frac{10}{1+x}. - - Solve the equation 3 = \frac{10}{1+x} for the exact value of x. -

    -
    - - - -

    - Multiplying both sides by (1+x) gives 3(1+x) = 10, so 1+x = \frac{10}{3} and x = \frac{10}{3} - 1 = \frac{7}{3}. -

    -
    -
    - - -

    - Suppose that y = a + be^{-kt}. Solve for t in terms of a, b, k, and y. What does this new equation represent? -

    -
    - - - -

    - Starting from y = a + be^{-kt}, we subtract a: y - a = be^{-kt}. Dividing by b: \frac{y-a}{b} = e^{-kt}. Taking the natural log: -kt = \ln\!\left(\frac{y-a}{b}\right). Therefore t = -\dfrac{1}{k}\ln\!\left(\frac{y-a}{b}\right). This is the inverse of the original function and gives the time at which the object reaches temperature y. -

    -
    -
    -
    -
    + + + + + + + + + + + + + + + + +

    + In each of the following situations, determine the exact value of the unknown quantity that is identified. +

    +

    + + + +

    + The temperature of a warming object in an oven is given by F(t) = 275 - 203e^{-kt}, and we know that the object's temperature after 20 minutes is F(20) = 101. Determine the exact value of k. +

    + + + +

    + Setting F(20) = 101, we have 275 - 203e^{-20k} = 101, so 203e^{-20k} = 174 and e^{-20k} = \frac{174}{203}. Thus k = -\dfrac{1}{20}\ln\!\left(\frac{174}{203}\right) \approx 7.708 \times 10^{-3}. +

    +
    + + + +

    + The temperature of a cooling object in a refrigerator is modeled by F(t) = a + 37.4e^{-0.05t}, and the temperature of the refrigerator is 39.8^\circ. By thinking about the long-term behavior of e^{-0.05t} and the long-term behavior of the object's temperature, determine the exact value of a. +

    +
    + + +

    + As t \to \infty, e^{-0.05t} \to 0, so F(t) \to a. Since the object cools toward the refrigerator temperature of 39.8^\circ, the long-term temperature is 39.8^\circ, and therefore a = 39.8. +

    +
    +
    + + +

    + Later in this section, we'll learn that one model for how a population grows over time can be given by a function of the form + + P(t) = \frac{A}{1 + Me^{-kt}} + . Models of this form lead naturally to equations that have structure like + + 3 = \frac{10}{1+x}. + + Solve the equation 3 = \frac{10}{1+x} for the exact value of x. +

    +
    + + +

    + Multiplying both sides by (1+x) gives 3(1+x) = 10, so 1+x = \frac{10}{3} and x = \frac{10}{3} - 1 = \frac{7}{3}. +

    +
    +
    + + +

    + Suppose that y = a + be^{-kt}. Solve for t in terms of a, b, k, and y. What does this new equation represent? +

    +
    + + +

    + Starting from y = a + be^{-kt}, we subtract a: y - a = be^{-kt}. Dividing by b: \frac{y-a}{b} = e^{-kt}. Taking the natural log: -kt = \ln\!\left(\frac{y-a}{b}\right). Therefore t = -\dfrac{1}{k}\ln\!\left(\frac{y-a}{b}\right). This is the inverse of the original function and gives the time at which the object reaches temperature y. +

    +
    +
    +
    +
    diff --git a/source/previews/PA-poly-infty-D.xml b/source/previews/PA-poly-infty-D.xml new file mode 100644 index 00000000..5bb40a61 --- /dev/null +++ b/source/previews/PA-poly-infty-D.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + ` + + + + + \ No newline at end of file diff --git a/source/previews/PA-poly-infty.xml b/source/previews/PA-poly-infty.xml index 9f73df9f..7c310543 100755 --- a/source/previews/PA-poly-infty.xml +++ b/source/previews/PA-poly-infty.xml @@ -1,107 +1,107 @@ - - - - - - - - - - - - - - - - -

    - Complete each of the following statements with an appropriate number or the symbols \infty or -\infty. Do your best to do so without using a graphing utility; instead use your understanding of the function's graph. -

    -

    - - - -

    - As t \to \infty, e^{-t} \to . -

    - - - - -

    0

    -
    - - - -

    - As t \to \infty, \ln(t) \to . -

    -
    - - - -

    \infty

    -
    -
    - - -

    - As t \to \infty, e^{t} \to . -

    -
    - - - -

    \infty

    -
    -
    - - -

    - As t \to 0^+, e^{-t} \to . (When we write t \to 0^+, this means that we are letting t get closer and closer to 0, but only allowing t to take on positive values.) -

    -
    - - - -

    1. Since e^{-t} \to e^0 = 1 as t \to 0^+.

    -
    -
    - - -

    - As t \to \infty, 35 + 53e^{-0.025t} \to. -

    -
    - - - -

    35. As t \to \infty, e^{-0.025t} \to 0, so the expression approaches 35 + 53 \cdot 0 = 35.

    -
    -
    - - -

    - As t \to \frac{\pi}{2}^-, \tan(t) \to . (When we write t \to \frac{\pi}{2}^-, this means that we are letting t get closer and closer to \frac{\pi}{2}^-, but only allowing t to take on values that lie to the left of \frac{\pi}{2}.) -

    -
    - - - -

    \infty. As t \to \frac{\pi}{2}^-, \cos(t) \to 0^+ while \sin(t) \to 1, so \tan(t) = \frac{\sin(t)}{\cos(t)} \to +\infty.

    -
    -
    - - -

    - As t \to \frac{\pi}{2}^+, \tan(t) \to . (When we write t \to \frac{\pi}{2}^+, this means that we are letting t get closer and closer to \frac{\pi}{2}^+, but only allowing t to take on values that lie to the right of \frac{\pi}{2}.) -

    -
    - - - -

    -\infty. As t \to \frac{\pi}{2}^+, \cos(t) \to 0^- while \sin(t) \to 1, so \tan(t) = \frac{\sin(t)}{\cos(t)} \to -\infty.

    -
    -
    -
    -
    + + + + + + + + + + + + + + + + +

    + Complete each of the following statements with an appropriate number or the symbols \infty or -\infty. Do your best to do so without using a graphing utility; instead use your understanding of the function's graph. +

    +

    + + + +

    + As t \to \infty, e^{-t} \to . +

    + + + +

    0

    +
    + + + +

    + As t \to \infty, \ln(t) \to . +

    +
    + + +

    \infty

    +
    +
    + + +

    + As t \to \infty, e^{t} \to . +

    +
    + + +

    \infty

    +
    +
    + + +

    + As t \to 0^+, e^{-t} \to . (When we write t \to 0^+, this means that we are letting t get closer and closer to 0, but only allowing t to take on positive values.) +

    +
    + + +

    1. Since e^{-t} \to e^0 = 1 as t \to 0^+.

    +
    +
    + + +

    + As t \to \infty, 35 + 53e^{-0.025t} \to. +

    +
    + + +

    35. As t \to \infty, e^{-0.025t} \to 0, so the expression approaches 35 + 53 \cdot 0 = 35.

    +
    +
    + + +

    + As t \to \frac{\pi}{2}^-, \tan(t) \to . (When we write t \to \frac{\pi}{2}^-, this means that we are letting t get closer and closer to \frac{\pi}{2}^-, but only allowing t to take on values that lie to the left of \frac{\pi}{2}.) +

    +
    + + +

    \infty. As t \to \frac{\pi}{2}^-, \cos(t) \to 0^+ while \sin(t) \to 1, so \tan(t) = \frac{\sin(t)}{\cos(t)} \to +\infty.

    +
    +
    + + +

    + As t \to \frac{\pi}{2}^+, \tan(t) \to . (When we write t \to \frac{\pi}{2}^+, this means that we are letting t get closer and closer to \frac{\pi}{2}^+, but only allowing t to take on values that lie to the right of \frac{\pi}{2}.) +

    +
    + + +

    -\infty. As t \to \frac{\pi}{2}^+, \cos(t) \to 0^- while \sin(t) \to 1, so \tan(t) = \frac{\sin(t)}{\cos(t)} \to -\infty.

    +
    +
    +
    +
    diff --git a/source/previews/PA-poly-polynomial-applications-D.xml b/source/previews/PA-poly-polynomial-applications-D.xml new file mode 100644 index 00000000..a119d6ee --- /dev/null +++ b/source/previews/PA-poly-polynomial-applications-D.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + ` + + + + + \ No newline at end of file diff --git a/source/previews/PA-poly-polynomial-applications.xml b/source/previews/PA-poly-polynomial-applications.xml index 09e930a1..54555b20 100755 --- a/source/previews/PA-poly-polynomial-applications.xml +++ b/source/previews/PA-poly-polynomial-applications.xml @@ -1,87 +1,87 @@ - - - - - - - - - - - - - - - - -

    - A piece of cardboard that is 12 \times 18 (each measured in inches) is being made into a box without a top. To do so, squares are cut from each corner of the cardboard and the remaining sides are folded up. -

    -

    - - - -

    - Let x be the side length of the squares being cut from the corners of the cardboard. Draw a labeled diagram that shows the given information and the variable being used. -

    - - - - - - - - - -

    - Determine a formula for the function V whose output is the volume of the box that results from a square of size x \times x being cut from each corner of the cardboard. -

    -
    - - - -

    After cutting x \times x squares from each corner, the base of the box has dimensions (12 - 2x) by (18 - 2x), and the height of the box is x. Thus - - V(x) = (12-2x)(18-2x)x = 4(6-x)(9-x)x. - -

    -
    -
    - - -

    - What familiar kind of function is V? -

    -
    - - - -

    V is a cubic (degree 3) polynomial.

    -
    -
    - - -

    - If we start with a small positive value for x and let that value get larger and larger, what is the first value of xwe encounter that makes it impossible to remove x \times x squares from the cardboard and still form a box? -

    -
    - - - -

    The shorter side of the cardboard is 12 inches. Cutting squares of size x from both ends of the short side removes 2x inches, so we need 12 - 2x > 0, i.e., x < 6. The first value of x that makes it impossible to form a box is x = 6.

    -
    -
    - - -

    - What are the zeros of V? What is the domain of the model V in the context of the rectangular box? -

    -
    - - - -

    From V(x) = 4x(6-x)(9-x), the zeros are x = 0, x = 6, and x = 9. In the context of the physical problem, we need x > 0 and x < 6 (so that both pairs of opposite sides of the base remain positive), giving domain (0, 6).

    -
    -
    -
    -
    + + + + + + + + + + + + + + + + +

    + A piece of cardboard that is 12 \times 18 (each measured in inches) is being made into a box without a top. To do so, squares are cut from each corner of the cardboard and the remaining sides are folded up. +

    +

    + + + +

    + Let x be the side length of the squares being cut from the corners of the cardboard. Draw a labeled diagram that shows the given information and the variable being used. +

    + + + + + + + + +

    + Determine a formula for the function V(x) whose output is the volume of the box that results from a square of size x \times x being cut from each corner of the cardboard. +

    +
    + + +

    After cutting x \times x squares from each corner, the base of the box has dimensions (12 - 2x) by (18 - 2x), and the height of the box is x. Thus + + V(x) = (12-2x)(18-2x)x = 4(6-x)(9-x)x. + +

    +
    +
    + + +

    + What familiar kind of function is V? +

    +
    + + +

    V is a cubic (degree 3) polynomial.

    +
    +
    + + +

    + If we start with a small positive value for x and let that value get larger and larger, what is the first value of x we encounter that makes it impossible to remove x \times x squares from the cardboard and still form a box? +

    +
    + + +

    The shorter side of the cardboard is 12 inches. Cutting squares of size x from both ends of the short side removes 2x inches, so we need 12 - 2x > 0, i.e., x < 6. The first value of x that makes it impossible to form a box is x = 6.

    +
    +
    + + +

    + What are the zeros of V? What is the domain of the model V in the context of the rectangular box? +

    +
    + + +

    From V(x) = 4x(6-x)(9-x), the zeros are x = 0, x = 6, and x = 9. In the context of the physical problem, we need x > 0 and x < 6 (so that both pairs of opposite sides of the base remain positive), giving domain (0, 6).

    +
    +
    +
    +
    diff --git a/source/previews/PA-poly-polynomials-D.xml b/source/previews/PA-poly-polynomials-D.xml new file mode 100644 index 00000000..f0120db8 --- /dev/null +++ b/source/previews/PA-poly-polynomials-D.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + ` + + + + + \ No newline at end of file diff --git a/source/previews/PA-poly-polynomials.xml b/source/previews/PA-poly-polynomials.xml index aa342c2b..c0543de7 100755 --- a/source/previews/PA-poly-polynomials.xml +++ b/source/previews/PA-poly-polynomials.xml @@ -1,113 +1,113 @@ - - - - - - - - - - - - - - - - -

    - Point your browser to the Desmos worksheet at http://gvsu.edu/s/0zy. There you'll find a degree 4 polynomial of the form p(x) = a_0 + a_1x + a_2x^2 + a_3x^3 + a_4x^4, where a_0, \ldots, a_4 are set up as sliders. In the questions that follow, you'll experiment with different values of a_0, \ldots, a_4 to investigate different possible behaviors in a degree 4 polynomial. Note that we require a_4 \ne 0 in order to ensure p is a degree 4 polynomial. -

    -

    - - - -

    - What is the largest number of distinct points at which p(x) can cross the x-axis? -

    -

    - Recall from the definition of a polynoimal function what we mean by a zero of the polynomial. Give examples of values for a_0, \ldots, a_4 that lead to that largest number of zeros for p(x). -

    - - - - -

    - A degree 4 polynomial can cross the x-axis at most 4 times. For example, a_0=-24, a_1=26, a_2=-1, a_3=-4, a_4=1 gives a polynomial with 4 real zeros near x=-2,-1,3,4. -

    -
    - - - -

    - What other numbers of zeros are possible for p(x)? Said differently, can you get each possible number of fewer zeros than the largest number that you found in (a)? Why or why not? -

    -
    - - - -

    - A degree 4 polynomial can have 0, 1, 2, 3, or 4 real zeros. Yes, each number from 0 to 4 is achievable (though complex zeros always come in conjugate pairs, so the count of real zeros must have the same parity as the degree; a degree 4 polynomial can have 0, 2, or 4 real zeros if it has no repeated zeros, but with repeated zeros 1 or 3 are also possible). -

    -
    -
    - - -

    - We say that a function has a turning pointturning point if the function changes from decreasing to increasing or increasing to decreasing at the point. For example, any quadratic function has a turning point at its vertex. -

    -

    - What is the largest number of turning points that p(x) (the function in the Desmos worksheet) can have? Experiment with the sliders, and give examples of values for a_0, \ldots, a_4 that lead to that largest number of turning points for p(x). -

    -
    - - - -

    - A degree 4 polynomial can have at most 3 turning points (one fewer than the degree). For example, p(x) = x^4 - 3x^2 has turning points at approximately x \approx -1.22, 0, 1.22. -

    -
    -
    - - -

    - What other numbers of turning points are possible for p(x)? Can it have no turning points? Just one? Exactly two? Experiment and explain. -

    -
    - - - -

    - A degree 4 polynomial can have 1 or 3 turning points (or 0 is technically possible, but not for most configurations). With 0 real zeros, it can have just 1 turning point (like x^4 + 1). It can also have 2 turning points, for example when one zero has multiplicity 2. So 1, 2, or 3 turning points are all possible. -

    -
    -
    - - -

    - What long-range behavior is possible for p(x)? Said differently, what are the possible results for \displaystyle \lim_{x \to -\infty} p(x) and \displaystyle \lim_{x \to \infty} p(x)? -

    -
    - - - -

    - Since the leading term is a_4 x^4 with a_4 \ne 0: if a_4 \gt 0, then both \lim_{x \to \pm\infty} p(x) = +\infty; if a_4 \lt 0, then both limits equal -\infty. The two limits are always equal to each other (both +\infty or both -\infty). -

    -
    -
    - - -

    - What happens when we plot y = a_4 x^4 in Desmos and compare p(x) and a_4 x^4? How do they look when we zoom out? (Experiment with different values of each of the sliders, too.) -

    -
    - - - -

    - When zoomed out, p(x) and a_4 x^4 look nearly identical: the lower-degree terms become insignificant compared to the dominant a_4 x^4 term. On a large scale, all degree-4 polynomials with the same leading coefficient look alike. -

    -
    -
    -
    -
    + + + + + + + + + + + + + + + + +

    + Point your browser to the Desmos worksheet at http://gvsu.edu/s/0zy. There you'll find a degree 4 polynomial of the form p(x) = a_0 + a_1x + a_2x^2 + a_3x^3 + a_4x^4, where a_0, \ldots, a_4 are set up as sliders. In the questions that follow, you'll experiment with different values of a_0, \ldots, a_4 to investigate different possible behaviors in a degree 4 polynomial. Note that we require a_4 \ne 0 in order to ensure p is a degree 4 polynomial. +

    +

    + + + +

    + What is the largest number of distinct points at which p(x) can cross the x-axis? +

    +

    + Recall from the definition of a polynomial function what we mean by a zero of the polynomial. Give examples of values for a_0, \ldots, a_4 that lead to that largest number of zeros for p(x). +

    + + + +

    + A degree 4 polynomial can cross the x-axis at most 4 times. For example, a_0=-24, a_1=26, a_2=-1, a_3=-4, a_4=1 gives a polynomial with 4 real zeros near x=-2,-1,3,4. +

    +
    + + + +

    + What other numbers of zeros are possible for p(x)? Said differently, can you get each possible number of fewer zeros than the largest number that you found in (a)? Why or why not? +

    +
    + + +

    + A degree 4 polynomial can have 0, 1, 2, 3, or 4 real zeros. Yes, each number from 0 to 4 is achievable (though complex zeros always come in conjugate pairs, so the count of real zeros must have the same parity as the degree; a degree 4 polynomial can have 0, 2, or 4 real zeros if it has no repeated zeros, but with repeated zeros 1 or 3 are also possible). +

    +
    +
    + + +

    + We say that a function has a turning pointturning point if the function changes from decreasing to increasing or increasing to decreasing at the point. For example, any quadratic function has a turning point at its vertex. +

    +

    + What is the largest number of turning points that p(x) (the function in the Desmos worksheet) can have? Experiment with the sliders, and give examples of values for a_0, \ldots, a_4 that lead to that largest number of turning points for p(x). +

    +
    + + +

    + A degree 4 polynomial can have at most 3 turning points (one fewer than the degree). For example, p(x) = x^4 - 3x^2 has turning points at approximately x \approx -1.22, 0, 1.22. +

    +
    +
    + + +

    + What other numbers of turning points are possible for p(x)? Can it have no turning points? Just one? Exactly two? Experiment and explain. +

    +
    + + +

    + A degree 4 polynomial can have 1 or 3 turning points. When it has 0 real zeros, it can have just 1 turning point (like x^4 + 1). +

    +
    +
    + + +

    + What long-range behavior is possible for p(x)? Said differently, what are the possible results for \displaystyle \lim_{x \to -\infty} p(x) and \displaystyle \lim_{x \to \infty} p(x)? +

    +
    + + +

    + Since the leading term is a_4 x^4 with a_4 \ne 0: if a_4 \gt 0, then both \lim_{x \to \pm\infty} p(x) = +\infty; if a_4 \lt 0, then both limits equal -\infty. The two limits are always equal to each other (both +\infty or both -\infty). +

    +
    +
    + + +

    + What happens when we plot y = a_4 x^4 in Desmos and compare p(x) and a_4 x^4? How do they look when we zoom out? (Experiment with different values of each of the sliders, too.) +

    +
    + + +

    + When zoomed out, p(x) and a_4 x^4 look nearly identical: the lower-degree terms become insignificant compared to the dominant a_4 x^4 term. On a large scale, all degree-4 polynomials with the same leading coefficient look alike. +

    +
    +
    +
    +
    diff --git a/source/previews/PA-poly-rational-D.xml b/source/previews/PA-poly-rational-D.xml new file mode 100644 index 00000000..79a8e16b --- /dev/null +++ b/source/previews/PA-poly-rational-D.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + ` + + + + + \ No newline at end of file diff --git a/source/previews/PA-poly-rational-features-D.xml b/source/previews/PA-poly-rational-features-D.xml new file mode 100644 index 00000000..3690b4aa --- /dev/null +++ b/source/previews/PA-poly-rational-features-D.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + ` + + + + + \ No newline at end of file diff --git a/source/previews/PA-poly-rational-features.xml b/source/previews/PA-poly-rational-features.xml index 4b0b62ef..90d60edd 100755 --- a/source/previews/PA-poly-rational-features.xml +++ b/source/previews/PA-poly-rational-features.xml @@ -1,290 +1,290 @@ - - - - - - - - - - - - - - - - -

    - Consider the rational function r(x) = \frac{x^2 - 1}{x^2 - 3x - 4}, and let p(x) = x^2 - 1 (the numerator of r(x)) and q(x) = x^2 - 3x - 4 (the denominator of r(x)). -

    - -

    - - - -

    - Reasoning algebraically, for what values of x is p(x) = 0? -

    - - - - -

    Factoring: p(x) = x^2 - 1 = (x-1)(x+1). So p(x) = 0 when x = 1 or x = -1.

    -
    - - - -

    - Again reasoning algebraically, for what values of x is q(x) = 0? -

    -
    - - - -

    Factoring: q(x) = x^2 - 3x - 4 = (x-4)(x+1). So q(x) = 0 when x = 4 or x = -1.

    -
    -
    - - -

    - Define r(x) in Desmos, and evaluate the function appropriately to find numerical values for the output of r and hence complete the following tables. -

    - - - - - x - - - r(x) - - - - - 4.1 - - - - - - - - 4.01 - - - - - - - - 4.001 - - - - - - - - 3.9 - - - - - - - - 3.99 - - - - - - - - 3.999 - - - - - - - - - - x - - - r(x) - - - - - 1.1 - - - - - - - - 1.01 - - - - - - - - 1.001 - - - - - - - - 0.9 - - - - - - - - 0.99 - - - - - - - - 0.999 - - - - - - - - - - x - - - r(x) - - - - - -1.1 - - - - - - - - -1.01 - - - - - - - - -1.001 - - - - - - - - -0.9 - - - - - - - - -0.99 - - - - - - - - -0.999 - - - - - - - -
    - - - -

    Using technology to evaluate r(x) = \dfrac{x^2-1}{x^2-3x-4}: near x=4, the values grow very large in magnitude; near x=1, the values are small and negative then positive; near x=-1, the values are close to \frac{2}{5} = 0.4. Approximate values:

    -

    Near x=4: r(4.1) \approx 31, r(3.9) \approx -29. Near x=1: r(1.1) \approx -0.035, r(0.9) \approx 0.032. Near x=-1: r(-1.1) \approx 0.412, r(-0.9) \approx 0.387.

    -
    -
    - - -

    - Why does r behave the way it does near x = 4? Explain by describing the behavior of the numerator and denominator. -

    -
    - - - -

    Near x = 4, the denominator q(x) = (x-4)(x+1) approaches 0 (since x-4 \to 0), while the numerator p(4) = 15 \neq 0. So r(x) increases or decreases without bound near x = 4: this is a vertical asymptote. For x just above 4, (x-4) > 0 and (x+1) > 0, so r \to +\infty; just below 4, (x-4) < 0 so r \to -\infty.

    -
    -
    - - -

    - Why does r behave the way it does near x = 1? Explain by describing the behavior of the numerator and denominator. -

    -
    - - - -

    Near x = 1, the numerator p(x) \to 0 while the denominator q(1) = 1 - 3 - 4 = -6 \neq 0. So r(x) \to 0 near x = 1, meaning x = 1 is an ordinary zero of r.

    -
    -
    - - -

    - Why does r behave the way it does near x = -1? Explain by describing the behavior of the numerator and denominator. -

    -
    - - - -

    Near x = -1, both the numerator and denominator approach 0 (since p(-1) = 0 and q(-1) = 0). The factor (x+1) cancels: r(x) = \dfrac{(x-1)(x+1)}{(x-4)(x+1)} = \dfrac{x-1}{x-4} (for x \neq -1). Near x = -1, r(x) \approx \dfrac{-1-1}{-1-4} = \dfrac{-2}{-5} = \dfrac{2}{5}. So x = -1 is a hole at the point \left(-1, \dfrac{2}{5}\right).

    -
    -
    - - -

    - Plot r in Desmos. Is there anything surprising or misleading about the graph that Desmos generates? -

    -
    - - - -

    The Desmos graph of r appears continuous near x = -1; the hole is not visible because Desmos plots points at closely-spaced x-values and connects them, so the single missing point at x=-1 is not apparent. One must know to look for the hole based on the algebra.

    -
    -
    -
    -
    + + + + + + + + + + + + + + + + +

    + Consider the rational function r(x) = \frac{x^2 - 1}{x^2 - 3x - 4}, and let p(x) = x^2 - 1 (the numerator of r(x)) and q(x) = x^2 - 3x - 4 (the denominator of r(x)). +

    + +

    + + + +

    + Reasoning algebraically, for what values of x is p(x) = 0? +

    + + + +

    Factoring: p(x) = x^2 - 1 = (x-1)(x+1). So p(x) = 0 when x = 1 or x = -1.

    +
    + + + +

    + Again reasoning algebraically, for what values of x is q(x) = 0? +

    +
    + + +

    Factoring: q(x) = x^2 - 3x - 4 = (x-4)(x+1). So q(x) = 0 when x = 4 or x = -1.

    +
    +
    + + +

    + Define r(x) in Desmos, and evaluate the function appropriately to find numerical values for the output of r and hence complete the following tables. +

    + + + + + x + + + r(x) + + + + + 4.1 + + + + + + + + 4.01 + + + + + + + + 4.001 + + + + + + + + 3.9 + + + + + + + + 3.99 + + + + + + + + 3.999 + + + + + + + + + + x + + + r(x) + + + + + 1.1 + + + + + + + + 1.01 + + + + + + + + 1.001 + + + + + + + + 0.9 + + + + + + + + 0.99 + + + + + + + + 0.999 + + + + + + + + + + x + + + r(x) + + + + + -1.1 + + + + + + + + -1.01 + + + + + + + + -1.001 + + + + + + + + -0.9 + + + + + + + + -0.99 + + + + + + + + -0.999 + + + + + + + +
    + + +

    Using technology to evaluate r(x) = \dfrac{x^2-1}{x^2-3x-4}: near x=4, the values grow very large in magnitude; near x=1, the values are small and negative then positive; near x=-1, the values are close to \frac{2}{5} = 0.4. Approximate values:

    +

    Near x=4: r(4.1) \approx 31, r(3.9) \approx -29. Near x=1: r(1.1) \approx -0.035, r(0.9) \approx 0.032. Near x=-1: r(-1.1) \approx 0.412, r(-0.9) \approx 0.387.

    +
    +
    + + +

    + Why does r behave the way it does near x = 4? Explain by describing the behavior of the numerator and denominator. +

    +
    + + +

    Near x = 4, the denominator q(x) = (x-4)(x+1) approaches 0 (since x-4 \to 0), while the numerator p(4) = 15 \neq 0. So r(x) increases or decreases without bound near x = 4: this is a vertical asymptote. For x just above 4, (x-4) > 0 and (x+1) > 0, so r \to +\infty; just below 4, (x-4) < 0 so r \to -\infty.

    +
    +
    + + +

    + Why does r behave the way it does near x = 1? Explain by describing the behavior of the numerator and denominator. +

    +
    + + +

    Near x = 1, the numerator p(x) \to 0 while the denominator q(1) = 1 - 3 - 4 = -6 \neq 0. So r(x) \to 0 near x = 1, meaning x = 1 is an ordinary zero of r.

    +
    +
    + + +

    + Why does r behave the way it does near x = -1? Explain by describing the behavior of the numerator and denominator. +

    +
    + + +

    Near x = -1, both the numerator and denominator approach 0 (since p(-1) = 0 and q(-1) = 0). The factor (x+1) cancels: r(x) = \dfrac{(x-1)(x+1)}{(x-4)(x+1)} = \dfrac{x-1}{x-4} (for x \neq -1). Near x = -1, r(x) \approx \dfrac{-1-1}{-1-4} = \dfrac{-2}{-5} = \dfrac{2}{5}. So x = -1 is a hole at the point \left(-1, \dfrac{2}{5}\right).

    +
    +
    + + +

    + Plot r in Desmos. Is there anything surprising or misleading about the graph that Desmos generates? +

    +
    + + +

    The Desmos graph of r appears continuous near x = -1; the hole is not visible because Desmos plots points at closely-spaced x-values and connects them, so the single missing point at x=-1 is not apparent. One must know to look for the hole based on the algebra.

    +
    +
    +
    +
    diff --git a/source/previews/PA-poly-rational.xml b/source/previews/PA-poly-rational.xml index 421c833e..d383ffc1 100755 --- a/source/previews/PA-poly-rational.xml +++ b/source/previews/PA-poly-rational.xml @@ -1,109 +1,109 @@ - - - - - - - - - - - - - - - - -

    - A drug company estimates that to produce a new drug, - it will cost $5 million in startup resources, and that once they reach production, each gram of the drug will cost $2500 to make. -

    -

    - - - -

    - Determine a formula for a function C(q) that models the cost of producing q grams of the drug. What familiar kind of function is C? -

    - - - - -

    C(q) = 5{,}000{,}000 + 2500q gives the total cost in dollars to produce q grams. C is a linear function whose slope is the per-gram manufacturing cost and whose y-intercept is the startup cost.

    -
    - - - -

    - The drug company needs to sell the drug at a price of more than $2500 per gram in order to at least break even. To investigate how they might set prices, they first consider what their average cost per gram is. What is the total cost of producing 1000 grams? What is the average cost per gram to produce 1000 grams? -

    -
    - - - -

    The total cost of producing 1000 grams is C(1000) = 5{,}000{,}000 + 2500(1000) = \$7{,}500{,}000. The average cost per gram is \frac{7{,}500{,}000}{1000} = \$7{,}500 per gram.

    -
    -
    - - -

    - What is the total cost of producing 10000 grams? What is the average cost per gram to produce 10000 grams? -

    -
    - - - -

    The total cost of producing 10{,}000 grams is C(10000) = 5{,}000{,}000 + 2500(10000) = \$30{,}000{,}000. The average cost per gram is \frac{30{,}000{,}000}{10{,}000} = \$3{,}000 per gram.

    -
    -
    - - -

    - Our computations in (b) and (c) naturally lead us to define the average cost per gram function, A(q), whose output is the average cost of producing q grams of the drug. What is a formula for A(q)? -

    -
    - - - -

    The average cost per gram to produce q grams is - - A(q) = \frac{C(q)}{q} = \frac{5{,}000{,}000 + 2500q}{q}. - -

    -
    -
    - - -

    - Explain why another formula for A is A(q) = 2500 + \frac{5000000}{q}. -

    -
    - - - -

    Dividing both terms in the numerator of A(q) by q: - - A(q) = \frac{5{,}000{,}000 + 2500q}{q} = \frac{5{,}000{,}000}{q} + \frac{2500q}{q} = 2500 + \frac{5{,}000{,}000}{q}. - -

    -
    -
    - - -

    - What can you say about the long-range behavior of A? What does this behavior mean in the context of the problem? -

    -
    - - - -

    As q \to \infty, the term \frac{5{,}000{,}000}{q} \to 0, so A(q) \to 2500. In context, this means that as production volume grows very large, the startup cost is spread over so many grams that the average cost per gram approaches the per-gram manufacturing cost of \$2500.

    -
    -
    - -

    - This activity is based on p. 457ff in Functions Modeling Change, by Connally et al. -

    -
    -
    -
    + + + + + + + + + + + + + + + + +

    + A drug company estimates that to produce a new drug, + it will cost $5 million in startup resources, and that once they reach production, each gram of the drug will cost $2500 to make. +

    +

    + + + +

    + Determine a formula for a function C(q) that models the cost of producing q grams of the drug. What familiar kind of function is C? +

    + + + +

    C(q) = 5{,}000{,}000 + 2500q gives the total cost in dollars to produce q grams. C is a linear function whose slope is the per-gram manufacturing cost and whose y-intercept is the startup cost.

    +
    + + + +

    + The drug company needs to sell the drug at a price of more than $2500 per gram in order to at least break even. To investigate how they might set prices, they first consider what their average cost per gram is. What is the total cost of producing 1000 grams? What is the average cost per gram to produce 1000 grams? +

    +
    + + +

    The total cost of producing 1000 grams is C(1000) = 5{,}000{,}000 + 2500(1000) = \$7{,}500{,}000. The average cost per gram is \frac{7{,}500{,}000}{1000} = \$7{,}500 per gram.

    +
    +
    + + +

    + What is the total cost of producing 10000 grams? What is the average cost per gram to produce 10000 grams? +

    +
    + + +

    The total cost of producing 10{,}000 grams is C(10000) = 5{,}000{,}000 + 2500(10000) = \$30{,}000{,}000. The average cost per gram is \frac{30{,}000{,}000}{10{,}000} = \$3{,}000 per gram.

    +
    +
    + + +

    + Our computations in (b) and (c) naturally lead us to define the average cost per gram function, A(q), whose output is the average cost of producing q grams of the drug. What is a formula for A(q)? +

    +
    + + +

    The average cost per gram to produce q grams is + + A(q) = \frac{C(q)}{q} = \frac{5{,}000{,}000 + 2500q}{q}. + +

    +
    +
    + + +

    + Explain why another formula for A is A(q) = 2500 + \frac{5000000}{q}. +

    +
    + + +

    Dividing both terms in the numerator of A(q) by q: + + A(q) = \frac{5{,}000{,}000 + 2500q}{q} = \frac{5{,}000{,}000}{q} + \frac{2500q}{q} = 2500 + \frac{5{,}000{,}000}{q}. + +

    +
    +
    + + +

    + What can you say about the long-range behavior of A? What does this behavior mean in the context of the problem? +

    +
    + + +

    As q \to \infty, the term \frac{5{,}000{,}000}{q} \to 0, so A(q) \to 2500. In context, this means that as production volume grows very large, the startup cost is spread over so many grams that the average cost per gram approaches the per-gram manufacturing cost of \$2500.

    +
    +
    + +

    + This activity is based on p. 457ff in Functions Modeling Change, 5th edition, by Connally et al. +

    +
    +
    +
    diff --git a/source/previews/PA-trig-finding-angles-D.xml b/source/previews/PA-trig-finding-angles-D.xml new file mode 100644 index 00000000..ed078386 --- /dev/null +++ b/source/previews/PA-trig-finding-angles-D.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + ` + + + + + \ No newline at end of file diff --git a/source/previews/PA-trig-finding-angles.xml b/source/previews/PA-trig-finding-angles.xml index 725e9956..5029e70c 100755 --- a/source/previews/PA-trig-finding-angles.xml +++ b/source/previews/PA-trig-finding-angles.xml @@ -1,91 +1,91 @@ - - - - - - - - - - - - - - - - -

    - Consider a right triangle that has one leg of length 3 and another leg of length \sqrt{3}. Let \theta be the angle that lies opposite the shorter leg. -

    -

    - - - -

    - Sketch a labeled picture of the triangle. -

    - - - - - - - - - -

    - What is the exact length of the triangle's hypotenuse? -

    -
    - - - -

    - The hypotenuse has length \sqrt{(\sqrt{3})^2 + 3^2} = \sqrt{12} = 2\sqrt{3}. -

    -
    -
    - - -

    - What is the exact value of \sin(\theta)? -

    -
    - - - -

    - Since \theta is opposite the shorter leg of length \sqrt{3}, we have \sin(\theta) = \dfrac{\sqrt{3}}{2\sqrt{3}} = \dfrac{1}{2}. -

    -
    -
    - - -

    - Rewrite your equation from (c) using the arcsine function in the form \arcsin(\Box) = \Delta, where \Box and \Delta are numerical values. -

    -
    - - - -

    - Since \sin(\theta) = \dfrac{1}{2}, we can write \arcsin\!\left(\dfrac{1}{2}\right) = \theta. -

    -
    -
    - - -

    - What special angle from the unit circle is \theta? -

    -
    - - - -

    - Since \sin\!\left(\dfrac{\pi}{6}\right) = \dfrac{1}{2}, we have \theta = \dfrac{\pi}{6}. -

    -
    -
    -
    -
    + + + + + + + + + + + + + + + + +

    + Consider a right triangle that has one leg of length 3 and another leg of length \sqrt{3}. Let \theta be the angle that lies opposite the shorter leg. +

    +

    + + + +

    + Sketch a labeled picture of the triangle. +

    + + + + + + + + +

    + What is the exact length of the triangle's hypotenuse? +

    +
    + + +

    + The hypotenuse has length \sqrt{(\sqrt{3})^2 + 3^2} = \sqrt{12} = 2\sqrt{3}. +

    +
    +
    + + +

    + What is the exact value of \sin(\theta)? +

    +
    + + +

    + Since \theta is opposite the shorter leg of length \sqrt{3}, we have \sin(\theta) = \dfrac{\sqrt{3}}{2\sqrt{3}} = \dfrac{1}{2}. +

    +
    +
    + + +

    + Rewrite your equation from (c) using the arcsine function in the form \arcsin(\Box) = \Delta, where \Box and \Delta are numerical values. +

    +
    + + +

    + Since \sin(\theta) = \dfrac{1}{2}, we can write \arcsin\!\left(\dfrac{1}{2}\right) = \theta. +

    +
    +
    + + +

    + What special angle from the unit circle is \theta? +

    +
    + + +

    + Since \sin\!\left(\dfrac{\pi}{6}\right) = \dfrac{1}{2}, we have \theta = \dfrac{\pi}{6}. +

    +
    +
    +
    +
    diff --git a/source/previews/PA-trig-inverse-D.xml b/source/previews/PA-trig-inverse-D.xml new file mode 100644 index 00000000..f787e727 --- /dev/null +++ b/source/previews/PA-trig-inverse-D.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + ` + + + + + \ No newline at end of file diff --git a/source/previews/PA-trig-inverse.xml b/source/previews/PA-trig-inverse.xml index 8925fd5c..d5681954 100755 --- a/source/previews/PA-trig-inverse.xml +++ b/source/previews/PA-trig-inverse.xml @@ -1,109 +1,109 @@ - - - - - - - - - - - - - - - - -

    - Consider the plot of the standard cosine function in the following figure along with the emphasized portion of the graph on [0,\pi]. -

    - -

    ADD ALT TEXT TO THIS IMAGE

    - -

    - Let g be the function whose domain is 0 \le t \le \pi and whose outputs are determined by the rule g(t) = \cos(t). Note well: g is defined in terms of the cosine function, but because it has a different domain, it is not the cosine function. -

    -

    - - - -

    - What is the domain of g? -

    - - - - -

    The domain of g is the interval [0, \pi].

    -
    - - - -

    - What is the range of g? -

    -
    - - - -

    The range of g is the interval [-1, 1].

    -
    -
    - - -

    - Does g pass the horizontal line test? - Why or why not? -

    -
    - - - -

    Yes, g passes the horizontal line test. On its restricted domain [0,\pi], the cosine function is strictly decreasing, so no horizontal line can intersect its graph more than once.

    -
    -
    - - -

    - Explain why g has an inverse function, - g^{-1}, and state the domain and range of g^{-1}. -

    -
    - - - -

    Since g passes the horizontal line test, it is one-to-one and has an inverse function g^{-1}. The domain of g^{-1} is the range of g, which is [-1, 1], and the range of g^{-1} is the domain of g, which is [0, \pi].

    -
    -
    - - -

    - We know that g(\frac{\pi}{4}) = \frac{\sqrt{2}}{2}. - What is the exact value of g^{-1}(\frac{\sqrt{2}}{2})? - How about the exact value of g^{-1}(-\frac{\sqrt{2}}{2})? -

    -
    - - - -

    Since g\!\left(\frac{\pi}{4}\right) = \frac{\sqrt{2}}{2}, we have g^{-1}\!\left(\frac{\sqrt{2}}{2}\right) = \frac{\pi}{4}. Since g\!\left(\frac{3\pi}{4}\right) = -\frac{\sqrt{2}}{2}, we have g^{-1}\!\left(-\frac{\sqrt{2}}{2}\right) = \frac{3\pi}{4}.

    -
    -
    - - -

    - Determine the exact values of g^{-1}(-\frac{1}{2}), - g^{-1}(\frac{\sqrt{3}}{2}), - g^{-1}(0), and g^{-1}(-1). - Use proper notation to label your results. -

    -
    - - - -

    g^{-1}\!\left(-\frac{1}{2}\right) = \frac{2\pi}{3}, g^{-1}\!\left(\frac{\sqrt{3}}{2}\right) = \frac{\pi}{6}, g^{-1}(0) = \frac{\pi}{2}, g^{-1}(-1) = \pi.

    -
    -
    -
    -
    + + + + + + + + + + + + + + + + +

    + Consider the plot of the standard cosine function in the following figure along with the emphasized portion of the graph on [0,\pi]. +

    + +

    ADD ALT TEXT TO THIS IMAGE

    + +

    + Let g be the function whose domain is 0 \le t \le \pi and whose outputs are determined by the rule g(t) = \cos(t). Note well: g is defined in terms of the cosine function, but because it has a different domain, it is not the cosine function. +

    +

    + + + +

    + What is the domain of g? +

    + + + +

    The domain of g is the interval [0, \pi].

    +
    + + + +

    + What is the range of g? +

    +
    + + +

    The range of g is the interval [-1, 1].

    +
    +
    + + +

    + Does g pass the horizontal line test? + Why or why not? +

    +
    + + +

    Yes, g passes the horizontal line test. On its restricted domain [0,\pi], the cosine function is strictly decreasing, so no horizontal line can intersect its graph more than once.

    +
    +
    + + +

    + Explain why g has an inverse function, + g^{-1}, and state the domain and range of g^{-1}. +

    +
    + + +

    Since g passes the horizontal line test, it is one-to-one and has an inverse function g^{-1}. The domain of g^{-1} is the range of g, which is [-1, 1], and the range of g^{-1} is the domain of g, which is [0, \pi].

    +
    +
    + + +

    + We know that g(\frac{\pi}{4}) = \frac{\sqrt{2}}{2}. + What is the exact value of g^{-1}(\frac{\sqrt{2}}{2})? + How about the exact value of g^{-1}(-\frac{\sqrt{2}}{2})? +

    +
    + + +

    Since g\!\left(\frac{\pi}{4}\right) = \frac{\sqrt{2}}{2}, we have g^{-1}\!\left(\frac{\sqrt{2}}{2}\right) = \frac{\pi}{4}. Since g\!\left(\frac{3\pi}{4}\right) = -\frac{\sqrt{2}}{2}, we have g^{-1}\!\left(-\frac{\sqrt{2}}{2}\right) = \frac{3\pi}{4}.

    +
    +
    + + +

    + Determine the exact values of g^{-1}(-\frac{1}{2}), + g^{-1}(\frac{\sqrt{3}}{2}), + g^{-1}(0), and g^{-1}(-1). + Use proper notation to label your results. +

    +
    + + +

    g^{-1}\!\left(-\frac{1}{2}\right) = \frac{2\pi}{3}, g^{-1}\!\left(\frac{\sqrt{3}}{2}\right) = \frac{\pi}{6}, g^{-1}(0) = \frac{\pi}{2}, g^{-1}(-1) = \pi.

    +
    +
    +
    +
    diff --git a/source/previews/PA-trig-other-D.xml b/source/previews/PA-trig-other-D.xml new file mode 100644 index 00000000..47670b88 --- /dev/null +++ b/source/previews/PA-trig-other-D.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + ` + + + + + \ No newline at end of file diff --git a/source/previews/PA-trig-other.xml b/source/previews/PA-trig-other.xml index 4fd4921f..38346d35 100755 --- a/source/previews/PA-trig-other.xml +++ b/source/previews/PA-trig-other.xml @@ -1,25 +1,25 @@ - - - - - - - - - - - - - - - - -

    - Consider a right triangle with hypotenuse of length 61 and one leg of length 11. - Let \alpha be the angle opposite the side of length 11. - Find the exact length of the other leg and then determine the value of each of the six trigonometric functions evaluated at \alpha. - In addition, what are the exact and approximate measures of the two non-right angles in the triangle? -

    -
    -
    -
    + + + + + + + + + + + + + + + + +

    + Consider a right triangle with hypotenuse of length 61 and one leg of length 11. + Let \alpha be the angle opposite the side of length 11. + Find the exact length of the other leg and then determine the value of each of the six trigonometric functions evaluated at \alpha. + In addition, what are the exact and approximate measures of the two non-right angles in the triangle? +

    +
    +
    +
    diff --git a/source/previews/PA-trig-right-D.xml b/source/previews/PA-trig-right-D.xml new file mode 100644 index 00000000..de6d6f33 --- /dev/null +++ b/source/previews/PA-trig-right-D.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + ` + + + + + \ No newline at end of file diff --git a/source/previews/PA-trig-right.xml b/source/previews/PA-trig-right.xml index c270c17f..f3b74529 100755 --- a/source/previews/PA-trig-right.xml +++ b/source/previews/PA-trig-right.xml @@ -1,107 +1,107 @@ - - - - - - - - - - - - - - - - -

    - For each of the following situations, sketch a right triangle that satisfies the given conditions, and then either determine the requested missing information in the triangle or explain why you don't have enough information to determine it. Assume that all angles are being considered in radian measure. -

    -

    - - - -

    - The length of the other leg of a right triangle with hypotenuse of length 1 and one leg of length \frac{3}{5}. -

    - - - - -

    - By the Pythagorean theorem, the other leg has length \sqrt{1^2 - (3/5)^2} = \sqrt{1 - 9/25} = \sqrt{16/25} = \frac{4}{5}. -

    -
    - - - -

    - The lengths of the two legs in a right triangle with hypotenuse of length 1 where one of the non-right angles measures \frac{\pi}{3}. -

    -
    - - - -

    - In a right triangle with hypotenuse 1 and one non-right angle of measure \frac{\pi}{3}, the adjacent leg has length \cos\!\left(\frac{\pi}{3}\right) = \frac{1}{2} and the opposite leg has length \sin\!\left(\frac{\pi}{3}\right) = \frac{\sqrt{3}}{2}. -

    -
    -
    - - -

    - The length of the other leg of a right triangle with hypotenuse of length 7 and one leg of length 6. -

    -
    - - - -

    - By the Pythagorean theorem, the other leg has length \sqrt{7^2 - 6^2} = \sqrt{49 - 36} = \sqrt{13}. -

    -
    -
    - - -

    - The lengths of the two legs in a right triangle with hypotenuse 5 and where one of the non-right angles measures \frac{\pi}{4}. -

    -
    - - - -

    - In a right triangle with hypotenuse 5 and one non-right angle of measure \frac{\pi}{4}, both legs have the same length: 5\cos\!\left(\frac{\pi}{4}\right) = 5 \cdot \frac{\sqrt{2}}{2} = \frac{5\sqrt{2}}{2}. -

    -
    -
    - - -

    - The length of the other leg of a right triangle with hypotenuse of length 1 and one leg of length \cos(0.7). -

    -
    - - - -

    - By the Pythagorean theorem, the other leg has length \sqrt{1 - \cos^2(0.7)} = \sin(0.7), using the Pythagorean identity \sin^2(t) + \cos^2(t) = 1. -

    -
    -
    - - -

    - The measures of the two angles in a right triangle with hypotenuse of length 1 where the two legs have lengths \cos(1.1) and \sin(1.1), respectively. -

    -
    - - - -

    - Since the hypotenuse is 1 and the adjacent leg to angle \theta has length \cos(1.1), we have \cos(\theta) = \cos(1.1), so \theta = 1.1 radians. The other non-right angle is \frac{\pi}{2} - 1.1 \approx 0.471 radians. -

    -
    -
    -
    -
    + + + + + + + + + + + + + + + + +

    + For each of the following situations, sketch a right triangle that satisfies the given conditions, and then either determine the requested missing information in the triangle or explain why you don't have enough information to determine it. Assume that all angles are being considered in radian measure. +

    +

    + + + +

    + The length of the other leg of a right triangle with hypotenuse of length 1 and one leg of length \frac{3}{5}. +

    + + + +

    + By the Pythagorean theorem, the other leg has length \sqrt{1^2 - (3/5)^2} = \sqrt{1 - 9/25} = \sqrt{16/25} = \frac{4}{5}. +

    +
    + + + +

    + The lengths of the two legs in a right triangle with hypotenuse of length 1 where one of the non-right angles measures \frac{\pi}{3}. +

    +
    + + +

    + In a right triangle with hypotenuse 1 and one non-right angle of measure \frac{\pi}{3}, the adjacent leg has length \cos\!\left(\frac{\pi}{3}\right) = \frac{1}{2} and the opposite leg has length \sin\!\left(\frac{\pi}{3}\right) = \frac{\sqrt{3}}{2}. +

    +
    +
    + + +

    + The length of the other leg of a right triangle with hypotenuse of length 7 and one leg of length 6. +

    +
    + + +

    + By the Pythagorean theorem, the other leg has length \sqrt{7^2 - 6^2} = \sqrt{49 - 36} = \sqrt{13}. +

    +
    +
    + + +

    + The lengths of the two legs in a right triangle with hypotenuse 5 and where one of the non-right angles measures \frac{\pi}{4}. +

    +
    + + +

    + In a right triangle with hypotenuse 5 and one non-right angle of measure \frac{\pi}{4}, both legs have the same length: 5\cos\!\left(\frac{\pi}{4}\right) = 5 \cdot \frac{\sqrt{2}}{2} = \frac{5\sqrt{2}}{2}. +

    +
    +
    + + +

    + The length of the other leg of a right triangle with hypotenuse of length 1 and one leg of length \cos(0.7). +

    +
    + + +

    + By the Pythagorean theorem, the other leg has length \sqrt{1 - \cos^2(0.7)} = \sin(0.7), using the Pythagorean identity \sin^2(t) + \cos^2(t) = 1. +

    +
    +
    + + +

    + The measures of the two angles in a right triangle with hypotenuse of length 1 where the two legs have lengths \cos(1.1) and \sin(1.1), respectively. +

    +
    + + +

    + Since the hypotenuse is 1 and the adjacent leg to angle \theta has length \cos(1.1), we have \cos(\theta) = \cos(1.1), so \theta = 1.1 radians. The other non-right angle is \frac{\pi}{2} - 1.1 \approx 0.471 radians. +

    +
    +
    +
    +
    diff --git a/source/previews/PA-trig-tangent-D.xml b/source/previews/PA-trig-tangent-D.xml new file mode 100644 index 00000000..e6927af6 --- /dev/null +++ b/source/previews/PA-trig-tangent-D.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + ` + + + + + \ No newline at end of file diff --git a/source/previews/PA-trig-tangent.xml b/source/previews/PA-trig-tangent.xml index 90320c34..236cfa16 100755 --- a/source/previews/PA-trig-tangent.xml +++ b/source/previews/PA-trig-tangent.xml @@ -1,5 +1,5 @@ - + @@ -11,7 +11,7 @@ - +

    @@ -52,8 +52,8 @@ -->

    - - +

    Using \tan(t) = \frac{\sin(t)}{\cos(t)}: @@ -73,8 +73,8 @@ What are three other input values x for which \tan(x) is not defined?

    - - +

    Since \tan(t) = \frac{\sin(t)}{\cos(t)} and \cos\!\left(\frac{\pi}{2}\right) = 0, \tan\!\left(\frac{\pi}{2}\right) is undefined because division by zero is not allowed. Three other values where \tan is undefined are -\frac{\pi}{2}, \frac{3\pi}{2}, and -\frac{3\pi}{2} (any value of the form \frac{\pi}{2} + k\pi for integer k). @@ -99,8 +99,8 @@ Why is the value of \tan(\frac{11\pi}{24}) so large relative to the other values of \tan(x) in the table?

    - - +

    At x = \frac{11\pi}{24}, the point is approximately \left(\frac{11\pi}{24},\ 7.596\right). We have \sin\!\left(\frac{11\pi}{24}\right) \approx 0.9914 and \cos\!\left(\frac{11\pi}{24}\right) \approx 0.1305. The value of \tan\!\left(\frac{11\pi}{24}\right) is so large because \frac{11\pi}{24} is very close to \frac{\pi}{2}, making \cos\!\left(\frac{11\pi}{24}\right) very small; since we divide by cosine, the tangent value becomes very large. @@ -133,8 +133,8 @@ -->

    - - +

      diff --git a/source/previews/doenet/PA-changing-aquarium-D.doenetml b/source/previews/doenet/PA-changing-aquarium-D.doenetml new file mode 100644 index 00000000..b5a4540f --- /dev/null +++ b/source/previews/doenet/PA-changing-aquarium-D.doenetml @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + +

      + Suppose that a rectangular aquarium is being filled with water. The tank is 4 feet long by 2 feet wide by 3 feet high, and the hose that is filling the tank is delivering water at a rate of 0.5 cubic feet per minute. +

      + +
      + The empty aquarium, with length 4 feet, width 2 feet, and height 3 feet. + + The empty aquarium + +
      +
      + The aquarium partially filled to some unmarked height + + The aquarium partially filled + +
      + +
      +
        +
      1. +

        + What are some different quantities that are changing in this scenario? +

        +

        + Both the + first changing quantity + amount of water in the tank + capacity of the tank + length of the water + depth (height) of the water + and the + second changing quantity + amount of water in the tank + capacity of the tank + length of the water + depth (height) of the water + are changing as the hose delivers water into the tank. + correct changing quantities + $c1.selectedIndices=1 and $c2.selectedIndices=4 + $c2.selectedIndices=1 and $c1.selectedIndices=4 + +

        + +
      2. +
      3. +

        + After 1 minute has elapsed, how much water is in the tank? +

        +

        + amount of water after 1 minute cubic feet $amount1 = 0.5 +

        +

        + At this moment, how deep is the water? +

        +

        + depth of water after 1 minute feet $depth1 = 0.5/8$depth1-.0625 < .01 +

        + Your answer is close to the correct answer. Make sure to either enter the exact fraction or use all the decimal places and don't round. +
      4. +
      5. +

        + How much water is in the tank and how deep is the water after 2 minutes? +

        +

        + 1 cubic feet and 1/8 feet +

        +

        + After 3 minutes? +

        +

        + 1.5 cubic feet and 1.5/8 feet +

        +
      6. +
      7. +

        + How long will it take for the tank to be completely full? +

        +

        + $time=48 +

        + +

        + How much water is in a full tank? amount of water in a full tank24cubic feet +

        +
        +
      8. +
      \ No newline at end of file diff --git a/source/previews/doenet/PA-changing-aroc-D.doenetml b/source/previews/doenet/PA-changing-aroc-D.doenetml new file mode 100644 index 00000000..c0949003 --- /dev/null +++ b/source/previews/doenet/PA-changing-aroc-D.doenetml @@ -0,0 +1,168 @@ + + + + + + + + + + + + + + + + + + 64-16(x-1)^2 + 64-16(x-1)^2 + x=0 + x=1/2 + x=1 + x=3/2 + x=2 + x=3 + + + + domain of s of t[0,3][0,64](-\infty,64](-\infty,\infty) + + + + + +

      + Let the height function for a ball tossed vertically be given by s(t) = 64 - 16(t-1)^2, + where t is measured in seconds and s is measured in feet above the ground. +

      + + + + + + + + + diff --git a/source/previews/doenet/PA-changing-combining-D.doenetml b/source/previews/doenet/PA-changing-combining-D.doenetml new file mode 100644 index 00000000..782ea21a --- /dev/null +++ b/source/previews/doenet/PA-changing-combining-D.doenetml @@ -0,0 +1,133 @@ + + + + + + + + + + + + + + + + + + 5 10 15 20 25 + 9 5 3 2 3 + + + -3x-8 + + + -2/5 x-1/5 + + + -2x+3 + + + + + 4x+12 + + + -1/2 x+3 + + + + + +

      + We will explore some different ways of combining functions. +

      +
        +
      1. +

        + First, consider the functions f(x) and g(x) with values given in the table below. +

        + + + x + 0 + 1 + 2 + 3 + 4 + + + f(x) + $f[1] + $f[2] + $f[3] + $f[4] + $f[5] + + + g(x) + $g[1] + $g[2] + $g[3] + $g[4] + $g[5] + + +

        + Let h(x)=f(x)+g(x). Then
        + \hspace{.3in}h(3)=f\big(input of f3\big)+g\big(input of g3\big)=value of h of 3$f[4]+$g[4] +

        +

        + Let k(x)=f(x)\cdot g(x). Then
        + \hspace{.3in}k(0)=f\big(input of f0\big)\cdot g\big(input of g0\big)=value of k of 0$f[1]*$g[1] +

        +
      2. +
      3. +

        + Now consider the functions p(x) and q(x) shown in the graph below. +

        + + graph of 2 piecewise linear functions and a moveable point +

        The first piece of p(x) is a line starting at the point (-4,4) and ending at the point (-3,1).
        The second piece of p(x) is a line starting at the point (-3,1) and ending at the point (2,-1).
        The third piece of p(x) is a line starting at the point (2,-1) going through the point (3,-3) and ending where x=4.

        +

        The first piece of q(x) is a line starting at the point (-4,-4) and ending at the point (-2,4).
        The second piece of p(x) is a line starting at the point (-2,4) and ending at the point (4,1).

        + $p + + $q + + (-1,-3) +
        +

        + Calculate exactly: You can use the slope and the change in x to see exactly how much the y-value has changed from a known y-value. Or, you can find the equation of a line from the slope and a point on the line, and use the equation to exactly calculate the y-value for p(-1).$$p(-1).
        + Calculate exactly: You can use the slope and the change in x to see exactly how much the y-value has changed from a known y-value. Or, you can find the equation of a line from the slope and a point on the line, and use the equation to exactly calculate the y-value for q(-1).$$q(-1).
        +

        +

        + Let r(x) = p(x) - q(x). Then
        + $$p(-1)-$$q(-1) +

        +

        + Note that r(x)=0 means that p(x)-q(x)=0, which means that p(x)=q(x). Drag the point on the above graph to a location where r(x)=0. abs($r0.x + 61/22)< 0.03 and abs($r0.y + 4*61/22-12)< 0.03 +

        +

        + Calculate exactly: You can use the slope and the change in x to see exactly how much the y-value has changed from a known y-value. Or, you can find the equation of a line from the slope and a point on the line, and use the equation to exactly calculate the y-value for p(1).$$p(1).
        + Calculate exactly: You can use the slope and the change in x to see exactly how much the y-value has changed from a known y-value. Or, you can find the equation of a line from the slope and a point on the line, and use the equation to exactly calculate the y-value for q(1).$$q(1).
        +

        +

        + Let s(x) = \frac{p(x)}{q(x)}. Then
        + $$p(1)/$$q(1) +

        +

        + We have reproduced the graph of p(x) and q(x) below.
        Note that a fraction is undefined when the denominator is 0. Drag the point on the below graph to a location where s(x) is undefined. abs($sundef.x + 3)< 0.03 and abs($sundef.y - 0)< 0.03 +

        + + graph of 2 piecewise linear functions and a moveable point +

        The first piece of p(x) is a line starting at the point (-4,4) and ending at the point (-3,1).
        The second piece of p(x) is a line starting at the point (-3,1) and ending at the point (2,-1).
        The third piece of p(x) is a line starting at the point (2,-1) going through the point (3,-3) and ending where x=4.

        +

        The first piece of q(x) is a line starting at the point (-4,-4) and ending at the point (-2,4).
        The second piece of p(x) is a line starting at the point (-2,4) and ending at the point (4,1).

        + $p + + $q + + (-1,-3) +
        +
      4. +
      + diff --git a/source/previews/doenet/PA-changing-composite-D.doenetml b/source/previews/doenet/PA-changing-composite-D.doenetml new file mode 100644 index 00000000..8dcd8a89 --- /dev/null +++ b/source/previews/doenet/PA-changing-composite-D.doenetml @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + $f + $g + +

      + Let y = p(x) = 3x - 4 and x = q(t) = t^2 - 1. +

      + +
        +
      1. +

        + Let r(t) = p(q(t)). Determine a formula for r that depends only on t and not on p or q. +

        +

        + t^2-1\bigg)

        +
        +

        + \hspace{.65in}=3\bigg(q of t$firststep\bigg)-4=p of q of t3t^2-73t^2-7 +

        +
        + Your process is correct, but your answer isn't simplified enough, yet. +
      2. +
      3. +

        + In the introductory example with y=f(x) = x^2 - 1 and x=g(t) = 3t - 4, we substituted 3t-4 in for the x and calculated f(g(t)). + + y \amp = f(x) + \amp = f(g(t)) + \amp = f(3t-4) + \amp = (3t-4)^2-1. + + + In both part a. and the example above, we had similar functions + + p(x) \amp = 3x-4 \amp q(t)\amp=t^2-1 + g(t)\amp = 3t-4 \amp f(x)\amp=x^2-1 + + but we composed them in order of compositionin the same order;in the opposite order; in part a., we substituted the type of functionlinear functionquadratic function into the type of functionlinear functionquadratic function while in the introductory example, we substituted the type of functionlinear functionquadratic function into the type of functionlinear function.quadratic function. + +

        +
      4. +
      5. +

        + Let t = s(z) = \frac{1}{z+4} and recall that x = q(t) = t^2 - 1. Determine a formula for x = q(s(z)) that depends only on z. +

        +

        + 1/(z+4)\bigg)

        +

        + \hspace{.65in}=q of s of z(1/(z+4))^2-1(1/z+4)^2-1(1/(z+4))^2-1 +

        + Your answer is correct, but you could have left it as \displaystyle \left(\frac{1}{z+4}\right)^2-1 or \displaystyle \frac{1}{(z+4)^2}-1. +
      6. +
      7. +

        + Suppose that h(t) = \sqrt{2t^2 + 5}. Determine formulas for two related functions, y = f(x) and x = g(t), so that h(t) = f(g(t)). +

        +

        +
        + +

        +

        + The result of composing f(g(t)) is $$f($g). +

        + + $gfunc=0 and + $ffunc=0 and + $gfunc!=1 and + $ffunc!=1 and + $$f($g) = sqrt(2t^2+5) + + + The composition f(g(t)) is not equal to h(t)=\sqrt{2t^2+5} as required.
        + The function g(t) cannot contain the variable x.
        + The function f(x) cannot contain the variable t.
        + We are looking for two functions that each are related but not the same as h(t); neither f(x) nor g(t) should be just a single variable.
        + You might try setting f(x)=\sqrt{x} +
        +
      8. + +
      \ No newline at end of file diff --git a/source/previews/doenet/PA-changing-functions-crickets-D.doenetml b/source/previews/doenet/PA-changing-functions-crickets-D.doenetml new file mode 100644 index 00000000..9f4935a7 --- /dev/null +++ b/source/previews/doenet/PA-changing-functions-crickets-D.doenetml @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + +

      + Use the equation T = 40 + 0.25N that relates the temperature, T, to the number of chirps per minute, N, to respond to the questions below. The equation is also called Dolbear's Law. +

      +
        +
      1. +

        + If we hear snowy tree crickets chirping at a rate of 92 chirps per minute, what does Dolbear's Law suggest should be the outside temperature? +

        +

        + temperature at 92 chirps per minute40+0.25*92^\circ F \, +

        +
      2. +
      3. +

        + If the outside temperature is 77^\circ F, how many chirps per minute should we expect to hear? +

        +

        + chirps per minute at 77 degrees Fahrenheit 4*(77-40)chirps per minute +

        +
      4. +
      5. +

        + Is the model valid for determining the number of chirps one should hear when the outside temperature is 35^\circ F? Why or why not? +

        +

        + yes or no + Yes + No + because + reason part 1 + we can find a value of N which makes T equal 35, + we can't find a value of N which makes T equal 35, + T adds a quarter of the number of chirps per minute to 40, + and + reason part 2 + N=-20. + N=20. + crickets can't chirp a negative number of times per minute. + + correct explanation + $c1.selectedIndex=2 and $c2.selectedIndices=3 and $c3.selectedIndices=3 + +

        + +
      6. +
      7. +

        + Suppose that in the morning an observer hears 65 chirps per minute, and several hours later hears 75 chirps per minute. How much has the temperature risen between observations? +

        +

        + $changetemp=2.5 +

        + +
        +

        + What temperature corresponds to 65 chirps per minute? temperature at 65 chirps per minute56.25^\circ F +

        +

        + What temperature corresponds to 75 chirps per minute? temperature at 75 chirps per minute58.75^\circ F +

        +
        +
        +
      8. + +
      9. +
        +

        + Dolbear's Law is known to be accurate for temperatures from 50^\circ to 85^\circ. +

        +

        + What is the fewest number of chirps per minute an observer could expect to hear? fewest chirps per minute40 chirps per minute +

        +

        + What is the greatest number of chirps per minute an observer could expect to hear? greatest chirps per minute180 chirps per minute +

        +
        +
      10. +
      \ No newline at end of file diff --git a/source/previews/doenet/PA-changing-inverse-F-C-D.doenetml b/source/previews/doenet/PA-changing-inverse-F-C-D.doenetml new file mode 100644 index 00000000..4256ffb3 --- /dev/null +++ b/source/previews/doenet/PA-changing-inverse-F-C-D.doenetml @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + +

      + Recall that F = g(C) = \frac{9}{5}C + 32 is the function that takes Celsius temperature inputs and produces the corresponding Fahrenheit temperature outputs. +

      +
        +
      1. +

        + Solve the equation F = \frac{9}{5}C + 32 for C in terms of F. +

        +

        + The first step in solving the equation F = \frac{9}{5}C + 32 for C in terms of F is possible first operation + Multiply both sides by \frac{9}{5}. + Multiply both sides by \frac{5}{9}. + Subtract 32 from both sides. + Add 32 to both sides. + + \amp F\amp \amp = \frac{9}{5}C\amp \amp + \amp 32 + \amp \amp-32\amp= \amp \amp \amp-32 + \amp\amp F-32\amp = \frac{9}{5}C\amp \amp \amp + +

        +

        + The second step in solving the equation F = \frac{9}{5}C + 32 for C in terms of F is possible second operation + Multiply both sides by \frac{9}{5}. + Multiply both sides by \frac{5}{9}. + Subtract 32 from both sides. + Add 32 to both sides. + + F-32\amp = \frac{9}{5}C + \frac{5}{9}(F-32)\amp = \frac{5}{9}\cdot\frac{9}{5}C + \frac{5}{9}(F-32)\amp = C + +

        +
      2. +
      3. +

        + Note that the equation C = \frac{5}{9}(F-32) expresses C as a function of F. Call this function h so that C = h(F) = \frac{5}{9}(F-32). +

        +

        + Find the simplest expression that you can for the composite function j(C) = h(g(C)). +

        +

        + j(C) = h(g(C))=\frac{5}{9}\big(g(C)-32\big)
        + Enter the expression for g(C).9/5 C +32-32\bigg)
        + Calculate and simplify the line above to find the simplest expression for h(g(C)).C +

        +
      4. +
      5. +

        + Find the simplest expression that you can for the composite function k(F) = g(h(F)). +

        +

        + k(F) = g(h(F))=\frac{9}{5}h(F)+32
        + Enter the expression for h(F).5/9(F-32)\bigg)+32
        + Calculate and simplify the line above to find the simplest expression for g(h(F)).F +

        + +
      6. +
      7. +

        + Complete the following sentences to explain why the functions j and k are so simple. +

        +

        + The function g(C) takes in a units on the input to gCelsiusFahrenheittemperature and produces the same temperature converted to units on the output of gCelsiusFahrenheit while the function h(F) takes in a units on the input to hCelsiusFahrenheittemperature and produces the same temperature coverted to units on the output of gCelsius.Fahrenheit. +

        +

        + Then the function j(C)=h(g(C)) starts by taking in a units on the input to gCelsiusFahrenheittemperature and produces the same temperature converted to units on the output of gCelsiusFahrenheit and then h is applied to that output and converts it back to the equivalent temperature in units on the output of hCelsius.Fahrenheit. Whatever temperature we started with is also the one we ended with. +

        +

        + Similarly, the function k(F)=g(h(F)) starts by taking in a units on the input to hCelsiusFahrenheittemperature and produces the same temperature converted to units on the output of hCelsiusFahrenheit and then g is applied to that output and converts it back to the equivalent temperature in units on the output of hCelsius.Fahrenheit. Whatever temperature we started with is again the same as the one we ended with. +

        +
      8. +
      \ No newline at end of file diff --git a/source/previews/doenet/PA-changing-linear-3-ex-D.doenetml b/source/previews/doenet/PA-changing-linear-3-ex-D.doenetml new file mode 100644 index 00000000..e212cc30 --- /dev/null +++ b/source/previews/doenet/PA-changing-linear-3-ex-D.doenetml @@ -0,0 +1,159 @@ + + + + + + + + + + + + + + + + + + 7-3x + 0.5x-0.25 + -1/3*x+7/3 + + +
        +
      1. +

        + Let y = f(x) = 7 - 3x. Determine AV_{[-3,-1]}, AV_{[2,5]}, and AV_{[4,10]} for the function f.

        +

        + $AVneg3neg1.numerator=$$f(-1)-$$f(-3) and $AVneg3neg1.denominator=2=single answer for the average rate of change from negative 3 to negative 1($$f(-1)-$$f(-3))/(-1+3)($$f(-1)-$$f(-3))/(-1+3) +

        + Your process is correct, but you need to enter your answer as a single number. +

        + $AV25.numerator=$$f(5)-$$f(2) and $AV25.denominator=3=single answer for the average rate of change from 2 to 5($$f(5)-$$f(2))/(5-2)($$f(5)-$$f(2))/(5-2) +

        + Your process is correct, but you need to enter your answer as a single number. +

        + $AV410.numerator=$$f(10)-$$f(4) and $AV410.denominator=6=single answer for the average rate of change from 4 to 10($$f(10)-$$f(4))/(10-4)($$f(10)-$$f(4))/(10-4) +

        + Your process is correct, but you need to enter your answer as a single number. +
      2. +
      3. +

        + Let y = g(x) be given by the data in the following table. +

        + + + x + -5 + -4 + -3 + -2 + -1 + + + g(x) + -2.75 + -2.25 + -1.75 + -1.25 + -0.75 + + + x + 0 + 1 + 2 + 3 + 4 + + + g(x) + -0.25 + 0.25 + 0.75 + 1.25 + 1.75 + + +

        + Determine AV_{[-5,-2]}, AV_{[-1,1]}, and AV_{[0,4]} for the function g. +

        +

        + $AVgneg5neg2.numerator=$$g(-2)-$$g(-5) and $AVgneg5neg2.denominator=3=single answer for the average rate of change of g from -5 to -2($$g(-2)-$$g(-5))/(-2+5)1/2($$g(-2)-$$g(-5))/(-2+5) +

        + Your process is correct, but you need to enter your answer as a single number in reduced form. +

        + $AVgneg11.numerator=$$g(1)-$$g(-1) and $AVgneg11.denominator=2=single answer for the average rate of change of g from -1 to 1($$g(1)-$$g(-1))/(2)1/2($$g(1)-$$g(-1))/(2) +

        + Your process is correct, but you need to enter your answer as a single number in reduced form. +

        + $AVg04.numerator=$$g(4)-$$g(0) and $AVg04.denominator=4=single answer for the average rate of change of g from 0 to 4($$g(4)-$$g(0))/(4)1/2($$g(4)-$$g(0))/(4) +

        + Your process is correct, but you need to enter your answer as a single number in reduced form. + +
      4. +
      5. +

        + Consider the function y = h(x) defined by the graph in the following figure. +

        + + graph of a line through the points (-5,4) and (-2,3) + + Graph of a line going through the points (-5,4), (-2,3), (1,2) and (4,1) + + + + + + + + $h + +

        + Determine AV_{[-5,-2]}, AV_{[-1,1]}, and AV_{[0,4]} for the function h. Use exact values, not a decimal approximation. +

        +

        + -1/3-1/3 +

        + Your answer is close, but is not exact or is not simplified. Enter your answer as a fraction using exact values from the graph. +

        + -1/3-1/3 +

        + Your answer is close, but is not exact or is not simplified. How does the answer to this question relate to the answer to AV_{[-5,-2]}? +

        + -1/3-1/3 +

        + Your answer is close, but is not exact or is not simplified. How does the answer to this question relate to the answer to AV_{[-5,-2]}? +
      6. +
      7. +

        + Note that in each of the three examples above, the functions involved were relation of the functionsthe same functiondifferent functions having relation of the valuesthe samedifferent y-values and relation of the rates of changethe samedifferent rates of change, but within each example, the value of AV_{[a,b]} was relation of the AVthe samedifferent for different values of a and b. +

        +
      8. +
      9. +

        + For the function y = f(x) = 7 - 3x from (a), find the simplest expression you can for + + AV_{[a,b]} = \frac{f(b)-f(a)}{b-a} + + where a \ne b. +

        +

        + 7-3b +

        +

        + 7-3a +

        +

        + -3b+3a-3(b-a)3(a-b)-3b+3a +

        + Your process is correct, but your answer isn't simplified enough, yet. +

        + -3-3 +

        + Your process is correct, but your answer isn't simplified enough, yet. +

        + Does your answer to \displaystyle AV_{[a,b]} for this function depend on a or b? yes or noYesNo Does that surprise you? What do you wonder? +

        +
      10. +
      \ No newline at end of file diff --git a/source/previews/doenet/PA-changing-quadratic-D.doenetml b/source/previews/doenet/PA-changing-quadratic-D.doenetml new file mode 100644 index 00000000..bf293b3f --- /dev/null +++ b/source/previews/doenet/PA-changing-quadratic-D.doenetml @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + -5*x^2+20x+25 + + +

      + A water balloon is tossed vertically from a fifth story window. Its height, h, in meters, at time t, in seconds, is modeled by the function + + h = q(t) = -5t^2 + 20t + 25. + +

      +
        +
      1. +

        + Complete the table of function values below. For example, q(0)=-5(0)^2+20 \cdot 0 + 25 =25, so we've entered that in the table below under the input value 0. Enter each answer as a single number. +

        +
        + + + t + 0 + 1 + 2 + 3 + 4 + 5 + + + q(t) + 25 + q of 1$$q(1) + q of 2$$q(2) + q of 3$$q(3) + q of 4$$q(4) + q of 5$$q(5) + + +
        + +

        + Now use the values you computed to calculate AV_{[a,b]} for different intervals [a,b]. For example, AV_{[0,1]}=\frac{q(1)-q(0)}{1-0}=\frac{40-25}{1}=15. Enter each answer as a single number. +

        + +
        + + + AV_{[0,1]} + AV_{[1,2]} + AV_{[2,3]} + AV_{[3,4]} + AV_{[4,5]} + + + 15 + average rate of change of q from 1 to 2$$q(2)-$$q(1) + q of 2$$q(3)-$$q(2) + q of 3$$q(4)-$$q(3) + q of 4$$q(5)-$$q(4) + + +
        +
      2. +
      3. +

        + Complete the following sentences to record some observations about the function q(t) and its rate of change AV, the average velocity of the water balloon. +

        +

        + The function h=q(t) has values which change how q changesby the same amountin a symmetric patternseemingly at random as the input changes by the same amount, meaning that the average rate of change is behavior of the values of AVis constantis not constant and so the function q(t) description of qisis not a linear function. However, the values of AV itself change how AV changesby the same amountin a symmetric pattern as the input changes by the same amount, meaning that the average rate of change of AV is how AV changesis constantis not constant and so the function AV description of AVisis not a linear function. +

        +
      4. +
      5. +

        + When does the water balloon land on the ground?
        + 5units of tfeetmeterssecondsminutesfeet per minutemeters per second +

        +

        + What is the average velocity of the water balloon in the final second before it lands?
        + -25units of AVfeetmeterssecondsminutesfeet per minutemeters per second +

        +

        + What is the average velocity of the water balloon on the interval [4.9,5]?
        + -29.5units of AVfeetmeterssecondsminutesfeet per minutemeters per second +

        +
      6. +
      diff --git a/source/previews/doenet/PA-changing-transformations-quadratic-D.doenetml b/source/previews/doenet/PA-changing-transformations-quadratic-D.doenetml new file mode 100644 index 00000000..c90ae3c7 --- /dev/null +++ b/source/previews/doenet/PA-changing-transformations-quadratic-D.doenetml @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + $func + 0 + 1 + -1 + + +

      + We are going to explore transformations of a familiar quadratic function, y=x^2. +

      + +
        +
      1. +

        + First, move the slider for a back and forth and observe the effect(s) on the graph of f(x)+a compared to the graph of f(x). You can also drag the point around to see how the value of a changes. +

        + + + graph of a function a plus f of x for different values of a + $f + $f+$a + ($zero,$$f($zero)+$a) + + + + + +

        + Set the value of the slider to a=9. + $a=9
        + You can move it again afterwards. +

        +

        + Which of the following observations are true for
        y=f(x)+a? + properties of a plus f of xThe graph of f(x) is deformed (stretched or shrunk) vertically by a.The graph of f(x) is shifted vertically by a.The graph of f(x) is shifted horizontally by a.The graph of f(x) is reflected across the x-axis when a is negative.The graph is the same as f(x) when a=0.The graph is the same as f(x) when a=1. +

        +
      2. +
      3. +

        + Next, move the slider for b back and forth and observe the effect(s) on the graph of f(x-b) compared to the graph of f(x). You can also drag the point around to see how the value of b changes. +

        + + + graph of a function f of the quantity x minus b for different values of b + $f + $$f(x-$b) + ($b,$$fxminusb($b)) + + + + + +

        + Set the value of the slider to b=6. + $b=6
        + You can move it again afterwards. +

        +

        + Which of the following observations are true for
        y=f(x-b)? + properties of f of the quantity x minus bThe graph of f(x) is deformed (stretched or shrunk) vertically by b.The graph of f(x) is shifted vertically by b.The graph of f(x) is shifted horizontally by b.The graph of f(x) is reflected across the x-axis when b is negative.The graph is the same as f(x) when b=0.The graph is the same as f(x) when b=1. +

        +
      4. +
      5. +

        + Third, move the slider for c back and forth and observe the effect(s) on the graph of cf(x) compared to the graph of f(x). You can also drag the point around to see how the value of c changes. +

        + + + graph of a function c times f of x for different values of c + $f + $c*$f + ($one,$c*$$f($one)) + ($zero,$c*$$f($zero)) + + + + + +

        + Set the value of the slider to c=6. + $c=6
        + You can move it again afterwards. +

        +

        + Which of the following observations are true for
        y=cf(x)? + properties of c times f of x The graph of f(x) is deformed (stretched or shrunk) vertically by a.The graph of f(x) is shifted vertically by c.The graph of f(x) is shifted horizontally by c.The graph of f(x) is reflected across the x-axis when c is negative.The graph is the same as f(x) when c=0.The graph is the same as f(x) when c=1. +

        +
      6. +
      7. +

        + Finally, change the function entered below and explore the sliders above again for this new function. Do any of your selected choices change when the function we are comparing to has changed? You can come up with your own functions to try, but some good ones to try that will fit in the window nicely could be f(x)=x+1, f(x) = x^2 + 2x + 3, or f(x) = x^3 - 1. +

        +

        + +

        +
      8. +
      \ No newline at end of file diff --git a/source/previews/doenet/PA-circular-sine-D.doenetml b/source/previews/doenet/PA-circular-sine-D.doenetml new file mode 100644 index 00000000..ad3ef6ab --- /dev/null +++ b/source/previews/doenet/PA-circular-sine-D.doenetml @@ -0,0 +1,245 @@ + + + + + + + + + + + + + + + + + + pi/6 pi/4 pi/3 pi/2 2pi/3 3pi/4 5pi/6 pi 7pi/6 5pi/4 4pi/3 3pi/2 5pi/3 7pi/4 11pi/6 2pi + (sqrt(3)/2,1/2) (sqrt(2)/2, sqrt(2)/2) (1/2,sqrt(3)/2) (0,1) (-1/2,sqrt(3)/2) (-sqrt(2)/2, sqrt(2)/2) (-sqrt(3)/2,1/2) (-1,0) (-sqrt(3)/2,-1/2) (-sqrt(2)/2, -sqrt(2)/2) (-1/2,-sqrt(3)/2) (0,-1) (1/2,-sqrt(3)/2) (sqrt(2)/2, -sqrt(2)/2) (sqrt(3)/2,-1/2) (1,0) + + (cos($anglelist[$k]),sin($anglelist[$k])) + + + $listEnt + -sqrt(3)/2 + + + $P.coords=(cos($anglelist[$n]),sin($anglelist[$n])) + + + + + $anglelist[1] $plist[1] + + + $anglelist[2] $plist[2] + + + $anglelist[3] $plist[3] + + + $anglelist[4] $plist[4] + + + $anglelist[5] $plist[5] + + + $anglelist[6] $plist[6] + + + $anglelist[7] $plist[7] + + + $anglelist[8] $plist[8] + + + $anglelist[9] $plist[9] + + + $anglelist[10] $plist[10] + + + $anglelist[11] $plist[11] + + + $anglelist[12] $plist[12] + + + $anglelist[13] $plist[13] + + + $anglelist[14] $plist[14] + + + $anglelist[15] $plist[15] + + + $anglelist[16] $plist[16] + + + + + arccos($P.x) + + + 2pi-arccos($P.x) + + $P.coords + + + + + + + + graph of a unit circle and moveable point on the circle + x + y + + $unitcir$points(.9,0.1) + + + + + + (1/5cos(t), 1/5sin(t)) + + + (1/5cos(t), 1/5sin(t)) + + + + + + + + graph of a function whose height is the y value of the point on the unit circle + t + h=f(t) + + + + (t, sin(t)) + + (arccos($P.x),$P.y) + + (2pi-arccos($P.x),$P.y) + + + + + + + + +

      + When t=$decangle[1][1], the coordinates of the point on the unit circle are: $decangle[1][2] +

      + +
        +
      1. +

        + Drag the point on the unit circle to the location where
        t=\frac{\pi}{4}. $P=$plist[2] +

        +

        + What is the exact value of f\left(\frac{\pi}{4}\right)?
        + sqrt(2)/2 +

        +

        + What is the exact value of f\left(\frac{\pi}{3}\right)?
        + sqrt(3)/2 +

        +
      2. +
      3. +

        + Complete the following table with the exact values of h that correspond to the stated inputs. +

        + + + t + 0 + $anglelist[1] + $anglelist[2] + $anglelist[3] + $anglelist[4] + + + h + value of h0 + value of h$plist[1][2] + value of h$plist[2][2] + value of h$plist[3][2] + value of h$plist[4][2] + + + t + $anglelist[5] + $anglelist[6] + $anglelist[7] + $anglelist[8] + $anglelist[9] + + + h + value of h$plist[5][2] + value of h$plist[6][2] + value of h$plist[7][2] + value of h$plist[8][2] + value of h$plist[9][2] + + + t + $anglelist[10] + $anglelist[11] + $anglelist[12] + $anglelist[13] + $anglelist[14] + + + h + value of h$plist[10][2] + value of h$plist[11][2] + value of h$plist[12][2] + value of h$plist[13][2] + value of h$plist[14][2] + + + t + $anglelist[15] + $anglelist[16] + + + + + + h + value of h$plist[15][2] + value of h$plist[16][2] + + + + + +
      4. +
      5. +

        + Use the patterns you observe above to answer the following questions. +

        +

        + What is the exact value of f\left(\frac{11\pi}{4}\right)?
        + -sqrt(2)/2 +

        +

        + What is the exact value of f\left(\frac{14\pi}{3}\right)?
        + -sqrt(3)/2 +

        +
      6. +
      7. +

        + Give four different values of t for which f(t) = -\frac{\sqrt{3}}{2}. Separate your answers with commas.
        + minWidth="200">$tsEnt.numComponents=4 and sin($tsEnt[1])=$ans and sin($tsEnt[2])=$ans and sin($tsEnt[3])=$ans and sin($tsEnt[4])=$ans +

        +
      8. + +
      \ No newline at end of file diff --git a/source/previews/doenet/PA-circular-sinusoidal-D.doenetml b/source/previews/doenet/PA-circular-sinusoidal-D.doenetml new file mode 100644 index 00000000..4245d649 --- /dev/null +++ b/source/previews/doenet/PA-circular-sinusoidal-D.doenetml @@ -0,0 +1,503 @@ + + + + + + + + + + + + + + + + + + 0 + -2.5 + -6 + $periodg.length/pi*12/12 pi + -2.5 + -6 + $periodgb.length/pi*12/12 pi + -2.5 + -6 + $periodgc.length/pi*12/12 pi + + (0,1.5) + + (0,$horiz) + (2,$horiz) + ($vert,$zero) + ($vert,-1.5) + $ampa1.creditAchieved=1 and $ampa2.creditAchieved=1 and $mida1.creditAchieved=1 and $mida2.creditAchieved=1 and $perioda1.creditAchieved=1 and $perioda2.creditAchieved=1 + + (0,1.5) + + (0,$horizb) + (2,$horizb) + ($vertb,$zero) + ($vertb,-1.5) + $ampb1.creditAchieved=1 and $ampb2.creditAchieved=1 and $midb1.creditAchieved=1 and $midb2.creditAchieved=1 and $periodb1.creditAchieved=1 and $periodb2.creditAchieved=1 + + (0,1.5) + + (0,$horizc) + (2,$horizc) + ($vertc,$midgc.yintercept) + ($vertc,-1.5) + $ampc1.creditAchieved=1 and $ampc2.creditAchieved=1 and $midc1.creditAchieved=1 and $midc2.creditAchieved=1 and $periodc1.creditAchieved=1 and $periodc2.creditAchieved=1 + + +

      + Let f(t) = \cos(t), which has a midline of y=0, an amplitude of a=1, and a period of P=2\pi. +

      +

      + Answer all of the questions below without using a graph; after answering, a graph will appear and you'll either confirm or reflect on your answers using a graph. Note that there could be more than one correct answer to some questions. +

      + + + + + + + \ No newline at end of file diff --git a/source/previews/doenet/PA-circular-traversing-D.doenetml b/source/previews/doenet/PA-circular-traversing-D.doenetml new file mode 100644 index 00000000..2de94c7c --- /dev/null +++ b/source/previews/doenet/PA-circular-traversing-D.doenetml @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + 0 + 150/(2*pi) + + + (cos($n/30 t-pi/2), sin($n/30 t -pi/2)+1) + + + + + (2sin($n*pi/60)*cos($n*pi/60), 2sin($n*pi/60)*sin($n*pi/60)) + + + + + + + (t+2, 1+sin((t-pi/2))) + + + (2+$n/60*2*pi,$cirpt.y) + + +

      + A simplified version of the ferris wheel scenario pictured in Figure 2.1.1 has been reproduced below. +

      + + +a point going around a circle and a curve showing its height and distance + + $htvcir + + + + + + + $cirpt + $height + $height2 + $circum + $htvcirpt + $lencircum + + + + + + + +

      + Assume that the height, h, of the moving point (the cab in which you are riding), and the distance, d, that the point has traveled around the circumference of the ferris wheel are both measured in meters. Assume also that the circumference of the ferris wheel is 150 meters. + +

      + +
        +
      1. +

        + Recall that the circumference, C, of a circle is connected to the circle's radius, r, by the formula C = 2\pi r. +

        +

        + What is the radius of the ferris wheel?
        $r

        +

        + How high is the highest point on the ferris wheel?
        2*$r2*$rEnt +

        +
      2. +
      3. +

        + How high is the cab after it has traveled 1/4 of the circumference of the circle?
        + $r +

        + In the animation above, the cab goes all the way around the circumference of the circle in 60 steps, and so the cab will be 1/4 of the way around when the slider is set to 15. +
      4. +
      5. +

        + How much distance along the circle has the cab traversed at the moment it first reaches a height of \frac{150}{\pi} \approx 47.75 meters?
        + + 7575 + +

        + Your answer is close, but we can be exact. What fraction of the circle has the cab traversed at this moment, and what is the total distance around the circle? +
      6. +
      7. +

        + Complete the following sentences. +

        +

        + The cab's height h at any time can or can'tcancan't be thought of as a function of the cab's distance traveled d because given any input or outputinput value of dinput value of houtput value of doutput value of h there is or is notisis not exactly one possible input or outputinput value of d.input value of h.output value of d.output value of h. +

        +

        + The cab's distance traveled d at any time can or can'tcancan't be thought of as a function of the cab's height h because for at least one input or outputvalue of d, value of h,number of inputs or outputsthere are multiple values of hthere are multiple values of dthere is exactly one value of hthere is exactly one value of d corresponding to that height or distancedistance.height. +

        + +
      8. +
      \ No newline at end of file diff --git a/source/previews/doenet/PA-circular-unit-circle-D.doenetml b/source/previews/doenet/PA-circular-unit-circle-D.doenetml new file mode 100644 index 00000000..5f13ee81 --- /dev/null +++ b/source/previews/doenet/PA-circular-unit-circle-D.doenetml @@ -0,0 +1,210 @@ + + + + + + + + + + + + + + + + + + + + + + + + + (cos($k/24*2pi),sin($k/24*2pi)) + + + + arccos($P.x)*24/2/pi + (2*pi-arccos($P.x))*24/2/pi + + $num2a$num1a + + arccos($P2.x)*24/2/pi + (2*pi-arccos($P2.x))*24/2/pi + + $num2$num1 + + + + $P=$points[$ka] + + + true + true + true + true + true + true + true + true + true + true + + + 13pi/12 7pi/6 5pi/4 4pi/3 17pi/12 3pi/2 19pi/12 5pi/3 7pi/4 11pi/6 23pi/12 + 13pi/12 7pi/6 5pi/4 4pi/3 17pi/12 3pi/2 19pi/12 5pi/3 7pi/4 11pi/6 23pi/12 + + + $kz/12pi + + +

      + In the following figure there are 24 equally spaced points on the unit circle. Since the circumference of the unit circle is 2\pi, each of the points is \frac{1}{24} \cdot 2\pi = \frac{\pi}{12} units apart (traveled along the circle). Thus, the first point counterclockwise from (1,0) corresponds to the distance d = \frac{\pi}{12} traveled along the unit circle. The second point is twice as far, and thus d = 2 \cdot \frac{\pi}{12} = \frac{\pi}{6} units along the circle away from (1,0). + +

      +

      + Move the large square point to each of the points in the remainder of the top half of the circle and enter the distance traveled along the circle counterclockwise from the point (1,0) to that location. +

      +

      + When you have entered the correct distance for the selected point and hit enter or clicked outside the box, the distance traveled will appear on the graph near that point. +

      + + + +unit circle with 24 equally spaced points + + $points + $points(cos(pi/12),sin(pi/12)) + + + (cos(t), sin(t)) + + + (cos(t), sin(t)) + + + + + + + + + + + + + + + +
      +

      + + + + + + + + + + + + + + +

      +

      + Hit Check Work when all of the correct distances appear for the top half of the circle and (-1,0), but not (1,0).
      + $H3=false and $H4=false and $H5=false and $H6=false and $H7=false and $H8=false and $H9=false and $H10=false and $H11=false and $H12=false +

      +
      +
      + +

      +Continuing around the circle counterclockwise after (-1,0), enter the remaining distances in order, stopping just before you get back to the point (1,0). Use commas to separate your answers. +

      +

      +values for the distances covered in the bottom half of the unit circle$dists$dists2 +

      +You have the correct distances, but they're not going in order counterclockwise starting with the first point after (-1,0). +

      + Which distance along the unit circle corresponds to \frac{1}{4} of a full rotation around? distance for a quarter of the way aroundpi/2 +

      +

      + Which distance along the unit circle corresponds to \frac{5}{8} of a full rotation around? distance for a quarter of the way around5pi/4 +

      + + You can divide the circle up into 8 equal pieces and go around 5 of them to answer this question.
      + Or, you can recall that the total distance around a circle with radius 1 is 2\pi, and note that \frac{1}{4}\cdot 2\pi=\frac{\pi}{2}. You can use this same method to calculate the distance along the unit circle which corresponds to \frac{5}{8} of a full rotation. +
      +

      + One way to measure angles is connected to the arc length along a circle. For an angle whose vertex is at (0,0) in the unit circle, we say the angle's measure is 1 radian provided that the angle intercepts an arc of the circle that is 1 unit in length, as pictured in the following figure. Note particularly that an angle measuring 1 radian intercepts an arc of the same length as the circle's radius. +

      + + +unit circle with 1 radian shown + + + + + (cos(t), sin(t)) + + + + + + + +unit circle with 24 equally spaced points + + + + + + (cos(pi/6),sin(pi/6))$unitcir2$points + + (cos(t), sin(t)) + + + (cos(t), sin(t)) + + + + + + + + +

      + In the graph on the right, drag the square point so that an angle of \displaystyle \frac{\pi}{3} radians is shown. $numP2=4 +

      +

      + In the graph on the right, drag the square point so that an angle of \displaystyle \frac{3\pi}{4} radians is shown. $numP2=9 +

      +

      + What is the radian measure that corresponds to a 90^\circ angle?
      + pi/2radians +

      + diff --git a/source/previews/doenet/PA-exp-e-D.doenetml b/source/previews/doenet/PA-exp-e-D.doenetml new file mode 100644 index 00000000..62247d98 --- /dev/null +++ b/source/previews/doenet/PA-exp-e-D.doenetml @@ -0,0 +1,149 @@ + + + + + + + + + + + + + + + + + + + $b!= 2 and $b!= 3 and $b!=1/3 and $b!=.33 + + + +

      + The functions 2^t, 3^t, \left(\frac{1}{3}\right)^t, and 2^{kt} appear in the graph below, along with a slider for the value of k and the ability to hide various of the functions. +

      + + +
      +
      +
      +
      + +
      + + graph of four exponential functions, one with a changing parameter + t + + + + + + + + + 2^x + 3^x + (1/3)^x + 2^($k x) + + + + + + + + + +
      + +
        +
      1. +

        + Use the slider to find a value of k so that the graph of 2^{kt} appears to align with the graph of 2^t. $k=1

        +
        +

        + When k=1, the graph of 2^{kt} looks like the graph of 2^t. This makes sense because 2^{1t}=2^{t}. +

        + Enter a number, and use at least 3 digits after the decimal place.2^1.6 +
        +
      2. +
      3. +

        + Use the slider to find a value of k so that the graph of 2^{kt} appears to align with the graph of 3^t. $k=1.6

        +
        +

        + When k=1.6, the graph of 2^{kt} \approx 3^t. +

        + Enter a number, and use at least 3 digits after the decimal place.2^1.6 +
        +
      4. +
      5. +

        + Use the slider to find a value of k so that the graph of 2^{kt} appears to align with the graph of \left(\frac{1}{3}\right)^t. $k=-1.6

        +
        +

        + When k=-1.6, the graph of 2^{kt} \approx \left(\frac{1}{3}\right)^t. +

        + Enter a number, and use at least 3 digits after the decimal place.2^(-1.6) +
        +
      6. +
      7. +

        + Below is another graph and slider, where now you are the one choosing the target function. +

        + +
        +
        + Enter a number between .1 and 30. You are welcome to try other values and see what happens! +
        + + graph of four exponential functions, one with a changing parameter + t + + + + + + + + + $b^x + 2^($k2 x) + + + + + + + +
        +

        + Enter a number for b such that 0.1 \le b \le 30, then use the slider to find a value of k so that the graph of 2^{kt} appears to align with the graph of b^t for your choice of b. Do this at least three times, once for each of the conditions below, and do not reuse any of the functions from above. +

        +

        + When .1 \le b \lt 1: .1<=$b and $b< 1 and ln($b)/ln(2)=$k2 and $differentfcns +

        +

        + When 1 \le b \lt 10 : 1<=$b and $b< 10 and ln($b)/ln(2)=$k2 and $differentfcns +

        +

        + When 11 \le b \le 30 : 11<=$b and $b<= 30 and ln($b)/ln(2)=$k2 and $differentfcns +

        +

        + Do you think you would be able to find a value of k so that 2^{kt} aligns with b^tfor any positive number b if you had freedom to pick any value of k and weren't restricted to a certain range like you are with a slider? +

        +
      8. +
      \ No newline at end of file diff --git a/source/previews/doenet/PA-exp-growth-D.doenetml b/source/previews/doenet/PA-exp-growth-D.doenetml new file mode 100644 index 00000000..372d3621 --- /dev/null +++ b/source/previews/doenet/PA-exp-growth-D.doenetml @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + +

      + Suppose that at age 20 you have $20000 and you can choose between one of two ways to use the money: you can invest it in a mutual fund that will, on average, earn 8% interest annually, or you can purchase a new automobile that will, on average, depreciate 12% annually. Let's explore how the $20000 changes over time. +

      +

      + Let I(t) denote the value of the $20000 after t years if it is invested in the mutual fund, and let V(t) denote the value of the automobile t years after it is purchased. +

      + +
        +
      1. +

        + Determine I(0), I(1), I(2), and I(3). Enter each answer as a single number. +

        +

        + The amount in the account after 0 years; in other words, at the beginning.20000 +

        +

        + The amount in the account after 1 year earning 8 \% interest. Recall that this can be calculated by 1.08\cdot 20000.1.08*20000 +

        +

        + The amount in the account after 2 years earning 8 \% interest. Recall that this can be calculated by 1.08\cdot \big(1.08\cdot 20000\big)=1.08^2\cdot 20000.1.08^2*20000 +

        +

        + The amount in the account after 3 years earning 8 \% interest. Recall that this can be calculated by 1.08\cdot \big(1.08^2\cdot 20000\big)=1.08^3\cdot 20000.1.08^3*20000 +

        +
      2. +
      3. +

        + Note that if a quantity depreciates 12 \% annually then since 100-12=88, this means that after a given year 88 \% of the quantity remains. Compute V(0), V(1), V(2), and V(3). Enter each answer as a single number. +

        +

        + The value of the car after 0 years; in other words, at the beginning.20000 +

        +

        + The value of the car after 1 year depreciating 12 \%. Recall that this can be calculated by .88\cdot 20000.0.88*20000 +

        +

        + The value of the car after 2 years depreciating 12 \%. Recall that this can be calculated by 0.88\cdot \big(0.88\cdot 20000\big)=0.88^2\cdot 20000.0.88^2*20000 +

        +

        + The value of the car after 3 years depreciating 12 \%. Recall that this can be calculated by 0.88\cdot \big(0.88^2\cdot 20000\big)=0.88^3\cdot 20000.0.88^3*20000 +

        +
      4. +
      5. +

        + Based on the patterns in your computations in parts a. and b., determine formulas for I(t) and V(t). +

        +

        + 1.08^t*20000 +

        +

        + 0.88^t*20000 +

        +
      6. +
      7. +

        + The graphs of I(t) and V(t) appear below. +

        + + graph of the functions I and V + t + Value in dollars + + + + + + + + + 2*1.08^x + 2* 0.88^x + + + + +

        + Complete the sentence with some observations about the behavior of the two functions. +

        +

        + Even though both functions had the same form, form of the functions20000t+b20000t^2+bt+cb^t\cdot 2000020000\cos(bt)+c, the function I(t) is behavior of I of tgetting largergetting smallerstaying the same year after year and V(t) is behavior of V of tgetting largergetting smallerstaying the same. At the end of 20 years, the account earning interest is worth amount in I of t around \$ 50000over \$ 90000a couple thousand dollars, while the car that depreciates is worth maybe amount in I of t around \$ 50000over \$ 90000a couple thousand dollars. +

        +

        + What else do you notice and wonder? +

        +
      8. + +
      \ No newline at end of file diff --git a/source/previews/doenet/PA-exp-log-D.doenetml b/source/previews/doenet/PA-exp-log-D.doenetml new file mode 100644 index 00000000..10b178a1 --- /dev/null +++ b/source/previews/doenet/PA-exp-log-D.doenetml @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + +

      + Let P(t) be the powers of 10 function, which is given by P(t) = 10^t. +

      + +
        +
      1. +

        + Complete the following table to generate certain values of P. +

        + + + t + y = 10^t + + + + -3 + 10^{-3} + =decimal value of P of t10^(-3) + + + -2 + value of P of t10^(-2) + =decimal value of P of tEnter something in the first box that has the same form as in the first row, 10^{-3}, and the decimal value will fill in this second box automatically.$Pneg2 + + + -1 + value of P of t10^(-1) + =decimal value of P of tEnter something in the first box that has the same form as in the first row, 10^{-3}, and the decimal value will fill in this second box automatically.$Pneg1 + + + 0 + value of P of t10^(0) + =decimal value of P of tEnter something in the first box that has the same form as in the first row, 10^{-3}, and the decimal value will fill in this second box automatically.$P0 + + + 1 + value of P of t10^(1) + =decimal value of P of tEnter something in the first box that has the same form as in the first row, 10^{-3}, and the decimal value will fill in this second box automatically.$P1 + + + 2 + value of P of t10^(2) + =decimal value of P of tEnter something in the first box that has the same form as in the first row, 10^{-3}, and the decimal value will fill in this second box automatically.$P2 + + + 0 + value of P of t10^(3) + =decimal value of P of tEnter something in the first box that has the same form as in the first row, 10^{-3}, and the decimal value will fill in this second box automatically.$P3 + + + +
      2. +
      3. +

        + We can see that the function P(t) has an inverse function because each output or inputinputoutput of P(t) can be reversed to find a singular output or inputinputoutput; the function P(t) passes the test for inversesVertical Line TestHorizontal Line Test. We know this happens because P(t) is behavior of Psometimes increasingsometimes decreasingalways increasingalways decreasing and so P(t) can't return to the same output value for a different input of t. +

        +
      4. +
      5. +

        + Since P has an inverse function, we know there exists some other function, say L, such that writing y = P(t) says the exact same thing as writing t = L(y). In words, where P produces the result of raising 10 to a given power, the function L reverses this process and instead tells us the power to which we need to raise 10, given a desired result. Complete the following table to generate a collection of values of L. +

        + + + y + t=L(y) + + + 10^{-3} + value of L of yThe input to P(t) which resulted in the output y that appears on the left.-3 + + + 10^{-2} + value of L of yThe input to P(t) which resulted in the output y that appears on the left.-2 + + + 10^{-1} + value of L of yThe input to P(t) which resulted in the output y that appears on the left.-1 + + + 10^{0} + value of L of yThe input to P(t) which resulted in the output y that appears on the left.0 + + + 10^{1} + value of L of yThe input to P(t) which resulted in the output y that appears on the left.1 + + + 10^{2} + value of L of yThe input to P(t) which resulted in the output y that appears on the left.2 + + + 10^{3} + value of L of yThe input to P(t) which resulted in the output y that appears on the left.3 + + + +
      6. +
      7. +

        + [0,\infty)(0,\infty)(-\infty,\infty) because any number 0 and greaterany positive numberany number. [0,\infty)(0,\infty)(-\infty,\infty) because a number 0 and greatera positive numbersome number. +

        +

        + [0,\infty)(0,\infty)(-\infty,\infty) because a number 0 and greatera positive numbersome number, so those are the inputs vs outpursinputs to L(y)inputs to P(t) which then outputs the power needed. [0,\infty)(0,\infty)(-\infty,\infty). +

        +
      8. +
      \ No newline at end of file diff --git a/source/previews/doenet/PA-exp-log-properties-D.doenetml b/source/previews/doenet/PA-exp-log-properties-D.doenetml new file mode 100644 index 00000000..05f23de5 --- /dev/null +++ b/source/previews/doenet/PA-exp-log-properties-D.doenetml @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + +

      + In the following questions, we investigate how
      \log_{10}(a \cdot b) can be equivalently written in terms of \log_{10}(a) and \log_{10}(b). +

      + +
        +
      1. +

        + Write 10^x \cdot 10^y as 10 raised to a single power. + + 10^x \cdot 10^y = 10^{^{\underline{\hspace{.3in}}}} + +Enter the correct expression involving x and y.x+y +

        +

        + 10^x \cdot 10^y = 10^{x+y} +

        +
      2. +
      3. +

        + Enter the simplest possible way to write each of the expressions below.

        +

        + x +

        +

        + y +

        +
      4. +
      5. +

        + Select the reason why each of the following equalities is true. +

        +

        + inside the parentheses 10^x\cdot 10^y=10^{x+y}.we know \displaystyle \log_{10}10^{z}=z, no matter what z is.we know that \displaystyle x= \log_{10}10^{x} and \displaystyle y= \log_{10}10^{y}. +

        +

        + inside the parentheses 10^x\cdot 10^y=10^{x+y}.we know \displaystyle \log_{10}10^{z}=z, no matter what z is.we know that \displaystyle x= \log_{10}10^{x} and \displaystyle y= \log_{10}10^{y}. +

        +

        + inside the parentheses 10^x\cdot 10^y=10^{x+y}.we know \displaystyle \log_{10}10^{z}=z, no matter what z is.we know that \displaystyle x= \log_{10}10^{x} and \displaystyle y= \log_{10}10^{y}. +

        +

        + Putting it all together, + \log_{10}(10^x \cdot 10^y) &= \log_{10}(10^{x+y}) &= x+y &= \log_{10}(10^x) + \log_{10}(10^y). +

        +
      6. +
      7. +

        + Suppose that a and b are positive real numbers, which means that we can think of a as 10^x for some real number x and + b as 10^y for some real number y. That is, say that a = 10^x and b = 10^y. Then we can add those equalities to both ends of the above list of equalities to get + \log_{10}(a \cdot b)\amp= \log_{10}(10^x \cdot 10^y) &= \log_{10}(10^{x+y}) &= x+y &= \log_{10}(10^x) + \log_{10}(10^y)\amp=\log_{10}(\underline{\hspace{.3in}})+ \log_{10}(\underline{\hspace{.3in}}) +

        +

        + where the missing entries are: missing element 1a and missing element 1b +

        +
      8. +
      +

      + In conclusion, \log_{10}(ab)=\log_{10}(a)+\log_{10}(b) +

      \ No newline at end of file diff --git a/source/previews/doenet/PA-exp-modeling-D.doenetml b/source/previews/doenet/PA-exp-modeling-D.doenetml new file mode 100644 index 00000000..d320c329 --- /dev/null +++ b/source/previews/doenet/PA-exp-modeling-D.doenetml @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + + + + upperRight + + + upperLeft + + + + + + + + + + + + + + + + + +

      + The graph below shows the function g(t) = ab^t+c, along with sliders for the values of a, b, and c. We will explore the effects of a, b, and c on the graph. +

      + + +
      + +
      + +
      + +
      + + t + + + + + + + + + + graph of an exponential function with changing parameters + $a*$b^x+$c + (0,$$f(0)) + + + +
      + + + + + + + diff --git a/source/previews/doenet/PA-exp-temp-pop-D.doenetml b/source/previews/doenet/PA-exp-temp-pop-D.doenetml new file mode 100644 index 00000000..24cbcfcc --- /dev/null +++ b/source/previews/doenet/PA-exp-temp-pop-D.doenetml @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + +

      + All of the following situations contain expressions which can be used to model temperature or population growth. In each situation, we will solve for the exact value of various unknown quantities. +

      + + + + + + + \ No newline at end of file diff --git a/source/previews/doenet/PA-poly-infty-D.doenetml b/source/previews/doenet/PA-poly-infty-D.doenetml new file mode 100644 index 00000000..c6583f40 --- /dev/null +++ b/source/previews/doenet/PA-poly-infty-D.doenetml @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + +

      + Complete each of the following statements with an appropriate number or the symbols \infty or -\infty. Do your best to do so without using a graphing utility; instead use your understanding of the function's graph. To enter \infty, simply type the word infinity. +

      + +
        +
      1. +

        + 0 +

        +
      2. +
      3. +

        + infinity +

        +
      4. +
      5. +

        + infinity +

        +
      6. +
      7. +

        + 1
        + Note that when we write t \to 0^+, this means that we are letting t get closer and closer to 0, but only allowing t to take on positive values. +

        +
      8. +
      9. +

        + 35 +

        +
      10. +
      11. +

        + infinity
        + Note that when we write t \to \frac{\pi}{2}^-, this means that we are letting t get closer and closer to \frac{\pi}{2}, but only allowing t to take on values that lie to the left of \frac{\pi}{2}. +

        +
      12. +
      13. +

        + -infinity
        + Note that when we write t \to \frac{\pi}{2}^+, this means that we are letting t get closer and closer to \frac{\pi}{2}, but only allowing t to take on values that lie to the right of \frac{\pi}{2}. +

        +
      14. +
      \ No newline at end of file diff --git a/source/previews/doenet/PA-poly-polynomial-applications-D.doenetml b/source/previews/doenet/PA-poly-polynomial-applications-D.doenetml new file mode 100644 index 00000000..db87db74 --- /dev/null +++ b/source/previews/doenet/PA-poly-polynomial-applications-D.doenetml @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + + 0 + 3 + 6 + 9 + -7 + -7 + -7 + 0 + 0 + 0 + + + 5 + 2 + + + 5 + 1 + + + 2 + 4 + + + + + +

      + A piece of cardboard that is 18 \times 12 (each measured in inches) is being made into a box without a top. To do so, squares are cut from each corner of the cardboard and the remaining sides are folded up, as shown in the diagrams below. +

      + + + + a labeled rectangle showing squares cut out from the corners + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + a box coming from folding up the sides of a piece of paper with squares cut out from the corners + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
      1. +

        + As shown in the diagram, let x be the side length of the squares being cut from the corners of the cardboard, and let \ell, w and h be the length, width and height of the box that results. Write each of the quantities below in terms of x. +

        +

        + x +

        +

        + 12-2x +

        +

        + 18-2x +

        +
      2. +
      3. +

        + We know that the volume of a rectangular box is given by V=\ell w h. Determine a formula for the function V(x) whose output is the volume of the box that results from a square of size x \times x being cut from each corner of the cardboard. +

        +

        + (18-2x)(12-2x)x +

        + linearexponentialdegree 3 polynomialquadraticsinusoidal +
      4. +
      5. +

        + 6 +

        + If any of the sides have length 0, we don't have a three-dimensional box. +
      6. +
      7. +

        + You can enter your answer using interval notation like [0,\pi), or using inequalities such as 0\leq x < \pi.$mi1=(0,6)[0,6) subset $mi1 or (0,6] subset $mi1 +

        + Neither x=0 nor x=6 can be part of the domain, since in both cases one side of the "box" would have length 0 and so it would be flat and wouldn't be a box at all. + +

        + Separate your answers by commas.$mi2=0 6 9 +

        +
      8. +
      \ No newline at end of file diff --git a/source/previews/doenet/PA-poly-polynomials-D.doenetml b/source/previews/doenet/PA-poly-polynomials-D.doenetml new file mode 100644 index 00000000..495ae9e5 --- /dev/null +++ b/source/previews/doenet/PA-poly-polynomials-D.doenetml @@ -0,0 +1,154 @@ + + + + + + + + + + + + + + + + + + + $f.numMinima=2 + + $f.minimumValues[1]< 0 + $f.minimumValues[2]< 0 + $f.maximumValues[1]> 0 + + + + $f.numMaxima=2 + + $f.maximumValues[1]> 0 + $f.maximumValues[2]> 0 + $f.minimumValues[1]< 0 + + + + $xi> 0 + $xi< 0 + + + + $a4> 0 + $allextremapos + + + $a4< 0 + $allextremaneg + + + + + $f.numExtrema=1 + abs($f.extremumValues)< .15 + + + + + $a4< 0 + $allextremapos + + + $a4> 0 + $allextremaneg + + + +Below you'll find a degree 4 polynomial of the form p(x) = a_0 + a_1x + a_2x^2 + a_3x^3 + a_4x^4 where a_0, \ldots, a_4 are set up as sliders. In the questions that follow, you'll experiment with different values of a_0, \ldots, a_4 to investigate different possible behaviors in a degree 4 polynomial. Note that a_4 \ne 0 is required for p to be a degree 4 polynomial. + + + +
      + + + + + +
      + + graph of a degree 4 polynomial whose coefficients are controlled by sliders + $a4 x^4 + $a3 x^3 + $a2 x^2 + $a1 x + $a0 + + + $a4 x^4 + +
      + + + + + + \ No newline at end of file diff --git a/source/previews/doenet/PA-poly-rational-D.doenetml b/source/previews/doenet/PA-poly-rational-D.doenetml new file mode 100644 index 00000000..ab2161ba --- /dev/null +++ b/source/previews/doenet/PA-poly-rational-D.doenetml @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + +

      + A drug company estimates that to produce a new drug, it will cost $5 million in startup resources, and that once they reach production, each gram of the drug will cost $2500 to make. +

      + + +
        +
      1. +

        + Determine a formula for a function C(q) that models the cost of producing q grams of the drug.
        + 5000000 + 2500q +

        +

        + linearexponentialdegree 3 polynomialquadraticsinusoidal +

        +
      2. +
      3. +

        + The drug company needs to sell the drug at a price of more than $2500 per gram in order to at least break even. To investigate how they might set prices, they first consider what their average cost per gram is.

        +

        + 5000000+2500*1000 +

        +

        + (5000000+2500*1000)/1000 +

        +
      4. +
      5. +

        + 5000000+2500*10000 +

        +

        + (5000000+2500*10000)/10000 +

        +
      6. +
      7. +

        + Our computations in b. and c. naturally lead us to define the average cost per gram function, A(q), whose output is the average cost of producing q grams of the drug.

        +

        + The average cost per gram of producing q grams is the numerator of A of qcost per gramtotal costnumber of grams to produce q grams divided by the denominator of A of qcost per gram A(q)total cost C(q)number of grams q, which means that formula for A of qA(q)=C(q)A(q)=q\displaystyle A(q)=\frac{q}{C(q)}\displaystyle A(q)=\frac{C(q)}{q}, and from our work in part a, that is the same as A(q)=formula for A of q using C of q\frac{5000000+2500q}{q}. Dividing both terms in the numerator by q results in an equivalent form, A(q)=another formula for A of q using C of q2500+\frac{5000000}{q}. +

        +
      8. +
      9. +

        + What can you say about the long-range behavior of A? +

        +

        + 2500 +

        +

        + In the context of this scenario, this means 1000 grams10000 gramsas many grams as possibleas few grams as possible so that their average cost per gram is as small as possible. +

        +
      10. +
      + + + This activity is based on p. 457ff in Functions Modeling Change, 5th edition, by Connally et al. + + diff --git a/source/previews/doenet/PA-poly-rational-features-D.doenetml b/source/previews/doenet/PA-poly-rational-features-D.doenetml new file mode 100644 index 00000000..c78d26d5 --- /dev/null +++ b/source/previews/doenet/PA-poly-rational-features-D.doenetml @@ -0,0 +1,252 @@ + + + + + + + + + + + + + + + + + + (x^2-1)/(x^2-3x-4) + +

      + Consider the rational function r(x) = \frac{x^2 - 1}{x^2 - 3x - 4}, and let p(x) = x^2 - 1 and q(x) = x^2 - 3x - 4. Note that p(x) is the numerator of r(x) and q(x) is the denominator of r(x). +

      + +

      + To enter a list of numbers, separate the numbers with commas.$mi1=1 -1 +

      +

      + To enter a list of numbers, separate the numbers with commas.$mi2=4 -1 +

      +

      + Type r(x) in the box below, and the following table values will automatically fill in. +

      +

      + $rEnt=$r +

      + + + + + x + + + r(x) + + + + + 4.1 + + + expression entered for r of x evaluated entered at 4.1$$rEnt(4.1) + + + + + 4.01 + + + expression entered for r of x evaluated entered at 4.01$$rEnt(4.01) + + + + + 4.001 + + + expression entered for r of x evaluated entered at 4.001$$rEnt(4.001) + + + + + 3.9 + + + expression entered for r of x evaluated entered at 3.9$$rEnt(3.9) + + + + + 3.99 + + + expression entered for r of x evaluated entered at 3.99$$rEnt(3.99) + + + + + 3.999 + + + expression entered for r of x evaluated entered at 3.999$$rEnt(3.999) + + + + + + + x + + + r(x) + + + + + 1.1 + + + expression entered for r of x evaluated entered at 1.1$$rEnt(1.1) + + + + + 1.01 + + + expression entered for r of x evaluated entered at 1.01$$rEnt(1.01) + + + + + 1.001 + + + expression entered for r of x evaluated entered at 1.001$$rEnt(1.001) + + + + + 0.9 + + + expression entered for r of x evaluated entered at 0.9$$rEnt(0.9) + + + + + 0.99 + + + expression entered for r of x evaluated entered at 0.99$$rEnt(0.99) + + + + + 0.999 + + + expression entered for r of x evaluated entered at 0.999$$rEnt(0.999) + + + + + + + x + + + r(x) + + + + + -1.1 + + + expression entered for r of x evaluated entered at -1.1$$rEnt(-1.1) + + + + + -1.01 + + + expression entered for r of x evaluated entered at -1.01$$rEnt(-1.01) + + + + + -1.001 + + + expression entered for r of x evaluated entered at -1.001$$rEnt(-1.001) + + + + + -0.9 + + + expression entered for r of x evaluated entered at -0.9$$rEnt(-0.9) + + + + + -0.99 + + + expression entered for r of x evaluated entered at -0.99$$rEnt(-0.99) + + + + + -0.999 + + + expression entered for r of x evaluated entered at -0.999$$rEnt(-0.999) + + + + + +

      + Complete the sentences below to explain why r(x) behaves the way it does near x = 4, near x=1, and near x=-1. +

      +
      +

      + As x gets closer and closer to 4, 15, while 0. approaches 0increases or decreases without boundapproaches 0.4approaches two different numbers near x = 4. zero + holejumpvertical asymptote at x=4. +

      +
      + +
      +

      + As x gets closer and closer to 1, 0, while -6. approaches 0increases or decreases without boundapproaches 0.4approaches two different numbers near x = 1. zero + holejumpvertical asymptote at x=1. +

      +
      + +
      +

      + As x gets closer and closer to -1, 0, and 0. Factoring both the numerator and denominator results in \frac{(x-1)(x+1)}{(x-4)(x+1)}. As long as x\neq -1, the two (x+1) terms cancel, resulting in \frac{x-1}{x-4}. approaches 0increases or decreases without boundapproaches \frac{-2}{-5}=0.4approaches two different numbers near x = -1, even though r(x) is undefined at x=-1. zero + holejumpvertical asymptote at x=-1. +

      +
      + +

      + Finally, the graph of r(x) appears below. +

      + + + graph of the function r of x + $r + + + + + +

      + Can you see all the behavior we just discussed, or only some of it? Remember that you can zoom in and out using the "+" and "-" in the lower right corner of the graph, and that the "O" returns to the original view. + zeroholejumpvertical asymptote +

      \ No newline at end of file diff --git a/source/previews/doenet/PA-trig-finding-angles-D.doenetml b/source/previews/doenet/PA-trig-finding-angles-D.doenetml new file mode 100644 index 00000000..1073d3fe --- /dev/null +++ b/source/previews/doenet/PA-trig-finding-angles-D.doenetml @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + (0,0) + (3,0) + (3,sqrt(3)) + + +

      + Below is an image of a right triangle whose sides are labeled a, b, and c, and whose non-right angles are labeled x and y. +

      +

      + We will complete a sketch of a right triangle with one leg of length 3 and another leg of length \sqrt{3}. Let \theta be the angle that lies opposite the shorter leg. +

      + + a right triangle with sides labeled a, b, and c + The longest side of the right triangle is labeled c. The shortest side, which is vertical, is labeled a, and the remaining side of the triangle, which is horizontal, is labeled b. The angle across from the shortest side is labeled x, while the remaining non-right angle is labeled y. + + + + + + + + + + (.35cos(t), .35sin(t)) + + + + + (.35cos(t)+3, .35sin(t)+sqrt(3)) + + + + + +
        +
      1. +

        + First, determine the exact values of the sides a, b and c. +

        +

        + sqrt(3)sqrt(3)3 + 33sqrt(3) + sqrt(12)sqrt(12) +

        + Your answer is close to correct. Make sure you are entering an exact answer, not a decimal approximation. + Your answer is close to correct. Make sure you are entering an exact answer, not a decimal approximation. +Your answer is close to correct. Make sure you are entering an exact answer, not a decimal approximation. + It's both more helpful and more accurate if we assume the lengths are drawn to scale, so make this answer the horizontal leg. + It's both more helpful and more accurate if we assume the lengths are drawn to scale, so make this answer the vertical leg. +

        + xy +

        +

        + After answering all the questions in part a. correctly, you now have a correctly labeled right triangle meeting the specified conditions. +

        +
      2. +
      3. +

        + What is the exact value of \sin(\theta)? +

        +

        + 1/21/2 +

        + Your answer is correct but not in the right form or simplified enough, yet. It might help to rewrite \sqrt{12}=\sqrt{4\cdot 3}=2\sqrt{3}. +
      4. +
      5. +

        + What special angle from the unit circle is \theta? +

        +

        + Which angle from the unit circle looks like the sketch of the triangle and has the value of \sin(\theta) you just calculated?pi/6 +

        +
      6. +
      7. +

        + Use your answer to c. to rewrite your equation from b. using the arcsine function in the form \arcsin(\Box) = \Delta, where \Box and \Delta are numerical values. +

        +

        + 1/2pi/6 +

        +
      8. +
      \ No newline at end of file diff --git a/source/previews/doenet/PA-trig-inverse-D.doenetml b/source/previews/doenet/PA-trig-inverse-D.doenetml new file mode 100644 index 00000000..9721770f --- /dev/null +++ b/source/previews/doenet/PA-trig-inverse-D.doenetml @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + cos(x) + cos(x) + cos(x) + + +

      + Consider the plot of the standard cosine function in the following figure along with the emphasized portion of the graph on [0,\pi]. +

      + + + graph of cosine with the part of it between 0 and pi emphasized + t + y + + + + + + + $cosine1 + $cosine2 + $cosine0pi + + + +

      + Let g be the function whose domain is 0 \le t \le \pi and whose outputs are determined by the rule g(t) = \cos(t). Note well: g is defined in terms of the cosine function, but because it has a different domain, it is not the cosine function. +

      + +
        +
      1. +

        + You can enter your answer using interval notation like [0,\pi], or using inequalities in the form 0\leq t \leq \pi.$mi1=[0,pi] +

        +
      2. +
      3. +

        + You can enter your answer using interval notation like [0,\pi], or using inequalities in the form 0\leq t \leq \pi.$mi2=[-1,1] +

        +
      4. +
      5. +

        + We can see from the graph that g(t) passes or doesn't pass the HLTpassesdoesn't pass the horizontal line test because 0 and \pi0 and 2\pi0 and 1-1 and 1 [0,\pi][0,2\pi][0,1][-1,1]. +

        +

        + This means that g(t) has or doesn't have an inversehasdoesn't have an inverse function, g^{-1}(t), [0,\pi][0,2\pi][0,1][-1,1] and [0,\pi][0,2\pi][0,1][-1,1]. +

        +
      6. +
      7. +

        + We know that g(\frac{\pi}{4}) = \frac{\sqrt{2}}{2}. That means + pi/4 +

        +

        + 3pi/4 +

        +
      8. +
      9. +

        + Determine the exact values of each of the quantities below. +

        +

        + 2pi/3 +

        +

        + pi/6 +

        +

        + pi/2 +

        +

        + pi +

        +

        g(t) comes from \cos(t), which takes in an angle and outputs the x-value of the point on the unit circle corresponding to that angle.

        g^{-1}(t) swaps that; it takes in an x-value of a point on the unit circle and outputs the angle between 0 and \pi corresponding to the point.

        +
      10. + +
      \ No newline at end of file diff --git a/source/previews/doenet/PA-trig-other-D.doenetml b/source/previews/doenet/PA-trig-other-D.doenetml new file mode 100644 index 00000000..e847fcaa --- /dev/null +++ b/source/previews/doenet/PA-trig-other-D.doenetml @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + + + + (0,0) + (1.1,0) + (1.1,6) + + $sinnotexact $cosnotexact $cscnotexact $secnotexact $tannotexact $cotnotexact + + +

      + Below is an image of a right triangle whose sides are labeled a, b, and c, and whose non-right angles are labeled x and y. +

      +

      + We will complete a sketch of a right triangle with hypotenuse of length 61 and one leg of length 11. + Let \alpha be the angle opposite the side of length 11. +

      + + a right triangle with sides labeled a, b, and c + The longest side of the right triangle is labeled c. The shortest side, which is horizontal, is labeled b, and the remaining side of the triangle, which is vertical, is labeled a. The angle across from the shortest side is labeled y, while the remaining non-right angle is labeled x. + + + + + + + + + + (.3cos(t), .5sin(t)) + + + + + (.75cos(t)+$f3.x, .9sin(t)+$f3.y) + + + + + + + +
        +
      1. +

        + First, determine the exact values of the sides a, b and c. +

        +

        + 606011 + 111160 + 6161 +

        + Your answer is close to correct. Make sure you are entering an exact answer, not a decimal approximation. + Your answer is close to correct. Make sure you are entering an exact answer, not a decimal approximation. +Your answer is close to correct. Make sure you are entering an exact answer, not a decimal approximation. + It's both more helpful and more accurate if we assume the lengths are drawn to scale, so make this answer the horizontal leg. + It's both more helpful and more accurate if we assume the lengths are drawn to scale, so make this answer the vertical leg. +

        + xy +

        +

        + After answering all the questions in part a. correctly, you now have a correctly labeled right triangle meeting the specified conditions. +

        +
      2. +
      3. +

        + Determine the exact value of each of the six trigonometric functions evaluated at \alpha. +

        + + + Recall that \sin(\alpha)=\frac{\text{opp}}{\text{hyp}}. Which side is opposite to \alpha?11/6111/61 + Recall that \csc(\alpha)=\frac{\text{hyp}}{\text{opp}}. Which side is opposite to \alpha?61/1161/11 + + + Recall that \cos(\alpha)=\frac{\text{adj}}{\text{hyp}}. Which side is adjacent to \alpha?60/6160/61 + Recall that \sec(\alpha)=\frac{\text{hyp}}{\text{adj}}. Which side is adjacent to \alpha?61/6061/60 + + + Recall that \tan(\alpha)=\frac{\text{opp}}{\text{adj}}.11/6011/60 + Recall that \cot(\alpha)=\frac{\text{adj}}{\text{opp}}. 60/1160/11 + + + Your answer is close but not exact. You can leave your answer as a fraction. +
      4. +
      5. +

        + What are the exact and approximate measures of the two non-right angles in the triangle? +

        +

        + Use an inverse trig function on one of your answers from part b.arccos(60/61)\approxdecimal approximation of alpha$alphaEnt +

        +

        + Use an inverse trig function.arcsin(60/61)\approxdecimal approximation of alpha$thetaEnt +

        +
      6. +
      \ No newline at end of file diff --git a/source/previews/doenet/PA-trig-right-D.doenetml b/source/previews/doenet/PA-trig-right-D.doenetml new file mode 100644 index 00000000..3f175922 --- /dev/null +++ b/source/previews/doenet/PA-trig-right-D.doenetml @@ -0,0 +1,339 @@ + + + + + + + + + + + + + + + + + + 0 + 2 + + ($zero,$zero) + ($a3.x,$zero) + $unitcir($two,1) + + + $aleg.length + + arccos($P2.x)*24/2/pi + (2*pi-arccos($P2.x))*24/2/pi + $num2$num1 + + $kz/12pi + + + pi/6 pi/4 pi/3 pi/2 2pi/3 3pi/4 5pi/6 pi 7pi/6 5pi/4 4pi/3 3pi/2 5pi/3 7pi/4 11pi/6 2pi + (sqrt(3)/2,1/2) (sqrt(2)/2, sqrt(2)/2) (1/2,sqrt(3)/2) (0,1) (-1/2,sqrt(3)/2) (-sqrt(2)/2, sqrt(2)/2) (-sqrt(3)/2,1/2) (-1,0) (-sqrt(3)/2,-1/2) (-sqrt(2)/2, -sqrt(2)/2) (-1/2,-sqrt(3)/2) (0,-1) (1/2,-sqrt(3)/2) (sqrt(2)/2, -sqrt(2)/2) (sqrt(3)/2,-1/2) (1,0) + (a,b) (sqrt(3)/2,1/2) (sqrt(2)/2, sqrt(2)/2) (1/2,sqrt(3)/2) (a,b) (0,1) (a,b) (-1/2,sqrt(3)/2) (-sqrt(2)/2, sqrt(2)/2) (-sqrt(3)/2,1/2) (a,b) (-1,0) (a,b) (-sqrt(3)/2,-1/2) (-sqrt(2)/2, -sqrt(2)/2) (-1/2,-sqrt(3)/2) (a,b) (0,-1) (a,b) (1/2,-sqrt(3)/2) (sqrt(2)/2, -sqrt(2)/2) (sqrt(3)/2,-1/2) (a,b) (1,0) + + (cos($anglelist[$k]),sin($anglelist[$k])) + + true + + + upperRight + + + upperLeft + + + lowerLeft + + + lowerRight + + + + (0,0) + (6,0) + (6,sqrt(13)) + + 5 + arccos($P3.x)*24/2/pi + (2*pi-arccos($P3.x))*24/2/pi + $num2d$num1d + + + + + $r $v + + + + + true + + + upperRight + + + upperLeft + + + lowerLeft + + + lowerRight + + + + (0,0) + (cos(0.7),0) + (cos(0.7),sin(0.7)) + + (0,0) + (cos(1.1),0) + (cos(1.1),sin(1.1)) + + + +

      + What follows is 6 situations where some information about a right triangle is given, and some is missing. +

      +

      + In each of the situations, you will end up with an image of a right triangle that satisfies the given conditions, and you will determine the requested missing information in the triangle. Assume that all angles are being considered in radian measure. +

      + + + + + + + + \ No newline at end of file diff --git a/source/previews/doenet/PA-trig-tangent-D.doenetml b/source/previews/doenet/PA-trig-tangent-D.doenetml new file mode 100644 index 00000000..897ef38d --- /dev/null +++ b/source/previews/doenet/PA-trig-tangent-D.doenetml @@ -0,0 +1,241 @@ + + + + + + + + + + + + + + + + + + + + (cos($k/24*2pi),sin($k/24*2pi)) + + + + arccos($P.x)*24/2/pi + (2*pi-arccos($P.x))*24/2/pi + + $num2a$num1a + + (a,b) (sqrt(3)/2,1/2) (sqrt(2)/2, sqrt(2)/2) (1/2,sqrt(3)/2) (a,b) (0,1) (a,b) (-1/2,sqrt(3)/2) (-sqrt(2)/2, sqrt(2)/2) (-sqrt(3)/2,1/2) (a,b) (-1,0) (a,b) (-sqrt(3)/2,-1/2) (-sqrt(2)/2, -sqrt(2)/2) (-1/2,-sqrt(3)/2) (a,b) (0,-1) (a,b) (1/2,-sqrt(3)/2) (sqrt(2)/2, -sqrt(2)/2) (sqrt(3)/2,-1/2) (a,b) (1,0) + + + $kz/12pi + + + $numP elementof 1 5 7 11 13 17 19 23 + + + upperRight + + + upperLeft + + + lowerLeft + + + lowerRight + + + + $undefEnt + + 0 pi/12 pi/6 pi/4 pi/3 5pi/12 pi/2 7pi/12 2pi/3 3pi/4 5pi/6 pi + + + + ($k,tan($k)) + + + + + + + +

      + Through the following questions, we work to understand the special values and overall behavior of the tangent function. +

      + + +

      + Use the unit circle below (not a computational device) to find the exact value of \tan(t) at the following values:
      t = \frac{\pi}{6}, \frac{\pi}{4}, \frac{\pi}{3}, \frac{2\pi}{3}, \frac{3\pi}{4}, \frac{5\pi}{6}. +

      +

      + Move the square point to each of the above angles and an answer box will appear. Enter a simplified exact expression, not a decimal approximation. +

      + Recall that \tan(t)=\frac{\sin(t)}{\cos(t)}, and that for any point on a unit circle, the x-coordinate is \cos(\theta) and the y-coordinate is \sin(\theta). + + unit circle with 24 equally spaced points + + $points + $points(cos(pi/12),sin(pi/12)) + + + + + (1/5cos(t), 1/5sin(t)) + + + (1/5cos(t), 1/5sin(t)) + + + + + +
      + 1/sqrt(3)sqrt(3)/31/sqrt(3) + 11 + sqrt(3)sqrt(3)/1sqrt(3) + -sqrt(3)-sqrt(3)/1-sqrt(3) + -1-1 + -1/sqrt(3)-sqrt(3)/3-1/sqrt(3) +
      +
      + +
      + +

      + (1,0)(0,1)(-1,0)(0,-1) + \cos\left( \frac{\pi}{2} \right)=0\sin\left( \frac{\pi}{2} \right)= 0 and so is 0is undefined because you can't divide by 0. +

      +

      + What are three other input values x for which \tan(x) is not defined? Enter your answers separated by commas. list of values of theta where tan theta is undefined$undefList.numValues=3 and cos($undefList[1])=0 and cos($undefList[2])=0 and cos($undefList[3])=0 and $undefList[1]!=$undefList[2] and $undefList[1]!=$undefList[3] and $undefList[3]!=$undefList[2] and $undefList[1]!=pi/2 and $undefList[2]!=pi/2 and $undefList[3]!=pi/2 +

      + +
      + + + unit circle with 24 equally spaced points + + $points + $unitcir(cos(pi/12),sin(pi/12)) + +
      +

      + Drag the point to the approximate location of \theta=\frac{11\pi}{24}. +

      + abs($P2.x-.125)< .05 +
      +
      +

      + 0\frac{\pi}{4}\frac{\pi}{2}\frac{3\pi}{4}\pi, and so (0,0)(1,0)(0,1)(-1,0). + As the angles get closer and closer to \frac{\pi}{2}, the function 01, and so closer to 0.closer to 1.larger and larger. +

      + +
      + +

      + A table of values appears below, including the values from the angles asked about in the first graph above after you've answered them correctly. +

      + + + + x + y = \tan(x) + + + + 0 + \tan(0) + = \, 0 + + + \frac{\pi}{12} + \tan(\frac{\pi}{12}) + =\, tan(pi/12) + + + \frac{\pi}{6} + value of tangent of x1/sqrt(3) + =decimal value of tangent of xtan(pi/6) + + + \frac{\pi}{4} + value of tangent of x1 + =decimal value of tangent of xtan(pi/4) + + + \frac{\pi}{3} + value of tangent of xsqrt(3) + =decimal value of tangent of xtan(pi/3) + + + \frac{5\pi}{12} + \tan(\frac{5\pi}{12}) + = \, tan(5pi/12) + + + \frac{\pi}{2} + \tan(\frac{\pi}{2}) + = \, undefined + + + \frac{7\pi}{12} + \tan(\frac{7\pi}{12}) + = \, tan(7pi/12) + + + \frac{2\pi}{3} + value of tangent of x-sqrt(3) + =decimal value of tangent of xtan(2pi/3) + + + \frac{3\pi}{4} + value of tangent of x-1 + =decimal value of tangent of xtan(3pi/4) + + + \frac{5\pi}{6} + value of tangent of x-1/sqrt(3) + =decimal value of tangent of xtan(5pi/6) + + + \pi + \tan(\pi) + = \, tan(pi) + + + +

      + Moreover, a graph of the values appears below, and you can click to show the function \tan(x). +

      + + + + unit circle with 24 equally spaced points and a movable point + + + + + $tanpoints + tan(x) + +
      +

      + +

      +
      +

      + Use the graph and your work above to answer the following: +

      +
      +

      + all real numbersall real numbers except x=0all real numbers except x=\pm\frac{\pi}{2},\pm\frac{3\pi}{2}, \pm\frac{5\pi}{2}, \cdotsall real numbers except x=0,\pm\pi,\pm 3\pi, \pm5\pi, \cdots +

      +

      + all real numbersall real numbers except x=0all real numbers except x=\pm\frac{\pi}{2},\pm\frac{3\pi}{2}, \pm\frac{5\pi}{2}, \cdotsall real numbers except x=0,\pm\pi,\pm 3\pi, \pm5\pi, \cdots +

      +

      + \frac{\pi}{2}\pi\frac{3\pi}{2}x=2\pi +

      +
      \ No newline at end of file diff --git a/source/sec-0-0.xml b/source/sec-0-0.xml index fcf629b9..31bb928b 100755 --- a/source/sec-0-0.xml +++ b/source/sec-0-0.xml @@ -1,18 +1,18 @@ - - - - - - - - - - - - - -
      - - <!-- <xi:include href="./activities/act-1-1-1.xml" /> --> - <!-- <xi:include href="./exercises/ez-1-1.xml" /> --> -</section> +<!-- **********************************************************************--> +<!-- Copyright 2018 --> +<!-- Matthew Boelkins --> +<!-- --> +<!-- This file is part of Active Preparation for Calculus. --> +<!-- --> +<!-- Permission is granted to copy, distribute and/or modify this document --> +<!-- under the terms of the Creative Commons BY-SA license. The work --> +<!-- may be used for free by any party so long as attribution is given to --> +<!-- the author(s), the work and its derivatives are used in the spirit of --> +<!-- "share and share alike". All trademarks are the registered marks of --> +<!-- their respective owners. --> +<!-- **********************************************************************--> +<section xmlns:xi="http://www.w3.org/2001/XInclude" xml:id="sec-0-0-template"> + <title/> + <!-- <xi:include href="./activities/act-1-1-1.xml" /> --> + <!-- <xi:include href="./exercises/ez-1-1.xml" /> --> +</section> diff --git a/source/sec-changing-aroc-wb.xml b/source/sec-changing-aroc-wb.xml index d2c16dd4..8709ec28 100644 --- a/source/sec-changing-aroc-wb.xml +++ b/source/sec-changing-aroc-wb.xml @@ -1,22 +1,22 @@ -<!-- **********************************************************************--> -<!-- Copyright 2019 --> -<!-- Matthew Boelkins --> -<!-- --> -<!-- This file is part of Active Prelude to Calculus. --> -<!-- --> -<!-- Permission is granted to copy, distribute and/or modify this document --> -<!-- under the terms of the Creative Commons BY-SA license. The work --> -<!-- may be used for free by any party so long as attribution is given to --> -<!-- the author(s), the work and its derivatives are used in the spirit of --> -<!-- "share and share alike". All trademarks are the registered marks of --> -<!-- their respective owners. --> -<!-- **********************************************************************--> -<section xmlns:xi="http://www.w3.org/2001/XInclude" xml:id="sec-changing-aroc"> - <title>The Average Rate of Change of a Function - - - - - - -
      + + + + + + + + + + + + + +
      + The Average Rate of Change of a Function + + + + + + +
      diff --git a/source/sec-changing-aroc.xml b/source/sec-changing-aroc.xml index 87e2d129..046677ac 100755 --- a/source/sec-changing-aroc.xml +++ b/source/sec-changing-aroc.xml @@ -1,198 +1,199 @@ - - - - - - - - - - - - - -
      - The Average Rate of Change of a Function - - -
        -
      • -

        - What do we mean by the average rate of change of a function on an interval? -

        -
      • -
      • -

        - What does the average rate of change of a function measure? How do we interpret its meaning in context? -

        -
      • -
      • -

        - How is the average rate of change of a function connected to a line that passes through two points on the curve? -

        -
      • -
      -
      - - Introduction -

      - Given a function that models a certain phenomenon, - it's natural to ask such questions as - how is the function changing on a given interval or - on which interval is the function changing more rapidly? - The concept of average rate of change - enables us to make these questions more mathematically precise. - Initially, we will focus on the average rate of change of an object moving along a straight-line path. -

      - -

      - For a function s that tells the location of a moving object along a straight path at time t, we define the average rate of change of s on the interval [a,b] to be the quantity - - AV_{[a,b]} = \frac{s(b)-s(a)}{b-a} - . - average rate of changeof position - Note particularly that the average rate of change of s on [a,b] is measuring the - change in position divided by the change in time. -

      - - - -
      - - - Defining and interpreting the average rate of change of a function -

      - In the context of a function that measures height or position of a moving object at a given time, - the meaning of the average rate of change of the function on a given interval is the average velocity average velocity of the moving object - because it is the ratio of change in position to change in time. For example, in Preview Activity, the units on AV_{[1.5,2.5]} = -32 are feet per second since the units on the numerator are feet and on the denominator seconds. Morever, -32 is numerically the same value as the slope of the line that connects the two corresponding points on the graph of the position function, as seen in Figure. The fact that the average rate of change is negative in this example indicates that the ball is falling. -

      - - -
      - The average rate of change of s on [1.5,2.5] for the function in Preview Activity. -

      The average rate of change of s on [1.5,2.5] for the function in Preview Activity.

      -
      -
      -
      - The average rate of change of an abstract function f on the interval [a,b]. -

      The average rate of change of an abstract function f on the interval [a,b].

      -
      -
      -
      - -

      - While the average rate of change of a position function tells us the moving object's average velocity, in other contexts, - the average rate of change of a function can be similarly defined and has a related interpretation. We make the following formal definition. -

      - - - average rate of change - -

      - For a function f defined on an interval [a,b], the average rate of change of f on [a,b] is the quantity - - AV_{[a,b]} = \frac{f(b) - f(a)}{b-a} - . -

      -
      -
      - -

      - In every situation, the units on the average rate of change help us interpret its meaning, - and those units are always units of output per unit of input. average rate of changeunits Moreover, the average rate of change of f on [a,b] always corresponds to the slope of the line between the points (a,f(a)) and (b,f(b)), as seen in Figure. -

      - - - -

      - The average rate of change of a function on an interval gives us an excellent way to describe how the function behaves, on average. For instance, if we compute AV_{[1970,2000]} for Kent County, we find that - - AV_{[1970,2000]} = \frac{574,336 - 411,044}{30} = 5443.07 - , - which tells us that in an average year from 1970 to 2000, the population of Kent County increased by about 5443 people. Said differently, we could also say that from 1970 to 2000, Kent County was growing at an average rate of 5443 people per year. These ideas also afford the opportunity to make comparisons over time. Since - - AV_{[1990,2000]} = \frac{574,336 - 500,631}{10} = 7370.5 - , - we can not only say that Kent county's population increased by about 7370 in an average year between 1990 and 2000, but also that the population was growing faster from 1990 to 2000 than it did from 1970 to 2000. -

      - -

      - Finally, we can even use the average rate of change of a function to predict future behavior. Since the population was changing on average by 7370.5 people per year from 1990 to 2000, we can estimate that the population in 2002 is - - K(2002) \approx K(2000) + 2 \cdot 7370.5 = 574,336 + 14,741 = 589,077 - . -

      - -
      - - How average rate of change indicates function trends - -

      - We have already seen that it is natural to use words such as increasing and decreasing to describe a function's behavior. For instance, for the tennis ball whose height is modeled by s(t) = 64 - 16(t-1)^2, we computed that AV_{[1.5,2.5]} = -32, which indicates that on the interval [1.5,2.5], the tennis ball's height is decreasing at an average rate of 32 feet per second. Similarly, for the population of Kent County, since AV_{[1990,2000]} = 7370.5, we know that on the interval [1990,2000] the population is increasing at an average rate of 7370.5 people per year. -

      - -

      - We make the following formal definitions to clarify what it means to say that a function is increasing or decreasing. -

      - - - function trendsincreasing function trendsdecreasing - -

      - Let f be a function defined on an interval (a,b) (that is, on the set of all x for which a \lt x \lt b). We say that f is increasing on (a,b) provided that the function is always rising as we move from left to right. That is, for any x and y in (a,b), if x \lt y, then f(x) \lt f(y). -

      - -

      - Similarly, we say that f is decreasing on (a,b) provided that - the function is always falling as we move from left to right. That is, for any x and y in (a,b), if x \lt y, then f(x) \gt f(y). -

      -
      -
      - -

      - If we compute the average rate of change of a function on an interval, we can decide if the function is increasing or decreasing on average on the interval, but it takes more workCalculus offers one way to justify that a function is always increasing or always decreasing on an interval. to decide if the function is increasing or decreasing always on the interval. -

      - - - -

      - It is helpful be able to connect information about a function's average rate of change and its graph. For instance, if we have determined that AV_{[-3,2]} = 1.75 for some function f, this tells us that, on average, the function rises between the points x = -3 and x = 2 and does so at an average rate of 1.75 vertical units for every horizontal unit. Moreover, we can even determine that the difference between f(2) and f(-3) is - - f(2)-f(-3) = 1.75 \cdot 5 = 8.75 - - since \frac{f(2)-f(-3)}{2-(-3)} = 1.75. -

      - - - -
      - - - Summary -

      -

        -
      • -

        - For a function f defined on an interval [a,b], the average rate of change of f on [a,b] is the quantity - AV_{[a,b]} = \frac{f(b) - f(a)}{b-a}. -

        -
      • -
      • -

        - The value of AV_{[a,b]} = \frac{f(b) - f(a)}{b-a} tells us how much the function rises or falls, on average, for each additional unit we move to the right on the graph. For instance, if AV_{[3,7]} = 0.75, this means that for additional 1-unit increase in the value of x on the interval [3,7], the function increases, on average, by 0.75 units. In applied settings, the units of AV_{[a,b]} are units of output per unit of input. -

        -
      • -
      • -

        - The value of AV_{[a,b]} = \frac{f(b) - f(a)}{b-a} is also the slope of the line that passes through the points (a,f(a)) and (b,f(b)) on the graph of f, as shown in Figure. -

        -
      • -
      -

      -
      - - - - - -
      + + + + + + + + + + + + + +
      + The Average Rate of Change of a Function + + +
        +
      • +

        + What do we mean by the average rate of change of a function on an interval? +

        +
      • +
      • +

        + What does the average rate of change of a function measure? How do we interpret its meaning in context? +

        +
      • +
      • +

        + How is the average rate of change of a function connected to a line that passes through two points on the curve? +

        +
      • +
      +
      + + Introduction +

      + Given a function that models a certain phenomenon, + it's natural to ask such questions as + how is the function changing on a given interval or + on which interval is the function changing more rapidly? + The concept of average rate of change + enables us to make these questions more mathematically precise. + Initially, we will focus on the average rate of change of an object moving along a straight-line path. +

      + +

      + For a function s that tells the location of a moving object along a straight path at time t, we define the average rate of change of s on the interval [a,b] to be the quantity + + AV_{[a,b]} = \frac{s(b)-s(a)}{b-a} + . + average rate of changeof position + Note particularly that the average rate of change of s on [a,b] is measuring the + change in position divided by the change in time. +

      + + + + +
      + + + Defining and interpreting the average rate of change of a function +

      + In the context of a function that measures height or position of a moving object at a given time, + the meaning of the average rate of change of the function on a given interval is the average velocity average velocity of the moving object + because it is the ratio of change in position to change in time. For example, in Preview Activity, the units on AV_{[1.5,2.5]} = -32 are feet per second since the units on the numerator are feet and on the denominator seconds. Morever, -32 is numerically the same value as the slope of the line that connects the two corresponding points on the graph of the position function, as seen in Figure. The fact that the average rate of change is negative in this example indicates that the ball is falling. +

      + + +
      + The average rate of change of s on [1.5,2.5] for the function in Preview Activity. +

      The average rate of change of s on [1.5,2.5] for the function in Preview Activity.

      +
      +
      +
      + The average rate of change of an abstract function f on the interval [a,b]. +

      The average rate of change of an abstract function f on the interval [a,b].

      +
      +
      +
      + +

      + While the average rate of change of a position function tells us the moving object's average velocity, in other contexts, + the average rate of change of a function can be similarly defined and has a related interpretation. We make the following formal definition. +

      + + + average rate of change + +

      + For a function f defined on an interval [a,b], the average rate of change of f on [a,b] is the quantity + + AV_{[a,b]} = \frac{f(b) - f(a)}{b-a} + . +

      +
      +
      + +

      + In every situation, the units on the average rate of change help us interpret its meaning, + and those units are always units of output per unit of input. average rate of changeunits Moreover, the average rate of change of f on [a,b] always corresponds to the slope of the line between the points (a,f(a)) and (b,f(b)), as seen in Figure. +

      + + + +

      + The average rate of change of a function on an interval gives us an excellent way to describe how the function behaves, on average. For instance, if we compute AV_{[1970,2000]} for Kent County, we find that + + AV_{[1970,2000]} = \frac{574,336 - 411,044}{30} = 5443.07 + , + which tells us that in an average year from 1970 to 2000, the population of Kent County increased by about 5443 people. Said differently, we could also say that from 1970 to 2000, Kent County was growing at an average rate of 5443 people per year. These ideas also afford the opportunity to make comparisons over time. Since + + AV_{[1990,2000]} = \frac{574,336 - 500,631}{10} = 7370.5 + , + we can not only say that Kent county's population increased by about 7370 in an average year between 1990 and 2000, but also that the population was growing faster from 1990 to 2000 than it did from 1970 to 2000. +

      + +

      + Finally, we can even use the average rate of change of a function to predict future behavior. Since the population was changing on average by 7370.5 people per year from 1990 to 2000, we can estimate that the population in 2002 is + + K(2002) \approx K(2000) + 2 \cdot 7370.5 = 574,336 + 14,741 = 589,077 + . +

      + +
      + + How average rate of change indicates function trends + +

      + We have already seen that it is natural to use words such as increasing and decreasing to describe a function's behavior. For instance, for the tennis ball whose height is modeled by s(t) = 64 - 16(t-1)^2, we computed that AV_{[1.5,2.5]} = -32, which indicates that on the interval [1.5,2.5], the tennis ball's height is decreasing at an average rate of 32 feet per second. Similarly, for the population of Kent County, since AV_{[1990,2000]} = 7370.5, we know that on the interval [1990,2000] the population is increasing at an average rate of 7370.5 people per year. +

      + +

      + We make the following formal definitions to clarify what it means to say that a function is increasing or decreasing. +

      + + + function trendsincreasing function trendsdecreasing + +

      + Let f be a function defined on an interval (a,b) (that is, on the set of all x for which a \lt x \lt b). We say that f is increasing on (a,b) provided that the function is always rising as we move from left to right. That is, for any x and y in (a,b), if x \lt y, then f(x) \lt f(y). +

      + +

      + Similarly, we say that f is decreasing on (a,b) provided that + the function is always falling as we move from left to right. That is, for any x and y in (a,b), if x \lt y, then f(x) \gt f(y). +

      +
      +
      + +

      + If we compute the average rate of change of a function on an interval, we can decide if the function is increasing or decreasing on average on the interval, but it takes more workCalculus offers one way to justify that a function is always increasing or always decreasing on an interval. to decide if the function is increasing or decreasing always on the interval. +

      + + + +

      + It is helpful be able to connect information about a function's average rate of change and its graph. For instance, if we have determined that AV_{[-3,2]} = 1.75 for some function f, this tells us that, on average, the function rises between the points x = -3 and x = 2 and does so at an average rate of 1.75 vertical units for every horizontal unit. Moreover, we can even determine that the difference between f(2) and f(-3) is + + f(2)-f(-3) = 1.75 \cdot 5 = 8.75 + + since \frac{f(2)-f(-3)}{2-(-3)} = 1.75. +

      + + + +
      + + + Summary +

      +

        +
      • +

        + For a function f defined on an interval [a,b], the average rate of change of f on [a,b] is the quantity + AV_{[a,b]} = \frac{f(b) - f(a)}{b-a}. +

        +
      • +
      • +

        + The value of AV_{[a,b]} = \frac{f(b) - f(a)}{b-a} tells us how much the function rises or falls, on average, for each additional unit we move to the right on the graph. For instance, if AV_{[3,7]} = 0.75, this means that for additional 1-unit increase in the value of x on the interval [3,7], the function increases, on average, by 0.75 units. In applied settings, the units of AV_{[a,b]} are units of output per unit of input. +

        +
      • +
      • +

        + The value of AV_{[a,b]} = \frac{f(b) - f(a)}{b-a} is also the slope of the line that passes through the points (a,f(a)) and (b,f(b)) on the graph of f, as shown in Figure. +

        +
      • +
      +

      +
      + + + + + +
      diff --git a/source/sec-changing-combining-wb.xml b/source/sec-changing-combining-wb.xml index 074834e6..d3afa28d 100755 --- a/source/sec-changing-combining-wb.xml +++ b/source/sec-changing-combining-wb.xml @@ -1,22 +1,22 @@ - - - - - - - - - - - - - -
      - Combining Functions - - - - - - -
      + + + + + + + + + + + + + +
      + Combining Functions + + + + + + +
      diff --git a/source/sec-changing-combining.xml b/source/sec-changing-combining.xml index d0d0c3d5..b7ba79a5 100755 --- a/source/sec-changing-combining.xml +++ b/source/sec-changing-combining.xml @@ -1,259 +1,260 @@ - - - - - - - - - - - - - -
      - Combining Functions - - -
        -
      • -

        - How can we create new functions by adding, subtracting, multiplying, or dividing given functions? -

        -
      • -
      • -

        - What are piecewise functions and what are different ways we can represent them? -

        -
      • -
      -
      - - Introduction - -

      - In arithmetic, we execute processes where we take two numbers to generate a new number. For example, 2 + 3 = 5: the number 5 results from adding 2 and 3. Similarly, we can multiply two numbers to generate a new one: 2 \cdot 3 = 6. -

      - -

      - We can work similarly with functions. Indeed, we have already seen a sophisticated way to combine two functions to generate a new, related function through composition. If g : A \to B and f : B \to C, then we know there's a new, related function f \circ g : A \to C defined by the process (f \circ g)(x) = f(g(x)). Said differently, the new function f \circ g results from executing g first, followed by f. -

      - -

      - Just as we can add, subtract, multiply, and divide numbers, we can also add, subtract, multiply, and divide functions to create a new function from two or more given functions. -

      - - - -
      - - - Arithmetic with functions -

      - In most mathematics up until calculus, - the main object we study is numbers. - We ask questions such as -

        -
      • -

        - what number(s) form solutions to the equation x^2 - 4x - 5 = 0? -

        -
      • -
      • -

        - what number is the slope of the line 3x - 4y = 7? -

        -
      • -
      • -

        - what number is generated as output by the function - f(x) = \sqrt{x^2 + 1} by the input x = -2? -

        -
      • -
      - Certainly we also study overall patterns as seen in functions and equations, - but this usually occurs through an examination of numbers themselves, - and we think of numbers as the main objects being acted upon. -

      - -

      - This changes in calculus. In calculus, the fundamental objects being studied are - functions themselves. A function is a much more sophisticated mathematical object than a number, - in part because a function can be thought of in terms of its graph, which is an infinite collection of ordered pairs of the form (x,f(x)). -

      - -

      - It is often helpful to look at a function's formula and observe algebraic structure. For instance, given the quadratic function - - q(x) = -3x^2 + 5x - 7 - - we might benefit from thinking of this as the sum of three simpler functions: the constant function c(x) = -7, the linear function s(x) = 5x that passes through (0,0) with slope m = 5, and the concave down basic quadratic function w(x) = -3x^2. Indeed, each of the simpler functions c, s, and w contribute to making q be the function that it is. Likewise, if we were interested in the function p(x) = (3x^2 + 4)(9 - 2x^2), it might be natural to think about the two simpler functions f(x) = 3x^2 + 4 and g(x) = 9 - 2x^2 that are being multiplied to produce p. -

      - -

      - We thus naturally arrive at the ideas of adding, subtracting, multiplying, or dividing two or more functions, and hence introduce the following definitions and notation. -

      - - - function arithmeticsum of - function arithmeticdifference of - function arithmeticproduct of - function arithmeticquotient of - -

      - Let f and g be functions that share the same domain. Then, -

        -
      • -

        - The sum of f and g is the function f + g defined by (f+g)(x) = f(x) + g(x). -

        -
      • -
      • -

        - The difference of f and g is the function f - g defined by (f-g)(x) = f(x) - g(x). -

        -
      • -
      • -

        - The product of f and g is the function f \cdot g defined by (f \cdot g)(x) = f(x) \cdot g(x). -

        -
      • -
      • -

        - The quotient of f and g is the function \frac{f}{g} defined by \left( \frac{f}{g} \right)(x) = \frac{f(x)}{g(x)} for all x such that g(x) \ne 0. -

        -
      • -
      -

      -
      -
      - - - -
      - - - Combining functions in context -

      - When we work in applied settings with functions that model phenomena in the world around us, - it is often useful to think carefully about the units of various quantities. - Analyzing units can help us both understand the algebraic structure of functions and the variables involved, - as well as assist us in assigning meaning to quantities we compute. - We have already seen this with the notion of average rate of change: - if a function P(t) measures the population in a city in year t and we compute AV_{[5, 11]}, - then the units on AV_{[5, 11]} are - people per year, - and the value of AV_{[5, 11]} is telling us the average rate at which the population changes in people per year on the time interval from year 5 to year 11. -

      - - - -

      - Say that an investor is regularly purchasing stock in a particular company.This example is taken from Section 2.3 of Active Calculus. - Let N(t) represent the number of shares owned on day t, - where t = 0 represents the first day on which shares were purchased. - Let S(t) give the value of one share of the stock on day t; - note that the units on S(t) are dollars per share. - How is the total value, V(t), of the held stock on day t determined? -

      - -

      - Solution. Observe that the units on N(t) are shares and the units on S(t) are dollars per share. Thus when we compute the product - - N(t) \, \text{shares} \cdot S(t) \, \text{dollars per share} - , - it follows that the resulting units are dollars, which is the total value of held stock. Hence, - - V(t) = N(t) \cdot S(t) - . -

      -
      -
      - - - -
      - - - Piecewise functions - -

      - In both abstract and applied settings, - we sometimes have to use different formulas on different intervals in order to define a function of interest. -

      - - - -

      - A familiar and important function that is defined piecewise - is the absolute value function: A(x) = |x|. - We know that if x \ge 0, |x| = x, whereas if x \lt 0, |x| = -x. -

      -

      - - absolute value function - -

      - The absolute value of a real number, denoted by A(x) = |x|, is defined by the rule - - A(x) = - \begin{cases} - -x, \amp x \lt 0 \\ - x, \amp x \ge 0 - \end{cases} - -

      - - -

      -
      -
      - A plot of the absolute value function, A(x) = |x|. -

      A plot of the absolute value function, A(x) = |x|.

      -
      -
      -
      - -

      - The absolute value function is one example of a piecewise-defined function. The bracket notation in Definition is how we express which piece of the function applies on which interval. As we can see in Figure, for x values less than 0, the function y = -x applies, whereas for x greater than or equal to 0, the rule is determined by y = x. -

      - -

      - As long as we are careful to make sure that each potential input has one and only one corresponding output, we can define a piecewise function using as many different functions on different intervals as we desire. -

      - - - -
      - - - Summary -

      -

        -
      • -

        - Just as we can generate a new number by adding, subtracting, multiplying, or dividing two given numbers, we can generate a new function by adding, subtracting, multiplying, or dividing two given functions. For instance, if we know formulas, graphs, or tables for functions f and g that share the same domain, we can create their product p according to the rule p(x) = (f \cdot g)(x) = f(x) \cdot g(x). -

        -
      • -
      • -

        - A piecewise function is a function whose formula consists of at least two different formulas in such a way that which formula applies depends on where the input falls in the domain. For example, given two functions f and g each defined on all real numbers, we can define a new piecewise function P according to the rule - - P(x) = - \begin{cases} - f(x), \amp x \lt a \\ - g(x), \amp x \ge a - \end{cases} - - This tells us that for any x to the left of a, we use the rule for f, whereas for any x to the right of or equal to a, we use the rule for g. We can use as many different functions as we want on different intervals, provided the intervals don't overlap. -

        -
      • -
      -

      -
      - - - - - -
      + + + + + + + + + + + + + +
      + Combining Functions + + +
        +
      • +

        + How can we create new functions by adding, subtracting, multiplying, or dividing given functions? +

        +
      • +
      • +

        + What are piecewise functions and what are different ways we can represent them? +

        +
      • +
      +
      + + Introduction + +

      + In arithmetic, we execute processes where we take two numbers to generate a new number. For example, 2 + 3 = 5: the number 5 results from adding 2 and 3. Similarly, we can multiply two numbers to generate a new one: 2 \cdot 3 = 6. +

      + +

      + We can work similarly with functions. Indeed, we have already seen a sophisticated way to combine two functions to generate a new, related function through composition. If g : A \to B and f : B \to C, then we know there's a new, related function f \circ g : A \to C defined by the process (f \circ g)(x) = f(g(x)). Said differently, the new function f \circ g results from executing g first, followed by f. +

      + +

      + Just as we can add, subtract, multiply, and divide numbers, we can also add, subtract, multiply, and divide functions to create a new function from two or more given functions. +

      + + + + +
      + + + Arithmetic with functions +

      + In most mathematics up until calculus, + the main object we study is numbers. + We ask questions such as +

        +
      • +

        + what number(s) form solutions to the equation x^2 - 4x - 5 = 0? +

        +
      • +
      • +

        + what number is the slope of the line 3x - 4y = 7? +

        +
      • +
      • +

        + what number is generated as output by the function + f(x) = \sqrt{x^2 + 1} by the input x = -2? +

        +
      • +
      + Certainly we also study overall patterns as seen in functions and equations, + but this usually occurs through an examination of numbers themselves, + and we think of numbers as the main objects being acted upon. +

      + +

      + This changes in calculus. In calculus, the fundamental objects being studied are + functions themselves. A function is a much more sophisticated mathematical object than a number, + in part because a function can be thought of in terms of its graph, which is an infinite collection of ordered pairs of the form (x,f(x)). +

      + +

      + It is often helpful to look at a function's formula and observe algebraic structure. For instance, given the quadratic function + + q(x) = -3x^2 + 5x - 7 + + we might benefit from thinking of this as the sum of three simpler functions: the constant function c(x) = -7, the linear function s(x) = 5x that passes through (0,0) with slope m = 5, and the concave down basic quadratic function w(x) = -3x^2. Indeed, each of the simpler functions c, s, and w contribute to making q be the function that it is. Likewise, if we were interested in the function p(x) = (3x^2 + 4)(9 - 2x^2), it might be natural to think about the two simpler functions f(x) = 3x^2 + 4 and g(x) = 9 - 2x^2 that are being multiplied to produce p. +

      + +

      + We thus naturally arrive at the ideas of adding, subtracting, multiplying, or dividing two or more functions, and hence introduce the following definitions and notation. +

      + + + function arithmeticsum of + function arithmeticdifference of + function arithmeticproduct of + function arithmeticquotient of + +

      + Let f and g be functions that share the same domain. Then, +

        +
      • +

        + The sum of f and g is the function f + g defined by (f+g)(x) = f(x) + g(x). +

        +
      • +
      • +

        + The difference of f and g is the function f - g defined by (f-g)(x) = f(x) - g(x). +

        +
      • +
      • +

        + The product of f and g is the function f \cdot g defined by (f \cdot g)(x) = f(x) \cdot g(x). +

        +
      • +
      • +

        + The quotient of f and g is the function \frac{f}{g} defined by \left( \frac{f}{g} \right)(x) = \frac{f(x)}{g(x)} for all x such that g(x) \ne 0. +

        +
      • +
      +

      +
      +
      + + + +
      + + + Combining functions in context +

      + When we work in applied settings with functions that model phenomena in the world around us, + it is often useful to think carefully about the units of various quantities. + Analyzing units can help us both understand the algebraic structure of functions and the variables involved, + as well as assist us in assigning meaning to quantities we compute. + We have already seen this with the notion of average rate of change: + if a function P(t) measures the population in a city in year t and we compute AV_{[5, 11]}, + then the units on AV_{[5, 11]} are + people per year, + and the value of AV_{[5, 11]} is telling us the average rate at which the population changes in people per year on the time interval from year 5 to year 11. +

      + + + +

      + Say that an investor is regularly purchasing stock in a particular company.This example is taken from Section 2.3 of Active Calculus. + Let N(t) represent the number of shares owned on day t, + where t = 0 represents the first day on which shares were purchased. + Let S(t) give the value of one share of the stock on day t; + note that the units on S(t) are dollars per share. + How is the total value, V(t), of the held stock on day t determined? +

      + +

      + Solution. Observe that the units on N(t) are shares and the units on S(t) are dollars per share. Thus when we compute the product + + N(t) \, \text{shares} \cdot S(t) \, \text{dollars per share} + , + it follows that the resulting units are dollars, which is the total value of held stock. Hence, + + V(t) = N(t) \cdot S(t) + . +

      +
      +
      + + + +
      + + + Piecewise functions + +

      + In both abstract and applied settings, + we sometimes have to use different formulas on different intervals in order to define a function of interest. +

      + + + +

      + A familiar and important function that is defined piecewise + is the absolute value function: A(x) = |x|. + We know that if x \ge 0, |x| = x, whereas if x \lt 0, |x| = -x. +

      +

      + + absolute value function + +

      + The absolute value of a real number, denoted by A(x) = |x|, is defined by the rule + + A(x) = + \begin{cases} + -x, \amp x \lt 0 \\ + x, \amp x \ge 0 + \end{cases} + +

      + + +

      +
      +
      + A plot of the absolute value function, A(x) = |x|. +

      A plot of the absolute value function, A(x) = |x|.

      +
      +
      +
      + +

      + The absolute value function is one example of a piecewise-defined function. The bracket notation in Definition is how we express which piece of the function applies on which interval. As we can see in Figure, for x values less than 0, the function y = -x applies, whereas for x greater than or equal to 0, the rule is determined by y = x. +

      + +

      + As long as we are careful to make sure that each potential input has one and only one corresponding output, we can define a piecewise function using as many different functions on different intervals as we desire. +

      + + + +
      + + + Summary +

      +

        +
      • +

        + Just as we can generate a new number by adding, subtracting, multiplying, or dividing two given numbers, we can generate a new function by adding, subtracting, multiplying, or dividing two given functions. For instance, if we know formulas, graphs, or tables for functions f and g that share the same domain, we can create their product p according to the rule p(x) = (f \cdot g)(x) = f(x) \cdot g(x). +

        +
      • +
      • +

        + A piecewise function is a function whose formula consists of at least two different formulas in such a way that which formula applies depends on where the input falls in the domain. For example, given two functions f and g each defined on all real numbers, we can define a new piecewise function P according to the rule + + P(x) = + \begin{cases} + f(x), \amp x \lt a \\ + g(x), \amp x \ge a + \end{cases} + + This tells us that for any x to the left of a, we use the rule for f, whereas for any x to the right of or equal to a, we use the rule for g. We can use as many different functions as we want on different intervals, provided the intervals don't overlap. +

        +
      • +
      +

      +
      + + + + + +
      diff --git a/source/sec-changing-composite-wb.xml b/source/sec-changing-composite-wb.xml index feaf5d18..5e8e2308 100755 --- a/source/sec-changing-composite-wb.xml +++ b/source/sec-changing-composite-wb.xml @@ -1,22 +1,22 @@ - - - - - - - - - - - - - -
      - Composite Functions - - - - - - -
      + + + + + + + + + + + + + +
      + Composite Functions + + + + + + +
      diff --git a/source/sec-changing-composite.xml b/source/sec-changing-composite.xml index 9871a64e..8268f987 100755 --- a/source/sec-changing-composite.xml +++ b/source/sec-changing-composite.xml @@ -1,248 +1,249 @@ - - - - - - - - - - - - - -
      - Composite Functions - - -
        -
      • -

        - How does the process of function composition produce a new function from two other functions? -

        -
      • -
      • -

        - In the composite function h(x) = f(g(x)), what do we mean by the inner and outer function? What role do the domain and codomain of f and g play in determining the domain and codomain of h? -

        -
      • -
      • -

        - How does the expression for AV_{[a,a+h]} involve a composite function? -

        -
      • -
      -
      - - Introduction -

      - Recall that a function, by definition, is a process that takes a collection of inputs and produces a corresponding collection of outputs in such a way that the process produces one and only one output value for any single input value. Because every function is a process, it makes sense to think that it may be possible to take two function processes and do one of the processes first, and then apply the second process to the result. -

      - - - -

      - Suppose we know that y is a function of x according to the process defined by y = f(x) = x^2 - 1 and, in turn, x is a function of t via x = g(t) = 3t-4. Is it possible to combine these processes to generate a new function so that y is a function of t? -

      -
      - -

      - Since y depends on x and x depends on t, it follows that we can also think of y depending directly on t. We can use substitution and the notation of functions to determine this relationship. -

      - -

      - First, it's important to realize what the rule for f tells us. In words, f says to generate the output that corresponds to an input, take the input and square it, and then subtract 1. In symbols, we might express f more generally by writing f(\Box) = \Box^2 - 1. -

      - -

      - Now, observing that y = f(x) = x^2 - 1 and that x = g(t) = 3t - 4, we can substitute the expression g(t) for x in f. Doing so, - - y &= f(x) - &= f(g(t)) - &= f(3t-4) - . - Applying the process defined by the function f to the input 3t-4, we see that - - y = (3t-4)^2 - 1 - , - which defines y as a function of t. -

      - -
      -
      - -

      - When we have a situation such as in Example where we use the output of one function as the input of another, we often say that we have composed two functions. In addition, we use the notation h(t) = f(g(t)) to denote that a new function, h, results from composing the two functions f and g. -

      - - - -
      - - - Composing two functions -

      - Whenever we have two functions, say g : A \to B and f : B \to C, where the codomain of g matches the domain of f, it is possible to link the two processes together to create a new process that we call the composition of f and g. -

      - - composite function - -

      - If f and g are functions such that g : A \to B and f : B \to C, we define the composition of f and g to be the new function h: A \to C given by - - h(t) = f(g(t)) - . - We also sometimes use the notation h = f \circ g, where f \circ g is the single function defined by (f \circ g)(t) = f(g(t)). -

      -
      -
      - -

      - We sometimes call g the inner function and f the outer function. It is important to note that the inner function is actually the first function that gets applied to a given input, and then outer function is applied to the output of the inner function. In addition, in order for a composite function to make sense, we need to ensure that the range of the inner function lies within the domain of the outer function so that the resulting composite function is defined at every possible input. -

      - -

      - In addition to the possibility that functions are given by formulas, - functions can be given by tables or graphs. - We can think about composite functions in these settings as well, - and the following activities prompt us to consider functions given in this way. -

      - - - -
      - - Composing functions in context -

      - Recall Dolbear's function, T = D(N) = 40 + 0.25N, that relates the number of chirps per minute from a snowy cricket to the Fahrenheit temperature, T. We earlier established that D has a domain of [40,160] and a corresponding range of [50,85]. In what follows, we replace T with F to emphasize that temperature is measured in Fahrenheit degrees. -

      - -

      - The Celsius and Fahrenheit temperature scales are connected by a linear function. Indeed, the function that converts Fahrenheit to Celsius is - - C = G(F) = \frac{5}{9}(F-32) - . - For instance, a Fahrenheit temperature of 32 degrees corresponds to C = G(32) = 0 degrees Celsius. -

      - - - -
      - - - Function composition and average rate of change - -

      - Recall that the average rate of change of a function f on the interval [a,b] is given by - - AV_{[a,b]} = \frac{f(b) - f(a)}{b-a} - . - In Figure, we see the familiar representation of AV_{[a,b]} as the slope of the line joining the points (a,f(a)) and (b,f(b)) on the graph of f. In the study of calculus, we progress from the average rate of change on an interval to the instantaneous rate of change of a function at a single value; the core idea that allows us to move from an average rate to an instantaneous one is letting the interval [a,b] shrink in size. -

      - - -
      - AV_{[a,b]} is the slope of the line joining the points (a,f(a)) and (b,f(b)) on the graph of f. -

      ADD ALT TEXT TO THIS IMAGEAV_{[a,b]} is the slope of the line joining the points (a,f(a)) and (b,f(b)) on the graph of f.

      -
      -
      -
      - AV_{[a,a+h]} is the slope of the line joining the points (a,f(a)) and (a,f(a+h)) on the graph of f. -

      ADD ALT TEXT TO THIS IMAGEAV_{[a,a+h]} is the slope of the line joining the points (a,f(a)) and (a,f(a+h)) on the graph of f.

      -
      -
      -
      - -

      - To think about the interval [a,b] shrinking while a stays fixed, we often change our perspective and think of b as b = a + h, where h measures the horizontal difference from b to a. This allows us to eventually think about h getting closer and closer to 0 (without every actually equalling 0), and in that context we consider the equivalent expression - - AV_{[a,a+h]} = \frac{f(a+h) - f(a)}{a+h-a} = \frac{f(a+h) - f(a)}{h} - - for the average rate of change of f on [a,a+h]. -

      - -

      - In this most recent expression for AV_{[a,a+h]}, - we see the important role that the composite function - f(a+h) plays. In particular, to understand the expression for AV_{[a,a+h]} we need to evaluate f at the quantity (a+h). -

      - - - -

      - Suppose that f(x) = x^2. Determine the simplest possible expression you can find for AV_{[3,3+h]}, the average rate of change of f on the interval [3,3+h]. -

      -
      - -

      - By definition, we know that - - AV_{[3,3+h]} = \frac{f(3+h)-f(3)}{h}. - - Using the formula for f, we see that - - AV_{[3,3+h]} = \frac{(3+h)^2-(3)^2}{h}. - - Expanding the numerator and combining like terms, it follows that - - AV_{[3,3+h]} &= \frac{(9+6h+h^2)-9}{h} - &= \frac{6h + h^2}{h} - . - Removing a factor of h in the numerator and observing that h \ne 0, we can simplify and find that - - AV_{[3,3+h]} &= \frac{h(6 + h)}{h} - &= 6+h - . - Hence, AV_{[3,3+h]} = 6+h, which is the average rate of change of f(x) = x^2 on the interval [3,3+h].Note that 6 + h is a linear function of h. This computation is connected to the observation we made in Table regarding how there's a linear aspect to how the average rate of change of a quadratic function changes as we modify the interval. -

      -
      -
      - - - -

      - In Activity, we see an important setting where algebraic simplification plays a crucial role in calculus. Because the expresssion - - AV_{[a,a+h]} = \frac{f(a+h) - f(a)}{h} - - always begins with an h in the denominator, in order to precisely understand how this quantity behaves when h gets close to 0, a simplified version of this expression is needed. For instance, as we found in part (b) of Activity, it's possible to show that for f(x) = 2x^2 - 3x + 1, - - AV_{[1,1+h]} = 2h + 1 - , - which is a much simpler expression to investigate. -

      - -
      - - - Summary -

      -

        -
      • -

        - When defined, the composition of two functions f and g produces a single new function f \circ g according to the rule (f \circ g)(x) = f(g(x)). We note that g is applied first to the input x, and then f is applied to the output g(x) that results from g. -

        -
      • -
      • -

        - In the composite function h(x) = f(g(x)), the inner function is g and the outer function is f. Note that the inner function gets applied to x first, even though the outer function appears first when we read from left to right. The composite function is only defined provided that the codomain of g matches the domain of f: that is, we need any possible outputs of g to be among the allowed inputs for f. In particular, we can say that if g : A \to B and f : B \to C, then f \circ g : A \to C. Thus, the domain of the composite function is the domain of the inner function, and the codomain of the composite function is the codomain of the outer function. -

        -
      • -
      • -

        - Because the expression AV_{[a,a+h]} is defined by - - AV_{[a,a+h]} = \frac{f(a+h) - f(a)}{h} - - and this includes the quantity f(a+h), the average rate of change of a function on the interval [a,a+h] always involves the evaluation of a composite function expression. This idea plays a crucial role in the study of calculus. -

        -
      • -
      -

      -
      - - - - - -
      + + + + + + + + + + + + + +
      + Composite Functions + + +
        +
      • +

        + How does the process of function composition produce a new function from two other functions? +

        +
      • +
      • +

        + In the composite function h(x) = f(g(x)), what do we mean by the inner and outer function? What role do the domain and codomain of f and g play in determining the domain and codomain of h? +

        +
      • +
      • +

        + How does the expression for AV_{[a,a+h]} involve a composite function? +

        +
      • +
      +
      + + Introduction +

      + Recall that a function, by definition, is a process that takes a collection of inputs and produces a corresponding collection of outputs in such a way that the process produces one and only one output value for any single input value. Because every function is a process, it makes sense to think that it may be possible to take two function processes and do one of the processes first, and then apply the second process to the result. +

      + + + +

      + Suppose we know that y is a function of x according to the process defined by y = f(x) = x^2 - 1 and, in turn, x is a function of t via x = g(t) = 3t-4. Is it possible to combine these processes to generate a new function so that y is a function of t? +

      +
      + +

      + Since y depends on x and x depends on t, it follows that we can also think of y depending directly on t. We can use substitution and the notation of functions to determine this relationship. +

      + +

      + First, it's important to realize what the rule for f tells us. In words, f says to generate the output that corresponds to an input, take the input and square it, and then subtract 1. In symbols, we might express f more generally by writing f(\Box) = \Box^2 - 1. +

      + +

      + Now, observing that y = f(x) = x^2 - 1 and that x = g(t) = 3t - 4, we can substitute the expression g(t) for x in f. Doing so, + + y &= f(x) + &= f(g(t)) + &= f(3t-4) + . + Applying the process defined by the function f to the input 3t-4, we see that + + y = (3t-4)^2 - 1 + , + which defines y as a function of t. +

      + +
      +
      + +

      + When we have a situation such as in Example where we use the output of one function as the input of another, we often say that we have composed two functions. In addition, we use the notation h(t) = f(g(t)) to denote that a new function, h, results from composing the two functions f and g. +

      + + + + +
      + + + Composing two functions +

      + Whenever we have two functions, say g : A \to B and f : B \to C, where the codomain of g matches the domain of f, it is possible to link the two processes together to create a new process that we call the composition of f and g. +

      + + composite function + +

      + If f and g are functions such that g : A \to B and f : B \to C, we define the composition of f and g to be the new function h: A \to C given by + + h(t) = f(g(t)) + . + We also sometimes use the notation h = f \circ g, where f \circ g is the single function defined by (f \circ g)(t) = f(g(t)). +

      +
      +
      + +

      + We sometimes call g the inner function and f the outer function. It is important to note that the inner function is actually the first function that gets applied to a given input, and then outer function is applied to the output of the inner function. In addition, in order for a composite function to make sense, we need to ensure that the range of the inner function lies within the domain of the outer function so that the resulting composite function is defined at every possible input. +

      + +

      + In addition to the possibility that functions are given by formulas, + functions can be given by tables or graphs. + We can think about composite functions in these settings as well, + and the following activities prompt us to consider functions given in this way. +

      + + + +
      + + Composing functions in context +

      + Recall Dolbear's function, T = D(N) = 40 + 0.25N, that relates the number of chirps per minute from a snowy cricket to the Fahrenheit temperature, T. We earlier established that D has a domain of [40,160] and a corresponding range of [50,85]. In what follows, we replace T with F to emphasize that temperature is measured in Fahrenheit degrees. +

      + +

      + The Celsius and Fahrenheit temperature scales are connected by a linear function. Indeed, the function that converts Fahrenheit to Celsius is + + C = G(F) = \frac{5}{9}(F-32) + . + For instance, a Fahrenheit temperature of 32 degrees corresponds to C = G(32) = 0 degrees Celsius. +

      + + + +
      + + + Function composition and average rate of change + +

      + Recall that the average rate of change of a function f on the interval [a,b] is given by + + AV_{[a,b]} = \frac{f(b) - f(a)}{b-a} + . + In Figure, we see the familiar representation of AV_{[a,b]} as the slope of the line joining the points (a,f(a)) and (b,f(b)) on the graph of f. In the study of calculus, we progress from the average rate of change on an interval to the instantaneous rate of change of a function at a single value; the core idea that allows us to move from an average rate to an instantaneous one is letting the interval [a,b] shrink in size. +

      + + +
      + AV_{[a,b]} is the slope of the line joining the points (a,f(a)) and (b,f(b)) on the graph of f. +

      ADD ALT TEXT TO THIS IMAGEAV_{[a,b]} is the slope of the line joining the points (a,f(a)) and (b,f(b)) on the graph of f.

      +
      +
      +
      + AV_{[a,a+h]} is the slope of the line joining the points (a,f(a)) and (a,f(a+h)) on the graph of f. +

      ADD ALT TEXT TO THIS IMAGEAV_{[a,a+h]} is the slope of the line joining the points (a,f(a)) and (a,f(a+h)) on the graph of f.

      +
      +
      +
      + +

      + To think about the interval [a,b] shrinking while a stays fixed, we often change our perspective and think of b as b = a + h, where h measures the horizontal difference from b to a. This allows us to eventually think about h getting closer and closer to 0 (without every actually equalling 0), and in that context we consider the equivalent expression + + AV_{[a,a+h]} = \frac{f(a+h) - f(a)}{a+h-a} = \frac{f(a+h) - f(a)}{h} + + for the average rate of change of f on [a,a+h]. +

      + +

      + In this most recent expression for AV_{[a,a+h]}, + we see the important role that the composite function + f(a+h) plays. In particular, to understand the expression for AV_{[a,a+h]} we need to evaluate f at the quantity (a+h). +

      + + + +

      + Suppose that f(x) = x^2. Determine the simplest possible expression you can find for AV_{[3,3+h]}, the average rate of change of f on the interval [3,3+h]. +

      +
      + +

      + By definition, we know that + + AV_{[3,3+h]} = \frac{f(3+h)-f(3)}{h}. + + Using the formula for f, we see that + + AV_{[3,3+h]} = \frac{(3+h)^2-(3)^2}{h}. + + Expanding the numerator and combining like terms, it follows that + + AV_{[3,3+h]} &= \frac{(9+6h+h^2)-9}{h} + &= \frac{6h + h^2}{h} + . + Removing a factor of h in the numerator and observing that h \ne 0, we can simplify and find that + + AV_{[3,3+h]} &= \frac{h(6 + h)}{h} + &= 6+h + . + Hence, AV_{[3,3+h]} = 6+h, which is the average rate of change of f(x) = x^2 on the interval [3,3+h].Note that 6 + h is a linear function of h. This computation is connected to the observation we made in Table regarding how there's a linear aspect to how the average rate of change of a quadratic function changes as we modify the interval. +

      +
      +
      + + + +

      + In Activity, we see an important setting where algebraic simplification plays a crucial role in calculus. Because the expresssion + + AV_{[a,a+h]} = \frac{f(a+h) - f(a)}{h} + + always begins with an h in the denominator, in order to precisely understand how this quantity behaves when h gets close to 0, a simplified version of this expression is needed. For instance, as we found in part (b) of Activity, it's possible to show that for f(x) = 2x^2 - 3x + 1, + + AV_{[1,1+h]} = 2h + 1 + , + which is a much simpler expression to investigate. +

      + +
      + + + Summary +

      +

        +
      • +

        + When defined, the composition of two functions f and g produces a single new function f \circ g according to the rule (f \circ g)(x) = f(g(x)). We note that g is applied first to the input x, and then f is applied to the output g(x) that results from g. +

        +
      • +
      • +

        + In the composite function h(x) = f(g(x)), the inner function is g and the outer function is f. Note that the inner function gets applied to x first, even though the outer function appears first when we read from left to right. The composite function is only defined provided that the codomain of g matches the domain of f: that is, we need any possible outputs of g to be among the allowed inputs for f. In particular, we can say that if g : A \to B and f : B \to C, then f \circ g : A \to C. Thus, the domain of the composite function is the domain of the inner function, and the codomain of the composite function is the codomain of the outer function. +

        +
      • +
      • +

        + Because the expression AV_{[a,a+h]} is defined by + + AV_{[a,a+h]} = \frac{f(a+h) - f(a)}{h} + + and this includes the quantity f(a+h), the average rate of change of a function on the interval [a,a+h] always involves the evaluation of a composite function expression. This idea plays a crucial role in the study of calculus. +

        +
      • +
      +

      +
      + + + + + +
      diff --git a/source/sec-changing-functions-models-wb.xml b/source/sec-changing-functions-models-wb.xml index b28a8ab9..b1f632d6 100755 --- a/source/sec-changing-functions-models-wb.xml +++ b/source/sec-changing-functions-models-wb.xml @@ -1,21 +1,21 @@ - - - - - - - - - - - - - -
      - Functions: Modeling Relationships - - - - - -
      + + + + + + + + + + + + + +
      + Functions: Modeling Relationships + + + + + +
      diff --git a/source/sec-changing-functions-models.xml b/source/sec-changing-functions-models.xml index f13fdc4d..dfdae88c 100755 --- a/source/sec-changing-functions-models.xml +++ b/source/sec-changing-functions-models.xml @@ -1,412 +1,413 @@ - - - - - - - - - - - - - -
      - Functions: Modeling Relationships - -
        -
      • -

        - How can we use the mathematical idea of a function to represent the relationship between two changing quantities? -

        -
      • -
      • -

        - What are some formal characteristics of an abstract mathematical function? how do we think differently about these characteristics in the context of a physical model? -

        -
      • -
      -
      - - Introduction -

      - A mathematical model is an abstract concept through which we use mathematical language and notation to describe a phenomenon in the world around us. One example of a mathematical model is found in Dolbear's LawYou can read more in the Wikipedia entry for Dolbear's Law, which has proven to be remarkably accurate for the behavior of snowy tree crickets. For even more of the story, including a reference to this phenomenon on the popular show The Big Bang Theory, see this article.. Dolbear's Law In the late 1800s, the physicist Amos Dolbear was listening to crickets chirp and noticed a pattern: how frequently the crickets chirped seemed to be connected to the outside temperature. If we let T represent the temperature in degrees Fahrenheit and N the number of chirps per minute, we can summarize Dolbear's observations in the following table. -

      - - - Data for Dolbear's observations. - - - N (chirps per minute) - 40 - 80 - 120 - 160 - - - T (^\circ Fahrenheit) - 50^\circ - 60^\circ - 70^\circ - 80^\circ - - -
      -

      - For a mathematical model, we often seek an algebraic formula that captures observed behavior accurately and can be used to predict behavior not yet observed. For the data in Table, we observe that each of the ordered pairs in the table make the equation - - T = 40 + 0.25N - - true. For instance, 70 = 40 + 0.25(120). Indeed, scientists who made many additional cricket chirp observations following Dolbear's initial counts found that the formula in Equation holds with remarkable accuracy for the snowy tree cricket in temperatures ranging from about 50^\circ F to 85^\circ F. -

      - - - -
      - - - Functions - -

      - The mathematical concept of a function functionintroduction to is one of the most central ideas in all of mathematics, in part since functions provide an important tool for representing and explaining patterns. At its core, a function is a repeatable process that takes a collection of input values and generates a corresponding collection of output values with the property that if we use a particular single input, the process always produces exactly the same single output. -

      - -

      - For instance, Dolbear's Law in Equation provides a process that takes a given number of chirps between 40 and 180 per minute and reliably produces the corresponding temperature that corresponds to the number of chirps, and thus this equation generates a function. We often give functions shorthand names; using D for the Dolbear function, we can represent the process of taking inputs (observed chirp rates) to outputs (corresponding temperatures) using arrows: - - - 80 &\xrightarrow{D} 60 - - - 120 &\xrightarrow{D} 70 - - - N &\xrightarrow{D} 40 + 0.25 N - - - Alternatively, for the relationship 80 \xrightarrow{D} 60 we can also use the equivalent notation D(80) = 60 to indicate that Dolbear's Law takes an input of 80 chirps per minute and produces a corresponding output of 60 degrees Fahrenheit. More generally, we write T = D(N) = 40 + 0.25N to indicate that a certain temperature, T, is determined by a given number of chirps per minute, N, according to the process D(N) = 40 + 0.25N. -

      - -

      - Tables and graphs are particularly valuable ways to characterize and represent functions. For the current example, we summarize some of the data the Dolbear function generates in Table and plot that data along with the underlying curve in Figure. -

      - - - - Data for the function <m>T = D(N) = 40 + 0.25N</m>. - - - N - T - - - 40 - 50 - - - 80 - 60 - - - 120 - 70 - - - 160 - 80 - - - 180 - 85 - - -
      -
      - Graph of data from the function T = D(N) = 40 + 0.25N and the underlying curve. -

      Graph of data from the function T = D(N) = 40 + 0.25N and the underlying curve.

      -
      -
      -
      - -

      - When a point such as (120,70) in Figure lies on a function's graph, this indicates the correspondence between input and output: when the value 120 chirps per minute is entered in the function D, the result is 70 degrees Fahrenheit. More concisely, D(120) = 70. Aloud, we read D of 120 is 70. -

      - -

      - For most important concepts in mathematics, the mathematical community decides on formal definitions to ensure that we have a shared language of understanding. In this text, we will use the following definition of the term function. -

      - - - functiondefinition - -

      - A function is a process that may be applied to a collection of input values to produce a corresponding collection of output values in such a way that the process produces one and only one output value for any single input value. -

      -
      -
      - -

      - If we name a given function F and call the collection of possible inputs to F the set A and the corresponding collection of potential outputs B, we say F is a function from A to B, and sometimes write F : A \to B. When a particular input value to F, say t, produces a corresponding output z, we write F(t) = z and read this symbolic notation as F of t is z. functionnotation We often call t the independent variable functionindependent variable and z the dependent variable functiondependent variable, since z is a function of t. -

      - - - functiondomain functioncodomain - -

      - Let F be a function from A to B. The set A of possible inputs to F is called the domain of F; the set B of potential outputs from F is called the codomain of F. -

      -
      -
      - -

      - For the Dolbear function D(N) = 40 + 0.25N in the context of modeling temperature as a function of the number of cricket chirps per minute, the domain of the function is A = [40,180]The notation [40,180] means the collection of all real numbers x that satisfy 40 \le x \le 80 and is sometimes called interval notation. and the codomain is all Fahrenheit temperatures. The codomain of a function is the collection of possible outputs, which we distinguish from the collection of actual ouputs. -

      - - - functionrange - -

      - Let F be a function from A to B. The range of F is the collection of all actual outputs of the function. That is, the range is the collection of all elements y in B for which it is possible to find an element x in A such that F(x) = y. -

      -
      -
      - -

      - In many situations, the range of a function is much more challenging to determine than its codomain. For the Dolbear function, the range is straightforward to find by using the graph shown in Figure: since the actual outputs of D fall between T = 50 and T = 85 and include every value in that interval, the range of D is [50,85]. -

      - -

      - The range of any function is always a subset of the codomain. It is possible for the range to equal the codomain. -

      - - - -
      - - - Comparing models and abstract functions - -

      - Again, a mathematical model is an abstract concept through which we use mathematical language and notation to describe a phenomenon in the world around us. So far, we have considered two different examples: the Dolbear function, T = D(N) = 40 + 0.25N, that models how Fahrenheit temperature is a function of the number of cricket chirps per minute and the function V = f(h) = \frac{\pi}{3}h^2(12-h) that models how the volume of water in a spherical tank of radius 4 m is a function of the depth of the water in the tank. While often we consider a function in the physical setting of some model, there are also many occasions where we consider an abstract function for its own sake in order to study and understand it. -

      - - - A parabola and a falling ball - -

      - Calculus shows that for a tennis ball tossed vertically from a window 48 feet above the ground at an initial vertical velocity of 32 feet per second, the ball's height above the ground at time t (where t = 0 is the instant the ball is tossed) can be modeled by the function h = g(t) = -16t^2 + 32t + 48. Discuss the differences between the model g and the abstract function f determined by y = f(x) = -16x^2 + 32x + 48. -

      -
      - -

      - We start with the abstract function y = f(x) = -16x^2 + 32x + 48. Absent a physical context, we can investigate the behavior of this function by computing function values, plotting points, and thinking about its overall behavior. We recognize the function f as quadraticWe will engage in a brief review of quadratic functions in Section, noting that it opens down because of the leading coefficient of -16, with vertex located at x = \frac{-32}{2(-16)} = 1, y-intercept at (0,48), and with x-intercepts at (-1,0) and (3,0) because - - -16x^2 + 32x + 48 = -16(x^2 - 2x - 3) = -16(x-3)(x+1) - . Computing some additional points to gain more information, we see both the data in Table and the corresponding graph in Figure. -

      - - - - Data for the function <m>y = f(x) = -16x^2 + 32x + 48</m>. - - - x - f(x) - - - -2 - -80 - - - -1 - 0 - - - 0 - 48 - - - 1 - 64 - - - 2 - 48 - - - 3 - 0 - - - 4 - -80 - - -
      -
      - Graph of the function y = f(x) and some data from the table. -

      Graph of the function y = f(x) and some data from the table.

      -
      -
      -
      - -

      - For this abstract function, its domain is all real numbers since we may input any real number x we wish into the formula f(x) = -16x^2 + 32x + 48 and have the result be defined. Moreover, taking a real number x and processing it in the formula f(x) = -16x^2 + 32x + 48 will produce another real number. This tells us that the codomain of the abstract function f is also all real numbers. Finally, from the graph and the data, we observe that the largest possible output of the function f is y = 64. It is apparent that we can generate any y-value less than or equal to 64, and thus the range of the abstract function f is all real numbers less than or equal to 64. We denote this collection of real numbers using the shorthand interval notation (-\infty, 64].The notation (-\infty,64] stands for all the real numbers that lie to the left of and including 64. The -\infty indicates that there is no left-hand bound on the interval. -

      - -

      - Next, we turn our attention to the model h = g(t) = -16t^2 + 32t + 48 that represents the height of the ball, h, in feet t seconds after the ball in initially launched. Here, the big difference is the domain, codomain, and range associated with the model. Since the model takes effect once the ball is tossed, it only makes sense to consider the model for input values t \ge 0. Moreover, because the model ceases to apply once the ball lands, it is only valid for t \le 3. Thus, the domain of g is [0,3]. For the codomain, it only makes sense to consider values of h that are nonnegative. That is, as we think of potential outputs for the model, then can only be in the interval [0, \infty). Finally, we can consider the graph of the model on the given domain in Figure and see that the range of the model is [0,64], the collection of all heights between its lowest (ground level) and its largest (at the vertex). -

      - - - - Data for the model <m>h = g(t) = -16t^2 + 32t + 48</m>. - - - t - g(t) - - - 0 - 48 - - - 1 - 64 - - - 2 - 48 - - - 3 - 0 - - -
      -
      - Graph of the model h = g(t) and some data from the table. -

      Graph of the model h = g(t) and some data from the table.

      -
      -
      -
      - -
      -
      - - - -
      - - - Determining whether a relationship is a function or not -

      - To this point in our discussion of functions, we have mostly focused on what the function process may model and what the domain, codomain, and range of a model or abstract function are. It is also important to take note of another part of Definition: \ldots the process produces one and only one output value for any single input value. Said differently, if a relationship or process ever associates a single input with two or more different outputs, the process cannot be a function. -

      - - - -

      - Is the relationship between people and phone numbers a function? -

      - -

      - Solution. No, this relationship is not a function. A given individual person can be associated with more than one phone number, such as their cell phone and their work telephone. This means that we can't view phone numbers as a function of people: one input (a person) can lead to two different outputs (phone numbers). We also can't view people as a function of phone numbers, since more than one person can be associated with a phone number, such as when a family shares a single phone at home. -

      -
      -
      - - - -

      - The relationship between x and y that is given in the following table where we attempt to view y as depending on x. -

      - - - A table that relates <m>x</m> and <m>y</m> values. - - - x - 1 - 2 - 3 - 4 - 5 - - - y - 13 - 11 - 10 - 11 - 13 - - -
      - -

      - Solution. The relationship between y and x in Table allows us to think of y as a function of x since each particular input is associated with one and only one output. If we name the function f, we can say for instance that f(4) = 11. Moreover, the domain of f is the set of inputs \{1,2,3,4,5\}, and the codomain (which is also the range) is the set of outputs \{10,11,13\}. -

      -
      -
      - - - -

      - For a relationship or process to be a function, each individual input must be associated with one and only one output. Thus, the usual way that we demonstrate a relationship or process is not a function is to find a particular input that is associated with two or more outputs. When the relationship is given graphically, such as in the left graph in , we can use the vertical line test to determine whether or not the graph represents a function. -

      - - - Vertical Line Test - vertical line test -

      - A graph in the plane represents a function if and only if every vertical line intersects the graph at most once. When the graph passes this test, the vertical coordinate of each point on the graph can be viewed as a function of the horizontal coordinate of the point. -

      -
      - -

      - Since the vertical line x = -3 passes through the circle in the left graph in at both y = -\sqrt{7} and y = \sqrt{7}, the circle does not represent a relationship where y is a function of x. However, since any vertical line we draw in the right graph in intersects the blue curve at most one time, the graph indeed represents a function. -

      - -

      - We conclude with a formal definition of the graph of a function. -

      - - - functiongraph - -

      - Let F : A \to B, where A and B are each collections of real numbers. The graph of F is the collection of all ordered pairs (x,y) that satisfy y = F(x). -

      -
      -
      - -

      - When we use a computing device such as Desmos to graph a function g, the program is generating a large collection of ordered pairs (x,g(x)), plotting them in the x-y plane, and connecting the points with short line segments. -

      - -
      - - - Summary -

      -

        -
      • -

        - A function is a process that generates a relationship between two collections of quantities. The function associates each member of a collection of input values with one and only one member of the collection of output values. A function can be described or defined by words, by a table of values, by a graph, or by a formula. -

        -
      • -
      • -

        - Functions may be viewed as mathematical objects worthy of study for their own sake and also as models that represent physical phenomena in the world around us. Every function or model has a domain (the set of possible or allowable input values), a codomain (the set of possible output values), and a range (the set of all actual output values). Both the codomain and range depend on the domain. For an abstract function, the domain is usually viewed as the largest reasonable collection of input values; for a function that models a physical phenomenon, the domain is usually determined by the context of possibilities for the input in the phenomenon being considered. -

        -
      • -
      -

      -
      - - - - - -
      + + + + + + + + + + + + + +
      + Functions: Modeling Relationships + +
        +
      • +

        + How can we use the mathematical idea of a function to represent the relationship between two changing quantities? +

        +
      • +
      • +

        + What are some formal characteristics of an abstract mathematical function? how do we think differently about these characteristics in the context of a physical model? +

        +
      • +
      +
      + + Introduction +

      + A mathematical model is an abstract concept through which we use mathematical language and notation to describe a phenomenon in the world around us. One example of a mathematical model is found in Dolbear's LawYou can read more in the Wikipedia entry for Dolbear's Law, which has proven to be remarkably accurate for the behavior of snowy tree crickets. For even more of the story, including a reference to this phenomenon on the popular show The Big Bang Theory, see this article.. Dolbear's Law In the late 1800s, the physicist Amos Dolbear was listening to crickets chirp and noticed a pattern: how frequently the crickets chirped seemed to be connected to the outside temperature. If we let T represent the temperature in degrees Fahrenheit and N the number of chirps per minute, we can summarize Dolbear's observations in the following table. +

      + + + Data for Dolbear's observations. + + + N (chirps per minute) + 40 + 80 + 120 + 160 + + + T (^\circ Fahrenheit) + 50^\circ + 60^\circ + 70^\circ + 80^\circ + + +
      +

      + For a mathematical model, we often seek an algebraic formula that captures observed behavior accurately and can be used to predict behavior not yet observed. For the data in Table, we observe that each of the ordered pairs in the table make the equation + + T = 40 + 0.25N + + true. For instance, 70 = 40 + 0.25(120). Indeed, scientists who made many additional cricket chirp observations following Dolbear's initial counts found that the formula in Equation holds with remarkable accuracy for the snowy tree cricket in temperatures ranging from about 50^\circ F to 85^\circ F. +

      + + + + +
      + + + Functions + +

      + The mathematical concept of a function functionintroduction to is one of the most central ideas in all of mathematics, in part since functions provide an important tool for representing and explaining patterns. At its core, a function is a repeatable process that takes a collection of input values and generates a corresponding collection of output values with the property that if we use a particular single input, the process always produces exactly the same single output. +

      + +

      + For instance, Dolbear's Law in Equation provides a process that takes a given number of chirps between 40 and 180 per minute and reliably produces the corresponding temperature that corresponds to the number of chirps, and thus this equation generates a function. We often give functions shorthand names; using D for the Dolbear function, we can represent the process of taking inputs (observed chirp rates) to outputs (corresponding temperatures) using arrows: + + + 80 &\xrightarrow{D} 60 + + + 120 &\xrightarrow{D} 70 + + + N &\xrightarrow{D} 40 + 0.25 N + + + Alternatively, for the relationship 80 \xrightarrow{D} 60 we can also use the equivalent notation D(80) = 60 to indicate that Dolbear's Law takes an input of 80 chirps per minute and produces a corresponding output of 60 degrees Fahrenheit. More generally, we write T = D(N) = 40 + 0.25N to indicate that a certain temperature, T, is determined by a given number of chirps per minute, N, according to the process D(N) = 40 + 0.25N. +

      + +

      + Tables and graphs are particularly valuable ways to characterize and represent functions. For the current example, we summarize some of the data the Dolbear function generates in Table and plot that data along with the underlying curve in Figure. +

      + + + + Data for the function <m>T = D(N) = 40 + 0.25N</m>. + + + N + T + + + 40 + 50 + + + 80 + 60 + + + 120 + 70 + + + 160 + 80 + + + 180 + 85 + + +
      +
      + Graph of data from the function T = D(N) = 40 + 0.25N and the underlying curve. +

      Graph of data from the function T = D(N) = 40 + 0.25N and the underlying curve.

      +
      +
      +
      + +

      + When a point such as (120,70) in Figure lies on a function's graph, this indicates the correspondence between input and output: when the value 120 chirps per minute is entered in the function D, the result is 70 degrees Fahrenheit. More concisely, D(120) = 70. Aloud, we read D of 120 is 70. +

      + +

      + For most important concepts in mathematics, the mathematical community decides on formal definitions to ensure that we have a shared language of understanding. In this text, we will use the following definition of the term function. +

      + + + functiondefinition + +

      + A function is a process that may be applied to a collection of input values to produce a corresponding collection of output values in such a way that the process produces one and only one output value for any single input value. +

      +
      +
      + +

      + If we name a given function F and call the collection of possible inputs to F the set A and the corresponding collection of potential outputs B, we say F is a function from A to B, and sometimes write F : A \to B. When a particular input value to F, say t, produces a corresponding output z, we write F(t) = z and read this symbolic notation as F of t is z. functionnotation We often call t the independent variable functionindependent variable and z the dependent variable functiondependent variable, since z is a function of t. +

      + + + functiondomain functioncodomain + +

      + Let F be a function from A to B. The set A of possible inputs to F is called the domain of F; the set B of potential outputs from F is called the codomain of F. +

      +
      +
      + +

      + For the Dolbear function D(N) = 40 + 0.25N in the context of modeling temperature as a function of the number of cricket chirps per minute, the domain of the function is A = [40,180]The notation [40,180] means the collection of all real numbers x that satisfy 40 \le x \le 80 and is sometimes called interval notation. and the codomain is all Fahrenheit temperatures. The codomain of a function is the collection of possible outputs, which we distinguish from the collection of actual ouputs. +

      + + + functionrange + +

      + Let F be a function from A to B. The range of F is the collection of all actual outputs of the function. That is, the range is the collection of all elements y in B for which it is possible to find an element x in A such that F(x) = y. +

      +
      +
      + +

      + In many situations, the range of a function is much more challenging to determine than its codomain. For the Dolbear function, the range is straightforward to find by using the graph shown in Figure: since the actual outputs of D fall between T = 50 and T = 85 and include every value in that interval, the range of D is [50,85]. +

      + +

      + The range of any function is always a subset of the codomain. It is possible for the range to equal the codomain. +

      + + + +
      + + + Comparing models and abstract functions + +

      + Again, a mathematical model is an abstract concept through which we use mathematical language and notation to describe a phenomenon in the world around us. So far, we have considered two different examples: the Dolbear function, T = D(N) = 40 + 0.25N, that models how Fahrenheit temperature is a function of the number of cricket chirps per minute and the function V = f(h) = \frac{\pi}{3}h^2(12-h) that models how the volume of water in a spherical tank of radius 4 m is a function of the depth of the water in the tank. While often we consider a function in the physical setting of some model, there are also many occasions where we consider an abstract function for its own sake in order to study and understand it. +

      + + + A parabola and a falling ball + +

      + Calculus shows that for a tennis ball tossed vertically from a window 48 feet above the ground at an initial vertical velocity of 32 feet per second, the ball's height above the ground at time t (where t = 0 is the instant the ball is tossed) can be modeled by the function h = g(t) = -16t^2 + 32t + 48. Discuss the differences between the model g and the abstract function f determined by y = f(x) = -16x^2 + 32x + 48. +

      +
      + +

      + We start with the abstract function y = f(x) = -16x^2 + 32x + 48. Absent a physical context, we can investigate the behavior of this function by computing function values, plotting points, and thinking about its overall behavior. We recognize the function f as quadraticWe will engage in a brief review of quadratic functions in Section, noting that it opens down because of the leading coefficient of -16, with vertex located at x = \frac{-32}{2(-16)} = 1, y-intercept at (0,48), and with x-intercepts at (-1,0) and (3,0) because + + -16x^2 + 32x + 48 = -16(x^2 - 2x - 3) = -16(x-3)(x+1) + . Computing some additional points to gain more information, we see both the data in Table and the corresponding graph in Figure. +

      + + + + Data for the function <m>y = f(x) = -16x^2 + 32x + 48</m>. + + + x + f(x) + + + -2 + -80 + + + -1 + 0 + + + 0 + 48 + + + 1 + 64 + + + 2 + 48 + + + 3 + 0 + + + 4 + -80 + + +
      +
      + Graph of the function y = f(x) and some data from the table. +

      Graph of the function y = f(x) and some data from the table.

      +
      +
      +
      + +

      + For this abstract function, its domain is all real numbers since we may input any real number x we wish into the formula f(x) = -16x^2 + 32x + 48 and have the result be defined. Moreover, taking a real number x and processing it in the formula f(x) = -16x^2 + 32x + 48 will produce another real number. This tells us that the codomain of the abstract function f is also all real numbers. Finally, from the graph and the data, we observe that the largest possible output of the function f is y = 64. It is apparent that we can generate any y-value less than or equal to 64, and thus the range of the abstract function f is all real numbers less than or equal to 64. We denote this collection of real numbers using the shorthand interval notation (-\infty, 64].The notation (-\infty,64] stands for all the real numbers that lie to the left of and including 64. The -\infty indicates that there is no left-hand bound on the interval. +

      + +

      + Next, we turn our attention to the model h = g(t) = -16t^2 + 32t + 48 that represents the height of the ball, h, in feet t seconds after the ball in initially launched. Here, the big difference is the domain, codomain, and range associated with the model. Since the model takes effect once the ball is tossed, it only makes sense to consider the model for input values t \ge 0. Moreover, because the model ceases to apply once the ball lands, it is only valid for t \le 3. Thus, the domain of g is [0,3]. For the codomain, it only makes sense to consider values of h that are nonnegative. That is, as we think of potential outputs for the model, then can only be in the interval [0, \infty). Finally, we can consider the graph of the model on the given domain in Figure and see that the range of the model is [0,64], the collection of all heights between its lowest (ground level) and its largest (at the vertex). +

      + + + + Data for the model <m>h = g(t) = -16t^2 + 32t + 48</m>. + + + t + g(t) + + + 0 + 48 + + + 1 + 64 + + + 2 + 48 + + + 3 + 0 + + +
      +
      + Graph of the model h = g(t) and some data from the table. +

      Graph of the model h = g(t) and some data from the table.

      +
      +
      +
      + +
      +
      + + + +
      + + + Determining whether a relationship is a function or not +

      + To this point in our discussion of functions, we have mostly focused on what the function process may model and what the domain, codomain, and range of a model or abstract function are. It is also important to take note of another part of Definition: \ldots the process produces one and only one output value for any single input value. Said differently, if a relationship or process ever associates a single input with two or more different outputs, the process cannot be a function. +

      + + + +

      + Is the relationship between people and phone numbers a function? +

      + +

      + Solution. No, this relationship is not a function. A given individual person can be associated with more than one phone number, such as their cell phone and their work telephone. This means that we can't view phone numbers as a function of people: one input (a person) can lead to two different outputs (phone numbers). We also can't view people as a function of phone numbers, since more than one person can be associated with a phone number, such as when a family shares a single phone at home. +

      +
      +
      + + + +

      + The relationship between x and y that is given in the following table where we attempt to view y as depending on x. +

      + + + A table that relates <m>x</m> and <m>y</m> values. + + + x + 1 + 2 + 3 + 4 + 5 + + + y + 13 + 11 + 10 + 11 + 13 + + +
      + +

      + Solution. The relationship between y and x in Table allows us to think of y as a function of x since each particular input is associated with one and only one output. If we name the function f, we can say for instance that f(4) = 11. Moreover, the domain of f is the set of inputs \{1,2,3,4,5\}, and the codomain (which is also the range) is the set of outputs \{10,11,13\}. +

      +
      +
      + + + +

      + For a relationship or process to be a function, each individual input must be associated with one and only one output. Thus, the usual way that we demonstrate a relationship or process is not a function is to find a particular input that is associated with two or more outputs. When the relationship is given graphically, such as in the left graph in , we can use the vertical line test to determine whether or not the graph represents a function. +

      + + + Vertical Line Test + vertical line test +

      + A graph in the plane represents a function if and only if every vertical line intersects the graph at most once. When the graph passes this test, the vertical coordinate of each point on the graph can be viewed as a function of the horizontal coordinate of the point. +

      +
      + +

      + Since the vertical line x = -3 passes through the circle in the left graph in at both y = -\sqrt{7} and y = \sqrt{7}, the circle does not represent a relationship where y is a function of x. However, since any vertical line we draw in the right graph in intersects the blue curve at most one time, the graph indeed represents a function. +

      + +

      + We conclude with a formal definition of the graph of a function. +

      + + + functiongraph + +

      + Let F : A \to B, where A and B are each collections of real numbers. The graph of F is the collection of all ordered pairs (x,y) that satisfy y = F(x). +

      +
      +
      + +

      + When we use a computing device such as Desmos to graph a function g, the program is generating a large collection of ordered pairs (x,g(x)), plotting them in the x-y plane, and connecting the points with short line segments. +

      + +
      + + + Summary +

      +

        +
      • +

        + A function is a process that generates a relationship between two collections of quantities. The function associates each member of a collection of input values with one and only one member of the collection of output values. A function can be described or defined by words, by a table of values, by a graph, or by a formula. +

        +
      • +
      • +

        + Functions may be viewed as mathematical objects worthy of study for their own sake and also as models that represent physical phenomena in the world around us. Every function or model has a domain (the set of possible or allowable input values), a codomain (the set of possible output values), and a range (the set of all actual output values). Both the codomain and range depend on the domain. For an abstract function, the domain is usually viewed as the largest reasonable collection of input values; for a function that models a physical phenomenon, the domain is usually determined by the context of possibilities for the input in the phenomenon being considered. +

        +
      • +
      +

      +
      + + + + + +
      diff --git a/source/sec-changing-in-tandem-wb.xml b/source/sec-changing-in-tandem-wb.xml index 6fe1d2ce..180e4797 100644 --- a/source/sec-changing-in-tandem-wb.xml +++ b/source/sec-changing-in-tandem-wb.xml @@ -1,19 +1,19 @@ - - - - - - - - - - - - - -
      - Changing in Tandem - - - -
      + + + + + + + + + + + + + +
      + Changing in Tandem + + + +
      diff --git a/source/sec-changing-in-tandem.xml b/source/sec-changing-in-tandem.xml index 376737dc..f5f29f03 100755 --- a/source/sec-changing-in-tandem.xml +++ b/source/sec-changing-in-tandem.xml @@ -1,260 +1,261 @@ - - - - - - - - - - - - - -
      - Changing in Tandem - -
        -
      • -

        - If we have two quantities that are changing in tandem, how can we connect the quantities and understand how change in one affects the other? -

        -
      • -
      • -

        - When the amount of water in a tank is changing, what behaviors can we observe? -

        -
      • -
      -
      - - Introduction -

      - Mathematics is the art of making sense of patterns. One way that patterns arise is when two quantities are changing in tandem. In this setting, we may make sense of the situation by expressing the relationship between the changing quantities through words, through images, through data, or through a formula. -

      - - - -
      - - - Using Graphs to Represent Relationships - -

      - In Preview Activity, we saw how several changing quantities were related in the setting of an aquarium filling with water: time, the depth of the water, and the total amount of water in the tank are all changing, and any pair of these quantities changes in related ways. One way that we can make sense of the situation is to record some data in a table. For instance, observing that the tank is filling at a rate of 0.5 cubic feet per minute, this tells us that after 1 minute there will be 0.5 cubic feet of water in the tank, and after 2 minutes there will be 1 cubic foot of water in the tank, and so on. If we let t denote the time in minutes and V the amount of water in the tank at time t, we can represent the relationship between these quantities through Table. -

      - - - - - Data for how the volume of water in the tank changes with time. - - - t - V - - - 0 - 0.0 - - - 1 - 0.5 - - - 2 - 1.0 - - - 3 - 1.5 - - - 4 - 2.0 - - - 5 - 2.5 - - -
      -
      - A visual representation of the data in Table. -

      A visual representation of the data in Table.

      -
      -
      -
      - -

      - We can also represent this data in a graph by plotting ordered pairs (t,V) on a system of coordinate axes, where t represents the horizontal distance of the point from the origin, (0,0), and V represents the vertical distance from (0,0). The visual representation of the table of values from Table is seen in the graph in Figure. -

      - -

      - Sometimes it is possible to use variables and one or more equations to connect quantities that are changing in tandem. In the aquarium example from the preview activity, we can observe that the volume, V, of a rectangular box that has length l, width w, and height h is given by - - V = l \cdot w \cdot h - , - and thus, since the water in the tank will always have length l = 4 feet and width w = 2 feet, the volume of water in the tank is directly related to the depth of water in the tank by the equation - - V = 4 \cdot 2 \cdot h = 8h - . - Depending on which variable we solve for, we can either see how V depends on h through the equation V = 8h, or how h depends on V via the equation h = \frac{1}{8}V. From either perspective, we observe that as depth or volume increases, so must volume or depth correspondingly increase. -

      - - - -
      - - - Using Algebra to Add Perspective -

      - One of the ways that we make sense of mathematical ideas is to view them from multiple perspectives. We may use different means to establish different points of view: words, numerical data, graphs, or symbols. In addition, sometimes by changing our perspective within a particular approach we gain deeper insight. -

      - - -
      - The empty conical tank. -

      The empty conical tank.

      -
      -
      -
      - The conical tank, partially filled. -

      The conical tank, partially filled.

      -
      -
      -
      - -

      - If we consider the conical tank discussed in Activity, as seen in Figure and Figure, we can use algebra to better understand some of the relationships among changing quantities. The volume of a cone volumecone with radius r and height h is given by the formula - - V = \frac{1}{3}\pi r^2 h - . -

      - -

      - Note that at any time while the tank is being filled, r (the radius of the surface of the water), h (the depth of the water), and V (the volume of the water) are all changing; moreover, all are connected to one another. Because of the constraints of the tank itself (with radius 2 feet and depth 4 feet), it follows that as the radius and height of the water change, they always do so in the proportion - - \frac{r}{h} = \frac{2}{4} - . - Solving this last equation for r, we see that r = \frac{1}{2}h; substituting this most recent result in the equation for volume, it follows that - - V = \frac{1}{3}\pi \left( \frac{1}{2}h \right)^2 h = \frac{\pi}{12} h^3 - . -

      - -

      - This most recent equation helps us understand how V and h change in tandem. We know from our earlier work that the volume of water in the tank increases at a constant rate of 0.75 cubic feet per minute. This leads to the data shown in Table. -

      - - - How time and volume change in tandem in a conical tank. - - - t - 0 - 1 - 2 - 3 - 4 - 5 - - - V - 0.0 - 0.75 - 1.5 - 2.25 - 3.0 - 3.75 - - -
      - -

      - With the equation V = \frac{\pi}{12} h^3, we can now also see how the height of the water changes in tandem with time. Solving the equation for h, note that h^3 = \frac{12}{\pi} V, and therefore - - h = \sqrt[3]{\frac{12}{\pi} V} - . Thus, when V = 0.75, it follows that h = \sqrt[3]{\frac{12}{\pi} 0.75} \approx 1.42. Executing similar computations with the other values of V in Table, we get the following updated data that now includes h. -

      - - - How time, volume, and height change in concert in a conical tank. - - - t - 0 - 1 - 2 - 3 - 4 - 5 - - - V - 0.0 - 0.75 - 1.5 - 2.25 - 3.0 - 3.75 - - - h - 0.0 - 1.42 - 1.79 - 2.05 - 2.25 - 2.43 - - -
      - -

      - Plotting this data on two different sets of axes, we see the different ways that V and h change with t. Whereas volume increases at a constant rate, as seen by the straight line appearance of the points in Figure, we observe that the water's height increases in a way that it rises more slowly as time goes on, as shown by the way the curve the points lie on in Figure bends down as time passes. -

      - -
      - Plotting V versus t. -

      Plotting V versus t.

      -
      -
      -
      - Plotting h versus t. -

      Plotting h versus t.

      -
      -
      -
      - -

      - These different behaviors make sense because of the shape of the tank. Since at first there is less volume relative to depth near the cone's point, as water flows in at a constant rate, the water's height will rise quickly. But as time goes on and more water is added at the same rate, there is more space for the water to fill in order to make the water level rise, and thus the water's height rises more and more slowly as time passes. -

      - - - -
      - - - Summary -

      -

        -
      • -

        - When two related quantities are changing in tandem, we can better understand how change in one affects the other by using data, graphs, words, or algebraic symbols to express the relationship between them. See, for instance, Table, Figure, , and Equation that together help explain how the height and volume of water in a conical tank change in tandem as time changes. -

        -
      • -
      • -

        - When the amount of water in a tank is changing, we can observe other quantities that change, depending on the shape of the tank. For instance, if the tank is conical, we can consider both the changing height of the water and the changing radius of the surface of the water. In addition, whenever we think about a quantity that is changing as time passes, we note that time itself is changing. -

        -
      • -
      -

      -
      - - - - - -
      + + + + + + + + + + + + + +
      + Changing in Tandem + +
        +
      • +

        + If we have two quantities that are changing in tandem, how can we connect the quantities and understand how change in one affects the other? +

        +
      • +
      • +

        + When the amount of water in a tank is changing, what behaviors can we observe? +

        +
      • +
      +
      + + Introduction +

      + Mathematics is the art of making sense of patterns. One way that patterns arise is when two quantities are changing in tandem. In this setting, we may make sense of the situation by expressing the relationship between the changing quantities through words, through images, through data, or through a formula. +

      + + + + +
      + + + Using Graphs to Represent Relationships + +

      + In Preview Activity, we saw how several changing quantities were related in the setting of an aquarium filling with water: time, the depth of the water, and the total amount of water in the tank are all changing, and any pair of these quantities changes in related ways. One way that we can make sense of the situation is to record some data in a table. For instance, observing that the tank is filling at a rate of 0.5 cubic feet per minute, this tells us that after 1 minute there will be 0.5 cubic feet of water in the tank, and after 2 minutes there will be 1 cubic foot of water in the tank, and so on. If we let t denote the time in minutes and V the amount of water in the tank at time t, we can represent the relationship between these quantities through Table. +

      + + + + + Data for how the volume of water in the tank changes with time. + + + t + V + + + 0 + 0.0 + + + 1 + 0.5 + + + 2 + 1.0 + + + 3 + 1.5 + + + 4 + 2.0 + + + 5 + 2.5 + + +
      +
      + A visual representation of the data in Table. +

      A visual representation of the data in Table.

      +
      +
      +
      + +

      + We can also represent this data in a graph by plotting ordered pairs (t,V) on a system of coordinate axes, where t represents the horizontal distance of the point from the origin, (0,0), and V represents the vertical distance from (0,0). The visual representation of the table of values from Table is seen in the graph in Figure. +

      + +

      + Sometimes it is possible to use variables and one or more equations to connect quantities that are changing in tandem. In the aquarium example from the preview activity, we can observe that the volume, V, of a rectangular box that has length l, width w, and height h is given by + + V = l \cdot w \cdot h + , + and thus, since the water in the tank will always have length l = 4 feet and width w = 2 feet, the volume of water in the tank is directly related to the depth of water in the tank by the equation + + V = 4 \cdot 2 \cdot h = 8h + . + Depending on which variable we solve for, we can either see how V depends on h through the equation V = 8h, or how h depends on V via the equation h = \frac{1}{8}V. From either perspective, we observe that as depth or volume increases, so must volume or depth correspondingly increase. +

      + + + +
      + + + Using Algebra to Add Perspective +

      + One of the ways that we make sense of mathematical ideas is to view them from multiple perspectives. We may use different means to establish different points of view: words, numerical data, graphs, or symbols. In addition, sometimes by changing our perspective within a particular approach we gain deeper insight. +

      + + +
      + The empty conical tank. +

      The empty conical tank.

      +
      +
      +
      + The conical tank, partially filled. +

      The conical tank, partially filled.

      +
      +
      +
      + +

      + If we consider the conical tank discussed in Activity, as seen in Figure and Figure, we can use algebra to better understand some of the relationships among changing quantities. The volume of a cone volumecone with radius r and height h is given by the formula + + V = \frac{1}{3}\pi r^2 h + . +

      + +

      + Note that at any time while the tank is being filled, r (the radius of the surface of the water), h (the depth of the water), and V (the volume of the water) are all changing; moreover, all are connected to one another. Because of the constraints of the tank itself (with radius 2 feet and depth 4 feet), it follows that as the radius and height of the water change, they always do so in the proportion + + \frac{r}{h} = \frac{2}{4} + . + Solving this last equation for r, we see that r = \frac{1}{2}h; substituting this most recent result in the equation for volume, it follows that + + V = \frac{1}{3}\pi \left( \frac{1}{2}h \right)^2 h = \frac{\pi}{12} h^3 + . +

      + +

      + This most recent equation helps us understand how V and h change in tandem. We know from our earlier work that the volume of water in the tank increases at a constant rate of 0.75 cubic feet per minute. This leads to the data shown in Table. +

      + + + How time and volume change in tandem in a conical tank. + + + t + 0 + 1 + 2 + 3 + 4 + 5 + + + V + 0.0 + 0.75 + 1.5 + 2.25 + 3.0 + 3.75 + + +
      + +

      + With the equation V = \frac{\pi}{12} h^3, we can now also see how the height of the water changes in tandem with time. Solving the equation for h, note that h^3 = \frac{12}{\pi} V, and therefore + + h = \sqrt[3]{\frac{12}{\pi} V} + . Thus, when V = 0.75, it follows that h = \sqrt[3]{\frac{12}{\pi} 0.75} \approx 1.42. Executing similar computations with the other values of V in Table, we get the following updated data that now includes h. +

      + + + How time, volume, and height change in concert in a conical tank. + + + t + 0 + 1 + 2 + 3 + 4 + 5 + + + V + 0.0 + 0.75 + 1.5 + 2.25 + 3.0 + 3.75 + + + h + 0.0 + 1.42 + 1.79 + 2.05 + 2.25 + 2.43 + + +
      + +

      + Plotting this data on two different sets of axes, we see the different ways that V and h change with t. Whereas volume increases at a constant rate, as seen by the straight line appearance of the points in Figure, we observe that the water's height increases in a way that it rises more slowly as time goes on, as shown by the way the curve the points lie on in Figure bends down as time passes. +

      + +
      + Plotting V versus t. +

      Plotting V versus t.

      +
      +
      +
      + Plotting h versus t. +

      Plotting h versus t.

      +
      +
      +
      + +

      + These different behaviors make sense because of the shape of the tank. Since at first there is less volume relative to depth near the cone's point, as water flows in at a constant rate, the water's height will rise quickly. But as time goes on and more water is added at the same rate, there is more space for the water to fill in order to make the water level rise, and thus the water's height rises more and more slowly as time passes. +

      + + + +
      + + + Summary +

      +

        +
      • +

        + When two related quantities are changing in tandem, we can better understand how change in one affects the other by using data, graphs, words, or algebraic symbols to express the relationship between them. See, for instance, Table, Figure, , and Equation that together help explain how the height and volume of water in a conical tank change in tandem as time changes. +

        +
      • +
      • +

        + When the amount of water in a tank is changing, we can observe other quantities that change, depending on the shape of the tank. For instance, if the tank is conical, we can consider both the changing height of the water and the changing radius of the surface of the water. In addition, whenever we think about a quantity that is changing as time passes, we note that time itself is changing. +

        +
      • +
      +

      +
      + + + + + +
      diff --git a/source/sec-changing-inverse-wb.xml b/source/sec-changing-inverse-wb.xml index 2f0d35f8..7dc9e5f4 100755 --- a/source/sec-changing-inverse-wb.xml +++ b/source/sec-changing-inverse-wb.xml @@ -1,22 +1,22 @@ - - - - - - - - - - - - - -
      - Inverse Functions - - - - - - -
      + + + + + + + + + + + + + +
      + Inverse Functions + + + + + + +
      diff --git a/source/sec-changing-inverse.xml b/source/sec-changing-inverse.xml index ab918ba9..f79a135e 100755 --- a/source/sec-changing-inverse.xml +++ b/source/sec-changing-inverse.xml @@ -1,395 +1,396 @@ - - - - - - - - - - - - - -
      - Inverse Functions - - -
        -
      • -

        - What does it mean to say that a given function has an inverse function? -

        -
      • -
      • -

        - How can we determine whether or not a given function has a corresponding inverse function? -

        -
      • -
      • -

        - When a function has an inverse function, what important properties does the inverse function have in comparison to the original function? -

        -
      • -
      -
      - - Introduction -

      - Because every function is a process that converts a collection of inputs to a corresponding collection of outputs, a natural question is: for a particular function, can we change perspective and think of the original function's outputs as the inputs for a reverse process? - If we phrase this question algebraically, it is analogous to asking: given an equation that defines y is a function of x, is it possible to find a corresponding equation where x is a function of y? -

      - - - -
      - - - When a function has an inverse function -

      - In Preview Activity, we found that for the function F = g(C) = \frac{9}{5}C + 32, it's also possible to solve for C in terms of F and write C = h(F) = \frac{5}{9}(F-32). The first function, g, converts Celsius temperatures to Fahrenheit ones; the second function, h, converts Fahrenheit temperatures to Celsius ones. Thus, the process h reverses the process of g, and likewise the process of g reverses the process of h. This is also why it makes sense that h(g(C)) = C and g(h(F)) = F. If, for instance, we take a Celsius temperature C, convert it to Fahrenheit, and convert the result back to Celsius, we arrive back at the Celsius temperature we started with: h(g(C)) = C. -

      - -

      - Similar work is sometimes possible with other functions. When we can find a new function that reverses the process of the original function, we say that the original function has an inverse function and make the following formal definition. -

      - - - inverse functiondefinition - -

      - Let f : A \to B be a function. If there exists a function g : B \to A such that - - g(f(a)) = a \text{ and } f(g(b)) = b - - for each a in A and each b in B, then we say that f has an inverse function and that the function g is the inverse of f. -

      -
      -
      - -

      - Note particularly what the equation g(f(a)) = a says: for any input a in the domain of f, the function g will reverse the process of f (which converts a to f(a)) because g converts f(a) back to a. -

      - -

      - When a given function f has a corresponding inverse function g, we usually rename g as f^{-1}, which we read aloud as f-inverse. inverse functionnotation The equation g(f(a))=a now reads f^{-1}(f(a)) = a, which we interpret as saying f-inverse converts f(a) back to a. We similarly write that f(f^{-1}(b)) = b. -

      - - - -

      - When a given function has an inverse function, it allows us to express the same relationship from two different points of view. For instance, if y = f(t) = 2t+1, we can showObserve that g(f(t)) = g(2t+1) = \frac{(2t+1)-1}{2} = \frac{2t}{2} = t. Similarly, f(g(y)) = f\left(\frac{y-1}{2}\right) = 2\left(\frac{y-1}{2} \right) + 1 = y-1 + 1 = y. that the function t = g(y) = \frac{y-1}{2} reverses the effect of f (and vice versa), and thus g = f^{-1}. We observe that - - y = f(t) = 2t + 1 \text{ and } t = f^{-1}(y) = \frac{y-1}{2} - - are equivalent forms of the same equation, and thus they say the same thing from two different perspectives. The first version of the equation is solved for y in terms of t, while the second equation is solved for t in terms of y. This important principle holds in general whenever a function has an inverse function. -

      - - - Two perspectives from a function and its inverse function - inverse functiontwo perspectives -

      - If y = f(t) has an inverse function, then the equations - - y = f(t) \text{ and } t = f^{-1}(y) - - say the exact same thing but from two different perspectives. -

      -
      - -
      - - - Determining whether a function has an inverse function -

      - It's important to note in Definition that we say If there exists \ldots. That is, we don't guarantee that an inverse function exists for a given function. Thus, we might ask: how can we determine whether or not a given function has a corresponding inverse function? As with many questions about functions, there are often three different possible ways to explore such a question: through a table, through a graph, or through an algebraic formula. -

      - - - - -

      - Do the functions f and g defined by Table and Table have corresponding inverse functions? Why or why not? -

      - - - - The table that defines the function <m>f</m>. - - - x - 0 - 1 - 2 - 3 - 4 - - - f(x) - 6 - 4 - 3 - 4 - 6 - - -
      - - The table that defines the function <m>g</m>. - - - x - 0 - 1 - 2 - 3 - 4 - - - g(x) - 3 - 1 - 4 - 2 - 0 - - -
      -
      - -
      - -

      - For any function, the question of whether or not it has an inverse comes down to whether or not the process of the function can be reliably reversed. For functions given in table form such as f and g, we essentially ask if it's possible to switch the input and output rows and have the new resulting table also represent a function. -

      - -

      - The function f does not have an inverse function because there are two different inputs that lead to the same output: f(0) = 6 and f(4) = 6. If we attempt to reverse this process, we have a situation where the input 6 would correspond to two potential outputs, 0 and 4. -

      - -

      - However, the function g does have an inverse function because when we reverse the rows in Table, each input (in order, 3, 1, 4, 2, 0) indeed corresponds to one and only one output (in order, 0, 1, 2, 3, 4). We can thus make observations such as g^{-1}(4) = 2, which is the same as saying that g(2) = 4, just from a different perspective. -

      -
      -
      - -

      - In Example, we see that if we can identify one pair of distinct inputs that lead to the same output (such as f(0) = f(4) = 6 in Table), then the process of the function cannot be reversed and the function does not have an inverse. -

      - - - - -

      - Do the functions p and q defined by Figure and Figure have corresponding inverse functions? Why or why not? -

      - - -
      - - The graph that defines function p. - -

      - The graph that defines function p. -

      -
      -
      -
      - - The graph that defines function q. - -

      - The graph that defines function q. -

      -
      -
      -
      - -
      - -

      - Recall that when a point such as (a,c) lies on the graph of a function p, this means that the input x = a, which represents to a value on the horizontal axis, corresponds with the output y = c that is represented by a value on the vertical axis. In this situation, we write p(a) = c. We note explicitly that p is a function because its graph passes the : any vertical line intersects the graph of p exactly once, and thus each input from the domain corresponds to one and only one output. -

      - -

      - If we attempt to change perspective and use the graph of p to view x as a function of y, we see that this fails because the output value c is associated with two different inputs, a and b. Said differently, because the horizontal line y = c intersects the graph of p at both (a,c) and (b,c) (as shown in Figure), we cannot view y as the input to a function process that produces the corresonding x-value. Therefore, p does not have an inverse function. -

      - -

      - On the other hand, provided that the behavior seen in the figure continues, the function q does have an inverse because we can view x as a function of y via the graph given in Figure. This is because for any choice of y, there corresponds one and only one x that results from y. We can think of this visually by starting at a value such as y = c on the y-axis, moving horizontally to where the line intersects the graph of q, and then moving down to the corresonding location (here x = a) on the horizontal axis. From the behavior of the graph of q (a straight line that is always increasing), we see that this correspondence will hold for any choice of y, and thus indeed x is a function of y. From this, we can say that q indeed has an inverse function. We thus can write that q^{-1}(c) = a, which is a different way to express the equivalent fact that q(a) = c. -

      -
      -
      - -

      - The graphical observations that we made for the function q in Example provide a general test for whether or not a function given by a graph has a corresponding inverse function. -

      - - - Horizontal Line Test - inverse functionhorizontal line test -

      - A function whose graph lies in the x-y plane has a corresponding inverse function if and only if every horizontal line intersects the graph at most once. When the graph passes this test, the horizontal coordinate of each point on the graph can be viewed as a function of the vertical coordinate of the point. -

      -
      - - - -

      - Do the functions r and s defined by - - y = r(t) = 3 - \frac{1}{5}(t-1)^3 \text{ and } y = s(t) = 3 - \frac{1}{5}(t-1)^2 - - have corresponding inverse functions? If not, use algebraic reasoning to explain why; if so, demonstrate by using algebra to find a formula for the inverse function. -

      -
      - -

      - For any function of the form y = f(t), one way to determine if we can view the original input variable t as a function of the original output variable y is to attempt to solve the equation y = f(t) for t in terms of y. -

      - -

      - Taking y = 3 - \frac{1}{5}(t-1)^3, we try to solve for t by first subtracting 3 from both sides to get - - y - 3 = -\frac{1}{5}(t-1)^3 - . - Next, multiplying both sides by -5, it follows that - - (t-1)^3 = -5(y-3) - . - Because the cube root function has the property that \sqrt[3]{z^3} = z for every real number z (since the cube root function is the inverse function for the cubing function, and each function has both a domain and range of all real numbers), we can take the cube root of both sides of the preceding equation to get - - t - 1 = \sqrt[3]{-5(y-3)} - . - Finally, adding 1 to both sides, we have determined that - - t = 1 + \sqrt[3]{-5(y-3)} - . - Because we have been able to express t as a single function of y for every possible value of y, this shows that r indeed has an inverse and that t = r^{-1}(y) = 1 + \sqrt[3]{-5(y-3)}. -

      - -

      - We attempt similar reasoning for the second function, y = 3 - \frac{1}{5}(t-1)^2. To solve for t, we first subtract 3 from both sides, so that - - y - 3 = -\frac{1}{5}(t-1)^2 - . - After multiplying both sides by -5, we have - - (t-1)^2 = -5(y-3) - . - Next, it's necessary to take the square root of both sides in an effort to isolate t. Here, however, we encounter a crucial issue. Because the function g(x) = x^2 takes any nonzero number and its opposite to the same output (e.g. (-5)^2 = 25 = (5)^2), this means that we have to account for both possible inputs that result in the same output. Based on our last equation, this means that either - - t-1 = \sqrt{-5(y-3)} \ \text{ or } \ t-1 = -\sqrt{-5(y-3)} - . - As such, we find not a single equation that expresses t as a function of y, but rather two: - - t = 1 + \sqrt{-5(y-3)} \ \text{ or } \ t = 1 -\sqrt{-5(y-3)} - . - Since it appears that t can't be expressed as a single function of y, it seems to follow that y = s(t) = 3 - \frac{1}{5}(t-1)^2 does not have an inverse function. -

      -
      -
      - -

      - The graphs of y = r(t) = 3 - \frac{1}{5}(t-1)^3 and y = s(t) = 3 - \frac{1}{5}(t-1)^2 provide a different perspective to confirm the results of Example. Indeed, in Figure, we see that r appears to pass the horizontal line test because it is decreasingCalculus provides one way to fully justify that the graph of r is indeed always decreasing., and thus has an inverse function. On the other hand, the graph of s fails the horizontal line test (picture the line y = 2 in Figure) and therefore s does not have an inverse function. -

      - - -
      - A plot of y = r(t) = 3 - \frac{1}{5}(t-1)^3. -

      A plot of y = r(t) = 3 - \frac{1}{5}(t-1)^3.

      -
      -
      -
      - A plot of y = s(t) = 3 - \frac{1}{5}(t-1)^2. -

      A plot of y = s(t) = 3 - \frac{1}{5}(t-1)^2.

      -
      -
      -
      - - - -
      - - - Properties of an inverse function -

      - When a function has an inverse function, we have observed several important relationships that hold between the original function and the corresponding inverse function. -

      - - - Properties of an inverse function -

      - Let f : A \to B be a function whose domain is A and whose range is B be such that f has an inverse function, f^{-1}. Then: -

      - -

      -

        -
      • -

        - f^{-1} : B \to A, so the domain of f^{-1} is B and its range is A. -

        -
      • -
      • -

        - The functions f and f^{-1} reverse one anothers' processes. Symbolically, - f^{-1}(f(a)) = a for every input a in the domain of f, and similarly, - f(f^{-1}(b)) = b for every input b in the domain of f^{-1}. -

        -
      • -
      • -

        - If y = f(t), then we can express the exact same relationship from a different perspective by writing t = f^{-1}(y). -

        -
      • -
      • -

        - Consider the setting where A and B are collections of real numbers. If a point (x,y) lies on the graph of f, then it follows y = f(x). From this, we can equivalently say that x = f^{-1}(y). Hence, the point (y,x) lies on the graph of x = f^{-1}(y). -

        -
      • -
      -

      -
      - -

      - The last item above leads to a special relationship between the graphs of f and f^{-1} when viewed on the same coordinate axes. In that setting, we need to view x as the input of each function (since it's the horizontal coordinate) and y as the output. If we know a particular input-output relationship for f, say f(-1) = \frac{1}{2}, then it follows that f^{-1} \left( \frac{1}{2} \right) = -1. We observe that the points \left(-1, \frac{1}{2} \right) and \left(\frac{1}{2}, -1 \right) are reflections of each other across the line y = x. Because such a relationship holds for every point (x,y) on the graph of f, this means that the graphs of f and f^{-1} are reflections of one another across the line y = x, as seen in Figure. -

      - -
      - The graph of a function f along with its inverse, f^{-1}. -

      The graph of a function f along with its inverse, f^{-1}.

      -
      -
      - - - -
      - - - Summary -

      -

        -
      • -

        - A given function f : A \to B has an inverse function whenever there exists a related function g : B \to A that reverses the process of f. Formally, this means that g must satisfy g(f(a)) = a for every a in the domain of f, and f(g(b)) = b for every b in the range of f. -

        -
      • -
      • -

        - We determine whether or not a given function f has a corresponding inverse function by determining if the process that defines f can be reversed so that we can also think of the outputs as a function of the inputs. If we have a graph of the function f, we know f has an inverse function if the graph passes the . If we have a formula for the function f, say y = f(t), we know f has an inverse function if we can solve for t and write t = f^{-1}(y). -

        -
      • -
      • -

        - A good summary of the properties of an inverse function is provided in the . -

        -
      • -
      -

      -
      - - - - - -
      + + + + + + + + + + + + + +
      + Inverse Functions + + +
        +
      • +

        + What does it mean to say that a given function has an inverse function? +

        +
      • +
      • +

        + How can we determine whether or not a given function has a corresponding inverse function? +

        +
      • +
      • +

        + When a function has an inverse function, what important properties does the inverse function have in comparison to the original function? +

        +
      • +
      +
      + + Introduction +

      + Because every function is a process that converts a collection of inputs to a corresponding collection of outputs, a natural question is: for a particular function, can we change perspective and think of the original function's outputs as the inputs for a reverse process? + If we phrase this question algebraically, it is analogous to asking: given an equation that defines y is a function of x, is it possible to find a corresponding equation where x is a function of y? +

      + + + + +
      + + + When a function has an inverse function +

      + In Preview Activity, we found that for the function F = g(C) = \frac{9}{5}C + 32, it's also possible to solve for C in terms of F and write C = h(F) = \frac{5}{9}(F-32). The first function, g, converts Celsius temperatures to Fahrenheit ones; the second function, h, converts Fahrenheit temperatures to Celsius ones. Thus, the process h reverses the process of g, and likewise the process of g reverses the process of h. This is also why it makes sense that h(g(C)) = C and g(h(F)) = F. If, for instance, we take a Celsius temperature C, convert it to Fahrenheit, and convert the result back to Celsius, we arrive back at the Celsius temperature we started with: h(g(C)) = C. +

      + +

      + Similar work is sometimes possible with other functions. When we can find a new function that reverses the process of the original function, we say that the original function has an inverse function and make the following formal definition. +

      + + + inverse functiondefinition + +

      + Let f : A \to B be a function. If there exists a function g : B \to A such that + + g(f(a)) = a \text{ and } f(g(b)) = b + + for each a in A and each b in B, then we say that f has an inverse function and that the function g is the inverse of f. +

      +
      +
      + +

      + Note particularly what the equation g(f(a)) = a says: for any input a in the domain of f, the function g will reverse the process of f (which converts a to f(a)) because g converts f(a) back to a. +

      + +

      + When a given function f has a corresponding inverse function g, we usually rename g as f^{-1}, which we read aloud as f-inverse. inverse functionnotation The equation g(f(a))=a now reads f^{-1}(f(a)) = a, which we interpret as saying f-inverse converts f(a) back to a. We similarly write that f(f^{-1}(b)) = b. +

      + + + +

      + When a given function has an inverse function, it allows us to express the same relationship from two different points of view. For instance, if y = f(t) = 2t+1, we can showObserve that g(f(t)) = g(2t+1) = \frac{(2t+1)-1}{2} = \frac{2t}{2} = t. Similarly, f(g(y)) = f\left(\frac{y-1}{2}\right) = 2\left(\frac{y-1}{2} \right) + 1 = y-1 + 1 = y. that the function t = g(y) = \frac{y-1}{2} reverses the effect of f (and vice versa), and thus g = f^{-1}. We observe that + + y = f(t) = 2t + 1 \text{ and } t = f^{-1}(y) = \frac{y-1}{2} + + are equivalent forms of the same equation, and thus they say the same thing from two different perspectives. The first version of the equation is solved for y in terms of t, while the second equation is solved for t in terms of y. This important principle holds in general whenever a function has an inverse function. +

      + + + Two perspectives from a function and its inverse function + inverse functiontwo perspectives +

      + If y = f(t) has an inverse function, then the equations + + y = f(t) \text{ and } t = f^{-1}(y) + + say the exact same thing but from two different perspectives. +

      +
      + +
      + + + Determining whether a function has an inverse function +

      + It's important to note in Definition that we say If there exists \ldots. That is, we don't guarantee that an inverse function exists for a given function. Thus, we might ask: how can we determine whether or not a given function has a corresponding inverse function? As with many questions about functions, there are often three different possible ways to explore such a question: through a table, through a graph, or through an algebraic formula. +

      + + + + +

      + Do the functions f and g defined by Table and Table have corresponding inverse functions? Why or why not? +

      + + + + The table that defines the function <m>f</m>. + + + x + 0 + 1 + 2 + 3 + 4 + + + f(x) + 6 + 4 + 3 + 4 + 6 + + +
      + + The table that defines the function <m>g</m>. + + + x + 0 + 1 + 2 + 3 + 4 + + + g(x) + 3 + 1 + 4 + 2 + 0 + + +
      +
      + +
      + +

      + For any function, the question of whether or not it has an inverse comes down to whether or not the process of the function can be reliably reversed. For functions given in table form such as f and g, we essentially ask if it's possible to switch the input and output rows and have the new resulting table also represent a function. +

      + +

      + The function f does not have an inverse function because there are two different inputs that lead to the same output: f(0) = 6 and f(4) = 6. If we attempt to reverse this process, we have a situation where the input 6 would correspond to two potential outputs, 0 and 4. +

      + +

      + However, the function g does have an inverse function because when we reverse the rows in Table, each input (in order, 3, 1, 4, 2, 0) indeed corresponds to one and only one output (in order, 0, 1, 2, 3, 4). We can thus make observations such as g^{-1}(4) = 2, which is the same as saying that g(2) = 4, just from a different perspective. +

      +
      +
      + +

      + In Example, we see that if we can identify one pair of distinct inputs that lead to the same output (such as f(0) = f(4) = 6 in Table), then the process of the function cannot be reversed and the function does not have an inverse. +

      + + + + +

      + Do the functions p and q defined by Figure and Figure have corresponding inverse functions? Why or why not? +

      + + +
      + + The graph that defines function p. + +

      + The graph that defines function p. +

      +
      +
      +
      + + The graph that defines function q. + +

      + The graph that defines function q. +

      +
      +
      +
      + +
      + +

      + Recall that when a point such as (a,c) lies on the graph of a function p, this means that the input x = a, which represents to a value on the horizontal axis, corresponds with the output y = c that is represented by a value on the vertical axis. In this situation, we write p(a) = c. We note explicitly that p is a function because its graph passes the : any vertical line intersects the graph of p exactly once, and thus each input from the domain corresponds to one and only one output. +

      + +

      + If we attempt to change perspective and use the graph of p to view x as a function of y, we see that this fails because the output value c is associated with two different inputs, a and b. Said differently, because the horizontal line y = c intersects the graph of p at both (a,c) and (b,c) (as shown in Figure), we cannot view y as the input to a function process that produces the corresonding x-value. Therefore, p does not have an inverse function. +

      + +

      + On the other hand, provided that the behavior seen in the figure continues, the function q does have an inverse because we can view x as a function of y via the graph given in Figure. This is because for any choice of y, there corresponds one and only one x that results from y. We can think of this visually by starting at a value such as y = c on the y-axis, moving horizontally to where the line intersects the graph of q, and then moving down to the corresonding location (here x = a) on the horizontal axis. From the behavior of the graph of q (a straight line that is always increasing), we see that this correspondence will hold for any choice of y, and thus indeed x is a function of y. From this, we can say that q indeed has an inverse function. We thus can write that q^{-1}(c) = a, which is a different way to express the equivalent fact that q(a) = c. +

      +
      +
      + +

      + The graphical observations that we made for the function q in Example provide a general test for whether or not a function given by a graph has a corresponding inverse function. +

      + + + Horizontal Line Test + inverse functionhorizontal line test +

      + A function whose graph lies in the x-y plane has a corresponding inverse function if and only if every horizontal line intersects the graph at most once. When the graph passes this test, the horizontal coordinate of each point on the graph can be viewed as a function of the vertical coordinate of the point. +

      +
      + + + +

      + Do the functions r and s defined by + + y = r(t) = 3 - \frac{1}{5}(t-1)^3 \text{ and } y = s(t) = 3 - \frac{1}{5}(t-1)^2 + + have corresponding inverse functions? If not, use algebraic reasoning to explain why; if so, demonstrate by using algebra to find a formula for the inverse function. +

      +
      + +

      + For any function of the form y = f(t), one way to determine if we can view the original input variable t as a function of the original output variable y is to attempt to solve the equation y = f(t) for t in terms of y. +

      + +

      + Taking y = 3 - \frac{1}{5}(t-1)^3, we try to solve for t by first subtracting 3 from both sides to get + + y - 3 = -\frac{1}{5}(t-1)^3 + . + Next, multiplying both sides by -5, it follows that + + (t-1)^3 = -5(y-3) + . + Because the cube root function has the property that \sqrt[3]{z^3} = z for every real number z (since the cube root function is the inverse function for the cubing function, and each function has both a domain and range of all real numbers), we can take the cube root of both sides of the preceding equation to get + + t - 1 = \sqrt[3]{-5(y-3)} + . + Finally, adding 1 to both sides, we have determined that + + t = 1 + \sqrt[3]{-5(y-3)} + . + Because we have been able to express t as a single function of y for every possible value of y, this shows that r indeed has an inverse and that t = r^{-1}(y) = 1 + \sqrt[3]{-5(y-3)}. +

      + +

      + We attempt similar reasoning for the second function, y = 3 - \frac{1}{5}(t-1)^2. To solve for t, we first subtract 3 from both sides, so that + + y - 3 = -\frac{1}{5}(t-1)^2 + . + After multiplying both sides by -5, we have + + (t-1)^2 = -5(y-3) + . + Next, it's necessary to take the square root of both sides in an effort to isolate t. Here, however, we encounter a crucial issue. Because the function g(x) = x^2 takes any nonzero number and its opposite to the same output (e.g. (-5)^2 = 25 = (5)^2), this means that we have to account for both possible inputs that result in the same output. Based on our last equation, this means that either + + t-1 = \sqrt{-5(y-3)} \ \text{ or } \ t-1 = -\sqrt{-5(y-3)} + . + As such, we find not a single equation that expresses t as a function of y, but rather two: + + t = 1 + \sqrt{-5(y-3)} \ \text{ or } \ t = 1 -\sqrt{-5(y-3)} + . + Since it appears that t can't be expressed as a single function of y, it seems to follow that y = s(t) = 3 - \frac{1}{5}(t-1)^2 does not have an inverse function. +

      +
      +
      + +

      + The graphs of y = r(t) = 3 - \frac{1}{5}(t-1)^3 and y = s(t) = 3 - \frac{1}{5}(t-1)^2 provide a different perspective to confirm the results of Example. Indeed, in Figure, we see that r appears to pass the horizontal line test because it is decreasingCalculus provides one way to fully justify that the graph of r is indeed always decreasing., and thus has an inverse function. On the other hand, the graph of s fails the horizontal line test (picture the line y = 2 in Figure) and therefore s does not have an inverse function. +

      + + +
      + A plot of y = r(t) = 3 - \frac{1}{5}(t-1)^3. +

      A plot of y = r(t) = 3 - \frac{1}{5}(t-1)^3.

      +
      +
      +
      + A plot of y = s(t) = 3 - \frac{1}{5}(t-1)^2. +

      A plot of y = s(t) = 3 - \frac{1}{5}(t-1)^2.

      +
      +
      +
      + + + +
      + + + Properties of an inverse function +

      + When a function has an inverse function, we have observed several important relationships that hold between the original function and the corresponding inverse function. +

      + + + Properties of an inverse function +

      + Let f : A \to B be a function whose domain is A and whose range is B be such that f has an inverse function, f^{-1}. Then: +

      + +

      +

        +
      • +

        + f^{-1} : B \to A, so the domain of f^{-1} is B and its range is A. +

        +
      • +
      • +

        + The functions f and f^{-1} reverse one anothers' processes. Symbolically, + f^{-1}(f(a)) = a for every input a in the domain of f, and similarly, + f(f^{-1}(b)) = b for every input b in the domain of f^{-1}. +

        +
      • +
      • +

        + If y = f(t), then we can express the exact same relationship from a different perspective by writing t = f^{-1}(y). +

        +
      • +
      • +

        + Consider the setting where A and B are collections of real numbers. If a point (x,y) lies on the graph of f, then it follows y = f(x). From this, we can equivalently say that x = f^{-1}(y). Hence, the point (y,x) lies on the graph of x = f^{-1}(y). +

        +
      • +
      +

      +
      + +

      + The last item above leads to a special relationship between the graphs of f and f^{-1} when viewed on the same coordinate axes. In that setting, we need to view x as the input of each function (since it's the horizontal coordinate) and y as the output. If we know a particular input-output relationship for f, say f(-1) = \frac{1}{2}, then it follows that f^{-1} \left( \frac{1}{2} \right) = -1. We observe that the points \left(-1, \frac{1}{2} \right) and \left(\frac{1}{2}, -1 \right) are reflections of each other across the line y = x. Because such a relationship holds for every point (x,y) on the graph of f, this means that the graphs of f and f^{-1} are reflections of one another across the line y = x, as seen in Figure. +

      + +
      + The graph of a function f along with its inverse, f^{-1}. +

      The graph of a function f along with its inverse, f^{-1}.

      +
      +
      + + + +
      + + + Summary +

      +

        +
      • +

        + A given function f : A \to B has an inverse function whenever there exists a related function g : B \to A that reverses the process of f. Formally, this means that g must satisfy g(f(a)) = a for every a in the domain of f, and f(g(b)) = b for every b in the range of f. +

        +
      • +
      • +

        + We determine whether or not a given function f has a corresponding inverse function by determining if the process that defines f can be reversed so that we can also think of the outputs as a function of the inputs. If we have a graph of the function f, we know f has an inverse function if the graph passes the . If we have a formula for the function f, say y = f(t), we know f has an inverse function if we can solve for t and write t = f^{-1}(y). +

        +
      • +
      • +

        + A good summary of the properties of an inverse function is provided in the . +

        +
      • +
      +

      +
      + + + + + +
      diff --git a/source/sec-changing-linear-wb.xml b/source/sec-changing-linear-wb.xml index f8aab523..06c5f6a7 100755 --- a/source/sec-changing-linear-wb.xml +++ b/source/sec-changing-linear-wb.xml @@ -1,22 +1,22 @@ - - - - - - - - - - - - - -
      - Linear Functions - - - - - - -
      + + + + + + + + + + + + + +
      + Linear Functions + + + + + + +
      diff --git a/source/sec-changing-linear.xml b/source/sec-changing-linear.xml index c210475b..ca95be62 100755 --- a/source/sec-changing-linear.xml +++ b/source/sec-changing-linear.xml @@ -1,312 +1,313 @@ - - - - - - - - - - - - - -
      - Linear Functions - - -
        -
      • -

        - What behavior of a function makes its graph a straight line? -

        -
      • -
      • -

        - For a function whose graph is a straight line, what structure does its formula have? -

        -
      • -
      • -

        - How can we interpret the slope of a linear function in applied contexts? -

        -
      • -
      -
      - - Introduction -

      - Functions whose graphs are straight lines are both the simplest and the most important functions in mathematics. - Lines often model important phenomena, - and even when they don't directly model phenomena, - lines can often approximate other functions that do. - Whether a function's graph is a straight line or not is connected directly to its average rate of change. -

      - - - -
      - - - - Properties of linear functions - -

      - In Preview Activity, we considered three different functions for which the average rate of change of each appeared to always be constant. For the first function in the preview activity, y = f(x) = 7 - 3x, we can compute its average rate of change on an arbitrary interval [a,b]. Doing so, we notice that - - AV_{[a,b]} &= \frac{f(b)-f(a)}{b-a} - &= \frac{(7-3b) - (7-3a)}{b-a} - &= \frac{7-3b - 7+3a}{b-a} - &= \frac{-3b + 3a}{b-a} - &= \frac{-3(b - a)}{b-a} - &= -3 - . - This result shows us that for the function y = f(x) = 7 - 3x, its average rate of change is always -3, regardless of the interval we choose. We will use the property of having constant rate of change as the defining property of a linear function. -

      - - - linear function - linear functionslope - -

      - A function f is linear provided that its average rate of change is constant on every choice of interval in its domainHere we are considering functions whose domain is the set of all real numbers.. That is, for any inputs a and b for which a \ne b, it follows that - - \frac{f(b) - f(a)}{b-a} = m - - for some fixed constant m. We call m the slope of the linear function f. -

      -
      -
      - -

      - From prior study, we already know a lot about linear functions. In this section, we work to understand some familiar properties in light of the new perspective of Definition. -

      - -

      - Let's suppose we know that a function f is linear with average rate of change AV_{[a,b]} = m and that we also know the function value is y_0 at some fixed input x_0. That is, we know that f(x_0) = y_0. From this information, we can find the formula for y = f(x) for any input x. Working with the known point (x_0, f(x_0)) and any other point (x,f(x)) on the function's graph, we know that the average rate of change between these two points must be the constant m. This tells us that - - \frac{f(x) - f(x_0)}{x-x_0} = m - . - Since we are interested in finding a formula for y = f(x), we solve this most recent equation for f(x). Multiplying both sides by (x-x_0), we see that - - f(x) - f(x_0) = m(x-x_0) - . - Adding f(x_0) to each side, it follows - - f(x) = f(x_0) + m(x-x_0) - . - This shows that to determine the formula for a linear function, all we need to know is its average rate of change (or slope) and a single point the function passes through. -

      - - - -

      - Find a formula for a linear function f whose average rate of change is m = -\frac{1}{4} and passes through the point (-7,-5). -

      - -

      - Solution. Using Equation and the facts that m = -\frac{1}{4} and f(-7) = -5 (that is, x_0 = -7 and f(x_0) = -5), we have - - f(x) = -5 -\frac{1}{4}(x - (-7)) = -5 - \frac{1}{4}(x+7) - . -

      -
      -
      - -

      - Replacing f(x) with y and f(x_0) with y_0, we call Equation the point-slope form point-slope form of a line. -

      - - - Point-slope form of a line - linepoint-slope form -

      - A line with slope m (equivalently, average rate of change m) that passes through the point (x_0,y_0) has equation - - y = y_0 + m(x-x_0) - . -

      -
      - - - -

      - Visualizing the various components of point-slope form is important. For a line through (x_0,y_0) with slope m, we know its equation is y = y_0 + m(x-x_0). In Figure, we see that the line passes through (x_0,y_0) along with an arbitary point (x,y), which makes the vertical change between the two points given by y - y_0 and the horizontal change between the points x - x_0. This is consistent with the fact that - - AV_{[x_0,x]} = m = \frac{y-y_0}{x-x_0} - . - Indeed, writing m = \frac{y-y_0}{x-x_0} is a rearrangement of the point-slope form of the line, y = y_0 + m(x-x_0). -

      - -

      - We naturally use the terms increasing and decreasing as from Definition to describe lines based on whether their slope is positive or negative. A line with positive slope, such as the one in Figure, is increasing because its constant rate of change is positive, while a line with negative slope, such as in Figure is decreasing because of its negative rate of change. We say that a horizontal line (one whose slope is m = 0) is neither increasing nor decreasing. -

      - - -
      - The point-slope form of a line's equation. -

      The point-slope form of a line's equation.

      -
      -
      -
      - The slope-intercept form of a line's equation. -

      The slope-intercept form of a line's equation.

      -
      -
      -
      - -

      - A special case arises when the known point on a line satisfies x_0 = 0. In this situation, the known point lies on the y-axis, and thus we call the point the y-intercept of the line. liney-intercept The resulting form of the line's equation is called slope-intercept form, which is also demonstrated in Figure. -

      - - - Slope-intercept form - lineslope-intercept form -

      - For the line with slope m and passing through (0,y_0), its equation is - - y = y_0 + mx - . -

      -
      - -

      - Slope-intercept form follows from point-slope form from the fact that replacing x_0 with 0 gives us y = y_0 + m(x-0) = y_0 + mx. In many textbooks, the slope-intercept form of a line (often written y = mx + b) is treated as if it is the most useful form of a line. Point-slope form is actually more important and valuable since we can easily write down the equation of a line as soon as we know its slope and any point that lies on it, as opposed to needing to find the y-intercept, which is needed for slope-intercept form. Moreover, point-slope form plays a prominent role in calculus. -

      - -

      - If a line is in slope-intercept or point-slope form, it is useful to be able to quickly interpret key information about the line from the form of its equation. -

      - - - -

      - For the line given by y = -3 - 2.5(x-5), determine its slope and a point that lies on the line. -

      - -

      - Solution. This line is in point-slope form. Its slope is m = -2.5 and a point on the line is (5,-3). -

      -
      -
      - - - -

      - For the line given by y = 6 + 0.25x, determine its slope and a point that lies on the line. -

      - -

      - Solution. This line is in slope-intercept form. Its slope is m = 0.25 and a point on the line is (0,6), which is also the line's y-intercept. -

      -
      -
      - -
      - - - Interpreting linear functions in context - -

      - Since linear functions are defined by the property that their average rate of change is constant, linear functions perfectly model quantities that change at a constant rate. In context, we can often think of slope as a rate of change; analyzing units carefully often yields significant insight. -

      - - - -

      - The Dolbear function T = D(N) = 40 + 0.25N from Section is a linear function whose slope is m = 0.25. What is the meaning of the slope in this context? -

      -
      - -

      - Recall that T is measured in degrees Fahrenheit and N in chirps per minute. We know that m = AV_{[a,b]} = 0.25 is the constant average rate of change of D. Its units are units of output per unit of input, and thus degrees Fahrenheit per chirp per minute. This tells us that the average rate of change of the temperature function is 0.25 degrees Fahrenheit per chirp per minute, which means that for each additional chirp per minute observed, we expect the temperature to rise by 0.25 degrees Fahrenheit. -

      - - -

      - Indeed, we can observe this through function values. We note that T(60) = 55 and T(61) = 55.25: one additional observed chirp per minute corresponds to a 0.25 degree increase in temperature. We also see this in the graph of the line, as seen in Figure: - the slope between the points (40,50) and (120,70) is - - m &= \frac{70-50}{120-40} - &= \frac{20}{80} - &= 0.25 \frac{\text{degrees F}}{\text{chirp per minute}} - . -

      - -
      - The linear Dolbear function with slope m = 0.25 degrees Fahrenheit per chirp per minute. -

      The linear Dolbear function with slope m = 0.25 degrees Fahrenheit per chirp per minute.

      -
      -
      -
      - -
      -
      - -

      - Like with the Dolbear function, it is often useful to write a linear function (whose output is called y) that models a quantity changing at a constant rate (as a function of some input t) by writing the function relationship in the form - - y = b + mt - - where b and m are constants. We may think of the four quantities involved in the following way: -

      - -

      -

        -
      • -

        - The constant b is the starting value of the output that corresponds to an input of t = 0; -

        -
      • -
      • -

        - The constant m is the rate at which the output changes with respect to changes in the input: for each additional 1-unit change in input, the output will change by m units. -

        -
      • -
      • -

        - The variable t is the independent (input) variable. A nonzero value for t corresponds to how much the input variable has changed from an initial value of 0. -

        -
      • -
      • -

        - The variable y is the dependent (output) variable. The value of y results from a particular choice of t, and can be thought of as the starting output value (b) plus the change in output that results from the corresponding change in input t. -

        -
      • -
      -

      - - - - - -
      - - - Summary -

      -

        -
      • -

        - Any function f with domain all real numbers that has a constant average rate of change on every interval [a,b] will have a straight line graph. We call such functions linear functions. -

        -
      • -
      • -

        - A linear function y = f(x) can be written in the form y = f(x) = y_0 + m(x-x_0), where m is the slope of the line and (x_0,y_0) is a point that lies on the line. In particular, f(x_0) = y_0. -

        -
      • -
      • -

        - In an applied context where we have a linear function that models a phenomenon in the world around us, the slope tells us the function's (constant) average rate of change. The units on the slope, m, are always units of output per unit of input and this enables us to articulate how the output changes in response to a 1-unit change in input. -

        -
      • -
      -

      -
      - - - - - -
      + + + + + + + + + + + + + +
      + Linear Functions + + +
        +
      • +

        + What behavior of a function makes its graph a straight line? +

        +
      • +
      • +

        + For a function whose graph is a straight line, what structure does its formula have? +

        +
      • +
      • +

        + How can we interpret the slope of a linear function in applied contexts? +

        +
      • +
      +
      + + Introduction +

      + Functions whose graphs are straight lines are both the simplest and the most important functions in mathematics. + Lines often model important phenomena, + and even when they don't directly model phenomena, + lines can often approximate other functions that do. + Whether a function's graph is a straight line or not is connected directly to its average rate of change. +

      + + + + +
      + + + + Properties of linear functions + +

      + In Preview Activity, we considered three different functions for which the average rate of change of each appeared to always be constant. For the first function in the preview activity, y = f(x) = 7 - 3x, we can compute its average rate of change on an arbitrary interval [a,b]. Doing so, we notice that + + AV_{[a,b]} &= \frac{f(b)-f(a)}{b-a} + &= \frac{(7-3b) - (7-3a)}{b-a} + &= \frac{7-3b - 7+3a}{b-a} + &= \frac{-3b + 3a}{b-a} + &= \frac{-3(b - a)}{b-a} + &= -3 + . + This result shows us that for the function y = f(x) = 7 - 3x, its average rate of change is always -3, regardless of the interval we choose. We will use the property of having constant rate of change as the defining property of a linear function. +

      + + + linear function + linear functionslope + +

      + A function f is linear provided that its average rate of change is constant on every choice of interval in its domainHere we are considering functions whose domain is the set of all real numbers.. That is, for any inputs a and b for which a \ne b, it follows that + + \frac{f(b) - f(a)}{b-a} = m + + for some fixed constant m. We call m the slope of the linear function f. +

      +
      +
      + +

      + From prior study, we already know a lot about linear functions. In this section, we work to understand some familiar properties in light of the new perspective of Definition. +

      + +

      + Let's suppose we know that a function f is linear with average rate of change AV_{[a,b]} = m and that we also know the function value is y_0 at some fixed input x_0. That is, we know that f(x_0) = y_0. From this information, we can find the formula for y = f(x) for any input x. Working with the known point (x_0, f(x_0)) and any other point (x,f(x)) on the function's graph, we know that the average rate of change between these two points must be the constant m. This tells us that + + \frac{f(x) - f(x_0)}{x-x_0} = m + . + Since we are interested in finding a formula for y = f(x), we solve this most recent equation for f(x). Multiplying both sides by (x-x_0), we see that + + f(x) - f(x_0) = m(x-x_0) + . + Adding f(x_0) to each side, it follows + + f(x) = f(x_0) + m(x-x_0) + . + This shows that to determine the formula for a linear function, all we need to know is its average rate of change (or slope) and a single point the function passes through. +

      + + + +

      + Find a formula for a linear function f whose average rate of change is m = -\frac{1}{4} and passes through the point (-7,-5). +

      + +

      + Solution. Using Equation and the facts that m = -\frac{1}{4} and f(-7) = -5 (that is, x_0 = -7 and f(x_0) = -5), we have + + f(x) = -5 -\frac{1}{4}(x - (-7)) = -5 - \frac{1}{4}(x+7) + . +

      +
      +
      + +

      + Replacing f(x) with y and f(x_0) with y_0, we call Equation the point-slope form point-slope form of a line. +

      + + + Point-slope form of a line + linepoint-slope form +

      + A line with slope m (equivalently, average rate of change m) that passes through the point (x_0,y_0) has equation + + y = y_0 + m(x-x_0) + . +

      +
      + + + +

      + Visualizing the various components of point-slope form is important. For a line through (x_0,y_0) with slope m, we know its equation is y = y_0 + m(x-x_0). In Figure, we see that the line passes through (x_0,y_0) along with an arbitary point (x,y), which makes the vertical change between the two points given by y - y_0 and the horizontal change between the points x - x_0. This is consistent with the fact that + + AV_{[x_0,x]} = m = \frac{y-y_0}{x-x_0} + . + Indeed, writing m = \frac{y-y_0}{x-x_0} is a rearrangement of the point-slope form of the line, y = y_0 + m(x-x_0). +

      + +

      + We naturally use the terms increasing and decreasing as from Definition to describe lines based on whether their slope is positive or negative. A line with positive slope, such as the one in Figure, is increasing because its constant rate of change is positive, while a line with negative slope, such as in Figure is decreasing because of its negative rate of change. We say that a horizontal line (one whose slope is m = 0) is neither increasing nor decreasing. +

      + + +
      + The point-slope form of a line's equation. +

      The point-slope form of a line's equation.

      +
      +
      +
      + The slope-intercept form of a line's equation. +

      The slope-intercept form of a line's equation.

      +
      +
      +
      + +

      + A special case arises when the known point on a line satisfies x_0 = 0. In this situation, the known point lies on the y-axis, and thus we call the point the y-intercept of the line. liney-intercept The resulting form of the line's equation is called slope-intercept form, which is also demonstrated in Figure. +

      + + + Slope-intercept form + lineslope-intercept form +

      + For the line with slope m and passing through (0,y_0), its equation is + + y = y_0 + mx + . +

      +
      + +

      + Slope-intercept form follows from point-slope form from the fact that replacing x_0 with 0 gives us y = y_0 + m(x-0) = y_0 + mx. In many textbooks, the slope-intercept form of a line (often written y = mx + b) is treated as if it is the most useful form of a line. Point-slope form is actually more important and valuable since we can easily write down the equation of a line as soon as we know its slope and any point that lies on it, as opposed to needing to find the y-intercept, which is needed for slope-intercept form. Moreover, point-slope form plays a prominent role in calculus. +

      + +

      + If a line is in slope-intercept or point-slope form, it is useful to be able to quickly interpret key information about the line from the form of its equation. +

      + + + +

      + For the line given by y = -3 - 2.5(x-5), determine its slope and a point that lies on the line. +

      + +

      + Solution. This line is in point-slope form. Its slope is m = -2.5 and a point on the line is (5,-3). +

      +
      +
      + + + +

      + For the line given by y = 6 + 0.25x, determine its slope and a point that lies on the line. +

      + +

      + Solution. This line is in slope-intercept form. Its slope is m = 0.25 and a point on the line is (0,6), which is also the line's y-intercept. +

      +
      +
      + +
      + + + Interpreting linear functions in context + +

      + Since linear functions are defined by the property that their average rate of change is constant, linear functions perfectly model quantities that change at a constant rate. In context, we can often think of slope as a rate of change; analyzing units carefully often yields significant insight. +

      + + + +

      + The Dolbear function T = D(N) = 40 + 0.25N from Section is a linear function whose slope is m = 0.25. What is the meaning of the slope in this context? +

      +
      + +

      + Recall that T is measured in degrees Fahrenheit and N in chirps per minute. We know that m = AV_{[a,b]} = 0.25 is the constant average rate of change of D. Its units are units of output per unit of input, and thus degrees Fahrenheit per chirp per minute. This tells us that the average rate of change of the temperature function is 0.25 degrees Fahrenheit per chirp per minute, which means that for each additional chirp per minute observed, we expect the temperature to rise by 0.25 degrees Fahrenheit. +

      + + +

      + Indeed, we can observe this through function values. We note that T(60) = 55 and T(61) = 55.25: one additional observed chirp per minute corresponds to a 0.25 degree increase in temperature. We also see this in the graph of the line, as seen in Figure: + the slope between the points (40,50) and (120,70) is + + m &= \frac{70-50}{120-40} + &= \frac{20}{80} + &= 0.25 \frac{\text{degrees F}}{\text{chirp per minute}} + . +

      + +
      + The linear Dolbear function with slope m = 0.25 degrees Fahrenheit per chirp per minute. +

      The linear Dolbear function with slope m = 0.25 degrees Fahrenheit per chirp per minute.

      +
      +
      +
      + +
      +
      + +

      + Like with the Dolbear function, it is often useful to write a linear function (whose output is called y) that models a quantity changing at a constant rate (as a function of some input t) by writing the function relationship in the form + + y = b + mt + + where b and m are constants. We may think of the four quantities involved in the following way: +

      + +

      +

        +
      • +

        + The constant b is the starting value of the output that corresponds to an input of t = 0; +

        +
      • +
      • +

        + The constant m is the rate at which the output changes with respect to changes in the input: for each additional 1-unit change in input, the output will change by m units. +

        +
      • +
      • +

        + The variable t is the independent (input) variable. A nonzero value for t corresponds to how much the input variable has changed from an initial value of 0. +

        +
      • +
      • +

        + The variable y is the dependent (output) variable. The value of y results from a particular choice of t, and can be thought of as the starting output value (b) plus the change in output that results from the corresponding change in input t. +

        +
      • +
      +

      + + + + + +
      + + + Summary +

      +

        +
      • +

        + Any function f with domain all real numbers that has a constant average rate of change on every interval [a,b] will have a straight line graph. We call such functions linear functions. +

        +
      • +
      • +

        + A linear function y = f(x) can be written in the form y = f(x) = y_0 + m(x-x_0), where m is the slope of the line and (x_0,y_0) is a point that lies on the line. In particular, f(x_0) = y_0. +

        +
      • +
      • +

        + In an applied context where we have a linear function that models a phenomenon in the world around us, the slope tells us the function's (constant) average rate of change. The units on the slope, m, are always units of output per unit of input and this enables us to articulate how the output changes in response to a 1-unit change in input. +

        +
      • +
      +

      +
      + + + + + +
      diff --git a/source/sec-changing-quadratic-wb.xml b/source/sec-changing-quadratic-wb.xml index 5079673c..4e5cd248 100755 --- a/source/sec-changing-quadratic-wb.xml +++ b/source/sec-changing-quadratic-wb.xml @@ -1,22 +1,22 @@ - - - - - - - - - - - - - -
      - Quadratic Functions - - - - - - -
      + + + + + + + + + + + + + +
      + Quadratic Functions + + + + + + +
      diff --git a/source/sec-changing-quadratic.xml b/source/sec-changing-quadratic.xml index 1ae7f472..ac7035fa 100755 --- a/source/sec-changing-quadratic.xml +++ b/source/sec-changing-quadratic.xml @@ -1,448 +1,449 @@ - - - - - - - - - - - - - -
      - Quadratic Functions - - -
        -
      • -

        - What patterns can we observe in how a quadratic function changes? -

        -
      • -
      • -

        - What are familiar and important properties of quadratic functions? -

        -
      • -
      • -

        - How can quadratic functions be used to model objects falling under the influence of gravity? -

        -
      • -
      -
      - - Introduction - -

      - After linear functions, - quadratic functions are arguably the next simplest functions in mathematics. - A quadratic function quadratic function is one that may be written in the form - - q(x) = ax^2 + bx + c - , - where a, - b, and c are real numbers with a \ne 0. One of the reasons that quadratic functions are especially important is that they model the height of an object falling under the force of gravity. -

      - - - - -
      - - - Properties of Quadratic Functions - -

      - Quadratic functions are likely familiar to you from experience in previous courses. Throughout, we let y = q(x) = ax^2 + bx + c where a, b, and c are real numbers with a \ne 0. From the outset, it is important to note that when we write q(x) = ax^2 + bx + c we are thinking of an infinite family of functions where each member depends on the three parameters a, b, and c. -

      - - - -

      - Because quadratic functions are familiar to us, we will quickly restate some of their important known properties. -

      - - - Solutions to <m>q(x) = 0</m> - quadratic formula -

      - Let a, b, and c be real numbers with a \ne 0. The equation ax^2 + bx + c = 0 can have 0, 1, or 2 real solutions. These real solutions are given by the quadratic formula, - - x = \frac{-b \pm \sqrt{b^2-4ac}}{2a} - , - provided that b^2 - 4ac \ge 0. -

      -
      - -

      - As we can see in Figure, by shifting the graph of a quadratic function vertically, we can make its graph cross the x-axis 0 times (as in the graph of p), exactly 1 time (q), or twice (r). These points are the x-intercepts of the graph. -

      - - -
      - Three examples of quadratic functions that open up. -

      Three examples of quadratic functions that open up.

      -
      -
      -
      - One example of a quadratic function that opens down. -

      One example of a quadratic function that opens down.

      -
      -
      -
      - -

      - While the quadratic formula will always provide any real solutions to q(x) = 0, in practice it is often easier to attempt to factor before using the formula. For instance, given q(x) = x^2 - 5x + 6, we can find its x-intercepts quickly by factoring. Since - - x^2 - 5x + 6 = (x-2)(x-3) - , - it follows that (2,0) and (3,0) are the x-intercepts of q. Note more generally that if we know the x-intercepts quadratic function x-intercepts of a quadratic function are (r,0) and (s,0), it follows that we can write the quadratic function in the form q(x) = a(x-r)(x-s). -

      - -

      - Every quadratic function has a y-intercept; quadratic function y-intercept for a function of form y = q(x) = ax^2 + bx + c, the y-intercept is the point (0,c), as demonstrated in Figure. -

      -

      - In addition, every quadratic function has a symmetric graph that either always curves upward or always curves downward. The graph opens upward if and only if a \gt 0 and opens downward if and only if a \lt 0. We often call the graph of a quadratic function a parabola. parabola Every parabola is symmetric about a vertical line that runs through its lowest or highest point. -

      - - - The vertex of a parabola parabolavertex quadratic functionvertex -

      - The quadratic function y = q(x) = ax^2 + bx + c has its vertex at the point \left( -\frac{b}{2a}, q\left( -\frac{b}{2a} \right) \right). When a \gt 0, the vertex is the lowest point on the graph of q, while if a \lt 0, the vertex is the highest point. Moreover, the graph of q is symmetric about the vertical line x = -\frac{b}{2a}. -

      -
      - - -
      - The vertex of a quadratic function that opens up. -

      The vertex of a quadratic function that opens up.

      -
      -
      -
      - The vertex of a quadratic function that opens down. -

      The vertex of a quadratic function that opens down.

      -
      -
      -
      - -

      - Note particularly that due to symmetry, the vertex of a quadratic function lies halfway between its x-intercepts (provided the function has x-intercepts). In both Figures and , we see how the parabola is symmetric about the vertical line that passes through the vertex. One way to understand this symmetry can be seen by writing a given quadratic function in a different algebraic form. -

      - - - -

      - Consider the quadratic function in standard form given by y = q(x) = 0.25x^2 - x + 3.5. Determine constants a, h, and k so that q(x) = a(x-h)^2 + k, and hence determine the vertex of q. How does this alternate form of q explain the symmetry in its graph? -

      -
      - -

      - We first observe that we can write q(x) = 0.25x^2 - x + 3.5 in a form closer to q(x) = a(x-h)^2 + k by factoring 0.25 from the first two terms to get - - q(x) = 0.25(x^2 - 4x) + 3.5 - . - Next, we want to add a constant inside the parentheses to form a perfect square. Noting that (x-2)^2 = x^2 - 4x + 4, we need to add 4. Since we are adding 4 inside the parentheses, the 4 is being multiplied by 0.25, which has the net effect of adding 1 to the function. To keep the function as given, we must also subtract 1, and thus we have - - q(x) = 0.25(x^2 - 4x + 4) + 3.5 - 1 - . - It follows that - - q(x) = 0.25(x-2)^2 + 2.5 - . -

      -

      - Next, observe that the vertex of q is (2,2.5). This holds because (x-2)^2 is always greater than or equal to 0, and thus its smallest possible value is 0 when x = 2. Moreover, when x = 2, q(2) = 2.5.We can also verify this point is the vertex using standard form. From q(x) = 0.25x^2 - x + 3.5, we see that a = 0.25 and b = -1, so x = -\frac{b}{2a} = \frac{1}{0.5} = 2. In addition, q(2) = 2.5. -

      - -

      - Finally, the form q(x) = 0.25(x-2)^2 + 2.5 explains the symmetry of q about the line x = 2. Consider the two points that lie equidistant from x = 2 on the x-axis, z units away: x = 2-z and x = 2 + z. Observe that for these values, - - q(2-z) &= 0.25(2-z-2)^2 + 2.5& q(2+z) &= 0.25(2+z-2)^2 + 2.5 - &= 0.25(-z)^2 + 2.5 & &= 0.25(z)^2 + 2.5 - &= 0.25z^2 + 2.5 & &= 0.25z^2 + 2.5 - - Since q(2-z) = q(2+z) for any choice of z, this shows the parabola is symmetric about the vertical line through its vertex. -

      -
      -
      - -

      - In Example, we saw some of the advantages of writing a quadratic function in the form q(x) = a(x-h)^2 + k. We call this the vertex form of a quadratic function. -

      - - - Vertex form of a quadratic function quadratic functionvertex form -

      - A quadratic function with vertex (h,k) may be written in the form y = a(x-h)^2 + k. The constant a may be determined from one other function value for an input x \ne h. -

      -
      - - - -
      - - - Modeling falling objects - -

      - One of the reasons that quadratic functions are so important is because of a physical fact of the universe we inhabit: - for an object only being influenced by gravity, gravity - acceleration due to gravity is constant. - If we measure time in seconds and a rising or falling object's height in feet, - the gravitational constant is g = 32 feet per second per second. -

      - -

      - One of the fantastic consequences of calculus which, - like the realization that acceleration due to gravity is constant, - is largely due to Sir Isaac Newton in the late 1600s is that the height of a falling object at time t is modeled by a quadratic function. -

      - - - Height of an object falling under the force of gravity - gravityfalling object -

      - For an object tossed vertically from an initial height of s_0 feet with a velocity of v_0 feet per second, - the object's height at time t (in seconds) is given by the formula - - h(t) = -16t^2 + v_0t + s_0 - -

      -
      - -

      - If height is measured instead in meters and velocity in meters per second, the gravitational constant is g = 9.8 and the function h has form h(t) = -4.9t^2 + v_0t + s_0. gravitygravitational constant (When height is measured in feet, the gravitational constant is g = 32.) -

      - - - -
      - - - - How quadratic functions change - - -

      - So far, we've seen that quadratic functions have many interesting properties. In Preview Activity, we discovered an additional pattern that is particularly noteworthy. -

      - -

      - Recall that we considered a water balloon tossed vertically from a fifth story window whose height, h, in meters, at time t, in seconds, is modeledHere we are using a = -5 rather than a = -4.9 for simplicity. by the function - - h = q(t) = -5t^2 + 20t + 25 - . - We then completed Table and Table to investigate how both function values and averages rates of change varied as we changed the input to the function. -

      - - - - Function values for <m>h</m> at select inputs. - - - t - h = q(t) - - - 0 - q(0) = 25 - - - 1 - q(1) = 40 - - - 2 - q(2) = 45 - - - 3 - q(3) = 40 - - - 4 - q(4) = 25 - - - 5 - q(5) = 0 - - -
      - - Average rates of change for <m>h</m> on select intervals <m>[a,b]</m>. - - - [a,b] - AV_{[a,b]} - - - [0,1] - AV_{[0,1]} = 15 m/s - - - [1,2] - AV_{[1,2]} = 5 m/s - - - [2,3] - AV_{[2,3]} = -5 m/s - - - [3,4] - AV_{[3,4]} = -15 m/s - - - [4,5] - AV_{[4,5]} = -25 m/s - - - - - -
      -
      - -

      - In Table, we see an interesting pattern in the average velocities of the ball. Indeed, if we remove the AV notation and focus on the starting value of each interval, viewing the resulting average rate of change, r, as a function of the starting value, we may consider the related table seen in Table, where it is apparent that r is a linear function of a. -

      - - - - - Data from <xref ref="T-PA-changing-quadratic-AVs-complete">Table</xref>, slightly recast. - - - a - r(a) - - - 0 - r(0) = 15 m/s - - - 1 - r(1) = 5 m/s - - - 2 - r(2) = -5 m/s - - - 3 - r(3) = -15 m/s - - - 4 - r(4) = -25 m/s - - -
      - -
      - Plot of h(t) = -5t^2 + 20t + 25 along with line segments whose slopes correspond to average rates of change. -

      Plot of h(t) = -5t^2 + 20t + 25 along with line segments whose slopes correspond to average rates of change.

      -
      -
      - -
      - -

      - Indeed, viewing this data graphically as in Figure, we observe that the average rate of change of h is itself changing in a way that seems to be represented by a linear function. While it takes key ideas from calculus to formalize this observation, for now we will simply note that for a quadratic function there seems to be a related linear function that tells us something about how the quadratic function changes. Moreover, we can also say that on the downward-opening quadratic function h that its average rate of change appears to be decreasing as we move from left to rightProvided that we consider the average rate of change on intervals of the same length. Again, it takes ideas from calculus to make this observation completely precise.. -

      - -

      - A key closing observation here is that the fact the parabola bends down is apparently connected to the fact that its average rate of change decreases as we move left to right. By contrast, for a quadratic function that bends up, we can show that its average rate of change increases as we move left to right (see Exercise). Moreover, we also see that it's possible to view the average rate of change of a function on 1-unit intervals as itself being a function: a process that relates an input (the starting value of the interval) to a corresponding output (the average rate of change of the original function on the resulting 1-unit interval). -

      - -

      - For any function that consistently bends either exclusively upward or exclusively downward on a given interval (a,b), we use the following formal languageCalculus is needed to make Definition rigorous and precise. to describe it. -

      - - - function trendsconcave up function trendsconcave down - -

      - If a function f always bends upward on an interval (a,b), we say that f is concave up on (a,b). Similarly, if f always bends downward on an interval (a,b), we say that f is concave down on (a,b). -

      -
      -
      - -

      - Thus, we now call a quadratic function q(x) = ax^2 + bx + c with a \gt 0 concave up, while if a \lt 0 we say q is concave down. -

      - -
      - - - Summary -

      -

        -
      • -

        - Quadratic functions (of the form q(x) = ax^2 + bx + c with a \ne 0) are emphatically not linear: their average rate of change is not constant, but rather depends on the interval chosen. At the same time, quadratic functions appear to change in a very regimented way: if we compute the average rate of change on several consecutive 1-unit intervals, it appears that the average rate of change itself changes at a constant rate. Quadratic functions either bend upward (a \gt 0) or bend downward (a \lt 0) and these shapes are connected to whether the average rate of change on consecutive 1-unit intervals decreases or increases as we move left to right. -

        -
      • -
      • -

        - For an object with height h measured in feet at time t in seconds, if the object was launched vertically at an initial velocity of v_0 feet per second and from an initial height of s_0 feet, the object's height is given by - - h = q(t) = -16t^2 + v_0t + s_0 - . - That is, the object's height is completely determined by the initial height and initial velocity from which it was launched. The model is valid for the entire time until the object lands. If h is instead measured in meters and v_0 in meters per second, -16 is replaced with -4.9. -

        -
      • -
      • -

        - A quadratic function q can be written in one of three familiar forms: standard, vertex, or factoredIt's not always possible to write a quadratic function in factored form involving only real numbers; this can only be done if it has 1 or 2 x-intercepts.. Table shows how, depending on the algebraic form of the function, various properties may be (easily) read from the formula. In every case, the sign of a determines whether the function opens up or opens down. -

        - - A summary of the information that can be read from the various algebraic forms of a quadratic function - - - - standard - vertex - factoredProvided q has 1 or 2 x-intercepts. In the case of just one, we take r = s. - - - form - q(x) = ax^2 + bx + c - q(x) = a(x-h)^2 + k - q(x) = a(x-r)(x-s) - - - y-int - (0,c) - (0,ah^2 + k) - (0,ars) - - - x-intProvided b^2 - 4ac \ge 0 for standard form; provided -\frac{k}{a} \ge 0 for vertex form. - \left(\frac{-b \pm \sqrt{b^2 - 4ac}}{2a} , 0 \right) - \left(h \pm \sqrt{-\frac{k}{a}} , 0 \right) - (r,0), (s,0) - - - vertex - \left(-\frac{b}{2a}, q\left( -\frac{b}{2a} \right) \right) - (h,k) - \left( \frac{r+s}{2}, q\left( \frac{r+s}{2} \right) \right) - - -
        -
      • - -
      -

      -
      - - - - - -
      + + + + + + + + + + + + + +
      + Quadratic Functions + + +
        +
      • +

        + What patterns can we observe in how a quadratic function changes? +

        +
      • +
      • +

        + What are familiar and important properties of quadratic functions? +

        +
      • +
      • +

        + How can quadratic functions be used to model objects falling under the influence of gravity? +

        +
      • +
      +
      + + Introduction + +

      + After linear functions, + quadratic functions are arguably the next simplest functions in mathematics. + A quadratic function quadratic function is one that may be written in the form + + q(x) = ax^2 + bx + c + , + where a, + b, and c are real numbers with a \ne 0. One of the reasons that quadratic functions are especially important is that they model the height of an object falling under the force of gravity. +

      + + + + + +
      + + + Properties of Quadratic Functions + +

      + Quadratic functions are likely familiar to you from experience in previous courses. Throughout, we let y = q(x) = ax^2 + bx + c where a, b, and c are real numbers with a \ne 0. From the outset, it is important to note that when we write q(x) = ax^2 + bx + c we are thinking of an infinite family of functions where each member depends on the three parameters a, b, and c. +

      + + + +

      + Because quadratic functions are familiar to us, we will quickly restate some of their important known properties. +

      + + + Solutions to <m>q(x) = 0</m> + quadratic formula +

      + Let a, b, and c be real numbers with a \ne 0. The equation ax^2 + bx + c = 0 can have 0, 1, or 2 real solutions. These real solutions are given by the quadratic formula, + + x = \frac{-b \pm \sqrt{b^2-4ac}}{2a} + , + provided that b^2 - 4ac \ge 0. +

      +
      + +

      + As we can see in Figure, by shifting the graph of a quadratic function vertically, we can make its graph cross the x-axis 0 times (as in the graph of p), exactly 1 time (q), or twice (r). These points are the x-intercepts of the graph. +

      + + +
      + Three examples of quadratic functions that open up. +

      Three examples of quadratic functions that open up.

      +
      +
      +
      + One example of a quadratic function that opens down. +

      One example of a quadratic function that opens down.

      +
      +
      +
      + +

      + While the quadratic formula will always provide any real solutions to q(x) = 0, in practice it is often easier to attempt to factor before using the formula. For instance, given q(x) = x^2 - 5x + 6, we can find its x-intercepts quickly by factoring. Since + + x^2 - 5x + 6 = (x-2)(x-3) + , + it follows that (2,0) and (3,0) are the x-intercepts of q. Note more generally that if we know the x-intercepts quadratic function x-intercepts of a quadratic function are (r,0) and (s,0), it follows that we can write the quadratic function in the form q(x) = a(x-r)(x-s). +

      + +

      + Every quadratic function has a y-intercept; quadratic function y-intercept for a function of form y = q(x) = ax^2 + bx + c, the y-intercept is the point (0,c), as demonstrated in Figure. +

      +

      + In addition, every quadratic function has a symmetric graph that either always curves upward or always curves downward. The graph opens upward if and only if a \gt 0 and opens downward if and only if a \lt 0. We often call the graph of a quadratic function a parabola. parabola Every parabola is symmetric about a vertical line that runs through its lowest or highest point. +

      + + + The vertex of a parabola parabolavertex quadratic functionvertex +

      + The quadratic function y = q(x) = ax^2 + bx + c has its vertex at the point \left( -\frac{b}{2a}, q\left( -\frac{b}{2a} \right) \right). When a \gt 0, the vertex is the lowest point on the graph of q, while if a \lt 0, the vertex is the highest point. Moreover, the graph of q is symmetric about the vertical line x = -\frac{b}{2a}. +

      +
      + + +
      + The vertex of a quadratic function that opens up. +

      The vertex of a quadratic function that opens up.

      +
      +
      +
      + The vertex of a quadratic function that opens down. +

      The vertex of a quadratic function that opens down.

      +
      +
      +
      + +

      + Note particularly that due to symmetry, the vertex of a quadratic function lies halfway between its x-intercepts (provided the function has x-intercepts). In both Figures and , we see how the parabola is symmetric about the vertical line that passes through the vertex. One way to understand this symmetry can be seen by writing a given quadratic function in a different algebraic form. +

      + + + +

      + Consider the quadratic function in standard form given by y = q(x) = 0.25x^2 - x + 3.5. Determine constants a, h, and k so that q(x) = a(x-h)^2 + k, and hence determine the vertex of q. How does this alternate form of q explain the symmetry in its graph? +

      +
      + +

      + We first observe that we can write q(x) = 0.25x^2 - x + 3.5 in a form closer to q(x) = a(x-h)^2 + k by factoring 0.25 from the first two terms to get + + q(x) = 0.25(x^2 - 4x) + 3.5 + . + Next, we want to add a constant inside the parentheses to form a perfect square. Noting that (x-2)^2 = x^2 - 4x + 4, we need to add 4. Since we are adding 4 inside the parentheses, the 4 is being multiplied by 0.25, which has the net effect of adding 1 to the function. To keep the function as given, we must also subtract 1, and thus we have + + q(x) = 0.25(x^2 - 4x + 4) + 3.5 - 1 + . + It follows that + + q(x) = 0.25(x-2)^2 + 2.5 + . +

      +

      + Next, observe that the vertex of q is (2,2.5). This holds because (x-2)^2 is always greater than or equal to 0, and thus its smallest possible value is 0 when x = 2. Moreover, when x = 2, q(2) = 2.5.We can also verify this point is the vertex using standard form. From q(x) = 0.25x^2 - x + 3.5, we see that a = 0.25 and b = -1, so x = -\frac{b}{2a} = \frac{1}{0.5} = 2. In addition, q(2) = 2.5. +

      + +

      + Finally, the form q(x) = 0.25(x-2)^2 + 2.5 explains the symmetry of q about the line x = 2. Consider the two points that lie equidistant from x = 2 on the x-axis, z units away: x = 2-z and x = 2 + z. Observe that for these values, + + q(2-z) &= 0.25(2-z-2)^2 + 2.5& q(2+z) &= 0.25(2+z-2)^2 + 2.5 + &= 0.25(-z)^2 + 2.5 & &= 0.25(z)^2 + 2.5 + &= 0.25z^2 + 2.5 & &= 0.25z^2 + 2.5 + + Since q(2-z) = q(2+z) for any choice of z, this shows the parabola is symmetric about the vertical line through its vertex. +

      +
      +
      + +

      + In Example, we saw some of the advantages of writing a quadratic function in the form q(x) = a(x-h)^2 + k. We call this the vertex form of a quadratic function. +

      + + + Vertex form of a quadratic function quadratic functionvertex form +

      + A quadratic function with vertex (h,k) may be written in the form y = a(x-h)^2 + k. The constant a may be determined from one other function value for an input x \ne h. +

      +
      + + + +
      + + + Modeling falling objects + +

      + One of the reasons that quadratic functions are so important is because of a physical fact of the universe we inhabit: + for an object only being influenced by gravity, gravity + acceleration due to gravity is constant. + If we measure time in seconds and a rising or falling object's height in feet, + the gravitational constant is g = 32 feet per second per second. +

      + +

      + One of the fantastic consequences of calculus which, + like the realization that acceleration due to gravity is constant, + is largely due to Sir Isaac Newton in the late 1600s is that the height of a falling object at time t is modeled by a quadratic function. +

      + + + Height of an object falling under the force of gravity + gravityfalling object +

      + For an object tossed vertically from an initial height of s_0 feet with a velocity of v_0 feet per second, + the object's height at time t (in seconds) is given by the formula + + h(t) = -16t^2 + v_0t + s_0 + +

      +
      + +

      + If height is measured instead in meters and velocity in meters per second, the gravitational constant is g = 9.8 and the function h has form h(t) = -4.9t^2 + v_0t + s_0. gravitygravitational constant (When height is measured in feet, the gravitational constant is g = 32.) +

      + + + +
      + + + + How quadratic functions change + + +

      + So far, we've seen that quadratic functions have many interesting properties. In Preview Activity, we discovered an additional pattern that is particularly noteworthy. +

      + +

      + Recall that we considered a water balloon tossed vertically from a fifth story window whose height, h, in meters, at time t, in seconds, is modeledHere we are using a = -5 rather than a = -4.9 for simplicity. by the function + + h = q(t) = -5t^2 + 20t + 25 + . + We then completed Table and Table to investigate how both function values and averages rates of change varied as we changed the input to the function. +

      + + + + Function values for <m>h</m> at select inputs. + + + t + h = q(t) + + + 0 + q(0) = 25 + + + 1 + q(1) = 40 + + + 2 + q(2) = 45 + + + 3 + q(3) = 40 + + + 4 + q(4) = 25 + + + 5 + q(5) = 0 + + +
      + + Average rates of change for <m>h</m> on select intervals <m>[a,b]</m>. + + + [a,b] + AV_{[a,b]} + + + [0,1] + AV_{[0,1]} = 15 m/s + + + [1,2] + AV_{[1,2]} = 5 m/s + + + [2,3] + AV_{[2,3]} = -5 m/s + + + [3,4] + AV_{[3,4]} = -15 m/s + + + [4,5] + AV_{[4,5]} = -25 m/s + + + + + +
      +
      + +

      + In Table, we see an interesting pattern in the average velocities of the ball. Indeed, if we remove the AV notation and focus on the starting value of each interval, viewing the resulting average rate of change, r, as a function of the starting value, we may consider the related table seen in Table, where it is apparent that r is a linear function of a. +

      + + + + + Data from <xref ref="T-PA-changing-quadratic-AVs-complete">Table</xref>, slightly recast. + + + a + r(a) + + + 0 + r(0) = 15 m/s + + + 1 + r(1) = 5 m/s + + + 2 + r(2) = -5 m/s + + + 3 + r(3) = -15 m/s + + + 4 + r(4) = -25 m/s + + +
      + +
      + Plot of h(t) = -5t^2 + 20t + 25 along with line segments whose slopes correspond to average rates of change. +

      Plot of h(t) = -5t^2 + 20t + 25 along with line segments whose slopes correspond to average rates of change.

      +
      +
      + +
      + +

      + Indeed, viewing this data graphically as in Figure, we observe that the average rate of change of h is itself changing in a way that seems to be represented by a linear function. While it takes key ideas from calculus to formalize this observation, for now we will simply note that for a quadratic function there seems to be a related linear function that tells us something about how the quadratic function changes. Moreover, we can also say that on the downward-opening quadratic function h that its average rate of change appears to be decreasing as we move from left to rightProvided that we consider the average rate of change on intervals of the same length. Again, it takes ideas from calculus to make this observation completely precise.. +

      + +

      + A key closing observation here is that the fact the parabola bends down is apparently connected to the fact that its average rate of change decreases as we move left to right. By contrast, for a quadratic function that bends up, we can show that its average rate of change increases as we move left to right (see Exercise). Moreover, we also see that it's possible to view the average rate of change of a function on 1-unit intervals as itself being a function: a process that relates an input (the starting value of the interval) to a corresponding output (the average rate of change of the original function on the resulting 1-unit interval). +

      + +

      + For any function that consistently bends either exclusively upward or exclusively downward on a given interval (a,b), we use the following formal languageCalculus is needed to make Definition rigorous and precise. to describe it. +

      + + + function trendsconcave up function trendsconcave down + +

      + If a function f always bends upward on an interval (a,b), we say that f is concave up on (a,b). Similarly, if f always bends downward on an interval (a,b), we say that f is concave down on (a,b). +

      +
      +
      + +

      + Thus, we now call a quadratic function q(x) = ax^2 + bx + c with a \gt 0 concave up, while if a \lt 0 we say q is concave down. +

      + +
      + + + Summary +

      +

        +
      • +

        + Quadratic functions (of the form q(x) = ax^2 + bx + c with a \ne 0) are emphatically not linear: their average rate of change is not constant, but rather depends on the interval chosen. At the same time, quadratic functions appear to change in a very regimented way: if we compute the average rate of change on several consecutive 1-unit intervals, it appears that the average rate of change itself changes at a constant rate. Quadratic functions either bend upward (a \gt 0) or bend downward (a \lt 0) and these shapes are connected to whether the average rate of change on consecutive 1-unit intervals decreases or increases as we move left to right. +

        +
      • +
      • +

        + For an object with height h measured in feet at time t in seconds, if the object was launched vertically at an initial velocity of v_0 feet per second and from an initial height of s_0 feet, the object's height is given by + + h = q(t) = -16t^2 + v_0t + s_0 + . + That is, the object's height is completely determined by the initial height and initial velocity from which it was launched. The model is valid for the entire time until the object lands. If h is instead measured in meters and v_0 in meters per second, -16 is replaced with -4.9. +

        +
      • +
      • +

        + A quadratic function q can be written in one of three familiar forms: standard, vertex, or factoredIt's not always possible to write a quadratic function in factored form involving only real numbers; this can only be done if it has 1 or 2 x-intercepts.. Table shows how, depending on the algebraic form of the function, various properties may be (easily) read from the formula. In every case, the sign of a determines whether the function opens up or opens down. +

        + + A summary of the information that can be read from the various algebraic forms of a quadratic function + + + + standard + vertex + factoredProvided q has 1 or 2 x-intercepts. In the case of just one, we take r = s. + + + form + q(x) = ax^2 + bx + c + q(x) = a(x-h)^2 + k + q(x) = a(x-r)(x-s) + + + y-int + (0,c) + (0,ah^2 + k) + (0,ars) + + + x-intProvided b^2 - 4ac \ge 0 for standard form; provided -\frac{k}{a} \ge 0 for vertex form. + \left(\frac{-b \pm \sqrt{b^2 - 4ac}}{2a} , 0 \right) + \left(h \pm \sqrt{-\frac{k}{a}} , 0 \right) + (r,0), (s,0) + + + vertex + \left(-\frac{b}{2a}, q\left( -\frac{b}{2a} \right) \right) + (h,k) + \left( \frac{r+s}{2}, q\left( \frac{r+s}{2} \right) \right) + + +
        +
      • + +
      +

      +
      + + + + + +
      diff --git a/source/sec-changing-transformations-wb.xml b/source/sec-changing-transformations-wb.xml index df46ddf5..303e39ae 100755 --- a/source/sec-changing-transformations-wb.xml +++ b/source/sec-changing-transformations-wb.xml @@ -1,22 +1,22 @@ - - - - - - - - - - - - - -
      - Transformations of Functions - - - - - - -
      + + + + + + + + + + + + + +
      + Transformations of Functions + + + + + + +
      diff --git a/source/sec-changing-transformations.xml b/source/sec-changing-transformations.xml index c631d0b9..42f55c72 100755 --- a/source/sec-changing-transformations.xml +++ b/source/sec-changing-transformations.xml @@ -1,339 +1,368 @@ - - - - - - - - - - - - - -
      - Transformations of Functions - - -
        -
      • -

        - How is the graph of y = g(x) = af(x-b) + c related to the graph of y = f(x)? -

        -
      • -
      • -

        - What do we mean by transformations of a given function f? How are translations and vertical stretches of a function examples of transformations? -

        -
      • -
      -
      - - Introduction -

      - In our preparation for calculus, we aspire to understand functions from a wide range of perspectives and to become familiar with a library of basic functions. So far, two basic families of functions we have considered are linear functions and quadratic functions, the simplest of which are L(x) = x and Q(x) = x^2. As we progress further, we will endeavor to understand a parent function as the most fundamental member of a family of functions, as well as how other similar but more complicated functions are the result of transforming the parent function. -

      - -

      - Informally, a transformation transformation of a function of a given function is an algebraic process by which we change the function to a related function that has the same fundamental shape, but may be shifted, reflected, and/or stretched in a systematic way. For example, among all quadratic functions, the simplest is the parent function Q(x) = x^2, but any other quadratic function such as g(x) = -3(x-5)^2 + 4 can also be understood in relation to the parent function. We say that g is a transformation of Q. -

      - -

      - In Preview Activity, we investigate the effects of the constants a, b, and c in generating the function g(x) = af(x-b) + c in the context of already knowing the function f. -

      - - - -
      - - - Translations of Functions -

      - We begin by summarizing two of our findings in Preview Activity. -

      - - - Vertical Translation of a Function - transformation of a functionvertical translation -

      - Given a function y = f(x) and a real number a, the transformed function y = g(x) = f(x) + a is a vertical translation of the graph of f. That is, every point (x,f(x)) on the graph of f gets shifted vertically to the corresponding point (x,f(x)+a) on the graph of g. -

      -
      - -

      - As we found in our Desmos explorations in the preview activity, is especially helpful to see the effects of vertical translation dynamically. -

      - -
      - Interactive vertical translations demonstration (in the HTML version only). - - -

      Interactive vertical translations demonstration (in the HTML version only).

      - -
      - - -

      - Move the sliderHuge thanks to the amazing David Austin for making these interactive javascript graphics for the text. by clicking and dragging on the red point to see how changing a affects the graph of y = f(x) + a, which appears in blue. The graph of y = f(x) will appear in grey and remain fixed. -

      -
      -
      -
      - -

      - In a vertical translation, the graph of g lies above the graph of f whenever a \gt 0, while the graph of g lies below the graph of f whenever a \lt 0. In Figure, we see the original parent function f(x) = |x| along with the resulting transformation g(x) = f(x)-3, which is a downward vertical shift of 3 units. Note particularly that every point on the original graph of f is moved 3 units down; we often indicate this by an arrow and labeling at least one key point on each graph. -

      - - -
      - A vertical translation, g, of the function y = f(x) = |x|. -

      A vertical translation, g, of the function y = f(x) = |x|.

      -
      -
      -
      - A horizontal translation, h, of a different function y = f(x). -

      A horizontal translation, h, of a different function y = f(x).

      -
      -
      -
      - -

      - In Figure, we see a horizontal translation of the original function f that shifts its graph 2 units to the right to form the function h. Observe that f is not a familiar basic function; transformations may be applied to any original function we desire. -

      - -

      - From an algebraic point of view, horizontal translations are slightly more complicated than vertical ones. Given y = f(x), if we define the transformed function y = h(x) = f(x-b), observe that - - h(x+b) = f( (x+b) - b ) = f(x) - . - This shows that for an input of x+b in h, the output of h is the same as the output of f that corresponds to an input of simply x. Hence, in Figure, the formula for h in terms of f is h(x) = f(x-2), since an input of x+2 in h will result in the same output as an input of x in f. For example, h(2) = f(0), which aligns with the graph of h being a shift of the graph of f to the right by 2 units. -

      - -

      - Again, it's instructive to see the effects of horizontal translation dynamically. -

      - -
      - Interactive horizontal translations demonstration (in the HTML version only). - - -

      Interactive horizontal translations demonstration (in the HTML version only).

      - -
      - - -

      - Move the slider by clicking and dragging on the red point to see how changing b affects the graph of y = f(x-b), which appears in blue. The graph of y = f(x) will appear in grey and remain fixed. -

      -
      -
      -
      - -

      - Overall, we have the following general principle. -

      - - - Horizontal Translation of a Function - transformation of a functionhorizontal translation -

      - Given a function y = f(x) and a real number b, the transformed function y = h(x) = f(x-b) is a horizontal translation of the graph of f. That is, every point (x,f(x)) on the graph of f gets shifted horizontally to the corresponding point (x+b,f(x)) on the graph of g. -

      -
      - -

      - We emphasize that in the horizontal translation h(x) = f(x-b), if b \gt 0 the graph of h lies b units to the right of f, while if b \lt 0, h lies b units to the left of f. -

      - - - -
      - - - Vertical stretches and reflections - -

      - So far, we have seen the possible effects of adding a constant value to function's output (that is, the new expression f(x)+a if given f(x)) and adding a constant value to function input (that is, the new expression f(x+b), given f(x)). Each of these actions results in a translation of the function's graph (either vertically or horizontally), but otherwise leaving the graph the same. Next, we investigate the effects of multiplication the function's output by a constant. -

      - - - -

      - Given the parent function y = f(x) pictured in Figure, what are the effects of the transformation y = v(x) = cf(x) for various values of c? -

      -
      - - -

      - We first investigate the effects of c = 2 and c = \frac{1}{2}. For v(x) = 2f(x), the algebraic impact of this transformation is that every output of f is multiplied by 2. This means that the only output that is unchanged is when f(x) = 0, while any other point on the graph of the original function f will be stretched vertically away from the x-axis by a factor of 2. We can see this in Figure where each point on the original dark blue graph is transformed to a corresponding point whose y-coordinate is twice as large, as partially indicated by the red arrows. -

      - - -
      - The parent function y = f(x) along with two different vertical stretches, v and u. -

      The parent function y = f(x) along with two different vertical stretches, v and u.

      -
      -
      -
      - The parent function y = f(x) along with a vertical reflection, z, and a corresponding stretch, w. -

      The parent function y = f(x) along with a vertical reflection, z, and a corresponding stretch, w.

      -
      -
      -
      - -

      - In contrast, the transformation u(x) = \frac{1}{2}f(x) is stretched vertically by a factor of \frac{1}{2}, which has the effect of compressing the graph of f towards the x-axis, as all function outputs of f are multiplied by \frac{1}{2}. For instance, the point (0,-2) on the graph of f is transformed to the graph of (0,-1) on the graph of u, and others are transformed as indicated by the purple arrows. -

      - -

      - To consider the situation where c \lt 0, we first consider the simplest case where c = -1 in the transformation z(x) = -f(x). Here the impact of the transformation is to multiply every output of the parent function f by -1; this takes any point of form (x,y) and transforms it to (x,-y), which means we are reflecting each point on the original function's graph across the x-axis to generate the resulting function's graph. This is demonstrated in Figure where y = z(x) is the reflection of y = f(x) across the x-axis. -

      - -

      - Finally, we also investigate the case where c = -2, which generates y = w(x) = -2f(x). Here we can think of -2 as -2 = 2(-1): the effect of multiplying by -1 first reflects the graph of f across the x-axis (resulting in z), and then multiplying by 2 stretches the graph of z vertically to result in w, as shown in Figure. -

      - -
      -
      - -

      - As with vertical and horizontal translation, it's particularly instructive to see the effects of vertical scaling in a dynamic way. -

      - -
      - Interactive vertical scaling demonstration (in the HTML version only). - - -

      Interactive vertical scaling demonstration (in the HTML version only).

      - -
      - - -

      - Move the slider by clicking and dragging on the red point to see how changing c affects the graph of y = cf(x), which is shown in blue. The graph of y = f(x) will appear in grey and remain fixed. -

      -
      -
      -
      - -

      - We summarize and generalize our observations from Example and Figure as follows. -

      - - - Vertical Scaling of a Function - transformation of a functionvertical scaling -

      - Given a function y = f(x) and a real number c \gt 0, the transformed function y = v(x) = cf(x) is a vertical stretch of the graph of f. Every point (x,f(x)) on the graph of f gets stretched vertically to the corresponding point (x,cf(x)) on the graph of v. If 0 \lt c \lt 1, the graph of v is a compression of f toward the x-axis; if c \gt 1, the graph of v is a stretch of f away from the x-axis. Points where f(x) = 0 are unchanged by the transformation. -

      - -

      - Given a function y = f(x) and a real number c \lt 0, the transformed function y = v(x) = cf(x) is a reflection of the graph of f across the x-axis followed by a vertical stretch by a factor of |c|. -

      -
      - - - -
      - - - Combining shifts and stretches: why order sometimes matters - -

      - In the final question of Activity, we considered the transformation y = m(x) = 2r(x+1)-1 of the original function r. There are three different basic transformations involved: a vertical shift of 1 unit down, a horizontal shift of 1 unit left, and a vertical stretch by a factor of 2. To understand the order in which these transformations are applied, it's essential to remember that a function is a process that converts inputs to outputs. -

      - -

      - By the algebraic rule for m, m(x) = 2r(x+1)-1. In words, this means that given an input x for m, we do the following processes in this particular order: - -

        -
      1. -

        - add 1 to x and then - apply the function r to the quantity x+1; -

        -
      2. -
      3. -

        - multiply the output of r(x+1) by 2; -

        -
      4. -
      5. -

        - subtract 1 from the output of 2r(x+1). -

        -
      6. -
      - - These three steps correspond to three basic transformations: (1) shift the graph of r to the left by 1 unit; (2) stretch the resulting graph vertically by a factor of 2; (3) shift the resulting graph vertically by -1 units. We can see the graphical impact of these algebraic steps by taking them one at a time. In Figure, we see the function p that results from a shift 1 unit left of the parent function in Figure. (Each time we take an additional step, we will de-emphasize the preceding function by having it appear in lighter color and dashed.) -

      - - -
      - The parent function y = r(x). -

      The parent function y = r(x).

      -
      -
      -
      - The parent function y = r(x) along with the horizontal shift y = p(x) = r(x+1). -

      The parent function y = r(x) along with the horizontal shift y = p(x) = r(x+1).

      -
      -
      -
      - -

      - Continuing, we now consider the function q(x) = 2p(x) = 2r(x+1), which results in a vertical stretch of p away from the x-axis by a factor of 2, as seen in Figure. -

      - - -
      - The function y = q(x) = 2p(x) = 2r(x+1) along with graphs of p and r. -

      The function y = q(x) = 2p(x) = 2r(x+1) along with graphs of p and r.

      -
      -
      -
      - The function y = m(x) = q(x)-1 = 2r(x+1) - 1 along with graphs of q, p and r. -

      The function y = m(x) = q(x)-1 = 2r(x+1) - 1 along with graphs of q, p and r.

      -
      -
      -
      - -

      - Finally, we arrive at y = m(x) = 2r(x+1) - 1 by subtracting 1 from q(x) = 2r(x+1); this of course is a vertical shift of -1 units, and produces the graph of m shown in red in Figure. We can also track the point (2,-1) on the original parent function: it first moves left 1 unit to (1,-1), then it is stretched vertically by a factor of 2 away from the x-axis to (1,-2), and lastly is shifted 1 unit down to the point (1,-3), which we see on the graph of m. -

      - -

      - While there are some transformations that can be executed in either order (such as a combination of a horizontal translation and a vertical translation, as seen in part (b) of Activity), in other situations order matters. For instance, in our preceding discussion, we have to apply the vertical stretch before applying the vertical shift. Algebraically, this is because - - 2r(x+1) - 1 \ne 2[r(x+1)-1] - . - The quantity 2r(x+1) - 1 multiplies the function r(x+1) by 2 first (the stretch) and then the vertical shift follows; the quantity 2[r(x+1) - 1] shifts the function r(x+1) down 1 unit first, and then executes a vertical stretch by a factor of 2. In the latter scenario, the point (1,-1) that lies on r(x+1) gets transformed first to (1,-2) and then to (1,-4), which is not the same as the point (1,-3) that lies on m(x) = 2r(x+1) - 1. -

      - - - -
      - - - Summary -

      -

        -
      • -

        - The graph of y = g(x) = af(x-b) + c is related to the graph of y = f(x) by a sequence of transformations. First, there is horizontal shift of |b| units to the right (b \gt 0) or left (b \lt 0). Next, there is a vertical stretch by a factor of |a| (along with a reflection across y = 0 in the case where a \lt 0). Finally, there's a vertical shift of c units. -

        -
      • -
      • -

        - A transformation of a given function f is a process by which the graph may be shifted or stretched to generate a new, related function with fundamentally the same shape. In this section we considered four different ways this can occur: through a horizontal translation (shift), through a reflection across the line y = 0 (the x-axis), through a vertical scaling (stretch) that multiplies every output of a function by the same constant, and through a vertical translation (shift). Each of these individual processes is itself a transformation, and they may be combined in various ways to create more complicated transformations. -

        -
      • -
      -

      -
      - - - - - -
      + + + + + + + + + + + + + +
      + Transformations of Functions + + +
        +
      • +

        + How is the graph of y = g(x) = af(x-b) + c related to the graph of y = f(x)? +

        +
      • +
      • +

        + What do we mean by transformations of a given function f? How are translations and vertical stretches of a function examples of transformations? +

        +
      • +
      +
      + + Introduction +

      + In our preparation for calculus, we aspire to understand functions from a wide range of perspectives and to become familiar with a library of basic functions. So far, two basic families of functions we have considered are linear functions and quadratic functions, the simplest of which are L(x) = x and Q(x) = x^2. As we progress further, we will endeavor to understand a parent function as the most fundamental member of a family of functions, as well as how other similar but more complicated functions are the result of transforming the parent function. +

      + +

      + Informally, a transformation transformation of a function of a given function is an algebraic process by which we change the function to a related function that has the same fundamental shape, but may be shifted, reflected, and/or stretched in a systematic way. For example, among all quadratic functions, the simplest is the parent function Q(x) = x^2, but any other quadratic function such as g(x) = -3(x-5)^2 + 4 can also be understood in relation to the parent function. We say that g is a transformation of Q. +

      + +

      + In Preview Activity, we investigate the effects of the constants a, b, and c in generating the function g(x) = af(x-b) + c in the context of already knowing the function f. +

      + + + + + +
      + + + Translations of Functions +

      + We begin by summarizing two of our findings in Preview Activity. +

      + + + Vertical Translation of a Function + transformation of a functionvertical translation +

      + Given a function y = f(x) and a real number a, the transformed function y = g(x) = f(x) + a is a vertical translation of the graph of f. That is, every point (x,f(x)) on the graph of f gets shifted vertically to the corresponding point (x,f(x)+a) on the graph of g. +

      +
      + +

      + As we found in our Desmos explorations in the preview activity, is especially helpful to see the effects of vertical translation dynamically. +

      + +
      + Interactive vertical translations demonstration (in the HTML version only). + + +

      Interactive vertical translations demonstration (in the HTML version only).

      + +
      + + +

      + Move the sliderHuge thanks to the amazing David Austin for making these interactive javascript graphics for the text. by clicking and dragging on the red point to see how changing a affects the graph of y = f(x) + a, which appears in blue. The graph of y = f(x) will appear in grey and remain fixed. +

      +
      +
      +
      + +

      + In a vertical translation, the graph of g lies above the graph of f whenever a \gt 0, while the graph of g lies below the graph of f whenever a \lt 0. In Figure, we see the original parent function f(x) = |x| along with the resulting transformation g(x) = f(x)-3, which is a downward vertical shift of 3 units. Note particularly that every point on the original graph of f is moved 3 units down; we often indicate this by an arrow and labeling at least one key point on each graph. +

      + + +
      + A vertical translation, g, of the function y = f(x) = |x|. + + + + + +

      A vertical translation, g, of the function y = f(x) = |x|.

      + +
      +
      + A horizontal translation, h, of a different function y = f(x). + + + + + +

      A horizontal translation, h, of a different function y = f(x).

      +
      + +
      +
      + +

      + In Figure, we see a horizontal translation of the original function f that shifts its graph 2 units to the right to form the function h. Observe that f is not a familiar basic function; transformations may be applied to any original function we desire. +

      + +

      + From an algebraic point of view, horizontal translations are slightly more complicated than vertical ones. Given y = f(x), if we define the transformed function y = h(x) = f(x-b), observe that + + h(x+b) = f( (x+b) - b ) = f(x) + . + This shows that for an input of x+b in h, the output of h is the same as the output of f that corresponds to an input of simply x. Hence, in Figure, the formula for h in terms of f is h(x) = f(x-2), since an input of x+2 in h will result in the same output as an input of x in f. For example, h(2) = f(0), which aligns with the graph of h being a shift of the graph of f to the right by 2 units. +

      + +

      + Again, it's instructive to see the effects of horizontal translation dynamically. +

      + +
      + Interactive horizontal translations demonstration (in the HTML version only). + + +

      Interactive horizontal translations demonstration (in the HTML version only).

      + +
      + + +

      + Move the slider by clicking and dragging on the red point to see how changing b affects the graph of y = f(x-b), which appears in blue. The graph of y = f(x) will appear in grey and remain fixed. +

      +
      +
      +
      + +

      + Overall, we have the following general principle. +

      + + + Horizontal Translation of a Function + transformation of a functionhorizontal translation +

      + Given a function y = f(x) and a real number b, the transformed function y = h(x) = f(x-b) is a horizontal translation of the graph of f. That is, every point (x,f(x)) on the graph of f gets shifted horizontally to the corresponding point (x+b,f(x)) on the graph of g. +

      +
      + +

      + We emphasize that in the horizontal translation h(x) = f(x-b), if b \gt 0 the graph of h lies b units to the right of f, while if b \lt 0, h lies b units to the left of f. +

      + + + +
      + + + Vertical stretches and reflections + +

      + So far, we have seen the possible effects of adding a constant value to function's output (that is, the new expression f(x)+a if given f(x)) and adding a constant value to function input (that is, the new expression f(x+b), given f(x)). Each of these actions results in a translation of the function's graph (either vertically or horizontally), but otherwise leaving the graph the same. Next, we investigate the effects of multiplication the function's output by a constant. +

      + + + +

      + Given the parent function y = f(x) pictured in Figure, what are the effects of the transformation y = v(x) = cf(x) for various values of c? +

      +
      + + +

      + We first investigate the effects of c = 2 and c = \frac{1}{2}. For v(x) = 2f(x), the algebraic impact of this transformation is that every output of f is multiplied by 2. This means that the only output that is unchanged is when f(x) = 0, while any other point on the graph of the original function f will be stretched vertically away from the x-axis by a factor of 2. We can see this in Figure where each point on the original dark blue graph is transformed to a corresponding point whose y-coordinate is twice as large, as partially indicated by the red arrows. +

      + + +
      + The parent function y = f(x) along with two different vertical stretches, v and u. +

      The parent function y = f(x) along with two different vertical stretches, v and u.

      +
      +
      +
      + The parent function y = f(x) along with a vertical reflection, z, and a corresponding stretch, w. +

      The parent function y = f(x) along with a vertical reflection, z, and a corresponding stretch, w.

      +
      +
      +
      + +

      + In contrast, the transformation u(x) = \frac{1}{2}f(x) is stretched vertically by a factor of \frac{1}{2}, which has the effect of compressing the graph of f towards the x-axis, as all function outputs of f are multiplied by \frac{1}{2}. For instance, the point (0,-2) on the graph of f is transformed to the graph of (0,-1) on the graph of u, and others are transformed as indicated by the purple arrows. +

      + +

      + To consider the situation where c \lt 0, we first consider the simplest case where c = -1 in the transformation z(x) = -f(x). Here the impact of the transformation is to multiply every output of the parent function f by -1; this takes any point of form (x,y) and transforms it to (x,-y), which means we are reflecting each point on the original function's graph across the x-axis to generate the resulting function's graph. This is demonstrated in Figure where y = z(x) is the reflection of y = f(x) across the x-axis. +

      + +

      + Finally, we also investigate the case where c = -2, which generates y = w(x) = -2f(x). Here we can think of -2 as -2 = 2(-1): the effect of multiplying by -1 first reflects the graph of f across the x-axis (resulting in z), and then multiplying by 2 stretches the graph of z vertically to result in w, as shown in Figure. +

      + +
      +
      + +

      + As with vertical and horizontal translation, it's particularly instructive to see the effects of vertical scaling in a dynamic way. +

      + +
      + Interactive vertical scaling demonstration (in the HTML version only). + + +

      Interactive vertical scaling demonstration (in the HTML version only).

      + +
      + + +

      + Move the slider by clicking and dragging on the red point to see how changing c affects the graph of y = cf(x), which is shown in blue. The graph of y = f(x) will appear in grey and remain fixed. +

      +
      +
      +
      + +

      + We summarize and generalize our observations from Example and Figure as follows. +

      + + + Vertical Scaling of a Function + transformation of a functionvertical scaling +

      + Given a function y = f(x) and a real number c \gt 0, the transformed function y = v(x) = cf(x) is a vertical stretch of the graph of f. Every point (x,f(x)) on the graph of f gets stretched vertically to the corresponding point (x,cf(x)) on the graph of v. If 0 \lt c \lt 1, the graph of v is a compression of f toward the x-axis; if c \gt 1, the graph of v is a stretch of f away from the x-axis. Points where f(x) = 0 are unchanged by the transformation. +

      + +

      + Given a function y = f(x) and a real number c \lt 0, the transformed function y = v(x) = cf(x) is a reflection of the graph of f across the x-axis followed by a vertical stretch by a factor of |c|. +

      +
      + + + +
      + + + Combining shifts and stretches: why order sometimes matters + +

      + In the final question of Activity, we considered the transformation y = m(x) = 2r(x+1)-1 of the original function r. There are three different basic transformations involved: a vertical shift of 1 unit down, a horizontal shift of 1 unit left, and a vertical stretch by a factor of 2. To understand the order in which these transformations are applied, it's essential to remember that a function is a process that converts inputs to outputs. +

      + +

      + By the algebraic rule for m, m(x) = 2r(x+1)-1. In words, this means that given an input x for m, we do the following processes in this particular order: + +

        +
      1. +

        + add 1 to x and then + apply the function r to the quantity x+1; +

        +
      2. +
      3. +

        + multiply the output of r(x+1) by 2; +

        +
      4. +
      5. +

        + subtract 1 from the output of 2r(x+1). +

        +
      6. +
      + + These three steps correspond to three basic transformations: (1) shift the graph of r to the left by 1 unit; (2) stretch the resulting graph vertically by a factor of 2; (3) shift the resulting graph vertically by -1 units. We can see the graphical impact of these algebraic steps by taking them one at a time. In Figure, we see the function p that results from a shift 1 unit left of the parent function in Figure. (Each time we take an additional step, we will de-emphasize the preceding function by having it appear in lighter color and dashed.) +

      + + +
      + The parent function y = r(x). + + + + +

      The parent function y = r(x).

      +
      +
      +
      + The parent function y = r(x) along with the horizontal shift y = s(x) = r(x+1). + + + + +

      The parent function y = r(x) along with the horizontal shift y = s(x) = r(x+1).

      +
      +
      +
      + +

      + Continuing, we now consider the function q(x) = 2s(x) = 2r(x+1), which results in a vertical stretch of s away from the x-axis by a factor of 2, as seen in Figure. +

      + + +
      + The function y = q(x) = 2s(x) = 2r(x+1) along with the graph of s. + + + + +

      The function y = q(x) = 2s(x) = 2r(x+1) along with the graph of s.

      +
      +
      +
      + The function y = m(x) = q(x)-1 = 2r(x+1) - 1 along with the graph of q. + + + + +

      The function y = m(x) = q(x)-1 = 2r(x+1) - 1 along with the graph of q.

      +
      +
      +
      + +

      + Finally, we arrive at y = m(x) = 2r(x+1) - 1 by subtracting 1 from q(x) = 2r(x+1); this of course is a vertical shift of -1 units, and produces the graph of m shown in Figure. We can also track the point (2,-1) on the original parent function: it first moves left 1 unit to (1,-1), then it is stretched vertically by a factor of 2 away from the x-axis to (1,-2), and lastly is shifted 1 unit down to the point (1,-3), which we see on the graph of m. +

      + +

      + While there are some transformations that can be executed in either order (such as a combination of a horizontal translation and a vertical translation, as seen in part (b) of Activity), in other situations order matters. For instance, in our preceding discussion, we have to apply the vertical stretch before applying the vertical shift. Algebraically, this is because + + 2r(x+1) - 1 \ne 2[r(x+1)-1] + . + The quantity 2r(x+1) - 1 multiplies the function r(x+1) by 2 first (the stretch) and then the vertical shift follows; the quantity 2[r(x+1) - 1] shifts the function r(x+1) down 1 unit first, and then executes a vertical stretch by a factor of 2. In the latter scenario, the point (1,-1) that lies on r(x+1) gets transformed first to (1,-2) and then to (1,-4), which is not the same as the point (1,-3) that lies on m(x) = 2r(x+1) - 1. +

      + + + +
      + + + Summary +

      +

        +
      • +

        + The graph of y = g(x) = af(x-b) + c is related to the graph of y = f(x) by a sequence of transformations. First, there is horizontal shift of |b| units to the right (b \gt 0) or left (b \lt 0). Next, there is a vertical stretch by a factor of |a| (along with a reflection across y = 0 in the case where a \lt 0). Finally, there's a vertical shift of c units. +

        +
      • +
      • +

        + A transformation of a given function f is a process by which the graph may be shifted or stretched to generate a new, related function with fundamentally the same shape. In this section we considered four different ways this can occur: through a horizontal translation (shift), through a reflection across the line y = 0 (the x-axis), through a vertical scaling (stretch) that multiplies every output of a function by the same constant, and through a vertical translation (shift). Each of these individual processes is itself a transformation, and they may be combined in various ways to create more complicated transformations. +

        +
      • +
      +

      +
      + + + + + +
      diff --git a/source/sec-circular-sine-cosine-wb.xml b/source/sec-circular-sine-cosine-wb.xml index c04e6f7a..b8b81d68 100755 --- a/source/sec-circular-sine-cosine-wb.xml +++ b/source/sec-circular-sine-cosine-wb.xml @@ -1,22 +1,22 @@ - - - - - - - - - - - - - -
      - The Sine and Cosine Functions - - - - - - -
      + + + + + + + + + + + + + +
      + The Sine and Cosine Functions + + + + + + +
      diff --git a/source/sec-circular-sine-cosine.xml b/source/sec-circular-sine-cosine.xml index a371f062..a0049b33 100755 --- a/source/sec-circular-sine-cosine.xml +++ b/source/sec-circular-sine-cosine.xml @@ -1,5 +1,5 @@ - + @@ -50,6 +50,7 @@

      + @@ -66,9 +67,9 @@

      Given a central angle in the unit circle that measures t radians and that intersects the circle at both (1,0) and (a,b), as shown in Figure, we define the sine of t, denoted \sin(t), by the rule - + \sin(t) = b - . + .

      @@ -172,9 +173,9 @@

      Given a central angle in the unit circle that measures t radians and that intersects the circle at both (1,0) and (a,b), as shown in Figure, we define the cosine of t, denoted \cos(t), by the rule - + \cos(t) = a - . + .

      @@ -256,13 +257,13 @@

      In particular, since the sine graph can be viewed as the cosine graph shifted \frac{\pi}{2} units to the right, it follows that for any value of t, - + \sin(t) = \cos(t-\frac{\pi}{2}) - . + . Similarly, since the cosine graph can be viewed as the sine graph shifted left, - + \cos(t) = \sin(t + \frac{\pi}{2}) - . + . Because each of the two preceding equations hold for every value of t, they are often referred to as identities.

      @@ -274,9 +275,9 @@ The Fundamental Trigonometric Identity

      For any real number t, - + \cos^2(t) + \sin^2(t) = 1 - . + .

      diff --git a/source/sec-circular-sinusoidal-wb.xml b/source/sec-circular-sinusoidal-wb.xml index 89e4c442..28bea93b 100755 --- a/source/sec-circular-sinusoidal-wb.xml +++ b/source/sec-circular-sinusoidal-wb.xml @@ -1,23 +1,23 @@ - - - - - - - - - - - - - -
      - Sinusoidal Functions - - - - - - - -
      + + + + + + + + + + + + + +
      + Sinusoidal Functions + + + + + + + +
      diff --git a/source/sec-circular-sinusoidal.xml b/source/sec-circular-sinusoidal.xml index e55806db..a2fc961c 100755 --- a/source/sec-circular-sinusoidal.xml +++ b/source/sec-circular-sinusoidal.xml @@ -1,234 +1,235 @@ - - - - - - - - - - - - - -
      - Sinusoidal Functions - -
        -
      • -

        - How do the three standard transformations (vertical translation, horizontal translation, and vertical scaling) affect the midline, amplitude, range, and period of sine and cosine curves? -

        -
      • -
      • -

        - What algebraic transformation results in horizontal stretching or scaling of a function? -

        -
      • -
      • -

        - How can we determine a formula involving sine or cosine that models any circular periodic function for which the midline, amplitude, period, and an anchor point are known? -

        -
      • -
      -
      - Introduction -

      - Recall our work in Section, where we studied how the graph of the function g defined by g(x) = af(x-b) + c is related to the graph of f, where a, b, and c are real numbers with a \ne 0. Because such transformations can shift and stretch a function, we are interested in understanding how we can use transformations of the sine and cosine functions to fit formulas to circular functions. -

      - - - -
      - - Shifts and vertical stretches of the sine and cosine functions -

      - We know that the standard functions f(t) = \sin(t) and g(t) = \cos(t) are circular functions that each have midline y = 0, amplitude a = 1, period p = 2\pi, and range [-1,1]. Our work in Preview Activity suggests the following general principles. -

      - - - Transformations of sine and cosine -

      - Given real numbers a, b, and c with a \ne 0, the functions - - k(t) = a\cos(t-b)+c \ \text{ and } \ h(t) = a\sin(t-b) + c - - each represent a horizontal shift by b units to the right, followed by a vertical stretch by |a| units (if a \lt 0, there is also a reflection across the x-axis), followed by a vertical shift of c units, applied to the parent function (\cos(t) or \sin(t), respectively). The resulting circular functions have midline y = c, amplitude |a|, range [c-|a|,c+|a|], and period p = 2\pi. In addition, the point (b,a+c) lies on the graph of k and the point (b,c) lies on the graph of h. -

      -
      - -

      - In Figure, we see how the overall transformation k(t) = a\cos(t-b)+c comes from executing a sequence of simpler ones. The original parent function y = \cos(t) (in dark gray) is first shifted b units right to generate the light red graph of y = \cos(t - b). In turn, that graph is then scaled vertically by a to generate the purple graph of y = a\cos(t-b). Finally, the purple graph is shifted c units vertically to result in the final graph of y = a\cos(t-b) + c in blue. -

      - -
      - A sequence of transformations of y = \cos(t). -

      A sequence of transformations of y = \cos(t).

      -
      -
      - -

      - It is often useful to follow one particular point through a sequence of transformations. In Figure, we see the red point that is located at (0,1) on the original function y = \cos(t), as well as the point (b, a+c) that is the corresponding point on k(t) = a\cos(t-b) + c under the overall transformation. Note that the point (b,a+c) results from the input, t = b, that makes the argument of the cosine function zero: k(b) = a\cos(b-b) + c = a\cos(0) + c. -

      - -

      - While the sine and cosine functions extend infinitely in either direction, it's natural to think of the point (0,1) as the starting point of the cosine function, and similarly the point (0,0) as the starting point of the sine function. We will refer to the corresponding point (b,a+c) on k(t) = a\cos(t-b) + c, and (b,c) on h(t) = a\sin(t-b) + c, respectively, as the anchor point. sinusoidal functionanchor point The anchor point, along with other information about a circular function's amplitude, midline, and period help us to determine a formula for a function that fits a given situation. -

      - -

      - For example, in Figure, the anchor point (b,a+c) on y = a\cos(t-b)+c corresponds to the starting point (0,1) on y = \cos(t). -

      - - - -
      - - - Horizontal scaling - -

      - There is one more very important transformation of a function that we've not yet explored. Given a function y = f(x), we want to understand the related function g(x) = f(kx), where k is a positive real number. The sine and cosine functions are ideal functions with which to explore these effects; moreover, this transformation is crucial for being able to use the sine and cosine functions to model phenomena that oscillate at different frequencies. -

      - -

      - In the interactive Figure, we can explore the effect of the transformation g(t) = f(kt), where f(t) = \sin(t). -

      - -
      - Interactive horizontal scaling demonstration (in the HTML version only). - - -

      Interactive horizontal scaling demonstration (in the HTML version only).

      - -
      - - -

      - Move the slider by clicking and dragging on the red point to see how changing k affects the graph of y = f(kt). The graph of y = f(t) will appear in grey and remain fixed. -

      -
      -
      -
      - -

      - By experimenting with the slider, we gain an intuitive sense for how the value of k affects the graph of h(t) = f(kt) in comparision to the graph of f(t). When k = 2, we see that the graph of h is oscillating twice as fast as the graph of f since h(t) = f(2t) completes two full cycles over an interval in which f completes one full cycle. In contrast, when k = \frac{1}{2}, the graph of h oscillates half as fast as the graph of f, as h(t) = f(\frac{1}{2}t) completes only half of one cycle over an interval where f(t) completes a full one. -

      - -

      - We can also understand this from the perspective of function composition. To evaluate h(t) = f(2t), at a given value of t, we first multiply the input t by a factor of 2, and then evaluate the function f at the result. An important observation is that - - h\left( \frac{1}{2}t \right) = f\left( 2 \cdot \frac{1}{2}t \right) = f(t) - . - This tells us that the point (\frac{1}{2}t, f(t)) lies on the graph of h since an input of \frac{1}{2}t in h results in the value f(t). At the same time, the point (t,f(t)) lies on the graph of f. Thus we see that the correlation between points on the graphs of f and h (where h(t) = f(2t)) is - - (t, f(t)) \rightarrow \left( \frac{1}{2}t, f(t) \right) - . - We can therefore think of the transformation h(t) = f(2t) as achieving the output values of f twice as fast as the original function f(t) does. Analogously, the transformation h(t) = f(\frac{1}{2}t) will achieve the output values of f only half as quickly as the original function. -

      - - - Horizontal scaling - horizontal scaling -

      - Given a function y = f(t) and a real number k \gt 0, the transformed function y = h(t) = f(kt) is a horizontal stretch of the graph of f. Every point (t,f(t)) on the graph of f gets stretched horizontally to the corresponding point (\frac{1}{k}t,f(t)) on the graph of h. If 0 \lt k \lt 1, the graph of h is a stretch of f away from the y-axis by a factor of \frac{1}{k}; if k \gt 1, the graph of h is a compression of f toward the y-axis by a factor of \frac{1}{k}. The only point on the graph of f that is unchanged by the transformation is (0,f(0)). -

      -
      - -

      - While we will soon focus on horizontal stretches of the sine and cosine functions for the remainder of this section, it's important to note that horizontal scaling follows the same principles for any function we choose. -

      - - - -
      - - - Circular functions with different periods -

      - Because the circumference of the unit circle is 2\pi, the sine and cosine functions each have period 2\pi. Of course, as we think about using transformations of the sine and cosine functions to model different phenomena, it is apparent that we will need to generate functions with different periods than 2\pi. For instance, if a ferris wheel makes one revolution every 5 minutes, we'd want the period of the function that models the height of one car as a function of time to be P = 5. Horizontal scaling of functions enables us to generate circular functions with any period we desire. -

      - -

      - We begin by considering two basic examples. First, let f(t) = \sin(t) and g(t) = f(2t) = \sin(2t). We know from our most recent work that this transformation results in a horizontal compression of the graph of \sin(t) by a factor of \frac{1}{2} toward the y-axis. If we plot the two functions on the same axes as seen in Figure, it becomes apparent how this transformation affects the period of f. -

      - -
      - A plot of the parent function, f(t) = \sin(t) (dashed, in gray), and the transformed function g(t) = f(2t) = \sin(2t) (in blue). -

      A plot of the parent function, f(t) = \sin(t) (dashed, in gray), and the transformed function g(t) = f(2t) = \sin(2t) (in blue).

      -
      -
      - -

      - From the graph, we see that g(t) = \sin(2t) oscillates twice as frequently as f(t) = \sin(t), and that g completes a full cycle on the interval [0,\pi], which is half the length of the period of f. Thus, the 2 in f(2t) causes the period of f to be \frac{1}{2} as long; specifially, the period of g is P = \frac{1}{2} (2\pi) = \pi. -

      - -
      - A plot of the parent function, f(t) = \sin(t) (dashed, in gray), and the transformed function h(t) = f(\frac{1}{2}t) = \sin(\frac{1}{2}t) (in blue). -

      A plot of the parent function, f(t) = \sin(t) (dashed, in gray), and the transformed function h(t) = f(\frac{1}{2}t) = \sin(\frac{1}{2}t) (in blue).

      -
      -
      - -

      - On the other hand, if we let h(t) = f(\frac{1}{2}t) = \sin(\frac{1}{2}t), the transformed graph h is stretched away from the y-axis by a factor of 2. This has the effect of doubling the period of f, so that the period of h is P = 2 \cdot 2\pi = 4\pi, as seen in Figure. -

      - -

      - Our observations generalize for any positive constant k \gt 0. In the case where k = 2, we saw that the period of g(t) = \sin(2t) is P = \frac{1}{2} \cdot 2\pi, whereas in the case where k = \frac{1}{2}, the period of h(t) = \sin(\frac{1}{2}t) is P = 2 \cdot 2\pi = \frac{1}{\frac{1}{2}} \cdot 2\pi. Identical reasoning holds if we are instead working with the cosine function. In general, we can say the following. -

      - - - The period of a circular function -

      - For any constant k \gt 0, the period of the functions \sin(kt) and \cos(kt) is - - P = \frac{2\pi}{k} - . -

      -
      - -

      - Thus, if we know the k-value from the given function, we can deduce the period. If instead we know the desired period, we can determine k by the rule k = \frac{2\pi}{P}. -

      - - - - - -
      - - - Summary -

      -

        -
      • -

        - Given real numbers a, b, and c with a \ne 0, the functions - - k(t) = a\cos(t-b)+c \text{ and } h(t) = a\sin(t-b) + c - - each represent a horizontal shift by b units to the right, followed by a vertical stretch by |a| units (with a reflection across the x-axis if a \lt 0), followed by a vertical shift of c units, applied to the parent function (\cos(t) or \sin(t), respectively). The resulting circular functions have midline y = c, amplitude |a|, range [c-|a|,c+|a|], and period p = 2\pi. In addition, the anchor point (b,a+c) lies on the graph of k and the anchor point (b,c) lies on the graph of h. -

        -
      • -
      • -

        - Given a function f and a constant k \gt 0, the algebraic transformation h(t) = f(kt) results in horizontal scaling of f by a factor of \frac{1}{k}. In particular, when k \gt 1, the graph of f is compressed toward the y-axis by a factor of \frac{1}{k} to create the graph of h, while when 0 \lt k \lt 1, the graph of f is stretched away from the y-axis by a factor of \frac{1}{k} to create the graph of h. -

        -
      • -
      • -

        - Given any circular periodic function for which the midline, amplitude, period, and an anchor point are known, we can find a corresponding formula for the function of the form - - k(t) = a\cos(k(t-b))+c \text{ or } h(t) = a\sin(k(t-b)) + c - . - Each of these functions has midline y = c, amplitude |a|, and period P = \frac{2\pi}{k}. The point (b,a+c) lies on k and the point (b,c) lies on h. -

        -
      • -
      -

      -
      - - - - - -
      + + + + + + + + + + + + + +
      + Sinusoidal Functions + +
        +
      • +

        + How do the three standard transformations (vertical translation, horizontal translation, and vertical scaling) affect the midline, amplitude, range, and period of sine and cosine curves? +

        +
      • +
      • +

        + What algebraic transformation results in horizontal stretching or scaling of a function? +

        +
      • +
      • +

        + How can we determine a formula involving sine or cosine that models any circular periodic function for which the midline, amplitude, period, and an anchor point are known? +

        +
      • +
      +
      + Introduction +

      + Recall our work in Section, where we studied how the graph of the function g defined by g(x) = af(x-b) + c is related to the graph of f, where a, b, and c are real numbers with a \ne 0. Because such transformations can shift and stretch a function, we are interested in understanding how we can use transformations of the sine and cosine functions to fit formulas to circular functions. +

      + + + + +
      + + Shifts and vertical stretches of the sine and cosine functions +

      + We know that the standard functions f(t) = \sin(t) and g(t) = \cos(t) are circular functions that each have midline y = 0, amplitude a = 1, period p = 2\pi, and range [-1,1]. Our work in Preview Activity suggests the following general principles. +

      + + + Transformations of sine and cosine +

      + Given real numbers a, b, and c with a \ne 0, the functions + + k(t) = a\cos(t-b)+c \ \text{ and } \ h(t) = a\sin(t-b) + c + + each represent a horizontal shift by b units to the right, followed by a vertical stretch by |a| units (if a \lt 0, there is also a reflection across the x-axis), followed by a vertical shift of c units, applied to the parent function (\cos(t) or \sin(t), respectively). The resulting circular functions have midline y = c, amplitude |a|, range [c-|a|,c+|a|], and period p = 2\pi. In addition, the point (b,a+c) lies on the graph of k and the point (b,c) lies on the graph of h. +

      +
      + +

      + In Figure, we see how the overall transformation k(t) = a\cos(t-b)+c comes from executing a sequence of simpler ones. The original parent function y = \cos(t) (in dark gray) is first shifted b units right to generate the light red graph of y = \cos(t - b). In turn, that graph is then scaled vertically by a to generate the purple graph of y = a\cos(t-b). Finally, the purple graph is shifted c units vertically to result in the final graph of y = a\cos(t-b) + c in blue. +

      + +
      + A sequence of transformations of y = \cos(t). +

      A sequence of transformations of y = \cos(t).

      +
      +
      + +

      + It is often useful to follow one particular point through a sequence of transformations. In Figure, we see the red point that is located at (0,1) on the original function y = \cos(t), as well as the point (b, a+c) that is the corresponding point on k(t) = a\cos(t-b) + c under the overall transformation. Note that the point (b,a+c) results from the input, t = b, that makes the argument of the cosine function zero: k(b) = a\cos(b-b) + c = a\cos(0) + c. +

      + +

      + While the sine and cosine functions extend infinitely in either direction, it's natural to think of the point (0,1) as the starting point of the cosine function, and similarly the point (0,0) as the starting point of the sine function. We will refer to the corresponding point (b,a+c) on k(t) = a\cos(t-b) + c, and (b,c) on h(t) = a\sin(t-b) + c, respectively, as the anchor point. sinusoidal functionanchor point The anchor point, along with other information about a circular function's amplitude, midline, and period help us to determine a formula for a function that fits a given situation. +

      + +

      + For example, in Figure, the anchor point (b,a+c) on y = a\cos(t-b)+c corresponds to the starting point (0,1) on y = \cos(t). +

      + + + +
      + + + Horizontal scaling + +

      + There is one more very important transformation of a function that we've not yet explored. Given a function y = f(x), we want to understand the related function g(x) = f(kx), where k is a positive real number. The sine and cosine functions are ideal functions with which to explore these effects; moreover, this transformation is crucial for being able to use the sine and cosine functions to model phenomena that oscillate at different frequencies. +

      + +

      + In the interactive Figure, we can explore the effect of the transformation g(t) = f(kt), where f(t) = \sin(t). +

      + +
      + Interactive horizontal scaling demonstration (in the HTML version only). + + +

      Interactive horizontal scaling demonstration (in the HTML version only).

      + +
      + + +

      + Move the slider by clicking and dragging on the red point to see how changing k affects the graph of y = f(kt). The graph of y = f(t) will appear in grey and remain fixed. +

      +
      +
      +
      + +

      + By experimenting with the slider, we gain an intuitive sense for how the value of k affects the graph of h(t) = f(kt) in comparision to the graph of f(t). When k = 2, we see that the graph of h is oscillating twice as fast as the graph of f since h(t) = f(2t) completes two full cycles over an interval in which f completes one full cycle. In contrast, when k = \frac{1}{2}, the graph of h oscillates half as fast as the graph of f, as h(t) = f(\frac{1}{2}t) completes only half of one cycle over an interval where f(t) completes a full one. +

      + +

      + We can also understand this from the perspective of function composition. To evaluate h(t) = f(2t), at a given value of t, we first multiply the input t by a factor of 2, and then evaluate the function f at the result. An important observation is that + + h\left( \frac{1}{2}t \right) = f\left( 2 \cdot \frac{1}{2}t \right) = f(t) + . + This tells us that the point (\frac{1}{2}t, f(t)) lies on the graph of h since an input of \frac{1}{2}t in h results in the value f(t). At the same time, the point (t,f(t)) lies on the graph of f. Thus we see that the correlation between points on the graphs of f and h (where h(t) = f(2t)) is + + (t, f(t)) \rightarrow \left( \frac{1}{2}t, f(t) \right) + . + We can therefore think of the transformation h(t) = f(2t) as achieving the output values of f twice as fast as the original function f(t) does. Analogously, the transformation h(t) = f(\frac{1}{2}t) will achieve the output values of f only half as quickly as the original function. +

      + + + Horizontal scaling + horizontal scaling +

      + Given a function y = f(t) and a real number k \gt 0, the transformed function y = h(t) = f(kt) is a horizontal stretch of the graph of f. Every point (t,f(t)) on the graph of f gets stretched horizontally to the corresponding point (\frac{1}{k}t,f(t)) on the graph of h. If 0 \lt k \lt 1, the graph of h is a stretch of f away from the y-axis by a factor of \frac{1}{k}; if k \gt 1, the graph of h is a compression of f toward the y-axis by a factor of \frac{1}{k}. The only point on the graph of f that is unchanged by the transformation is (0,f(0)). +

      +
      + +

      + While we will soon focus on horizontal stretches of the sine and cosine functions for the remainder of this section, it's important to note that horizontal scaling follows the same principles for any function we choose. +

      + + + +
      + + + Circular functions with different periods +

      + Because the circumference of the unit circle is 2\pi, the sine and cosine functions each have period 2\pi. Of course, as we think about using transformations of the sine and cosine functions to model different phenomena, it is apparent that we will need to generate functions with different periods than 2\pi. For instance, if a ferris wheel makes one revolution every 5 minutes, we'd want the period of the function that models the height of one car as a function of time to be P = 5. Horizontal scaling of functions enables us to generate circular functions with any period we desire. +

      + +

      + We begin by considering two basic examples. First, let f(t) = \sin(t) and g(t) = f(2t) = \sin(2t). We know from our most recent work that this transformation results in a horizontal compression of the graph of \sin(t) by a factor of \frac{1}{2} toward the y-axis. If we plot the two functions on the same axes as seen in Figure, it becomes apparent how this transformation affects the period of f. +

      + +
      + A plot of the parent function, f(t) = \sin(t) (dashed, in gray), and the transformed function g(t) = f(2t) = \sin(2t) (in blue). +

      A plot of the parent function, f(t) = \sin(t) (dashed, in gray), and the transformed function g(t) = f(2t) = \sin(2t) (in blue).

      +
      +
      + +

      + From the graph, we see that g(t) = \sin(2t) oscillates twice as frequently as f(t) = \sin(t), and that g completes a full cycle on the interval [0,\pi], which is half the length of the period of f. Thus, the 2 in f(2t) causes the period of f to be \frac{1}{2} as long; specifially, the period of g is P = \frac{1}{2} (2\pi) = \pi. +

      + +
      + A plot of the parent function, f(t) = \sin(t) (dashed, in gray), and the transformed function h(t) = f(\frac{1}{2}t) = \sin(\frac{1}{2}t) (in blue). +

      A plot of the parent function, f(t) = \sin(t) (dashed, in gray), and the transformed function h(t) = f(\frac{1}{2}t) = \sin(\frac{1}{2}t) (in blue).

      +
      +
      + +

      + On the other hand, if we let h(t) = f(\frac{1}{2}t) = \sin(\frac{1}{2}t), the transformed graph h is stretched away from the y-axis by a factor of 2. This has the effect of doubling the period of f, so that the period of h is P = 2 \cdot 2\pi = 4\pi, as seen in Figure. +

      + +

      + Our observations generalize for any positive constant k \gt 0. In the case where k = 2, we saw that the period of g(t) = \sin(2t) is P = \frac{1}{2} \cdot 2\pi, whereas in the case where k = \frac{1}{2}, the period of h(t) = \sin(\frac{1}{2}t) is P = 2 \cdot 2\pi = \frac{1}{\frac{1}{2}} \cdot 2\pi. Identical reasoning holds if we are instead working with the cosine function. In general, we can say the following. +

      + + + The period of a circular function +

      + For any constant k \gt 0, the period of the functions \sin(kt) and \cos(kt) is + + P = \frac{2\pi}{k} + . +

      +
      + +

      + Thus, if we know the k-value from the given function, we can deduce the period. If instead we know the desired period, we can determine k by the rule k = \frac{2\pi}{P}. +

      + + + + + +
      + + + Summary +

      +

        +
      • +

        + Given real numbers a, b, and c with a \ne 0, the functions + + k(t) = a\cos(t-b)+c \text{ and } h(t) = a\sin(t-b) + c + + each represent a horizontal shift by b units to the right, followed by a vertical stretch by |a| units (with a reflection across the x-axis if a \lt 0), followed by a vertical shift of c units, applied to the parent function (\cos(t) or \sin(t), respectively). The resulting circular functions have midline y = c, amplitude |a|, range [c-|a|,c+|a|], and period p = 2\pi. In addition, the anchor point (b,a+c) lies on the graph of k and the anchor point (b,c) lies on the graph of h. +

        +
      • +
      • +

        + Given a function f and a constant k \gt 0, the algebraic transformation h(t) = f(kt) results in horizontal scaling of f by a factor of \frac{1}{k}. In particular, when k \gt 1, the graph of f is compressed toward the y-axis by a factor of \frac{1}{k} to create the graph of h, while when 0 \lt k \lt 1, the graph of f is stretched away from the y-axis by a factor of \frac{1}{k} to create the graph of h. +

        +
      • +
      • +

        + Given any circular periodic function for which the midline, amplitude, period, and an anchor point are known, we can find a corresponding formula for the function of the form + + k(t) = a\cos(k(t-b))+c \text{ or } h(t) = a\sin(k(t-b)) + c + . + Each of these functions has midline y = c, amplitude |a|, and period P = \frac{2\pi}{k}. The point (b,a+c) lies on k and the point (b,c) lies on h. +

        +
      • +
      +

      +
      + + + + + +
      diff --git a/source/sec-circular-traversing-wb.xml b/source/sec-circular-traversing-wb.xml index 6625ff6b..96eb8740 100755 --- a/source/sec-circular-traversing-wb.xml +++ b/source/sec-circular-traversing-wb.xml @@ -1,22 +1,22 @@ - - - - - - - - - - - - - -
      - Traversing Circles - - - - - - -
      + + + + + + + + + + + + + +
      + Traversing Circles + + + + + + +
      diff --git a/source/sec-circular-traversing.xml b/source/sec-circular-traversing.xml index a28965ca..f49a746f 100755 --- a/source/sec-circular-traversing.xml +++ b/source/sec-circular-traversing.xml @@ -1,5 +1,5 @@ - + @@ -52,6 +52,7 @@

      + @@ -253,17 +254,17 @@

      Remembering that h is a function of distance traversed along the circle, it follows that the average rate of change of h on any interval of distance between two points P and Q on the circle is given by - + AV_{[P,Q]} = \frac{\text{change in height}}{\text{distance along the circle}} - , + , where both quantities are measured from point P to point Q.

      First, in Figure, we consider points P, Q, and R where Q results from traversing 1/8 of the circumference from P, and R 1/8 of the circumference from Q. In particular, we note that the distance d_1 along the circle from P to Q is the same as the distance d_2 along the circle from Q to R, and thus d_1 = d_2. At the same time, it is apparent from the geometry of the circle that the change in height h_1 from P to Q is greater than the change in height h_2 from Q to R, so h_1 \gt h_2. Thus, we can say that - + AV_{[P,Q]} = \frac{h_1}{d_1} \gt \frac{h_2}{d_2} = AV_{[Q,R]} - . + .

      @@ -281,9 +282,9 @@

      The differences in certain average rates of change appear to become more extreme if we consider shorter arcs along the circle. Next we consider traveling 1/20 of the circumference along the circle. In Figure, points P and Q lie 1/20 of the circumference apart, as do R and S, so here d_1 = d_5. In this situation, it is the case that h_1 \gt h_5 for the same reasons as above, but we can say even more. From the green triangle in Figure, we see that h_1 \approx d_1 (while h_1 \lt d_1), so that AV_{[P,Q]} = \frac{h_1}{d_1} \approx 1. At the same time, in the magenta triangle in the figure we see that h_5 is very small, especially in comparison to d_5, and thus AV_{[R,S]} = \frac{h_5}{d_5} \approx 0. Hence, in Figure, - + AV_{[P,Q]} \approx 1 \text{ and } AV_{[R,S]} \approx 0 - . + . This information tells us that a circular function appears to change most rapidly for points near its midline and to change least rapidly for points near its highest and lowest values.

      diff --git a/source/sec-circular-unit-circle-wb.xml b/source/sec-circular-unit-circle-wb.xml index a0d0295f..70079ff1 100755 --- a/source/sec-circular-unit-circle-wb.xml +++ b/source/sec-circular-unit-circle-wb.xml @@ -1,22 +1,22 @@ - - - - - - - - - - - - - -
      - The Unit Circle - - - - - - -
      + + + + + + + + + + + + + +
      + The Unit Circle + + + + + + +
      diff --git a/source/sec-circular-unit-circle.xml b/source/sec-circular-unit-circle.xml index c85c0dac..ecebd9c1 100755 --- a/source/sec-circular-unit-circle.xml +++ b/source/sec-circular-unit-circle.xml @@ -1,200 +1,201 @@ - - - - - - - - - - - - - -
      - The Unit Circle - -
        -
      • -

        - What is the radian measure of an angle? -

        -
      • -
      • -

        - Are there natural special points on the unit circle whose coordinates we can identify exactly? -

        -
      • -
      • -

        - How can we determine arc length and the location of special points in circles other than the unit circle? -

        -
      • -
      -
      - Introduction -

      - As demonstrated by several different examples in Section, certain periodic phenomena are closely linked to circles and circular motion. Rather than regularly work with circles of different center and radius, it turns out to be ideal to work with one standard circle and build all circular functions from it. The unit circle unit circleis the circle of radius 1 that is centered at the origin, (0,0). -

      - -

      - If we pick any point (x,y) that lies on the unit circle, the point is associated with a right triangle whose horizontal leg has length |x| and whose vertical leg has length |y|, as seen in Figure. By the Pythagorean Theorem, it follows that - - x^2 + y^2 = 1 - , - and this is the equation of the unit circle: a point (x,y) lies on the unit circle if and only if x^2 + y^2 = 1. -

      - - -
      - Coordinates of a point on the unit circle. -

      Coordinates of a point on the unit circle.

      -
      -
      -
      - A point traversing the unit circle. -

      A point traversing the unit circle.

      -
      -
      -
      - -

      - To study the circular functions generated by the unit circle, we will also animate a point and let it traverse the circle. Starting at (1,0) indicated by t_0 in Figure, we see a sequence of points that result from traveling a distance along the circle that is 1/24 the circumference of the unit circle. Since the unit circle's circumference is C = 2\pi r = 2\pi, it follows that the distance from t_0 to t_1 is - - d = \frac{1}{24} \cdot 2\pi = \frac{\pi}{12} - . - As we work to better understand the unit circle, we will commonly use fractional multiples of \pi as these result in natural distances traveled along the unit circle. -

      - - - -
      - - - Radians and degrees -

      - In Preview Activity, we introduced the idea of radian measure of an angle. Here we state the formal definition of this term. -

      - - - radian measuredefinition of - -

      - An angle whose vertex is at the center of a circleWe often call such an angle a central angle. measures 1 radian provided that the arc the angle intercepts on the circle equals the radius of the circle. -

      -
      -
      - -

      - As seen in , in the unit circle this means that a central angle has measure 1 radian whenever it intercepts an arc of length 1 unit along the circumference. Because of this important correspondence between the unit circle and radian measure (one unit of arc length on the unit circle corresponds to 1 radian), we focus our discussion of radian measure within the unit circle. -

      - -

      - Since there are 2\pi units of length along the unit circle's circumference it follows there are \frac{1}{4} \cdot 2\pi = \frac{\pi}{2} units of length in \frac{1}{4} of a revolution. We also know that \frac{1}{4} of a revolution corresponds to a central angle that is a right angle, whose familiar degree measure is 90^\circ. If we extend to a central angle that intercepts half the circle, we see similarly that \pi radians corresponds to 180^\circ; this relationship enables us to convert angle measures from radians to degrees and vice versa. -

      - - - Converting between radians and degrees -

      - An angle whose radian measure is 1 radian has degree measure \frac{180}{\pi} ^\circ. An angle whose degree measure is 1^\circ has radian measure \frac{\pi}{180}. -

      -
      - - - -

      - Note that in , we labeled 24 equally spaced points with their respective distances around the unit circle counterclockwise from (1,0). Because these distances are on the unit circle, they also correspond to the radian measure of the central angles that intercept them. In particular, each central angle with one of its sides on the positive x-axis generates a unique point on the unit circle, and with it, an associated length intercepted along the circumference of the circle. A good exercise at this point is to return to and label each of the noted points with the degree measure that is intercepted by a central angle with one side on the positive x-axis, in addition to the arc lengths (radian measures) already identified. -

      - -
      - - - Special points on the unit circle - -

      - Our in-depth study of the unit circle is motivated by our desire to better understand the behavior of circular functions. Recall that as we traverse a circle, the height of the point moving along the circle generates a function that depends on distance traveled along the circle. Wherever possible, we'd like to be able to identify the exact height of a given point on the unit circle. Two special right triangles enable us to locate exactly an important collection of points on the unit circle. -

      - - - -

      - Our work in Activity enables us to identify exactly the location of 12 special points on the unit circle. In part (d) of the activity, we located the three noted points in Figure along with their respective radian measures. By symmetry across the coordinate axes and thinking about the signs of coordinates in the other three quadrants, we can now identify all of the coordinates of the remaining 9 points. -

      - -
      - The unit circle with 16 special points whose location we can determine exactly. -

      The unit circle with 16 special points whose location we can determine exactly.

      -
      -
      - -

      - In addition, we note that there are four additional points on the circle that we can locate exactly: the four points that correspond to angle measures of 0, \frac{\pi}{2}, \pi, and \frac{3\pi}{2} radians, which lie where the coordinate axes intersect the circle. Each such point has 0 for one coordinate and \pm 1 for the other. Labeling all of the remaining points in Figure is an important exercise that you should do on your own. -

      - -

      - Finally, we note that we can identify any point on the unit circle exactly simply by choosing one of its coordinates. Since every point (x,y) on the unit circle satisfies the equation x^2 + y^2 = 1, if we know the value of x or y and the quadrant in which the point lies, we can determine the other coordinate exactly. -

      - -
      - - - Special points and arc length in non-unit circles - -

      - All of our work with the unit circle can be extended to circles centered at the origin with different radii, since a circle with a larger or smaller radius is a scaled version of the unit circle. For instance, if we instead consider a circle of radius 7, the coordinates of every point on the unit circle are magnified by a factor of 7, so the point that corresponds to an angle such as \theta = \frac{2\pi}{3} has coordinates \left( -\frac{7}{2}, \frac{7\sqrt{3}}{2} \right). Distance along the circle is magnified by the same factor: the arc length along the unit circle from (0,0) to \left( -\frac{7}{2}, \frac{7\sqrt{3}}{2} \right) is 7 \cdot \frac{2\pi}{3}, since the arc length along the unit circle for this angle is \frac{2\pi}{3}. -

      - -

      - If we think more generally about a circle of radius r with a central angle \theta that intercepts an arc of length s, we see how the magnification factor r (in comparison to the unit circle) connects arc length and the central angle according to the following principle. -

      - - - Connecting arc length and angles in non-unit circles -

      - If a central angle measuring \theta radians intercepts an arc of length s in a circle of radius r, then - - s = r \theta - . -

      - -

      - In the unit circle, where r = 1, the equation s = r\theta demonstrates the familiar fact that arc length matches the radian measure of the central angle. Moreover, we also see how this formula aligns with the definition of radian measure: if the arc length and radius are equal, then the angle measures 1 radian. -

      -
      - - - -
      - - - Summary -

      -

        -
      • -

        - The radian measure of an angle connects the measure of a central angle in a circle to the radius of the circle. A central angle has radian measure 1 provided that it intercepts an arc of length equal to the circle's radius. In the unit circle, a central angle's radian measure is precisely the same numerical value as the length of the arc it intercepts along the circle. -

        -
      • -
      • -

        - If we begin at the point (1,0) and move counterclockwise along the unit circle, there are natural special points on the unit circle that correspond to angles of measure 30^\circ, 45^\circ, 60^\circ, and their multiples. We can count in 30^\circ increments and identify special points that correspond to angles of measure 30^\circ, 60^\circ, 90^\circ, 120^\circ, and so on; doing likewise with 45^\circ, these correspond to angles of 45^\circ, 90^\circ, 135^\circ, etc. In radian measure, these sequences together give us the important angles \frac{\pi}{6}, \frac{\pi}{4}, \frac{\pi}{3}, \frac{\pi}{2}, \frac{2\pi}{3}, \frac{3\pi}{4}, and so on. Together with our work involving 45^\circ-45^\circ-90^\circ and 30^\circ-60^\circ-90^\circ triangles in Activity, we are able to identify the exact locations of all of the points in Figure. -

        -
      • -
      • -

        - In any circle of radius r, if a central angle of measure \theta radians intercepts an arc of length s, then it follows that - - s = r\theta - . - This shows that arc length, s, is magnified along with the size of the radius, r, of the circle. -

        -
      • -
      -

      -
      - - - - - -
      + + + + + + + + + + + + + +
      + The Unit Circle + +
        +
      • +

        + What is the radian measure of an angle? +

        +
      • +
      • +

        + Are there natural special points on the unit circle whose coordinates we can identify exactly? +

        +
      • +
      • +

        + How can we determine arc length and the location of special points in circles other than the unit circle? +

        +
      • +
      +
      + Introduction +

      + As demonstrated by several different examples in Section, certain periodic phenomena are closely linked to circles and circular motion. Rather than regularly work with circles of different center and radius, it turns out to be ideal to work with one standard circle and build all circular functions from it. The unit circle unit circleis the circle of radius 1 that is centered at the origin, (0,0). +

      + +

      + If we pick any point (x,y) that lies on the unit circle, the point is associated with a right triangle whose horizontal leg has length |x| and whose vertical leg has length |y|, as seen in Figure. By the Pythagorean Theorem, it follows that + + x^2 + y^2 = 1 + , + and this is the equation of the unit circle: a point (x,y) lies on the unit circle if and only if x^2 + y^2 = 1. +

      + + +
      + Coordinates of a point on the unit circle. +

      Coordinates of a point on the unit circle.

      +
      +
      +
      + A point traversing the unit circle. +

      A point traversing the unit circle.

      +
      +
      +
      + +

      + To study the circular functions generated by the unit circle, we will also animate a point and let it traverse the circle. Starting at (1,0) indicated by t_0 in Figure, we see a sequence of points that result from traveling a distance along the circle that is 1/24 the circumference of the unit circle. Since the unit circle's circumference is C = 2\pi r = 2\pi, it follows that the distance from t_0 to t_1 is + + d = \frac{1}{24} \cdot 2\pi = \frac{\pi}{12} + . + As we work to better understand the unit circle, we will commonly use fractional multiples of \pi as these result in natural distances traveled along the unit circle. +

      + + + + +
      + + + Radians and degrees +

      + In Preview Activity, we introduced the idea of radian measure of an angle. Here we state the formal definition of this term. +

      + + + radian measuredefinition of + +

      + An angle whose vertex is at the center of a circleWe often call such an angle a central angle. measures 1 radian provided that the arc the angle intercepts on the circle equals the radius of the circle. +

      +
      +
      + +

      + As seen in , in the unit circle this means that a central angle has measure 1 radian whenever it intercepts an arc of length 1 unit along the circumference. Because of this important correspondence between the unit circle and radian measure (one unit of arc length on the unit circle corresponds to 1 radian), we focus our discussion of radian measure within the unit circle. +

      + +

      + Since there are 2\pi units of length along the unit circle's circumference it follows there are \frac{1}{4} \cdot 2\pi = \frac{\pi}{2} units of length in \frac{1}{4} of a revolution. We also know that \frac{1}{4} of a revolution corresponds to a central angle that is a right angle, whose familiar degree measure is 90^\circ. If we extend to a central angle that intercepts half the circle, we see similarly that \pi radians corresponds to 180^\circ; this relationship enables us to convert angle measures from radians to degrees and vice versa. +

      + + + Converting between radians and degrees +

      + An angle whose radian measure is 1 radian has degree measure \frac{180}{\pi} ^\circ. An angle whose degree measure is 1^\circ has radian measure \frac{\pi}{180}. +

      +
      + + + +

      + Note that in , we labeled 24 equally spaced points with their respective distances around the unit circle counterclockwise from (1,0). Because these distances are on the unit circle, they also correspond to the radian measure of the central angles that intercept them. In particular, each central angle with one of its sides on the positive x-axis generates a unique point on the unit circle, and with it, an associated length intercepted along the circumference of the circle. A good exercise at this point is to return to and label each of the noted points with the degree measure that is intercepted by a central angle with one side on the positive x-axis, in addition to the arc lengths (radian measures) already identified. +

      + +
      + + + Special points on the unit circle + +

      + Our in-depth study of the unit circle is motivated by our desire to better understand the behavior of circular functions. Recall that as we traverse a circle, the height of the point moving along the circle generates a function that depends on distance traveled along the circle. Wherever possible, we'd like to be able to identify the exact height of a given point on the unit circle. Two special right triangles enable us to locate exactly an important collection of points on the unit circle. +

      + + + +

      + Our work in Activity enables us to identify exactly the location of 12 special points on the unit circle. In part (d) of the activity, we located the three noted points in Figure along with their respective radian measures. By symmetry across the coordinate axes and thinking about the signs of coordinates in the other three quadrants, we can now identify all of the coordinates of the remaining 9 points. +

      + +
      + The unit circle with 16 special points whose location we can determine exactly. +

      The unit circle with 16 special points whose location we can determine exactly.

      +
      +
      + +

      + In addition, we note that there are four additional points on the circle that we can locate exactly: the four points that correspond to angle measures of 0, \frac{\pi}{2}, \pi, and \frac{3\pi}{2} radians, which lie where the coordinate axes intersect the circle. Each such point has 0 for one coordinate and \pm 1 for the other. Labeling all of the remaining points in Figure is an important exercise that you should do on your own. +

      + +

      + Finally, we note that we can identify any point on the unit circle exactly simply by choosing one of its coordinates. Since every point (x,y) on the unit circle satisfies the equation x^2 + y^2 = 1, if we know the value of x or y and the quadrant in which the point lies, we can determine the other coordinate exactly. +

      + +
      + + + Special points and arc length in non-unit circles + +

      + All of our work with the unit circle can be extended to circles centered at the origin with different radii, since a circle with a larger or smaller radius is a scaled version of the unit circle. For instance, if we instead consider a circle of radius 7, the coordinates of every point on the unit circle are magnified by a factor of 7, so the point that corresponds to an angle such as \theta = \frac{2\pi}{3} has coordinates \left( -\frac{7}{2}, \frac{7\sqrt{3}}{2} \right). Distance along the circle is magnified by the same factor: the arc length along the unit circle from (0,0) to \left( -\frac{7}{2}, \frac{7\sqrt{3}}{2} \right) is 7 \cdot \frac{2\pi}{3}, since the arc length along the unit circle for this angle is \frac{2\pi}{3}. +

      + +

      + If we think more generally about a circle of radius r with a central angle \theta that intercepts an arc of length s, we see how the magnification factor r (in comparison to the unit circle) connects arc length and the central angle according to the following principle. +

      + + + Connecting arc length and angles in non-unit circles +

      + If a central angle measuring \theta radians intercepts an arc of length s in a circle of radius r, then + + s = r \theta + . +

      + +

      + In the unit circle, where r = 1, the equation s = r\theta demonstrates the familiar fact that arc length matches the radian measure of the central angle. Moreover, we also see how this formula aligns with the definition of radian measure: if the arc length and radius are equal, then the angle measures 1 radian. +

      +
      + + + +
      + + + Summary +

      +

        +
      • +

        + The radian measure of an angle connects the measure of a central angle in a circle to the radius of the circle. A central angle has radian measure 1 provided that it intercepts an arc of length equal to the circle's radius. In the unit circle, a central angle's radian measure is precisely the same numerical value as the length of the arc it intercepts along the circle. +

        +
      • +
      • +

        + If we begin at the point (1,0) and move counterclockwise along the unit circle, there are natural special points on the unit circle that correspond to angles of measure 30^\circ, 45^\circ, 60^\circ, and their multiples. We can count in 30^\circ increments and identify special points that correspond to angles of measure 30^\circ, 60^\circ, 90^\circ, 120^\circ, and so on; doing likewise with 45^\circ, these correspond to angles of 45^\circ, 90^\circ, 135^\circ, etc. In radian measure, these sequences together give us the important angles \frac{\pi}{6}, \frac{\pi}{4}, \frac{\pi}{3}, \frac{\pi}{2}, \frac{2\pi}{3}, \frac{3\pi}{4}, and so on. Together with our work involving 45^\circ-45^\circ-90^\circ and 30^\circ-60^\circ-90^\circ triangles in Activity, we are able to identify the exact locations of all of the points in Figure. +

        +
      • +
      • +

        + In any circle of radius r, if a central angle of measure \theta radians intercepts an arc of length s, then it follows that + + s = r\theta + . + This shows that arc length, s, is magnified along with the size of the radius, r, of the circle. +

        +
      • +
      +

      +
      + + + + + +
      diff --git a/source/sec-exp-e-wb.xml b/source/sec-exp-e-wb.xml index 590ca36e..75d1b6bd 100755 --- a/source/sec-exp-e-wb.xml +++ b/source/sec-exp-e-wb.xml @@ -1,21 +1,21 @@ - - - - - - - - - - - - - -
      - The special number <m>e</m> - - - - - -
      + + + + + + + + + + + + + +
      + The special number <m>e</m> + + + + + +
      diff --git a/source/sec-exp-e.xml b/source/sec-exp-e.xml index 2a73a8bc..55f0ca3a 100755 --- a/source/sec-exp-e.xml +++ b/source/sec-exp-e.xml @@ -1,246 +1,247 @@ - - - - - - - - - - - - - -
      - The special number <m>e</m> - -
        -
      • -

        - Why can every exponential function of form f(t) = b^t (where b \gt 0 and b \ne 1) be thought of as a horizontal scaling of a single special exponential function? -

        -
      • -
      • -

        - What is the natural base e and what makes this number special? -

        -
      • -
      -
      - - Introduction -

      - We have observed that the behavior of functions of the form f(t) = b^t is very consistent, where the only major differences depend on whether b \lt 1 or b \gt 1. Indeed, if we stipulate that b \gt 1, the graphs of functions with different bases b look nearly identical, as seen in the plots of p, q, r, and s in Figure. -

      - -
      - Plots of four different exponential functions of form b^t with b \gt 1. -

      Plots of four different exponential functions of form b^t with b \gt 1.

      -
      -
      - -

      - Because the point (0,1) lies on the graph of each of the four functions in Figure, the functions cannot be vertical scalings of one another. However, it is possible that the functions are horizontal scalings of one another. This leads us to a natural question: might it be possible to find a single exponential function with a special base, say e, for which every other exponential function f(t) = b^t can be expressed as a horizontal scaling of E(t) = e^t? -

      - - - -
      - - - The natural base <m>e</m> -

      - In Preview Activity, we found that it appears possible to find a value of k so that given any base b, we can write the function b^t as the horizontal scaling of 2^t given by - - b^t = 2^{kt} - . - It's also apparent that there's nothing particularly special about 2: we could similarly write any function b^t as a horizontal scaling of 3^t or 4^t, albeit with a different scaling factor k for each. Thus, we might also ask: is there a best possible single base to use? -

      - -

      - Through the central topic of the rate of change of a function, calculus helps us decide which base is best to use to represent all exponential functions. While we study average rate of change extensively in this course, in calculus there is more emphasis on the instantaneous rate of change. In that context, a natural question arises: is there a nonzero function that grows in such a way that its height is exactly how fast its height is increasing? -

      - -

      - Amazingly, it turns out that the answer to this questions is yes, and the function with this property is - the exponential function with the natural base, denoted e^t. The number e (named in homage to the great Swiss mathematician Leonard Euler (1707-1783)) is complicated to define. Like \pi, e is an irrational number that cannot be represented exactly by a ratio of integers and whose decimal expansion never repeats. Advanced mathematics is needed in order to make the following formal definition of e. -

      - - - The natural base, <m>e</m> - exponential functionwith the natural base, e - natural base, e - e - -

      - The number e is the infinite sumInfinite sums are usually studied in second semester calculus. - - e = 1 + \frac{1}{1!} + \frac{1}{2!} + \frac{1}{3!} + \frac{1}{4!} + \cdots - - From this, e \approx 2.718281828. -

      -
      -
      - -

      - For instance, 1 + \frac{1}{1} + \frac{1}{2} + \frac{1}{6} + \frac{1}{24} + \frac{1}{120} = \frac{163}{60} \approx 2.7167 is an approximation of e generated by taking the first 6 terms in the infinite sum that defines it. Every computational device knows the number e and we will normally work with this number by using technology appropriately. -

      - -

      - Initially, it's important to note that 2 \lt e \lt 3, and thus we expect the function e^t to lie between 2^t and 3^t. -

      - - - - Select outputs of <m>2^t</m>, <m>e^t</m>, and <m>3^t</m> reported to <m>3</m> decimal places. - - - t - -2 - -1 - 0 - 1 - 2 - - - 2^t - 0.25 - 0.5 - 1 - 2 - 4 - - - - - - - - - - - t - -2 - -1 - 0 - 1 - 2 - - - e^t - 0.135 - 0.368 - 1 - 2.718 - 7.389 - - - - - - - - - - - t - -2 - -1 - 0 - 1 - 2 - - - 3^t - 0.111 - 0.333 - 1 - 3 - 9 - - -
      -
      - Plot of e^t along with 2^t and 3^t. -

      Plot of e^t along with 2^t and 3^t.

      -
      -
      -
      - -

      - If we compare the graphs and some selected outputs of each function, as in Table and Figure, we see that the function e^t satisfies the inequality - - 2^t \lt e^t \lt 3^t - - for all positive values of t. When t is negative, we can view the values of each function as being reciprocals of powers of 2, e, and 3. For instance, since 2^2 \lt e^2 \lt 3^2, it follows \frac{1}{3^2} \lt \frac{1}{e^2} \lt \frac{1}{2^2}, or - - 3^{-2} \lt e^{-2} \lt 2^{-2} - . Thus, for any t \lt 0, - - 3^t \lt e^t \lt 2^t - - Like 2^t and 3^t, the function e^t passes through (0,1) is always increasing and always concave up, and its range is the set of all positive real numbers. -

      - - - -
      - - - Why any exponential function can be written in terms of <m>e</m> - -

      - In Preview Activity, we saw graphical evidence that any exponential function f(t) = b^t can be written as a horizontal scaling of the function g(t) = 2^t, plus we observed that there wasn't anything particularly special about 2^t. Because of the importance of e^t in calculus, we will choose instead to use the natural exponential function, E(t) = e^t as the function we scale to generate any other exponential function f(t) = b^t. We claim that for any choice of b \gt 0 (with b \ne 1), there exists a horizontal scaling factor k such that b^t = f(t) = E(kt) = e^{kt}. -

      - -

      - By the rules of exponents, we can rewrite this last equation equivalently as - - b^t = (e^k)^t - . - Since this equation has to hold for every value of t, it follows that b = e^k. Thus, our claim that we can scale E(t) to get f(t) requires us to show that regardless of the choice of the positive number b, there exists a single corresponding value of k such that b = e^k. -

      - -

      - Given b \gt 0, we can always find a corresponding value of k such that e^k = b because the function f(t) = e^t passes the , as seen in Figure. -

      - -
      - A plot of f(t) = e^t along with several choices of positive constants b viewed on the vertical axis. -

      A plot of f(t) = e^t along with several choices of positive constants b viewed on the vertical axis.

      -
      -
      - -

      - In Figure, we can think of b as a point on the positive vertical axis. From there, we draw a horizontal line over to the graph of f(t) = e^t, and then from the (unique) point of intersection we drop a vertical line to the x-axis. At that corresponding point on the x-axis we have found the input value k that corresponds to b. We see that there is always exactly one such k value that corresponds to each chosen b because f(t) = e^t is always increasing, and any always increasing function passes the Horizontal Line Test. -

      - -

      - It follows that the function f(t) = e^t has an inverse function, and hence there must be some other function g such that writing y = f(t) is the same as writing t = g(y). This important function g will be developed in Section and will enable us to find the value of k exactly for a given b. For now, we are content to work with these observations graphically and to hence find estimates for the value of k. -

      - - - -
      - - - Summary -
        -
      • -

        - Any exponential function f(t) = b^t can be viewed as a horizontal scaling of E(t) = e^t because there exists a unique constant k such that E(kt) = e^{kt} = b^t = f(t) is true for every value of t. This holds since the exponential function e^t is always increasing, so given an output b there exists a unique input k such that e^k = b, from which it follows that e^{kt} = b^t. -

        -
      • -
      • -

        - The natural base e is the special number that defines an increasing exponential function whose rate of change at any point is the same as its height at that point, a fact that is established using calculus. The number e turns out to be given exactly by an infinite sum and approximately by e \approx 2.7182818. -

        -
      • -
      -
      - - - - - -
      + + + + + + + + + + + + + +
      + The special number <m>e</m> + +
        +
      • +

        + Why can every exponential function of form f(t) = b^t (where b \gt 0 and b \ne 1) be thought of as a horizontal scaling of a single special exponential function? +

        +
      • +
      • +

        + What is the natural base e and what makes this number special? +

        +
      • +
      +
      + + Introduction +

      + We have observed that the behavior of functions of the form f(t) = b^t is very consistent, where the only major differences depend on whether b \lt 1 or b \gt 1. Indeed, if we stipulate that b \gt 1, the graphs of functions with different bases b look nearly identical, as seen in the plots of p, q, r, and s in Figure. +

      + +
      + Plots of four different exponential functions of form b^t with b \gt 1. +

      Plots of four different exponential functions of form b^t with b \gt 1.

      +
      +
      + +

      + Because the point (0,1) lies on the graph of each of the four functions in Figure, the functions cannot be vertical scalings of one another. However, it is possible that the functions are horizontal scalings of one another. This leads us to a natural question: might it be possible to find a single exponential function with a special base, say e, for which every other exponential function f(t) = b^t can be expressed as a horizontal scaling of E(t) = e^t? +

      + + + + +
      + + + The natural base <m>e</m> +

      + In Preview Activity, we found that it appears possible to find a value of k so that given any base b, we can write the function b^t as the horizontal scaling of 2^t given by + + b^t = 2^{kt} + . + It's also apparent that there's nothing particularly special about 2: we could similarly write any function b^t as a horizontal scaling of 3^t or 4^t, albeit with a different scaling factor k for each. Thus, we might also ask: is there a best possible single base to use? +

      + +

      + Through the central topic of the rate of change of a function, calculus helps us decide which base is best to use to represent all exponential functions. While we study average rate of change extensively in this course, in calculus there is more emphasis on the instantaneous rate of change. In that context, a natural question arises: is there a nonzero function that grows in such a way that its height is exactly how fast its height is increasing? +

      + +

      + Amazingly, it turns out that the answer to this questions is yes, and the function with this property is + the exponential function with the natural base, denoted e^t. The number e (named in homage to the great Swiss mathematician Leonard Euler (1707-1783)) is complicated to define. Like \pi, e is an irrational number that cannot be represented exactly by a ratio of integers and whose decimal expansion never repeats. Advanced mathematics is needed in order to make the following formal definition of e. +

      + + + The natural base, <m>e</m> + exponential functionwith the natural base, e + natural base, e + e + +

      + The number e is the infinite sumInfinite sums are usually studied in second semester calculus. + + e = 1 + \frac{1}{1!} + \frac{1}{2!} + \frac{1}{3!} + \frac{1}{4!} + \cdots + + From this, e \approx 2.718281828. +

      +
      +
      + +

      + For instance, 1 + \frac{1}{1} + \frac{1}{2} + \frac{1}{6} + \frac{1}{24} + \frac{1}{120} = \frac{163}{60} \approx 2.7167 is an approximation of e generated by taking the first 6 terms in the infinite sum that defines it. Every computational device knows the number e and we will normally work with this number by using technology appropriately. +

      + +

      + Initially, it's important to note that 2 \lt e \lt 3, and thus we expect the function e^t to lie between 2^t and 3^t. +

      + + + + Select outputs of <m>2^t</m>, <m>e^t</m>, and <m>3^t</m> reported to <m>3</m> decimal places. + + + t + -2 + -1 + 0 + 1 + 2 + + + 2^t + 0.25 + 0.5 + 1 + 2 + 4 + + + + + + + + + + + t + -2 + -1 + 0 + 1 + 2 + + + e^t + 0.135 + 0.368 + 1 + 2.718 + 7.389 + + + + + + + + + + + t + -2 + -1 + 0 + 1 + 2 + + + 3^t + 0.111 + 0.333 + 1 + 3 + 9 + + +
      +
      + Plot of e^t along with 2^t and 3^t. +

      Plot of e^t along with 2^t and 3^t.

      +
      +
      +
      + +

      + If we compare the graphs and some selected outputs of each function, as in Table and Figure, we see that the function e^t satisfies the inequality + + 2^t \lt e^t \lt 3^t + + for all positive values of t. When t is negative, we can view the values of each function as being reciprocals of powers of 2, e, and 3. For instance, since 2^2 \lt e^2 \lt 3^2, it follows \frac{1}{3^2} \lt \frac{1}{e^2} \lt \frac{1}{2^2}, or + + 3^{-2} \lt e^{-2} \lt 2^{-2} + . Thus, for any t \lt 0, + + 3^t \lt e^t \lt 2^t + + Like 2^t and 3^t, the function e^t passes through (0,1) is always increasing and always concave up, and its range is the set of all positive real numbers. +

      + + + +
      + + + Why any exponential function can be written in terms of <m>e</m> + +

      + In Preview Activity, we saw graphical evidence that any exponential function f(t) = b^t can be written as a horizontal scaling of the function g(t) = 2^t, plus we observed that there wasn't anything particularly special about 2^t. Because of the importance of e^t in calculus, we will choose instead to use the natural exponential function, E(t) = e^t as the function we scale to generate any other exponential function f(t) = b^t. We claim that for any choice of b \gt 0 (with b \ne 1), there exists a horizontal scaling factor k such that b^t = f(t) = E(kt) = e^{kt}. +

      + +

      + By the rules of exponents, we can rewrite this last equation equivalently as + + b^t = (e^k)^t + . + Since this equation has to hold for every value of t, it follows that b = e^k. Thus, our claim that we can scale E(t) to get f(t) requires us to show that regardless of the choice of the positive number b, there exists a single corresponding value of k such that b = e^k. +

      + +

      + Given b \gt 0, we can always find a corresponding value of k such that e^k = b because the function f(t) = e^t passes the , as seen in Figure. +

      + +
      + A plot of f(t) = e^t along with several choices of positive constants b viewed on the vertical axis. +

      A plot of f(t) = e^t along with several choices of positive constants b viewed on the vertical axis.

      +
      +
      + +

      + In Figure, we can think of b as a point on the positive vertical axis. From there, we draw a horizontal line over to the graph of f(t) = e^t, and then from the (unique) point of intersection we drop a vertical line to the x-axis. At that corresponding point on the x-axis we have found the input value k that corresponds to b. We see that there is always exactly one such k value that corresponds to each chosen b because f(t) = e^t is always increasing, and any always increasing function passes the Horizontal Line Test. +

      + +

      + It follows that the function f(t) = e^t has an inverse function, and hence there must be some other function g such that writing y = f(t) is the same as writing t = g(y). This important function g will be developed in Section and will enable us to find the value of k exactly for a given b. For now, we are content to work with these observations graphically and to hence find estimates for the value of k. +

      + + + +
      + + + Summary +
        +
      • +

        + Any exponential function f(t) = b^t can be viewed as a horizontal scaling of E(t) = e^t because there exists a unique constant k such that E(kt) = e^{kt} = b^t = f(t) is true for every value of t. This holds since the exponential function e^t is always increasing, so given an output b there exists a unique input k such that e^k = b, from which it follows that e^{kt} = b^t. +

        +
      • +
      • +

        + The natural base e is the special number that defines an increasing exponential function whose rate of change at any point is the same as its height at that point, a fact that is established using calculus. The number e turns out to be given exactly by an infinite sum and approximately by e \approx 2.7182818. +

        +
      • +
      +
      + + + + + +
      diff --git a/source/sec-exp-growth-wb.xml b/source/sec-exp-growth-wb.xml index ebd365aa..08eb934f 100755 --- a/source/sec-exp-growth-wb.xml +++ b/source/sec-exp-growth-wb.xml @@ -1,22 +1,22 @@ - - - - - - - - - - - - - -
      - Exponential Growth and Decay - - - - - - -
      + + + + + + + + + + + + + +
      + Exponential Growth and Decay + + + + + + +
      diff --git a/source/sec-exp-growth.xml b/source/sec-exp-growth.xml index eefb5ee3..0536a27e 100755 --- a/source/sec-exp-growth.xml +++ b/source/sec-exp-growth.xml @@ -1,399 +1,401 @@ - - - - - - - - - - - - - -
      - Exponential Growth and Decay - - -
        -
      • -

        - What does it mean to say that a function is exponential? -

        -
      • -
      • -

        - How much data do we need to know in order to determine the formula for an exponential function? -

        -
      • -
      • -

        - Are there important trends that all exponential functions exhibit? -

        -
      • -
      -
      - - Introduction -

      - Linear functions have constant average rate of change and model many important phenomena. In other settings, it is natural for a quantity to change at a rate that is proportional to the amount of the quantity present. For instance, whether you put $100 or $100000 or any other amount in a mutual fund, the investment's value changes at a rate proportional the amount present. We often measure that rate in terms of the annual percentage rate of return. -

      - -

      - Suppose that a certain mutual fund has a 10% annual return. If we invest $100, after 1 year we still have the original $100, plus we gain 10% of $100, so - - 100 \overset{\text{year } 1}{\longrightarrow} 100 + 0.1(100) = 1.1(100) - . - If we instead invested $100000, after 1 year we again have the original $100000, but now we gain 10% of $100000, and thus - - 100000 \overset{\text{year } 1}{\longrightarrow} 100000 + 0.1(100000) = 1.1(100000) - . - We therefore see that regardless of the amount of money originally invested, say P, the amount of money we have after 1 year is 1.1P. -

      - -

      - If we repeat our computations for the second year, we observe that - - 1.1(100) \overset{\text{year } 2}{\longrightarrow} 1.1(100) + 0.1(1.1(100)) = 1.1(1.1(100)) = 1.1^2 (100) - . - The ideas are identical with the larger dollar value, so - - 1.1(100000) \overset{\text{year } 2}{\longrightarrow} 1.1(100000) + 0.1(1.1(100000)) = 1.1(1.1(100000)) = 1.1^2 (100000) - , - and we see that if we invest P dollars, in 2 years our investment will grow to 1.1^2 P. -

      - -

      - Of course, in 3 years at 10%, the original investment P will have grown to 1.1^3 P. Here we see a new kind of pattern developing: annual growth of 10% is leading to powers of the base 1.1, where the power to which we raise 1.1 corresponds to the number of years the investment has grown. We often call this phenomenon exponential growth. exponential growthintroduction -

      - - -
      - - - Exponential functions of form <m>f(t) = ab^t</m> -

      - In Preview Activity, we encountered the functions I(t) and V(t) that had the same basic structure. Each can be written in the form g(t) = ab^t where a and b are positive constants and b \ne 1. Based on our earlier work with transformations, we know that the constant a is a vertical scaling factor, and thus the main behavior of the function comes from b^t, which we call an exponential function. -

      - - - functionexponential - exponential functionbase - -

      - Let b be a real number such that b \gt 0 and b \ne 1. We call the function defined by - f(t) = b^t - an exponential function with base b. -

      -
      -
      - -

      - For an exponential function f(t) = b^t, we note that f(0) = b^0 = 1, so an exponential function of this form always passes through (0,1). In addition, because a positive number raised to any power is always positive (for instance, 2^{10} = 1024 and 2^{-10} = \frac{1}{2^{10}} = \frac{1}{1024}), the output of an exponential function is also always positive. In particular, f(t) = b^t is never zero and thus has no x-intercepts. -

      - -

      - Because we will be frequently interested in functions such as I(t) and V(t) with the form ab^t, we will also refer to functions of this form as exponential, understanding that technically these are vertical stretches of exponential functions according to Definition. In Preview Activity, we found that I(t) = 20000(1.08)^t and V(t) = 20000(0.88)^t. It is natural to call 1.08 the growth factor of I and similarly 0.88 the growth factor of V. In addition, we note that these values stem from the actual growth rates: 0.08 for I and -0.12 for V, the latter being negative because value is depreciating. In general, for a function of form f(t) = ab^t, we call b the growth factor. exponential functiongrowth factor Moreover, if b = 1+r, we call r the growth rate. exponential functiongrowth rate Whenever b \gt 1, we often say that the function f is exhibiting exponential growth, wherease if 0 \lt b \lt 1, we say f exhibits exponential decay. exponential functionexponential decay -

      - -

      - We explore the properties of functions of form f(t) = ab^t further in Activity. -

      - - - -
      - - - Determining formulas for exponential functions -

      - To better understand the roles that a and b play in an exponential function, let's compare exponential and linear functions. In Table and Table, we see output for two different functions r and s that correspond to equally spaced input. -

      - - - - Data for the function <m>r</m>. - - - t - 0 - 3 - 6 - 9 - - - r(t) - 12 - 10 - 8 - 6 - - -
      - - Data for the function <m>s</m>. - - - t - 0 - 3 - 6 - 9 - - - s(t) - 12 - 9 - 6.75 - 5.0625 - - -
      -
      - -

      - In Table, we see a function that exhibits constant average rate of change since the change in output is always \triangle r = -2 for any change in input of \triangle t = 3. Said differently, r is a linear function with slope m = -\frac{2}{3}. Since its y-intercept is (0,12), the function's formula is y = r(t) = 12 - \frac{2}{3}t. -

      - -

      - In contrast, the function s given by Table does not exhibit constant average rate of change. Instead, another pattern is present. Observe that if we consider the ratios of consecutive outputs in the table, we see that - - \frac{9} {12}= \frac{3}{4}, \frac{6.75}{9} = 0.75 = \frac{3}{4}, \text{ and } \frac{5.0625}{6.75} = 0.75 = \frac{3}{4} - . - So, where the differences in the outputs in Table are constant, the ratios in the outputs in Table are constant. The latter is a hallmark of exponential functions and may be used to help us determine the formula of a function for which we have certain information. -

      - -

      - If we know that a certain function is linear, it suffices to know two points that lie on the line to determine the function's formula. It turns out that exponential functions are similar: knowing two points on the graph of a function known to be exponential is enough information to determine the function's formula. In the following example, we show how knowing two values of an exponential function enables us to find both a and b exactly. -

      - - - -

      - Suppose that p is an exponential function and we know that p(2) = 11 and p(5) = 18. Determine the exact values of a and b for which p(t) = ab^t. -

      -
      - - -

      - Since we know that p(t) = ab^t, the two data points give us two equations in the unknowns a and b. First, using t = 2, - - ab^2 = 11 - , - and using t = 5 we also have - - ab^5 = 18 - . - Because we know that the quotient of outputs of an exponential function corresponding to equally-spaced inputs must be constant, we thus naturally consider the quotient \frac{18}{11}. Using Equation and Equation, it follows that - - \frac{18}{11} = \frac{ab^5}{ab^2} - . - Simplifying the fraction on the right, we see that - - \frac{18}{11} = b^3 - . - Solving for b, we find that b = \sqrt[3]{\frac{18}{11}} is the exact value of b. Substituting this value for b in Equation, it then follows that a \left( \sqrt[3]{\frac{18}{11}} \right)^2 = 11, so - - a = \frac{11}{\left( \frac{18}{11} \right)^{2/3}} - . Therefore, - - p(t) = \frac{11}{\left( \frac{18}{11} \right)^{2/3}} \left( \sqrt[3]{\frac{18}{11}} \right)^t \approx 7.9215 \cdot 1.1784^t - , and a plot of y = p(t) confirms that the function indeed passes through (2,11) and (5,18) as shown in Figure. -

      - -
      - Plot of p(t) = ab^t that passes through (2,11) and (5,18). -

      Plot of p(t) = ab^t that passes through (2,11) and (5,18).

      -
      -
      -
      -
      - - - -
      - - - Trends in the behavior of exponential functions - -

      - Recall that a function is increasing on an interval if its value always increases as we move from left to right. Similarly, a function is decreasing on an interval provided that its value always decreases as we move from left to right. -

      - - -
      - The exponential function f. -

      The exponential function f.

      -
      -
      -
      - The exponential function g. -

      The exponential function g.

      -
      -
      -
      - -

      - If we consider an exponential function f with a growth factor b > 1, such as the function pictured in Figure, then the function is always increasing because higher powers of b are greater than lesser powers (for example, (1.2)^3 \gt (1.2)^2). On the other hand, if 0 \lt b \lt 1, then the exponential function will be decreasing because higher powers of positive numbers less than 1 get smaller (e.g., (0.9)^3 \lt (0.9)^2), as seen for the exponential function in Figure. -

      - -

      - An additional trend is apparent in the graphs in Figure and Figure. Each graph bends upward and is therefore concave up. We can better understand why this is so by considering the average rate of change of both f and g on consecutive intervals of the same width. We choose adjacent intervals of length 1 and note particularly that as we compute the average rate of change of each function on such intervals, - - AV_{[t,t+1]} = \frac{f(t+1) - f(t)}{t+1-t} = f(t+1) - f(t) - . Thus, these average rates of change are also measuring the total change in the function across an interval that is 1-unit wide. We now assume that f(t) = 2 (1.25)^t and g(t) = 8(0.75)^t and compute the rate of change of each function on several consecutive intervals. -

      - - - - The average rate of change of <m>f(t) = 2(1.25)^t</m>. - - - t - f(t) - AV_{[t,t+1]} - - - 0 - 2 - 0.5 - - - 1 - 2.5 - 0.625 - - - 2 - 3.125 - 0.78215 - - - 3 - 3.90625 - 0.97656 - - -
      - - The average rate of change of <m>g(t) = 8(0.75)^t</m>. - - - t - g(t) - AV_{[t,t+1]} - - - 0 - 8 - -2 - - - 1 - 6 - -1.5 - - - 2 - 4.5 - -1.125 - - - 3 - 3.375 - -0.84375 - - -
      -
      - -

      - From the data in Table, we see that the average rate of change is increasing as we increase the value of t. We naturally say that f appears to be increasing at an increasing rate. For the function g, we first notice that its average rate of change is always negative, but also that the average rate of change gets less negative as we increase the value of t. Said differently, the average rate of change of g is also increasing as we increase the value of t. Since g is always decreasing but its average rate of change is increasing, we say that g appears to be decreasing at an increasing rate. These trends hold for exponential functions generallyIt takes calculus to justify this claim fully and rigorously. according to the following conditions. -

      - - - Trends in exponential function behavior -

      - For an exponential function of the form f(t) = ab^t where a and b are both positive with b \ne 1, -

        -
      • -

        - if b \gt 1, then f is always increasing and always increases at an increasing rate; -

        -
      • -
      • -

        - if 0 \lt b \lt 1, then f is always decreasing and always decreases at an increasing rate. -

        -
      • -
      -

      -
      - -

      - Observe how a function's average rate of change helps us classify the function's behavior on an interval: whether the average rate of change is always positive or always negative on the interval enables us to say if the function is always increasing or always decreasing, and then how the average rate of change itself changes enables us to potentially say how the function is increasing or decreasing through phrases such as decreasing at an increasing rate. -

      - - - -
      - - - Summary -

      -

        -
      • -

        - We say that a function is exponential whenever its algebraic form is f(t) = ab^t for some positive constants a and b where b \ne 1. (Technically, the formal definition of an exponential function is one of form f(t) = b^t, but in our everyday usage of the term exponential we include vertical stretches of these functions and thus allow a to be any positive constant, not just a = 1.) -

        -
      • -
      • -

        - To determine the formula for an exponential function of form f(t) = ab^t, we need to know two pieces of information. Typically this information is presented in one of two ways. -

          -
        • -

          - If we know the amount, a, of a quantity at time t = 0 and the rate, r, at which the quantity grows or decays per unit time, then it follows f(t) = a(1+r)^t. In this setting, r is often given as a percentage that we convert to a decimal (e.g., if the quantity grows at a rate of 7% per year, we set r = 0.07, so b = 1.07). -

          -
        • -
        • -

          - If we know any two points on the exponential function's graph, then we can set up a system of two equations in two unknowns and solve for both a and b exactly. In this situation, it is useful to consider the quotient of the two known outputs, as demonstrated in Example. -

          -
        • -
        -

        -
      • -
      • -

        - Exponential functions of the form f(t) = ab^t (where a and b are both positive and b \ne 1) exhibit the following important characteristics: -

        -

        -

          -
        • -

          - The domain of any exponential function is the set of all real numbers and the range of any exponential function is the set of all positive real numbers. -

          -
        • -
        • -

          - The y-intercept of the exponential function f(t) = ab^t is (0,a) and the function has no x-intercepts. -

          -
        • -
        • -

          - If b \gt 1, then the exponential function is always increasing and always increases at an increasing rate. If 0 \lt b \lt 1, then the exponential function is always decreasing and always decreases at an increasing rate. -

          -
        • -
        -

        -
      • -
      -

      -
      - - - - - -
      + + + + + + + + + + + + + +
      + Exponential Growth and Decay + + +
        +
      • +

        + What does it mean to say that a function is exponential? +

        +
      • +
      • +

        + How much data do we need to know in order to determine the formula for an exponential function? +

        +
      • +
      • +

        + Are there important trends that all exponential functions exhibit? +

        +
      • +
      +
      + + Introduction +

      + Linear functions have constant average rate of change and model many important phenomena. In other settings, it is natural for a quantity to change at a rate that is proportional to the amount of the quantity present. For instance, whether you put $100 or $100000 or any other amount in a mutual fund, the investment's value changes at a rate proportional the amount present. We often measure that rate in terms of the annual percentage rate of return. +

      + +

      + Suppose that a certain mutual fund has a 10% annual return. If we invest $100, after 1 year we still have the original $100, plus we gain 10% of $100, so + + 100 \overset{\text{year } 1}{\longrightarrow} 100 + 0.1(100) = 1.1(100) + . + If we instead invested $100000, after 1 year we again have the original $100000, but now we gain 10% of $100000, and thus + + 100000 \overset{\text{year } 1}{\longrightarrow} 100000 + 0.1(100000) = 1.1(100000) + . + We therefore see that regardless of the amount of money originally invested, say P, the amount of money we have after 1 year is 1.1P. +

      + +

      + If we repeat our computations for the second year, we observe that + + 1.1(100) \overset{\text{year } 2}{\longrightarrow} 1.1(100) + 0.1(1.1(100)) = 1.1(1.1(100)) = 1.1^2 (100) + . + The ideas are identical with the larger dollar value, so + + 1.1(100000) \overset{\text{year } 2}{\longrightarrow} 1.1(100000) + 0.1(1.1(100000)) = 1.1(1.1(100000)) = 1.1^2 (100000) + , + and we see that if we invest P dollars, in 2 years our investment will grow to 1.1^2 P. +

      + +

      + Of course, in 3 years at 10%, the original investment P will have grown to 1.1^3 P. Here we see a new kind of pattern developing: annual growth of 10% is leading to powers of the base 1.1, where the power to which we raise 1.1 corresponds to the number of years the investment has grown. We often call this phenomenon exponential growth. exponential growthintroduction +

      + + + + +
      + + + Exponential functions of form <m>f(t) = ab^t</m> +

      + In Preview Activity, we encountered the functions I(t) and V(t) that had the same basic structure. Each can be written in the form g(t) = ab^t where a and b are positive constants and b \ne 1. Based on our earlier work with transformations, we know that the constant a is a vertical scaling factor, and thus the main behavior of the function comes from b^t, which we call an exponential function. +

      + + + functionexponential + exponential functionbase + +

      + Let b be a real number such that b \gt 0 and b \ne 1. We call the function defined by + f(t) = b^t + an exponential function with base b. +

      +
      +
      + +

      + For an exponential function f(t) = b^t, we note that f(0) = b^0 = 1, so an exponential function of this form always passes through (0,1). In addition, because a positive number raised to any power is always positive (for instance, 2^{10} = 1024 and 2^{-10} = \frac{1}{2^{10}} = \frac{1}{1024}), the output of an exponential function is also always positive. In particular, f(t) = b^t is never zero and thus has no x-intercepts. +

      + +

      + Because we will be frequently interested in functions such as I(t) and V(t) with the form ab^t, we will also refer to functions of this form as exponential, understanding that technically these are vertical stretches of exponential functions according to Definition. In Preview Activity, we found that I(t) = 20000(1.08)^t and V(t) = 20000(0.88)^t. It is natural to call 1.08 the growth factor of I and similarly 0.88 the growth factor of V. In addition, we note that these values stem from the actual growth rates: 0.08 for I and -0.12 for V, the latter being negative because value is depreciating. In general, for a function of form f(t) = ab^t, we call b the growth factor. exponential functiongrowth factor Moreover, if b = 1+r, we call r the growth rate. exponential functiongrowth rate Whenever b \gt 1, we often say that the function f is exhibiting exponential growth, wherease if 0 \lt b \lt 1, we say f exhibits exponential decay. exponential functionexponential decay +

      + +

      + We explore the properties of functions of form f(t) = ab^t further in Activity. +

      + + + +
      + + + Determining formulas for exponential functions +

      + To better understand the roles that a and b play in an exponential function, let's compare exponential and linear functions. In Table and Table, we see output for two different functions r and s that correspond to equally spaced input. +

      + + + + Data for the function <m>r</m>. + + + t + 0 + 3 + 6 + 9 + + + r(t) + 12 + 10 + 8 + 6 + + +
      + + Data for the function <m>s</m>. + + + t + 0 + 3 + 6 + 9 + + + s(t) + 12 + 9 + 6.75 + 5.0625 + + +
      +
      + +

      + In Table, we see a function that exhibits constant average rate of change since the change in output is always \triangle r = -2 for any change in input of \triangle t = 3. Said differently, r is a linear function with slope m = -\frac{2}{3}. Since its y-intercept is (0,12), the function's formula is y = r(t) = 12 - \frac{2}{3}t. +

      + +

      + In contrast, the function s given by Table does not exhibit constant average rate of change. Instead, another pattern is present. Observe that if we consider the ratios of consecutive outputs in the table, we see that + + \frac{9} {12}= \frac{3}{4}, \frac{6.75}{9} = 0.75 = \frac{3}{4}, \text{ and } \frac{5.0625}{6.75} = 0.75 = \frac{3}{4} + . + So, where the differences in the outputs in Table are constant, the ratios in the outputs in Table are constant. The latter is a hallmark of exponential functions and may be used to help us determine the formula of a function for which we have certain information. +

      + +

      + If we know that a certain function is linear, it suffices to know two points that lie on the line to determine the function's formula. It turns out that exponential functions are similar: knowing two points on the graph of a function known to be exponential is enough information to determine the function's formula. In the following example, we show how knowing two values of an exponential function enables us to find both a and b exactly. +

      + + + +

      + Suppose that p is an exponential function and we know that p(2) = 11 and p(5) = 18. Determine the exact values of a and b for which p(t) = ab^t. +

      +
      + + +

      + Since we know that p(t) = ab^t, the two data points give us two equations in the unknowns a and b. First, using t = 2, + + ab^2 = 11 + , + and using t = 5 we also have + + ab^5 = 18 + . + Because we know that the quotient of outputs of an exponential function corresponding to equally-spaced inputs must be constant, we thus naturally consider the quotient \frac{18}{11}. Using Equation and Equation, it follows that + + \frac{18}{11} = \frac{ab^5}{ab^2} + . + Simplifying the fraction on the right, we see that + + \frac{18}{11} = b^3 + . + Solving for b, we find that b = \sqrt[3]{\frac{18}{11}} is the exact value of b. Substituting this value for b in Equation, it then follows that a \left( \sqrt[3]{\frac{18}{11}} \right)^2 = 11, so + + a = \frac{11}{\left( \frac{18}{11} \right)^{2/3}} + . Therefore, + + p(t) = \frac{11}{\left( \frac{18}{11} \right)^{2/3}} \left( \sqrt[3]{\frac{18}{11}} \right)^t \approx 7.9215 \cdot 1.1784^t + , and a plot of y = p(t) confirms that the function indeed passes through (2,11) and (5,18) as shown in Figure. +

      + +
      + Plot of p(t) = ab^t that passes through (2,11) and (5,18). +

      Plot of p(t) = ab^t that passes through (2,11) and (5,18).

      +
      +
      +
      +
      + + + +
      + + + Trends in the behavior of exponential functions + +

      + Recall that a function is increasing on an interval if its value always increases as we move from left to right. Similarly, a function is decreasing on an interval provided that its value always decreases as we move from left to right. +

      + + +
      + The exponential function f. +

      The exponential function f.

      +
      +
      +
      + The exponential function g. +

      The exponential function g.

      +
      +
      +
      + +

      + If we consider an exponential function f with a growth factor b > 1, such as the function pictured in Figure, then the function is always increasing because higher powers of b are greater than lesser powers (for example, (1.2)^3 \gt (1.2)^2). On the other hand, if 0 \lt b \lt 1, then the exponential function will be decreasing because higher powers of positive numbers less than 1 get smaller (e.g., (0.9)^3 \lt (0.9)^2), as seen for the exponential function in Figure. +

      + +

      + An additional trend is apparent in the graphs in Figure and Figure. Each graph bends upward and is therefore concave up. We can better understand why this is so by considering the average rate of change of both f and g on consecutive intervals of the same width. We choose adjacent intervals of length 1 and note particularly that as we compute the average rate of change of each function on such intervals, + + AV_{[t,t+1]} = \frac{f(t+1) - f(t)}{t+1-t} = f(t+1) - f(t) + . Thus, these average rates of change are also measuring the total change in the function across an interval that is 1-unit wide. We now assume that f(t) = 2 (1.25)^t and g(t) = 8(0.75)^t and compute the rate of change of each function on several consecutive intervals. +

      + + + + The average rate of change of <m>f(t) = 2(1.25)^t</m>. + + + t + f(t) + AV_{[t,t+1]} + + + 0 + 2 + 0.5 + + + 1 + 2.5 + 0.625 + + + 2 + 3.125 + 0.78215 + + + 3 + 3.90625 + 0.97656 + + +
      + + The average rate of change of <m>g(t) = 8(0.75)^t</m>. + + + t + g(t) + AV_{[t,t+1]} + + + 0 + 8 + -2 + + + 1 + 6 + -1.5 + + + 2 + 4.5 + -1.125 + + + 3 + 3.375 + -0.84375 + + +
      +
      + +

      + From the data in Table, we see that the average rate of change is increasing as we increase the value of t. We naturally say that f appears to be increasing at an increasing rate. For the function g, we first notice that its average rate of change is always negative, but also that the average rate of change gets less negative as we increase the value of t. Said differently, the average rate of change of g is also increasing as we increase the value of t. Since g is always decreasing but its average rate of change is increasing, we say that g appears to be decreasing at an increasing rate. These trends hold for exponential functions generallyIt takes calculus to justify this claim fully and rigorously. according to the following conditions. +

      + + + Trends in exponential function behavior +

      + For an exponential function of the form f(t) = ab^t where a and b are both positive with b \ne 1, +

        +
      • +

        + if b \gt 1, then f is always increasing and always increases at an increasing rate; +

        +
      • +
      • +

        + if 0 \lt b \lt 1, then f is always decreasing and always decreases at an increasing rate. +

        +
      • +
      +

      +
      + +

      + Observe how a function's average rate of change helps us classify the function's behavior on an interval: whether the average rate of change is always positive or always negative on the interval enables us to say if the function is always increasing or always decreasing, and then how the average rate of change itself changes enables us to potentially say how the function is increasing or decreasing through phrases such as decreasing at an increasing rate. +

      + + + +
      + + + Summary +

      +

        +
      • +

        + We say that a function is exponential whenever its algebraic form is f(t) = ab^t for some positive constants a and b where b \ne 1. (Technically, the formal definition of an exponential function is one of form f(t) = b^t, but in our everyday usage of the term exponential we include vertical stretches of these functions and thus allow a to be any positive constant, not just a = 1.) +

        +
      • +
      • +

        + To determine the formula for an exponential function of form f(t) = ab^t, we need to know two pieces of information. Typically this information is presented in one of two ways. +

          +
        • +

          + If we know the amount, a, of a quantity at time t = 0 and the rate, r, at which the quantity grows or decays per unit time, then it follows f(t) = a(1+r)^t. In this setting, r is often given as a percentage that we convert to a decimal (e.g., if the quantity grows at a rate of 7% per year, we set r = 0.07, so b = 1.07). +

          +
        • +
        • +

          + If we know any two points on the exponential function's graph, then we can set up a system of two equations in two unknowns and solve for both a and b exactly. In this situation, it is useful to consider the quotient of the two known outputs, as demonstrated in Example. +

          +
        • +
        +

        +
      • +
      • +

        + Exponential functions of the form f(t) = ab^t (where a and b are both positive and b \ne 1) exhibit the following important characteristics: +

        +

        +

          +
        • +

          + The domain of any exponential function is the set of all real numbers and the range of any exponential function is the set of all positive real numbers. +

          +
        • +
        • +

          + The y-intercept of the exponential function f(t) = ab^t is (0,a) and the function has no x-intercepts. +

          +
        • +
        • +

          + If b \gt 1, then the exponential function is always increasing and always increases at an increasing rate. If 0 \lt b \lt 1, then the exponential function is always decreasing and always decreases at an increasing rate. +

          +
        • +
        +

        +
      • +
      +

      +
      + + + + + +
      diff --git a/source/sec-exp-log-properties-wb.xml b/source/sec-exp-log-properties-wb.xml index abc39f3b..aba7f164 100755 --- a/source/sec-exp-log-properties-wb.xml +++ b/source/sec-exp-log-properties-wb.xml @@ -1,22 +1,22 @@ - - - - - - - - - - - - - -
      - Properties and applications of logarithmic functions - - - - - - -
      + + + + + + + + + + + + + +
      + Properties and applications of logarithmic functions + + + + + + +
      diff --git a/source/sec-exp-log-properties.xml b/source/sec-exp-log-properties.xml index a702ada1..5d86c68d 100755 --- a/source/sec-exp-log-properties.xml +++ b/source/sec-exp-log-properties.xml @@ -1,328 +1,329 @@ - - - - - - - - - - - - - -
      - Properties and applications of logarithmic functions - -
        -
      • -

        - What structural rules do logarithms obey that are similar to rules for exponents? -

        -
      • -
      • -

        - What are the key properties of the graph of the natural logarithm function? -

        -
      • -
      • -

        - How do logarithms enable us to solve exponential equations? -

        -
      • -
      -
      - - Introduction -

      - Logarithms arise as inverses of exponential functions. In addition, we have motivated their development by our desire to solve exponential equations such as e^k = 3 for k. Because of the inverse relationship between exponential and logarithmic functions, there are several important properties logarithms have that are analogous to ones held by exponential functions. We will work to develop these properties and then show how they are useful in applied settings. -

      - - - -
      - - - Key properties of logarithms -

      - In Preview Activity, we considered an argument for why \log_{10}(ab) = \log_{10}(a) + \log_{10}(b) for any choice of positive numbers a and b. In what follows, we develop this and other properties of the natural logarithm function; similar reasoning shows the same properties hold for logarithms of any base. -

      - -

      - Let a and b be any positive real numbers so that x = \ln(a) and y = \ln(b) are both defined. Observe that we can rewrite these two equations using the definition of the natural logarithm so that - - a = e^x \ \text{ and } \ b = e^y - . - Using substitution, we can now say that - - \ln(a \cdot b) = \ln(e^x \cdot e^y) - . - By exponent rules, we know that \ln(e^x \cdot e^y) = \ln(e^{x+y}), and because the natural logarithm and natural exponential function are inverses, \ln(e^{x+y}) = x+y. Combining the three most recent equations, - - \ln(a \cdot b) = x + y - . - Finally, recalling that x = \ln(a) and y = \ln(b), we have shown that - - \ln(a \cdot b) = \ln(a) + \ln(b) - - for any choice of positive real numbers a and b. -

      - -

      - A similar property holds for \ln(\frac{a}{b}). By nearly the same argument, we can say that - - \ln\left( \frac{a}{b} \right) &= \ln\left( \frac{e^x}{e^y} \right) - &= \ln \left( e^{x-y} \right) - &= x-y - &= \ln(a) - \ln(b) - . -

      - -

      - We have thus shown the following general principles. -

      - - - Logarithms of products and quotients - logarithmof a product - logarithmof a quotient -

      - For any positive real numbers a and b, -

        -
      • - - \ln(a \cdot b) = \ln(a) + \ln(b) - -
      • -
      • - - \ln\left( \frac{a}{b} \right) = \ln(a) - \ln(b) - -
      • -
      -

      -
      - -

      - Because positive integer exponents are a shorthand way to express repeated multiplication, we can use the multiplication rule for logarithms to think about exponents as well. For example, - - \ln(a^3) = \ln(a \cdot a \cdot a) - , - and by repeated application of the rule for the natural logarithm of a product, we see - - \ln(a^3) = \ln(a) + \ln(a) + \ln(a) = 3\ln(a) - . - A similar argument works to show that for every natural number n, - - \ln(a^n) = n\ln(a) - . - More sophisticated mathematics can be used to prove that the following property holds for every real number exponent t. -

      - - - Logarithms of exponential expressions -

      - For any positive real number a and any real number t, - - \ln(a^t) = t\ln(a) - . -

      -
      - -

      - The rule that \ln(a^t) = t\ln(a) is extremely powerful: by working with logarithms appropriately, it enables us to move from having a variable in an exponential expression to the variable being part of a linear expression. Moreover, it enables us to solve exponential equations exactly, regardless of the base involved. -

      - - - -

      - Solve the equation 7 \cdot 3^t - 1 = 5 exactly for t. -

      -
      - -

      - To solve for t, we first solve for 3^t. Adding 1 to both sides and dividing by 7, we find that - - 3^t = \frac{6}{7} - . - Next, we take the natural logarithm of both sides of the equation. Doing so, we have - - \ln \left( 3^t \right) = \ln \left( \frac{6}{7} \right) - . - Applying the rule for the logarithm of an exponential expression on the left, we see that - - t \ln(3) = \ln \left( \frac{6}{7} \right) - . - Both \ln(3) and \ln \left( \frac{6}{7} \right) are simply numbers, and thus we conclude that - - t = \frac{\ln \left( \frac{6}{7} \right)}{\ln(3)} - . -

      -
      -
      - -

      - The approach used in Example works in a wide range of settings: any time we have an exponential equation of the form p \cdot q^t + r = s, we can solve for t by first isolating the exponential expression q^t and then by taking the natural logarithm of both sides of the equation. -

      - - - -
      - - - The graph of the natural logarithm -

      - As the inverse of the natural exponential function E(x) = e^x, we have already established that the natural logarithm N(x) = \ln(x) has the set of all positive real numbers as its domain and the set of all real numbers as its range. In addition, being the inverse of E(x) = e^x, we know that when we plot the natural logarithm and natural exponential functions on the same coordinate axes, their graphs are reflections of one another across the line y = x, as seen in Figure and Figure. -

      - - -
      - The natural exponential and natural logarithm functions on the interval [-3,3]. -

      The natural exponential and natural logarithm functions on the interval [-3,3].

      -
      -
      -
      - The natural exponential and natural logarithm functions on the interval [-15,15]. -

      The natural exponential and natural logarithm functions on the interval [-15,15].

      -
      -
      -
      - -

      - Indeed, for any point (a,b) that lies on the graph of E(x) = e^x, it follows that the point (b,a) lies on the graph of the inverse N(x) = \ln(x). From this, we see several important properties of the graph of the logarithm function. -

      - - - The graph of <m>y = \ln(x)</m> -

      - The graph of y = \ln(x) -

        -
      • -

        - passes through the point (1,0); -

        -
      • -
      • -

        - is always increasing; -

        -
      • -
      • -

        - is always concave down; and -

        -
      • -
      • -

        - increases without bound. -

        -
      • -
      -

      -
      - -

      - Because the graph of E(x) = e^x increases more and more rapidly as x increases, the graph of N(x) = \ln(x) increases more and more slowly as x increases. Even though the natural logarithm function grows very slowly, it does grow without bound because we can make \ln(x) as large as we want by making x sufficiently large. For instance, if we want x such that \ln(x) = 100, we choose x = e^{100}, since \ln(e^{100}) = 100. -

      - -

      - While the natural exponential function and the natural logarithm (and transformations of these functions) are connected and have certain similar properties, it's also important to be able to distinguish between behavior that is fundamentally exponential and fundamentally logarithmic. -

      - - - -
      - - - Putting logarithms to work -

      - We've seen in several different settings that the function e^{kt} plays a key role in modeling phenomena in the world around us. We also understand that the value of k controls whether e^{kt} is increasing (k \gt 0) or decreasing (k \lt 0) and how fast the function is increasing or decreasing. As such, we often need to determine the value of k from data that is presented to us; doing so almost always requires the use of logarithms. -

      - - - -

      - A population of bacteria cells is growing at a rate proportionate to the number of cells present at a given time t (in hours). Suppose that the number of cells, P, in the population is measured in millions of cells and we know that P(0) = 2.475 and P(10) = 4.298. Find a model of the form P(t) = Ae^{kt} that fits this data and use it to determine the value of k and how long it will take for the population to reach 1 billion cells. -

      -
      - -

      - Since the model has form P(t) = Ae^{kt}, we know that P(0) = A. Because we are given that P(0) = 2.475, this shows that A = 2.475. To find k, we use the fact that P(10) = 4.298. Applying this information, A = 2.475, and the form of the model, P(t) = Ae^{kt}, we see that - - 4.298 = 2.475 e^{k \cdot 10} - . - To solve for k, we first isolate e^{10k} by dividing both sides by 2.475 to get - - e^{10k} = \frac{4.298}{2.475} - . - Taking the natural logarithm of each side, we find - - 10k = \ln \left( \frac{4.298}{2.475} \right) - , - and thus k = \frac{1}{10}\ln \left( \frac{4.298}{2.475} \right) \approx 0.05519. -

      - -

      - To determine how long it takes for the population to reach 1 billion cells, we need to solve the equation P(t) = 1000. Using our preceding work to find A and k, we know that we need to solve the equation - - 1000 = 2.475 e^{\frac{1}{10}\ln \left( \frac{4.298}{2.475} \right)t} - . - We divide both sides by 2.475 to get e^{\frac{1}{10}\ln \left( \frac{4.298}{2.475} \right)t} = \frac{1000}{2.475}, and after taking the natural logarithm of each side, we see - - \frac{1}{10}\ln \left( \frac{4.298}{2.475} \right)t = \ln \left( \frac{1000}{2.475} \right) - , - so that - - t = \frac{10 \ln \left( \frac{1000}{2.475} \right)}{\ln \left( \frac{4.298}{2.475} \right)} \approx 108.741 - . -

      -
      -
      - - - -
      - - - Summary - -
        -
      • -

        - There are three fundamental rules for exponents given nonzero base a and exponents m and n: - - a^m \cdot a^n = a^{m+n}, \frac{a^m}{a^n} = a^{m-n}, \text{ and } (a^m)^n = a^{mn} - . - For logarithmsWe state these rules for the natural logarithm, but they hold for any logarithm of any base., we have the following analogous structural rules for positive real numbers a and b and any real number t: - - \ln(a \cdot b) = \ln(a) + \ln(b), \ln \left( \frac{a}{b} \right) = \ln(a) - \ln(b), \text{ and } \ln(a^t) = t \ln(a) - . -

        -
      • -
      • -

        - The natural logarithm's domain is the set of all positive real numbers and its range is the set of all real numbers. Its graph passes through (1,0), is always increasing, is always concave down, and increases without bound. -

        -
      • -
      • -

        - Logarithms are very important in determining values that arise in equations of the form - - a^b = c - , - where a and c are known, but b is not. In this context, we can take the natural logarithm of both sides of the equation to find that - - \ln(a^b) = \ln(c) - - and thus b\ln(a) = \ln(c), so that b = \frac{\ln(c)}{\ln(a)}. -

        -
      • -
      - -
      - - - - - -
      + + + + + + + + + + + + + +
      + Properties and applications of logarithmic functions + +
        +
      • +

        + What structural rules do logarithms obey that are similar to rules for exponents? +

        +
      • +
      • +

        + What are the key properties of the graph of the natural logarithm function? +

        +
      • +
      • +

        + How do logarithms enable us to solve exponential equations? +

        +
      • +
      +
      + + Introduction +

      + Logarithms arise as inverses of exponential functions. In addition, we have motivated their development by our desire to solve exponential equations such as e^k = 3 for k. Because of the inverse relationship between exponential and logarithmic functions, there are several important properties logarithms have that are analogous to ones held by exponential functions. We will work to develop these properties and then show how they are useful in applied settings. +

      + + + + +
      + + + Key properties of logarithms +

      + In Preview Activity, we considered an argument for why \log_{10}(ab) = \log_{10}(a) + \log_{10}(b) for any choice of positive numbers a and b. In what follows, we develop this and other properties of the natural logarithm function; similar reasoning shows the same properties hold for logarithms of any base. +

      + +

      + Let a and b be any positive real numbers so that x = \ln(a) and y = \ln(b) are both defined. Observe that we can rewrite these two equations using the definition of the natural logarithm so that + + a = e^x \ \text{ and } \ b = e^y + . + Using substitution, we can now say that + + \ln(a \cdot b) = \ln(e^x \cdot e^y) + . + By exponent rules, we know that \ln(e^x \cdot e^y) = \ln(e^{x+y}), and because the natural logarithm and natural exponential function are inverses, \ln(e^{x+y}) = x+y. Combining the three most recent equations, + + \ln(a \cdot b) = x + y + . + Finally, recalling that x = \ln(a) and y = \ln(b), we have shown that + + \ln(a \cdot b) = \ln(a) + \ln(b) + + for any choice of positive real numbers a and b. +

      + +

      + A similar property holds for \ln(\frac{a}{b}). By nearly the same argument, we can say that + + \ln\left( \frac{a}{b} \right) &= \ln\left( \frac{e^x}{e^y} \right) + &= \ln \left( e^{x-y} \right) + &= x-y + &= \ln(a) - \ln(b) + . +

      + +

      + We have thus shown the following general principles. +

      + + + Logarithms of products and quotients + logarithmof a product + logarithmof a quotient +

      + For any positive real numbers a and b, +

        +
      • + + \ln(a \cdot b) = \ln(a) + \ln(b) + +
      • +
      • + + \ln\left( \frac{a}{b} \right) = \ln(a) - \ln(b) + +
      • +
      +

      +
      + +

      + Because positive integer exponents are a shorthand way to express repeated multiplication, we can use the multiplication rule for logarithms to think about exponents as well. For example, + + \ln(a^3) = \ln(a \cdot a \cdot a) + , + and by repeated application of the rule for the natural logarithm of a product, we see + + \ln(a^3) = \ln(a) + \ln(a) + \ln(a) = 3\ln(a) + . + A similar argument works to show that for every natural number n, + + \ln(a^n) = n\ln(a) + . + More sophisticated mathematics can be used to prove that the following property holds for every real number exponent t. +

      + + + Logarithms of exponential expressions +

      + For any positive real number a and any real number t, + + \ln(a^t) = t\ln(a) + . +

      +
      + +

      + The rule that \ln(a^t) = t\ln(a) is extremely powerful: by working with logarithms appropriately, it enables us to move from having a variable in an exponential expression to the variable being part of a linear expression. Moreover, it enables us to solve exponential equations exactly, regardless of the base involved. +

      + + + +

      + Solve the equation 7 \cdot 3^t - 1 = 5 exactly for t. +

      +
      + +

      + To solve for t, we first solve for 3^t. Adding 1 to both sides and dividing by 7, we find that + + 3^t = \frac{6}{7} + . + Next, we take the natural logarithm of both sides of the equation. Doing so, we have + + \ln \left( 3^t \right) = \ln \left( \frac{6}{7} \right) + . + Applying the rule for the logarithm of an exponential expression on the left, we see that + + t \ln(3) = \ln \left( \frac{6}{7} \right) + . + Both \ln(3) and \ln \left( \frac{6}{7} \right) are simply numbers, and thus we conclude that + + t = \frac{\ln \left( \frac{6}{7} \right)}{\ln(3)} + . +

      +
      +
      + +

      + The approach used in Example works in a wide range of settings: any time we have an exponential equation of the form p \cdot q^t + r = s, we can solve for t by first isolating the exponential expression q^t and then by taking the natural logarithm of both sides of the equation. +

      + + + +
      + + + The graph of the natural logarithm +

      + As the inverse of the natural exponential function E(x) = e^x, we have already established that the natural logarithm N(x) = \ln(x) has the set of all positive real numbers as its domain and the set of all real numbers as its range. In addition, being the inverse of E(x) = e^x, we know that when we plot the natural logarithm and natural exponential functions on the same coordinate axes, their graphs are reflections of one another across the line y = x, as seen in Figure and Figure. +

      + + +
      + The natural exponential and natural logarithm functions on the interval [-3,3]. +

      The natural exponential and natural logarithm functions on the interval [-3,3].

      +
      +
      +
      + The natural exponential and natural logarithm functions on the interval [-15,15]. +

      The natural exponential and natural logarithm functions on the interval [-15,15].

      +
      +
      +
      + +

      + Indeed, for any point (a,b) that lies on the graph of E(x) = e^x, it follows that the point (b,a) lies on the graph of the inverse N(x) = \ln(x). From this, we see several important properties of the graph of the logarithm function. +

      + + + The graph of <m>y = \ln(x)</m> +

      + The graph of y = \ln(x) +

        +
      • +

        + passes through the point (1,0); +

        +
      • +
      • +

        + is always increasing; +

        +
      • +
      • +

        + is always concave down; and +

        +
      • +
      • +

        + increases without bound. +

        +
      • +
      +

      +
      + +

      + Because the graph of E(x) = e^x increases more and more rapidly as x increases, the graph of N(x) = \ln(x) increases more and more slowly as x increases. Even though the natural logarithm function grows very slowly, it does grow without bound because we can make \ln(x) as large as we want by making x sufficiently large. For instance, if we want x such that \ln(x) = 100, we choose x = e^{100}, since \ln(e^{100}) = 100. +

      + +

      + While the natural exponential function and the natural logarithm (and transformations of these functions) are connected and have certain similar properties, it's also important to be able to distinguish between behavior that is fundamentally exponential and fundamentally logarithmic. +

      + + + +
      + + + Putting logarithms to work +

      + We've seen in several different settings that the function e^{kt} plays a key role in modeling phenomena in the world around us. We also understand that the value of k controls whether e^{kt} is increasing (k \gt 0) or decreasing (k \lt 0) and how fast the function is increasing or decreasing. As such, we often need to determine the value of k from data that is presented to us; doing so almost always requires the use of logarithms. +

      + + + +

      + A population of bacteria cells is growing at a rate proportionate to the number of cells present at a given time t (in hours). Suppose that the number of cells, P, in the population is measured in millions of cells and we know that P(0) = 2.475 and P(10) = 4.298. Find a model of the form P(t) = Ae^{kt} that fits this data and use it to determine the value of k and how long it will take for the population to reach 1 billion cells. +

      +
      + +

      + Since the model has form P(t) = Ae^{kt}, we know that P(0) = A. Because we are given that P(0) = 2.475, this shows that A = 2.475. To find k, we use the fact that P(10) = 4.298. Applying this information, A = 2.475, and the form of the model, P(t) = Ae^{kt}, we see that + + 4.298 = 2.475 e^{k \cdot 10} + . + To solve for k, we first isolate e^{10k} by dividing both sides by 2.475 to get + + e^{10k} = \frac{4.298}{2.475} + . + Taking the natural logarithm of each side, we find + + 10k = \ln \left( \frac{4.298}{2.475} \right) + , + and thus k = \frac{1}{10}\ln \left( \frac{4.298}{2.475} \right) \approx 0.05519. +

      + +

      + To determine how long it takes for the population to reach 1 billion cells, we need to solve the equation P(t) = 1000. Using our preceding work to find A and k, we know that we need to solve the equation + + 1000 = 2.475 e^{\frac{1}{10}\ln \left( \frac{4.298}{2.475} \right)t} + . + We divide both sides by 2.475 to get e^{\frac{1}{10}\ln \left( \frac{4.298}{2.475} \right)t} = \frac{1000}{2.475}, and after taking the natural logarithm of each side, we see + + \frac{1}{10}\ln \left( \frac{4.298}{2.475} \right)t = \ln \left( \frac{1000}{2.475} \right) + , + so that + + t = \frac{10 \ln \left( \frac{1000}{2.475} \right)}{\ln \left( \frac{4.298}{2.475} \right)} \approx 108.741 + . +

      +
      +
      + + + +
      + + + Summary + +
        +
      • +

        + There are three fundamental rules for exponents given nonzero base a and exponents m and n: + + a^m \cdot a^n = a^{m+n}, \frac{a^m}{a^n} = a^{m-n}, \text{ and } (a^m)^n = a^{mn} + . + For logarithmsWe state these rules for the natural logarithm, but they hold for any logarithm of any base., we have the following analogous structural rules for positive real numbers a and b and any real number t: + + \ln(a \cdot b) = \ln(a) + \ln(b), \ln \left( \frac{a}{b} \right) = \ln(a) - \ln(b), \text{ and } \ln(a^t) = t \ln(a) + . +

        +
      • +
      • +

        + The natural logarithm's domain is the set of all positive real numbers and its range is the set of all real numbers. Its graph passes through (1,0), is always increasing, is always concave down, and increases without bound. +

        +
      • +
      • +

        + Logarithms are very important in determining values that arise in equations of the form + + a^b = c + , + where a and c are known, but b is not. In this context, we can take the natural logarithm of both sides of the equation to find that + + \ln(a^b) = \ln(c) + + and thus b\ln(a) = \ln(c), so that b = \frac{\ln(c)}{\ln(a)}. +

        +
      • +
      + +
      + + + + + +
      diff --git a/source/sec-exp-log-wb.xml b/source/sec-exp-log-wb.xml index 74ec9b05..fb6cd26b 100755 --- a/source/sec-exp-log-wb.xml +++ b/source/sec-exp-log-wb.xml @@ -1,22 +1,22 @@ - - - - - - - - - - - - - -
      - What a logarithm is - - - - - - -
      + + + + + + + + + + + + + +
      + What a logarithm is + + + + + + +
      diff --git a/source/sec-exp-log.xml b/source/sec-exp-log.xml index 9ede1c5f..34e16d97 100755 --- a/source/sec-exp-log.xml +++ b/source/sec-exp-log.xml @@ -1,245 +1,246 @@ - - - - - - - - - - - - - -
      - What a logarithm is - - -
        -
      • -

        - How is the base-10 logarithm defined? -

        -
      • -
      • -

        - What is the natural logarithm and how is it different from the base-10 logarithm? -

        -
      • -
      • -

        - How can we solve an equation that involves e to some unknown quantity? -

        -
      • -
      -
      - - Introduction -

      - In Section, we introduced the idea of an inverse function. The fundamental idea is that f has an inverse function if and only if there exists another function g such that f and g undo one another's respective processes. In other words, the process of the function f is reversible, and reversing f generates a related function g. -

      - -

      - More formally, recall that a function y = f(x) (where f : A \to B) has an inverse function if and only if there exists another function g : B \to A such that g(f(x)) = x for every x in A, and f(g(y)) = y for every y in B. We know that given a function f, we can use the to determine whether or not f has an inverse function. Finally, whenever a function f has an inverse function, we call its inverse function f^{-1} and know that the two equations y = f(x) and x = f^{-1}(y) say the same thing from different perspectives. -

      - - - -
      - - - The base-<m>10</m> logarithm -

      - The powers-of-10 function P(t) = 10^t is an exponential function with base b \gt 1. As such, P is always increasing, and thus its graph passes the , so P has an inverse function. We therefore know there exists some other function, L, such that writing y = P(t) is equivalent to writing t = L(y). For instance, we know that P(2)=100 and P(-3)=\frac{1}{1000}, so it's equivalent to say that L(100) = 2 and L(\frac{1}{1000}) = -3. This new function L we call the base 10 logarithm, which is formally defined as follows. -

      - - - logarithmbase 10definition - -

      - Given a positive real number y, the base-10 logarithm of y is the power to which we raise 10 to get y. We use the notation \log_{10}(y) to denote the base-10 logarithm of y. -

      -
      -
      - -

      - The base-10 logarithm is therefore the inverse of the powers of 10 function. Whereas P(t) = 10^t takes an input whose value is an exponent and produces the result of taking 10 to that power, the base-10 logarithm takes an input number we view as a power of 10 and produces the corresponding exponent such that 10 to that exponent is the input number. -

      - -

      - In the notation of logarithms, we can now update our earlier observations with the functions P and L and see how exponential equations can be written in two equivalent ways. For instance, - - 10^2 = 100 \text{ and } \log_{10}(100) = 2 - - each say the same thing from two different perspectives. The first says 100 is 10 to the power 2, while the second says 2 is the power to which we raise 10 to get 100. Similarly, - - 10^{-3} = \frac{1}{1000} \text{ and } \log_{10} \left( \frac{1}{1000} \right) = -3 - . -

      - -

      - If we rearrange the statements of the facts in Equation, we can see yet another important relationship between the powers of 10 and base-10 logarithm function. Noting that \log_{10}(100) = 2 and 100 = 10^2 are equivalent statements, and substituting the latter equation into the former, we see that - - \log_{10}(10^2) = 2 - . - In words, Equation says that the power to which we raise 10 to get 10^2, is 2. That is, the base-10 logarithm function undoes the work of the powers of 10 function. -

      - -

      - In a similar way, if we rearrange the statements in Equation, we can observe that by replacing -3 with \log_{10}(\frac{1}{1000}) we have - - 10^{\log_{10}(\frac{1}{1000})} = \frac{1}{1000} - . - In words, Equation says that when 10 is raised to the power to which we raise 10 in order to get \frac{1}{1000}, we get \frac{1}{1000}. -

      - -

      - We summarize the key relationships between the powers-of-10 function and its inverse, the base-10 logarithm function, more generally as follows. -

      - - - <m>P(t) = 10^t</m> and <m>L(y) = \log_{10}(y)</m> -

      -

        -
      • -

        - The domain of P is the set of all real numbers and the range of P is the set of all positive real numbers. -

        -
      • -
      • -

        - The domain of L is the set of all positive real numbers and the range of L is the set of all real numbers. -

        -
      • -
      • -

        - For any real number t, \log_{10}(10^t) = t. That is, L(P(t)) = t. -

        -
      • -
      • -

        - For any positive real number y, 10^{\log_{10}(y)} = y. That is, P(L(y)) = y. -

        -
      • -
      • -

        - 10^0 = 1 and \log_{10}(1) = 0. -

        -
      • -
      -

      -
      - -

      - The base-10 logarithm function is like the sine or cosine function in this way: for certain special values, it's easy to know the value of the logarithm function. While for sine and cosine the familiar points come from specially placed points on the unit circle, for the base-10 logarithm function, the familiar points come from powers of 10. - In addition, like sine and cosine, for all other input values, (a) calculus ultimately determines the value of the base-10 logarithm function at other values, and (b) we use computational technology in order to compute these values. For most computational devices, the command log(y) produces the result of the base-10 logarithm of y. -

      - -

      - It's important to note that the logarithm function produces exact values. For instance, if we want to solve the equation 10^t = 5, then it follows that t = \log_{10}(5) is the exact solution to the equation. Like \sqrt{2} or \cos(1), \log_{10}(5) is a number that is an exact value. A computational device can give us a decimal approximation, and we normally want to distinguish between the exact value and the approximate one. For the three different numbers here, \sqrt{2} \approx 1.414, \cos(1) \approx 0.540, and \log_{10}(5) \approx 0.699. -

      - - - -
      - - - The natural logarithm -

      - The base-10 logarithm is a good starting point for understanding how logarithmic functions work because powers of 10 are easy to mentally compute. We could similarly consider the powers of 2 or powers of 3 function and develop a corresponding logarithm of base 2 or 3. But rather than have a whole collection of different logarithm functions, in the same way that we now use the function e^t and appropriate scaling to represent any exponential function, we develop a single logarithm function that we can use to represent any other logarithmic function through scaling. In correspondence with the natural exponential function, e^t, we now develop its inverse function, and call this inverse function the natural logarithm. -

      - - - logarithmnaturaldefinition - -

      - Given a positive real number y, the natural logarithm of y is the power to which we raise e to get y. We use the notation \ln(y) to denote the natural logarithm of y. -

      -
      -
      - -

      - We can think of the natural logarithm, \ln(y), as the base-e logarithm. For instance, - - \ln(e^{-1}) = -1 - - and - - e^{\ln(2)} = 2 - . - The former equation is true since the power to which we raise e to get e^{-1} is -1; the latter equation is true since when we raise e to the power to which we raise e to get 2, we get 2. The key relationships between the natural exponential and the natural logarithm function are investigated in Activity. -

      - - - -
      - - - <m>f(t) = b^t</m> revisited -

      - In Section and Section, we saw that that function f(t) = b^t plays a key role in modeling exponential growth and decay, and that the value of b not only determines whether the function models growth (b \gt 1) or decay (0 \lt b \lt 1), but also how fast the growth or decay occurs. Furthermore, once we introduced the natural base e in Section, we realized that we could write every exponential function of form f(t) = b^t as a horizontal scaling of the function E(t) = e^t by writing - - b^t = f(t) = E(kt) = e^{kt} - - for some value k. Our development of the natural logarithm function in the current section enables us to now determine k exactly. -

      - - - -

      - Determine the exact value of k for which f(t) = 3^t = e^{kt}. -

      - -

      - Solution. Since we want 3^t = e^{kt} to hold for every value of t and e^{kt} = (e^k)^t, we need to have 3^t = (e^k)^t, and thus 3 = e^k. Therefore, k is the power to which we raise e to get 3, which by definition means that k = \ln(3). -

      -
      -
      - -

      - In modeling important phenomena using exponential functions, we will frequently encounter equations where the variable is in the exponent, like in Example where we had to solve e^k = 3. It is in this context where logarithms find one of their most powerful applications. Activity provides some opportunities to practice solving equations involving the natural base, e, and the natural logarithm. -

      - - - -
      - - - Summary - -
        -
      • -

        - The base-10 logarithm of y, denoted \log_{10}(y), is defined to be the power to which we raise 10 to get y. For instance, \log_{10}(1000) = 3, since 10^3 = 1000. The function L(y) = \log_{10}(y) is thus the inverse of the powers-of-10 function, P(t) = 10^t. -

        -
      • -
      • -

        - The natural logarithm N(y) = \ln(y) differs from the base-10 logarithm in that it is the logarithm with base e instead of 10, and thus \ln(y) is the power to which we raise e to get y. The function N(y) = \ln(y) is the inverse of the natural exponential function E(t) = e^t. -

        -
      • -
      • -

        - The natural logarithm often enables us to solve an equation that involves e to some unknown quantity. For instance, to solve 2e^{3t-4} + 5 = 13, we can first solve for e^{3t-4} by subtracting 5 from each side and dividing by 2 to get - - e^{3t-4} = 4 - . - This last equation says e to some power is 4. We know that it is equivalent to say - - \ln(4) = 3t-4 - . - Since \ln(4) is a number, we can solve this most recent linear equation for t. In particular, 3t = 4 + \ln(4), so - - t = \frac{1}{3}(4 + \ln(4)) - . -

        -
      • -
      - -
      - - - - - -
      + + + + + + + + + + + + + +
      + What a logarithm is + + +
        +
      • +

        + How is the base-10 logarithm defined? +

        +
      • +
      • +

        + What is the natural logarithm and how is it different from the base-10 logarithm? +

        +
      • +
      • +

        + How can we solve an equation that involves e to some unknown quantity? +

        +
      • +
      +
      + + Introduction +

      + In Section, we introduced the idea of an inverse function. The fundamental idea is that f has an inverse function if and only if there exists another function g such that f and g undo one another's respective processes. In other words, the process of the function f is reversible, and reversing f generates a related function g. +

      + +

      + More formally, recall that a function y = f(x) (where f : A \to B) has an inverse function if and only if there exists another function g : B \to A such that g(f(x)) = x for every x in A, and f(g(y)) = y for every y in B. We know that given a function f, we can use the to determine whether or not f has an inverse function. Finally, whenever a function f has an inverse function, we call its inverse function f^{-1} and know that the two equations y = f(x) and x = f^{-1}(y) say the same thing from different perspectives. +

      + + + + +
      + + + The base-<m>10</m> logarithm +

      + The powers-of-10 function P(t) = 10^t is an exponential function with base b \gt 1. As such, P is always increasing, and thus its graph passes the , so P has an inverse function. We therefore know there exists some other function, L, such that writing y = P(t) is equivalent to writing t = L(y). For instance, we know that P(2)=100 and P(-3)=\frac{1}{1000}, so it's equivalent to say that L(100) = 2 and L(\frac{1}{1000}) = -3. This new function L we call the base 10 logarithm, which is formally defined as follows. +

      + + + logarithmbase 10definition + +

      + Given a positive real number y, the base-10 logarithm of y is the power to which we raise 10 to get y. We use the notation \log_{10}(y) to denote the base-10 logarithm of y. +

      +
      +
      + +

      + The base-10 logarithm is therefore the inverse of the powers of 10 function. Whereas P(t) = 10^t takes an input whose value is an exponent and produces the result of taking 10 to that power, the base-10 logarithm takes an input number we view as a power of 10 and produces the corresponding exponent such that 10 to that exponent is the input number. +

      + +

      + In the notation of logarithms, we can now update our earlier observations with the functions P and L and see how exponential equations can be written in two equivalent ways. For instance, + + 10^2 = 100 \text{ and } \log_{10}(100) = 2 + + each say the same thing from two different perspectives. The first says 100 is 10 to the power 2, while the second says 2 is the power to which we raise 10 to get 100. Similarly, + + 10^{-3} = \frac{1}{1000} \text{ and } \log_{10} \left( \frac{1}{1000} \right) = -3 + . +

      + +

      + If we rearrange the statements of the facts in Equation, we can see yet another important relationship between the powers of 10 and base-10 logarithm function. Noting that \log_{10}(100) = 2 and 100 = 10^2 are equivalent statements, and substituting the latter equation into the former, we see that + + \log_{10}(10^2) = 2 + . + In words, Equation says that the power to which we raise 10 to get 10^2, is 2. That is, the base-10 logarithm function undoes the work of the powers of 10 function. +

      + +

      + In a similar way, if we rearrange the statements in Equation, we can observe that by replacing -3 with \log_{10}(\frac{1}{1000}) we have + + 10^{\log_{10}(\frac{1}{1000})} = \frac{1}{1000} + . + In words, Equation says that when 10 is raised to the power to which we raise 10 in order to get \frac{1}{1000}, we get \frac{1}{1000}. +

      + +

      + We summarize the key relationships between the powers-of-10 function and its inverse, the base-10 logarithm function, more generally as follows. +

      + + + <m>P(t) = 10^t</m> and <m>L(y) = \log_{10}(y)</m> +

      +

        +
      • +

        + The domain of P is the set of all real numbers and the range of P is the set of all positive real numbers. +

        +
      • +
      • +

        + The domain of L is the set of all positive real numbers and the range of L is the set of all real numbers. +

        +
      • +
      • +

        + For any real number t, \log_{10}(10^t) = t. That is, L(P(t)) = t. +

        +
      • +
      • +

        + For any positive real number y, 10^{\log_{10}(y)} = y. That is, P(L(y)) = y. +

        +
      • +
      • +

        + 10^0 = 1 and \log_{10}(1) = 0. +

        +
      • +
      +

      +
      + +

      + The base-10 logarithm function is like the sine or cosine function in this way: for certain special values, it's easy to know the value of the logarithm function. While for sine and cosine the familiar points come from specially placed points on the unit circle, for the base-10 logarithm function, the familiar points come from powers of 10. + In addition, like sine and cosine, for all other input values, (a) calculus ultimately determines the value of the base-10 logarithm function at other values, and (b) we use computational technology in order to compute these values. For most computational devices, the command log(y) produces the result of the base-10 logarithm of y. +

      + +

      + It's important to note that the logarithm function produces exact values. For instance, if we want to solve the equation 10^t = 5, then it follows that t = \log_{10}(5) is the exact solution to the equation. Like \sqrt{2} or \cos(1), \log_{10}(5) is a number that is an exact value. A computational device can give us a decimal approximation, and we normally want to distinguish between the exact value and the approximate one. For the three different numbers here, \sqrt{2} \approx 1.414, \cos(1) \approx 0.540, and \log_{10}(5) \approx 0.699. +

      + + + +
      + + + The natural logarithm +

      + The base-10 logarithm is a good starting point for understanding how logarithmic functions work because powers of 10 are easy to mentally compute. We could similarly consider the powers of 2 or powers of 3 function and develop a corresponding logarithm of base 2 or 3. But rather than have a whole collection of different logarithm functions, in the same way that we now use the function e^t and appropriate scaling to represent any exponential function, we develop a single logarithm function that we can use to represent any other logarithmic function through scaling. In correspondence with the natural exponential function, e^t, we now develop its inverse function, and call this inverse function the natural logarithm. +

      + + + logarithmnaturaldefinition + +

      + Given a positive real number y, the natural logarithm of y is the power to which we raise e to get y. We use the notation \ln(y) to denote the natural logarithm of y. +

      +
      +
      + +

      + We can think of the natural logarithm, \ln(y), as the base-e logarithm. For instance, + + \ln(e^{-1}) = -1 + + and + + e^{\ln(2)} = 2 + . + The former equation is true since the power to which we raise e to get e^{-1} is -1; the latter equation is true since when we raise e to the power to which we raise e to get 2, we get 2. The key relationships between the natural exponential and the natural logarithm function are investigated in Activity. +

      + + + +
      + + + <m>f(t) = b^t</m> revisited +

      + In Section and Section, we saw that that function f(t) = b^t plays a key role in modeling exponential growth and decay, and that the value of b not only determines whether the function models growth (b \gt 1) or decay (0 \lt b \lt 1), but also how fast the growth or decay occurs. Furthermore, once we introduced the natural base e in Section, we realized that we could write every exponential function of form f(t) = b^t as a horizontal scaling of the function E(t) = e^t by writing + + b^t = f(t) = E(kt) = e^{kt} + + for some value k. Our development of the natural logarithm function in the current section enables us to now determine k exactly. +

      + + + +

      + Determine the exact value of k for which f(t) = 3^t = e^{kt}. +

      + +

      + Solution. Since we want 3^t = e^{kt} to hold for every value of t and e^{kt} = (e^k)^t, we need to have 3^t = (e^k)^t, and thus 3 = e^k. Therefore, k is the power to which we raise e to get 3, which by definition means that k = \ln(3). +

      +
      +
      + +

      + In modeling important phenomena using exponential functions, we will frequently encounter equations where the variable is in the exponent, like in Example where we had to solve e^k = 3. It is in this context where logarithms find one of their most powerful applications. Activity provides some opportunities to practice solving equations involving the natural base, e, and the natural logarithm. +

      + + + +
      + + + Summary + +
        +
      • +

        + The base-10 logarithm of y, denoted \log_{10}(y), is defined to be the power to which we raise 10 to get y. For instance, \log_{10}(1000) = 3, since 10^3 = 1000. The function L(y) = \log_{10}(y) is thus the inverse of the powers-of-10 function, P(t) = 10^t. +

        +
      • +
      • +

        + The natural logarithm N(y) = \ln(y) differs from the base-10 logarithm in that it is the logarithm with base e instead of 10, and thus \ln(y) is the power to which we raise e to get y. The function N(y) = \ln(y) is the inverse of the natural exponential function E(t) = e^t. +

        +
      • +
      • +

        + The natural logarithm often enables us to solve an equation that involves e to some unknown quantity. For instance, to solve 2e^{3t-4} + 5 = 13, we can first solve for e^{3t-4} by subtracting 5 from each side and dividing by 2 to get + + e^{3t-4} = 4 + . + This last equation says e to some power is 4. We know that it is equivalent to say + + \ln(4) = 3t-4 + . + Since \ln(4) is a number, we can solve this most recent linear equation for t. In particular, 3t = 4 + \ln(4), so + + t = \frac{1}{3}(4 + \ln(4)) + . +

        +
      • +
      + +
      + + + + + +
      diff --git a/source/sec-exp-modeling-wb.xml b/source/sec-exp-modeling-wb.xml index 06da3d64..57ff90b7 100755 --- a/source/sec-exp-modeling-wb.xml +++ b/source/sec-exp-modeling-wb.xml @@ -1,22 +1,22 @@ - - - - - - - - - - - - - -
      - Modeling with exponential functions - - - - - - -
      + + + + + + + + + + + + + +
      + Modeling with exponential functions + + + + + + +
      diff --git a/source/sec-exp-modeling.xml b/source/sec-exp-modeling.xml index a771a0f8..79e9487f 100755 --- a/source/sec-exp-modeling.xml +++ b/source/sec-exp-modeling.xml @@ -1,403 +1,404 @@ - - - - - - - - - - - - - -
      - Modeling with exponential functions - - -
        -
      • -

        - What can we say about the behavior of an exponential function as the input gets larger and larger? -

        -
      • -
      • -

        - How do vertical stretches and shifts of an exponential function affect its behavior? -

        -
      • -
      • -

        - Why is the temperature of a cooling or warming object modeled by a function of the form F(t) = ab^t + c? -

        -
      • -
      -
      - - Introduction -

      - If a quantity changes so that its growth or decay occurs at a constant percentage rate with respect to time, the function is exponential. This is because if the growth or decay rate is r, the total amount of the quantity at time t is given by - - A(t) = a(1+r)^t - , - where a is the amount present at time t = 0. Many different natural quantities change according to exponential models: money growth through compounding interest, the growth of a population of cells, and the decay of radioactive elements. -

      - -

      - A related situation arises when an object's temperature changes in response to its surroundings. For instance, if we have a cup of coffee at an initial temperature of 186^\circ Fahrenheit and the cup is placed in a room where the surrounding temperature is 71^\circ, our intuition and experience tell us that over time the coffee will cool and eventually tend to the 71^\circ temperature of the surroundings. From an experiment See http://gvsu.edu/s/0SB for this data. with an actual temperature probe, we have the data in Table that is plotted in Figure. -

      - - - Data for cooling coffee, measured in degrees Fahrenheit at time <m>t</m> in minutes. - - - t - 0 - 1 - 2 - 3 - 8 - 13 - - - F(t) - 186 - 179 - 175 - 171 - 156 - 144 - - - - - - - - - - - - 18 - 23 - 28 - 33 - 38 - 43 - 48 - - - 135 - 127 - 120 - 116 - 111 - 107 - 104 - - -
      - -
      - A plot of the data in Table. -

      A plot of the data in Table.

      -
      -
      - - -

      - In one sense, the data looks exponential: the points appear to lie on a curve that is always decreasing and decreasing at an increasing rate. However, we know that the function can't have the form f(t) = ab^t because such a function's range is the set of all positive real numbers, and it's impossible for the coffee's temperature to fall below room temperature (71^\circ). It is natural to wonder if a function of the form g(t) = ab^t + c will work. Thus, in order to find a function that fits the data in a situation such as Figure, we begin by investigating and understanding the roles of a, b, and c in the behavior of g(t) = ab^t + c. -

      - - - -
      - - - Long-term behavior of exponential functions -

      - We have already established that any exponential function of the form f(t) = ab^t where a and b are positive real numbers with b \ne 1 is always concave up and is either always increasing or always decreasing. We next introduce precise language to describe the behavior of an exponential function's value as t gets bigger and bigger. To start, let's consider the two basic exponential functions p(t) = 2^t and q(t) = (\frac{1}{2})^t and their respective values at t = 10, t = 20, and t = 30, as displayed in Table and Table. -

      - - - - Data for <m>p(t) = 2^t</m>. - - - t - p(t) - - - 10 - 2^{10} = 1024 - - - 20 - 2^{20} = 1048576 - - - 30 - 2^{30} = 1073741824 - - -
      - - Data for <m>q(t) = (\frac{1}{2})^t</m>. - - - t - q(t) - - - 10 - (\frac{1}{2})^{10} = \frac{1}{1024} \approx 0.00097656 - - - 20 - (\frac{1}{2})^{20} = \frac{1}{1048576} \approx 0.00000095367 - - - 30 - (\frac{1}{2})^{30} = \frac{1}{1073741824} \approx 0.00000000093192 - - -
      -
      - -

      - For the increasing function p(t) = 2^t, we see that the output of the function gets very large very quickly. In addition, there is no upper bound to how large the function can be. Indeed, we can make the value of p(t) as large as we'd like by taking t sufficiently big. We thus say that as t increases, p(t) increases without bound. increasingwithout bound -

      - -

      - For the decreasing function q(t) = (\frac{1}{2})^t, we see that the output q(t) is always positive but getting closer and closer to 0. Indeed, because we can make 2^t as large as we like, it follows that we can make its reciprocal \frac{1}{2^t} = (\frac{1}{2})^t as small as we'd like. We thus say that as t increases, q(t) approaches 0. approaching 0 -

      - -

      - To represent these two common phenomena with exponential functionsthe value increasing without bound or the value approaching 0we will use shorthand notation. First, it is natural to write q(t) \to 0 as t increases without bound. Moreover, since we have the notion of the infinite to represent quantities without bound, we use the symbol for infinity and arrow notation infinity (\infty) and write p(t) \to \infty as t increases without bound in order to indicate that p(t) increases without bound. -

      - -

      - In Preview Activity, we saw how the value of b affects the steepness of the graph of f(t) = ab^t, as well as how all graphs with b \gt 1 have the similar increasing behavior, and all graphs with 0 \lt b \lt 1 have similar decreasing behavior. For instance, by taking t sufficiently large, we can make (1.01)^t as large as we want; it just takes much larger t to make (1.01)^t big in comparison to 2^t. In the same way, we can make (0.99)^t as close to 0 as we wish by taking t sufficiently big, even though it takes longer for (0.99)^t to get close to 0 in comparison to (\frac{1}{2})^t. For an arbitrary choice of b, we can say the following. -

      - - - Long-term behavior of exponential functions -

      - Let f(t) = b^t with b \gt 0 and b \ne 1. - -

        -
      • -

        - If 0 \lt b \lt 1, then b^t \to 0 as t \to \infty. We read this notation as b^t tends to 0 as t increases without bound. -

        -
      • -
      • -

        - If b \gt 1, then b^t \to \infty as t \to \infty. We read this notation as b^t increases without bound as t increases without bound. -

        -
      • -
      -

      -
      - -

      - In addition, we make a key observation about the use of exponents. For the function q(t) = (\frac{1}{2})^t, there are three equivalent ways we may write the function: - - \left( \frac{1}{2} \right)^t = \frac{1}{2^t} = 2^{-t} - . - In our work with transformations involving horizontal scaling in Exercise, we saw that the graph of y = h(-t) is the reflection of the graph of y = h(t) across the y-axis. Therefore, we can say that the graphs of p(t) = 2^t and q(t) = (\frac{1}{2})^t = 2^{-t} are reflections of one another in the y-axis since p(-t) = 2^{-t} = q(t). We see this fact verified in Figure. -

      - -
      - Plots of p(t) = 2^t and q(t) = 2^{-t}. -

      Plots of p(t) = 2^t and q(t) = 2^{-t}.

      -
      -
      - -

      - Similar observations hold for the relationship between the graphs of b^{t} and \frac{1}{b^t} = b^{-t} for any positive b \ne 1. -

      - -
      - - - The role of <m>c</m> in <m>g(t) = ab^t + c</m> -

      - The function g(t) = ab^t + c is a vertical translation of the function f(t) = ab^t. We now have extensive understanding of the behavior of f(t) and how that behavior depends on a and b. Since a vertical translation by c does not change the shape of any graph, we expect that g will exhibit very similar behavior to f. Indeed, we can compare the two functions' graphs as shown in Figure and Figure and then make the following general observations. -

      - - -
      - Plot of f(t) = ab^t. -

      Plot of f(t) = ab^t.

      -
      -
      -
      - Plot of g(t) = ab^t+c. -

      Plot of g(t) = ab^t+c.

      -
      -
      -
      - - - Behavior of vertically shifted exponential functions -

      - Let g(t) = ab^t + c with a \gt 0, b \gt 0 and b \ne 1, and c any real number. - -

        -
      • -

        - If 0 \lt b \lt 1, then g(t) = ab^t + c \to c as t \to \infty. The function g is always decreasing, always concave up, and has y-intercept (0,a+c). The range of the function is all real numbers greater than c. -

        -
      • -
      • -

        - If b \gt 1, then g(t) = ab^t + c \to \infty as t \to \infty. The function g is always increasing, always concave up, and has y-intercept (0,a+c). The range of the function is all real numbers greater than c. -

        -
      • -
      -

      -
      - -

      - It is also possible to have a \lt 0. In this situation, because g(t) = ab^t is both a reflection of f(t) = b^t across the x-axis and a vertical stretch by |a|, the function g is always concave down. If 0 \lt b \lt 1 so that f is always decreasing, then g is always increasing; if instead b \gt 1 so f is increasing, then g is decreasing. Moreover, instead of the range of the function g having a lower bound as when a \gt 0, in this setting the range of g has an upper bound. These ideas are explored further in Activity. -

      - -

      - It's an important skill to be able to look at an exponential function of the form g(t) = ab^t + c and form an accurate mental picture of the graph's main features in light of the values of a, b, and c. -

      - - - -
      - - - Modeling temperature data - -

      - Newton's Law of Cooling Newton's Law of Cooling states that the rate that an object warms or cools occurs in direct proportion to the difference between its own temperature and the temperature of its surroundings. If we return to the coffee temperature data in Table and recall that the room temperature in that experiment was 71^\circ, we can see how to use a transformed exponential function to model the data. In Table, we add a row of information to the table where we compute F(t)-71 to subtract the room temperature from each reading. -

      - - - Data for cooling coffee, measured in degrees Fahrenheit at time <m>t</m> in minutes, plus shifted to account for room temperature. - - - t - 0 - 1 - 2 - 3 - 8 - 13 - 18 - 23 - 28 - 33 - 38 - 43 - 48 - - - F(t) - 186 - 179 - 175 - 171 - 156 - 144 - 135 - 127 - 120 - 116 - 111 - 107 - 104 - - - f(t) = F(t) - 71 - 115 - 108 - 104 - 100 - 85 - 73 - 64 - 56 - 49 - 45 - 40 - 36 - 33 - - - -
      - -

      - The data in the bottom row of Table appears exponential, and if we test the data by computing the quotients of output values that correspond to equally-spaced input, we see a nearly constant ratio. In particular, - - \frac{73}{85} \approx 0.86, \ \frac{64}{73} \approx 0.88, \ \frac{56}{64} \approx 0.88, \ \frac{49}{56} \approx 0.88, \ \frac{45}{49} \approx 0.92, \text{and} \frac{40}{45} \approx 0.89 - . - Of course, there is some measurement error in the data (plus it is only recorded to accuracy of whole degrees), so these computations provide convincing evidence that the underlying function is exponential. In addition, we expect that if the data continued in the bottom row of Table, the values would approach 0 because F(t) will approach 71. -

      - - -
      - Plot of f(t) = 103.503 (0.974)^t. -

      Plot of f(t) = 103.503 (0.974)^t.

      -
      -
      -
      - Plot of F(t) = 103.503 (0.974)^t + 71. -

      Plot of F(t) = 103.503 (0.974)^t + 71.

      -
      -
      -
      - -

      - If we choose two of the data points, say (18,64) and (23,56), and assume that f(t) = ab^t, we can determine the values of a and b. Doing so, it turns out that a \approx 103.503 and b \approx 0.974, so f(t) = 103.503 ( 0.974)^t. Since f(t) = F(t) - 71, we see that F(t) = f(t) + 71, so F(t) = 103.503 (0.974)^t + 71. Plotting f against the shifted data and F along with the original data in Figure and Figure, we see that the curves go exactly through the points where t = 18 and t = 23 as expected, but also that the function provides a reasonable model for the observed behavior at any time t. If our data was even more accurate, we would expect that the curve's fit would be even better. -

      - -

      - Our preceding work with the coffee data can be done similarly with data for any cooling or warming object whose temperature initially differs from its surroundings. Indeed, it is possible to show that Newton's Law of Cooling implies that the object's temperature is given by a function of the form F(t) = ab^t + c. -

      - - - - - -
      - - - Summary -

      -

        -
      • -

        - For an exponential function of the form f(t) = b^t, the function either approaches zero or grows without bound as the input gets larger and larger. In particular, if 0 \lt b \lt 1, then f(t) = b^t \to 0 as t \to \infty, while if b \gt 1, then f(t) = b^t \to \infty as t \to \infty. Scaling f by a positive value a (that is, the transformed function ab^t) does not affect the long-range behavior: whether the function tends to 0 or increases without bound depends solely on whether b is less than or greater than 1. -

        -
      • -
      • -

        - The function f(t) = b^t passes through (0,1), is always concave up, is either always increasing or always decreasing, and its range is the set of all positive real numbers. Among these properties, a vertical stretch by a positive value a only affects the y-intercept, which is instead (0,a). If we include a vertical shift and write g(t) = ab^t + c, the biggest change is that the range of g is the set of all real numbers greater than c. In addition, the y-intercept of g is (0,a+c). -

        - -

        - In the situation where a \lt 0, several other changes are induced. Here, because g(t) = ab^t is both a reflection of f(t) = b^t across the x-axis and a vertical stretch by |a|, the function g is now always concave down. If 0 \lt b \lt 1 so that f is always decreasing, then g (the reflected function) is now always increasing; if instead b \gt 1 so f is increasing, then g is decreasing. Finally, if a \lt 0, then the range of g(t) = ab^t + c is the set of all real numbers less than c. -

        -
      • -
      • -

        - An exponential function can be thought of as a function that changes at a rate proportional to itself, like how money grows with compound interest or the amount of a radioactive quantity decays. Newton's Law of Cooling says that the rate of change of an object's temperature is proportional to the difference between its own temperature and the temperature of its surroundings. This leads to the function that measures the difference between the object's temperature and room temperature being exponential, and hence the object's temperature itself is a vertically-shifted exponential function of the form F(t) = ab^t + c. -

        -
      • -
      -

      -
      - - - - - - -
      + + + + + + + + + + + + + +
      + Modeling with exponential functions + + +
        +
      • +

        + What can we say about the behavior of an exponential function as the input gets larger and larger? +

        +
      • +
      • +

        + How do vertical stretches and shifts of an exponential function affect its behavior? +

        +
      • +
      • +

        + Why is the temperature of a cooling or warming object modeled by a function of the form F(t) = ab^t + c? +

        +
      • +
      +
      + + Introduction +

      + If a quantity changes so that its growth or decay occurs at a constant percentage rate with respect to time, the function is exponential. This is because if the growth or decay rate is r, the total amount of the quantity at time t is given by + + A(t) = a(1+r)^t + , + where a is the amount present at time t = 0. Many different natural quantities change according to exponential models: money growth through compounding interest, the growth of a population of cells, and the decay of radioactive elements. +

      + +

      + A related situation arises when an object's temperature changes in response to its surroundings. For instance, if we have a cup of coffee at an initial temperature of 186^\circ Fahrenheit and the cup is placed in a room where the surrounding temperature is 71^\circ, our intuition and experience tell us that over time the coffee will cool and eventually tend to the 71^\circ temperature of the surroundings. From an experiment See http://gvsu.edu/s/0SB for this data. with an actual temperature probe, we have the data in Table that is plotted in Figure. +

      + + + Data for cooling coffee, measured in degrees Fahrenheit at time <m>t</m> in minutes. + + + t + 0 + 1 + 2 + 3 + 8 + 13 + + + F(t) + 186 + 179 + 175 + 171 + 156 + 144 + + + + + + + + + + + + 18 + 23 + 28 + 33 + 38 + 43 + 48 + + + 135 + 127 + 120 + 116 + 111 + 107 + 104 + + +
      + +
      + A plot of the data in Table. +

      A plot of the data in Table.

      +
      +
      + + +

      + In one sense, the data looks exponential: the points appear to lie on a curve that is always decreasing and decreasing at an increasing rate. However, we know that the function can't have the form f(t) = ab^t because such a function's range is the set of all positive real numbers, and it's impossible for the coffee's temperature to fall below room temperature (71^\circ). It is natural to wonder if a function of the form g(t) = ab^t + c will work. Thus, in order to find a function that fits the data in a situation such as Figure, we begin by investigating and understanding the roles of a, b, and c in the behavior of g(t) = ab^t + c. +

      + + + + +
      + + + Long-term behavior of exponential functions +

      + We have already established that any exponential function of the form f(t) = ab^t where a and b are positive real numbers with b \ne 1 is always concave up and is either always increasing or always decreasing. We next introduce precise language to describe the behavior of an exponential function's value as t gets bigger and bigger. To start, let's consider the two basic exponential functions p(t) = 2^t and q(t) = (\frac{1}{2})^t and their respective values at t = 10, t = 20, and t = 30, as displayed in Table and Table. +

      + + + + Data for <m>p(t) = 2^t</m>. + + + t + p(t) + + + 10 + 2^{10} = 1024 + + + 20 + 2^{20} = 1048576 + + + 30 + 2^{30} = 1073741824 + + +
      + + Data for <m>q(t) = (\frac{1}{2})^t</m>. + + + t + q(t) + + + 10 + (\frac{1}{2})^{10} = \frac{1}{1024} \approx 0.00097656 + + + 20 + (\frac{1}{2})^{20} = \frac{1}{1048576} \approx 0.00000095367 + + + 30 + (\frac{1}{2})^{30} = \frac{1}{1073741824} \approx 0.00000000093192 + + +
      +
      + +

      + For the increasing function p(t) = 2^t, we see that the output of the function gets very large very quickly. In addition, there is no upper bound to how large the function can be. Indeed, we can make the value of p(t) as large as we'd like by taking t sufficiently big. We thus say that as t increases, p(t) increases without bound. increasingwithout bound +

      + +

      + For the decreasing function q(t) = (\frac{1}{2})^t, we see that the output q(t) is always positive but getting closer and closer to 0. Indeed, because we can make 2^t as large as we like, it follows that we can make its reciprocal \frac{1}{2^t} = (\frac{1}{2})^t as small as we'd like. We thus say that as t increases, q(t) approaches 0. approaching 0 +

      + +

      + To represent these two common phenomena with exponential functionsthe value increasing without bound or the value approaching 0we will use shorthand notation. First, it is natural to write q(t) \to 0 as t increases without bound. Moreover, since we have the notion of the infinite to represent quantities without bound, we use the symbol for infinity and arrow notation infinity (\infty) and write p(t) \to \infty as t increases without bound in order to indicate that p(t) increases without bound. +

      + +

      + In Preview Activity, we saw how the value of b affects the steepness of the graph of f(t) = ab^t, as well as how all graphs with b \gt 1 have the similar increasing behavior, and all graphs with 0 \lt b \lt 1 have similar decreasing behavior. For instance, by taking t sufficiently large, we can make (1.01)^t as large as we want; it just takes much larger t to make (1.01)^t big in comparison to 2^t. In the same way, we can make (0.99)^t as close to 0 as we wish by taking t sufficiently big, even though it takes longer for (0.99)^t to get close to 0 in comparison to (\frac{1}{2})^t. For an arbitrary choice of b, we can say the following. +

      + + + Long-term behavior of exponential functions +

      + Let f(t) = b^t with b \gt 0 and b \ne 1. + +

        +
      • +

        + If 0 \lt b \lt 1, then b^t \to 0 as t \to \infty. We read this notation as b^t tends to 0 as t increases without bound. +

        +
      • +
      • +

        + If b \gt 1, then b^t \to \infty as t \to \infty. We read this notation as b^t increases without bound as t increases without bound. +

        +
      • +
      +

      +
      + +

      + In addition, we make a key observation about the use of exponents. For the function q(t) = (\frac{1}{2})^t, there are three equivalent ways we may write the function: + + \left( \frac{1}{2} \right)^t = \frac{1}{2^t} = 2^{-t} + . + In our work with transformations involving horizontal scaling in Exercise, we saw that the graph of y = h(-t) is the reflection of the graph of y = h(t) across the y-axis. Therefore, we can say that the graphs of p(t) = 2^t and q(t) = (\frac{1}{2})^t = 2^{-t} are reflections of one another in the y-axis since p(-t) = 2^{-t} = q(t). We see this fact verified in Figure. +

      + +
      + Plots of p(t) = 2^t and q(t) = 2^{-t}. +

      Plots of p(t) = 2^t and q(t) = 2^{-t}.

      +
      +
      + +

      + Similar observations hold for the relationship between the graphs of b^{t} and \frac{1}{b^t} = b^{-t} for any positive b \ne 1. +

      + +
      + + + The role of <m>c</m> in <m>g(t) = ab^t + c</m> +

      + The function g(t) = ab^t + c is a vertical translation of the function f(t) = ab^t. We now have extensive understanding of the behavior of f(t) and how that behavior depends on a and b. Since a vertical translation by c does not change the shape of any graph, we expect that g will exhibit very similar behavior to f. Indeed, we can compare the two functions' graphs as shown in Figure and Figure and then make the following general observations. +

      + + +
      + Plot of f(t) = ab^t. +

      Plot of f(t) = ab^t.

      +
      +
      +
      + Plot of g(t) = ab^t+c. +

      Plot of g(t) = ab^t+c.

      +
      +
      +
      + + + Behavior of vertically shifted exponential functions +

      + Let g(t) = ab^t + c with a \gt 0, b \gt 0 and b \ne 1, and c any real number. + +

        +
      • +

        + If 0 \lt b \lt 1, then g(t) = ab^t + c \to c as t \to \infty. The function g is always decreasing, always concave up, and has y-intercept (0,a+c). The range of the function is all real numbers greater than c. +

        +
      • +
      • +

        + If b \gt 1, then g(t) = ab^t + c \to \infty as t \to \infty. The function g is always increasing, always concave up, and has y-intercept (0,a+c). The range of the function is all real numbers greater than c. +

        +
      • +
      +

      +
      + +

      + It is also possible to have a \lt 0. In this situation, because g(t) = ab^t is both a reflection of f(t) = b^t across the x-axis and a vertical stretch by |a|, the function g is always concave down. If 0 \lt b \lt 1 so that f is always decreasing, then g is always increasing; if instead b \gt 1 so f is increasing, then g is decreasing. Moreover, instead of the range of the function g having a lower bound as when a \gt 0, in this setting the range of g has an upper bound. These ideas are explored further in Activity. +

      + +

      + It's an important skill to be able to look at an exponential function of the form g(t) = ab^t + c and form an accurate mental picture of the graph's main features in light of the values of a, b, and c. +

      + + + +
      + + + Modeling temperature data + +

      + Newton's Law of Cooling Newton's Law of Cooling states that the rate that an object warms or cools occurs in direct proportion to the difference between its own temperature and the temperature of its surroundings. If we return to the coffee temperature data in Table and recall that the room temperature in that experiment was 71^\circ, we can see how to use a transformed exponential function to model the data. In Table, we add a row of information to the table where we compute F(t)-71 to subtract the room temperature from each reading. +

      + + + Data for cooling coffee, measured in degrees Fahrenheit at time <m>t</m> in minutes, plus shifted to account for room temperature. + + + t + 0 + 1 + 2 + 3 + 8 + 13 + 18 + 23 + 28 + 33 + 38 + 43 + 48 + + + F(t) + 186 + 179 + 175 + 171 + 156 + 144 + 135 + 127 + 120 + 116 + 111 + 107 + 104 + + + f(t) = F(t) - 71 + 115 + 108 + 104 + 100 + 85 + 73 + 64 + 56 + 49 + 45 + 40 + 36 + 33 + + + +
      + +

      + The data in the bottom row of Table appears exponential, and if we test the data by computing the quotients of output values that correspond to equally-spaced input, we see a nearly constant ratio. In particular, + + \frac{73}{85} \approx 0.86, \ \frac{64}{73} \approx 0.88, \ \frac{56}{64} \approx 0.88, \ \frac{49}{56} \approx 0.88, \ \frac{45}{49} \approx 0.92, \text{and} \frac{40}{45} \approx 0.89 + . + Of course, there is some measurement error in the data (plus it is only recorded to accuracy of whole degrees), so these computations provide convincing evidence that the underlying function is exponential. In addition, we expect that if the data continued in the bottom row of Table, the values would approach 0 because F(t) will approach 71. +

      + + +
      + Plot of f(t) = 103.503 (0.974)^t. +

      Plot of f(t) = 103.503 (0.974)^t.

      +
      +
      +
      + Plot of F(t) = 103.503 (0.974)^t + 71. +

      Plot of F(t) = 103.503 (0.974)^t + 71.

      +
      +
      +
      + +

      + If we choose two of the data points, say (18,64) and (23,56), and assume that f(t) = ab^t, we can determine the values of a and b. Doing so, it turns out that a \approx 103.503 and b \approx 0.974, so f(t) = 103.503 ( 0.974)^t. Since f(t) = F(t) - 71, we see that F(t) = f(t) + 71, so F(t) = 103.503 (0.974)^t + 71. Plotting f against the shifted data and F along with the original data in Figure and Figure, we see that the curves go exactly through the points where t = 18 and t = 23 as expected, but also that the function provides a reasonable model for the observed behavior at any time t. If our data was even more accurate, we would expect that the curve's fit would be even better. +

      + +

      + Our preceding work with the coffee data can be done similarly with data for any cooling or warming object whose temperature initially differs from its surroundings. Indeed, it is possible to show that Newton's Law of Cooling implies that the object's temperature is given by a function of the form F(t) = ab^t + c. +

      + + + + + +
      + + + Summary +

      +

        +
      • +

        + For an exponential function of the form f(t) = b^t, the function either approaches zero or grows without bound as the input gets larger and larger. In particular, if 0 \lt b \lt 1, then f(t) = b^t \to 0 as t \to \infty, while if b \gt 1, then f(t) = b^t \to \infty as t \to \infty. Scaling f by a positive value a (that is, the transformed function ab^t) does not affect the long-range behavior: whether the function tends to 0 or increases without bound depends solely on whether b is less than or greater than 1. +

        +
      • +
      • +

        + The function f(t) = b^t passes through (0,1), is always concave up, is either always increasing or always decreasing, and its range is the set of all positive real numbers. Among these properties, a vertical stretch by a positive value a only affects the y-intercept, which is instead (0,a). If we include a vertical shift and write g(t) = ab^t + c, the biggest change is that the range of g is the set of all real numbers greater than c. In addition, the y-intercept of g is (0,a+c). +

        + +

        + In the situation where a \lt 0, several other changes are induced. Here, because g(t) = ab^t is both a reflection of f(t) = b^t across the x-axis and a vertical stretch by |a|, the function g is now always concave down. If 0 \lt b \lt 1 so that f is always decreasing, then g (the reflected function) is now always increasing; if instead b \gt 1 so f is increasing, then g is decreasing. Finally, if a \lt 0, then the range of g(t) = ab^t + c is the set of all real numbers less than c. +

        +
      • +
      • +

        + An exponential function can be thought of as a function that changes at a rate proportional to itself, like how money grows with compound interest or the amount of a radioactive quantity decays. Newton's Law of Cooling says that the rate of change of an object's temperature is proportional to the difference between its own temperature and the temperature of its surroundings. This leads to the function that measures the difference between the object's temperature and room temperature being exponential, and hence the object's temperature itself is a vertically-shifted exponential function of the form F(t) = ab^t + c. +

        +
      • +
      +

      +
      + + + + + + +
      diff --git a/source/sec-exp-temp-pop-wb.xml b/source/sec-exp-temp-pop-wb.xml index 92265974..7d4ad277 100755 --- a/source/sec-exp-temp-pop-wb.xml +++ b/source/sec-exp-temp-pop-wb.xml @@ -1,22 +1,22 @@ - - - - - - - - - - - - - -
      - Modeling temperature and population - - - - - - -
      + + + + + + + + + + + + + +
      + Modeling temperature and population + + + + + + +
      diff --git a/source/sec-exp-temp-pop.xml b/source/sec-exp-temp-pop.xml index 61807333..7dbcab6a 100755 --- a/source/sec-exp-temp-pop.xml +++ b/source/sec-exp-temp-pop.xml @@ -1,155 +1,156 @@ - - - - - - - - - - - - - -
      - Modeling temperature and population - - -
        -
      • -

        - What roles do the parameters a, k, and c play in how the function F(t) = c + ae^{-kt} models the temperature of an object that is cooling or warming in its surroundings? -

        -
      • -
      • -

        - How can we use an exponential function to more realistically model a population whose growth levels off? -

        -
      • -
      -
      - - Introduction - -

      - We've seen that exponential functions can be used to model several different important phenomena, such as the growth of money due to continuously compounded interest, the decay of radioactive quanitities, and the temperature of an object that is cooling or warming due to its surroundings. From initial work with functions of the form f(t) = ab^t where b \gt 0 and b \ne 1, we found that shifted exponential functions of form g(t) = ab^t + c are also important. Moreover, the special base e allows us to represent all of these functions through horizontal scaling by writing - - g(t) = ae^{kt} + c - - where k is the constant such that e^k = b. - Functions of the form of Equation are either always increasing or always decreasing, always have the same concavity, are defined on the set of all real numbers, and have their range as the set of all real numbers greater than c or all real numbers less than c. In whatever setting we are using a model of this form, the crucial task is to identify the values of a, k, and c; that endeavor is the focus of this section. -

      - -

      - We have also begun to see the important role that logarithms play in work with exponential models. The natural logarithm is the inverse of the natural exponential function and satisfies the important rule that \ln(b^k) = k\ln (b). This rule enables us to solve equations with the structure a^k = b for k in the context where a and b are known but k is not. Indeed, we can first take the natural log of both sides of the equation to get - - \ln(a^k) = \ln(b) - , - from which it follows that k \ln(a) = \ln(b), and therefore - - k = \frac{\ln(b)}{\ln(a)} - . - Finding k is often central to determining an exponential model, and logarithms make finding the exact value of k possible. -

      - -

      - In Preview Activity, we revisit some key algebraic ideas with exponential and logarithmic equations in preparation for using these concepts in models for temperature and population. -

      - - - -
      - - - Newton's Law of Cooling revisited -

      - In Section, we learned that Newton's Law of Cooling, which states that an object's temperature changes at a rate proportional to the difference between its own temperature and the surrounding temperature, results in the object's temperature being modeled by functions of the form F(t) = ab^t + c. In light of our subsequent work in Section with the natural base e, as well as the fact that 0 \lt b \lt 1 in this model, we know that Newton's Law of Cooling implies that the object's temperature is modeled by a function of the form - - F(t) = ae^{-kt} + c - - for some constants a, c, and k, where k \gt 0. -

      - -

      - From Equation, we can determine several different characteristics of how the constants a, b, and k are connected to the behavior of F by thinking about what happens at t = 0, at one additional value of t, and as t increases without bound. In particular, note that e^{-kt} will tend to 0 as t increases without bound. -

      - - - Modeling temperature with Newton's Law of Cooling -

      - For the function F(t) = ae^{-kt} + c that models the temperature of a cooling or warming object, the constants a, c, and k play the following roles. Note that k \gt 0. -

        -
      • -

        - Since e^{-kt} tends to 0 as t increases without bound, F(t) tends to c as t increases without bound, and thus c represents the temperature of the object's surroundings. -

        -
      • -
      • -

        - Since e^0 = 1, F(0) = a + c, and thus the object's initial temperature is a + c. Said differently, a is the difference between the object's initial temperature and the temperature of the surroundings. -

        -
      • -
      • -

        - Once we know the values of a and c, the value of k is determined by knowing the value of the temperature function F(t) at one nonzero value of t. -

        -
      • -
      -

      -
      - - - -
      - - - A more realistic model for population growth -

      - If we assume that a population grows at a rate that is proportionate to the size of the population, it follows that the population grows exponentially according to the model - - P(t) = Ae^{kt} - - where A is the initial population and k is tied to the rate at which the population grows. Since k \gt 0, we know that e^{kt} is an always increasing, always concave up function that grows without bound. While P(t) = Ae^{kt} may be a reasonable model for how a population grows when it is relatively small, because the function grows without bound as time increases, it can't be a realistic long-term representation of what happens in reality. Indeed, whether it is the number of fish who can survive in a lake, the number of cells in a petri dish, or the number of human beings on earth, the size of the surroundings and the limitations of resources will keep the population from being able to grow without bound. -

      - -

      - In light of these observations, a different model is needed for population, one that grows exponentially at first, but that levels off later. Calculus can be used to develop such a model, and the resulting function is usually called the - logistic function, logistic function which has form - - P(t) = \frac{A}{1 + Me^{-kt}} - , - where A, M, and k are positive constants. - Since k \gt 0, it follows that e^{-kt} \to 0 as t increases without bound, and thus the denominator of P approaches 1 as time goes on. Thus, we observe that P(t) tends to A as t increases without bound. We sometimes refer to A as the carrying capacity of the population. -

      - - - - - -
      - - - Summary -
        -
      • -

        - When a function of form F(t) = c + ae^{-kt} models the temperature of an object that is cooling or warming in its surroundings, the temperature of the surroundings is c because e^{-kt} \to 0 as time goes on, the object's initial temperature is a+c, and the constant k is connected to how rapidly the object's temperature changes. Once a and c are known, the constant k can be determined by knowing the temperature at one additional time, t. -

        -
      • -
      • -

        - Because the exponential function P(t) = Ae^{kt} grows without bound as t increases, such a function is not a realistic model of a population that we expect to level off as time goes on. The logistic function - - P(t) = \frac{A}{1 + Me^{-kt}} - - more appropriately models a population that grows roughly exponentially when P is small but whose size levels off as it approaches the carrying capacity of the surrounding environment, which is the value of the constant A. -

        -
      • -
      -
      - - - - - -
      + + + + + + + + + + + + + +
      + Modeling temperature and population + + +
        +
      • +

        + What roles do the parameters a, k, and c play in how the function F(t) = c + ae^{-kt} models the temperature of an object that is cooling or warming in its surroundings? +

        +
      • +
      • +

        + How can we use an exponential function to more realistically model a population whose growth levels off? +

        +
      • +
      +
      + + Introduction + +

      + We've seen that exponential functions can be used to model several different important phenomena, such as the growth of money due to continuously compounded interest, the decay of radioactive quanitities, and the temperature of an object that is cooling or warming due to its surroundings. From initial work with functions of the form f(t) = ab^t where b \gt 0 and b \ne 1, we found that shifted exponential functions of form g(t) = ab^t + c are also important. Moreover, the special base e allows us to represent all of these functions through horizontal scaling by writing + + g(t) = ae^{kt} + c + + where k is the constant such that e^k = b. + Functions of the form of Equation are either always increasing or always decreasing, always have the same concavity, are defined on the set of all real numbers, and have their range as the set of all real numbers greater than c or all real numbers less than c. In whatever setting we are using a model of this form, the crucial task is to identify the values of a, k, and c; that endeavor is the focus of this section. +

      + +

      + We have also begun to see the important role that logarithms play in work with exponential models. The natural logarithm is the inverse of the natural exponential function and satisfies the important rule that \ln(b^k) = k\ln (b). This rule enables us to solve equations with the structure a^k = b for k in the context where a and b are known but k is not. Indeed, we can first take the natural log of both sides of the equation to get + + \ln(a^k) = \ln(b) + , + from which it follows that k \ln(a) = \ln(b), and therefore + + k = \frac{\ln(b)}{\ln(a)} + . + Finding k is often central to determining an exponential model, and logarithms make finding the exact value of k possible. +

      + +

      + In Preview Activity, we revisit some key algebraic ideas with exponential and logarithmic equations in preparation for using these concepts in models for temperature and population. +

      + + + + +
      + + + Newton's Law of Cooling revisited +

      + In Section, we learned that Newton's Law of Cooling, which states that an object's temperature changes at a rate proportional to the difference between its own temperature and the surrounding temperature, results in the object's temperature being modeled by functions of the form F(t) = ab^t + c. In light of our subsequent work in Section with the natural base e, as well as the fact that 0 \lt b \lt 1 in this model, we know that Newton's Law of Cooling implies that the object's temperature is modeled by a function of the form + + F(t) = ae^{-kt} + c + + for some constants a, c, and k, where k \gt 0. +

      + +

      + From Equation, we can determine several different characteristics of how the constants a, b, and k are connected to the behavior of F by thinking about what happens at t = 0, at one additional value of t, and as t increases without bound. In particular, note that e^{-kt} will tend to 0 as t increases without bound. +

      + + + Modeling temperature with Newton's Law of Cooling +

      + For the function F(t) = ae^{-kt} + c that models the temperature of a cooling or warming object, the constants a, c, and k play the following roles. Note that k \gt 0. +

        +
      • +

        + Since e^{-kt} tends to 0 as t increases without bound, F(t) tends to c as t increases without bound, and thus c represents the temperature of the object's surroundings. +

        +
      • +
      • +

        + Since e^0 = 1, F(0) = a + c, and thus the object's initial temperature is a + c. Said differently, a is the difference between the object's initial temperature and the temperature of the surroundings. +

        +
      • +
      • +

        + Once we know the values of a and c, the value of k is determined by knowing the value of the temperature function F(t) at one nonzero value of t. +

        +
      • +
      +

      +
      + + + +
      + + + A more realistic model for population growth +

      + If we assume that a population grows at a rate that is proportionate to the size of the population, it follows that the population grows exponentially according to the model + + P(t) = Ae^{kt} + + where A is the initial population and k is tied to the rate at which the population grows. Since k \gt 0, we know that e^{kt} is an always increasing, always concave up function that grows without bound. While P(t) = Ae^{kt} may be a reasonable model for how a population grows when it is relatively small, because the function grows without bound as time increases, it can't be a realistic long-term representation of what happens in reality. Indeed, whether it is the number of fish who can survive in a lake, the number of cells in a petri dish, or the number of human beings on earth, the size of the surroundings and the limitations of resources will keep the population from being able to grow without bound. +

      + +

      + In light of these observations, a different model is needed for population, one that grows exponentially at first, but that levels off later. Calculus can be used to develop such a model, and the resulting function is usually called the + logistic function, logistic function which has form + + P(t) = \frac{A}{1 + Me^{-kt}} + , + where A, M, and k are positive constants. + Since k \gt 0, it follows that e^{-kt} \to 0 as t increases without bound, and thus the denominator of P approaches 1 as time goes on. Thus, we observe that P(t) tends to A as t increases without bound. We sometimes refer to A as the carrying capacity of the population. +

      + + + + + +
      + + + Summary +
        +
      • +

        + When a function of form F(t) = c + ae^{-kt} models the temperature of an object that is cooling or warming in its surroundings, the temperature of the surroundings is c because e^{-kt} \to 0 as time goes on, the object's initial temperature is a+c, and the constant k is connected to how rapidly the object's temperature changes. Once a and c are known, the constant k can be determined by knowing the temperature at one additional time, t. +

        +
      • +
      • +

        + Because the exponential function P(t) = Ae^{kt} grows without bound as t increases, such a function is not a realistic model of a population that we expect to level off as time goes on. The logistic function + + P(t) = \frac{A}{1 + Me^{-kt}} + + more appropriately models a population that grows roughly exponentially when P is small but whose size levels off as it approaches the carrying capacity of the surrounding environment, which is the value of the constant A. +

        +
      • +
      +
      + + + + + +
      diff --git a/source/sec-poly-infty-wb.xml b/source/sec-poly-infty-wb.xml index ee028408..94def602 100755 --- a/source/sec-poly-infty-wb.xml +++ b/source/sec-poly-infty-wb.xml @@ -1,22 +1,22 @@ - - - - - - - - - - - - - -
      - Infinity, limits, and power functions - - - - - - -
      + + + + + + + + + + + + + +
      + Infinity, limits, and power functions + + + + + + +
      diff --git a/source/sec-poly-infty.xml b/source/sec-poly-infty.xml index 7c7f2915..5561bcaf 100755 --- a/source/sec-poly-infty.xml +++ b/source/sec-poly-infty.xml @@ -1,329 +1,330 @@ - - - - - - - - - - - - - -
      - Infinity, limits, and power functions - - -
        -
      • -

        - How can we use limit notation to succinctly express a function's behavior as the input increases without bound or as the function's value increases without bound? -

        -
      • -
      • -

        - What are some important limits and trends involving \infty that we can observe for familiar functions such as e^x, \ln(x), x^2, and \frac{1}{x}? -

        -
      • -
      • -

        - What is a power function and how does the value of the power determine the function's overall behavior? -

        -
      • -
      -
      - - Introduction -

      - In Section, we compared the behavior of the exponential functions p(t) = 2^t and q(t) = (\frac{1}{2})^t, and observed in Figure that as t increases without bound, p(t) also increases without bound, while q(t) approaches 0 (while having its value be always positive). We also introduced shorthand notation for describing these phenomena, writing - - p(t) \to \infty \text{ as } t \to \infty - - and - - q(t) \to 0 \text{ as } t \to \infty - . - It's important to remember that infinity is not itself a number. We use the \infty symbol to represent a quantity that gets larger and larger with no bound on its growth. -

      - -

      - We also know that the concept of infinity plays a key role in understanding the graphical behavior of functions. For instance, we've seen that for a function such as F(t) = 72 - 45e^{-0.05t}, F(t) \to 72 as t \to \infty, since e^{-0.05t} \to 0 as t increases without bound. The function F can be viewed as modeling the temperature of an object that is initially F(0) = 72-45 = 27 degrees that eventually warms to 72 degrees. The line y = 72 is thus a horizontal asymptote of the function F. -

      - -

      - In Preview, we review some familiar functions and portions of their behavior that involve \infty. -

      - - - -
      - - - Limit notation -

      - When observing a pattern in the values of a function that correspond to letting the inputs get closer and closer to a fixed value or letting the inputs increase or decrease without bound, we are often interested in the behavior of the function in the limit. In either case, we are considering an infinite collection of inputs that are themselves following a pattern, and we ask the question how can we expect the function's output to behave if we continue? -

      - -

      - For instance, we have regularly observed that as t \to \infty, e^{-t} \to 0, which means that by allowing t to get bigger and bigger without bound, we can make e^{-t} get as close to 0 as we'd like (without e^{-t} ever equalling 0, since e^{-t} is always positive). -

      - - -
      - Plots of y = e^t and y = e^{-t}. -

      Plots of y = e^t and y = e^{-t}.

      -
      -
      -
      - Plots of y = e^t and y = \ln(t). -

      Plots of y = e^t and y = \ln(t).

      -
      -
      -
      - -

      - Similarly, as seen in Figure and Figure, we can make such observations as e^t \to \infty as t \to \infty, \ln(t) \to \infty as t \to \infty, and \ln(t) \to -\infty as t \to 0^+. We introduce formal limit notation in order to be able to express these patterns even more succinctly. -

      - - - limitinvolving infinity - increasing without bound - -

      - Let L be a real number and f be a function. If we can make the value of f(t) as close to L as we want by letting t increase without bound, we write - - \lim_{t \to \infty} f(t) = L - - and say that the limit of f as t increases without bound is L. -

      - -

      - If the value of f(t) increases without bound as t increases without bound, we instead write - - \lim_{t \to \infty} f(t) = \infty - . -

      - -

      - Finally, if f doesn't increase without bound, doesn't decrease without bound, and doesn't approach a single value L as t \to \infty, we say that f does not have a limit as t \to \infty. -

      -
      -
      - -

      - We use limit notation in related, natural ways to express patterns we see in function behavior. For instance, we write t \to -\infty when we let t decrease without bound, and f(t) \to -\infty if f decreases without bound. We can also think about an input value t approaching a value a at which the function f is not defined. As one example, we write - - \lim_{t \to 0^+} \ln(t) = -\infty - - because the natural logarithm function decreases without bound as input values get closer and closer to 0 (while always being positive), as seen in Figure. -

      - -

      - In the situation where \lim_{t \to \infty} f(t) = L, this tells us that f has a horizontal asymptote horizontal asymptote at y = L since the function's value approaches this fixed number as t increases without bound. Similarly, if we can say that \lim_{t \to a} f(t) = \infty, this shows that f has a vertical asymptote vertical asymptote at x = a since the function's value increases without bound as inputs approach the fixed number a. -

      - -

      - For now, we are going to focus on the long-range behavior of certain basic, familiar functions and work to understand how they behave as the input increases or decreases without bound. Above we've used the input variable t in most of our previous work; going forward, we'll regularly use x as well. -

      - - - -
      - - - Power functions -

      - To date, we have worked with several families of functions: - linear functions of form y = mx + b, - quadratic functions in standard form, y = ax^2 + bx + c, - the sinusoidal (trigonometric) functions y = a\sin(k(x-b))+c or y = a\cos(k(x-b))+c, - transformed exponential functions such as y = ae^{kx} + c, - and transformed logarithmic functions of form y = a\ln(x) + c. For trigonometric, exponential, and logarithmic functions, it was essential that we first understood the behavior of the basic parent functions \sin(x), \cos(x), e^x, and \ln(x). In order to build on our prior work with linear and quadratic functions, we now consider basic functions such as x, x^2, and additional powers of x. -

      - - - power function - -

      A function of the form f(x) = x^p where p is any real number is called a power function.

      -
      -
      - -

      - We first focus on the case where p is a natural number (that is, a positive whole number). -

      - - - -

      - In the situation where the power p is a negative integer (i.e., a negative whole number), power functions behave very differently. This is because of the property of exponents that states - - x^{-n} = \frac{1}{x^n} - - so for a power function such as p(x) = x^{-2}, we can equivalently consider p(x) = \frac{1}{x^2}. Note well that for these functions, their domain is the set of all real numbers except x = 0. Like with power functions with positive whole number powers, we want to know how power functions with negative whole number powers behave as x increases without bound, as well as how the functions behave near x = 0. -

      - - - -
      - - - Summary -
        -
      • -

        - The notation - - \lim_{x \to \infty} f(x) = L - - means that we can make the value of f(x) as close to L as we'd like by letting x be sufficiently large. This indicates that the value of f eventually stops changing much and tends to a single value, and thus y = L is a horizontal asymptote of the function f. -

        - -

        - Similarly, the notation - - \lim_{x \to a} f(x) = \infty - - means that we can make the value of f(x) as large as we'd like by letting x be sufficiently close, but not equal, to a. This unbounded behavior of f near a finite value a indicates that f has a vertical asymptote at x = a. -

        -
      • -
      • -

        - We summarize some key behavior of familiar basic functions with limits as x increases without bound in Table. -

        - - - Some familiar functions and their limits as <m>x \to \infty</m> or <m>x \to -\infty</m>. - - - f(x) - \lim_{x \to \infty} f(x) - \lim_{x \to -\infty} f(x) - - - e^x - \infty - 0 - - - e^{-x} - 0 - \infty - - - \ln(x) - \infty - NABecause the domain of the natural logarithm function is only positive real numbers, it doesn't make sense to even consider this limit. - - - x - \infty - -\infty - - - x^2 - \infty - \infty - - - x^3 - \infty - -\infty - - - x^4 - \infty - \infty - - - \frac{1}{x} - 0 - 0 - - - \frac{1}{x^2} - 0 - 0 - - - \sin(x) - no limitBecause the sine function neither increases without bound nor approaches a single value, but rather keeps oscillating through every value between -1 and 1 repeatedly, the sine function does not have a limit as x \to \infty. - no limit - - -
        - -

        - Additionally, Table summarizes some key familiar function behavior where the function's output increases or decreases without bound as x approaches a fixed number not in the function's domain. -

        - - - Some familiar functions and their limits involving <m>\infty</m> as <m>x \to a</m> where <m>a</m> is not in the function's domain. - - - f(x) - \lim_{x \to a^-} f(x) - \lim_{x \to a^+} f(x) - - - \ln(x) - NA - \lim_{x \to 0^+} \ln(x) = -\infty - - - \frac{1}{x} - \lim_{x \to 0^-} \frac{1}{x} = -\infty - \lim_{x \to 0^+} \frac{1}{x} = \infty - - - \frac{1}{x^2} - \lim_{x \to 0^-} \frac{1}{x^2} = \infty - \lim_{x \to 0^+} \frac{1}{x^2} = \infty - - - \tan(x) - \lim_{x \to \frac{\pi}{2}^-} \tan(x) = \infty - \lim_{x \to \frac{\pi}{2}^+} \tan(x) = -\infty - - - \sec(x) - \lim_{x \to \frac{\pi}{2}^-} \sec(x) = \infty - \lim_{x \to \frac{\pi}{2}^+} \sec(x) = -\infty - - - \csc(x) - \lim_{x \to 0^-} \csc(x) = -\infty - \lim_{x \to 0^+} \csc(x) = \infty - - -
        - -
      • -
      • -

        - A power function is a function of the form f(x) = x^p where p is any real number. For the two cases where p is a positive whole number or a negative whole number, it is straightforward to summarize key trends in power functions' behavior. -

        - -

        -

          -
        • -

          - If p = 1, 2, 3, \ldots, then the domain of f(x) = x^p is the set of all real numbers, and as x \to \infty, f(x) \to \infty. For the limit as x \to -\infty, it matters whether p is even or odd: if p is even, f(x) \to \infty as x \to -\infty; if p is odd, f(x) \to -\infty as x \to -\infty. Informally, all power functions of form f(x) = x^p where p is a positive even number are U-shaped, while all power functions of form f(x) = x^p where p is a positive odd number are chair-shaped. -

          -
        • -
        • -

          - If p = -1, -2, -3, \ldots, then the domain of f(x) = x^p is the set of all real numbers except x=0, and as x \to \pm \infty, f(x) \to 0. This means that each such power function with a negative whole number exponent has a horizontal asymptote of y = 0. Regardless of the value of p (p = -1, -2, -3, \ldots), \lim_{x \to 0^+} f(x) = \infty. But when we approach 0 from the negative side, it matters whether p is even or odd: if p is even, f(x) \to \infty as x \to 0^-; if p is odd, f(x) \to -\infty as x \to 0^-. Informally, all power functions of form f(x) = x^p where p is a negative odd number look similar to \frac{1}{x}, while all power functions of form f(x) = x^p where p is a negative even number look similar to \frac{1}{x^2}. -

          -
        • -
        -

        -
      • -
      -
      - - - - - -
      + + + + + + + + + + + + + +
      + Infinity, limits, and power functions + + +
        +
      • +

        + How can we use limit notation to succinctly express a function's behavior as the input increases without bound or as the function's value increases without bound? +

        +
      • +
      • +

        + What are some important limits and trends involving \infty that we can observe for familiar functions such as e^x, \ln(x), x^2, and \frac{1}{x}? +

        +
      • +
      • +

        + What is a power function and how does the value of the power determine the function's overall behavior? +

        +
      • +
      +
      + + Introduction +

      + In Section, we compared the behavior of the exponential functions p(t) = 2^t and q(t) = (\frac{1}{2})^t, and observed in Figure that as t increases without bound, p(t) also increases without bound, while q(t) approaches 0 (while having its value be always positive). We also introduced shorthand notation for describing these phenomena, writing + + p(t) \to \infty \text{ as } t \to \infty + + and + + q(t) \to 0 \text{ as } t \to \infty + . + It's important to remember that infinity is not itself a number. We use the \infty symbol to represent a quantity that gets larger and larger with no bound on its growth. +

      + +

      + We also know that the concept of infinity plays a key role in understanding the graphical behavior of functions. For instance, we've seen that for a function such as F(t) = 72 - 45e^{-0.05t}, F(t) \to 72 as t \to \infty, since e^{-0.05t} \to 0 as t increases without bound. The function F can be viewed as modeling the temperature of an object that is initially F(0) = 72-45 = 27 degrees that eventually warms to 72 degrees. The line y = 72 is thus a horizontal asymptote of the function F. +

      + +

      + In Preview, we review some familiar functions and portions of their behavior that involve \infty. +

      + + + + +
      + + + Limit notation +

      + When observing a pattern in the values of a function that correspond to letting the inputs get closer and closer to a fixed value or letting the inputs increase or decrease without bound, we are often interested in the behavior of the function in the limit. In either case, we are considering an infinite collection of inputs that are themselves following a pattern, and we ask the question how can we expect the function's output to behave if we continue? +

      + +

      + For instance, we have regularly observed that as t \to \infty, e^{-t} \to 0, which means that by allowing t to get bigger and bigger without bound, we can make e^{-t} get as close to 0 as we'd like (without e^{-t} ever equalling 0, since e^{-t} is always positive). +

      + + +
      + Plots of y = e^t and y = e^{-t}. +

      Plots of y = e^t and y = e^{-t}.

      +
      +
      +
      + Plots of y = e^t and y = \ln(t). +

      Plots of y = e^t and y = \ln(t).

      +
      +
      +
      + +

      + Similarly, as seen in Figure and Figure, we can make such observations as e^t \to \infty as t \to \infty, \ln(t) \to \infty as t \to \infty, and \ln(t) \to -\infty as t \to 0^+. We introduce formal limit notation in order to be able to express these patterns even more succinctly. +

      + + + limitinvolving infinity + increasing without bound + +

      + Let L be a real number and f be a function. If we can make the value of f(t) as close to L as we want by letting t increase without bound, we write + + \lim_{t \to \infty} f(t) = L + + and say that the limit of f as t increases without bound is L. +

      + +

      + If the value of f(t) increases without bound as t increases without bound, we instead write + + \lim_{t \to \infty} f(t) = \infty + . +

      + +

      + Finally, if f doesn't increase without bound, doesn't decrease without bound, and doesn't approach a single value L as t \to \infty, we say that f does not have a limit as t \to \infty. +

      +
      +
      + +

      + We use limit notation in related, natural ways to express patterns we see in function behavior. For instance, we write t \to -\infty when we let t decrease without bound, and f(t) \to -\infty if f decreases without bound. We can also think about an input value t approaching a value a at which the function f is not defined. As one example, we write + + \lim_{t \to 0^+} \ln(t) = -\infty + + because the natural logarithm function decreases without bound as input values get closer and closer to 0 (while always being positive), as seen in Figure. +

      + +

      + In the situation where \lim_{t \to \infty} f(t) = L, this tells us that f has a horizontal asymptote horizontal asymptote at y = L since the function's value approaches this fixed number as t increases without bound. Similarly, if we can say that \lim_{t \to a} f(t) = \infty, this shows that f has a vertical asymptote vertical asymptote at x = a since the function's value increases without bound as inputs approach the fixed number a. +

      + +

      + For now, we are going to focus on the long-range behavior of certain basic, familiar functions and work to understand how they behave as the input increases or decreases without bound. Above we've used the input variable t in most of our previous work; going forward, we'll regularly use x as well. +

      + + + +
      + + + Power functions +

      + To date, we have worked with several families of functions: + linear functions of form y = mx + b, + quadratic functions in standard form, y = ax^2 + bx + c, + the sinusoidal (trigonometric) functions y = a\sin(k(x-b))+c or y = a\cos(k(x-b))+c, + transformed exponential functions such as y = ae^{kx} + c, + and transformed logarithmic functions of form y = a\ln(x) + c. For trigonometric, exponential, and logarithmic functions, it was essential that we first understood the behavior of the basic parent functions \sin(x), \cos(x), e^x, and \ln(x). In order to build on our prior work with linear and quadratic functions, we now consider basic functions such as x, x^2, and additional powers of x. +

      + + + power function + +

      A function of the form f(x) = x^p where p is any real number is called a power function.

      +
      +
      + +

      + We first focus on the case where p is a natural number (that is, a positive whole number). +

      + + + +

      + In the situation where the power p is a negative integer (i.e., a negative whole number), power functions behave very differently. This is because of the property of exponents that states + + x^{-n} = \frac{1}{x^n} + + so for a power function such as p(x) = x^{-2}, we can equivalently consider p(x) = \frac{1}{x^2}. Note well that for these functions, their domain is the set of all real numbers except x = 0. Like with power functions with positive whole number powers, we want to know how power functions with negative whole number powers behave as x increases without bound, as well as how the functions behave near x = 0. +

      + + + +
      + + + Summary +
        +
      • +

        + The notation + + \lim_{x \to \infty} f(x) = L + + means that we can make the value of f(x) as close to L as we'd like by letting x be sufficiently large. This indicates that the value of f eventually stops changing much and tends to a single value, and thus y = L is a horizontal asymptote of the function f. +

        + +

        + Similarly, the notation + + \lim_{x \to a} f(x) = \infty + + means that we can make the value of f(x) as large as we'd like by letting x be sufficiently close, but not equal, to a. This unbounded behavior of f near a finite value a indicates that f has a vertical asymptote at x = a. +

        +
      • +
      • +

        + We summarize some key behavior of familiar basic functions with limits as x increases without bound in Table. +

        + + + Some familiar functions and their limits as <m>x \to \infty</m> or <m>x \to -\infty</m>. + + + f(x) + \lim_{x \to \infty} f(x) + \lim_{x \to -\infty} f(x) + + + e^x + \infty + 0 + + + e^{-x} + 0 + \infty + + + \ln(x) + \infty + NABecause the domain of the natural logarithm function is only positive real numbers, it doesn't make sense to even consider this limit. + + + x + \infty + -\infty + + + x^2 + \infty + \infty + + + x^3 + \infty + -\infty + + + x^4 + \infty + \infty + + + \frac{1}{x} + 0 + 0 + + + \frac{1}{x^2} + 0 + 0 + + + \sin(x) + no limitBecause the sine function neither increases without bound nor approaches a single value, but rather keeps oscillating through every value between -1 and 1 repeatedly, the sine function does not have a limit as x \to \infty. + no limit + + +
        + +

        + Additionally, Table summarizes some key familiar function behavior where the function's output increases or decreases without bound as x approaches a fixed number not in the function's domain. +

        + + + Some familiar functions and their limits involving <m>\infty</m> as <m>x \to a</m> where <m>a</m> is not in the function's domain. + + + f(x) + \lim_{x \to a^-} f(x) + \lim_{x \to a^+} f(x) + + + \ln(x) + NA + \lim_{x \to 0^+} \ln(x) = -\infty + + + \frac{1}{x} + \lim_{x \to 0^-} \frac{1}{x} = -\infty + \lim_{x \to 0^+} \frac{1}{x} = \infty + + + \frac{1}{x^2} + \lim_{x \to 0^-} \frac{1}{x^2} = \infty + \lim_{x \to 0^+} \frac{1}{x^2} = \infty + + + \tan(x) + \lim_{x \to \frac{\pi}{2}^-} \tan(x) = \infty + \lim_{x \to \frac{\pi}{2}^+} \tan(x) = -\infty + + + \sec(x) + \lim_{x \to \frac{\pi}{2}^-} \sec(x) = \infty + \lim_{x \to \frac{\pi}{2}^+} \sec(x) = -\infty + + + \csc(x) + \lim_{x \to 0^-} \csc(x) = -\infty + \lim_{x \to 0^+} \csc(x) = \infty + + +
        + +
      • +
      • +

        + A power function is a function of the form f(x) = x^p where p is any real number. For the two cases where p is a positive whole number or a negative whole number, it is straightforward to summarize key trends in power functions' behavior. +

        + +

        +

          +
        • +

          + If p = 1, 2, 3, \ldots, then the domain of f(x) = x^p is the set of all real numbers, and as x \to \infty, f(x) \to \infty. For the limit as x \to -\infty, it matters whether p is even or odd: if p is even, f(x) \to \infty as x \to -\infty; if p is odd, f(x) \to -\infty as x \to -\infty. Informally, all power functions of form f(x) = x^p where p is a positive even number are U-shaped, while all power functions of form f(x) = x^p where p is a positive odd number are chair-shaped. +

          +
        • +
        • +

          + If p = -1, -2, -3, \ldots, then the domain of f(x) = x^p is the set of all real numbers except x=0, and as x \to \pm \infty, f(x) \to 0. This means that each such power function with a negative whole number exponent has a horizontal asymptote of y = 0. Regardless of the value of p (p = -1, -2, -3, \ldots), \lim_{x \to 0^+} f(x) = \infty. But when we approach 0 from the negative side, it matters whether p is even or odd: if p is even, f(x) \to \infty as x \to 0^-; if p is odd, f(x) \to -\infty as x \to 0^-. Informally, all power functions of form f(x) = x^p where p is a negative odd number look similar to \frac{1}{x}, while all power functions of form f(x) = x^p where p is a negative even number look similar to \frac{1}{x^2}. +

          +
        • +
        +

        +
      • +
      +
      + + + + + +
      diff --git a/source/sec-poly-polynomial-applications-wb.xml b/source/sec-poly-polynomial-applications-wb.xml index 629cb0ce..2e024e3c 100755 --- a/source/sec-poly-polynomial-applications-wb.xml +++ b/source/sec-poly-polynomial-applications-wb.xml @@ -1,22 +1,22 @@ - - - - - - - - - - - - - -
      - Modeling with polynomial functions - - - - - - -
      + + + + + + + + + + + + + +
      + Modeling with polynomial functions + + + + + + +
      diff --git a/source/sec-poly-polynomial-applications.xml b/source/sec-poly-polynomial-applications.xml index fd4e0e58..e7103492 100755 --- a/source/sec-poly-polynomial-applications.xml +++ b/source/sec-poly-polynomial-applications.xml @@ -1,172 +1,173 @@ - - - - - - - - - - - - - -
      - Modeling with polynomial functions - - -
        -
      • -

        - Why do polynomials arise naturally in the study of problems involving the volume and surface area of three-dimensional containers such as boxes and cylinders? -

        -
      • -
      • -

        - How can polynomial functions be used to approximate non-polynomial curves and functions? -

        -
      • -
      -
      - - Introduction -

      - Polynomial functions are the simplest of all functions in mathematics in part because they only involve multiplication and addition. In any applied setting where we can formulate key ideas using only those arithmetic operations, it's natural that polynomial functions model the corresponding phenomena. For example, in Activity, we saw that for a spherical tank of radius 4 m filling with water, the volume of water in the tank at a given instant, V, is a function of the depth, h, of the water in the tank at the same moment according to the formula - - V = f(h) = \frac{\pi}{3} h^2(12-h) - . - The function f is a polynomial of degree 3 with a repeated zero at h = 0 and an additional zero at h = 12. Because the tank has a radius of 4, its total height is 8, and thus the model V = f(h) = \frac{\pi}{3} h^2(12-h) is only valid on the domain 0 \le h \le 8. This polynomial function tells us how the volume of water in the tank changes as h changes. -

      - -

      - In other similar situations where we consider the volume of a box, tank, or other three-dimensional container, polynomial functions frequently arise. To develop a model function that represents a physical situation, we almost always begin by drawing one or more diagrams of the situation and then introduce one or more variables to represent quantities that are changing. From there, we explore relationships that are present and work to express one of the quantities in terms of the other(s). -

      - - - -
      - - - Volume, surface area, and constraints -

      - In Preview Activity, we worked with a rectangular box being built by folding cardboard. One of the key principles we needed to use was the fact that the volume of a rectangular box of length l, width w, and height h is - - V = lwh - . rectangular boxvolume volumebox -

      - - -
      - A rectangular box. -

      A rectangular box.

      -
      -
      -
      - A circular cylinder. -

      A circular cylinder.

      -
      -
      -
      - -

      - One way to remember the formula for the volume of a rectangular box is area of the base times the height. This principle extends to other three-dimensional shapes that have constant cross-sectional area. For instance, the volume of a circular cylinder with radius r and height h is - - V = \pi r^2 h - circular cylindervolume volumecylinder - since the area of the base is \pi r^2. -

      - -

      - We'll also often consider the surface area of a three-dimensional container. For a rectangular box with side lengths of l, w, and h, its surface area consists of 3 pairs of rectangles: the top and bottom, each of area lw, the two sides that are the front and back when we look right at the box, each of area lh, and the remaining two sides of area wh. Thus the total surface area of the box is - rectangular boxsurface area surface areabox - SA = 2lw + 2lh + 2wh - . - For a circular cylinder, its surface area is the sum of the areas of the top and bottom (\pi r^2 each), plus the area of the sides. If we think of cutting the cylinder vertically and unfurling it, the resulting figure is a rectangle whose dimensions are the height of the cylinder, h, by the circumference of the base, 2\pi r. The rectangle's area is therefore 2\pi r \cdot h, and hence the total surface area of a cylinder is - - SA = 2\pi r^2 + 2\pi r h - . circular cylindersurface area surface areacylinder -

      - -

      - Each of the volume and surface area equations (Equation, Equation, Equation, and Equation) involve only multiplication and addition, and thus have the potential to result in polynomial functions. At present, however, each of these equations involves at least two variables. The inclusion of additional constraints can enable us to use these formulas to generate polynomial functions of a single variable. -

      - - - - - -
      - - - Other applications of polynomial functions - -

      - A different use of polynomial functions arises with Bezier curves. Bezier curves The most common type of Bezier curve used in applications is the cubic Bezier curve, which is a curve given parametrically by a formula of the form (x(t), y(t)), where - - x(t) = (1-t)^3 x_0 + 3(1-t)^2 t x_1 + 3(1-t) t^2 x_2 + t^3 x_3 - - and - - y(t) = (1-t)^3 y_0 + 3(1-t)^2 t y_1 + 3(1-t) t^2 y_2 + t^3 y_3 - . - The curve passes through the points A = (x_0,y_0) and B = (x_3, y_3) and the points C = (x_1, y_1) and D = (x_2, y_2) are called control points. At http://gvsu.edu/s/0zC, you can explore the effects of moving the control points (in gray) and the points on the curve (in black) to generate different curves in the plane, similar to the one shown in Figure. -

      - - -
      - A cubic Bezier curve with control points in gray. -

      A cubic Bezier curve with control points in gray.

      -
      -
      -
      - The letter S in Palatino font, generated by Bezier curves. -

      The letter S in Palatino font, generated by Bezier curves.

      -
      -
      -
      - -

      - The main issue to realize is that the form of the curve depends on a special family of cubic polynomials: - - (1-t)^3, 3(1-t)^2 t, 3(1-t) t^2, \ \text{ and } \ t^3 - . - These four cubic polynomials play a key role in graphic design and are used in all sorts of important ways, including in font design, as seen in Figure. -

      - -

      - Another important application of polynomial functions is found in how they can be used to approximate the sine and cosine functions. -

      - - - -
      - - - Summary -
        -
      • -

        - Polynomials arise naturally in the study of problems involving the volume and surface area of three-dimensional containers such as boxes and cylinders because these formulas fundamentally involve sums and products of variables. For instance, the volume of a cylinder is V = \pi r^2 h. In the presence of a surface area constraint that tells us that h = \frac{100-2\pi r^2}{2\pi r}, it follows that - - V = \pi r^2 \frac{100-2\pi r^2}{2\pi r} = r(50-\pi r^2) - , - which is a cubic polynomial. -

        -
      • -
      • -

        - Polynomial functions can be used to approximate non-polynomial curves and functions in many different ways. One example is found in cubic Bezier curves which use a collection of control points to enable the user to manipulate curves to pass through select points in such a way that the curve first travels in a certain direction. Another example is in the remarkable approximation of non-polynomial functions like the sine function, as given by - - \sin(x) \approx x - \frac{1}{3!}x^3 + \frac{1}{5!}x^5 - \frac{1}{7!}x^7 - , - where the approximation is good for x-values near x = 0. -

        -
      • -
      -
      - - - - - -
      + + + + + + + + + + + + + +
      + Modeling with polynomial functions + + +
        +
      • +

        + Why do polynomials arise naturally in the study of problems involving the volume and surface area of three-dimensional containers such as boxes and cylinders? +

        +
      • +
      • +

        + How can polynomial functions be used to approximate non-polynomial curves and functions? +

        +
      • +
      +
      + + Introduction +

      + Polynomial functions are the simplest of all functions in mathematics in part because they only involve multiplication and addition. In any applied setting where we can formulate key ideas using only those arithmetic operations, it's natural that polynomial functions model the corresponding phenomena. For example, in Activity, we saw that for a spherical tank of radius 4 m filling with water, the volume of water in the tank at a given instant, V, is a function of the depth, h, of the water in the tank at the same moment according to the formula + + V = f(h) = \frac{\pi}{3} h^2(12-h) + . + The function f is a polynomial of degree 3 with a repeated zero at h = 0 and an additional zero at h = 12. Because the tank has a radius of 4, its total height is 8, and thus the model V = f(h) = \frac{\pi}{3} h^2(12-h) is only valid on the domain 0 \le h \le 8. This polynomial function tells us how the volume of water in the tank changes as h changes. +

      + +

      + In other similar situations where we consider the volume of a box, tank, or other three-dimensional container, polynomial functions frequently arise. To develop a model function that represents a physical situation, we almost always begin by drawing one or more diagrams of the situation and then introduce one or more variables to represent quantities that are changing. From there, we explore relationships that are present and work to express one of the quantities in terms of the other(s). +

      + + + + +
      + + + Volume, surface area, and constraints +

      + In Preview Activity, we worked with a rectangular box being built by folding cardboard. One of the key principles we needed to use was the fact that the volume of a rectangular box of length l, width w, and height h is + + V = lwh + . rectangular boxvolume volumebox +

      + + +
      + A rectangular box. +

      A rectangular box.

      +
      +
      +
      + A circular cylinder. +

      A circular cylinder.

      +
      +
      +
      + +

      + One way to remember the formula for the volume of a rectangular box is area of the base times the height. This principle extends to other three-dimensional shapes that have constant cross-sectional area. For instance, the volume of a circular cylinder with radius r and height h is + + V = \pi r^2 h + circular cylindervolume volumecylinder + since the area of the base is \pi r^2. +

      + +

      + We'll also often consider the surface area of a three-dimensional container. For a rectangular box with side lengths of l, w, and h, its surface area consists of 3 pairs of rectangles: the top and bottom, each of area lw, the two sides that are the front and back when we look right at the box, each of area lh, and the remaining two sides of area wh. Thus the total surface area of the box is + rectangular boxsurface area surface areabox + SA = 2lw + 2lh + 2wh + . + For a circular cylinder, its surface area is the sum of the areas of the top and bottom (\pi r^2 each), plus the area of the sides. If we think of cutting the cylinder vertically and unfurling it, the resulting figure is a rectangle whose dimensions are the height of the cylinder, h, by the circumference of the base, 2\pi r. The rectangle's area is therefore 2\pi r \cdot h, and hence the total surface area of a cylinder is + + SA = 2\pi r^2 + 2\pi r h + . circular cylindersurface area surface areacylinder +

      + +

      + Each of the volume and surface area equations (Equation, Equation, Equation, and Equation) involve only multiplication and addition, and thus have the potential to result in polynomial functions. At present, however, each of these equations involves at least two variables. The inclusion of additional constraints can enable us to use these formulas to generate polynomial functions of a single variable. +

      + + + + + +
      + + + Other applications of polynomial functions + +

      + A different use of polynomial functions arises with Bezier curves. Bezier curves The most common type of Bezier curve used in applications is the cubic Bezier curve, which is a curve given parametrically by a formula of the form (x(t), y(t)), where + + x(t) = (1-t)^3 x_0 + 3(1-t)^2 t x_1 + 3(1-t) t^2 x_2 + t^3 x_3 + + and + + y(t) = (1-t)^3 y_0 + 3(1-t)^2 t y_1 + 3(1-t) t^2 y_2 + t^3 y_3 + . + The curve passes through the points A = (x_0,y_0) and B = (x_3, y_3) and the points C = (x_1, y_1) and D = (x_2, y_2) are called control points. At http://gvsu.edu/s/0zC, you can explore the effects of moving the control points (in gray) and the points on the curve (in black) to generate different curves in the plane, similar to the one shown in Figure. +

      + + +
      + A cubic Bezier curve with control points in gray. +

      A cubic Bezier curve with control points in gray.

      +
      +
      +
      + The letter S in Palatino font, generated by Bezier curves. +

      The letter S in Palatino font, generated by Bezier curves.

      +
      +
      +
      + +

      + The main issue to realize is that the form of the curve depends on a special family of cubic polynomials: + + (1-t)^3, 3(1-t)^2 t, 3(1-t) t^2, \ \text{ and } \ t^3 + . + These four cubic polynomials play a key role in graphic design and are used in all sorts of important ways, including in font design, as seen in Figure. +

      + +

      + Another important application of polynomial functions is found in how they can be used to approximate the sine and cosine functions. +

      + + + +
      + + + Summary +
        +
      • +

        + Polynomials arise naturally in the study of problems involving the volume and surface area of three-dimensional containers such as boxes and cylinders because these formulas fundamentally involve sums and products of variables. For instance, the volume of a cylinder is V = \pi r^2 h. In the presence of a surface area constraint that tells us that h = \frac{100-2\pi r^2}{2\pi r}, it follows that + + V = \pi r^2 \frac{100-2\pi r^2}{2\pi r} = r(50-\pi r^2) + , + which is a cubic polynomial. +

        +
      • +
      • +

        + Polynomial functions can be used to approximate non-polynomial curves and functions in many different ways. One example is found in cubic Bezier curves which use a collection of control points to enable the user to manipulate curves to pass through select points in such a way that the curve first travels in a certain direction. Another example is in the remarkable approximation of non-polynomial functions like the sine function, as given by + + \sin(x) \approx x - \frac{1}{3!}x^3 + \frac{1}{5!}x^5 - \frac{1}{7!}x^7 + , + where the approximation is good for x-values near x = 0. +

        +
      • +
      +
      + + + + + +
      diff --git a/source/sec-poly-polynomials-wb.xml b/source/sec-poly-polynomials-wb.xml index b772da51..ad03a394 100755 --- a/source/sec-poly-polynomials-wb.xml +++ b/source/sec-poly-polynomials-wb.xml @@ -1,22 +1,22 @@ - - - - - - - - - - - - - -
      - Polynomials - - - - - - -
      + + + + + + + + + + + + + +
      + Polynomials + + + + + + +
      diff --git a/source/sec-poly-polynomials.xml b/source/sec-poly-polynomials.xml index ba112d9e..45667bc2 100755 --- a/source/sec-poly-polynomials.xml +++ b/source/sec-poly-polynomials.xml @@ -1,334 +1,335 @@ - - - - - - - - - - - - - -
      - Polynomials - - -
        -
      • -

        - What properties of a polynomial function can we deduce from its algebraic structure? -

        -
      • -
      • -

        - What is a sign chart and how does it help us understand a polynomial function's behavior? -

        -
      • -
      • -

        - How do zeros of multiplicity other than 1 impact the graph of a polynomial function? -

        -
      • -
      -
      - - Introduction -

      - We know that linear functions are the simplest of all functions we can consider: their graphs have the simplest shape, their average rate of change is always constant (regardless of the interval chosen), and their formula is elementary. Moreover, computing the value of a linear function only requires multiplication and addition. -

      - -

      - If we think of a linear function as having formula L(x) = b + mx, and the next-simplest functions, quadratic functions, as having form Q(x) = c + bx + ax^2, we can see immediate parallels between their respective forms and realize that it's natural to consider slightly more complicated functions by adding additional power functions. -

      - -

      - Indeed, if we instead view linear functions as having form - - L(x) = a_0 + a_1 x - - (for some constants a_0 and a_1) and quadratic functions as having form - - Q(x) = a_0 + a_1 x + a_2 x^2 - - (for some constants a_0, a_1, and a_2), - then it's natural to think about more general functions of this same form, - but with additional power functions included. -

      - - - polynomial function - -

      - Given real numbers a_0, a_1, \ldots, a_n where a_n \ne 0, we say that the function - - P(x) = a_0 + a_1 x + a_2 x^2 + \cdots + a_{n-1}x^{n-1} + a_n x^n - - is a polynomial of degree n. polynomialdegree In addition, we say that the values of a_i are the coefficients of the polynomial and the individual power functions a_i x^i are the terms of the polynomial. polynomialcoefficients polynomialterms Any value of x for which P(x) = 0 is called a zero of the polynomial. polynomialzero -

      -
      -
      - - - -

      - The polyomial function P(x) = 3 - 7x + 4x^2 - 2x^3 + 9x^5 has degree 5, its constant term is 3, and its linear term is -7x. -

      -
      -
      - -

      - Since a polynomial is simply a sum of constant multiples of various power functions with positive integer powers, we often refer to those individual terms by referring to their individual degrees: the linear term, the quadratic term, and so on. In addition, since the domain of any power function of the form p(x) = x^n where n is a positive whole number is the set of all real numbers, it's also true the the domain of any polynomial function is the set of all real numbers. -

      - - - -
      - - - Key results about polynomial functions -

      - Our observations in Preview Activity generalize to polynomials of any degree. In particular, it is possible to prove the following general conclusions regarding the number of zeros, the long-range behavior, and the number of turning points for any polynomial of degree n. -

      - - - The number of real zeros of a polynomial -

      - For any degree n polynomial p(x) = a_0 + a_1 x + \cdots + a_{n-1}x^{n-1} + a_n x^n, has at most n real zeros.We can actually say even more: if we allow the zeros to be complex numbers, then every degree n polynomial has exactly n zeros, provided we count zeros according to their multiplicity. For example, the polynomial p(x) = (x-1)^2 = x^2 - 2x + 1 has a zero of multiplicity two at x = 1. -

      -
      - -

      - We know that each of the power functions x, x^2, \ldots, x^n grow without bound as x \to \infty. Intuitively, we sense that x^5 grows faster than x^4 (and likewise for any comparison of a higher power to a lower one). This means that for large values of x, the most important term in any polynomial is its highest order term, as we saw in Preview Activity when we compared p(x) = a_0 + a_1 x + a_2 x^2 + a_3 x^3 + a_4 x^4 and y = a_4 x^4. -

      - - - polynomiallong-range behavior - The long-range behavior of a polynomial -

      - For any degree n polynomial p(x) = a_0 + a_1 x + \cdots + a_{n-1}x^{n-1} + a_n x^n, its long-range behavior is the same as its highest-order term q(x) = a_n x^n. Thus, any polynomial of even degree appears U-shaped (\cup or \cap, like x^2 or -x^2) when we zoom way out, and any polynomial of odd degree appears chair-shaped (like x^3 or -x^3) when we zoom way out. -

      -
      - -

      - In Figure, we see how the degree 7 polynomial pictured there (and in Figure as well) appears to look like q(x) = -x^7 as we zoom out. -

      - - -
      - Plot of a degree 7 polynomial function p. -

      Plot of a degree 7 polynomial function p.

      -
      -
      -
      - Plot of the same degree 7 polynomial function p, but zoomed out. -

      Plot of the same degree 7 polynomial function p, but zoomed out.

      -
      -
      -
      - -

      - Finally, a key idea from calculus justifies the fact that the maximum number of turning points of a degree n polynomial is n-1, as we conjectured in the degree 4 case in Preview Activity. Moreover, the only possible numbers of turning points must have the same parity as n-1; that is, if n-1 is even, then the number of turning points must be even, and if instead n-1 is odd, the number of turning points must also be odd. For instance, for the degree 7 polynomial in Figure, we know that it is chair-shaped, with one end up and one end down. There could be zero turning points and the function could always decrease. But if there is at least one, then there must be a second, since if there were only one the function would decrease and then increase without turning back, which would force the graph to appear U-shaped. -

      - - - polynomialnumber of turning points - The turning points of a polynomial -

      - For any degree n polynomial p(x) = a_0 + a_1 x + \cdots + a_{n-1}x^{n-1} + a_n x^n, if n is even, its number of turning points is exactly one of n-1, n-3, \ldots, 1, and if n is odd, its number of turning points is exactly one of n-1, n-3, \ldots, 0. -

      -
      - - - -
      - - - Using zeros and signs to understand polynomial behavior - -

      - Just like a quadratic function can be written in different forms (standard: q(x) = ax^2 + bx + c, vertex: q(x) = a(x-h)^2 + k, and factored: q(x) = a(x-r_1)(x-r_2)), it's possible to write a polynomial function in different forms and to gain information about its behavior from those different forms. In particular, if we know all of the zeros of a polynomial function, we can write its formula in factored form, which gives us a deeper understanding of its graph. -

      - -

      - The Zero Product Property Zero Product Property states that if two or more numbers are multiplied together and the result is 0, then at least one of the numbers must be 0. We use the Zero Product Property regularly with polynomial functions. If we can determine all n zeros of a degree n polynomial, and we call those zeros r_1, r_2, \ldots, r_n, we can write - - p(x) = a_n(x-r_1)(x-r_2) \cdots (x-r_n) - . - Moreover, if we are given a polynomial in this factored form, we can quickly determine its zeros. For instance, if p(x) = 2(x+7)(x+1)(x-2)(x-5), we know that the only way p(x) = 0 is if at least one of the factors (x+7), (x+1), (x-2), or (x-5) equals 0, which implies that x = -7, x = -1, x = 2, or x = 5. Hence, from the factored form of a polynomial, it is straightforward to identify the polynomial's zeros, the x-values at which its graph crosses the x-axis. We can also use the factored form of a polynomial to develop what we call a sign chart, which we demonstrate in Example. sign chart -

      - - - -

      - Consider the polynomial function p(x) = k(x-1)(x-a)(x-b). Suppose we know that 1 \lt a \lt b and that k \lt 0. Fully describe the graph of p without the aid of a graphing utility. -

      -
      - -

      - Since p(x) = k(x-1)(x-a)(x-b), we immediately know that p is a degree 3 polynomial with 3 real zeros: x = 1, a, b. We are given that 1 \lt a \lt b and in addition that k \lt 0. If we expand the factored form of p(x), it has form p(x) = kx^3 + \cdots, and since we know that when we zoom out, p(x) behaves like kx^3, we know that with k \lt 0 it follows \lim_{x \to -\infty} p(x) = +\infty and \lim_{x \to \infty} p(x) = -\infty. -

      - -

      - Since p is degree 3 and we know it has zeros at x = 1, a, b, we know there are no other locations where p(x) = 0. Thus, on any interval between two zeros (or to the left of the least or the right of the greatest), the polynomial cannot change sign. We now investigate, interval by interval, the sign of the function. -

      - -

      - When x \lt 1, it follows that x - 1 \lt 0. In addition, since 1 \lt a \lt b, when x \lt 1, x lies to the left of 1, a, and b, which also makes x-a and x-b negative. Moreover, we know that the constant k \lt 0. Hence, on the interval x \lt 1, all four terms in p(x) = k(x-1)(x-a)(x-b) are negative, which we indicate by writing ---- in that location on the sign chart pictured in Figure. -

      - -

      - In addition, since there are an even number of negative terms in the product, the overall product's sign is positive, which we indicate by the single + beneath ----, and by writing POS below the coordinate axis. -

      - -
      - A sign chart for the polynomial function p(x) = k(x-1)(x-a)(x-b). -

      A sign chart for the polynomial function p(x) = k(x-1)(x-a)(x-b).

      -
      -
      - -

      - We now proceed to the other intervals created by the zeros. On 1 \lt x \lt a, the term (x-1) has become positive, since x \gt 1. But both x-a and x-b are negative, as is the constant k, and thus we write -+-- for this interval, which has overall sign -, as noted in the figure. Similar reasoning completes the diagram. -

      - -

      - From all of the information we have deduced about p, we conclude that regardless of the locations of a and b, the graph of p must look like the curve shown in Figure. -

      - -
      - The graph of the polynomial function p(x) = k(x-1)(x-a)(x-b). -

      The graph of the polynomial function p(x) = k(x-1)(x-a)(x-b).

      -
      -
      -
      -
      - - - -
      - - - Multiplicity of polynomial zeros -

      - In Activity, we found that one of the zeros of the polynomial p(x) = 4692(x + 1520)(x^2 + 10000)(x - 3471)^2 (x - 9738) leads to different behavior of the function near that zero than we've seen in other situations. We now consider the more general situation where a polynomial has a repeated factor of the form (x-r)^n. When (x-r)^n is a factor of a polynomial p, we say that p has a zero of multiplicity n at x = r. polynomialzero of multiplicity n -

      - -

      - To see the impact of repeated factors, we examine a collection of degree 4 polynomials that each have 4 real zeros. We start with the simplest of all, the function f(x) = x^4, whose zeros are x = 0, 0, 0, 0. Because the factor x-0 is repeated 4 times, the zero x = 0 has multiplicity 4. -

      - -

      - Next we consider the degree 4 polynomial g(x) = x^3 (x-1), which has a zero of multiplicity 3 at x = 0 and a zero of multiplicity 1 at x = 1. -

      - -
      - A plot of g(x) = x^3(x-1) with zero x = 0 of multiplicity 3 and x = 1 of multiplicity 1. -

      A plot of g(x) = x^3(x-1) with zero x = 0 of multiplicity 3 and x = 1 of multiplicity 1.

      -
      -
      - - -

      - Observe that in Figure, the up-close plot near the zero x = 0 of multiplicity 3, the polynomial function g looks similar to the basic cubic polynomial -x^3. In addition, in Figure, we observe that if we zoom in even futher on the zero of multiplicity 1, the function g looks roughly linear, like a degree 1 polynomial. This type of behavior near repeated zeros turns out to hold in other cases as well. -

      - - -
      - A plot of g(x) = x^3(x-1) zoomed in on the zero x = 0 of multiplicity 3. -

      A plot of g(x) = x^3(x-1) zoomed in on the zero x = 0 of multiplicity 3.

      -
      -
      -
      - A plot of g(x) = x^3(x-1) zoomed in on the zero x = 1 of multiplicity 1. -

      A plot of g(x) = x^3(x-1) zoomed in on the zero x = 1 of multiplicity 1.

      -
      -
      -
      - -

      - If we next let h(x) = x^2 (x-1)^2, we see that h has two distinct real zeros, each of multiplicity 2. The graph of h in Figure shows that h behaves similar to a basic quadratic function near each of those zeros and thus shows U-shaped behavior nearby. If instead we let k(x) = x^2(x-1)(x+1), we see approximately linear behavior near x = -1 and x = 1 (the zeros of multiplicity 1), and quadratic (U-shaped) behavior near x = 0 (the zero of multiplicity 2), as seen in Figure. -

      - - -
      - Plot of h(x) = x^2 (x-1)^2 with zeros x = 0 and x = 1 of multiplicity 2. -

      Plot of h(x) = x^2 (x-1)^2 with zeros x = 0 and x = 1 of multiplicity 2.

      -
      -
      -
      - Plot of k(x) = x^2(x-1)(x+1) with zeros x = 0 of multiplicity 2 and x = -1 and x = 1 of multiplicity 1. -

      Plot of k(x) = x^2(x-1)(x+1) with zeros x = 0 of multiplicity 2 and x = -1 and x = 1 of multiplicity 1.

      -
      -
      -
      - -

      - Finally, if we consider m(x) = (x+1)x(x-1)(x-2), which has 4 distinct real zeros each of multiplicity 1, we observe in Figure that zooming in on each zero individually, the function demonstrates approximately linear behavior as it passes through the x-axis. -

      - -
      - Plot of m(x) = (x+1)x(x-1)(x-2) with 4 distinct zeros of multiplicity 1. -

      Plot of m(x) = (x+1)x(x-1)(x-2) with 4 distinct zeros of multiplicity 1.

      -
      -
      - -

      - Our observations with polynomials of degree 4 in the various figures above generalize to polynomials of any degree. -

      - - - polynomialmultiple zeros - Polynomial zeros of multiplicity <m>n</m> -

      - If (x-r)^n is a factor of a polynomial p, then x = r is a zero of p of multiplicity n, and near x = r the graph of p looks like either -x^n or x^n does near x = 0. That is, the shape of the graph near the zero is determined by the multiplicity of the zero. -

      -
      - - - -
      - - - Summary -

      -

        -
      • -

        - From a polynomial function's algebraic structure, we can deduce several key traits of the function. -

        -

        -

          -
        • -

          - If the function is in standard form, say p(x) = a_0 + a_1 x + a_2 x^2 + \cdots + a_{n-1}x^{n-1} + a_n x^n, we know that its degree is n and that when we zoom out, p looks like a_n x^n and thus has the same long-range behavior as a_n x^n. Thus, p is chair-shaped if n is odd and U-shaped if n is even. Whether \lim_{n \to \infty} p(x) is +\infty or -\infty depends on the sign of a_n. -

          -
        • - -
        • -

          - If the function is in factored form, say p(x) = a_n(x-r_1)(x-r_2) \cdots (x-r_n) (where the r_i's are possibly not distinct and possibly complex), we can quickly determine both the degree of the polynomial (n) and the locations of its zeros, as well as their multiplicities. -

          -
        • -
        -

        -
      • -
      • -

        - A sign chart is a visual way to identify all of the locations where a function is zero along with the sign of the function on the various intervals the zeros create. A sign chart gives us an overall sense of the graph of the function, but without concerning ourselves with any specific values of the function besides the zeros. For a sample sign chart, see Figure. -

        -
      • -
      • -

        - When a polynomial p has a repeated factor such as p(x) = (x-5)(x-5)(x-5) = (x-5)^3, we say that x = 5 is a zero of multiplicity 3. At the point x = 5 where p will cross the x-axis, up close it will look like a cubic polynomial and thus be chair-shaped. In general, if (x-r)^n is a factor of a polynomial p so that x = r is a zero of multiplicity n, the polynomial will behave near x = r like the polynomial x^n behaves near x = 0. -

        -
      • -
      -

      -
      - - - - - -
      + + + + + + + + + + + + + +
      + Polynomials + + +
        +
      • +

        + What properties of a polynomial function can we deduce from its algebraic structure? +

        +
      • +
      • +

        + What is a sign chart and how does it help us understand a polynomial function's behavior? +

        +
      • +
      • +

        + How do zeros of multiplicity other than 1 impact the graph of a polynomial function? +

        +
      • +
      +
      + + Introduction +

      + We know that linear functions are the simplest of all functions we can consider: their graphs have the simplest shape, their average rate of change is always constant (regardless of the interval chosen), and their formula is elementary. Moreover, computing the value of a linear function only requires multiplication and addition. +

      + +

      + If we think of a linear function as having formula L(x) = b + mx, and the next-simplest functions, quadratic functions, as having form Q(x) = c + bx + ax^2, we can see immediate parallels between their respective forms and realize that it's natural to consider slightly more complicated functions by adding additional power functions. +

      + +

      + Indeed, if we instead view linear functions as having form + + L(x) = a_0 + a_1 x + + (for some constants a_0 and a_1) and quadratic functions as having form + + Q(x) = a_0 + a_1 x + a_2 x^2 + + (for some constants a_0, a_1, and a_2), + then it's natural to think about more general functions of this same form, + but with additional power functions included. +

      + + + polynomial function + +

      + Given real numbers a_0, a_1, \ldots, a_n where a_n \ne 0, we say that the function + + P(x) = a_0 + a_1 x + a_2 x^2 + \cdots + a_{n-1}x^{n-1} + a_n x^n + + is a polynomial of degree n. polynomialdegree In addition, we say that the values of a_i are the coefficients of the polynomial and the individual power functions a_i x^i are the terms of the polynomial. polynomialcoefficients polynomialterms Any value of x for which P(x) = 0 is called a zero of the polynomial. polynomialzero +

      +
      +
      + + + +

      + The polyomial function P(x) = 3 - 7x + 4x^2 - 2x^3 + 9x^5 has degree 5, its constant term is 3, and its linear term is -7x. +

      +
      +
      + +

      + Since a polynomial is simply a sum of constant multiples of various power functions with positive integer powers, we often refer to those individual terms by referring to their individual degrees: the linear term, the quadratic term, and so on. In addition, since the domain of any power function of the form p(x) = x^n where n is a positive whole number is the set of all real numbers, it's also true the the domain of any polynomial function is the set of all real numbers. +

      + + + + +
      + + + Key results about polynomial functions +

      + Our observations in Preview Activity generalize to polynomials of any degree. In particular, it is possible to prove the following general conclusions regarding the number of zeros, the long-range behavior, and the number of turning points for any polynomial of degree n. +

      + + + The number of real zeros of a polynomial +

      + For any degree n polynomial p(x) = a_0 + a_1 x + \cdots + a_{n-1}x^{n-1} + a_n x^n, has at most n real zeros.We can actually say even more: if we allow the zeros to be complex numbers, then every degree n polynomial has exactly n zeros, provided we count zeros according to their multiplicity. For example, the polynomial p(x) = (x-1)^2 = x^2 - 2x + 1 has a zero of multiplicity two at x = 1. +

      +
      + +

      + We know that each of the power functions x, x^2, \ldots, x^n grow without bound as x \to \infty. Intuitively, we sense that x^5 grows faster than x^4 (and likewise for any comparison of a higher power to a lower one). This means that for large values of x, the most important term in any polynomial is its highest order term, as we saw in Preview Activity when we compared p(x) = a_0 + a_1 x + a_2 x^2 + a_3 x^3 + a_4 x^4 and y = a_4 x^4. +

      + + + polynomiallong-range behavior + The long-range behavior of a polynomial +

      + For any degree n polynomial p(x) = a_0 + a_1 x + \cdots + a_{n-1}x^{n-1} + a_n x^n, its long-range behavior is the same as its highest-order term q(x) = a_n x^n. Thus, any polynomial of even degree appears U-shaped (\cup or \cap, like x^2 or -x^2) when we zoom way out, and any polynomial of odd degree appears chair-shaped (like x^3 or -x^3) when we zoom way out. +

      +
      + +

      + In Figure, we see how the degree 7 polynomial pictured there (and in Figure as well) appears to look like q(x) = -x^7 as we zoom out. +

      + + +
      + Plot of a degree 7 polynomial function p. +

      Plot of a degree 7 polynomial function p.

      +
      +
      +
      + Plot of the same degree 7 polynomial function p, but zoomed out. +

      Plot of the same degree 7 polynomial function p, but zoomed out.

      +
      +
      +
      + +

      + Finally, a key idea from calculus justifies the fact that the maximum number of turning points of a degree n polynomial is n-1, as we conjectured in the degree 4 case in Preview Activity. Moreover, the only possible numbers of turning points must have the same parity as n-1; that is, if n-1 is even, then the number of turning points must be even, and if instead n-1 is odd, the number of turning points must also be odd. For instance, for the degree 7 polynomial in Figure, we know that it is chair-shaped, with one end up and one end down. There could be zero turning points and the function could always decrease. But if there is at least one, then there must be a second, since if there were only one the function would decrease and then increase without turning back, which would force the graph to appear U-shaped. +

      + + + polynomialnumber of turning points + The turning points of a polynomial +

      + For any degree n polynomial p(x) = a_0 + a_1 x + \cdots + a_{n-1}x^{n-1} + a_n x^n, if n is even, its number of turning points is exactly one of n-1, n-3, \ldots, 1, and if n is odd, its number of turning points is exactly one of n-1, n-3, \ldots, 0. +

      +
      + + + +
      + + + Using zeros and signs to understand polynomial behavior + +

      + Just like a quadratic function can be written in different forms (standard: q(x) = ax^2 + bx + c, vertex: q(x) = a(x-h)^2 + k, and factored: q(x) = a(x-r_1)(x-r_2)), it's possible to write a polynomial function in different forms and to gain information about its behavior from those different forms. In particular, if we know all of the zeros of a polynomial function, we can write its formula in factored form, which gives us a deeper understanding of its graph. +

      + +

      + The Zero Product Property Zero Product Property states that if two or more numbers are multiplied together and the result is 0, then at least one of the numbers must be 0. We use the Zero Product Property regularly with polynomial functions. If we can determine all n zeros of a degree n polynomial, and we call those zeros r_1, r_2, \ldots, r_n, we can write + + p(x) = a_n(x-r_1)(x-r_2) \cdots (x-r_n) + . + Moreover, if we are given a polynomial in this factored form, we can quickly determine its zeros. For instance, if p(x) = 2(x+7)(x+1)(x-2)(x-5), we know that the only way p(x) = 0 is if at least one of the factors (x+7), (x+1), (x-2), or (x-5) equals 0, which implies that x = -7, x = -1, x = 2, or x = 5. Hence, from the factored form of a polynomial, it is straightforward to identify the polynomial's zeros, the x-values at which its graph crosses the x-axis. We can also use the factored form of a polynomial to develop what we call a sign chart, which we demonstrate in Example. sign chart +

      + + + +

      + Consider the polynomial function p(x) = k(x-1)(x-a)(x-b). Suppose we know that 1 \lt a \lt b and that k \lt 0. Fully describe the graph of p without the aid of a graphing utility. +

      +
      + +

      + Since p(x) = k(x-1)(x-a)(x-b), we immediately know that p is a degree 3 polynomial with 3 real zeros: x = 1, a, b. We are given that 1 \lt a \lt b and in addition that k \lt 0. If we expand the factored form of p(x), it has form p(x) = kx^3 + \cdots, and since we know that when we zoom out, p(x) behaves like kx^3, we know that with k \lt 0 it follows \lim_{x \to -\infty} p(x) = +\infty and \lim_{x \to \infty} p(x) = -\infty. +

      + +

      + Since p is degree 3 and we know it has zeros at x = 1, a, b, we know there are no other locations where p(x) = 0. Thus, on any interval between two zeros (or to the left of the least or the right of the greatest), the polynomial cannot change sign. We now investigate, interval by interval, the sign of the function. +

      + +

      + When x \lt 1, it follows that x - 1 \lt 0. In addition, since 1 \lt a \lt b, when x \lt 1, x lies to the left of 1, a, and b, which also makes x-a and x-b negative. Moreover, we know that the constant k \lt 0. Hence, on the interval x \lt 1, all four terms in p(x) = k(x-1)(x-a)(x-b) are negative, which we indicate by writing ---- in that location on the sign chart pictured in Figure. +

      + +

      + In addition, since there are an even number of negative terms in the product, the overall product's sign is positive, which we indicate by the single + beneath ----, and by writing POS below the coordinate axis. +

      + +
      + A sign chart for the polynomial function p(x) = k(x-1)(x-a)(x-b). +

      A sign chart for the polynomial function p(x) = k(x-1)(x-a)(x-b).

      +
      +
      + +

      + We now proceed to the other intervals created by the zeros. On 1 \lt x \lt a, the term (x-1) has become positive, since x \gt 1. But both x-a and x-b are negative, as is the constant k, and thus we write -+-- for this interval, which has overall sign -, as noted in the figure. Similar reasoning completes the diagram. +

      + +

      + From all of the information we have deduced about p, we conclude that regardless of the locations of a and b, the graph of p must look like the curve shown in Figure. +

      + +
      + The graph of the polynomial function p(x) = k(x-1)(x-a)(x-b). +

      The graph of the polynomial function p(x) = k(x-1)(x-a)(x-b).

      +
      +
      +
      +
      + + + +
      + + + Multiplicity of polynomial zeros +

      + In Activity, we found that one of the zeros of the polynomial p(x) = 4692(x + 1520)(x^2 + 10000)(x - 3471)^2 (x - 9738) leads to different behavior of the function near that zero than we've seen in other situations. We now consider the more general situation where a polynomial has a repeated factor of the form (x-r)^n. When (x-r)^n is a factor of a polynomial p, we say that p has a zero of multiplicity n at x = r. polynomialzero of multiplicity n +

      + +

      + To see the impact of repeated factors, we examine a collection of degree 4 polynomials that each have 4 real zeros. We start with the simplest of all, the function f(x) = x^4, whose zeros are x = 0, 0, 0, 0. Because the factor x-0 is repeated 4 times, the zero x = 0 has multiplicity 4. +

      + +

      + Next we consider the degree 4 polynomial g(x) = x^3 (x-1), which has a zero of multiplicity 3 at x = 0 and a zero of multiplicity 1 at x = 1. +

      + +
      + A plot of g(x) = x^3(x-1) with zero x = 0 of multiplicity 3 and x = 1 of multiplicity 1. +

      A plot of g(x) = x^3(x-1) with zero x = 0 of multiplicity 3 and x = 1 of multiplicity 1.

      +
      +
      + + +

      + Observe that in Figure, the up-close plot near the zero x = 0 of multiplicity 3, the polynomial function g looks similar to the basic cubic polynomial -x^3. In addition, in Figure, we observe that if we zoom in even futher on the zero of multiplicity 1, the function g looks roughly linear, like a degree 1 polynomial. This type of behavior near repeated zeros turns out to hold in other cases as well. +

      + + +
      + A plot of g(x) = x^3(x-1) zoomed in on the zero x = 0 of multiplicity 3. +

      A plot of g(x) = x^3(x-1) zoomed in on the zero x = 0 of multiplicity 3.

      +
      +
      +
      + A plot of g(x) = x^3(x-1) zoomed in on the zero x = 1 of multiplicity 1. +

      A plot of g(x) = x^3(x-1) zoomed in on the zero x = 1 of multiplicity 1.

      +
      +
      +
      + +

      + If we next let h(x) = x^2 (x-1)^2, we see that h has two distinct real zeros, each of multiplicity 2. The graph of h in Figure shows that h behaves similar to a basic quadratic function near each of those zeros and thus shows U-shaped behavior nearby. If instead we let k(x) = x^2(x-1)(x+1), we see approximately linear behavior near x = -1 and x = 1 (the zeros of multiplicity 1), and quadratic (U-shaped) behavior near x = 0 (the zero of multiplicity 2), as seen in Figure. +

      + + +
      + Plot of h(x) = x^2 (x-1)^2 with zeros x = 0 and x = 1 of multiplicity 2. +

      Plot of h(x) = x^2 (x-1)^2 with zeros x = 0 and x = 1 of multiplicity 2.

      +
      +
      +
      + Plot of k(x) = x^2(x-1)(x+1) with zeros x = 0 of multiplicity 2 and x = -1 and x = 1 of multiplicity 1. +

      Plot of k(x) = x^2(x-1)(x+1) with zeros x = 0 of multiplicity 2 and x = -1 and x = 1 of multiplicity 1.

      +
      +
      +
      + +

      + Finally, if we consider m(x) = (x+1)x(x-1)(x-2), which has 4 distinct real zeros each of multiplicity 1, we observe in Figure that zooming in on each zero individually, the function demonstrates approximately linear behavior as it passes through the x-axis. +

      + +
      + Plot of m(x) = (x+1)x(x-1)(x-2) with 4 distinct zeros of multiplicity 1. +

      Plot of m(x) = (x+1)x(x-1)(x-2) with 4 distinct zeros of multiplicity 1.

      +
      +
      + +

      + Our observations with polynomials of degree 4 in the various figures above generalize to polynomials of any degree. +

      + + + polynomialmultiple zeros + Polynomial zeros of multiplicity <m>n</m> +

      + If (x-r)^n is a factor of a polynomial p, then x = r is a zero of p of multiplicity n, and near x = r the graph of p looks like either -x^n or x^n does near x = 0. That is, the shape of the graph near the zero is determined by the multiplicity of the zero. +

      +
      + + + +
      + + + Summary +

      +

        +
      • +

        + From a polynomial function's algebraic structure, we can deduce several key traits of the function. +

        +

        +

          +
        • +

          + If the function is in standard form, say p(x) = a_0 + a_1 x + a_2 x^2 + \cdots + a_{n-1}x^{n-1} + a_n x^n, we know that its degree is n and that when we zoom out, p looks like a_n x^n and thus has the same long-range behavior as a_n x^n. Thus, p is chair-shaped if n is odd and U-shaped if n is even. Whether \lim_{n \to \infty} p(x) is +\infty or -\infty depends on the sign of a_n. +

          +
        • + +
        • +

          + If the function is in factored form, say p(x) = a_n(x-r_1)(x-r_2) \cdots (x-r_n) (where the r_i's are possibly not distinct and possibly complex), we can quickly determine both the degree of the polynomial (n) and the locations of its zeros, as well as their multiplicities. +

          +
        • +
        +

        +
      • +
      • +

        + A sign chart is a visual way to identify all of the locations where a function is zero along with the sign of the function on the various intervals the zeros create. A sign chart gives us an overall sense of the graph of the function, but without concerning ourselves with any specific values of the function besides the zeros. For a sample sign chart, see Figure. +

        +
      • +
      • +

        + When a polynomial p has a repeated factor such as p(x) = (x-5)(x-5)(x-5) = (x-5)^3, we say that x = 5 is a zero of multiplicity 3. At the point x = 5 where p will cross the x-axis, up close it will look like a cubic polynomial and thus be chair-shaped. In general, if (x-r)^n is a factor of a polynomial p so that x = r is a zero of multiplicity n, the polynomial will behave near x = r like the polynomial x^n behaves near x = 0. +

        +
      • +
      +

      +
      + + + + + +
      diff --git a/source/sec-poly-rational-features-wb.xml b/source/sec-poly-rational-features-wb.xml index b5894d02..c53105f5 100755 --- a/source/sec-poly-rational-features-wb.xml +++ b/source/sec-poly-rational-features-wb.xml @@ -1,21 +1,21 @@ - - - - - - - - - - - - - -
      - Key features of rational functions - - - - - -
      + + + + + + + + + + + + + +
      + Key features of rational functions + + + + + +
      diff --git a/source/sec-poly-rational-features.xml b/source/sec-poly-rational-features.xml index 86a60b55..33d7d0cc 100755 --- a/source/sec-poly-rational-features.xml +++ b/source/sec-poly-rational-features.xml @@ -1,324 +1,325 @@ - - - - - - - - - - - - - -
      - Key features of rational functions - - -
        -
      • -

        - What does it mean to say that a rational function has a hole at a certain point, and what algebraic structure leads to such behavior? -

        -
      • -
      • -

        - How do we determine where a rational function has zeros and where it has vertical asymptotes? -

        -
      • -
      • -

        - What does a sign chart reveal about the behavior of a rational function and how do we develop a sign chart from a given formula? -

        -
      • -
      -
      - - Introduction -

      - Because any rational function is the ratio of two polynomial functions, it's natural to ask questions about rational functions similar to those we ask about polynomials. With polynomials, it is often helpful to know where the function's value is zero. In a rational function r(x) = \frac{p(x)}{q(x)}, we are curious to know where both p(x) = 0 and where q(x) = 0. -

      - -

      - Connected to these questions, we want to understand both where a rational function's output value is zero, as well as where the function is undefined. In addition, from the behavior of simple rational power functions such as \frac{1}{x}, we expect that rational functions may not only have horizontal asymptotes (as investigated in Section), but also vertical asymptotes. At first glance, these questions about zeros and vertical asymptotes of rational functions may appear to be elementary ones whose answers simply depend on where the numerator and denominator of the rational function are zero. But in fact, rational functions often admit very subtle behavior that can escape the human eye and the graph generated by a computer. -

      - - - -
      - - - When a rational function has a <q>hole</q> - -

      - Two important features of any rational function r(x) = \frac{p(x)}{q(x)} are any zeros and vertical asymptotes the function may have. These aspects of a rational function are closely connected to where the numerator and denominator, respectively, are zero. At the same time, a subtle related issue can lead to radically different behavior. To understand why, we first remind ourselves of a few key facts about fractions that involve 0. Because we are working with a function, we'll think about fractions whose numerator and denominator are approaching particular values. -

      - -

      - If the numerator of a fraction approaches 0 while the denominator approaches a nonzero value, then the overall fraction values will approach zero. For instance, consider the sequence of values - - \frac{0.1}{0.9} = 0.111111\cdots, \frac{0.01}{0.99} = 0.010101\cdots, \frac{0.001}{0.999} = 0.001001\cdots - . - Because the numerator gets closer and closer to 0 and the denominator stays away from 0, the quotients tend to 0. -

      - -

      - Similarly, if the denominator of a fraction approaches 0 while the numerator approaches a nonzero value, then the overall fraction increases without bound. If we consider the reciprocal values of the sequence above, we see that - - \frac{0.9}{0.1} = 9, \frac{0.99}{0.01} = 99, \frac{0.999}{0.001} = 999 - . - Since the denominator gets closer and closer to 0 and the numerator stays away from 0, the quotients increase without bound. -

      - -

      - These two behaviors show how the zeros and vertical asympototes of a rational function r(x) = \frac{p(x)}{q(x)} arise: where the numerator p(x) is zero and the denominator q(x) is nonzero, the function r will have a zero; and where q(x) is zero and p(x) is nonzero, the function will have a vertical asymptote. What we must be careful of is the special situation where both the numerator p(x) and q(x) are simultaneously zero. Indeed, if the numerator and denominator of a fraction both approach 0, different behavior can arise. For instance, consider the sequence - - \frac{0.2}{0.1} = 2, \frac{0.02}{0.01} = 2, \frac{0.002}{0.001} = 2 - . - In this situation, both the numerator and denominator are approaching 0, but the overall fraction's value is always 2. This is very different from the two sequences we considered above. In Example, we explore similar behavior in the context of a particular rational function. -

      - - - -

      - Consider the rational function r(x) = \frac{x^2 - 1}{x^2 - 3x - 4} from Preview Activity, whose numerator is p(x) = x^2 - 1 and whose denominator is q(x) = x^2 - 3x - 4. Explain why the graph of r generated by Desmos or another computational device is incorrect, and also identify the locations of any zeros and vertical asymptotes of r. -

      -
      - -

      - It is helpful with any rational function to factor the numerator and denominator. We note that p(x) = x^2 - 1 = (x-1)(x+1) and q(x) = x^2 - 3x - 4 = (x+1)(x-4). The domain of r is thus the set of all real numbers except x = -1 and x = 4, the set of all points where q(x) \ne 0. -

      - -

      - Knowing that r is not defined at x = -1, it is natural to study the graph of r near that value. Plotting the function in Desmos, we get a result similar to the one shown in Figure, which appears to show no unusual behavior at x = -1, and even that r(-1) is defined. If we zoom in on that point, as shown in Figure, the technology still fails to visually demonstrate the fact that r(-1) is not defined. This is because graphing utilities sample functions at a finite number of points and then connect the resulting dots to generate the curve we see. -

      - - -
      - A plot of r(x) = \frac{x^2 - 1}{x^2 - 3x - 4}. -

      A plot of r(x) = \frac{x^2 - 1}{x^2 - 3x - 4}.

      -
      -
      -
      - Zooming in on r(x) near x = -1. -

      Zooming in on r(x) near x = -1.

      -
      -
      -
      - How the graph of r(x) should actually appear near x = -1. -

      How the graph of r(x) should actually appear near x = -1.

      -
      -
      -
      - -

      - We know from our algebraic work with the denominator, q(x) = (x+1)(x-4), that r is not defined at x = -1. While the denominator q gets closer and closer to 0 as x approaches -1, so does the numerator, since p(x) = (x-1)(x+1). If we consider values close but not equal to x = -1, we see results in Table. -

      - - - Values of <m>r(x) = \frac{x^2 - 1}{x^2 - 3x - 4}</m> near <m>x = -1</m>. - - - x - -1.1 - -1.01 - -1.001 - - - r(x) - \frac{0.21}{0.51} \approx 0.4118 - \frac{0.0201}{0.0501} \approx 0.4012 - \frac{0.002001}{0.005001} \approx 0.4001 - - - - - - - - - x - -0.9 - -0.99 - -0.999 - - - r(x) - \frac{-0.19}{-0.49} \approx 0.3878 - \frac{-0.0199}{-0.0499} \approx 0.3989 - \frac{-0.001999}{-0.004999} \approx 0.3999 - - -
      - -

      - In the table, we see that both the numerator and denominator get closer and closer to 0 as x gets closer and closer to -1, but that their quotient appears to be getting closer and closer to y = 0.4. Indeed, we see this behavior in the graph of r, though the graphing utility misses the fact that r(-1) is actually not defined. A precise graph of r near x = -1 should look like the one presented in Figure, where we see an open circle at the point (-1, 0.4) that demonstrates that r(-1) is not defined, and that r does not have a vertical asymptote or zero at x = -1. -

      - -

      - Finally, we also note that p(1) = 0 and q(1) = -6, so at x = 1, r(x) has a zero (its numerator is zero and its denominator is not). In addition, q(4) = 0 and p(4) = 15 (its denominator is zero and its numerator is not), so r(x) has a vertical asymptote at x = 4. These features are accurately represented by the original Desmos graph shown in Figure. -

      -
      -
      - -

      - In the situation where a rational function is undefined at a point but does not have a vertical asymptote there, we'll say that the graph of the function has a hole. rational functionhole In calculus, we use limit notation to identify a hole in a function's graph. Indeed, having shown in Example that the value of r(x) gets closer and closer to 0.4 as x gets closer and closer to -1, we naturally write - - \lim_{x \to -1} r(x) = 0.4 - - as a shorthand way to represent the behavior of r (similar to how we've written limits involving \infty). This fact, combined with r(-1) being undefined, tells us that near x = -1 the graph approaches a value of 0.4 but has to have a hole at the point (-1,0.4), as shown in Figure. Because we'll encounter similar behavior with other functions, we formally define limit notation as follows. -

      - - - -

      - Let a and L be finite real numbers, and let r be a function defined near x = a, but not necessarily at x = a itself. If we can make the value of r(x) as close to the number L as we like by taking x sufficiently close (but not equal) to a, then we write - - \lim_{x \to a} r(x) = L - - and say that the limit of r as x approaches a is L. -

      -
      -
      - -

      - The key observations regarding zeros, vertical asymptotes, and holes in Example apply to any rational function. -

      - - - Features of a rational function -

      - Let r(x) = \frac{p(x)}{q(x)} be a rational function. -

      - -

      -

        -
      • -

        - If p(a) = 0 and q(a) \ne 0, then r(a) = 0, so r has a zero at x = a. -

        -
      • -
      • -

        - If q(a) = 0 and p(a) \ne 0, then r(a) is undefined and r has a vertical asymptote at x = a. -

        -
      • -
      • -

        - If p(a) = 0 and q(a) = 0 and we can show that there is a finite number L such that - - \lim_{x \to a} r(x) = L - , - then r(a) is not defined and r has a hole at the point (a,L).It is possible for both p(a) = 0 and q(a) = 0 and for r to still have a vertical asymptote at x = a. We explore this possibility further in Exercise. -

        -
      • -
      -

      -
      - - - -
      - - - Sign charts and finding formulas for rational functions - -

      - Just like with polynomial functions, we can use sign charts to describe the behavior of rational functions. The only significant difference for their use in this context is that we not only must include all x-values where the rational function r(x) = 0, but also all x-values at which the function r is not defined. This is because it is possible for a rational function to change sign at a point that lies outside its domain, such as when the function has a vertical asymptote. -

      - - - -

      - Construct a sign chart for the function q(x) = \frac{(x-2)(x^2-9)}{(x-3)(x-1)^2}. Then, graph the function q and compare the graph and sign chart. -

      -
      - -

      - First, we fully factor q and identify the x-values that are not in its domain. Since x^2-9 = (x-3)(x+3), we see that - - q(x) = \frac{(x-2)(x-3)(x+3)}{(x-3)(x-1)^2} - . - From the denominator, we observe that q is not defined at x = 3 and x = 1 since those values make the factors x - 3 = 0 or (x-1)^2 = 0. Thus, the domain of q is the set of all real numbers except x = 1 and x = 3. From the numerator, we see that both x = 2 and x = -3 are zeros of q since these values make the numerator zero while the denominator is nonzero. We expect that q will have a hole at x = 3 since this x-value is not in the domain and it makes both the numerator and denominator 0. Indeed, computing values of q for x near x = 3 suggests that - - \lim_{x \to 3} q(x) = 1.5 - , - and thus q does not change sign at x = 3. -

      - -

      - Thus, we have three different x-values to place on the sign chart: x = -3, x = 1, and x = 2. We now analyze the sign of each of the factors in q(x) = \frac{(x-2)(x-3)(x+3)}{(x-3)(x-1)^2} on the various intervals. For x \lt -3, (x-2) \lt 0, (x-3) \lt 0, (x+3) \lt 0, and (x-1)^2 \gt 0. Thus, for x \lt -3, the sign of q is - - \frac{- - -}{- +} = + - - since there are an even number of negative terms in the quotient. -

      - -

      - On the interval -3 \lt x \lt 1, (x-2) \lt 0, (x-3) \lt 0, (x+3) \gt 0, and (x-1)^2 \gt 0. Thus, for these x-values, the sign of q is - - \frac{- - +}{- +} = - - . -

      - -

      - Using similar reasoning, we can complete the sign chart shown in Figure. A plot of the function q, as seen in Figure, shows behavior that matches the sign function, as well as the need to manually identify the hole at (3, 1.5), which is missed by the graphing software. -

      - - -
      - The sign chart for q. -

      The sign chart for q.

      -
      -
      -
      - A plot of q. -

      A plot of q.

      -
      -
      -
      - -

      - In both the sign chart and the figure, we see that q changes sign at each of its zeros, x = -3 and x = 2, and that it does not change as it passes by its vertical asymptote at x = 1. The reason q doesn't change sign at the asympotote is because of the repeated factor of (x-1)^2 which is always positive. -

      -
      -
      - -

      - To find a formula for a rational function with certain properties, we can reason in ways that are similar to our work with polynomials. Since the rational function must have a polynomial expression in both the numerator and denominator, by thinking about where the numerator and denominator must be zero, we can often generate a formula whose graph will satisfy the desired properties. -

      - - - -
      - - - Summary -
        -
      • -

        - If a rational function r(x) = \frac{p(x)}{q(x)} has the properties that p(a) = 0 and q(a) = 0 and - - \lim_{x \to a} r(x) = L - , - then r has a hole at the point (a,L). This behavior can occur when there is a matching factor of (x-a) in both p and q. -

        -
      • -
      • -

        - For a rational function r(x) = \frac{p(x)}{q(x)}, we determine where the function has zeros and where it has vertical asymptotes by considering where the numerator and denominator are 0. In particular, if p(a) = 0 and q(a) \ne 0, then r(a) = 0, so r has a zero at x = a. And if q(a) = 0 and p(a) \ne 0, then r(a) is undefined and r has a vertical asymptote at x = a. -

        -
      • -
      • -

        - By writing a rational function's numerator in factored form, we can generate a sign chart for the function that takes into account all of the zeros and vertical asymptotes of the function, which are the only points where the function can possibly change sign. By testing x-values in various intervals between zeros and/or vertical asymptotes, we can determine where the rational function is positive and where the function is negative. -

        -
      • -
      -
      - - - - - -
      + + + + + + + + + + + + + +
      + Key features of rational functions + + +
        +
      • +

        + What does it mean to say that a rational function has a hole at a certain point, and what algebraic structure leads to such behavior? +

        +
      • +
      • +

        + How do we determine where a rational function has zeros and where it has vertical asymptotes? +

        +
      • +
      • +

        + What does a sign chart reveal about the behavior of a rational function and how do we develop a sign chart from a given formula? +

        +
      • +
      +
      + + Introduction +

      + Because any rational function is the ratio of two polynomial functions, it's natural to ask questions about rational functions similar to those we ask about polynomials. With polynomials, it is often helpful to know where the function's value is zero. In a rational function r(x) = \frac{p(x)}{q(x)}, we are curious to know where both p(x) = 0 and where q(x) = 0. +

      + +

      + Connected to these questions, we want to understand both where a rational function's output value is zero, as well as where the function is undefined. In addition, from the behavior of simple rational power functions such as \frac{1}{x}, we expect that rational functions may not only have horizontal asymptotes (as investigated in Section), but also vertical asymptotes. At first glance, these questions about zeros and vertical asymptotes of rational functions may appear to be elementary ones whose answers simply depend on where the numerator and denominator of the rational function are zero. But in fact, rational functions often admit very subtle behavior that can escape the human eye and the graph generated by a computer. +

      + + + + +
      + + + When a rational function has a <q>hole</q> + +

      + Two important features of any rational function r(x) = \frac{p(x)}{q(x)} are any zeros and vertical asymptotes the function may have. These aspects of a rational function are closely connected to where the numerator and denominator, respectively, are zero. At the same time, a subtle related issue can lead to radically different behavior. To understand why, we first remind ourselves of a few key facts about fractions that involve 0. Because we are working with a function, we'll think about fractions whose numerator and denominator are approaching particular values. +

      + +

      + If the numerator of a fraction approaches 0 while the denominator approaches a nonzero value, then the overall fraction values will approach zero. For instance, consider the sequence of values + + \frac{0.1}{0.9} = 0.111111\cdots, \frac{0.01}{0.99} = 0.010101\cdots, \frac{0.001}{0.999} = 0.001001\cdots + . + Because the numerator gets closer and closer to 0 and the denominator stays away from 0, the quotients tend to 0. +

      + +

      + Similarly, if the denominator of a fraction approaches 0 while the numerator approaches a nonzero value, then the overall fraction increases without bound. If we consider the reciprocal values of the sequence above, we see that + + \frac{0.9}{0.1} = 9, \frac{0.99}{0.01} = 99, \frac{0.999}{0.001} = 999 + . + Since the denominator gets closer and closer to 0 and the numerator stays away from 0, the quotients increase without bound. +

      + +

      + These two behaviors show how the zeros and vertical asympototes of a rational function r(x) = \frac{p(x)}{q(x)} arise: where the numerator p(x) is zero and the denominator q(x) is nonzero, the function r will have a zero; and where q(x) is zero and p(x) is nonzero, the function will have a vertical asymptote. What we must be careful of is the special situation where both the numerator p(x) and q(x) are simultaneously zero. Indeed, if the numerator and denominator of a fraction both approach 0, different behavior can arise. For instance, consider the sequence + + \frac{0.2}{0.1} = 2, \frac{0.02}{0.01} = 2, \frac{0.002}{0.001} = 2 + . + In this situation, both the numerator and denominator are approaching 0, but the overall fraction's value is always 2. This is very different from the two sequences we considered above. In Example, we explore similar behavior in the context of a particular rational function. +

      + + + +

      + Consider the rational function r(x) = \frac{x^2 - 1}{x^2 - 3x - 4} from Preview Activity, whose numerator is p(x) = x^2 - 1 and whose denominator is q(x) = x^2 - 3x - 4. Explain why the graph of r generated by Desmos or another computational device is incorrect, and also identify the locations of any zeros and vertical asymptotes of r. +

      +
      + +

      + It is helpful with any rational function to factor the numerator and denominator. We note that p(x) = x^2 - 1 = (x-1)(x+1) and q(x) = x^2 - 3x - 4 = (x+1)(x-4). The domain of r is thus the set of all real numbers except x = -1 and x = 4, the set of all points where q(x) \ne 0. +

      + +

      + Knowing that r is not defined at x = -1, it is natural to study the graph of r near that value. Plotting the function in Desmos, we get a result similar to the one shown in Figure, which appears to show no unusual behavior at x = -1, and even that r(-1) is defined. If we zoom in on that point, as shown in Figure, the technology still fails to visually demonstrate the fact that r(-1) is not defined. This is because graphing utilities sample functions at a finite number of points and then connect the resulting dots to generate the curve we see. +

      + + +
      + A plot of r(x) = \frac{x^2 - 1}{x^2 - 3x - 4}. +

      A plot of r(x) = \frac{x^2 - 1}{x^2 - 3x - 4}.

      +
      +
      +
      + Zooming in on r(x) near x = -1. +

      Zooming in on r(x) near x = -1.

      +
      +
      +
      + How the graph of r(x) should actually appear near x = -1. +

      How the graph of r(x) should actually appear near x = -1.

      +
      +
      +
      + +

      + We know from our algebraic work with the denominator, q(x) = (x+1)(x-4), that r is not defined at x = -1. While the denominator q gets closer and closer to 0 as x approaches -1, so does the numerator, since p(x) = (x-1)(x+1). If we consider values close but not equal to x = -1, we see results in Table. +

      + + + Values of <m>r(x) = \frac{x^2 - 1}{x^2 - 3x - 4}</m> near <m>x = -1</m>. + + + x + -1.1 + -1.01 + -1.001 + + + r(x) + \frac{0.21}{0.51} \approx 0.4118 + \frac{0.0201}{0.0501} \approx 0.4012 + \frac{0.002001}{0.005001} \approx 0.4001 + + + + + + + + + x + -0.9 + -0.99 + -0.999 + + + r(x) + \frac{-0.19}{-0.49} \approx 0.3878 + \frac{-0.0199}{-0.0499} \approx 0.3989 + \frac{-0.001999}{-0.004999} \approx 0.3999 + + +
      + +

      + In the table, we see that both the numerator and denominator get closer and closer to 0 as x gets closer and closer to -1, but that their quotient appears to be getting closer and closer to y = 0.4. Indeed, we see this behavior in the graph of r, though the graphing utility misses the fact that r(-1) is actually not defined. A precise graph of r near x = -1 should look like the one presented in Figure, where we see an open circle at the point (-1, 0.4) that demonstrates that r(-1) is not defined, and that r does not have a vertical asymptote or zero at x = -1. +

      + +

      + Finally, we also note that p(1) = 0 and q(1) = -6, so at x = 1, r(x) has a zero (its numerator is zero and its denominator is not). In addition, q(4) = 0 and p(4) = 15 (its denominator is zero and its numerator is not), so r(x) has a vertical asymptote at x = 4. These features are accurately represented by the original Desmos graph shown in Figure. +

      +
      +
      + +

      + In the situation where a rational function is undefined at a point but does not have a vertical asymptote there, we'll say that the graph of the function has a hole. rational functionhole In calculus, we use limit notation to identify a hole in a function's graph. Indeed, having shown in Example that the value of r(x) gets closer and closer to 0.4 as x gets closer and closer to -1, we naturally write + + \lim_{x \to -1} r(x) = 0.4 + + as a shorthand way to represent the behavior of r (similar to how we've written limits involving \infty). This fact, combined with r(-1) being undefined, tells us that near x = -1 the graph approaches a value of 0.4 but has to have a hole at the point (-1,0.4), as shown in Figure. Because we'll encounter similar behavior with other functions, we formally define limit notation as follows. +

      + + + +

      + Let a and L be finite real numbers, and let r be a function defined near x = a, but not necessarily at x = a itself. If we can make the value of r(x) as close to the number L as we like by taking x sufficiently close (but not equal) to a, then we write + + \lim_{x \to a} r(x) = L + + and say that the limit of r as x approaches a is L. +

      +
      +
      + +

      + The key observations regarding zeros, vertical asymptotes, and holes in Example apply to any rational function. +

      + + + Features of a rational function +

      + Let r(x) = \frac{p(x)}{q(x)} be a rational function. +

      + +

      +

        +
      • +

        + If p(a) = 0 and q(a) \ne 0, then r(a) = 0, so r has a zero at x = a. +

        +
      • +
      • +

        + If q(a) = 0 and p(a) \ne 0, then r(a) is undefined and r has a vertical asymptote at x = a. +

        +
      • +
      • +

        + If p(a) = 0 and q(a) = 0 and we can show that there is a finite number L such that + + \lim_{x \to a} r(x) = L + , + then r(a) is not defined and r has a hole at the point (a,L).It is possible for both p(a) = 0 and q(a) = 0 and for r to still have a vertical asymptote at x = a. We explore this possibility further in Exercise. +

        +
      • +
      +

      +
      + + + +
      + + + Sign charts and finding formulas for rational functions + +

      + Just like with polynomial functions, we can use sign charts to describe the behavior of rational functions. The only significant difference for their use in this context is that we not only must include all x-values where the rational function r(x) = 0, but also all x-values at which the function r is not defined. This is because it is possible for a rational function to change sign at a point that lies outside its domain, such as when the function has a vertical asymptote. +

      + + + +

      + Construct a sign chart for the function q(x) = \frac{(x-2)(x^2-9)}{(x-3)(x-1)^2}. Then, graph the function q and compare the graph and sign chart. +

      +
      + +

      + First, we fully factor q and identify the x-values that are not in its domain. Since x^2-9 = (x-3)(x+3), we see that + + q(x) = \frac{(x-2)(x-3)(x+3)}{(x-3)(x-1)^2} + . + From the denominator, we observe that q is not defined at x = 3 and x = 1 since those values make the factors x - 3 = 0 or (x-1)^2 = 0. Thus, the domain of q is the set of all real numbers except x = 1 and x = 3. From the numerator, we see that both x = 2 and x = -3 are zeros of q since these values make the numerator zero while the denominator is nonzero. We expect that q will have a hole at x = 3 since this x-value is not in the domain and it makes both the numerator and denominator 0. Indeed, computing values of q for x near x = 3 suggests that + + \lim_{x \to 3} q(x) = 1.5 + , + and thus q does not change sign at x = 3. +

      + +

      + Thus, we have three different x-values to place on the sign chart: x = -3, x = 1, and x = 2. We now analyze the sign of each of the factors in q(x) = \frac{(x-2)(x-3)(x+3)}{(x-3)(x-1)^2} on the various intervals. For x \lt -3, (x-2) \lt 0, (x-3) \lt 0, (x+3) \lt 0, and (x-1)^2 \gt 0. Thus, for x \lt -3, the sign of q is + + \frac{- - -}{- +} = + + + since there are an even number of negative terms in the quotient. +

      + +

      + On the interval -3 \lt x \lt 1, (x-2) \lt 0, (x-3) \lt 0, (x+3) \gt 0, and (x-1)^2 \gt 0. Thus, for these x-values, the sign of q is + + \frac{- - +}{- +} = - + . +

      + +

      + Using similar reasoning, we can complete the sign chart shown in Figure. A plot of the function q, as seen in Figure, shows behavior that matches the sign function, as well as the need to manually identify the hole at (3, 1.5), which is missed by the graphing software. +

      + + +
      + The sign chart for q. +

      The sign chart for q.

      +
      +
      +
      + A plot of q. +

      A plot of q.

      +
      +
      +
      + +

      + In both the sign chart and the figure, we see that q changes sign at each of its zeros, x = -3 and x = 2, and that it does not change as it passes by its vertical asymptote at x = 1. The reason q doesn't change sign at the asympotote is because of the repeated factor of (x-1)^2 which is always positive. +

      +
      +
      + +

      + To find a formula for a rational function with certain properties, we can reason in ways that are similar to our work with polynomials. Since the rational function must have a polynomial expression in both the numerator and denominator, by thinking about where the numerator and denominator must be zero, we can often generate a formula whose graph will satisfy the desired properties. +

      + + + +
      + + + Summary +
        +
      • +

        + If a rational function r(x) = \frac{p(x)}{q(x)} has the properties that p(a) = 0 and q(a) = 0 and + + \lim_{x \to a} r(x) = L + , + then r has a hole at the point (a,L). This behavior can occur when there is a matching factor of (x-a) in both p and q. +

        +
      • +
      • +

        + For a rational function r(x) = \frac{p(x)}{q(x)}, we determine where the function has zeros and where it has vertical asymptotes by considering where the numerator and denominator are 0. In particular, if p(a) = 0 and q(a) \ne 0, then r(a) = 0, so r has a zero at x = a. And if q(a) = 0 and p(a) \ne 0, then r(a) is undefined and r has a vertical asymptote at x = a. +

        +
      • +
      • +

        + By writing a rational function's numerator in factored form, we can generate a sign chart for the function that takes into account all of the zeros and vertical asymptotes of the function, which are the only points where the function can possibly change sign. By testing x-values in various intervals between zeros and/or vertical asymptotes, we can determine where the rational function is positive and where the function is negative. +

        +
      • +
      +
      + + + + + +
      diff --git a/source/sec-poly-rational-wb.xml b/source/sec-poly-rational-wb.xml index f5363b32..feb80531 100755 --- a/source/sec-poly-rational-wb.xml +++ b/source/sec-poly-rational-wb.xml @@ -1,23 +1,23 @@ - - - - - - - - - - - - - -
      - Rational Functions - - - - - - - -
      + + + + + + + + + + + + + +
      + Rational Functions + + + + + + + +
      diff --git a/source/sec-poly-rational.xml b/source/sec-poly-rational.xml index 90a15951..0f99a9af 100755 --- a/source/sec-poly-rational.xml +++ b/source/sec-poly-rational.xml @@ -1,318 +1,319 @@ - - - - - - - - - - - - - -
      - Rational Functions - - -
        -
      • -

        - What is a rational function? -

        -
      • -
      • -

        - How can we determine key information about a rational function from its algebraic structure? -

        -
      • -
      • -

        - Why are rational functions important? -

        -
      • -
      -
      - - Introduction -

      - The average rate of change of a function on an interval always involves a ratio. Indeed, for a given function f that interests us near t = 2, we can investigate its average rate of change on intervals near this value by considering - - AV_{[2,2+h]} = \frac{f(2+h)-f(2)}{h} - . - Suppose, for instance, that f meausures the height of a falling ball at time t and is given by f(t) = -16t^2 + 32t + 48, which happens to be a polynomial function of degree 2. For this particular function, its average rate of change on [2,2+h] is - - - AV_{[2,2+h]} &= \frac{f(2+h)-f(2)}{h} - - - &= \frac{-16(2+h)^2 + 32(2+h) + 48 - (-16 \cdot 4 + 32 \cdot 2 + 48)}{h} - - - &= \frac{-64 - 64h - 16h^2 + 64 + 32h + 48 - (48)}{h} - - - &= \frac{-32h - 16h^2}{h} - - . - Structurally, we observe that AV_{[2,2+h]} is a ratio of the two functions -32h - 16h^2 and h. Moreover, both the numerator and the denominator of the expression are themselves polynomial functions of the variable h. Note that we may be especially interested in what occurs as h \to 0, as these values will tell us the average velocity of the moving ball on shorter and shorter time intervals starting at t = 2. At the same time, AV_{[2,2+h]} is not defined for h = 0. -

      - -

      - Ratios of polynomial functions arise in several different important circumstances. Sometimes we are interested in what happens when the denominator approaches 0, which makes the overall ratio undefined. In other situations, we may want to know what happens in the long term and thus consider what happens when the input variable increases without bound. -

      - - - -
      - - - - Long-range behavior of rational functions - -

      - The functions AV_{[2,2+h]} = \frac{-32h - 16h^2}{h} and A(q) = \frac{5000000 + 2500q}{q} are both examples of rational functions, since each is a ratio of polynomial functions. Formally, we have the following definition. -

      - - - rational function - -

      - A function r is rational provided that it is possible to write r as the ratio of two polynomials, p and q. That is, r is rational provided that for some polynomial functions p and q, we have - - r(x) = \frac{p(x)}{q(x)} - . -

      -
      -
      - -

      - Like with polynomial functions, we are interested in such natural questions as -

        -
      • -

        - What is the long range behavior of a given rational function? -

        -
      • -
      • -

        - What is the domain of a given rational function? -

        -
      • -
      • -

        - How can we determine where a given rational function's value is 0? -

        -
      • -
      -

      - -

      - We begin by focusing on the long-range behavior of rational functions. It's important first to recall our earlier work with power functions of the form p(x) = x^{-n} where n = 1, 2, \ldots. For such functions, we know that p(x) = \frac{1}{x^n} where n \gt 0 and that - - \lim_{x \to \infty} \frac{1}{x^n} = 0 - - since x^n increases without bound as x \to \infty. The same is true when x \to -\infty: \lim_{x \to -\infty} \frac{1}{x^n} = 0. Thus, any time we encounter a quantity such as \frac{1}{x^3}, this quantity will approach 0 as x increases without bound, and this will also occur for any constant numerator. For instance, - - \lim_{x \to \infty} \frac{2500}{x^2} = 0 - - since 2500 times a quantity approaching 0 will still approach 0 as x increases. -

      - - - - - -

      - We summarize and generalize the results of Activity and Activity as follows. -

      - - - rational functionlong-term behavior - The long-term behavior of a rational function -

      - Let p and q be polynomial functions so that r(x) = \frac{p(x)}{q(x)} is a rational function. Suppose that p has degree n with leading term a_n x^n and q has degree m with leading term b_m x^m for some nonzero constants a_n and b_m. There are three possibilities (n \lt m, n = m, and n \gt m) that result in three different behaviors of r: -

      - -

      -

        -
      1. -

        - if n \lt m, then the degree of the numerator is less than the degree of the denominator, and thus - - \lim_{n \to \infty} r(x) = \lim_{n \to \infty} \frac{a_n x^n + \cdots + a_0}{b_m x^m + \cdots + b_0} = 0 - , - which tells us that y = 0 is a horizontal asymptote of r; -

        -
      2. -
      3. -

        - if n = m, then the degree of the numerator equals the degree of the denominator, and thus - - \lim_{n \to \infty} r(x) = \lim_{n \to \infty} \frac{a_n x^n + \cdots + a_0}{b_n x^n + \cdots + b_0} = \frac{a_n}{b_n} - , - which tells us that y = \frac{a_n}{b_n} (the ratio of the coefficients of the highest order terms in p and q) is a horizontal asymptote of r; -

        -
      4. -
      5. -

        - if n \gt m, then the degree of the numerator is greater than the degree of the denominator, and thus - - \lim_{n \to \infty} r(x) = \lim_{n \to \infty} \frac{a_n x^n + \cdots + a_0}{b_m x^m + \cdots + b_0} = \pm \infty - , - (where the sign of the limit depends on the signs of a_n and b_m) which tells us that r is does not have a horizontal asymptote. -

        -
      6. -
      -

      -

      - In both situations (a) and (b), the value of \lim_{x \to -\infty} r(x) is identical to \lim_{x \to \infty} r(x). -

      -
      - -
      - - - The domain of a rational function -

      - Because a rational function can be written in the form r(x) = \frac{p(x)}{q(x)} for some polynomial functions p and q, we have to be concerned about the possibility that a rational function's denominator is zero. Since polynomial functions always have their domain as the set of all real numbers, it follows that any rational function is only undefined at points where its denominator is zero. -

      - - - rational functiondomain - The domain of a rational function -

      - Let p and q be polynomial functions so that r(x) = \frac{p(x)}{q(x)} is a rational function. The domain of r is the set of all real numbers except those for which q(x) = 0. -

      -
      - - - -

      - Determine the domain of the function r(x) = \frac{5x^3 + 17x^2 - 9x + 4}{2x^3 - 6x^2 - 8x}. -

      -
      - -

      - To find the domain of any rational function, we need to determine where the denominator is zero. The best way to find these values exactly is to factor the denominator. Thus, we observe that - - 2x^3 - 6x^2 - 8x = 2x(x^2 - 3x - 4) = 2x(x+1)(x-4) - . - By the Zero Product Property, it follows that the denominator of r is zero at x = 0, x = -1, and x = 4. Hence, the domain of r is the set of all real numbers except -1, 0, and 4. -

      -
      -
      - -

      - We note that when it comes to determining the domain of a rational function, the numerator is irrelevant: all that matters is where the denominator is 0. -

      - - - -
      - - - Applications of rational functions -

      - Rational functions arise naturally in the study of the average rate of change of a polynomial function, leading to expressions such as - - AV_{[2,2+h]} = \frac{-32h - 16h^2}{h} - . - We will study several subtle issues that correspond to such functions further in Section. For now, we will focus on a different setting in which rational functions play a key role. -

      - -

      - In Section, we encountered a class of problems where a key quantity was modeled by a polynomial function. We found that if we considered a container such as a cylinder with fixed surface area, then the volume of the container could be written as a polynomial of a single variable. For instance, if we consider a circular cylinder with surface area 10 square feet, then we know that - - S = 10 = 2\pi r^2 + 2\pi r h - - and therefore h = \frac{10 - 2\pi r^2}{2 \pi r}. Since the cylinder's volume is V = \pi r^2 h, it follows that - - V = \pi r^2 h = \pi r^2 \left( \frac{10 - 2\pi r^2}{2 \pi r} \right) = r(5 - \pi r^2) - , - which is a polynomial function of r. -

      - -

      - What happens if we instead fix the volume of the container and ask about how surface area can be written as a function of a single variable? -

      - - - -

      - Suppose we want to construct a circular cylinder that holds 20 cubic feet of volume. How much material does it take to build the container? How can we state the amount of material as a function of a single variable? -

      -
      - -

      - Neglecting any scrap, the amount of material it takes to construct the container is its surface area, which we know to be - - S = 2\pi r^2 + 2\pi r h - . - Because we want the volume to be fixed, this results in a constraint equation that enables us to relate r and h. In particular, since - - V = 20 = \pi r^2 h - , - it follows that we can solve for h and get h = \frac{20}{\pi r^2}. Substituting this expression for h in the equation for surface area, we find that - - S = 2\pi r^2 + 2\pi r \cdot \frac{20}{\pi r^2} = 2 \pi r^2 + \frac{40}{r} - . - Getting a common denominator, we can also write S in the form - - S(r) = \frac{2 \pi r^3 + 40}{r} - - and thus we see that S is a rational function of r. Because of the physical context of the problem and the fact that the denominator of S is r, the domain of S is the set of all positive real numbers. -

      -
      -
      - - - -
      - - - Summary - -
        -
      • -

        - A rational function is a function whose formula can be written as the ratio of two polynomial functions. For instance, r(x) = \frac{7x^3 - 5x + 16}{-4x^4 + 2x^3 - 11x + 3} is a rational function. -

        -
      • -
      • -

        - Two aspects of rational functions are straightforward to determine for any rational function. Given r(x) = \frac{p(x)}{q(x)} where p and q are polynomials, the domain of r is the set of all real numbers except any values of x for which q(x) = 0. In addition, we can determine the long-range behavior of r by examining the highest order terms in p and q: - -

          -
        • -

          - if the degree of p is less than the degree of q, then r has a horizontal asymptote at y = 0; -

          -
        • -
        • -

          - if the degree of p equals the degree of q, then r has a horizontal asymptote at y = \frac{a_n}{b_n}, where a_n and b_n are the leading coefficients of p and q respectively; -

          -
        • -
        • -

          - and if the degree of p is greater than the degree of q, then r does not have a horizontal asymptote. -

          -
        • -
        -

        -
      • -
      • -

        - Two reasons that rational functions are important are that they arise naturally when we consider the average rate of change on an interval whose length varies and when we consider problems that relate the volume and surface area of three-dimensional containers when one of those two quantities is constrained. -

        -
      • -
      - -
      - - - - - -
      + + + + + + + + + + + + + +
      + Rational Functions + + +
        +
      • +

        + What is a rational function? +

        +
      • +
      • +

        + How can we determine key information about a rational function from its algebraic structure? +

        +
      • +
      • +

        + Why are rational functions important? +

        +
      • +
      +
      + + Introduction +

      + The average rate of change of a function on an interval always involves a ratio. Indeed, for a given function f that interests us near t = 2, we can investigate its average rate of change on intervals near this value by considering + + AV_{[2,2+h]} = \frac{f(2+h)-f(2)}{h} + . + Suppose, for instance, that f meausures the height of a falling ball at time t and is given by f(t) = -16t^2 + 32t + 48, which happens to be a polynomial function of degree 2. For this particular function, its average rate of change on [2,2+h] is + + + AV_{[2,2+h]} &= \frac{f(2+h)-f(2)}{h} + + + &= \frac{-16(2+h)^2 + 32(2+h) + 48 - (-16 \cdot 4 + 32 \cdot 2 + 48)}{h} + + + &= \frac{-64 - 64h - 16h^2 + 64 + 32h + 48 - (48)}{h} + + + &= \frac{-32h - 16h^2}{h} + + . + Structurally, we observe that AV_{[2,2+h]} is a ratio of the two functions -32h - 16h^2 and h. Moreover, both the numerator and the denominator of the expression are themselves polynomial functions of the variable h. Note that we may be especially interested in what occurs as h \to 0, as these values will tell us the average velocity of the moving ball on shorter and shorter time intervals starting at t = 2. At the same time, AV_{[2,2+h]} is not defined for h = 0. +

      + +

      + Ratios of polynomial functions arise in several different important circumstances. Sometimes we are interested in what happens when the denominator approaches 0, which makes the overall ratio undefined. In other situations, we may want to know what happens in the long term and thus consider what happens when the input variable increases without bound. +

      + + + + +
      + + + + Long-range behavior of rational functions + +

      + The functions AV_{[2,2+h]} = \frac{-32h - 16h^2}{h} and A(q) = \frac{5000000 + 2500q}{q} are both examples of rational functions, since each is a ratio of polynomial functions. Formally, we have the following definition. +

      + + + rational function + +

      + A function r is rational provided that it is possible to write r as the ratio of two polynomials, p and q. That is, r is rational provided that for some polynomial functions p and q, we have + + r(x) = \frac{p(x)}{q(x)} + . +

      +
      +
      + +

      + Like with polynomial functions, we are interested in such natural questions as +

        +
      • +

        + What is the long range behavior of a given rational function? +

        +
      • +
      • +

        + What is the domain of a given rational function? +

        +
      • +
      • +

        + How can we determine where a given rational function's value is 0? +

        +
      • +
      +

      + +

      + We begin by focusing on the long-range behavior of rational functions. It's important first to recall our earlier work with power functions of the form p(x) = x^{-n} where n = 1, 2, \ldots. For such functions, we know that p(x) = \frac{1}{x^n} where n \gt 0 and that + + \lim_{x \to \infty} \frac{1}{x^n} = 0 + + since x^n increases without bound as x \to \infty. The same is true when x \to -\infty: \lim_{x \to -\infty} \frac{1}{x^n} = 0. Thus, any time we encounter a quantity such as \frac{1}{x^3}, this quantity will approach 0 as x increases without bound, and this will also occur for any constant numerator. For instance, + + \lim_{x \to \infty} \frac{2500}{x^2} = 0 + + since 2500 times a quantity approaching 0 will still approach 0 as x increases. +

      + + + + + +

      + We summarize and generalize the results of Activity and Activity as follows. +

      + + + rational functionlong-term behavior + The long-term behavior of a rational function +

      + Let p and q be polynomial functions so that r(x) = \frac{p(x)}{q(x)} is a rational function. Suppose that p has degree n with leading term a_n x^n and q has degree m with leading term b_m x^m for some nonzero constants a_n and b_m. There are three possibilities (n \lt m, n = m, and n \gt m) that result in three different behaviors of r: +

      + +

      +

        +
      1. +

        + if n \lt m, then the degree of the numerator is less than the degree of the denominator, and thus + + \lim_{n \to \infty} r(x) = \lim_{n \to \infty} \frac{a_n x^n + \cdots + a_0}{b_m x^m + \cdots + b_0} = 0 + , + which tells us that y = 0 is a horizontal asymptote of r; +

        +
      2. +
      3. +

        + if n = m, then the degree of the numerator equals the degree of the denominator, and thus + + \lim_{n \to \infty} r(x) = \lim_{n \to \infty} \frac{a_n x^n + \cdots + a_0}{b_n x^n + \cdots + b_0} = \frac{a_n}{b_n} + , + which tells us that y = \frac{a_n}{b_n} (the ratio of the coefficients of the highest order terms in p and q) is a horizontal asymptote of r; +

        +
      4. +
      5. +

        + if n \gt m, then the degree of the numerator is greater than the degree of the denominator, and thus + + \lim_{n \to \infty} r(x) = \lim_{n \to \infty} \frac{a_n x^n + \cdots + a_0}{b_m x^m + \cdots + b_0} = \pm \infty + , + (where the sign of the limit depends on the signs of a_n and b_m) which tells us that r is does not have a horizontal asymptote. +

        +
      6. +
      +

      +

      + In both situations (a) and (b), the value of \lim_{x \to -\infty} r(x) is identical to \lim_{x \to \infty} r(x). +

      +
      + +
      + + + The domain of a rational function +

      + Because a rational function can be written in the form r(x) = \frac{p(x)}{q(x)} for some polynomial functions p and q, we have to be concerned about the possibility that a rational function's denominator is zero. Since polynomial functions always have their domain as the set of all real numbers, it follows that any rational function is only undefined at points where its denominator is zero. +

      + + + rational functiondomain + The domain of a rational function +

      + Let p and q be polynomial functions so that r(x) = \frac{p(x)}{q(x)} is a rational function. The domain of r is the set of all real numbers except those for which q(x) = 0. +

      +
      + + + +

      + Determine the domain of the function r(x) = \frac{5x^3 + 17x^2 - 9x + 4}{2x^3 - 6x^2 - 8x}. +

      +
      + +

      + To find the domain of any rational function, we need to determine where the denominator is zero. The best way to find these values exactly is to factor the denominator. Thus, we observe that + + 2x^3 - 6x^2 - 8x = 2x(x^2 - 3x - 4) = 2x(x+1)(x-4) + . + By the Zero Product Property, it follows that the denominator of r is zero at x = 0, x = -1, and x = 4. Hence, the domain of r is the set of all real numbers except -1, 0, and 4. +

      +
      +
      + +

      + We note that when it comes to determining the domain of a rational function, the numerator is irrelevant: all that matters is where the denominator is 0. +

      + + + +
      + + + Applications of rational functions +

      + Rational functions arise naturally in the study of the average rate of change of a polynomial function, leading to expressions such as + + AV_{[2,2+h]} = \frac{-32h - 16h^2}{h} + . + We will study several subtle issues that correspond to such functions further in Section. For now, we will focus on a different setting in which rational functions play a key role. +

      + +

      + In Section, we encountered a class of problems where a key quantity was modeled by a polynomial function. We found that if we considered a container such as a cylinder with fixed surface area, then the volume of the container could be written as a polynomial of a single variable. For instance, if we consider a circular cylinder with surface area 10 square feet, then we know that + + S = 10 = 2\pi r^2 + 2\pi r h + + and therefore h = \frac{10 - 2\pi r^2}{2 \pi r}. Since the cylinder's volume is V = \pi r^2 h, it follows that + + V = \pi r^2 h = \pi r^2 \left( \frac{10 - 2\pi r^2}{2 \pi r} \right) = r(5 - \pi r^2) + , + which is a polynomial function of r. +

      + +

      + What happens if we instead fix the volume of the container and ask about how surface area can be written as a function of a single variable? +

      + + + +

      + Suppose we want to construct a circular cylinder that holds 20 cubic feet of volume. How much material does it take to build the container? How can we state the amount of material as a function of a single variable? +

      +
      + +

      + Neglecting any scrap, the amount of material it takes to construct the container is its surface area, which we know to be + + S = 2\pi r^2 + 2\pi r h + . + Because we want the volume to be fixed, this results in a constraint equation that enables us to relate r and h. In particular, since + + V = 20 = \pi r^2 h + , + it follows that we can solve for h and get h = \frac{20}{\pi r^2}. Substituting this expression for h in the equation for surface area, we find that + + S = 2\pi r^2 + 2\pi r \cdot \frac{20}{\pi r^2} = 2 \pi r^2 + \frac{40}{r} + . + Getting a common denominator, we can also write S in the form + + S(r) = \frac{2 \pi r^3 + 40}{r} + + and thus we see that S is a rational function of r. Because of the physical context of the problem and the fact that the denominator of S is r, the domain of S is the set of all positive real numbers. +

      +
      +
      + + + +
      + + + Summary + +
        +
      • +

        + A rational function is a function whose formula can be written as the ratio of two polynomial functions. For instance, r(x) = \frac{7x^3 - 5x + 16}{-4x^4 + 2x^3 - 11x + 3} is a rational function. +

        +
      • +
      • +

        + Two aspects of rational functions are straightforward to determine for any rational function. Given r(x) = \frac{p(x)}{q(x)} where p and q are polynomials, the domain of r is the set of all real numbers except any values of x for which q(x) = 0. In addition, we can determine the long-range behavior of r by examining the highest order terms in p and q: + +

          +
        • +

          + if the degree of p is less than the degree of q, then r has a horizontal asymptote at y = 0; +

          +
        • +
        • +

          + if the degree of p equals the degree of q, then r has a horizontal asymptote at y = \frac{a_n}{b_n}, where a_n and b_n are the leading coefficients of p and q respectively; +

          +
        • +
        • +

          + and if the degree of p is greater than the degree of q, then r does not have a horizontal asymptote. +

          +
        • +
        +

        +
      • +
      • +

        + Two reasons that rational functions are important are that they arise naturally when we consider the average rate of change on an interval whose length varies and when we consider problems that relate the volume and surface area of three-dimensional containers when one of those two quantities is constrained. +

        +
      • +
      + +
      + + + + + +
      diff --git a/source/sec-trig-finding-angles-wb.xml b/source/sec-trig-finding-angles-wb.xml index 87c83edb..f7738b14 100755 --- a/source/sec-trig-finding-angles-wb.xml +++ b/source/sec-trig-finding-angles-wb.xml @@ -1,23 +1,23 @@ - - - - - - - - - - - - - -
      - Finding Angles - - - - - - - -
      + + + + + + + + + + + + + +
      + Finding Angles + + + + + + + +
      diff --git a/source/sec-trig-finding-angles.xml b/source/sec-trig-finding-angles.xml index eb6bf7c5..bb56750c 100755 --- a/source/sec-trig-finding-angles.xml +++ b/source/sec-trig-finding-angles.xml @@ -1,151 +1,152 @@ - - - - - - - - - - - - - -
      - Finding Angles - -
        -
      • -

        - How can we use inverse trigonometric functions to determine missing angles in right triangles? -

        -
      • -
      • -

        - What situations require us to use technology to evaluate inverse trigonometric functions? -

        -
      • -
      -
      - - Introduction -

      - In our earlier work in Section and Section, we observed that in any right triangle, if we know the measure of one additional angle and the length of one additional side, we can determine all of the other parts of the triangle. With the inverse trigonometric functions that we developed in Section, we are now also able to determine the missing angles in any right triangle where we know the lengths of two sides. -

      - -

      - While the original trigonometric functions take a particular angle as input and provide an output that can be viewed as the ratio of two sides of a right triangle, the inverse trigonometric functions take an input that can be viewed as a ratio of two sides of a right triangle and produce the corresponding angle as output. Indeed, it's imperative to remember that statements such as - - \arccos(x) = \theta \ \text{ and } \ \cos(\theta) = x - - say the exact same thing from two different perspectives, and that we read \arccos(x) as the angle whose cosine is x. -

      - - - -
      - - - Evaluating inverse trigonometric functions - -

      - Like the trigonometric functions themselves, there are a handful of important values of the inverse trigonometric functions that we can determine exactly without the aid of a computer. For instance, we know from the unit circle (Figure) that \arcsin(-\frac{\sqrt{3}}{2}) = -\frac{\pi}{3}, \arccos(-\frac{\sqrt{3}}{2}) = \frac{5\pi}{6}, and \arctan(-\frac{1}{\sqrt{3}}) = -\frac{\pi}{6}. In these evaluations, we have to be careful to remember that the range of the arccosine function is [0,\pi], while the range of the arcsine function is [-\frac{\pi}{2},\frac{\pi}{2}] and the range of the arctangent function is (-\frac{\pi}{2},\frac{\pi}{2}), in order to ensure that we choose the appropriate angle that results from the inverse trigonometric function. -

      - -

      - In addition, there are many other values at which we may wish to know the angle that results from an inverse trigonometric function. To determine such values, we use a computational device (such as Desmos) in order to evaluate the function. -

      - - - - -

      - Consider the right triangle pictured in Figure and assume we know that the vertical leg has length 1 and the hypotenuse has length 3. Let \alpha be the angle opposite the known leg. Determine exact and approximate values for all of the remaining parts of the triangle. -

      - -
      - A right triangle with one known leg and known hypotenuse. -

      A right triangle with one known leg and known hypotenuse.

      -
      -
      -
      -
      - - -

      - Because we know the hypotenuse and the side opposite \alpha, we observe that \sin(\alpha) = \frac{1}{3}. Rewriting this statement using inverse function notation, we have equivalently that \alpha = \arcsin(\frac{1}{3}), which is the exact value of \alpha. Since this is not one of the known special angles on the unit circle, we can find a numerical estimate of \alpha using a computational device. Entering arcsin(1/3) in Desmos, we find that \alpha \approx 0.3398 radians. Note well: whatever device we use, we need to be careful to use degree or radian mode as dictated by the problem we are solving. We will always work in radians unless stated otherwise. -

      - -

      - We can now find the remaining leg's length and the remaining angle's measure. If we let x represent the length of the horizontal leg, by the Pythagorean Theorem we know that - x^2 + 1^2 = 3^2, - and thus x^2 = 8 so x = \sqrt{8} \approx 2.8284. Calling the remaining angle \beta, since \alpha + \beta = \frac{\pi}{2}, it follows that - - \beta = \frac{\pi}{2} - \arcsin \left(\frac{1}{3}\right) \approx 1.2310 - . -

      -
      -
      - - - -
      - - - Finding angles in applied contexts -

      - Now that we have developed the (restricted) sine, cosine, and tangent functions and their respective inverses, in any setting in which we have a right triangle together with one side length and any one additional piece of information (another side length or a non-right angle measurement), we can determine all of the remaining pieces of the triangle. In the activities that follow, we explore these possibilities in a variety of different applied contexts. -

      - - - - - - - -
      - - - Summary - -

      - -

        -
      • - - -

        - Anytime we know two side lengths in a right triangle, we can use one of the inverse trigonometric functions to determine the measure of one of the non-right angles. For instance, if we know the values of \text{opp} and \text{adj} in Figure, then since - - \tan(\theta) = \frac{\text{opp}}{\text{adj}} - , - it follows that \theta = \arctan(\frac{\text{opp}}{\text{adj}}). -

        -

        - If we instead know the hypotenuse and one of the two legs, we can use either the arcsine or arccosine function accordingly. -

        -
        -
        - Finding an angle from knowing the legs in a right triangle. -

        Finding an angle from knowing the legs in a right triangle.

        -
        -
        -
        - -
      • -
      • -

        - For situations other than angles or ratios that involve the 16 special points on the unit circle, technology is required in order to evaluate inverse trignometric functions. For instance, from the unit circle we know that \arccos(\frac{1}{2}) = \frac{\pi}{3} (exactly), but if we want to know \arccos(\frac{1}{3}), we have to estimate this value using a computational device such as Desmos. We note that \arccos(\frac{1}{3}) is the exact value of the angle whose cosine is \frac{1}{3}. -

        -
      • -
      - -

      - -
      - - - - - -
      + + + + + + + + + + + + + +
      + Finding Angles + +
        +
      • +

        + How can we use inverse trigonometric functions to determine missing angles in right triangles? +

        +
      • +
      • +

        + What situations require us to use technology to evaluate inverse trigonometric functions? +

        +
      • +
      +
      + + Introduction +

      + In our earlier work in Section and Section, we observed that in any right triangle, if we know the measure of one additional angle and the length of one additional side, we can determine all of the other parts of the triangle. With the inverse trigonometric functions that we developed in Section, we are now also able to determine the missing angles in any right triangle where we know the lengths of two sides. +

      + +

      + While the original trigonometric functions take a particular angle as input and provide an output that can be viewed as the ratio of two sides of a right triangle, the inverse trigonometric functions take an input that can be viewed as a ratio of two sides of a right triangle and produce the corresponding angle as output. Indeed, it's imperative to remember that statements such as + + \arccos(x) = \theta \ \text{ and } \ \cos(\theta) = x + + say the exact same thing from two different perspectives, and that we read \arccos(x) as the angle whose cosine is x. +

      + + + + +
      + + + Evaluating inverse trigonometric functions + +

      + Like the trigonometric functions themselves, there are a handful of important values of the inverse trigonometric functions that we can determine exactly without the aid of a computer. For instance, we know from the unit circle (Figure) that \arcsin(-\frac{\sqrt{3}}{2}) = -\frac{\pi}{3}, \arccos(-\frac{\sqrt{3}}{2}) = \frac{5\pi}{6}, and \arctan(-\frac{1}{\sqrt{3}}) = -\frac{\pi}{6}. In these evaluations, we have to be careful to remember that the range of the arccosine function is [0,\pi], while the range of the arcsine function is [-\frac{\pi}{2},\frac{\pi}{2}] and the range of the arctangent function is (-\frac{\pi}{2},\frac{\pi}{2}), in order to ensure that we choose the appropriate angle that results from the inverse trigonometric function. +

      + +

      + In addition, there are many other values at which we may wish to know the angle that results from an inverse trigonometric function. To determine such values, we use a computational device (such as Desmos) in order to evaluate the function. +

      + + + + +

      + Consider the right triangle pictured in Figure and assume we know that the vertical leg has length 1 and the hypotenuse has length 3. Let \alpha be the angle opposite the known leg. Determine exact and approximate values for all of the remaining parts of the triangle. +

      + +
      + A right triangle with one known leg and known hypotenuse. +

      A right triangle with one known leg and known hypotenuse.

      +
      +
      +
      +
      + + +

      + Because we know the hypotenuse and the side opposite \alpha, we observe that \sin(\alpha) = \frac{1}{3}. Rewriting this statement using inverse function notation, we have equivalently that \alpha = \arcsin(\frac{1}{3}), which is the exact value of \alpha. Since this is not one of the known special angles on the unit circle, we can find a numerical estimate of \alpha using a computational device. Entering arcsin(1/3) in Desmos, we find that \alpha \approx 0.3398 radians. Note well: whatever device we use, we need to be careful to use degree or radian mode as dictated by the problem we are solving. We will always work in radians unless stated otherwise. +

      + +

      + We can now find the remaining leg's length and the remaining angle's measure. If we let x represent the length of the horizontal leg, by the Pythagorean Theorem we know that + x^2 + 1^2 = 3^2, + and thus x^2 = 8 so x = \sqrt{8} \approx 2.8284. Calling the remaining angle \beta, since \alpha + \beta = \frac{\pi}{2}, it follows that + + \beta = \frac{\pi}{2} - \arcsin \left(\frac{1}{3}\right) \approx 1.2310 + . +

      +
      +
      + + + +
      + + + Finding angles in applied contexts +

      + Now that we have developed the (restricted) sine, cosine, and tangent functions and their respective inverses, in any setting in which we have a right triangle together with one side length and any one additional piece of information (another side length or a non-right angle measurement), we can determine all of the remaining pieces of the triangle. In the activities that follow, we explore these possibilities in a variety of different applied contexts. +

      + + + + + + + +
      + + + Summary + +

      + +

        +
      • + + +

        + Anytime we know two side lengths in a right triangle, we can use one of the inverse trigonometric functions to determine the measure of one of the non-right angles. For instance, if we know the values of \text{opp} and \text{adj} in Figure, then since + + \tan(\theta) = \frac{\text{opp}}{\text{adj}} + , + it follows that \theta = \arctan(\frac{\text{opp}}{\text{adj}}). +

        +

        + If we instead know the hypotenuse and one of the two legs, we can use either the arcsine or arccosine function accordingly. +

        +
        +
        + Finding an angle from knowing the legs in a right triangle. +

        Finding an angle from knowing the legs in a right triangle.

        +
        +
        +
        + +
      • +
      • +

        + For situations other than angles or ratios that involve the 16 special points on the unit circle, technology is required in order to evaluate inverse trignometric functions. For instance, from the unit circle we know that \arccos(\frac{1}{2}) = \frac{\pi}{3} (exactly), but if we want to know \arccos(\frac{1}{3}), we have to estimate this value using a computational device such as Desmos. We note that \arccos(\frac{1}{3}) is the exact value of the angle whose cosine is \frac{1}{3}. +

        +
      • +
      + +

      + +
      + + + + + +
      diff --git a/source/sec-trig-inverse-wb.xml b/source/sec-trig-inverse-wb.xml index 6ee9c42e..a73676dd 100755 --- a/source/sec-trig-inverse-wb.xml +++ b/source/sec-trig-inverse-wb.xml @@ -1,22 +1,22 @@ - - - - - - - - - - - - - -
      - Inverses of trigonometric functions - - - - - - -
      + + + + + + + + + + + + + +
      + Inverses of trigonometric functions + + + + + + +
      diff --git a/source/sec-trig-inverse.xml b/source/sec-trig-inverse.xml index e80ca146..8997e3a7 100755 --- a/source/sec-trig-inverse.xml +++ b/source/sec-trig-inverse.xml @@ -1,306 +1,307 @@ - - - - - - - - - - - - - -
      - Inverses of trigonometric functions - - -
        -
      • -

        - Is it possible for a periodic function that fails the Horizontal Line Test to have an inverse? -

        -
      • -
      • -

        - For the restricted cosine, sine, and tangent functions, how do we define the corresponding arccosine, arcsine, and arctangent functions? -

        -
      • -
      • -

        - What are the key properties of the arccosine, arcsine, and arctangent functions? -

        -
      • -
      -
      - - Introduction -

      - In our prior work with inverse functions, we have seen several important principles, including -

        -
      • -

        - A function f has an inverse function - if and only if there exists a function g that undoes the work of f. Such - a function g has the properties that - g(f(x)) = x for each x in the domain of f, - and f(g(y)) = y for each y in the range of f. - We call g the inverse of f, - and write g = f^{-1}. -

        -
      • - -
      • -

        - A function f has an inverse function if and only if the graph of f passes the - . -

        -
      • - -
      • -

        - When f has an inverse, - we know that writing y = f(t) - and t = f^{-1}(y) - say the exact same thing, - but from two different perspectives. -

        -
      • -
      -

      - -

      - The trigonometric functions f(t) = \sin(t), - g(t) = \cos(t), and h(t) = \tan(t) are periodic, so each fails the horizontal line test, - and thus these functions on their full domains do not have inverse functions. - At the same time, it is reasonable to think about changing perspective and viewing angles as outputs in certain restricted settings. - For instance, we may want to say both - - \frac{\sqrt{3}}{2} = \cos\left(\frac{\pi}{6}\right) \ \ \ \mbox{and} \ \ \ \frac{\pi}{6} = \cos^{-1}\left(\frac{\sqrt{3}}{2}\right) - - depending on the context in which we are considering the relationship between the angle and side length. -

      - -

      - It's also important to understand why the issue of finding an angle in terms of a known value of a trigonometric function is important. - Suppose we know the following information about a right triangle: - one leg has length 2.5, and the hypotenuse has length 4. - If we let \theta be the angle opposite the side of length 2.5, it follows that \sin(\theta) = \frac{2.5}{4}. - We naturally want to use the inverse of the sine function to solve the most recent equation for \theta. But the sine function does not have an inverse function, so how can we address this situation? -

      - -

      - While the original trigonometric functions f(t) = \sin(t), - g(t) = \cos(t), and - h(t) = \tan(t) do not have inverse functions, - it turns out that we can consider restricted versions of them that do - have corresponding inverse functions. We thus investigate how we can think differently about the - trigonometric functions so that we can discuss inverses in a meaningful way. -

      - - - -
      - - - The arccosine function -

      - For the cosine function restricted to the domain [0,\pi] that we considered in Preview Activity, the function is strictly decreasing on its domain and thus passes the Horizontal Line Test. Therefore, this restricted version of the cosine function has an inverse function; we will call this inverse function the arccosine function. -

      - - - inverse trigonometric functionsarccosine - -

      - Let y = g(t) = \cos(t) be defined on the domain [0,\pi], and observe g : [0,\pi] \to [-1,1]. For any real number y that satisfies -1 \le y \le 1, the arccosine of y, denoted - - \arccos(y) - - is the angle t satisfying 0 \le t \le \pi such that \cos(t) = y. -

      -
      -
      - -

      - Note particularly that the output of the arccosine function is an angle. In addition, recall that in the context of the unit circle, an angle measured in radians and the corresponding arc length along the unit circle are numerically equal. This is why we use the arc in arccosine: given a value -1 \le y \le 1, the arccosine function produces the corresponding arc (measured counterclockwise from (1,0)) such that the cosine of that arc is y. -

      - -

      - We recall that for any function with an inverse function, the inverse function reverses the process of the original function. We know that y = \cos(t) can be read as saying y is the cosine of the angle t. Changing perspective and writing the equivalent statement t = \arccos(y), we read this statement as t is the angle whose cosine is y. Just as y = f(t) and t = f^{-1}(y) say the same thing for a function and its inverse in general, - - y = \cos(t) \ \text{ and } \ t = \arccos(y) - - say the same thing for any angle t that satisfies 0 \le t \le \pi. We also use the equivalent notation t = \cos^{-1}(y) interchangeably with t = \arccos(y). We read t = \cos^{-1}(y) as t is the angle whose cosine is y or t is the inverse cosine of y. Key properties of the arccosine function can be summarized as follows. -

      - - - Properties of the arccosine function - -

      -

        -
      • -

        - The restricted cosine function, y = g(t) = \cos(t), is defined on the domain [0,\pi] with range [-1,1]. This function has an inverse function that we call the arccosine function, denoted t = g^{-1}(y) = \arccos(y). -

        -
      • -
      • -

        - The domain of y = g^{-1}(t) = \arccos(t) is [-1,1] with range [0,\pi]. -

        -
      • -
      • -

        - The arccosine function is always decreasing on its domain. -

        -
      • -
      • -

        - At right, a plot of the restricted cosine function (in light blue) and its corresponding inverse, the arccosine function (in dark blue). -

        -
      • -
      -

      - -

      ADD ALT TEXT TO THIS IMAGE

      - -
      -
      - -

      - Just as the natural logarithm function allowed us to rewrite exponential equations in an equivalent way (for instance, y = e^t and t = \ln(y) say the exact same thing), the arccosine function allows us to do likewise for certain angles and cosine outputs. For instance, saying \cos(\frac{\pi}{2}) = 0 is the same as writing \frac{\pi}{2} = \arccos(0), which reads \frac{\pi}{2} is the angle whose cosine is 0. Indeed, these relationships are reflected in the plot above, where we see that any point (a,b) that lies on the graph of y = \cos(t) corresponds to the point (b,a) that lies on the graph of y = \arccos(t). -

      - - - -
      - - - The arcsine function -

      - We can develop an inverse function for a restricted version of the sine function in a similar way. As with the cosine function, we need to choose an interval on which the sine function is always increasing or always decreasing in order to have the function pass the horizontal line test. The standard choice is the domain [-\frac{\pi}{2}, \frac{\pi}{2}] on which f(t) = \sin(t) is increasing and attains all of the values in the range of the sine function. Thus, we consider f(t) = \sin(t) so that f : [-\frac{\pi}{2}, \frac{\pi}{2}] \to [-1,1] and hence define the corresponding arcsine function. -

      - - - inverse trigonometric functionsarcsine - -

      - Let y = f(t) = \sin(t) be defined on the domain [-\frac{\pi}{2},\frac{\pi}{2}], and observe f : [-\frac{\pi}{2},\frac{\pi}{2}] \to [-1,1]. For any real number y that satisfies -1 \le y \le 1, the arcsine of y, denoted - - \arcsin(y) - - is the angle t satisfying -\frac{\pi}{2} \le t \le \frac{\pi}{2} such that \sin(t) = y. -

      -
      -
      - - - -
      - - - The arctangent function - -

      - Finally, we develop an inverse function for a restricted version of the tangent function. We choose the domain (-\frac{\pi}{2}, \frac{\pi}{2}) on which h(t) = \tan(t) is increasing and attains all of the values in the range of the tangent function. -

      - - - inverse trigonometric functionsarctangent - -

      - Let y = h(t) = \tan(t) be defined on the domain (-\frac{\pi}{2},\frac{\pi}{2}), and observe h : (-\frac{\pi}{2},\frac{\pi}{2}) \to (-\infty,\infty). For any real number y, the arctangent of y, denoted - - \arctan(y) - - is the angle t satisfying -\frac{\pi}{2} \lt t \lt \frac{\pi}{2} such that \tan(t) = y. -

      -
      -
      - - - -
      - - - Summary -

      -

        -
      • -

        - Any function that fails the Horizontal Line Test cannot have an inverse function. However, for a periodic function that fails the horizontal line test, if we restrict the domain of the function to an interval with no repeated outputs, we then determine a related function that does, in fact, have an inverse function. By choosing such an interval carefully, it is possible for us to develop the inverse functions of the restricted cosine, sine, and tangent functions. -

        -
      • -
      • -

        - We choose to define the restricted cosine, sine, and tangent functions on the respective domains [0,\pi], [-\frac{\pi}{2}, \frac{\pi}{2}], and (-\frac{\pi}{2}, \frac{\pi}{2}). On each such interval, the restricted function is strictly decreasing (cosine) or strictly increasing (sine and tangent), and thus has an inverse function. The restricted sine and cosine functions each have range [-1,1], while the restricted tangent's range is the set of all real numbers. We thus define the inverse function of each as follows: -

        - -

        -

          -
        1. -

          - For any y such that -1 \le y \le 1, the arccosine of y (denoted \arccos(y)) is the angle t in the interval [0,\pi] such that \cos(t) = y. That is, t is the angle whose cosine is y. -

          -
        2. -
        3. -

          - For any y such that -1 \le y \le 1, the arcsine of y (denoted \arcsin(y)) is the angle t in the interval [-\frac{\pi}{2}, \frac{\pi}{2}] such that \sin(t) = y. That is, t is the angle whose sine is y. -

          -
        4. -
        5. -

          - For any real number y, the arctangent of y (denoted \arctan(y)) is the angle t in the interval (-\frac{\pi}{2}, \frac{\pi}{2}) such that \tan(t) = y. That is, t is the angle whose tangent is y. -

          -
        6. -
        -

        -
      • -
      • -

        - To discuss the properties of the three inverse trigonometric functions, we plot them on the same axes as their corresponding restricted trigonometric functions. When we do so, we use t as the input variable for both functions simultaneously so that we can plot them on the same coordinate axes. -

        - -

        - The domain of y = g^{-1}(t) = \arccos(t) is [-1,1] with corresponding range [0,\pi], and the arccosine function is always decreasing. These facts correspond to the domain and range of the restricted cosine function and the fact that the restricted cosine function is decreasing on [0,\pi]. -

        - - - -
        - The restricted cosine function (in light blue) and its inverse, y = g^{-1}(t) = \arccos(t) (in dark blue). -

        The restricted cosine function (in light blue) and its inverse, y = g^{-1}(t) = \arccos(t) (in dark blue).

        -
        -
        - -
        - The restricted sine function (in light blue) and its inverse, y = f^{-1}(t) = \arcsin(t) (in dark blue). -

        The restricted sine function (in light blue) and its inverse, y = f^{-1}(t) = \arcsin(t) (in dark blue).

        -
        -
        - -
        - -

        - The domain of y = f^{-1}(t) = \arcsin(t) is [-1,1] with corresponding range [-\frac{\pi}{2}, \frac{\pi}{2}], and the arcsine function is always increasing. These facts correspond to the domain and range of the restricted sine function and the fact that the restricted sine function is increasing on [-\frac{\pi}{2},\frac{\pi}{2}]. -

        - -

        - The domain of y = f^{-1}(t) = \arctan(t) is the set of all real numbers with corresponding range (-\frac{\pi}{2}, \frac{\pi}{2}), and the arctangent function is always increasing. These facts correspond to the domain and range of the restricted tangent function and the fact that the restricted tangent function is increasing on (-\frac{\pi}{2},\frac{\pi}{2}). -

        - -
        - The restricted tangent function (in light blue) and its inverse, y = h^{-1}(t) = \arctan(t) (in dark blue). -

        The restricted tangent function (in light blue) and its inverse, y = h^{-1}(t) = \arctan(t) (in dark blue).

        -
        -
        - -
      • -
      -

      -
      - - - - - -
      + + + + + + + + + + + + + +
      + Inverses of trigonometric functions + + +
        +
      • +

        + Is it possible for a periodic function that fails the Horizontal Line Test to have an inverse? +

        +
      • +
      • +

        + For the restricted cosine, sine, and tangent functions, how do we define the corresponding arccosine, arcsine, and arctangent functions? +

        +
      • +
      • +

        + What are the key properties of the arccosine, arcsine, and arctangent functions? +

        +
      • +
      +
      + + Introduction +

      + In our prior work with inverse functions, we have seen several important principles, including +

        +
      • +

        + A function f has an inverse function + if and only if there exists a function g that undoes the work of f. Such + a function g has the properties that + g(f(x)) = x for each x in the domain of f, + and f(g(y)) = y for each y in the range of f. + We call g the inverse of f, + and write g = f^{-1}. +

        +
      • + +
      • +

        + A function f has an inverse function if and only if the graph of f passes the + . +

        +
      • + +
      • +

        + When f has an inverse, + we know that writing y = f(t) + and t = f^{-1}(y) + say the exact same thing, + but from two different perspectives. +

        +
      • +
      +

      + +

      + The trigonometric functions f(t) = \sin(t), + g(t) = \cos(t), and h(t) = \tan(t) are periodic, so each fails the horizontal line test, + and thus these functions on their full domains do not have inverse functions. + At the same time, it is reasonable to think about changing perspective and viewing angles as outputs in certain restricted settings. + For instance, we may want to say both + + \frac{\sqrt{3}}{2} = \cos\left(\frac{\pi}{6}\right) \ \ \ \mbox{and} \ \ \ \frac{\pi}{6} = \cos^{-1}\left(\frac{\sqrt{3}}{2}\right) + + depending on the context in which we are considering the relationship between the angle and side length. +

      + +

      + It's also important to understand why the issue of finding an angle in terms of a known value of a trigonometric function is important. + Suppose we know the following information about a right triangle: + one leg has length 2.5, and the hypotenuse has length 4. + If we let \theta be the angle opposite the side of length 2.5, it follows that \sin(\theta) = \frac{2.5}{4}. + We naturally want to use the inverse of the sine function to solve the most recent equation for \theta. But the sine function does not have an inverse function, so how can we address this situation? +

      + +

      + While the original trigonometric functions f(t) = \sin(t), + g(t) = \cos(t), and + h(t) = \tan(t) do not have inverse functions, + it turns out that we can consider restricted versions of them that do + have corresponding inverse functions. We thus investigate how we can think differently about the + trigonometric functions so that we can discuss inverses in a meaningful way. +

      + + + + +
      + + + The arccosine function +

      + For the cosine function restricted to the domain [0,\pi] that we considered in Preview Activity, the function is strictly decreasing on its domain and thus passes the Horizontal Line Test. Therefore, this restricted version of the cosine function has an inverse function; we will call this inverse function the arccosine function. +

      + + + inverse trigonometric functionsarccosine + +

      + Let y = g(t) = \cos(t) be defined on the domain [0,\pi], and observe g : [0,\pi] \to [-1,1]. For any real number y that satisfies -1 \le y \le 1, the arccosine of y, denoted + + \arccos(y) + + is the angle t satisfying 0 \le t \le \pi such that \cos(t) = y. +

      +
      +
      + +

      + Note particularly that the output of the arccosine function is an angle. In addition, recall that in the context of the unit circle, an angle measured in radians and the corresponding arc length along the unit circle are numerically equal. This is why we use the arc in arccosine: given a value -1 \le y \le 1, the arccosine function produces the corresponding arc (measured counterclockwise from (1,0)) such that the cosine of that arc is y. +

      + +

      + We recall that for any function with an inverse function, the inverse function reverses the process of the original function. We know that y = \cos(t) can be read as saying y is the cosine of the angle t. Changing perspective and writing the equivalent statement t = \arccos(y), we read this statement as t is the angle whose cosine is y. Just as y = f(t) and t = f^{-1}(y) say the same thing for a function and its inverse in general, + + y = \cos(t) \ \text{ and } \ t = \arccos(y) + + say the same thing for any angle t that satisfies 0 \le t \le \pi. We also use the equivalent notation t = \cos^{-1}(y) interchangeably with t = \arccos(y). We read t = \cos^{-1}(y) as t is the angle whose cosine is y or t is the inverse cosine of y. Key properties of the arccosine function can be summarized as follows. +

      + + + Properties of the arccosine function + +

      +

        +
      • +

        + The restricted cosine function, y = g(t) = \cos(t), is defined on the domain [0,\pi] with range [-1,1]. This function has an inverse function that we call the arccosine function, denoted t = g^{-1}(y) = \arccos(y). +

        +
      • +
      • +

        + The domain of y = g^{-1}(t) = \arccos(t) is [-1,1] with range [0,\pi]. +

        +
      • +
      • +

        + The arccosine function is always decreasing on its domain. +

        +
      • +
      • +

        + At right, a plot of the restricted cosine function (in light blue) and its corresponding inverse, the arccosine function (in dark blue). +

        +
      • +
      +

      + +

      ADD ALT TEXT TO THIS IMAGE

      + +
      +
      + +

      + Just as the natural logarithm function allowed us to rewrite exponential equations in an equivalent way (for instance, y = e^t and t = \ln(y) say the exact same thing), the arccosine function allows us to do likewise for certain angles and cosine outputs. For instance, saying \cos(\frac{\pi}{2}) = 0 is the same as writing \frac{\pi}{2} = \arccos(0), which reads \frac{\pi}{2} is the angle whose cosine is 0. Indeed, these relationships are reflected in the plot above, where we see that any point (a,b) that lies on the graph of y = \cos(t) corresponds to the point (b,a) that lies on the graph of y = \arccos(t). +

      + + + +
      + + + The arcsine function +

      + We can develop an inverse function for a restricted version of the sine function in a similar way. As with the cosine function, we need to choose an interval on which the sine function is always increasing or always decreasing in order to have the function pass the horizontal line test. The standard choice is the domain [-\frac{\pi}{2}, \frac{\pi}{2}] on which f(t) = \sin(t) is increasing and attains all of the values in the range of the sine function. Thus, we consider f(t) = \sin(t) so that f : [-\frac{\pi}{2}, \frac{\pi}{2}] \to [-1,1] and hence define the corresponding arcsine function. +

      + + + inverse trigonometric functionsarcsine + +

      + Let y = f(t) = \sin(t) be defined on the domain [-\frac{\pi}{2},\frac{\pi}{2}], and observe f : [-\frac{\pi}{2},\frac{\pi}{2}] \to [-1,1]. For any real number y that satisfies -1 \le y \le 1, the arcsine of y, denoted + + \arcsin(y) + + is the angle t satisfying -\frac{\pi}{2} \le t \le \frac{\pi}{2} such that \sin(t) = y. +

      +
      +
      + + + +
      + + + The arctangent function + +

      + Finally, we develop an inverse function for a restricted version of the tangent function. We choose the domain (-\frac{\pi}{2}, \frac{\pi}{2}) on which h(t) = \tan(t) is increasing and attains all of the values in the range of the tangent function. +

      + + + inverse trigonometric functionsarctangent + +

      + Let y = h(t) = \tan(t) be defined on the domain (-\frac{\pi}{2},\frac{\pi}{2}), and observe h : (-\frac{\pi}{2},\frac{\pi}{2}) \to (-\infty,\infty). For any real number y, the arctangent of y, denoted + + \arctan(y) + + is the angle t satisfying -\frac{\pi}{2} \lt t \lt \frac{\pi}{2} such that \tan(t) = y. +

      +
      +
      + + + +
      + + + Summary +

      +

        +
      • +

        + Any function that fails the Horizontal Line Test cannot have an inverse function. However, for a periodic function that fails the horizontal line test, if we restrict the domain of the function to an interval with no repeated outputs, we then determine a related function that does, in fact, have an inverse function. By choosing such an interval carefully, it is possible for us to develop the inverse functions of the restricted cosine, sine, and tangent functions. +

        +
      • +
      • +

        + We choose to define the restricted cosine, sine, and tangent functions on the respective domains [0,\pi], [-\frac{\pi}{2}, \frac{\pi}{2}], and (-\frac{\pi}{2}, \frac{\pi}{2}). On each such interval, the restricted function is strictly decreasing (cosine) or strictly increasing (sine and tangent), and thus has an inverse function. The restricted sine and cosine functions each have range [-1,1], while the restricted tangent's range is the set of all real numbers. We thus define the inverse function of each as follows: +

        + +

        +

          +
        1. +

          + For any y such that -1 \le y \le 1, the arccosine of y (denoted \arccos(y)) is the angle t in the interval [0,\pi] such that \cos(t) = y. That is, t is the angle whose cosine is y. +

          +
        2. +
        3. +

          + For any y such that -1 \le y \le 1, the arcsine of y (denoted \arcsin(y)) is the angle t in the interval [-\frac{\pi}{2}, \frac{\pi}{2}] such that \sin(t) = y. That is, t is the angle whose sine is y. +

          +
        4. +
        5. +

          + For any real number y, the arctangent of y (denoted \arctan(y)) is the angle t in the interval (-\frac{\pi}{2}, \frac{\pi}{2}) such that \tan(t) = y. That is, t is the angle whose tangent is y. +

          +
        6. +
        +

        +
      • +
      • +

        + To discuss the properties of the three inverse trigonometric functions, we plot them on the same axes as their corresponding restricted trigonometric functions. When we do so, we use t as the input variable for both functions simultaneously so that we can plot them on the same coordinate axes. +

        + +

        + The domain of y = g^{-1}(t) = \arccos(t) is [-1,1] with corresponding range [0,\pi], and the arccosine function is always decreasing. These facts correspond to the domain and range of the restricted cosine function and the fact that the restricted cosine function is decreasing on [0,\pi]. +

        + + + +
        + The restricted cosine function (in light blue) and its inverse, y = g^{-1}(t) = \arccos(t) (in dark blue). +

        The restricted cosine function (in light blue) and its inverse, y = g^{-1}(t) = \arccos(t) (in dark blue).

        +
        +
        + +
        + The restricted sine function (in light blue) and its inverse, y = f^{-1}(t) = \arcsin(t) (in dark blue). +

        The restricted sine function (in light blue) and its inverse, y = f^{-1}(t) = \arcsin(t) (in dark blue).

        +
        +
        + +
        + +

        + The domain of y = f^{-1}(t) = \arcsin(t) is [-1,1] with corresponding range [-\frac{\pi}{2}, \frac{\pi}{2}], and the arcsine function is always increasing. These facts correspond to the domain and range of the restricted sine function and the fact that the restricted sine function is increasing on [-\frac{\pi}{2},\frac{\pi}{2}]. +

        + +

        + The domain of y = f^{-1}(t) = \arctan(t) is the set of all real numbers with corresponding range (-\frac{\pi}{2}, \frac{\pi}{2}), and the arctangent function is always increasing. These facts correspond to the domain and range of the restricted tangent function and the fact that the restricted tangent function is increasing on (-\frac{\pi}{2},\frac{\pi}{2}). +

        + +
        + The restricted tangent function (in light blue) and its inverse, y = h^{-1}(t) = \arctan(t) (in dark blue). +

        The restricted tangent function (in light blue) and its inverse, y = h^{-1}(t) = \arctan(t) (in dark blue).

        +
        +
        + +
      • +
      +

      +
      + + + + + +
      diff --git a/source/sec-trig-other-wb.xml b/source/sec-trig-other-wb.xml index 425ac411..2be0b158 100755 --- a/source/sec-trig-other-wb.xml +++ b/source/sec-trig-other-wb.xml @@ -1,23 +1,23 @@ - - - - - - - - - - - - - -
      - Other Trigonometric Functions and Identities - - - - - - - -
      + + + + + + + + + + + + + +
      + Other Trigonometric Functions and Identities + + + + + + + +
      diff --git a/source/sec-trig-other.xml b/source/sec-trig-other.xml index 8f3fc525..20114497 100755 --- a/source/sec-trig-other.xml +++ b/source/sec-trig-other.xml @@ -1,398 +1,399 @@ - - - - - - - - - - - - - -
      - Other Trigonometric Functions and Identities - -
        -
      • -

        - What are the other 3 trigonometric functions and how are they related to the cosine, sine, and tangent functions? -

        -
      • -
      • -

        - How do the graphs of the secant, cosecant, and cotangent functions behave and how do these graphs compare to the cosine, sine, and tangent functions' graphs? -

        -
      • -
      • -

        - What is a trigonometric identity and why are identities important? -

        -
      • -
      -
      - - Introduction -

      - The sine and cosine functions, originally defined in the context of a point traversing the unit circle, are also central in right triangle trigonometry. They enable us to find missing information in right triangles in a straightforward way when we know one of the non-right angles and one of the three sides of the triangle, or two of the sides where one is the hypotenuse. In addition, we defined the tangent function in terms of the sine and cosine functions, and the tangent function offers additional options for finding missing information in right triangles. We've also seen how the inverses of the restricted sine, cosine, and tangent functions enable us to find missing angles in a wide variety of settings involving right triangles. -

      - -

      - One of the powerful aspects of trigonometry is that the subject offers us the opportunity to view the same idea from many different perspectives. As one example, we have observed that the functions f(t) = \cos(t) and g(t) = \sin(t+\frac{\pi}{2}) are actually the same function; as another, for t values in the domain (-\frac{\pi}{2}, \frac{\pi}{2}), we know that writing y = \tan(t) is the same as writing t = \arctan(y). Which perspective we choose to take often depends on context and given information. -

      - -

      - While almost every question involving trigonometry can be answered using the sine, cosine, and tangent functions, sometimes it is convenient to use three related functions that are connected to the other three possible arrangements of ratios of sides in right triangles. -

      - - - secant function cosecant function cotangent function - The secant, cosecant, and cotangent functions - -

      -

        -
      • -

        - For any real number t for which \cos(t) \ne 0, we define the secant of t, denoted \sec(t), by the rule - - \sec(t) = \frac{1}{\cos(t)} - . -

        -
      • -
      • -

        - For any real number t for which \sin(t) \ne 0, we define the cosecant of t, denoted \csc(t), by the rule - - \csc(t) = \frac{1}{\sin(t)} - . -

        -
      • -
      • -

        - For any real number t for which \sin(t) \ne 0, we define the cotangent of t, denoted \cot(t), by the rule - - \cot(t) = \frac{\cos(t)}{\sin(t)} - . -

        -
      • -
      -

      -
      -
      - -

      - Note particularly that like the tangent function, the secant, cosecant, and cotangent are also defined completely in terms of the sine and cosine functions. In the context of a right triangle with an angle \theta, we know how to think of \sin(\theta), \cos(\theta), and \tan(\theta) as ratios of sides of the triangle. We can now do likewise with the other trigonometric functions: -

      - - -

      - - - \sec(\theta) &= \frac{1}{\cos(\theta)} = \frac{1}{\frac{\text{adj}}{\text{hyp}}} = \frac{\text{hyp}}{\text{adj}} - - - \csc(\theta) &= \frac{1}{\sin(\theta)} = \frac{1}{\frac{\text{opp}}{\text{hyp}}} = \frac{\text{hyp}}{\text{opp}} - - - \cot(\theta) &= \frac{\cos(\theta)}{\sin(\theta)} = \frac{\frac{\text{adj}}{\text{hyp}}}{\frac{\text{opp}}{\text{hyp}}} = \frac{\text{adj}}{\text{opp}} - - -

      -
      - A right triangle with angle \theta. -

      A right triangle with angle \theta.

      -
      -
      -
      - -

      - With these three additional trigonometric functions, we now have expressions that address all six possible combinations of two sides of a right triangle in a ratio. -

      - - - -
      - - - Ratios in right triangles -

      - Because the sine and cosine functions are used to define each of the other four trigonometric functions, it follows that we can translate information known about the other functions back to information about the sine and cosine functions. For example, if we know that in a certain triangle \csc(\alpha) = \frac{5}{3}, it follows that \sin(\alpha) = \frac{3}{5}. From there we can reason in the usual way to determine missing information in the given triangle. -

      - -

      - It's also often possible to view given information in the context of the unit circle. With the earlier given information that \csc(\alpha) = \frac{5}{3}, it's natural to view \alpha as being the angle in a right triangle that lies opposite a leg of length 3 with the hypotenuse being 5, since \csc(\alpha) = \frac{\text{hyp}}{\text{opp}}. The Pythagorean Theorem then tells us the leg adjacent to \alpha has length 4, as seen in \triangle OPQ in Figure. -

      - -
      - A 3-4-5 right triangle. -

      A 3-4-5 right triangle.

      -
      -
      - -

      - But we could also view \sin(\alpha) = \frac{3}{5} as \sin(\alpha) = \frac{\frac{3}{5}}{1}, and thus think of the right triangle has having hypotenuse 1 and vertical leg \frac{3}{5}. This triangle is similar to the originally considered 3-4-5 right triangle, but can be viewed as lying within the unit circle. The perspective of the unit circle is particularly valuable when ratios such as \frac{\sqrt{3}}{2}, \frac{\sqrt{2}}{2}, and \frac{1}{2} arise in right triangles. -

      - - - -
      - - - Properties of the secant, cosecant, and cotangent functions -

      - Like the tangent function, the secant, cosecant, and cotangent functions are defined in terms of the sine and cosine functions, so we can determine the exact values of these functions at each of the special points on the unit circle. In addition, we can use our understanding of the unit circle and the properties of the sine and cosine functions to determine key properties of these other trigonometric functions. We begin by investigating the secant function. -

      - -

      - Using the fact that \sec(t) = \frac{1}{\cos(t)}, we note that anywhere \cos(t) = 0, the value of \sec(t) is undefined. We denote such instances in the following table by u. At all other points, the value of the secant function is simply the reciprocal of the cosine function's value. Since |\cos(t)| \le 1 for all t, it follows that |\sec(t)| \ge 1 for all t (for which the secant's value is defined). -

      - - - Values of the cosine and secant functions at special points on the unit circle (Quadrants I and II). - - - t - 0 - \frac{\pi}{6} - \frac{\pi}{4} - \frac{\pi}{3} - \frac{\pi}{2} - \frac{2\pi}{3} - \frac{3\pi}{4} - \frac{5\pi}{6} - \pi - - - \cos(t) - 1 - \frac{\sqrt{3}}{2} - \frac{\sqrt{2}}{2} - \frac{1}{2} - 0 - -\frac{1}{2} - -\frac{\sqrt{2}}{2} - -\frac{\sqrt{3}}{2} - -1 - - - \sec(t) - 1 - \frac{2}{\sqrt{3}} - \sqrt{2} - 2 - u - -2 - -\sqrt{2} - -\frac{2}{\sqrt{3}} - -1 - - -
      - - - Values of the cosine and secant functions at special points on the unit circle (Quadrants III and IV). - - - t - \frac{7\pi}{6} - \frac{5\pi}{4} - \frac{4\pi}{3} - \frac{3\pi}{2} - \frac{5\pi}{3} - \frac{7\pi}{4} - \frac{11\pi}{6} - 2\pi - - - \cos(t) - -\frac{\sqrt{3}}{2} - -\frac{\sqrt{2}}{2} - -\frac{1}{2} - 0 - \frac{1}{2} - \frac{\sqrt{2}}{2} - \frac{\sqrt{3}}{2} - 0 - - - \sec(t) - -\frac{2}{\sqrt{3}} - -\sqrt{2} - -2 - u - 2 - \sqrt{2} - \frac{2}{\sqrt{3}} - 1 - - -
      - -

      - Table and Table help us identify trends in the secant function. The sign of \sec(t) matches the sign of \cos(t) and thus is positive in Quadrant I, negative in Quadrant II, negative in Quadrant III, and positive in Quadrant IV. -

      - -

      - In addition, we observe that as t-values in the first quadrant get closer to \frac{\pi}{2}, \cos(t) gets closer to 0 (while being always positive). Since the numerator of the secant function is always 1, having its denominator approach 0 (while the denominator remains positive) means that \sec(t) increases without bound as t approaches \frac{\pi}{2} from the left side. Once t is slightly greater than \frac{\pi}{2} in Quadrant II, the value of \cos(t) is negative (and close to zero). This makes the value of \sec(t) decrease without bound (negative and getting further away from 0) for t approaching \frac{\pi}{2} from the right side. We therefore see that p(t) = \sec(t) has a vertical asymptote at t = \frac{\pi}{2}; the periodicity and sign behavior of \cos(t) mean this asymptotic behavior of the secant function will repeat. -

      - -

      - Plotting the data in the table along with the expected asymptotes and connecting the points intuitively, we see the graph of the secant function in Figure. -

      - -
      - A plot of the secant function with special points that come from the unit circle, plus the cosine function (dotted, in light blue). -

      A plot of the secant function with special points that come from the unit circle, plus the cosine function (dotted, in light blue).

      -
      -
      - -

      - We see from both the table and the graph that the secant function has period P = 2\pi. We summarize our recent work as follows. -

      - - - Properties of the secant function -

      - For the function p(t) = \sec(t), -

        -
      • -

        - its domain is the set of all real numbers except t = \frac{\pi}{2} \pm k\pi where k is any whole number; -

        -
      • -
      • -

        - its range is the set of all real numbers y such that |y| \ge 1; -

        -
      • -
      • -

        - its period is P = 2\pi. -

        -
      • -
      -

      -
      - - - - - -
      - - - A few important identities -

      - An identity is an equation that is true for all possible values of x for which the involved quantities are defined. An example of a non-trigonometric identity is - - (x+1)^2 = x^2 + 2x + 1 - , - since this equation is true for every value of x, - and the left and right sides of the equation are simply two different-looking but entirely equivalent expressions. -

      - -

      - Trigonometric identities are simply identities that involve trigonometric functions. While there are a large number of such identities one can study, we choose to focus on those that turn out to be most useful in the study of calculus. The most important trigonometric identity is the fundamental trigonometric identity, - which is a trigonometric restatement of the Pythagorean Theorem. -

      - - - fundamental trigonometric identity - The fundamental trigonometric identity -

      - For any real number \theta, - - \cos^2(\theta) + \sin^2(\theta) = 1 - . -

      - -
      - -

      - Identities are important because they enable us to view the same idea from multiple perspectives. For example, the fundamental trigonometric identity allows us to think of \cos^2(\theta) + \sin^2(\theta) as simply 1, or alternatively, to view \cos^2(\theta) as the same quantity as 1 - \sin^2(\theta). -

      - -

      - There are two related Pythagorean identities that involve the tangent, secant, - cotangent, and cosecant functions, which we can derive from the fundamental trigonometric identity by dividing both sides by either \cos^2(\theta) or \sin^2(\theta). If we divide both sides of Equation by \cos^2(\theta) (and assume that \cos(\theta) \ne 0), we see that - - 1 + \frac{\sin^2(\theta)}{\cos^2(\theta)} = \frac{1}{\cos^2(\theta)} - , or equivalently, - - 1 + \tan^2(\theta) = \sec^2(\theta) - . - A similar argument dividing by \sin^2(\theta) (while assuming \sin(\theta) \ne 0) shows that - - \cot^2(\theta) + 1 = \csc^2(\theta) - . These identities prove useful in calculus when we develop the formulas for the derivatives of the tangent and cotangent functions. -

      - -

      - In calculus, it is also beneficial to know a couple of other standard identities for sums of angles or double angles. sum of two angles identity double angle identity We simply state these identities without justification. For more information about them, see Section 10.4 in College Trigonometry, by Stitz and ZeagerMore information on Stitz and Zeager's free texts can be found at .. -

      - -

      -

        -
      • -

        - For all real numbers \alpha and \beta, \cos(\alpha + \beta) = \cos(\alpha) \cos(\beta) - \sin(\alpha) \sin(\beta). -

        -
      • -
      • -

        - For all real numbers \alpha and \beta, \sin(\alpha + \beta) = \sin(\alpha) \cos(\beta) + \cos(\alpha) \sin(\beta). -

        -
      • -
      • -

        - For any real number \theta, \cos(2\theta) = \cos^2(\theta) - \sin^2(\theta). -

        -
      • -
      • -

        - For any real number \theta, \sin(2\theta) = 2\sin(\theta)\cos(\theta). -

        -
      • -
      -

      - - - -
      - - - Summary -

      -

        -
      • -

        - The secant, cosecant, and cotangent functions are respectively defined as the reciprocals of the cosine, sine, and tangent functions. That is, - - \sec(t) = \frac{1}{\cos(t)}, \csc(t) = \frac{1}{\sin(t)}, \text{ and } \cot(t) = \frac{1}{\tan(t)} - . -

        -
      • -
      • -

        - The graph of the cotangent function is similar to the graph of the tangent function, except that it is decreasing on every interval on which it is defined and has vertical asymptotes wherever \tan(t) = 0 and is zero wherever \tan(t) has a vertical asymptote. -

        - -

        - The graphs of the secant and cosecant functions are different from the cosine and sine functions' graphs in several ways, including that their range is the set of all real numbers y such that |y| \ge 1 and they have vertical asymptotes wherever the cosine and sine function, respectively, are zero. -

        -
      • -
      • -

        - A trigonometric identity is an equation involving trigonometric functions that is true for every value of the variable for which the trigonometric functions are defined. For instance, \tan^2(t) + 1 = \sec^2(t) for every real number t except t = \frac{\pi}{2} \pm k\pi. Identities offer us alternate perspectives on the same function. For instance, the function f(t) = \sec^2(t) - \tan^2(t) is the same (at all points where f is defined) as the function whose value is always 1. -

        -
      • -
      -

      -
      - - - - - -
      + + + + + + + + + + + + + +
      + Other Trigonometric Functions and Identities + +
        +
      • +

        + What are the other 3 trigonometric functions and how are they related to the cosine, sine, and tangent functions? +

        +
      • +
      • +

        + How do the graphs of the secant, cosecant, and cotangent functions behave and how do these graphs compare to the cosine, sine, and tangent functions' graphs? +

        +
      • +
      • +

        + What is a trigonometric identity and why are identities important? +

        +
      • +
      +
      + + Introduction +

      + The sine and cosine functions, originally defined in the context of a point traversing the unit circle, are also central in right triangle trigonometry. They enable us to find missing information in right triangles in a straightforward way when we know one of the non-right angles and one of the three sides of the triangle, or two of the sides where one is the hypotenuse. In addition, we defined the tangent function in terms of the sine and cosine functions, and the tangent function offers additional options for finding missing information in right triangles. We've also seen how the inverses of the restricted sine, cosine, and tangent functions enable us to find missing angles in a wide variety of settings involving right triangles. +

      + +

      + One of the powerful aspects of trigonometry is that the subject offers us the opportunity to view the same idea from many different perspectives. As one example, we have observed that the functions f(t) = \cos(t) and g(t) = \sin(t+\frac{\pi}{2}) are actually the same function; as another, for t values in the domain (-\frac{\pi}{2}, \frac{\pi}{2}), we know that writing y = \tan(t) is the same as writing t = \arctan(y). Which perspective we choose to take often depends on context and given information. +

      + +

      + While almost every question involving trigonometry can be answered using the sine, cosine, and tangent functions, sometimes it is convenient to use three related functions that are connected to the other three possible arrangements of ratios of sides in right triangles. +

      + + + secant function cosecant function cotangent function + The secant, cosecant, and cotangent functions + +

      +

        +
      • +

        + For any real number t for which \cos(t) \ne 0, we define the secant of t, denoted \sec(t), by the rule + + \sec(t) = \frac{1}{\cos(t)} + . +

        +
      • +
      • +

        + For any real number t for which \sin(t) \ne 0, we define the cosecant of t, denoted \csc(t), by the rule + + \csc(t) = \frac{1}{\sin(t)} + . +

        +
      • +
      • +

        + For any real number t for which \sin(t) \ne 0, we define the cotangent of t, denoted \cot(t), by the rule + + \cot(t) = \frac{\cos(t)}{\sin(t)} + . +

        +
      • +
      +

      +
      +
      + +

      + Note particularly that like the tangent function, the secant, cosecant, and cotangent are also defined completely in terms of the sine and cosine functions. In the context of a right triangle with an angle \theta, we know how to think of \sin(\theta), \cos(\theta), and \tan(\theta) as ratios of sides of the triangle. We can now do likewise with the other trigonometric functions: +

      + + +

      + + + \sec(\theta) &= \frac{1}{\cos(\theta)} = \frac{1}{\frac{\text{adj}}{\text{hyp}}} = \frac{\text{hyp}}{\text{adj}} + + + \csc(\theta) &= \frac{1}{\sin(\theta)} = \frac{1}{\frac{\text{opp}}{\text{hyp}}} = \frac{\text{hyp}}{\text{opp}} + + + \cot(\theta) &= \frac{\cos(\theta)}{\sin(\theta)} = \frac{\frac{\text{adj}}{\text{hyp}}}{\frac{\text{opp}}{\text{hyp}}} = \frac{\text{adj}}{\text{opp}} + + +

      +
      + A right triangle with angle \theta. +

      A right triangle with angle \theta.

      +
      +
      +
      + +

      + With these three additional trigonometric functions, we now have expressions that address all six possible combinations of two sides of a right triangle in a ratio. +

      + + + + +
      + + + Ratios in right triangles +

      + Because the sine and cosine functions are used to define each of the other four trigonometric functions, it follows that we can translate information known about the other functions back to information about the sine and cosine functions. For example, if we know that in a certain triangle \csc(\alpha) = \frac{5}{3}, it follows that \sin(\alpha) = \frac{3}{5}. From there we can reason in the usual way to determine missing information in the given triangle. +

      + +

      + It's also often possible to view given information in the context of the unit circle. With the earlier given information that \csc(\alpha) = \frac{5}{3}, it's natural to view \alpha as being the angle in a right triangle that lies opposite a leg of length 3 with the hypotenuse being 5, since \csc(\alpha) = \frac{\text{hyp}}{\text{opp}}. The Pythagorean Theorem then tells us the leg adjacent to \alpha has length 4, as seen in \triangle OPQ in Figure. +

      + +
      + A 3-4-5 right triangle. +

      A 3-4-5 right triangle.

      +
      +
      + +

      + But we could also view \sin(\alpha) = \frac{3}{5} as \sin(\alpha) = \frac{\frac{3}{5}}{1}, and thus think of the right triangle has having hypotenuse 1 and vertical leg \frac{3}{5}. This triangle is similar to the originally considered 3-4-5 right triangle, but can be viewed as lying within the unit circle. The perspective of the unit circle is particularly valuable when ratios such as \frac{\sqrt{3}}{2}, \frac{\sqrt{2}}{2}, and \frac{1}{2} arise in right triangles. +

      + + + +
      + + + Properties of the secant, cosecant, and cotangent functions +

      + Like the tangent function, the secant, cosecant, and cotangent functions are defined in terms of the sine and cosine functions, so we can determine the exact values of these functions at each of the special points on the unit circle. In addition, we can use our understanding of the unit circle and the properties of the sine and cosine functions to determine key properties of these other trigonometric functions. We begin by investigating the secant function. +

      + +

      + Using the fact that \sec(t) = \frac{1}{\cos(t)}, we note that anywhere \cos(t) = 0, the value of \sec(t) is undefined. We denote such instances in the following table by u. At all other points, the value of the secant function is simply the reciprocal of the cosine function's value. Since |\cos(t)| \le 1 for all t, it follows that |\sec(t)| \ge 1 for all t (for which the secant's value is defined). +

      + + + Values of the cosine and secant functions at special points on the unit circle (Quadrants I and II). + + + t + 0 + \frac{\pi}{6} + \frac{\pi}{4} + \frac{\pi}{3} + \frac{\pi}{2} + \frac{2\pi}{3} + \frac{3\pi}{4} + \frac{5\pi}{6} + \pi + + + \cos(t) + 1 + \frac{\sqrt{3}}{2} + \frac{\sqrt{2}}{2} + \frac{1}{2} + 0 + -\frac{1}{2} + -\frac{\sqrt{2}}{2} + -\frac{\sqrt{3}}{2} + -1 + + + \sec(t) + 1 + \frac{2}{\sqrt{3}} + \sqrt{2} + 2 + u + -2 + -\sqrt{2} + -\frac{2}{\sqrt{3}} + -1 + + +
      + + + Values of the cosine and secant functions at special points on the unit circle (Quadrants III and IV). + + + t + \frac{7\pi}{6} + \frac{5\pi}{4} + \frac{4\pi}{3} + \frac{3\pi}{2} + \frac{5\pi}{3} + \frac{7\pi}{4} + \frac{11\pi}{6} + 2\pi + + + \cos(t) + -\frac{\sqrt{3}}{2} + -\frac{\sqrt{2}}{2} + -\frac{1}{2} + 0 + \frac{1}{2} + \frac{\sqrt{2}}{2} + \frac{\sqrt{3}}{2} + 0 + + + \sec(t) + -\frac{2}{\sqrt{3}} + -\sqrt{2} + -2 + u + 2 + \sqrt{2} + \frac{2}{\sqrt{3}} + 1 + + +
      + +

      + Table and Table help us identify trends in the secant function. The sign of \sec(t) matches the sign of \cos(t) and thus is positive in Quadrant I, negative in Quadrant II, negative in Quadrant III, and positive in Quadrant IV. +

      + +

      + In addition, we observe that as t-values in the first quadrant get closer to \frac{\pi}{2}, \cos(t) gets closer to 0 (while being always positive). Since the numerator of the secant function is always 1, having its denominator approach 0 (while the denominator remains positive) means that \sec(t) increases without bound as t approaches \frac{\pi}{2} from the left side. Once t is slightly greater than \frac{\pi}{2} in Quadrant II, the value of \cos(t) is negative (and close to zero). This makes the value of \sec(t) decrease without bound (negative and getting further away from 0) for t approaching \frac{\pi}{2} from the right side. We therefore see that p(t) = \sec(t) has a vertical asymptote at t = \frac{\pi}{2}; the periodicity and sign behavior of \cos(t) mean this asymptotic behavior of the secant function will repeat. +

      + +

      + Plotting the data in the table along with the expected asymptotes and connecting the points intuitively, we see the graph of the secant function in Figure. +

      + +
      + A plot of the secant function with special points that come from the unit circle, plus the cosine function (dotted, in light blue). +

      A plot of the secant function with special points that come from the unit circle, plus the cosine function (dotted, in light blue).

      +
      +
      + +

      + We see from both the table and the graph that the secant function has period P = 2\pi. We summarize our recent work as follows. +

      + + + Properties of the secant function +

      + For the function p(t) = \sec(t), +

        +
      • +

        + its domain is the set of all real numbers except t = \frac{\pi}{2} \pm k\pi where k is any whole number; +

        +
      • +
      • +

        + its range is the set of all real numbers y such that |y| \ge 1; +

        +
      • +
      • +

        + its period is P = 2\pi. +

        +
      • +
      +

      +
      + + + + + +
      + + + A few important identities +

      + An identity is an equation that is true for all possible values of x for which the involved quantities are defined. An example of a non-trigonometric identity is + + (x+1)^2 = x^2 + 2x + 1 + , + since this equation is true for every value of x, + and the left and right sides of the equation are simply two different-looking but entirely equivalent expressions. +

      + +

      + Trigonometric identities are simply identities that involve trigonometric functions. While there are a large number of such identities one can study, we choose to focus on those that turn out to be most useful in the study of calculus. The most important trigonometric identity is the fundamental trigonometric identity, + which is a trigonometric restatement of the Pythagorean Theorem. +

      + + + fundamental trigonometric identity + The fundamental trigonometric identity +

      + For any real number \theta, + + \cos^2(\theta) + \sin^2(\theta) = 1 + . +

      + +
      + +

      + Identities are important because they enable us to view the same idea from multiple perspectives. For example, the fundamental trigonometric identity allows us to think of \cos^2(\theta) + \sin^2(\theta) as simply 1, or alternatively, to view \cos^2(\theta) as the same quantity as 1 - \sin^2(\theta). +

      + +

      + There are two related Pythagorean identities that involve the tangent, secant, + cotangent, and cosecant functions, which we can derive from the fundamental trigonometric identity by dividing both sides by either \cos^2(\theta) or \sin^2(\theta). If we divide both sides of Equation by \cos^2(\theta) (and assume that \cos(\theta) \ne 0), we see that + + 1 + \frac{\sin^2(\theta)}{\cos^2(\theta)} = \frac{1}{\cos^2(\theta)} + , or equivalently, + + 1 + \tan^2(\theta) = \sec^2(\theta) + . + A similar argument dividing by \sin^2(\theta) (while assuming \sin(\theta) \ne 0) shows that + + \cot^2(\theta) + 1 = \csc^2(\theta) + . These identities prove useful in calculus when we develop the formulas for the derivatives of the tangent and cotangent functions. +

      + +

      + In calculus, it is also beneficial to know a couple of other standard identities for sums of angles or double angles. sum of two angles identity double angle identity We simply state these identities without justification. For more information about them, see Section 10.4 in College Trigonometry, by Stitz and ZeagerMore information on Stitz and Zeager's free texts can be found at .. +

      + +

      +

        +
      • +

        + For all real numbers \alpha and \beta, \cos(\alpha + \beta) = \cos(\alpha) \cos(\beta) - \sin(\alpha) \sin(\beta). +

        +
      • +
      • +

        + For all real numbers \alpha and \beta, \sin(\alpha + \beta) = \sin(\alpha) \cos(\beta) + \cos(\alpha) \sin(\beta). +

        +
      • +
      • +

        + For any real number \theta, \cos(2\theta) = \cos^2(\theta) - \sin^2(\theta). +

        +
      • +
      • +

        + For any real number \theta, \sin(2\theta) = 2\sin(\theta)\cos(\theta). +

        +
      • +
      +

      + + + +
      + + + Summary +

      +

        +
      • +

        + The secant, cosecant, and cotangent functions are respectively defined as the reciprocals of the cosine, sine, and tangent functions. That is, + + \sec(t) = \frac{1}{\cos(t)}, \csc(t) = \frac{1}{\sin(t)}, \text{ and } \cot(t) = \frac{1}{\tan(t)} + . +

        +
      • +
      • +

        + The graph of the cotangent function is similar to the graph of the tangent function, except that it is decreasing on every interval on which it is defined and has vertical asymptotes wherever \tan(t) = 0 and is zero wherever \tan(t) has a vertical asymptote. +

        + +

        + The graphs of the secant and cosecant functions are different from the cosine and sine functions' graphs in several ways, including that their range is the set of all real numbers y such that |y| \ge 1 and they have vertical asymptotes wherever the cosine and sine function, respectively, are zero. +

        +
      • +
      • +

        + A trigonometric identity is an equation involving trigonometric functions that is true for every value of the variable for which the trigonometric functions are defined. For instance, \tan^2(t) + 1 = \sec^2(t) for every real number t except t = \frac{\pi}{2} \pm k\pi. Identities offer us alternate perspectives on the same function. For instance, the function f(t) = \sec^2(t) - \tan^2(t) is the same (at all points where f is defined) as the function whose value is always 1. +

        +
      • +
      +

      +
      + + + + + +
      diff --git a/source/sec-trig-right-wb.xml b/source/sec-trig-right-wb.xml index a1130f48..827204af 100755 --- a/source/sec-trig-right-wb.xml +++ b/source/sec-trig-right-wb.xml @@ -1,22 +1,22 @@ - - - - - - - - - - - - - -
      - Right triangles - - - - - - -
      + + + + + + + + + + + + + +
      + Right triangles + + + + + + +
      diff --git a/source/sec-trig-right.xml b/source/sec-trig-right.xml index 8c4c7af7..f14a314e 100755 --- a/source/sec-trig-right.xml +++ b/source/sec-trig-right.xml @@ -1,299 +1,300 @@ - - - - - - - - - - - - - -
      - Right triangles - - -
        -
      • -

        - How can we view \cos(\theta) and \sin(\theta) as side lengths in right triangles with hypotenuse 1? -

        -
      • -
      • -

        - Why can both \cos(\theta) and \sin(\theta) be thought of as ratios of certain side lengths in any right triangle? -

        -
      • -
      • -

        - What is the minimum amount of information we need about a right triangle in order to completely determine all of its sides and angles? -

        -
      • -
      -
      - - Introduction - -

      - In Section, we defined the cosine and sine functions as the functions that track the location of a point traversing the unit circle counterclockwise from (1,0). In particular, for a central angle of radian measure t that passes through the point (1,0), we define \cos(t) as the x-coordinate of the point where the other side of the angle intersects the unit circle, and \sin(t) as the y-coordinate of that same point, as pictured in Figure. -

      - -

      - By changing our perspective slightly, we can see that it is equivalent to think of the values of the sine and cosine function as representing the lengths of legs in right triangles. Specifically, given a central angleIn our work with right triangles, we'll often represent the angle by \theta and think of this angle as fixed, as opposed to our previous use of t where we frequently think of t as changing. \theta in standard position standard position (vertex at the origin, and one side on the positive x-axis), if we think of the right triangle with vertices (\cos(\theta),0), (0,0), and (\cos(\theta), \sin(\theta)), then the length of the horizontal leg is \cos(\theta) and the length of the vertical leg is \sin(\theta), as seen in Figure. -

      - - -
      - The values of \cos(t) and \sin(t) as coordinates on the unit circle. -

      The values of \cos(t) and \sin(t) as coordinates on the unit circle.

      -
      -
      -
      - The values of \cos(\theta) and \sin(\theta) as the lengths of the legs of a right triangle. -

      The values of \cos(\theta) and \sin(\theta) as the lengths of the legs of a right triangle.

      -
      -
      -
      - -

      - This right triangle perspective enables us to use the sine and cosine functions to determine missing information in certain right triangles. The field of mathematics that studies relationships among the angles and sides of triangles is called trigonometry. trigonometry In addition, it's important to recall both the Pythagorean Theorem and the Fundamental Trigonometric Identity. Pythagorean Theorem fundamental trigonometric identity The former states that in any right triangle with legs of length a and b and hypotenuse of length c, it follows a^2 + b^2 = c^2. The latter, which is a special case of the Pythagorean Theorem, says that for any angle \theta, \cos^2(\theta) + \sin^2(\theta) = 1. -

      - - - -
      - - - The geometry of triangles - -

      - In the study of functions, linear functions are the simplest of all and form a foundation for our understanding of functions that have other shapes. In the study of geometric shapes (polygons, circles, and more), the simplest figure of all is the triangle, and understanding triangles is foundational to understanding many other geometric ideas. To begin, we list some familiar and important facts about triangles. -

      - -

      -

        -
      • -

        - Any triangle has 6 important features: 3 sides and 3 angles. -

        -
      • -
      • -

        - In any triangle in the Cartesian plane, the sum of the measures of the interior angles is \pi radians (or equivalently, 180^\circ). -

        -
      • -
      • -

        - In any triangle in the plane, knowing three of the six features of a triangle is often enough information to determine the missing three features.Formally, this idea relies on what are called congruence criteria. For instance, if we know the lengths of all three sides, then the angle measures of the triangle are uniquely determined. This is called the Side-Side-Side Criterion (SSS). You are likely familiar with SSS, as well as SAS (Side-Angle-Side), ASA, and AAS, which are the four standard criteria. -

        -
      • -
      -

      - -

      - The situation is especially nice for right triangles, because then we only have five unknown features since one of the angles is \frac{\pi}{2} radians (or 90^\circ), as demonstrated in Figure. If we know one of the two non-right angles, - then we know the other as well. Moreover, if we know any two sides, we can immediately deduce the third, because of the Pythagorean Theorem. As we saw in Preview Activity, the cosine and sine functions offer additional help in determining missing information in right triangles. Indeed, while the functions \cos(t) and \sin(t) have many important applications in modeling periodic phenomena such as oscillating masses on springs, they also find powerful application in settings involving right triangles, such as in navigation and surveying. -

      - -
      - The 5 potential unknowns in a right triangle. -

      The 5 potential unknowns in a right triangle.

      -
      -
      - -

      - Because we know the values of the cosine and sine functions from the unit circle, right triangles with hypotentuse 1 are the easiest ones in which to determine missing information. In addition, we can relate any other right triangle to a right triangle with hypotenuse 1 through the concept of similarity. Recall that two triangles are similar similar triangles provided that one is a magnification of the other. More precisely, two triangles are similar whenever there is some constant k such that every side in one triangle is k times as long as the corresponding side in the other and the corresponding angles in the two triangles are equal. An important result from geometry tells us that if two triangles are known to have all three of their corresponding angles equal, then it follows that the two triangles are similar, and therefore their corresponding sides must be proportionate to one another. -

      - - - -
      - - - Ratios of sides in right triangles - -

      - A right triangle with a hypotenuse of length 1 can be viewed as lying in standard position in the unit circle, with one vertex at the origin and one leg along the positive x-axis. If we let the angle formed by the hypotenuse and the horizontal leg be represented by \theta, then the right triangle with hypotenuse 1 has horizontal leg of length \cos(\theta) and vertical leg of length \sin(\theta). If we now consider a similar right triangle with hypotenuse of length r \ne 1, we can view that triangle as a magnification of a triangle with hypotenuse 1. These observations, combined with our work in Activity, show us that the horizontal legs of the right triangle with hypotenuse r have lengths r\cos(\theta) and r\sin(\theta), as pictured in Figure. -

      - -
      - The roles of r and \theta in a right triangle. -

      The roles of r and \theta in a right triangle.

      -
      -
      - -

      - From the similar triangles in Figure, we can make an important observation about ratios in right triangles. Because the triangles are similar, the ratios of corresponding sides must be equal, so if we consider the two hypotenuses and the two horizontal legs, we have - - \frac{r}{1} = \frac{r\cos(\theta)}{\cos(\theta)} - . - If we rearrange Equation by dividing both sides by r and multiplying both sides by \cos(\theta), we see that - - \frac{\cos(\theta)}{1} = \frac{r\cos(\theta)}{r} - . - From a geometric perspective, Equation tells us that the ratio of the length of the horizontal leg of a right triangle to the length of the hypotenuse of the triangle is always the same (regardless of r) and that the value of that ratio is \cos(\theta), where \theta is the angle adjacent to the horizontal leg. In an analogous way, the equation involving the hypotenuses and vertical legs of the similar triangles is - - \frac{r}{1} = \frac{r\sin(\theta)}{\sin(\theta)} - , - which can be rearranged to - - \frac{\sin(\theta)}{1} = \frac{r\sin(\theta)}{r} - . - Equation shows that the ratio of the length of the vertical leg of a right triangle to the length of the hypotenuse of the triangle is always the same (regardless of r) and that the value of that ratio is \sin(\theta), where \theta is the angle opposite the vertical leg. We summarize these recent observations as follows. -

      - - - Ratios in right triangles - -

      - In a right triangle where one of the non-right angles is \theta, and adj denotes the length of the leg adjacent to \theta, opp the length the side opposite \theta, and hyp the length of the hypotenuse, - - \cos(\theta) = \frac{\text{adj}}{\text{hyp}} \text{ and } \sin(\theta) = \frac{\text{opp}}{\text{hyp}} - . -

      - -

      ADD ALT TEXT TO THIS IMAGE

      - -
      -
      - - - -
      - - - Using a ratio involving sine and cosine - -

      - In Activity, we found that in many cases where we have a right triangle, knowing two additional pieces of information enables us to find the remaining three unknown quantities in the triangle. At this point in our studies, the following general principles hold. -

      - - - Missing information in right triangles -

      - In any right triangle, -

      - -

      -

        -
      1. -

        - if we know one of the non-right angles and the length of the hypotenuse, we can find both the remaining non-right angle and the lengths of the two legs; -

        -
      2. -
      3. -

        - if we know the length of two sides of the triangle, then we can find the length of the other side; -

        -
      4. -
      5. -

        - if we know the measure of one non-right angle, then we can find the measure of the remaining angle. -

        -
      6. -
      -

      -
      - -

      - In scenario (1.), all 6 features of the triangle are not only determined, but we are able to find their values. In (2.), the triangle is uniquely determined by the given information, but as in Activity parts (d) and (e), while we know the values of the sine and cosine of the angles in the triangle, we haven't yet developed a way to determine the measures of those angles. Finally, in scenario (3.), the triangle is not uniquely determined, since any magnified version of the triangle will have the same three angles as the given one, and thus we need more information to determine side length. -

      - -

      - We will revisit scenario (2) in our future work. Now, however, we want to consider a situation that is similar to (1), but where it is one leg of the triangle instead of the hypotenuse that is known. We encountered this in Activity part (f): a right triangle where one of the non-right angles is \beta = \frac{\pi}{5} and the leg opposite this angle has length 4. -

      - - - - - - -

      - Consider a right triangle in which one of the non-right angles is \beta = \frac{\pi}{5} and the leg opposite \beta has length 4. -

      - -

      - Determine (both exactly and approximately) the measures of all of the remaining sides and angles in the triangle. -

      -
      - -
      - The given right triangle. -

      The given right triangle.

      -
      -
      -
      - - -
      - -

      - From the fact that \beta = \frac{\pi}{5}, it follows that \alpha = \frac{\pi}{2} - \frac{\pi}{5} = \frac{3\pi}{10}. In addition, we know that - - \sin\left(\frac{\pi}{5}\right) = \frac{4}{h} - - and - - \cos\left(\frac{\pi}{5}\right) = \frac{x}{h} - -

      - -

      - Solving Equation for h, we see that - - h = \frac{4}{\sin\left(\frac{\pi}{5}\right)} - , which is the exact numerical value of h. Substituting this result in - Equation, we find that - - \cos\left(\frac{\pi}{5}\right) = \frac{x}{\frac{4}{\sin\left(\frac{\pi}{5}\right)}} - . - Solving this equation for the single unknown x shows that - - x = \frac{4 \cos\left(\frac{\pi}{5}\right)}{\sin\left(\frac{\pi}{5}\right)} - . - The approximate values of x and h are x \approx 5.506 and h \approx 6.805. -

      -
      -
      - -

      - Example demonstrates that a ratio of values of the sine and cosine function can be needed in order to determine the value of one of the missing sides of a right triangle, and also that we may need to work with two unknown quantities simultaneously in order to determine both of their values. -

      - - - -
      - - - Summary - -
        -
      • -

        - In a right triangle with hypotenuse 1, we can view \cos(\theta) as the length of the leg adjacent to \theta and \sin(\theta) as the length of the leg opposite \theta, as seen in Figure. This is simply a change in perspective achieved by focusing on the triangle as opposed to the unit circle. -

        -
      • -
      • -

        - Because a right triangle with hypotenuse of length r can be thought of as a scaled version of a right triangle with hypotenuse of length 1, we can conclude that in a right triangle with hypotenuse of length r, the leg adjacent to angle \theta has length r\cos(\theta), and the leg opposite \theta has length r\sin(\theta), as seen in Figure. Moreover, in any right triangle with angle \theta, we know that - - \cos(\theta) = \frac{\text{adj}}{\text{hyp}} \text{ and } \sin(\theta) = \frac{\text{opp}}{\text{hyp}} - . -

        -
      • -
      • -

        - In a right triangle, there are five additional characteristics: the measures of the two non-right angles and the lengths of the three sides. In general, if we know one of those two angles and one of the three sides, we can determine all of the remaining pieces. -

        -
      • -
      - -
      - - - - - -
      + + + + + + + + + + + + + +
      + Right triangles + + +
        +
      • +

        + How can we view \cos(\theta) and \sin(\theta) as side lengths in right triangles with hypotenuse 1? +

        +
      • +
      • +

        + Why can both \cos(\theta) and \sin(\theta) be thought of as ratios of certain side lengths in any right triangle? +

        +
      • +
      • +

        + What is the minimum amount of information we need about a right triangle in order to completely determine all of its sides and angles? +

        +
      • +
      +
      + + Introduction + +

      + In Section, we defined the cosine and sine functions as the functions that track the location of a point traversing the unit circle counterclockwise from (1,0). In particular, for a central angle of radian measure t that passes through the point (1,0), we define \cos(t) as the x-coordinate of the point where the other side of the angle intersects the unit circle, and \sin(t) as the y-coordinate of that same point, as pictured in Figure. +

      + +

      + By changing our perspective slightly, we can see that it is equivalent to think of the values of the sine and cosine function as representing the lengths of legs in right triangles. Specifically, given a central angleIn our work with right triangles, we'll often represent the angle by \theta and think of this angle as fixed, as opposed to our previous use of t where we frequently think of t as changing. \theta in standard position standard position (vertex at the origin, and one side on the positive x-axis), if we think of the right triangle with vertices (\cos(\theta),0), (0,0), and (\cos(\theta), \sin(\theta)), then the length of the horizontal leg is \cos(\theta) and the length of the vertical leg is \sin(\theta), as seen in Figure. +

      + + +
      + The values of \cos(t) and \sin(t) as coordinates on the unit circle. +

      The values of \cos(t) and \sin(t) as coordinates on the unit circle.

      +
      +
      +
      + The values of \cos(\theta) and \sin(\theta) as the lengths of the legs of a right triangle. +

      The values of \cos(\theta) and \sin(\theta) as the lengths of the legs of a right triangle.

      +
      +
      +
      + +

      + This right triangle perspective enables us to use the sine and cosine functions to determine missing information in certain right triangles. The field of mathematics that studies relationships among the angles and sides of triangles is called trigonometry. trigonometry In addition, it's important to recall both the Pythagorean Theorem and the Fundamental Trigonometric Identity. Pythagorean Theorem fundamental trigonometric identity The former states that in any right triangle with legs of length a and b and hypotenuse of length c, it follows a^2 + b^2 = c^2. The latter, which is a special case of the Pythagorean Theorem, says that for any angle \theta, \cos^2(\theta) + \sin^2(\theta) = 1. +

      + + + + +
      + + + The geometry of triangles + +

      + In the study of functions, linear functions are the simplest of all and form a foundation for our understanding of functions that have other shapes. In the study of geometric shapes (polygons, circles, and more), the simplest figure of all is the triangle, and understanding triangles is foundational to understanding many other geometric ideas. To begin, we list some familiar and important facts about triangles. +

      + +

      +

        +
      • +

        + Any triangle has 6 important features: 3 sides and 3 angles. +

        +
      • +
      • +

        + In any triangle in the Cartesian plane, the sum of the measures of the interior angles is \pi radians (or equivalently, 180^\circ). +

        +
      • +
      • +

        + In any triangle in the plane, knowing three of the six features of a triangle is often enough information to determine the missing three features.Formally, this idea relies on what are called congruence criteria. For instance, if we know the lengths of all three sides, then the angle measures of the triangle are uniquely determined. This is called the Side-Side-Side Criterion (SSS). You are likely familiar with SSS, as well as SAS (Side-Angle-Side), ASA, and AAS, which are the four standard criteria. +

        +
      • +
      +

      + +

      + The situation is especially nice for right triangles, because then we only have five unknown features since one of the angles is \frac{\pi}{2} radians (or 90^\circ), as demonstrated in Figure. If we know one of the two non-right angles, + then we know the other as well. Moreover, if we know any two sides, we can immediately deduce the third, because of the Pythagorean Theorem. As we saw in Preview Activity, the cosine and sine functions offer additional help in determining missing information in right triangles. Indeed, while the functions \cos(t) and \sin(t) have many important applications in modeling periodic phenomena such as oscillating masses on springs, they also find powerful application in settings involving right triangles, such as in navigation and surveying. +

      + +
      + The 5 potential unknowns in a right triangle. +

      The 5 potential unknowns in a right triangle.

      +
      +
      + +

      + Because we know the values of the cosine and sine functions from the unit circle, right triangles with hypotentuse 1 are the easiest ones in which to determine missing information. In addition, we can relate any other right triangle to a right triangle with hypotenuse 1 through the concept of similarity. Recall that two triangles are similar similar triangles provided that one is a magnification of the other. More precisely, two triangles are similar whenever there is some constant k such that every side in one triangle is k times as long as the corresponding side in the other and the corresponding angles in the two triangles are equal. An important result from geometry tells us that if two triangles are known to have all three of their corresponding angles equal, then it follows that the two triangles are similar, and therefore their corresponding sides must be proportionate to one another. +

      + + + +
      + + + Ratios of sides in right triangles + +

      + A right triangle with a hypotenuse of length 1 can be viewed as lying in standard position in the unit circle, with one vertex at the origin and one leg along the positive x-axis. If we let the angle formed by the hypotenuse and the horizontal leg be represented by \theta, then the right triangle with hypotenuse 1 has horizontal leg of length \cos(\theta) and vertical leg of length \sin(\theta). If we now consider a similar right triangle with hypotenuse of length r \ne 1, we can view that triangle as a magnification of a triangle with hypotenuse 1. These observations, combined with our work in Activity, show us that the horizontal legs of the right triangle with hypotenuse r have lengths r\cos(\theta) and r\sin(\theta), as pictured in Figure. +

      + +
      + The roles of r and \theta in a right triangle. +

      The roles of r and \theta in a right triangle.

      +
      +
      + +

      + From the similar triangles in Figure, we can make an important observation about ratios in right triangles. Because the triangles are similar, the ratios of corresponding sides must be equal, so if we consider the two hypotenuses and the two horizontal legs, we have + + \frac{r}{1} = \frac{r\cos(\theta)}{\cos(\theta)} + . + If we rearrange Equation by dividing both sides by r and multiplying both sides by \cos(\theta), we see that + + \frac{\cos(\theta)}{1} = \frac{r\cos(\theta)}{r} + . + From a geometric perspective, Equation tells us that the ratio of the length of the horizontal leg of a right triangle to the length of the hypotenuse of the triangle is always the same (regardless of r) and that the value of that ratio is \cos(\theta), where \theta is the angle adjacent to the horizontal leg. In an analogous way, the equation involving the hypotenuses and vertical legs of the similar triangles is + + \frac{r}{1} = \frac{r\sin(\theta)}{\sin(\theta)} + , + which can be rearranged to + + \frac{\sin(\theta)}{1} = \frac{r\sin(\theta)}{r} + . + Equation shows that the ratio of the length of the vertical leg of a right triangle to the length of the hypotenuse of the triangle is always the same (regardless of r) and that the value of that ratio is \sin(\theta), where \theta is the angle opposite the vertical leg. We summarize these recent observations as follows. +

      + + + Ratios in right triangles + +

      + In a right triangle where one of the non-right angles is \theta, and adj denotes the length of the leg adjacent to \theta, opp the length the side opposite \theta, and hyp the length of the hypotenuse, + + \cos(\theta) = \frac{\text{adj}}{\text{hyp}} \text{ and } \sin(\theta) = \frac{\text{opp}}{\text{hyp}} + . +

      + +

      ADD ALT TEXT TO THIS IMAGE

      + +
      +
      + + + +
      + + + Using a ratio involving sine and cosine + +

      + In Activity, we found that in many cases where we have a right triangle, knowing two additional pieces of information enables us to find the remaining three unknown quantities in the triangle. At this point in our studies, the following general principles hold. +

      + + + Missing information in right triangles +

      + In any right triangle, +

      + +

      +

        +
      1. +

        + if we know one of the non-right angles and the length of the hypotenuse, we can find both the remaining non-right angle and the lengths of the two legs; +

        +
      2. +
      3. +

        + if we know the length of two sides of the triangle, then we can find the length of the other side; +

        +
      4. +
      5. +

        + if we know the measure of one non-right angle, then we can find the measure of the remaining angle. +

        +
      6. +
      +

      +
      + +

      + In scenario (1.), all 6 features of the triangle are not only determined, but we are able to find their values. In (2.), the triangle is uniquely determined by the given information, but as in Activity parts (d) and (e), while we know the values of the sine and cosine of the angles in the triangle, we haven't yet developed a way to determine the measures of those angles. Finally, in scenario (3.), the triangle is not uniquely determined, since any magnified version of the triangle will have the same three angles as the given one, and thus we need more information to determine side length. +

      + +

      + We will revisit scenario (2) in our future work. Now, however, we want to consider a situation that is similar to (1), but where it is one leg of the triangle instead of the hypotenuse that is known. We encountered this in Activity part (f): a right triangle where one of the non-right angles is \beta = \frac{\pi}{5} and the leg opposite this angle has length 4. +

      + + + + + + +

      + Consider a right triangle in which one of the non-right angles is \beta = \frac{\pi}{5} and the leg opposite \beta has length 4. +

      + +

      + Determine (both exactly and approximately) the measures of all of the remaining sides and angles in the triangle. +

      +
      + +
      + The given right triangle. +

      The given right triangle.

      +
      +
      +
      + + +
      + +

      + From the fact that \beta = \frac{\pi}{5}, it follows that \alpha = \frac{\pi}{2} - \frac{\pi}{5} = \frac{3\pi}{10}. In addition, we know that + + \sin\left(\frac{\pi}{5}\right) = \frac{4}{h} + + and + + \cos\left(\frac{\pi}{5}\right) = \frac{x}{h} + +

      + +

      + Solving Equation for h, we see that + + h = \frac{4}{\sin\left(\frac{\pi}{5}\right)} + , which is the exact numerical value of h. Substituting this result in + Equation, we find that + + \cos\left(\frac{\pi}{5}\right) = \frac{x}{\frac{4}{\sin\left(\frac{\pi}{5}\right)}} + . + Solving this equation for the single unknown x shows that + + x = \frac{4 \cos\left(\frac{\pi}{5}\right)}{\sin\left(\frac{\pi}{5}\right)} + . + The approximate values of x and h are x \approx 5.506 and h \approx 6.805. +

      +
      +
      + +

      + Example demonstrates that a ratio of values of the sine and cosine function can be needed in order to determine the value of one of the missing sides of a right triangle, and also that we may need to work with two unknown quantities simultaneously in order to determine both of their values. +

      + + + +
      + + + Summary + +
        +
      • +

        + In a right triangle with hypotenuse 1, we can view \cos(\theta) as the length of the leg adjacent to \theta and \sin(\theta) as the length of the leg opposite \theta, as seen in Figure. This is simply a change in perspective achieved by focusing on the triangle as opposed to the unit circle. +

        +
      • +
      • +

        + Because a right triangle with hypotenuse of length r can be thought of as a scaled version of a right triangle with hypotenuse of length 1, we can conclude that in a right triangle with hypotenuse of length r, the leg adjacent to angle \theta has length r\cos(\theta), and the leg opposite \theta has length r\sin(\theta), as seen in Figure. Moreover, in any right triangle with angle \theta, we know that + + \cos(\theta) = \frac{\text{adj}}{\text{hyp}} \text{ and } \sin(\theta) = \frac{\text{opp}}{\text{hyp}} + . +

        +
      • +
      • +

        + In a right triangle, there are five additional characteristics: the measures of the two non-right angles and the lengths of the three sides. In general, if we know one of those two angles and one of the three sides, we can determine all of the remaining pieces. +

        +
      • +
      + +
      + + + + + +
      diff --git a/source/sec-trig-tangent-wb.xml b/source/sec-trig-tangent-wb.xml index 06fc0c2b..33851bf6 100755 --- a/source/sec-trig-tangent-wb.xml +++ b/source/sec-trig-tangent-wb.xml @@ -1,22 +1,22 @@ - - - - - - - - - - - - - -
      - The Tangent Function - - - - - - -
      + + + + + + + + + + + + + +
      + The Tangent Function + + + + + + +
      diff --git a/source/sec-trig-tangent.xml b/source/sec-trig-tangent.xml index 26204162..33ba27af 100755 --- a/source/sec-trig-tangent.xml +++ b/source/sec-trig-tangent.xml @@ -1,372 +1,373 @@ - - - - - - - - - - - - - -
      - The Tangent Function - - -
        -
      • -

        - How is the tangent function defined in terms of the sine and cosine functions? -

        -
      • -
      • -

        - Why is the graph of the tangent function so different from the graphs of the sine and cosine functions? -

        -
      • -
      • -

        - What are important applications of the tangent function? -

        -
      • -
      -
      - - Introduction - - -

      - In Activity, we determined the distance between two points A and B on opposite sides of a river by knowing a length along one shore of the river and the angle formed between a point downstream and the point on the opposite shore, as pictured in Figure. By first using the cosine of the angle, we determined the value of z and from there were able to use the sine of the angle to find w, the river's width, which turns out to be - - w = 50 \cdot \frac{\sin(56.4)}{\cos(56.4)} - . -

      - -
      - Finding the width of the river. -

      Finding the width of the river.

      -
      -
      - -
      - -

      - It turns out that we regularly need to evaluate the ratio of the sine and cosine functions at the same angle, so it is convenient to define a new function to be their ratio. -

      - - - The tangent function - tangent function - -

      - For any real number t for which \cos(t) \ne 0, we define the tangent of t, denoted \tan(t), by - - \tan(t) = \frac{\sin(t)}{\cos(t)} - . -

      -
      -
      - - - -
      - - - Two perspectives on the tangent function - - -
      - An angle t in standard position in the unit circle that intercepts an arc from (1,0) to (a,b). -

      An angle t in standard position in the unit circle that intercepts an arc from (1,0) to (a,b).

      -
      -
      -
      - A right triangle with legs adjacent and opposite angle \theta. -

      A right triangle with legs adjacent and opposite angle \theta.

      -
      -
      -
      - -

      - Because the tangent function is defined in terms of the two fundamental circular functions by the rule \tan(t) = \frac{\sin(t)}{\cos(t)}, we can use our understanding of the sine and cosine functions to make sense of the tangent function. In particular, we can think of the tangent of an angle from two different perspectives: as an angle in standard position in the unit circle, or as an angle in a right triangle. -

      - -

      - From the viewpoint of Figure, as the point corresponding to angle t traverses the circle and generates the point (a,b), we know \cos(t) = a and \sin(t) = b, and therefore the tangent function tracks the ratio of these two quantities, and is given by - - \tan(t) = \frac{\sin(t)}{\cos(t)} = \frac{b}{a} - . - From the perspective of any right triangle (not necessarily in the unit circle) with hypotenuse hyp and legs - adj and opp that are respectively adjacent and opposite the known angle \theta, as seen in Figure, we know that \sin(\theta) = \frac{\text{opp}}{\text{hyp}} and \cos(\theta) = \frac{\text{adj}}{\text{hyp}}. Substituting these expressions for \sin(\theta) and \cos(\theta) in the rule for the tangent function, we see that - - \tan(\theta) = \frac{\sin(\theta)}{\cos(\theta)} = \frac{\frac{\text{opp}}{\text{hyp}}}{\frac{\text{adj}}{\text{hyp}}} = \frac{\text{opp}}{\text{adj}} - . -

      - -

      - We typically use the first perspective of tracking the ratio of the y-coordinate to the x-coordinate of a point traversing the unit circle in order to think of the overall behavior and graph of the tangent function, and use the second perspective in a right triangle whenever we are working to determine missing values in a triangle. -

      -
      - - - Properties of the tangent function - -

      - Because the tangent function is defined in terms of the sine and cosine functions, its values and behavior are completely determined by those two functions. To begin, we know the value of \tan(t) for every special angle t on the unit circle that we identified for the sine and cosine functions. For instance, we know that - - \tan \left( \frac{\pi}{6} \right) = \frac{ \sin \left( \frac{\pi}{6} \right) }{ \cos \left( \frac{\pi}{6} \right) } = \frac{ \frac{1}{2} }{ \frac{\sqrt{3}}{2} } = \frac{1}{\sqrt{3}} - . - Executing similar computations for every familiar special angle on the unit circle, we find the results shown in Table and Table. We also note that anywhere \cos(t) = 0, the value of \tan(t) is undefined. We record such instances in the table by writing u. -

      - - - Values of the sine, cosine, and tangent functions at special points on the unit circle. - - - t - 0 - \frac{\pi}{6} - \frac{\pi}{4} - \frac{\pi}{3} - \frac{\pi}{2} - \frac{2\pi}{3} - \frac{3\pi}{4} - \frac{5\pi}{6} - \pi - - - \sin(t) - 0 - \frac{1}{2} - \frac{\sqrt{2}}{2} - \frac{\sqrt{3}}{2} - 1 - \frac{\sqrt{3}}{2} - \frac{\sqrt{2}}{2} - \frac{1}{2} - 0 - - - \cos(t) - 1 - \frac{\sqrt{3}}{2} - \frac{\sqrt{2}}{2} - \frac{1}{2} - 0 - -\frac{1}{2} - -\frac{\sqrt{2}}{2} - -\frac{\sqrt{3}}{2} - -1 - - - \tan(t) - 0 - \frac{1}{\sqrt{3}} - 1 - \sqrt{3} - u - -\sqrt{3} - -1 - -\frac{1}{\sqrt{3}} - 0 - - -
      - - - Additional values of the sine, cosine, and tangent functions at special points on the unit circle. - - - t - \frac{7\pi}{6} - \frac{5\pi}{4} - \frac{4\pi}{3} - \frac{3\pi}{2} - \frac{5\pi}{3} - \frac{7\pi}{4} - \frac{11\pi}{6} - 2\pi - - - \sin(t) - -\frac{1}{2} - -\frac{\sqrt{2}}{2} - -\frac{\sqrt{3}}{2} - -1 - -\frac{\sqrt{3}}{2} - -\frac{\sqrt{2}}{2} - -\frac{1}{2} - 0 - - - \cos(t) - -\frac{\sqrt{3}}{2} - -\frac{\sqrt{2}}{2} - -\frac{1}{2} - 0 - \frac{1}{2} - \frac{\sqrt{2}}{2} - \frac{\sqrt{3}}{2} - 0 - - - \tan(t) - \frac{1}{\sqrt{3}} - 1 - \sqrt{3} - u - -\sqrt{3} - -1 - -\frac{1}{\sqrt{3}} - 0 - - -
      - -

      - Table and Table helps us identify trends in the tangent function. For instance, we observe that the sign of \tan(t) is positive in Quadrant I, negative in Quadrant II, positive in Quadrant III, and negative in Quadrant IV. This holds because the sine and cosine functions have the same sign in the first and third quadrants, and opposite signs in the other two quadrants. -

      - -

      - In addition, we observe that as t-values in the first quadrant get closer to \frac{\pi}{2}, \sin(t) gets closer to 1, while \cos(t) gets closer to 0 (while being always positive). Noting that \frac{\pi}{2} \approx 1.57, we observe that - - \tan(1.47) = \frac{\sin(1.47)}{\cos(1.47)} \approx \frac{0.995}{0.101} = 9.887 - - and - - \tan(1.56) = \frac{\sin(1.56)}{\cos(1.56)} \approx \frac{0.9994}{0.0108} = 92.6205 - . - Because the ratio of numbers closer and closer to 1 divided by numbers closer and closer to 0 (but positive) increases without bound, this means that \tan(t) increases without bound as t approaches \frac{\pi}{2} from the left side. Once t is slightly greater than \frac{\pi}{2} in Quadrant II, the value of \sin(t) stays close to 1, but now the value of \cos(t) is negative (and close to zero). For instance, \cos(1.58) \approx -0.0092. This makes the value of \tan(t) decrease without bound (negative and getting further away from 0) for t approaching \frac{\pi}{2} from the right side, and results in h(t) = \tan(t) having a vertical asymptote at t = \frac{\pi}{2}. The periodicity and sign behaviors of \sin(t) and \cos(t) mean this asymptotic behavior of the tangent function will repeat. -

      - -

      - Plotting the data in the table along with the expected asymptotes and connecting the points intuitively, we see the graph of the tangent function in Figure. -

      - -
      - A plot of the tangent function together with special points that come from the unit circle. -

      A plot of the tangent function together with special points that come from the unit circle.

      -
      -
      - -

      - We see from Table and Table as well as from Figure that the tangent function has period P = \pi and that the function is increasing on any interval on which it is defined. We summarize our recent work as follows. -

      - - - Properties of the tangent function -

      - For the function h(t) = \tan(t), -

        -
      • -

        - its domain is the set of all real numbers except t = \frac{\pi}{2} \pm k\pi where k is any whole number; -

        -
      • -
      • -

        - its range is the set of all real numbers; -

        -
      • -
      • -

        - its period is P = \pi; -

        -
      • -
      • -

        - is increasing on any interval on which the function is defined at every point in the interval. -

        -
      • -
      -

      -
      - -

      - While the tangent function is an interesting mathematical function for its own sake, its most important applications arise in the setting of right triangles, and for the remainder of this section we will focus on that perspective. -

      - -
      - - - Using the tangent function in right triangles -

      - The tangent function offers us an additional choice when working in right triangles with limited information. In the setting where we have a right triangle with one additional known angle, if we know the length of the hypotenuse, we can use either the sine or cosine of the angle to help us easily find the remaining side lengths. But in the setting where we know only the length of one leg, the tangent function now allows us to determine the value of the remaining leg in a similarly straightforward way, and from there the hypotenuse. -

      - - - -

      - Use the tangent function to determine the width, w, of the river in Figure. (Note that here we are revisiting the problem in Activity, which we previously solved without using the tangent function.) What other information can we now easily determine? -

      - -
      - A right triangle with one angle and one leg known. -

      A right triangle with one angle and one leg known.

      -
      -
      -
      - -

      - Using the perspective that \tan(\theta) = \frac{\text{opp}}{\text{adj}} in a right triangle, in this context we have - - \tan(56.4^\circ) = \frac{w}{50} - - and thus w = 50\tan(56.4) is the exact width of the river. Using a computational device, we find that w \approx 75.256. -

      -

      - Once we know the river's width, we can use the Pythagorean theorem or the sine function to determine the distance from P to A, at which point all 6 parts of the triangle are known. -

      -
      -
      - -

      - The tangent function finds a wide range of applications in finding missing information in right triangles where information about one or more legs of the triangle is known. -

      - - - - - - - -
      - - - Summary -

      -

        -
      • -

        - The tangent function is defined defined to be the ratio of the sine and cosine functions according to the rule - - \tan(t) = \frac{\sin(t)}{\cos(t)} - - for all values of t for which \cos(t) \ne 0. -

        -
      • -
      • -

        - The graph of the tangent function differs substantially from the graphs of the sine and cosine functions, primarily because near values where \cos(t) = 0, the ratio of \frac{\sin(t)}{\cos(t)} increases or decreases without bound, producing vertical asymptotes. In addition, while the period of the sine and cosine functions is P = 2\pi, the period of the tangent function is P = \pi due to how the sine and cosine functions repeat the same values (with different signs) as a point traverses the unit circle. -

        -
      • -
      • -

        - The tangent function finds some of its most important applications in the setting of right triangles where one leg of the triangle is known and one of the non-right angles is known. Computing the tangent of the known angle, say \alpha, and using the fact that - - \tan(\alpha) = \frac{\text{opp}}{\text{adj}} - - we can then find the missing leg's length in terms of the other and the tangent of the angle. -

        -
      • -
      -

      -
      - - - - - -
      + + + + + + + + + + + + + +
      + The Tangent Function + + +
        +
      • +

        + How is the tangent function defined in terms of the sine and cosine functions? +

        +
      • +
      • +

        + Why is the graph of the tangent function so different from the graphs of the sine and cosine functions? +

        +
      • +
      • +

        + What are important applications of the tangent function? +

        +
      • +
      +
      + + Introduction + + +

      + In Activity, we determined the distance between two points A and B on opposite sides of a river by knowing a length along one shore of the river and the angle formed between a point downstream and the point on the opposite shore, as pictured in Figure. By first using the cosine of the angle, we determined the value of z and from there were able to use the sine of the angle to find w, the river's width, which turns out to be + + w = 50 \cdot \frac{\sin(56.4)}{\cos(56.4)} + . +

      + +
      + Finding the width of the river. +

      Finding the width of the river.

      +
      +
      + +
      + +

      + It turns out that we regularly need to evaluate the ratio of the sine and cosine functions at the same angle, so it is convenient to define a new function to be their ratio. +

      + + + The tangent function + tangent function + +

      + For any real number t for which \cos(t) \ne 0, we define the tangent of t, denoted \tan(t), by + + \tan(t) = \frac{\sin(t)}{\cos(t)} + . +

      +
      +
      + + + + +
      + + + Two perspectives on the tangent function + + +
      + An angle t in standard position in the unit circle that intercepts an arc from (1,0) to (a,b). +

      An angle t in standard position in the unit circle that intercepts an arc from (1,0) to (a,b).

      +
      +
      +
      + A right triangle with legs adjacent and opposite angle \theta. +

      A right triangle with legs adjacent and opposite angle \theta.

      +
      +
      +
      + +

      + Because the tangent function is defined in terms of the two fundamental circular functions by the rule \tan(t) = \frac{\sin(t)}{\cos(t)}, we can use our understanding of the sine and cosine functions to make sense of the tangent function. In particular, we can think of the tangent of an angle from two different perspectives: as an angle in standard position in the unit circle, or as an angle in a right triangle. +

      + +

      + From the viewpoint of Figure, as the point corresponding to angle t traverses the circle and generates the point (a,b), we know \cos(t) = a and \sin(t) = b, and therefore the tangent function tracks the ratio of these two quantities, and is given by + + \tan(t) = \frac{\sin(t)}{\cos(t)} = \frac{b}{a} + . + From the perspective of any right triangle (not necessarily in the unit circle) with hypotenuse hyp and legs + adj and opp that are respectively adjacent and opposite the known angle \theta, as seen in Figure, we know that \sin(\theta) = \frac{\text{opp}}{\text{hyp}} and \cos(\theta) = \frac{\text{adj}}{\text{hyp}}. Substituting these expressions for \sin(\theta) and \cos(\theta) in the rule for the tangent function, we see that + + \tan(\theta) = \frac{\sin(\theta)}{\cos(\theta)} = \frac{\frac{\text{opp}}{\text{hyp}}}{\frac{\text{adj}}{\text{hyp}}} = \frac{\text{opp}}{\text{adj}} + . +

      + +

      + We typically use the first perspective of tracking the ratio of the y-coordinate to the x-coordinate of a point traversing the unit circle in order to think of the overall behavior and graph of the tangent function, and use the second perspective in a right triangle whenever we are working to determine missing values in a triangle. +

      +
      + + + Properties of the tangent function + +

      + Because the tangent function is defined in terms of the sine and cosine functions, its values and behavior are completely determined by those two functions. To begin, we know the value of \tan(t) for every special angle t on the unit circle that we identified for the sine and cosine functions. For instance, we know that + + \tan \left( \frac{\pi}{6} \right) = \frac{ \sin \left( \frac{\pi}{6} \right) }{ \cos \left( \frac{\pi}{6} \right) } = \frac{ \frac{1}{2} }{ \frac{\sqrt{3}}{2} } = \frac{1}{\sqrt{3}} + . + Executing similar computations for every familiar special angle on the unit circle, we find the results shown in Table and Table. We also note that anywhere \cos(t) = 0, the value of \tan(t) is undefined. We record such instances in the table by writing u. +

      + + + Values of the sine, cosine, and tangent functions at special points on the unit circle. + + + t + 0 + \frac{\pi}{6} + \frac{\pi}{4} + \frac{\pi}{3} + \frac{\pi}{2} + \frac{2\pi}{3} + \frac{3\pi}{4} + \frac{5\pi}{6} + \pi + + + \sin(t) + 0 + \frac{1}{2} + \frac{\sqrt{2}}{2} + \frac{\sqrt{3}}{2} + 1 + \frac{\sqrt{3}}{2} + \frac{\sqrt{2}}{2} + \frac{1}{2} + 0 + + + \cos(t) + 1 + \frac{\sqrt{3}}{2} + \frac{\sqrt{2}}{2} + \frac{1}{2} + 0 + -\frac{1}{2} + -\frac{\sqrt{2}}{2} + -\frac{\sqrt{3}}{2} + -1 + + + \tan(t) + 0 + \frac{1}{\sqrt{3}} + 1 + \sqrt{3} + u + -\sqrt{3} + -1 + -\frac{1}{\sqrt{3}} + 0 + + +
      + + + Additional values of the sine, cosine, and tangent functions at special points on the unit circle. + + + t + \frac{7\pi}{6} + \frac{5\pi}{4} + \frac{4\pi}{3} + \frac{3\pi}{2} + \frac{5\pi}{3} + \frac{7\pi}{4} + \frac{11\pi}{6} + 2\pi + + + \sin(t) + -\frac{1}{2} + -\frac{\sqrt{2}}{2} + -\frac{\sqrt{3}}{2} + -1 + -\frac{\sqrt{3}}{2} + -\frac{\sqrt{2}}{2} + -\frac{1}{2} + 0 + + + \cos(t) + -\frac{\sqrt{3}}{2} + -\frac{\sqrt{2}}{2} + -\frac{1}{2} + 0 + \frac{1}{2} + \frac{\sqrt{2}}{2} + \frac{\sqrt{3}}{2} + 0 + + + \tan(t) + \frac{1}{\sqrt{3}} + 1 + \sqrt{3} + u + -\sqrt{3} + -1 + -\frac{1}{\sqrt{3}} + 0 + + +
      + +

      + Table and Table helps us identify trends in the tangent function. For instance, we observe that the sign of \tan(t) is positive in Quadrant I, negative in Quadrant II, positive in Quadrant III, and negative in Quadrant IV. This holds because the sine and cosine functions have the same sign in the first and third quadrants, and opposite signs in the other two quadrants. +

      + +

      + In addition, we observe that as t-values in the first quadrant get closer to \frac{\pi}{2}, \sin(t) gets closer to 1, while \cos(t) gets closer to 0 (while being always positive). Noting that \frac{\pi}{2} \approx 1.57, we observe that + + \tan(1.47) = \frac{\sin(1.47)}{\cos(1.47)} \approx \frac{0.995}{0.101} = 9.887 + + and + + \tan(1.56) = \frac{\sin(1.56)}{\cos(1.56)} \approx \frac{0.9994}{0.0108} = 92.6205 + . + Because the ratio of numbers closer and closer to 1 divided by numbers closer and closer to 0 (but positive) increases without bound, this means that \tan(t) increases without bound as t approaches \frac{\pi}{2} from the left side. Once t is slightly greater than \frac{\pi}{2} in Quadrant II, the value of \sin(t) stays close to 1, but now the value of \cos(t) is negative (and close to zero). For instance, \cos(1.58) \approx -0.0092. This makes the value of \tan(t) decrease without bound (negative and getting further away from 0) for t approaching \frac{\pi}{2} from the right side, and results in h(t) = \tan(t) having a vertical asymptote at t = \frac{\pi}{2}. The periodicity and sign behaviors of \sin(t) and \cos(t) mean this asymptotic behavior of the tangent function will repeat. +

      + +

      + Plotting the data in the table along with the expected asymptotes and connecting the points intuitively, we see the graph of the tangent function in Figure. +

      + +
      + A plot of the tangent function together with special points that come from the unit circle. +

      A plot of the tangent function together with special points that come from the unit circle.

      +
      +
      + +

      + We see from Table and Table as well as from Figure that the tangent function has period P = \pi and that the function is increasing on any interval on which it is defined. We summarize our recent work as follows. +

      + + + Properties of the tangent function +

      + For the function h(t) = \tan(t), +

        +
      • +

        + its domain is the set of all real numbers except t = \frac{\pi}{2} \pm k\pi where k is any whole number; +

        +
      • +
      • +

        + its range is the set of all real numbers; +

        +
      • +
      • +

        + its period is P = \pi; +

        +
      • +
      • +

        + is increasing on any interval on which the function is defined at every point in the interval. +

        +
      • +
      +

      +
      + +

      + While the tangent function is an interesting mathematical function for its own sake, its most important applications arise in the setting of right triangles, and for the remainder of this section we will focus on that perspective. +

      + +
      + + + Using the tangent function in right triangles +

      + The tangent function offers us an additional choice when working in right triangles with limited information. In the setting where we have a right triangle with one additional known angle, if we know the length of the hypotenuse, we can use either the sine or cosine of the angle to help us easily find the remaining side lengths. But in the setting where we know only the length of one leg, the tangent function now allows us to determine the value of the remaining leg in a similarly straightforward way, and from there the hypotenuse. +

      + + + +

      + Use the tangent function to determine the width, w, of the river in Figure. (Note that here we are revisiting the problem in Activity, which we previously solved without using the tangent function.) What other information can we now easily determine? +

      + +
      + A right triangle with one angle and one leg known. +

      A right triangle with one angle and one leg known.

      +
      +
      +
      + +

      + Using the perspective that \tan(\theta) = \frac{\text{opp}}{\text{adj}} in a right triangle, in this context we have + + \tan(56.4^\circ) = \frac{w}{50} + + and thus w = 50\tan(56.4) is the exact width of the river. Using a computational device, we find that w \approx 75.256. +

      +

      + Once we know the river's width, we can use the Pythagorean theorem or the sine function to determine the distance from P to A, at which point all 6 parts of the triangle are known. +

      +
      +
      + +

      + The tangent function finds a wide range of applications in finding missing information in right triangles where information about one or more legs of the triangle is known. +

      + + + + + + + +
      + + + Summary +

      +

        +
      • +

        + The tangent function is defined defined to be the ratio of the sine and cosine functions according to the rule + + \tan(t) = \frac{\sin(t)}{\cos(t)} + + for all values of t for which \cos(t) \ne 0. +

        +
      • +
      • +

        + The graph of the tangent function differs substantially from the graphs of the sine and cosine functions, primarily because near values where \cos(t) = 0, the ratio of \frac{\sin(t)}{\cos(t)} increases or decreases without bound, producing vertical asymptotes. In addition, while the period of the sine and cosine functions is P = 2\pi, the period of the tangent function is P = \pi due to how the sine and cosine functions repeat the same values (with different signs) as a point traverses the unit circle. +

        +
      • +
      • +

        + The tangent function finds some of its most important applications in the setting of right triangles where one leg of the triangle is known and one of the non-right angles is known. Computing the tangent of the known angle, say \alpha, and using the fact that + + \tan(\alpha) = \frac{\text{opp}}{\text{adj}} + + we can then find the missing leg's length in terms of the other and the tangent of the angle. +

        +
      • +
      +

      +
      + + + + + +
      diff --git a/source/titlepage.xml b/source/titlepage.xml index 236f7b2d..a0cfd0e3 100644 --- a/source/titlepage.xml +++ b/source/titlepage.xml @@ -1,16 +1,16 @@ - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + diff --git a/xsl/activity-task.xsl b/xsl/activity-task.xsl index 4c2b1541..de2028fb 100644 --- a/xsl/activity-task.xsl +++ b/xsl/activity-task.xsl @@ -1,107 +1,107 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ws- - - - - - - - - - - - - - - - - - - - - - - - 0 - - - - - - - - - - - - - - - - - - - -task- - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ws- + + + + + + + + + + + + + + + + + + + + + + + 0 + + + + + + + + + + + + + + + + + + + -task- + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/xsl/apc-activity-workbook.xsl b/xsl/apc-activity-workbook.xsl index 1129812c..8eab3da3 100644 --- a/xsl/apc-activity-workbook.xsl +++ b/xsl/apc-activity-workbook.xsl @@ -1,213 +1,213 @@ - - - - - - - - - - - - - - - - - %entities; -]> - - - - - - - - - - - - - - - enhanced,frame hidden,interior hidden, sharp corners, - boxrule=0pt,borderline west={3pt}{0pt}{ActiveBlue}, - runintitlestyle, blockspacingstyle, after title={.\space}, - colback=white, - coltitle=black,after={\cleardoublepage} - - - - - - - - - - - - - - %% Customized to load Palatino fonts - \usepackage[T1]{fontenc} - \renewcommand{\rmdefault}{zpltlf} %Roman font for use in math mode - \usepackage[scaled=.85]{beramono}% used only by \mathtt - \usepackage[type1]{cabin}%used only by \mathsf - \usepackage{amsmath,amssymb}%load before newpxmath - \usepackage[varg,cmintegrals,bigdelims,varbb]{newpxmath} - \usepackage[scr=rsfso]{mathalfa} - \usepackage{bm} %load after all math to give access to bold math - % Now load the otf text fonts using fontspec--wont affect math - \usepackage[no-math]{fontspec} - \setmainfont{TeXGyrePagellaX} - \defaultfontfeatures{Ligatures=TeX,Scale=1,Mapping=tex-text} - \linespread{1.02} - - - - %% Used to get WeBWorK logo into margin next to WW exercises - \usepackage{marginnote} - - %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - % CC icon at bottom of first page of each chapter - %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - \newpagestyle{chapopen}{ - \sethead[][][] % even - {}{}{} % odd - \setfoot[\includegraphics[height=1pc]{external/images/CC-BY-SA-license.pdf}][][] -{}{}{\includegraphics[height=1pc]{external/images/CC-BY-SA-license.pdf}}} - \assignpagestyle{\chapter}{chapopen} - - %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - % Modified from Mitch Keller's chapter handling - %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - %%% This is from common - \definecolor{ActiveBlue}{cmyk}{1, 0.5, 0, 0.35} - \colorlet{chaptercolor}{ActiveBlue} - %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - % Basic paragraph parameters - %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - \setlength{\parindent}{0mm} - \setlength{\parskip}{0.5pc} - %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - % In print, trying to reduce color use - %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - \hypersetup{colorlinks=true,linkcolor=black,citecolor=black, - filecolor=black,urlcolor=black} - - - - - {\sethead[\textsl{\ifthechapter{\chaptertitlename{} - \thechapter }{} }][][] - {}{}{\textsl{\ifthesection{\thesection{} \sectiontitle} - {} }} - \setfoot[\thepage][][] - {}{}{\thepage}} - - - - - - \titleformat{\chapter}[display] - {\raggedleft\normalfont\color{chaptercolor}\Large}{ - \MakeUppercase{\divisionnameptx}\space - \rlap{\enskip\resizebox{!}{0.95cm}{\thechapter} - }}{10pt}{\normalfont\Huge\itshape#1} - [{\Large\authorsptx}] - \titleformat{name=\chapter,numberless}[display] - {\raggedleft\normalfont\color{chaptercolor}\Huge\itshape}{}{0pt}{#1} - [{\Large\authorsptx}] - \titlespacing*{\chapter}{0pt}{0pt}{0pt} - - - - \titleformat{\section}[block] - {\normalfont\Large\bfseries}{\thesection\space\titleptx}{1em}{} - [{\large\authorsptx}] - \titleformat{name=\section,numberless}[block] - {\normalfont\Large\bfseries}{}{0pt}{#1} - [{\large\authorsptx}] - \titlespacing*{\section}{0pt}{3.5ex plus 1ex minus .2ex}{2.3ex plus .2ex} - \titleformat{\subsection}[block] - {\normalfont\large\bfseries}{\thesubsection\space\titleptx}{1em}{} - [{\normalsize\authorsptx}] - \titleformat{name=\subsection,numberless}[block] - {\normalfont\large\bfseries}{}{0pt}{#1} - [{\normalsize\authorsptx}] - \titlespacing*{\subsection}{0pt}{3.25ex plus 1ex minus .2ex}{1.5ex plus .2ex} - \titleformat{\subsubsection}[block] - {\normalfont\normalsize\bfseries}{\thesubsubsection\space\titleptx}{1em}{} - [{\small\authorsptx}] - \titleformat{name=\subsubsection,numberless}[block] - {\normalfont\normalsize\bfseries}{}{0pt}{#1} - [{\normalsize\authorsptx}] - \titlespacing*{\subsubsection}{0pt}{3.25ex plus 1ex minus .2ex}{1.5ex plus .2ex} - - - - - bwminimalstyle, runintitlestyle, blockspacingstyle, after title={\space}, - - - - bwminimalstyle, runintitlestyle, blockspacingstyle, after title={\space}, - - - - - - - enhanced,frame hidden,interior hidden,sharp corners, - blockspacingstyle,boxrule=0pt,left=0pt,right=0pt, - fonttitle=\large\bfseries, - borderline north={0.1ex}{0pt}{black}, - toptitle=0.5ex,top=2ex, bottom=0.5ex, - borderline south={0.1ex}{0pt}{black},coltitle=black, - - - - - - - skin=enhanced, arc=2ex, - colback=ActiveBlue!5,colframe=ActiveBlue!75!black, - colbacktitle=ActiveBlue!20, coltitle=black, - boxed title style={sharp corners, frame hidden}, - fonttitle=\bfseries, attach boxed title to top - left={xshift=4mm,yshift=-3mm}, top=3mm, - - - - - - - - - - (\nolinkurl{ - - - - - - }) - - - - - - \footnotetext[ - - ] - { - - - }% - - - + + + + + + + + + + + + + + + + + %entities; +]> + + + + + + + + + + + + + + + enhanced,frame hidden,interior hidden, sharp corners, + boxrule=0pt,borderline west={3pt}{0pt}{ActiveBlue}, + runintitlestyle, blockspacingstyle, after title={.\space}, + colback=white, + coltitle=black,after={\cleardoublepage} + + + + + + + + + + + + + + %% Customized to load Palatino fonts + \usepackage[T1]{fontenc} + \renewcommand{\rmdefault}{zpltlf} %Roman font for use in math mode + \usepackage[scaled=.85]{beramono}% used only by \mathtt + \usepackage[type1]{cabin}%used only by \mathsf + \usepackage{amsmath,amssymb}%load before newpxmath + \usepackage[varg,cmintegrals,bigdelims,varbb]{newpxmath} + \usepackage[scr=rsfso]{mathalfa} + \usepackage{bm} %load after all math to give access to bold math + % Now load the otf text fonts using fontspec--wont affect math + \usepackage[no-math]{fontspec} + \setmainfont{TeXGyrePagellaX} + \defaultfontfeatures{Ligatures=TeX,Scale=1,Mapping=tex-text} + \linespread{1.02} + + + + %% Used to get WeBWorK logo into margin next to WW exercises + \usepackage{marginnote} + + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + % CC icon at bottom of first page of each chapter + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + \newpagestyle{chapopen}{ + \sethead[][][] % even + {}{}{} % odd + \setfoot[\includegraphics[height=1pc]{external/images/CC-BY-SA-license.pdf}][][] +{}{}{\includegraphics[height=1pc]{external/images/CC-BY-SA-license.pdf}}} + \assignpagestyle{\chapter}{chapopen} + + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + % Modified from Mitch Keller's chapter handling + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + %%% This is from common + \definecolor{ActiveBlue}{cmyk}{1, 0.5, 0, 0.35} + \colorlet{chaptercolor}{ActiveBlue} + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + % Basic paragraph parameters + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + \setlength{\parindent}{0mm} + \setlength{\parskip}{0.5pc} + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + % In print, trying to reduce color use + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + \hypersetup{colorlinks=true,linkcolor=black,citecolor=black, + filecolor=black,urlcolor=black} + + + + + {\sethead[\textsl{\ifthechapter{\chaptertitlename{} + \thechapter }{} }][][] + {}{}{\textsl{\ifthesection{\thesection{} \sectiontitle} + {} }} + \setfoot[\thepage][][] + {}{}{\thepage}} + + + + + + \titleformat{\chapter}[display] + {\raggedleft\normalfont\color{chaptercolor}\Large}{ + \MakeUppercase{\divisionnameptx}\space + \rlap{\enskip\resizebox{!}{0.95cm}{\thechapter} + }}{10pt}{\normalfont\Huge\itshape#1} + [{\Large\authorsptx}] + \titleformat{name=\chapter,numberless}[display] + {\raggedleft\normalfont\color{chaptercolor}\Huge\itshape}{}{0pt}{#1} + [{\Large\authorsptx}] + \titlespacing*{\chapter}{0pt}{0pt}{0pt} + + + + \titleformat{\section}[block] + {\normalfont\Large\bfseries}{\thesection\space\titleptx}{1em}{} + [{\large\authorsptx}] + \titleformat{name=\section,numberless}[block] + {\normalfont\Large\bfseries}{}{0pt}{#1} + [{\large\authorsptx}] + \titlespacing*{\section}{0pt}{3.5ex plus 1ex minus .2ex}{2.3ex plus .2ex} + \titleformat{\subsection}[block] + {\normalfont\large\bfseries}{\thesubsection\space\titleptx}{1em}{} + [{\normalsize\authorsptx}] + \titleformat{name=\subsection,numberless}[block] + {\normalfont\large\bfseries}{}{0pt}{#1} + [{\normalsize\authorsptx}] + \titlespacing*{\subsection}{0pt}{3.25ex plus 1ex minus .2ex}{1.5ex plus .2ex} + \titleformat{\subsubsection}[block] + {\normalfont\normalsize\bfseries}{\thesubsubsection\space\titleptx}{1em}{} + [{\small\authorsptx}] + \titleformat{name=\subsubsection,numberless}[block] + {\normalfont\normalsize\bfseries}{}{0pt}{#1} + [{\normalsize\authorsptx}] + \titlespacing*{\subsubsection}{0pt}{3.25ex plus 1ex minus .2ex}{1.5ex plus .2ex} + + + + + bwminimalstyle, runintitlestyle, blockspacingstyle, after title={\space}, + + + + bwminimalstyle, runintitlestyle, blockspacingstyle, after title={\space}, + + + + + + + enhanced,frame hidden,interior hidden,sharp corners, + blockspacingstyle,boxrule=0pt,left=0pt,right=0pt, + fonttitle=\large\bfseries, + borderline north={0.1ex}{0pt}{black}, + toptitle=0.5ex,top=2ex, bottom=0.5ex, + borderline south={0.1ex}{0pt}{black},coltitle=black, + + + + + + + skin=enhanced, arc=2ex, + colback=ActiveBlue!5,colframe=ActiveBlue!75!black, + colbacktitle=ActiveBlue!20, coltitle=black, + boxed title style={sharp corners, frame hidden}, + fonttitle=\bfseries, attach boxed title to top + left={xshift=4mm,yshift=-3mm}, top=3mm, + + + + + + + + + + (\nolinkurl{ + + + + + + }) + + + + + + \footnotetext[ + + ] + { + + + }% + + + \ No newline at end of file diff --git a/xsl/apc-common.xsl b/xsl/apc-common.xsl index da6c9177..585b0e8a 100644 --- a/xsl/apc-common.xsl +++ b/xsl/apc-common.xsl @@ -1,162 +1,162 @@ - - - - - - - - - - - - - - - - - - %entities; -]> - - - - - - - - %% Customized to load Palatino fonts - \usepackage[T1]{fontenc} - \renewcommand{\rmdefault}{zpltlf} %Roman font for use in math mode - \usepackage[scaled=.85]{beramono}% used only by \mathtt - \usepackage[type1]{cabin}%used only by \mathsf - \usepackage[varg,cmintegrals,bigdelims,varbb]{newpxmath} - \usepackage[scr=rsfso]{mathalfa} - \usepackage{bm} %load after all math to give access to bold math - % Now load the otf text fonts using fontspec--wont affect math - \usepackage[no-math]{fontspec} - \setmainfont{TeXGyrePagellaX} - \defaultfontfeatures{Ligatures=TeX,Scale=1,Mapping=tex-text} - \linespread{1.02} - % Deal with a conflict with amssymb and our fonts - \let\Bbbk\relax - - - - %% Used to get WeBWorK logo into margin next to WW exercises - \usepackage{marginnote} - - %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - % CC icon at bottom of first page of each chapter - %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - \newpagestyle{chapopen}{ - \sethead[][][] % even - {}{}{} % odd - \setfoot[\includegraphics[height=1pc]{external/images/CC-BY-SA-license.pdf}][][] -{}{}{\includegraphics[height=1pc]{external/images/CC-BY-SA-license.pdf}}} - \assignpagestyle{\chapter}{chapopen} - - %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - % Modified from Mitch Keller's chapter handling - %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - %%% This is from common - \definecolor{ActiveBlue}{cmyk}{1, 0.5, 0, 0.35} - \colorlet{chaptercolor}{ActiveBlue} - %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - % Basic paragraph parameters - %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - \setlength{\parindent}{0mm} - \setlength{\parskip}{0.5pc} - %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - % In print, trying to reduce color use - %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - \hypersetup{colorlinks=true,linkcolor=black,citecolor=black, - filecolor=black,urlcolor=black} - - - - - - {\sethead[\textsl{\ifthechapter{\chaptertitlename{} - \thechapter }{} \chaptertitle}][][] - {}{}{\textsl{\ifthesection{\thesection{} \sectiontitle} - {\sectiontitle} }} - \setfoot[\thepage][][] - {}{}{\thepage}} - - - - - - \titleformat{\chapter}[display] - {\raggedleft\normalfont\color{chaptercolor}\Large}{ - \MakeUppercase{\divisionnameptx}\space - \rlap{\enskip\resizebox{!}{0.95cm}{\thechapter} \rule{15cm}{0.95cm} - }}{10pt}{\normalfont\Huge\itshape#1} - [{\Large\authorsptx}] - \titleformat{name=\chapter,numberless}[display] - {\raggedleft\normalfont\color{chaptercolor}\Huge\itshape}{}{0pt}{#1} - [{\Large\authorsptx}] - \titlespacing*{\chapter}{0pt}{30pt}{20pt} - - - \titleformat{\section}[block] -{\normalfont\Large\bfseries}{\thesection\space\titleptx}{1em}{} - [{\large\authorsptx}] - \titleformat{name=\section,numberless}[block] - {\normalfont\Large\bfseries}{}{0pt}{#1} - [{\large\authorsptx}] - \titlespacing*{\section}{0pt}{3.5ex plus 1ex minus .2ex}{2.3ex plus .2ex} - \titleformat{\subsection}[block] - {\normalfont\large\bfseries}{\thesubsection\space\titleptx}{1em}{} - [{\normalsize\authorsptx}] - \titleformat{name=\subsection,numberless}[block] - {\normalfont\large\bfseries}{}{0pt}{#1} - [{\normalsize\authorsptx}] - \titlespacing*{\subsection}{0pt}{3.25ex plus 1ex minus .2ex}{1.5ex plus .2ex} - \titleformat{\subsubsection}[block] - {\normalfont\normalsize\bfseries}{\thesubsubsection\space\titleptx}{1em}{} - [{\small\authorsptx}] - \titleformat{name=\subsubsection,numberless}[block] - {\normalfont\normalsize\bfseries}{}{0pt}{#1} - [{\normalsize\authorsptx}] - \titlespacing*{\subsubsection}{0pt}{3.25ex plus 1ex minus .2ex}{1.5ex plus .2ex} - - - - - enhanced,frame hidden,interior hidden, sharp corners, - boxrule=0pt,borderline west={3pt}{0pt}{ActiveBlue}, - runintitlestyle, blockspacingstyle, after title={.\space}, - colback=white, - coltitle=black, - - - - - - enhanced,frame hidden,interior hidden,sharp corners, - blockspacingstyle,boxrule=0pt,left=0pt,right=0pt, - fonttitle=\large\bfseries, - borderline north={0.1ex}{0pt}{black}, - toptitle=0.5ex,top=2ex, bottom=0.5ex, - borderline south={0.1ex}{0pt}{black},coltitle=black, - - - - - - - breakable, skin=enhanced, arc=2ex, - colback=ActiveBlue!5,colframe=ActiveBlue!75!black, - colbacktitle=ActiveBlue!20, coltitle=black, - boxed title style={sharp corners, frame hidden}, - fonttitle=\bfseries, attach boxed title to top - left={xshift=4mm,yshift=-3mm}, top=3mm, - - - - - - - + + + + + + + + + + + + + + + + + + %entities; +]> + + + + + + + + %% Customized to load Palatino fonts + \usepackage[T1]{fontenc} + \renewcommand{\rmdefault}{zpltlf} %Roman font for use in math mode + \usepackage[scaled=.85]{beramono}% used only by \mathtt + \usepackage[type1]{cabin}%used only by \mathsf + \usepackage[varg,cmintegrals,bigdelims,varbb]{newpxmath} + \usepackage[scr=rsfso]{mathalfa} + \usepackage{bm} %load after all math to give access to bold math + % Now load the otf text fonts using fontspec--wont affect math + \usepackage[no-math]{fontspec} + \setmainfont{TeXGyrePagellaX} + \defaultfontfeatures{Ligatures=TeX,Scale=1,Mapping=tex-text} + \linespread{1.02} + % Deal with a conflict with amssymb and our fonts + \let\Bbbk\relax + + + + %% Used to get WeBWorK logo into margin next to WW exercises + \usepackage{marginnote} + + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + % CC icon at bottom of first page of each chapter + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + \newpagestyle{chapopen}{ + \sethead[][][] % even + {}{}{} % odd + \setfoot[\includegraphics[height=1pc]{external/images/CC-BY-SA-license.pdf}][][] +{}{}{\includegraphics[height=1pc]{external/images/CC-BY-SA-license.pdf}}} + \assignpagestyle{\chapter}{chapopen} + + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + % Modified from Mitch Keller's chapter handling + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + %%% This is from common + \definecolor{ActiveBlue}{cmyk}{1, 0.5, 0, 0.35} + \colorlet{chaptercolor}{ActiveBlue} + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + % Basic paragraph parameters + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + \setlength{\parindent}{0mm} + \setlength{\parskip}{0.5pc} + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + % In print, trying to reduce color use + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + \hypersetup{colorlinks=true,linkcolor=black,citecolor=black, + filecolor=black,urlcolor=black} + + + + + + {\sethead[\textsl{\ifthechapter{\chaptertitlename{} + \thechapter }{} \chaptertitle}][][] + {}{}{\textsl{\ifthesection{\thesection{} \sectiontitle} + {\sectiontitle} }} + \setfoot[\thepage][][] + {}{}{\thepage}} + + + + + + \titleformat{\chapter}[display] + {\raggedleft\normalfont\color{chaptercolor}\Large}{ + \MakeUppercase{\divisionnameptx}\space + \rlap{\enskip\resizebox{!}{0.95cm}{\thechapter} \rule{15cm}{0.95cm} + }}{10pt}{\normalfont\Huge\itshape#1} + [{\Large\authorsptx}] + \titleformat{name=\chapter,numberless}[display] + {\raggedleft\normalfont\color{chaptercolor}\Huge\itshape}{}{0pt}{#1} + [{\Large\authorsptx}] + \titlespacing*{\chapter}{0pt}{30pt}{20pt} + + + \titleformat{\section}[block] +{\normalfont\Large\bfseries}{\thesection\space\titleptx}{1em}{} + [{\large\authorsptx}] + \titleformat{name=\section,numberless}[block] + {\normalfont\Large\bfseries}{}{0pt}{#1} + [{\large\authorsptx}] + \titlespacing*{\section}{0pt}{3.5ex plus 1ex minus .2ex}{2.3ex plus .2ex} + \titleformat{\subsection}[block] + {\normalfont\large\bfseries}{\thesubsection\space\titleptx}{1em}{} + [{\normalsize\authorsptx}] + \titleformat{name=\subsection,numberless}[block] + {\normalfont\large\bfseries}{}{0pt}{#1} + [{\normalsize\authorsptx}] + \titlespacing*{\subsection}{0pt}{3.25ex plus 1ex minus .2ex}{1.5ex plus .2ex} + \titleformat{\subsubsection}[block] + {\normalfont\normalsize\bfseries}{\thesubsubsection\space\titleptx}{1em}{} + [{\small\authorsptx}] + \titleformat{name=\subsubsection,numberless}[block] + {\normalfont\normalsize\bfseries}{}{0pt}{#1} + [{\normalsize\authorsptx}] + \titlespacing*{\subsubsection}{0pt}{3.25ex plus 1ex minus .2ex}{1.5ex plus .2ex} + + + + + enhanced,frame hidden,interior hidden, sharp corners, + boxrule=0pt,borderline west={3pt}{0pt}{ActiveBlue}, + runintitlestyle, blockspacingstyle, after title={.\space}, + colback=white, + coltitle=black, + + + + + + enhanced,frame hidden,interior hidden,sharp corners, + blockspacingstyle,boxrule=0pt,left=0pt,right=0pt, + fonttitle=\large\bfseries, + borderline north={0.1ex}{0pt}{black}, + toptitle=0.5ex,top=2ex, bottom=0.5ex, + borderline south={0.1ex}{0pt}{black},coltitle=black, + + + + + + + breakable, skin=enhanced, arc=2ex, + colback=ActiveBlue!5,colframe=ActiveBlue!75!black, + colbacktitle=ActiveBlue!20, coltitle=black, + boxed title style={sharp corners, frame hidden}, + fonttitle=\bfseries, attach boxed title to top + left={xshift=4mm,yshift=-3mm}, top=3mm, + + + + + + + diff --git a/xsl/apc-latex.xsl b/xsl/apc-latex.xsl index 1724715b..0a2e8aab 100644 --- a/xsl/apc-latex.xsl +++ b/xsl/apc-latex.xsl @@ -1,120 +1,120 @@ - - - - - - - - - - - - - - - - - - %entities; -]> - - - - - - - - - - - - - - - - - %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - % Start sections on new page, just not the first one - %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - \let\oldsection\section - \renewcommand\section{\znewpage\oldsection} - - \let\oldchapter\chapter - \renewcommand\chapter{\clearpage\gdef\znewpage{ - \global\let\znewpage\clearpage}\oldchapter} - - \global\let\znewpage\clearpage - - - - - - - - - - - \renewcommand\section{\oldsection} - - - - - - \marginnote{\hspace*{-10ex}\tiny \includegraphics[width=0.25in]{external/images/webwork-logo.png}} - - - - - - - - - - - - - - - - - - - - - \Large - - - - \large - - - - \Large - - - \large - - - \normalsize - - - \normalsize - - - PTX:BUG: "solutions" division title does not have a font size - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + %entities; +]> + + + + + + + + + + + + + + + + + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + % Start sections on new page, just not the first one + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + \let\oldsection\section + \renewcommand\section{\znewpage\oldsection} + + \let\oldchapter\chapter + \renewcommand\chapter{\clearpage\gdef\znewpage{ + \global\let\znewpage\clearpage}\oldchapter} + + \global\let\znewpage\clearpage + + + + + + + + + + + \renewcommand\section{\oldsection} + + + + + + \marginnote{\hspace*{-10ex}\tiny \includegraphics[width=0.25in]{external/images/webwork-logo.png}} + + + + + + + + + + + + + + + + + + + + + \Large + + + + \large + + + + \Large + + + \large + + + \normalsize + + + \normalsize + + + PTX:BUG: "solutions" division title does not have a font size + + + + + + + + + + + + + + + diff --git a/xsl/apc-solution-manual.xsl b/xsl/apc-solution-manual.xsl index 10aa8958..2b6ea7c7 100644 --- a/xsl/apc-solution-manual.xsl +++ b/xsl/apc-solution-manual.xsl @@ -1,50 +1,50 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - % These override what PreTeXt supplies by default. The only addition - % is the after clause. If things start looking odd, look earlier in - % the LaTeX file to see how PreTeXt has redefined these three styles - % and update latex.preamble.late - \tcbset{ divisionsolutionstyle/.style={bwminimalstyle, - runintitlestyle, exercisespacingstyle, after title={\space}, - breakable, parbox=false, after={\clearpage} } } - \tcbset{ explorationsolutionstyle/.style={bwminimalstyle, - runintitlestyle, exercisespacingstyle, after - title={\space}, - breakable, parbox=false ,after={\clearpage}} } - \tcbset{ activitysolutionstyle/.style={bwminimalstyle, - runintitlestyle, exercisespacingstyle, after title={\space}, - breakable, parbox=false, after={\clearpage}} } - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + % These override what PreTeXt supplies by default. The only addition + % is the after clause. If things start looking odd, look earlier in + % the LaTeX file to see how PreTeXt has redefined these three styles + % and update latex.preamble.late + \tcbset{ divisionsolutionstyle/.style={bwminimalstyle, + runintitlestyle, exercisespacingstyle, after title={\space}, + breakable, parbox=false, after={\clearpage} } } + \tcbset{ explorationsolutionstyle/.style={bwminimalstyle, + runintitlestyle, exercisespacingstyle, after + title={\space}, + breakable, parbox=false ,after={\clearpage}} } + \tcbset{ activitysolutionstyle/.style={bwminimalstyle, + runintitlestyle, exercisespacingstyle, after title={\space}, + breakable, parbox=false, after={\clearpage}} } + + + + + diff --git a/xsl/entities.ent b/xsl/entities.ent index 681f71b5..f03bc63d 100644 --- a/xsl/entities.ent +++ b/xsl/entities.ent @@ -1,139 +1,139 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +